From 9df710d81e7c2f6f5937a6c45325d69e4a2b57ee Mon Sep 17 00:00:00 2001 From: AnggerRevo5 Date: Tue, 27 Jan 2026 15:45:12 +0700 Subject: [PATCH] initial monorepo commit (fe + be) --- .../BILLING_DPJP_INTEGRATION.md | 169 + MarkdownSourceFile/CHECK_RESULTS.md | 154 + MarkdownSourceFile/DEBUGGING_GUIDE.md | 146 + .../ERROR_ANALYSIS_TANGGAL_KELUAR.md | 125 + .../FIX_RIWAYAT_BILLING_FIELDS.md | 183 + MarkdownSourceFile/INACBG_DEBUGGING_GUIDE.md | 134 + MarkdownSourceFile/INACBG_STATUS.md | 247 + .../MIGRASI_MYSQL_KE_POSTGRESQL_GUIDE.md | 439 + backendcareit_v4/.env | 15 + backendcareit_v4/.gitignore | 34 + backendcareit_v4/Note.md | 71 + backendcareit_v4/__dummy__ | 10 + backendcareit_v4/database/db.go | 49 + backendcareit_v4/database/db_postgreSQL.go | 48 + backendcareit_v4/go.mod | 55 + backendcareit_v4/go.sum | 118 + backendcareit_v4/handlers/routes.go | 883 + backendcareit_v4/main.go | 54 + backendcareit_v4/middleware/loginByJWT.go | 104 + backendcareit_v4/models/models.go | 352 + backendcareit_v4/scripts/check_admin.go | 87 + backendcareit_v4/scripts/insert_admin.go | 47 + backendcareit_v4/services/Edit_Inacbg.go | 96 + backendcareit_v4/services/Edit_pasien.go | 173 + .../services/Pengisian_INACBG(Admin).go | 403 + backendcareit_v4/services/SendEmail.go | 284 + backendcareit_v4/services/billing_aktif.go | 169 + backendcareit_v4/services/billing_pasien.go | 673 + backendcareit_v4/services/close_billing.go | 52 + .../services/riwayat_billing_pasien.go | 403 + backendcareit_v4/services/tarif_service.go | 133 + backendcareit_v4/sql/PANDUAN_TESTING.md | 154 + backendcareit_v4/sql/POSTMAN_SETUP.md | 97 + backendcareit_v4/sql/README_INSERT_ADMIN.md | 115 + backendcareit_v4/sql/VIEW_DOCUMENTATION.md | 419 + backendcareit_v4/sql/add_id_dpjp_column.sql | 0 backendcareit_v4/sql/care_it_data (1).sql | 32794 +++++++++++++++ backendcareit_v4/sql/care_it_database.sql | 33516 +++++++++++++++ backendcareit_v4/sql/careit_db_v2.sql | 33719 ++++++++++++++++ backendcareit_v4/sql/insert_admin_dummy.sql | 16 + .../sql/postman_billing_request.json | 14 + .../sql/postman_billing_request_full.json | 14 + .../sql/postman_billing_response_example.json | 26 + .../adminRuanganFE/adminBilling.html | 225 + .../adminRuanganFE/adminBilling_backup.html | 158 + .../testingFE/adminRuanganFE/scriptAdmin.js | 715 + .../adminRuanganFE/scriptAdmin_backup.js | 472 + .../testingFE/adminRuanganFE/styles.css | 310 + .../billingtestwithAPI/billingPasienTest.html | 199 + .../testingFE/billingtestwithAPI/script.js | 1405 + .../testingFE/billingtestwithAPI/styles.css | 616 + backendcareit_v4/testingFE/test.html | 789 + frontendcareit_v4/.gitignore | 45 + frontendcareit_v4/BACKEND_API.md | 191 + frontendcareit_v4/ELECTRON_API_SETUP.md | 87 + frontendcareit_v4/ELECTRON_README.md | 82 + frontendcareit_v4/INTEGRATION_GUIDE.md | 138 + frontendcareit_v4/README.md | 104 + .../TANGGAL_KELUAR_AUTO_FILL_FLOW.md | 205 + frontendcareit_v4/android/.gitignore | 101 + .../android/.idea/AndroidProjectSystem.xml | 6 + frontendcareit_v4/android/.idea/compiler.xml | 6 + .../.idea/deploymentTargetSelector.xml | 10 + .../android/.idea/deviceManager.xml | 13 + .../android/.idea/migrations.xml | 10 + frontendcareit_v4/android/.idea/misc.xml | 4 + .../android/.idea/runConfigurations.xml | 17 + frontendcareit_v4/android/app/.gitignore | 2 + frontendcareit_v4/android/app/build.gradle | 54 + .../android/app/capacitor.build.gradle | 19 + .../android/app/proguard-rules.pro | 21 + .../myapp/ExampleInstrumentedTest.java | 26 + .../android/app/src/main/AndroidManifest.xml | 41 + .../java/com/careit/app/MainActivity.java | 5 + .../main/res/drawable-land-hdpi/splash.png | Bin 0 -> 7705 bytes .../main/res/drawable-land-mdpi/splash.png | Bin 0 -> 4040 bytes .../main/res/drawable-land-xhdpi/splash.png | Bin 0 -> 9251 bytes .../main/res/drawable-land-xxhdpi/splash.png | Bin 0 -> 13984 bytes .../main/res/drawable-land-xxxhdpi/splash.png | Bin 0 -> 17683 bytes .../main/res/drawable-port-hdpi/splash.png | Bin 0 -> 7934 bytes .../main/res/drawable-port-mdpi/splash.png | Bin 0 -> 4096 bytes .../main/res/drawable-port-xhdpi/splash.png | Bin 0 -> 9875 bytes .../main/res/drawable-port-xxhdpi/splash.png | Bin 0 -> 13346 bytes .../main/res/drawable-port-xxxhdpi/splash.png | Bin 0 -> 17489 bytes .../drawable-v24/ic_launcher_foreground.xml | 34 + .../res/drawable/ic_launcher_background.xml | 170 + .../app/src/main/res/drawable/splash.png | Bin 0 -> 4040 bytes .../app/src/main/res/layout/activity_main.xml | 12 + .../res/mipmap-anydpi-v26/ic_launcher.xml | 5 + .../mipmap-anydpi-v26/ic_launcher_round.xml | 5 + .../src/main/res/mipmap-hdpi/ic_launcher.png | Bin 0 -> 2786 bytes .../mipmap-hdpi/ic_launcher_foreground.png | Bin 0 -> 3450 bytes .../res/mipmap-hdpi/ic_launcher_round.png | Bin 0 -> 4341 bytes .../src/main/res/mipmap-mdpi/ic_launcher.png | Bin 0 -> 1869 bytes .../mipmap-mdpi/ic_launcher_foreground.png | Bin 0 -> 2110 bytes .../res/mipmap-mdpi/ic_launcher_round.png | Bin 0 -> 2725 bytes .../src/main/res/mipmap-xhdpi/ic_launcher.png | Bin 0 -> 3981 bytes .../mipmap-xhdpi/ic_launcher_foreground.png | Bin 0 -> 5036 bytes .../res/mipmap-xhdpi/ic_launcher_round.png | Bin 0 -> 6593 bytes .../main/res/mipmap-xxhdpi/ic_launcher.png | Bin 0 -> 6644 bytes .../mipmap-xxhdpi/ic_launcher_foreground.png | Bin 0 -> 9793 bytes .../res/mipmap-xxhdpi/ic_launcher_round.png | Bin 0 -> 10455 bytes .../main/res/mipmap-xxxhdpi/ic_launcher.png | Bin 0 -> 9441 bytes .../mipmap-xxxhdpi/ic_launcher_foreground.png | Bin 0 -> 15529 bytes .../res/mipmap-xxxhdpi/ic_launcher_round.png | Bin 0 -> 15916 bytes .../res/values/ic_launcher_background.xml | 4 + .../app/src/main/res/values/strings.xml | 7 + .../app/src/main/res/values/styles.xml | 22 + .../app/src/main/res/xml/file_paths.xml | 5 + .../getcapacitor/myapp/ExampleUnitTest.java | 18 + frontendcareit_v4/android/build.gradle | 29 + .../android/capacitor.settings.gradle | 3 + frontendcareit_v4/android/gradle.properties | 22 + .../android/gradle/wrapper/gradle-wrapper.jar | Bin 0 -> 43764 bytes .../gradle/wrapper/gradle-wrapper.properties | 7 + frontendcareit_v4/android/gradlew | 251 + frontendcareit_v4/android/gradlew.bat | 94 + frontendcareit_v4/android/settings.gradle | 5 + frontendcareit_v4/android/variables.gradle | 16 + frontendcareit_v4/build-bypass.bat | 13 + frontendcareit_v4/build-electron.bat | 63 + frontendcareit_v4/build-electron.ps1 | 76 + frontendcareit_v4/build-mobile.bat | 40 + frontendcareit_v4/build-mobile.ps1 | 43 + frontendcareit_v4/build.log | Bin 0 -> 12800 bytes frontendcareit_v4/capacitor.config.ts | 20 + frontendcareit_v4/electron-builder.json | 24 + frontendcareit_v4/electron.config.js | 17 + frontendcareit_v4/electron.js | 72 + frontendcareit_v4/electron/main.js | 198 + frontendcareit_v4/eslint.config.mjs | 18 + frontendcareit_v4/fix_inacbg_plan.md | 27 + frontendcareit_v4/forge.config.js | 74 + frontendcareit_v4/forge.config.no-icon.js | 54 + frontendcareit_v4/next.config.mjs | 12 + frontendcareit_v4/package-lock.json | 11501 ++++++ frontendcareit_v4/package.json | 55 + frontendcareit_v4/postcss.config.mjs | 7 + frontendcareit_v4/preload.js | 8 + frontendcareit_v4/public/assets/LOGOCOBA.ico | Bin 0 -> 216796 bytes .../public/assets/LOGO_CAREIT.ico | Bin 0 -> 1910 bytes .../public/assets/LOGO_CAREIT.svg | 9 + .../public/assets/LandingPage/dokterLucu.svg | 9 + .../LandingPage/lingkaranLandingPage.svg | 9 + .../public/assets/LandingPage/stetoskop.svg | 35 + .../public/assets/LandingPage/suntik.svg | 35 + .../public/assets/Login/logindokterbanyak.svg | 9 + .../public/assets/Login/siluetLogin.svg | 10 + ...PENGISIAN RESUME MEDIS IKPK REVISI (1).pdf | Bin 0 -> 3276727 bytes .../public/assets/PDF/FORNAS_2023.pdf | Bin 0 -> 1799757 bytes .../assets/dashboard_dokter/header1.svg | 9 + .../assets/dashboard_dokter/header2.svg | 9 + .../assets/dashboard_dokter/warning-green.svg | 9 + .../assets/dashboard_dokter/warning-red.svg | 9 + .../dashboard_dokter/warning-yellow.svg | 9 + frontendcareit_v4/public/file.svg | 1 + frontendcareit_v4/public/globe.svg | 1 + frontendcareit_v4/public/icon.png | Bin 0 -> 478160 bytes frontendcareit_v4/public/next.svg | 1 + frontendcareit_v4/public/vercel.svg | 1 + frontendcareit_v4/public/window.svg | 1 + .../app/component/INACBG_Admin_Ruangan.tsx | 1702 + .../src/app/component/admin-ruangan.tsx | 151 + .../src/app/component/backend-status.tsx | 80 + .../src/app/component/billing-pasien.tsx | 1852 + .../src/app/component/billing_aktif.tsx | 524 + .../src/app/component/buku-saku.tsx | 21 + .../app/component/dashboard_Admin_Ruangan.tsx | 240 + .../src/app/component/dashboard_Dokter.tsx | 486 + .../src/app/component/edit-INACBG.tsx | 787 + .../src/app/component/edit-pasien-modal.tsx | 1002 + .../src/app/component/fornas.tsx | 21 + .../src/app/component/header.tsx | 131 + .../src/app/component/landingpage.tsx | 192 + frontendcareit_v4/src/app/component/login.tsx | 273 + .../src/app/component/pasien.tsx | 644 + .../app/component/riwayat-billing-pasien.tsx | 781 + .../src/app/component/sidebar.tsx | 261 + .../src/app/component/tarif-bpjs.tsx | 343 + .../src/app/component/tarif-rumah-sakit.tsx | 289 + frontendcareit_v4/src/app/favicon.ico | Bin 0 -> 25931 bytes frontendcareit_v4/src/app/globals.css | 46 + frontendcareit_v4/src/app/layout.tsx | 31 + frontendcareit_v4/src/app/page.tsx | 336 + frontendcareit_v4/src/app/pasien/page.tsx | 19 + frontendcareit_v4/src/hooks/useDebounce.ts | 0 frontendcareit_v4/src/lib/api-helper.ts | 281 + frontendcareit_v4/src/lib/api.ts | 519 + frontendcareit_v4/tsconfig.json | 34 + 189 files changed, 137113 insertions(+) create mode 100644 MarkdownSourceFile/BILLING_DPJP_INTEGRATION.md create mode 100644 MarkdownSourceFile/CHECK_RESULTS.md create mode 100644 MarkdownSourceFile/DEBUGGING_GUIDE.md create mode 100644 MarkdownSourceFile/ERROR_ANALYSIS_TANGGAL_KELUAR.md create mode 100644 MarkdownSourceFile/FIX_RIWAYAT_BILLING_FIELDS.md create mode 100644 MarkdownSourceFile/INACBG_DEBUGGING_GUIDE.md create mode 100644 MarkdownSourceFile/INACBG_STATUS.md create mode 100644 MarkdownSourceFile/MIGRASI_MYSQL_KE_POSTGRESQL_GUIDE.md create mode 100644 backendcareit_v4/.env create mode 100644 backendcareit_v4/.gitignore create mode 100644 backendcareit_v4/Note.md create mode 100644 backendcareit_v4/__dummy__ create mode 100644 backendcareit_v4/database/db.go create mode 100644 backendcareit_v4/database/db_postgreSQL.go create mode 100644 backendcareit_v4/go.mod create mode 100644 backendcareit_v4/go.sum create mode 100644 backendcareit_v4/handlers/routes.go create mode 100644 backendcareit_v4/main.go create mode 100644 backendcareit_v4/middleware/loginByJWT.go create mode 100644 backendcareit_v4/models/models.go create mode 100644 backendcareit_v4/scripts/check_admin.go create mode 100644 backendcareit_v4/scripts/insert_admin.go create mode 100644 backendcareit_v4/services/Edit_Inacbg.go create mode 100644 backendcareit_v4/services/Edit_pasien.go create mode 100644 backendcareit_v4/services/Pengisian_INACBG(Admin).go create mode 100644 backendcareit_v4/services/SendEmail.go create mode 100644 backendcareit_v4/services/billing_aktif.go create mode 100644 backendcareit_v4/services/billing_pasien.go create mode 100644 backendcareit_v4/services/close_billing.go create mode 100644 backendcareit_v4/services/riwayat_billing_pasien.go create mode 100644 backendcareit_v4/services/tarif_service.go create mode 100644 backendcareit_v4/sql/PANDUAN_TESTING.md create mode 100644 backendcareit_v4/sql/POSTMAN_SETUP.md create mode 100644 backendcareit_v4/sql/README_INSERT_ADMIN.md create mode 100644 backendcareit_v4/sql/VIEW_DOCUMENTATION.md create mode 100644 backendcareit_v4/sql/add_id_dpjp_column.sql create mode 100644 backendcareit_v4/sql/care_it_data (1).sql create mode 100644 backendcareit_v4/sql/care_it_database.sql create mode 100644 backendcareit_v4/sql/careit_db_v2.sql create mode 100644 backendcareit_v4/sql/insert_admin_dummy.sql create mode 100644 backendcareit_v4/sql/postman_billing_request.json create mode 100644 backendcareit_v4/sql/postman_billing_request_full.json create mode 100644 backendcareit_v4/sql/postman_billing_response_example.json create mode 100644 backendcareit_v4/testingFE/adminRuanganFE/adminBilling.html create mode 100644 backendcareit_v4/testingFE/adminRuanganFE/adminBilling_backup.html create mode 100644 backendcareit_v4/testingFE/adminRuanganFE/scriptAdmin.js create mode 100644 backendcareit_v4/testingFE/adminRuanganFE/scriptAdmin_backup.js create mode 100644 backendcareit_v4/testingFE/adminRuanganFE/styles.css create mode 100644 backendcareit_v4/testingFE/billingtestwithAPI/billingPasienTest.html create mode 100644 backendcareit_v4/testingFE/billingtestwithAPI/script.js create mode 100644 backendcareit_v4/testingFE/billingtestwithAPI/styles.css create mode 100644 backendcareit_v4/testingFE/test.html create mode 100644 frontendcareit_v4/.gitignore create mode 100644 frontendcareit_v4/BACKEND_API.md create mode 100644 frontendcareit_v4/ELECTRON_API_SETUP.md create mode 100644 frontendcareit_v4/ELECTRON_README.md create mode 100644 frontendcareit_v4/INTEGRATION_GUIDE.md create mode 100644 frontendcareit_v4/README.md create mode 100644 frontendcareit_v4/TANGGAL_KELUAR_AUTO_FILL_FLOW.md create mode 100644 frontendcareit_v4/android/.gitignore create mode 100644 frontendcareit_v4/android/.idea/AndroidProjectSystem.xml create mode 100644 frontendcareit_v4/android/.idea/compiler.xml create mode 100644 frontendcareit_v4/android/.idea/deploymentTargetSelector.xml create mode 100644 frontendcareit_v4/android/.idea/deviceManager.xml create mode 100644 frontendcareit_v4/android/.idea/migrations.xml create mode 100644 frontendcareit_v4/android/.idea/misc.xml create mode 100644 frontendcareit_v4/android/.idea/runConfigurations.xml create mode 100644 frontendcareit_v4/android/app/.gitignore create mode 100644 frontendcareit_v4/android/app/build.gradle create mode 100644 frontendcareit_v4/android/app/capacitor.build.gradle create mode 100644 frontendcareit_v4/android/app/proguard-rules.pro create mode 100644 frontendcareit_v4/android/app/src/androidTest/java/com/getcapacitor/myapp/ExampleInstrumentedTest.java create mode 100644 frontendcareit_v4/android/app/src/main/AndroidManifest.xml create mode 100644 frontendcareit_v4/android/app/src/main/java/com/careit/app/MainActivity.java create mode 100644 frontendcareit_v4/android/app/src/main/res/drawable-land-hdpi/splash.png create mode 100644 frontendcareit_v4/android/app/src/main/res/drawable-land-mdpi/splash.png create mode 100644 frontendcareit_v4/android/app/src/main/res/drawable-land-xhdpi/splash.png create mode 100644 frontendcareit_v4/android/app/src/main/res/drawable-land-xxhdpi/splash.png create mode 100644 frontendcareit_v4/android/app/src/main/res/drawable-land-xxxhdpi/splash.png create mode 100644 frontendcareit_v4/android/app/src/main/res/drawable-port-hdpi/splash.png create mode 100644 frontendcareit_v4/android/app/src/main/res/drawable-port-mdpi/splash.png create mode 100644 frontendcareit_v4/android/app/src/main/res/drawable-port-xhdpi/splash.png create mode 100644 frontendcareit_v4/android/app/src/main/res/drawable-port-xxhdpi/splash.png create mode 100644 frontendcareit_v4/android/app/src/main/res/drawable-port-xxxhdpi/splash.png create mode 100644 frontendcareit_v4/android/app/src/main/res/drawable-v24/ic_launcher_foreground.xml create mode 100644 frontendcareit_v4/android/app/src/main/res/drawable/ic_launcher_background.xml create mode 100644 frontendcareit_v4/android/app/src/main/res/drawable/splash.png create mode 100644 frontendcareit_v4/android/app/src/main/res/layout/activity_main.xml create mode 100644 frontendcareit_v4/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml create mode 100644 frontendcareit_v4/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml create mode 100644 frontendcareit_v4/android/app/src/main/res/mipmap-hdpi/ic_launcher.png create mode 100644 frontendcareit_v4/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png create mode 100644 frontendcareit_v4/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png create mode 100644 frontendcareit_v4/android/app/src/main/res/mipmap-mdpi/ic_launcher.png create mode 100644 frontendcareit_v4/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png create mode 100644 frontendcareit_v4/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png create mode 100644 frontendcareit_v4/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png create mode 100644 frontendcareit_v4/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png create mode 100644 frontendcareit_v4/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png create mode 100644 frontendcareit_v4/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png create mode 100644 frontendcareit_v4/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png create mode 100644 frontendcareit_v4/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png create mode 100644 frontendcareit_v4/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png create mode 100644 frontendcareit_v4/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png create mode 100644 frontendcareit_v4/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png create mode 100644 frontendcareit_v4/android/app/src/main/res/values/ic_launcher_background.xml create mode 100644 frontendcareit_v4/android/app/src/main/res/values/strings.xml create mode 100644 frontendcareit_v4/android/app/src/main/res/values/styles.xml create mode 100644 frontendcareit_v4/android/app/src/main/res/xml/file_paths.xml create mode 100644 frontendcareit_v4/android/app/src/test/java/com/getcapacitor/myapp/ExampleUnitTest.java create mode 100644 frontendcareit_v4/android/build.gradle create mode 100644 frontendcareit_v4/android/capacitor.settings.gradle create mode 100644 frontendcareit_v4/android/gradle.properties create mode 100644 frontendcareit_v4/android/gradle/wrapper/gradle-wrapper.jar create mode 100644 frontendcareit_v4/android/gradle/wrapper/gradle-wrapper.properties create mode 100644 frontendcareit_v4/android/gradlew create mode 100644 frontendcareit_v4/android/gradlew.bat create mode 100644 frontendcareit_v4/android/settings.gradle create mode 100644 frontendcareit_v4/android/variables.gradle create mode 100644 frontendcareit_v4/build-bypass.bat create mode 100644 frontendcareit_v4/build-electron.bat create mode 100644 frontendcareit_v4/build-electron.ps1 create mode 100644 frontendcareit_v4/build-mobile.bat create mode 100644 frontendcareit_v4/build-mobile.ps1 create mode 100644 frontendcareit_v4/build.log create mode 100644 frontendcareit_v4/capacitor.config.ts create mode 100644 frontendcareit_v4/electron-builder.json create mode 100644 frontendcareit_v4/electron.config.js create mode 100644 frontendcareit_v4/electron.js create mode 100644 frontendcareit_v4/electron/main.js create mode 100644 frontendcareit_v4/eslint.config.mjs create mode 100644 frontendcareit_v4/fix_inacbg_plan.md create mode 100644 frontendcareit_v4/forge.config.js create mode 100644 frontendcareit_v4/forge.config.no-icon.js create mode 100644 frontendcareit_v4/next.config.mjs create mode 100644 frontendcareit_v4/package-lock.json create mode 100644 frontendcareit_v4/package.json create mode 100644 frontendcareit_v4/postcss.config.mjs create mode 100644 frontendcareit_v4/preload.js create mode 100644 frontendcareit_v4/public/assets/LOGOCOBA.ico create mode 100644 frontendcareit_v4/public/assets/LOGO_CAREIT.ico create mode 100644 frontendcareit_v4/public/assets/LOGO_CAREIT.svg create mode 100644 frontendcareit_v4/public/assets/LandingPage/dokterLucu.svg create mode 100644 frontendcareit_v4/public/assets/LandingPage/lingkaranLandingPage.svg create mode 100644 frontendcareit_v4/public/assets/LandingPage/stetoskop.svg create mode 100644 frontendcareit_v4/public/assets/LandingPage/suntik.svg create mode 100644 frontendcareit_v4/public/assets/Login/logindokterbanyak.svg create mode 100644 frontendcareit_v4/public/assets/Login/siluetLogin.svg create mode 100644 frontendcareit_v4/public/assets/PDF/BUKU SAKU PENGISIAN RESUME MEDIS IKPK REVISI (1).pdf create mode 100644 frontendcareit_v4/public/assets/PDF/FORNAS_2023.pdf create mode 100644 frontendcareit_v4/public/assets/dashboard_dokter/header1.svg create mode 100644 frontendcareit_v4/public/assets/dashboard_dokter/header2.svg create mode 100644 frontendcareit_v4/public/assets/dashboard_dokter/warning-green.svg create mode 100644 frontendcareit_v4/public/assets/dashboard_dokter/warning-red.svg create mode 100644 frontendcareit_v4/public/assets/dashboard_dokter/warning-yellow.svg create mode 100644 frontendcareit_v4/public/file.svg create mode 100644 frontendcareit_v4/public/globe.svg create mode 100644 frontendcareit_v4/public/icon.png create mode 100644 frontendcareit_v4/public/next.svg create mode 100644 frontendcareit_v4/public/vercel.svg create mode 100644 frontendcareit_v4/public/window.svg create mode 100644 frontendcareit_v4/src/app/component/INACBG_Admin_Ruangan.tsx create mode 100644 frontendcareit_v4/src/app/component/admin-ruangan.tsx create mode 100644 frontendcareit_v4/src/app/component/backend-status.tsx create mode 100644 frontendcareit_v4/src/app/component/billing-pasien.tsx create mode 100644 frontendcareit_v4/src/app/component/billing_aktif.tsx create mode 100644 frontendcareit_v4/src/app/component/buku-saku.tsx create mode 100644 frontendcareit_v4/src/app/component/dashboard_Admin_Ruangan.tsx create mode 100644 frontendcareit_v4/src/app/component/dashboard_Dokter.tsx create mode 100644 frontendcareit_v4/src/app/component/edit-INACBG.tsx create mode 100644 frontendcareit_v4/src/app/component/edit-pasien-modal.tsx create mode 100644 frontendcareit_v4/src/app/component/fornas.tsx create mode 100644 frontendcareit_v4/src/app/component/header.tsx create mode 100644 frontendcareit_v4/src/app/component/landingpage.tsx create mode 100644 frontendcareit_v4/src/app/component/login.tsx create mode 100644 frontendcareit_v4/src/app/component/pasien.tsx create mode 100644 frontendcareit_v4/src/app/component/riwayat-billing-pasien.tsx create mode 100644 frontendcareit_v4/src/app/component/sidebar.tsx create mode 100644 frontendcareit_v4/src/app/component/tarif-bpjs.tsx create mode 100644 frontendcareit_v4/src/app/component/tarif-rumah-sakit.tsx create mode 100644 frontendcareit_v4/src/app/favicon.ico create mode 100644 frontendcareit_v4/src/app/globals.css create mode 100644 frontendcareit_v4/src/app/layout.tsx create mode 100644 frontendcareit_v4/src/app/page.tsx create mode 100644 frontendcareit_v4/src/app/pasien/page.tsx create mode 100644 frontendcareit_v4/src/hooks/useDebounce.ts create mode 100644 frontendcareit_v4/src/lib/api-helper.ts create mode 100644 frontendcareit_v4/src/lib/api.ts create mode 100644 frontendcareit_v4/tsconfig.json diff --git a/MarkdownSourceFile/BILLING_DPJP_INTEGRATION.md b/MarkdownSourceFile/BILLING_DPJP_INTEGRATION.md new file mode 100644 index 0000000..8510af2 --- /dev/null +++ b/MarkdownSourceFile/BILLING_DPJP_INTEGRATION.md @@ -0,0 +1,169 @@ +# Integrasi Tabel billing_dpjp + +## Ringkasan Perubahan + +Integrasi tabel `billing_dpjp` yang baru ke dalam sistem billing CareIT. Tabel ini digunakan untuk menyimpan Doctor In Charge (DPJP) untuk setiap billing. + +## Perubahan yang Dilakukan + +### 1. **services/billing_pasien.go** + +#### Function: `DataFromFE()` +- **Tambahan**: Kode untuk insert ID_DPJP ke tabel `billing_dpjp` (lines ~439-451) +- **Logika**: Jika `input.ID_DPJP > 0`, maka insert record ke tabel `billing_dpjp` +- **Log**: Menambah logging untuk tracking DPJP insertion + +```go +if input.ID_DPJP > 0 { + billingDPJP := models.Billing_DPJP{ + ID_Billing: billing.ID_Billing, + ID_DPJP: input.ID_DPJP, + } + // ... insert logic +} +``` + +#### Function: `GetBillingDetailAktifByNama()` +- **Perubahan**: Menambah return value (dari 8 return menjadi 9) + - **Sebelumnya**: `(*models.BillingPasien, []string, []string, []string, []string, []string, []string, error)` + - **Sesudahnya**: `(*models.BillingPasien, []string, []string, []string, []string, []string, []string, int, error)` + +- **Tambahan Query**: + - Query dari tabel `billing_dpjp` untuk fetch ID_DPJP + - Jika tidak ada DPJP, return value 0 (normal) + +```go +var dpjpRow struct { + ID_DPJP int `gorm:"column:ID_DPJP"` +} +// Query dari billing_dpjp +``` + +### 2. **services/riwayat_billing_pasien.go** + +#### Function: `GetRiwayatPasienAll()` +- **Tambahan Query**: Menambah query untuk fetch DPJP dari tabel `billing_dpjp` +- **Map Creation**: Membuat `dpjpMap` untuk mapping ID_Billing ke ID_DPJP +- **Response Update**: Field `ID_DPJP` di response sudah diisi (meskipun belum direferensikan di item construction, field sudah ada di model) + +```go +dpjpMap := make(map[int]int) +// Query dari billing_dpjp untuk mendapatkan ID_DPJP +``` + +### 3. **handlers/routes.go** + +#### Function: `GetBillingAktifByNamaHandler()` +- **Update Parameter**: Menangkap return value baru (ID_DPJP) +- **Response Update**: Menambah field `id_dpjp` dalam JSON response + +```go +billing, tindakan, icd9, icd10, dokter, inacbgRI, inacbgRJ, dpjp, err := services.GetBillingDetailAktifByNama(nama) +``` + +Response JSON sekarang include: +```json +{ + "data": { + "billing": {...}, + "tindakan_rs": [...], + "icd9": [...], + "icd10": [...], + "dokter": [...], + "inacbg_ri": [...], + "inacbg_rj": [...], + "id_dpjp": 123 + } +} +``` + +## Model yang Sudah Ada + +### `models/models.go` +- **Billing_DPJP**: Struct untuk tabel `billing_dpjp` (line ~61-68) + ```go + type Billing_DPJP struct { + ID_Billing int `gorm:"column:ID_Billing;primaryKey"` + ID_DPJP int `gorm:"column:ID_DPJP;primaryKey"` + } + ``` + +- **BillingRequest**: Sudah memiliki field `ID_DPJP` (line ~225) + ```go + ID_DPJP int `json:"id_dpjp"` + ``` + +- **Riwayat_Pasien_all**: Sudah memiliki field `ID_DPJP` (line ~183) + ```go + ID_DPJP string `json:"id_dpjp"` + ``` + +## API Endpoint yang Terpengaruh + +### GET /billing/aktif +**Parameter**: `nama_pasien` + +**Response**: +```json +{ + "status": "success", + "data": { + "billing": {...}, + "id_dpjp": 123, + ... + } +} +``` + +## Database Schema + +Tabel `billing_dpjp` sudah dibuat di PostgreSQL dengan struktur: +```sql +CREATE TABLE billing_dpjp ( + ID_Billing integer NOT NULL, + ID_DPJP integer NOT NULL, + PRIMARY KEY (ID_Billing, ID_DPJP), + FOREIGN KEY (ID_Billing) REFERENCES billing_pasien(ID_Billing), + FOREIGN KEY (ID_DPJP) REFERENCES dokter(ID_Dokter) +); +``` + +## Testing + +### Test Case 1: Membuat Billing Baru dengan DPJP +**POST** `/billing` +```json +{ + "id_dpjp": 5, + "nama_dokter": ["Dr. Budi"], + ... +} +``` + +**Expected**: DPJP tercatat di tabel `billing_dpjp` + +### Test Case 2: Fetch Billing Aktif dengan DPJP +**GET** `/billing/aktif?nama_pasien=John Doe` + +**Expected**: Response include field `id_dpjp` dengan value yang benar + +### Test Case 3: Riwayat Billing Tertutup +**GET** `/admin/riwayat-pasien-all` + +**Expected**: Setiap billing dalam response include DPJP (jika ada) + +## File yang Dimodifikasi + +1. โœ… `services/billing_pasien.go` - DataFromFE() + GetBillingDetailAktifByNama() +2. โœ… `services/riwayat_billing_pasien.go` - GetRiwayatPasienAll() +3. โœ… `handlers/routes.go` - GetBillingAktifByNamaHandler() + +## Status Kompilasi + +โœ… **BUILD SUCCESS** - Tidak ada error atau warning saat compile `go build .` + +## Catatan + +- Field `ID_DPJP` di model `Riwayat_Pasien_all` bertipe `string` (line 183) sedangkan di `billing_dpjp` bertipe `int`. Ini mungkin perlu di-harmonisasi untuk konsistensi tipe data di masa depan. +- Fungsi update billing yang ada (`EditPasienComplete`) belum include logika update DPJP. Jika ada requirement untuk update DPJP setelah billing dibuat, perlu ditambahkan. +- DPJP bersifat opsional (jika tidak ada, return 0 - tidak error). diff --git a/MarkdownSourceFile/CHECK_RESULTS.md b/MarkdownSourceFile/CHECK_RESULTS.md new file mode 100644 index 0000000..e374276 --- /dev/null +++ b/MarkdownSourceFile/CHECK_RESULTS.md @@ -0,0 +1,154 @@ +## ๐Ÿ” HASIL CECK LENGKAP - Filter Tanggal Issue + +### ๐Ÿ“‹ RINGKASAN MASALAH + +Frontend filter untuk tanggal tidak bekerja karena: +- **Frontend** mengharapkan field: `tanggal_masuk` atau `tanggal_keluar` +- **Backend API** `/admin/riwayat-billing` mengembalikan response dari struct `Request_Admin_Inacbg` +- **Struct `Request_Admin_Inacbg`** TIDAK memiliki field tanggal sama sekali! + +--- + +## ๐Ÿ”— FLOW API YANG SEBENARNYA + +``` +Frontend getRiwayatBilling() + โ†“ +API: GET /admin/riwayat-billing + โ†“ +Handler: GetRiwayatBillingHandler + โ†“ +Service: GetAllRiwayatpasien(db) + โ†“ +Return: []models.Request_Admin_Inacbg + โ†“ +Response JSON berisi: id_billing, nama_pasien, id_pasien, kelas, ruangan, total_tarif_rs, + total_klaim, id_dpjp, tindakan_rs, icd9, icd10, inacbg_ri, inacbg_rj, + billing_sign, nama_dokter + โ†“ +โŒ TIDAK ADA: tanggal_masuk, tanggal_keluar +``` + +--- + +## ๐Ÿ“ฆ PERBANDINGAN 2 API ENDPOINT + +### Endpoint 1: `/admin/riwayat-billing` (YANG DIPAKAI FRONTEND) +- Handler: `GetRiwayatBillingHandler` +- Service: `GetAllRiwayatpasien()` +- Return Type: `[]models.Request_Admin_Inacbg` +- Fields: โŒ Tanggal fields TIDAK ADA + +### Endpoint 2: `/admin/riwayat-pasien-all` (TIDAK DIPAKAI) +- Handler: `GetRiwayatPasienAllHandler` +- Service: `GetRiwayatPasienAll()` +- Return Type: `[]models.Riwayat_Pasien_all` +- Fields: โœ… Memiliki Tanggal_Masuk (*time.Time) dan Tanggal_Keluar (string) +- **ISSUE**: Di service GetRiwayatPasienAll(), baris 210 ada bug: + ```go + Tanggal_Masuk: b.Tanggal_masuk, // โŒ Assign pointer langsung, harusnya .Format("2006-01-02") + ``` + +--- + +## ๐Ÿ—‚๏ธ FILE STRUCTURE + +### Backend Services + +**File: riwayat_billing_pasien.go** +- Line 10: `func GetRiwayatPasienAll()` โ†’ returns `[]Riwayat_Pasien_all` โœ… Ada tanggal +- Line 226: `func GetAllRiwayatpasien()` โ†’ returns `[]Request_Admin_Inacbg` โŒ Tanpa tanggal + +### Models + +**File: models.go** +- Line 175: `type Riwayat_Pasien_all struct` + - Memiliki: Tanggal_Masuk (*time.Time), Tanggal_Keluar (string) + - STATUS: Fields exists tapi tidak di-populate di service + +- Line 314: `type Request_Admin_Inacbg struct` + - TIDAK memiliki field tanggal apapun + - STATUS: Ini yang dipakai GetAllRiwayatpasien() + +### Handlers + +**File: handlers/routes.go** +- Line 56: `GET /admin/riwayat-billing` โ†’ calls `GetAllRiwayatpasien()` +- Line 58: `GET /admin/riwayat-pasien-all` โ†’ calls `GetRiwayatPasienAll()` + +### Frontend + +**File: riwayat-billing-pasien.tsx** +- Line 5: imports `getRiwayatBilling()` +- Line 87: calls `getRiwayatBilling()` + +**File: lib/api-helper.ts** +- Line 252: `getRiwayatBilling()` โ†’ calls `/admin/riwayat-billing` + +--- + +## ๐ŸŽฏ ROOT CAUSE + +Frontend dipaksa menggunakan API `/admin/riwayat-billing` yang: +1. Memanggil `GetAllRiwayatpasien()` +2. Mengembalikan struct `Request_Admin_Inacbg` yang tidak punya field tanggal +3. Menyebabkan frontend tidak bisa filter berdasarkan tanggal + +**Ada 2 API endpoint dengan data berbeda:** +- `/admin/riwayat-billing` โ†’ untuk INACBG Admin (tidak ada tanggal) +- `/admin/riwayat-pasien-all` โ†’ untuk riwayat lengkap (ada tanggal tapi ada bug di service) + +--- + +## โœ… DATABASE - FIELDS TERSEDIA + +**Table: billing_pasien** +```sql +Tanggal_Masuk (TIMESTAMP) โœ… Ada di database +Tanggal_Keluar (TIMESTAMP) โœ… Ada di database +``` + +**Struct: BillingPasien** +```go +Tanggal_masuk *time.Time โœ… Mapped dari Tanggal_Masuk +Tanggal_keluar *time.Time โœ… Mapped dari Tanggal_Keluar +``` + +--- + +## ๐Ÿ“Š CHECKLIST STATUS + +| Item | Status | Lokasi | Catatan | +|------|--------|--------|---------| +| Database fields (tanggal) | โœ… Ada | billing_pasien table | Tersedia di DB | +| BillingPasien struct fields | โœ… Ada | models.go | Mapped dengan benar | +| Riwayat_Pasien_all struct | โœ… Ada | models.go L175 | Punya field tanggal | +| Request_Admin_Inacbg struct | โŒ Tidak | models.go L314 | Tidak punya field tanggal | +| GetRiwayatPasienAll service | โœ… Ada tapi BUG | services L10 | Line 210: bug assign pointer | +| GetAllRiwayatpasien service | โœ… Ada | services L226 | Tapi return struct tanpa tanggal | +| `/admin/riwayat-billing` endpoint | โœ… Ada | handlers L56 | Pakai GetAllRiwayatpasien | +| `/admin/riwayat-pasien-all` endpoint | โœ… Ada | handlers L58 | Tidak dipakai frontend | +| Frontend getRiwayatBilling() | โœ… Ada | api-helper.ts L252 | Call `/admin/riwayat-billing` | +| Frontend filter logic | โœ… Ada | riwayat-billing-pasien.tsx | Ready to work jika data ada | +| Frontend filter UI | โœ… Ada | riwayat-billing-pasien.tsx | Consolidated dropdown โœ… | + +--- + +## ๐Ÿค” KESIMPULAN + +**Masalah Core:** +Frontend menggunakan endpoint `/admin/riwayat-billing` yang return struct tanpa field tanggal. +Padahal ada endpoint alternatif `/admin/riwayat-pasien-all` yang punya field tanggal. + +**Opsi Solusi:** + +1. **Update `Request_Admin_Inacbg` struct** - tambahkan field tanggal + - Perubahan minimal: models.go (add 2 fields) + - Update: GetAllRiwayatpasien() service untuk assign tanggal values + +2. **Switch frontend ke `/admin/riwayat-pasien-all`** + - Update: api-helper.ts getRiwayatBilling() + - Fix bug di GetRiwayatPasienAll() service (line 210) + +3. **Tunggu user decision** โณ (current state) + diff --git a/MarkdownSourceFile/DEBUGGING_GUIDE.md b/MarkdownSourceFile/DEBUGGING_GUIDE.md new file mode 100644 index 0000000..734781f --- /dev/null +++ b/MarkdownSourceFile/DEBUGGING_GUIDE.md @@ -0,0 +1,146 @@ +# Debugging Guide: Warning Billing Sign Not Updating + +## Langkah-Langkah Debug: + +### 1. Buka Console Browser (F12) +- Tekan `F12` โ†’ Tab **Console** +- Pastikan console kosong (tidak ada error merah) + +### 2. Test Flow: +1. Buka halaman **Billing Pasien** +2. **Cari pasien** yang sudah punya billing history +3. **Buka Edit Modal** (klik tombol edit) +4. **Ubah tindakan** (tambah atau hapus) +5. **Klik Simpan Perubahan** +6. **Tunggu** dan lihat console logs + +### 3. Baca Console Logs Dalam Order: + +#### A. Pada saat klik Simpan: +Cari logs dengan pattern: +``` +๐Ÿš€ Mengirim request ke backend: +``` +**Verify:** +- URL benar: `/billing/{id}` +- Method: PUT +- `total_tarif_rs_value` ada dan tidak undefined +- Value-nya angka (bukan 0 jika ada tindakan) + +#### B. Setelah Simpan Berhasil: +Cari logs dengan pattern: +``` +๐Ÿ“ข Billing data updated event received: +``` +**Ini menandakan:** Event berhasil di-dispatch dari modal + +Kemudian cari: +``` +๐Ÿ”„ Triggering loadBillingAktifHistory for: +``` +**Ini menandakan:** Event listener di-trigger + +#### C. API Response Check: +Cari logs dengan pattern: +``` +๐Ÿ“ก Full API Response: +``` +**Ini menunjukkan:** Response dari GET /billing/aktif + +**Buka detail:** Expand object dan cari: +- `data.billing.total_tarif_rs` - harus nilai baru (bukan 0) +- `data.billing.total_klaim` - total BPJS + +#### D. Tarif Extraction: +Cari logs dengan pattern: +``` +๐Ÿ” Tarif Extraction Debug: +``` +**Verify:** +- `storedTotalTarif` - apakah value dari API terambil? +- `calculatedTotalTarif` - berapa nilai calculated-nya? +- `finalTotalTarif` - mana yang dipakai (stored atau calculated)? + +#### E. State Update: +Cari logs dengan pattern: +``` +๐Ÿ’พ Setting TotalTarifRS: +๐Ÿ’พ Setting BillingHistory with: +``` +**Verify:** +- Value yang di-set berapa? +- Apakah nilai yang di-set berbeda dari nilai sebelumnya? + +#### F. Live Values: +Cari logs dengan pattern: +``` +๐Ÿ“ˆ Live Values Changed: +``` +**Verify:** +- `totalTarifRS` - apakah berubah dari sebelumnya? +- `totalKlaimBPJSLive` - berapa nilainya? +- `liveBillingSign` - berapa hasilnya (Hijau/Kuning/Merah)? + +### 4. Jika Ada Error: +Cari logs merah (error) atau orange (warning). Catat isi-nya persis. + +### 5. Screenshot/Copy Console Output: +Setelah test selesai: +1. Right-click di console โ†’ "Save as..." +2. Atau screenshot dari Browser DevTools +3. Share dengan informasi: + - Nama pasien yang di-test + - Tindakan apa yang di-ubah + - Console log output lengkap + +## Possible Issues & Solutions: + +### Issue 1: Event tidak ter-trigger +**Log yang terlihat:** Tidak ada `๐Ÿ“ข Billing data updated event received:` +**Penyebab:** +- Modal tidak dispatch event +- Event listener tidak register +**Fix:** Check di modal if `window.dispatchEvent` di-execute + +### Issue 2: API Response tidak punya total_tarif_rs baru +**Log yang terlihat:** `๐Ÿ“ก Full API Response` menunjukkan `total_tarif_rs` = 0 atau nilai lama +**Penyebab:** +- Backend tidak menerima `total_tarif_rs` di request +- Backend tidak update ke database +**Fix:** Check apakah request PUT ke backend include `total_tarif_rs` + +### Issue 3: State tidak update walaupun API response benar +**Log yang terlihat:** `finalTotalTarif` benar tapi `๐Ÿ’พ Setting TotalTarifRS` tidak ada +**Penyebab:** +- Exception di loadBillingAktifHistory +- setState tidak execute +**Fix:** Check console untuk error messages + +### Issue 4: State update tapi UI tidak berubah +**Log yang terlihat:** `๐Ÿ“ˆ Live Values Changed` menunjukkan nilai baru tapi card masih lama +**Penyebab:** +- Component tidak re-render +- UI logic salah +**Fix:** Check React DevTools untuk component state + +--- + +## Copy-Paste Template untuk Report: + +``` +## Test Result: +- Pasien: [nama pasien yang di-test] +- Tindakan yang di-ubah: [apa yang di-ubah] + +### Console Logs: +[Paste semua console log output di sini] + +### Observations: +1. Event triggered? [Ya/Tidak] +2. API response punya total_tarif_rs baru? [Ya/Tidak, value: ...] +3. State terupdate? [Ya/Tidak, value: ...] +4. UI berubah? [Ya/Tidak] + +### Error Messages (jika ada): +[Paste error message di sini] +``` diff --git a/MarkdownSourceFile/ERROR_ANALYSIS_TANGGAL_KELUAR.md b/MarkdownSourceFile/ERROR_ANALYSIS_TANGGAL_KELUAR.md new file mode 100644 index 0000000..7ca6225 --- /dev/null +++ b/MarkdownSourceFile/ERROR_ANALYSIS_TANGGAL_KELUAR.md @@ -0,0 +1,125 @@ +# ๐Ÿ” ANALISIS ERROR: Column "tanggal_keluar" does not exist + +## ๐Ÿ“Œ ERROR YANG TERJADI + +``` +ERROR: column "tanggal_keluar" does not exist (SQLSTATE 42703) +``` + +Muncul di halaman: **Riwayat Billing Pasien** + +--- + +## ๐ŸŽฏ AKAR PENYEBAB MASALAH (ROOT CAUSE) + +### โœ… Yang sudah diperiksa: + +1. **File SQL PostgreSQL** - Tabel `billing_pasien` sudah benar: + - Column ada dengan nama: `"Tanggal_Keluar"` (dengan capital K) + - Struktur table di [postgreSQL_CareIt.sql](postgreSQL_CareIt.sql#L129-L140) + +2. **Models Golang** - BillingPasien struct benar: + - Field: `Tanggal_keluar *time.Time` dengan mapping column: `Tanggal_Keluar` + - Lokasi: [models.go](backendcareit_v4/models/models.go#L189) + +3. **Service File** - Query yang menggunakan column ini: + - File: [riwayat_billing_pasien.go](backendcareit_v4/services/riwayat_billing_pasien.go#L13-L14) + - File: [billing_aktif.go](backendcareit_v4/services/billing_aktif.go#L12-L13) + +### โŒ MASALAH YANG DITEMUKAN: + +**Ada perbedaan case sensitivity antara query dan column name di PostgreSQL!** + +``` +Query di Golang: "Tanggal_Keluar IS NOT NULL" +Column di Database: "Tanggal_Keluar" (dengan double quotes) +``` + +Ini adalah **karakteristik PostgreSQL yang CASE SENSITIVE**: + +``` +โœ— SALAH: Tanggal_Keluar (tanpa quotes โ†’ dianggap lowercase) +โœ“ BENAR: "Tanggal_Keluar" (dengan quotes โ†’ exactly matching) +``` + +--- + +## ๐Ÿ“ TEMPAT ERROR TERJADI + +**File:** [backendcareit_v4/services/riwayat_billing_pasien.go](backendcareit_v4/services/riwayat_billing_pasien.go) + +**Line 13-14:** +```go +// โŒ SALAH - Query tanpa quotes: +if err := db.Where("Tanggal_Keluar IS NOT NULL").Find(&billings).Error; err != nil { + return nil, err +} +``` + +**Line 179:** +```go +// โŒ SALAH - Query tanpa quotes: +if err := db.Where("Tanggal_Keluar IS NOT NULL").Find(&billings).Error; err != nil { + return nil, err +} +``` + +**File:** [backendcareit_v4/services/billing_aktif.go](backendcareit_v4/services/billing_aktif.go) + +**Line 13:** +```go +// โŒ SALAH - Query tanpa quotes: +if err := db.Where("Tanggal_Keluar IS NULL").Find(&billings).Error; err != nil { + return nil, err +} +``` + +--- + +## ๐Ÿ”ง SOLUSI + +### Opsi A: Update Query dengan Double Quotes (RECOMMENDED) + +Ganti semua query tanpa quotes menjadi: +```go +โœ“ db.Where(`"Tanggal_Keluar" IS NOT NULL`) +โœ“ db.Where(`"Tanggal_Keluar" IS NULL`) +``` + +### Opsi B: Update Column Names di PostgreSQL + +Ubah PostgreSQL column dari quoted names menjadi lowercase: +```sql +ALTER TABLE billing_pasien RENAME COLUMN "Tanggal_Keluar" TO tanggal_keluar; +``` + +--- + +## ๐Ÿ“‹ SUMMARY + +| Aspek | Status | +|-------|--------| +| Database PostgreSQL | โœ… Sudah ada column dengan benar | +| File SQL Import | โœ… Struktur sudah benar | +| Models Golang | โœ… Mapping sudah benar | +| Query di Services | โŒ MISSING QUOTES untuk PostgreSQL | + +**Penyebab utama:** PostgreSQL require double quotes untuk identifier yang case-sensitive, sementara query saat ini tidak menggunakannya. + +--- + +## ๐Ÿ“Œ NEXT STEP + +Setelah Anda confirm, saya akan melakukan FIX dengan: + +1. Update semua query di `billing_aktif.go` (1 tempat) +2. Update semua query di `riwayat_billing_pasien.go` (2 tempat) +3. Test ulang aplikasi + +**File yang akan diubah:** +- `backendcareit_v4/services/billing_aktif.go` +- `backendcareit_v4/services/riwayat_billing_pasien.go` + +--- + +**Status:** โณ Menunggu konfirmasi dari Anda sebelum melakukan perubahan diff --git a/MarkdownSourceFile/FIX_RIWAYAT_BILLING_FIELDS.md b/MarkdownSourceFile/FIX_RIWAYAT_BILLING_FIELDS.md new file mode 100644 index 0000000..1635ddf --- /dev/null +++ b/MarkdownSourceFile/FIX_RIWAYAT_BILLING_FIELDS.md @@ -0,0 +1,183 @@ +# Fix Riwayat Billing Pasien - Menampilkan Field yang Hilang + +## Problem +Di halaman Riwayat Billing Pasien, beberapa field tidak menampilkan data: +- โŒ Kelas +- โŒ DPJP (Doctor In Charge) +- โŒ Total Tarif RS +- โŒ Total Klaim + +## Root Cause +Backend sudah query dan return data (field ada di model), tapi frontend tidak menampilkannya. + +## Solusi + +### Backend Changes + +#### 1. **models/models.go** +- **Tambah field** `ID_DPJP` ke struct `Request_Admin_Inacbg` (line ~315) + ```go + type Request_Admin_Inacbg struct { + // ... existing fields + ID_DPJP int `json:"id_dpjp"` + // ... + } + ``` + +#### 2. **services/riwayat_billing_pasien.go** - Function `GetAllRiwayatpasien()` +- **Tambah query** untuk fetch DPJP dari tabel `billing_dpjp` (after dokter query) + ```go + dpjpMap := make(map[int]int) + var dpjpRows []struct { + ID_Billing int + ID_DPJP int + } + if err := db.Table("\"billing_dpjp\""). + Where("\"ID_Billing\" IN ?", billingIDs). + Select("\"ID_Billing\", \"ID_DPJP\""). + Scan(&dpjpRows).Error; err != nil { + return nil, err + } + for _, row := range dpjpRows { + dpjpMap[row.ID_Billing] = row.ID_DPJP + } + ``` + +- **Update compilation** untuk include `ID_DPJP` di response (line ~365) + ```go + item := models.Request_Admin_Inacbg{ + // ... existing fields + ID_DPJP: dpjpMap[b.ID_Billing], + // ... + } + ``` + +### Frontend Changes + +#### **src/app/component/riwayat-billing-pasien.tsx** + +1. **Update BillingData Interface** (line ~14-35) + - Tambah field `kelas` (lowercase variant) + - Tambah field `ID_DPJP` dan `id_dpjp` + +2. **Mobile Card View** (after Dokter section) + - Tambah display untuk Kelas + - Tambah display untuk DPJP + - Tambah display untuk Total Tarif RS + - Tambah display untuk Total Klaim + +```tsx +{/* Kelas */} +
+ + Kelas + + + {item.Kelas || item.kelas || '-'} + +
+ +{/* DPJP */} +
+ + DPJP + + + {item.ID_DPJP || item.id_dpjp ? `ID: ${item.ID_DPJP || item.id_dpjp}` : '-'} + +
+ +{/* Total Tarif RS */} +
+ + Total Tarif RS + + + {item.total_tarif_rs ? `Rp ${item.total_tarif_rs?.toLocaleString('id-ID')}` : '-'} + +
+ +{/* Total Klaim */} +
+ + Total Klaim + + + {item.total_klaim ? `Rp ${item.total_klaim?.toLocaleString('id-ID')}` : '-'} + +
+``` + +## Data Flow + +``` +GET /admin/riwayat-billing + โ†“ +GetRiwayatBillingHandler + โ†“ +GetAllRiwayatpasien() + โ”œโ”€ Query billing_pasien + โ”œโ”€ Query pasien data (nama, kelas, ruangan) + โ”œโ”€ Query billing_tindakan, icd9, icd10 + โ”œโ”€ Query billing_dokter (nama dokter) + โ”œโ”€ Query billing_dpjp (NEW! - untuk dapatkan ID_DPJP) + โ””โ”€ Compile response dengan semua field + โ†“ +Response JSON include: + - total_tarif_rs โœ… + - total_klaim โœ… + - id_dpjp โœ… + - kelas โœ… + โ†“ +Frontend parse dan display semua field โœ… +``` + +## API Response Example + +```json +{ + "status": "success", + "data": [ + { + "id_billing": 1, + "id_pasien": 5, + "nama_pasien": "John Doe", + "Kelas": "1", + "ruangan": "ICU A", + "total_tarif_rs": 5000000, + "total_klaim": 8000000, + "id_dpjp": 3, + "tindakan_rs": ["Operasi", "Konsultasi"], + "icd9": [...], + "icd10": [...], + "inacbg_ri": [], + "inacbg_rj": ["A10.01"], + "billing_sign": "Hijau", + "nama_dokter": ["Dr. Budi", "Dr. Ani"] + } + ] +} +``` + +## Testing Checklist + +- [ ] Backend compile sukses +- [ ] GET `/admin/riwayat-billing` return semua field +- [ ] Field `total_tarif_rs` tampil dengan format currency +- [ ] Field `total_klaim` tampil dengan format currency +- [ ] Field `Kelas` tampil dengan benar +- [ ] Field `id_dpjp` tampil sebagai "ID: X" atau "-" jika tidak ada +- [ ] Mobile card view menampilkan semua field baru +- [ ] Desktop table view tetap normal (mungkin perlu ekspand untuk tampil field baru) + +## Files Modified + +1. โœ… `backendcareit_v4/models/models.go` - Tambah `ID_DPJP` field +2. โœ… `backendcareit_v4/services/riwayat_billing_pasien.go` - Query DPJP +3. โœ… `frontendcareit_v4/src/app/component/riwayat-billing-pasien.tsx` - Display fields + +## Status + +โœ… **Backend Build**: SUCCESS +โœ… **All fields now available**: YES +โœ… **Frontend Display**: UPDATED diff --git a/MarkdownSourceFile/INACBG_DEBUGGING_GUIDE.md b/MarkdownSourceFile/INACBG_DEBUGGING_GUIDE.md new file mode 100644 index 0000000..9119605 --- /dev/null +++ b/MarkdownSourceFile/INACBG_DEBUGGING_GUIDE.md @@ -0,0 +1,134 @@ +# Debug Guide: INACBG Modal - Existing Codes Not Displaying + +## Problem +When clicking "Edit INACBG" button, the modal opens but existing INACBG codes from the database are not appearing. The modal shows "Belum ada kode INA CBG yang dipilih" instead of displaying saved codes. + +## Solution: Comprehensive Logging Added + +I've added detailed console logging throughout the data flow to help identify where the data is being lost. + +## How to Debug + +### Step 1: Open Browser Developer Console +- Press **F12** or Right-click โ†’ "Inspect" โ†’ "Console" tab +- Keep this open while testing + +### Step 2: Trigger the Data Load +1. In the application, select a patient record +2. Load a billing record +3. Look for these console logs in order: + +``` +๐Ÿ“Š Billing data from API: { ... complete object ... } +๐Ÿ“Š data.kode_inacbg: (value or undefined) +๐Ÿ“Š data.kode_inacbg type: (string, array, undefined, etc) +๐Ÿ“Š data.kode_inacbg is Array?: (true/false) +``` + +**If you see codes here:** โœ… API is returning data correctly + +### Step 3: Click "Edit INACBG" Button + +You should see: +``` +๐Ÿ”“ Edit INACBG button clicked +๐Ÿ“‹ originalInacbgCodes: [code1, code2, ...] +๐Ÿ“‹ originalInacbgCodes length: (number) +๐Ÿ“‹ totalKlaimOriginal: (number) +``` + +**If you see codes in originalInacbgCodes:** โœ… Parent component has loaded data correctly + +### Step 4: Modal Opens + +Look for: +``` +๐Ÿ“‹ Edit INACBG Modal opened +๐Ÿ“‹ currentData received: { + kode_inacbg: [...], + tipe_inacbg: "...", + kelas: "...", + total_klaim: ... +} +๐Ÿ“‹ currentData.kode_inacbg: [code1, code2, ...] +๐Ÿ“‹ currentData.kode_inacbg is Array?: true +๐Ÿ“‹ Codes to set in modal: [code1, code2, ...] +๐Ÿ“‹ Codes length: (number) +``` + +### Step 5: Monitor State Changes + +Watch for: +``` +๐ŸŽฏ selectedInacbgCodes updated: [code1, code2, ...] +๐ŸŽฏ selectedInacbgCodes length: (number) +``` + +**These logs appear every time the state changes.** + +## Diagnostic Checklist + +| Log Message | Indicates | If Missing = Problem | +|---|---|---| +| `๐Ÿ“Š Billing data from API:` | API returned data successfully | API not returning response | +| `๐Ÿ“Š data.kode_inacbg type:` | Format of kode_inacbg from database | Data structure issue | +| `๐Ÿ“ Loaded INACBG codes from DB:` | Codes successfully parsed | Parsing/parsing logic failed | +| `๐Ÿ”“ Edit INACBG button clicked` | Button click registered | Button handler not triggering | +| `originalInacbgCodes length:` (> 0) | Parent component has data | State not loading correctly | +| `๐Ÿ“‹ currentData received:` | Modal received props | Props not being passed | +| `๐Ÿ“‹ Codes to set in modal:` | Modal initialized with codes | Modal initialization failed | +| `๐ŸŽฏ selectedInacbgCodes updated:` | Modal state updated with codes | React state not updating | + +## Common Issues & Solutions + +### Issue 1: API logs show `kode_inacbg: undefined` +**Cause:** Backend not returning `kode_inacbg` field +**Solution:** Check backend API response format + +### Issue 2: Codes loaded but `originalInacbgCodes` is empty +**Cause:** State not setting correctly +**Solution:** May need to check React component lifecycle + +### Issue 3: Modal shows empty but `currentData received` has codes +**Cause:** Data not flowing from props to component state +**Solution:** Check `setSelectedInacbgCodes` initialization + +### Issue 4: `selectedInacbgCodes` shows codes but UI is empty +**Cause:** Rendering logic issue +**Solution:** Check the display condition that shows codes in template + +## Data Flow Path + +``` +Backend Database + โ†“ +API Response (kode_inacbg: []) + โ†“ +INACBG_Admin_Ruangan component loads data + โ†“ +setOriginalInacbgCodes([...]) + โ†“ +User clicks "Edit INACBG" + โ†“ +Modal receives: currentData={{ kode_inacbg: originalInacbgCodes, ... }} + โ†“ +edit-INACBG Modal setSelectedInacbgCodes(codes) + โ†“ +UI displays codes with delete buttons +``` + +## Next Steps + +1. **Run the application** +2. **Open F12 console** +3. **Follow the steps above** +4. **Screenshot the console output** +5. **Identify which logs are missing or show wrong values** +6. **Share the logs with specific details about what's missing** + +Based on the logs, we can pinpoint exactly where the data flow is broken and fix it accordingly. + +## Files Modified + +- `INACBG_Admin_Ruangan.tsx` - Added detailed logging at API fetch and button click +- `edit-INACBG.tsx` - Added detailed logging in modal initialization and state updates diff --git a/MarkdownSourceFile/INACBG_STATUS.md b/MarkdownSourceFile/INACBG_STATUS.md new file mode 100644 index 0000000..abe90c7 --- /dev/null +++ b/MarkdownSourceFile/INACBG_STATUS.md @@ -0,0 +1,247 @@ +# INACBG Modal Implementation Status + +## โœ… Completed Features + +### 1. Modal UI Component (edit-INACBG.tsx) +- Full responsive modal design +- INACBG code list display with trash icons +- Delete confirmation modal +- Real-time total klaim calculation +- Responsive for all screen sizes (mobile, tablet, desktop) + +### 2. Real-Time Calculation Engine +- **Delta-based approach:** Only new codes added/deleted affect calculation +- **Base calculation:** totalKlaim = original total + sum of new codes +- **Deleted codes:** Subtracted from the delta +- **Visual feedback:** Displays total before and after changes + +### 3. Delete Functionality +- Click trash icon to confirm delete +- Confirmation modal before deleting +- Automatic recalculation after delete +- Codes removed from display immediately + +### 4. API Integration +- Added endpoints: `getTarifBPJSInacbgRI` and `getTarifBPJSInacbgRJ` +- Fetches tarif data for both RI (Rawat Inap) and RJ (Rawat Jalan) +- Full code descriptions displayed for user reference + +### 5. Parent Component Integration +- "Edit INACBG" button in INACBG_Admin_Ruangan component +- Replaced old "Edit" button functionality +- Modal opens/closes correctly +- Integration with existing billing data + +### 6. Submit to Backend +- Delta payload calculation: + - New codes added: included in submission + - Existing codes kept: NOT included (database keeps them) + - Deleted codes: marked for deletion with delta +- Backend automatically merges changes with existing data + +--- + +## ๐Ÿ”ด Current Issue: Data Display + +### Problem +Existing INACBG codes saved in database are NOT appearing in modal when opened. + +### Symptoms +- Modal opens correctly +- Total klaim shows correctly (totalKlaimOriginal is loaded) +- INACBG codes list shows: "Belum ada kode INA CBG yang dipilih" +- User cannot see or delete existing codes + +### Root Cause +**UNKNOWN** - Debugging in progress. Data flow broken somewhere between: +1. API returns data โ†’ +2. Component loads codes โ†’ +3. Modal receives codes โ†’ +4. UI displays codes + +--- + +## ๐Ÿ”ง Debugging Infrastructure Added + +### Console Logging Points + +**In Parent Component (INACBG_Admin_Ruangan.tsx):** +``` +1. Line 446-449: API response format check + - Shows kode_inacbg value and type + +2. Line 463-466: Code loading completion + - Shows if codes loaded successfully + - Shows parsed code array + +3. Line 1534-1539: Button click handler + - Shows originalInacbgCodes state at click time + - Shows totalKlaimOriginal value + +4. Line 388-395: Modal open effect + - Logs whenever isEditINACBGModalOpen changes + - Shows all relevant state values +``` + +**In Modal Component (edit-INACBG.tsx):** +``` +1. Line 50-54: State change monitor + - Logs when selectedInacbgCodes changes + - Shows current array and length + +2. Line 130-145: Modal initialization effect + - Shows currentData received from props + - Shows type and array detection + - Shows codes to be set +``` + +### How Logging Helps +- **Pinpoint exactly where data is lost** +- **Identify data format issues** (string vs array) +- **Verify each step of data flow** +- **Detect state initialization problems** + +--- + +## ๐Ÿ“‹ Data Structure + +### From API Response +```javascript +{ + kode_inacbg: ["J75", "K45", "L20"], // Array of code strings + tipe_inacbg: "RI" | "RJ", + kelas: "Kelas 1", + total_klaim: 2776725, + // ... other fields +} +``` + +### In Parent Component States +```javascript +originalInacbgCodes: ["J75", "K45", "L20"] // DB snapshot (never changes) +existingInacbgCodes: ["J75", "K45", "L20"] // Calculation baseline +selectedInacbgCodes: ["J75", "K45", "L20"] // Current UI selection +``` + +### Passed to Modal +```javascript +currentData={{ + kode_inacbg: originalInacbgCodes, // Should be array + tipe_inacbg: tipeInacbg, + kelas: kelas, + total_klaim: totalKlaimOriginal, +}} +``` + +### In Modal Component States +```javascript +selectedInacbgCodes: ["J75", "K45", "L20"] // To display +existingInacbgCodes: ["J75", "K45", "L20"] // For calculation baseline +``` + +--- + +## ๐Ÿงช Testing Checklist + +When debugging, verify in order: + +- [ ] API returns data with `kode_inacbg` field +- [ ] `kode_inacbg` is an array (not string or object) +- [ ] Array contains code strings ["J75", "K45", etc] +- [ ] `originalInacbgCodes` state updates after API fetch +- [ ] Button click logs show `originalInacbgCodes` with data +- [ ] Modal receives data in `currentData.kode_inacbg` +- [ ] Modal sets `selectedInacbgCodes` from received data +- [ ] UI renders codes list with trash icons +- [ ] Clicking trash button shows confirmation modal +- [ ] Confirming delete removes code from list + +--- + +## ๐Ÿ’พ Files Modified in This Session + +1. **INACBG_Admin_Ruangan.tsx** (1579 lines) + - Added `originalInacbgCodes` state + - Enhanced API fetch logging + - Added button click logging + - Added modal open effect with logging + - Modified modal data passing + +2. **edit-INACBG.tsx** (647 lines) + - Added `existingInacbgCodes` state + - Enhanced initialization logging + - Added state change monitoring + - Updated calculation logic + - Added delete functionality + +3. **INACBG_DEBUGGING_GUIDE.md** (NEW) + - Comprehensive debugging guide + - Step-by-step troubleshooting + - Diagnostic checklist + +--- + +## ๐ŸŽฏ Next Action Required + +**User must run the application and check browser console (F12) to:** +1. Verify logs appear in expected sequence +2. Identify where data flow breaks +3. Share console output for analysis +4. Based on logs, apply targeted fix + +Once console output is reviewed, the specific root cause will be identified and a precise fix applied. + +--- + +## ๐Ÿ“Š Feature Completion Matrix + +| Feature | Status | Notes | +|---------|--------|-------| +| Modal UI | โœ… Complete | Fully styled and responsive | +| Open/Close | โœ… Complete | Button integration working | +| Display Empty State | โœ… Complete | Shows "Belum ada..." message | +| Add Code | โœ… Complete | Dropdown search and add working | +| Delete Code | โœ… Complete | Confirmation modal works | +| Real-time Calc | โœ… Complete | Delta calculation accurate | +| Submit to Backend | โœ… Complete | Payload structure correct | +| Load Existing Codes | ๐Ÿ”ด Blocked | Data not displaying | +| Edit Existing Codes | ๐Ÿ”ด Blocked | Depends on loading | + +--- + +## ๐Ÿš€ Known Working Scenarios + +1. **User can add NEW codes** - Works perfectly +2. **User can delete NEW codes** - Works perfectly +3. **Total klaim calculation** - Accurate for new codes +4. **Modal opens/closes** - No issues +5. **Backend submission** - Correct payload structure +6. **Different patients** - Load correctly (except INACBG display) +7. **RI vs RJ selection** - Switches between code lists correctly + +## โŒ Known Non-Working + +1. **Existing codes NOT visible** when modal opens +2. **Cannot delete existing codes** (not visible to delete) +3. **Cannot edit existing codes** (not visible to edit) + +--- + +## ๐Ÿ”— Relationship to Other Features + +- Similar implementation to **edit-pasien** modal (working reference) +- Similar calculation to **tindakan RS** fix (delta approach) +- Part of **INACBG_Admin_Ruangan** component ecosystem +- Connects to backend **/admin/billing/{id}** endpoint +- Uses **getTarifBPJSInacbgRI/RJ** data + +--- + +## ๐Ÿ“ Notes + +- No backend changes made (as requested) +- All frontend component created +- Comprehensive logging infrastructure in place +- Ready for debugging phase +- Design matches existing component patterns +- Responsive design tested on multiple screen sizes diff --git a/MarkdownSourceFile/MIGRASI_MYSQL_KE_POSTGRESQL_GUIDE.md b/MarkdownSourceFile/MIGRASI_MYSQL_KE_POSTGRESQL_GUIDE.md new file mode 100644 index 0000000..a59abcf --- /dev/null +++ b/MarkdownSourceFile/MIGRASI_MYSQL_KE_POSTGRESQL_GUIDE.md @@ -0,0 +1,439 @@ +# ๐Ÿ“‹ PANDUAN MIGRASI MYSQL KE POSTGRESQL - STEP BY STEP + +## ๐Ÿ“Œ RINGKASAN KONDISI SAAT INI +- **Backend Framework:** Golang (Gin + GORM) +- **Database Saat Ini:** MySQL (localhost:3306) +- **Database Baru:** PostgreSQL (sudah dibuat di pgAdmin4) +- **Driver Saat Ini:** `github.com/go-sql-driver/mysql` + `gorm.io/driver/mysql` + +--- + +## โœ… TAHAP 1: PERSIAPAN & VERIFIKASI + +### Step 1.1: Verifikasi Database PostgreSQL di pgAdmin4 +**Lokasi file konfigurasi:** +- File: `backendcareit_v4\.env` +- File koneksi database: `backendcareit_v4\database\db.go` + +**Yang perlu dicek:** +- โœ“ PostgreSQL sudah berjalan dan bisa diakses dari pgAdmin4 +- โœ“ Database baru sudah dibuat (catat nama databasenya) +- โœ“ User PostgreSQL sudah dibuat (catat username dan passwordnya) +- โœ“ Port PostgreSQL (default: 5432) +- โœ“ Host PostgreSQL (localhost atau IP address) + +**Contoh informasi yang diperlukan:** +``` +Hostname/Address: localhost +Port: 5432 +Username: (nama user PostgreSQL) +Password: (password user PostgreSQL) +Database Name: (nama database PostgreSQL) +``` + +--- + +## โœ… TAHAP 2: MIGRASI DATA DARI MYSQL KE POSTGRESQL + +### Step 2.1: Export Data dari MySQL +Gunakan tools berikut untuk export data: + +**Option A: Menggunakan MySQL Workbench** +1. Buka MySQL Workbench +2. Koneksi ke MySQL server (localhost:3306) +3. Pilih database: `careit_db` +4. Klik menu **Server** โ†’ **Data Export** +5. Pilih tables yang ingin diekspor (semua tables di `careit_db`) +6. Pilih opsi **Dump Structure and Data** +7. Simpan file dengan nama: `careit_backup.sql` + +**Option B: Menggunakan Command Line (PowerShell)** +```powershell +# Jalankan command ini di PowerShell +mysqldump -u root -p careit_db > "C:\Users\rengginang\Desktop\CAREIT_V4\careit_backup.sql" +# Akan diminta password MySQL (tekan Enter jika tidak ada password) +``` + +**Hasil yang diharapkan:** +- File SQL dengan semua struktur tabel dan data: `careit_backup.sql` + +--- + +### Step 2.2: Konversi SQL MySQL ke PostgreSQL +Beberapa perbedaan syntax yang perlu dikonversi: + +#### โš ๏ธ Perbedaan Utama MySQL vs PostgreSQL: + +| Aspek | MySQL | PostgreSQL | +|-------|-------|-----------| +| **Type AUTO_INCREMENT** | `INT AUTO_INCREMENT` | `SERIAL` atau `INT GENERATED ALWAYS AS IDENTITY` | +| **Type DATETIME** | `DATETIME` | `TIMESTAMP` | +| **Type TINYINT** | `TINYINT(1)` | `BOOLEAN` atau `SMALLINT` | +| **Constraint Engine** | Bisa diabaikan | Harus ada (ENGINE=InnoDB menjadi tidak relevan) | +| **Charset** | `CHARACTER SET utf8mb4` | `ENCODING 'UTF8'` | +| **Function NOW()** | `NOW()` | `CURRENT_TIMESTAMP` | + +#### Step 2.2a: Konversi File SQL Manual +1. Buka file `careit_backup.sql` dengan text editor (VS Code / Notepad++) +2. Lakukan replace berikut: + +**Replace Pattern List:** +``` +1. Ganti: `AUTO_INCREMENT` โ†’ `GENERATED ALWAYS AS IDENTITY` + Contoh: + DARI: `ID_Tarif_RS` int NOT NULL AUTO_INCREMENT, + KE: `ID_Tarif_RS` SERIAL PRIMARY KEY, + +2. Ganti: `CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci` โ†’ (hapus) + Contoh: + DARI: CREATE TABLE `tarif_rs` (...) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; + KE: CREATE TABLE `tarif_rs` (...); + +3. Ganti: `ENGINE=InnoDB` โ†’ (hapus) + +4. Ganti: `DATETIME` โ†’ `TIMESTAMP` + Contoh: + DARI: `Tanggal_Dibuat` datetime DEFAULT CURRENT_TIMESTAMP, + KE: `Tanggal_Dibuat` TIMESTAMP DEFAULT CURRENT_TIMESTAMP, + +5. Ganti: backtick (`) โ†’ double quote (") + Contoh: + DARI: CREATE TABLE `users` ( + KE: CREATE TABLE "users" ( + +6. Ganti function names: + - `NOW()` tetap bisa dipakai + - `CURDATE()` tetap bisa dipakai +``` + +#### Step 2.2b: Gunakan Online Tool (Opsional) +Alternatif menggunakan online converter: +- Kunjungi: https://www.pgloader.io/ +- Atau gunakan tool: https://www.vertabelo.com/ + +--- + +### Step 2.3: Import Data ke PostgreSQL + +**Option A: Menggunakan pgAdmin4** +1. Buka pgAdmin4 di browser (default: http://localhost:5050) +2. Login dengan credentials pgAdmin4 +3. Di sebelah kiri, klik database yang sudah dibuat +4. Klik menu **Tools** โ†’ **Query Tool** +5. Copy isi file SQL yang sudah dikonversi +6. Paste ke Query Tool +7. Klik tombol **Execute** (atau tekan F5) +8. Tunggu sampai selesai (jika ada error, perbaiki) + +**Option B: Menggunakan psql Command Line** +```powershell +# Jalankan di PowerShell +# Pastikan PostgreSQL sudah di PATH +psql -U -d -f "C:\Users\rengginang\Desktop\CAREIT_V4\careit_backup.sql" + +# Contoh: +psql -U postgres -d careit_db -f "C:\Users\rengginang\Desktop\CAREIT_V4\careit_backup.sql" +``` + +**Hasil yang diharapkan:** +- โœ“ Semua tabel sudah ter-import di PostgreSQL +- โœ“ Data sudah ter-copy ke PostgreSQL +- โœ“ Tidak ada error messages + +--- + +## โœ… TAHAP 3: UPDATE BACKEND GOLANG + +### Step 3.1: Update Go Modules (Dependencies) + +**File yang perlu diubah:** `backendcareit_v4\go.mod` + +**Perubahan:** +``` +Dari: github.com/go-sql-driver/mysql v1.9.3 +Dari: gorm.io/driver/mysql v1.6.0 + +Ke: github.com/lib/pq v1.10.9 (PostgreSQL driver) +Ke: gorm.io/driver/postgres v1.5.9 (GORM PostgreSQL driver) +``` + +**Di Command Line / PowerShell:** +```powershell +cd "c:\Users\rengginang\Desktop\CAREIT_V4\backendcareit_v4" + +# Hapus dependency MySQL lama +go get -d -u + +# Tambah PostgreSQL driver +go get github.com/lib/pq +go get gorm.io/driver/postgres + +# Atau jalankan: +go get -u +go mod tidy +``` + +--- + +### Step 3.2: Update File Koneksi Database + +**File yang perlu diubah:** `backendcareit_v4\database\db.go` + +**Current Code (MySQL):** +```go +import ( + "fmt" + "os" + + _ "github.com/go-sql-driver/mysql" + "gorm.io/driver/mysql" + "gorm.io/gorm" +) + +func KonekDB() (*gorm.DB, error) { + dsn := os.Getenv("DB_DSN") + + if dsn == "" { + user := envOrDefault("DB_USER", "root") + pass := envOrDefault("DB_PASSWORD", "") + host := envOrDefault("DB_HOST", "localhost") + port := envOrDefault("DB_PORT", "3306") + name := envOrDefault("DB_NAME", "care_it_data") + + dsn = fmt.Sprintf("%s:%s@tcp(%s:%s)/%s?charset=utf8mb4&parseTime=True&loc=Local", user, pass, host, port, name) + } + + db, err := gorm.Open(mysql.Open(dsn), &gorm.Config{}) + if err != nil { + return nil, fmt.Errorf("gagal membuka koneksi database: %w", err) + } + + return db, nil +} +``` + +**New Code (PostgreSQL):** +```go +import ( + "fmt" + "os" + + "gorm.io/driver/postgres" + "gorm.io/gorm" +) + +func KonekDB() (*gorm.DB, error) { + dsn := os.Getenv("DB_DSN") + + if dsn == "" { + user := envOrDefault("DB_USER", "postgres") + pass := envOrDefault("DB_PASSWORD", "") + host := envOrDefault("DB_HOST", "localhost") + port := envOrDefault("DB_PORT", "5432") + name := envOrDefault("DB_NAME", "careit_db") + + fmt.Println("DB_USER:", os.Getenv("DB_USER")) + fmt.Println("DB_PASSWORD:", os.Getenv("DB_PASSWORD")) + fmt.Println("DB_HOST:", os.Getenv("DB_HOST")) + fmt.Println("DB_PORT:", os.Getenv("DB_PORT")) + fmt.Println("DB_NAME:", os.Getenv("DB_NAME")) + fmt.Println("HOST:", os.Getenv("HOST")) + fmt.Println("PORT:", os.Getenv("PORT")) + + dsn = fmt.Sprintf("host=%s port=%s user=%s password=%s dbname=%s sslmode=disable", host, port, user, pass, name) + } + + db, err := gorm.Open(postgres.Open(dsn), &gorm.Config{}) + if err != nil { + return nil, fmt.Errorf("gagal membuka koneksi database: %w", err) + } + + return db, nil +} + +func envOrDefault(key, fallback string) string { + val := os.Getenv(key) + if val == "" { + return fallback + } + return val +} +``` + +**Penjelasan Perubahan:** +- Import berubah dari `gorm.io/driver/mysql` โ†’ `gorm.io/driver/postgres` +- DSN format berubah dari: `user:pass@tcp(host:port)/dbname?charset=...` +- DSN format baru: `host=... port=... user=... password=... dbname=... sslmode=disable` +- Port default berubah dari 3306 โ†’ 5432 +- Default user berubah dari root โ†’ postgres + +--- + +### Step 3.3: Update File Environment Variables + +**File yang perlu diubah:** `backendcareit_v4\.env` + +**Current (MySQL):** +``` +DB_USER=root +DB_PASSWORD= +DB_HOST=localhost +DB_PORT=3306 +DB_NAME=careit_db +``` + +**New (PostgreSQL):** +``` +DB_USER= +DB_PASSWORD= +DB_HOST=localhost +DB_PORT=5432 +DB_NAME= +``` + +**Contoh:** +``` +DB_USER=postgres +DB_PASSWORD=password123 +DB_HOST=localhost +DB_PORT=5432 +DB_NAME=careit_db +``` + +--- + +## โœ… TAHAP 4: TESTING & VERIFIKASI + +### Step 4.1: Test Koneksi Database +```powershell +cd "c:\Users\rengginang\Desktop\CAREIT_V4\backendcareit_v4" + +# Jalankan backend +go run main.go +``` + +**Expected Output:** +``` +DB_USER: postgres +DB_PASSWORD: **** +DB_HOST: localhost +DB_PORT: 5432 +DB_NAME: careit_db +HOST: 0.0.0.0 +PORT: 8081 +Server berjalan di http://0.0.0.0:8081 +Akses dari jaringan lain menggunakan IP lokal komputer + port 8081 +``` + +โœ“ Jika tidak ada error, koneksi berhasil! + +### Step 4.2: Test API Endpoints +Gunakan Postman atau curl untuk test: + +```powershell +# Contoh test GET +curl http://localhost:8081/api/endpoint-yang-ada + +# Test POST dengan data +curl -X POST http://localhost:8081/api/endpoint-yang-ada ` + -H "Content-Type: application/json" ` + -d '{"key":"value"}' +``` + +### Step 4.3: Verifikasi Data di PostgreSQL +Buka pgAdmin4 dan cek: +1. Database โ†’ careit_db โ†’ Schemas โ†’ Tables +2. Klik kanan table โ†’ View/Edit Data +3. Verifikasi bahwa data sudah ter-copy dengan benar + +--- + +## โš ๏ธ TAHAP 5: HAL-HAL YANG PERLU DIPERHATIKAN + +### 5.1: Case Sensitivity +- **MySQL:** Case-insensitive untuk nama table dan column +- **PostgreSQL:** Case-sensitive untuk nama table dan column + +**Solusi:** Pastikan nama table dan column di models.go sesuai dengan database + +### 5.2: Sequences (AUTO_INCREMENT equivalent) +PostgreSQL menggunakan SEQUENCES untuk AUTO_INCREMENT + +**Jika ada issue dengan ID generation:** +```sql +-- Di PostgreSQL Query Tool, jalankan: +SELECT * FROM pg_sequences; +-- Jika sequence tidak ada, buat manual: +CREATE SEQUENCE table_name_id_seq; +``` + +### 5.3: Type Casting +Beberapa operasi math di Go mungkin perlu disesuaikan: +- MySQL: TINYINT(1) โ†’ Boolean +- PostgreSQL: BOOLEAN atau SMALLINT + +### 5.4: Time Zone +PostgreSQL dan MySQL menangani timezone berbeda: +- Pastikan environment variable untuk timezone sudah benar +- Di DSN PostgreSQL: bisa tambah `TimeZone=Asia/Jakarta` jika perlu + +--- + +## ๐Ÿ“ CHECKLIST PERSIAPAN MIGRASI + +Sebelum melakukan perubahan, pastikan: + +- [ ] PostgreSQL sudah terinstall dan berjalan +- [ ] Database baru sudah dibuat di PostgreSQL (catat nama, user, password, port) +- [ ] pgAdmin4 bisa mengakses PostgreSQL +- [ ] Data MySQL sudah di-backup (file .sql sudah tersimpan) +- [ ] SQL dari MySQL sudah dikonversi ke PostgreSQL format +- [ ] Data sudah ter-import ke PostgreSQL +- [ ] File `go.mod` sudah ter-update dengan PostgreSQL driver +- [ ] File `database/db.go` sudah siap untuk diubah +- [ ] File `.env` sudah siap dengan info PostgreSQL baru + +--- + +## ๐Ÿ“Œ FILE-FILE YANG AKAN DIUBAH + +1. **`backendcareit_v4\go.mod`** - Tambah/ganti dependencies +2. **`backendcareit_v4\database\db.go`** - Update koneksi database +3. **`backendcareit_v4\.env`** - Update kredensial database + +**File-file yang TIDAK berubah:** +- Semua models (file di folder `models/`) +- Semua handlers (file di folder `handlers/`) +- Semua services (file di folder `services/`) +- Frontend code + +--- + +## โญ๏ธ LANGKAH SELANJUTNYA + +Setelah Anda: +1. โœ“ Verifikasi Database PostgreSQL +2. โœ“ Export data dari MySQL +3. โœ“ Konversi SQL format +4. โœ“ Import data ke PostgreSQL + +**BARU SAAT ITU** kita akan: +1. Update `go.mod` dengan PostgreSQL driver +2. Update `database/db.go` dengan koneksi PostgreSQL +3. Update `.env` dengan kredensial PostgreSQL +4. Test seluruh aplikasi + +--- + +## ๐Ÿ“ž NOTES PENTING + +- **Jangan ubah code dulu** sampai Anda confirm sudah siap +- **Backup data MySQL** sebelum proses migrasi +- **Test di environment lokal** dulu sebelum production +- **Dokumentasikan setiap step** untuk reference ke depan + +--- + +**Created:** January 19, 2026 +**Status:** SIAP UNTUK MIGRASI +**Last Updated:** Awaiting User Confirmation diff --git a/backendcareit_v4/.env b/backendcareit_v4/.env new file mode 100644 index 0000000..b2f903a --- /dev/null +++ b/backendcareit_v4/.env @@ -0,0 +1,15 @@ +# DB_USER=careit_user +DB_USER=postgres +DB_PASSWORD= gakbikinkembung25 +# DB_HOST=31.97.109.192 +DB_HOST= localhost +DB_PORT=5432 +DB_NAME=careit_db +HOST=0.0.0.0 +PORT=8081 +# PORT=8082 + +EMAIL_FROM=careit565@gmail.com +EMAIL_PASSWORD=gkhz bjax uamw xydf +SMTP_HOST=smtp.gmail.com +SMTP_PORT=587 \ No newline at end of file diff --git a/backendcareit_v4/.gitignore b/backendcareit_v4/.gitignore new file mode 100644 index 0000000..cd63856 --- /dev/null +++ b/backendcareit_v4/.gitignore @@ -0,0 +1,34 @@ +# Dependencies +node_modules/ +package-lock.json + +# Capacitor +android/ +ios/ +.capacitor/ + +# Build outputs +www/ +*.apk +*.aab + +# IDE +.idea/ +.vscode/ +*.swp +*.swo + +# OS +.DS_Store +Thumbs.db + +# Logs +*.log +npm-debug.log* + +# Go +*.exe +*.test +*.out + + diff --git a/backendcareit_v4/Note.md b/backendcareit_v4/Note.md new file mode 100644 index 0000000..0e53328 --- /dev/null +++ b/backendcareit_v4/Note.md @@ -0,0 +1,71 @@ +{ + "nama_dokter": "dr. Fadilah Muttaqin, Spp.A,MBiomed", + "nama_pasien": "Budi Hartono", + "jenis_kelamin": "Laki-laki", + "usia": 40, + "ruangan": "ICU", + "kelas": "1", + "tindakan_rs": [ + "ASUHAN KEFARMASIAN SELAMA PERAWATAN - RAWAT INAP", + "BERCAK DARAH KERING" + ], + "icd9": [ + "Therapeutic ultrasound", + "Therapeutic ultrasound of vessels of head and neck" + ], + "icd10": [ + "Cholera", + "Cholera due to vibrio cholerae 01, biovar eltor" + ], + "cara_bayar": "UMUM", + "total_tarif_rs": 250000 +} +FE harus kirim gini + + +data untuk admin dari be: +{ + "data": [ + { + "nama_pasien": "mahdi Jamaludin", + "id_pasien": 1, + "Kelas": "2", + "ruangan": "R. Nusa Dua", + "total_tarif_rs": 150000, + "tindakan_rs": [ + "DAR.001", + "DAR.002" + ], + "icd9": [ + "00.0", + "00" + ], + "icd10": [ + "A00", + "A00.0" + ] + } + ], + "status": "success" +} + + + if strings.TrimSpace(dokter.Password) == "" || dokter.Password != req.Password { + c.JSON(http.StatusUnauthorized, gin.H{ + "status": "error", + "message": "Email atau password salah", + }) + return + } + + { + "dokter": { + "email": "hajengwulandari.fk@ub.ac.id", + "id": 2, + "ksm": "Anak", + "nama": "dr. Hajeng Wulandari, Sp.A, Mbiomed" + }, + "status": "success", + "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6ImhhamVuZ3d1bGFuZGFyaS5ma0B1Yi5hYy5pZCIsImV4cCI6MTc2NDc1NzIxMCwiaWF0IjoxNzY0NjcwODEwLCJpZCI6Miwia3NtIjoiQW5hayIsIm5hbWEiOiJkci4gSGFqZW5nIFd1bGFuZGFyaSwgU3AuQSwgTWJpb21lZCJ9.X1PyxjbC1Ht3DFbvi4svqXY4hsNIS_nmYMROkRaK-Ko" +} +jadi data yang dihitung cuma yang rawat inap nanti yang isi tanggal keluar berarti admin billing dan nanti total tarif dan total klaim nanti di tampilin juga ketika datanya di tampilin sama kaya tindakan dan tarif rs nanti di admin billing juga bisa liat data tindakan lama dan icd lama dan tindakan baru dan icd bari dan inacbg lama dan inacbg baru plus total tarif yang lama di tambah yang barui dan total klaim lama nanti setelah dimasukan ditambah lagi sama total klaim baru baru dihitung billing sign baru paham gak \ No newline at end of file diff --git a/backendcareit_v4/__dummy__ b/backendcareit_v4/__dummy__ new file mode 100644 index 0000000..5cae366 --- /dev/null +++ b/backendcareit_v4/__dummy__ @@ -0,0 +1,10 @@ +{ + "cells": [], + "metadata": { + "language_info": { + "name": "python" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} \ No newline at end of file diff --git a/backendcareit_v4/database/db.go b/backendcareit_v4/database/db.go new file mode 100644 index 0000000..7278f6b --- /dev/null +++ b/backendcareit_v4/database/db.go @@ -0,0 +1,49 @@ +package database + +import ( + "fmt" + "os" + + _ "github.com/go-sql-driver/mysql" + "gorm.io/driver/mysql" + "gorm.io/gorm" +) + +var DB *gorm.DB + +func KonekDB() (*gorm.DB, error) { + dsn := os.Getenv("DB_DSN") + + if dsn == "" { + user := envOrDefault("DB_USER", "root") + pass := envOrDefault("DB_PASSWORD", "") + host := envOrDefault("DB_HOST", "localhost") + port := envOrDefault("DB_PORT", "3306") + name := envOrDefault("DB_NAME", "care_it_data") + + fmt.Println("DB_USER:", os.Getenv("DB_USER")) + fmt.Println("DB_PASSWORD:", os.Getenv("DB_PASSWORD")) + fmt.Println("DB_HOST:", os.Getenv("DB_HOST")) + fmt.Println("DB_PORT:", os.Getenv("DB_PORT")) + fmt.Println("DB_NAME:", os.Getenv("DB_NAME")) + fmt.Println("HOST:", os.Getenv("HOST")) + fmt.Println("PORT:", os.Getenv("PORT")) + + dsn = fmt.Sprintf("%s:%s@tcp(%s:%s)/%s?charset=utf8mb4&parseTime=True&loc=Local", user, pass, host, port, name) + } + + db, err := gorm.Open(mysql.Open(dsn), &gorm.Config{}) + if err != nil { + return nil, fmt.Errorf("gagal membuka koneksi database: %w", err) + } + + return db, nil +} + +func envOrDefault(key, fallback string) string { + val := os.Getenv(key) + if val == "" { + return fallback + } + return val +} diff --git a/backendcareit_v4/database/db_postgreSQL.go b/backendcareit_v4/database/db_postgreSQL.go new file mode 100644 index 0000000..10ad216 --- /dev/null +++ b/backendcareit_v4/database/db_postgreSQL.go @@ -0,0 +1,48 @@ +package database + +import ( + "fmt" + "os" + + "gorm.io/driver/postgres" + "gorm.io/gorm" +) + +func KonekPG() (*gorm.DB, error) { + dsn := os.Getenv("DB_DSN") + + if dsn == "" { + user := envOrDefaultPG("DB_USER", "postgres") + pass := envOrDefaultPG("DB_PASSWORD", "gakbikinkembung25") + host := envOrDefaultPG("DB_HOST", "localhost") + port := envOrDefaultPG("DB_PORT", "5432") + name := envOrDefaultPG("DB_NAME", "careit_db") + + fmt.Println("DB_USER:", os.Getenv("DB_USER")) + fmt.Println("DB_PASSWORD:", os.Getenv("DB_PASSWORD")) + fmt.Println("DB_HOST:", os.Getenv("DB_HOST")) + fmt.Println("DB_PORT:", os.Getenv("DB_PORT")) + fmt.Println("DB_NAME:", os.Getenv("DB_NAME")) + fmt.Println("HOST:", os.Getenv("HOST")) + fmt.Println("PORT:", os.Getenv("PORT")) + + dsn = fmt.Sprintf("host=%s port=%s user=%s password=%s dbname=%s sslmode=disable", host, port, user, pass, name) + } + + db, err := gorm.Open(postgres.Open(dsn), &gorm.Config{}) + if err != nil { + return nil, fmt.Errorf("gagal membuka koneksi database: %w", err) + } else { + fmt.Println("Koneksi ke database PostgreSQL berhasil!") + } + + return db, nil +} + +func envOrDefaultPG(key, fallback string) string { + val := os.Getenv(key) + if val == "" { + return fallback + } + return val +} diff --git a/backendcareit_v4/go.mod b/backendcareit_v4/go.mod new file mode 100644 index 0000000..2fdc027 --- /dev/null +++ b/backendcareit_v4/go.mod @@ -0,0 +1,55 @@ +module backendcareit + +go 1.23.6 + +require ( + github.com/gin-contrib/cors v1.7.6 + github.com/gin-gonic/gin v1.11.0 + github.com/go-sql-driver/mysql v1.9.3 + github.com/golang-jwt/jwt/v4 v4.5.2 + github.com/joho/godotenv v1.5.1 + gorm.io/driver/mysql v1.6.0 + gorm.io/driver/postgres v1.6.0 + gorm.io/gorm v1.31.1 +) + +require ( + filippo.io/edwards25519 v1.1.0 // indirect + github.com/bytedance/sonic v1.14.0 // indirect + github.com/bytedance/sonic/loader v0.3.0 // indirect + github.com/cloudwego/base64x v0.1.6 // indirect + github.com/gabriel-vasile/mimetype v1.4.9 // indirect + github.com/gin-contrib/sse v1.1.0 // indirect + github.com/go-playground/locales v0.14.1 // indirect + github.com/go-playground/universal-translator v0.18.1 // indirect + github.com/go-playground/validator/v10 v10.27.0 // indirect + github.com/goccy/go-json v0.10.5 // indirect + github.com/goccy/go-yaml v1.18.0 // indirect + github.com/jackc/pgpassfile v1.0.0 // indirect + github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 // indirect + github.com/jackc/pgx/v5 v5.6.0 // indirect + github.com/jackc/puddle/v2 v2.2.2 // indirect + github.com/jinzhu/inflection v1.0.0 // indirect + github.com/jinzhu/now v1.1.5 // indirect + github.com/json-iterator/go v1.1.12 // indirect + github.com/klauspost/cpuid/v2 v2.3.0 // indirect + github.com/leodido/go-urn v1.4.0 // indirect + github.com/mattn/go-isatty v0.0.20 // indirect + github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect + github.com/modern-go/reflect2 v1.0.2 // indirect + github.com/pelletier/go-toml/v2 v2.2.4 // indirect + github.com/quic-go/qpack v0.5.1 // indirect + github.com/quic-go/quic-go v0.54.0 // indirect + github.com/twitchyliquid64/golang-asm v0.15.1 // indirect + github.com/ugorji/go/codec v1.3.0 // indirect + go.uber.org/mock v0.5.0 // indirect + golang.org/x/arch v0.20.0 // indirect + golang.org/x/crypto v0.40.0 // indirect + golang.org/x/mod v0.25.0 // indirect + golang.org/x/net v0.42.0 // indirect + golang.org/x/sync v0.16.0 // indirect + golang.org/x/sys v0.35.0 // indirect + golang.org/x/text v0.27.0 // indirect + golang.org/x/tools v0.34.0 // indirect + google.golang.org/protobuf v1.36.9 // indirect +) diff --git a/backendcareit_v4/go.sum b/backendcareit_v4/go.sum new file mode 100644 index 0000000..55706ab --- /dev/null +++ b/backendcareit_v4/go.sum @@ -0,0 +1,118 @@ +filippo.io/edwards25519 v1.1.0 h1:FNf4tywRC1HmFuKW5xopWpigGjJKiJSV0Cqo0cJWDaA= +filippo.io/edwards25519 v1.1.0/go.mod h1:BxyFTGdWcka3PhytdK4V28tE5sGfRvvvRV7EaN4VDT4= +github.com/bytedance/sonic v1.14.0 h1:/OfKt8HFw0kh2rj8N0F6C/qPGRESq0BbaNZgcNXXzQQ= +github.com/bytedance/sonic v1.14.0/go.mod h1:WoEbx8WTcFJfzCe0hbmyTGrfjt8PzNEBdxlNUO24NhA= +github.com/bytedance/sonic/loader v0.3.0 h1:dskwH8edlzNMctoruo8FPTJDF3vLtDT0sXZwvZJyqeA= +github.com/bytedance/sonic/loader v0.3.0/go.mod h1:N8A3vUdtUebEY2/VQC0MyhYeKUFosQU6FxH2JmUe6VI= +github.com/cloudwego/base64x v0.1.6 h1:t11wG9AECkCDk5fMSoxmufanudBtJ+/HemLstXDLI2M= +github.com/cloudwego/base64x v0.1.6/go.mod h1:OFcloc187FXDaYHvrNIjxSe8ncn0OOM8gEHfghB2IPU= +github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= +github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/gabriel-vasile/mimetype v1.4.9 h1:5k+WDwEsD9eTLL8Tz3L0VnmVh9QxGjRmjBvAG7U/oYY= +github.com/gabriel-vasile/mimetype v1.4.9/go.mod h1:WnSQhFKJuBlRyLiKohA/2DtIlPFAbguNaG7QCHcyGok= +github.com/gin-contrib/cors v1.7.6 h1:3gQ8GMzs1Ylpf70y8bMw4fVpycXIeX1ZemuSQIsnQQY= +github.com/gin-contrib/cors v1.7.6/go.mod h1:Ulcl+xN4jel9t1Ry8vqph23a60FwH9xVLd+3ykmTjOk= +github.com/gin-contrib/sse v1.1.0 h1:n0w2GMuUpWDVp7qSpvze6fAu9iRxJY4Hmj6AmBOU05w= +github.com/gin-contrib/sse v1.1.0/go.mod h1:hxRZ5gVpWMT7Z0B0gSNYqqsSCNIJMjzvm6fqCz9vjwM= +github.com/gin-gonic/gin v1.11.0 h1:OW/6PLjyusp2PPXtyxKHU0RbX6I/l28FTdDlae5ueWk= +github.com/gin-gonic/gin v1.11.0/go.mod h1:+iq/FyxlGzII0KHiBGjuNn4UNENUlKbGlNmc+W50Dls= +github.com/go-playground/assert/v2 v2.2.0 h1:JvknZsQTYeFEAhQwI4qEt9cyV5ONwRHC+lYKSsYSR8s= +github.com/go-playground/assert/v2 v2.2.0/go.mod h1:VDjEfimB/XKnb+ZQfWdccd7VUvScMdVu0Titje2rxJ4= +github.com/go-playground/locales v0.14.1 h1:EWaQ/wswjilfKLTECiXz7Rh+3BjFhfDFKv/oXslEjJA= +github.com/go-playground/locales v0.14.1/go.mod h1:hxrqLVvrK65+Rwrd5Fc6F2O76J/NuW9t0sjnWqG1slY= +github.com/go-playground/universal-translator v0.18.1 h1:Bcnm0ZwsGyWbCzImXv+pAJnYK9S473LQFuzCbDbfSFY= +github.com/go-playground/universal-translator v0.18.1/go.mod h1:xekY+UJKNuX9WP91TpwSH2VMlDf28Uj24BCp08ZFTUY= +github.com/go-playground/validator/v10 v10.27.0 h1:w8+XrWVMhGkxOaaowyKH35gFydVHOvC0/uWoy2Fzwn4= +github.com/go-playground/validator/v10 v10.27.0/go.mod h1:I5QpIEbmr8On7W0TktmJAumgzX4CA1XNl4ZmDuVHKKo= +github.com/go-sql-driver/mysql v1.9.3 h1:U/N249h2WzJ3Ukj8SowVFjdtZKfu9vlLZxjPXV1aweo= +github.com/go-sql-driver/mysql v1.9.3/go.mod h1:qn46aNg1333BRMNU69Lq93t8du/dwxI64Gl8i5p1WMU= +github.com/goccy/go-json v0.10.5 h1:Fq85nIqj+gXn/S5ahsiTlK3TmC85qgirsdTP/+DeaC4= +github.com/goccy/go-json v0.10.5/go.mod h1:oq7eo15ShAhp70Anwd5lgX2pLfOS3QCiwU/PULtXL6M= +github.com/goccy/go-yaml v1.18.0 h1:8W7wMFS12Pcas7KU+VVkaiCng+kG8QiFeFwzFb+rwuw= +github.com/goccy/go-yaml v1.18.0/go.mod h1:XBurs7gK8ATbW4ZPGKgcbrY1Br56PdM69F7LkFRi1kA= +github.com/golang-jwt/jwt/v4 v4.5.2 h1:YtQM7lnr8iZ+j5q71MGKkNw9Mn7AjHM68uc9g5fXeUI= +github.com/golang-jwt/jwt/v4 v4.5.2/go.mod h1:m21LjoU+eqJr34lmDMbreY2eSTRJ1cv77w39/MY0Ch0= +github.com/google/go-cmp v0.7.0 h1:wk8382ETsv4JYUZwIsn6YpYiWiBsYLSJiTsyBybVuN8= +github.com/google/go-cmp v0.7.0/go.mod h1:pXiqmnSA92OHEEa9HXL2W4E7lf9JzCmGVUdgjX3N/iU= +github.com/google/gofuzz v1.0.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg= +github.com/jackc/pgpassfile v1.0.0 h1:/6Hmqy13Ss2zCq62VdNG8tM1wchn8zjSGOBJ6icpsIM= +github.com/jackc/pgpassfile v1.0.0/go.mod h1:CEx0iS5ambNFdcRtxPj5JhEz+xB6uRky5eyVu/W2HEg= +github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 h1:iCEnooe7UlwOQYpKFhBabPMi4aNAfoODPEFNiAnClxo= +github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761/go.mod h1:5TJZWKEWniPve33vlWYSoGYefn3gLQRzjfDlhSJ9ZKM= +github.com/jackc/pgx/v5 v5.6.0 h1:SWJzexBzPL5jb0GEsrPMLIsi/3jOo7RHlzTjcAeDrPY= +github.com/jackc/pgx/v5 v5.6.0/go.mod h1:DNZ/vlrUnhWCoFGxHAG8U2ljioxukquj7utPDgtQdTw= +github.com/jackc/puddle/v2 v2.2.2 h1:PR8nw+E/1w0GLuRFSmiioY6UooMp6KJv0/61nB7icHo= +github.com/jackc/puddle/v2 v2.2.2/go.mod h1:vriiEXHvEE654aYKXXjOvZM39qJ0q+azkZFrfEOc3H4= +github.com/jinzhu/inflection v1.0.0 h1:K317FqzuhWc8YvSVlFMCCUb36O/S9MCKRDI7QkRKD/E= +github.com/jinzhu/inflection v1.0.0/go.mod h1:h+uFLlag+Qp1Va5pdKtLDYj+kHp5pxUVkryuEj+Srlc= +github.com/jinzhu/now v1.1.5 h1:/o9tlHleP7gOFmsnYNz3RGnqzefHA47wQpKrrdTIwXQ= +github.com/jinzhu/now v1.1.5/go.mod h1:d3SSVoowX0Lcu0IBviAWJpolVfI5UJVZZ7cO71lE/z8= +github.com/joho/godotenv v1.5.1 h1:7eLL/+HRGLY0ldzfGMeQkb7vMd0as4CfYvUVzLqw0N0= +github.com/joho/godotenv v1.5.1/go.mod h1:f4LDr5Voq0i2e/R5DDNOoa2zzDfwtkZa6DnEwAbqwq4= +github.com/json-iterator/go v1.1.12 h1:PV8peI4a0ysnczrg+LtxykD8LfKY9ML6u2jnxaEnrnM= +github.com/json-iterator/go v1.1.12/go.mod h1:e30LSqwooZae/UwlEbR2852Gd8hjQvJoHmT4TnhNGBo= +github.com/klauspost/cpuid/v2 v2.3.0 h1:S4CRMLnYUhGeDFDqkGriYKdfoFlDnMtqTiI/sFzhA9Y= +github.com/klauspost/cpuid/v2 v2.3.0/go.mod h1:hqwkgyIinND0mEev00jJYCxPNVRVXFQeu1XKlok6oO0= +github.com/leodido/go-urn v1.4.0 h1:WT9HwE9SGECu3lg4d/dIA+jxlljEa1/ffXKmRjqdmIQ= +github.com/leodido/go-urn v1.4.0/go.mod h1:bvxc+MVxLKB4z00jd1z+Dvzr47oO32F/QSNjSBOlFxI= +github.com/mattn/go-isatty v0.0.20 h1:xfD0iDuEKnDkl03q4limB+vH+GxLEtL/jb4xVJSWWEY= +github.com/mattn/go-isatty v0.0.20/go.mod h1:W+V8PltTTMOvKvAeJH7IuucS94S2C6jfK/D7dTCTo3Y= +github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= +github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd h1:TRLaZ9cD/w8PVh93nsPXa1VrQ6jlwL5oN8l14QlcNfg= +github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= +github.com/modern-go/reflect2 v1.0.2 h1:xBagoLtFs94CBntxluKeaWgTMpvLxC4ur3nMaC9Gz0M= +github.com/modern-go/reflect2 v1.0.2/go.mod h1:yWuevngMOJpCy52FWWMvUC8ws7m/LJsjYzDa0/r8luk= +github.com/pelletier/go-toml/v2 v2.2.4 h1:mye9XuhQ6gvn5h28+VilKrrPoQVanw5PMw/TB0t5Ec4= +github.com/pelletier/go-toml/v2 v2.2.4/go.mod h1:2gIqNv+qfxSVS7cM2xJQKtLSTLUE9V8t9Stt+h56mCY= +github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= +github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= +github.com/quic-go/qpack v0.5.1 h1:giqksBPnT/HDtZ6VhtFKgoLOWmlyo9Ei6u9PqzIMbhI= +github.com/quic-go/qpack v0.5.1/go.mod h1:+PC4XFrEskIVkcLzpEkbLqq1uCoxPhQuvK5rH1ZgaEg= +github.com/quic-go/quic-go v0.54.0 h1:6s1YB9QotYI6Ospeiguknbp2Znb/jZYjZLRXn9kMQBg= +github.com/quic-go/quic-go v0.54.0/go.mod h1:e68ZEaCdyviluZmy44P6Iey98v/Wfz6HCjQEm+l8zTY= +github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= +github.com/stretchr/objx v0.4.0/go.mod h1:YvHI0jy2hoMjB+UWwv71VJQ9isScKT/TqJzVSSt89Yw= +github.com/stretchr/objx v0.5.0/go.mod h1:Yh+to48EsGEfYuaHDzXPcE3xhTkx73EhmCGUpEOglKo= +github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= +github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= +github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= +github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU= +github.com/stretchr/testify v1.8.1/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4= +github.com/stretchr/testify v1.11.1 h1:7s2iGBzp5EwR7/aIZr8ao5+dra3wiQyKjjFuvgVKu7U= +github.com/stretchr/testify v1.11.1/go.mod h1:wZwfW3scLgRK+23gO65QZefKpKQRnfz6sD981Nm4B6U= +github.com/twitchyliquid64/golang-asm v0.15.1 h1:SU5vSMR7hnwNxj24w34ZyCi/FmDZTkS4MhqMhdFk5YI= +github.com/twitchyliquid64/golang-asm v0.15.1/go.mod h1:a1lVb/DtPvCB8fslRZhAngC2+aY1QWCk3Cedj/Gdt08= +github.com/ugorji/go/codec v1.3.0 h1:Qd2W2sQawAfG8XSvzwhBeoGq71zXOC/Q1E9y/wUcsUA= +github.com/ugorji/go/codec v1.3.0/go.mod h1:pRBVtBSKl77K30Bv8R2P+cLSGaTtex6fsA2Wjqmfxj4= +go.uber.org/mock v0.5.0 h1:KAMbZvZPyBPWgD14IrIQ38QCyjwpvVVV6K/bHl1IwQU= +go.uber.org/mock v0.5.0/go.mod h1:ge71pBPLYDk7QIi1LupWxdAykm7KIEFchiOqd6z7qMM= +golang.org/x/arch v0.20.0 h1:dx1zTU0MAE98U+TQ8BLl7XsJbgze2WnNKF/8tGp/Q6c= +golang.org/x/arch v0.20.0/go.mod h1:bdwinDaKcfZUGpH09BB7ZmOfhalA8lQdzl62l8gGWsk= +golang.org/x/crypto v0.40.0 h1:r4x+VvoG5Fm+eJcxMaY8CQM7Lb0l1lsmjGBQ6s8BfKM= +golang.org/x/crypto v0.40.0/go.mod h1:Qr1vMER5WyS2dfPHAlsOj01wgLbsyWtFn/aY+5+ZdxY= +golang.org/x/mod v0.25.0 h1:n7a+ZbQKQA/Ysbyb0/6IbB1H/X41mKgbhfv7AfG/44w= +golang.org/x/mod v0.25.0/go.mod h1:IXM97Txy2VM4PJ3gI61r1YEk/gAj6zAHN3AdZt6S9Ww= +golang.org/x/net v0.42.0 h1:jzkYrhi3YQWD6MLBJcsklgQsoAcw89EcZbJw8Z614hs= +golang.org/x/net v0.42.0/go.mod h1:FF1RA5d3u7nAYA4z2TkclSCKh68eSXtiFwcWQpPXdt8= +golang.org/x/sync v0.16.0 h1:ycBJEhp9p4vXvUZNszeOq0kGTPghopOL8q0fq3vstxw= +golang.org/x/sync v0.16.0/go.mod h1:1dzgHSNfp02xaA81J2MS99Qcpr2w7fw1gpm99rleRqA= +golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.35.0 h1:vz1N37gP5bs89s7He8XuIYXpyY0+QlsKmzipCbUtyxI= +golang.org/x/sys v0.35.0/go.mod h1:BJP2sWEmIv4KK5OTEluFJCKSidICx8ciO85XgH3Ak8k= +golang.org/x/text v0.27.0 h1:4fGWRpyh641NLlecmyl4LOe6yDdfaYNrGb2zdfo4JV4= +golang.org/x/text v0.27.0/go.mod h1:1D28KMCvyooCX9hBiosv5Tz/+YLxj0j7XhWjpSUF7CU= +golang.org/x/tools v0.34.0 h1:qIpSLOxeCYGg9TrcJokLBG4KFA6d795g0xkBkiESGlo= +golang.org/x/tools v0.34.0/go.mod h1:pAP9OwEaY1CAW3HOmg3hLZC5Z0CCmzjAF2UQMSqNARg= +google.golang.org/protobuf v1.36.9 h1:w2gp2mA27hUeUzj9Ex9FBjsBm40zfaDtEWow293U7Iw= +google.golang.org/protobuf v1.36.9/go.mod h1:fuxRtAxBytpl4zzqUh6/eyUujkJdNiuEkXntxiD/uRU= +gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= +gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= +gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= +gorm.io/driver/mysql v1.6.0 h1:eNbLmNTpPpTOVZi8MMxCi2aaIm0ZpInbORNXDwyLGvg= +gorm.io/driver/mysql v1.6.0/go.mod h1:D/oCC2GWK3M/dqoLxnOlaNKmXz8WNTfcS9y5ovaSqKo= +gorm.io/driver/postgres v1.6.0 h1:2dxzU8xJ+ivvqTRph34QX+WrRaJlmfyPqXmoGVjMBa4= +gorm.io/driver/postgres v1.6.0/go.mod h1:vUw0mrGgrTK+uPHEhAdV4sfFELrByKVGnaVRkXDhtWo= +gorm.io/gorm v1.31.1 h1:7CA8FTFz/gRfgqgpeKIBcervUn3xSyPUmr6B2WXJ7kg= +gorm.io/gorm v1.31.1/go.mod h1:XyQVbO2k6YkOis7C2437jSit3SsDK72s7n7rsSHd+Gs= diff --git a/backendcareit_v4/handlers/routes.go b/backendcareit_v4/handlers/routes.go new file mode 100644 index 0000000..746bba4 --- /dev/null +++ b/backendcareit_v4/handlers/routes.go @@ -0,0 +1,883 @@ +package handlers + +import ( + "encoding/json" + "errors" + "log" + "net/http" + "strconv" + "strings" + + "backendcareit/database" + "backendcareit/middleware" + "backendcareit/models" + "backendcareit/services" + + "github.com/gin-gonic/gin" + "gorm.io/gorm" +) + +func RegisterRoutes(r *gin.Engine) { + // Routes get dokter + r.GET("/dokter", listDokterHandler) + // Routes get ruangan + r.GET("/ruangan", listRuanganHandler) + // Routes get icd9 icd10 + r.GET("/icd10", listICD10Handler) + r.GET("/icd9", listICD9Handler) + // Health check + r.GET("/", healthHandler) + // Routes tarif + r.GET("/tarifBPJSRawatInap", listTarifBPJSRawatInapHandler) + r.GET("/tarifBPJS/:kode", detailTarifBPJSRawatInapHandler) + r.GET("/tarifBPJSRawatJalan", listTarifBPJSRawatJalanHandler) + r.GET("/tarifBPJSRawatJalan/:kode", detailTarifBPJSRawatJalanHandler) + r.GET("/tarifRS", listTarifRSHandler) + r.GET("/tarifRS/:kode", detailTarifRSHandler) + r.GET("/tarifRSByKategori/:kategori", listTarifRSByKategoriHandler) + // Routes pasien & billing + r.GET("/pasien/search", SearchPasienHandler) + r.GET("/pasien/:id", GetPasien) + r.POST("/billing", CreateBillingHandler) + r.GET("/billing/aktif", GetBillingAktifByNamaHandler) + r.PUT("/billing/:id", UpdateBillingHandler) + + //close billing + r.POST("/billing/close", CloseBillingHandler) + + //get all billing aktif + r.GET("/billing/aktif/all", GetAllBillingaktifhandler) + + //admin edit inacbg + r.PUT("/admin/inacbg", EditINACBGAdminHandler) + // Admin: get all billing + r.GET("/admin/billing", GetAllBillingHandler) + // Admin: get riwayat billing (sudah ditutup) + r.GET("/admin/riwayat-billing", GetRiwayatBillingHandler) + // Admin: get riwayat billing with all patient data + r.GET("/admin/riwayat-pasien-all", GetRiwayatPasienAllHandler) + // Admin: get billing by ID + r.GET("/admin/billing/:id", GetBillingByIDHandler) + // Admin: post INACBG + r.POST("/admin/inacbg", PostINACBGAdminHandler) + // Admin: get ruangan dengan pasien + r.GET("/admin/ruangan-dengan-pasien", GetRuanganWithPasienHandler) + // Login dokter + r.POST("/login", LoginDokterHandler(database.DB)) + // login admin + r.POST("/admin/login", LoginAdminHandler(database.DB)) +} + +// Coba tes koneksi dulu ya + +func healthHandler(c *gin.Context) { + c.JSON(http.StatusOK, gin.H{ + "status": "ok", + "message": "Server berjalan", + }) +} + +//Handler buat /admin/billing + +func GetAllBillingHandler(c *gin.Context) { + + data, err := services.GetAllBilling(database.DB) + if err != nil { + c.JSON(http.StatusInternalServerError, gin.H{ + "status": "error", + "message": err.Error(), + }) + return + } + + c.JSON(http.StatusOK, gin.H{ + "status": "success", + "data": data, + }) +} + +// Handler buat /admin/billing/:id +func GetBillingByIDHandler(c *gin.Context) { + id := c.Param("id") + + data, err := services.GetBillingByID(database.DB, id) + if err != nil { + c.JSON(http.StatusInternalServerError, gin.H{ + "status": "error", + "message": err.Error(), + }) + return + } + + c.JSON(http.StatusOK, gin.H{ + "status": "success", + "data": data, + }) +} + +// edit inacbg admin +func EditINACBGAdminHandler(c *gin.Context) { + var input models.Edit_INACBG_Request + + // Ensure JSON + if c.GetHeader("Content-Type") != "application/json" { + c.JSON(http.StatusBadRequest, gin.H{ + "status": "error", + "message": "Content-Type harus application/json", + }) + return + } + + if err := c.ShouldBindJSON(&input); err != nil { + c.JSON(http.StatusBadRequest, gin.H{ + "status": "error", + "message": "Data tidak valid", + "error": err.Error(), + }) + return + } + + if err := services.Edit_INACBG_Admin(database.DB, input); err != nil { + c.JSON(http.StatusInternalServerError, gin.H{ + "status": "error", + "message": "Gagal mengedit INACBG", + "error": err.Error(), + }) + return + } + + c.JSON(http.StatusOK, gin.H{ + "status": "success", + "message": "INACBG berhasil diupdate", + }) +} + +// Post INACBG from admin +func PostINACBGAdminHandler(c *gin.Context) { + var input models.Post_INACBG_Admin + + // Ensure JSON + if c.GetHeader("Content-Type") != "application/json" { + c.JSON(http.StatusBadRequest, gin.H{ + "status": "error", + "message": "Content-Type harus application/json", + }) + return + } + + if err := c.ShouldBindJSON(&input); err != nil { + c.JSON(http.StatusBadRequest, gin.H{ + "status": "error", + "message": "Data tidak valid", + "error": err.Error(), + }) + return + } + + if err := services.Post_INACBG_Admin(database.DB, input); err != nil { + c.JSON(http.StatusInternalServerError, gin.H{ + "status": "error", + "message": "Gagal memproses INACBG", + "error": err.Error(), + }) + return + } + + c.JSON(http.StatusOK, gin.H{ + "status": "success", + "message": "INACBG berhasil disimpan", + }) +} + +// List tarif BPJS Rawat Inap +func listTarifBPJSRawatInapHandler(c *gin.Context) { + data, err := services.GetTarifBPJSRawatInap() + if err != nil { + c.JSON(http.StatusInternalServerError, gin.H{ + "status": "error", + "message": "Gagal mengambil data", + }) + return + } + + c.JSON(http.StatusOK, data) +} + +func detailTarifBPJSRawatInapHandler(c *gin.Context) { + kode := c.Param("kode") + data, err := services.GetTarifBPJSRawatInapByKode(kode) + if err != nil { + if services.IsNotFound(err) { + c.JSON(http.StatusNotFound, gin.H{ + "status": "not_found", + "message": "Kode tidak ditemukan", + }) + return + } + + c.JSON(http.StatusInternalServerError, gin.H{ + "status": "error", + "message": "Gagal mengambil data", + }) + return + } + + c.JSON(http.StatusOK, data) +} + +// List tarif BPJS Rawat Jalan +func listTarifBPJSRawatJalanHandler(c *gin.Context) { + data, err := services.GetTarifBPJSRawatJalan() + if err != nil { + c.JSON(http.StatusInternalServerError, gin.H{ + "status": "error", + "message": "Gagal mengambil data", + }) + return + } + + c.JSON(http.StatusOK, data) +} + +func detailTarifBPJSRawatJalanHandler(c *gin.Context) { + kode := c.Param("kode") + data, err := services.GetTarifBPJSRawatJalanByKode(kode) + if err != nil { + if services.IsNotFound(err) { + c.JSON(http.StatusNotFound, gin.H{ + "status": "not_found", + "message": "Kode tidak ditemukan", + }) + return + } + + c.JSON(http.StatusInternalServerError, gin.H{ + "status": "error", + "message": "Gagal mengambil data", + }) + return + } + + c.JSON(http.StatusOK, data) +} + +// List tarif RS +func listTarifRSHandler(c *gin.Context) { + data, err := services.GetTarifRS() + if err != nil { + c.JSON(http.StatusInternalServerError, gin.H{ + "status": "error", + "message": "Gagal mengambil data", + }) + return + } + + c.JSON(http.StatusOK, data) +} + +func detailTarifRSHandler(c *gin.Context) { + kode := c.Param("kode") + data, err := services.GetTarifRSByKode(kode) + if err != nil { + c.JSON(http.StatusInternalServerError, gin.H{ + "status": "error", + "message": "Gagal mengambil data", + }) + return + } + + c.JSON(http.StatusOK, data) +} + +func listTarifRSByKategoriHandler(c *gin.Context) { + kategori := c.Param("kategori") + data, err := services.GetTarifRSByKategori(kategori) + if err != nil { + c.JSON(http.StatusInternalServerError, gin.H{ + "status": "error", + "message": "Gagal mengambil data", + }) + return + } + + c.JSON(http.StatusOK, data) +} + +// ICD9 +func listICD9Handler(c *gin.Context) { + data, err := services.GetICD9() + if err != nil { + c.JSON(http.StatusInternalServerError, gin.H{ + "status": "error", + "message": "Gagal mengambil data", + }) + return + } + c.JSON(http.StatusOK, data) +} + +// ICD10 +func listICD10Handler(c *gin.Context) { + data, err := services.GetICD10() + if err != nil { + c.JSON(http.StatusInternalServerError, gin.H{ + "status": "error", + "message": "Gagal mengambil data", + }) + return + } + c.JSON(http.StatusOK, data) +} + +// ruangan +func listRuanganHandler(c *gin.Context) { + data, err := services.GetRuangan() + if err != nil { + c.JSON(http.StatusInternalServerError, gin.H{ + "status": "error", + "message": "Gagal mengambil data", + }) + return + } + c.JSON(http.StatusOK, data) +} + +// GetRuanganWithPasienHandler - Ambil ruangan yang punya pasien +func GetRuanganWithPasienHandler(c *gin.Context) { + data, err := services.GetRuanganWithPasien(database.DB) + if err != nil { + c.JSON(http.StatusInternalServerError, gin.H{ + "status": "error", + "message": "Gagal mengambil data", + }) + return + } + c.JSON(http.StatusOK, data) +} + +// dokter +func listDokterHandler(c *gin.Context) { + data, err := services.GetDokter() + if err != nil { + c.JSON(http.StatusInternalServerError, gin.H{ + "status": "error", + "message": "Gagal mengambil data", + }) + return + } + c.JSON(http.StatusOK, data) +} + +//Liat pasien sudah atau belum + +func GetPasien(c *gin.Context) { + idStr := c.Param("id") + + // Konversi string ke int + id, err := strconv.Atoi(idStr) + if err != nil { + c.JSON(400, gin.H{ + "message": "ID pasien harus berupa angka", + }) + return + } + + pasien, err := services.GetPasienByID(id) + if err != nil { + c.JSON(404, gin.H{ + "message": "Pasien tidak ditemukan", + }) + return + } + + c.JSON(200, gin.H{ + "message": "Data pasien ditemukan", + "data": pasien, + }) +} + +//add pasien baru + +// CreateBillingHandler handler untuk membuat billing baru dari data frontend +func CreateBillingHandler(c *gin.Context) { + // Pastikan JSON + contentType := c.GetHeader("Content-Type") + if contentType != "application/json" { + c.JSON(http.StatusBadRequest, gin.H{ + "status": "error", + "message": "Content-Type harus application/json", + "error": "Content-Type yang diterima: " + contentType, + }) + return + } + + // Gunakan map untuk menerima JSON fleksibel (bisa string atau array untuk nama_dokter) + var rawData map[string]interface{} + if err := c.ShouldBindJSON(&rawData); err != nil { + c.JSON(http.StatusBadRequest, gin.H{ + "status": "error", + "message": "Data tidak valid", + "error": err.Error(), + }) + return + } + + // Konversi nama_dokter dari string ke array jika perlu + if namaDokterRaw, ok := rawData["nama_dokter"]; ok { + switch v := namaDokterRaw.(type) { + case string: + // Jika string, konversi ke array dengan 1 elemen + if v != "" { + rawData["nama_dokter"] = []string{v} + } else { + rawData["nama_dokter"] = []string{} + } + case []interface{}: + // Jika sudah array, konversi ke []string + namaDokterArray := make([]string, 0, len(v)) + for _, item := range v { + if str, ok := item.(string); ok && str != "" { + namaDokterArray = append(namaDokterArray, str) + } + } + rawData["nama_dokter"] = namaDokterArray + case []string: + // Sudah dalam format yang benar + rawData["nama_dokter"] = v + default: + rawData["nama_dokter"] = []string{} + } + } + + // Konversi map ke BillingRequest + var input models.BillingRequest + // Marshal dan unmarshal untuk konversi yang aman + jsonData, err := json.Marshal(rawData) + if err != nil { + c.JSON(http.StatusBadRequest, gin.H{ + "status": "error", + "message": "Gagal memproses data", + "error": err.Error(), + }) + return + } + + if err := json.Unmarshal(jsonData, &input); err != nil { + c.JSON(http.StatusBadRequest, gin.H{ + "status": "error", + "message": "Data tidak valid", + "error": err.Error(), + }) + return + } + + // Panggil service โ†’ return 5 data + billing, pasien, tindakanList, icd9List, icd10List, err := + services.DataFromFE(input) + + if err != nil { + c.JSON(http.StatusInternalServerError, gin.H{ + "status": "error", + "message": "Gagal membuat billing", + "error": err.Error(), + }) + return + } + + // Response lengkap ke FE + c.JSON(http.StatusOK, gin.H{ + "status": "success", + "message": "Billing berhasil dibuat", + "data": gin.H{ + "pasien": pasien, + "billing": billing, + "tindakan_rs": tindakanList, + "icd9": icd9List, + "icd10": icd10List, + }, + }) + +} + +// GetBillingAktifByNamaHandler - Ambil billing aktif berdasarkan nama +// Endpoint: GET /billing/aktif?nama_pasien=... +// Mengembalikan billing aktif + semua tindakan & ICD & dokter & INACBG & DPJP +func GetBillingAktifByNamaHandler(c *gin.Context) { + nama := c.Query("nama_pasien") + if strings.TrimSpace(nama) == "" { + c.JSON(http.StatusBadRequest, gin.H{ + "status": "error", + "message": "nama_pasien wajib diisi", + }) + return + } + + billing, tindakan, icd9, icd10, dokter, inacbgRI, inacbgRJ, dpjp, err := services.GetBillingDetailAktifByNama(nama) + if err != nil { + if errors.Is(err, gorm.ErrRecordNotFound) { + c.JSON(http.StatusNotFound, gin.H{ + "status": "not_found", + "message": "Billing aktif untuk pasien tersebut tidak ditemukan", + }) + return + } + + c.JSON(http.StatusInternalServerError, gin.H{ + "status": "error", + "message": "Gagal mengambil data billing", + "error": err.Error(), + }) + return + } + + c.JSON(http.StatusOK, gin.H{ + "status": "success", + "message": "Billing aktif ditemukan", + "data": gin.H{ + "billing": billing, + "tindakan_rs": tindakan, + "icd9": icd9, + "icd10": icd10, + "dokter": dokter, + "inacbg_ri": inacbgRI, + "inacbg_rj": inacbgRJ, + "id_dpjp": dpjp, + }, + }) +} + +//search pasien by nama handler + +func SearchPasienHandler(c *gin.Context) { + nama := c.Query("nama") + + pasien, err := services.SearchPasienByNama(nama) + if err != nil { + c.JSON(http.StatusInternalServerError, gin.H{ + "status": "error", + "message": "Gagal mengambil data pasien", + }) + return + } + + c.JSON(http.StatusOK, gin.H{ + "status": "success", + "data": pasien, + }) +} + +// Login dokter +func LoginDokterHandler(db *gorm.DB) gin.HandlerFunc { + return func(c *gin.Context) { + var req models.LoginRequest + if err := c.ShouldBindJSON(&req); err != nil { + c.JSON(http.StatusBadRequest, gin.H{ + "status": "error", + "message": "Payload login tidak valid", + "error": err.Error(), + }) + return + } + + email := strings.TrimSpace(strings.ToLower(req.Email)) + + var dokter models.Dokter + if err := db.Where("LOWER(\"Email_UB\") = ? OR LOWER(\"Email_Pribadi\") = ?", email, email). + First(&dokter).Error; err != nil { + if errors.Is(err, gorm.ErrRecordNotFound) { + c.JSON(http.StatusUnauthorized, gin.H{ + "status": "error", + "message": "Email atau password salah", + }) + return + } + + c.JSON(http.StatusInternalServerError, gin.H{ + "status": "error", + "message": "Gagal memproses login", + "error": err.Error(), + }) + return + } + + // Password check โ€” skip if password column is empty + if dokter.Password != "" && dokter.Password != req.Password { + c.JSON(http.StatusUnauthorized, gin.H{ + "status": "error", + "message": "Email atau password salah", + }) + return + } + + token, err := middleware.GenerateToken(dokter, email) + if err != nil { + c.JSON(http.StatusInternalServerError, gin.H{ + "status": "error", + "message": "Gagal membuat token", + "error": err.Error(), + }) + return + } + + c.JSON(http.StatusOK, gin.H{ + "status": "success", + "token": token, + "dokter": gin.H{ + "id": dokter.ID_Dokter, + "nama": dokter.Nama_Dokter, + "ksm": dokter.KSM, + "email": email, + }, + }) + } +} + +// SendEmailTestHandler handler untuk test email +func SendEmailTestHandler(c *gin.Context) { + if err := services.SendEmailTest(); err != nil { + c.JSON(http.StatusInternalServerError, gin.H{ + "status": "error", + "message": "Gagal mengirim email test", + "error": err.Error(), + }) + return + } + + c.JSON(http.StatusOK, gin.H{ + "status": "success", + "message": "Email test berhasil dikirim ke stylohype685@gmail.com dan pasaribumonica2@gmail.com", + }) +} + +// SendEmailCustomHandler - kirim email tes ke daftar penerima yang diberikan +func SendEmailCustomHandler(c *gin.Context) { + var req struct { + To []string `json:"to" binding:"required,min=1"` + Subject string `json:"subject"` + Body string `json:"body"` + } + + if err := c.ShouldBindJSON(&req); err != nil { + c.JSON(http.StatusBadRequest, gin.H{"status": "error", "message": "Request harus JSON dengan field 'to' sebagai array email"}) + return + } + + subject := req.Subject + if strings.TrimSpace(subject) == "" { + subject = "Test Email - Sistem Billing Care IT" + } + + body := req.Body + if strings.TrimSpace(body) == "" { + body = "

Ini adalah email test dari sistem billing Care IT.

" + } + + if err := services.SendEmailToMultiple(req.To, subject, body); err != nil { + c.JSON(http.StatusInternalServerError, gin.H{"status": "error", "message": "Gagal mengirim email", "error": err.Error()}) + return + } + + c.JSON(http.StatusOK, gin.H{"status": "success", "message": "Email test berhasil dikirim"}) +} + +func LoginAdminHandler(db *gorm.DB) gin.HandlerFunc { + return func(c *gin.Context) { + var req struct { + Nama_Admin string `json:"Nama_Admin" binding:"required"` + Password string `json:"Password" binding:"required"` + } + + // Bind & validate + if err := c.ShouldBindJSON(&req); err != nil { + c.JSON(http.StatusBadRequest, gin.H{ + "error": "Nama_Admin dan Password harus diisi", + }) + return + } + + // Trim dan normalize input + namaAdmin := strings.TrimSpace(req.Nama_Admin) + if namaAdmin == "" { + c.JSON(http.StatusBadRequest, gin.H{ + "error": "Nama_Admin tidak boleh kosong", + }) + return + } + + // Query admin_ruangan dengan case-insensitive + var admin models.Admin_Ruangan //Admin_Ruangan + if err := db.Where("LOWER(\"Nama_Admin\") = ?", strings.ToLower(namaAdmin)).First(&admin).Error; err != nil { + c.JSON(http.StatusUnauthorized, gin.H{ + "error": "Admin tidak ditemukan", + }) + return + } + + // Check password + if admin.Password != req.Password { + c.JSON(http.StatusUnauthorized, gin.H{ + "error": "Password salah", + }) + return + } + + // Generate token & return + token, err := middleware.GenerateTokenAdmin(admin, req.Nama_Admin) + if err != nil { + c.JSON(http.StatusInternalServerError, gin.H{ + "error": "Gagal membuat token", + }) + return + } + c.JSON(http.StatusOK, gin.H{ + "status": "success", + "token": token, + "admin": gin.H{ + "id": admin.ID_Admin, + "nama_admin": admin.Nama_Admin, + "id_ruangan": admin.ID_Ruangan, + }, + }) + } +} + +// UpdateBillingHandler - update identitas pasien dalam billing +func UpdateBillingHandler(c *gin.Context) { + idStr := c.Param("id") + billingId, err := strconv.Atoi(idStr) + if err != nil { + c.JSON(http.StatusBadRequest, gin.H{ + "status": "error", + "message": "ID billing tidak valid", + "error": err.Error(), + }) + return + } + + // Parse request body + var updateReq struct { + Nama_Pasien string `json:"nama_pasien"` + Usia int `json:"usia"` + Jenis_Kelamin string `json:"jenis_kelamin"` + Ruangan string `json:"ruangan"` + Kelas string `json:"kelas"` + Tindakan_Rs []string `json:"tindakan_rs"` + ICD9 []string `json:"icd9"` + ICD10 []string `json:"icd10"` + Billing_sign *string `json:"billing_sign"` // Optional: jika dikirimkan akan diupdate + Total_Tarif_RS *float64 `json:"total_tarif_rs"` // Optional: jika dikirimkan akan diupdate + } + + if err := c.ShouldBindJSON(&updateReq); err != nil { + c.JSON(http.StatusBadRequest, gin.H{ + "status": "error", + "message": "Data tidak valid", + "error": err.Error(), + }) + return + } + + // Panggil service untuk update dengan lookup kode + if err := services.EditPasienComplete(billingId, updateReq.Nama_Pasien, updateReq.Usia, updateReq.Jenis_Kelamin, updateReq.Ruangan, updateReq.Kelas, updateReq.Tindakan_Rs, updateReq.ICD9, updateReq.ICD10, updateReq.Billing_sign, updateReq.Total_Tarif_RS); err != nil { + log.Printf("[EDIT_HANDLER] ERROR - Service returned error: %v\n", err) + c.JSON(http.StatusInternalServerError, gin.H{ + "status": "error", + "message": "Gagal update data billing", + "error": err.Error(), + "details": err.Error(), // Add details untuk debugging + }) + return + } + + c.JSON(http.StatusOK, gin.H{ + "status": "success", + "message": "Data billing berhasil diupdate", + }) +} + +// CloseBillingHandler - handler untuk menutup billing +func CloseBillingHandler(c *gin.Context) { + var closeReq models.Close_billing + + // Pastikan JSON + if c.GetHeader("Content-Type") != "application/json" { + c.JSON(http.StatusBadRequest, gin.H{ + "status": "error", + "message": "Content-Type harus application/json", + }) + return + } + + if err := c.ShouldBindJSON(&closeReq); err != nil { + c.JSON(http.StatusBadRequest, gin.H{ + "status": "error", + "message": "Data tidak valid", + "error": err.Error(), + }) + return + } + + if err := services.CloseBilling(closeReq); err != nil { + c.JSON(http.StatusInternalServerError, gin.H{ + "status": "error", + "message": "Gagal menutup billing", + "error": err.Error(), + }) + return + } + + c.JSON(http.StatusOK, gin.H{ + "status": "success", + "message": "Billing berhasil ditutup", + }) +} + +// GetRiwayatBillingHandler - Handler buat ngambil riwayat billing yang udah ditutup +func GetRiwayatBillingHandler(c *gin.Context) { + data, err := services.GetAllRiwayatpasien(database.DB) + if err != nil { + c.JSON(http.StatusInternalServerError, gin.H{ + "status": "error", + "message": err.Error(), + }) + return + } + + c.JSON(http.StatusOK, gin.H{ + "status": "success", + "data": data, + }) +} + +func GetAllBillingaktifhandler(c *gin.Context) { + data, err := services.GetAllBillingaktif(database.DB) + if err != nil { + c.JSON(http.StatusInternalServerError, gin.H{ + "status": "error", + "message": err.Error(), + }) + return + } + + c.JSON(http.StatusOK, gin.H{ + "status": "success", + "data": data, + }) +} + +// GetRiwayatPasienAllHandler - Handler buat ngambil riwayat pasien lengkap +func GetRiwayatPasienAllHandler(c *gin.Context) { + data, err := services.GetRiwayatPasienAll(database.DB) + if err != nil { + c.JSON(http.StatusInternalServerError, gin.H{ + "status": "error", + "message": err.Error(), + }) + return + } + + c.JSON(http.StatusOK, gin.H{ + "status": "success", + "data": data, + }) +} diff --git a/backendcareit_v4/main.go b/backendcareit_v4/main.go new file mode 100644 index 0000000..3ffd574 --- /dev/null +++ b/backendcareit_v4/main.go @@ -0,0 +1,54 @@ +package main + +import ( + "fmt" + "log" + "os" + + "backendcareit/database" + "backendcareit/handlers" + + "github.com/joho/godotenv" + + "github.com/gin-contrib/cors" + "github.com/gin-gonic/gin" +) + +func main() { + _ = godotenv.Load() + + db, err := database.KonekPG() + if err != nil { + log.Fatal("Gagal koneksi database:", err) + } + database.DB = db + + r := gin.Default() + + config := cors.Config{ + AllowOrigins: []string{"*"}, + AllowMethods: []string{"GET", "POST", "PUT", "DELETE", "OPTIONS"}, + AllowHeaders: []string{"Origin", "Content-Type", "Accept", "Authorization"}, + AllowCredentials: true, + } + r.Use(cors.New(config)) + + handlers.RegisterRoutes(r) + + host := os.Getenv("HOST") + if host == "" { + host = "0.0.0.0" + } + + port := os.Getenv("PORT") + if port == "" { + port = "8081" + } + + listenAddr := fmt.Sprintf("%s:%s", host, port) + fmt.Printf("Server berjalan di http://%s\n", listenAddr) + fmt.Println("Akses dari jaringan lain menggunakan IP lokal komputer + port", port) + if err := r.Run(listenAddr); err != nil { + log.Fatal("Gagal menjalankan server:", err) + } +} diff --git a/backendcareit_v4/middleware/loginByJWT.go b/backendcareit_v4/middleware/loginByJWT.go new file mode 100644 index 0000000..0ad336b --- /dev/null +++ b/backendcareit_v4/middleware/loginByJWT.go @@ -0,0 +1,104 @@ +package middleware + +import ( + "errors" + "net/http" + "os" + "strings" + "time" + + "github.com/gin-gonic/gin" + "github.com/golang-jwt/jwt/v4" + + "backendcareit/models" +) + +// Payload untuk login dokter - berisi credensial yang diperlukan + +var jwtSecret = []byte(getJWTSecret()) + +func getJWTSecret() string { + if secret := os.Getenv("JWT_SECRET"); secret != "" { + return secret + } + return "SECRET_KAMU" +} + +// LoginDokterHandler - Ini handler POST /login yang ngecek kredensial dokter +// Kalau cocok, langsung kasih JWT ke dia + +// GenerateToken - Bikin JWT buat dokter, berlaku 24 jam terus expired hehe +func GenerateToken(dokter models.Dokter, email string) (string, error) { + claims := jwt.MapClaims{ + "id": dokter.ID_Dokter, + "nama": dokter.Nama_Dokter, + "ksm": dokter.KSM, + "email": email, + "exp": time.Now().Add(24 * time.Hour).Unix(), + "iat": time.Now().Unix(), + } + + token := jwt.NewWithClaims(jwt.SigningMethodHS256, claims) + return token.SignedString(jwtSecret) +} + +// GenerateTokenAdmin - Serupa dengan dokter, tapi ini buat admin dengan role khusus +func GenerateTokenAdmin(admin models.Admin_Ruangan, namaAdmin string) (string, error) { + claims := jwt.MapClaims{ + "id": admin.ID_Admin, + "nama_admin": admin.Nama_Admin, + "id_ruangan": admin.ID_Ruangan, + "role": "admin", + "exp": time.Now().Add(24 * time.Hour).Unix(), + "iat": time.Now().Unix(), + } + + token := jwt.NewWithClaims(jwt.SigningMethodHS256, claims) + return token.SignedString(jwtSecret) +} + +// AuthMiddleware - Middleware pengecekan token JWT +// Ngecek header Authorization, parse tokennya, terus simpan data di context jika valid +func AuthMiddleware() gin.HandlerFunc { + return func(c *gin.Context) { + authHeader := c.GetHeader("Authorization") + if authHeader == "" || !strings.HasPrefix(authHeader, "Bearer ") { + c.AbortWithStatusJSON(http.StatusUnauthorized, gin.H{ + "status": "error", + "message": "Authorization header wajib menggunakan Bearer token", + }) + return + } + + tokenString := strings.TrimSpace(strings.TrimPrefix(authHeader, "Bearer")) + token, err := jwt.Parse(tokenString, func(token *jwt.Token) (interface{}, error) { + if _, ok := token.Method.(*jwt.SigningMethodHMAC); !ok { + return nil, errors.New("metode tanda tangan tidak dikenal") + } + return jwtSecret, nil + }) + if err != nil || !token.Valid { + c.AbortWithStatusJSON(http.StatusUnauthorized, gin.H{ + "status": "error", + "message": "Token tidak valid atau kadaluarsa", + }) + return + } + + claims, ok := token.Claims.(jwt.MapClaims) + if !ok { + c.AbortWithStatusJSON(http.StatusUnauthorized, gin.H{ + "status": "error", + "message": "Token tidak valid", + }) + return + } + + c.Set("dokter_id", claims["id"]) + c.Set("dokter_nama", claims["nama"]) + c.Set("dokter_ksm", claims["ksm"]) + c.Set("dokter_email", claims["email"]) + + c.Next() + } +} diff --git a/backendcareit_v4/models/models.go b/backendcareit_v4/models/models.go new file mode 100644 index 0000000..fe13be4 --- /dev/null +++ b/backendcareit_v4/models/models.go @@ -0,0 +1,352 @@ +package models + +import "time" + +// Tarif Models - Data struktur buat tarif dari berbagai sumber + +type TarifBPJSRawatInap struct { + KodeINA string `gorm:"column:ID_INACBG_RI"` + Deskripsi string `gorm:"column:Tindakan_RI"` + Kelas1 float64 `gorm:"column:Tarif_Kelas_1"` + Kelas2 float64 `gorm:"column:Tarif_Kelas_2"` + Kelas3 float64 `gorm:"column:Tarif_Kelas_3"` +} + +type TarifBPJSRawatJalan struct { + KodeINA string `gorm:"column:ID_INACBG_RJ"` + Deskripsi string `gorm:"column:Tindakan_RJ"` + TarifINACBG float64 `gorm:"column:Tarif_RJ" json:"tarif_inacbg"` +} + +type TarifRS struct { + KodeRS string `gorm:"column:ID_Tarif_RS"` + Deskripsi string `gorm:"column:Tindakan_RS"` + Harga int `gorm:"column:Tarif_RS"` + Kategori string `gorm:"column:Kategori_RS"` +} + +func (TarifBPJSRawatJalan) TableName() string { + return "ina_cbg_rawatjalan" +} + +func (TarifBPJSRawatInap) TableName() string { + return "ina_cbg_rawatinap" +} + +func (TarifRS) TableName() string { + return "tarif_rs" +} + +// billing_inacbg_RI +type Billing_INACBG_RI struct { + ID_Billing int `gorm:"column:ID_Billing"` + Kode_INACBG string `gorm:"column:ID_INACBG_RI"` +} + +func (Billing_INACBG_RI) TableName() string { + return "billing_inacbg_ri" +} + +// billing_inacbg_RJ +type Billing_INACBG_RJ struct { + ID_Billing int `gorm:"column:ID_Billing"` + Kode_INACBG string `gorm:"column:ID_INACBG_RJ"` +} + +func (Billing_INACBG_RJ) TableName() string { + return "billing_inacbg_rj" +} + +type Billing_DPJP struct { + ID_Billing int `gorm:"column:ID_Billing;primaryKey"` + ID_DPJP int `gorm:"column:ID_DPJP;primaryKey"` +} + +func (Billing_DPJP) TableName() string { + return "billing_dpjp" +} + +// ICD9 + +type ICD9 struct { + Kode_ICD9 string `gorm:"column:ID_ICD9"` + Prosedur string `gorm:"column:Prosedur"` + Versi string `gorm:"column:Versi_ICD9"` +} + +func (ICD9) TableName() string { + return "icd9" +} + +// ICD10 +type ICD10 struct { + Kode_ICD10 string `gorm:"column:ID_ICD10"` + Diagnosa string `gorm:"column:Diagnosa"` + Versi string `gorm:"column:Versi_ICD10"` +} + +func (ICD10) TableName() string { + return "icd10" +} + +// ruangan +type Ruangan struct { + ID_Ruangan string `gorm:"column:ID_Ruangan"` + Jenis_Ruangan string `gorm:"column:Jenis_Ruangan"` + Nama_Ruangan string `gorm:"column:Nama_Ruangan"` + Keterangan string `gorm:"column:keterangan"` + Kategori_ruangan string `gorm:"column:kategori_ruangan"` +} + +func (Ruangan) TableName() string { + return "ruangan" +} + +// dokter +type Dokter struct { + ID_Dokter int `gorm:"column:ID_Dokter;primaryKey"` + Nama_Dokter string `gorm:"column:Nama_Dokter"` + Password string `gorm:"column:Password"` + Status string `gorm:"column:Status"` + KSM string `gorm:"column:KSM"` + Email_UB string `gorm:"column:Email_UB"` + Email_Pribadi string `gorm:"column:Email_Pribadi"` +} + +func (Dokter) TableName() string { + return "dokter" +} + +// PASIEN +type Pasien struct { + ID_Pasien int `gorm:"column:ID_Pasien;primaryKey;autoIncrement"` + Nama_Pasien string `gorm:"column:Nama_Pasien"` + Jenis_Kelamin string `gorm:"column:Jenis_Kelamin"` + Usia int `gorm:"column:Usia"` + Ruangan string `gorm:"column:Ruangan"` + Kelas string `gorm:"column:Kelas"` +} + +type Kelas string + +const ( + Kelas_1 Kelas = "1" + Kelas_2 Kelas = "2" + Kelas_3 Kelas = "3" +) + +type Jenis_kelamin string + +const ( + Jenis_Kelamin_Laki_laki Jenis_kelamin = "Laki-laki" + Jenis_Kelamin_Perempuan Jenis_kelamin = "Perempuan" +) + +func (Pasien) TableName() string { + return "pasien" +} + +// login dokter +type LoginRequest struct { + Email string `json:"email" binding:"required,email"` + Password string `json:"password" binding:"required"` +} + +//edit inacbg admin + +type Edit_INACBG_Request struct { + ID_Billing int `json:"id_billing"` + Tipe_inacbg string `json:"tipe_inacbg"` + Kode_inacbg []string `json:"kode_inacbg"` + Kode_Delete []string `json:"kode_delete"` + Total_Klaim float64 `json:"total_klaim"` + Billing_Sign string `json:"billing_sign"` +} + +//close billing + +type Close_billing struct { + ID_Billing int `json:"id_billing"` + Tanggal_Keluar string `json:"tanggal_keluar"` +} + +//riwayat billing pasien + +type Riwayat_Pasien_all struct { + ID_Billing int `json:"id_billing"` + ID_Pasien int `json:"id_pasien"` + Nama_Pasien string `json:"nama_pasien"` + Jenis_Kelamin string `json:"jenis_kelamin"` + Usia int `json:"usia"` + Ruangan string `json:"ruangan"` + Nama_Ruangan string `json:"nama_ruangan"` // โ† Added: Ruangan name for display + Kelas string `json:"kelas"` + ID_DPJP int `json:"id_dpjp"` // โ† Added: Doctor in charge + Nama_DPJP string `json:"nama_dpjp"` + Tanggal_Keluar string `json:"tanggal_keluar"` + Tanggal_Masuk string `json:"tanggal_masuk"` // Tanggal_Masuk *time.Time `json:"tanggal_masuk"` + Tanggal_Tindakan *time.Time `json:"tanggal_tindakan"` + Tindakan_RS []string `json:"tindakan_rs"` + ICD9 []string `json:"icd9"` + ICD10 []string `json:"icd10"` + Kode_INACBG string `json:"kode_inacbg"` + Total_Tarif_RS float64 `json:"total_tarif_rs"` // โ† Added: Hospital tariff + Total_Klaim float64 `json:"total_klaim"` // โ† Added: BPJS claim +} + +//billing pasien + +type BillingPasien struct { + ID_Billing int `gorm:"column:ID_Billing;primaryKey;autoIncrement" json:"id_billing"` + ID_Pasien int `gorm:"column:ID_Pasien" json:"id_pasien"` + Cara_Bayar string `gorm:"column:Cara_Bayar" json:"cara_bayar"` + Tanggal_masuk *time.Time `gorm:"column:Tanggal_Masuk" json:"tanggal_masuk"` + Tanggal_keluar *time.Time `gorm:"column:Tanggal_Keluar" json:"tanggal_keluar"` + Total_Tarif_RS float64 `gorm:"column:Total_Tarif_RS" json:"total_tarif_rs"` + Total_Klaim float64 `gorm:"column:Total_Klaim" json:"total_klaim"` + Billing_sign string `gorm:"column:Billing_Sign" json:"billing_sign"` +} + +type Cara_bayar string + +const ( + Cara_Bayar_BPJS Cara_bayar = "BPJS" + Cara_Bayar_UMUM Cara_bayar = "UMUM" +) + +func (BillingPasien) TableName() string { + return "billing_pasien" +} + +// BillingRequest untuk menerima data dari frontend +type BillingRequest struct { + Nama_Dokter []string `json:"nama_dokter" binding:"required"` // Array untuk multiple doctors + Nama_Pasien string `json:"nama_pasien" binding:"required"` + Jenis_Kelamin string `json:"jenis_kelamin" binding:"required"` + Usia int `json:"usia" binding:"required"` + ID_DPJP int `json:"id_dpjp"` + Ruangan string `json:"ruangan" binding:"required"` + Kelas string `json:"kelas" binding:"required"` + Tindakan_RS []string `json:"tindakan_rs" binding:"required"` + Tanggal_Keluar string `json:"tanggal_keluar"` + Billing_sign string `json:"billing_sign"` + ICD9 []string `json:"icd9"` + ICD10 []string `json:"icd10" binding:"required"` + Cara_Bayar string `json:"cara_bayar" binding:"required"` + Total_Tarif_RS float64 `json:"total_tarif_rs"` + Total_Klaim_BPJS float64 `json:"total_klaim_bpjs"` // โ† Added: Baseline BPJS claim from FE +} + +// admin ruangan //Admin_Ruangan + +type Admin_Ruangan struct { + ID_Admin int `gorm:"column:ID_Admin"` + Nama_Admin string `gorm:"column:Nama_Admin"` + Password string `gorm:"column:Password"` + ID_Ruangan string `gorm:"column:ID_Ruangan"` +} + +func (Admin_Ruangan) TableName() string { + return "admin_ruangan" +} + +// billing_Tidakan + +type Billing_Tindakan struct { + ID_Billing int `gorm:"column:ID_Billing;primaryKey;not null"` + ID_Tarif_RS string `gorm:"column:ID_Tarif_RS;primaryKey;not null"` + Tanggal_Tindakan *time.Time `gorm:"column:tanggal_tindakan"` +} + +func (Billing_Tindakan) TableName() string { + return "billing_tindakan" +} + +// billing_ICD9 dan ICD10 + +type Billing_ICD9 struct { + ID_Billing int `gorm:"column:ID_Billing;primaryKey;not null"` + ID_ICD9 string `gorm:"column:ID_ICD9;primaryKey;not null"` +} + +type Billing_ICD10 struct { + ID_Billing int `gorm:"column:ID_Billing;primaryKey;not null"` + ID_ICD10 string `gorm:"column:ID_ICD10;primaryKey;not null"` +} + +func (Billing_ICD9) TableName() string { + return "billing_icd9" +} +func (Billing_ICD10) TableName() string { + return "billing_icd10" +} + +// billing_Dokter - relasi many-to-many antara billing dan dokter dengan tracking tanggal +type Billing_Dokter struct { + ID_Billing int `gorm:"column:ID_Billing"` + ID_Dokter int `gorm:"column:ID_Dokter"` + Tanggal *time.Time `gorm:"column:tanggal"` // Tanggal kapan dokter menangani pasien +} + +func (Billing_Dokter) TableName() string { + return "billing_dokter" +} + +// riwayat pasien +type Riwayat_Pasien struct { + ID_Billing int `json:"id_billing"` + Nama_pasien string `json:"nama_pasien"` + ID_Pasien int `json:"id_pasien"` + Kelas string `json:"Kelas"` + Ruangan string `json:"ruangan"` + Total_Tarif_RS float64 `json:"total_tarif_rs"` + Total_Klaim float64 `json:"total_klaim"` + Tindakan_RS []string `json:"tindakan_rs"` + ICD9 []string `json:"icd9"` + ICD10 []string `json:"icd10"` + INACBG_RI []string `json:"inacbg_ri"` + INACBG_RJ []string `json:"inacbg_rj"` + Billing_sign string `json:"billing_sign"` + Nama_Dokter []string `json:"nama_dokter"` +} + +// Request untuk tampilan data Admin ( pengisian inacbg) +type Request_Admin_Inacbg struct { + ID_Billing int `json:"id_billing"` + Nama_pasien string `json:"nama_pasien"` + ID_Pasien int `json:"id_pasien"` + Kelas string `json:"Kelas"` + Ruangan string `json:"ruangan"` + Total_Tarif_RS float64 `json:"total_tarif_rs"` + Total_Klaim float64 `json:"total_klaim"` + ID_DPJP int `json:"id_dpjp"` + Tindakan_RS []string `json:"tindakan_rs"` + ICD9 []string `json:"icd9"` + ICD10 []string `json:"icd10"` + INACBG_RI []string `json:"inacbg_ri"` + INACBG_RJ []string `json:"inacbg_rj"` + Billing_sign string `json:"billing_sign"` + Nama_Dokter []string `json:"nama_dokter"` +} + +// post ke data base +type Post_INACBG_Admin struct { + ID_Billing int `json:"id_billing"` + Tipe_inacbg string `json:"tipe_inacbg"` + Kode_INACBG []string `json:"kode_inacbg"` + Total_klaim float64 `json:"total_klaim"` + Billing_sign string `json:"billing_sign"` + Tanggal_keluar string `json:"tanggal_keluar"` // Diisi oleh admin billing +} + +// login dokter +type loginRequest struct { + Email string `json:"email" binding:"required,email"` + Password string `json:"password" binding:"required"` +} + +func (loginRequest) TableName() string { + return "dokter" +} + +// getpasienwithallicd9andicd10,andtindakanrs diff --git a/backendcareit_v4/scripts/check_admin.go b/backendcareit_v4/scripts/check_admin.go new file mode 100644 index 0000000..5c8caeb --- /dev/null +++ b/backendcareit_v4/scripts/check_admin.go @@ -0,0 +1,87 @@ +package scripts + +import ( + "fmt" + "log" + + "backendcareit/database" +) + +func CheckAdmin() { + // Nyambungin ke database + db, err := database.KonekDB() + if err != nil { + log.Fatalf("Gagal koneksi database: %v", err) + } + + // Set koneksi database + database.DB = db + + // Cek data admin + type AdminRuangan struct { + ID_Admin int `gorm:"column:ID_Admin"` + Nama_Admin string `gorm:"column:Nama_Admin"` + Password string `gorm:"column:Password"` + ID_Ruangan *int `gorm:"column:ID_Ruangan"` + } + var admins []AdminRuangan + + // Ambil semua admin + result := db.Table("admin_ruangan").Find(&admins) + if result.Error != nil { + log.Fatalf("Gagal query admin: %v", result.Error) + } + + fmt.Printf("Total admin ditemukan: %d\n\n", len(admins)) + + if len(admins) == 0 { + fmt.Println("โš ๏ธ Tidak ada data admin di database!") + fmt.Println("\nJalankan script insert_admin.go untuk menambahkan data admin:") + fmt.Println(" go run scripts/insert_admin.go") + return + } + + // Tampilin semua admin + for i, admin := range admins { + fmt.Printf("Admin #%d:\n", i+1) + fmt.Printf(" ID_Admin: %d\n", admin.ID_Admin) + fmt.Printf(" Nama_Admin: '%s'\n", admin.Nama_Admin) + fmt.Printf(" Password: '%s' (length: %d)\n", admin.Password, len(admin.Password)) + if admin.ID_Ruangan != nil { + fmt.Printf(" ID_Ruangan: %d\n", *admin.ID_Ruangan) + } else { + fmt.Printf(" ID_Ruangan: NULL\n") + } + fmt.Println() + } + + // Test query buat username 'admin' + var admin AdminRuangan + err = db.Table("admin_ruangan"). + Where("Nama_Admin = ?", "admin"). + First(&admin).Error + + if err != nil { + fmt.Println("โŒ Query dengan Nama_Admin = 'admin' GAGAL") + fmt.Printf(" Error: %v\n", err) + } else { + fmt.Println("โœ… Query dengan Nama_Admin = 'admin' BERHASIL") + fmt.Printf(" ID_Admin: %d\n", admin.ID_Admin) + fmt.Printf(" Nama_Admin: '%s'\n", admin.Nama_Admin) + fmt.Printf(" Password: '%s'\n", admin.Password) + } + + // Test query case-insensitive + err = db.Table("admin_ruangan"). + Where("LOWER(Nama_Admin) = LOWER(?)", "admin"). + First(&admin).Error + + if err != nil { + fmt.Println("โŒ Query case-insensitive GAGAL") + fmt.Printf(" Error: %v\n", err) + } else { + fmt.Println("โœ… Query case-insensitive BERHASIL") + fmt.Printf(" ID_Admin: %d\n", admin.ID_Admin) + fmt.Printf(" Nama_Admin: '%s'\n", admin.Nama_Admin) + } +} diff --git a/backendcareit_v4/scripts/insert_admin.go b/backendcareit_v4/scripts/insert_admin.go new file mode 100644 index 0000000..586f1ed --- /dev/null +++ b/backendcareit_v4/scripts/insert_admin.go @@ -0,0 +1,47 @@ +package scripts + +import ( + "fmt" + "log" + + "backendcareit/database" +) + +func main() { + // Nyambungin ke database + db, err := database.KonekDB() + if err != nil { + log.Fatalf("Gagal koneksi database: %v", err) + } + + // Set koneksi database + database.DB = db + + // Cek admin udah ada atau belum + var count int64 + db.Table("admin_ruangan").Where("Nama_Admin = ?", "admin").Count(&count) + + if count > 0 { + fmt.Println("Admin dengan username 'admin' sudah ada di database.") + fmt.Println("Ngapus admin yang lama...") + db.Table("admin_ruangan").Where("Nama_Admin = ?", "admin").Delete(nil) + } + + // Masukin admin yang baru + result := db.Exec(` + INSERT INTO admin_ruangan (Nama_Admin, Password, ID_Ruangan) + VALUES (?, ?, ?) + `, "admin", "admin123", nil) + + if result.Error != nil { + log.Fatalf("Gagal insert admin: %v", result.Error) + } + + if result.RowsAffected > 0 { + fmt.Println("โœ“ Data admin berhasil ditambahkan!") + fmt.Println(" Username: admin") + fmt.Println(" Password: admin123") + } else { + fmt.Println("Tidak ada data yang ditambahkan.") + } +} diff --git a/backendcareit_v4/services/Edit_Inacbg.go b/backendcareit_v4/services/Edit_Inacbg.go new file mode 100644 index 0000000..b009471 --- /dev/null +++ b/backendcareit_v4/services/Edit_Inacbg.go @@ -0,0 +1,96 @@ +package services + +import ( + "backendcareit/models" + "fmt" + "log" + + "gorm.io/gorm" +) + +func Edit_INACBG_Admin(db *gorm.DB, input models.Edit_INACBG_Request) error { + log.Printf("[Edit INACBG] Received ID_Billing=%d, Tipe=%s, Kode_count=%d, Delete_count=%d, Total_Klaim=%.2f, Billing_Sign=%s\n", + input.ID_Billing, input.Tipe_inacbg, len(input.Kode_inacbg), len(input.Kode_Delete), input.Total_Klaim, input.Billing_Sign) + + tx := db.Begin() + if tx.Error != nil { + return tx.Error + } + + defer func() { + if r := recover(); r != nil { + tx.Rollback() + } + }() + + // 1. Hapus kode yang udah dipilih untuk dihapus + if len(input.Kode_Delete) > 0 { + switch input.Tipe_inacbg { + case "RI": + if err := tx.Where("\"ID_Billing\" = ? AND \"ID_INACBG_RI\" IN ?", input.ID_Billing, input.Kode_Delete).Delete(&models.Billing_INACBG_RI{}).Error; err != nil { + tx.Rollback() + return fmt.Errorf("gagal delete INACBG RI: %w", err) + } + case "RJ": + if err := tx.Where("\"ID_Billing\" = ? AND \"ID_INACBG_RJ\" IN ?", input.ID_Billing, input.Kode_Delete).Delete(&models.Billing_INACBG_RJ{}).Error; err != nil { + tx.Rollback() + return fmt.Errorf("gagal delete INACBG RJ: %w", err) + } + default: + tx.Rollback() + return fmt.Errorf("invalid tipe_inacbg: %s", input.Tipe_inacbg) + } + } + + // 2. Tambahin kode INACBG yang baru + if len(input.Kode_inacbg) > 0 { + switch input.Tipe_inacbg { + case "RI": + for _, kode := range input.Kode_inacbg { + inacbgRI := models.Billing_INACBG_RI{ + ID_Billing: input.ID_Billing, + Kode_INACBG: kode, + } + if err := tx.Create(&inacbgRI).Error; err != nil { + tx.Rollback() + return fmt.Errorf("gagal insert INACBG RI kode %s: %w", kode, err) + } + } + case "RJ": + for _, kode := range input.Kode_inacbg { + inacbgRJ := models.Billing_INACBG_RJ{ + ID_Billing: input.ID_Billing, + Kode_INACBG: kode, + } + if err := tx.Create(&inacbgRJ).Error; err != nil { + tx.Rollback() + return fmt.Errorf("gagal insert INACBG RJ kode %s: %w", kode, err) + } + } + } + } + + // 3. Update data di tabel billing_pasien + updateData := map[string]interface{}{ + "Total_Klaim": input.Total_Klaim, + "Billing_Sign": input.Billing_Sign, + } + + if err := tx.Model(&models.BillingPasien{}).Where("\"ID_Billing\" = ?", input.ID_Billing).Updates(updateData).Error; err != nil { + tx.Rollback() + return fmt.Errorf("gagal update billing_pasien: %w", err) + } + + if err := tx.Commit().Error; err != nil { + return err + } + + // 4. Ngirim email kalo billing_sign gak kosong + go func(id int) { + if err := SendEmailBillingSignToDokter(id); err != nil { + log.Printf("Warning: Gagal mengirim email ke dokter untuk billing ID %d: %v\n", id, err) + } + }(input.ID_Billing) + + return nil +} diff --git a/backendcareit_v4/services/Edit_pasien.go b/backendcareit_v4/services/Edit_pasien.go new file mode 100644 index 0000000..9f58886 --- /dev/null +++ b/backendcareit_v4/services/Edit_pasien.go @@ -0,0 +1,173 @@ +package services + +import ( + "errors" + "fmt" + "log" + "time" + + "backendcareit/database" + "backendcareit/models" + + "gorm.io/gorm" +) + +// EditPasienComplete - Update data identitas pasien dalam billing (nama, umur, ruangan, dll) terus dengan lookup kode +func EditPasienComplete(billingId int, namaPasien string, usia int, jeniKelamin string, ruangan string, kelas string, tindakan []string, icd9 []string, icd10 []string, billingSign *string, totalTarifRS *float64) error { + log.Printf("[EditPasien] START - billingId:%d, nama:%s, tindakan_count:%d, icd9_count:%d, icd10_count:%d\n", billingId, namaPasien, len(tindakan), len(icd9), len(icd10)) + + // Get billing + var billing models.BillingPasien + if err := database.DB.Where("\"ID_Billing\" = ?", billingId).First(&billing).Error; err != nil { + log.Printf("[EditPasien] ERROR - billing not found: %v\n", err) + return errors.New("billing tidak ditemukan") + } + log.Printf("[EditPasien] โœ“ Billing found - ID_Pasien: %d\n", billing.ID_Pasien) + + // Start transaction + tx := database.DB.Begin() + defer func() { + if r := recover(); r != nil { + tx.Rollback() + } + }() + + // Update pasien data + if err := tx.Model(&models.Pasien{}). + Where("\"ID_Pasien\" = ?", billing.ID_Pasien). + Updates(map[string]interface{}{ + "Nama_Pasien": namaPasien, + "Usia": usia, + "Jenis_Kelamin": jeniKelamin, + "Ruangan": ruangan, + "Kelas": kelas, + }).Error; err != nil { + tx.Rollback() + return errors.New("gagal update data pasien: " + err.Error()) + } + + // Delete existing tindakan + if err := tx.Where("\"ID_Billing\" = ?", billingId).Delete(&models.Billing_Tindakan{}).Error; err != nil { + tx.Rollback() + return errors.New("gagal delete tindakan: " + err.Error()) + } + + // Insert new tindakan dengan lookup berdasarkan nama tindakan + now := time.Now() + for _, tindakanNama := range tindakan { + if tindakanNama != "" { + log.Printf("[EditPasien] Looking up tindakan: '%s'\n", tindakanNama) + // Lookup tarif by deskripsi (nama tindakan) - use quoted column name for PostgreSQL + var tarif models.TarifRS + if err := tx.Where("\"Tindakan_RS\" = ?", tindakanNama).First(&tarif).Error; err != nil { + log.Printf("[EditPasien] ERROR - tindakan lookup failed: %v\n", err) + if errors.Is(err, gorm.ErrRecordNotFound) { + tx.Rollback() + log.Printf("[EditPasien] ERROR - tindakan '%s' not found in tarif_rs\n", tindakanNama) + return fmt.Errorf("tindakan '%s' tidak ditemukan", tindakanNama) + } + tx.Rollback() + return errors.New("gagal lookup tindakan: " + err.Error()) + } + log.Printf("[EditPasien] โœ“ Tindakan found - ID: %s, Harga: %d\n", tarif.KodeRS, tarif.Harga) + + newTindakan := models.Billing_Tindakan{ + ID_Billing: billingId, + ID_Tarif_RS: tarif.KodeRS, + Tanggal_Tindakan: &now, + } + if err := tx.Create(&newTindakan).Error; err != nil { + tx.Rollback() + return errors.New("gagal insert tindakan: " + err.Error()) + } + } + } + + // Delete existing ICD9 + if err := tx.Where("\"ID_Billing\" = ?", billingId).Delete(&models.Billing_ICD9{}).Error; err != nil { + tx.Rollback() + return errors.New("gagal delete ICD9: " + err.Error()) + } + + // Insert new ICD9 dengan lookup berdasarkan nama prosedur + for _, icd9Nama := range icd9 { + if icd9Nama != "" { + // Lookup ICD9 by prosedur name + var icd9Data models.ICD9 + if err := tx.Where("\"Prosedur\" = ?", icd9Nama).First(&icd9Data).Error; err != nil { + if errors.Is(err, gorm.ErrRecordNotFound) { + tx.Rollback() + return fmt.Errorf("ICD9 '%s' tidak ditemukan", icd9Nama) + } + tx.Rollback() + return errors.New("gagal lookup ICD9: " + err.Error()) + } + + newICD9 := models.Billing_ICD9{ + ID_Billing: billingId, + ID_ICD9: icd9Data.Kode_ICD9, + } + if err := tx.Create(&newICD9).Error; err != nil { + tx.Rollback() + return errors.New("gagal insert ICD9: " + err.Error()) + } + } + } + + // Delete existing ICD10 + if err := tx.Where("\"ID_Billing\" = ?", billingId).Delete(&models.Billing_ICD10{}).Error; err != nil { + tx.Rollback() + return errors.New("gagal delete ICD10: " + err.Error()) + } + + // Insert new ICD10 dengan lookup berdasarkan nama diagnosa + for _, icd10Nama := range icd10 { + if icd10Nama != "" { + // Lookup ICD10 by diagnosa name + var icd10Data models.ICD10 + if err := tx.Where("\"Diagnosa\" = ?", icd10Nama).First(&icd10Data).Error; err != nil { + if errors.Is(err, gorm.ErrRecordNotFound) { + tx.Rollback() + return fmt.Errorf("ICD10 '%s' tidak ditemukan", icd10Nama) + } + tx.Rollback() + return errors.New("gagal lookup ICD10: " + err.Error()) + } + + newICD10 := models.Billing_ICD10{ + ID_Billing: billingId, + ID_ICD10: icd10Data.Kode_ICD10, + } + if err := tx.Create(&newICD10).Error; err != nil { + tx.Rollback() + return errors.New("gagal insert ICD10: " + err.Error()) + } + } + } + + // Update billing_sign jika dikirimkan dari FE + if billingSign != nil { + if err := tx.Model(&models.BillingPasien{}). + Where("\"ID_Billing\" = ?", billingId). + Update("Billing_Sign", *billingSign).Error; err != nil { + tx.Rollback() + return errors.New("gagal update billing_sign: " + err.Error()) + } + } + // Update total_tarif_rs jika dikirimkan dari FE + if totalTarifRS != nil { + if err := tx.Model(&models.BillingPasien{}). + Where("\"ID_Billing\" = ?", billingId). + Update("Total_Tarif_RS", *totalTarifRS).Error; err != nil { + tx.Rollback() + return errors.New("gagal update total_tarif_rs: " + err.Error()) + } + } + + // Commit transaction + if err := tx.Commit().Error; err != nil { + return errors.New("gagal commit transaction: " + err.Error()) + } + + return nil +} diff --git a/backendcareit_v4/services/Pengisian_INACBG(Admin).go b/backendcareit_v4/services/Pengisian_INACBG(Admin).go new file mode 100644 index 0000000..3f50ccb --- /dev/null +++ b/backendcareit_v4/services/Pengisian_INACBG(Admin).go @@ -0,0 +1,403 @@ +package services + +import ( + "errors" + "fmt" + "log" + "strings" + "time" + + "backendcareit/models" + + "gorm.io/gorm" +) + +func Post_INACBG_Admin(db *gorm.DB, input models.Post_INACBG_Admin) error { + // Debug log + log.Printf("[INACBG] Input received: ID_Billing=%d, Tipe=%s, Kode_count=%d, Total_klaim=%.2f, BillingSign=%s\n", + input.ID_Billing, input.Tipe_inacbg, len(input.Kode_INACBG), input.Total_klaim, input.Billing_sign) + + tx := db.Begin() + if tx.Error != nil { + log.Printf("[INACBG] Error starting transaction: %v\n", tx.Error) + return tx.Error + } + + // Ensure rollback on panic / unexpected error + defer func() { + if r := recover(); r != nil { + log.Printf("[INACBG] Panic recovered: %v\n", r) + tx.Rollback() + } + }() + + // Validate input + if input.Tipe_inacbg != "RI" && input.Tipe_inacbg != "RJ" { + tx.Rollback() + err := errors.New("invalid tipe_inacbg: must be 'RI' or 'RJ'") + log.Printf("[INACBG] Validation error: %v\n", err) + return err + } + if len(input.Kode_INACBG) == 0 { + tx.Rollback() + err := errors.New("Kode_INACBG tidak boleh kosong") + log.Printf("[INACBG] Validation error: %v\n", err) + return err + } + + // Ngambil billing dulu buat dapetin total klaim yang lama + var existingBilling models.BillingPasien + if err := tx.First(&existingBilling, input.ID_Billing).Error; err != nil { + tx.Rollback() + if errors.Is(err, gorm.ErrRecordNotFound) { + err = fmt.Errorf("billing dengan ID_Billing=%d tidak ditemukan", input.ID_Billing) + log.Printf("[INACBG] %v\n", err) + return err + } + log.Printf("[INACBG] Error fetching billing: %v\n", err) + return fmt.Errorf("gagal mengambil billing: %w", err) + } + + log.Printf("[INACBG] Found billing: ID=%d, Current_Total_Klaim=%.2f\n", existingBilling.ID_Billing, existingBilling.Total_Klaim) + + // Hitung total klaim yang baru = yang lama + tambahan + newTotalKlaim := input.Total_klaim + log.Printf("[INACBG] New total klaim: %.2f + %.2f = %.2f\n", existingBilling.Total_Klaim, input.Total_klaim, newTotalKlaim) + + // Parse Tanggal_Keluar jika diisi oleh admin + var keluarPtr *time.Time + if input.Tanggal_keluar != "" && input.Tanggal_keluar != "null" { + s := input.Tanggal_keluar + var parsed time.Time + var err error + layouts := []string{time.RFC3339, "2006-01-02 15:04:05", "2006-01-02"} + for _, layout := range layouts { + parsed, err = time.Parse(layout, s) + if err == nil { + t := parsed + keluarPtr = &t + log.Printf("[INACBG] Parsed tanggal_keluar: %v\n", t) + break + } + } + if keluarPtr == nil { + tx.Rollback() + err := fmt.Errorf("invalid tanggal_keluar format: %s", input.Tanggal_keluar) + log.Printf("[INACBG] %v\n", err) + return err + } + } + + // Update total klaim kumulatif sama tanggal keluar (kalo ada yang ngirim) + updateData := map[string]interface{}{ + "\"Total_Klaim\"": newTotalKlaim, + } + if keluarPtr != nil { + updateData["\"Tanggal_Keluar\""] = keluarPtr + } + + // Kalo frontend kirim billing_sign, langsung simpen ke kolom Billing_Sign + if input.Billing_sign != "" { + updateData["\"Billing_Sign\""] = input.Billing_sign + log.Printf("[INACBG] Will update Billing_Sign to: %s\n", input.Billing_sign) + } + + log.Printf("[INACBG] Update data: %v\n", updateData) + + res := tx.Model(&models.BillingPasien{}). + Where("\"ID_Billing\" = ?", input.ID_Billing). + Updates(updateData) + + if res.Error != nil { + tx.Rollback() + log.Printf("[INACBG] Error updating billing: %v\n", res.Error) + return fmt.Errorf("gagal update billing: %w", res.Error) + } + + log.Printf("[INACBG] Updated %d rows in billing_pasien\n", res.RowsAffected) + + // DELETE semua kode INACBG yang lama buat billing ini (biar gak duplikat pas INSERT) + switch input.Tipe_inacbg { + case "RI": + if err := tx.Where("\"ID_Billing\" = ?", input.ID_Billing).Delete(&models.Billing_INACBG_RI{}).Error; err != nil { + tx.Rollback() + log.Printf("[INACBG] Error deleting old INACBG RI: %v\n", err) + return fmt.Errorf("gagal delete INACBG RI lama: %w", err) + } + log.Printf("[INACBG] Deleted old INACBG RI records for ID_Billing=%d\n", input.ID_Billing) + + case "RJ": + if err := tx.Where("\"ID_Billing\" = ?", input.ID_Billing).Delete(&models.Billing_INACBG_RJ{}).Error; err != nil { + tx.Rollback() + log.Printf("[INACBG] Error deleting old INACBG RJ: %v\n", err) + return fmt.Errorf("gagal delete INACBG RJ lama: %w", err) + } + log.Printf("[INACBG] Deleted old INACBG RJ records for ID_Billing=%d\n", input.ID_Billing) + } + + // Bulk insert kode INACBG berdasarkan tipenya (udah dihapus yang lama) + switch input.Tipe_inacbg { + case "RI": + records := make([]models.Billing_INACBG_RI, 0, len(input.Kode_INACBG)) + for _, kode := range input.Kode_INACBG { + records = append(records, models.Billing_INACBG_RI{ + ID_Billing: input.ID_Billing, + Kode_INACBG: kode, + }) + } + if err := tx.Create(&records).Error; err != nil { + tx.Rollback() + return fmt.Errorf("gagal insert INACBG RI: %w", err) + } + + case "RJ": + records := make([]models.Billing_INACBG_RJ, 0, len(input.Kode_INACBG)) + for _, kode := range input.Kode_INACBG { + records = append(records, models.Billing_INACBG_RJ{ + ID_Billing: input.ID_Billing, + Kode_INACBG: kode, + }) + } + if err := tx.Create(&records).Error; err != nil { + tx.Rollback() + return fmt.Errorf("gagal insert INACBG RJ: %w", err) + } + } + + // Commit transaction + if err := tx.Commit().Error; err != nil { + log.Printf("[INACBG] Error committing transaction: %v\n", err) + return err + } + + log.Printf("[INACBG] โœ… Successfully saved INACBG for ID_Billing=%d, billing_sign=%s\n", input.ID_Billing, input.Billing_sign) + + // Ngirim email ke dokter kalo billing_sign gak kosong + if input.Billing_sign != "" && strings.TrimSpace(input.Billing_sign) != "" { + // Ngirim email asynchronous (kalo gagal, jangan perpengaruh proses utama) + // Log error tapi jangan return, biar proses utama tetep berhasil + if err := SendEmailBillingSignToDokter(input.ID_Billing); err != nil { + // Log error tapi tidak return error agar proses utama tetap berhasil + // Di production, bisa pake logger yang lebih proper + fmt.Printf("Warning: Gagal mengirim email ke dokter untuk billing ID %d: %v\n", input.ID_Billing, err) + } + } + + return nil +} + +func GetAllBilling(db *gorm.DB) ([]models.Request_Admin_Inacbg, error) { + var billings []models.BillingPasien + + // Ngambil semua billing yang belum ditutup (Tanggal_Keluar masih kosong) + if err := db.Where("\"Tanggal_Keluar\" IS NULL").Find(&billings).Error; err != nil { + return nil, err + } + + // Kumpulin dulu semua ID_Billing sama ID_Pasien + var billingIDs []int + var pasienIDs []int + + for _, b := range billings { + billingIDs = append(billingIDs, b.ID_Billing) + pasienIDs = append(pasienIDs, b.ID_Pasien) + } + + // Ambil pasien yang ada di billing aja + pasienMap := make(map[int]models.Pasien) + var pasienList []models.Pasien + + if err := db.Where("\"ID_Pasien\" IN ?", pasienIDs).Find(&pasienList).Error; err != nil { + return nil, err + } + + log.Printf("[DEBUG] Loaded %d pasien from database\n", len(pasienList)) + for _, p := range pasienList { + pasienMap[p.ID_Pasien] = p + log.Printf("[DEBUG] Pasien %d: Nama=%s, Ruangan=%s\n", p.ID_Pasien, p.Nama_Pasien, p.Ruangan) + } + + // Ambil tindakan yang berkaitan sama billing-billing ini + tindakanMap := make(map[int][]string) + var tindakanRows []struct { + ID_Billing int + Kode string + } + + if err := db.Table("\"billing_tindakan\""). + Where("\"ID_Billing\" IN ?", billingIDs). + Select("\"ID_Billing\", \"ID_Tarif_RS\" as \"Kode\""). + Scan(&tindakanRows).Error; err != nil { + return nil, err + } + + for _, t := range tindakanRows { + tindakanMap[t.ID_Billing] = append(tindakanMap[t.ID_Billing], t.Kode) + } + + // Ngambil semua ICD9 yang ada + icd9Map := make(map[int][]string) + var icd9Rows []struct { + ID_Billing int + Kode string + } + + if err := db.Table("\"billing_icd9\""). + Where("\"ID_Billing\" IN ?", billingIDs). + Select("\"ID_Billing\", \"ID_ICD9\" as \"Kode\""). + Scan(&icd9Rows).Error; err != nil { + return nil, err + } + + for _, row := range icd9Rows { + icd9Map[row.ID_Billing] = append(icd9Map[row.ID_Billing], row.Kode) + } + + // Ngambil semua ICD10 yang ada + icd10Map := make(map[int][]string) + var icd10Rows []struct { + ID_Billing int + Kode string + } + + if err := db.Table("\"billing_icd10\""). + Where("\"ID_Billing\" IN ?", billingIDs). + Select("\"ID_Billing\", \"ID_ICD10\" as \"Kode\""). + Scan(&icd10Rows).Error; err != nil { + return nil, err + } + + for _, row := range icd10Rows { + icd10Map[row.ID_Billing] = append(icd10Map[row.ID_Billing], row.Kode) + } + + // Ngambil INACBG RI + inacbgRIMap := make(map[int][]string) + var inacbgRIRows []struct { + ID_Billing int + Kode string + } + if err := db.Table("\"billing_inacbg_ri\""). + Where("\"ID_Billing\" IN ?", billingIDs). + Select("\"ID_Billing\", \"ID_INACBG_RI\" as \"Kode\""). + Scan(&inacbgRIRows).Error; err != nil { + return nil, err + } + for _, row := range inacbgRIRows { + inacbgRIMap[row.ID_Billing] = append(inacbgRIMap[row.ID_Billing], row.Kode) + } + + // Ngambil INACBG RJ + inacbgRJMap := make(map[int][]string) + var inacbgRJRows []struct { + ID_Billing int + Kode string + } + if err := db.Table("\"billing_inacbg_rj\""). + Where("\"ID_Billing\" IN ?", billingIDs). + Select("\"ID_Billing\", \"ID_INACBG_RJ\" as \"Kode\""). + Scan(&inacbgRJRows).Error; err != nil { + return nil, err + } + for _, row := range inacbgRJRows { + inacbgRJMap[row.ID_Billing] = append(inacbgRJMap[row.ID_Billing], row.Kode) + } + + // Ambil dokter dari tabel billing_dokter, diurutkan berdasarkan tanggal + dokterMap := make(map[int][]string) + var dokterRows []struct { + ID_Billing int + Nama string + Tanggal time.Time + } + if err := db.Table("\"billing_dokter\""). + Select("\"ID_Billing\", \"Nama_Dokter\" as \"Nama\", \"tanggal\""). + Joins("JOIN \"dokter\" ON \"billing_dokter\".\"ID_Dokter\" = \"dokter\".\"ID_Dokter\""). + Where("\"ID_Billing\" IN ?", billingIDs). + Order("\"tanggal\" ASC"). + Scan(&dokterRows).Error; err != nil { + return nil, err + } + for _, row := range dokterRows { + dokterMap[row.ID_Billing] = append(dokterMap[row.ID_Billing], row.Nama) + } + + // Ambil nama ruangan buat di-mapping dari ID jadi Nama + ruanganNameMap := make(map[string]string) + var ruanganRows []struct { + ID_Ruangan string + Nama_Ruangan string + } + if err := db.Table("\"ruangan\""). + Select("\"ID_Ruangan\", \"Nama_Ruangan\""). + Scan(&ruanganRows).Error; err != nil { + log.Printf("[WARNING] Gagal ngambil ruangan: %v\\n", err) + // Lanjutin aja, ID jadi fallback + } else { + for _, row := range ruanganRows { + ruanganNameMap[row.ID_Ruangan] = row.Nama_Ruangan + } + log.Printf("[DEBUG] Loaded %d ruangan mappings\n", len(ruanganNameMap)) + } + + // Rapihin semua data jadi response yang bagus + var result []models.Request_Admin_Inacbg + + for _, b := range billings { + pasien := pasienMap[b.ID_Pasien] + + // ruangan bisa jadi udah nama, bukan ID, langsung pake aja + ruanganDisplay := pasien.Ruangan + + // Tapi kalo mirip ID dan ada mapping, pake nama yang sudah dimapping + if mappedName, exists := ruanganNameMap[pasien.Ruangan]; exists && mappedName != "" { + ruanganDisplay = mappedName + } + + item := models.Request_Admin_Inacbg{ + ID_Billing: b.ID_Billing, + Nama_pasien: pasien.Nama_Pasien, + ID_Pasien: b.ID_Pasien, + Kelas: pasien.Kelas, + Ruangan: ruanganDisplay, // โ† Use name directly if available, or mapped name + Total_Tarif_RS: b.Total_Tarif_RS, + Total_Klaim: b.Total_Klaim, + Tindakan_RS: tindakanMap[b.ID_Billing], + ICD9: icd9Map[b.ID_Billing], + ICD10: icd10Map[b.ID_Billing], + INACBG_RI: inacbgRIMap[b.ID_Billing], + INACBG_RJ: inacbgRJMap[b.ID_Billing], + Billing_sign: b.Billing_sign, + Nama_Dokter: dokterMap[b.ID_Billing], + } + + result = append(result, item) + } + + return result, nil +} + +// GetBillingByID - Get specific billing data by ID +func GetBillingByID(db *gorm.DB, id string) (map[string]interface{}, error) { + var billing models.BillingPasien + + if err := db.Where("\"ID_Billing\" = ?", id).First(&billing).Error; err != nil { + if errors.Is(err, gorm.ErrRecordNotFound) { + return nil, fmt.Errorf("billing dengan ID=%s tidak ditemukan", id) + } + return nil, fmt.Errorf("gagal mengambil billing: %w", err) + } + + result := map[string]interface{}{ + "id_billing": billing.ID_Billing, + "id_pasien": billing.ID_Pasien, + "cara_bayar": billing.Cara_Bayar, + "tanggal_masuk": billing.Tanggal_masuk, + "tanggal_keluar": billing.Tanggal_keluar, + "total_tarif_rs": billing.Total_Tarif_RS, + "total_klaim": billing.Total_Klaim, + "billing_sign": billing.Billing_sign, + } + + return result, nil +} diff --git a/backendcareit_v4/services/SendEmail.go b/backendcareit_v4/services/SendEmail.go new file mode 100644 index 0000000..2c07512 --- /dev/null +++ b/backendcareit_v4/services/SendEmail.go @@ -0,0 +1,284 @@ +package services + +import ( + "errors" + "fmt" + "net/smtp" + "os" + "strings" + + "backendcareit/database" + "backendcareit/models" + + "gorm.io/gorm" +) + +// SendEmail - Ngirim email pake SMTP bro +func SendEmail(to, subject, body string) error { + // Ambil konfigurasi dari env variable dulu, lebih aman + from := os.Getenv("EMAIL_FROM") + password := os.Getenv("EMAIL_PASSWORD") + smtpHost := os.Getenv("SMTP_HOST") + smtpPort := os.Getenv("SMTP_PORT") + + // Kalau env variable gak ada, pake default value (biar kompatibel sama versi lama) + if from == "" { + from = "careit565@gmail.com" + } + if password == "" { + password = "gkhz bjax uamw xydf" + } + if smtpHost == "" { + smtpHost = "smtp.gmail.com" + } + if smtpPort == "" { + smtpPort = "587" + } + + if from == "" || password == "" || smtpHost == "" || smtpPort == "" { + return fmt.Errorf("konfigurasi email tidak lengkap. Pastikan EMAIL_FROM, EMAIL_PASSWORD, SMTP_HOST, dan SMTP_PORT sudah di-set") + } + + // Setup authentication + auth := smtp.PlainAuth("", from, password, smtpHost) + + // Format email message + msg := []byte(fmt.Sprintf("To: %s\r\n", to) + + fmt.Sprintf("Subject: %s\r\n", subject) + + "MIME-Version: 1.0\r\n" + + "Content-Type: text/html; charset=UTF-8\r\n" + + "\r\n" + + body + "\r\n") + + // Send email + addr := fmt.Sprintf("%s:%s", smtpHost, smtpPort) + err := smtp.SendMail(addr, auth, from, []string{to}, msg) + if err != nil { + return fmt.Errorf("gagal mengirim email: %w", err) + } + + return nil +} + +// SendEmailToMultiple - Ngirim email ke banyak orang sekaligus +func SendEmailToMultiple(to []string, subject, body string) error { + from := os.Getenv("EMAIL_FROM") + password := os.Getenv("EMAIL_PASSWORD") + smtpHost := os.Getenv("SMTP_HOST") + smtpPort := os.Getenv("SMTP_PORT") + + if from == "" { + from = "asikmahdi@gmail.com" + } + if password == "" { + password = "njom rhxb prrj tuoj" + } + if smtpHost == "" { + smtpHost = "smtp.gmail.com" + } + if smtpPort == "" { + smtpPort = "587" + } + + if from == "" || password == "" || smtpHost == "" || smtpPort == "" { + return fmt.Errorf("konfigurasi email tidak lengkap") + } + + if len(to) == 0 { + return fmt.Errorf("daftar penerima email tidak boleh kosong") + } + + // Setup authentication + auth := smtp.PlainAuth("", from, password, smtpHost) + + // Rapihin header To buat semua penerima + toHeader := strings.Join(to, ", ") + + // Format email message + msg := []byte(fmt.Sprintf("To: %s\r\n", toHeader) + + fmt.Sprintf("Subject: %s\r\n", subject) + + "MIME-Version: 1.0\r\n" + + "Content-Type: text/html; charset=UTF-8\r\n" + + "\r\n" + + body + "\r\n") + + // Kirim email ke semua orang sekaligus + addr := fmt.Sprintf("%s:%s", smtpHost, smtpPort) + err := smtp.SendMail(addr, auth, from, to, msg) + if err != nil { + return fmt.Errorf("gagal mengirim email: %w", err) + } + + return nil +} + +// SendEmailTest - Cuma buat test kirim email ke teman-teman +func SendEmailTest() error { + to := []string{"stylohype685@gmail.com", "pasaribumonica2@gmail.com", "yestondehaan607@gmail.com"} + subject := "Test Email - Sistem Billing Care IT" + body := ` + + + + + +
+
+

Test Email - Sistem Billing Care IT

+
+
+

Halo!

+

Ini adalah email test dari sistem billing Care IT.

+

Jika Anda menerima email ini, berarti sistem email berfungsi dengan baik.

+

Terima kasih!

+
+ +
+ + + ` + + if err := SendEmailToMultiple(to, subject, body); err != nil { + return fmt.Errorf("gagal mengirim email test: %w", err) + } + + return nil +} + +// SendEmailBillingSignToDokter mengirim email ke semua dokter yang menangani pasien tentang billing sign +func SendEmailBillingSignToDokter(idBilling int) error { + // 1. Ambil billing berdasarkan ID_Billing + var billing models.BillingPasien + if err := database.DB.First(&billing, idBilling).Error; err != nil { + if errors.Is(err, gorm.ErrRecordNotFound) { + return fmt.Errorf("billing dengan ID_Billing=%d tidak ditemukan", idBilling) + } + return fmt.Errorf("gagal mengambil billing: %w", err) + } + + // 2. Ambil semua dokter dari billing_dokter + var dokterList []models.Dokter + if err := database.DB. + Table("\"billing_dokter\" bd"). + Select("d.*"). + Joins("JOIN \"dokter\" d ON bd.\"ID_Dokter\" = d.\"ID_Dokter\""). + Where("bd.\"ID_Billing\" = ?", idBilling). + Find(&dokterList).Error; err != nil { + return fmt.Errorf("gagal mengambil dokter: %w", err) + } + + if len(dokterList) == 0 { + return fmt.Errorf("tidak ada dokter yang terkait dengan billing ID_Billing=%d", idBilling) + } + + // 3. Ambil data pasien untuk informasi lengkap + var pasien models.Pasien + if err := database.DB.Where("\"ID_Pasien\" = ?", billing.ID_Pasien).First(&pasien).Error; err != nil { + return fmt.Errorf("gagal mengambil data pasien: %w", err) + } + + // 4. Format billing sign untuk ditampilkan + billingSignDisplay := strings.ToUpper(billing.Billing_sign) + if billingSignDisplay == "" { + billingSignDisplay = "Belum ditentukan" + } + + // Untuk pengiriman ke dokter: kirim personalisasi per dokter (salam pakai nama dokter) + // Kumpulkan alamat per dokter dan jalankan pengiriman secara async (goroutine) + anyEmail := false + subject := fmt.Sprintf("Notifikasi Billing Sign - Pasien: %s", pasien.Nama_Pasien) + + for _, dokter := range dokterList { + // kumpulkan alamat untuk dokter ini + addrs := make([]string, 0, 2) + if e := strings.TrimSpace(dokter.Email_UB); e != "" { + addrs = append(addrs, e) + } + if e := strings.TrimSpace(dokter.Email_Pribadi); e != "" { + // hindari duplikat antara UB dan pribadi + if len(addrs) == 0 || addrs[0] != e { + addrs = append(addrs, e) + } + } + + if len(addrs) == 0 { + continue + } + anyEmail = true + + // buat body yang dipersonalisasi untuk dokter ini + doctorName := dokter.Nama_Dokter + if doctorName == "" { + doctorName = "Dokter" + } + + bodyForDokter := fmt.Sprintf(` + + + + + +
+
+

Notifikasi Billing Sign

+
+
+

Yth. Dr. %s,

+

Berikut adalah informasi billing sign untuk pasien yang Anda tangani:

+
Nama Pasien: %s
+
ID Billing: %d
+
Ruangan: %s
+
Kelas: %s
+
Cara Bayar: %s
+
Total Tarif RS: Rp %.2f
+
Total Klaim BPJS: Rp %.2f
+
Billing Sign: %s
+

Terima kasih atas perhatiannya.

+
+ +
+ + + `, doctorName, pasien.Nama_Pasien, billing.ID_Billing, pasien.Ruangan, pasien.Kelas, + billing.Cara_Bayar, billing.Total_Tarif_RS, billing.Total_Klaim, + strings.ToLower(billing.Billing_sign), billingSignDisplay) + + // kirim async ke alamat dokter ini + go func(addrs []string, subj, body string, id int) { + if err := SendEmailToMultiple(addrs, subj, body); err != nil { + fmt.Printf("Warning: Gagal mengirim email ke %v untuk billing %d: %v\n", addrs, id, err) + } else { + fmt.Printf("Info: Email notifikasi terkirim ke %v untuk billing %d\n", addrs, id) + } + }(addrs, subject, bodyForDokter, billing.ID_Billing) + } + + if !anyEmail { + return fmt.Errorf("tidak ada dokter dengan email yang terdaftar untuk billing ID_Billing=%d", idBilling) + } + + // Return immediately; actual sending berjalan di goroutine + return nil +} diff --git a/backendcareit_v4/services/billing_aktif.go b/backendcareit_v4/services/billing_aktif.go new file mode 100644 index 0000000..13fe5ef --- /dev/null +++ b/backendcareit_v4/services/billing_aktif.go @@ -0,0 +1,169 @@ +package services + +import ( + "backendcareit/models" + + "gorm.io/gorm" +) + +func GetAllBillingaktif(db *gorm.DB) ([]models.Request_Admin_Inacbg, error) { + var billings []models.BillingPasien + + // Ambil semua billing yang masih aktif (belum ditutup, Tanggal_Keluar masih kosong) + if err := db.Where("\"Tanggal_Keluar\" IS NULL").Find(&billings).Error; err != nil { + return nil, err + } + + // Kumpulin dulu semua ID_Billing dan ID_Pasien buat di-query + var billingIDs []int + var pasienIDs []int + + for _, b := range billings { + billingIDs = append(billingIDs, b.ID_Billing) + pasienIDs = append(pasienIDs, b.ID_Pasien) + } + + // Ambil pasien yang ada di billing aja + pasienMap := make(map[int]models.Pasien) + var pasienList []models.Pasien + + if err := db.Where("\"ID_Pasien\" IN ?", pasienIDs).Find(&pasienList).Error; err != nil { + return nil, err + } + + for _, p := range pasienList { + pasienMap[p.ID_Pasien] = p + } + + // Ambil tindakan yang berkaitan sama billing-billing ini + tindakanMap := make(map[int][]string) + var tindakanRows []struct { + ID_Billing int + Kode string + } + + if err := db.Table("\"billing_tindakan\""). + Where("\"ID_Billing\" IN ?", billingIDs). + Select("\"ID_Billing\", \"ID_Tarif_RS\" as \"Kode\""). + Scan(&tindakanRows).Error; err != nil { + return nil, err + } + + for _, t := range tindakanRows { + tindakanMap[t.ID_Billing] = append(tindakanMap[t.ID_Billing], t.Kode) + } + + // Ambil ICD9 + icd9Map := make(map[int][]string) + var icd9Rows []struct { + ID_Billing int + Kode string + } + + if err := db.Table("\"billing_icd9\""). + Where("\"ID_Billing\" IN ?", billingIDs). + Select("\"ID_Billing\", \"ID_ICD9\" as \"Kode\""). + Scan(&icd9Rows).Error; err != nil { + return nil, err + } + + for _, row := range icd9Rows { + icd9Map[row.ID_Billing] = append(icd9Map[row.ID_Billing], row.Kode) + } + + // Ambil ICD10 + icd10Map := make(map[int][]string) + var icd10Rows []struct { + ID_Billing int + Kode string + } + + if err := db.Table("\"billing_icd10\""). + Where("\"ID_Billing\" IN ?", billingIDs). + Select("\"ID_Billing\", \"ID_ICD10\" as \"Kode\""). + Scan(&icd10Rows).Error; err != nil { + return nil, err + } + + for _, row := range icd10Rows { + icd10Map[row.ID_Billing] = append(icd10Map[row.ID_Billing], row.Kode) + } + + // Ambil INACBG RI + inacbgRIMap := make(map[int][]string) + var inacbgRIRows []struct { + ID_Billing int + Kode string + } + if err := db.Table("\"billing_inacbg_ri\""). + Where("\"ID_Billing\" IN ?", billingIDs). + Select("\"ID_Billing\", \"ID_INACBG_RI\" as \"Kode\""). + Scan(&inacbgRIRows).Error; err != nil { + return nil, err + } + for _, row := range inacbgRIRows { + inacbgRIMap[row.ID_Billing] = append(inacbgRIMap[row.ID_Billing], row.Kode) + } + + // Ambil INACBG RJ + inacbgRJMap := make(map[int][]string) + var inacbgRJRows []struct { + ID_Billing int + Kode string + } + if err := db.Table("\"billing_inacbg_rj\""). + Where("\"ID_Billing\" IN ?", billingIDs). + Select("\"ID_Billing\", \"ID_INACBG_RJ\" as \"Kode\""). + Scan(&inacbgRJRows).Error; err != nil { + return nil, err + } + for _, row := range inacbgRJRows { + inacbgRJMap[row.ID_Billing] = append(inacbgRJMap[row.ID_Billing], row.Kode) + } + + // Ambil dokter dari billing_dokter dengan urutan tanggal + dokterMap := make(map[int][]string) + var dokterRows []struct { + ID_Billing int + Nama string + } + if err := db.Table("\"billing_dokter\""). + Select("\"ID_Billing\", \"Nama_Dokter\" as \"Nama\""). + Joins("JOIN \"dokter\" ON \"billing_dokter\".\"ID_Dokter\" = \"dokter\".\"ID_Dokter\""). + Where("\"ID_Billing\" IN ?", billingIDs). + Order("tanggal ASC"). + Scan(&dokterRows).Error; err != nil { + return nil, err + } + for _, row := range dokterRows { + dokterMap[row.ID_Billing] = append(dokterMap[row.ID_Billing], row.Nama) + } + + // Rapihin semua data jadi response yang keren + var result []models.Request_Admin_Inacbg + + for _, b := range billings { + pasien := pasienMap[b.ID_Pasien] + + item := models.Request_Admin_Inacbg{ + ID_Billing: b.ID_Billing, + Nama_pasien: pasien.Nama_Pasien, + ID_Pasien: b.ID_Pasien, + Kelas: pasien.Kelas, + Ruangan: pasien.Ruangan, + Total_Tarif_RS: b.Total_Tarif_RS, + Total_Klaim: b.Total_Klaim, + Tindakan_RS: tindakanMap[b.ID_Billing], + ICD9: icd9Map[b.ID_Billing], + ICD10: icd10Map[b.ID_Billing], + INACBG_RI: inacbgRIMap[b.ID_Billing], + INACBG_RJ: inacbgRJMap[b.ID_Billing], + Billing_sign: b.Billing_sign, + Nama_Dokter: dokterMap[b.ID_Billing], + } + + result = append(result, item) + } + + return result, nil +} diff --git a/backendcareit_v4/services/billing_pasien.go b/backendcareit_v4/services/billing_pasien.go new file mode 100644 index 0000000..f30e18a --- /dev/null +++ b/backendcareit_v4/services/billing_pasien.go @@ -0,0 +1,673 @@ +package services + +import ( + "errors" + "fmt" + "log" + "strings" + "time" + + "backendcareit/database" + "backendcareit/models" + + "gorm.io/gorm" +) + +// Ambil ID_tarif_RS dari nama Tindakan_RS +func GetTarifRSByTindakan(tindakans []string) ([]models.TarifRS, error) { + var tarifList []models.TarifRS + + if err := database.DB. + Where("\"Tindakan_RS\" IN ?", tindakans). + Find(&tarifList).Error; err != nil { + return nil, err + } + + return tarifList, nil +} + +// GetPasienByID - Cari pasien berdasarkan ID nya +func GetPasienByID(id int) (*models.Pasien, error) { + var pasien models.Pasien + + if err := database.DB.Where("\"ID_Pasien\" = ?", id).First(&pasien).Error; err != nil { + return nil, err + } + + return &pasien, nil +} + +// GetPasienByNama - Cari pasien berdasarkan nama mereka +func GetPasienByNama(nama string) (*models.Pasien, error) { + var pasien models.Pasien + + if err := database.DB.Where("\"Nama_Pasien\" = ?", nama).First(&pasien).Error; err != nil { + return nil, err + } + + return &pasien, nil +} + +// SearchPasienByNama - Pencarian pasien pake nama (bisa partial) +func SearchPasienByNama(nama string) ([]models.Pasien, error) { + var pasien []models.Pasien + + err := database.DB. + Where("\"Nama_Pasien\" LIKE ?", "%"+nama+"%"). + Find(&pasien).Error + + if err != nil { + return nil, err + } + + return pasien, nil +} + +// GetBillingDetailAktifByNama - Ambil data billing lengkap (billing, tindakan, ICD, dokter, INACBG, DPJP) buat satu pasien dari nama +// Return: billing, tindakan, icd9, icd10, dokter, inacbgRI, inacbgRJ, dpjp, error +func GetBillingDetailAktifByNama(namaPasien string) (*models.BillingPasien, []string, []string, []string, []string, []string, []string, int, error) { + // Cari pasien dulu + var pasien models.Pasien + if err := database.DB.Where("\"Nama_Pasien\" = ?", namaPasien).First(&pasien).Error; err != nil { + return nil, nil, nil, nil, nil, nil, nil, 0, err + } + + // Cari billing aktif terakhir pasien ini (yang belum ditutup, Tanggal_Keluar IS NULL) + var billing models.BillingPasien + if err := database.DB. + Where("\"ID_Pasien\" = ? AND \"Tanggal_Keluar\" IS NULL", pasien.ID_Pasien). + Order("\"ID_Billing\" DESC"). + First(&billing).Error; err != nil { + return nil, nil, nil, nil, nil, nil, nil, 0, err + } + + // Ambil semua tindakan (join billing_tindakan -> tarif_rs) + var tindakanJoin []struct { + Nama string `gorm:"column:Tindakan_RS"` + } + if err := database.DB. + Table("\"billing_tindakan\" bt"). + Select("tr.\"Tindakan_RS\""). + Joins("JOIN \"tarif_rs\" tr ON bt.\"ID_Tarif_RS\" = tr.\"ID_Tarif_RS\""). + Where("bt.\"ID_Billing\" = ?", billing.ID_Billing). + Scan(&tindakanJoin).Error; err != nil { + return nil, nil, nil, nil, nil, nil, nil, 0, err + } + tindakanNames := make([]string, 0, len(tindakanJoin)) + for _, t := range tindakanJoin { + tindakanNames = append(tindakanNames, t.Nama) + } + + // Ambil semua ICD9 + var icd9Join []struct { + Prosedur string `gorm:"column:Prosedur"` + } + if err := database.DB. + Table("\"billing_icd9\" bi"). + Select("i.\"Prosedur\""). + Joins("JOIN \"icd9\" i ON bi.\"ID_ICD9\" = i.\"ID_ICD9\""). + Where("bi.\"ID_Billing\" = ?", billing.ID_Billing). + Scan(&icd9Join).Error; err != nil { + return nil, nil, nil, nil, nil, nil, nil, 0, err + } + icd9Names := make([]string, 0, len(icd9Join)) + for _, i := range icd9Join { + icd9Names = append(icd9Names, i.Prosedur) + } + + // Ambil semua ICD10 + var icd10Join []struct { + Diagnosa string `gorm:"column:Diagnosa"` + } + if err := database.DB. + Table("\"billing_icd10\" bi"). + Select("i.\"Diagnosa\""). + Joins("JOIN \"icd10\" i ON bi.\"ID_ICD10\" = i.\"ID_ICD10\""). + Where("bi.\"ID_Billing\" = ?", billing.ID_Billing). + Scan(&icd10Join).Error; err != nil { + return nil, nil, nil, nil, nil, nil, nil, 0, err + } + icd10Names := make([]string, 0, len(icd10Join)) + for _, i := range icd10Join { + icd10Names = append(icd10Names, i.Diagnosa) + } + + // Ambil semua dokter dari billing_dokter dengan tanggal + var dokterJoin []struct { + Nama string `gorm:"column:Nama_Dokter"` + Tanggal *time.Time `gorm:"column:Tanggal"` + } + if err := database.DB. + Table("\"billing_dokter\""). + Select("\"Nama_Dokter\", \"tanggal\""). + Joins("JOIN \"dokter\" ON \"billing_dokter\".\"ID_Dokter\" = \"dokter\".\"ID_Dokter\""). + Where("\"billing_dokter\".\"ID_Billing\" = ?", billing.ID_Billing). + Order("tanggal ASC"). + Scan(&dokterJoin).Error; err != nil { + return nil, nil, nil, nil, nil, nil, nil, 0, err + } + dokterNames := make([]string, 0, len(dokterJoin)) + for _, d := range dokterJoin { + dokterNames = append(dokterNames, d.Nama) + } + + // Ambil semua INACBG RI + var inacbgRIJoin []struct { + Kode string `gorm:"column:ID_INACBG_RI"` + } + if err := database.DB. + Table("\"billing_inacbg_ri\""). + Select("\"ID_INACBG_RI\""). + Where("\"ID_Billing\" = ?", billing.ID_Billing). + Scan(&inacbgRIJoin).Error; err != nil { + return nil, nil, nil, nil, nil, nil, nil, 0, err + } + inacbgRINames := make([]string, 0, len(inacbgRIJoin)) + for _, row := range inacbgRIJoin { + inacbgRINames = append(inacbgRINames, row.Kode) + } + + // Ambil semua INACBG RJ + var inacbgRJJoin []struct { + Kode string `gorm:"column:ID_INACBG_RJ"` + } + if err := database.DB. + Table("\"billing_inacbg_rj\""). + Select("\"ID_INACBG_RJ\""). + Where("\"ID_Billing\" = ?", billing.ID_Billing). + Scan(&inacbgRJJoin).Error; err != nil { + return nil, nil, nil, nil, nil, nil, nil, 0, err + } + inacbgRJNames := make([]string, 0, len(inacbgRJJoin)) + for _, row := range inacbgRJJoin { + inacbgRJNames = append(inacbgRJNames, row.Kode) + } + + // Ambil DPJP (Doctor In Charge) dari billing_dpjp + var dpjpRow struct { + ID_DPJP int `gorm:"column:ID_DPJP"` + } + var idDPJP int + if err := database.DB. + Table("\"billing_dpjp\""). + Select("\"ID_DPJP\""). + Where("\"ID_Billing\" = ?", billing.ID_Billing). + First(&dpjpRow).Error; err != nil { + if !errors.Is(err, gorm.ErrRecordNotFound) { + return nil, nil, nil, nil, nil, nil, nil, 0, err + } + // Jika tidak ada DPJP, idDPJP = 0 (normal, boleh tidak ada) + idDPJP = 0 + } else { + idDPJP = dpjpRow.ID_DPJP + } + + return &billing, tindakanNames, icd9Names, icd10Names, dokterNames, inacbgRINames, inacbgRJNames, idDPJP, nil +} + +// GetDokterByNama - Cari dokter berdasarkan nama mereka +func GetDokterByNama(nama string) (*models.Dokter, error) { + var dokter models.Dokter + + if err := database.DB.Where("\"Nama_Dokter\" = ?", nama).First(&dokter).Error; err != nil { + return nil, err + } + + return &dokter, nil +} + +func DataFromFE(input models.BillingRequest) ( + *models.BillingPasien, + *models.Pasien, + []models.Billing_Tindakan, + []models.Billing_ICD9, + []models.Billing_ICD10, + error, +) { + + tx := database.DB.Begin() + if tx.Error != nil { + return nil, nil, nil, nil, nil, tx.Error + } + + defer func() { + if r := recover(); r != nil { + tx.Rollback() + } + }() + + // =========================== + // 1. CARI ATAU BUAT PASIEN + // =========================== + var pasien models.Pasien + result := tx.Where("\"Nama_Pasien\" = ?", input.Nama_Pasien).First(&pasien) + + // Jika pasien sudah ada, update data jika ada perubahan (usia, ruangan, kelas, jenis_kelamin) + if result.Error == nil { + updated := false + if pasien.Usia != input.Usia { + pasien.Usia = input.Usia + updated = true + } + if pasien.Ruangan != input.Ruangan { + pasien.Ruangan = input.Ruangan + updated = true + } + if pasien.Kelas != input.Kelas { + pasien.Kelas = input.Kelas + updated = true + } + if pasien.Jenis_Kelamin != input.Jenis_Kelamin { + pasien.Jenis_Kelamin = input.Jenis_Kelamin + updated = true + } + if updated { + if err := tx.Save(&pasien).Error; err != nil { + tx.Rollback() + return nil, nil, nil, nil, nil, + fmt.Errorf("gagal update data pasien: %s", err.Error()) + } + } + } + + if result.Error != nil { + if errors.Is(result.Error, gorm.ErrRecordNotFound) { + + pasien = models.Pasien{ + Nama_Pasien: input.Nama_Pasien, + Jenis_Kelamin: input.Jenis_Kelamin, + Usia: input.Usia, + Ruangan: input.Ruangan, + Kelas: input.Kelas, + } + + if err := tx.Create(&pasien).Error; err != nil { + tx.Rollback() + return nil, nil, nil, nil, nil, + fmt.Errorf("gagal membuat pasien baru: %s", err.Error()) + } + } else { + tx.Rollback() + return nil, nil, nil, nil, nil, + fmt.Errorf("gagal mencari pasien: %s", result.Error.Error()) + } + } + + if pasien.ID_Pasien == 0 { + tx.Rollback() + return nil, nil, nil, nil, nil, fmt.Errorf("ID_Pasien tidak valid") + } + + // =========================== + // 2. CARI SEMUA DOKTER + // =========================== + var dokterList []models.Dokter + for _, namaDokter := range input.Nama_Dokter { + var dokter models.Dokter + if err := tx.Where("\"Nama_Dokter\" = ?", namaDokter).First(&dokter).Error; err != nil { + tx.Rollback() + return nil, nil, nil, nil, nil, + fmt.Errorf("dokter '%s' tidak ditemukan", namaDokter) + } + dokterList = append(dokterList, dokter) + } + + now := time.Now() + + // Parse Tanggal_Keluar (frontend sends string). Accept multiple formats. + var keluarPtr *time.Time + if input.Tanggal_Keluar != "" && input.Tanggal_Keluar != "null" { + s := input.Tanggal_Keluar + // Try several common layouts + var parsed time.Time + var err error + layouts := []string{time.RFC3339, "2006-01-02 15:04:05", "2006-01-02"} + for _, layout := range layouts { + parsed, err = time.Parse(layout, s) + if err == nil { + t := parsed + keluarPtr = &t + break + } + } + if keluarPtr == nil { + // If parsing failed, return error + tx.Rollback() + return nil, nil, nil, nil, nil, fmt.Errorf("invalid tanggal_keluar format: %s", input.Tanggal_Keluar) + } + } + + // =========================== + // 3. CARI / BUAT BILLING + // =========================== + // Catatan: + // - Kita anggap "billing aktif" = billing yang belum ditutup (Tanggal_Keluar IS NULL) untuk pasien ini. + // - Jika ada billing aktif, update; jika tidak, buat billing baru. + var billing models.BillingPasien + billingResult := tx. + Where("\"ID_Pasien\" = ? AND \"Tanggal_Keluar\" IS NULL", pasien.ID_Pasien). + Order("\"ID_Billing\" DESC"). + First(&billing) + + if billingResult.Error != nil { + if errors.Is(billingResult.Error, gorm.ErrRecordNotFound) { + // Belum ada billing aktif โ†’ buat billing baru + billing = models.BillingPasien{ + ID_Pasien: pasien.ID_Pasien, + Cara_Bayar: input.Cara_Bayar, + Tanggal_masuk: &now, + Tanggal_keluar: keluarPtr, + Total_Tarif_RS: input.Total_Tarif_RS, + Total_Klaim: input.Total_Klaim_BPJS, // โ† Changed: Use input value instead of hardcoded 0 + } + + // jika frontend mengirim billing_sign, gunakan itu, kalau tidak gunakan default "" + if input.Billing_sign != "" { + billing.Billing_sign = input.Billing_sign + } else { + billing.Billing_sign = "" + } + + if err := tx.Create(&billing).Error; err != nil { + tx.Rollback() + return nil, nil, nil, nil, nil, + fmt.Errorf("gagal membuat billing: %s", err.Error()) + } + } else { + // Error lain saat cari billing + tx.Rollback() + return nil, nil, nil, nil, nil, + fmt.Errorf("gagal mencari billing pasien: %s", billingResult.Error.Error()) + } + } else { + // Sudah ada billing aktif โ†’ update data billing lama, tambahkan tindakan / ICD baru + billing.Cara_Bayar = input.Cara_Bayar + if keluarPtr != nil { + billing.Tanggal_keluar = keluarPtr + } + // Tambahkan total tarif dari request baru + billing.Total_Tarif_RS += input.Total_Tarif_RS + // Update Total_Tarif_BPJS if: + // 1. Not yet set (== 0), OR + // 2. Input value is higher (more accurate baseline from FE) + // This ensures we always have the correct baseline, not accumulated value from INACBG + if input.Total_Klaim_BPJS > 0 && (billing.Total_Klaim == 0 || input.Total_Klaim_BPJS > billing.Total_Klaim) { + billing.Total_Klaim = input.Total_Klaim_BPJS + log.Printf("[Billing] Updated Total_Tarif_BPJS to %.2f\n", input.Total_Klaim_BPJS) + } + + // Log input billing_sign untuk debug + log.Printf("[Billing Update] Received input.Billing_sign: '%s' (empty=%v)\n", input.Billing_sign, input.Billing_sign == "") + + // Jika frontend mengirim Billing_sign, gunakan; jika tidak, hitung di backend + if input.Billing_sign != "" { + billing.Billing_sign = input.Billing_sign + log.Printf("[Billing Update] Updated Billing_sign to: %s\n", input.Billing_sign) + } + + if err := tx.Save(&billing).Error; err != nil { + tx.Rollback() + return nil, nil, nil, nil, nil, + fmt.Errorf("gagal update billing pasien: %s", err.Error()) + } + + // Jika frontend mengirim Billing_sign pada update, kirim notifikasi email ke dokter secara async + + } + + // =========================== + // 4. SIMPAN DOKTER KE BILLING_DOKTER DENGAN TANGGAL + // =========================== + // Tidak menghapus dokter lama, hanya menambahkan dokter baru dengan tanggal hari ini + // Ini memungkinkan tracking dokter yang berbeda setiap hari + tanggalHariIni := time.Now() + + // Insert semua dokter baru ke billing_dokter dengan tanggal hari ini + // Cek dulu apakah dokter dengan tanggal yang sama sudah ada (untuk menghindari duplikasi) + var billingDokterList []models.Billing_Dokter + for _, dokter := range dokterList { + // Cek apakah dokter ini sudah ada di billing dengan tanggal yang sama + var existing models.Billing_Dokter + result := tx.Where("\"ID_Billing\" = ? AND \"ID_Dokter\" = ? AND DATE(tanggal) = DATE(?)", + billing.ID_Billing, dokter.ID_Dokter, tanggalHariIni).First(&existing) + + // Jika belum ada, tambahkan + if result.Error != nil && errors.Is(result.Error, gorm.ErrRecordNotFound) { + billingDokter := models.Billing_Dokter{ + ID_Billing: billing.ID_Billing, + ID_Dokter: dokter.ID_Dokter, + Tanggal: &tanggalHariIni, + } + billingDokterList = append(billingDokterList, billingDokter) + } + // Jika sudah ada, skip (tidak perlu insert lagi) + } + + if len(billingDokterList) > 0 { + if err := tx.Create(&billingDokterList).Error; err != nil { + tx.Rollback() + return nil, nil, nil, nil, nil, + fmt.Errorf("gagal insert billing dokter: %s", err.Error()) + } + } + + // =========================== + // 4.5 SIMPAN DPJP KE BILLING_DPJP + // =========================== + // Insert DPJP (Doctor In Charge) ke tabel billing_dpjp jika ID_DPJP disediakan + if input.ID_DPJP > 0 { + billingDPJP := models.Billing_DPJP{ + ID_Billing: billing.ID_Billing, + ID_DPJP: input.ID_DPJP, + } + + if err := tx.Create(&billingDPJP).Error; err != nil { + tx.Rollback() + return nil, nil, nil, nil, nil, + fmt.Errorf("gagal insert billing DPJP: %s", err.Error()) + } + + log.Printf("[Billing DPJP] Inserted billing %d with DPJP %d\n", billing.ID_Billing, input.ID_DPJP) + } + + var billingTindakanList []models.Billing_Tindakan + var billingICD9List []models.Billing_ICD9 + var billingICD10List []models.Billing_ICD10 + + for _, tindakan := range input.Tindakan_RS { + var tarif models.TarifRS + + if err := tx.Where("\"Tindakan_RS\" = ?", tindakan).First(&tarif).Error; err != nil { + tx.Rollback() + return nil, nil, nil, nil, nil, + fmt.Errorf("tindakan '%s' tidak ditemukan", tindakan) + } + + billTindakan := models.Billing_Tindakan{ + ID_Billing: billing.ID_Billing, + ID_Tarif_RS: tarif.KodeRS, + Tanggal_Tindakan: &tanggalHariIni, + } + + if err := tx.Create(&billTindakan).Error; err != nil { + tx.Rollback() + return nil, nil, nil, nil, nil, + fmt.Errorf("gagal insert billing tindakan: %s", err.Error()) + } + + billingTindakanList = append(billingTindakanList, billTindakan) + } + + for _, icd := range input.ICD9 { + var icd9 models.ICD9 + + if err := tx.Where("\"Prosedur\" = ?", icd).First(&icd9).Error; err != nil { + tx.Rollback() + return nil, nil, nil, nil, nil, + fmt.Errorf("ICD9 '%s' tidak ditemukan", icd) + } + + billICD9 := models.Billing_ICD9{ + ID_Billing: billing.ID_Billing, + ID_ICD9: icd9.Kode_ICD9, + } + + if err := tx.Create(&billICD9).Error; err != nil { + tx.Rollback() + return nil, nil, nil, nil, nil, + fmt.Errorf("gagal insert billing ICD9: %s", err.Error()) + } + + billingICD9List = append(billingICD9List, billICD9) + } + + for _, icd := range input.ICD10 { + var icd10 models.ICD10 + + if err := tx.Where("\"Diagnosa\" = ?", icd).First(&icd10).Error; err != nil { + tx.Rollback() + return nil, nil, nil, nil, nil, + fmt.Errorf("ICD10 '%s' tidak ditemukan", icd) + } + + billICD10 := models.Billing_ICD10{ + ID_Billing: billing.ID_Billing, + ID_ICD10: icd10.Kode_ICD10, + } + + if err := tx.Create(&billICD10).Error; err != nil { + tx.Rollback() + return nil, nil, nil, nil, nil, + fmt.Errorf("gagal insert billing ICD10: %s", err.Error()) + } + + billingICD10List = append(billingICD10List, billICD10) + } + + if err := tx.Commit().Error; err != nil { + return nil, nil, nil, nil, nil, err + } + if input.Billing_sign != "" && strings.TrimSpace(input.Billing_sign) != "" { + go func(id int) { + if err := SendEmailBillingSignToDokter(id); err != nil { + fmt.Printf("Warning: Gagal mengirim email ke dokter untuk billing ID %d: %v\n", id, err) + } + }(billing.ID_Billing) + } + + return &billing, &pasien, billingTindakanList, billingICD9List, billingICD10List, nil +} + +// GetLastBillingByNama - Ambil billing terakhir pasien (buat dapetin baseline total_klaim pas billing baru dibuat) +func GetLastBillingByNama(namaPasien string) (*models.BillingPasien, error) { + // Cari pasien dulu + var pasien models.Pasien + if err := database.DB.Where("\"Nama_Pasien\" = ?", namaPasien).First(&pasien).Error; err != nil { + return nil, err + } + + // Cari billing terakhir pasien ini (paling baru berdasarkan ID_Billing) + var billing models.BillingPasien + if err := database.DB. + Where("\"ID_Pasien\" = ?", pasien.ID_Pasien). + Order("\"ID_Billing\" DESC"). + First(&billing).Error; err != nil { + return nil, err + } + + return &billing, nil +} + +// UpdateBillingIdentitas - update data identitas pasien dalam billing +func UpdateBillingIdentitas(billingId int, namaPasien string, usia int, jeniKelamin string, ruangan string, kelas string, tindakan []string, icd9 []string, icd10 []string) error { + // Get billing + var billing models.BillingPasien + if err := database.DB.Where("\"ID_Billing\" = ?", billingId).First(&billing).Error; err != nil { + return errors.New("billing tidak ditemukan") + } + + // Start transaction + tx := database.DB.Begin() + + // Update pasien data + pasien := models.Pasien{} + if err := tx.Model(&pasien). + Where("\"ID_Pasien\" = ?", billing.ID_Pasien). + Updates(map[string]interface{}{ + "\"Nama_Pasien\"": namaPasien, + "\"Usia\"": usia, + "\"Jenis_Kelamin\"": jeniKelamin, + "\"Ruangan\"": ruangan, + "\"Kelas\"": kelas, + }).Error; err != nil { + tx.Rollback() + return errors.New("gagal update data pasien: " + err.Error()) + } + + // Delete existing tindakan + if err := tx.Where("\"ID_Billing\" = ?", billingId).Delete(&models.Billing_Tindakan{}).Error; err != nil { + tx.Rollback() + return errors.New("gagal delete tindakan: " + err.Error()) + } + + // Insert new tindakan + for _, t := range tindakan { + if t != "" { + newTindakan := models.Billing_Tindakan{ + ID_Billing: billingId, + ID_Tarif_RS: t, + } + if err := tx.Create(&newTindakan).Error; err != nil { + tx.Rollback() + return errors.New("gagal insert tindakan: " + err.Error()) + } + } + } + + // Delete existing ICD9 + if err := tx.Where("\"ID_Billing\" = ?", billingId).Delete(&models.Billing_ICD9{}).Error; err != nil { + tx.Rollback() + return errors.New("gagal delete ICD9: " + err.Error()) + } + + // Insert new ICD9 + for _, i := range icd9 { + if i != "" { + newICD9 := models.Billing_ICD9{ + ID_Billing: billingId, + ID_ICD9: i, + } + if err := tx.Create(&newICD9).Error; err != nil { + tx.Rollback() + return errors.New("gagal insert ICD9: " + err.Error()) + } + } + } + + // Delete existing ICD10 + if err := tx.Where("\"ID_Billing\" = ?", billingId).Delete(&models.Billing_ICD10{}).Error; err != nil { + tx.Rollback() + return errors.New("gagal delete ICD10: " + err.Error()) + } + + // Insert new ICD10 + for _, i := range icd10 { + if i != "" { + newICD10 := models.Billing_ICD10{ + ID_Billing: billingId, + ID_ICD10: i, + } + if err := tx.Create(&newICD10).Error; err != nil { + tx.Rollback() + return errors.New("gagal insert ICD10: " + err.Error()) + } + } + } + + // Commit transaction + if err := tx.Commit().Error; err != nil { + return errors.New("gagal commit transaction: " + err.Error()) + } + + return nil +} diff --git a/backendcareit_v4/services/close_billing.go b/backendcareit_v4/services/close_billing.go new file mode 100644 index 0000000..d7257d3 --- /dev/null +++ b/backendcareit_v4/services/close_billing.go @@ -0,0 +1,52 @@ +package services + +import ( + "errors" + "fmt" + "time" + + "backendcareit/database" + "backendcareit/models" +) + +// CloseBilling - Nutup billing dengan set Tanggal_Keluar (selesai dah pasiennya) +func CloseBilling(closeReq models.Close_billing) error { + // Cari billing berdasarkan ID_Billing + var billing models.BillingPasien + if err := database.DB.Where("\"ID_Billing\" = ?", closeReq.ID_Billing).First(&billing).Error; err != nil { + return fmt.Errorf("billing dengan ID %d tidak ditemukan: %w", closeReq.ID_Billing, err) + } + + // Parse Tanggal_Keluar dari string ke time.Time + // Menggunakan multiple layouts seperti di billing_pasien.go + var keluarTime *time.Time + if closeReq.Tanggal_Keluar != "" { + s := closeReq.Tanggal_Keluar + var parsed time.Time + var err error + layouts := []string{time.RFC3339, "2006-01-02 15:04:05", "2006-01-02"} + for _, layout := range layouts { + parsed, err = time.Parse(layout, s) + if err == nil { + t := parsed + keluarTime = &t + break + } + } + if keluarTime == nil { + return fmt.Errorf("format tanggal_keluar tidak valid: %s", closeReq.Tanggal_Keluar) + } + } else { + return errors.New("tanggal_keluar tidak boleh kosong") + } + + // Update Tanggal_keluar pada billing + billing.Tanggal_keluar = keluarTime + + // Simpan perubahan + if err := database.DB.Save(&billing).Error; err != nil { + return fmt.Errorf("gagal update billing: %w", err) + } + + return nil +} diff --git a/backendcareit_v4/services/riwayat_billing_pasien.go b/backendcareit_v4/services/riwayat_billing_pasien.go new file mode 100644 index 0000000..82f3b09 --- /dev/null +++ b/backendcareit_v4/services/riwayat_billing_pasien.go @@ -0,0 +1,403 @@ +package services + +import ( + "backendcareit/models" + "time" + + "gorm.io/gorm" +) + +func GetRiwayatPasienAll(db *gorm.DB) ([]models.Riwayat_Pasien_all, error) { + var billings []models.BillingPasien + + // Ngambil semua billing yang udah ditutup (Tanggal_Keluar udah ada) + if err := db.Where("\"Tanggal_Keluar\" IS NOT NULL").Find(&billings).Error; err != nil { + return nil, err + } + + // Kumpulkan semua ID_Billing dan ID_Pasien + var billingIDs []int + var pasienIDs []int + + for _, b := range billings { + billingIDs = append(billingIDs, b.ID_Billing) + pasienIDs = append(pasienIDs, b.ID_Pasien) + } + + // Ambil pasien yang ada di billing aja + pasienMap := make(map[int]models.Pasien) + var pasienList []models.Pasien + + if err := db.Where("\"ID_Pasien\" IN ?", pasienIDs).Find(&pasienList).Error; err != nil { + return nil, err + } + + for _, p := range pasienList { + pasienMap[p.ID_Pasien] = p + } + + // Ambil tindakan hanya untuk billing terkait + tindakanMap := make(map[int][]string) + var tindakanRows []struct { + ID_Billing int + Kode string + } + + if err := db.Table("\"billing_tindakan\""). + Where("\"ID_Billing\" IN ?", billingIDs). + Select("\"ID_Billing\", \"ID_Tarif_RS\" as \"Kode\""). + Scan(&tindakanRows).Error; err != nil { + return nil, err + } + + for _, t := range tindakanRows { + tindakanMap[t.ID_Billing] = append(tindakanMap[t.ID_Billing], t.Kode) + } + + // Ambil tanggal tindakan dari tabel billing_tindakan + tindakanDateMap := make(map[int]*time.Time) + var tindakanDateRows []struct { + ID_Billing int + Tanggal_Tindakan *time.Time + } + + if err := db.Table("\"billing_tindakan\""). + Where("\"ID_Billing\" IN ?", billingIDs). + Select("\"ID_Billing\", \"tanggal_tindakan\""). + Scan(&tindakanDateRows).Error; err != nil { + return nil, err + } + + for _, t := range tindakanDateRows { + if t.Tanggal_Tindakan != nil { + tindakanDateMap[t.ID_Billing] = t.Tanggal_Tindakan + } + } + + // Ambil ICD9 + icd9Map := make(map[int][]string) + var icd9Rows []struct { + ID_Billing int + Kode string + } + + if err := db.Table("\"billing_icd9\""). + Where("\"ID_Billing\" IN ?", billingIDs). + Select("\"ID_Billing\", \"ID_ICD9\" as \"Kode\""). + Scan(&icd9Rows).Error; err != nil { + return nil, err + } + + for _, row := range icd9Rows { + icd9Map[row.ID_Billing] = append(icd9Map[row.ID_Billing], row.Kode) + } + + // Ambil ICD10 + icd10Map := make(map[int][]string) + var icd10Rows []struct { + ID_Billing int + Kode string + } + + if err := db.Table("\"billing_icd10\""). + Where("\"ID_Billing\" IN ?", billingIDs). + Select("\"ID_Billing\", \"ID_ICD10\" as \"Kode\""). + Scan(&icd10Rows).Error; err != nil { + return nil, err + } + + for _, row := range icd10Rows { + icd10Map[row.ID_Billing] = append(icd10Map[row.ID_Billing], row.Kode) + } + + // Ambil INACBG - yang RI dikasih prioritas duluan + inacbgMap := make(map[int]string) + var inacbgRIRows []struct { + ID_Billing int + Kode string + } + if err := db.Table("\"billing_inacbg_ri\""). + Where("\"ID_Billing\" IN ?", billingIDs). + Select("\"ID_Billing\", \"ID_INACBG_RI\" as \"Kode\""). + Scan(&inacbgRIRows).Error; err != nil { + return nil, err + } + for _, row := range inacbgRIRows { + inacbgMap[row.ID_Billing] = row.Kode + } + + // Kalo gada RI, ambil dari RJ aja + var inacbgRJRows []struct { + ID_Billing int + Kode string + } + if err := db.Table("\"billing_inacbg_rj\""). + Where("\"ID_Billing\" IN ?", billingIDs). + Select("\"ID_Billing\", \"ID_INACBG_RJ\" as \"Kode\""). + Scan(&inacbgRJRows).Error; err != nil { + return nil, err + } + for _, row := range inacbgRJRows { + if _, exists := inacbgMap[row.ID_Billing]; !exists { + inacbgMap[row.ID_Billing] = row.Kode + } + } + + // Ambil DPJP (Doctor In Charge) dari billing_dpjp + dpjpMap := make(map[int]int) + var dpjpRows []struct { + ID_Billing int + ID_DPJP int + } + if err := db.Table("\"billing_dpjp\""). + Where("\"ID_Billing\" IN ?", billingIDs). + Select("\"ID_Billing\", \"ID_DPJP\""). + Scan(&dpjpRows).Error; err != nil { + return nil, err + } + for _, row := range dpjpRows { + dpjpMap[row.ID_Billing] = row.ID_DPJP + } + + // nama dokter susai dpjp ya gais + dpjpNameMap := make(map[int]string) + var dpjpNameRows []struct { + ID_Dokter int + Nama_Dokter string + } + if err := db.Table("\"dokter\""). + Select("\"ID_Dokter\", \"Nama_Dokter\""). + Scan(&dpjpNameRows).Error; err != nil { + return nil, err + } + for _, row := range dpjpNameRows { + dpjpNameMap[row.ID_Dokter] = row.Nama_Dokter + } + + // Ambil nama ruangan buat di-mapping dari ID jadi Nama + ruanganNameMap := make(map[string]string) + var ruanganRows []struct { + ID_Ruangan string + Nama_Ruangan string + } + if err := db.Table("\"ruangan\""). + Select("\"ID_Ruangan\", \"Nama_Ruangan\""). + Scan(&ruanganRows).Error; err != nil { + return nil, err + } + for _, row := range ruanganRows { + ruanganNameMap[row.ID_Ruangan] = row.Nama_Ruangan + } + + // Rapihin semua data jadi response yang bagus + var result []models.Riwayat_Pasien_all + + for _, b := range billings { + pasien := pasienMap[b.ID_Pasien] + + item := models.Riwayat_Pasien_all{ + ID_Billing: b.ID_Billing, + ID_Pasien: pasien.ID_Pasien, + Nama_Pasien: pasien.Nama_Pasien, + Jenis_Kelamin: pasien.Jenis_Kelamin, + Usia: pasien.Usia, + Ruangan: pasien.Ruangan, + Nama_Ruangan: ruanganNameMap[pasien.Ruangan], + Kelas: pasien.Kelas, + ID_DPJP: dpjpMap[b.ID_Billing], + Nama_DPJP: dpjpNameMap[dpjpMap[b.ID_Billing]], + Tanggal_Keluar: b.Tanggal_keluar.Format("2006-01-02"), + Tanggal_Masuk: b.Tanggal_masuk.Format("2006-01-02"), //b.Tanggal_masuk, + Tanggal_Tindakan: tindakanDateMap[b.ID_Billing], + Tindakan_RS: tindakanMap[b.ID_Billing], + ICD9: icd9Map[b.ID_Billing], + ICD10: icd10Map[b.ID_Billing], + Kode_INACBG: inacbgMap[b.ID_Billing], + Total_Tarif_RS: b.Total_Tarif_RS, + Total_Klaim: b.Total_Klaim, + } + + result = append(result, item) + } + + return result, nil +} + +func GetAllRiwayatpasien(db *gorm.DB) ([]models.Request_Admin_Inacbg, error) { + var billings []models.BillingPasien + + // Ngambil semua billing yang udah ditutup (Tanggal_Keluar ada isinya) + if err := db.Where("\"Tanggal_Keluar\" IS NOT NULL").Find(&billings).Error; err != nil { + return nil, err + } + + // Kumpulkan semua ID_Billing dan ID_Pasien + var billingIDs []int + var pasienIDs []int + + for _, b := range billings { + billingIDs = append(billingIDs, b.ID_Billing) + pasienIDs = append(pasienIDs, b.ID_Pasien) + } + + // Ambil pasien yang ada di billing aja + pasienMap := make(map[int]models.Pasien) + var pasienList []models.Pasien + + if err := db.Where("\"ID_Pasien\" IN ? ", pasienIDs).Find(&pasienList).Error; err != nil { + return nil, err + } + + for _, p := range pasienList { + pasienMap[p.ID_Pasien] = p + } + + // Ambil tindakan hanya untuk billing terkait + tindakanMap := make(map[int][]string) + var tindakanRows []struct { + ID_Billing int + Kode string + } + + if err := db.Table("\"billing_tindakan\""). + Where("\"ID_Billing\" IN ?", billingIDs). + Select("\"ID_Billing\", \"ID_Tarif_RS\" as \"Kode\""). + Scan(&tindakanRows).Error; err != nil { + return nil, err + } + + for _, t := range tindakanRows { + tindakanMap[t.ID_Billing] = append(tindakanMap[t.ID_Billing], t.Kode) + } + + // Ambil ICD9 + icd9Map := make(map[int][]string) + var icd9Rows []struct { + ID_Billing int + Kode string + } + + if err := db.Table("\"billing_icd9\""). + Where("\"ID_Billing\" IN ?", billingIDs). + Select("\"ID_Billing\", \"ID_ICD9\" as \"Kode\""). + Scan(&icd9Rows).Error; err != nil { + return nil, err + } + + for _, row := range icd9Rows { + icd9Map[row.ID_Billing] = append(icd9Map[row.ID_Billing], row.Kode) + } + + // Ambil ICD10 + icd10Map := make(map[int][]string) + var icd10Rows []struct { + ID_Billing int + Kode string + } + + if err := db.Table("\"billing_icd10\""). + Where("\"ID_Billing\" IN ?", billingIDs). + Select("\"ID_Billing\", \"ID_ICD10\" as \"Kode\""). + Scan(&icd10Rows).Error; err != nil { + return nil, err + } + + for _, row := range icd10Rows { + icd10Map[row.ID_Billing] = append(icd10Map[row.ID_Billing], row.Kode) + } + + // Ngambil INACBG RI + inacbgRIMap := make(map[int][]string) + var inacbgRIRows []struct { + ID_Billing int + Kode string + } + if err := db.Table("\"billing_inacbg_ri\""). + Where("\"ID_Billing\" IN ?", billingIDs). + Select("\"ID_Billing\", \"ID_INACBG_RI\" as \"Kode\""). + Scan(&inacbgRIRows).Error; err != nil { + return nil, err + } + for _, row := range inacbgRIRows { + inacbgRIMap[row.ID_Billing] = append(inacbgRIMap[row.ID_Billing], row.Kode) + } + + // Ngambil INACBG RJ + inacbgRJMap := make(map[int][]string) + var inacbgRJRows []struct { + ID_Billing int + Kode string + } + if err := db.Table("\"billing_inacbg_rj\""). + Where("\"ID_Billing\" IN ?", billingIDs). + Select("\"ID_Billing\", \"ID_INACBG_RJ\" as \"Kode\""). + Scan(&inacbgRJRows).Error; err != nil { + return nil, err + } + for _, row := range inacbgRJRows { + inacbgRJMap[row.ID_Billing] = append(inacbgRJMap[row.ID_Billing], row.Kode) + } + + // Ambil dokter dari tabel billing_dokter, diurutkan berdasarkan tanggal + dokterMap := make(map[int][]string) + var dokterRows []struct { + ID_Billing int + Nama string + } + if err := db.Table("\"billing_dokter\""). + Select("\"ID_Billing\", \"Nama_Dokter\" as \"Nama\""). + Joins("JOIN \"dokter\" ON \"billing_dokter\".\"ID_Dokter\" = \"dokter\".\"ID_Dokter\""). + Where("\"ID_Billing\" IN ?", billingIDs). + Order("tanggal ASC"). + Scan(&dokterRows).Error; err != nil { + return nil, err + } + for _, row := range dokterRows { + dokterMap[row.ID_Billing] = append(dokterMap[row.ID_Billing], row.Nama) + } + + // Ambil DPJP (Doctor In Charge) dari billing_dpjp + dpjpMap := make(map[int]int) + var dpjpRows []struct { + ID_Billing int + ID_DPJP int + } + if err := db.Table("\"billing_dpjp\""). + Where("\"ID_Billing\" IN ?", billingIDs). + Select("\"ID_Billing\", \"ID_DPJP\""). + Scan(&dpjpRows).Error; err != nil { + return nil, err + } + for _, row := range dpjpRows { + dpjpMap[row.ID_Billing] = row.ID_DPJP + } + + // Rapihin semua data jadi response yang bagus + var result []models.Request_Admin_Inacbg + + for _, b := range billings { + pasien := pasienMap[b.ID_Pasien] + + item := models.Request_Admin_Inacbg{ + ID_Billing: b.ID_Billing, + Nama_pasien: pasien.Nama_Pasien, + ID_Pasien: pasien.ID_Pasien, + Kelas: pasien.Kelas, + Ruangan: pasien.Ruangan, + Total_Tarif_RS: b.Total_Tarif_RS, + Total_Klaim: b.Total_Klaim, + ID_DPJP: dpjpMap[b.ID_Billing], + Tindakan_RS: tindakanMap[b.ID_Billing], + ICD9: icd9Map[b.ID_Billing], + ICD10: icd10Map[b.ID_Billing], + INACBG_RI: inacbgRIMap[b.ID_Billing], + INACBG_RJ: inacbgRJMap[b.ID_Billing], + Billing_sign: b.Billing_sign, + Nama_Dokter: dokterMap[b.ID_Billing], + } + + result = append(result, item) + } + + return result, nil +} diff --git a/backendcareit_v4/services/tarif_service.go b/backendcareit_v4/services/tarif_service.go new file mode 100644 index 0000000..709e48f --- /dev/null +++ b/backendcareit_v4/services/tarif_service.go @@ -0,0 +1,133 @@ +package services + +import ( + "backendcareit/database" + "backendcareit/models" + + "gorm.io/gorm" +) + +// Ambil tarif BPJS untuk rawat inap yaa +func GetTarifBPJSRawatInap() ([]models.TarifBPJSRawatInap, error) { + var data []models.TarifBPJSRawatInap + if err := database.DB.Model(&models.TarifBPJSRawatInap{}).Find(&data).Error; err != nil { + return nil, err + } + + return data, nil +} + +func GetTarifBPJSRawatInapByKode(kode string) (*models.TarifBPJSRawatInap, error) { + var data models.TarifBPJSRawatInap + if err := database.DB.Model(&models.TarifBPJSRawatInap{}).Where("ID_INACBG_RI = ?", kode).First(&data).Error; err != nil { + return nil, err + } + + return &data, nil +} + +// Ngambil tarif untuk pasien rawat jalan +func GetTarifBPJSRawatJalan() ([]models.TarifBPJSRawatJalan, error) { + var data []models.TarifBPJSRawatJalan + if err := database.DB.Find(&data).Error; err != nil { + return nil, err + } + + return data, nil +} + +func GetTarifBPJSRawatJalanByKode(kode string) (*models.TarifBPJSRawatJalan, error) { + var data models.TarifBPJSRawatJalan + if err := database.DB.Where("ID_INACBG_RJ = ?", kode).First(&data).Error; err != nil { + return nil, err + } + + return &data, nil +} + +// Ambil tarif rumah sakit aja bro +func GetTarifRS() ([]models.TarifRS, error) { + var data []models.TarifRS + if err := database.DB.Find(&data).Error; err != nil { + return nil, err + } + + return data, nil +} + +func GetTarifRSByKode(kode string) (*models.TarifRS, error) { + var data models.TarifRS + if err := database.DB.Where("ID_Tarif_RS = ?", kode).First(&data).Error; err != nil { + return nil, err + } + + return &data, nil +} + +func GetTarifRSByKategori(kategori string) ([]models.TarifRS, error) { + var data []models.TarifRS + if err := database.DB.Where("Kategori_RS = ?", kategori).Find(&data).Error; err != nil { + return nil, err + } + + return data, nil +} + +func IsNotFound(err error) bool { + return err == gorm.ErrRecordNotFound +} + +// Ambil data ICD9 - kode diagnosa versi lama +func GetICD9() ([]models.ICD9, error) { + var data []models.ICD9 + if err := database.DB.Find(&data).Error; err != nil { + return nil, err + } + + return data, nil +} + +// Ambil data ICD10 - kode diagnosa versi baru +func GetICD10() ([]models.ICD10, error) { + var data []models.ICD10 + if err := database.DB.Find(&data).Error; err != nil { + return nil, err + } + + return data, nil +} + +// Ambil daftar semua ruangan di RS +func GetRuangan() ([]models.Ruangan, error) { + var data []models.Ruangan + if err := database.DB.Find(&data).Error; err != nil { + return nil, err + } + + return data, nil +} + +// GetRuanganWithPasien - Get ruangan yang memiliki minimal 1 pasien +func GetRuanganWithPasien(db *gorm.DB) ([]models.Ruangan, error) { + var data []models.Ruangan + // JOIN dengan pasien table dan filter yang punya pasien + if err := db. + Distinct("ruangan.*"). + Table("ruangan"). + Joins("INNER JOIN pasien ON ruangan.\"Nama_Ruangan\" = pasien.\"Ruangan\""). + Find(&data).Error; err != nil { + return nil, err + } + + return data, nil +} + +// Ambil list semua dokter yang ada +func GetDokter() ([]models.Dokter, error) { + var data []models.Dokter + if err := database.DB.Find(&data).Error; err != nil { + return nil, err + } + + return data, nil +} diff --git a/backendcareit_v4/sql/PANDUAN_TESTING.md b/backendcareit_v4/sql/PANDUAN_TESTING.md new file mode 100644 index 0000000..09a4993 --- /dev/null +++ b/backendcareit_v4/sql/PANDUAN_TESTING.md @@ -0,0 +1,154 @@ +# Panduan Testing Billing API + +## 1. Pastikan Server Berjalan + +Jalankan server Go terlebih dahulu: +```bash +go run main.go +``` + +Server akan berjalan di: `http://localhost:8081` + +## 2. Testing di Postman + +### Setup Request + +1. **Method:** `POST` +2. **URL:** `http://localhost:8081/billing` +3. **Headers:** + - Key: `Content-Type` + - Value: `application/json` + +### Body (Raw JSON) + +Buka tab **Body** โ†’ pilih **raw** โ†’ pilih **JSON** dari dropdown, lalu paste JSON berikut: + +```json +{ + "nama_dokter": "dr. Hajeng Wulandari, Sp.A, Mbiomed", + "nama_pasien": "Budi Santoso", + "jenis_kelamin": "Laki-laki", + "usia": 45, + "ruangan": "R001", + "kelas": "1", + "tindakan_rs": "T001", + "icd9": "ICD9-001", + "icd10": "ICD10-001", + "cara_bayar": "BPJS", + "total_tarif_rs": 500000 +} +``` + +**Catatan:** +- Pastikan `nama_dokter` sesuai dengan data yang ada di database +- Untuk melihat daftar dokter, gunakan: `GET http://localhost:8081/dokter` + +## 3. Response yang Diharapkan + +### Success (200 OK) +```json +{ + "status": "success", + "message": "Billing berhasil dibuat", + "data": { + "billing": { + "ID_Billing": 1, + "ID_Pasien": 1, + "Cara_Bayar": "BPJS", + "Tanggal_masuk": "2024-01-15T10:30:00Z", + "Tanggal_keluar": null, + "ID_Dokter": 2, + "Total_Tarif_RS": 500000, + "Total_Tarif_BPJS": 0, + "Billing_sign": "created" + }, + "pasien": { + "ID_Pasien": 1, + "Nama_Pasien": "Budi Santoso", + "Jenis_Kelamin": "Laki-laki", + "Usia": 45, + "Ruangan": "R001", + "Kelas": "1" + } + } +} +``` + +### Error - Dokter Tidak Ditemukan (500) +```json +{ + "status": "error", + "message": "Gagal membuat billing", + "error": "dokter dengan nama Dr. Ahmad Wijaya tidak ditemukan" +} +``` + +### Error - Validasi Gagal (400) +```json +{ + "status": "error", + "message": "Data tidak valid", + "error": "Key: 'BillingRequest.Nama_Dokter' Error:Field validation for 'Nama_Dokter' failed on the 'required' tag" +} +``` + +## 4. Testing Skenario + +### Skenario 1: Pasien Baru +- Kirim request dengan `nama_pasien` yang belum ada di database +- Sistem akan membuat pasien baru dengan ID auto-increment +- Billing akan dibuat dengan ID_Pasien dari pasien baru + +### Skenario 2: Pasien Sudah Ada +- Kirim request dengan `nama_pasien` yang sudah ada di database +- Sistem akan menggunakan data pasien yang sudah ada +- Billing akan dibuat dengan ID_Pasien dari pasien yang sudah ada + +### Skenario 3: Dokter Tidak Ditemukan +- Kirim request dengan `nama_dokter` yang tidak ada di database +- Sistem akan mengembalikan error + +## 5. Endpoint Lain untuk Testing + +### Get Daftar Dokter +``` +GET http://localhost:8081/dokter +``` + +### Get Pasien by ID +``` +GET http://localhost:8081/pasien/1 +``` + +### Health Check +``` +GET http://localhost:8081/ +``` + +## 6. Checklist Sebelum Testing + +- [ ] Server Go sudah berjalan di port 8081 +- [ ] Database sudah terkoneksi +- [ ] Header `Content-Type: application/json` sudah diset +- [ ] Body menggunakan raw JSON (bukan form-data) +- [ ] Nama dokter sesuai dengan data di database +- [ ] Semua field required sudah terisi + +## 7. Troubleshooting + +### Error: "Content-Type harus application/json" +**Solusi:** Pastikan di tab Headers ada: +- Key: `Content-Type` +- Value: `application/json` + +### Error: "dokter dengan nama ... tidak ditemukan" +**Solusi:** +1. Cek daftar dokter dengan `GET /dokter` +2. Gunakan nama dokter yang sesuai dengan data di database + +### Error: "Data tidak valid" +**Solusi:** +1. Pastikan semua field required terisi +2. Pastikan format JSON benar (kurung kurawal lengkap) +3. Pastikan field names menggunakan lowercase dengan underscore (snake_case) + diff --git a/backendcareit_v4/sql/POSTMAN_SETUP.md b/backendcareit_v4/sql/POSTMAN_SETUP.md new file mode 100644 index 0000000..b455925 --- /dev/null +++ b/backendcareit_v4/sql/POSTMAN_SETUP.md @@ -0,0 +1,97 @@ +# Setup Postman untuk Testing Billing API + +## Endpoint +**Method:** `POST` +**URL:** `http://localhost:8080/billing` +*(Sesuaikan dengan port server Anda)* + +## Headers (PENTING!) +Pastikan header berikut sudah diset: +``` +Content-Type: application/json +``` + +## Body (Raw JSON) +Pilih tab **Body** โ†’ pilih **raw** โ†’ pilih **JSON** dari dropdown + +Kemudian paste JSON berikut: + +```json +{ + "nama_dokter": "Dr. Ahmad Wijaya", + "nama_pasien": "Budi Santoso", + "jenis_kelamin": "Laki-laki", + "usia": 45, + "ruangan": "R001", + "kelas": "1", + "tindakan_rs": "T001", + "icd9": "ICD9-001", + "icd10": "ICD10-001", + "cara_bayar": "BPJS", + "total_tarif_rs": 500000 +} +``` + +## Field yang Required (Wajib Diisi) +- `nama_dokter` (string) +- `nama_pasien` (string) +- `jenis_kelamin` (string) - "Laki-laki" atau "Perempuan" +- `usia` (integer) +- `ruangan` (string) +- `kelas` (string) - "1", "2", atau "3" +- `tindakan_rs` (string) +- `icd9` (string) +- `icd10` (string) +- `cara_bayar` (string) - "BPJS" atau "UMUM" +- `total_tarif_rs` (integer) - optional + +## Response Success (200 OK) +```json +{ + "status": "success", + "message": "Billing berhasil dibuat", + "data": { + "billing": { + "ID_Billing": "BILL-...", + "ID_Pasien": "PAS-...", + "Cara_Bayar": "BPJS", + "Tanggal_masuk": "2024-01-15T10:30:00Z", + "Tanggal_keluar": null, + "ID_Dokter": "DOK-001", + "Total_Tarif_RS": 500000, + "Total_Tarif_BPJS": 0, + "Billing_sign": "created" + }, + "pasien": { + "ID_Pasien": "PAS-...", + "Nama_Pasien": "Budi Santoso", + "Jenis_Kelamin": "Laki-laki", + "Usia": 45, + "Ruangan": "R001", + "Kelas": "1" + } + } +} +``` + +## Troubleshooting + +### Error: "Content-Type harus application/json" +**Solusi:** Pastikan di tab Headers, ada header: +- Key: `Content-Type` +- Value: `application/json` + +### Error: "Data tidak valid" dengan semua field required +**Kemungkinan penyebab:** +1. Body tidak dikirim sebagai JSON (mungkin masih form-data atau x-www-form-urlencoded) +2. Format JSON salah (kurung kurawal tidak lengkap, koma salah, dll) +3. Field names tidak sesuai (harus lowercase dengan underscore) + +**Solusi:** +1. Pastikan di tab Body, pilih **raw** dan dropdown menunjukkan **JSON** +2. Copy-paste ulang JSON dari contoh di atas +3. Pastikan semua field required terisi + +### Error: "dokter dengan nama ... tidak ditemukan" +**Solusi:** Pastikan nama dokter yang dikirim sudah ada di database. Cek dengan GET `/dokter` terlebih dahulu. + diff --git a/backendcareit_v4/sql/README_INSERT_ADMIN.md b/backendcareit_v4/sql/README_INSERT_ADMIN.md new file mode 100644 index 0000000..6cc2647 --- /dev/null +++ b/backendcareit_v4/sql/README_INSERT_ADMIN.md @@ -0,0 +1,115 @@ +# Cara Menambahkan Data Dummy Admin + +File ini berisi instruksi untuk menambahkan data dummy admin ke database. + +## Data Admin +- **Username**: `admin` +- **Password**: `admin123` + +## Cara 1: Menggunakan File SQL (Recommended) + +1. Buka MySQL client atau phpMyAdmin +2. Pilih database `care_it_data` +3. Jalankan file SQL: + ```sql + -- Hapus data admin jika sudah ada + DELETE FROM `admin_ruangan` WHERE `Nama_Admin` = 'admin'; + + -- Insert data admin baru + INSERT INTO `admin_ruangan` (`Nama_Admin`, `Password`, `ID_Ruangan`) + VALUES ('admin', 'admin123', NULL); + ``` + +Atau jalankan file SQL langsung: +```bash +mysql -u root -p care_it_data < sql/insert_admin_dummy.sql +``` + +## Cara 2: Menggunakan Script Go + +1. Pastikan Anda berada di direktori `Backend_CareIt` +2. Jalankan script: + ```bash + go run scripts/insert_admin.go + ``` + +Script akan otomatis: +- Menghapus admin lama jika sudah ada +- Menambahkan admin baru dengan username `admin` dan password `admin123` + +## Cara 3: Menggunakan MySQL Command Line + +```bash +mysql -u root -p care_it_data +``` + +Kemudian jalankan: +```sql +DELETE FROM `admin_ruangan` WHERE `Nama_Admin` = 'admin'; +INSERT INTO `admin_ruangan` (`Nama_Admin`, `Password`, `ID_Ruangan`) +VALUES ('admin', 'admin123', NULL); +``` + +## Verifikasi + +### Cara 1: Menggunakan Script Go (Recommended) +```bash +cd Backend_CareIt +go run scripts/check_admin.go +``` + +Script ini akan menampilkan: +- Semua data admin di database +- Test query untuk memastikan data bisa diakses +- Informasi detail tentang setiap admin + +### Cara 2: Menggunakan MySQL Query +```sql +SELECT * FROM admin_ruangan WHERE Nama_Admin = 'admin'; +``` + +Anda seharusnya melihat data admin dengan: +- `ID_Admin`: (auto increment) +- `Nama_Admin`: admin +- `Password`: admin123 +- `ID_Ruangan`: NULL + +## Login + +Setelah data ditambahkan, Anda bisa login dengan: +- **User Type**: Admin (pilih radio button "Admin") +- **Username**: `admin` +- **Password**: `admin123` + +## Troubleshooting + +### Masalah: "Payload login tidak valid" +1. Pastikan semua field terisi (username dan password tidak kosong) +2. Pastikan backend sudah di-compile ulang setelah perubahan +3. Restart backend server + +### Masalah: "Username atau password salah" +1. Verifikasi data admin ada di database: + ```bash + go run scripts/check_admin.go + ``` +2. Pastikan username dan password sesuai (case-sensitive untuk password) +3. Pastikan tidak ada whitespace di username/password +4. Cek log backend untuk error detail + +### Masalah: Admin masuk ke dashboard dokter +1. Pastikan memilih radio button "Admin" sebelum login +2. Clear browser cache dan localStorage +3. Pastikan `userRole` di localStorage adalah "admin" + +### Masalah: Data admin tidak ditemukan +1. Jalankan script insert admin lagi: + ```bash + go run scripts/insert_admin.go + ``` +2. Verifikasi dengan check script: + ```bash + go run scripts/check_admin.go + ``` +3. Pastikan koneksi database benar di `database/db.go` + diff --git a/backendcareit_v4/sql/VIEW_DOCUMENTATION.md b/backendcareit_v4/sql/VIEW_DOCUMENTATION.md new file mode 100644 index 0000000..6dc0ffb --- /dev/null +++ b/backendcareit_v4/sql/VIEW_DOCUMENTATION.md @@ -0,0 +1,419 @@ +# CareIT Database Views Documentation + +## ๐Ÿ“‹ Overview +Dokumentasi lengkap untuk semua views yang telah ditambahkan ke database CareIT untuk optimasi query dan mempercepat pengaksesan data. + +--- + +## ๐Ÿ“Š Daftar Views + +### 1. **v_billing_pasien_info** +**Tujuan:** Menampilkan informasi billing pasien dengan data lengkap dan status real-time + +**Kolom:** +- `ID_Billing` - ID Billing (PK) +- `ID_Pasien` - ID Pasien (FK) +- `Nama_Pasien` - Nama lengkap pasien +- `Jenis_Kelamin` - Jenis kelamin (Laki-laki/Perempuan) +- `Usia` - Usia pasien +- `Ruangan` - Nama ruangan +- `Kelas` - Kelas perawatan (1, 2, 3) +- `Cara_Bayar` - Metode pembayaran (BPJS/Umum) +- `Tanggal_Masuk` - Tanggal masuk rumah sakit +- `Tanggal_Keluar` - Tanggal keluar (NULL jika masih aktif) +- `Hari_Inap` - Jumlah hari perawatan (calculated) +- `Total_Tarif_RS` - Total tarif RS +- `Total_Klaim` - Total klaim BPJS +- `Billing_Sign` - Status billing (Hijau/Kuning/Merah) +- `Status_Pasien` - Status pasien (Aktif/Selesai) + +**Use Case:** +- Dashboard billing pasien +- List view semua pasien +- Filter berdasarkan status atau cara bayar +- Monitoring status pasien aktif + +**Query Example:** +```sql +SELECT * FROM v_billing_pasien_info +WHERE Status_Pasien = 'Aktif' +ORDER BY Tanggal_Masuk DESC; +``` + +--- + +### 2. **v_billing_detail** +**Tujuan:** Menampilkan detail billing dengan informasi dokter dan tindakan + +**Kolom:** +- `ID_Billing` - ID Billing +- `ID_Pasien` - ID Pasien +- `Nama_Pasien` - Nama pasien +- `Cara_Bayar` - Metode pembayaran +- `Tanggal_Masuk` - Tanggal masuk +- `Tanggal_Keluar` - Tanggal keluar +- `Dokter` - Daftar dokter yang menangani +- `KSM` - Kelompok Staf Medis yang terlibat +- `Jumlah_Dokter` - Jumlah dokter yang terlibat +- `Jumlah_Tindakan` - Jumlah tindakan yang dilakukan +- `Total_Tarif_RS` - Total tarif RS +- `Total_Klaim` - Total klaim +- `Billing_Sign` - Status billing + +**Use Case:** +- Reporting detail billing +- Tracking dokter per pasien +- Analisis jumlah tindakan per billing +- Verifikasi komposisi tim medis + +**Query Example:** +```sql +SELECT * FROM v_billing_detail +WHERE Cara_Bayar = 'BPJS' +AND Jumlah_Dokter >= 2; +``` + +--- + +### 3. **v_billing_diagnosis_procedure** +**Tujuan:** Menampilkan diagnosa dan prosedur medis per billing + +**Kolom:** +- `ID_Billing` - ID Billing +- `Nama_Pasien` - Nama pasien +- `Cara_Bayar` - Metode pembayaran +- `Kode_Diagnosa` - Daftar kode ICD10 diagnosa +- `Diagnosa` - Daftar diagnosa lengkap +- `Jumlah_Diagnosa` - Jumlah diagnosa +- `Kode_Prosedur` - Daftar kode ICD9 prosedur +- `Prosedur` - Daftar prosedur lengkap +- `Jumlah_Prosedur` - Jumlah prosedur +- `Tanggal_Masuk` - Tanggal masuk +- `Tanggal_Keluar` - Tanggal keluar + +**Use Case:** +- Medical record extraction +- Clinical audit trail +- Diagnosis tracking +- Procedure validation +- Export untuk verifikasi medis + +**Query Example:** +```sql +SELECT * FROM v_billing_diagnosis_procedure +WHERE Diagnosa LIKE '%A00%'; +``` + +--- + +### 4. **v_billing_inacbg_code** +**Tujuan:** Menampilkan INACBG code (RI dan RJ) untuk BPJS claim processing + +**Kolom:** +- `ID_Billing` - ID Billing +- `Nama_Pasien` - Nama pasien +- `Cara_Bayar` - Metode pembayaran +- `Tipe_Perawatan` - Tipe perawatan (RI=Rawat Inap, RJ=Rawat Jalan) +- `Kode_INACBG_RI` - Daftar kode INACBG RI +- `Kode_INACBG_RJ` - Daftar kode INACBG RJ +- `Jumlah_INACBG_RI` - Jumlah kode RI +- `Jumlah_INACBG_RJ` - Jumlah kode RJ +- `Total_Klaim` - Total klaim +- `Billing_Sign` - Status billing + +**Use Case:** +- BPJS claim submission +- INACBG code verification +- Claim tracking +- DRG mapping validation +- Financial reconciliation + +**Query Example:** +```sql +SELECT * FROM v_billing_inacbg_code +WHERE Cara_Bayar = 'BPJS' +AND Billing_Sign IN ('Kuning', 'Merah'); +``` + +--- + +### 5. **v_ruangan_pasien_aktif** +**Tujuan:** Dashboard ruangan dengan occupancy rate dan distribusi pasien per kelas + +**Kolom:** +- `ID_Ruangan` - ID Ruangan (PK) +- `Nama_Ruangan` - Nama ruangan +- `Jenis_Ruangan` - Jenis ruangan +- `Kategori_ruangan` - Kategori ruangan +- `Jumlah_Pasien_Aktif` - Total pasien aktif di ruangan +- `Pasien_Kelas_1` - Jumlah pasien kelas 1 +- `Pasien_Kelas_2` - Jumlah pasien kelas 2 +- `Pasien_Kelas_3` - Jumlah pasien kelas 3 +- `Nama_Pasien` - Daftar nama pasien aktif + +**Use Case:** +- Real-time occupancy dashboard +- Room management +- Patient distribution analysis +- Capacity planning +- Class-based tracking + +**Query Example:** +```sql +SELECT * FROM v_ruangan_pasien_aktif +WHERE Jumlah_Pasien_Aktif > 0 +ORDER BY Jumlah_Pasien_Aktif DESC; +``` + +--- + +### 6. **v_dokter_billing_stat** +**Tujuan:** Statistik kinerja dokter dengan tracking billing dan klaim + +**Kolom:** +- `ID_Dokter` - ID Dokter (PK) +- `Nama_Dokter` - Nama dokter +- `Status` - Status (DPJP/PPDS) +- `KSM` - Kelompok Staf Medis +- `Jumlah_Billing` - Jumlah billing yang ditangani +- `Jumlah_Pasien` - Jumlah pasien unik +- `Total_Klaim` - Total klaim dari semua billing +- `Tanggal_Pasien_Terakhir` - Tanggal pasien terakhir ditangani +- `Tipe_Pasien` - Tipe pasien yang ditangani (BPJS/Umum) + +**Use Case:** +- Dokter performance dashboard +- Workload analysis +- Billing tracking per dokter +- KSM comparative analysis +- Productivity metrics + +**Query Example:** +```sql +SELECT * FROM v_dokter_billing_stat +WHERE Jumlah_Billing > 5 +ORDER BY Total_Klaim DESC; +``` + +--- + +### 7. **v_pasien_billing_history** +**Tujuan:** Riwayat lengkap pasien dengan semua billing dan klaim + +**Kolom:** +- `ID_Pasien` - ID Pasien (PK) +- `Nama_Pasien` - Nama lengkap pasien +- `Jenis_Kelamin` - Jenis kelamin +- `Usia` - Usia pasien +- `Ruangan` - Ruangan tempat dirawat +- `Jumlah_Billing` - Total billing sepanjang waktu +- `Jumlah_Billing_Aktif` - Billing yang masih aktif +- `Jumlah_Billing_Selesai` - Billing yang sudah selesai +- `Total_Klaim_Keseluruhan` - Total klaim keseluruhan +- `Tanggal_Masuk_Terakhir` - Tanggal masuk terakhir +- `Tanggal_Keluar_Terakhir` - Tanggal keluar terakhir +- `Riwayat_Cara_Bayar` - Riwayat cara pembayaran + +**Use Case:** +- Patient medical history +- Complete patient profile +- Historical billing analysis +- Treatment continuity tracking +- Patient lifetime value analysis + +**Query Example:** +```sql +SELECT * FROM v_pasien_billing_history +WHERE Jumlah_Billing > 1 +ORDER BY Total_Klaim_Keseluruhan DESC; +``` + +--- + +### 8. **v_billing_summary_harian** +**Tujuan:** Summary harian billing untuk operational dashboard + +**Kolom:** +- `Tanggal` - Tanggal (DATE) +- `Jumlah_Billing_Masuk` - Jumlah billing masuk hari tersebut +- `Billing_Keluar_Hari_Sama` - Billing keluar di hari yang sama +- `Billing_Aktif` - Billing yang masih aktif (tidak keluar) +- `Status_Hijau` - Jumlah billing dengan status Hijau +- `Status_Kuning` - Jumlah billing dengan status Kuning +- `Status_Merah` - Jumlah billing dengan status Merah +- `Total_Tarif_RS_Harian` - Total tarif RS harian +- `Total_Klaim_Harian` - Total klaim harian +- `Tipe_Pasien_Masuk` - Tipe pasien yang masuk (BPJS/Umum) + +**Use Case:** +- Daily operational report +- Real-time monitoring dashboard +- Hospital KPI tracking +- Revenue analysis +- Status distribution monitoring + +**Query Example:** +```sql +SELECT * FROM v_billing_summary_harian +WHERE Tanggal BETWEEN DATE_SUB(CURDATE(), INTERVAL 7 DAY) AND CURDATE() +ORDER BY Tanggal DESC; +``` + +--- + +### 9. **v_billing_tarif_analysis** +**Tujuan:** Analisis detail tarif dan klaim untuk financial validation + +**Kolom:** +- `ID_Billing` - ID Billing +- `Nama_Pasien` - Nama pasien +- `Cara_Bayar` - Metode pembayaran +- `Total_Tarif_RS` - Total tarif RS +- `Total_Klaim` - Total klaim +- `Selisih_Tarif_Klaim` - Selisih tarif dan klaim +- `Persentase_Klaim` - Persentase klaim terhadap tarif (%) +- `Billing_Sign` - Status billing +- `Jumlah_Tindakan` - Jumlah tindakan +- `Jumlah_Kode_INACBG` - Jumlah kode INACBG + +**Use Case:** +- Financial audit +- Tarif vs claim analysis +- Billing accuracy validation +- Revenue reconciliation +- Claim percentage tracking + +**Query Example:** +```sql +SELECT * FROM v_billing_tarif_analysis +WHERE Persentase_Klaim < 50 +AND Billing_Sign = 'Merah'; +``` + +--- + +### 10. **v_ksm_performance** +**Tujuan:** Performance metrics per KSM (Kelompok Staf Medis) + +**Kolom:** +- `KSM` - Nama KSM (PK) +- `Jumlah_Dokter` - Jumlah dokter di KSM +- `Jumlah_Billing_Ditangani` - Total billing yang ditangani +- `Avg_Billing_Per_Dokter` - Rata-rata billing per dokter +- `Total_Klaim_KSM` - Total klaim keseluruhan KSM +- `Billing_Sign_Hijau` - Jumlah billing status Hijau +- `Billing_Sign_Kuning` - Jumlah billing status Kuning +- `Billing_Sign_Merah` - Jumlah billing status Merah + +**Use Case:** +- Departmental performance analysis +- Comparative KSM metrics +- Resource allocation planning +- Quality metrics tracking +- Financial performance by department + +**Query Example:** +```sql +SELECT * FROM v_ksm_performance +ORDER BY Total_Klaim_KSM DESC; +``` + +--- + +## ๐Ÿ” Index Recommendation + +Untuk optimasi lebih lanjut, recommend untuk membuat index pada kolom yang sering digunakan: + +```sql +-- Index untuk v_billing_pasien_info +CREATE INDEX idx_billing_pasien_status ON billing_pasien(Tanggal_Keluar, Billing_Sign); +CREATE INDEX idx_billing_pasien_cara_bayar ON billing_pasien(Cara_Bayar); +CREATE INDEX idx_pasien_ruangan ON pasien(Ruangan); + +-- Index untuk v_billing_detail +CREATE INDEX idx_billing_dokter_id ON billing_dokter(ID_Billing, ID_Dokter); +CREATE INDEX idx_dokter_ksm ON dokter(KSM); + +-- Index untuk v_billing_diagnosis_procedure +CREATE INDEX idx_billing_icd10 ON billing_icd10(ID_Billing); +CREATE INDEX idx_billing_icd9 ON billing_icd9(ID_Billing); + +-- Index untuk v_billing_inacbg_code +CREATE INDEX idx_billing_inacbg_ri ON billing_inacbg_ri(ID_Billing); +CREATE INDEX idx_billing_inacbg_rj ON billing_inacbg_rj(ID_Billing); + +-- Index untuk tanggal +CREATE INDEX idx_billing_tanggal_masuk ON billing_pasien(Tanggal_Masuk); +CREATE INDEX idx_billing_tanggal_keluar ON billing_pasien(Tanggal_Keluar); +``` + +--- + +## ๐Ÿ“ Notes & Best Practices + +### โœ… Kelebihan menggunakan Views: + +1. **Performa Lebih Cepat** - Query sudah pre-compiled +2. **Konsistensi Data** - Logika aggregation terpusat +3. **Kemudahan Maintenance** - Perubahan logic hanya di satu tempat +4. **Security** - Bisa membatasi akses ke kolom tertentu +5. **Abstraksi** - Frontend tidak perlu tahu struktur table kompleks + +### โš ๏ธ Perhatian: + +1. Views adalah **read-only** (SELECT only) di versi MariaDB ini +2. Performa depends pada database size - gunakan index yang tepat +3. Aggregate functions (COUNT, SUM, etc) bisa lambat untuk dataset besar +4. Refresh view dengan menjalankan EXPLAIN untuk cek query plan + +### ๐Ÿš€ Tips Optimasi: + +1. Gunakan WHERE clause untuk filter sebanyak mungkin +2. Limit hasil jika tidak perlu semua data +3. Cache hasil di aplikasi jika data tidak berubah sering +4. Monitor query performance dengan EXPLAIN +5. Update index statistics secara berkala + +--- + +## ๐Ÿ“Š Contoh Penggunaan di Backend + +### Go Example (menggunakan GORM): + +```go +// Model untuk View +type BillingPasienInfo struct { + IDBilling int `gorm:"column:ID_Billing"` + IDPasien int `gorm:"column:ID_Pasien"` + NamaPasien string `gorm:"column:Nama_Pasien"` + CaraBayar string `gorm:"column:Cara_Bayar"` + HariInap int `gorm:"column:Hari_Inap"` + StatusPasien string `gorm:"column:Status_Pasien"` +} + +func (BillingPasienInfo) TableName() string { + return "v_billing_pasien_info" +} + +// Usage dalam handler +func GetBillingAktif(db *gorm.DB, c *gin.Context) { + var billings []BillingPasienInfo + db.Where("Status_Pasien = ?", "Aktif"). + Order("Tanggal_Masuk DESC"). + Find(&billings) + + c.JSON(200, billings) +} +``` + +--- + +## ๐Ÿ”„ Update & Maintenance + +Views akan **secara otomatis** updated ketika data di table yang di-reference berubah. Tidak perlu maintenance manual. + +--- + +**Dokumentasi dibuat: 23 Desember 2025** +**Database: CareIT v2** +**Version: 1.0** diff --git a/backendcareit_v4/sql/add_id_dpjp_column.sql b/backendcareit_v4/sql/add_id_dpjp_column.sql new file mode 100644 index 0000000..e69de29 diff --git a/backendcareit_v4/sql/care_it_data (1).sql b/backendcareit_v4/sql/care_it_data (1).sql new file mode 100644 index 0000000..902f064 --- /dev/null +++ b/backendcareit_v4/sql/care_it_data (1).sql @@ -0,0 +1,32794 @@ +-- phpMyAdmin SQL Dump +-- version 5.2.1 +-- https://www.phpmyadmin.net/ +-- +-- Host: 127.0.0.1 +-- Waktu pembuatan: 29 Nov 2025 pada 09.53 +-- Versi server: 10.4.32-MariaDB +-- Versi PHP: 8.2.12 + +SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; +START TRANSACTION; +SET time_zone = "+00:00"; + + +/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; +/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; +/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; +/*!40101 SET NAMES utf8mb4 */; + +-- +-- Database: `care_it_data` +-- + +-- -------------------------------------------------------- + +-- +-- Struktur dari tabel `admin_ruangan` +-- + +CREATE TABLE `admin_ruangan` ( + `ID_Admin` int(11) NOT NULL, + `Nama_Admin` varchar(100) NOT NULL, + `Password` varchar(255) NOT NULL, + `ID_Ruangan` int(11) DEFAULT NULL +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; + +-- -------------------------------------------------------- + +-- +-- Struktur dari tabel `billing_icd9` +-- + +CREATE TABLE `billing_icd9` ( + `ID_Billing` int(11) NOT NULL, + `ID_ICD9` varchar(20) NOT NULL +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; + +-- -------------------------------------------------------- + +-- +-- Struktur dari tabel `billing_icd10` +-- + +CREATE TABLE `billing_icd10` ( + `ID_Billing` int(11) NOT NULL, + `ID_ICD10` varchar(20) NOT NULL +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; + +-- -------------------------------------------------------- + +-- +-- Struktur dari tabel `billing_inacbg_ri` +-- + +CREATE TABLE `billing_inacbg_ri` ( + `ID_Billing` int(11) NOT NULL, + `ID_INACBG_RI` varchar(20) NOT NULL +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; + +-- -------------------------------------------------------- + +-- +-- Struktur dari tabel `billing_inacbg_rj` +-- + +CREATE TABLE `billing_inacbg_rj` ( + `ID_Billing` int(11) NOT NULL, + `ID_INACBG_RJ` varchar(20) NOT NULL +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; + +-- -------------------------------------------------------- + +-- +-- Struktur dari tabel `billing_pasien` +-- + +CREATE TABLE `billing_pasien` ( + `ID_Billing` int(11) NOT NULL, + `ID_Pasien` int(11) NOT NULL, + `Cara_Bayar` enum('BPJS','Umum') DEFAULT NULL, + `Tanggal_Masuk` date DEFAULT NULL, + `Tanggal_Keluar` date DEFAULT NULL, + `ID_Dokter` int(11) NOT NULL, + `Total_Tarif_RS` decimal(15,2) DEFAULT NULL, + `Total_Klaim` decimal(15,2) DEFAULT NULL, + `Billing_Sign` enum('Hijau','Kuning','Merah') DEFAULT 'Hijau' +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; + +-- -------------------------------------------------------- + +-- +-- Struktur dari tabel `billing_tindakan` +-- + +CREATE TABLE `billing_tindakan` ( + `ID_Billing` int(11) NOT NULL, + `ID_Tarif_RS` varchar(20) NOT NULL +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; + +-- -------------------------------------------------------- + +-- +-- Struktur dari tabel `dokter` +-- + +CREATE TABLE `dokter` ( + `ID_Dokter` int(11) NOT NULL, + `Nama_Dokter` varchar(100) NOT NULL, + `Status` enum('DPJP','PPDS') NOT NULL, + `KSM` varchar(100) DEFAULT NULL, + `Email_UB` varchar(100) DEFAULT NULL, + `Email_Pribadi` varchar(100) DEFAULT NULL +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; + +-- +-- Dumping data untuk tabel `dokter` +-- + +INSERT INTO `dokter` (`ID_Dokter`, `Nama_Dokter`, `Status`, `KSM`, `Email_UB`, `Email_Pribadi`) VALUES +(2, 'dr. Hajeng Wulandari, Sp.A, Mbiomed', 'DPJP', 'Anak', 'hajengwulandari.fk@ub.ac.id', 'hajeng.wulandari@gmail.com'), +(3, 'dr. Irfan Agus Salim, Sp.A, Mbiomed ', 'DPJP', 'Anak', 'irfanagus.fk@ub.ac.id', 'salim.dr87@gmail.com'), +(4, 'dr. Fadilah Muttaqin, Spp.A,MBiomed', 'DPJP', 'Anak', '-', 'fadilahmutaqin25888@gmail.com'), +(5, 'dr. Ery Olivianto, Sp. A (K)', 'DPJP', 'Anak', 'ery15.fk@ub.ac.id', 'ery_agustin@yahoo.com'), +(6, 'Dr.dr. Krisni Soebandijah, Sp.A(K)', 'DPJP', 'Anak', 'krisni19.fk@ub.ac.id', 'krisdika2002@yahoo.com'), +(7, 'dr. Astrid Kristina Kardani, Sp. A, MBiomed', 'DPJP', 'Anak', 'astridkardani.fk@ub.ac.id', '-'), +(8, 'dr. Nugroho Danu Tri Subroto, Sp.A(K)', 'DPJP', 'Anak', 'danu.dr@ub.ac.id', '-'), +(9, 'dr. Irene Ratridewi, Sp.A(K), M.Kes', 'DPJP', 'Anak', 'irene24.fk@ub.ac.id', 'irtridewi@yahoo.com'), +(10, 'dr.Savitri Laksmi Winaputri, Sp.A', 'DPJP', 'Anak', '-', 'wina.savitri@yahoo.com'), +(11, 'Dr.dr. Wisnu Barlianto, Sp.A(K), Msi.Med', 'DPJP', 'Anak', 'wisnu_barlian@ub.ac.id', '-'), +(12, 'dr. Desy Wulandari, Sp.A, M.Biomed', 'DPJP', 'Anak', 'desywulandari@ub.ac.id', 'deardesy@yahoo.com'), +(13, 'dr. Satrio Wibowo, Sp.A(K), Msi.Medย ', 'DPJP', 'Anak', 'satrio_wibowo@ub.ac.id', '-'), +(14, 'dr. Muhammad Irawan, Sp.A, MBiomed', 'DPJP', 'Anak', 'muhammadirawan.fk@ub.ac.id', 'muhammadirawan86@gmail.com'), +(15, 'dr. A. Susanto Nugroho, Sp.A(K)ย ', 'DPJP', 'Anak', 'susanto04.fk@ub.ac.id', 'susantonugroho.ns@gmail.com'), +(16, 'dr. Sonny Wicaksono, Sp. A, M.Kes', 'DPJP', 'Anak', '-', 'sonyfk@gmail.com'), +(17, 'dr. Brigitta Ida RVC, Sp.A(K), M.Kes', 'DPJP', 'Anak', 'briggita_vebi@ub.ac.id', 'brigitta_vebi@yahoo.com'), +(18, 'dr. Eko Sulistijono, Sp.A', 'DPJP', 'Anak', 'eko25.fk@ub.ac.id', 'ekosulistijono@yahoo.com'), +(19, 'Dr. dr. Ariani, M.Kes, Sp.A(K)', 'DPJP', 'Anak', 'arianidr@ub.ac.id', '-'), +(20, 'dr. Prasetya Ismail Permadi, Sp.A(K), M.Biomed', 'DPJP', 'Anak', 'prasetyapermadi@ub.ac.id', '-'), +(21, 'dr. Saptadi Yuliarto, M.Kes, Sp.A(K)', 'DPJP', 'Anak', 'saptadiy@ub.ac.id', '-'), +(22, 'Dr. dr. Harjoedi Adji Tjahjono, Sp.A(K)', 'DPJP', 'Anak', 'haryudi_aji2000@ub.ac.id', 'haryudi_aji2000@yahoo.com'), +(23, 'dr. Dyahris Koentartiwi, Sp.A(K)', 'DPJP', 'Anak', 'dyahris08.fk@ub.ac.id', 'risty.kuntartiwi@gmail.com'), +(24, 'dr. Muchammad Fahrul Udin, M.Kes, Sp.A, Subsp. Resp(K)', 'DPJP', 'Anak', 'udin24.fk@ub.ac.id', 'fahruludin@yahoo.com'), +(25, 'dr. Kurniawan Taufiq Kadafi, M.Biomed, Sp.A(K)', 'DPJP', 'Anak', 'kadafi12.fk@ub.ac.id', 'kurniawankadafi@gmail.com'), +(26, 'dr. Laurentia Ima Monica, Sp.A., M.Biomed.', 'DPJP', 'Anak', 'monicasutatnto@ub.ac.id', ''), +(27, 'dr. Setya Mithra Hartiastuti, MSi.Med, Sp.A(K)', 'DPJP', 'Anak', '-', 'setyamithra@gmail.com'), +(28, 'dr. Melany Farrahdilla, Sp.A, M.Kes', 'DPJP', 'Anak', '-', 'melany.f@gmail.com'), +(29, 'dr. Melinda, Sp.A, M.Biomed', 'DPJP', 'Anak', '-', 'melindarakhmat@gmail.com'), +(30, 'dr. Mochamad Chabibi, Sp.A, M.Biomed', 'DPJP', 'Anak', '-', 'putrablitar999@yahoo.com'), +(31, 'dr. Hidayati Utami Dewi, Sp.A', 'DPJP', 'Anak', '-', 'utami3dewi@gmail.com'), +(32, 'dr. Ardhanis Ramadhanti, Sp.A', 'DPJP', 'Anak', '-', 'ardhanis9@gmail.com'), +(33, 'dr. Emi Yulianti, Sp.A', 'DPJP', 'Anak', '-', 'meme_yulianti@yahoo.com; emi230576yulianti@gmail.com'), +(34, 'dr. Herlin Kristanti, Sp.A', 'DPJP', 'Anak', '-', 'herlinkristanti@yahoo.co.id'), +(35, 'dr. Zuhrotul Aini, Sp.A', 'DPJP', 'Anak', '-', 'ainizuhri74@gmail.com'), +(36, 'dr. Novi Efridayanti, Sp.A., M.Biomed', 'DPJP', 'Anak', '-', 'novi.evridayanti@gmail.com'), +(37, 'dr. Astri Proborini, Sp.A., M.Kes', 'DPJP', 'Anak', '-', 'astriporini@gmail.com'), +(38, 'dr. Charity Monica, Sp.A', 'DPJP', 'Anak', '-', '-'), +(39, 'dr.Dewangga Primananda Susanto, MMRS., Sp. A', 'DPJP', 'Anak', '-', '-'), +(40, 'dr. Tulus Sampurno, Sp.A', 'DPJP', 'Anak', '-', '-'), +(41, 'Ervan Aditya Putra Chafid', 'PPDS', 'Anak', 'ervanaditya5@student.ub.ac.id', '-'), +(42, 'RAYI IJQI ASASAIN', 'PPDS', 'Anak', 'rayi_ijqi@student.ub.ac.id', '-'), +(43, 'Prastiti Rahmanita', 'PPDS', 'Anak', 'prastitirhm@student.ub.ac.id', '-'), +(44, 'Tazkiyatul Firdaus', 'PPDS', 'Anak', 'tazkiya@student.ub.ac.id', '-'), +(45, 'Najwa Amalia', 'PPDS', 'Anak', 'najwaamalia@student.ub.ac.id', '-'), +(46, 'Erlisa Devi Saptirina Putri', 'PPDS', 'Anak', 'erlisadevi@student.ub.ac.id', '-'), +(47, 'Astika Jr Said', 'PPDS', 'Anak', 'astikajrsaid@student.ub.ac.id', '-'), +(48, 'Galing Chandika Putra', 'PPDS', 'Anak', 'galingchandika@student.ub.ac.id', '-'), +(49, 'Hernita Taurustya', 'PPDS', 'Anak', 'hernita_ika33@student.ub.ac.id', '-'), +(50, 'Sintya Dyliza', 'PPDS', 'Anak', 'sintyadyliza@student.ub.ac.id', '-'), +(51, 'SARAH ZORAYA MIRZA', 'PPDS', 'Anak', 'sarahmirza@student.ub.ac.id', '-'), +(52, 'dr. La Ode Purna Alam Firdaus', 'PPDS', 'Anak', 'alammaasara32@student.ub.ac.id', '-'), +(53, 'dr. Christian Nopiandi', 'PPDS', 'Anak', 'tian601184@student.ub.ac.id', '-'), +(54, 'dr. Fania Dora Aslamy', 'PPDS', 'Anak', 'faniadora@student.ub.ac.id', '-'), +(55, 'dr. Hardian Rakhmawardana', 'PPDS', 'Anak', 'hardian128@student.ub.ac.id', '-'), +(56, 'dr. Athira Fitriah', 'PPDS', 'Anak', 'fitriahathira27@student.ub.ac.id', '-'), +(57, 'dr. Nia Sahra Labetubun', 'PPDS', 'Anak', 'nialabetubun@student.ub.ac.id', '-'), +(58, 'dr. Meytrisna Ajeng Zwastica', 'PPDS', 'Anak', 'meytrisnaaz17@student.ub.ac.id', '-'), +(59, 'Stephanie Hellen Hartoyo', 'PPDS', 'Anak', 'drstephy89@student.ub.ac.id', '-'), +(60, 'Deddy Christian Aritonang', 'PPDS', 'Anak', 'deddyaritonang@student.ub.ac.id', '-'), +(61, 'Raden Rara Shinta Chandra Permata', 'PPDS', 'Anak', 'rrshintacp@student.ub.ac.id', '-'), +(62, 'Rima Nur Rahmawati', 'PPDS', 'Anak', 'rimanr@student.ub.ac.id', '-'), +(63, 'Angela Permera Tubuq', 'PPDS', 'Anak', 'permeradr@student.ub.ac.id', '-'), +(64, 'AULYA FARRA RAHMADANY', 'PPDS', 'Anak', 'aulyafr@student.ub.ac.id', '-'), +(65, 'Fitria Ummu Habibah', 'PPDS', 'Anak', 'fitriaummu@student.ub.ac.id', '-'), +(66, 'Yasmin Eka Aziza', 'PPDS', 'Anak', 'yasminekaaziza@student.ub.ac.id', '-'), +(67, 'Firmandiyara Angkasa', 'PPDS', 'Anak', 'diarakasa@student.ub.ac.id', '-'), +(68, 'Rifqi Syarif Rinanto', 'PPDS', 'Anak', 'rifqippds@student.ub.ac.id', '-'), +(69, 'Kienan Agni Dewanty', 'PPDS', 'Anak', 'kienanagnid@student.ub.ac.id', '-'), +(70, 'rayza swan awanti', 'PPDS', 'Anak', 'rayzaswan@student.ub.ac.id', '-'), +(71, 'Emiliana Susanti Foris', 'PPDS', 'Anak', 'emilianaforis@student.ub.ac.id', '-'), +(72, 'Victor Julius Imoek', 'PPDS', 'Anak', 'victorjulius@student.ub.ac.id', '-'), +(73, 'Gindy Aulia Mustikasari', 'PPDS', 'Anak', 'gindyaulia@student.ub.ac.id', '-'), +(74, 'Izdihar Rahmadinda', 'PPDS', 'Anak', 'izdiharr@student.ub.ac.id', '-'), +(75, 'Vennia Riskia Tristianti', 'PPDS', 'Anak', 'venniariskia@student.ub.ac.id', '-'), +(76, 'Nova Lestarina Ayu Aisyah', 'PPDS', 'Anak', 'novalestarina@student.ub.ac.id', '-'), +(77, 'Raymundus Florentino Mariano Pareira', 'PPDS', 'Anak', 'tanmundo@student.ub.ac.id', '-'), +(78, 'GALIH CAKRAYUDA THOHARI', 'PPDS', 'Anak', 'galihcakrayuda@student.ub.ac.id', '-'), +(79, 'Merisa Purnama Sari', 'PPDS', 'Anak', 'merisapurnama@student.ub.ac.id', '-'), +(80, 'Retna Gumilang', 'PPDS', 'Anak', 'retnagumilang@student.ub.ac.id', '-'), +(81, 'Hanum Afdhilla Lubis', 'PPDS', 'Anak', 'hanumafdhilla@student.ub.ac.id', '-'), +(82, 'Natashya Phillipa Nanda Ngasu', 'PPDS', 'Anak', 'natashyangasu17@student.ub.ac.id', '-'), +(83, 'Ari Viandri Wismananda', 'PPDS', 'Anak', 'ariviandri@student.ub.ac.id', '-'), +(84, 'Safira Nur Alita Putri', 'PPDS', 'Anak', 'safiranur@student.ub.ac.id', '-'), +(85, 'Annisa Setyautami', 'PPDS', 'Anak', 'asetyautami@student.ub.ac.id', '-'), +(86, 'Anindita Gatiningrum', 'PPDS', 'Anak', 'aninditagt96@student.ub.ac.id', '-'), +(87, 'Fakhri Abid Abdulhadi', 'PPDS', 'Anak', 'fakhriabid@student.ub.ac.id', '-'), +(88, 'Hashfi Mafazi', 'PPDS', 'Anak', 'hashfimafazi@student.ub.ac.id', '-'), +(89, 'Krist Nathania Benita', 'PPDS', 'Anak', 'drnathan@student.ub.ac.id', '-'), +(90, 'Desi Nur Anggraini', 'PPDS', 'Anak', 'desinanggraini@student.ub.ac.id', '-'), +(91, 'Adelia Listiana Dewi', 'PPDS', 'Anak', 'dewiadelinald@student.ub.ac.id', '-'), +(92, 'Bayu Satyawida Purwanto', 'PPDS', 'Anak', 'satyawida354@student.ub.ac.id', '-'), +(93, 'Della Wachdatul Angela Nurwakhid', 'PPDS', 'Anak', 'dellaangela@student.ub.ac.id', '-'), +(94, 'Gabriela Nativity', 'PPDS', 'Anak', 'gabrielanat@student.ub.ac.id', '-'), +(95, 'MUMTAZA NOOR ASHILA', 'PPDS', 'Anak', 'mumtazanoora@student.ub.ac.id', '-'), +(96, 'Arum Sulistyarini', 'PPDS', 'Anak', 'arumsulis7@student.ub.ac.id', '-'), +(97, 'Luisa Vinadiya', 'PPDS', 'Anak', 'luisavinadiya@student.ub.ac.id', '-'), +(98, 'Ikmalun Natiq', 'PPDS', 'Anak', 'ikmalun_natiq@student.ub.ac.id', '-'), +(99, 'Delfian Oktatugara Rayes', 'PPDS', 'Anak', 'delfianrayes@student.ub.ac.id', '-'), +(100, 'Almira Pramadhani', 'PPDS', 'Anak', 'almiraprama@student.ub.ac.id', '-'), +(101, 'Hardin Bin Baharuddin', 'PPDS', 'Anak', 'ardinneo19@student.ub.ac.id', '-'), +(102, 'dr. Artono Isharanto, Sp B,. Sp BTKV', 'DPJP', 'Bedah TKV', 'a.isharanto@ub.ac.id', 'a.isharanto@gmail.com'), +(103, 'dr. Koernia Kusuma Wardhana, Sp.BTKV(K)-VE', 'DPJP', 'Bedah TKV', 'masbobby1984@ub.ac.id', ''), +(104, 'dr Imam Suseno, Sp BTKV', 'DPJP', 'Bedah TKV', 'bayu_romanisti@ub.ac.id', '-'), +(105, 'dr.Gracelia Ruth Elisabeth D,Sp.B.TKV, M.Med.', 'DPJP', 'Bedah TKV', 'graceliadamanik@ub.ac.id', '-'), +(106, 'dr. Chaidar Muttaqin, Sp.B.T.K.V', 'DPJP', 'Bedah TKV', '-', 'chaidarmuttaqin@gmail.com'), +(107, 'Dr. dr. Farhad Baliatif, Sp BS (K)', 'DPJP', 'Bedah Syaraf Pediatri', '-', '-'), +(108, 'dr. Doni Wisnu Wardhana, Sp BS', 'DPJP', 'Bedah Syaraf Onkologi', '-', '-'), +(109, 'Dr. med. dr. Tommy Alfandy Nazwar, Sp.BS(K)', 'DPJP', 'Bedah Syaraf Spine', 'tommy@ub.ac.id', 'tommyns1311@yahoo.com\nbedahsarafmalang@yahoo.com'), +(110, 'Dr. dr. Farhad Bal\'Afif, Sp.BS', 'DPJP', 'Bedah Syaraf', 'farblf@ub.ac.id', 'farblf@rocketmail.com\nbedahsarafmalang@yahoo.com'), +(111, 'dr. Mohammad Zakaria Shahab, Sp.BS', 'DPJP', 'Bedah Syaraf', '-', 'dr.zakariaashahab2@gmail.com'), +(112, 'dr. Setyo Sugiharto, Sp. B-KBDย ', 'DPJP', 'Bedah Digestive', 'setyosugiarto@ub.ac.id', 'setyo.sugiharto77@gmail.com\ndigestif.malang@gmail.com'), +(113, 'Dr. dr. Aries Budianto, Sp.B-KBD', 'DPJP', 'Bedah Digestive', 'ariesb.bdmlg@ub.ac.id', 'ariesb.bdmlg@gmail.com\ndigestif.malang@gmail.com'), +(114, 'dr. Heru Sulistyo, Sp. B-KBD', 'DPJP', 'Bedah Digestive', 'herusulistyo70@ub.ac.id', 'herusulistyo70@gmail.com'), +(115, 'dr. M. S. Niam, M.Kes, Sp.B-KBD', 'DPJP', 'Bedah Digestive', 'm2sniam@ub.ac.id', 'm2sniam@yahoo.com'), +(116, 'dr. Dwicha Rahmawansa Siswardana, Sp.B-KBD', 'DPJP', 'Bedah Digestive', 'dwicha2783.fk@ub.ac.id', 'dwicha@yahoo.com'), +(117, 'dr. Wahyu Harisanyoto, Sp.B.KBD', 'DPJP', 'Bedah Digestive', '-', 'wahyu.harisanyoto@gmail.com'), +(118, 'dr. Herman Josep Limpat, Sp BP ย– RE', 'DPJP', 'Bedah Plastik', 'wihastyoko@ub.ac.id', 'wihastyoko@yahoo.com'), +(119, 'dr. Arviansyah, Sp BP, RE', 'DPJP', 'Bedah Plastik', 'arvianbedahplas@ub.ac.id', '-'), +(120, 'dr. Wilma Agustina, Sp.B.P.R.E', 'DPJP', 'Bedah Plastik', 'wilmaagustina@ub.ac.id', '-'), +(121, 'dr. Yudi Siswanto, MSc, M.Ked.Klin., Sp.B.P.R.Eย ', 'DPJP', 'Bedah Plastik', 'yudi.siswanto@ub.ac.id', '-'), +(122, 'dr. Elisabeth Prajanti Sintaningrum, Sp.B.P.R.E', 'DPJP', 'Bedah Plastik', 'sintaningrum@ub.ac.id', 'sintaningrum@yahoo.com'), +(123, 'dr. Santi Devina, Sp.BP-RE', 'DPJP', 'Bedah Plastik', '-', 'Devina.santi.dr@gmail.com'), +(124, 'dr. Robertus Arian Datusanantyo, MPH, MKed, Klin., SpBPRE, Subsp.K.M.(K)', 'DPJP', 'Bedah Plastik', 'arian@lec.ub.ac.id', '-'), +(125, 'dr. Lulik Inggarwati, Sp B,. Sp BA Anakย ', 'DPJP', 'Bedah Anak', 'matahari63@ub.ac.id', 'ell_ing@yahoo.co.id\nbedahanak_fkub@yahoo.com'), +(126, 'dr. Widanto, Sp B,. Sp BA', 'DPJP', 'Bedah Anak', 'widanto@ub.ac.id', 'widanto@ymail.com'), +(127, 'dr. Sinung Wikanandi, Sp. BA', 'DPJP', 'Bedah Anak', 'sinung.wikanadi@ub.ac.id', 'sinung.wikanadi@gmail.com'), +(128, 'dr. Ririd Tri Pitaka, Sp.BA', 'DPJP', 'Bedah Anak', '-', 'riridtripitaka@gmail.com'), +(129, 'Dr. dr. Mochamad Bachtiar Budianto, Sp.B(K)Onk', 'DPJP', 'Bedah Onkologi', 'bachtiarb@ub.ac.id', 'bachtiarbudianto@yahoo.com'), +(130, 'dr. Hery Susilo, Sp.B(K)Onk', 'DPJP', 'Bedah Onkologi', 'herysusilo@ub.ac.id', 'herysusilo_surgeon@yahoo.com'), +(131, 'dr. Sidho Hantoko, Sp.B(K)Onk', 'DPJP', 'Bedah Onkologi', 'sidhohantoko@ub.ac.id', 'sidhohantoko@yahoo.co.id'), +(132, 'dr. Dian Pratiwi, Sp.B., Subsp.Onk.(K)', 'DPJP', 'Bedah Onkologi', 'depe_1104@ub.ac.id', '-'), +(133, 'dr. Feri Nugroho, Sp.B(K)Onk', 'DPJP', 'Bedah Onkologi', '-', 'Ferinugrohobedah@gmail.com'), +(134, 'dr. Aditya Rachmat Febrianto, Sp.B.', 'DPJP', 'Bedah', 'adityaeref19@ub.ac.id', '-'), +(135, 'dr. Nurudin Syahadat, Sp.B', 'DPJP', 'Bedah', '-', 'nsyahadat@gmail.com'), +(136, 'dr. Hananta Sudibyoko, Sp.B', 'DPJP', 'Bedah', '-', 'hanantasudibyoko@yahoo.com'), +(137, 'dr. Rizki Hanifan Nugraha, Sp.B', 'DPJP', 'Bedah', '-', 'hanifansurgeon@gmail.com'), +(138, 'dr. Andreas Rendra, Sp.B', 'DPJP', 'Bedah', '-', 'andredoctor707707@gmail.com'), +(139, 'dr. Primana Setya Nugraha, MPH., Sp.B.', 'DPJP', 'Bedah', '-', 'dr.primana@gmail.com'), +(140, 'dr. Damian Dwi Rahadi, Sp.B.,M.Ked.Klin', 'DPJP', 'Bedah', '-', 'damian2rahadi@gmail.com'), +(141, 'dr. Albert Linardy, Sp.B', 'DPJP', 'Bedah', '-', 'docal291081@gmail.com'), +(142, 'dr. Zaki Yamani, Sp.B', 'DPJP', 'Bedah', '-', 'zakionesl1@gmail.com'), +(143, 'Rr. Theodora Ratih Labdagati Iswara', 'PPDS', 'Bedah Plastik Rekonstruksi dan Estetik', 'theodoraratih@student.ub.ac.id', '-'), +(144, 'Kinanti Ken Larasati', 'PPDS', 'Bedah Plastik Rekonstruksi dan Estetik', 'kenlarasati@student.ub.ac.id', '-'), +(145, 'Maria Karina Jaya Suwana', 'PPDS', 'Bedah Plastik Rekonstruksi dan Estetik', 'mariakarinajs@student.ub.ac.id', '-'), +(146, 'Mutiara Aprilia Senolinggi', 'PPDS', 'Bedah Plastik Rekonstruksi dan Estetik', 'mutiaraprilias@student.ub.ac.id', '-'), +(147, 'Angela Djunaedi', 'PPDS', 'Bedah Plastik Rekonstruksi dan Estetik', 'angeladjunaedi@student.ub.ac.id', '-'), +(148, 'Fitria Trisna Putri', 'PPDS', 'Bedah Plastik Rekonstruksi dan Estetik', 'fitriatrisnap@student.ub.ac.id', '-'), +(149, 'Michele Gondokesumo', 'PPDS', 'Bedah Plastik Rekonstruksi dan Estetik', 'michelegondo05@student.ub.ac.id', '-'), +(150, 'Wening Hapsari', 'PPDS', 'Bedah Plastik Rekonstruksi dan Estetik', 'weninghapsari@student.ub.ac.id', '-'), +(151, 'riestya arum pemata', 'PPDS', 'Bedah Plastik Rekonstruksi dan Estetik', 'riestyaarump@student.ub.ac.id', '-'), +(152, 'Marina Tandarto', 'PPDS', 'Bedah Plastik Rekonstruksi dan Estetik', 'rinatandarto@student.ub.ac.id', '-'), +(153, 'Farida Dwi Irnawati', 'PPDS', 'Ilmu Bedah', 'farida310792@student.ub.ac.id', '-'), +(154, 'Amrina Rosyada', 'PPDS', 'Ilmu Bedah', 'rosyadamrina@student.ub.ac.id', '-'), +(155, 'Dr. Etna Irianti Putri', 'PPDS', 'Ilmu Bedah', 'etnairianti@student.ub.ac.id', '-'), +(156, 'Kevin Horas', 'PPDS', 'Ilmu Bedah', 'kevinhoras@student.ub.ac.id', '-'), +(157, 'ERIC YAYANG SUHANDA', 'PPDS', 'Ilmu Bedah', 'ericyayang@student.ub.ac.id', '-'), +(158, 'Nan Bareno Chairus', 'PPDS', 'Ilmu Bedah', 'barenbareno@student.ub.ac.id', '-'), +(159, 'Akhmad Ferro Avisena', 'PPDS', 'Ilmu Bedah', 'ferroavisena@student.ub.ac.id', '-'), +(160, 'Sabrinadia H. Hantoko', 'PPDS', 'Ilmu Bedah', 'sabrinahanareta@student.ub.ac.id', '-'), +(161, 'IBRAHIM YUSUF NASUTION', 'PPDS', 'Ilmu Bedah', 'baimyusuf@student.ub.ac.id', '-'), +(162, 'dr. Polce Dicky Sampelimbong', 'PPDS', 'Ilmu Bedah', 'polcedicky@student.ub.ac.id', '-'), +(163, 'Faizal Makharim', 'PPDS', 'Ilmu Bedah', 'faizal93@student.ub.ac.id', '-'), +(164, 'Avan Guntur Satriawan', 'PPDS', 'Ilmu Bedah', 'avanguntur@student.ub.ac.id', '-'), +(165, 'Aprianda Saputra', 'PPDS', 'Ilmu Bedah', 'aprianda@student.ub.ac.id', '-'), +(166, 'Hari Sudrajat', 'PPDS', 'Ilmu Bedah', 'harisudrajat116@student.ub.ac.id', '-'), +(167, 'Fazlur Risyad Laochi', 'PPDS', 'Ilmu Bedah', 'risyadlaochi@student.ub.ac.id', '-'), +(168, 'Satria Candra Kusuma', 'PPDS', 'Ilmu Bedah', 'satriadiva2022@student.ub.ac.id', '-'), +(169, 'SOVIANA MAHDIYAKSA', 'PPDS', 'Ilmu Bedah', 'soviana89@student.ub.ac.id', '-'), +(170, 'Wahju Sigit Tjahjono Putro', 'PPDS', 'Ilmu Bedah', 'wahjusigit@student.ub.ac.id', '-'), +(171, 'Hanif Yusroni', 'PPDS', 'Ilmu Bedah', 'hanifyusroni@student.ub.ac.id', '-'), +(172, 'Kevin Octavian', 'PPDS', 'Ilmu Bedah', 'kevinocta08@student.ub.ac.id', '-'), +(173, 'Arief Suhadi', 'PPDS', 'Ilmu Bedah', 'ariefsuhadi@student.ub.ac.id', '-'), +(174, 'Andri Markhoni Permana', 'PPDS', 'Ilmu Bedah', 'andrimp@student.ub.ac.id', '-'), +(175, 'ARIF PRIANGGARA', 'PPDS', 'Ilmu Bedah', 'arifprianggara@student.ub.ac.id', '-'), +(176, 'Danar Fahmi Sudarsono', 'PPDS', 'Ilmu Bedah', 'danarfs@student.ub.ac.id', '-'), +(177, 'bramantya andyatma', 'PPDS', 'Ilmu Bedah', 'bramayu542019@student.ub.ac.id', '-'), +(178, 'M Arif Kurniawan', 'PPDS', 'Ilmu Bedah', 'marifkurniawan@student.ub.ac.id', '-'), +(179, 'Nugroho Sondrio Harsono', 'PPDS', 'Ilmu Bedah', 'sondrio@student.ub.ac.id', '-'), +(180, 'Kresna Ardinugraha Widayat', 'PPDS', 'Ilmu Bedah', 'kresna_widayat@student.ub.ac.id', '-'), +(181, 'Mohammad Rizki', 'PPDS', 'Ilmu Bedah', 'tigorrizky@student.ub.ac.id', '-'), +(182, 'Teuku Harmawansyah', 'PPDS', 'Ilmu Bedah', 'teukuh1992@student.ub.ac.id', '-'), +(183, 'Jessy Teressa Yang', 'PPDS', 'Ilmu Bedah', 'jessyteressa@student.ub.ac.id', '-'), +(184, 'Noerdian Syah', 'PPDS', 'Ilmu Bedah', 'noerdian@student.ub.ac.id', '-'), +(185, 'Jonathan Hartanto', 'PPDS', 'Ilmu Bedah', 'jonathan89@student.ub.ac.id', '-'), +(186, 'Koernia Hezkia Yonathan', 'PPDS', 'Ilmu Bedah', 'koerniahezkia@student.ub.ac.id', '-'), +(187, 'Muh. Kafabillah', 'PPDS', 'Ilmu Bedah', 'mkafabillah@student.ub.ac.id', '-'), +(188, 'Riz\'q Threevisca Chriswantara', 'PPDS', 'Ilmu Bedah', 'rizqtchris@student.ub.ac.id', '-'), +(189, 'Sebastian Ahmad', 'PPDS', 'Ilmu Bedah', 'sebastianahmad@student.ub.ac.id', '-'), +(190, 'Goustaf Pandy Hatta', 'PPDS', 'Ilmu Bedah', 'goustafpandy@student.ub.ac.id', '-'), +(191, 'muhammad hilman bimadi', 'PPDS', 'Ilmu Bedah', 'mhilmanbimadi@student.ub.ac.id', '-'), +(192, 'Dwi Cahya Ramadhan Pranoto', 'PPDS', 'Ilmu Bedah', 'yayanramadhan@student.ub.ac.id', '-'), +(193, 'Darmandaru Nugroho', 'PPDS', 'Ilmu Bedah', 'darmandarudr@student.ub.ac.id', '-'), +(194, 'Alvin Rifqy', 'PPDS', 'Ilmu Bedah', 'alvinrifqymd@student.ub.ac.id', '-'), +(195, 'Cindy Alverina', 'PPDS', 'Ilmu Bedah', 'cindyalv@student.ub.ac.id', '-'), +(196, 'Chelsea Gabriella Gunawan', 'PPDS', 'Ilmu Bedah', 'chelseagunawan@student.ub.ac.id', '-'), +(197, 'Tea Karina Sudharso', 'PPDS', 'Ilmu Bedah', 'tkarinas@student.ub.ac.id', '-'), +(198, 'Sely Maks', 'PPDS', 'Ilmu Bedah', 'selymaks@student.ub.ac.id', '-'), +(199, 'Amaro Yudho Wibowo', 'PPDS', 'Ilmu Bedah', 'amaroyudho@student.ub.ac.id', '-'), +(200, 'Aditya Arifudin Bachtiar', 'PPDS', 'Ilmu Bedah', 'aditya_ab@student.ub.ac.id', '-'), +(201, 'Shafri Nahdi', 'PPDS', 'Ilmu Bedah', 'shafrinahdi@student.ub.ac.id', '-'), +(202, 'Mudzakkir Taufiqur Rahman', 'PPDS', 'Ilmu Bedah', 'taufiqsurgeon@student.ub.ac.id', '-'), +(203, 'Putri Lissanawidya', 'PPDS', 'Ilmu Bedah', 'putrilissa@student.ub.ac.id', '-'), +(204, 'Geovan Hananto', 'PPDS', 'Ilmu Bedah', 'geohanantosurg@student.ub.ac.id', '-'), +(205, 'Imam Faiq Habibur Rohman', 'PPDS', 'Ilmu Bedah', 'faiqhr@student.ub.ac.id', '-'), +(206, 'Dr. dr. Arif Widiatmoko, Sp.KK(K)', 'DPJP', 'Dermatologi', 'arif_fk@ub.ac.id', '-'), +(207, 'Dr. dr. Sinta Murlistyarini, Sp.KK(K)', 'DPJP', 'Dermatologi', 'sintamur@ub.ac.id', '-'), +(208, 'dr. Dhany Prafita Ekasari, Sp.KK', 'DPJP', 'Dermatologi', 'dhany_prafita@ub.ac.id', 'dhanyprafita@yahoo.com'), +(209, 'dr. Herwinda Brahmanti, Sp.KK(K), M.Sc', 'DPJP', 'Dermatologi', 'dr_herwinda@ub.ac.id', '-'), +(210, 'dr. Anggun Putri Yuniaswan, Sp.KK', 'DPJP', 'Dermatologi', 'anggun@ub.ac.id', '-'), +(211, 'Dr. dr. Dhelya Widasmara, Sp.KK(K)', 'DPJP', 'Dermatologi', 'dhelyawidasmara@ub.ac.id', 'dhelyawidasmara@gmail.com'), +(212, 'Dr. dr. Boedhy Setyanto, Sp.KK', 'DPJP', 'Dermatologi', 'boedhysetyanto@ub.ac.id', 'dearenzy@yahoo.com'), +(213, 'dr. Intan Wasaputri Donoseputro, Sp.D.V.', 'DPJP', 'Dermatologi', 'intanwasap@ub.ac.id', ''), +(214, 'dr. Lita Setyowatie, Sp.KK(K)', 'DPJP', 'Dermatologi', 'lita84dv@ub.ac.id', 'lita_centik@yahoo.com'), +(215, 'dr. Suci Prawitasari, Sp.KK(K)', 'DPJP', 'Dermatologi', 'suci_prawitasari@ub.ac.id', 'dr.suci.p@gmail.com'), +(216, 'dr. Santosa Basuki, Sp.KK(K)', 'DPJP', 'Dermatologi', '-', 'sant911@yahoo.com'), +(217, 'dr. Sekar Puspita Lilasari, Sp.KK', 'DPJP', 'Dermatologi', '-', 'drsekarpuspita@gmail.com'), +(218, 'dr. Marta Dwi Rifka, Sp.KK', 'DPJP', 'Dermatologi', '-', 'dwirifkamarta@gmail.com'), +(219, 'dr. Adinda Amalia Dani, Sp.DV', 'DPJP', 'Dermatologi', '-', 'adinda.amaliadani@gmail.com'), +(220, 'dr. Aunur Rofiq, Sp.D.V.E., Subsp. D.A.I., FINSDV, FAADV', 'DPJP', 'Dermatologi', 'aunurrofiq.fk@ub.ac.id', 'aunurrofiq.fk@ub.ac.id\nqiphor@yahoo.com'), +(221, 'Dyah Ayu Sakinah', 'PPDS', 'Dermatologi', 'dyahayusakinah@student.ub.ac.id', '-'), +(222, 'Thalia Virgina Putri Suharli', 'PPDS', 'Dermatologi', 'thaliasuharli@student.ub.ac.id', '-'), +(223, 'Deriel Elka Hidayat', 'PPDS', 'Dermatologi', 'derielelka@student.ub.ac.id', '-'), +(224, 'Nadia Aprilia Fitriana', 'PPDS', 'Dermatologi', 'nadiaaprilia92@student.ub.ac.id', '-'), +(225, 'SEPTINA YOSEPHINE', 'PPDS', 'Dermatologi', 'josesamosir89@student.ub.ac.id', '-'), +(226, 'Mugi Restiana Utami', 'PPDS', 'Dermatologi', 'mugirestiana@student.ub.ac.id', '-'), +(227, 'Epifania Fitriana Adna', 'PPDS', 'Dermatologi', 'epifania@student.ub.ac.id', '-'), +(228, 'Arika Latashia Adelia', 'PPDS', 'Dermatologi', 'arikalatashia@student.ub.ac.id', '-'), +(229, 'Purna Dwi Saputra', 'PPDS', 'Dermatologi', 'purnasaputra@student.ub.ac.id', '-'), +(230, 'Rhea Tiara Dinata', 'PPDS', 'Dermatologi', 'drheatiara@student.ub.ac.id', '-'), +(231, 'M. Edel Dwiputra Prawira', 'PPDS', 'Dermatologi', 'edeldwiputra10@student.ub.ac.id', '-'), +(232, 'Fitriani Widhiastuti', 'PPDS', 'Dermatologi', 'fitrianiw150588@student.ub.ac.id', '-'), +(233, 'RASINTA AYUDYA DELTANIA, dr.', 'PPDS', 'Dermatologi', 'rasintadeltania@student.ub.ac.id', '-'), +(234, 'Pradissa Avia Emeralda', 'PPDS', 'Dermatologi', 'emeralda@student.ub.ac.id', '-'), +(235, 'Astrid Amanda Wahyu Putri', 'PPDS', 'Dermatologi', 'astridamandawp@student.ub.ac.id', '-'), +(236, 'Mita Permatasari Araminta', 'PPDS', 'Dermatologi', 'mita_pa97@student.ub.ac.id', '-'), +(237, 'Puspita Sari', 'PPDS', 'Dermatologi', 'puspitasari@student.ub.ac.id', '-'), +(238, 'Paul Michael Enrico Tansir', 'PPDS', 'Dermatologi', 'pauldvejan25@student.ub.ac.id', '-'), +(239, 'Alvina Ulfah Rusmayuni', 'PPDS', 'Dermatologi', 'alvinarusmayuni@student.ub.ac.id', '-'), +(240, 'Dedy Budi Kurniawan', 'PPDS', 'Dermatologi', 'dedybudik@student.ub.ac.id', '-'), +(241, 'TAVIA YULIASTUTI PRASTIKA', 'PPDS', 'Dermatologi', 'taviayp@student.ub.ac.id', '-'), +(242, 'Taneya Putri Zahra', 'PPDS', 'Dermatologi', 'taneyazahra@student.ub.ac.id', '-'), +(243, 'Detris Visiadina', 'PPDS', 'Dermatologi', 'detris@student.ub.ac.id', '-'), +(244, 'Safira Firdaus', 'PPDS', 'Dermatologi', 'safirafirdaus@student.ub.ac.id', '-'), +(245, 'Viga Resfikasari', 'PPDS', 'Dermatologi', 'resfika@student.ub.ac.id', '-'), +(246, 'Desty Permataningtyas', 'PPDS', 'Dermatologi', 'desty121290@student.ub.ac.id', '-'), +(247, 'Marshandyar Aisha Dwitarahma', 'PPDS', 'Dermatologi', 'marshandyarad26@student.ub.ac.id', '-'), +(248, 'Dr.dr. Tatit Nurseta, Sp.OG (K)ย ', '', 'Obsgyn', 'tns_obg.fk@ub.ac.id', ''), +(249, 'dr. Yahya Irwanto, Sp.OG (K)', '', 'Obsgyn', 'yahyairwanto50@ub.ac.id', ''), +(250, 'Dr.dr. I Wayan Arsana Wiyasa, Sp.OG (K)ย ', '', 'Obsgyn', 'arSp.OG.fk@ub.ac.id', ''), +(251, 'dr. Pande Made Dwi Jayasa, Sp.OG (K)ย ', '', 'Obsgyn', 'pmd_obg.fk@ub.ac.id', ''), +(252, 'dr. Sutrisno, Sp.OG (K)', '', 'Obsgyn', 'snoSp.OG.fk@ub.ac.id', ''), +(253, 'dr. Hermawan Wibisono, Sp.OG (K)PhD', '', 'Obsgyn', 'sonspog.fk@ub.ac.id', ''), +(254, 'Dr. dr. Bambang Rahardjo, Sp.OG (K)', '', 'Obsgyn', 'bar_obg.fk@ub.ac.id', ''), +(255, 'Dr. dr. Nugrahanti Prasetyorini, Sp.OG (K)ย ', '', 'Obsgyn', 'nuke_obg.fk@ub.ac.id', ''), +(256, 'dr. Mukhamad Nooryanto, Sp.OG (K)', '', 'Obsgyn', 'mor_feto.fk@ub.ac.id', ''), +(257, 'dr. Suheni Ninik Hariyati, Sp.OG', '', 'Obsgyn', 'suheni.fk@ub.ac.id', ''), +(258, 'dr. Anggia Prameswari, Sp. OG', '', 'Obsgyn', '-', ''), +(259, 'Dr. dr. Edi Mustofa, Sp.OG (K)', '', 'Obsgyn', '-', ''), +(260, 'DR. dr. Rahajeng, Sp. OG (K)ย ', '', 'Obsgyn', 'rahajeng.fk@ub.ac.id', ''), +(261, 'dr. Rudi Priyo Utomo, Sp.OG', '', 'Obsgyn', '-', ''), +(262, 'Dr. dr. I Wayan Agung Indrawan, Sp.OG(K)', '', 'Obsgyn', 'dr_iwa.fk@ub.ac.id', ''), +(263, 'dr. Adityo Prabowo, Sp.OG, M.Ked.Klin', '', 'Obsgyn', 'adityoprabowo@ub.ac.id', ''), +(264, 'dr. Arghya Wicaksana, Sp.OG.', '', 'Obsgyn', 'arghya@ub.ac.id', ''), +(265, 'dr. Cholid Rohman Riskianto, Sp.OG', '', 'Obsgyn', '-', ''), +(266, 'dr. Irfani Baihaqi, Sp.OG', '', 'Obsgyn', '-', ''), +(267, 'dr. Eka Nasrur Maulana, Sp.OG', '', 'Obsgyn', '-', ''), +(268, 'dr. Fatmasari Perdana Menur, Sp.OG', '', 'Obsgyn', '-', ''), +(269, 'dr. Nirmala Gina Prabawati, Sp.OG', '', 'Obsgyn', '-', ''), +(270, 'dr. Onni Dwi Arianto, Sp.OG', '', 'Obsgyn', '-', ''), +(271, 'dr. Puspita Handayani, Sp.OG(K)', '', 'Obsgyn', '-', ''), +(272, 'dr. Roni Subrata, Sp.OG', '', 'Obsgyn', '-', ''), +(273, 'dr. Teguh Wiyono, Sp.OG', '', 'Obsgyn', '-', ''), +(274, 'dr. Handi Firmansyah, Sp.OG, M.Ked.Klin', '', 'Obsgyn', '-', ''), +(275, 'dr. Dhian Eka Putri Harnandari, Sp.OG', '', 'Obsgyn', '-', ''), +(276, 'dr. Aditya Fendi Uji Pamungkas, Sp.OG', '', 'Obsgyn', '-', ''), +(277, 'dr. Mulyo Hadi Wibowo, Sp.OG', '', 'Obsgyn', '-', ''), +(278, 'dr. Adin Yan Permana, Sp.OG', '', 'Obsgyn', '-', ''), +(279, 'dr. Mochamad Putro Argo, Sp.OG', '', 'Obsgyn', '-', ''), +(280, 'dr. Margaretha Claudhya Febryanna, Sp.OG, M.Ked.Klin', '', 'Obsgyn', '-', ''), +(281, 'dr. Sasmojo Widito, SpJP (K)', '', 'Jantung', 'sasmojowidito@ub.ac.id', ''), +(282, 'dr. Valerinna Yogibuana Swastika Putri, SpJP(K)', '', 'Jantung', 'valerinnaysp@ub.ac.id', ''), +(283, 'Prof. dr. M. Saifur Rohman, SpJP (K), PhDย ', '', 'Jantung', 'ippoenk@ub.ac.id', ''), +(284, 'dr. Ardian Rizal, SpJP (K)', '', 'Jantung', 'drardianrizal@ub.ac.id', ''), +(285, 'dr. Anna Fuji Rahimah, SpJP (K)', '', 'Jantung', 'drannafuji@ub.ac.id', ''), +(286, 'dr. Cholid Tri Tjahjono, M.Kes, SpJP (K)', '', 'Jantung', 'cholidtri@ub.ac.id', ''), +(287, 'dr. Heny Martini, SpJP (K)ย ', '', 'Jantung', 'henymartini@ub.ac.id', ''), +(288, 'dr. Budi Satrijo, SpJP (K)', '', 'Jantung', 'budisatrijo@ub.ac.id', ''), +(289, 'dr. Novi Kurnianingsih, SpJP (K)ย ', '', 'Jantung', 'novikur@ub.ac.id', ''), +(290, 'dr. Indra Prasetya, SpJP (K)', '', 'Jantung', 'indraprasetya@ub.ac.id', ''), +(291, 'dr. Veny Mayangsari, SpJP', '', 'Jantung', '-', ''), +(292, 'dr. Setyasih Anjarwani, SpJP (K)', '', 'Jantung', 'setyasih@ub.ac.id', ''), +(293, 'dr. Adhika Prastya Wikananda, SpJPย ', '', 'Jantung', '-', ''), +(294, 'dr. Wella Karolina, SpJP (K)', '', 'Jantung', 'wella.karolina@ub.ac.id', ''), +(295, 'dr. Yoga Waranugraha, Sp.JP, Subp.Ar.(K)', '', 'Jantung', 'mr.waranugraha@ub.ac.id', ''), +(296, 'Prof. Dr. dr. Djanggan Sargowo, Sp.PD, Sp.JP(K)', '', 'Jantung', 'djanggan@ub.ac.id', ''), +(297, 'Dr. dr. Saskia Dyah Handari, Sp.JP(K)', '', 'Jantung', '-', ''), +(298, 'dr. Arief Wibisono, Sp.JP', '', 'Jantung', '-', ''), +(299, 'dr. Evit Ruspiono, Sp.JP', '', 'Jantung', '-', ''), +(300, 'dr. Tri Astiawaty, Sp.JP', '', 'Jantung', 'triastiawati@ub.ac.id', ''), +(301, 'dr. Adriyawan Widya Nugraha, Sp.JP(K)', '', 'Jantung', '-', ''), +(302, 'dr. Andi Wahjono Adi, Sp.JP(K)', '', 'Jantung', '-', ''), +(303, 'dr. Fitranti Suciati Laitupa, Sp.JP(K)', '', 'Jantung', '-', ''), +(304, 'dr. Dea Arie Kurniawan, Sp.JP', '', 'Jantung', 'dea.kurniawanlec.ub.ac.id', ''), +(305, 'Dr. dr. Susanthy Dj, Sp.P (K)ย ', '', 'Paru', 'susanthy@ub.ac.id', ''), +(306, 'dr. Aditya Sp.P', '', 'Paru', '-', ''), +(307, 'dr. Ungky Agus Setyawan, Sp.P (K)ย ', '', 'Paru', 'dr_ungky_paru@ub.ac.id', ''), +(308, 'dr. Suryanti Dwi Pratiwi, Sp.P (K)', '', 'Paru', 'suryanti@ub.ac.id', ''), +(309, 'dr. Ngakan Putu P Putra, Sp.P (K)', '', 'Paru', 'ngakanputu@ub.ac.id', ''), +(310, 'dr. Rezki Tantular, Sp.P (K)', '', 'Paru', '-', ''), +(311, 'dr. Triwahju Astuti, M.Kes, Sp.P (K)', '', 'Paru', 'astuti@ub.ac.id', ''), +(312, 'dr. Iin Noor Chozin, Sp.P', '', 'Paru', 'iin@ub.ac.id', ''), +(313, 'dr. Sastia Rakhma, Sp.P', '', 'Paru', 'sastiarakhma@ub.ac.id', ''), +(314, 'dr. Fitri Indah Sari, Sp.P', '', 'Paru', 'fitrindahs1705@ub.ac.id', ''), +(315, 'dr. Aditya Sri Listyoko, Sp.P(K)', '', 'Paru', 'adityalistyoko@ub.ac.id', ''), +(316, 'Dr. dr. Jani Jane Rosihaningsih Sugiri, Sp.P(K)', '', 'Paru', 'jani@ub.ac.id', ''), +(317, 'dr. Deden Permana, Sp.P', '', 'Paru', '-', ''), +(318, 'dr. Yunita Eka Wati, Sp.P', '', 'Paru', '-', ''), +(319, 'dr. Christian Surya Eka Putra, Sp.P', '', 'Paru', '-', ''), +(320, 'dr. Muhamad Yusuf Musthafa, Sp.P', '', 'Paru', '-', ''), +(321, 'dr. Didi Candradikusuma, Sp.P.D,K-PTIย ', '', 'IPD', 'didi_candradikusuma.fk@ub.ac.id', ''), +(322, 'Dr.dr. Cesarius Singgih Wahono, Sp.P.D,K-Rย ', '', 'IPD', 'singgih_wahono.fk@ub.ac.id', ''), +(323, 'Dr. dr. Sri Soenarti, Sp.P.D., K-Ger', '', 'IPD', 'sri_sunarti.fk@ub.ac.id', ''), +(324, 'dr. Laksmi Sasiarini, Sp.P.D., K-EMD', '', 'IPD', 'laksmi_sasiarini@ub.ac.id', ''), +(325, 'dr. Herwindo Pudjo Brahmantyo, Sp.P.D., K-HOMย ', '', 'IPD', 'herwindopudjo.ipd@ub.ac.id', ''), +(326, 'dr. Rulli Rosandi, Sp.P.D., K-EMD', '', 'IPD', 'rulliendokrin@ub.ac.id', ''), +(327, 'dr. Bagus Putu Putra Suryana, Sp.PD,K-R', '', 'IPD', 'putra_suryana@ub.ac.id', ''), +(328, 'dr. Syifa Mustika, Sp.P.D, K-GEH', '', 'IPD', 'drtika_78@ub.ac.id', ''), +(329, 'Dr. dr. Atma Gunawan, Sp.P.D., K-GHย ', '', 'IPD', 'atma_gunawan.fk@ub.ac.id', ''), +(330, 'Dr. dr. Supriono, Sp.P.D,K-GEH', '', 'IPD', 'supriono_ipd.fk@ub.ac.id', ''), +(331, 'dr. Siti Fatma Prehatiningsih, Sp.P.D.', '', 'IPD', '-', ''), +(332, 'dr. Heri Sutanto, Sp.P.D', '', 'IPD', 'herisutanto.ipd@ub.ac.id', ''), +(333, 'dr. Perdana Aditya Rahman, Sp.P.D., K-R', '', 'IPD', 'perdana.aditya@ub.ac.id', ''), +(334, 'dr. Eden Suryoiman Winoto, Sp.P.D', '', 'IPD', 'dreden86.ipd@ub.ac.id', ''), +(335, 'dr. Bogi Pratomo W., Sp.P.D. K-GEH', '', 'IPD', 'bogi_pratomo.fk@ub.ac.id', ''), +(336, 'Dr. dr. Shinta Oktya Wardhani, Sp.P.D., K-HOMย ', '', 'IPD', 'shinta_oktya.fk@ub.ac.id', ''), +(337, 'Dr. Achmad Rifai, Sp.P.D., K-GH', '', 'IPD', 'achmad_rifai.fk@ub.ac.id', ''), +(338, 'Dr. dr. Nur Samsu, Sp.P.D., K-GH', '', 'IPD', 'nur_samsu.fk@ub.ac.id', ''), +(339, 'dr. Nina Nurarifah, Sp.PD, K-HOM', '', 'IPD', 'ninanur@ub.ac.id', ''), +(340, 'dr. Muhammad Anshory, Sp.PD', '', 'IPD', 'muhammadanshory@ub.ac.id', ''), +(341, 'dr. Dewi Indiastari, Sp.PD., K-PTI.', '', 'IPD', 'indiastari@ub.ac.id', ''), +(342, 'dr. Nyoman Satvika Dharma Yudha, Sp.PD., KEMD', '', 'IPD', 'nyomansatvika27@ub.ac.id', ''), +(343, 'dr. Milanitalia Gadys Rosandy, Sp.PD', '', 'IPD', 'milanitalia@ub.ac.id', ''), +(344, 'dr. Mirza Zaka Pratama, M.Biomed, Sp.PD', '', 'IPD', 'mirzapratama@ub.ac.id', ''), +(345, 'dr. Djoko Heri Hermanto, Sp.PD, K-HOM', '', 'IPD', 'djoko_heri.fk@ub.ac.id', ''), +(346, 'Dr. dr. Niniek Budiarti, Sp.PD, K-PTI', '', 'IPD', 'niniek_budiarti.fk@ub.ac.id', ''), +(347, 'dr. Fajar Hadi Wijayanto, Sp.PD', '', 'IPD', 'fajarhadiw@ub.ac.id', ''), +(348, 'Prof. Dr. dr. Achmad Rudijanto, Sp.PD.KEMD', '', 'IPD', 'achmad_rudijanto.fk@ub.ac.id', ''), +(349, 'dr. Erdilian Jodi Putra Pratama, Sp.PD.', '', 'IPD', 'erdilianjodi90@ub.ac.id', ''), +(350, 'dr. Chrisandi Yusuf Rizqiansyah, Sp.PD.', '', 'IPD', 'chrisandi150824@ub.ac.id', ''), +(351, 'dr. Jonny Karunia Fajar, Sp.PD.', '', 'IPD', 'jonnykf@ub.ac.id', ''), +(352, 'dr. Rinadhi Reza Bramantya, Sp.PD, K-EMD', '', 'IPD', 'rezabramantya@ub.ac.id', ''), +(353, 'dr. Putu Moda Arsana, Sp.PD, K-EMD', '', 'IPD', 'putu_moda.fk@ub.ac.id', ''), +(354, 'dr. Mohamad Jasin Jachja, Sp.PD', '', 'IPD', '-', ''), +(355, 'dr. Nuraida Wisudani, Sp.PD', '', 'IPD', '-', ''), +(356, 'dr. Mochamad Fachrureza, Sp.PD', '', 'IPD', '-', ''), +(357, 'dr. Hesti Purwanti, Sp.PD', '', 'IPD', '-', ''), +(358, 'dr. Muhammad Hamdan Yuwaafi, Sp.PD', '', 'IPD', '-', ''), +(359, 'Prof. Dr. dr. Handono Kalim, Sp.PD, K-R', '', 'IPD', '-', ''), +(360, 'dr. Dewi Sri Wulandari, Sp.PD.', '', 'IPD', '-', ''), +(361, 'dr. Rezdy Tofan Bhaskara, Sp.PD.', '', 'IPD', '-', ''), +(362, 'dr. Surya Abadi Kristyoadi, Sp.PD', '', 'IPD', '-', ''), +(363, 'dr. Affa Kysa Waafi, Sp.PD', '', 'IPD', '-', ''), +(364, 'dr. Artono Isharanto, Sp B,. Sp BTKV', '', 'Bedah TKV', 'a.isharanto@ub.ac.id', ''), +(365, 'dr. Koernia Kusuma Wardhana, Sp.BTKV(K)-VE', '', 'Bedah TKV', 'masbobby1984@ub.ac.id', ''), +(366, 'dr Imam Suseno, Sp BTKV', '', 'Bedah TKV', 'bayu_romanisti@ub.ac.id', ''), +(367, 'dr.Gracelia Ruth Elisabeth D,Sp.B.TKV, M.Med.', '', 'Bedah TKV', 'graceliadamanik@ub.ac.id', ''), +(368, 'dr. Chaidar Muttaqin, Sp.B.T.K.V', '', 'Bedah TKV', '-', ''), +(369, 'Dr. dr. Farhad Baliatif, Sp BS (K)', '', 'Bedah Syaraf Pediatri', '-', ''), +(370, 'dr. Doni Wisnu Wardhana, Sp BS', '', 'Bedah Syaraf Onkologi', '-', ''), +(371, 'Dr. med. dr. Tommy Alfandy Nazwar, Sp.BS(K)', '', 'Bedah Syaraf Spine', 'tommy@ub.ac.id', ''), +(372, 'Dr. dr. Farhad Bal\'Afif, Sp.BS', '', 'Bedah Syaraf', 'farblf@ub.ac.id', ''), +(373, 'dr. Mohammad Zakaria Shahab, Sp.BS', '', 'Bedah Syaraf', '-', ''), +(374, 'dr. Setyo Sugiharto, Sp. B-KBDย ', '', 'Bedah Digestive', 'setyosugiarto@ub.ac.id', ''), +(375, 'Dr. dr. Aries Budianto, Sp.B-KBD', '', 'Bedah Digestive', 'ariesb.bdmlg@ub.ac.id', ''), +(376, 'dr. Heru Sulistyo, Sp. B-KBD', '', 'Bedah Digestive', 'herusulistyo70@ub.ac.id', ''), +(377, 'dr. M. S. Niam, M.Kes, Sp.B-KBD', '', 'Bedah Digestive', 'm2sniam@ub.ac.id', ''), +(378, 'dr. Dwicha Rahmawansa Siswardana, Sp.B-KBD', '', 'Bedah Digestive', 'dwicha2783.fk@ub.ac.id', ''), +(379, 'dr. Wahyu Harisanyoto, Sp.B.KBD', '', 'Bedah Digestive', '-', ''), +(380, 'dr. Herman Josep Limpat, Sp BP ย– RE', '', 'Bedah Plastik', 'wihastyoko@ub.ac.id', ''), +(381, 'dr. Arviansyah, Sp BP, RE', '', 'Bedah Plastik', 'arvianbedahplas@ub.ac.id', ''), +(382, 'dr. Wilma Agustina, Sp.B.P.R.E', '', 'Bedah Plastik', 'wilmaagustina@ub.ac.id', ''), +(383, 'dr. Yudi Siswanto, MSc, M.Ked.Klin., Sp.B.P.R.Eย ', '', 'Bedah Plastik', 'yudi.siswanto@ub.ac.id', ''), +(384, 'dr. Elisabeth Prajanti Sintaningrum, Sp.B.P.R.E', '', 'Bedah Plastik', 'sintaningrum@ub.ac.id', ''), +(385, 'dr. Santi Devina, Sp.BP-RE', '', 'Bedah Plastik', '-', ''), +(386, 'dr. Robertus Arian Datusanantyo, MPH, MKed, Klin., SpBPRE, Subsp.K.M.(K)', '', 'Bedah Plastik', 'arian@lec.ub.ac.id', ''), +(387, 'dr. Lulik Inggarwati, Sp B,. Sp BA Anakย ', '', 'Bedah Anak', 'matahari63@ub.ac.id', ''), +(388, 'dr. Widanto, Sp B,. Sp BA', '', 'Bedah Anak', 'widanto@ub.ac.id', ''), +(389, 'dr. Sinung Wikanandi, Sp. BA', '', 'Bedah Anak', 'sinung.wikanadi@ub.ac.id', ''), +(390, 'dr. Ririd Tri Pitaka, Sp.BA', '', 'Bedah Anak', '-', ''), +(391, 'Dr. dr. Mochamad Bachtiar Budianto, Sp.B(K)Onk', '', 'Bedah Onkologi', 'bachtiarb@ub.ac.id', ''), +(392, 'dr. Hery Susilo, Sp.B(K)Onk', '', 'Bedah Onkologi', 'herysusilo@ub.ac.id', ''), +(393, 'dr. Sidho Hantoko, Sp.B(K)Onk', '', 'Bedah Onkologi', 'sidhohantoko@ub.ac.id', ''), +(394, 'dr. Dian Pratiwi, Sp.B., Subsp.Onk.(K)', '', 'Bedah Onkologi', 'depe_1104@ub.ac.id', ''), +(395, 'dr. Feri Nugroho, Sp.B(K)Onk', '', 'Bedah Onkologi', '-', ''), +(396, 'dr. Aditya Rachmat Febrianto, Sp.B.', '', 'Bedah', 'adityaeref19@ub.ac.id', ''), +(397, 'dr. Nurudin Syahadat, Sp.B', '', 'Bedah', '-', ''), +(398, 'dr. Hananta Sudibyoko, Sp.B', '', 'Bedah', '-', ''), +(399, 'dr. Rizki Hanifan Nugraha, Sp.B', '', 'Bedah', '-', ''), +(400, 'dr. Andreas Rendra, Sp.B', '', 'Bedah', '-', ''), +(401, 'dr. Primana Setya Nugraha, MPH., Sp.B.', '', 'Bedah', '-', ''), +(402, 'dr. Damian Dwi Rahadi, Sp.B.,M.Ked.Klin', '', 'Bedah', '-', ''), +(403, 'dr. Albert Linardy, Sp.B', '', 'Bedah', '-', ''), +(404, 'dr. Zaki Yamani, Sp.B', '', 'Bedah', '-', ''), +(405, 'dr.Thomas Erwin CJ Huwae, Sp.OT (K)', '', 'Orthopedi', 'huwaethomas@ub.ac.id', ''), +(406, 'dr.Agung Riyanto Budi Santoso, Sp.OT (K)', '', 'Orthopedi', 'agung_riyanto@ub.ac.id', ''), +(407, 'dr.Istan Irmansyah Irsan, Sp.OT (K)ย ', '', 'Orthopedi', 'istan_irmansyah@ub.ac.id', ''), +(408, 'dr.Satria Pandu Persada Isma, Sp.OT (K)', '', 'Orthopedi', 'percyisma@ub.ac.id', ''), +(409, 'dr.Syaifullah Asmiragani, Sp.OT (K)ย ', '', 'Orthopedi', 'syaifullahag@ub.ac.id', ''), +(410, 'dr.Andhika Yudistira, Sp.OT (K)', '', 'Orthopedi', 'andhika.yudhistira@ub.ac.id', ''), +(411, 'dr. Ery Satriawan, Sp. OT', '', 'Orthopedi', '-', ''), +(412, 'Dr.dr.Edi Mustamsir, Sp.OT (K)ย ', '', 'Orthopedi', 'edimustamsir@ub.ac.id', ''), +(413, 'dr.Krisna Yuarno Patama, Sp.OT (K)', '', 'Orthopedi', 'krisnayuarno@ub.ac.id', ''), +(414, 'dr.Ananto Satya Pradana Drajat, Sp.OT', '', 'Orthopedi', 'satyapradana88@ub.ac.id', ''), +(415, 'Prof.Dr.dr.Respati S. Dradjat, Sp.OT (K)ย ', '', 'Orthopedi', 'respatisdradjat@ub.ac.id', ''), +(416, 'dr.Panji Sananta, M.Ked, Sp.OT (K)', '', 'Orthopedi', 'panjisananta@ub.ac.id', ''), +(417, 'dr. Domy Pradana Putra, Sp.OT', '', 'Orthopedi', 'domy_pradana@ub.ac.id', ''), +(418, 'dr. Adhi Satriyo Utomo, Sp.OT.', '', 'Orthopedi', 'sam.ortho@ub.ac.id', ''), +(419, 'dr. Rakhmad Aditya Hernawan, Sp.OT.', '', 'Orthopedi', 'aditflea@ub.ac.id', ''), +(420, 'dr. Indo Rizki Pramulia, Sp.OT', '', 'Orthopedi', '-', ''), +(421, 'dr. Arianto Prabowo, Sp.OT', '', 'Orthopedi', '-', ''), +(422, 'dr. Brian Dhananjaya, Sp.OT', '', 'Orthopedi', '-', ''), +(423, 'dr. Broto Suwadji, Sp.OT', '', 'Orthopedi', '-', ''), +(424, 'dr. Hamzah, Sp.OT', '', 'Orthopedi', '-', ''), +(425, 'dr. Johan Bastian, Sp.OT', '', 'Orthopedi', '-', ''), +(426, 'dr. Mujiyono, Sp.OT(K)', '', 'Orthopedi', '-', ''), +(427, 'dr. R. Satriyo Aji, Sp.OT(K)', '', 'Orthopedi', '-', ''), +(428, 'dr. Rangga Arieza Fachlevi, M.Kes, Sp.OT', '', 'Orthopedi', '-', ''), +(429, 'Prof. Dr. dr. Mohamad Hidajat, Sp.B, Sp.OT(K)', '', 'Orthopedi', '-', ''), +(430, 'dr. Donny Noerhadiono C., Sp.OT(K) Spine', '', 'Orthopedi', '-', ''), +(431, 'dr. Dandy Drestanto Adiwignyo, SpOT', '', 'Orthopedi', '-', ''), +(432, 'dr. Anindita Eka Pramana Wijaya, SpOT', '', 'Orthopedi', '-', ''), +(433, 'dr. Besut Daryanto, SpB, Sp.U (K)ย ', '', 'Urologi', 'urobes.fk@ub.ac.id', ''), +(434, 'dr. Pradana Nurhadi, Sp.U', '', 'Urologi', 'dan_uro.fk@ub.ac.id', ''), +(435, 'dr. Kurnia Penta Seputra, Sp.U (K)ย ', '', 'Urologi', 'uropnt.fk@ub.ac.id', ''), +(436, 'dr. Taufiq Nur Budaya, Sp.U', '', 'Urologi', 'taufiq_uro.fk@ub.ac.id', ''), +(437, 'dr. Paksi Satyagraha, M.Kes, Sp.Uย ', '', 'Urologi', 'uropas.fk@ub.ac.id', ''), +(438, 'dr. Edy Wibowo, Sp.U', '', 'Urologi', '-', ''), +(439, 'dr. Medianto, Sp.U', '', 'Urologi', '-', ''), +(440, 'dr. Andri Kustono, Sp.U', '', 'Urologi', 'kustono_andri.fk@ub.ac.id', ''), +(441, 'dr. Athaya Febriantyo Purnomo, Sp.U.', '', 'Urologi', 'athayafp@ub.ac.id', ''), +(442, 'dr. Martha Hendry, Sp.U(K), MARS', '', 'Urologi', '-', ''), +(443, 'dr. Andrie Rhomdhon Kurniawan, Sp.U', '', 'Urologi', '-', ''), +(444, 'dr. Anton Hermawan, Sp.U', '', 'Urologi', '-', ''), +(445, 'dr. Yudi Y. Ambeng, Sp.U', '', 'Urologi', '-', ''), +(446, 'dr. Deddy Rasyidan Yulizar, Sp.U', '', 'Urologi', '-', ''), +(447, 'dr. Neila Raisa, Sp. S (K)', '', 'Neurologi', 'neilaraisa@ub.ac.id', ''), +(448, 'dr. Eko Arisetijono, Sp. S (K)', '', 'Neurologi', 'drekoarisetijono.fk@ub.ac.id', ''), +(449, 'dr. Rodhiyan Rakhmatiar, Sp.S (K) M. Biomed', '', 'Neurologi', 'odhy_neuro@ub.ac.id', ''), +(450, 'dr. Zamroni A, Sp. S (K)', '', 'Neurologi', 'dr_zamroniafif@ub.ac.id', ''), +(451, 'dr. Machlusil Husna, Sp. S (K)ย ', '', 'Neurologi', 'machlusilhusna.fk@ub.ac.id', ''), +(452, 'dr. Sri Budhi Rianawati, Sp. S (K)', '', 'Neurologi', 'rien62.fk@ub.ac.id', ''), +(453, 'Dr. dr. Shahdevi Nandar K, Sp. S (K)', '', 'Neurologi', 'shahdevinandar@ub.ac.id', ''), +(454, 'dr. Catur Arisetianto, Sp. S (K)', '', 'Neurologi', 'catur-ari@ub.ac.id', ''), +(455, 'dr. Widodo Mardi Santoso, Sp. S (K)', '', 'Neurologi', 'widodotita.fk@ub.ac.id', ''), +(456, 'dr. Badrul Munir, Sp. S (K)', '', 'Neurologi', 'badroel2007@ub.ac.id', ''), +(457, 'dr. Dessika Rahmawati, Sp. S (K)', '', 'Neurologi', 'dessikasps@ub.ac.id', ''), +(458, 'dr. Ria Damayanti, M.Biomed, Sp.S(K)', '', 'Neurologi', 'dr.riadamayanti@ub.ac.id', ''), +(459, 'dr. Adecya Amaryllis Risa Putri, Sp.N', '', 'Neurologi', '-', ''), +(460, 'Dr. dr. Rini Andriani, Sp.S(K)', '', 'Neurologi', '-', ''), +(461, 'dr. Hajeng Wulandari, Sp.A, Mbiomed', '', 'Anak', 'hajengwulandari.fk@ub.ac.id', ''), +(462, 'dr. Irfan Agus Salim, Sp.A, Mbiomed ', '', 'Anak', 'irfanagus.fk@ub.ac.id', ''), +(463, 'dr. Fadilah Muttaqin, Spp.A,MBiomed', '', 'Anak', '-', ''), +(464, 'dr. Ery Olivianto, Sp. A (K)', '', 'Anak', 'ery15.fk@ub.ac.id', ''), +(465, 'Dr.dr. Krisni Soebandijah, Sp.A(K)', '', 'Anak', 'krisni19.fk@ub.ac.id', ''), +(466, 'dr. Astrid Kristina Kardani, Sp. A, MBiomed', '', 'Anak', 'astridkardani.fk@ub.ac.id', ''), +(467, 'dr. Nugroho Danu Tri Subroto, Sp.A(K)', '', 'Anak', 'danu.dr@ub.ac.id', ''), +(468, 'dr. Irene Ratridewi, Sp.A(K), M.Kes', '', 'Anak', 'irene24.fk@ub.ac.id', ''), +(469, 'dr.Savitri Laksmi Winaputri, Sp.A', '', 'Anak', '-', ''), +(470, 'Dr.dr. Wisnu Barlianto, Sp.A(K), Msi.Med', '', 'Anak', 'wisnu_barlian@ub.ac.id', ''), +(471, 'dr. Desy Wulandari, Sp.A, M.Biomed', '', 'Anak', 'desywulandari@ub.ac.id', ''), +(472, 'dr. Satrio Wibowo, Sp.A(K), Msi.Medย ', '', 'Anak', 'satrio_wibowo@ub.ac.id', ''), +(473, 'dr. Muhammad Irawan, Sp.A, MBiomed', '', 'Anak', 'muhammadirawan.fk@ub.ac.id', ''), +(474, 'dr. A. Susanto Nugroho, Sp.A(K)ย ', '', 'Anak', 'susanto04.fk@ub.ac.id', ''), +(475, 'dr. Sonny Wicaksono, Sp. A, M.Kes', '', 'Anak', '-', ''), +(476, 'dr. Brigitta Ida RVC, Sp.A(K), M.Kes', '', 'Anak', 'briggita_vebi@ub.ac.id', ''), +(477, 'dr. Eko Sulistijono, Sp.A', '', 'Anak', 'eko25.fk@ub.ac.id', ''), +(478, 'Dr. dr. Ariani, M.Kes, Sp.A(K)', '', 'Anak', 'arianidr@ub.ac.id', ''), +(479, 'dr. Prasetya Ismail Permadi, Sp.A(K), M.Biomed', '', 'Anak', 'prasetyapermadi@ub.ac.id', ''), +(480, 'dr. Saptadi Yuliarto, M.Kes, Sp.A(K)', '', 'Anak', 'saptadiy@ub.ac.id', ''), +(481, 'Dr. dr. Harjoedi Adji Tjahjono, Sp.A(K)', '', 'Anak', 'haryudi_aji2000@ub.ac.id', ''), +(482, 'dr. Dyahris Koentartiwi, Sp.A(K)', '', 'Anak', 'dyahris08.fk@ub.ac.id', ''), +(483, 'dr. Muchammad Fahrul Udin, M.Kes, Sp.A, Subsp. Resp(K)', '', 'Anak', 'udin24.fk@ub.ac.id', ''), +(484, 'dr. Kurniawan Taufiq Kadafi, M.Biomed, Sp.A(K)', '', 'Anak', 'kadafi12.fk@ub.ac.id', ''), +(485, 'dr. Laurentia Ima Monica, Sp.A., M.Biomed.', '', 'Anak', 'monicasutatnto@ub.ac.id', ''), +(486, 'dr. Setya Mithra Hartiastuti, MSi.Med, Sp.A(K)', '', 'Anak', '-', ''), +(487, 'dr. Melany Farrahdilla, Sp.A, M.Kes', '', 'Anak', '-', ''), +(488, 'dr. Melinda, Sp.A, M.Biomed', '', 'Anak', '-', ''), +(489, 'dr. Mochamad Chabibi, Sp.A, M.Biomed', '', 'Anak', '-', ''), +(490, 'dr. Hidayati Utami Dewi, Sp.A', '', 'Anak', '-', ''), +(491, 'dr. Ardhanis Ramadhanti, Sp.A', '', 'Anak', '-', ''), +(492, 'dr. Emi Yulianti, Sp.A', '', 'Anak', '-', ''), +(493, 'dr. Herlin Kristanti, Sp.A', '', 'Anak', '-', ''), +(494, 'dr. Zuhrotul Aini, Sp.A', '', 'Anak', '-', ''), +(495, 'dr. Novi Efridayanti, Sp.A., M.Biomed', '', 'Anak', '-', ''), +(496, 'dr. Astri Proborini, Sp.A., M.Kes', '', 'Anak', '-', ''), +(497, 'dr. Charity Monica, Sp.A', '', 'Anak', '-', ''), +(498, 'dr.Dewangga Primananda Susanto, MMRS., Sp. A', '', 'Anak', '-', ''), +(499, 'dr. Tulus Sampurno, Sp.A', '', 'Anak', '-', ''), +(500, 'Dr. dr. Arif Widiatmoko, Sp.KK(K)', '', 'Dermatologi', 'arif_fk@ub.ac.id', ''), +(501, 'Dr. dr. Sinta Murlistyarini, Sp.KK(K)', '', 'Dermatologi', 'sintamur@ub.ac.id', ''), +(502, 'dr. Dhany Prafita Ekasari, Sp.KK', '', 'Dermatologi', 'dhany_prafita@ub.ac.id', ''), +(503, 'dr. Herwinda Brahmanti, Sp.KK(K), M.Sc', '', 'Dermatologi', 'dr_herwinda@ub.ac.id', ''), +(504, 'dr. Anggun Putri Yuniaswan, Sp.KK', '', 'Dermatologi', 'anggun@ub.ac.id', ''), +(505, 'Dr. dr. Dhelya Widasmara, Sp.KK(K)', '', 'Dermatologi', 'dhelyawidasmara@ub.ac.id', ''), +(506, 'Dr. dr. Boedhy Setyanto, Sp.KK', '', 'Dermatologi', 'boedhysetyanto@ub.ac.id', ''), +(507, 'dr. Intan Wasaputri Donoseputro, Sp.D.V.', '', 'Dermatologi', 'intanwasap@ub.ac.id', ''), +(508, 'dr. Lita Setyowatie, Sp.KK(K)', '', 'Dermatologi', 'lita84dv@ub.ac.id', ''), +(509, 'dr. Suci Prawitasari, Sp.KK(K)', '', 'Dermatologi', 'suci_prawitasari@ub.ac.id', ''), +(510, 'dr. Santosa Basuki, Sp.KK(K)', '', 'Dermatologi', '-', ''), +(511, 'dr. Sekar Puspita Lilasari, Sp.KK', '', 'Dermatologi', '-', ''), +(512, 'dr. Marta Dwi Rifka, Sp.KK', '', 'Dermatologi', '-', ''), +(513, 'dr. Adinda Amalia Dani, Sp.DV', '', 'Dermatologi', '-', ''), +(514, 'dr. Aunur Rofiq, Sp.D.V.E., Subsp. D.A.I., FINSDV, FAADV', '', 'Dermatologi', 'aunurrofiq.fk@ub.ac.id', ''), +(515, 'dr. Ahmad Dian Wahyudiono, Sp.THT-KL(K)', '', 'THT', 'dian_w.fk@ub.ac.id', ''), +(516, 'dr. Iriana Maharani, Sp.THT-KL(K)', '', 'THT', 'iriana_maharani@ub.ac.id', ''), +(517, 'Dr. dr. Edi Handoko, Sp.THT-KL(K)', '', 'THT', 'dr.edihandoko@ub.ac.id', ''), +(518, 'Dr. dr. Soehartono, Sp.THT-KL(K)', '', 'THT', 'hartonotht@ub.ac.id', ''), +(519, 'dr. Hendradi Surjotomo, Sp.THT-KL(K)', '', 'THT', 'hendraditht@ub.ac.id', ''), +(520, 'dr. Mohammad Dwijo Murdiyo, Sp.THT-KL(K)', '', 'THT', 'mamaddwi3105@ub.ac.id', ''), +(521, 'dr. Meyrna Heryaning Putri, Sp.THT-KL', '', 'THT', 'meyrnaheryaningputri@ub.ac.id', ''), +(522, 'dr. Moch Mundir Arif, Sp.THT-KL', '', 'THT', '-', ''), +(523, 'dr. Rizki Eka Putra Handoko, Sp.THT-KL', '', 'THT', '-', ''), +(524, 'dr. Siti Umi Hanik, Sp.THT-KL', '', 'THT', '-', ''), +(525, 'dr. Ayunita Tri Wirattami, Sp.THT-KL', '', 'THT', '-', ''), +(526, 'Dr. dr. Aulia Abdul Hamid Abdullah, M.Biomed.Sc, Sp.M(K)', '', 'Mata', 'aulia.fk@ub.ac.id', ''), +(527, 'Dr. dr. Nadia Artha Dewi, Sp.M(K)', '', 'Mata', 'nadia_dewi@ub.ac.id', ''), +(528, 'Dr. dr. Seskoati Prayitnaningsih, Sp.M(K)', '', 'Mata', 'seskoatip@ub.ac.id', ''), +(529, 'Dr. dr. Hera Dwi Novita, Sp.M(K)', '', 'Mata', 'hera_spm@ub.ac.id', ''), +(530, 'dr. Hidayat Sujuti, Sp.M(K), Ph.D', '', 'Mata', 'hidayatsujuti.fk@ub.ac.id', ''), +(531, 'dr. Lely Retno Wulandari, Sp.M(K)', '', 'Mata', 'lely_wulandari@ub.ac.id', ''), +(532, 'Dr. dr. Nina Handayani, Sp.M(K)', '', 'Mata', 'nina_handayani@ub.ac.id', ''), +(533, 'dr. Wino Vrieda Vierlia, Sp.M(K)', '', 'Mata', 'vrieda_v@ub.ac.id', ''), +(534, 'dr. Zendy Sagita, Sp.M', '', 'Mata', 'zendysagita@ub.ac.id', ''), +(535, 'Dr. dr. Nanda Wahyu Anandita, Sp.M(K)', '', 'Mata', 'nan_anandita@ub.ac.id', ''), +(536, 'Dr. dr. Ovi Sofia, Sp.M(K)', '', 'Mata', 'dr.ovisofia@ub.ac.id', ''), +(537, 'Dr. dr. Debby Shintiya Dewi, Sp.M(K)', '', 'Mata', 'Debbyshintiya73@ub.ac.id', ''), +(538, 'Dr. dr. Rosy Aldina, Sp.M(K)', '', 'Mata', 'rosyaldina@ub.ac.id', ''), +(539, 'dr. Anny Sulistiyowati, Sp.M(K)', '', 'Mata', '-', ''), +(540, 'dr. Herwindo Dicky Putranto, Sp.M(K)', '', 'Mata', '-', ''), +(541, 'dr. Titok Hariyanto, Sp.M', '', 'Mata', '-', ''), +(542, 'dr. Triana Budi Sulistya, Sp.M(K)', '', 'Mata', '-', ''), +(543, 'dr. Fariz Nufiarwan, Sp.M', '', 'Mata', '-', ''), +(544, 'dr. Vatien Rahmawati, Sp.M', '', 'Mata', '-', ''), +(545, 'dr. Chairunisa Ferdiana, Sp.M, M.Si', '', 'Mata', '-', ''), +(546, 'dr. Cinthya Hapsari, Sp.M', '', 'Mata', '-', ''), +(547, 'dr. Raden Budi Santoso, Sp.M', '', 'Mata', '-', ''), +(548, 'dr. Sigit Wibisono, Sp.M', '', 'Mata', '-', ''), +(549, 'dr. Tutuk Wibowo Chamidy, Sp.M', '', 'Mata', '-', ''), +(550, 'dr. Ahmad Thohir, Sp.M', '', 'Mata', 'ahmad.thohir@ub.ac.id', ''), +(551, 'dr. Agung Pambudi Setyowibowo, Sp.M', '', 'Mata', '-', ''), +(552, 'dr. Didi Candradikusuma, Sp.P.D,K-PTIย ', 'DPJP', 'IPD', 'didi_candradikusuma.fk@ub.ac.id', 'didi1312@gmail.com'), +(553, 'Dr.dr. Cesarius Singgih Wahono, Sp.P.D,K-Rย ', 'DPJP', 'IPD', 'singgih_wahono.fk@ub.ac.id', 'singgih_wahono@yahoo.com'), +(554, 'Dr. dr. Sri Soenarti, Sp.P.D., K-Ger', 'DPJP', 'IPD', 'sri_sunarti.fk@ub.ac.id', 'sinartitan@rocketmail.com'), +(555, 'dr. Laksmi Sasiarini, Sp.P.D., K-EMD', 'DPJP', 'IPD', 'laksmi_sasiarini@ub.ac.id', 'keenarku@yahoo.com'), +(556, 'dr. Herwindo Pudjo Brahmantyo, Sp.P.D., K-HOMย ', 'DPJP', 'IPD', 'herwindopudjo.ipd@ub.ac.id', 'herwindopudjo@yahoo.com'), +(557, 'dr. Rulli Rosandi, Sp.P.D., K-EMD', 'DPJP', 'IPD', 'rulliendokrin@ub.ac.id', 'email_rulli@yahoo.com'), +(558, 'dr. Bagus Putu Putra Suryana, Sp.PD,K-R', 'DPJP', 'IPD', 'putra_suryana@ub.ac.id', 'putra_suryana@hotmail.com\nreumato.rssa@yahoo.co.id'), +(559, 'dr. Syifa Mustika, Sp.P.D, K-GEH', 'DPJP', 'IPD', 'drtika_78@ub.ac.id', 'drtika_78@yahoo.com'), +(560, 'Dr. dr. Atma Gunawan, Sp.P.D., K-GHย ', 'DPJP', 'IPD', 'atma_gunawan.fk@ub.ac.id', 'atmagunawan2010@yahoo.com'), +(561, 'Dr. dr. Supriono, Sp.P.D,K-GEH', 'DPJP', 'IPD', 'supriono_ipd.fk@ub.ac.id', 'sprint.mlg@gmail.com'), +(562, 'dr. Siti Fatma Prehatiningsih, Sp.P.D.', 'DPJP', 'IPD', '-', '-'), +(563, 'dr. Heri Sutanto, Sp.P.D', 'DPJP', 'IPD', 'herisutanto.ipd@ub.ac.id', '-'), +(564, 'dr. Perdana Aditya Rahman, Sp.P.D., K-R', 'DPJP', 'IPD', 'perdana.aditya@ub.ac.id', 'perdana_aditya_md@yahoo.com'), +(565, 'dr. Eden Suryoiman Winoto, Sp.P.D', 'DPJP', 'IPD', 'dreden86.ipd@ub.ac.id', 'dreden86@gmail.com'), +(566, 'dr. Bogi Pratomo W., Sp.P.D. K-GEH', 'DPJP', 'IPD', 'bogi_pratomo.fk@ub.ac.id', 'bogipratomo@gmail.com'), +(567, 'Dr. dr. Shinta Oktya Wardhani, Sp.P.D., K-HOMย ', 'DPJP', 'IPD', 'shinta_oktya.fk@ub.ac.id', 'shinta_ow@yahoo.com'), +(568, 'Dr. Achmad Rifai, Sp.P.D., K-GH', 'DPJP', 'IPD', 'achmad_rifai.fk@ub.ac.id', ''), +(569, 'Dr. dr. Nur Samsu, Sp.P.D., K-GH', 'DPJP', 'IPD', 'nur_samsu.fk@ub.ac.id', 'samsu_nrs@yahoo.com'), +(570, 'dr. Nina Nurarifah, Sp.PD, K-HOM', 'DPJP', 'IPD', 'ninanur@ub.ac.id', 'ninanurarifah@gmail.com'), +(571, 'dr. Muhammad Anshory, Sp.PD', 'DPJP', 'IPD', 'muhammadanshory@ub.ac.id', 'muhammadanshory@yahoo.com'), +(572, 'dr. Dewi Indiastari, Sp.PD., K-PTI.', 'DPJP', 'IPD', 'indiastari@ub.ac.id', 'indiastari83@gmail.com'), +(573, 'dr. Nyoman Satvika Dharma Yudha, Sp.PD., KEMD', 'DPJP', 'IPD', 'nyomansatvika27@ub.ac.id', '-'), +(574, 'dr. Milanitalia Gadys Rosandy, Sp.PD', 'DPJP', 'IPD', 'milanitalia@ub.ac.id', '-'), +(575, 'dr. Mirza Zaka Pratama, M.Biomed, Sp.PD', 'DPJP', 'IPD', 'mirzapratama@ub.ac.id', '-'), +(576, 'dr. Djoko Heri Hermanto, Sp.PD, K-HOM', 'DPJP', 'IPD', 'djoko_heri.fk@ub.ac.id', 'djokoheri@gmail.com'), +(577, 'Dr. dr. Niniek Budiarti, Sp.PD, K-PTI', 'DPJP', 'IPD', 'niniek_budiarti.fk@ub.ac.id', 'niniek_burhan@yahoo.com'), +(578, 'dr. Fajar Hadi Wijayanto, Sp.PD', 'DPJP', 'IPD', 'fajarhadiw@ub.ac.id', 'fajarhadiwijayanto@gmail.com'), +(579, 'Prof. Dr. dr. Achmad Rudijanto, Sp.PD.KEMD', 'DPJP', 'IPD', 'achmad_rudijanto.fk@ub.ac.id', 'achmadrudijanto@yahoo.co.id'), +(580, 'dr. Erdilian Jodi Putra Pratama, Sp.PD.', 'DPJP', 'IPD', 'erdilianjodi90@ub.ac.id', '-'), +(581, 'dr. Chrisandi Yusuf Rizqiansyah, Sp.PD.', 'DPJP', 'IPD', 'chrisandi150824@ub.ac.id', '-'), +(582, 'dr. Jonny Karunia Fajar, Sp.PD.', 'DPJP', 'IPD', 'jonnykf@ub.ac.id', '-'), +(583, 'dr. Rinadhi Reza Bramantya, Sp.PD, K-EMD', 'DPJP', 'IPD', 'rezabramantya@ub.ac.id', 'bramantyareza@gmail.com'); +INSERT INTO `dokter` (`ID_Dokter`, `Nama_Dokter`, `Status`, `KSM`, `Email_UB`, `Email_Pribadi`) VALUES +(584, 'dr. Putu Moda Arsana, Sp.PD, K-EMD', 'DPJP', 'IPD', 'putu_moda.fk@ub.ac.id', 'putumodaarsana49@gmail.com'), +(585, 'dr. Mohamad Jasin Jachja, Sp.PD', 'DPJP', 'IPD', '-', 'drmjasinjachja@gmail.com'), +(586, 'dr. Nuraida Wisudani, Sp.PD', 'DPJP', 'IPD', '-', 'nuraida.wisudani@gmail.com'), +(587, 'dr. Mochamad Fachrureza, Sp.PD', 'DPJP', 'IPD', '-', 'dr.edja84@gmail.com'), +(588, 'dr. Hesti Purwanti, Sp.PD', 'DPJP', 'IPD', '-', 'hestiwisnuwr@gmail.com'), +(589, 'dr. Muhammad Hamdan Yuwaafi, Sp.PD', 'DPJP', 'IPD', '-', 'M.h.yuwaafii@gmail.com'), +(590, 'Prof. Dr. dr. Handono Kalim, Sp.PD, K-R', 'DPJP', 'IPD', '-', 'hkalim333@gmail.com'), +(591, 'dr. Dewi Sri Wulandari, Sp.PD.', 'DPJP', 'IPD', '-', '-'), +(592, 'dr. Rezdy Tofan Bhaskara, Sp.PD.', 'DPJP', 'IPD', '-', '-'), +(593, 'dr. Surya Abadi Kristyoadi, Sp.PD', 'DPJP', 'IPD', '-', '-'), +(594, 'dr. Affa Kysa Waafi, Sp.PD', 'DPJP', 'IPD', '-', '-'), +(595, 'Verina Setyabudhi', 'PPDS', 'IPD', 'veronicaverina@student.ub.ac.id', '-'), +(596, 'Patricia Charisma Octavianus', 'PPDS', 'IPD', 'patriciaoctav@student.ub.ac.id', '-'), +(597, 'Rahmatan Lil Alamin', 'PPDS', 'IPD', 'rahmatanla2021@student.ub.ac.id', '-'), +(598, 'Heri Supriyanto', 'PPDS', 'IPD', 'herisupriyanto@student.ub.ac.id', '-'), +(599, 'Fajar Maulana Raharjo', 'PPDS', 'IPD', 'fajarmaulanar@student.ub.ac.id', '-'), +(600, 'Putri Fitri Alfiantya', 'PPDS', 'IPD', 'putrialfiantya@student.ub.ac.id', '-'), +(601, 'christina widosari', 'PPDS', 'IPD', 'christinaw87@student.ub.ac.id', '-'), +(602, 'Muchammad Kamal Hadi', 'PPDS', 'IPD', 'mkamalhadi@student.ub.ac.id', '-'), +(603, 'Liku Vianty', 'PPDS', 'IPD', 'likuvianty@student.ub.ac.id', '-'), +(604, 'Nadia Alfiani Jauza', 'PPDS', 'IPD', 'nadialfiani06@student.ub.ac.id', '-'), +(605, 'Patan Ahmad Setiabudi', 'PPDS', 'IPD', 'patan_94@student.ub.ac.id', '-'), +(606, 'Al Imroatus Sholihah', 'PPDS', 'IPD', 'anisaraischika@student.ub.ac.id', '-'), +(607, 'Galih Hayyu Salim Prasetyawan', 'PPDS', 'IPD', 'galihhayyu_ipd@student.ub.ac.id', '-'), +(608, 'Amalia Nurul Hatinah', 'PPDS', 'IPD', 'amalianurul07@student.ub.ac.id', '-'), +(609, 'VINCENT SURIAWINATA', 'PPDS', 'IPD', 'vincentsur@student.ub.ac.id', '-'), +(610, 'Muhammad Bilal Saifulhaq', 'PPDS', 'IPD', 'mbilal@student.ub.ac.id', '-'), +(611, 'dr. Tommi Faruq Nahdi', 'PPDS', 'IPD', 'tommi_elfath@student.ub.ac.id', '-'), +(612, 'Naya Adi Dharmesta', 'PPDS', 'IPD', 'naya_ipd@student.ub.ac.id', '-'), +(613, 'Afina Fitra Firdaus', 'PPDS', 'IPD', 'afinaff27@student.ub.ac.id', '-'), +(614, 'Muhammad Reyhan', 'PPDS', 'IPD', 'rey_dean@student.ub.ac.id', '-'), +(615, 'Ni Made Windari Anggreni', 'PPDS', 'IPD', 'windarianggreni@student.ub.ac.id', '-'), +(616, 'dr. Krisna Debora', 'PPDS', 'IPD', 'debora09@student.ub.ac.id', '-'), +(617, 'dr. Sofia Nuri', 'PPDS', 'IPD', 'sofianuri89@student.ub.ac.id', '-'), +(618, 'Tohari', 'PPDS', 'IPD', 'tohariamin@student.ub.ac.id', '-'), +(619, 'Novi davitsen', 'PPDS', 'IPD', 'davdavidsun@student.ub.ac.id', '-'), +(620, 'Arlentina Bentivolia Simamora', 'PPDS', 'IPD', 'bentivolia89@student.ub.ac.id', '-'), +(621, 'Nikolas Raphon Sidabalok', 'PPDS', 'IPD', 'papa_vinaboa@student.ub.ac.id', '-'), +(622, 'Adisti Yuliandini', 'PPDS', 'IPD', 'adisti@student.ub.ac.id', '-'), +(623, 'Meiriyan Susanto', 'PPDS', 'IPD', 'meiriyans93dr@student.ub.ac.id', '-'), +(624, 'Rama Tiar Nugroho', 'PPDS', 'IPD', 'ramatayer93@student.ub.ac.id', '-'), +(625, 'Atika Bashirati Ilman', 'PPDS', 'IPD', 'atikailman@student.ub.ac.id', '-'), +(626, 'Ria Sherliana', 'PPDS', 'IPD', 'riasherliana123@student.ub.ac.id', '-'), +(627, 'Rahmad Arifin Hsb', 'PPDS', 'IPD', 'arifinhsb20@student.ub.ac.id', '-'), +(628, 'Natalia Rasta Malem', 'PPDS', 'IPD', 'nataliarastamb@student.ub.ac.id', '-'), +(629, 'Asihanti Rosita Ferdiana', 'PPDS', 'IPD', 'asihantirosita@student.ub.ac.id', '-'), +(630, 'Gema Akbar Wakhidana', 'PPDS', 'IPD', 'gemaakbarw@student.ub.ac.id', '-'), +(631, 'Anugrah Abdurrohman', 'PPDS', 'IPD', 'ranirumaizadr@student.ub.ac.id', '-'), +(632, 'yusia mega relita', 'PPDS', 'IPD', 'yusiamegarelita@student.ub.ac.id', '-'), +(633, 'Sri Lestari Fajerin', 'PPDS', 'IPD', 'srilestarif@student.ub.ac.id', '-'), +(634, 'Tia Rahmi Priyanto', 'PPDS', 'IPD', 'tiarapriyanto@student.ub.ac.id', '-'), +(635, 'Renno Firaldy', 'PPDS', 'IPD', 'firaldyrenno@student.ub.ac.id', '-'), +(636, 'Partogi Andres Marpaung', 'PPDS', 'IPD', 'partogi@student.ub.ac.id', '-'), +(637, 'Dinda Amalia Eka Putri', 'PPDS', 'IPD', 'dndamalia@student.ub.ac.id', '-'), +(638, 'Kamelia Sitorus', 'PPDS', 'IPD', 'kamelias271@student.ub.ac.id', '-'), +(639, 'Iis Novianti Rosyida', 'PPDS', 'IPD', 'iisnovianti@student.ub.ac.id', '-'), +(640, 'Vidia Purnama Sari', 'PPDS', 'IPD', 'vidiapurnama@student.ub.ac.id', '-'), +(641, 'dr. Yuni Adriani', 'PPDS', 'IPD', 'adrianiyuni24@student.ub.ac.id', '-'), +(642, 'Stefan Bram Kanigia', 'PPDS', 'IPD', 'bramkanigia@student.ub.ac.id', '-'), +(643, 'Kadek Dwi Sujaya', 'PPDS', 'IPD', 'kadekdwi@student.ub.ac.id', '-'), +(644, 'Hafidh Alyza Rachman', 'PPDS', 'IPD', 'hafidhar@student.ub.ac.id', '-'), +(645, 'Alfi Kamalia', 'PPDS', 'IPD', 'alfikamalia@student.ub.ac.id', '-'), +(646, 'Rizza Febri Diantoro', 'PPDS', 'IPD', 'rizzafebri_ipd@student.ub.ac.id', '-'), +(647, 'Amandha Rizky Taufika', 'PPDS', 'IPD', 'amandharizky@student.ub.ac.id', '-'), +(648, 'Maiova Nur Annisa', 'PPDS', 'IPD', 'maiovanurannisa@student.ub.ac.id', '-'), +(649, 'Helena Tridasari Nendraningrum', 'PPDS', 'IPD', 'helenaningrum21@student.ub.ac.id', '-'), +(650, 'Made Dwi Pratiwi', 'PPDS', 'IPD', 'madedwipratiwi@student.ub.ac.id', '-'), +(651, 'Maruli Setiawan', 'PPDS', 'IPD', 'marulisetiawan@student.ub.ac.id', '-'), +(652, 'Dennis Koresy', 'PPDS', 'IPD', 'dennkoresy@student.ub.ac.id', '-'), +(653, 'Reza Fanani', 'PPDS', 'IPD', 'rezfan@student.ub.ac.id', '-'), +(654, 'Andini Bakti Putri', 'PPDS', 'IPD', 'andinibakti@student.ub.ac.id', '-'), +(655, 'Laswan Sahat Maruli Siallagan', 'PPDS', 'IPD', 'laswansiallagan@student.ub.ac.id', '-'), +(656, 'Adib Danurdipta', 'PPDS', 'IPD', 'adibdanurdipta@student.ub.ac.id', '-'), +(657, 'dr. Anggun Anggraini Wibisana', 'PPDS', 'IPD', 'anggunwibisana@student.ub.ac.id', '-'), +(658, 'Andani Putri Budi Arti', 'PPDS', 'IPD', 'andaniputri@student.ub.ac.id', '-'), +(659, 'Andre Eka Putra Prakosa', 'PPDS', 'IPD', 'andre_dre@student.ub.ac.id', '-'), +(660, 'JAMILAH AULIA HAIKHAH', 'PPDS', 'IPD', 'jemsjamilah@student.ub.ac.id', '-'), +(661, 'Cynthia Maria Wijaya', 'PPDS', 'IPD', 'cynthiawijaya@student.ub.ac.id', '-'), +(662, 'Thoha Muhajir Albaar', 'PPDS', 'IPD', 'tmalbaar54@student.ub.ac.id', '-'), +(663, 'Leony Anatasia Maranatha', 'PPDS', 'IPD', 'leonyanatasia@student.ub.ac.id', '-'), +(664, 'Ersyad Kholid', 'PPDS', 'IPD', 'ersyadkholid09@student.ub.ac.id', '-'), +(665, 'Aulia Sita Hapsari', 'PPDS', 'IPD', 'auliasita98@student.ub.ac.id', '-'), +(666, 'Primayuni Dhia Hasanah', 'PPDS', 'IPD', 'primayunidhia@student.ub.ac.id', '-'), +(667, 'Albert William Hotomo', 'PPDS', 'IPD', 'dokterhotomo@student.ub.ac.id', '-'), +(668, 'Claudio Ian Ferara', 'PPDS', 'IPD', 'claudioianf@student.ub.ac.id', '-'), +(669, 'Thomas Erickson', 'PPDS', 'IPD', 'thomaserickson@student.ub.ac.id', '-'), +(670, 'Maria Sarche Kuna', 'PPDS', 'IPD', 'sarche@student.ub.ac.id', '-'), +(671, 'Tonny Aldo Aprillino', 'PPDS', 'IPD', 'tonnyaldo@student.ub.ac.id', '-'), +(672, 'Lia Dia Farida', 'PPDS', 'IPD', 'faridaliadia@student.ub.ac.id', '-'), +(673, 'Janette Golda Meir Putri', 'PPDS', 'IPD', 'goldameirjanet@student.ub.ac.id', '-'), +(674, 'Annisa Putri Astuti', 'PPDS', 'IPD', 'annisaputriast@student.ub.ac.id', '-'), +(675, 'oktaviyani poulus', 'PPDS', 'IPD', 'oktaviyaniipd56@student.ub.ac.id', '-'), +(676, 'Freddy Chandra Nainggolan', 'PPDS', 'IPD', 'freddychandran@student.ub.ac.id', '-'), +(677, 'Indri Aswari', 'PPDS', 'IPD', 'indriaswari@student.ub.ac.id', '-'), +(678, 'Intan Ayu Islami', 'PPDS', 'IPD', 'intanayuislami@student.ub.ac.id', '-'), +(679, 'Chikita Rizqi Hanifati', 'PPDS', 'IPD', 'chikitarh@student.ub.ac.id', '-'), +(680, 'Levrita Nindya Poetri', 'PPDS', 'IPD', 'levritalnp@student.ub.ac.id', '-'), +(681, 'Putu Ijiya Danta Awatara', 'PPDS', 'IPD', 'ijiyadanta_19@student.ub.ac.id', '-'), +(682, 'Izzah Wahidiah Rochmah', 'PPDS', 'IPD', 'izzahwr@student.ub.ac.id', '-'), +(683, 'Martharika Karinda Wibowo', 'PPDS', 'IPD', 'martharika@student.ub.ac.id', '-'), +(684, 'Agustinus Alfred Gunawan', 'PPDS', 'IPD', 'alfredgun91@student.ub.ac.id', '-'), +(685, 'Gilang Sukma Muhamad', 'PPDS', 'IPD', 'gilangsukmam@student.ub.ac.id', '-'), +(686, 'Muhamad Haitsam', 'PPDS', 'IPD', 'muhamadhaitsam9@student.ub.ac.id', '-'), +(687, 'Edo Aditya Dwi Susanto', 'PPDS', 'IPD', 'edoadsusanto@student.ub.ac.id', '-'), +(688, 'Septha Rully Dwi Pradipto', 'PPDS', 'IPD', 'septharully@student.ub.ac.id', '-'), +(689, 'Marisa Perucana Sinambela', 'PPDS', 'IPD', 'marisasinambela@student.ub.ac.id', '-'), +(690, 'Atina Nabilah', 'PPDS', 'IPD', 'nabilabee13@student.ub.ac.id', '-'), +(691, 'Hadiyoga Pratama Putra', 'PPDS', 'IPD', 'hadiyogapq@student.ub.ac.id', '-'), +(692, 'Andika Agus Budiarto', 'PPDS', 'IPD', 'andikagusb@student.ub.ac.id', '-'), +(693, 'dr. Sasmojo Widito, SpJP (K)', 'DPJP', 'Jantung', 'sasmojowidito@ub.ac.id', 'sasmojowidito@yahoo.com'), +(694, 'dr. Valerinna Yogibuana Swastika Putri, SpJP(K)', 'DPJP', 'Jantung', 'valerinnaysp@ub.ac.id', '-'), +(695, 'Prof. dr. M. Saifur Rohman, SpJP (K), PhDย ', 'DPJP', 'Jantung', 'ippoenk@ub.ac.id', 'ippoenk@yahoo.com'), +(696, 'dr. Ardian Rizal, SpJP (K)', 'DPJP', 'Jantung', 'drardianrizal@ub.ac.id', 'drardianrizal@gmail.com'), +(697, 'dr. Anna Fuji Rahimah, SpJP (K)', 'DPJP', 'Jantung', 'drannafuji@ub.ac.id', '-'), +(698, 'dr. Cholid Tri Tjahjono, M.Kes, SpJP (K)', 'DPJP', 'Jantung', 'cholidtri@ub.ac.id', 'cholidtt@gmail.com'), +(699, 'dr. Heny Martini, SpJP (K)ย ', 'DPJP', 'Jantung', 'henymartini@ub.ac.id', 'henymartini@ub.ac.id'), +(700, 'dr. Budi Satrijo, SpJP (K)', 'DPJP', 'Jantung', 'budisatrijo@ub.ac.id', 'bsatriyo11@yahoo.com'), +(701, 'dr. Novi Kurnianingsih, SpJP (K)ย ', 'DPJP', 'Jantung', 'novikur@ub.ac.id', 'n0v1_kur@yahoo.co.id'), +(702, 'dr. Indra Prasetya, SpJP (K)', 'DPJP', 'Jantung', 'indraprasetya@ub.ac.id', '-'), +(703, 'dr. Veny Mayangsari, SpJP', 'DPJP', 'Jantung', '-', 'veny0203@gmail.com'), +(704, 'dr. Setyasih Anjarwani, SpJP (K)', 'DPJP', 'Jantung', 'setyasih@ub.ac.id', 'setyasihanjarwani@yahoo.com'), +(705, 'dr. Adhika Prastya Wikananda, SpJPย ', 'DPJP', 'Jantung', '-', 'adhikapw@gmail.com'), +(706, 'dr. Wella Karolina, SpJP (K)', 'DPJP', 'Jantung', 'wella.karolina@ub.ac.id', '-'), +(707, 'dr. Yoga Waranugraha, Sp.JP, Subp.Ar.(K)', 'DPJP', 'Jantung', 'mr.waranugraha@ub.ac.id', 'mr.waranugraha@gmail.com'), +(708, 'Prof. Dr. dr. Djanggan Sargowo, Sp.PD, Sp.JP(K)', 'DPJP', 'Jantung', 'djanggan@ub.ac.id', '-'), +(709, 'Dr. dr. Saskia Dyah Handari, Sp.JP(K)', 'DPJP', 'Jantung', '-', 'saskiahandari@gmail.com'), +(710, 'dr. Arief Wibisono, Sp.JP', 'DPJP', 'Jantung', '-', 'arief.spjp@gmail.com'), +(711, 'dr. Evit Ruspiono, Sp.JP', 'DPJP', 'Jantung', '-', 'evitruspiono@gmail.com'), +(712, 'dr. Tri Astiawaty, Sp.JP', 'DPJP', 'Jantung', 'triastiawati@ub.ac.id', 'triastia_dr@yahoo.com'), +(713, 'dr. Adriyawan Widya Nugraha, Sp.JP(K)', 'DPJP', 'Jantung', '-', 'adriyawan.wn@gmail.com'), +(714, 'dr. Andi Wahjono Adi, Sp.JP(K)', 'DPJP', 'Jantung', '-', 'andiwahjono@ymail.com'), +(715, 'dr. Fitranti Suciati Laitupa, Sp.JP(K)', 'DPJP', 'Jantung', '-', 'fitriantilatupawijaya@gmail.com'), +(716, 'dr. Dea Arie Kurniawan, Sp.JP', 'DPJP', 'Jantung', 'dea.kurniawanlec.ub.ac.id', 'dea.arie.kurniawan@gmail.com'), +(717, 'Muhammad Azhar Rosyidi', 'PPDS', 'Jantung', 'azharr@student.ub.ac.id', '-'), +(718, 'Shalahuddin Suryo Baskoro', 'PPDS', 'Jantung', 'suryobaskoro@student.ub.ac.id', '-'), +(719, 'Merlita Herbani', 'PPDS', 'Jantung', 'merlitaherbani@student.ub.ac.id', '-'), +(720, 'Catur Rizky Kurniawan', 'PPDS', 'Jantung', 'caturrizky@student.ub.ac.id', '-'), +(721, 'Savitri Sirait', 'PPDS', 'Jantung', 'savitrisirait91@student.ub.ac.id', '-'), +(722, 'Yuke Fawziah Kemala', 'PPDS', 'Jantung', 'yuke_fawziah@student.ub.ac.id', '-'), +(723, 'dr. Anastasia Christine', 'PPDS', 'Jantung', 'wchanastasia@student.ub.ac.id', '-'), +(724, 'Fikri Taufiq', 'PPDS', 'Jantung', 'fikri_taufiq@student.ub.ac.id', '-'), +(725, 'Mokhamad Aswin Bahar', 'PPDS', 'Jantung', 'draswinbahar@student.ub.ac.id', '-'), +(726, 'Fitri Febrianti Ramadhan', 'PPDS', 'Jantung', 'kardio26fitri@student.ub.ac.id', '-'), +(727, 'Calysta Citra Sekarsari', 'PPDS', 'Jantung', 'calystacitra94@student.ub.ac.id', '-'), +(728, 'Sahlan Abadi', 'PPDS', 'Jantung', 'alanabadi7@student.ub.ac.id', '-'), +(729, 'Malombassi Dharmawan Hadiwidjojo Hutomo', 'PPDS', 'Jantung', 'dharmawanhutomo@student.ub.ac.id', '-'), +(730, 'Ayu Pramitha Wulandari', 'PPDS', 'Jantung', 'ayupramitha@student.ub.ac.id', '-'), +(731, 'Yunita fadhila sandy', 'PPDS', 'Jantung', 'sandyjpd@student.ub.ac.id', '-'), +(732, 'Nicodemus Novian Triatmojo', 'PPDS', 'Jantung', 'nicotriatmojo@student.ub.ac.id', '-'), +(733, 'Hanim Isyfi Fahmi', 'PPDS', 'Jantung', 'hanimisyfi@student.ub.ac.id', '-'), +(734, 'Novi Rahmawati', 'PPDS', 'Jantung', 'novirahmawati@student.ub.ac.id', '-'), +(735, 'Andre Tegar Widhianto', 'PPDS', 'Jantung', 'andretegar@student.ub.ac.id', '-'), +(736, 'Zhafran Veliawan', 'PPDS', 'Jantung', 'zhafranveliawan@student.ub.ac.id', '-'), +(737, 'Nisa Amnifolia Niazta', 'PPDS', 'Jantung', 'amnifolianiazta@student.ub.ac.id', '-'), +(738, 'Yosafat Hasiholan Marthin Gultom', 'PPDS', 'Jantung', 'gultomyosafathm@student.ub.ac.id', '-'), +(739, 'dr. Gebryel Dennis Saerang', 'PPDS', 'Jantung', 'gebryelsmd@student.ub.ac.id', '-'), +(740, 'Mokhammad Afifuddin', 'PPDS', 'Jantung', 'dr_afif_cardio@student.ub.ac.id', '-'), +(741, 'Vemmy Lian Saputri', 'PPDS', 'Jantung', 'vemmylian@student.ub.ac.id', '-'), +(742, 'MASDA KAMARULLAH', 'PPDS', 'Jantung', 'masdakamarullah@student.ub.ac.id', '-'), +(743, 'Irzal Rakhmadhani', 'PPDS', 'Jantung', 'irzalr@student.ub.ac.id', '-'), +(744, 'Daniel Erikson Tambunan', 'PPDS', 'Jantung', 'danielerikson@student.ub.ac.id', '-'), +(745, 'Faruq Yufarriqu Mufaza', 'PPDS', 'Jantung', 'faruqym@student.ub.ac.id', '-'), +(746, 'Laras Gaby Catelya', 'PPDS', 'Jantung', 'lcatelya@student.ub.ac.id', '-'), +(747, 'Bima Utama', 'PPDS', 'Jantung', 'bimautama@student.ub.ac.id', '-'), +(748, 'dr. Kartika', 'PPDS', 'Jantung', 'kartika85@student.ub.ac.id', '-'), +(749, 'Gleopatra Dorothy Molle', 'PPDS', 'Jantung', 'gledhylle119@student.ub.ac.id', '-'), +(750, 'Yola Newary', 'PPDS', 'Jantung', 'drynewary@student.ub.ac.id', '-'), +(751, 'Marco Filano', 'PPDS', 'Jantung', 'marcofilano35@student.ub.ac.id', '-'), +(752, 'Akbar Fadilah', 'PPDS', 'Jantung', 'sultanakb98@student.ub.ac.id', '-'), +(753, 'Bunga Bella Pratiwi', 'PPDS', 'Jantung', 'bungabellap6@student.ub.ac.id', '-'), +(754, 'Sutanti Lara Dewi', 'PPDS', 'Jantung', 'tantiadewi@student.ub.ac.id', '-'), +(755, 'Muhtar Ady Kusuma', 'PPDS', 'Jantung', 'muhtarady07@student.ub.ac.id', '-'), +(756, 'Akhmad Noval Denny Irawan', 'PPDS', 'Jantung', 'noval88@student.ub.ac.id', '-'), +(757, 'Avinda Miyana Putri', 'PPDS', 'Jantung', 'avindamiyana@student.ub.ac.id', '-'), +(758, 'Agustinus Siswanto', 'PPDS', 'Jantung', 'agustinus_s98@student.ub.ac.id', '-'), +(759, 'GALUH IMAN NIRWANA', 'PPDS', 'Jantung', 'galuhnirwana@student.ub.ac.id', '-'), +(760, 'Mochamad Ali Rosadi', 'PPDS', 'Jantung', 'alirosadi@student.ub.ac.id', '-'), +(761, 'Muhammad Rizky Putra Adri', 'PPDS', 'Jantung', 'mrizkypa21@student.ub.ac.id', '-'), +(762, 'ALFIAN REDDY SAGALA', 'PPDS', 'Jantung', 'mypupuu@student.ub.ac.id', '-'), +(763, 'Reviandy Achmad Armandani', 'PPDS', 'Jantung', 'andykardiologi@student.ub.ac.id', '-'), +(764, 'Cornellius Dharwindo', 'PPDS', 'Jantung', 'dinokardio@student.ub.ac.id', '-'), +(765, 'Anindia Reina Yolanda', 'PPDS', 'Jantung', 'anindiareina@student.ub.ac.id', '-'), +(766, 'amalia nurjanah', 'PPDS', 'Jantung', 'amaliamansyur@student.ub.ac.id', '-'), +(767, 'Muhammad Aji Muharrom', 'PPDS', 'Jantung', 'ajimuharrom@student.ub.ac.id', '-'), +(768, 'Suryaningtyas Prabowo', 'PPDS', 'Jantung', 'pacebobs@student.ub.ac.id', '-'), +(769, 'septian christy nugroho', 'PPDS', 'Jantung', 'septiancn08@student.ub.ac.id', '-'), +(770, 'andreago', 'PPDS', 'Jantung', 'andreago@student.ub.ac.id', '-'), +(771, 'Muhammad Haris Firdaus', 'PPDS', 'Jantung', 'mharisfirdaus94@student.ub.ac.id', '-'), +(772, 'Mariana Marpaung', 'PPDS', 'Jantung', 'mariana88@student.ub.ac.id', '-'), +(773, 'Annisya Handini', 'PPDS', 'Jantung', 'annisyahandini8@student.ub.ac.id', '-'), +(774, 'Dr. dr. Aulia Abdul Hamid Abdullah, M.Biomed.Sc, Sp.M(K)', 'DPJP', 'Mata', 'aulia.fk@ub.ac.id', '-'), +(775, 'Dr. dr. Nadia Artha Dewi, Sp.M(K)', 'DPJP', 'Mata', 'nadia_dewi@ub.ac.id', '-'), +(776, 'Dr. dr. Seskoati Prayitnaningsih, Sp.M(K)', 'DPJP', 'Mata', 'seskoatip@ub.ac.id', '-'), +(777, 'Dr. dr. Hera Dwi Novita, Sp.M(K)', 'DPJP', 'Mata', 'hera_spm@ub.ac.id', 'heradw@gmail.com'), +(778, 'dr. Hidayat Sujuti, Sp.M(K), Ph.D', 'DPJP', 'Mata', 'hidayatsujuti.fk@ub.ac.id', '-'), +(779, 'dr. Lely Retno Wulandari, Sp.M(K)', 'DPJP', 'Mata', 'lely_wulandari@ub.ac.id', '-'), +(780, 'Dr. dr. Nina Handayani, Sp.M(K)', 'DPJP', 'Mata', 'nina_handayani@ub.ac.id', 'ninahdyn@gmail.com'), +(781, 'dr. Wino Vrieda Vierlia, Sp.M(K)', 'DPJP', 'Mata', 'vrieda_v@ub.ac.id', 'vrieda_v@yahoo.com'), +(782, 'dr. Zendy Sagita, Sp.M', 'DPJP', 'Mata', 'zendysagita@ub.ac.id', 'zendysagita@gmail.com'), +(783, 'Dr. dr. Nanda Wahyu Anandita, Sp.M(K)', 'DPJP', 'Mata', 'nan_anandita@ub.ac.id', 'nan_anandita@yahoo.com'), +(784, 'Dr. dr. Ovi Sofia, Sp.M(K)', 'DPJP', 'Mata', 'dr.ovisofia@ub.ac.id', 'ovisofia@yahoo.com'), +(785, 'Dr. dr. Debby Shintiya Dewi, Sp.M(K)', 'DPJP', 'Mata', 'Debbyshintiya73@ub.ac.id', 'shindeby@gmail.com'), +(786, 'Dr. dr. Rosy Aldina, Sp.M(K)', 'DPJP', 'Mata', 'rosyaldina@ub.ac.id', 'rosyaldina@yahoo.com'), +(787, 'dr. Anny Sulistiyowati, Sp.M(K)', 'DPJP', 'Mata', '-', 'anny_vision@yahoo.com'), +(788, 'dr. Herwindo Dicky Putranto, Sp.M(K)', 'DPJP', 'Mata', '-', 'nan_anandita@yahoo.com'), +(789, 'dr. Titok Hariyanto, Sp.M', 'DPJP', 'Mata', '-', 'titok19@yahoo.com'), +(790, 'dr. Triana Budi Sulistya, Sp.M(K)', 'DPJP', 'Mata', '-', 'budi.sulistya@yahoo.com'), +(791, 'dr. Fariz Nufiarwan, Sp.M', 'DPJP', 'Mata', '-', 'dr. Fareast@gmail.com'), +(792, 'dr. Vatien Rahmawati, Sp.M', 'DPJP', 'Mata', '-', 'vatien21@gmail.com'), +(793, 'dr. Chairunisa Ferdiana, Sp.M, M.Si', 'DPJP', 'Mata', '-', 'neesa_joe@yahoo.com'), +(794, 'dr. Cinthya Hapsari, Sp.M', 'DPJP', 'Mata', '-', 'chintya.hapsari@gmail.com'), +(795, 'dr. Raden Budi Santoso, Sp.M', 'DPJP', 'Mata', '-', 'radenbudisantoso.rbs@gmail.com'), +(796, 'dr. Sigit Wibisono, Sp.M', 'DPJP', 'Mata', '-', 'sigitwibisono74@gmail.com'), +(797, 'dr. Tutuk Wibowo Chamidy, Sp.M', 'DPJP', 'Mata', '-', 'ctutukwibowo@gmail.com'), +(798, 'dr. Ahmad Thohir, Sp.M', 'DPJP', 'Mata', 'ahmad.thohir@ub.ac.id', 'drhirspm@gmail.com'), +(799, 'dr. Agung Pambudi Setyowibowo, Sp.M', 'DPJP', 'Mata', '-', '-'), +(800, 'Ramona Intan Permatasari', 'PPDS', 'Mata', 'ramona22@student.ub.ac.id', '-'), +(801, 'dr. Pranandito Trunogati', 'PPDS', 'Mata', 'pranandito@student.ub.ac.id', '-'), +(802, 'Heavin Rakhmat Saintika', 'PPDS', 'Mata', 'heavinrs@student.ub.ac.id', '-'), +(803, 'Arsita Keumaladewi', 'PPDS', 'Mata', 'arsita19@student.ub.ac.id', '-'), +(804, 'Edwin Damar Prabowo', 'PPDS', 'Mata', 'damaredwin@student.ub.ac.id', '-'), +(805, 'Ariyoga Kun Laksono', 'PPDS', 'Mata', 'ariyogakun@student.ub.ac.id', '-'), +(806, 'Aditya Rachman', 'PPDS', 'Mata', 'rachaditya@student.ub.ac.id', '-'), +(807, 'Rofiqi Rofiq', 'PPDS', 'Mata', 'rofiqirofiq@student.ub.ac.id', '-'), +(808, 'Rizal', 'PPDS', 'Mata', 'rizalmz@student.ub.ac.id', '-'), +(809, 'Arya Putra Syuhada', 'PPDS', 'Mata', 'aryaaryaarya@student.ub.ac.id', '-'), +(810, 'Hilda Adina Eriawan', 'PPDS', 'Mata', 'hildaadina@student.ub.ac.id', '-'), +(811, 'Aisha Andriana', 'PPDS', 'Mata', 'aishaandrn@student.ub.ac.id', '-'), +(812, 'prasaundra triantoni putra', 'PPDS', 'Mata', 'prasaundra@student.ub.ac.id', '-'), +(813, 'Lanisa Hapsari', 'PPDS', 'Mata', 'lanisahapsari@student.ub.ac.id', '-'), +(814, 'Erna Yulida', 'PPDS', 'Mata', 'ernayulida@student.ub.ac.id', '-'), +(815, 'Dessy Vinoricka Andriyana', 'PPDS', 'Mata', 'dessyvinoppds@student.ub.ac.id', '-'), +(816, 'A\'ifatin Fenisya', 'PPDS', 'Mata', 'aifatinvenysya@student.ub.ac.id', '-'), +(817, 'Rastha Sasmaka', 'PPDS', 'Mata', 'sasmaka_rastha@student.ub.ac.id', '-'), +(818, 'Dyah Anisa Aprilani', 'PPDS', 'Mata', 'dyah_anisa@student.ub.ac.id', '-'), +(819, 'Ghea Ananta', 'PPDS', 'Mata', 'dokterghea@student.ub.ac.id', '-'), +(820, 'Othe Ahmad Syarifuddin', 'PPDS', 'Mata', 'otheas@student.ub.ac.id', '-'), +(821, 'Winalisa Eka Hardiyanti', 'PPDS', 'Mata', 'winalisaeka@student.ub.ac.id', '-'), +(822, 'Muhammad Ferdiansyah', 'PPDS', 'Mata', 'ferdiansanir@student.ub.ac.id', '-'), +(823, 'Muhammad Fachri Ridha Herlan', 'PPDS', 'Mata', 'fachriridha@student.ub.ac.id', '-'), +(824, 'Farisa Shauma Fachir', 'PPDS', 'Mata', 'farisafachir@student.ub.ac.id', '-'), +(825, 'Muhammad Aulia', 'PPDS', 'Mata', 'mhdaulia@student.ub.ac.id', '-'), +(826, 'Santi Febrianti', 'PPDS', 'Mata', 'santifebrianti@student.ub.ac.id', '-'), +(827, 'Muhammad Fathan Rasyid Al Faruqi', 'PPDS', 'Mata', 'fathannisa2112@student.ub.ac.id', '-'), +(828, 'Ifada Hariani Kusuma', 'PPDS', 'Mata', 'ifadahariani@student.ub.ac.id', '-'), +(829, 'Eka apriani lubis', 'PPDS', 'Mata', 'ekalubis04@student.ub.ac.id', '-'), +(830, 'Mohammad Alif Azizi', 'PPDS', 'Mata', 'm_alif@student.ub.ac.id', '-'), +(831, 'Putry Adenia Bahar', 'PPDS', 'Mata', 'adeniabahar@student.ub.ac.id', '-'), +(832, 'Fatina Qonita', 'PPDS', 'Mata', 'fatinaqonita@student.ub.ac.id', '-'), +(833, 'Yudha Kusuma Dwiatmaja', 'PPDS', 'Mata', 'yudhadwiatmaja@student.ub.ac.id', '-'), +(834, 'Nadia Dessi Quartantri', 'PPDS', 'Mata', 'nadiaquartantri@student.ub.ac.id', '-'), +(835, 'Hanifah Arani', 'PPDS', 'Mata', 'aranihanifah@student.ub.ac.id', '-'), +(836, 'Dina Aqmarina Dalilati', 'PPDS', 'Mata', 'dinaqmarinad@student.ub.ac.id', '-'), +(837, 'Dwi Arif Wahyu Wibowo', 'PPDS', 'Mata', 'dwiarifww@student.ub.ac.id', '-'), +(838, 'Gusti Rajendra Yoga Pratama', 'PPDS', 'Mata', 'rajendragusti97@student.ub.ac.id', '-'), +(839, 'Fauzi Abdillah', 'PPDS', 'Mata', 'fauziabdillah@student.ub.ac.id', '-'), +(840, 'Baskoro Hariadi', 'PPDS', 'Mata', 'baskoromata@student.ub.ac.id', '-'), +(841, 'Shofia Medina Samara', 'PPDS', 'Mata', 'shofiamedina@student.ub.ac.id', '-'), +(842, 'Gustavita Maria Bandong', 'PPDS', 'Mata', 'gustavita@student.ub.ac.id', '-'), +(843, 'Mahda Faisal Waber', 'PPDS', 'Mata', 'mahdafw@student.ub.ac.id', '-'), +(844, 'NABILA FAUZIAH', 'PPDS', 'Mata', 'nabilafzh@student.ub.ac.id', '-'), +(845, 'Nisrina Amalia Rohimah', 'PPDS', 'Mata', 'nisrinamaliar@student.ub.ac.id', '-'), +(846, 'Noorivana Melina Amanda', 'PPDS', 'Mata', 'noorivanamanda@student.ub.ac.id', '-'), +(847, 'Azkiya Zahra', 'PPDS', 'Mata', 'azkiya_zahra@student.ub.ac.id', '-'), +(848, 'Laksmi Muliawati', 'PPDS', 'Mata', 'drlaksmimuliaw@student.ub.ac.id', '-'), +(849, 'Denny Indra Maulana', 'PPDS', 'Mata', 'dennyindramln@student.ub.ac.id', '-'), +(850, 'Ainun Nadziroh', 'PPDS', 'Mata', 'andzrh@student.ub.ac.id', '-'), +(851, 'Fathia Azzahra', 'PPDS', 'Mata', 'fathiazzahra@student.ub.ac.id', '-'), +(852, 'Nabila Ulfayani Hanifah', 'PPDS', 'Mata', 'nblulfayani@student.ub.ac.id', '-'), +(853, 'Ego Frendy Damara', 'PPDS', 'Mata', 'egodamara@student.ub.ac.id', '-'), +(854, 'Dwi Wening Anggarini', 'PPDS', 'Mata', 'dwwening@student.ub.ac.id', '-'), +(855, 'Imam Godly Alam', 'PPDS', 'Mata', 'imamgodlyalam@student.ub.ac.id', '-'), +(856, 'Santi Dwi Cahyani', 'PPDS', 'Mata', 'santidwchyn@student.ub.ac.id', '-'), +(857, 'Nabila Astri Nur Kuntari', 'PPDS', 'Mata', 'nabilaastri01@student.ub.ac.id', '-'), +(858, 'Agus Saifudin', 'PPDS', 'Mata', 'agussaifudin@student.ub.ac.id', '-'), +(859, 'Ambhari Paramastrya Putri', 'PPDS', 'Mata', 'tryaaputri@student.ub.ac.id', '-'), +(860, 'Indra Firismanda Dermawan', 'PPDS', 'Mata', 'indrafirismanda@student.ub.ac.id', '-'), +(861, 'Yuda Pradana', 'PPDS', 'Mata', 'pradanayuda19@student.ub.ac.id', '-'), +(862, 'Naura Hasna Salsabila', 'PPDS', 'Mata', 'naurahasal@student.ub.ac.id', '-'), +(863, 'dr. Neila Raisa, Sp. S (K)', 'DPJP', 'Neurologi', 'neilaraisa@ub.ac.id', 'neilaraisa@gmail.com'), +(864, 'dr. Eko Arisetijono, Sp. S (K)', 'DPJP', 'Neurologi', 'drekoarisetijono.fk@ub.ac.id', '-'), +(865, 'dr. Rodhiyan Rakhmatiar, Sp.S (K) M. Biomed', 'DPJP', 'Neurologi', 'odhy_neuro@ub.ac.id', 'odhy.fkub03@gmail.com'), +(866, 'dr. Zamroni A, Sp. S (K)', 'DPJP', 'Neurologi', 'dr_zamroniafif@ub.ac.id', 'drzamroniafif98@gmail.com'), +(867, 'dr. Machlusil Husna, Sp. S (K)ย ', 'DPJP', 'Neurologi', 'machlusilhusna.fk@ub.ac.id', 'machlusilhusna@yahoo.com'), +(868, 'dr. Sri Budhi Rianawati, Sp. S (K)', 'DPJP', 'Neurologi', 'rien62.fk@ub.ac.id', '-'), +(869, 'Dr. dr. Shahdevi Nandar K, Sp. S (K)', 'DPJP', 'Neurologi', 'shahdevinandar@ub.ac.id', 'shahdevinandar@gmail.com'), +(870, 'dr. Catur Arisetianto, Sp. S (K)', 'DPJP', 'Neurologi', 'catur-ari@ub.ac.id', 'drcaturarisetianto@gmail.com'), +(871, 'dr. Widodo Mardi Santoso, Sp. S (K)', 'DPJP', 'Neurologi', 'widodotita.fk@ub.ac.id', '-'), +(872, 'dr. Badrul Munir, Sp. S (K)', 'DPJP', 'Neurologi', 'badroel2007@ub.ac.id', 'badroel2007@yahoo.com'), +(873, 'dr. Dessika Rahmawati, Sp. S (K)', 'DPJP', 'Neurologi', 'dessikasps@ub.ac.id', 'Dessika_dr@yahoo.com'), +(874, 'dr. Ria Damayanti, M.Biomed, Sp.S(K)', 'DPJP', 'Neurologi', 'dr.riadamayanti@ub.ac.id', 'dr.riadamayanti@yahoo.com'), +(875, 'dr. Adecya Amaryllis Risa Putri, Sp.N', 'DPJP', 'Neurologi', '-', 'adecyaamaryllis@gmail.com'), +(876, 'Dr. dr. Rini Andriani, Sp.S(K)', 'DPJP', 'Neurologi', '-', 'andrianirini13@yahoo.com'), +(877, 'dr. Wahyuni Ramadhani Suaib', 'PPDS', 'Neurologi', 'wandasuaib@student.ub.ac.id', '-'), +(878, 'Bisma Dewanto Ari Prabowo', 'PPDS', 'Neurologi', 'bismadewanto@student.ub.ac.id', '-'), +(879, 'Ausi Mutiara Dwi Atri', 'PPDS', 'Neurologi', 'ausidwiatri2021@student.ub.ac.id', '-'), +(880, 'Adeliza Firzarosany Insanitaqwa', 'PPDS', 'Neurologi', 'adeliza@student.ub.ac.id', '-'), +(881, 'Angga Pratama', 'PPDS', 'Neurologi', 'anggapfkub07@student.ub.ac.id', '-'), +(882, 'Wa Ode Nur Intan Octina', 'PPDS', 'Neurologi', 'wdnurintanoct@student.ub.ac.id', '-'), +(883, 'dr. Fatma Rahmalia Izzati', 'PPDS', 'Neurologi', 'fatmaneuro@student.ub.ac.id', '-'), +(884, 'Miranthi Ayu Irnanda', 'PPDS', 'Neurologi', 'miranthiayui@student.ub.ac.id', '-'), +(885, 'AISYIYAH ALVIANA AGUSTIN', 'PPDS', 'Neurologi', 'aisyiyahalviana@student.ub.ac.id', '-'), +(886, 'Ahmad Abdul Hadiy Az-zakiy', 'PPDS', 'Neurologi', 'hadhyaz@student.ub.ac.id', '-'), +(887, 'Enggar Gumelar', 'PPDS', 'Neurologi', 'enggargumelar@student.ub.ac.id', '-'), +(888, 'dr.M.Effendy Nugraha Hasibuan', 'PPDS', 'Neurologi', 'fendy19991@student.ub.ac.id', '-'), +(889, 'Ananto Suar Bhakti Ibrahim', 'PPDS', 'Neurologi', 'anantosbi@student.ub.ac.id', '-'), +(890, 'Dody Riandono', 'PPDS', 'Neurologi', 'dodyriandono@student.ub.ac.id', '-'), +(891, 'Shelby Amrus Ernanda', 'PPDS', 'Neurologi', 'shelbyernanda@student.ub.ac.id', '-'), +(892, 'Merika Soraya', 'PPDS', 'Neurologi', 'merikasoraya@student.ub.ac.id', '-'), +(893, 'Annisa Rahma', 'PPDS', 'Neurologi', 'nisaxrahma@student.ub.ac.id', '-'), +(894, 'Ditaris Galih Iman', 'PPDS', 'Neurologi', 'ditaris@student.ub.ac.id', '-'), +(895, 'Nada Yuliandha', 'PPDS', 'Neurologi', 'yuliandhanay@student.ub.ac.id', '-'), +(896, 'Setia Budi Tjendra', 'PPDS', 'Neurologi', 'setiabudi@student.ub.ac.id', '-'), +(897, 'WAHYU DWIRIMA KARTIKA SARI', 'PPDS', 'Neurologi', 'wahyudwirimaks@student.ub.ac.id', '-'), +(898, 'Nur Amalia Permatasari', 'PPDS', 'Neurologi', 'permatamalia14@student.ub.ac.id', '-'), +(899, 'Ahmad Maulana Puta', 'PPDS', 'Neurologi', 'maulanaputa@student.ub.ac.id', '-'), +(900, 'Lalu Muhammad Nuh', 'PPDS', 'Neurologi', 'mrgenooeh3@student.ub.ac.id', '-'), +(901, 'Dyah Ayu Kurniasari', 'PPDS', 'Neurologi', 'd_ayukurniasari@student.ub.ac.id', '-'), +(902, 'SETIYAWAN NURBIANTARA', 'PPDS', 'Neurologi', 'nurbiataralife@student.ub.ac.id', '-'), +(903, 'Wayan Agus Candra Swastika', 'PPDS', 'Neurologi', 'candraswas@student.ub.ac.id', '-'), +(904, 'Senoadji Pratama', 'PPDS', 'Neurologi', 'senoadjipratama@student.ub.ac.id', '-'), +(905, 'Sari Dianita Purnama', 'PPDS', 'Neurologi', 'purnamasari@student.ub.ac.id', '-'), +(906, 'Galang Mahasin Muhammad', 'PPDS', 'Neurologi', 'galangmuhammad@student.ub.ac.id', '-'), +(907, 'Febrina Friscilia', 'PPDS', 'Neurologi', 'febrina1@student.ub.ac.id', '-'), +(908, 'Firda Aunidiah Putri', 'PPDS', 'Neurologi', 'firdaaunidiah20@student.ub.ac.id', '-'), +(909, 'allyssa rahmaditta', 'PPDS', 'Neurologi', 'allyssarahma@student.ub.ac.id', '-'), +(910, 'Arvidareyna Panca Aprilianingtyas', 'PPDS', 'Neurologi', 'arvidareyna@student.ub.ac.id', '-'), +(911, 'Bima Perwirayuda', 'PPDS', 'Neurologi', 'bimaperwirayuda@student.ub.ac.id', '-'), +(912, 'KANIA AVIANDI SAVITRI', 'PPDS', 'Neurologi', 'kania_aviandis@student.ub.ac.id', '-'), +(913, 'Masyalia Hasna Taqiyyah', 'PPDS', 'Neurologi', 'masyaliahasna@student.ub.ac.id', '-'), +(914, 'Rahma Lutfiana Yaktiani', 'PPDS', 'Neurologi', 'rahmayaktiani@student.ub.ac.id', '-'), +(915, 'dr. Alfiani Rosyida Arisanti', 'PPDS', 'Neurologi', 'alfiani1212@student.ub.ac.id', '-'), +(916, 'Vany Matasak', 'PPDS', 'Neurologi', 'vanymatasak@student.ub.ac.id', '-'), +(917, 'Muhammad Dhiya Rahadian', 'PPDS', 'Neurologi', 'm_dhiyarahadian@student.ub.ac.id', '-'), +(918, 'Yosefin Joenadi', 'PPDS', 'Neurologi', 'yosefin_joenadi@student.ub.ac.id', '-'), +(919, 'Elsye Margareth Pattiasina', 'PPDS', 'Neurologi', 'elsyemargareth@student.ub.ac.id', '-'), +(920, 'Muhammad Rifqy Romadhoni', 'PPDS', 'Neurologi', 'mrifqyromadhoni@student.ub.ac.id', '-'), +(921, 'Muhammad Unzila Rafsi Zulfikri', 'PPDS', 'Neurologi', 'unzila_rafsi@student.ub.ac.id', '-'), +(922, 'Rangsang Bagus Prabowo', 'PPDS', 'Neurologi', 'rangsangbagus@student.ub.ac.id', '-'), +(923, 'Rosmala Lamaira', 'PPDS', 'Neurologi', 'rosmalalamaira@student.ub.ac.id', '-'), +(924, 'Nadya Marsella BR Simanungkalit', 'PPDS', 'Neurologi', 'nadya_kalit@student.ub.ac.id', '-'), +(925, 'Dr.dr. Tatit Nurseta, Sp.OG (K)ย ', 'DPJP', 'Obsgyn', 'tns_obg.fk@ub.ac.id', 'tatitnurseta@gmail.com'), +(926, 'dr. Yahya Irwanto, Sp.OG (K)', 'DPJP', 'Obsgyn', 'yahyairwanto50@ub.ac.id', 'yahyairwanto50@gmail.com'), +(927, 'Dr.dr. I Wayan Arsana Wiyasa, Sp.OG (K)ย ', 'DPJP', 'Obsgyn', 'arSp.OG.fk@ub.ac.id', 'arsanawiyasa@gmail.com'), +(928, 'dr. Pande Made Dwi Jayasa, Sp.OG (K)ย ', 'DPJP', 'Obsgyn', 'pmd_obg.fk@ub.ac.id', 'dr.pandemlg@yahoo.com'), +(929, 'dr. Sutrisno, Sp.OG (K)', 'DPJP', 'Obsgyn', 'snoSp.OG.fk@ub.ac.id', 'snoSp.OGk@gmail.com'), +(930, 'dr. Hermawan Wibisono, Sp.OG (K)PhD', 'DPJP', 'Obsgyn', 'sonspog.fk@ub.ac.id', '-'), +(931, 'Dr. dr. Bambang Rahardjo, Sp.OG (K)', 'DPJP', 'Obsgyn', 'bar_obg.fk@ub.ac.id', 'bar_feto@yahoo.com'), +(932, 'Dr. dr. Nugrahanti Prasetyorini, Sp.OG (K)ย ', 'DPJP', 'Obsgyn', 'nuke_obg.fk@ub.ac.id', 'nuke_obg@yahoo.com'), +(933, 'dr. Mukhamad Nooryanto, Sp.OG (K)', 'DPJP', 'Obsgyn', 'mor_feto.fk@ub.ac.id', 'morSp.OG@gmail.com'), +(934, 'dr. Suheni Ninik Hariyati, Sp.OG', 'DPJP', 'Obsgyn', 'suheni.fk@ub.ac.id', '-'), +(935, 'dr. Anggia Prameswari, Sp. OG', 'DPJP', 'Obsgyn', '-', 'anggiaprameswari910@gmail.com'), +(936, 'Dr. dr. Edi Mustofa, Sp.OG (K)', 'DPJP', 'Obsgyn', '-', 'edy.mustofa.obgynsos@gmail.com'), +(937, 'DR. dr. Rahajeng, Sp. OG (K)ย ', 'DPJP', 'Obsgyn', 'rahajeng.fk@ub.ac.id', 'jen_urogyn@yahoo.co.id'), +(938, 'dr. Rudi Priyo Utomo, Sp.OG', 'DPJP', 'Obsgyn', '-', 'rugia84@gmail.com'), +(939, 'Dr. dr. I Wayan Agung Indrawan, Sp.OG(K)', 'DPJP', 'Obsgyn', 'dr_iwa.fk@ub.ac.id', 'wayanagung.wa@gmail.com'), +(940, 'dr. Adityo Prabowo, Sp.OG, M.Ked.Klin', 'DPJP', 'Obsgyn', 'adityoprabowo@ub.ac.id', '-'), +(941, 'dr. Arghya Wicaksana, Sp.OG.', 'DPJP', 'Obsgyn', 'arghya@ub.ac.id', '-'), +(942, 'dr. Cholid Rohman Riskianto, Sp.OG', 'DPJP', 'Obsgyn', '-', 'cholidrochman@gmail.com'), +(943, 'dr. Irfani Baihaqi, Sp.OG', 'DPJP', 'Obsgyn', '-', 'irfanibaihaqiSp.OG@gmail.com'), +(944, 'dr. Eka Nasrur Maulana, Sp.OG', 'DPJP', 'Obsgyn', '-', 'rur.obgyn@gmail.com'), +(945, 'dr. Fatmasari Perdana Menur, Sp.OG', 'DPJP', 'Obsgyn', '-', 'doc.pm84@gmail.com'), +(946, 'dr. Nirmala Gina Prabawati, Sp.OG', 'DPJP', 'Obsgyn', '-', 'prabawati.gina@gmail.com'), +(947, 'dr. Onni Dwi Arianto, Sp.OG', 'DPJP', 'Obsgyn', '-', 'onnidwiarianto@gmail.com'), +(948, 'dr. Puspita Handayani, Sp.OG(K)', 'DPJP', 'Obsgyn', '-', 'puspitaobg26@gmail.com'), +(949, 'dr. Roni Subrata, Sp.OG', 'DPJP', 'Obsgyn', '-', 'dr.ronisubrata03@gmail.com'), +(950, 'dr. Teguh Wiyono, Sp.OG', 'DPJP', 'Obsgyn', '-', 'teguhwiyonobgyn@gmail.com'), +(951, 'dr. Handi Firmansyah, Sp.OG, M.Ked.Klin', 'DPJP', 'Obsgyn', '-', 'handifirmansyah83@gmail.com'), +(952, 'dr. Dhian Eka Putri Harnandari, Sp.OG', 'DPJP', 'Obsgyn', '-', 'dhianeka.dr@gmail.com'), +(953, 'dr. Aditya Fendi Uji Pamungkas, Sp.OG', 'DPJP', 'Obsgyn', '-', 'aremaniadoctor@gmail.com'), +(954, 'dr. Mulyo Hadi Wibowo, Sp.OG', 'DPJP', 'Obsgyn', '-', 'mulyohadiwibowo@gmail.com'), +(955, 'dr. Adin Yan Permana, Sp.OG', 'DPJP', 'Obsgyn', '-', '13adinyanpermana@gmail.com'), +(956, 'dr. Mochamad Putro Argo, Sp.OG', 'DPJP', 'Obsgyn', '-', 'dr.putraargo@gmail.com'), +(957, 'dr. Margaretha Claudhya Febryanna, Sp.OG, M.Ked.Klin', 'DPJP', 'Obsgyn', '-', 'dr.mcfebryanna@gmail.com'), +(958, 'dr. Faiza Fardha Auliya', 'PPDS', 'Obsgyn', 'faizafardha@student.ub.ac.id', '-'), +(959, 'Tendri Ayu Putri Kahar', 'PPDS', 'Obsgyn', 'tendriayu@student.ub.ac.id', '-'), +(960, 'Geneung Patridina', 'PPDS', 'Obsgyn', 'gpatridina@student.ub.ac.id', '-'), +(961, 'Heristanto', 'PPDS', 'Obsgyn', 'heristanto@student.ub.ac.id', '-'), +(962, 'Yohanes Adam Elsoin', 'PPDS', 'Obsgyn', 'elsoinyohanes@student.ub.ac.id', '-'), +(963, 'Harry Dwi Pratama', 'PPDS', 'Obsgyn', 'harryoct91@student.ub.ac.id', '-'), +(964, 'Atika Sugiarto', 'PPDS', 'Obsgyn', 'atikasugiarto@student.ub.ac.id', '-'), +(965, 'Annisa Adhania Rusfandi', 'PPDS', 'Obsgyn', 'annisarusfandi@student.ub.ac.id', '-'), +(966, 'Rivi Darmawan', 'PPDS', 'Obsgyn', 'rividarm3896@student.ub.ac.id', '-'), +(967, 'Chynthea Paramitha Dewi', 'PPDS', 'Obsgyn', 'chyntheapd@student.ub.ac.id', '-'), +(968, 'Fathi Nabila Alim', 'PPDS', 'Obsgyn', 'fathinabila@student.ub.ac.id', '-'), +(969, 'Febie Putra Suwana', 'PPDS', 'Obsgyn', 'febieputra@student.ub.ac.id', '-'), +(970, 'setio leksono', 'PPDS', 'Obsgyn', 'setioleksonotyo@student.ub.ac.id', '-'), +(971, 'Ripandi Yuspa', 'PPDS', 'Obsgyn', 'ripandiyuspa@student.ub.ac.id', '-'), +(972, 'dr. UMAR GUNARSA SUKANDAR', 'PPDS', 'Obsgyn', 'gunarsaunibraw@student.ub.ac.id', '-'), +(973, 'Rizki Wahyuni', 'PPDS', 'Obsgyn', 'kikiwahyuni91@student.ub.ac.id', '-'), +(974, 'Rosalia Purbandari', 'PPDS', 'Obsgyn', 'rosapurbandari@student.ub.ac.id', '-'), +(975, 'dr. Wulandari', 'PPDS', 'Obsgyn', 'wulanobg@student.ub.ac.id', '-'), +(976, 'Sakinah', 'PPDS', 'Obsgyn', 'sasawandira@student.ub.ac.id', '-'), +(977, 'Qonita Prasta Agustia', 'PPDS', 'Obsgyn', 'qonitaprasta@student.ub.ac.id', '-'), +(978, 'LIDYA DANIATI', 'PPDS', 'Obsgyn', 'lidyaniljuli22@student.ub.ac.id', '-'), +(979, 'Leny Silviana Farida', 'PPDS', 'Obsgyn', 'lenysfarida@student.ub.ac.id', '-'), +(980, 'Ferdinand Umbu Pati', 'PPDS', 'Obsgyn', 'ferdinandumbu@student.ub.ac.id', '-'), +(981, 'Angga Dominius', 'PPDS', 'Obsgyn', 'anggadominius@student.ub.ac.id', '-'), +(982, 'Yuli Ayu Diani', 'PPDS', 'Obsgyn', 'yuliayudiani@student.ub.ac.id', '-'), +(983, 'Theresia Citra Mila Mesa', 'PPDS', 'Obsgyn', 'theresiacitra@student.ub.ac.id', '-'), +(984, 'Wredi Angganingrum', 'PPDS', 'Obsgyn', 'wredianingrum@student.ub.ac.id', '-'), +(985, 'Wenny Yolanda', 'PPDS', 'Obsgyn', 'wennyyolanda@student.ub.ac.id', '-'), +(986, 'raizsa rusmiathie noor', 'PPDS', 'Obsgyn', 'raizsarum94@student.ub.ac.id', '-'), +(987, 'Yohanes Rico Nurhaeni', 'PPDS', 'Obsgyn', 'yoohanesricoo@student.ub.ac.id', '-'), +(988, 'Rahmawati Abdul Hakim', 'PPDS', 'Obsgyn', 'rahmatya@student.ub.ac.id', '-'), +(989, 'Aulia Astari', 'PPDS', 'Obsgyn', 'astariaulia@student.ub.ac.id', '-'), +(990, 'Muhammad Aris Indrawan', 'PPDS', 'Obsgyn', 'arisindrawan@student.ub.ac.id', '-'), +(991, 'ANDREAS TEDI SURYANTA KARO - KARO', 'PPDS', 'Obsgyn', 'andreastedi@student.ub.ac.id', '-'), +(992, 'Rony Sibuea', 'PPDS', 'Obsgyn', 'drronysibuea@student.ub.ac.id', '-'), +(993, 'Maria Grace Tania', 'PPDS', 'Obsgyn', 'mariagtania@student.ub.ac.id', '-'), +(994, 'Maria Kurniati Susan Endang Dangur', 'PPDS', 'Obsgyn', 'mariappdsog@student.ub.ac.id', '-'), +(995, 'Yustia Ika Wardhani', 'PPDS', 'Obsgyn', 'yustiaikaw@student.ub.ac.id', '-'), +(996, 'Siti Meiliza', 'PPDS', 'Obsgyn', 'sitimeiliza@student.ub.ac.id', '-'), +(997, 'Deo Apringga Ayu Nanta', 'PPDS', 'Obsgyn', 'dapringga@student.ub.ac.id', '-'), +(998, 'USWAH HASANAH', 'PPDS', 'Obsgyn', 'uswahasanaah@student.ub.ac.id', '-'), +(999, 'Gorby Arvin Lillo', 'PPDS', 'Obsgyn', 'gorbyppdsog@student.ub.ac.id', '-'), +(1000, 'Fania Rachmadani', 'PPDS', 'Obsgyn', 'faniappdsog@student.ub.ac.id', '-'), +(1001, 'Malaura Elfrida Simarmata', 'PPDS', 'Obsgyn', 'malaura@student.ub.ac.id', '-'), +(1002, 'Elviara Martha Tinova Suprapto', 'PPDS', 'Obsgyn', 'elviaratinova@student.ub.ac.id', '-'), +(1003, 'Ngakan Gde Arya Ratmaja putra', 'PPDS', 'Obsgyn', 'aryakrp30@student.ub.ac.id', '-'), +(1004, 'Giovanny Azalia Gunawan', 'PPDS', 'Obsgyn', 'giogunawan@student.ub.ac.id', '-'), +(1005, 'Latania Naufa Arinugraha', 'PPDS', 'Obsgyn', 'latanianaufaa@student.ub.ac.id', '-'), +(1006, 'Siluh Putu Chinintya Vania Saraswati', 'PPDS', 'Obsgyn', 'vaniasaraswati1@student.ub.ac.id', '-'), +(1007, 'MUJI SUTRISNO', 'PPDS', 'Obsgyn', 'mujisutrisno@student.ub.ac.id', '-'), +(1008, 'Lucky Riadi', 'PPDS', 'Obsgyn', 'luckyriadi@student.ub.ac.id', '-'), +(1009, 'Ellenora Resti Mustikaningrat', 'PPDS', 'Obsgyn', 'ellenoresti@student.ub.ac.id', '-'), +(1010, 'Febrinda Esti Syafitri', 'PPDS', 'Obsgyn', 'ben_resog25@student.ub.ac.id', '-'), +(1011, 'Azmiyah Febri Pramawardani', 'PPDS', 'Obsgyn', 'faz_resog25@student.ub.ac.id', '-'), +(1012, 'Rizal Adhi Kurniawan', 'PPDS', 'Obsgyn', 'ran_resog25@student.ub.ac.id', '-'), +(1013, 'ZAKIYAH ZULFA', 'PPDS', 'Obsgyn', 'haz_resog25@student.ub.ac.id', '-'), +(1014, 'Dhea Sofiana Mellazulfa', 'PPDS', 'Obsgyn', 'dif_resog25@student.ub.ac.id', '-'), +(1015, 'dr.Thomas Erwin CJ Huwae, Sp.OT (K)', 'DPJP', 'Orthopaedi', 'huwaethomas@ub.ac.id', 'huwaethomas@yahoo.com\nthomashuwae89@yahoo.com'), +(1016, 'dr.Agung Riyanto Budi Santoso, Sp.OT (K)', 'DPJP', 'Orthopaedi', 'agung_riyanto@ub.ac.id', 'choisiee@yahoo.com'), +(1017, 'dr.Istan Irmansyah Irsan, Sp.OT (K)ย ', 'DPJP', 'Orthopaedi', 'istan_irmansyah@ub.ac.id', 'istan_irmansyah@yahoo.com'), +(1018, 'dr.Satria Pandu Persada Isma, Sp.OT (K)', 'DPJP', 'Orthopaedi', 'percyisma@ub.ac.id', 'percyisma@yahoo.com'), +(1019, 'dr.Syaifullah Asmiragani, Sp.OT (K)ย ', 'DPJP', 'Orthopaedi', 'syaifullahag@ub.ac.id', 'syaifullahag@yahoo.com'), +(1020, 'dr.Andhika Yudistira, Sp.OT (K)', 'DPJP', 'Orthopaedi', 'andhika.yudhistira@ub.ac.id', 'andhika.yudistira@ymail.com'), +(1021, 'dr. Ery Satriawan, Sp. OT', 'DPJP', 'Orthopaedi', '-', 'ery.satriawan8487@gmail.com'), +(1022, 'Dr.dr.Edi Mustamsir, Sp.OT (K)ย ', 'DPJP', 'Orthopaedi', 'edimustamsir@ub.ac.id', 'edimustamsir@yahoo.co.id'), +(1023, 'dr.Krisna Yuarno Patama, Sp.OT (K)', 'DPJP', 'Orthopaedi', 'krisnayuarno@ub.ac.id', 'krisnayuarno@gmail.com'), +(1024, 'dr.Ananto Satya Pradana Drajat, Sp.OT', 'DPJP', 'Orthopaedi', 'satyapradana88@ub.ac.id', 'satyapradana88@gmail.com'), +(1025, 'Prof.Dr.dr.Respati S. Dradjat, Sp.OT (K)ย ', 'DPJP', 'Orthopaedi', 'respatisdradjat@ub.ac.id', 'respatisdradjat@yahoo.com'), +(1026, 'dr.Panji Sananta, M.Ked, Sp.OT (K)', 'DPJP', 'Orthopaedi', 'panjisananta@ub.ac.id', 'panjipst@gmail.com\np_sananta@yahoo.com'), +(1027, 'dr. Domy Pradana Putra, Sp.OT', 'DPJP', 'Orthopaedi', 'domy_pradana@ub.ac.id', '-'), +(1028, 'dr. Adhi Satriyo Utomo, Sp.OT.', 'DPJP', 'Orthopaedi', 'sam.ortho@ub.ac.id', '-'), +(1029, 'dr. Rakhmad Aditya Hernawan, Sp.OT.', 'DPJP', 'Orthopaedi', 'aditflea@ub.ac.id', '-'), +(1030, 'dr. Indo Rizki Pramulia, Sp.OT', 'DPJP', 'Orthopaedi', '-', 'indorizki27@gmail.com dan dr.indorizki@yahoo.com'), +(1031, 'dr. Arianto Prabowo, Sp.OT', 'DPJP', 'Orthopaedi', '-', 'dr_hernandez82@yahoo.com'), +(1032, 'dr. Brian Dhananjaya, Sp.OT', 'DPJP', 'Orthopaedi', '-', 'briandhananjaya@gmail.com'), +(1033, 'dr. Broto Suwadji, Sp.OT', 'DPJP', 'Orthopaedi', '-', 'dokterbroto@yahoo.com'), +(1034, 'dr. Hamzah, Sp.OT', 'DPJP', 'Orthopaedi', '-', 'hmz.jfr33@gmail.com'), +(1035, 'dr. Johan Bastian, Sp.OT', 'DPJP', 'Orthopaedi', '-', 'joerafrizal@yahoo.co.id'), +(1036, 'dr. Mujiyono, Sp.OT(K)', 'DPJP', 'Orthopaedi', '-', 'iyon9882@gmail.com'), +(1037, 'dr. R. Satriyo Aji, Sp.OT(K)', 'DPJP', 'Orthopaedi', '-', 'satriyo.ortho73@gmail.com'), +(1038, 'dr. Rangga Arieza Fachlevi, M.Kes, Sp.OT', 'DPJP', 'Orthopaedi', '-', 'ranggaarieza@gmail.com'), +(1039, 'Prof. Dr. dr. Mohamad Hidajat, Sp.B, Sp.OT(K)', 'DPJP', 'Orthopaedi', '-', 'm_hidayat@ub.ac.id'), +(1040, 'dr. Donny Noerhadiono C., Sp.OT(K) Spine', 'DPJP', 'Orthopaedi', '-', 'donnynoerhadiono@gmail.com'), +(1041, 'dr. Dandy Drestanto Adiwignyo, SpOT', 'DPJP', 'Orthopaedi', '-', '-'), +(1042, 'dr. Anindita Eka Pramana Wijaya, SpOT', 'DPJP', 'Orthopaedi', '-', '-'), +(1043, 'Faiz Alam Rasyid', 'PPDS', 'Orthopaedi', 'faizalamrasyid@student.ub.ac.id', '-'), +(1044, 'MUCHAMMAD BAGUS ALI HASMI', 'PPDS', 'Orthopaedi', 'mbagusalihasmi@student.ub.ac.id', '-'), +(1045, 'William Putera Sukmajaya', 'PPDS', 'Orthopaedi', 'williampsky@student.ub.ac.id', '-'), +(1046, 'Ade Churie Tanjaya', 'PPDS', 'Orthopaedi', 'adechurie90@student.ub.ac.id', '-'), +(1047, 'Teddy Arga Saputro', 'PPDS', 'Orthopaedi', 'teddyarga@student.ub.ac.id', '-'), +(1048, 'Ray Asaf Hexa Pandiangan', 'PPDS', 'Orthopaedi', 'asafortho@student.ub.ac.id', '-'), +(1049, 'Surya Iman Muhammad', 'PPDS', 'Orthopaedi', 'suryaiman@student.ub.ac.id', '-'), +(1050, 'Muhammad Alif Rio Yudhatama', 'PPDS', 'Orthopaedi', 'rioalif30@student.ub.ac.id', '-'), +(1051, 'Andryan Hanafi Bakri', 'PPDS', 'Orthopaedi', 'andryanh07@student.ub.ac.id', '-'), +(1052, 'Felix Cendikiawan', 'PPDS', 'Orthopaedi', 'felixc@student.ub.ac.id', '-'), +(1053, 'Andika Ghifari', 'PPDS', 'Orthopaedi', 'andikaghifari@student.ub.ac.id', '-'), +(1054, 'Mochamad Febryan Kevien Fadrijanto', 'PPDS', 'Orthopaedi', 'febryankevienn@student.ub.ac.id', '-'), +(1055, 'Belinda Azhari Siswanto', 'PPDS', 'Orthopaedi', 'belindasiswanto@student.ub.ac.id', '-'), +(1056, 'Muhammad Alwy Sugiarto', 'PPDS', 'Orthopaedi', 'alwysugiarto@student.ub.ac.id', '-'), +(1057, 'Darmawan Darkim', 'PPDS', 'Orthopaedi', 'darmawandarkim@student.ub.ac.id', '-'), +(1058, 'Annas Abdurrahman Asmiragani', 'PPDS', 'Orthopaedi', 'annasasmiragani@student.ub.ac.id', '-'), +(1059, 'Ahmad Muhsinin', 'PPDS', 'Orthopaedi', 'ahmadmuhsinin@student.ub.ac.id', '-'), +(1060, 'Muhammad Abduh', 'PPDS', 'Orthopaedi', 'muhammadabduh@student.ub.ac.id', '-'), +(1061, 'Lasa Dhakka Siahaan', 'PPDS', 'Orthopaedi', 'lasasiahaan@student.ub.ac.id', '-'), +(1062, 'Yudha Anantha Khaerul Putra', 'PPDS', 'Orthopaedi', 'yudhaananthakp@student.ub.ac.id', '-'), +(1063, 'Abraham Emes', 'PPDS', 'Orthopaedi', 'abrahamemes@student.ub.ac.id', '-'), +(1064, 'Albert Renard Soedianto', 'PPDS', 'Orthopaedi', 'renardsudianto@student.ub.ac.id', '-'), +(1065, 'dr. Milda Agniasari', 'PPDS', 'Orthopaedi', 'mildaagniasari@student.ub.ac.id', '-'), +(1066, 'DAYLAN OSCAR HERMAWAN', 'PPDS', 'Orthopaedi', 'daylanoscar@student.ub.ac.id', '-'), +(1067, 'Raymond Pangestu Halim', 'PPDS', 'Orthopaedi', 'raymondphalim@student.ub.ac.id', '-'), +(1068, 'Dwilan Achmad Fauzan', 'PPDS', 'Orthopaedi', 'dwilanachmad@student.ub.ac.id', '-'), +(1069, 'Rizaldi Mahardika Rachman', 'PPDS', 'Orthopaedi', 'aldimahardika@student.ub.ac.id', '-'), +(1070, 'Septabian Iskandar', 'PPDS', 'Orthopaedi', 'septabian@student.ub.ac.id', '-'), +(1071, 'Dani Pratama Febrianto', 'PPDS', 'Orthopaedi', 'danipratama4@student.ub.ac.id', '-'), +(1072, 'Aulia Pandu Aji', 'PPDS', 'Orthopaedi', 'panduaji@student.ub.ac.id', '-'), +(1073, 'Firman Emir Faizal Gani', 'PPDS', 'Orthopaedi', 'firmvn@student.ub.ac.id', '-'), +(1074, 'Christopher Daniel Halomoan', 'PPDS', 'Orthopaedi', 'tanjungchris@student.ub.ac.id', '-'), +(1075, 'Ali Rifqi Alkaff', 'PPDS', 'Orthopaedi', 'alirifqia@student.ub.ac.id', '-'), +(1076, 'Andri Arieska Wicaksana', 'PPDS', 'Orthopaedi', 'adrasna@student.ub.ac.id', '-'), +(1077, 'Fandy Setiawan', 'PPDS', 'Orthopaedi', 'fandyortho@student.ub.ac.id', '-'), +(1078, 'Mardlathillah Muhammad Asyhuri', 'PPDS', 'Orthopaedi', 'mardlathillah@student.ub.ac.id', '-'), +(1079, 'Erwin Alexander Pasaribu', 'PPDS', 'Orthopaedi', 'erwinap11ot@student.ub.ac.id', '-'), +(1080, 'Bima Mahardhika Aji', 'PPDS', 'Orthopaedi', 'bimaortho@student.ub.ac.id', '-'), +(1081, 'Wintang Dayinta Tanaya Hutami', 'PPDS', 'Orthopaedi', 'hutamiwintang@student.ub.ac.id', '-'), +(1082, 'Djati Herlambang', 'PPDS', 'Orthopaedi', 'djatiherlambang@student.ub.ac.id', '-'), +(1083, 'Felix Giovanni Hartono', 'PPDS', 'Orthopaedi', 'felixgiovahart@student.ub.ac.id', '-'), +(1084, 'Abdillah Budi Ksatria', 'PPDS', 'Orthopaedi', 'abdillahksatria@student.ub.ac.id', '-'), +(1085, 'Made Widhia Laksamana Putra', 'PPDS', 'Orthopaedi', 'madewidhiamd@student.ub.ac.id', '-'), +(1086, 'dr. Moh. Rifqi fathoni', 'PPDS', 'Orthopaedi', 'rifqifathoni@student.ub.ac.id', '-'), +(1087, 'ROBBY LAUREN.K', 'PPDS', 'Orthopaedi', 'robbylk97@student.ub.ac.id', '-'), +(1088, 'Alexander Fernando', 'PPDS', 'Orthopaedi', 'alxfrndortho@student.ub.ac.id', '-'), +(1089, 'Barnard M. Syaifudin', 'PPDS', 'Orthopaedi', 'barnardmi6@student.ub.ac.id', '-'), +(1090, 'Dr. dr. Susanthy Dj, Sp.P (K)ย ', 'DPJP', 'Paru', 'susanthy@ub.ac.id', 'susanthydj@gmail.com\nbimodj@yahoo.com'), +(1091, 'dr. Aditya Sp.P', 'DPJP', 'Paru', '-', '-'), +(1092, 'dr. Ungky Agus Setyawan, Sp.P (K)ย ', 'DPJP', 'Paru', 'dr_ungky_paru@ub.ac.id', 'uncret_ukuk@yahoo.co.id'), +(1093, 'dr. Suryanti Dwi Pratiwi, Sp.P (K)', 'DPJP', 'Paru', 'suryanti@ub.ac.id', 'wiwinarief1975@yahoo.co.id'), +(1094, 'dr. Ngakan Putu P Putra, Sp.P (K)', 'DPJP', 'Paru', 'ngakanputu@ub.ac.id', 'putu_paru@yahoo.com'), +(1095, 'dr. Rezki Tantular, Sp.P (K)', 'DPJP', 'Paru', '-', 'tantular@gmail.com'), +(1096, 'dr. Triwahju Astuti, M.Kes, Sp.P (K)', 'DPJP', 'Paru', 'astuti@ub.ac.id', 'astutidrparu@yahoo.co.id'), +(1097, 'dr. Iin Noor Chozin, Sp.P', 'DPJP', 'Paru', 'iin@ub.ac.id', 'iinfkub@gmail.com'), +(1098, 'dr. Sastia Rakhma, Sp.P', 'DPJP', 'Paru', 'sastiarakhma@ub.ac.id', 'sastyo@gmail.com'), +(1099, 'dr. Fitri Indah Sari, Sp.P', 'DPJP', 'Paru', 'fitrindahs1705@ub.ac.id', '-'), +(1100, 'dr. Aditya Sri Listyoko, Sp.P(K)', 'DPJP', 'Paru', 'adityalistyoko@ub.ac.id', '-'), +(1101, 'Dr. dr. Jani Jane Rosihaningsih Sugiri, Sp.P(K)', 'DPJP', 'Paru', 'jani@ub.ac.id', 'yjsugiri@gmail.com'), +(1102, 'dr. Deden Permana, Sp.P', 'DPJP', 'Paru', '-', 'dr.deden80@gmail.com'), +(1103, 'dr. Yunita Eka Wati, Sp.P', 'DPJP', 'Paru', '-', 'yunitaekawati@yahoo.co.id'), +(1104, 'dr. Christian Surya Eka Putra, Sp.P', 'DPJP', 'Paru', '-', 'christsurya10@gmail.com'), +(1105, 'dr. Muhamad Yusuf Musthafa, Sp.P', 'DPJP', 'Paru', '-', 'yusuf.musthafa.ym@gmail.com'), +(1106, 'Ari Irawan', 'PPDS', 'Paru', 'ariirawan@student.ub.ac.id', '-'), +(1107, 'Andriana Adolf Nggay', 'PPDS', 'Paru', 'andriana0706@student.ub.ac.id', '-'), +(1108, 'dr. Lia Susanti', 'PPDS', 'Paru', 'liasusanti0803@student.ub.ac.id', '-'), +(1109, 'Hustorio Aliongko Simamora', 'PPDS', 'Paru', 'hustorio@student.ub.ac.id', '-'), +(1110, 'Fibrianti Ratnasari', 'PPDS', 'Paru', 'pulmofibrianti@student.ub.ac.id', '-'), +(1111, 'Rahma djamaludin', 'PPDS', 'Paru', 'rahmadjamaludin@student.ub.ac.id', '-'), +(1112, 'Fahnida Nazliah', 'PPDS', 'Paru', 'fahnidanazliah@student.ub.ac.id', '-'), +(1113, 'Abdul Malik Fajri', 'PPDS', 'Paru', 'abdulmalikfajri@student.ub.ac.id', '-'), +(1114, 'Albert Lyono', 'PPDS', 'Paru', 'albertlyono8@student.ub.ac.id', '-'), +(1115, 'Satya Setiadi', 'PPDS', 'Paru', 'satyasetiadi6@student.ub.ac.id', '-'), +(1116, 'Harini Rahadiyanti', 'PPDS', 'Paru', 'raha07dynt@student.ub.ac.id', '-'), +(1117, 'Peter Krisdiyanto', 'PPDS', 'Paru', 'peterkris@student.ub.ac.id', '-'), +(1118, 'Hendro Suryadi', 'PPDS', 'Paru', 'hendrosuryadi@student.ub.ac.id', '-'), +(1119, 'Martha Fitri Alextina Tatodi', 'PPDS', 'Paru', 'marthafitri86@student.ub.ac.id', '-'), +(1120, 'Rifka Wikamto', 'PPDS', 'Paru', 'rifkawikamto@student.ub.ac.id', '-'), +(1121, 'I Made Suardana', 'PPDS', 'Paru', 'imadesuardana@student.ub.ac.id', '-'), +(1122, 'Anggita Efipania Silambi\'', 'PPDS', 'Paru', 'anggitasilambi@student.ub.ac.id', '-'), +(1123, 'Rizky Tania Fadillah', 'PPDS', 'Paru', 'rizkytaniaf@student.ub.ac.id', '-'), +(1124, 'Dian Ayu Murti Dewi', 'PPDS', 'Paru', 'dianayumd93@student.ub.ac.id', '-'), +(1125, 'Muchammad Zamroni', 'PPDS', 'Paru', 'muchzamroni@student.ub.ac.id', '-'), +(1126, 'Nuansa Firgie Paramita', 'PPDS', 'Paru', 'nfparamitha@student.ub.ac.id', '-'), +(1127, 'Ria Christin Lumpiach', 'PPDS', 'Paru', 'riachristinn@student.ub.ac.id', '-'), +(1128, 'Gregorio Satrio Pinunggul', 'PPDS', 'Paru', 'gregoriosatrio@student.ub.ac.id', '-'), +(1129, 'Dwiroza Delfianto', 'PPDS', 'Paru', 'delfiantodwi@student.ub.ac.id', '-'), +(1130, 'Naila Ekasari', 'PPDS', 'Paru', 'nailaekasari@student.ub.ac.id', '-'), +(1131, 'Eko Dian Syafithra', 'PPDS', 'Paru', 'ekodians@student.ub.ac.id', '-'), +(1132, 'Nisa Aprilen', 'PPDS', 'Paru', 'nisaaprilen@student.ub.ac.id', '-'), +(1133, 'Achmad Amir Solichudin', 'PPDS', 'Paru', 'achmadamirs18@student.ub.ac.id', '-'), +(1134, 'NATALIA YOBEANTO', 'PPDS', 'Paru', 'nataliayobeanto@student.ub.ac.id', '-'), +(1135, 'Fransiska Nooril Firdhausi P H', 'PPDS', 'Paru', 'fransiskanooril@student.ub.ac.id', '-'), +(1136, 'Manurung Chandra Hasonangan', 'PPDS', 'Paru', 'manurungchandra@student.ub.ac.id', '-'), +(1137, 'Aditya Josua Elvon', 'PPDS', 'Paru', 'adityajosua@student.ub.ac.id', '-'), +(1138, 'As\'ad Pratama Putra', 'PPDS', 'Paru', 'asadpratamap@student.ub.ac.id', '-'), +(1139, 'Toni Alie Ngena Pinem', 'PPDS', 'Paru', 'tonipinem@student.ub.ac.id', '-'), +(1140, 'DHIMAS HANDOKO WIBISONO', 'PPDS', 'Paru', 'dhwpulmo@student.ub.ac.id', '-'), +(1141, 'Malisa Sherly Theresia Nahak', 'PPDS', 'Paru', 'malisasherly@student.ub.ac.id', '-'), +(1142, 'Annisa Ayu Asmiragani', 'PPDS', 'Paru', 'icasmiragani@student.ub.ac.id', '-'), +(1143, 'Geraldi Kusuma Wijaya', 'PPDS', 'Paru', 'geraldikusuma@student.ub.ac.id', '-'), +(1144, 'GRACE DUMA MAWARNI HUTAHAEAN', 'PPDS', 'Paru', 'gracedumamawar@student.ub.ac.id', '-'), +(1145, 'Krisdianto Putra Lainy', 'PPDS', 'Paru', 'krisdiantolainy@student.ub.ac.id', '-'), +(1146, 'Hardy Wibowo Soenarto', 'PPDS', 'Paru', 'hardywibowo@student.ub.ac.id', '-'), +(1147, 'Anthoni Rahardi Kusuma', 'PPDS', 'Paru', 'kuspulmo47@student.ub.ac.id', '-'), +(1148, 'Inda Yohana', 'PPDS', 'Paru', 'indayohanakalit@student.ub.ac.id', '-'), +(1149, 'Bobby Novian', 'PPDS', 'Paru', 'bobbynovian96@student.ub.ac.id', '-'), +(1150, 'Chaifung Carolline', 'PPDS', 'Paru', 'ccarolline@student.ub.ac.id', '-'), +(1151, 'Meike Elvana Derianty', 'PPDS', 'Paru', 'meikeelvana@student.ub.ac.id', '-'), +(1152, 'Damaris Adi Purwanti', 'PPDS', 'Paru', 'adidamaris@student.ub.ac.id', '-'); +INSERT INTO `dokter` (`ID_Dokter`, `Nama_Dokter`, `Status`, `KSM`, `Email_UB`, `Email_Pribadi`) VALUES +(1153, 'Adma Febri Mudyandono', 'PPDS', 'Paru', 'admafebri91@student.ub.ac.id', '-'), +(1154, 'Endar Wahyu Setiawan', 'PPDS', 'Paru', 'endarws@student.ub.ac.id', '-'), +(1155, 'Julisman Hasiholan Situmorang', 'PPDS', 'Paru', 'julissitumorang@student.ub.ac.id', '-'); + +-- -------------------------------------------------------- + +-- +-- Struktur dari tabel `icd9` +-- + +CREATE TABLE `icd9` ( + `ID_ICD9` varchar(20) NOT NULL, + `Prosedur` varchar(150) DEFAULT NULL, + `Versi_ICD9` varchar(20) DEFAULT NULL +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; + +-- +-- Dumping data untuk tabel `icd9` +-- + +INSERT INTO `icd9` (`ID_ICD9`, `Prosedur`, `Versi_ICD9`) VALUES +('00', 'Procedures and interventions, Not Elsewhere Classified', 'ICD9CM_2010'), +('00.0', 'Therapeutic ultrasound', 'ICD9CM_2010'), +('00.01', 'Therapeutic ultrasound of vessels of head and neck', 'ICD9CM_2010'), +('00.02', 'Therapeutic ultrasound of heart', 'ICD9CM_2010'), +('00.03', 'Therapeutic ultrasound of peripheral vascular vessels', 'ICD9CM_2010'), +('00.09', 'Other therapeutic ultrasound', 'ICD9CM_2010'), +('00.1', 'Pharmaceuticals', 'ICD9CM_2010'), +('00.10', 'Implantation of chemotherapeutic agent', 'ICD9CM_2010'), +('00.11', 'Infusion of drotrecogin alfa (activated)', 'ICD9CM_2010'), +('00.12', 'Administration of inhaled nitric oxide', 'ICD9CM_2010'), +('00.13', 'Injection or infusion of nesiritide', 'ICD9CM_2010'), +('00.14', 'Injection or infusion of oxazolidinone class of antibiotics', 'ICD9CM_2010'), +('00.15', 'High-dose infusion interleukin-2(il-2)', 'ICD9CM_2010'), +('00.16', 'Pressurized treatment of venous bypass graft (conduit) with pharmaceutical substance', 'ICD9CM_2010'), +('00.17', 'Infusion of vasopressor agent', 'ICD9CM_2010'), +('00.18', 'Infusion of immunosuppressive antibody therapy during induction phase of solid organ transplantation', 'ICD9CM_2010'), +('00.19', 'Disruption of blood brain barrier via infusion (bbbd)', 'ICD9CM_2010'), +('00.2', 'Intravascular imaging of blood vessels', 'ICD9CM_2010'), +('00.21', 'Intravascular imaging of extracranial cerebral vessels', 'ICD9CM_2010'), +('00.22', 'Intravascular imaging of intrathoracic vessels', 'ICD9CM_2010'), +('00.23', 'Intravascular imaging of peripheral vessels', 'ICD9CM_2010'), +('00.24', 'Intravascular imaging of coronary vessels', 'ICD9CM_2010'), +('00.25', 'Intravascular imaging of renal vessels', 'ICD9CM_2010'), +('00.28', 'Intravascular imaging of other specified vessels', 'ICD9CM_2010'), +('00.29', 'Intravascular imaging, unspecified vessel(s)', 'ICD9CM_2010'), +('00.3', 'Computer assisted surgery [CAS]', 'ICD9CM_2010'), +('00.31', 'Computer assisted surgery with CT/CTA', 'ICD9CM_2010'), +('00.32', 'Computer assisted surgery with MR/MRA', 'ICD9CM_2010'), +('00.33', 'Computer assisted surgery with fluoroscopy', 'ICD9CM_2010'), +('00.34', 'Imageless computer assisted surgery', 'ICD9CM_2010'), +('00.35', 'Computer assisted surgery with multiple datasets', 'ICD9CM_2010'), +('00.39', 'Other Computer assisted surgery', 'ICD9CM_2010'), +('00.4', 'Adjunct Vascular System Procedures', 'ICD9CM_2010'), +('00.40', 'Adjunct vascular system procedures,Procedure on single vessel', 'ICD9CM_2010'), +('00.41', 'Adjunct vascular system procedures, procedure on two vessels', 'ICD9CM_2010'), +('00.42', 'Adjunct vascular system procedures,Prosedure on three vessels', 'ICD9CM_2010'), +('00.43', 'Adjunct vascular system procedures,Procedure on four or more vessels', 'ICD9CM_2010'), +('00.44', 'Adjunct vascular system procedures,Procedure on vessel bifurcation', 'ICD9CM_2010'), +('00.45', 'Adjunct vascular system procedures,Insertion of one vascular stent', 'ICD9CM_2010'), +('00.46', 'Adjunct vascular system procedures,Insertion of two vascular stents', 'ICD9CM_2010'), +('00.47', 'Adjunct vascular system procedures,Insertion of three vascular stents', 'ICD9CM_2010'), +('00.48', 'Adjunct vascular system procedures,Insertion of four or more vascular stents', 'ICD9CM_2010'), +('00.49', 'SuperSaturated oxygen therapy', 'ICD9CM_2010'), +('00.5', 'Other cardiovascular procedures', 'ICD9CM_2010'), +('00.50', 'Implantation of cardiac resynchronization pacemaker without mention of defibrillation, total system (CRT-P)', 'ICD9CM_2010'), +('00.51', 'Implantation of cardiac resynchronization defibrillation, total system (CRT-D)', 'ICD9CM_2010'), +('00.52', 'Implantation or replacement of transvenous lead (electrode) into left ventricular coronary venous system', 'ICD9CM_2010'), +('00.53', 'Implantation or replacement of cardiac resynchronization pacemaker pulse generator only (CRT-P)', 'ICD9CM_2010'), +('00.54', 'Implantation or replacement of cardiac resynchronization defibrillation pulse generator device only (CRT-D)', 'ICD9CM_2010'), +('00.55', 'Insertion of drug-eluting peripheral vessels stent(s)', 'ICD9CM_2010'), +('00.56', 'Insertion or replacement of implantable pressure sensor (lead) for intracardiac hemodynamic monitoring', 'ICD9CM_2010'), +('00.57', 'Implantation or replacement of subcutaneous device for intracardiac hemodynamic monitoring', 'ICD9CM_2010'), +('00.58', 'Insertion of intra-aneurysm sac pressure monitoring device (intraoperative)', 'ICD9CM_2010'), +('00.59', 'Intravascular pressure measurement o coronary arteries', 'ICD9CM_2010'), +('00.6', 'Procedures on blood vessels', 'ICD9CM_2010'), +('00.60', 'Insertion of drug-eluting stent(s) of superficial femoral artery', 'ICD9CM_2010'), +('00.61', 'Percutaneous angioplasty or atherectomy of precerebral(extracranial)vessel(s)', 'ICD9CM_2010'), +('00.62', 'Percutaneous angioplasty or atherectomy intracranial vessel', 'ICD9CM_2010'), +('00.63', 'Percutaneous insertion of carotid artery stent(s)', 'ICD9CM_2010'), +('00.64', 'Percutaneous insertion of other precerebral(extracranial)artery stent(s)', 'ICD9CM_2010'), +('00.65', 'Percutaneous insertion of intracranial vascular stent(s)', 'ICD9CM_2010'), +('00.66', 'Parcutaneous transluminal coronary angioplasty (PTCA) or coronary atherectomy', 'ICD9CM_2010'), +('00.67', 'Intravascular pressure measurement of intrathoracic arteries', 'ICD9CM_2010'), +('00.68', 'Intravascular pressure measurement of peripheral arteries', 'ICD9CM_2010'), +('00.69', 'Intravascular pressure measurement of other specified and unspecified vessels', 'ICD9CM_2010'), +('00.7', 'Other hip procedures', 'ICD9CM_2010'), +('00.70', 'Revision of hip replacement, both acetabular and femoral components', 'ICD9CM_2010'), +('00.71', 'Revision of hip replacement, acetabular component', 'ICD9CM_2010'), +('00.72', 'Revision of hip replacement,femoral component', 'ICD9CM_2010'), +('00.73', 'Revision of hip replacement, acetabular liner and/or femoral head only', 'ICD9CM_2010'), +('00.74', 'Hip bearing surface, metal on polyethylene', 'ICD9CM_2010'), +('00.75', 'Hip bearing surface, metal-on-metal', 'ICD9CM_2010'), +('00.76', 'Hip bearing surface, ceramic-on-ceramic', 'ICD9CM_2010'), +('00.77', 'Hip bearing surface, ceramic on polyethylene', 'ICD9CM_2010'), +('00.8', 'Other knee and hip procedures', 'ICD9CM_2010'), +('00.80', 'Revision of knee replacement, total (all components)', 'ICD9CM_2010'), +('00.81', 'Revision of knee replacement, tibial component', 'ICD9CM_2010'), +('00.82', 'Revision of knee replacement, femoral component', 'ICD9CM_2010'), +('00.83', 'Revision of knee replacement,patellar component', 'ICD9CM_2010'), +('00.84', 'Revision of total knee replacement, tibial insertion (liner)', 'ICD9CM_2010'), +('00.85', 'Resurfacing hip, total, acetabulum and femoral head', 'ICD9CM_2010'), +('00.86', 'Resurfacing hip, partial, femoral head', 'ICD9CM_2010'), +('00.87', 'Resurfacing hip,partial, acetabulum', 'ICD9CM_2010'), +('00.9', 'Other procedures and interventions', 'ICD9CM_2010'), +('00.91', 'Transplant from live related donor', 'ICD9CM_2010'), +('00.92', 'Transplant from live non-related donor', 'ICD9CM_2010'), +('00.93', 'Transplant fron cadaver', 'ICD9CM_2010'), +('00.94', 'Intra-operative neurophysiologic monitoring', 'ICD9CM_2010'), +('01', 'Incision and excision of skull, brain, and cerebral meninges', 'ICD9CM_2010'), +('01.0', 'Cranial puncture', 'ICD9CM_2010'), +('01.01', 'Cisternal puncture', 'ICD9CM_2010'), +('01.02', 'Ventriculopuncture through previously implanted catheter', 'ICD9CM_2010'), +('01.09', 'Other cranial puncture', 'ICD9CM_2010'), +('01.1', 'Diagnostic procedures on skull, brain, and cerebral meninges', 'ICD9CM_2010'), +('01.10', 'Intracranial pressure monitoring', 'ICD9CM_2010'), +('01.11', 'Closed (percutaneous) (needle) biopsy of cerebral meninges', 'ICD9CM_2010'), +('01.12', 'Open biopsy of cerebral meninges', 'ICD9CM_2010'), +('01.13', 'Closed (percutaneous) (needle) biopsy of brain', 'ICD9CM_2010'), +('01.14', 'Open biopsy of brain', 'ICD9CM_2010'), +('01.15', 'Biopsy of skull', 'ICD9CM_2010'), +('01.16', 'Intracranial oxygen monitoring', 'ICD9CM_2010'), +('01.17', 'Brain temperature monitoring', 'ICD9CM_2010'), +('01.18', 'Other diagnostic procedures on brain and cerebral meninges', 'ICD9CM_2010'), +('01.19', 'Other diagnostic procedures on skull', 'ICD9CM_2010'), +('01.2', 'Craniotomy and craniectomy', 'ICD9CM_2010'), +('01.20', 'Cranial implantation or replacement of neurostimulator pulse generator', 'ICD9CM_2010'), +('01.21', 'Incision and drainage of cranial sinus', 'ICD9CM_2010'), +('01.22', 'Removal of intracranial neurostimulator', 'ICD9CM_2010'), +('01.23', 'Reopening of craniotomy site', 'ICD9CM_2010'), +('01.24', 'Other craniotomy', 'ICD9CM_2010'), +('01.25', 'Other craniectomy', 'ICD9CM_2010'), +('01.26', 'Insertion of catheter(s)into cranial cavity or tissue', 'ICD9CM_2010'), +('01.27', 'Removal of catheter(s) from cranial cavity or tissue', 'ICD9CM_2010'), +('01.28', 'Placement of intracerebelar catheter(s) via burr hole(s)', 'ICD9CM_2010'), +('01.29', 'Removal of cranial neurostimulator pulse generator', 'ICD9CM_2010'), +('01.3', 'Incision of brain and cerebral meninges', 'ICD9CM_2010'), +('01.31', 'Incision of cerebral meninges', 'ICD9CM_2010'), +('01.32', 'Lobotomy and tractotomy', 'ICD9CM_2010'), +('01.39', 'Other incision of brain', 'ICD9CM_2010'), +('01.4', 'Operations on thalamus and globus pallidus', 'ICD9CM_2010'), +('01.41', 'Operations on thalamus', 'ICD9CM_2010'), +('01.42', 'Operations on globus pallidus', 'ICD9CM_2010'), +('01.5', 'Other excision or destruction of brain and meninges', 'ICD9CM_2010'), +('01.51', 'Excision of lesion or tissue of cerebral meninges', 'ICD9CM_2010'), +('01.52', 'Hemispherectomy', 'ICD9CM_2010'), +('01.53', 'Lobectomy of brain', 'ICD9CM_2010'), +('01.59', 'Other excision or destruction of lesion or tissue of brain', 'ICD9CM_2010'), +('01.6', 'Excision of lesion of skull', 'ICD9CM_2010'), +('02', 'Other operations on skull, brain, and cerebral meninges', 'ICD9CM_2010'), +('02.0', 'Cranioplasty', 'ICD9CM_2010'), +('02.01', 'Opening of cranial suture', 'ICD9CM_2010'), +('02.02', 'Elevation of skull fracture fragments', 'ICD9CM_2010'), +('02.03', 'Formation of cranial bone flap', 'ICD9CM_2010'), +('02.04', 'Bone graft to skull', 'ICD9CM_2010'), +('02.05', 'Insertion of skull plate', 'ICD9CM_2010'), +('02.06', 'Other cranial osteoplasty', 'ICD9CM_2010'), +('02.07', 'Removal of skull plate', 'ICD9CM_2010'), +('02.1', 'Repair of cerebral meninges', 'ICD9CM_2010'), +('02.11', 'Simple suture of dura mater of brain', 'ICD9CM_2010'), +('02.12', 'Other repair of cerebral meninges', 'ICD9CM_2010'), +('02.13', 'Ligation of meningeal vessel', 'ICD9CM_2010'), +('02.14', 'Choroid plexectomy', 'ICD9CM_2010'), +('02.2', 'Ventriculostomy', 'ICD9CM_2010'), +('02.3', 'Extracranial ventricular shunt', 'ICD9CM_2010'), +('02.31', 'Ventricular shunt to structure in head and neck', 'ICD9CM_2010'), +('02.32', 'Ventricular shunt to circulatory system', 'ICD9CM_2010'), +('02.33', 'Ventricular shunt to thoracic cavity', 'ICD9CM_2010'), +('02.34', 'Ventricular shunt to abdominal cavity and organs', 'ICD9CM_2010'), +('02.35', 'Ventricular shunt to urinary system', 'ICD9CM_2010'), +('02.39', 'Other operations to establish drainage of ventricle', 'ICD9CM_2010'), +('02.4', 'Revision, removal, and irrigation of ventricular shunt', 'ICD9CM_2010'), +('02.41', 'Irrigation of ventricular shunt', 'ICD9CM_2010'), +('02.42', 'Replacement of ventricular shunt', 'ICD9CM_2010'), +('02.43', 'Removal of ventricular shunt', 'ICD9CM_2010'), +('02.9', 'Other operations on skull, brain, and cerebral meninges', 'ICD9CM_2010'), +('02.91', 'Lysis of cortical adhesions', 'ICD9CM_2010'), +('02.92', 'Repair of brain', 'ICD9CM_2010'), +('02.93', 'Implantation of intracranial neurostimulator', 'ICD9CM_2010'), +('02.94', 'Insertion or replacement of skull tongs or halo traction device', 'ICD9CM_2010'), +('02.95', 'Removal of skull tongs or halo traction device', 'ICD9CM_2010'), +('02.96', 'Insertion of sphenoid electrodes', 'ICD9CM_2010'), +('02.99', 'Other operations on skull, brain, and cerebral meninges', 'ICD9CM_2010'), +('03', 'Operations on spinal cord and spinal canal structures', 'ICD9CM_2010'), +('03.0', 'Exploration and decompression of spinal canal structures', 'ICD9CM_2010'), +('03.01', 'Removal of foreign body from spinal canal', 'ICD9CM_2010'), +('03.02', 'Reopening of laminectomy site', 'ICD9CM_2010'), +('03.09', 'Other exploration and decompression of spinal canal', 'ICD9CM_2010'), +('03.1', 'Division of intraspinal nerve root', 'ICD9CM_2010'), +('03.2', 'Chordotomy', 'ICD9CM_2010'), +('03.21', 'Percutaneous chordotomy', 'ICD9CM_2010'), +('03.29', 'Other chordotomy', 'ICD9CM_2010'), +('03.3', 'Diagnostic procedures on spinal cord and spinal canal structures', 'ICD9CM_2010'), +('03.31', 'Spinal tap', 'ICD9CM_2010'), +('03.32', 'Biopsy of spinal cord or spinal meninges', 'ICD9CM_2010'), +('03.39', 'Other diagnostic procedures on spinal cord and spinal canal structur', 'ICD9CM_2010'), +('03.4', 'Excision or destruction of lesion of spinal cord or spinal meninges', 'ICD9CM_2010'), +('03.5', 'Plastic operations on spinal cord structures', 'ICD9CM_2010'), +('03.51', 'Repair of spinal meningocele', 'ICD9CM_2010'), +('03.52', 'Repair of spinal myelomeningocele', 'ICD9CM_2010'), +('03.53', 'Repair of vertebral fracture', 'ICD9CM_2010'), +('03.59', 'Other repair and plastic operations on spinal cord structures', 'ICD9CM_2010'), +('03.6', 'Lysis of adhesions of spinal cord and nerve roots', 'ICD9CM_2010'), +('03.7', 'Shunt of spinal theca', 'ICD9CM_2010'), +('03.71', 'Spinal subarachnoid-peritoneal shunt', 'ICD9CM_2010'), +('03.72', 'Spinal subarachnoid-ureteral shunt', 'ICD9CM_2010'), +('03.79', 'Other shunt of spinal theca', 'ICD9CM_2010'), +('03.8', 'Injection of destructive agent into spinal canal', 'ICD9CM_2010'), +('03.9', 'Other operations on spinal cord and spinal canal structures', 'ICD9CM_2010'), +('03.90', 'Insertion of catheter into spinal canal for infusion of therapeutic', 'ICD9CM_2010'), +('03.91', 'Injection of anesthetic into spinal canal for analgesia', 'ICD9CM_2010'), +('03.92', 'Injection of other agent into spinal canal', 'ICD9CM_2010'), +('03.93', 'Implantation or replacement of spinal neurostimulator lead(s)', 'ICD9CM_2010'), +('03.94', 'Removal of spinal neurostimulator lead(s)', 'ICD9CM_2010'), +('03.95', 'Spinal blood patch', 'ICD9CM_2010'), +('03.96', 'Percutaneous denervation of facet', 'ICD9CM_2010'), +('03.97', 'Revision of spinal thecal shunt', 'ICD9CM_2010'), +('03.98', 'Removal of spinal thecal shunt', 'ICD9CM_2010'), +('03.99', 'Other operations on spinal cord and spinal canal structures', 'ICD9CM_2010'), +('04', 'Operations on cranial and peripheral nerves', 'ICD9CM_2010'), +('04.0', 'Incision, division, and excision of cranial and peripheral nerves', 'ICD9CM_2010'), +('04.01', 'Excision of acoustic neuroma', 'ICD9CM_2010'), +('04.02', 'Division of trigeminal nerve', 'ICD9CM_2010'), +('04.03', 'Division or crushing of other cranial and peripheral nerves', 'ICD9CM_2010'), +('04.04', 'Other incision of cranial and peripheral nerves', 'ICD9CM_2010'), +('04.05', 'Gasserian ganglionectomy', 'ICD9CM_2010'), +('04.06', 'Other cranial or peripheral ganglionectomy', 'ICD9CM_2010'), +('04.07', 'Other excision or avulsion of cranial and peripheral nerves', 'ICD9CM_2010'), +('04.1', 'Diagnostic procedures on peripheral nervous system', 'ICD9CM_2010'), +('04.11', 'Closed (percutaneous) (needle) biopsy of cranial or peripheral nerve or ganglion', 'ICD9CM_2010'), +('04.12', 'Open biopsy of cranial or peripheral nerve or ganglion', 'ICD9CM_2010'), +('04.19', 'Other diagnostic procedures on cranial and peripheral nerves and ganglia', 'ICD9CM_2010'), +('04.2', 'Destruction of cranial and peripheral nerves', 'ICD9CM_2010'), +('04.3', 'Suture of cranial and peripheral nerves', 'ICD9CM_2010'), +('04.4', 'Lysis of adhesions and decompression of cranial and peripheral nerve', 'ICD9CM_2010'), +('04.41', 'Decompression of trigeminal nerve root', 'ICD9CM_2010'), +('04.42', 'Other cranial nerve decompression', 'ICD9CM_2010'), +('04.43', 'Release of carpal tunnel', 'ICD9CM_2010'), +('04.44', 'Release of tarsal tunnel', 'ICD9CM_2010'), +('04.49', 'Other peripheral nerve or ganglion decompression or lysis of adhesions', 'ICD9CM_2010'), +('04.5', 'Cranial or peripheral nerve graft', 'ICD9CM_2010'), +('04.6', 'Transposition of cranial and peripheral nerves', 'ICD9CM_2010'), +('04.7', 'Other cranial or peripheral neuroplasty', 'ICD9CM_2010'), +('04.71', 'Hypoglossal-facial anastomosis', 'ICD9CM_2010'), +('04.72', 'Accessory-facial anastomosis', 'ICD9CM_2010'), +('04.73', 'Accessory-hypoglossal anastomosis', 'ICD9CM_2010'), +('04.74', 'Other anastomosis of cranial or peripheral nerve', 'ICD9CM_2010'), +('04.75', 'Revision of previous repair of cranial and peripheral nerves', 'ICD9CM_2010'), +('04.76', 'Repair of old traumatic injury of cranial and peripheral nerves', 'ICD9CM_2010'), +('04.79', 'Other neuroplasty', 'ICD9CM_2010'), +('04.8', 'Injection into peripheral nerve', 'ICD9CM_2010'), +('04.80', 'Peripheral nerve injection, not otherwise specified', 'ICD9CM_2010'), +('04.81', 'Injection of anesthetic into peripheral nerve for analgesia', 'ICD9CM_2010'), +('04.89', 'Injection of other agent, except neurolytic', 'ICD9CM_2010'), +('04.9', 'Other operations on cranial and peripheral nerves', 'ICD9CM_2010'), +('04.91', 'Neurectasis', 'ICD9CM_2010'), +('04.92', 'Implantation or replacement of peripheral neurostimulator lead(s)', 'ICD9CM_2010'), +('04.93', 'Removal of peripheral neurostimulator lead(s)', 'ICD9CM_2010'), +('04.99', 'Other operations on cranial and peripheral nerves', 'ICD9CM_2010'), +('05', 'Operations on sympathetic nerves or ganglia', 'ICD9CM_2010'), +('05.0', 'Division of sympathetic nerve or ganglion', 'ICD9CM_2010'), +('05.1', 'Diagnostic procedures on sympathetic nerves or ganglia', 'ICD9CM_2010'), +('05.11', 'Biopsy of sympathetic nerve or ganglion', 'ICD9CM_2010'), +('05.19', 'Other diagnostic procedures on sympathetic nerves or ganglia', 'ICD9CM_2010'), +('05.2', 'Sympathectomy', 'ICD9CM_2010'), +('05.21', 'Sphenopalatine ganglionectomy', 'ICD9CM_2010'), +('05.22', 'Cervical sympathectomy', 'ICD9CM_2010'), +('05.23', 'Lumbar sympathectomy', 'ICD9CM_2010'), +('05.24', 'Presacral sympathectomy', 'ICD9CM_2010'), +('05.25', 'Periarterial sympathectomy', 'ICD9CM_2010'), +('05.29', 'Other sympathectomy and ganglionectomy', 'ICD9CM_2010'), +('05.3', 'Injection into sympathetic nerve or ganglion', 'ICD9CM_2010'), +('05.31', 'Injection of anesthetic into sympathetic nerve for analgesia', 'ICD9CM_2010'), +('05.32', 'Injection of neurolytic agent into sympathetic nerve', 'ICD9CM_2010'), +('05.39', 'Other injection into sympathetic nerve or ganglion', 'ICD9CM_2010'), +('05.8', 'Other operations on sympathetic nerves or ganglia', 'ICD9CM_2010'), +('05.81', 'Repair of sympathetic nerve or ganglion', 'ICD9CM_2010'), +('05.89', 'Other operations on sympathetic nerves or ganglia', 'ICD9CM_2010'), +('05.9', 'Other operations on nervous system', 'ICD9CM_2010'), +('06', 'Operations on thyroid and parathyroid glands', 'ICD9CM_2010'), +('06.0', 'Incision of thyroid field', 'ICD9CM_2010'), +('06.01', 'Aspiration of thyroid field', 'ICD9CM_2010'), +('06.02', 'Reopening of wound of thyroid field', 'ICD9CM_2010'), +('06.09', 'Other incision of thyroid field', 'ICD9CM_2010'), +('06.1', 'Diagnostic procedures on thyroid and parathyroid glands', 'ICD9CM_2010'), +('06.11', 'Closed (percutaneous) (needle) biopsy of thyroid gland', 'ICD9CM_2010'), +('06.12', 'Open biopsy of thyroid gland', 'ICD9CM_2010'), +('06.13', 'Biopsy of parathyroid gland', 'ICD9CM_2010'), +('06.19', 'Other diagnostic procedures on thyroid and parathyroid glands', 'ICD9CM_2010'), +('06.2', 'Unilateral thyroid lobectomy', 'ICD9CM_2010'), +('06.3', 'Other partial thyroidectomy', 'ICD9CM_2010'), +('06.31', 'Excision of lesion of thyroid', 'ICD9CM_2010'), +('06.39', 'Other partial thyroidectomy', 'ICD9CM_2010'), +('06.4', 'Complete thyroidectomy', 'ICD9CM_2010'), +('06.5', 'Substernal thyroidectomy', 'ICD9CM_2010'), +('06.50', 'Substernal thyroidectomy, not otherwise specified', 'ICD9CM_2010'), +('06.51', 'Partial substernal thyroidectomy', 'ICD9CM_2010'), +('06.52', 'Complete substernal thyroidectomy', 'ICD9CM_2010'), +('06.6', 'Excision of lingual thyroid', 'ICD9CM_2010'), +('06.7', 'Excision of thyroglossal duct or tract', 'ICD9CM_2010'), +('06.8', 'Parathyroidectomy', 'ICD9CM_2010'), +('06.81', 'Complete parathyroidectomy', 'ICD9CM_2010'), +('06.89', 'Other parathyroidectomy', 'ICD9CM_2010'), +('06.9', 'Other operations on thyroid (region) and parathyroid', 'ICD9CM_2010'), +('06.91', 'Division of thyroid isthmus', 'ICD9CM_2010'), +('06.92', 'Ligation of thyroid vessels', 'ICD9CM_2010'), +('06.93', 'Suture of thyroid gland', 'ICD9CM_2010'), +('06.94', 'Thyroid tissue reimplantation', 'ICD9CM_2010'), +('06.95', 'Parathyroid tissue reimplantation', 'ICD9CM_2010'), +('06.98', 'Other operations on thyroid glands', 'ICD9CM_2010'), +('06.99', 'Other operations on parathyroid glands', 'ICD9CM_2010'), +('07', 'Operations on other endocrine glands', 'ICD9CM_2010'), +('07.0', 'Exploration of adrenal field', 'ICD9CM_2010'), +('07.00', 'Exploration of adrenal field, not otherwise specified', 'ICD9CM_2010'), +('07.01', 'Unilateral exploration of adrenal field', 'ICD9CM_2010'), +('07.02', 'Bilateral exploration of adrenal field', 'ICD9CM_2010'), +('07.1', 'Diagnostic procedures on adrenal glands, pituitary gland, pineal gla', 'ICD9CM_2010'), +('07.11', 'Closed (percutaneous) (needle) biopsy of adrenal gland', 'ICD9CM_2010'), +('07.12', 'Open biopsy of adrenal gland', 'ICD9CM_2010'), +('07.13', 'Biopsy of pituitary gland, transfrontal approach', 'ICD9CM_2010'), +('07.14', 'Biopsy of pituitary gland, transsphenoidal approach', 'ICD9CM_2010'), +('07.15', 'Biopsy of pituitary gland, unspecified approach', 'ICD9CM_2010'), +('07.16', 'Biopsy of thymus', 'ICD9CM_2010'), +('07.17', 'Biopsy of pineal gland', 'ICD9CM_2010'), +('07.19', 'Other diagnostic procedures on adrenal glands, pituitary gland, pineal and thymus', 'ICD9CM_2010'), +('07.2', 'Partial adrenalectomy', 'ICD9CM_2010'), +('07.21', 'Excision of lesion of adrenal gland', 'ICD9CM_2010'), +('07.22', 'Unilateral adrenalectomy', 'ICD9CM_2010'), +('07.29', 'Other partial adrenalectomy', 'ICD9CM_2010'), +('07.3', 'Bilateral adrenalectomy', 'ICD9CM_2010'), +('07.4', 'Other operations on adrenal glands, nerves, and vessels', 'ICD9CM_2010'), +('07.41', 'Incision of adrenal gland', 'ICD9CM_2010'), +('07.42', 'Division of nerves to adrenal glands', 'ICD9CM_2010'), +('07.43', 'Ligation of adrenal vessels', 'ICD9CM_2010'), +('07.44', 'Repair of adrenal gland', 'ICD9CM_2010'), +('07.45', 'Reimplantation of adrenal tissue', 'ICD9CM_2010'), +('07.49', 'Other operations on adrenal glands, nerves, and vessels', 'ICD9CM_2010'), +('07.5', 'Operations on pineal gland', 'ICD9CM_2010'), +('07.51', 'Exploration of pineal field', 'ICD9CM_2010'), +('07.52', 'Incision of pineal gland', 'ICD9CM_2010'), +('07.53', 'Partial excision of pineal gland', 'ICD9CM_2010'), +('07.54', 'Total excision of pineal gland', 'ICD9CM_2010'), +('07.59', 'Other operations on pineal gland', 'ICD9CM_2010'), +('07.6', 'Hypophysectomy', 'ICD9CM_2010'), +('07.61', 'Partial excision of pituitary gland, transfrontal approach', 'ICD9CM_2010'), +('07.62', 'Partial excision of pituitary gland, transsphenoidal approach', 'ICD9CM_2010'), +('07.63', 'Partial excision of pituitary gland, unspecified approach', 'ICD9CM_2010'), +('07.64', 'Total excision of pituitary gland, transfrontal approach', 'ICD9CM_2010'), +('07.65', 'Total excision of pituitary gland, transsphenoidal approach', 'ICD9CM_2010'), +('07.68', 'Total excision of pituitary gland, other specified approach', 'ICD9CM_2010'), +('07.69', 'Total excision of pituitary gland, unspecified approach', 'ICD9CM_2010'), +('07.7', 'Other operations on hypophysis', 'ICD9CM_2010'), +('07.71', 'Exploration of pituitary fossa', 'ICD9CM_2010'), +('07.72', 'Incision of pituitary gland', 'ICD9CM_2010'), +('07.79', 'Other operations on hypophysis', 'ICD9CM_2010'), +('07.8', 'Thymectomy', 'ICD9CM_2010'), +('07.80', 'Thymectomy, not otherwise specified', 'ICD9CM_2010'), +('07.81', 'Partial excision of thymus', 'ICD9CM_2010'), +('07.82', 'Total excision of thymus', 'ICD9CM_2010'), +('07.83', 'Thoracoscopic partial excision of thymus', 'ICD9CM_2010'), +('07.84', 'Thoracoscopic total excision of thymus', 'ICD9CM_2010'), +('07.9', 'Other operations on thymus', 'ICD9CM_2010'), +('07.91', 'Exploration of thymus field', 'ICD9CM_2010'), +('07.92', 'Incision of thymus', 'ICD9CM_2010'), +('07.93', 'Repair of thymus', 'ICD9CM_2010'), +('07.94', 'Transplantation of thymus', 'ICD9CM_2010'), +('07.95', 'Thoracoscopic incision of thymus', 'ICD9CM_2010'), +('07.98', 'Other and unspecified thoracoscopic operations on thymus', 'ICD9CM_2010'), +('07.99', 'Other and unspecified operations on thymus', 'ICD9CM_2010'), +('08', 'Operations on eyelids', 'ICD9CM_2010'), +('08.0', 'Incision of eyelid', 'ICD9CM_2010'), +('08.01', 'Incision of lid margin', 'ICD9CM_2010'), +('08.02', 'Severing of blepharorrhaphy', 'ICD9CM_2010'), +('08.09', 'Other incision of eyelid', 'ICD9CM_2010'), +('08.1', 'Diagnostic procedures on eyelid', 'ICD9CM_2010'), +('08.11', 'Biopsy of eyelid', 'ICD9CM_2010'), +('08.19', 'Other diagnostic procedures on eyelid', 'ICD9CM_2010'), +('08.2', 'Excision or destruction of lesion or tissue of eyelid', 'ICD9CM_2010'), +('08.20', 'Removal of lesion of eyelid, not otherwise specified', 'ICD9CM_2010'), +('08.21', 'Excision of chalazion', 'ICD9CM_2010'), +('08.22', 'Excision of other minor lesion of eyelid', 'ICD9CM_2010'), +('08.23', 'Excision of major lesion of eyelid, partial-thickness', 'ICD9CM_2010'), +('08.24', 'Excision of major lesion of eyelid, full-thickness', 'ICD9CM_2010'), +('08.25', 'Destruction of lesion of eyelid', 'ICD9CM_2010'), +('08.3', 'Repair of blepharoptosis and lid retraction', 'ICD9CM_2010'), +('08.31', 'Repair of blepharoptosis by frontalis muscle technique with suture', 'ICD9CM_2010'), +('08.32', 'Repair of blepharoptosis by frontalis muscle technique with fascial', 'ICD9CM_2010'), +('08.33', 'Repair of blepharoptosis by resection or advancement of levator musc', 'ICD9CM_2010'), +('08.34', 'Repair of blepharoptosis by other levator muscle techniques', 'ICD9CM_2010'), +('08.35', 'Repair of blepharoptosis by tarsal technique', 'ICD9CM_2010'), +('08.36', 'Repair of blepharoptosis by other techniques', 'ICD9CM_2010'), +('08.37', 'Reduction of overcorrection of ptosis', 'ICD9CM_2010'), +('08.38', 'Correction of lid retraction', 'ICD9CM_2010'), +('08.4', 'Repair of entropion or ectropion', 'ICD9CM_2010'), +('08.41', 'Repair of entropion or ectropion by thermocauterization', 'ICD9CM_2010'), +('08.42', 'Repair of entropion or ectropion by suture technique', 'ICD9CM_2010'), +('08.43', 'Repair of entropion or ectropion with wedge resection', 'ICD9CM_2010'), +('08.44', 'Repair of entropion or ectropion with lid reconstruction', 'ICD9CM_2010'), +('08.49', 'Other repair of entropion or ectropion', 'ICD9CM_2010'), +('08.5', 'Other adjustment of lid position', 'ICD9CM_2010'), +('08.51', 'Canthotomy', 'ICD9CM_2010'), +('08.52', 'Blepharorrhaphy', 'ICD9CM_2010'), +('08.59', 'Other adjustment of lid position', 'ICD9CM_2010'), +('08.6', 'Reconstruction of eyelid with flaps or grafts', 'ICD9CM_2010'), +('08.61', 'Reconstruction of eyelid with skin flap or graft', 'ICD9CM_2010'), +('08.62', 'Reconstruction of eyelid with mucous membrane flap or graft', 'ICD9CM_2010'), +('08.63', 'Reconstruction of eyelid with hair follicle graft', 'ICD9CM_2010'), +('08.64', 'Reconstruction of eyelid with tarsoconjunctival flap', 'ICD9CM_2010'), +('08.69', 'Other reconstruction of eyelid with flaps or grafts', 'ICD9CM_2010'), +('08.7', 'Other reconstruction of eyelid', 'ICD9CM_2010'), +('08.70', 'Reconstruction of eyelid, not otherwise specified', 'ICD9CM_2010'), +('08.71', 'Reconstruction of eyelid involving lid margin, partial- thickness', 'ICD9CM_2010'), +('08.72', 'Other reconstruction of eyelid, partial-thickness', 'ICD9CM_2010'), +('08.73', 'Reconstruction of eyelid involving lid margin, full-thickness', 'ICD9CM_2010'), +('08.74', 'Other reconstruction of eyelid, full-thickness', 'ICD9CM_2010'), +('08.8', 'Other repair of eyelid', 'ICD9CM_2010'), +('08.81', 'Linear repair of laceration of eyelid or eyebrow', 'ICD9CM_2010'), +('08.82', 'Repair of laceration involving lid margin, partial-thickness', 'ICD9CM_2010'), +('08.83', 'Other repair of laceration of eyelid, partial-thickness', 'ICD9CM_2010'), +('08.84', 'Repair of laceration of eyelid involving lid margin, full-thickness', 'ICD9CM_2010'), +('08.85', 'Other repair of laceration of eyelid, full-thickness', 'ICD9CM_2010'), +('08.86', 'Lower eyelid rhytidectomy', 'ICD9CM_2010'), +('08.87', 'Upper eyelid rhytidectomy', 'ICD9CM_2010'), +('08.89', 'Other eyelid repair', 'ICD9CM_2010'), +('08.9', 'Other operations on eyelids', 'ICD9CM_2010'), +('08.91', 'Electrosurgical epilation of eyelid', 'ICD9CM_2010'), +('08.92', 'Cryosurgical epilation of eyelid', 'ICD9CM_2010'), +('08.93', 'Other epilation of eyelid', 'ICD9CM_2010'), +('08.99', 'Other operations on eyelids', 'ICD9CM_2010'), +('09', 'Operations on lacrimal system', 'ICD9CM_2010'), +('09.0', 'Incision of lacrimal gland', 'ICD9CM_2010'), +('09.1', 'Diagnostic procedures on lacrimal system', 'ICD9CM_2010'), +('09.11', 'Biopsy of lacrimal gland', 'ICD9CM_2010'), +('09.12', 'Biopsy of lacrimal sac', 'ICD9CM_2010'), +('09.19', 'Other diagnostic procedures on lacrimal system', 'ICD9CM_2010'), +('09.2', 'Excision of lesion or tissue of lacrimal gland', 'ICD9CM_2010'), +('09.20', 'Excision of lacrimal gland, not otherwise specified', 'ICD9CM_2010'), +('09.21', 'Excision of lesion of lacrimal gland', 'ICD9CM_2010'), +('09.22', 'Other partial dacryoadenectomy', 'ICD9CM_2010'), +('09.23', 'Total dacryoadenectomy', 'ICD9CM_2010'), +('09.3', 'Other operations on lacrimal gland', 'ICD9CM_2010'), +('09.4', 'Manipulation of lacrimal passage', 'ICD9CM_2010'), +('09.41', 'Probing of lacrimal punctum', 'ICD9CM_2010'), +('09.42', 'Probing of lacrimal canaliculi', 'ICD9CM_2010'), +('09.43', 'Probing of nasolacrimal duct', 'ICD9CM_2010'), +('09.44', 'Intubation of nasolacrimal duct', 'ICD9CM_2010'), +('09.49', 'Other manipulation of lacrimal passage', 'ICD9CM_2010'), +('09.5', 'Incision of lacrimal sac and passages', 'ICD9CM_2010'), +('09.51', 'Incision of lacrimal punctum', 'ICD9CM_2010'), +('09.52', 'Incision of lacrimal canaliculi', 'ICD9CM_2010'), +('09.53', 'Incision of lacrimal sac', 'ICD9CM_2010'), +('09.59', 'Other incision of lacrimal passages', 'ICD9CM_2010'), +('09.6', 'Excision of lacrimal sac and passage', 'ICD9CM_2010'), +('09.7', 'Repair of canaliculus and punctum', 'ICD9CM_2010'), +('09.71', 'Correction of everted punctum', 'ICD9CM_2010'), +('09.72', 'Other repair of punctum', 'ICD9CM_2010'), +('09.73', 'Repair of canaliculus', 'ICD9CM_2010'), +('09.8', 'Fistulization of lacrimal tract to nasal cavity', 'ICD9CM_2010'), +('09.81', 'Dacryocystorhinostomy (DCR)', 'ICD9CM_2010'), +('09.82', 'Conjunctivocystorhinostomy', 'ICD9CM_2010'), +('09.83', 'Conjunctivorhinostomy with insertion of tube or stent', 'ICD9CM_2010'), +('09.9', 'Other operations on lacrimal system', 'ICD9CM_2010'), +('09.91', 'Obliteration of lacrimal punctum', 'ICD9CM_2010'), +('09.99', 'Other operations on lacrimal system', 'ICD9CM_2010'), +('10', 'Operations on conjunctiva', 'ICD9CM_2010'), +('10.0', 'Removal of embedded foreign body from conjunctiva by incision', 'ICD9CM_2010'), +('10.1', 'Other incision of conjunctiva', 'ICD9CM_2010'), +('10.2', 'Diagnostic procedures on conjunctiva', 'ICD9CM_2010'), +('10.21', 'Biopsy of conjunctiva', 'ICD9CM_2010'), +('10.29', 'Other diagnostic procedures on conjunctiva', 'ICD9CM_2010'), +('10.3', 'Excision or destruction of lesion or tissue of conjunctiva', 'ICD9CM_2010'), +('10.31', 'Excision of lesion or tissue of conjunctiva', 'ICD9CM_2010'), +('10.32', 'Destruction of lesion of conjunctiva', 'ICD9CM_2010'), +('10.33', 'Other destructive procedures on conjunctiva', 'ICD9CM_2010'), +('10.4', 'Conjunctivoplasty', 'ICD9CM_2010'), +('10.41', 'Repair of symblepharon with free graft', 'ICD9CM_2010'), +('10.42', 'Reconstruction of conjunctival cul-de-sac with free graft', 'ICD9CM_2010'), +('10.43', 'Other reconstruction of conjunctival cul-de-sac', 'ICD9CM_2010'), +('10.44', 'Other free graft to conjunctiva', 'ICD9CM_2010'), +('10.49', 'Other conjunctivoplasty', 'ICD9CM_2010'), +('10.5', 'Lysis of adhesions of conjunctiva and eyelid', 'ICD9CM_2010'), +('10.6', 'Repair of laceration of conjunctiva', 'ICD9CM_2010'), +('10.9', 'Other operations on conjunctiva', 'ICD9CM_2010'), +('10.91', 'Subconjunctival injection', 'ICD9CM_2010'), +('10.99', 'Other operations on conjunctiva', 'ICD9CM_2010'), +('11', 'Operations on cornea', 'ICD9CM_2010'), +('11.0', 'Magnetic removal of embedded foreign body from cornea', 'ICD9CM_2010'), +('11.1', 'Incision of cornea', 'ICD9CM_2010'), +('11.2', 'Diagnostic procedures on cornea', 'ICD9CM_2010'), +('11.21', 'Scraping of cornea for smear or culture', 'ICD9CM_2010'), +('11.22', 'Biopsy of cornea', 'ICD9CM_2010'), +('11.29', 'Other diagnostic procedures on cornea', 'ICD9CM_2010'), +('11.3', 'Excision of pterygium', 'ICD9CM_2010'), +('11.31', 'Transposition of pterygium', 'ICD9CM_2010'), +('11.32', 'Excision of pterygium with corneal graft', 'ICD9CM_2010'), +('11.39', 'Other excision of pterygium', 'ICD9CM_2010'), +('11.4', 'Excision or destruction of tissue or other lesion of cornea', 'ICD9CM_2010'), +('11.41', 'Mechanical removal of corneal epithelium', 'ICD9CM_2010'), +('11.42', 'Thermocauterization of corneal lesion', 'ICD9CM_2010'), +('11.43', 'Cryotherapy of corneal lesion', 'ICD9CM_2010'), +('11.49', 'Other removal or destruction of corneal lesion', 'ICD9CM_2010'), +('11.5', 'Repair of cornea', 'ICD9CM_2010'), +('11.51', 'Suture of corneal laceration', 'ICD9CM_2010'), +('11.52', 'Repair of postoperative wound dehiscence of cornea', 'ICD9CM_2010'), +('11.53', 'Repair of corneal laceration or wound with conjunctival flap', 'ICD9CM_2010'), +('11.59', 'Other repair of cornea', 'ICD9CM_2010'), +('11.6', 'Corneal transplant', 'ICD9CM_2010'), +('11.60', 'Corneal transplant, not otherwise specified', 'ICD9CM_2010'), +('11.61', 'Lamellar keratoplasty with autograft', 'ICD9CM_2010'), +('11.62', 'Other lamellar keratoplasty', 'ICD9CM_2010'), +('11.63', 'Penetrating keratoplasty with autograft', 'ICD9CM_2010'), +('11.64', 'Other penetrating keratoplasty', 'ICD9CM_2010'), +('11.69', 'Other corneal transplant', 'ICD9CM_2010'), +('11.7', 'Other reconstructive and refractive surgery on cornea', 'ICD9CM_2010'), +('11.71', 'Keratomeleusis', 'ICD9CM_2010'), +('11.72', 'Keratophakia', 'ICD9CM_2010'), +('11.73', 'Keratoprosthesis', 'ICD9CM_2010'), +('11.74', 'Thermokeratoplasty', 'ICD9CM_2010'), +('11.75', 'Radial keratotomy', 'ICD9CM_2010'), +('11.76', 'Epikeratophakia', 'ICD9CM_2010'), +('11.79', 'Other reconstructive surgery on cornea', 'ICD9CM_2010'), +('11.9', 'Other operations on cornea', 'ICD9CM_2010'), +('11.91', 'Tattooing of cornea', 'ICD9CM_2010'), +('11.92', 'Removal of artificial implant from cornea', 'ICD9CM_2010'), +('11.99', 'Other operations on cornea', 'ICD9CM_2010'), +('12', 'Operations on iris, ciliary body, sclera, and anterior chamber', 'ICD9CM_2010'), +('12.0', 'Removal of intraocular foreign body from anterior segment of eye', 'ICD9CM_2010'), +('12.00', 'Removal of intraocular foreign body from anterior segment of eye, no', 'ICD9CM_2010'), +('12.01', 'Removal of intraocular foreign body from anterior segment of eye wit', 'ICD9CM_2010'), +('12.02', 'Removal of intraocular foreign body from anterior segment of eye wit', 'ICD9CM_2010'), +('12.1', 'Iridotomy and simple iridectomy', 'ICD9CM_2010'), +('12.11', 'Iridotomy with transfixion', 'ICD9CM_2010'), +('12.12', 'Other iridotomy', 'ICD9CM_2010'), +('12.13', 'Excision of prolapsed iris', 'ICD9CM_2010'), +('12.14', 'Other iridectomy', 'ICD9CM_2010'), +('12.2', 'Diagnostic procedures on iris, ciliary body, sclera, and anterior ch', 'ICD9CM_2010'), +('12.21', 'Diagnostic aspiration of anterior chamber of eye', 'ICD9CM_2010'), +('12.22', 'Biopsy of iris', 'ICD9CM_2010'), +('12.29', 'Other diagnostic procedures on iris, ciliary body, sclera, and anter', 'ICD9CM_2010'), +('12.3', 'Iridoplasty and coreoplasty', 'ICD9CM_2010'), +('12.31', 'Lysis of goniosynechiae', 'ICD9CM_2010'), +('12.32', 'Lysis of other anterior synechiae', 'ICD9CM_2010'), +('12.33', 'Lysis of posterior synechiae', 'ICD9CM_2010'), +('12.34', 'Lysis of corneovitreal adhesions', 'ICD9CM_2010'), +('12.35', 'Coreoplasty', 'ICD9CM_2010'), +('12.39', 'Other iridoplasty', 'ICD9CM_2010'), +('12.4', 'Excision or destruction of lesion of iris and ciliary body', 'ICD9CM_2010'), +('12.40', 'Removal of lesion of anterior segment of eye, not otherwise specifie', 'ICD9CM_2010'), +('12.41', 'Destruction of lesion of iris, nonexcisional', 'ICD9CM_2010'), +('12.42', 'Excision of lesion of iris', 'ICD9CM_2010'), +('12.43', 'Destruction of lesion of ciliary body, nonexcisional', 'ICD9CM_2010'), +('12.44', 'Excision of lesion of ciliary body', 'ICD9CM_2010'), +('12.5', 'Facilitation of intraocular circulation', 'ICD9CM_2010'), +('12.51', 'Goniopuncture without goniotomy', 'ICD9CM_2010'), +('12.52', 'Goniotomy without goniopuncture', 'ICD9CM_2010'), +('12.53', 'Goniotomy with goniopuncture', 'ICD9CM_2010'), +('12.54', 'Trabeculotomy ab externo', 'ICD9CM_2010'), +('12.55', 'Cyclodialysis', 'ICD9CM_2010'), +('12.59', 'Other facilitation of intraocular circulation', 'ICD9CM_2010'), +('12.6', 'Scleral fistulization', 'ICD9CM_2010'), +('12.61', 'Trephination of sclera with iridectomy', 'ICD9CM_2010'), +('12.62', 'Thermocauterization of sclera with iridectomy', 'ICD9CM_2010'), +('12.63', 'Iridencleisis and iridotasis', 'ICD9CM_2010'), +('12.64', 'Trabeculectomy ab externo', 'ICD9CM_2010'), +('12.65', 'Other scleral fistulization with iridectomy', 'ICD9CM_2010'), +('12.66', 'Postoperative revision of scleral fistulization procedure', 'ICD9CM_2010'), +('12.69', 'Other scleral fistulizing procedure', 'ICD9CM_2010'), +('12.7', 'Other procedures for relief of elevated intraocular pressure', 'ICD9CM_2010'), +('12.71', 'Cyclodiathermy', 'ICD9CM_2010'), +('12.72', 'Cyclocryotherapy', 'ICD9CM_2010'), +('12.73', 'Cyclophotocoagulation', 'ICD9CM_2010'), +('12.74', 'Diminution of ciliary body, not otherwise specified', 'ICD9CM_2010'), +('12.79', 'Other glaucoma procedures', 'ICD9CM_2010'), +('12.8', 'Operations on sclera', 'ICD9CM_2010'), +('12.81', 'Suture of laceration of sclera', 'ICD9CM_2010'), +('12.82', 'Repair of scleral fistula', 'ICD9CM_2010'), +('12.83', 'Revision of operative wound of anterior segment, not elsewhere class', 'ICD9CM_2010'), +('12.84', 'Excision or destruction of lesion of sclera', 'ICD9CM_2010'), +('12.85', 'Repair of scleral staphyloma with graft', 'ICD9CM_2010'), +('12.86', 'Other repair of scleral staphyloma', 'ICD9CM_2010'), +('12.87', 'Scleral reinforcement with graft', 'ICD9CM_2010'), +('12.88', 'Other scleral reinforcement', 'ICD9CM_2010'), +('12.89', 'Other operations on sclera', 'ICD9CM_2010'), +('12.9', 'Other operations on iris, ciliary body, and anterior chamber', 'ICD9CM_2010'), +('12.91', 'Therapeutic evacuation of anterior chamber', 'ICD9CM_2010'), +('12.92', 'Injection into anterior chamber', 'ICD9CM_2010'), +('12.93', 'Removal or destruction of epithelial downgrowth from anterior chambe', 'ICD9CM_2010'), +('12.97', 'Other operations on iris', 'ICD9CM_2010'), +('12.98', 'Other operations on ciliary body', 'ICD9CM_2010'), +('12.99', 'Other operations on anterior chamber', 'ICD9CM_2010'), +('13', 'Operations on lens', 'ICD9CM_2010'), +('13.0', 'Removal of foreign body from lens', 'ICD9CM_2010'), +('13.00', 'Removal of foreign body from lens, not otherwise specified', 'ICD9CM_2010'), +('13.01', 'Removal of foreign body from lens with use of magnet', 'ICD9CM_2010'), +('13.02', 'Removal of foreign body from lens without use of magnet', 'ICD9CM_2010'), +('13.1', 'Intracapsular extraction of lens', 'ICD9CM_2010'), +('13.11', 'Intracapsular extraction of lens by temporal inferior route', 'ICD9CM_2010'), +('13.19', 'Other intracapsular extraction of lens', 'ICD9CM_2010'), +('13.2', 'Extracapsular extraction of lens by linear extraction technique', 'ICD9CM_2010'), +('13.3', 'Extracapsular extraction of lens by simple aspiration (and irrigatio', 'ICD9CM_2010'), +('13.4', 'Extracapsular extraction of lens by fragmentation and aspiration tec', 'ICD9CM_2010'), +('13.41', 'Phacoemulsification and aspiration of cataract', 'ICD9CM_2010'), +('13.42', 'Mechanical phacofragmentation and aspiration of cataract by posterio', 'ICD9CM_2010'), +('13.43', 'Mechanical phacofragmentation and other aspiration of cataract', 'ICD9CM_2010'), +('13.5', 'Other extracapsular extraction of lens', 'ICD9CM_2010'), +('13.51', 'Extracapsular extraction of lens by temporal inferior route', 'ICD9CM_2010'), +('13.59', 'Other extracapsular extraction of lens', 'ICD9CM_2010'), +('13.6', 'Other cataract extraction', 'ICD9CM_2010'), +('13.64', 'Discission of secondary membrane (after cataract)', 'ICD9CM_2010'), +('13.65', 'Excision of secondary membrane (after cataract)', 'ICD9CM_2010'), +('13.66', 'Mechanical fragmentation of secondary membrane (after cataract)', 'ICD9CM_2010'), +('13.69', 'Other cataract extraction', 'ICD9CM_2010'), +('13.7', 'Insertion of prosthetic lens (pseudophakos)', 'ICD9CM_2010'), +('13.70', 'Insertion of pseudophakos, not otherwise specified', 'ICD9CM_2010'), +('13.71', 'Insertion of intraocular lens prosthesis at time of cataract extract', 'ICD9CM_2010'), +('13.72', 'Secondary insertion of intraocular lens prosthesis', 'ICD9CM_2010'), +('13.8', 'Removal of implanted lens', 'ICD9CM_2010'), +('13.9', 'Other operations on lens', 'ICD9CM_2010'), +('13.90', 'Operation on lens, Not Elsewhere Classified', 'ICD9CM_2010'), +('13.91', 'Implatation of intraocular telescope prosthesis', 'ICD9CM_2010'), +('14', 'Operations on retina, choroid, vitreous, and posterior chamber', 'ICD9CM_2010'), +('14.0', 'Removal of foreign body from posterior segment of eye', 'ICD9CM_2010'), +('14.00', 'Removal of foreign body from posterior segment of eye, not otherwise', 'ICD9CM_2010'), +('14.01', 'Removal of foreign body from posterior segment of eye with use of ma', 'ICD9CM_2010'), +('14.02', 'Removal of foreign body from posterior segment of eye without use of', 'ICD9CM_2010'), +('14.1', 'Diagnostic procedures on retina, choroid, vitreous, and posterior ch', 'ICD9CM_2010'), +('14.11', 'Diagnostic aspiration of vitreous', 'ICD9CM_2010'), +('14.19', 'Other diagnostic procedures on retina, choroid, vitreous, and poster', 'ICD9CM_2010'), +('14.2', 'Destruction of lesion of retina and choroid', 'ICD9CM_2010'), +('14.21', 'Destruction of chorioretinal lesion by diathermy', 'ICD9CM_2010'), +('14.22', 'Destruction of chorioretinal lesion by cryotherapy', 'ICD9CM_2010'), +('14.23', 'Destruction of chorioretinal lesion by xenon arc photocoagulation', 'ICD9CM_2010'), +('14.24', 'Destruction of chorioretinal lesion by laser photocoagulation', 'ICD9CM_2010'), +('14.25', 'Destruction of chorioretinal lesion by photocoagulation of unspecifi', 'ICD9CM_2010'), +('14.26', 'Destruction of chorioretinal lesion by radiation therapy', 'ICD9CM_2010'), +('14.27', 'Destruction of chorioretinal lesion by implantation of radiation sou', 'ICD9CM_2010'), +('14.29', 'Other destruction of chorioretinal lesion', 'ICD9CM_2010'), +('14.3', 'Repair of retinal tear', 'ICD9CM_2010'), +('14.31', 'Repair of retinal tear by diathermy', 'ICD9CM_2010'), +('14.32', 'Repair of retinal tear by cryotherapy', 'ICD9CM_2010'), +('14.33', 'Repair of retinal tear by xenon arc photocoagulation', 'ICD9CM_2010'), +('14.34', 'Repair of retinal tear by laser photocoagulation', 'ICD9CM_2010'), +('14.35', 'Repair of retinal tear by photocoagulation of unspecified type', 'ICD9CM_2010'), +('14.39', 'Other repair of retinal tear', 'ICD9CM_2010'), +('14.4', 'Repair of retinal detachment with scleral buckling and implant', 'ICD9CM_2010'), +('14.41', 'Scleral buckling with implant', 'ICD9CM_2010'), +('14.49', 'Other scleral buckling', 'ICD9CM_2010'), +('14.5', 'Other repair of retinal detachment', 'ICD9CM_2010'), +('14.51', 'Repair of retinal detachment with diathermy', 'ICD9CM_2010'), +('14.52', 'Repair of retinal detachment with cryotherapy', 'ICD9CM_2010'), +('14.53', 'Repair of retinal detachment with xenon arc photocoagulation', 'ICD9CM_2010'), +('14.54', 'Repair of retinal detachment with laser photocoagulation', 'ICD9CM_2010'), +('14.55', 'Repair of retinal detachment with photocoagulation of unspecified ty', 'ICD9CM_2010'), +('14.59', 'Other repair of retinal detachment', 'ICD9CM_2010'), +('14.6', 'Removal of surgically implanted material from posterior segment of eye', 'ICD9CM_2010'), +('14.7', 'Operations on vitreous', 'ICD9CM_2010'), +('14.71', 'Removal of vitreous, anterior approach', 'ICD9CM_2010'), +('14.72', 'Other removal of vitreous', 'ICD9CM_2010'), +('14.73', 'Mechanical vitrectomy by anterior approach', 'ICD9CM_2010'), +('14.74', 'Other mechanical vitrectomy', 'ICD9CM_2010'), +('14.75', 'Injection of vitreous substitute', 'ICD9CM_2010'), +('14.79', 'Other operations on vitreous', 'ICD9CM_2010'), +('14.9', 'Other operations on retina, choroid, and posterior chamber', 'ICD9CM_2010'), +('15', 'Operations on extraocular muscles', 'ICD9CM_2010'), +('15.0', 'Diagnostic procedures on extraocular muscles or tendons', 'ICD9CM_2010'), +('15.01', 'Biopsy of extraocular muscle or tendon', 'ICD9CM_2010'), +('15.09', 'Other diagnostic procedures on extraocular muscles and tendons', 'ICD9CM_2010'), +('15.1', 'Operations on one extraocular muscle involving temporary detachment', 'ICD9CM_2010'), +('15.11', 'Recession of one extraocular muscle', 'ICD9CM_2010'), +('15.12', 'Advancement of one extraocular muscle', 'ICD9CM_2010'), +('15.13', 'Resection of one extraocular muscle', 'ICD9CM_2010'), +('15.19', 'Other operations on one extraocular muscle involving temporary detac', 'ICD9CM_2010'), +('15.2', 'Other operations on one extraocular muscle', 'ICD9CM_2010'), +('15.21', 'Lengthening procedure on one extraocular muscle', 'ICD9CM_2010'), +('15.22', 'Shortening procedure on one extraocular muscle', 'ICD9CM_2010'), +('15.29', 'Other operations on one extraocular muscle', 'ICD9CM_2010'), +('15.3', 'Operations on two or more extraocular muscles involving temporary de', 'ICD9CM_2010'), +('15.4', 'Other operations on two or more extraocular muscles, one or both eye', 'ICD9CM_2010'), +('15.5', 'Transposition of extraocular muscles', 'ICD9CM_2010'), +('15.6', 'Revision of extraocular muscle surgery', 'ICD9CM_2010'), +('15.7', 'Repair of injury of extraocular muscle', 'ICD9CM_2010'), +('15.9', 'Other operations on extraocular muscles and tendons', 'ICD9CM_2010'), +('16', 'Operations on orbit and eyeball', 'ICD9CM_2010'), +('16.0', 'Orbitotomy', 'ICD9CM_2010'), +('16.01', 'Orbitotomy with bone flap', 'ICD9CM_2010'), +('16.02', 'Orbitotomy with insertion of orbital implant', 'ICD9CM_2010'), +('16.09', 'Other orbitotomy', 'ICD9CM_2010'), +('16.1', 'Removal of penetrating foreign body from eye, not otherwise specifie', 'ICD9CM_2010'), +('16.2', 'Diagnostic procedures on orbit and eyeball', 'ICD9CM_2010'), +('16.21', 'Ophthalmoscopy', 'ICD9CM_2010'), +('16.22', 'Diagnostic aspiration of orbit', 'ICD9CM_2010'), +('16.23', 'Biopsy of eyeball and orbit', 'ICD9CM_2010'), +('16.29', 'Other diagnostic procedures on orbit and eyeball', 'ICD9CM_2010'), +('16.3', 'Evisceration of eyeball', 'ICD9CM_2010'), +('16.31', 'Removal of ocular contents with synchronous implant into scleral she', 'ICD9CM_2010'), +('16.39', 'Other evisceration of eyeball', 'ICD9CM_2010'), +('16.4', 'Enucleation of eyeball', 'ICD9CM_2010'), +('16.41', 'Enucleation of eyeball with synchronous implant into tenon\'s capsule', 'ICD9CM_2010'), +('16.42', 'Enucleation of eyeball with other synchronous implant', 'ICD9CM_2010'), +('16.49', 'Other enucleation of eyeball', 'ICD9CM_2010'), +('16.5', 'Exenteration of orbital contents', 'ICD9CM_2010'), +('16.51', 'Exenteration of orbit with removal of adjacent structures', 'ICD9CM_2010'), +('16.52', 'Exenteration of orbit with therapeutic removal of orbital bone', 'ICD9CM_2010'), +('16.59', 'Other exenteration of orbit', 'ICD9CM_2010'), +('16.6', 'Secondary procedures after removal of eyeball', 'ICD9CM_2010'), +('16.61', 'Secondary insertion of ocular implant', 'ICD9CM_2010'), +('16.62', 'Revision and reinsertion of ocular implant', 'ICD9CM_2010'), +('16.63', 'Revision of enucleation socket with graft', 'ICD9CM_2010'), +('16.64', 'Other revision of enucleation socket', 'ICD9CM_2010'), +('16.65', 'Secondary graft to exenteration cavity', 'ICD9CM_2010'), +('16.66', 'Other revision of exenteration cavity', 'ICD9CM_2010'), +('16.69', 'Other secondary procedures after removal of eyeball', 'ICD9CM_2010'), +('16.7', 'Removal of ocular or orbital implant', 'ICD9CM_2010'), +('16.71', 'Removal of ocular implant', 'ICD9CM_2010'), +('16.72', 'Removal of orbital implant', 'ICD9CM_2010'), +('16.8', 'Repair of injury of eyeball and orbit', 'ICD9CM_2010'), +('16.81', 'Repair of wound of orbit', 'ICD9CM_2010'), +('16.82', 'Repair of rupture of eyeball', 'ICD9CM_2010'), +('16.89', 'Other repair of injury of eyeball or orbit', 'ICD9CM_2010'), +('16.9', 'Other operations on orbit and eyeball', 'ICD9CM_2010'), +('16.91', 'Retrobulbar injection of therapeutic agent', 'ICD9CM_2010'), +('16.92', 'Excision of lesion of orbit', 'ICD9CM_2010'), +('16.93', 'Excision of lesion of eye, unspecified structure', 'ICD9CM_2010'), +('16.98', 'Other operations on orbit', 'ICD9CM_2010'), +('16.99', 'Other operations on eyeball', 'ICD9CM_2010'), +('17', 'Other miscellaneous procedures', 'ICD9CM_2010'), +('17.1', 'Laparoscopic unilateral repair of inguinal hernia', 'ICD9CM_2010'), +('17.11', 'Laparoscopic repair of direct inguinal hernia with graft or prosthesis', 'ICD9CM_2010'), +('17.12', 'Laparoscopic repair of indirect inguinal hernia with graft or prosthesis', 'ICD9CM_2010'), +('17.13', 'Laparoscopic repair of inguinal hernia with graft or prosthesis,not otherwise specified', 'ICD9CM_2010'), +('17.2', 'Laparoscopic bilateral repair of inguinal hernia', 'ICD9CM_2010'), +('17.21', 'Laparoscopic bilateral repair of direct inguinal hernia with graft or prosthesis', 'ICD9CM_2010'), +('17.22', 'Laparoscopic bilateral repair of indirect inguinal hernia with graft or prosthesis', 'ICD9CM_2010'), +('17.23', 'Laparoscopic bilateral repair of inguinal hernia, one direct and one indirect, with graft or prosthesis', 'ICD9CM_2010'), +('17.24', 'Laparoscopic bilateral repair of inguinal hernia with graft or prosthesis, not otherwise specified', 'ICD9CM_2010'), +('17.3', 'Laparoscopic partial excision of large intestine', 'ICD9CM_2010'), +('17.31', 'Laparoscopic multiple segmental resection of large intestine', 'ICD9CM_2010'), +('17.32', 'Laparoscopic cecectomy', 'ICD9CM_2010'), +('17.33', 'Laparoscopic right hemicolectomy', 'ICD9CM_2010'), +('17.34', 'Laparoscopic resection of transverse colon', 'ICD9CM_2010'), +('17.35', 'Laparoscopic left hemicolectomy', 'ICD9CM_2010'), +('17.36', 'Laparoscopic sigmoidectomy', 'ICD9CM_2010'), +('17.39', 'Other laparoscopic partial excision of large intestine', 'ICD9CM_2010'), +('17.4', 'Robotic assisted procedure', 'ICD9CM_2010'), +('17.41', 'Open robotic assisted procedure', 'ICD9CM_2010'), +('17.42', 'Laparoscopic robotic assisted procedure', 'ICD9CM_2010'), +('17.43', 'Percutaneous robotic assisted procedure', 'ICD9CM_2010'), +('17.44', 'Endoscopic robotic assisted procedure', 'ICD9CM_2010'), +('17.45', 'Thoracoscopic robotic assisted procedure', 'ICD9CM_2010'), +('17.49', 'Other and unspecified robotic assisted procedure', 'ICD9CM_2010'); +INSERT INTO `icd9` (`ID_ICD9`, `Prosedur`, `Versi_ICD9`) VALUES +('17.5', 'Implantation of rechargeable cardiac contractility modulation [CCM]', 'ICD9CM_2010'), +('17.51', 'Implantation of rechargeable cardiac contractility modulation [CCM], total system', 'ICD9CM_2010'), +('17.52', 'Implantation or replacement of cardiac contractility modulation [CCM] rechargeable pulse generator only', 'ICD9CM_2010'), +('17.6', 'Laser interstitial thermal therapy [LITT] of lesion or tissue', 'ICD9CM_2010'), +('17.61', 'Laser interstitial thermal therapy [LITT] of lesion or tissue of brain under guidance', 'ICD9CM_2010'), +('17.62', 'Laser interstitial thermal therapy [LITT] of lesion or tissue of head and neck under guidance', 'ICD9CM_2010'), +('17.63', 'Laser interstitial thermal therapy [LITT] of lesion or tissue of liver under guidance', 'ICD9CM_2010'), +('17.69', 'Laser interstitial thermal therapy [LITT] of lesion or tissue of other and unspecified site under guidance', 'ICD9CM_2010'), +('17.7', 'Intravenous infusion', 'ICD9CM_2010'), +('17.70', 'Intravenous infusion of clofarabine', 'ICD9CM_2010'), +('17.71', 'Non-coronary intra-operative fluorescence vascular angiography [IFVA]', 'ICD9CM_2010'), +('18', 'Operations on external ear', 'ICD9CM_2010'), +('18.0', 'Incision of external ear', 'ICD9CM_2010'), +('18.01', 'Piercing of ear lobe', 'ICD9CM_2010'), +('18.02', 'Incision of external auditory canal', 'ICD9CM_2010'), +('18.09', 'Other incision of external ear', 'ICD9CM_2010'), +('18.1', 'Diagnostic procedures on external ear', 'ICD9CM_2010'), +('18.11', 'Otoscopy', 'ICD9CM_2010'), +('18.12', 'Biopsy of external ear', 'ICD9CM_2010'), +('18.19', 'Other diagnostic procedures on external ear', 'ICD9CM_2010'), +('18.2', 'Excision or destruction of lesion of external ear', 'ICD9CM_2010'), +('18.21', 'Excision of preauricular sinus', 'ICD9CM_2010'), +('18.29', 'Excision or destruction of other lesion of external ear', 'ICD9CM_2010'), +('18.3', 'Other excision of external ear', 'ICD9CM_2010'), +('18.31', 'Radical excision of lesion of external ear', 'ICD9CM_2010'), +('18.39', 'Other excision of external ear', 'ICD9CM_2010'), +('18.4', 'Suture of laceration of external ear', 'ICD9CM_2010'), +('18.5', 'Surgical correction of prominent ear', 'ICD9CM_2010'), +('18.6', 'Reconstruction of external auditory canal', 'ICD9CM_2010'), +('18.7', 'Other plastic repair of external ear', 'ICD9CM_2010'), +('18.71', 'Construction of auricle of ear', 'ICD9CM_2010'), +('18.72', 'Reattachment of amputated ear', 'ICD9CM_2010'), +('18.79', 'Other plastic repair of external ear', 'ICD9CM_2010'), +('18.9', 'Other operations on external ear', 'ICD9CM_2010'), +('19', 'Reconstructive operations on middle ear', 'ICD9CM_2010'), +('19.0', 'Stapes mobilization', 'ICD9CM_2010'), +('19.1', 'Stapedectomy', 'ICD9CM_2010'), +('19.11', 'Stapedectomy with incus replacement', 'ICD9CM_2010'), +('19.19', 'Other stapedectomy', 'ICD9CM_2010'), +('19.2', 'Revision of stapedectomy', 'ICD9CM_2010'), +('19.21', 'Revision of stapedectomy with incus replacement', 'ICD9CM_2010'), +('19.29', 'Other revision of stapedectomy', 'ICD9CM_2010'), +('19.3', 'Other operations on ossicular chain', 'ICD9CM_2010'), +('19.4', 'Myringoplasty', 'ICD9CM_2010'), +('19.5', 'Other tympanoplasty', 'ICD9CM_2010'), +('19.52', 'Type ii tympanoplasty', 'ICD9CM_2010'), +('19.53', 'Type iii tympanoplasty', 'ICD9CM_2010'), +('19.54', 'Type iv tympanoplasty', 'ICD9CM_2010'), +('19.55', 'Type v tympanoplasty', 'ICD9CM_2010'), +('19.6', 'Revision of tympanoplasty', 'ICD9CM_2010'), +('19.9', 'Other repair of middle ear', 'ICD9CM_2010'), +('20', 'Other operations on middle and inner ear', 'ICD9CM_2010'), +('20.0', 'Myringotomy', 'ICD9CM_2010'), +('20.01', 'Myringotomy with insertion of tube', 'ICD9CM_2010'), +('20.09', 'Other myringotomy', 'ICD9CM_2010'), +('20.1', 'Removal of tympanostomy tube', 'ICD9CM_2010'), +('20.2', 'Incision of mastoid and middle ear', 'ICD9CM_2010'), +('20.21', 'Incision of mastoid', 'ICD9CM_2010'), +('20.22', 'Incision of petrous pyramid air cells', 'ICD9CM_2010'), +('20.23', 'Incision of middle ear', 'ICD9CM_2010'), +('20.3', 'Diagnostic procedures on middle and inner ear', 'ICD9CM_2010'), +('20.31', 'Electrocochleography', 'ICD9CM_2010'), +('20.32', 'Biopsy of middle and inner ear', 'ICD9CM_2010'), +('20.39', 'Other diagnostic procedures on middle and inner ear', 'ICD9CM_2010'), +('20.4', 'Mastoidectomy', 'ICD9CM_2010'), +('20.41', 'Simple mastoidectomy', 'ICD9CM_2010'), +('20.42', 'Radical mastoidectomy', 'ICD9CM_2010'), +('20.49', 'Other mastoidectomy', 'ICD9CM_2010'), +('20.5', 'Other excision of middle ear', 'ICD9CM_2010'), +('20.51', 'Excision of lesion of middle ear', 'ICD9CM_2010'), +('20.59', 'Other excision of middle ear', 'ICD9CM_2010'), +('20.6', 'Fenestration of inner ear', 'ICD9CM_2010'), +('20.61', 'Fenestration of inner ear (initial)', 'ICD9CM_2010'), +('20.62', 'Revision of fenestration of inner ear', 'ICD9CM_2010'), +('20.7', 'Incision, excision, and destruction of inner ear', 'ICD9CM_2010'), +('20.71', 'Endolymphatic shunt', 'ICD9CM_2010'), +('20.72', 'Injection into inner ear', 'ICD9CM_2010'), +('20.79', 'Other incision, excision, and destruction of inner ear', 'ICD9CM_2010'), +('20.8', 'Operations on eustachian tube', 'ICD9CM_2010'), +('20.9', 'Other operations on inner and middle ear', 'ICD9CM_2010'), +('20.91', 'Tympanosympathectomy', 'ICD9CM_2010'), +('20.92', 'Revision of mastoidectomy', 'ICD9CM_2010'), +('20.93', 'Repair of oval and round windows', 'ICD9CM_2010'), +('20.94', 'Injection of tympanum', 'ICD9CM_2010'), +('20.95', 'Implantation of electromagnetic hearing device', 'ICD9CM_2010'), +('20.96', 'Implantation or replacement of cochlear prosthetic device, not otherwise specified', 'ICD9CM_2010'), +('20.97', 'Implantation or replacement of cochlear prosthetic device, single channel', 'ICD9CM_2010'), +('20.98', 'Implantation or replacement of cochlear prosthetic device, multiple channel', 'ICD9CM_2010'), +('20.99', 'Other operations on middle and inner ear', 'ICD9CM_2010'), +('21', 'Operations on nose', 'ICD9CM_2010'), +('21.0', 'Control of epistaxis', 'ICD9CM_2010'), +('21.00', 'Control of epistaxis, not otherwise specified', 'ICD9CM_2010'), +('21.01', 'Control of epistaxis by anterior nasal packing', 'ICD9CM_2010'), +('21.02', 'Control of epistaxis by posterior (and anterior) packing', 'ICD9CM_2010'), +('21.03', 'Control of epistaxis by cauterization (and packing)', 'ICD9CM_2010'), +('21.04', 'Control of epistaxis by ligation of ethmoidal arteries', 'ICD9CM_2010'), +('21.05', 'Control of epistaxis by (transantral) ligation of the maxillary arte', 'ICD9CM_2010'), +('21.06', 'Control of epistaxis by ligation of the external carotid artery', 'ICD9CM_2010'), +('21.07', 'Control of epistaxis by excision of nasal mucosa and skin grafting o', 'ICD9CM_2010'), +('21.09', 'Control of epistaxis by other means', 'ICD9CM_2010'), +('21.1', 'Incision of nose', 'ICD9CM_2010'), +('21.2', 'Diagnostic procedures on nose', 'ICD9CM_2010'), +('21.21', 'Rhinoscopy', 'ICD9CM_2010'), +('21.22', 'Biopsy of nose', 'ICD9CM_2010'), +('21.29', 'Other diagnostic procedures on nose', 'ICD9CM_2010'), +('21.3', 'Local excision or destruction of lesion of nose', 'ICD9CM_2010'), +('21.30', 'Excision or destruction of lesion of nose, not otherwise specified', 'ICD9CM_2010'), +('21.31', 'Local excision or destruction of intranasal lesion', 'ICD9CM_2010'), +('21.32', 'Local excision or destruction of other lesion of nose', 'ICD9CM_2010'), +('21.4', 'Resection of nose', 'ICD9CM_2010'), +('21.5', 'Submucous resection of nasal septum', 'ICD9CM_2010'), +('21.6', 'Turbinectomy', 'ICD9CM_2010'), +('21.61', 'Turbinectomy by diathermy or cryosurgery', 'ICD9CM_2010'), +('21.62', 'Fracture of the turbinates', 'ICD9CM_2010'), +('21.69', 'Other turbinectomy', 'ICD9CM_2010'), +('21.7', 'Reduction of nasal fracture', 'ICD9CM_2010'), +('21.71', 'Closed reduction of nasal fracture', 'ICD9CM_2010'), +('21.72', 'Open reduction of nasal fracture', 'ICD9CM_2010'), +('21.8', 'Repair and plastic operations on the nose', 'ICD9CM_2010'), +('21.81', 'Suture of laceration of nose', 'ICD9CM_2010'), +('21.82', 'Closure of nasal fistula', 'ICD9CM_2010'), +('21.83', 'Total nasal reconstruction', 'ICD9CM_2010'), +('21.84', 'Revision rhinoplasty', 'ICD9CM_2010'), +('21.85', 'Augmentation rhinoplasty', 'ICD9CM_2010'), +('21.86', 'Limited rhinoplasty', 'ICD9CM_2010'), +('21.87', 'Other rhinoplasty', 'ICD9CM_2010'), +('21.88', 'Other septoplasty', 'ICD9CM_2010'), +('21.89', 'Other repair and plastic operations on nose', 'ICD9CM_2010'), +('21.9', 'Other operations on nose', 'ICD9CM_2010'), +('21.91', 'Lysis of adhesions of nose', 'ICD9CM_2010'), +('21.99', 'Other operations on nose', 'ICD9CM_2010'), +('22', 'Operations on nasal sinuses', 'ICD9CM_2010'), +('22.0', 'Aspiration and lavage of nasal sinus', 'ICD9CM_2010'), +('22.00', 'Aspiration and lavage of nasal sinus, not otherwise specified', 'ICD9CM_2010'), +('22.01', 'Puncture of nasal sinus for aspiration or lavage', 'ICD9CM_2010'), +('22.02', 'Aspiration or lavage of nasal sinus through natural ostium', 'ICD9CM_2010'), +('22.1', 'Diagnostic procedures on nasal sinus', 'ICD9CM_2010'), +('22.11', 'Closed (endoscopic) (needle) biopsy of nasal sinus', 'ICD9CM_2010'), +('22.12', 'Open biopsy of nasal sinus', 'ICD9CM_2010'), +('22.19', 'Other diagnostic procedures on nasal sinuses', 'ICD9CM_2010'), +('22.2', 'Intranasal antrotomy', 'ICD9CM_2010'), +('22.3', 'External maxillary antrotomy', 'ICD9CM_2010'), +('22.31', 'Radical maxillary antrotomy', 'ICD9CM_2010'), +('22.39', 'Other external maxillary antrotomy', 'ICD9CM_2010'), +('22.4', 'Frontal sinusotomy and sinusectomy', 'ICD9CM_2010'), +('22.41', 'Frontal sinusotomy', 'ICD9CM_2010'), +('22.42', 'Frontal sinusectomy', 'ICD9CM_2010'), +('22.5', 'Other nasal sinusotomy', 'ICD9CM_2010'), +('22.50', 'Sinusotomy, not otherwise specified', 'ICD9CM_2010'), +('22.51', 'Ethmoidotomy', 'ICD9CM_2010'), +('22.52', 'Sphenoidotomy', 'ICD9CM_2010'), +('22.53', 'Incision of multiple nasal sinuses', 'ICD9CM_2010'), +('22.6', 'Other nasal sinusectomy', 'ICD9CM_2010'), +('22.60', 'Sinusectomy, not otherwise specified', 'ICD9CM_2010'), +('22.61', 'Excision of lesion of maxillary sinus with caldwell-luc approach', 'ICD9CM_2010'), +('22.62', 'Excision of lesion of maxillary sinus with other approach', 'ICD9CM_2010'), +('22.63', 'Ethmoidectomy', 'ICD9CM_2010'), +('22.64', 'Sphenoidectomy', 'ICD9CM_2010'), +('22.7', 'Repair of nasal sinus', 'ICD9CM_2010'), +('22.71', 'Closure of nasal sinus fistula', 'ICD9CM_2010'), +('22.79', 'Other repair of nasal sinus', 'ICD9CM_2010'), +('22.9', 'Other operations on nasal sinuses', 'ICD9CM_2010'), +('23', 'Removal and restoration of teeth', 'ICD9CM_2010'), +('23.0', 'Forceps extraction of tooth', 'ICD9CM_2010'), +('23.01', 'Extraction of deciduous tooth', 'ICD9CM_2010'), +('23.09', 'Extraction of other tooth', 'ICD9CM_2010'), +('23.1', 'Surgical removal of tooth', 'ICD9CM_2010'), +('23.11', 'Removal of residual root', 'ICD9CM_2010'), +('23.19', 'Other surgical extraction of tooth', 'ICD9CM_2010'), +('23.2', 'Restoration of tooth by filling', 'ICD9CM_2010'), +('23.3', 'Restoration of tooth by inlay', 'ICD9CM_2010'), +('23.4', 'Other dental restoration', 'ICD9CM_2010'), +('23.41', 'Application of crown', 'ICD9CM_2010'), +('23.42', 'Insertion of fixed bridge', 'ICD9CM_2010'), +('23.43', 'Insertion of removable bridge', 'ICD9CM_2010'), +('23.49', 'Other dental restoration', 'ICD9CM_2010'), +('23.5', 'Implantation of tooth', 'ICD9CM_2010'), +('23.6', 'Prosthetic dental implant', 'ICD9CM_2010'), +('23.7', 'Apicoectomy and root canal therapy', 'ICD9CM_2010'), +('23.70', 'Root canal, not otherwise specified', 'ICD9CM_2010'), +('23.71', 'Root canal therapy with irrigation', 'ICD9CM_2010'), +('23.72', 'Root canal therapy with apicoectomy', 'ICD9CM_2010'), +('23.73', 'Apicoectomy', 'ICD9CM_2010'), +('24', 'Other operations on teeth, gums, and alveoli', 'ICD9CM_2010'), +('24.0', 'Incision of gum or alveolar bone', 'ICD9CM_2010'), +('24.1', 'Diagnostic procedures on teeth, gums, and alveoli', 'ICD9CM_2010'), +('24.11', 'Biopsy of gum', 'ICD9CM_2010'), +('24.12', 'Biopsy of alveolus', 'ICD9CM_2010'), +('24.19', 'Other diagnostic procedures on teeth, gums, and alveoli', 'ICD9CM_2010'), +('24.2', 'Gingivoplasty', 'ICD9CM_2010'), +('24.3', 'Other operations on gum', 'ICD9CM_2010'), +('24.31', 'Excision of lesion or tissue of gum', 'ICD9CM_2010'), +('24.32', 'Suture of laceration of gum', 'ICD9CM_2010'), +('24.39', 'Other operations on gum', 'ICD9CM_2010'), +('24.4', 'Excision of dental lesion of jaw', 'ICD9CM_2010'), +('24.5', 'Alveoloplasty', 'ICD9CM_2010'), +('24.6', 'Exposure of tooth', 'ICD9CM_2010'), +('24.7', 'Application of orthodontic appliance', 'ICD9CM_2010'), +('24.8', 'Other orthodontic operation', 'ICD9CM_2010'), +('24.9', 'Other dental operations', 'ICD9CM_2010'), +('24.91', 'Extension or deepening of buccolabial or lingual sulcus', 'ICD9CM_2010'), +('24.99', 'Other dental operations', 'ICD9CM_2010'), +('25', 'Operations on tongue', 'ICD9CM_2010'), +('25.0', 'Diagnostic procedures on tongue', 'ICD9CM_2010'), +('25.01', 'Closed (needle) biopsy of tongue', 'ICD9CM_2010'), +('25.02', 'Open biopsy of tongue', 'ICD9CM_2010'), +('25.09', 'Other diagnostic procedures on tongue', 'ICD9CM_2010'), +('25.1', 'Excision or destruction of lesion or tissue of tongue', 'ICD9CM_2010'), +('25.2', 'Partial glossectomy', 'ICD9CM_2010'), +('25.3', 'Complete glossectomy', 'ICD9CM_2010'), +('25.4', 'Radical glossectomy', 'ICD9CM_2010'), +('25.5', 'Repair of tongue and glossoplasty', 'ICD9CM_2010'), +('25.51', 'Suture of laceration of tongue', 'ICD9CM_2010'), +('25.59', 'Other repair and plastic operations on tongue', 'ICD9CM_2010'), +('25.9', 'Other operations on tongue', 'ICD9CM_2010'), +('25.91', 'Lingual frenotomy', 'ICD9CM_2010'), +('25.92', 'Lingual frenectomy', 'ICD9CM_2010'), +('25.93', 'Lysis of adhesions of tongue', 'ICD9CM_2010'), +('25.94', 'Other glossotomy', 'ICD9CM_2010'), +('25.99', 'Other operations on tongue', 'ICD9CM_2010'), +('26', 'Operations on salivary glands and ducts', 'ICD9CM_2010'), +('26.0', 'Incision of salivary gland or duct', 'ICD9CM_2010'), +('26.1', 'Diagnostic procedures on salivary glands and ducts', 'ICD9CM_2010'), +('26.11', 'Closed (needle) biopsy of salivary gland or duct', 'ICD9CM_2010'), +('26.12', 'Open biopsy of salivary gland or duct', 'ICD9CM_2010'), +('26.19', 'Other diagnostic procedures on salivary glands and ducts', 'ICD9CM_2010'), +('26.2', 'Excision of lesion of salivary gland', 'ICD9CM_2010'), +('26.21', 'Marsupialization of salivary gland cyst', 'ICD9CM_2010'), +('26.29', 'Other excision of salivary gland lesion', 'ICD9CM_2010'), +('26.3', 'Sialoadenectomy', 'ICD9CM_2010'), +('26.30', 'Sialoadenectomy, not otherwise specified', 'ICD9CM_2010'), +('26.31', 'Partial sialoadenectomy', 'ICD9CM_2010'), +('26.32', 'Complete sialoadenectomy', 'ICD9CM_2010'), +('26.4', 'Repair of salivary gland or duct', 'ICD9CM_2010'), +('26.41', 'Suture of laceration of salivary gland', 'ICD9CM_2010'), +('26.42', 'Closure of salivary fistula', 'ICD9CM_2010'), +('26.49', 'Other repair and plastic operations on salivary gland or duct', 'ICD9CM_2010'), +('26.9', 'Other operations on salivary gland or duct', 'ICD9CM_2010'), +('26.91', 'Probing of salivary duct', 'ICD9CM_2010'), +('26.99', 'Other operations on salivary gland or duct', 'ICD9CM_2010'), +('27', 'Other operations on mouth and face', 'ICD9CM_2010'), +('27.0', 'Drainage of face and floor of mouth', 'ICD9CM_2010'), +('27.1', 'Incision of palate', 'ICD9CM_2010'), +('27.2', 'Diagnostic procedures on oral cavity', 'ICD9CM_2010'), +('27.21', 'Biopsy of bony palate', 'ICD9CM_2010'), +('27.22', 'Biopsy of uvula and soft palate', 'ICD9CM_2010'), +('27.23', 'Biopsy of lip', 'ICD9CM_2010'), +('27.24', 'Biopsy of mouth, unspecified structure', 'ICD9CM_2010'), +('27.29', 'Other diagnostic procedures on oral cavity', 'ICD9CM_2010'), +('27.3', 'Excision of lesion or tissue of bony palate', 'ICD9CM_2010'), +('27.31', 'Local excision or destruction of lesion or tissue of bony palate', 'ICD9CM_2010'), +('27.32', 'Wide excision or destruction of lesion or tissue of bony palate', 'ICD9CM_2010'), +('27.4', 'Excision of other parts of mouth', 'ICD9CM_2010'), +('27.41', 'Labial frenectomy', 'ICD9CM_2010'), +('27.42', 'Wide excision of lesion of lip', 'ICD9CM_2010'), +('27.43', 'Other excision of lesion or tissue of lip', 'ICD9CM_2010'), +('27.49', 'Other excision of mouth', 'ICD9CM_2010'), +('27.5', 'Plastic repair of mouth', 'ICD9CM_2010'), +('27.51', 'Suture of laceration of lip', 'ICD9CM_2010'), +('27.52', 'Suture of laceration of other part of mouth', 'ICD9CM_2010'), +('27.53', 'Closure of fistula of mouth', 'ICD9CM_2010'), +('27.54', 'Repair of cleft lip', 'ICD9CM_2010'), +('27.55', 'Full-thickness skin graft to lip and mouth', 'ICD9CM_2010'), +('27.56', 'Other skin graft to lip and mouth', 'ICD9CM_2010'), +('27.57', 'Attachment of pedicle or flap graft to lip and mouth', 'ICD9CM_2010'), +('27.59', 'Other plastic repair of mouth', 'ICD9CM_2010'), +('27.6', 'Palatoplasty', 'ICD9CM_2010'), +('27.61', 'Suture of laceration of palate', 'ICD9CM_2010'), +('27.62', 'Correction of cleft palate', 'ICD9CM_2010'), +('27.63', 'Revision of cleft palate repair', 'ICD9CM_2010'), +('27.64', 'Insertion of palatal implant', 'ICD9CM_2010'), +('27.69', 'Other plastic repair of palate', 'ICD9CM_2010'), +('27.7', 'Operations on uvula', 'ICD9CM_2010'), +('27.71', 'Incision of uvula', 'ICD9CM_2010'), +('27.72', 'Excision of uvula', 'ICD9CM_2010'), +('27.73', 'Repair of uvula', 'ICD9CM_2010'), +('27.79', 'Other operations on uvula', 'ICD9CM_2010'), +('27.9', 'Other operations on mouth and face', 'ICD9CM_2010'), +('27.91', 'Labial frenotomy', 'ICD9CM_2010'), +('27.92', 'Incision of mouth, unspecified structure', 'ICD9CM_2010'), +('27.99', 'Other operations on oral cavity', 'ICD9CM_2010'), +('28', 'Operations on tonsils and adenoids', 'ICD9CM_2010'), +('28.0', 'Incision and drainage of tonsil and peritonsillar structures', 'ICD9CM_2010'), +('28.1', 'Diagnostic procedures on tonsils and adenoids', 'ICD9CM_2010'), +('28.11', 'Biopsy of tonsils and adenoids', 'ICD9CM_2010'), +('28.19', 'Other diagnostic procedures on tonsils and adenoids', 'ICD9CM_2010'), +('28.2', 'Tonsillectomy without adenoidectomy', 'ICD9CM_2010'), +('28.3', 'Tonsillectomy with adenoidectomy', 'ICD9CM_2010'), +('28.4', 'Excision of tonsil tag', 'ICD9CM_2010'), +('28.5', 'Excision of lingual tonsil', 'ICD9CM_2010'), +('28.6', 'Adenoidectomy without tonsillectomy', 'ICD9CM_2010'), +('28.7', 'Control of hemorrhage after tonsillectomy and adenoidectomy', 'ICD9CM_2010'), +('28.9', 'Other operations on tonsils and adenoids', 'ICD9CM_2010'), +('28.91', 'Removal of foreign body from tonsil and adenoid by incision', 'ICD9CM_2010'), +('28.92', 'Excision of lesion of tonsil and adenoid', 'ICD9CM_2010'), +('28.99', 'Other operations on tonsils and adenoids', 'ICD9CM_2010'), +('29', 'Operations on pharynx', 'ICD9CM_2010'), +('29.0', 'Pharyngotomy', 'ICD9CM_2010'), +('29.1', 'Diagnostic procedures on pharynx', 'ICD9CM_2010'), +('29.11', 'Pharyngoscopy', 'ICD9CM_2010'), +('29.12', 'Pharyngeal biopsy', 'ICD9CM_2010'), +('29.19', 'Other diagnostic procedures on pharynx', 'ICD9CM_2010'), +('29.2', 'Excision of branchial cleft cyst or vestige', 'ICD9CM_2010'), +('29.3', 'Excision or destruction of lesion or tissue of pharynx', 'ICD9CM_2010'), +('29.31', 'Cricopharyngeal myotomy', 'ICD9CM_2010'), +('29.32', 'Pharyngeal diverticulectomy', 'ICD9CM_2010'), +('29.33', 'Pharyngectomy (partial)', 'ICD9CM_2010'), +('29.39', 'Other excision or destruction of lesion or tissue of pharynx', 'ICD9CM_2010'), +('29.4', 'Plastic operation on pharynx', 'ICD9CM_2010'), +('29.5', 'Other repair of pharynx', 'ICD9CM_2010'), +('29.51', 'Suture of laceration of pharynx', 'ICD9CM_2010'), +('29.52', 'Closure of branchial cleft fistula', 'ICD9CM_2010'), +('29.53', 'Closure of other fistula of pharynx', 'ICD9CM_2010'), +('29.54', 'Lysis of pharyngeal adhesions', 'ICD9CM_2010'), +('29.59', 'Other repair of pharynx', 'ICD9CM_2010'), +('29.9', 'Other operations on pharynx', 'ICD9CM_2010'), +('29.91', 'Dilation of pharynx', 'ICD9CM_2010'), +('29.92', 'Division of glossopharyngeal nerve', 'ICD9CM_2010'), +('29.99', 'Other operations on pharynx', 'ICD9CM_2010'), +('30', 'Excision of larynx', 'ICD9CM_2010'), +('30.0', 'Excision or destruction of lesion or tissue of larynx', 'ICD9CM_2010'), +('30.01', 'Marsupialization of laryngeal cyst', 'ICD9CM_2010'), +('30.09', 'Other excision or destruction of lesion or tissue of larynx', 'ICD9CM_2010'), +('30.1', 'Hemilaryngectomy', 'ICD9CM_2010'), +('30.2', 'Other partial laryngectomy', 'ICD9CM_2010'), +('30.21', 'Epiglottidectomy', 'ICD9CM_2010'), +('30.22', 'Vocal cordectomy', 'ICD9CM_2010'), +('30.29', 'Other partial laryngectomy', 'ICD9CM_2010'), +('30.3', 'Complete laryngectomy', 'ICD9CM_2010'), +('30.4', 'Radical laryngectomy', 'ICD9CM_2010'), +('31', 'Other operations on larynx and trachea', 'ICD9CM_2010'), +('31.0', 'Injection of larynx', 'ICD9CM_2010'), +('31.1', 'Temporary tracheostomy', 'ICD9CM_2010'), +('31.2', 'Permanent tracheostomy', 'ICD9CM_2010'), +('31.21', 'Mediastinal tracheostomy', 'ICD9CM_2010'), +('31.29', 'Other permanent tracheostomy', 'ICD9CM_2010'), +('31.3', 'Other incision of larynx or trachea', 'ICD9CM_2010'), +('31.4', 'Diagnostic procedures on larynx and trachea', 'ICD9CM_2010'), +('31.41', 'Tracheoscopy through artificial stoma', 'ICD9CM_2010'), +('31.42', 'Laryngoscopy and other tracheoscopy', 'ICD9CM_2010'), +('31.43', 'Closed (endoscopic) biopsy of larynx', 'ICD9CM_2010'), +('31.44', 'Closed (endoscopic) biopsy of trachea', 'ICD9CM_2010'), +('31.45', 'Open biopsy of larynx or trachea', 'ICD9CM_2010'), +('31.48', 'Other diagnostic procedures on larynx', 'ICD9CM_2010'), +('31.49', 'Other diagnostic procedures on trachea', 'ICD9CM_2010'), +('31.5', 'Local excision or destruction of lesion or tissue of trachea', 'ICD9CM_2010'), +('31.6', 'Repair of larynx', 'ICD9CM_2010'), +('31.61', 'Suture of laceration of larynx', 'ICD9CM_2010'), +('31.62', 'Closure of fistula of larynx', 'ICD9CM_2010'), +('31.63', 'Revision of laryngostomy', 'ICD9CM_2010'), +('31.64', 'Repair of laryngeal fracture', 'ICD9CM_2010'), +('31.69', 'Other repair of larynx', 'ICD9CM_2010'), +('31.7', 'Repair and plastic operations on trachea', 'ICD9CM_2010'), +('31.71', 'Suture of laceration of trachea', 'ICD9CM_2010'), +('31.72', 'Closure of external fistula of trachea', 'ICD9CM_2010'), +('31.73', 'Closure of other fistula of trachea', 'ICD9CM_2010'), +('31.74', 'Revision of tracheostomy', 'ICD9CM_2010'), +('31.75', 'Reconstruction of trachea and construction of artificial larynx', 'ICD9CM_2010'), +('31.79', 'Other repair and plastic operations on trachea', 'ICD9CM_2010'), +('31.9', 'Other operations on larynx and trachea', 'ICD9CM_2010'), +('31.91', 'Division of laryngeal nerve', 'ICD9CM_2010'), +('31.92', 'Lysis of adhesions of trachea or larynx', 'ICD9CM_2010'), +('31.93', 'Replacement of laryngeal or tracheal stent', 'ICD9CM_2010'), +('31.94', 'Injection of locally acting therapeutic substance into trachea', 'ICD9CM_2010'), +('31.95', 'Tracheoesophageal fistulization', 'ICD9CM_2010'), +('31.98', 'Other operations on larynx', 'ICD9CM_2010'), +('31.99', 'Other operations on trachea', 'ICD9CM_2010'), +('32', 'Excision of lung and bronchus', 'ICD9CM_2010'), +('32.0', 'Local excision or destruction of lesion or tissue of bronchus', 'ICD9CM_2010'), +('32.01', 'Endoscopic excision or destruction of lesion or tissue of bronchus', 'ICD9CM_2010'), +('32.09', 'Other local excision or destruction of lesion or tissue of bronchus', 'ICD9CM_2010'), +('32.1', 'Other excision of bronchus', 'ICD9CM_2010'), +('32.2', 'Local excision or destruction of lesion or tissue of lung', 'ICD9CM_2010'), +('32.20', 'Thoracoscopic excision of lesion or tissue of lung', 'ICD9CM_2010'), +('32.21', 'Plication of emphysematous bleb', 'ICD9CM_2010'), +('32.22', 'Lung volume reduction surgery', 'ICD9CM_2010'), +('32.23', 'Open ablation of lung lesion or tissue', 'ICD9CM_2010'), +('32.24', 'Percutaneous ablation of lung lesion or tissue', 'ICD9CM_2010'), +('32.25', 'Thoracoscopic ablation of lung lesion or tissue', 'ICD9CM_2010'), +('32.26', 'Other and unspecified ablation of lung lesion or tissue', 'ICD9CM_2010'), +('32.27', 'Bronchoscopic bronchial thermoplasty, ablation of airway smooth muscle', 'ICD9CM_2010'), +('32.28', 'Endoscopic excision or destruction of lesion or tissue of lung', 'ICD9CM_2010'), +('32.29', 'Other local excision or destruction of lesion or tissue of lung', 'ICD9CM_2010'), +('32.3', 'Segmental resection of lung', 'ICD9CM_2010'), +('32.30', 'Thoracoscopic segmental resection of lung', 'ICD9CM_2010'), +('32.39', 'Other and unspecified segmental resection of lung', 'ICD9CM_2010'), +('32.4', 'Lobectomy of lung', 'ICD9CM_2010'), +('32.41', 'Thoracoscopic lobectomy of lung', 'ICD9CM_2010'), +('32.49', 'Other lobectomy of lung', 'ICD9CM_2010'), +('32.5', 'Pneumonectomy', 'ICD9CM_2010'), +('32.50', 'Thoracoscopic pneumonectomy', 'ICD9CM_2010'), +('32.59', 'Other and unspecified pneumonectomy', 'ICD9CM_2010'), +('32.6', 'Radical dissection of thoracic structures', 'ICD9CM_2010'), +('32.9', 'Other excision of lung', 'ICD9CM_2010'), +('33', 'Other operations on lung and bronchus', 'ICD9CM_2010'), +('33.0', 'Incision of bronchus', 'ICD9CM_2010'), +('33.1', 'Incision of lung', 'ICD9CM_2010'), +('33.2', 'Diagnostic procedures on lung and bronchus', 'ICD9CM_2010'), +('33.20', 'Thoracoscopic lung biopsy', 'ICD9CM_2010'), +('33.21', 'Bronchoscopy through artificial stoma', 'ICD9CM_2010'), +('33.22', 'Fiber-optic bronchoscopy', 'ICD9CM_2010'), +('33.23', 'Other bronchoscopy', 'ICD9CM_2010'), +('33.24', 'Closed (endoscopic) biopsy of bronchus', 'ICD9CM_2010'), +('33.25', 'Open biopsy of bronchus', 'ICD9CM_2010'), +('33.26', 'Closed (percutaneous)(needle) biopsy of lung', 'ICD9CM_2010'), +('33.27', 'Endoscopic biopsy of lung (closed)', 'ICD9CM_2010'), +('33.28', 'Open biopsy of lung', 'ICD9CM_2010'), +('33.29', 'Other diagnostic procedures on lung or bronchus', 'ICD9CM_2010'), +('33.3', 'Surgical collapse of lung', 'ICD9CM_2010'), +('33.31', 'Destruction of phrenic nerve for collapse of lung', 'ICD9CM_2010'), +('33.32', 'Artificial pneumothorax for collapse of lung', 'ICD9CM_2010'), +('33.33', 'Pneumoperitoneum for collapse of lung', 'ICD9CM_2010'), +('33.34', 'Thoracoplasty', 'ICD9CM_2010'), +('33.39', 'Other surgical collapse of lung', 'ICD9CM_2010'), +('33.4', 'Repair and plastic operation on lung and bronchus', 'ICD9CM_2010'), +('33.41', 'Suture of laceration of bronchus', 'ICD9CM_2010'), +('33.42', 'Closure of bronchial fistula', 'ICD9CM_2010'), +('33.43', 'Closure of laceration of lung', 'ICD9CM_2010'), +('33.48', 'Other repair and plastic operations on bronchus', 'ICD9CM_2010'), +('33.49', 'Other repair and plastic operations on lung', 'ICD9CM_2010'), +('33.5', 'Lung transplant', 'ICD9CM_2010'), +('33.50', 'Lung Transplantation, not otherwise specified', 'ICD9CM_2010'), +('33.51', 'Uniteral lung transplantation', 'ICD9CM_2010'), +('33.52', 'Bilateral lung transplantation', 'ICD9CM_2010'), +('33.6', 'Combined heart-lung transplantation', 'ICD9CM_2010'), +('33.7', 'Other Endoscopic procedures in bronchus or lung', 'ICD9CM_2010'), +('33.71', 'Endoscopic insertion or replacement of bronchial valve(s)', 'ICD9CM_2010'), +('33.72', 'Endoscopic pulmonary airway flow measurement', 'ICD9CM_2010'), +('33.73', 'Endoscopic insertion or replacement of bronchial valve(s), multiple lobes', 'ICD9CM_2010'), +('33.78', 'Endoscopic removal of bronchial device(s) or substances', 'ICD9CM_2010'), +('33.79', 'Endoscopic insertion of other bronchial device or substances', 'ICD9CM_2010'), +('33.9', 'Other operations on lung and bronchus', 'ICD9CM_2010'), +('33.91', 'Bronchial dilation', 'ICD9CM_2010'), +('33.92', 'Ligation of bronchus', 'ICD9CM_2010'), +('33.93', 'Puncture of lung', 'ICD9CM_2010'), +('33.98', 'Other operations on bronchus', 'ICD9CM_2010'), +('33.99', 'Other operations on lung', 'ICD9CM_2010'), +('34', 'Operations on chest wall, pleura, mediastinum, and diaphragm', 'ICD9CM_2010'), +('34.0', 'Incision of chest wall and pleura', 'ICD9CM_2010'), +('34.01', 'Incision of chest wall', 'ICD9CM_2010'), +('34.02', 'Exploratory thoracotomy', 'ICD9CM_2010'), +('34.03', 'Reopening of recent thoracotomy site', 'ICD9CM_2010'), +('34.04', 'Insertion of intercostal catheter for drainage', 'ICD9CM_2010'), +('34.05', 'Creation of pleuroperitoneal shunt', 'ICD9CM_2010'), +('34.06', 'Thoracoscopic drainage of pleural cavity', 'ICD9CM_2010'), +('34.09', 'Other incision of pleura', 'ICD9CM_2010'), +('34.1', 'Incision of mediastinum', 'ICD9CM_2010'), +('34.2', 'Diagnostic procedures on chest wall, pleura, mediastinum, and diaphr', 'ICD9CM_2010'), +('34.20', 'Thoracoscopic pleural biopsy', 'ICD9CM_2010'), +('34.21', 'Transpleural thoracoscopy', 'ICD9CM_2010'), +('34.22', 'Mediastinoscopy', 'ICD9CM_2010'), +('34.23', 'Biopsy of chest wall', 'ICD9CM_2010'), +('34.24', 'Other pleural biopsy', 'ICD9CM_2010'), +('34.25', 'Closed (percutaneous) (needle) biopsy of mediastinum', 'ICD9CM_2010'), +('34.26', 'Open mediastinum biopsy', 'ICD9CM_2010'), +('34.27', 'Biopsy of diaphragm', 'ICD9CM_2010'), +('34.28', 'Other diagnostic procedures on chest wall, pleura, and diaphragm', 'ICD9CM_2010'), +('34.29', 'Other diagnostic procedures on mediastinum', 'ICD9CM_2010'), +('34.3', 'Excision or destruction of lesion or tissue of mediastinum', 'ICD9CM_2010'), +('34.4', 'Excision or destruction of lesion of chest wall', 'ICD9CM_2010'), +('34.5', 'Pleurectomy', 'ICD9CM_2010'), +('34.51', 'Decortication of lung', 'ICD9CM_2010'), +('34.52', 'Thoracoscopic decortication of lung', 'ICD9CM_2010'), +('34.59', 'Other excision of pleura', 'ICD9CM_2010'), +('34.6', 'Scarification of pleura', 'ICD9CM_2010'), +('34.7', 'Repair of chest wall', 'ICD9CM_2010'), +('34.71', 'Suture of laceration of chest wall', 'ICD9CM_2010'), +('34.72', 'Closure of thoracostomy', 'ICD9CM_2010'), +('34.73', 'Closure of other fistula of thorax', 'ICD9CM_2010'), +('34.74', 'Repair of pectus deformity', 'ICD9CM_2010'), +('34.79', 'Other repair of chest wall', 'ICD9CM_2010'), +('34.8', 'Operations on diaphragm', 'ICD9CM_2010'), +('34.81', 'Excision of lesion or tissue of diaphragm', 'ICD9CM_2010'), +('34.82', 'Suture of laceration of diaphragm', 'ICD9CM_2010'), +('34.83', 'Closure of fistula of diaphragm', 'ICD9CM_2010'), +('34.84', 'Other repair of diaphragm', 'ICD9CM_2010'), +('34.85', 'Implantation of diaphragmatic pacemaker', 'ICD9CM_2010'), +('34.89', 'Other operations on diaphragm', 'ICD9CM_2010'), +('34.9', 'Other operations on thorax', 'ICD9CM_2010'), +('34.91', 'Thoracentesis', 'ICD9CM_2010'), +('34.92', 'Injection into thoracic cavity', 'ICD9CM_2010'), +('34.93', 'Repair of pleura', 'ICD9CM_2010'), +('34.99', 'Other operations on thorax', 'ICD9CM_2010'), +('35', 'Operations on valves and septa of heart', 'ICD9CM_2010'), +('35.0', 'Closed heart valvotomy', 'ICD9CM_2010'), +('35.00', 'Closed heart valvotomy, unspecified valve', 'ICD9CM_2010'), +('35.01', 'Closed heart valvotomy, aortic valve', 'ICD9CM_2010'), +('35.02', 'Closed heart valvotomy, mitral valve', 'ICD9CM_2010'), +('35.03', 'Closed heart valvotomy, pulmonary valve', 'ICD9CM_2010'), +('35.04', 'Closed heart valvotomy, tricuspid valve', 'ICD9CM_2010'), +('35.1', 'Open heart valvuloplasty without replacement', 'ICD9CM_2010'), +('35.10', 'Open heart valvuloplasty without replacement, unspecified valve', 'ICD9CM_2010'), +('35.11', 'Open heart valvuloplasty of aortic valve without replacement', 'ICD9CM_2010'), +('35.12', 'Open heart valvuloplasty of mitral valve without replacement', 'ICD9CM_2010'), +('35.13', 'Open heart valvuloplasty of pulmonary valve without replacement', 'ICD9CM_2010'), +('35.14', 'Open heart valvuloplasty of tricuspid valve without replacement', 'ICD9CM_2010'), +('35.2', 'Replacement of heart valve', 'ICD9CM_2010'), +('35.20', 'Replacement of unspecified heart valve', 'ICD9CM_2010'), +('35.21', 'Replacement of aortic valve with tissue graft', 'ICD9CM_2010'), +('35.22', 'Other replacement of aortic valve', 'ICD9CM_2010'), +('35.23', 'Replacement of mitral valve with tissue graft', 'ICD9CM_2010'), +('35.24', 'Other replacement of mitral valve', 'ICD9CM_2010'), +('35.25', 'Replacement of pulmonary valve with tissue graft', 'ICD9CM_2010'), +('35.26', 'Other replacement of pulmonary valve', 'ICD9CM_2010'), +('35.27', 'Replacement of tricuspid valve with tissue graft', 'ICD9CM_2010'), +('35.28', 'Other replacement of tricuspid valve', 'ICD9CM_2010'), +('35.3', 'Operations on structures adjacent to heart valves', 'ICD9CM_2010'), +('35.31', 'Operations on papillary muscle', 'ICD9CM_2010'), +('35.32', 'Operations on chordae tendineae', 'ICD9CM_2010'), +('35.33', 'Annuloplasty', 'ICD9CM_2010'), +('35.34', 'Infundibulectomy', 'ICD9CM_2010'), +('35.35', 'Operations on trabeculae carneae cordis', 'ICD9CM_2010'), +('35.39', 'Operations on other structures adjacent to valves of heart', 'ICD9CM_2010'), +('35.4', 'Production of septal defect in heart', 'ICD9CM_2010'), +('35.41', 'Enlargement of existing atrial septal defect', 'ICD9CM_2010'), +('35.42', 'Creation of septal defect in heart', 'ICD9CM_2010'), +('35.5', 'Repair of atrial and ventricular septa with prosthesis', 'ICD9CM_2010'), +('35.50', 'Repair of unspecified septal defect of heart with prosthesis', 'ICD9CM_2010'), +('35.51', 'Repair of atrial septal defect with prosthesis, open technique', 'ICD9CM_2010'), +('35.52', 'Repair of atrial septal defect with prosthesis, closed technique', 'ICD9CM_2010'), +('35.53', 'Repair of ventricular septal defect with prosthesis, open technique', 'ICD9CM_2010'), +('35.54', 'Repair of endocardial cushion defect with prosthesis', 'ICD9CM_2010'), +('35.55', 'Repair of ventricular septal defect with prosthesis, closed technique', 'ICD9CM_2010'), +('35.6', 'Repair of atrial and ventricular septa with tissue graft', 'ICD9CM_2010'), +('35.60', 'Repair of unspecified septal defect of heart with tissue graft', 'ICD9CM_2010'), +('35.61', 'Repair of atrial septal defect with tissue graft', 'ICD9CM_2010'), +('35.62', 'Repair of ventricular septal defect with tissue graft', 'ICD9CM_2010'), +('35.63', 'Repair of endocardial cushion defect with tissue graft', 'ICD9CM_2010'), +('35.7', 'Other and unspecified repair of atrial and ventricular septa', 'ICD9CM_2010'), +('35.70', 'Other and unspecified repair of unspecified septal defect of heart', 'ICD9CM_2010'), +('35.71', 'Other and unspecified repair of atrial septal defect', 'ICD9CM_2010'), +('35.72', 'Other and unspecified repair of ventricular septal defect', 'ICD9CM_2010'), +('35.73', 'Other and unspecified repair of endocardial cushion defect', 'ICD9CM_2010'), +('35.8', 'Total repair of certain congenital cardiac anomalies', 'ICD9CM_2010'), +('35.81', 'Total repair of tetralogy of fallot', 'ICD9CM_2010'), +('35.82', 'Total repair of total anomalous pulmonary venous connection', 'ICD9CM_2010'), +('35.83', 'Total repair of truncus arteriosus', 'ICD9CM_2010'), +('35.84', 'Total correction of transposition of great vessels, not elsewhere classified', 'ICD9CM_2010'), +('35.9', 'Other operations on valves and septa of heart', 'ICD9CM_2010'), +('35.91', 'Interatrial transposition of venous return', 'ICD9CM_2010'), +('35.92', 'Creation of conduit between right ventricle and pulmonary artery', 'ICD9CM_2010'), +('35.93', 'Creation of conduit between left ventricle and aorta', 'ICD9CM_2010'), +('35.94', 'Creation of conduit between atrium and pulmonary artery', 'ICD9CM_2010'), +('35.95', 'Revision of corrective procedure on heart', 'ICD9CM_2010'), +('35.96', 'Percutaneous valvuloplasty', 'ICD9CM_2010'), +('35.97', 'Percutaneous mitral valve repair with implant', 'ICD9CM_2010'), +('35.98', 'Other operations on septa of heart', 'ICD9CM_2010'), +('35.99', 'Other operations on valves of heart', 'ICD9CM_2010'), +('36', 'Operations on vessels of heart', 'ICD9CM_2010'), +('36.0', 'Removal of coronary artery obstruction and insertion of stent(s)', 'ICD9CM_2010'), +('36.03', 'Open chest coronary artery angioplasty', 'ICD9CM_2010'), +('36.04', 'Intracoronary artery thrombolytic infusion', 'ICD9CM_2010'), +('36.06', 'Insertion of non-drug -eluting coronary artery stent(s)', 'ICD9CM_2010'), +('36.07', 'Insertion of drug-eluting coronary artery stent(s)', 'ICD9CM_2010'), +('36.09', 'Other specified removal of coronary artery obstruction', 'ICD9CM_2010'), +('36.1', 'Bypass anastomosis for heart revascularization', 'ICD9CM_2010'), +('36.10', 'Aortocoronary bypass for heart revascularization, not otherwise specified', 'ICD9CM_2010'), +('36.11', 'Aortocoronary bypass of one coronary artery', 'ICD9CM_2010'), +('36.12', 'Aortocoronary bypass of two coronary arteries', 'ICD9CM_2010'), +('36.13', 'Aortocoronary bypass of three coronary arteries', 'ICD9CM_2010'), +('36.14', 'Aortocoronary bypass of four or more coronary arteries', 'ICD9CM_2010'), +('36.15', 'Single internal mammary-coronary artery bypass', 'ICD9CM_2010'), +('36.16', 'Double internal mammary-coronary artery bypass', 'ICD9CM_2010'), +('36.17', 'Abdominal-coronary artery bypass', 'ICD9CM_2010'), +('36.19', 'Other bypass anastomosis for heart revascularization', 'ICD9CM_2010'), +('36.2', 'Heart revascularization by arterial implant', 'ICD9CM_2010'), +('36.3', 'Other heart revascularization', 'ICD9CM_2010'), +('36.31', 'Open chest transmyocardial revascularization', 'ICD9CM_2010'), +('36.32', 'Other transmyocardial revascularization', 'ICD9CM_2010'), +('36.33', 'Endoscopic transmyocardial revascularization', 'ICD9CM_2010'), +('36.34', 'Percutaneous transmyocardial revascularization', 'ICD9CM_2010'), +('36.39', 'Other heart revascularization', 'ICD9CM_2010'), +('36.9', 'Other operations on vessels of heart', 'ICD9CM_2010'), +('36.91', 'Repair of aneurysm of coronary vessel', 'ICD9CM_2010'), +('36.99', 'Other operations on vessels of heart', 'ICD9CM_2010'), +('37', 'Other operations on heart and pericardium', 'ICD9CM_2010'), +('37.0', 'Pericardiocentesis', 'ICD9CM_2010'), +('37.1', 'Cardiotomy and pericardiotomy', 'ICD9CM_2010'), +('37.10', 'Incision of heart, not otherwise specified', 'ICD9CM_2010'), +('37.11', 'Cardiotomy', 'ICD9CM_2010'), +('37.12', 'Pericardiotomy', 'ICD9CM_2010'), +('37.2', 'Diagnostic procedures on heart and pericardium', 'ICD9CM_2010'), +('37.20', 'Noninvasive programmed electrical stimulation (NIPS)', 'ICD9CM_2010'), +('37.21', 'Right heart cardiac catheterization', 'ICD9CM_2010'), +('37.22', 'Left heart cardiac catheterization', 'ICD9CM_2010'), +('37.23', 'Combined right and left heart cardiac catheterization', 'ICD9CM_2010'), +('37.24', 'Biopsy of pericardium', 'ICD9CM_2010'), +('37.25', 'Biopsy of heart', 'ICD9CM_2010'), +('37.26', 'Catheter based invasive electrophysiologic testing', 'ICD9CM_2010'), +('37.27', 'Cardiac mapping', 'ICD9CM_2010'), +('37.28', 'Intracardial echocardiography', 'ICD9CM_2010'), +('37.29', 'Other diagnostic procedures on heart and pericardium', 'ICD9CM_2010'), +('37.3', 'Pericardiectomy and excision of lesion of heart', 'ICD9CM_2010'), +('37.31', 'Pericardiectomy', 'ICD9CM_2010'), +('37.32', 'Excision of aneurysm of heart', 'ICD9CM_2010'), +('37.33', 'Excision or destruction of other lesion or tissue of heart, open approach', 'ICD9CM_2010'), +('37.34', 'Excision or destruction of lesion or tissue of heart, other approach', 'ICD9CM_2010'), +('37.35', 'Partial ventriculectomy', 'ICD9CM_2010'), +('37.36', 'Excision or destruction of left atrial appendage (LAA)', 'ICD9CM_2010'), +('37.37', 'Excision or destruction of other lesion or tissue of heart, thoracoscopic approach', 'ICD9CM_2010'), +('37.4', 'Repair of heart and pericardium', 'ICD9CM_2010'), +('37.41', 'Implantation of prosthetic cardiac support device around the heart', 'ICD9CM_2010'), +('37.49', 'Other repair of heart and pericardium', 'ICD9CM_2010'), +('37.5', 'Heart transplantation procedure', 'ICD9CM_2010'), +('37.51', 'Heart transplantation', 'ICD9CM_2010'), +('37.52', 'Implantation of total internal biventricular heart replacement heart system', 'ICD9CM_2010'), +('37.53', 'Replacement or repair of thoracic unit of (total) replacement heart system', 'ICD9CM_2010'), +('37.54', 'Replacement or repair of other implantable component of (total) replacement heart system', 'ICD9CM_2010'), +('37.55', 'Removal of internal biventricular heart replacement system', 'ICD9CM_2010'), +('37.6', 'Implantation of heart circulatory assist system(s)', 'ICD9CM_2010'), +('37.60', 'Implantation or insertion of biventricular external heart assist system', 'ICD9CM_2010'), +('37.61', 'Implant of pulsation balloon', 'ICD9CM_2010'), +('37.62', 'Insertion of temporary non-implantable extracorporeal heart circulatory assist system device', 'ICD9CM_2010'), +('37.63', 'Repair of heart assist system', 'ICD9CM_2010'), +('37.64', 'Removal of external heart assist system(s) or device (s)', 'ICD9CM_2010'), +('37.65', 'Implant of single ventricular (extracorporeal) external heart assist system', 'ICD9CM_2010'), +('37.66', 'Insertion of implantable heart assist system', 'ICD9CM_2010'), +('37.67', 'Implantation of cardiomyostimulation system', 'ICD9CM_2010'), +('37.68', 'Insertion of pertaneous external heart assist device', 'ICD9CM_2010'), +('37.7', 'Insertion, revision, replacement, and removal of pacemaker leads: insertion of temporary pacemaker system; or revision of cardiac device pocket', 'ICD9CM_2010'), +('37.70', 'Initial insertion of lead (electrode), not otherwise specified', 'ICD9CM_2010'), +('37.71', 'Initial insertion of transvenous lead (electrode) into ventricle', 'ICD9CM_2010'), +('37.72', 'Initial insertion of transvenous lead (electrodes) into atrium and ventricle', 'ICD9CM_2010'), +('37.73', 'Initial insertion of transvenous lead (electrode) into atrium', 'ICD9CM_2010'), +('37.74', 'Insertion or replacement of epicardial lead (electrode) into epicardium', 'ICD9CM_2010'), +('37.75', 'Revision of lead (electrode)', 'ICD9CM_2010'), +('37.76', 'Replacement of transvenous atrial and/or ventricular lead(s) (electrode)', 'ICD9CM_2010'), +('37.77', 'Removal of lead(s) (electrodes) without replacement', 'ICD9CM_2010'), +('37.78', 'Insertion of temporary transvenous pacemaker system', 'ICD9CM_2010'), +('37.79', 'Revision or relocation of pacemaker pocket', 'ICD9CM_2010'), +('37.8', 'Insertion, replacement, removal and revision of pacemaker device', 'ICD9CM_2010'), +('37.80', 'Insertion of permanent pacemaker, initial or replacement, type of device not specified', 'ICD9CM_2010'), +('37.81', 'Initial insertion of single-chamber device, not specified as rate-responsive', 'ICD9CM_2010'), +('37.82', 'Initial insertion of single-chamber device, rate-responsive', 'ICD9CM_2010'), +('37.83', 'Initial insertion of dual-chamber device', 'ICD9CM_2010'), +('37.85', 'Replacement of any type of pacemaker device with single-chamber device, not specified as rate responsive', 'ICD9CM_2010'), +('37.86', 'Replacement of any type of pacemaker device with single-chamber devive, rate responsive', 'ICD9CM_2010'), +('37.87', 'Replacement of any type of pacemaker device with dual-chamber device', 'ICD9CM_2010'), +('37.89', 'Revision or removal of pacemaker device', 'ICD9CM_2010'), +('37.9', 'Other operations on heart and pericardium', 'ICD9CM_2010'), +('37.90', 'Insertion of left atrial appendage device', 'ICD9CM_2010'), +('37.91', 'Open chest cardiac massage', 'ICD9CM_2010'), +('37.92', 'Injection of therapeutic substance into heart', 'ICD9CM_2010'), +('37.93', 'Injection of therapeutic substance into pericardium', 'ICD9CM_2010'), +('37.94', 'Implantation or replacement of automatic cardioverter/ defibrillator, total system (AICD)', 'ICD9CM_2010'), +('37.95', 'Implantation of automatic cardioverter/defibrillator leads(s) only', 'ICD9CM_2010'), +('37.96', 'Implantation of automatic cardioverter/defibrillator pulse generator only', 'ICD9CM_2010'), +('37.97', 'Replacement of automatic cardioverter/defibrillator leads(s) only', 'ICD9CM_2010'), +('37.98', 'Replacement of automatic cardioverter/defibrillator pulse generator only', 'ICD9CM_2010'), +('37.99', 'Other operations on heart and pericardium', 'ICD9CM_2010'), +('38', 'Incision, excision, and occlusion of vessels', 'ICD9CM_2010'), +('38.0', 'Incision of vessel', 'ICD9CM_2010'), +('38.00', 'Incision of vessel, unspecified site', 'ICD9CM_2010'), +('38.01', 'Incision of intracranial vessels', 'ICD9CM_2010'), +('38.02', 'Incision of other vessels of head and neck', 'ICD9CM_2010'), +('38.03', 'Incision of upper limb vessels', 'ICD9CM_2010'), +('38.04', 'Incision of aorta', 'ICD9CM_2010'), +('38.05', 'Incision of other thoracic vessels', 'ICD9CM_2010'), +('38.06', 'Incision of abdominal arteries', 'ICD9CM_2010'), +('38.07', 'Incision of abdominal veins', 'ICD9CM_2010'), +('38.08', 'Incision of lower limb arteries', 'ICD9CM_2010'), +('38.09', 'Incision of lower limb veins', 'ICD9CM_2010'), +('38.1', 'Endarterectomy', 'ICD9CM_2010'), +('38.10', 'Endarterectomy, unspecified site', 'ICD9CM_2010'), +('38.11', 'Endarterectomy of intracranial vessels', 'ICD9CM_2010'), +('38.12', 'Endarterectomy of other vessels of head and neck', 'ICD9CM_2010'), +('38.13', 'Endarterectomy of upper limb vessels', 'ICD9CM_2010'), +('38.14', 'Endarterectomy of aorta', 'ICD9CM_2010'), +('38.15', 'Endarterectomy of other thoracic vessels', 'ICD9CM_2010'), +('38.16', 'Endarterectomy of abdominal arteries', 'ICD9CM_2010'), +('38.18', 'Endarterectomy of lower limb arteries', 'ICD9CM_2010'), +('38.2', 'Diagnostic procedures on blood vessels', 'ICD9CM_2010'), +('38.21', 'Biopsy of blood vessel', 'ICD9CM_2010'), +('38.22', 'Percutaneous angioscopy', 'ICD9CM_2010'), +('38.23', 'Intravascular spectroscopy', 'ICD9CM_2010'), +('38.24', 'Intravascular imaging of coronary vessel(s) by optical coherence tomography [OCT]', 'ICD9CM_2010'), +('38.25', 'Intravascular imaging of non-coronary vessel(s) by optical coherence tomography [OCT]', 'ICD9CM_2010'), +('38.29', 'Other diagnostic procedures on blood vessels', 'ICD9CM_2010'), +('38.3', 'Resection of vessel with anastomosis', 'ICD9CM_2010'), +('38.30', 'Resection of vessel with anastomosis, unspecified site', 'ICD9CM_2010'), +('38.31', 'Resection of intracranial vessels with anastomosis', 'ICD9CM_2010'), +('38.32', 'Resection of other vessels of head and neck with anastomosis', 'ICD9CM_2010'), +('38.33', 'Resection of upper limb vessels with anastomosis', 'ICD9CM_2010'), +('38.34', 'Resection of aorta with anastomosis', 'ICD9CM_2010'), +('38.35', 'Resection of other thoracic vessels with anastomosis', 'ICD9CM_2010'), +('38.36', 'Resection of abdominal arteries with anastomosis', 'ICD9CM_2010'), +('38.37', 'Resection of abdominal veins with anastomosis', 'ICD9CM_2010'), +('38.38', 'Resection of lower limb arteries with anastomosis', 'ICD9CM_2010'), +('38.39', 'Resection of lower limb veins with anastomosis', 'ICD9CM_2010'), +('38.4', 'Resection of vessel with replacement', 'ICD9CM_2010'), +('38.40', 'Resection of vessel with replacement, unspecified site', 'ICD9CM_2010'), +('38.41', 'Resection of vessel with replacement , intracranial vessels', 'ICD9CM_2010'), +('38.42', 'Resection of vessel with replacement, other vessels of head and neck', 'ICD9CM_2010'), +('38.43', 'Resection of vessel with replacement, upper limb vessels', 'ICD9CM_2010'), +('38.44', 'Resection of vessel with replacement, aorta,abdominal', 'ICD9CM_2010'), +('38.45', 'Resection of vessel with replacement, thoracic vessels', 'ICD9CM_2010'), +('38.46', 'Resection of vessel with replacement ,abdominal arteries', 'ICD9CM_2010'), +('38.47', 'Resection of vessel with replacement, abdominal veins', 'ICD9CM_2010'), +('38.48', 'Resection of vessel with replacement, lower limb arteries', 'ICD9CM_2010'), +('38.49', 'Resection of vessel with replacement, lower limb veins', 'ICD9CM_2010'), +('38.5', 'Ligation and stripping of varicose veins', 'ICD9CM_2010'), +('38.50', 'Ligation and stripping of varicose veins, unspecified site', 'ICD9CM_2010'), +('38.51', 'Ligation and stripping of varicose veins, intracranial vessels', 'ICD9CM_2010'), +('38.52', 'Ligation and stripping of varicose veins, other vessels of head an', 'ICD9CM_2010'), +('38.53', 'Ligation and stripping of varicose veins , upper limb vessels', 'ICD9CM_2010'), +('38.55', 'Ligation and stripping of varicose veins, thoracic vessels', 'ICD9CM_2010'), +('38.57', 'Ligation and stripping of varicose veins ,abdominal varicose veins', 'ICD9CM_2010'), +('38.59', 'Ligation and stripping of varicose veins ,lower limb varicose veins', 'ICD9CM_2010'), +('38.6', 'Other excision of vessels', 'ICD9CM_2010'), +('38.60', 'Other excision of vessels, unspecified site', 'ICD9CM_2010'), +('38.61', 'Other excision of vessels, intracranial vessels', 'ICD9CM_2010'), +('38.62', 'Other excision of vessels, other vessels of head and neck', 'ICD9CM_2010'), +('38.63', 'Other excision of vessels, upper limb vessels', 'ICD9CM_2010'), +('38.64', 'Other excision of vessels, aorta,abdominal', 'ICD9CM_2010'), +('38.65', 'Other excision of vessels, thoracic vessels', 'ICD9CM_2010'), +('38.66', 'Other excision of vessels, abdominal arteries', 'ICD9CM_2010'), +('38.67', 'Other excision of vessels, abdominal veins', 'ICD9CM_2010'), +('38.68', 'Other excision of vessels, lower limb arteries', 'ICD9CM_2010'), +('38.69', 'Other excision of vessels, lower limb veins', 'ICD9CM_2010'), +('38.7', 'Interruption of the vena cava', 'ICD9CM_2010'), +('38.8', 'Other surgical occlusion of vessels', 'ICD9CM_2010'), +('38.80', 'Other surgical occlusion of vessels, unspecified site', 'ICD9CM_2010'), +('38.81', 'Other surgical occlusion of vessels,intracranial vessels', 'ICD9CM_2010'), +('38.82', 'Other surgical occlusion of vessels, other vessels of head and neck', 'ICD9CM_2010'), +('38.83', 'Other surgical occlusion of vessels, upper limb vessels', 'ICD9CM_2010'), +('38.84', 'Other surgical occlusion of vessels, aorta, abdominal', 'ICD9CM_2010'), +('38.85', 'Other surgical occlusion of vessels, other thoracic vessels', 'ICD9CM_2010'), +('38.86', 'Other surgical occlusion of vessels, abdominal arteries', 'ICD9CM_2010'), +('38.87', 'Other surgical occlusion of vessels, abdominal veins', 'ICD9CM_2010'), +('38.88', 'Other surgical occlusion of vessels, lower limb arteries', 'ICD9CM_2010'), +('38.89', 'Other surgical occlusion of vessels, lower limb veins', 'ICD9CM_2010'), +('38.9', 'Puncture of vessel', 'ICD9CM_2010'), +('38.91', 'Arterial catheterization', 'ICD9CM_2010'), +('38.92', 'Umbilical vein catheterization', 'ICD9CM_2010'), +('38.93', 'Venous catheterization, not elsewhere classified', 'ICD9CM_2010'), +('38.94', 'Venous cutdown', 'ICD9CM_2010'), +('38.95', 'Venous catheterization for renal dialysis', 'ICD9CM_2010'), +('38.97', 'Central venous catheter placement with guidance', 'ICD9CM_2010'), +('38.98', 'Other puncture of artery', 'ICD9CM_2010'), +('38.99', 'Other puncture of vein', 'ICD9CM_2010'), +('39', 'Other operations on vessels', 'ICD9CM_2010'), +('39.0', 'Systemic to pulmonary artery shunt', 'ICD9CM_2010'), +('39.1', 'Intra-abdominal venous shunt', 'ICD9CM_2010'), +('39.2', 'Other shunt or vascular bypass', 'ICD9CM_2010'), +('39.21', 'Caval-pulmonary artery anastomosis', 'ICD9CM_2010'), +('39.22', 'Aorta-subclavian-carotid bypass', 'ICD9CM_2010'), +('39.23', 'Other intrathoracic vascular shunt or bypass', 'ICD9CM_2010'), +('39.24', 'Aorta-renal bypass', 'ICD9CM_2010'), +('39.25', 'Aorta-iliac-femoral bypass', 'ICD9CM_2010'), +('39.26', 'Other intra-abdominal vascular shunt or bypass', 'ICD9CM_2010'), +('39.27', 'Arteriovenostomy for renal dialysis', 'ICD9CM_2010'), +('39.28', 'Extracranial-intracranial (EC-IC) vascular bypass', 'ICD9CM_2010'), +('39.29', 'Other (peripheral) vascular shunt or bypass', 'ICD9CM_2010'), +('39.3', 'Suture of vessel', 'ICD9CM_2010'), +('39.30', 'Suture of unspecified blood vessel', 'ICD9CM_2010'), +('39.31', 'Suture of artery', 'ICD9CM_2010'), +('39.32', 'Suture of vein', 'ICD9CM_2010'), +('39.4', 'Revision of vascular procedure', 'ICD9CM_2010'), +('39.41', 'Control of hemorrhage following vascular surgery', 'ICD9CM_2010'); +INSERT INTO `icd9` (`ID_ICD9`, `Prosedur`, `Versi_ICD9`) VALUES +('39.42', 'Revision of arteriovenous shunt for renal dialysis', 'ICD9CM_2010'), +('39.43', 'Removal of arteriovenous shunt for renal dialysis', 'ICD9CM_2010'), +('39.49', 'Other revision of vascular procedure', 'ICD9CM_2010'), +('39.5', 'Other repair of vessels', 'ICD9CM_2010'), +('39.50', 'Angioplasty or atherectomy of other non-coronary vessel(s)', 'ICD9CM_2010'), +('39.51', 'Clipping of aneurysm', 'ICD9CM_2010'), +('39.52', 'Other repair of aneurysm', 'ICD9CM_2010'), +('39.53', 'Repair of arteriovenous fistula', 'ICD9CM_2010'), +('39.54', 'Re-entry operation (aorta)', 'ICD9CM_2010'), +('39.55', 'Reimplantation of aberrant renal vessel', 'ICD9CM_2010'), +('39.56', 'Repair of blood vessel with tissue patch graft', 'ICD9CM_2010'), +('39.57', 'Repair of blood vessel with synthetic patch graft', 'ICD9CM_2010'), +('39.58', 'Repair of blood vessel with unspecified type of patch graft', 'ICD9CM_2010'), +('39.59', 'Other repair of vessel', 'ICD9CM_2010'), +('39.6', 'Extracorporeal circulation and procedures auxiliary to open heart surgery', 'ICD9CM_2010'), +('39.61', 'Extracorporeal circulation auxiliary to open heart surgery', 'ICD9CM_2010'), +('39.62', 'Hypothermia (systemic) incidental to open heart surgery', 'ICD9CM_2010'), +('39.63', 'Cardioplegia', 'ICD9CM_2010'), +('39.64', 'Intraoperative cardiac pacemaker', 'ICD9CM_2010'), +('39.65', 'Extracorporeal membrane oxygenation (ECMO)', 'ICD9CM_2010'), +('39.66', 'Percutaneous cardiopulmonary bypass', 'ICD9CM_2010'), +('39.7', 'Endovascular Repair of Vessel', 'ICD9CM_2010'), +('39.71', 'Endovascular implantation of graft in abdominal aorta', 'ICD9CM_2010'), +('39.72', 'Endovascular repair or occlusion of head and neck vessels', 'ICD9CM_2010'), +('39.73', 'Endovascular implantation of graft in thoracic aorta', 'ICD9CM_2010'), +('39.74', 'Endovascular removal of obstruction from head and neck vessel (s)', 'ICD9CM_2010'), +('39.75', 'Endovascular embolization or occlusion of vessel(s) of head or neck using bare coils', 'ICD9CM_2010'), +('39.76', 'Endovascular embolization or occlusion of vessel(s) of head or neck using bioactive coils', 'ICD9CM_2010'), +('39.79', 'Other endovascular repair (of aneurysm) of other vessels', 'ICD9CM_2010'), +('39.8', 'Operations on carotid body, carotid sinus and other vascular bodies', 'ICD9CM_2010'), +('39.81', 'Implantation or replacement of carotid sinus stimulation device, total system', 'ICD9CM_2010'), +('39.82', 'Implantation or replacement of carotid sinus stimulation lead(s) only', 'ICD9CM_2010'), +('39.83', 'Implantation or replacement of carotid sinus stimulation pulse generator only', 'ICD9CM_2010'), +('39.84', 'Revision of carotid sinus stimulation lead(s) only', 'ICD9CM_2010'), +('39.85', 'Revision of carotid sinus stimulation pulse generator', 'ICD9CM_2010'), +('39.86', 'Removal of carotid sinus stimulation device, total system', 'ICD9CM_2010'), +('39.87', 'Removal of carotid sinus stimulation lead(s) only', 'ICD9CM_2010'), +('39.88', 'Removal of carotid sinus stimulation pulse generator only', 'ICD9CM_2010'), +('39.89', 'Other operations on carotid body, carotid sinus and other vascular bodies', 'ICD9CM_2010'), +('39.9', 'Other operations on vessels', 'ICD9CM_2010'), +('39.90', 'Insertion of non-drug -eluting peripheral vessel stent(s)', 'ICD9CM_2010'), +('39.91', 'Freeing of vessel', 'ICD9CM_2010'), +('39.92', 'Injection of sclerosing agent into vein', 'ICD9CM_2010'), +('39.93', 'Insertion of vessel-to-vessel cannula', 'ICD9CM_2010'), +('39.94', 'Replacement of vessel-to-vessel cannula', 'ICD9CM_2010'), +('39.95', 'Hemodialysis', 'ICD9CM_2010'), +('39.96', 'Total body perfusion', 'ICD9CM_2010'), +('39.97', 'Other perfusion', 'ICD9CM_2010'), +('39.98', 'Control of hemorrhage, not otherwise specified', 'ICD9CM_2010'), +('39.99', 'Other operations on vessels', 'ICD9CM_2010'), +('40', 'Operations on lymphatic system', 'ICD9CM_2010'), +('40.0', 'Incision of lymphatic structures', 'ICD9CM_2010'), +('40.1', 'Diagnostic procedures on lymphatic structure', 'ICD9CM_2010'), +('40.11', 'Biopsy of lymphatic structure', 'ICD9CM_2010'), +('40.19', 'Other diagnostic procedures on lymphatic structures', 'ICD9CM_2010'), +('40.2', 'Simple excision of lymphatic structure', 'ICD9CM_2010'), +('40.21', 'Excision of deep cervical lymph node', 'ICD9CM_2010'), +('40.22', 'Excision of internal mammary lymph node', 'ICD9CM_2010'), +('40.23', 'Excision of axillary lymph node', 'ICD9CM_2010'), +('40.24', 'Excision of inguinal lymph node', 'ICD9CM_2010'), +('40.29', 'Simple excision of other lymphatic structure', 'ICD9CM_2010'), +('40.3', 'Regional lymph node excision', 'ICD9CM_2010'), +('40.4', 'Radical excision of cervical lymph nodes', 'ICD9CM_2010'), +('40.40', 'Radical neck dissection, not otherwise specified', 'ICD9CM_2010'), +('40.41', 'Radical neck dissection, unilateral', 'ICD9CM_2010'), +('40.42', 'Radical neck dissection, bilateral', 'ICD9CM_2010'), +('40.5', 'Radical excision of other lymph nodes', 'ICD9CM_2010'), +('40.50', 'Radical excision of lymph nodes, not otherwise specified', 'ICD9CM_2010'), +('40.51', 'Radical excision of axillary lymph nodes', 'ICD9CM_2010'), +('40.52', 'Radical excision of periaortic lymph nodes', 'ICD9CM_2010'), +('40.53', 'Radical excision of iliac lymph nodes', 'ICD9CM_2010'), +('40.54', 'Radical groin dissection', 'ICD9CM_2010'), +('40.59', 'Radical excision of other lymph nodes', 'ICD9CM_2010'), +('40.6', 'Operations on thoracic duct', 'ICD9CM_2010'), +('40.61', 'Cannulation of thoracic duct', 'ICD9CM_2010'), +('40.62', 'Fistulization of thoracic duct', 'ICD9CM_2010'), +('40.63', 'Closure of fistula of thoracic duct', 'ICD9CM_2010'), +('40.64', 'Ligation of thoracic duct', 'ICD9CM_2010'), +('40.69', 'Other operations on thoracic duct', 'ICD9CM_2010'), +('40.9', 'Other operations on lymphatic structures', 'ICD9CM_2010'), +('41', 'Operations on bone marrow and spleen', 'ICD9CM_2010'), +('41.0', 'Bone marrow or hematopoietic stemm cell transplant', 'ICD9CM_2010'), +('41.00', 'Bone marrow transplant, not otherwise specified', 'ICD9CM_2010'), +('41.01', 'Autologous bone marrow transplant without purging', 'ICD9CM_2010'), +('41.02', 'Allogeneic bone marrow transplant with purging', 'ICD9CM_2010'), +('41.03', 'Allogeneic bone marrow transplant without purging', 'ICD9CM_2010'), +('41.04', 'Autologous hematopoietic stem cell transplant without purging', 'ICD9CM_2010'), +('41.05', 'Allogeneic hematopoietic stem cell transplant without purging', 'ICD9CM_2010'), +('41.06', 'Cord blood stem cell transplant', 'ICD9CM_2010'), +('41.07', 'Autologous hematopoietic stem cell transplant with purging', 'ICD9CM_2010'), +('41.08', 'Autologous hematopoietic stem cell transplant', 'ICD9CM_2010'), +('41.09', 'Autologous bone marrow transplant with purging', 'ICD9CM_2010'), +('41.1', 'Puncture of spleen', 'ICD9CM_2010'), +('41.2', 'Splenotomy', 'ICD9CM_2010'), +('41.3', 'Diagnostic procedures on bone marrow and spleen', 'ICD9CM_2010'), +('41.31', 'Biopsy of bone marrow', 'ICD9CM_2010'), +('41.32', 'Closed (aspiration) (percutaneous) biopsy of spleen', 'ICD9CM_2010'), +('41.33', 'Open biopsy of spleen', 'ICD9CM_2010'), +('41.38', 'Other diagnostic procedures on bone marrow', 'ICD9CM_2010'), +('41.39', 'Other diagnostic procedures on spleen', 'ICD9CM_2010'), +('41.4', 'Excision or destruction of lesion or tissue of spleen', 'ICD9CM_2010'), +('41.41', 'Marsupialization of splenic cyst', 'ICD9CM_2010'), +('41.42', 'Excision of lesion or tissue of spleen', 'ICD9CM_2010'), +('41.43', 'Partial splenectomy', 'ICD9CM_2010'), +('41.5', 'Total splenectomy', 'ICD9CM_2010'), +('41.9', 'Other operations on spleen and bone marrow', 'ICD9CM_2010'), +('41.91', 'Aspiration of bone marrow from donor for transplant', 'ICD9CM_2010'), +('41.92', 'Injection into bone marrow', 'ICD9CM_2010'), +('41.93', 'Excision of accessory spleen', 'ICD9CM_2010'), +('41.94', 'Transplantation of spleen', 'ICD9CM_2010'), +('41.95', 'Repair and plastic operations on spleen', 'ICD9CM_2010'), +('41.98', 'Other operations on bone marrow', 'ICD9CM_2010'), +('41.99', 'Other operations on spleen', 'ICD9CM_2010'), +('42', 'Operations on esophagus', 'ICD9CM_2010'), +('42.0', 'Esophagotomy', 'ICD9CM_2010'), +('42.01', 'Incision of esophageal web', 'ICD9CM_2010'), +('42.09', 'Other incision of esophagus', 'ICD9CM_2010'), +('42.1', 'Esophagostomy', 'ICD9CM_2010'), +('42.10', 'Esophagostomy, not otherwise specified', 'ICD9CM_2010'), +('42.11', 'Cervical esophagostomy', 'ICD9CM_2010'), +('42.12', 'Exteriorization of esophageal pouch', 'ICD9CM_2010'), +('42.19', 'Other external fistulization of esophagus', 'ICD9CM_2010'), +('42.2', 'Diagnostic procedures on esophagus', 'ICD9CM_2010'), +('42.21', 'Operative esophagoscopy by incision', 'ICD9CM_2010'), +('42.22', 'Esophagoscopy through artificial stoma', 'ICD9CM_2010'), +('42.23', 'Other esophagoscopy', 'ICD9CM_2010'), +('42.24', 'Closed (endoscopic) biopsy of esophagus', 'ICD9CM_2010'), +('42.25', 'Open biopsy of esophagus', 'ICD9CM_2010'), +('42.29', 'Other diagnostic procedures on esophagus', 'ICD9CM_2010'), +('42.3', 'Local excision or destruction of lesion or tissue of esophagus', 'ICD9CM_2010'), +('42.31', 'Local excision of esophageal diverticulum', 'ICD9CM_2010'), +('42.32', 'Local excision of other lesion or tissue of esophagus', 'ICD9CM_2010'), +('42.33', 'Endoscopic excision or destruction of lesion or tissue of esophagus', 'ICD9CM_2010'), +('42.39', 'Other destruction of lesion or tissue of esophagus', 'ICD9CM_2010'), +('42.4', 'Excision of esophagus', 'ICD9CM_2010'), +('42.40', 'Esophagectomy, not otherwise specified', 'ICD9CM_2010'), +('42.41', 'Partial esophagectomy', 'ICD9CM_2010'), +('42.42', 'Total esophagectomy', 'ICD9CM_2010'), +('42.5', 'Intrathoracic anastomosis of esophagus', 'ICD9CM_2010'), +('42.51', 'Intrathoracic esophagoesophagostomy', 'ICD9CM_2010'), +('42.52', 'Intrathoracic esophagogastrostomy', 'ICD9CM_2010'), +('42.53', 'Intrathoracic esophageal anastomosis with interposition of small bowel', 'ICD9CM_2010'), +('42.54', 'Other intrathoracic esophagoenterostomy', 'ICD9CM_2010'), +('42.55', 'Intrathoracic esophageal anastomosis with interposition of colon', 'ICD9CM_2010'), +('42.56', 'Other intrathoracic esophagocolostomy', 'ICD9CM_2010'), +('42.58', 'Intrathoracic esophageal anastomosis with other interposition', 'ICD9CM_2010'), +('42.59', 'Other intrathoracic anastomosis of esophagus', 'ICD9CM_2010'), +('42.6', 'Antesternal anastomosis of esophagus', 'ICD9CM_2010'), +('42.61', 'Antesternal esophagoesophagostomy', 'ICD9CM_2010'), +('42.62', 'Antesternal esophagogastrostomy', 'ICD9CM_2010'), +('42.63', 'Antesternal esophageal anastomosis with interposition of small bowel', 'ICD9CM_2010'), +('42.64', 'Other antesternal esophagoenterostomy', 'ICD9CM_2010'), +('42.65', 'Antesternal esophageal anastomosis with interposition of colon', 'ICD9CM_2010'), +('42.66', 'Other antesternal esophagocolostomy', 'ICD9CM_2010'), +('42.68', 'Other antesternal esophageal anastomosis with interposition', 'ICD9CM_2010'), +('42.69', 'Other antesternal anastomosis of esophagus', 'ICD9CM_2010'), +('42.7', 'Esophagomyotomy', 'ICD9CM_2010'), +('42.8', 'Other repair of esophagus', 'ICD9CM_2010'), +('42.81', 'Insertion of permanent tube into esophagus', 'ICD9CM_2010'), +('42.82', 'Suture of laceration of esophagus', 'ICD9CM_2010'), +('42.83', 'Closure of esophagostomy', 'ICD9CM_2010'), +('42.84', 'Repair of esophageal fistula, not elsewhere classified', 'ICD9CM_2010'), +('42.85', 'Repair of esophageal stricture', 'ICD9CM_2010'), +('42.86', 'Production of subcutaneous tunnel without esophageal anastomosis', 'ICD9CM_2010'), +('42.87', 'Other graft of esophagus', 'ICD9CM_2010'), +('42.89', 'Other repair of esophagus', 'ICD9CM_2010'), +('42.9', 'Other operations on esophagus', 'ICD9CM_2010'), +('42.91', 'Ligation of esophageal varices', 'ICD9CM_2010'), +('42.92', 'Dilation of esophagus', 'ICD9CM_2010'), +('42.99', 'Other operations on esophagus', 'ICD9CM_2010'), +('43', 'Incision and excision of stomach', 'ICD9CM_2010'), +('43.0', 'Gastrotomy', 'ICD9CM_2010'), +('43.1', 'Gastrostomy', 'ICD9CM_2010'), +('43.11', 'Percutaneous (endoscopic) gastrostomy (PEG)', 'ICD9CM_2010'), +('43.19', 'Other gastrostomy', 'ICD9CM_2010'), +('43.3', 'Pyloromyotomy', 'ICD9CM_2010'), +('43.4', 'Local excision or destruction of lesion or tissue of stomach', 'ICD9CM_2010'), +('43.41', 'Endoscopic excision or destruction of lesion or tissue of stomach', 'ICD9CM_2010'), +('43.42', 'Local excision of other lesion or tissue of stomach', 'ICD9CM_2010'), +('43.49', 'Other destruction of lesion or tissue of stomach', 'ICD9CM_2010'), +('43.5', 'Partial gastrectomy with anastomosis to esophagus', 'ICD9CM_2010'), +('43.6', 'Partial gastrectomy with anastomosis to duodenum', 'ICD9CM_2010'), +('43.7', 'Partial gastrectomy with anastomosis to jejunum', 'ICD9CM_2010'), +('43.8', 'Other partial gastrectomy', 'ICD9CM_2010'), +('43.81', 'Partial gastrectomy with jejunal transposition', 'ICD9CM_2010'), +('43.89', 'Other partial gastrectomy', 'ICD9CM_2010'), +('43.9', 'Total gastrectomy', 'ICD9CM_2010'), +('43.91', 'Total gastrectomy with intestinal interposition', 'ICD9CM_2010'), +('43.99', 'Other total gastrectomy', 'ICD9CM_2010'), +('44', 'Other operations on stomach', 'ICD9CM_2010'), +('44.0', 'Vagotomy', 'ICD9CM_2010'), +('44.00', 'Vagotomy, not otherwise specified', 'ICD9CM_2010'), +('44.01', 'Truncal vagotomy', 'ICD9CM_2010'), +('44.02', 'Highly selective vagotomy', 'ICD9CM_2010'), +('44.03', 'Other selective vagotomy', 'ICD9CM_2010'), +('44.1', 'Diagnostic procedures on stomach', 'ICD9CM_2010'), +('44.11', 'Transabdominal gastroscopy', 'ICD9CM_2010'), +('44.12', 'Gastroscopy through artificial stoma', 'ICD9CM_2010'), +('44.13', 'Other gastroscopy', 'ICD9CM_2010'), +('44.14', 'Closed biopsy of stomach (endoscopic)', 'ICD9CM_2010'), +('44.15', 'Open biopsy of stomach', 'ICD9CM_2010'), +('44.19', 'Other diagnostic procedures on stomach', 'ICD9CM_2010'), +('44.2', 'Pyloroplasty', 'ICD9CM_2010'), +('44.21', 'Dilation of pylorus by incision', 'ICD9CM_2010'), +('44.22', 'Endoscopic dilation of pylorus', 'ICD9CM_2010'), +('44.29', 'Other pyloroplasty', 'ICD9CM_2010'), +('44.3', 'Gastroenterostomy without gastrectomy', 'ICD9CM_2010'), +('44.31', 'High gastric bypass', 'ICD9CM_2010'), +('44.32', 'Percutaneous (endoscopic) gastojejunostomy', 'ICD9CM_2010'), +('44.38', 'Laparoscopic gastroenterostomy', 'ICD9CM_2010'), +('44.39', 'Other gastroenterostomy', 'ICD9CM_2010'), +('44.4', 'Control of hemorrhage and suture of ulcer of stomach or duodenum', 'ICD9CM_2010'), +('44.40', 'Suture of peptic ulcer, not otherwise specified', 'ICD9CM_2010'), +('44.41', 'Suture of gastric ulcer site', 'ICD9CM_2010'), +('44.42', 'Suture of duodenal ulcer site', 'ICD9CM_2010'), +('44.43', 'Endoscopic control of gastric or duodenal bleeding', 'ICD9CM_2010'), +('44.44', 'Transcatheter embolization for gastric or duodenal bleeding', 'ICD9CM_2010'), +('44.49', 'Other control of hemorrhage of stomach or duodenum', 'ICD9CM_2010'), +('44.5', 'Revision of gastric anastomosis', 'ICD9CM_2010'), +('44.6', 'Other repair of stomach', 'ICD9CM_2010'), +('44.61', 'Suture of laceration of stomach', 'ICD9CM_2010'), +('44.62', 'Closure of gastrostomy', 'ICD9CM_2010'), +('44.63', 'Closure of other gastric fistula', 'ICD9CM_2010'), +('44.64', 'Gastropexy', 'ICD9CM_2010'), +('44.65', 'Esophagogastroplasty', 'ICD9CM_2010'), +('44.66', 'Other procedures for creation of esophagogastric sphincteric competence', 'ICD9CM_2010'), +('44.67', 'Laparoscopic procedures for creation of esophagogastric spincteric competence', 'ICD9CM_2010'), +('44.68', 'Laparoscopic gastroplasty', 'ICD9CM_2010'), +('44.69', 'Other repair of stomach', 'ICD9CM_2010'), +('44.9', 'Other operations on stomach', 'ICD9CM_2010'), +('44.91', 'Ligation of gastric varices', 'ICD9CM_2010'), +('44.92', 'Intraoperative manipulation of stomach', 'ICD9CM_2010'), +('44.93', 'Insertion of gastric bubble (balloon)', 'ICD9CM_2010'), +('44.94', 'Removal of gastric bubble (balloon)', 'ICD9CM_2010'), +('44.95', 'laparoscopic gastric restricve procedure', 'ICD9CM_2010'), +('44.96', 'laparoscopic revision of gastric restrictive procedure', 'ICD9CM_2010'), +('44.97', 'laparoscopic removal of gastric restrictive device(s)', 'ICD9CM_2010'), +('44.98', '(Laparoscopic) adjustment of size of adjustable gastric restrictive device', 'ICD9CM_2010'), +('44.99', 'Other operations on stomach', 'ICD9CM_2010'), +('45', 'Incision, excision, and anastomosis of intestine', 'ICD9CM_2010'), +('45.0', 'Enterotomy', 'ICD9CM_2010'), +('45.00', 'Incision of intestine, not otherwise specified', 'ICD9CM_2010'), +('45.01', 'Incision of duodenum', 'ICD9CM_2010'), +('45.02', 'Other incision of small intestine', 'ICD9CM_2010'), +('45.03', 'Incision of large intestine', 'ICD9CM_2010'), +('45.1', 'Diagnostic procedures on small intestine', 'ICD9CM_2010'), +('45.11', 'Transabdominal endoscopy of small intestine', 'ICD9CM_2010'), +('45.12', 'Endoscopy of small intestine through artificial stoma', 'ICD9CM_2010'), +('45.13', 'Other endoscopy of small intestine', 'ICD9CM_2010'), +('45.14', 'Closed biopsy of small intestine (endoscopic)', 'ICD9CM_2010'), +('45.15', 'Open biopsy of small intestine', 'ICD9CM_2010'), +('45.16', 'Esophagogastroduodenoscopy (EGD) with closed biopsy', 'ICD9CM_2010'), +('45.19', 'Other diagnostic procedures on small intestine', 'ICD9CM_2010'), +('45.2', 'Diagnostic procedures on other intestine', 'ICD9CM_2010'), +('45.21', 'Transabdominal endoscopy of large intestine', 'ICD9CM_2010'), +('45.22', 'Endoscopy of large intestine through artificial stoma', 'ICD9CM_2010'), +('45.23', 'Colonoscopy', 'ICD9CM_2010'), +('45.24', 'Flexible sigmoidoscopy', 'ICD9CM_2010'), +('45.25', 'Closed (endoscopic) biopsy of large intestine', 'ICD9CM_2010'), +('45.26', 'Open biopsy of large intestine', 'ICD9CM_2010'), +('45.27', 'Intestinal biopsy, site unspecified', 'ICD9CM_2010'), +('45.28', 'Other diagnostic procedures on large intestine', 'ICD9CM_2010'), +('45.29', 'Other diagnostic procedures on intestine, site unspecified', 'ICD9CM_2010'), +('45.3', 'Local excision or destruction of lesion or tissue of small intestine', 'ICD9CM_2010'), +('45.30', 'Endoscopic excision or destruction of lesion of duodenum', 'ICD9CM_2010'), +('45.31', 'Other local excision of lesion of duodenum', 'ICD9CM_2010'), +('45.32', 'Other destruction of lesion of duodenum', 'ICD9CM_2010'), +('45.33', 'Local excision of lesion or tissue of small intestine, except duodenum', 'ICD9CM_2010'), +('45.34', 'Other destruction of lesion of small intestine, except duodenum', 'ICD9CM_2010'), +('45.4', 'Local excision or destruction of lesion or tissue of large intestine', 'ICD9CM_2010'), +('45.41', 'Excision of lesion or tissue of large intestine', 'ICD9CM_2010'), +('45.42', 'Endoscopic polypectomy of large intestine', 'ICD9CM_2010'), +('45.43', 'Endoscopic excision or destruction of other lesion or tissue of large intestine', 'ICD9CM_2010'), +('45.49', 'Other destruction of lesion of large intestine', 'ICD9CM_2010'), +('45.5', 'Isolation of intestinal segment', 'ICD9CM_2010'), +('45.50', 'Isolation of intestinal segment, not otherwise specified', 'ICD9CM_2010'), +('45.51', 'Isolation of segment of small intestine', 'ICD9CM_2010'), +('45.52', 'Isolation of segment of large intestine', 'ICD9CM_2010'), +('45.6', 'Other excision of small intestine', 'ICD9CM_2010'), +('45.61', 'Multiple segmental resection of small intestine', 'ICD9CM_2010'), +('45.62', 'Other partial resection of small intestine', 'ICD9CM_2010'), +('45.63', 'Total removal of small intestine', 'ICD9CM_2010'), +('45.7', 'Open and other partial excision of large intestine', 'ICD9CM_2010'), +('45.71', 'Open and other multiple segmental resection of large intestine', 'ICD9CM_2010'), +('45.72', 'Open and other Cecectomy', 'ICD9CM_2010'), +('45.73', 'Open and other Right hemicolectomy', 'ICD9CM_2010'), +('45.74', 'Open and other Resection of transverse colon', 'ICD9CM_2010'), +('45.75', 'Open and other Left hemicolectomy', 'ICD9CM_2010'), +('45.76', 'Open and other Sigmoidectomy', 'ICD9CM_2010'), +('45.79', 'Other and unspecified partial excision of large intestine', 'ICD9CM_2010'), +('45.8', 'Total intra-abdominal colectomy', 'ICD9CM_2010'), +('45.81', 'Laparoscopic total intra-abdominal colectomy', 'ICD9CM_2010'), +('45.82', 'Open total intra-abdominal colectomy', 'ICD9CM_2010'), +('45.83', 'Other and unspecified total intra-abdominal colectomy', 'ICD9CM_2010'), +('45.9', 'Intestinal anastomosis', 'ICD9CM_2010'), +('45.90', 'Intestinal anastomosis, not otherwise specified', 'ICD9CM_2010'), +('45.91', 'Small-to-small intestinal anastomosis', 'ICD9CM_2010'), +('45.92', 'Anastomosis of small intestine to rectal stump', 'ICD9CM_2010'), +('45.93', 'Other small-to-large intestinal anastomosis', 'ICD9CM_2010'), +('45.94', 'Large-to-large intestinal anastomosis', 'ICD9CM_2010'), +('45.95', 'Anastomosis to anus', 'ICD9CM_2010'), +('46', 'Other operations on intestine', 'ICD9CM_2010'), +('46.0', 'Exteriorization of intestine', 'ICD9CM_2010'), +('46.01', 'Exteriorization of small intestine', 'ICD9CM_2010'), +('46.02', 'Resection of exteriorized segment of small intestine', 'ICD9CM_2010'), +('46.03', 'Exteriorization of large intestine', 'ICD9CM_2010'), +('46.04', 'Resection of exteriorized segment of large intestine', 'ICD9CM_2010'), +('46.1', 'Colostomy', 'ICD9CM_2010'), +('46.10', 'Colostomy, not otherwise specified', 'ICD9CM_2010'), +('46.11', 'Temporary colostomy', 'ICD9CM_2010'), +('46.13', 'Permanent colostomy', 'ICD9CM_2010'), +('46.14', 'Delayed opening of colostomy', 'ICD9CM_2010'), +('46.2', 'Ileostomy', 'ICD9CM_2010'), +('46.20', 'Ileostomy, not otherwise specified', 'ICD9CM_2010'), +('46.21', 'Temporary ileostomy', 'ICD9CM_2010'), +('46.22', 'Continent ileostomy', 'ICD9CM_2010'), +('46.23', 'Other permanent ileostomy', 'ICD9CM_2010'), +('46.24', 'Delayed opening of ileostomy', 'ICD9CM_2010'), +('46.3', 'Other enterostomy', 'ICD9CM_2010'), +('46.31', 'Delayed opening of other enterostomy', 'ICD9CM_2010'), +('46.32', 'Percutaneous (endoscopic) jejunostomy (PEJ)', 'ICD9CM_2010'), +('46.39', 'Other enterostomy', 'ICD9CM_2010'), +('46.4', 'Revision of intestinal stoma', 'ICD9CM_2010'), +('46.40', 'Revision of intestinal stoma, not otherwise specified', 'ICD9CM_2010'), +('46.41', 'Revision of stoma of small intestine', 'ICD9CM_2010'), +('46.42', 'Repair of pericolostomy hernia', 'ICD9CM_2010'), +('46.43', 'Other revision of stoma of large intestine', 'ICD9CM_2010'), +('46.5', 'Closure of intestinal stoma', 'ICD9CM_2010'), +('46.50', 'Closure of intestinal stoma, not otherwise specified', 'ICD9CM_2010'), +('46.51', 'Closure of stoma of small intestine', 'ICD9CM_2010'), +('46.52', 'Closure of stoma of large intestine', 'ICD9CM_2010'), +('46.6', 'Fixation of intestine', 'ICD9CM_2010'), +('46.60', 'Fixation of intestine, not otherwise specified', 'ICD9CM_2010'), +('46.61', 'Fixation of small intestine to abdominal wall', 'ICD9CM_2010'), +('46.62', 'Other fixation of small intestine', 'ICD9CM_2010'), +('46.63', 'Fixation of large intestine to abdominal wall', 'ICD9CM_2010'), +('46.64', 'Other fixation of large intestine', 'ICD9CM_2010'), +('46.7', 'Other repair of intestine', 'ICD9CM_2010'), +('46.71', 'Suture of laceration of duodenum', 'ICD9CM_2010'), +('46.72', 'Closure of fistula of duodenum', 'ICD9CM_2010'), +('46.73', 'Suture of laceration of small intestine, except duodenum', 'ICD9CM_2010'), +('46.74', 'Closure of fistula of small intestine, except duodenum', 'ICD9CM_2010'), +('46.75', 'Suture of laceration of large intestine', 'ICD9CM_2010'), +('46.76', 'Closure of fistula of large intestine', 'ICD9CM_2010'), +('46.79', 'Other repair of intestine', 'ICD9CM_2010'), +('46.8', 'Dilation and manipulation of intestine', 'ICD9CM_2010'), +('46.80', 'Intra-abdominal manipulation of intestine, not otherwise specified', 'ICD9CM_2010'), +('46.81', 'Intra-abdominal manipulation of small intestine', 'ICD9CM_2010'), +('46.82', 'Intra-abdominal manipulation of large intestine', 'ICD9CM_2010'), +('46.85', 'Dilation of intestine', 'ICD9CM_2010'), +('46.86', 'Endoscopic insertion of colonic stent(s)', 'ICD9CM_2010'), +('46.87', 'Other insertion of colonic stent(s)', 'ICD9CM_2010'), +('46.9', 'Other operations on intestines', 'ICD9CM_2010'), +('46.91', 'Myotomy of sigmoid colon', 'ICD9CM_2010'), +('46.92', 'Myotomy of other parts of colon', 'ICD9CM_2010'), +('46.93', 'Revision of anastomosis of small intestine', 'ICD9CM_2010'), +('46.94', 'Revision of anastomosis of large intestine', 'ICD9CM_2010'), +('46.95', 'Local perfusion of small intestine', 'ICD9CM_2010'), +('46.96', 'Local perfusion of large intestine', 'ICD9CM_2010'), +('46.97', 'Transplant of intestine', 'ICD9CM_2010'), +('46.99', 'Other operations on intestines', 'ICD9CM_2010'), +('47', 'Operations on appendix', 'ICD9CM_2010'), +('47.0', 'Appendectomy', 'ICD9CM_2010'), +('47.01', 'Laparascopic appendectomy', 'ICD9CM_2010'), +('47.09', 'Other appendectomy', 'ICD9CM_2010'), +('47.1', 'Incidental appendectomy', 'ICD9CM_2010'), +('47.11', 'Laposcopic incidental appendectomy', 'ICD9CM_2010'), +('47.19', 'other incidental appendectomy', 'ICD9CM_2010'), +('47.2', 'Drainage of appendiceal abscess', 'ICD9CM_2010'), +('47.9', 'Other operations on appendix', 'ICD9CM_2010'), +('47.91', 'Appendicostomy', 'ICD9CM_2010'), +('47.92', 'Closure of appendiceal fistula', 'ICD9CM_2010'), +('47.99', 'Other operations on appendix', 'ICD9CM_2010'), +('48', 'Operations on rectum rectosigmoid, and perirectal tissue', 'ICD9CM_2010'), +('48.0', 'Proctotomy', 'ICD9CM_2010'), +('48.1', 'Proctostomy', 'ICD9CM_2010'), +('48.2', 'Diagnostic procedures on rectum, rectosigmoid, and perirectal tissue', 'ICD9CM_2010'), +('48.21', 'Transabdominal proctosigmoidoscopy', 'ICD9CM_2010'), +('48.22', 'Proctosigmoidoscopy through artificial stoma', 'ICD9CM_2010'), +('48.23', 'Rigid proctosigmoidoscopy', 'ICD9CM_2010'), +('48.24', 'Closed (endoscopic) biopsy of rectum', 'ICD9CM_2010'), +('48.25', 'Open biopsy of rectum', 'ICD9CM_2010'), +('48.26', 'Biopsy of perirectal tissue', 'ICD9CM_2010'), +('48.29', 'Other diagnostic procedures on rectum, rectosigmoid, and perirectal', 'ICD9CM_2010'), +('48.3', 'Local excision or destruction of lesion or tissue of rectum', 'ICD9CM_2010'), +('48.31', 'Radical electrocoagulation of rectal lesion or tissue', 'ICD9CM_2010'), +('48.32', 'Other electrocoagulation of rectal lesion or tissue', 'ICD9CM_2010'), +('48.33', 'Destruction of rectal lesion or tissue by laser', 'ICD9CM_2010'), +('48.34', 'Destruction of rectal lesion or tissue by cryosurgery', 'ICD9CM_2010'), +('48.35', 'Local excision of rectal lesion or tissue', 'ICD9CM_2010'), +('48.36', '(Endoscopic) polypectomy of rectum', 'ICD9CM_2010'), +('48.4', 'Pull-through resection of rectum', 'ICD9CM_2010'), +('48.40', 'Pull-through resection of rectum, not otherwise specified', 'ICD9CM_2010'), +('48.41', 'Soave submucosal resection of rectum', 'ICD9CM_2010'), +('48.42', 'Laparoscopic pull-through resection of rectum', 'ICD9CM_2010'), +('48.43', 'Open pull-through resection of rectum', 'ICD9CM_2010'), +('48.49', 'Other pull-through resection of rectum', 'ICD9CM_2010'), +('48.5', 'Abdominoperineal resection of rectum', 'ICD9CM_2010'), +('48.50', 'Abdominoperineal resection of the rectum, not otherwise specified', 'ICD9CM_2010'), +('48.51', 'Laparoscopic abdominoperineal resection of the rectum', 'ICD9CM_2010'), +('48.52', 'Open abdominoperineal resection of the rectum', 'ICD9CM_2010'), +('48.59', 'Other abdominoperineal resection of the rectum', 'ICD9CM_2010'), +('48.6', 'Other resection of rectum', 'ICD9CM_2010'), +('48.61', 'Transsacral rectosigmoidectomy', 'ICD9CM_2010'), +('48.62', 'Anterior resection of rectum with synchronous colostomy', 'ICD9CM_2010'), +('48.63', 'Other anterior resection of rectum', 'ICD9CM_2010'), +('48.64', 'Posterior resection of rectum', 'ICD9CM_2010'), +('48.65', 'Duhamel resection of rectum', 'ICD9CM_2010'), +('48.69', 'Other resection of rectum', 'ICD9CM_2010'), +('48.7', 'Repair of rectum', 'ICD9CM_2010'), +('48.71', 'Suture of laceration of rectum', 'ICD9CM_2010'), +('48.72', 'Closure of proctostomy', 'ICD9CM_2010'), +('48.73', 'Closure of other rectal fistula', 'ICD9CM_2010'), +('48.74', 'Rectorectostomy', 'ICD9CM_2010'), +('48.75', 'Abdominal proctopexy', 'ICD9CM_2010'), +('48.76', 'Other proctopexy', 'ICD9CM_2010'), +('48.79', 'Other repair of rectum', 'ICD9CM_2010'), +('48.8', 'Incision or excision of perirectal tissue or lesion', 'ICD9CM_2010'), +('48.81', 'Incision of perirectal tissue', 'ICD9CM_2010'), +('48.82', 'Excision of perirectal tissue', 'ICD9CM_2010'), +('48.9', 'Other operations on rectum and perirectal tissue', 'ICD9CM_2010'), +('48.91', 'Incision of rectal stricture', 'ICD9CM_2010'), +('48.92', 'Anorectal myectomy', 'ICD9CM_2010'), +('48.93', 'Repair of perirectal fistula', 'ICD9CM_2010'), +('48.99', 'Other operations on rectum and perirectal tissue', 'ICD9CM_2010'), +('49', 'Operations on anus', 'ICD9CM_2010'), +('49.0', 'Incision or excision of perianal tissue', 'ICD9CM_2010'), +('49.01', 'Incision of perianal abscess', 'ICD9CM_2010'), +('49.02', 'Other incision of perianal tissue', 'ICD9CM_2010'), +('49.03', 'Excision of perianal skin tags', 'ICD9CM_2010'), +('49.04', 'Other excision of perianal tissue', 'ICD9CM_2010'), +('49.1', 'Incision or excision of anal fistula', 'ICD9CM_2010'), +('49.11', 'Anal fistulotomy', 'ICD9CM_2010'), +('49.12', 'Anal fistulectomy', 'ICD9CM_2010'), +('49.2', 'Diagnostic procedures on anus and perianal tissue', 'ICD9CM_2010'), +('49.21', 'Anoscopy', 'ICD9CM_2010'), +('49.22', 'Biopsy of perianal tissue', 'ICD9CM_2010'), +('49.23', 'Biopsy of anus', 'ICD9CM_2010'), +('49.29', 'Other diagnostic procedures on anus and perianal tissue', 'ICD9CM_2010'), +('49.3', 'Local excision or destruction of other lesion or tissue of anus', 'ICD9CM_2010'), +('49.31', 'Endoscopic excision or destruction of lesion or tissue of anus', 'ICD9CM_2010'), +('49.39', 'Other local excision or destruction of lesion or tissue of anus', 'ICD9CM_2010'), +('49.4', 'Procedures on hemorrhoids', 'ICD9CM_2010'), +('49.41', 'Reduction of hemorrhoids', 'ICD9CM_2010'), +('49.42', 'Injection of hemorrhoids', 'ICD9CM_2010'), +('49.43', 'Cauterization of hemorrhoids', 'ICD9CM_2010'), +('49.44', 'Destruction of hemorrhoids by cryotherapy', 'ICD9CM_2010'), +('49.45', 'Ligation of hemorrhoids', 'ICD9CM_2010'), +('49.46', 'Excision of hemorrhoids', 'ICD9CM_2010'), +('49.47', 'Evacuation of thrombosed hemorrhoids', 'ICD9CM_2010'), +('49.49', 'Other procedures on hemorrhoids', 'ICD9CM_2010'), +('49.5', 'Division of anal sphincter', 'ICD9CM_2010'), +('49.51', 'Left lateral anal sphincterotomy', 'ICD9CM_2010'), +('49.52', 'Posterior anal sphincterotomy', 'ICD9CM_2010'), +('49.59', 'Other anal sphincterotomy', 'ICD9CM_2010'), +('49.6', 'Excision of anus', 'ICD9CM_2010'), +('49.7', 'Repair of anus', 'ICD9CM_2010'), +('49.71', 'Suture of laceration of anus', 'ICD9CM_2010'), +('49.72', 'Anal cerclage', 'ICD9CM_2010'), +('49.73', 'Closure of anal fistula', 'ICD9CM_2010'), +('49.74', 'Gracilis muscle transplant for anal incontinence', 'ICD9CM_2010'), +('49.75', 'Implantation or revision of artificial anal sphincter', 'ICD9CM_2010'), +('49.76', 'Removal of artificial anal sphincter', 'ICD9CM_2010'), +('49.79', 'Other repair of anal sphincter', 'ICD9CM_2010'), +('49.9', 'Other operations on anus', 'ICD9CM_2010'), +('49.91', 'Incision of anal septum', 'ICD9CM_2010'), +('49.92', 'Insertion of subcutaneous electrical anal stimulator', 'ICD9CM_2010'), +('49.93', 'Other incision of anus', 'ICD9CM_2010'), +('49.94', 'Reduction of anal prolapse', 'ICD9CM_2010'), +('49.95', 'Control of (postoperative) hemorrhage of anus', 'ICD9CM_2010'), +('49.99', 'Other operations on anus', 'ICD9CM_2010'), +('50', 'Operations on liver', 'ICD9CM_2010'), +('50.0', 'Hepatotomy', 'ICD9CM_2010'), +('50.1', 'Diagnostic procedures on liver', 'ICD9CM_2010'), +('50.11', 'Closed (percutaneous) (needle) biopsy of liver', 'ICD9CM_2010'), +('50.12', 'Open biopsy of liver', 'ICD9CM_2010'), +('50.13', 'Transjugular liver biopsy', 'ICD9CM_2010'), +('50.14', 'Laparoscopic liver biopsy', 'ICD9CM_2010'), +('50.19', 'Other diagnostic procedures on liver', 'ICD9CM_2010'), +('50.2', 'Local excision or destruction of liver tissue or lesion', 'ICD9CM_2010'), +('50.21', 'Marsupialization of lesion of liver', 'ICD9CM_2010'), +('50.22', 'Partial hepatectomy', 'ICD9CM_2010'), +('50.23', 'Open ablation of liver lesion or tissue', 'ICD9CM_2010'), +('50.24', 'Percutaneous ablation of liver lesion or tissue', 'ICD9CM_2010'), +('50.25', 'Laparoscopic ablation of liver lesion or tissue', 'ICD9CM_2010'), +('50.26', 'Other and unspecified ablation of liver lesion or tissue', 'ICD9CM_2010'), +('50.29', 'Other destruction of lesion of liver', 'ICD9CM_2010'), +('50.3', 'Lobectomy of liver', 'ICD9CM_2010'), +('50.4', 'Total hepatectomy', 'ICD9CM_2010'), +('50.5', 'Liver transplant', 'ICD9CM_2010'), +('50.51', 'Auxiliary liver transplant', 'ICD9CM_2010'), +('50.59', 'Other transplant of liver', 'ICD9CM_2010'), +('50.6', 'Repair of liver', 'ICD9CM_2010'), +('50.61', 'Closure of laceration of liver', 'ICD9CM_2010'), +('50.69', 'Other repair of liver', 'ICD9CM_2010'), +('50.9', 'Other operations on liver', 'ICD9CM_2010'), +('50.91', 'Percutaneous aspiration of liver', 'ICD9CM_2010'), +('50.92', 'Extracorporeal hepatic assistance', 'ICD9CM_2010'), +('50.93', 'Localized perfusion of liver', 'ICD9CM_2010'), +('50.94', 'Other injection of therapeutic substance into liver', 'ICD9CM_2010'), +('50.99', 'Other operations on liver', 'ICD9CM_2010'), +('51', 'Operations on gallbladder and biliary tract', 'ICD9CM_2010'), +('51.0', 'Cholecystotomy and cholecystostomy', 'ICD9CM_2010'), +('51.01', 'Percutaneous aspiration of gallbladder', 'ICD9CM_2010'), +('51.02', 'Trocar cholecystostomy', 'ICD9CM_2010'), +('51.03', 'Other cholecystostomy', 'ICD9CM_2010'), +('51.04', 'Other cholecystotomy', 'ICD9CM_2010'), +('51.1', 'Diagnostic procedures on biliary tract', 'ICD9CM_2010'), +('51.10', 'Endoscopic retrograde cholangiopancreatography (ERCP)', 'ICD9CM_2010'), +('51.11', 'Endoscopic retrograde cholangiography (ERC)', 'ICD9CM_2010'), +('51.12', 'Percutaneous biopsy of gallbladder or bile ducts', 'ICD9CM_2010'), +('51.13', 'Open biopsy of gallbladder or bile ducts', 'ICD9CM_2010'), +('51.14', 'Other closed (endoscopic) biopsy of biliary duct or sphincter of Oddi', 'ICD9CM_2010'), +('51.15', 'Pressure measurement of sphincter of Oddi', 'ICD9CM_2010'), +('51.19', 'Other diagnostic procedures on biliary tract', 'ICD9CM_2010'), +('51.2', 'Cholecystectomy', 'ICD9CM_2010'), +('51.21', 'Other partial cholecystectomy', 'ICD9CM_2010'), +('51.22', 'Cholecystectomy', 'ICD9CM_2010'), +('51.23', 'Laparoscopic cholecystectomy', 'ICD9CM_2010'), +('51.24', 'Laparoscopic partial cholecystectomy', 'ICD9CM_2010'), +('51.3', 'Anastomosis of gallbladder or bile duct', 'ICD9CM_2010'), +('51.31', 'Anastomosis of gallbladder to hepatic ducts', 'ICD9CM_2010'), +('51.32', 'Anastomosis of gallbladder to intestine', 'ICD9CM_2010'), +('51.33', 'Anastomosis of gallbladder to pancreas', 'ICD9CM_2010'), +('51.34', 'Anastomosis of gallbladder to stomach', 'ICD9CM_2010'), +('51.35', 'Other gallbladder anastomosis', 'ICD9CM_2010'), +('51.36', 'Choledochoenterostomy', 'ICD9CM_2010'), +('51.37', 'Anastomosis of hepatic duct to gastrointestinal tract', 'ICD9CM_2010'), +('51.39', 'Other bile duct anastomosis', 'ICD9CM_2010'), +('51.4', 'Incision of bile duct for relief of obstruction', 'ICD9CM_2010'), +('51.41', 'Common duct exploration for removal of calculus', 'ICD9CM_2010'), +('51.42', 'Common duct exploration for relief of other obstruction', 'ICD9CM_2010'), +('51.43', 'Insertion of choledochohepatic tube for decompression', 'ICD9CM_2010'), +('51.49', 'Incision of other bile ducts for relief of obstruction', 'ICD9CM_2010'), +('51.5', 'Other incision of bile duct', 'ICD9CM_2010'), +('51.51', 'Exploration of common bile duct', 'ICD9CM_2010'), +('51.59', 'Incision of bile duct', 'ICD9CM_2010'), +('51.6', 'Local excision or destruction of lesion or tissue of biliary ducts and sphincter of Oddi', 'ICD9CM_2010'), +('51.61', 'Excision of cystic duct remnant', 'ICD9CM_2010'), +('51.62', 'Excision of ampulla of vater (with reimplantation of common duct)', 'ICD9CM_2010'), +('51.63', 'Other excision of common duct', 'ICD9CM_2010'), +('51.64', 'Endoscopic excision or destruction of lesion of biliary ducts or sphincter of Oddi', 'ICD9CM_2010'), +('51.69', 'Excision of other bile duct', 'ICD9CM_2010'), +('51.7', 'Repair of bile ducts', 'ICD9CM_2010'), +('51.71', 'Simple suture of common bile duct', 'ICD9CM_2010'), +('51.72', 'Choledochoplasty', 'ICD9CM_2010'), +('51.79', 'Repair of other bile ducts', 'ICD9CM_2010'), +('51.8', 'Other operations on biliary ducts and sphincter of Oddi', 'ICD9CM_2010'), +('51.81', 'Dilation of sphincter of Oddi', 'ICD9CM_2010'), +('51.82', 'Pancreatic sphincterotomy', 'ICD9CM_2010'), +('51.83', 'Pancreatic sphincteroplasty', 'ICD9CM_2010'), +('51.84', 'Endoscopic dilation of ampulla and biliary duct', 'ICD9CM_2010'), +('51.85', 'Endoscopic sphincterotomy and papillotomy', 'ICD9CM_2010'), +('51.86', 'Endoscopic insertion of nasobiliary drainage tube', 'ICD9CM_2010'), +('51.87', 'Endoscopic insertion of stent (tube) into bile duct', 'ICD9CM_2010'), +('51.88', 'Endoscopic removal of stone(s) from biliary tract', 'ICD9CM_2010'), +('51.89', 'Other operations on sphincter of Oddi', 'ICD9CM_2010'), +('51.9', 'Other operations on biliary tract', 'ICD9CM_2010'), +('51.91', 'Repair of laceration of gallbladder', 'ICD9CM_2010'), +('51.92', 'Closure of cholecystostomy', 'ICD9CM_2010'), +('51.93', 'Closure of other biliary fistula', 'ICD9CM_2010'), +('51.94', 'Revision of anastomosis of biliary tract', 'ICD9CM_2010'), +('51.95', 'Removal of prosthetic device from bile duct', 'ICD9CM_2010'), +('51.96', 'Percutaneous extraction of common duct stones', 'ICD9CM_2010'), +('51.98', 'Other percutaneous procedures on biliary tract', 'ICD9CM_2010'), +('51.99', 'Other operations on biliary tract', 'ICD9CM_2010'), +('52', 'Operations on pancreas', 'ICD9CM_2010'), +('52.0', 'Pancreatotomy', 'ICD9CM_2010'), +('52.01', 'Drainage of pancreatic cyst by catheter', 'ICD9CM_2010'), +('52.09', 'Other pancreatotomy', 'ICD9CM_2010'), +('52.1', 'Diagnostic procedures on pancreas', 'ICD9CM_2010'), +('52.11', 'Closed [aspiration] [needle][percutaneous] biopsy of pancreas', 'ICD9CM_2010'), +('52.12', 'Open biopsy of pancreas', 'ICD9CM_2010'), +('52.13', 'Endoscopic retrograde pancreatography (ERP)', 'ICD9CM_2010'), +('52.14', 'Closed [endoscopic] biopsy of pancreatic duct', 'ICD9CM_2010'), +('52.19', 'Other diagnostic procedures on pancreas', 'ICD9CM_2010'), +('52.2', 'Local excision or destruction of pancreas and pancreatic duct', 'ICD9CM_2010'), +('52.21', 'Endoscopic excision or destruction of lesion or tissue of pancreatic', 'ICD9CM_2010'), +('52.22', 'Other excision or destruction of lesion or tissue of pancreas or pancreatic duct', 'ICD9CM_2010'), +('52.3', 'Marsupialization of pancreatic cyst', 'ICD9CM_2010'), +('52.4', 'Internal drainage of pancreatic cyst', 'ICD9CM_2010'), +('52.5', 'Partial pancreatectomy', 'ICD9CM_2010'), +('52.51', 'Proximal pancreatectomy', 'ICD9CM_2010'), +('52.52', 'Distal pancreatectomy', 'ICD9CM_2010'), +('52.53', 'Radical subtotal pancreatectomy', 'ICD9CM_2010'), +('52.59', 'Other partial pancreatectomy', 'ICD9CM_2010'), +('52.6', 'Total pancreatectomy', 'ICD9CM_2010'), +('52.7', 'Radical pancreaticoduodenectomy', 'ICD9CM_2010'), +('52.8', 'Transplant of pancreas', 'ICD9CM_2010'), +('52.80', 'Pancreatic transplant, not otherwise specified', 'ICD9CM_2010'), +('52.81', 'Reimplantation of pancreatic tissue', 'ICD9CM_2010'), +('52.82', 'Homotransplant of pancreas', 'ICD9CM_2010'), +('52.83', 'Heterotransplant of pancreas', 'ICD9CM_2010'), +('52.84', 'Autotransplantation of cells of Islets of Langerhans', 'ICD9CM_2010'), +('52.85', 'Allotransplantation of cells of Islets of Langerhans', 'ICD9CM_2010'), +('52.86', 'Transplantation of cells of Islets of Langerhans, not otherwise specified', 'ICD9CM_2010'), +('52.9', 'Other operations on pancreas', 'ICD9CM_2010'), +('52.92', 'Cannulation of pancreatic duct', 'ICD9CM_2010'), +('52.93', 'Endoscopic insertion of stent (tube) into pancreatic duct', 'ICD9CM_2010'), +('52.94', 'Endoscopic removal of stone(s) from pancreatic duct', 'ICD9CM_2010'), +('52.95', 'Other repair of pancreas', 'ICD9CM_2010'), +('52.96', 'Anastomosis of pancreas', 'ICD9CM_2010'), +('52.97', 'Endoscopic insertion of nasopancreatic drainage tube', 'ICD9CM_2010'), +('52.98', 'Endoscopic dilation of pancreatic duct', 'ICD9CM_2010'), +('52.99', 'Other operations on pancreas', 'ICD9CM_2010'), +('53', 'Repair of hernia', 'ICD9CM_2010'), +('53.0', 'Other unilateral repair of inguinal hernia', 'ICD9CM_2010'), +('53.00', 'Unilateral repair of inguinal hernia, not otherwise specified', 'ICD9CM_2010'), +('53.01', 'Other and open repair of direct inguinal hernia', 'ICD9CM_2010'), +('53.02', 'Other and open repair of indirect inguinal hernia', 'ICD9CM_2010'), +('53.03', 'Other and open repair of direct inguinal hernia with graft or prosthesis', 'ICD9CM_2010'), +('53.04', 'Other and open repair of indirect inguinal hernia with graft or prosthesis', 'ICD9CM_2010'), +('53.05', 'Repair of inguinal hernia with graft or prosthesis, not otherwise specified', 'ICD9CM_2010'), +('53.1', 'Other bilateral repair of inguinal hernia', 'ICD9CM_2010'), +('53.10', 'Bilateral repair of inguinal hernia, not otherwise specified', 'ICD9CM_2010'), +('53.11', 'Other and open bilateral repair of direct inguinal hernia', 'ICD9CM_2010'), +('53.12', 'Other and open bilateral repair of indirect inguinal hernia', 'ICD9CM_2010'), +('53.13', 'Other and open bilateral repair of inguinal hernia, one direct and one indirect', 'ICD9CM_2010'), +('53.14', 'Other and open bilateral repair of direct inguinal hernia with graft or prosthesis', 'ICD9CM_2010'), +('53.15', 'Other and open bilateral repair of indirect inguinal hernia with graft or prosthesis', 'ICD9CM_2010'), +('53.16', 'Other and open bilateral repair of inguinal hernia, one direct and one indirect, with graft or prosthesis', 'ICD9CM_2010'), +('53.17', 'Bilateral inguinal hernia repair with graft or prosthesis, not otherwise specified', 'ICD9CM_2010'), +('53.2', 'Unilateral repair of femoral hernia', 'ICD9CM_2010'), +('53.21', 'Unilateral repair of femoral hernia with graft or prosthesis', 'ICD9CM_2010'), +('53.29', 'Other unilateral femoral herniorrhaphy', 'ICD9CM_2010'), +('53.3', 'Bilateral repair of femoral hernia', 'ICD9CM_2010'), +('53.31', 'Bilateral repair of femoral hernia with graft or prosthesis', 'ICD9CM_2010'), +('53.39', 'Other bilateral femoral herniorrhaphy', 'ICD9CM_2010'), +('53.4', 'Repair of umbilical hernia', 'ICD9CM_2010'), +('53.41', 'Other and open repair of umbilical hernia with graft or prosthesis', 'ICD9CM_2010'), +('53.42', 'Laparoscopic repair of umbilical hernia with graft or prosthesis', 'ICD9CM_2010'), +('53.43', 'Other laparoscopic umbilical herniorrhaphy', 'ICD9CM_2010'), +('53.49', 'Other open umbilical herniorrhaphy', 'ICD9CM_2010'), +('53.5', 'Repair of other hernia of anterior abdominal wall (without graft or', 'ICD9CM_2010'), +('53.51', 'Incisional hernia repair', 'ICD9CM_2010'), +('53.59', 'Repair of other hernia of anterior abdominal wall', 'ICD9CM_2010'), +('53.6', 'Repair of other hernia of anterior abdominal wall with graft or prosthesis', 'ICD9CM_2010'), +('53.61', 'Other open incisional hernia repair with graft or prosthesis', 'ICD9CM_2010'), +('53.62', 'Laparoscopic incisional hernia repair with graft or prosthesis', 'ICD9CM_2010'), +('53.63', 'Other laparoscopic repair of other hernia of anterior abdominal wall with graft or prosthesis', 'ICD9CM_2010'), +('53.69', 'Other open repair of other hernia of anterior abdominal wall with graft or prosthesis', 'ICD9CM_2010'), +('53.7', 'Repair of diaphragmatic hernia, abdominal approach', 'ICD9CM_2010'), +('53.71', 'Laparoscopic repair of diaphragmatic hernia, abdominal approach', 'ICD9CM_2010'), +('53.72', 'Other and open repair of diaphragmatic hernia, abdominal approach', 'ICD9CM_2010'), +('53.75', 'Repair of diaphragmatic hernia, abdominal approach, not otherwise specified', 'ICD9CM_2010'), +('53.8', 'Repair of diaphragmatic hernia, thoracic approach', 'ICD9CM_2010'), +('53.80', 'Repair of diaphragmatic hernia with thoracic approach, not otherwise specified', 'ICD9CM_2010'), +('53.81', 'Plication of the diaphragm', 'ICD9CM_2010'), +('53.82', 'Repair of parasternal hernia', 'ICD9CM_2010'), +('53.83', 'Laparoscopic repair of diaphragmatic hernia with thoracic approach', 'ICD9CM_2010'), +('53.84', 'Other and open repair of diaphragmatic hernia, with thoracic approach', 'ICD9CM_2010'), +('53.9', 'Other hernia repair', 'ICD9CM_2010'), +('54', 'Other operations on abdominal region', 'ICD9CM_2010'), +('54.0', 'Incision of abdominal wall', 'ICD9CM_2010'), +('54.1', 'Laparotomy', 'ICD9CM_2010'), +('54.11', 'Exploratory laparotomy', 'ICD9CM_2010'), +('54.12', 'Reopening of recent laparotomy site', 'ICD9CM_2010'), +('54.19', 'Other laparotomy', 'ICD9CM_2010'), +('54.2', 'Diagnostic procedures of abdominal region', 'ICD9CM_2010'), +('54.21', 'Laparoscopy', 'ICD9CM_2010'), +('54.22', 'Biopsy of abdominal wall or umbilicus', 'ICD9CM_2010'), +('54.23', 'Biopsy of peritoneum', 'ICD9CM_2010'), +('54.24', 'Closed [percutaneous] [needle] biopsy of intra-abdominal mass', 'ICD9CM_2010'), +('54.25', 'Peritoneal lavage', 'ICD9CM_2010'), +('54.29', 'Other diagnostic procedures on abdominal region', 'ICD9CM_2010'), +('54.3', 'Excision or destruction of lesion or tissue of abdominal wall or umbilicus', 'ICD9CM_2010'), +('54.4', 'Excision or destruction of peritoneal tissue', 'ICD9CM_2010'), +('54.5', 'Lysis of peritoneal adhesions', 'ICD9CM_2010'), +('54.51', 'Laparoscopic lysis of peritoneal adhesions', 'ICD9CM_2010'), +('54.59', 'Other lysis of peritoneal adhesions', 'ICD9CM_2010'), +('54.6', 'Suture of abdominal wall and peritoneum', 'ICD9CM_2010'), +('54.61', 'Reclosure of postoperative disruption of abdominal wall', 'ICD9CM_2010'), +('54.62', 'Delayed closure of granulating abdominal wound', 'ICD9CM_2010'), +('54.63', 'Other suture of abdominal wall', 'ICD9CM_2010'), +('54.64', 'Suture of peritoneum', 'ICD9CM_2010'), +('54.7', 'Other repair of abdominal wall and peritoneum', 'ICD9CM_2010'), +('54.71', 'Repair of gastroschisis', 'ICD9CM_2010'), +('54.72', 'Other repair of abdominal wall', 'ICD9CM_2010'), +('54.73', 'Other repair of peritoneum', 'ICD9CM_2010'), +('54.74', 'Other repair of omentum', 'ICD9CM_2010'), +('54.75', 'Other repair of mesentery', 'ICD9CM_2010'), +('54.9', 'Other operations of abdominal region', 'ICD9CM_2010'), +('54.91', 'Percutaneous abdominal drainage', 'ICD9CM_2010'), +('54.92', 'Removal of foreign body from peritoneal cavity', 'ICD9CM_2010'), +('54.93', 'Creation of cutaneoperitoneal fistula', 'ICD9CM_2010'), +('54.94', 'Creation of peritoneovascular shunt', 'ICD9CM_2010'), +('54.95', 'Incision of peritoneum', 'ICD9CM_2010'), +('54.96', 'Injection of air into peritoneal cavity', 'ICD9CM_2010'), +('54.97', 'Injection of locally-acting therapeutic substance into peritoneal cavity', 'ICD9CM_2010'), +('54.98', 'Peritoneal dialysis', 'ICD9CM_2010'), +('54.99', 'Other operations of abdominal region', 'ICD9CM_2010'), +('55', 'Operations on kidney', 'ICD9CM_2010'), +('55.0', 'Nephrotomy and nephrostomy', 'ICD9CM_2010'), +('55.01', 'Nephrotomy', 'ICD9CM_2010'), +('55.02', 'Nephrostomy', 'ICD9CM_2010'), +('55.03', 'Percutaneous nephrostomy without fragmentation', 'ICD9CM_2010'), +('55.04', 'Percutaneous nephrostomy with fragmentation', 'ICD9CM_2010'), +('55.1', 'Pyelotomy and pyelostomy', 'ICD9CM_2010'), +('55.11', 'Pyelotomy', 'ICD9CM_2010'), +('55.12', 'Pyelostomy', 'ICD9CM_2010'), +('55.2', 'Diagnostic procedures on kidney', 'ICD9CM_2010'), +('55.21', 'Nephroscopy', 'ICD9CM_2010'), +('55.22', 'Pyeloscopy', 'ICD9CM_2010'), +('55.23', 'Closed [percutaneous] [needle] biopsy of kidney', 'ICD9CM_2010'), +('55.24', 'Open biopsy of kidney', 'ICD9CM_2010'), +('55.29', 'Other diagnostic procedures on kidney', 'ICD9CM_2010'), +('55.3', 'Local excision or destruction of lesion or tissue of kidney', 'ICD9CM_2010'), +('55.31', 'Marsupialization of kidney lesion', 'ICD9CM_2010'), +('55.32', 'Open ablation of renal lesion or tissue', 'ICD9CM_2010'), +('55.33', 'Percutaneous ablation of renal lesion or tissue', 'ICD9CM_2010'), +('55.34', 'Laparoscopic ablation of renal lesion or tissue', 'ICD9CM_2010'), +('55.35', 'Other and unspecified ablation of renal lesion or tissue', 'ICD9CM_2010'), +('55.39', 'Other local destruction or excision of renal lesion or tissue', 'ICD9CM_2010'), +('55.4', 'Partial nephrectomy', 'ICD9CM_2010'), +('55.5', 'Complete nephrectomy', 'ICD9CM_2010'), +('55.51', 'Nephroureterectomy', 'ICD9CM_2010'), +('55.52', 'Nephrectomy of remaining kidney', 'ICD9CM_2010'), +('55.53', 'Removal of transplanted or rejected kidney', 'ICD9CM_2010'), +('55.54', 'Bilateral nephrectomy', 'ICD9CM_2010'), +('55.6', 'Transplant of kidney', 'ICD9CM_2010'), +('55.61', 'Renal autotransplantation', 'ICD9CM_2010'), +('55.69', 'Other kidney transplantation', 'ICD9CM_2010'), +('55.7', 'Nephropexy', 'ICD9CM_2010'), +('55.8', 'Other repair of kidney', 'ICD9CM_2010'), +('55.81', 'Suture of laceration of kidney', 'ICD9CM_2010'), +('55.82', 'Closure of nephrostomy and pyelostomy', 'ICD9CM_2010'), +('55.83', 'Closure of other fistula of kidney', 'ICD9CM_2010'), +('55.84', 'Reduction of torsion of renal pedicle', 'ICD9CM_2010'), +('55.85', 'Symphysiotomy for horseshoe kidney', 'ICD9CM_2010'), +('55.86', 'Anastomosis of kidney', 'ICD9CM_2010'), +('55.87', 'Correction of ureteropelvic junction', 'ICD9CM_2010'), +('55.89', 'Other repair of kidney', 'ICD9CM_2010'), +('55.9', 'Other operations on kidney', 'ICD9CM_2010'), +('55.91', 'Decapsulation of kidney', 'ICD9CM_2010'), +('55.92', 'Percutaneous aspiration of kidney (pelvis)', 'ICD9CM_2010'), +('55.93', 'Replacement of nephrostomy tube', 'ICD9CM_2010'), +('55.94', 'Replacement of pyelostomy tube', 'ICD9CM_2010'), +('55.95', 'Local perfusion of kidney', 'ICD9CM_2010'), +('55.96', 'Other injection of therapeutic substance into kidney', 'ICD9CM_2010'), +('55.97', 'Implantation or replacement of mechanical kidney', 'ICD9CM_2010'), +('55.98', 'Removal of mechanical kidney', 'ICD9CM_2010'), +('55.99', 'Other operations on kidney', 'ICD9CM_2010'), +('56', 'Operations on ureter', 'ICD9CM_2010'), +('56.0', 'Transurethral removal of obstruction from ureter and renal pelvis', 'ICD9CM_2010'), +('56.1', 'Ureteral meatotomy', 'ICD9CM_2010'), +('56.2', 'Ureterotomy', 'ICD9CM_2010'), +('56.3', 'Diagnostic procedures on ureter', 'ICD9CM_2010'), +('56.31', 'Ureteroscopy', 'ICD9CM_2010'), +('56.32', 'Closed percutaneous biopsy of ureter', 'ICD9CM_2010'), +('56.33', 'Closed endoscopic biopsy of ureter', 'ICD9CM_2010'), +('56.34', 'Open biopsy of ureter', 'ICD9CM_2010'), +('56.35', 'Endoscopy (cystoscopy) (looposcopy) of ileal conduit', 'ICD9CM_2010'), +('56.39', 'Other diagnostic procedures on ureter', 'ICD9CM_2010'), +('56.4', 'Ureterectomy', 'ICD9CM_2010'), +('56.40', 'Ureterectomy, not otherwise specified', 'ICD9CM_2010'), +('56.41', 'Partial ureterectomy', 'ICD9CM_2010'), +('56.42', 'Total ureterectomy', 'ICD9CM_2010'), +('56.5', 'Cutaneous uretero-ileostomy', 'ICD9CM_2010'), +('56.51', 'Formation of cutaneous uretero-ileostomy', 'ICD9CM_2010'), +('56.52', 'Revision of cutaneous uretero-ileostomy', 'ICD9CM_2010'), +('56.6', 'Other external urinary diversion', 'ICD9CM_2010'), +('56.61', 'Formation of other cutaneous ureterostomy', 'ICD9CM_2010'), +('56.62', 'Revision of other cutaneous ureterostomy', 'ICD9CM_2010'), +('56.7', 'Other anastomosis or bypass of ureter', 'ICD9CM_2010'), +('56.71', 'Urinary diversion to intestine', 'ICD9CM_2010'), +('56.72', 'Revision of ureterointestinal anastomosis', 'ICD9CM_2010'), +('56.73', 'Nephrocystanastomosis, not otherwise specified', 'ICD9CM_2010'), +('56.74', 'Ureteroneocystostomy', 'ICD9CM_2010'); +INSERT INTO `icd9` (`ID_ICD9`, `Prosedur`, `Versi_ICD9`) VALUES +('56.75', 'Transureteroureterostomy', 'ICD9CM_2010'), +('56.79', 'Other anastomosis or bypass of ureter', 'ICD9CM_2010'), +('56.8', 'Repair of ureter', 'ICD9CM_2010'), +('56.81', 'Lysis of intraluminal adhesions of ureter', 'ICD9CM_2010'), +('56.82', 'Suture of laceration of ureter', 'ICD9CM_2010'), +('56.83', 'Closure of ureterostomy', 'ICD9CM_2010'), +('56.84', 'Closure of other fistula of ureter', 'ICD9CM_2010'), +('56.85', 'Ureteropexy', 'ICD9CM_2010'), +('56.86', 'Removal of ligature from ureter', 'ICD9CM_2010'), +('56.89', 'Other repair of ureter', 'ICD9CM_2010'), +('56.9', 'Other operations on ureter', 'ICD9CM_2010'), +('56.91', 'Dilation of ureteral meatus', 'ICD9CM_2010'), +('56.92', 'Implantation of electronic ureteral stimulator', 'ICD9CM_2010'), +('56.93', 'Replacement of electronic ureteral stimulator', 'ICD9CM_2010'), +('56.94', 'Removal of electronic ureteral stimulator', 'ICD9CM_2010'), +('56.95', 'Ligation of ureter', 'ICD9CM_2010'), +('56.99', 'Other operations on ureter', 'ICD9CM_2010'), +('57', 'Operations on urinary bladder', 'ICD9CM_2010'), +('57.0', 'Transurethral clearance of bladder', 'ICD9CM_2010'), +('57.1', 'Cystotomy and cystostomy', 'ICD9CM_2010'), +('57.11', 'Percutaneous aspiration of bladder', 'ICD9CM_2010'), +('57.12', 'Lysis of intraluminal adhesions with incision into bladder', 'ICD9CM_2010'), +('57.17', 'Percutaneous cystostomy', 'ICD9CM_2010'), +('57.18', 'Other suprapubic cystostomy', 'ICD9CM_2010'), +('57.19', 'Other cystotomy', 'ICD9CM_2010'), +('57.2', 'Vesicostomy', 'ICD9CM_2010'), +('57.21', 'Vesicostomy', 'ICD9CM_2010'), +('57.22', 'Revision or closure of vesicostomy', 'ICD9CM_2010'), +('57.3', 'Diagnostic procedures on bladder', 'ICD9CM_2010'), +('57.31', 'Cystoscopy through artificial stoma', 'ICD9CM_2010'), +('57.32', 'Other cystoscopy', 'ICD9CM_2010'), +('57.33', 'Closed [transurethral] biopsy of bladder', 'ICD9CM_2010'), +('57.34', 'Open biopsy of bladder', 'ICD9CM_2010'), +('57.39', 'Other diagnostic procedures on bladder', 'ICD9CM_2010'), +('57.4', 'Transurethral excision or destruction of bladder tissue', 'ICD9CM_2010'), +('57.41', 'Transurethral lysis of intraluminal adhesions', 'ICD9CM_2010'), +('57.49', 'Other transurethral excision or destruction of lesion or tissue of bladder', 'ICD9CM_2010'), +('57.5', 'Other excision or destruction of bladder tissue', 'ICD9CM_2010'), +('57.51', 'Excision of urachus', 'ICD9CM_2010'), +('57.59', 'Open excision or destruction of other lesion or tissue of bladder', 'ICD9CM_2010'), +('57.6', 'Partial cystectomy', 'ICD9CM_2010'), +('57.7', 'Total cystectomy', 'ICD9CM_2010'), +('57.71', 'Radical cystectomy', 'ICD9CM_2010'), +('57.79', 'Other total cystectomy', 'ICD9CM_2010'), +('57.8', 'Other repair of urinary bladder', 'ICD9CM_2010'), +('57.81', 'Suture of laceration of bladder', 'ICD9CM_2010'), +('57.82', 'Closure of cystostomy', 'ICD9CM_2010'), +('57.83', 'Repair of fistula involving bladder and intestine', 'ICD9CM_2010'), +('57.84', 'Repair of other fistula of bladder', 'ICD9CM_2010'), +('57.85', 'Cystourethroplasty and plastic repair of bladder neck', 'ICD9CM_2010'), +('57.86', 'Repair of bladder exstrophy', 'ICD9CM_2010'), +('57.87', 'Reconstruction of urinary bladder', 'ICD9CM_2010'), +('57.88', 'Other anastomosis of bladder', 'ICD9CM_2010'), +('57.89', 'Other repair of bladder', 'ICD9CM_2010'), +('57.9', 'Other operations on bladder', 'ICD9CM_2010'), +('57.91', 'Sphincterotomy of bladder', 'ICD9CM_2010'), +('57.92', 'Dilation of bladder neck', 'ICD9CM_2010'), +('57.93', 'Control of (postoperative) hemorrhage of bladder', 'ICD9CM_2010'), +('57.94', 'Insertion of indwelling urinary catheter', 'ICD9CM_2010'), +('57.95', 'Replacement of indwelling urinary catheter', 'ICD9CM_2010'), +('57.96', 'Implantation of electronic bladder stimulator', 'ICD9CM_2010'), +('57.97', 'Replacement of electronic bladder stimulator', 'ICD9CM_2010'), +('57.98', 'Removal of electronic bladder stimulator', 'ICD9CM_2010'), +('57.99', 'Other operations on bladder', 'ICD9CM_2010'), +('58', 'Operations on urethra', 'ICD9CM_2010'), +('58.0', 'Urethrotomy', 'ICD9CM_2010'), +('58.1', 'Urethral meatotomy', 'ICD9CM_2010'), +('58.2', 'Diagnostic procedures on urethra', 'ICD9CM_2010'), +('58.21', 'Perineal urethroscopy', 'ICD9CM_2010'), +('58.22', 'Other urethroscopy', 'ICD9CM_2010'), +('58.23', 'Biopsy of urethra', 'ICD9CM_2010'), +('58.24', 'Biopsy of periurethral tissue', 'ICD9CM_2010'), +('58.29', 'Other diagnostic procedures on urethra and periurethral tissue', 'ICD9CM_2010'), +('58.3', 'Excision or destruction of lesion or tissue of urethra', 'ICD9CM_2010'), +('58.31', 'Endoscopic excision or destruction of lesion or tissue of urethra', 'ICD9CM_2010'), +('58.39', 'Other local excision or destruction of lesion or tissue of urethra', 'ICD9CM_2010'), +('58.4', 'Repair of urethra', 'ICD9CM_2010'), +('58.41', 'Suture of laceration of urethra', 'ICD9CM_2010'), +('58.42', 'Closure of urethrostomy', 'ICD9CM_2010'), +('58.43', 'Closure of other fistula of urethra', 'ICD9CM_2010'), +('58.44', 'Reanastomosis of urethra', 'ICD9CM_2010'), +('58.45', 'Repair of hypospadias or epispadias', 'ICD9CM_2010'), +('58.46', 'Other reconstruction of urethra', 'ICD9CM_2010'), +('58.47', 'Urethral meatoplasty', 'ICD9CM_2010'), +('58.49', 'Other repair of urethra', 'ICD9CM_2010'), +('58.5', 'Release of urethral stricture', 'ICD9CM_2010'), +('58.6', 'Dilation of urethra', 'ICD9CM_2010'), +('58.9', 'Other operations on urethra and periurethral tissue', 'ICD9CM_2010'), +('58.91', 'Incision of periurethral tissue', 'ICD9CM_2010'), +('58.92', 'Excision of periurethral tissue', 'ICD9CM_2010'), +('58.93', 'Implantation of artificial urinary sphincter (AUS)', 'ICD9CM_2010'), +('58.99', 'Other operations on urethra and periurethral tissue', 'ICD9CM_2010'), +('59', 'Other operations on urinary tract', 'ICD9CM_2010'), +('59.0', 'Dissection of retroperitoneal tissue', 'ICD9CM_2010'), +('59.00', 'Retroperitoneal dissection, not otherwise specified', 'ICD9CM_2010'), +('59.02', 'Other lysis of perirenal or periureteral adhesions', 'ICD9CM_2010'), +('59.03', 'Laparoscopic lysis of perirenal or periureteral adhesions', 'ICD9CM_2010'), +('59.09', 'Other incision of perirenal or periureteral tissue', 'ICD9CM_2010'), +('59.1', 'Incision of perivesical tissue', 'ICD9CM_2010'), +('59.11', 'Other lysis of perivesical adhesions', 'ICD9CM_2010'), +('59.12', 'Laparoscopic lysis of perivesical adhesions', 'ICD9CM_2010'), +('59.19', 'Other incision of perivesical tissue', 'ICD9CM_2010'), +('59.2', 'Diagnostic procedures on perirenal and perivesical tissue', 'ICD9CM_2010'), +('59.21', 'Biopsy of perirenal or perivesical tissue', 'ICD9CM_2010'), +('59.29', 'Other diagnostic procedures on perirenal tissue, perivesical tissue, and retroperitoneum', 'ICD9CM_2010'), +('59.3', 'Plication of urethrovesical junction', 'ICD9CM_2010'), +('59.4', 'Suprapubic sling operation', 'ICD9CM_2010'), +('59.5', 'Retropubic urethral suspension', 'ICD9CM_2010'), +('59.6', 'Paraurethral suspension', 'ICD9CM_2010'), +('59.7', 'Other repair of urinary stress incontinence', 'ICD9CM_2010'), +('59.71', 'Levator muscle operation for urethrovesical suspension', 'ICD9CM_2010'), +('59.72', 'Injection of implant into urethra and/or bladder neck', 'ICD9CM_2010'), +('59.79', 'Other repair of urinary stress incontinence', 'ICD9CM_2010'), +('59.8', 'Ureteral catheterization', 'ICD9CM_2010'), +('59.9', 'Other operations on urinary system', 'ICD9CM_2010'), +('59.91', 'Excision of perirenal or perivesical tissue', 'ICD9CM_2010'), +('59.92', 'Other operations on perirenal or perivesical tissue', 'ICD9CM_2010'), +('59.93', 'Replacement of ureterostomy tube', 'ICD9CM_2010'), +('59.94', 'Replacement of cystostomy tube', 'ICD9CM_2010'), +('59.95', 'Ultrasonic fragmentation of urinary stones', 'ICD9CM_2010'), +('59.99', 'Other operations on urinary system', 'ICD9CM_2010'), +('60', 'Operations on prostate and seminal vesicles', 'ICD9CM_2010'), +('60.0', 'Incision of prostate', 'ICD9CM_2010'), +('60.1', 'Diagnostic procedures on prostate and seminal vesicles', 'ICD9CM_2010'), +('60.11', 'Closed [percutaneous] [needle] biopsy of prostate', 'ICD9CM_2010'), +('60.12', 'Open biopsy of prostate', 'ICD9CM_2010'), +('60.13', 'Closed [percutaneous] biopsy of seminal vesicles', 'ICD9CM_2010'), +('60.14', 'Open biopsy of seminal vesicles', 'ICD9CM_2010'), +('60.15', 'Biopsy of periprostatic tissue', 'ICD9CM_2010'), +('60.18', 'Other diagnostic procedures on prostate and periprostatic tissue', 'ICD9CM_2010'), +('60.19', 'Other diagnostic procedures on seminal vesicles', 'ICD9CM_2010'), +('60.2', 'Transurethral prostatectomy', 'ICD9CM_2010'), +('60.21', 'Transurethral (ultrasound) guided laser induced prostatectomy (TULIP)', 'ICD9CM_2010'), +('60.29', 'Other transurethral prostatectomy', 'ICD9CM_2010'), +('60.3', 'Suprapubic prostatectomy', 'ICD9CM_2010'), +('60.4', 'Retropubic prostatectomy', 'ICD9CM_2010'), +('60.5', 'Radical prostatectomy', 'ICD9CM_2010'), +('60.6', 'Other prostatectomy', 'ICD9CM_2010'), +('60.61', 'Local excision of lesion of prostate', 'ICD9CM_2010'), +('60.62', 'Perineal prostatectomy', 'ICD9CM_2010'), +('60.69', 'Other prostatectomy', 'ICD9CM_2010'), +('60.7', 'Operations on seminal vesicles', 'ICD9CM_2010'), +('60.71', 'Percutaneous aspiration of seminal vesicle', 'ICD9CM_2010'), +('60.72', 'Incision of seminal vesicle', 'ICD9CM_2010'), +('60.73', 'Excision of seminal vesicle', 'ICD9CM_2010'), +('60.79', 'Other operations on seminal vesicles', 'ICD9CM_2010'), +('60.8', 'Incision or excision of periprostatic tissue', 'ICD9CM_2010'), +('60.81', 'Incision of periprostatic tissue', 'ICD9CM_2010'), +('60.82', 'Excision of periprostatic tissue', 'ICD9CM_2010'), +('60.9', 'Other operations on prostate', 'ICD9CM_2010'), +('60.91', 'Percutaneous aspiration of prostate', 'ICD9CM_2010'), +('60.92', 'Injection into prostate test link', 'ICD9CM_2010'), +('60.93', 'Repair of prostate', 'ICD9CM_2010'), +('60.94', 'Control of (postoperative) hemorrhage of prostate', 'ICD9CM_2010'), +('60.95', 'Transurethral balloon dilation of the prostatic urethra', 'ICD9CM_2010'), +('60.96', 'Transurethral destruction of prostate tissue by microwave thermotherapy', 'ICD9CM_2010'), +('60.97', 'Other transurethral destruction of prostate tissue by other thermotherapy', 'ICD9CM_2010'), +('60.99', 'Other operations on prostate', 'ICD9CM_2010'), +('61', 'Operations on scrotum and tunica vaginalis', 'ICD9CM_2010'), +('61.0', 'Incision and drainage of scrotum and tunica vaginalis', 'ICD9CM_2010'), +('61.1', 'Diagnostic procedures on scrotum and tunica vaginalis', 'ICD9CM_2010'), +('61.11', 'Biopsy of scrotum or tunica vaginalis', 'ICD9CM_2010'), +('61.19', 'Other diagnostic procedures on scrotum and tunica vaginalis', 'ICD9CM_2010'), +('61.2', 'Excision of hydrocele (of tunica vaginalis)', 'ICD9CM_2010'), +('61.3', 'Excision or destruction of lesion or tissue of scrotum', 'ICD9CM_2010'), +('61.4', 'Repair of scrotum and tunica vaginalis', 'ICD9CM_2010'), +('61.41', 'Suture of laceration of scrotum and tunica vaginalis', 'ICD9CM_2010'), +('61.42', 'Repair of scrotal fistula', 'ICD9CM_2010'), +('61.49', 'Other repair of scrotum and tunica vaginalis', 'ICD9CM_2010'), +('61.9', 'Other operations on scrotum and tunica vaginalis', 'ICD9CM_2010'), +('61.91', 'Percutaneous aspiration of tunica vaginalis', 'ICD9CM_2010'), +('61.92', 'Excision of lesion of tunica vaginalis other than hydrocele', 'ICD9CM_2010'), +('61.99', 'Other operations on scrotum and tunica vaginalis', 'ICD9CM_2010'), +('62', 'Operations on testes', 'ICD9CM_2010'), +('62.0', 'Incision of testis', 'ICD9CM_2010'), +('62.1', 'Diagnostic procedures on testes', 'ICD9CM_2010'), +('62.11', 'Closed (percutaneous) (needle) biopsy of testis', 'ICD9CM_2010'), +('62.12', 'Open biopsy of testis', 'ICD9CM_2010'), +('62.19', 'Other diagnostic procedures on testes', 'ICD9CM_2010'), +('62.2', 'Excision or destruction of testicular lesion', 'ICD9CM_2010'), +('62.3', 'Unilateral orchiectomy', 'ICD9CM_2010'), +('62.4', 'Bilateral orchiectomy', 'ICD9CM_2010'), +('62.41', 'Removal of both testes at same operative episode', 'ICD9CM_2010'), +('62.42', 'Removal of remaining testis', 'ICD9CM_2010'), +('62.5', 'Orchiopexy', 'ICD9CM_2010'), +('62.6', 'Repair of testes', 'ICD9CM_2010'), +('62.61', 'Suture of laceration of testis', 'ICD9CM_2010'), +('62.69', 'Other repair of testis', 'ICD9CM_2010'), +('62.7', 'Insertion of testicular prosthesis', 'ICD9CM_2010'), +('62.9', 'Other operations on testes', 'ICD9CM_2010'), +('62.91', 'Aspiration of testis', 'ICD9CM_2010'), +('62.92', 'Injection of therapeutic substance into testis', 'ICD9CM_2010'), +('62.99', 'Other operations on testes', 'ICD9CM_2010'), +('63', 'Operations on spermatic cord, epididymis, and vas deferens', 'ICD9CM_2010'), +('63.0', 'Diagnostic procedures on spermatic cord, epididymis, and vas deferens', 'ICD9CM_2010'), +('63.01', 'Biopsy of spermatic cord, epididymis, or vas deferens', 'ICD9CM_2010'), +('63.09', 'Other diagnostic procedures on spermatic cord, epididymis, and vas deferens', 'ICD9CM_2010'), +('63.1', 'Excision of varicocele and hydrocele of spermatic cord', 'ICD9CM_2010'), +('63.2', 'Excision of cyst of epididymis', 'ICD9CM_2010'), +('63.3', 'Excision of other lesion or tissue of spermatic cord and epididymis', 'ICD9CM_2010'), +('63.4', 'Epididymectomy', 'ICD9CM_2010'), +('63.5', 'Repair of spermatic cord and epididymis', 'ICD9CM_2010'), +('63.51', 'Suture of laceration of spermatic cord and epididymis', 'ICD9CM_2010'), +('63.52', 'Reduction of torsion of testis or spermatic cord', 'ICD9CM_2010'), +('63.53', 'Transplantation of spermatic cord', 'ICD9CM_2010'), +('63.59', 'Other repair of spermatic cord and epididymis', 'ICD9CM_2010'), +('63.6', 'Vasotomy', 'ICD9CM_2010'), +('63.7', 'Vasectomy and ligation of vas deferens', 'ICD9CM_2010'), +('63.70', 'Male sterilization procedure, not otherwise specified', 'ICD9CM_2010'), +('63.71', 'Ligation of vas deferens', 'ICD9CM_2010'), +('63.72', 'Ligation of spermatic cord', 'ICD9CM_2010'), +('63.73', 'Vasectomy', 'ICD9CM_2010'), +('63.8', 'Repair of vas deferens and epididymis', 'ICD9CM_2010'), +('63.81', 'Suture of laceration of vas deferens and epididymis', 'ICD9CM_2010'), +('63.82', 'Reconstruction of surgically divided vas deferens', 'ICD9CM_2010'), +('63.83', 'Epididymovasostomy', 'ICD9CM_2010'), +('63.84', 'Removal of ligature from vas deferens', 'ICD9CM_2010'), +('63.85', 'Removal of valve from vas deferens', 'ICD9CM_2010'), +('63.89', 'Other repair of vas deferens and epididymis', 'ICD9CM_2010'), +('63.9', 'Other operations on spermatic cord, epididymis, and vas deferens', 'ICD9CM_2010'), +('63.91', 'Aspiration of spermatocele', 'ICD9CM_2010'), +('63.92', 'Epididymotomy', 'ICD9CM_2010'), +('63.93', 'Incision of spermatic cord', 'ICD9CM_2010'), +('63.94', 'Lysis of adhesions of spermatic cord', 'ICD9CM_2010'), +('63.95', 'Insertion of valve in vas deferens', 'ICD9CM_2010'), +('63.99', 'Other operations on spermatic card, epididymis, and vas deferens', 'ICD9CM_2010'), +('64', 'Operations on penis', 'ICD9CM_2010'), +('64.0', 'Circumcision', 'ICD9CM_2010'), +('64.1', 'Diagnostic procedures on the penis', 'ICD9CM_2010'), +('64.11', 'Biopsy of penis', 'ICD9CM_2010'), +('64.19', 'Other diagnostic procedures on penis', 'ICD9CM_2010'), +('64.2', 'Local excision or destruction of lesion of penis', 'ICD9CM_2010'), +('64.3', 'Amputation of penis', 'ICD9CM_2010'), +('64.4', 'Repair and plastic operation on penis', 'ICD9CM_2010'), +('64.41', 'Suture of laceration of penis', 'ICD9CM_2010'), +('64.42', 'Release of chordee', 'ICD9CM_2010'), +('64.43', 'Construction of penis', 'ICD9CM_2010'), +('64.44', 'Reconstruction of penis', 'ICD9CM_2010'), +('64.45', 'Replantation of penis', 'ICD9CM_2010'), +('64.49', 'Other repair of penis', 'ICD9CM_2010'), +('64.5', 'Operations for sex transformation, not elsewhere classified', 'ICD9CM_2010'), +('64.9', 'Other operations on male genital organs', 'ICD9CM_2010'), +('64.91', 'Dorsal or lateral slit of prepuce', 'ICD9CM_2010'), +('64.92', 'Incision of penis', 'ICD9CM_2010'), +('64.93', 'Division of penile adhesions', 'ICD9CM_2010'), +('64.94', 'Fitting of external prosthesis of penis', 'ICD9CM_2010'), +('64.95', 'Insertion or replacement of non-inflatable penile prosthesis', 'ICD9CM_2010'), +('64.96', 'Removal of internal prosthesis of penis', 'ICD9CM_2010'), +('64.97', 'Insertion or replacement of inflatable penile prosthesis', 'ICD9CM_2010'), +('64.98', 'Other operations on penis', 'ICD9CM_2010'), +('64.99', 'Other operations on male genital organs', 'ICD9CM_2010'), +('65', 'Operations on ovary', 'ICD9CM_2010'), +('65.0', 'Oophorotomy', 'ICD9CM_2010'), +('65.01', 'Laparoscopic oophorotomy', 'ICD9CM_2010'), +('65.09', 'Other oophorotomy', 'ICD9CM_2010'), +('65.1', 'Diagnostic procedures on ovaries', 'ICD9CM_2010'), +('65.11', 'Aspiration biopsy of ovary', 'ICD9CM_2010'), +('65.12', 'Other biopsy of ovary', 'ICD9CM_2010'), +('65.13', 'Laparoscopic biopsy of ovary', 'ICD9CM_2010'), +('65.14', 'Other laparoscopic diagnostic procedures on ovaries', 'ICD9CM_2010'), +('65.19', 'Other diagnostic procedures on ovaries', 'ICD9CM_2010'), +('65.2', 'Local excision or destruction of ovarian lesion or tissue', 'ICD9CM_2010'), +('65.21', 'Marsupialization of ovarian cyst', 'ICD9CM_2010'), +('65.22', 'Wedge resection of ovary', 'ICD9CM_2010'), +('65.23', 'Laparoscopic marsupialization of ovarian cyst', 'ICD9CM_2010'), +('65.24', 'Laparoscopic wedge resection of ovary', 'ICD9CM_2010'), +('65.25', 'Other laparoscopic local excision or destruction of ovary', 'ICD9CM_2010'), +('65.29', 'Other local excision or destruction of ovary', 'ICD9CM_2010'), +('65.3', 'Unilateral oophorectomy', 'ICD9CM_2010'), +('65.31', 'Laparoscopic unilateral oophorectomy', 'ICD9CM_2010'), +('65.39', 'Other unilateral oophorectomy', 'ICD9CM_2010'), +('65.4', 'Unilateral salpingo-oophorectomy', 'ICD9CM_2010'), +('65.41', 'Laparoscopic unilateral salpingo-oophorectomy', 'ICD9CM_2010'), +('65.49', 'Other unilateral salpingo-oophorectomy', 'ICD9CM_2010'), +('65.5', 'Bilateral oophorectomy', 'ICD9CM_2010'), +('65.51', 'Other removal of both ovaries at same operative episode', 'ICD9CM_2010'), +('65.52', 'Other removal of remaining ovary', 'ICD9CM_2010'), +('65.53', 'Laparoscopic removal of both ovaries at same operative episode', 'ICD9CM_2010'), +('65.54', 'Laparoscopic removal of remaining ovary', 'ICD9CM_2010'), +('65.6', 'Bilateral salpingo-oophorectomy', 'ICD9CM_2010'), +('65.61', 'Other removal of both ovaries and tubes at same operative episode', 'ICD9CM_2010'), +('65.62', 'Other removal of remaining ovary and tube', 'ICD9CM_2010'), +('65.63', 'Laparoscopic removal of both ovaries and tubes at the same operative episode', 'ICD9CM_2010'), +('65.64', 'Laparoscopic removal of remaining ovary and tube', 'ICD9CM_2010'), +('65.7', 'Repair of ovary', 'ICD9CM_2010'), +('65.71', 'Other simple suture of ovary', 'ICD9CM_2010'), +('65.72', 'Other reimplantation of ovary', 'ICD9CM_2010'), +('65.73', 'Other salpingo-oophoroplasty', 'ICD9CM_2010'), +('65.74', 'Laparoscopic simple suture of ovary', 'ICD9CM_2010'), +('65.75', 'Laparoscopic reimplantation of ovary', 'ICD9CM_2010'), +('65.76', 'Laparoscopic salpingo-oophoroplasty', 'ICD9CM_2010'), +('65.79', 'Other repair of ovary', 'ICD9CM_2010'), +('65.8', 'Lysis of adhesions of ovary and fallopian tube', 'ICD9CM_2010'), +('65.81', 'Laparoscopic lysis of adhesions of ovary and fallopian tube', 'ICD9CM_2010'), +('65.89', 'Other lysis of adhesions of ovary and fallopian tube', 'ICD9CM_2010'), +('65.9', 'Other operations on ovary', 'ICD9CM_2010'), +('65.91', 'Aspiration of ovary', 'ICD9CM_2010'), +('65.92', 'Transplantation of ovary', 'ICD9CM_2010'), +('65.93', 'Manual rupture of ovarian cyst', 'ICD9CM_2010'), +('65.94', 'Ovarian denervation', 'ICD9CM_2010'), +('65.95', 'Release of torsion of ovary', 'ICD9CM_2010'), +('65.99', 'Other operations on ovary', 'ICD9CM_2010'), +('66', 'Operations on fallopian tubes', 'ICD9CM_2010'), +('66.0', 'Salpingotomy and salpingostomy', 'ICD9CM_2010'), +('66.01', 'Salpingotomy', 'ICD9CM_2010'), +('66.02', 'Salpingostomy', 'ICD9CM_2010'), +('66.1', 'Diagnostic procedures on fallopian tubes', 'ICD9CM_2010'), +('66.11', 'Biopsy of fallopian tube', 'ICD9CM_2010'), +('66.19', 'Other diagnostic procedures on fallopian tubes', 'ICD9CM_2010'), +('66.2', 'Bilateral endoscopic destruction or occlusion of fallopian tubes', 'ICD9CM_2010'), +('66.21', 'Bilateral endoscopic ligation and crushing of fallopian tubes', 'ICD9CM_2010'), +('66.22', 'Bilateral endoscopic ligation and division of fallopian tubes', 'ICD9CM_2010'), +('66.29', 'Other bilateral endoscopic destruction or occlusion of fallopian tubes', 'ICD9CM_2010'), +('66.3', 'Other bilateral destruction or occlusion of fallopian tubes', 'ICD9CM_2010'), +('66.31', 'Other bilateral ligation and crushing of fallopian tubes', 'ICD9CM_2010'), +('66.32', 'Other bilateral ligation and division of fallopian tubes', 'ICD9CM_2010'), +('66.39', 'Other bilateral destruction or occlusion of fallopian tubes', 'ICD9CM_2010'), +('66.4', 'Total unilateral salpingectomy', 'ICD9CM_2010'), +('66.5', 'Total bilateral salpingectomy', 'ICD9CM_2010'), +('66.51', 'Removal of both fallopian tubes at same operative episode', 'ICD9CM_2010'), +('66.52', 'Removal of remaining fallopian tube', 'ICD9CM_2010'), +('66.6', 'Other salpingectomy', 'ICD9CM_2010'), +('66.61', 'Excision or destruction of lesion of fallopian tube', 'ICD9CM_2010'), +('66.62', 'Salpingectomy with removal of tubal pregnancy', 'ICD9CM_2010'), +('66.63', 'Bilateral partial salpingectomy, not otherwise specified', 'ICD9CM_2010'), +('66.69', 'Other partial salpingectomy', 'ICD9CM_2010'), +('66.7', 'Repair of fallopian tube', 'ICD9CM_2010'), +('66.71', 'Simple suture of fallopian tube', 'ICD9CM_2010'), +('66.72', 'Salpingo-oophorostomy', 'ICD9CM_2010'), +('66.73', 'Salpingo-salpingostomy', 'ICD9CM_2010'), +('66.74', 'Salpingo-uterostomy', 'ICD9CM_2010'), +('66.79', 'Other repair of fallopian tube', 'ICD9CM_2010'), +('66.8', 'Insufflation of fallopian tube', 'ICD9CM_2010'), +('66.9', 'Other operations on fallopian tubes', 'ICD9CM_2010'), +('66.91', 'Aspiration of fallopian tube', 'ICD9CM_2010'), +('66.92', 'Unilateral destruction or occlusion of fallopian tube', 'ICD9CM_2010'), +('66.93', 'Implantation or replacement of prosthesis of fallopian tube', 'ICD9CM_2010'), +('66.94', 'Removal of prosthesis of fallopian tube', 'ICD9CM_2010'), +('66.95', 'Insufflation of therapeutic agent into fallopian tubes', 'ICD9CM_2010'), +('66.96', 'Dilation of fallopian tube', 'ICD9CM_2010'), +('66.97', 'Burying of fimbriae in uterine wall', 'ICD9CM_2010'), +('66.99', 'Other operations on fallopian tubes', 'ICD9CM_2010'), +('67', 'Operations on cervix', 'ICD9CM_2010'), +('67.0', 'Dilation of cervical canal', 'ICD9CM_2010'), +('67.1', 'Diagnostic procedures on cervix', 'ICD9CM_2010'), +('67.11', 'Endocervical biopsy', 'ICD9CM_2010'), +('67.12', 'Other cervical biopsy', 'ICD9CM_2010'), +('67.19', 'Other diagnostic procedures on cervix', 'ICD9CM_2010'), +('67.2', 'Conization of cervix', 'ICD9CM_2010'), +('67.3', 'Other excision or destruction of lesion or tissue of cervix', 'ICD9CM_2010'), +('67.31', 'Marsupialization of cervical cyst', 'ICD9CM_2010'), +('67.32', 'Destruction of lesion of cervix by cauterization', 'ICD9CM_2010'), +('67.33', 'Destruction of lesion of cervix by cryosurgery', 'ICD9CM_2010'), +('67.39', 'Other excision or destruction of lesion or tissue of cervix', 'ICD9CM_2010'), +('67.4', 'Amputation of cervix', 'ICD9CM_2010'), +('67.5', 'Repair of internal cervical os', 'ICD9CM_2010'), +('67.51', 'Transabdominal cerclage of cervix', 'ICD9CM_2010'), +('67.59', 'Other repair of internal cervical os', 'ICD9CM_2010'), +('67.6', 'Other repair of cervix', 'ICD9CM_2010'), +('67.61', 'Suture of laceration of cervix', 'ICD9CM_2010'), +('67.62', 'Repair of fistula of cervix', 'ICD9CM_2010'), +('67.69', 'Other repair of cervix', 'ICD9CM_2010'), +('68', 'Other incision and excision of uterus', 'ICD9CM_2010'), +('68.0', 'Hysterotomy', 'ICD9CM_2010'), +('68.1', 'Diagnostic procedures on uterus and supporting structures', 'ICD9CM_2010'), +('68.11', 'Digital examination of uterus', 'ICD9CM_2010'), +('68.12', 'Hysteroscopy', 'ICD9CM_2010'), +('68.13', 'Open biopsy of uterus', 'ICD9CM_2010'), +('68.14', 'Open biopsy of uterine ligaments', 'ICD9CM_2010'), +('68.15', 'Closed biopsy of uterine ligaments', 'ICD9CM_2010'), +('68.16', 'Closed biopsy of uterus', 'ICD9CM_2010'), +('68.19', 'Other diagnostic procedures on uterus and supporting structures', 'ICD9CM_2010'), +('68.2', 'Excision or destruction of lesion or tissue of uterus', 'ICD9CM_2010'), +('68.21', 'Division of endometrial synechiae', 'ICD9CM_2010'), +('68.22', 'Incision or excision of congenital septum of uterus', 'ICD9CM_2010'), +('68.23', 'Endometrial ablation', 'ICD9CM_2010'), +('68.29', 'Other excision or destruction of lesion of uterus', 'ICD9CM_2010'), +('68.3', 'Subtotal abdominal hysterectomy', 'ICD9CM_2010'), +('68.31', 'Laparoscopic supracervical hysterectomy LSH', 'ICD9CM_2010'), +('68.39', 'Other and unspecified subtotal abdominal hysterectomy', 'ICD9CM_2010'), +('68.4', 'Total abdominal hysterectomy', 'ICD9CM_2010'), +('68.41', 'Laparoscopic total abdominal hysterectomy', 'ICD9CM_2010'), +('68.49', 'Other and unspecified total abdominal hysterectomy', 'ICD9CM_2010'), +('68.5', 'Vaginal hysterectomy', 'ICD9CM_2010'), +('68.51', 'Laparoscopically assisted vaginal hysterectomy LAVH', 'ICD9CM_2010'), +('68.59', 'Other and unspecified vaginal hysterectomy', 'ICD9CM_2010'), +('68.6', 'Radical abdominal hysterectomy', 'ICD9CM_2010'), +('68.61', 'Laparoscopic radical abdominal hysterectomy', 'ICD9CM_2010'), +('68.69', 'Other and unspecified radical abdominal hysterectomy', 'ICD9CM_2010'), +('68.7', 'Radical vaginal hysterectomy', 'ICD9CM_2010'), +('68.71', 'Laparoscopic radical vaginal hysterectomy LRVH', 'ICD9CM_2010'), +('68.79', 'Other and unspecified radical vaginal hysterectomy', 'ICD9CM_2010'), +('68.8', 'Pelvic evisceration', 'ICD9CM_2010'), +('68.9', 'Other and unspecified hysterectomy', 'ICD9CM_2010'), +('69', 'Other operations on uterus and supporting structures', 'ICD9CM_2010'), +('69.0', 'Dilation and curettage of uterus', 'ICD9CM_2010'), +('69.01', 'Dilation and curettage for termination of pregnancy', 'ICD9CM_2010'), +('69.02', 'Dilation and curettage following delivery or abortion', 'ICD9CM_2010'), +('69.09', 'Other dilation and curettage of uterus', 'ICD9CM_2010'), +('69.1', 'Excision or destruction of lesion or tissue of uterus and supporting structures', 'ICD9CM_2010'), +('69.19', 'Other excision or destruction of uterus and supporting structures', 'ICD9CM_2010'), +('69.2', 'Repair of uterine supporting structures', 'ICD9CM_2010'), +('69.21', 'Interposition operation', 'ICD9CM_2010'), +('69.22', 'Other uterine suspension', 'ICD9CM_2010'), +('69.23', 'Vaginal repair of chronic inversion of uterus', 'ICD9CM_2010'), +('69.29', 'Other repair of uterus and supporting structures', 'ICD9CM_2010'), +('69.3', 'Paracervical uterine denervation', 'ICD9CM_2010'), +('69.4', 'Uterine repair', 'ICD9CM_2010'), +('69.41', 'Suture of laceration of uterus', 'ICD9CM_2010'), +('69.42', 'Closure of fistula of uterus', 'ICD9CM_2010'), +('69.49', 'Other repair of uterus', 'ICD9CM_2010'), +('69.5', 'Aspiration curettage of uterus', 'ICD9CM_2010'), +('69.51', 'Aspiration curettage of uterus for termination of pregnancy', 'ICD9CM_2010'), +('69.52', 'Aspiration curettage following delivery or abortion', 'ICD9CM_2010'), +('69.59', 'Other aspiration curettage of uterus', 'ICD9CM_2010'), +('69.6', 'Menstrual extraction or regulation', 'ICD9CM_2010'), +('69.7', 'Insertion of intrauterine contraceptive device', 'ICD9CM_2010'), +('69.9', 'Other operations on uterus, cervix, and supporting structures', 'ICD9CM_2010'), +('69.91', 'Insertion of therapeutic device into uterus', 'ICD9CM_2010'), +('69.92', 'Artificial insemination', 'ICD9CM_2010'), +('69.93', 'Insertion of laminaria', 'ICD9CM_2010'), +('69.94', 'Manual replacement of inverted uterus', 'ICD9CM_2010'), +('69.95', 'Incision of cervix', 'ICD9CM_2010'), +('69.96', 'Removal of cerclage material from cervix', 'ICD9CM_2010'), +('69.97', 'Removal of other penetrating foreign body from cervix', 'ICD9CM_2010'), +('69.98', 'Other operations on supporting structures of uterus', 'ICD9CM_2010'), +('69.99', 'Other operations on cervix and uterus', 'ICD9CM_2010'), +('70', 'Operations on vagina and cul-de-sac', 'ICD9CM_2010'), +('70.0', 'Culdocentesis', 'ICD9CM_2010'), +('70.1', 'Incision of vagina and cul-de-sac', 'ICD9CM_2010'), +('70.11', 'Hymenotomy', 'ICD9CM_2010'), +('70.12', 'Culdotomy', 'ICD9CM_2010'), +('70.13', 'Lysis of intraluminal adhesions of vagina', 'ICD9CM_2010'), +('70.14', 'Other vaginotomy', 'ICD9CM_2010'), +('70.2', 'Diagnostic procedures on vagina and cul-de-sac', 'ICD9CM_2010'), +('70.21', 'Vaginoscopy', 'ICD9CM_2010'), +('70.22', 'Culdoscopy', 'ICD9CM_2010'), +('70.23', 'Biopsy of cul-de-sac', 'ICD9CM_2010'), +('70.24', 'Vaginal biopsy', 'ICD9CM_2010'), +('70.29', 'Other diagnostic procedures on vagina and cul-de-sac', 'ICD9CM_2010'), +('70.3', 'Local excision or destruction of vagina and cul-de-sac', 'ICD9CM_2010'), +('70.31', 'Hymenectomy', 'ICD9CM_2010'), +('70.32', 'Excision or destruction of lesion of cul-de-sac', 'ICD9CM_2010'), +('70.33', 'Excision or destruction of lesion of vagina', 'ICD9CM_2010'), +('70.4', 'Obliteration and total excision of vagina', 'ICD9CM_2010'), +('70.5', 'Repair of cystocele and rectocele', 'ICD9CM_2010'), +('70.50', 'Repair of cystocele and rectocele', 'ICD9CM_2010'), +('70.51', 'Repair of cystocele', 'ICD9CM_2010'), +('70.52', 'Repair of rectocele', 'ICD9CM_2010'), +('70.53', 'Repair of cystocele and rectocele with graft or prosthesis', 'ICD9CM_2010'), +('70.54', 'Repair of cystocele with graft or prosthesis', 'ICD9CM_2010'), +('70.55', 'Repair of rectocele with graft or prosthesis', 'ICD9CM_2010'), +('70.6', 'Vaginal construction and reconstruction', 'ICD9CM_2010'), +('70.61', 'Vaginal construction', 'ICD9CM_2010'), +('70.62', 'Vaginal reconstruction', 'ICD9CM_2010'), +('70.63', 'Vaginal construction with graft or prosthesis', 'ICD9CM_2010'), +('70.64', 'Vaginal reconstruction with graft or prosthesis', 'ICD9CM_2010'), +('70.7', 'Other repair of vagina', 'ICD9CM_2010'), +('70.71', 'Suture of laceration of vagina', 'ICD9CM_2010'), +('70.72', 'Repair of colovaginal fistula', 'ICD9CM_2010'), +('70.73', 'Repair of rectovaginal fistula', 'ICD9CM_2010'), +('70.74', 'Repair of other vaginoenteric fistula', 'ICD9CM_2010'), +('70.75', 'Repair of other fistula of vagina', 'ICD9CM_2010'), +('70.76', 'Hymenorrhaphy', 'ICD9CM_2010'), +('70.77', 'Vaginal suspension and fixation', 'ICD9CM_2010'), +('70.78', 'Vaginal suspension and fixation with graft or prosthesis', 'ICD9CM_2010'), +('70.79', 'Other repair of vagina', 'ICD9CM_2010'), +('70.8', 'Obliteration of vaginal vault', 'ICD9CM_2010'), +('70.9', 'Other operations on vagina and cul-de-sac', 'ICD9CM_2010'), +('70.91', 'Other operations on vagina', 'ICD9CM_2010'), +('70.92', 'Other operations on cul-de-sac', 'ICD9CM_2010'), +('70.93', 'Other operations on cul-de-sac with graft or prosthesis', 'ICD9CM_2010'), +('70.94', 'Insertion of biological graft', 'ICD9CM_2010'), +('70.95', 'Insertion of synthetic graft or prosthesis', 'ICD9CM_2010'), +('71', 'Operations on vulva and perineum', 'ICD9CM_2010'), +('71.0', 'Incision of vulva and perineum', 'ICD9CM_2010'), +('71.01', 'Lysis of vulvar adhesions', 'ICD9CM_2010'), +('71.09', 'Other incision of vulva and perineum', 'ICD9CM_2010'), +('71.1', 'Diagnostic procedures on vulva', 'ICD9CM_2010'), +('71.11', 'Biopsy of vulva', 'ICD9CM_2010'), +('71.19', 'Other diagnostic procedures on vulva', 'ICD9CM_2010'), +('71.2', 'Operations on Bartholin\'s gland', 'ICD9CM_2010'), +('71.21', 'Percutaneous aspiration of Bartholin\'s gland (cyst)', 'ICD9CM_2010'), +('71.22', 'Incision of Bartholin\'s gland (cyst)', 'ICD9CM_2010'), +('71.23', 'Marsupialization of Bartholin\'s gland (cyst)', 'ICD9CM_2010'), +('71.24', 'Excision or other destruction of Bartholin\'s gland (cyst)', 'ICD9CM_2010'), +('71.29', 'Other operations on Bartholin\'s gland', 'ICD9CM_2010'), +('71.3', 'Other local excision or destruction of vulva and perineum', 'ICD9CM_2010'), +('71.4', 'Operations on clitoris', 'ICD9CM_2010'), +('71.5', 'Radical vulvectomy', 'ICD9CM_2010'), +('71.6', 'Other vulvectomy', 'ICD9CM_2010'), +('71.61', 'Unilateral vulvectomy', 'ICD9CM_2010'), +('71.62', 'Bilateral vulvectomy', 'ICD9CM_2010'), +('71.7', 'Repair of vulva and perineum', 'ICD9CM_2010'), +('71.71', 'Suture of laceration of vulva or perineum', 'ICD9CM_2010'), +('71.72', 'Repair of fistula of vulva or perineum', 'ICD9CM_2010'), +('71.79', 'Other repair of vulva and perineum', 'ICD9CM_2010'), +('71.8', 'Other operations on vulva', 'ICD9CM_2010'), +('71.9', 'Other operations on female genital organs', 'ICD9CM_2010'), +('72', 'Forceps, vacuum, and breech delivery', 'ICD9CM_2010'), +('72.0', 'Low forceps operation', 'ICD9CM_2010'), +('72.1', 'Low forceps operation with episiotomy', 'ICD9CM_2010'), +('72.2', 'Mid forceps operation', 'ICD9CM_2010'), +('72.21', 'Mid forceps operation with episiotomy', 'ICD9CM_2010'), +('72.29', 'Other mid forceps operation', 'ICD9CM_2010'), +('72.3', 'High forceps operation', 'ICD9CM_2010'), +('72.31', 'High forceps operation with episiotomy', 'ICD9CM_2010'), +('72.39', 'Other high forceps operation', 'ICD9CM_2010'), +('72.4', 'Forceps rotation of fetal head', 'ICD9CM_2010'), +('72.5', 'Breech extraction', 'ICD9CM_2010'), +('72.51', 'Partial breech extraction with forceps to aftercoming head', 'ICD9CM_2010'), +('72.52', 'Other partial breech extraction', 'ICD9CM_2010'), +('72.53', 'Total breech extraction with forceps to aftercoming head', 'ICD9CM_2010'), +('72.54', 'Other total breech extraction', 'ICD9CM_2010'), +('72.6', 'Forceps application to aftercoming head', 'ICD9CM_2010'), +('72.7', 'Vacuum extraction', 'ICD9CM_2010'), +('72.71', 'Vacuum extraction with episiotomy', 'ICD9CM_2010'), +('72.79', 'Other vacuum extraction', 'ICD9CM_2010'), +('72.8', 'Other specified instrumental delivery', 'ICD9CM_2010'), +('72.9', 'Unspecified instrumental delivery', 'ICD9CM_2010'), +('73', 'Other procedures inducing or assisting delivery', 'ICD9CM_2010'), +('73.0', 'Artificial rupture of membranes', 'ICD9CM_2010'), +('73.01', 'Induction of labor by artificial rupture of membranes', 'ICD9CM_2010'), +('73.09', 'Other artificial rupture of membranes', 'ICD9CM_2010'), +('73.1', 'Other surgical induction of labor', 'ICD9CM_2010'), +('73.2', 'Internal and combined version and extraction', 'ICD9CM_2010'), +('73.21', 'Internal and combined version without extraction', 'ICD9CM_2010'), +('73.22', 'Internal and combined version with extraction', 'ICD9CM_2010'), +('73.3', 'Failed forceps', 'ICD9CM_2010'), +('73.4', 'Medical induction of labor', 'ICD9CM_2010'), +('73.5', 'Manually assisted delivery', 'ICD9CM_2010'), +('73.51', 'Manual rotation of fetal head', 'ICD9CM_2010'), +('73.59', 'Other manually assisted delivery', 'ICD9CM_2010'), +('73.6', 'Episiotomy', 'ICD9CM_2010'), +('73.8', 'Operations on fetus to facilitate delivery', 'ICD9CM_2010'), +('73.9', 'Other operations assisting delivery', 'ICD9CM_2010'), +('73.91', 'External version', 'ICD9CM_2010'), +('73.92', 'Replacement of prolapsed umbilical cord', 'ICD9CM_2010'), +('73.93', 'Incision of cervix to assist delivery', 'ICD9CM_2010'), +('73.94', 'Pubiotomy to assist delivery', 'ICD9CM_2010'), +('73.99', 'Other operations to assist delivery', 'ICD9CM_2010'), +('74', 'Cesarean section and removal of fetus', 'ICD9CM_2010'), +('74.0', 'Classical cesarean section', 'ICD9CM_2010'), +('74.1', 'Low cervical cesarean section', 'ICD9CM_2010'), +('74.2', 'Extraperitoneal cesarean section', 'ICD9CM_2010'), +('74.3', 'Removal of extratubal ectopic pregnancy', 'ICD9CM_2010'), +('74.4', 'Cesarean section of other specified type', 'ICD9CM_2010'), +('74.9', 'Cesarean section of unspecified type', 'ICD9CM_2010'), +('74.91', 'Hysterotomy to terminate pregnancy', 'ICD9CM_2010'), +('74.99', 'Other cesarean section of unspecified type', 'ICD9CM_2010'), +('75', 'Other obstetric operations', 'ICD9CM_2010'), +('75.0', 'Intra-amniotic injection for abortion', 'ICD9CM_2010'), +('75.1', 'Diagnostic amniocentesis', 'ICD9CM_2010'), +('75.2', 'Intrauterine transfusion', 'ICD9CM_2010'), +('75.3', 'Other intrauterine operations on fetus and amnion', 'ICD9CM_2010'), +('75.31', 'Amnioscopy', 'ICD9CM_2010'), +('75.32', 'Fetal EKG (scalp)', 'ICD9CM_2010'), +('75.33', 'Fetal blood sampling and biopsy', 'ICD9CM_2010'), +('75.34', 'Other fetal monitoring', 'ICD9CM_2010'), +('75.35', 'Other diagnostic procedures on fetus and amnion', 'ICD9CM_2010'), +('75.36', 'Correction of fetal defect', 'ICD9CM_2010'), +('75.37', 'Amnioinfusion', 'ICD9CM_2010'), +('75.38', 'Fetal pulse oximetry', 'ICD9CM_2010'), +('75.4', 'Manual removal of retained placenta', 'ICD9CM_2010'), +('75.5', 'Repair of current obstetric laceration of uterus', 'ICD9CM_2010'), +('75.50', 'Repair of current obstetric laceration of uterus, not otherwise specified', 'ICD9CM_2010'), +('75.51', 'Repair of current obstetric laceration of cervix', 'ICD9CM_2010'), +('75.52', 'Repair of current obstetric laceration of corpus uteri', 'ICD9CM_2010'), +('75.6', 'Repair of other current obstetric laceration', 'ICD9CM_2010'), +('75.61', 'Repair of current obstetric laceration of bladder and urethra', 'ICD9CM_2010'), +('75.62', 'Repair of current obstetric laceration of rectum and sphincter ani', 'ICD9CM_2010'), +('75.69', 'Repair of other current obstetric laceration', 'ICD9CM_2010'), +('75.7', 'Manual exploration of uterine cavity, postpartum', 'ICD9CM_2010'), +('75.8', 'Obstetric tamponade of uterus or vagina', 'ICD9CM_2010'), +('75.9', 'Other obstetric operations', 'ICD9CM_2010'), +('75.91', 'Evacuation of obstetrical incisional hematoma of perineum', 'ICD9CM_2010'), +('75.92', 'Evacuation of other hematoma of vulva or vagina', 'ICD9CM_2010'), +('75.93', 'Surgical correction of inverted uterus', 'ICD9CM_2010'), +('75.94', 'Manual replacement of inverted uterus', 'ICD9CM_2010'), +('75.99', 'Other obstetric operations', 'ICD9CM_2010'), +('76', 'Operations on facial bones and joints', 'ICD9CM_2010'), +('76.0', 'Incision of facial bone without division', 'ICD9CM_2010'), +('76.01', 'Sequestrectomy of facial bone', 'ICD9CM_2010'), +('76.09', 'Other incision of facial bone', 'ICD9CM_2010'), +('76.1', 'Diagnostic procedures on facial bones and joints', 'ICD9CM_2010'), +('76.11', 'Biopsy of facial bone', 'ICD9CM_2010'), +('76.19', 'Other diagnostic procedures on facial bones and joints', 'ICD9CM_2010'), +('76.2', 'Local excision or destruction of lesion of facial bone', 'ICD9CM_2010'), +('76.3', 'Partial ostectomy of facial bone', 'ICD9CM_2010'), +('76.31', 'Partial mandibulectomy', 'ICD9CM_2010'), +('76.39', 'Partial ostectomy of other facial bone', 'ICD9CM_2010'), +('76.4', 'Excision and reconstruction of facial bones', 'ICD9CM_2010'), +('76.41', 'Total mandibulectomy with synchronous reconstruction', 'ICD9CM_2010'), +('76.42', 'Other total mandibulectomy', 'ICD9CM_2010'), +('76.43', 'Other reconstruction of mandible', 'ICD9CM_2010'), +('76.44', 'Total ostectomy of other facial bone with synchronous reconstruction', 'ICD9CM_2010'), +('76.45', 'Other total ostectomy of other facial bone', 'ICD9CM_2010'), +('76.46', 'Other reconstruction of other facial bone', 'ICD9CM_2010'), +('76.5', 'Temporomandibular arthroplasty', 'ICD9CM_2010'), +('76.6', 'Other facial bone repair and orthognathic surgery', 'ICD9CM_2010'), +('76.61', 'Closed osteoplasty (osteotomy) of mandibular ramus', 'ICD9CM_2010'), +('76.62', 'Open osteoplasty (osteotomy) of mandibular ramus', 'ICD9CM_2010'), +('76.63', 'Osteoplasty (osteotomy) of body of mandible', 'ICD9CM_2010'), +('76.64', 'Other orthognathic surgery on mandible', 'ICD9CM_2010'), +('76.65', 'Segmental osteoplasty (osteotomy) of maxilla', 'ICD9CM_2010'), +('76.66', 'Total osteoplasty (osteotomy) of maxilla', 'ICD9CM_2010'), +('76.67', 'Reduction genioplasty', 'ICD9CM_2010'), +('76.68', 'Augmentation genioplasty', 'ICD9CM_2010'), +('76.69', 'Other facial bone repair', 'ICD9CM_2010'), +('76.7', 'Reduction of facial fracture', 'ICD9CM_2010'), +('76.70', 'Reduction of facial fracture, not otherwise specified', 'ICD9CM_2010'), +('76.71', 'Closed reduction of malar and zygomatic fracture', 'ICD9CM_2010'), +('76.72', 'Open reduction of malar and zygomatic fracture', 'ICD9CM_2010'), +('76.73', 'Closed reduction of maxillary fracture', 'ICD9CM_2010'), +('76.74', 'Open reduction of maxillary fracture', 'ICD9CM_2010'), +('76.75', 'Closed reduction of mandibular fracture', 'ICD9CM_2010'), +('76.76', 'Open reduction of mandibular fracture', 'ICD9CM_2010'), +('76.77', 'Open reduction of alveolar fracture', 'ICD9CM_2010'), +('76.78', 'Other closed reduction of facial fracture', 'ICD9CM_2010'), +('76.79', 'Other open reduction of facial fracture', 'ICD9CM_2010'), +('76.9', 'Other operations on facial bones and joints', 'ICD9CM_2010'), +('76.91', 'Bone graft to facial bone', 'ICD9CM_2010'), +('76.92', 'Insertion of synthetic implant in facial bone', 'ICD9CM_2010'), +('76.93', 'Closed reduction of temporomandibular dislocation', 'ICD9CM_2010'), +('76.94', 'Open reduction of temporomandibular dislocation', 'ICD9CM_2010'), +('76.95', 'Other manipulation of temporomandibular joint', 'ICD9CM_2010'), +('76.96', 'Injection of therapeutic substance into temporomandibular joint', 'ICD9CM_2010'), +('76.97', 'Removal of internal fixation device from facial bone', 'ICD9CM_2010'), +('76.99', 'Other operations on facial bones and joints', 'ICD9CM_2010'), +('77', 'Incision, excision, and division of other bones', 'ICD9CM_2010'), +('77.0', 'Sequestrectomy', 'ICD9CM_2010'), +('77.00', 'Sequestrectomy, unspecified site', 'ICD9CM_2010'), +('77.01', 'Sequestrectomy of scapula, clavicle, and thorax (ribs and sternum)', 'ICD9CM_2010'), +('77.02', 'Sequestrectomy of humerus', 'ICD9CM_2010'), +('77.03', 'Sequestrectomy of radius and ulna', 'ICD9CM_2010'), +('77.04', 'Sequestrectomy of carpals and metacarpals', 'ICD9CM_2010'), +('77.05', 'Sequestrectomy of femur', 'ICD9CM_2010'), +('77.06', 'Sequestrectomy of patella', 'ICD9CM_2010'), +('77.07', 'Sequestrectomy of tibia and fibula', 'ICD9CM_2010'), +('77.08', 'Sequestrectomy of tarsals and metatarsals', 'ICD9CM_2010'), +('77.09', 'Sequestrectomy of other bone', 'ICD9CM_2010'), +('77.1', 'Other incision of bone without division', 'ICD9CM_2010'), +('77.10', 'Other incision of bone without division, unspecified site', 'ICD9CM_2010'), +('77.11', 'Other incision of bone without division, scapula, clavicle, and thorax (ribs and sternum)', 'ICD9CM_2010'), +('77.12', 'Other incision of bone without division, humerus', 'ICD9CM_2010'), +('77.13', 'Other incision of bone without division, radius and ulna', 'ICD9CM_2010'), +('77.14', 'Other incision of bone without division, carpus and metacarpus', 'ICD9CM_2010'), +('77.15', 'Other incision of bone without division, femur', 'ICD9CM_2010'), +('77.16', 'Other incision of bone without division, patella', 'ICD9CM_2010'), +('77.17', 'Other incision of bone without division, tibia and fibula', 'ICD9CM_2010'), +('77.18', 'Other incision of bone without division, tarsals and metatarsals', 'ICD9CM_2010'), +('77.19', 'Other incision of bone without division, other specified bone', 'ICD9CM_2010'), +('77.2', 'Wedge osteotomy', 'ICD9CM_2010'), +('77.20', 'Wedge osteotomy, unspecified site', 'ICD9CM_2010'), +('77.21', 'Wedge osteotomy of scapula, clavicle, and thorax (ribs and sternum)', 'ICD9CM_2010'), +('77.22', 'Wedge osteotomy of humerus', 'ICD9CM_2010'), +('77.23', 'Wedge osteotomy of radius and ulna', 'ICD9CM_2010'), +('77.24', 'Wedge osteotomy of carpals and metacarpals', 'ICD9CM_2010'), +('77.25', 'Wedge osteotomy of femur', 'ICD9CM_2010'), +('77.26', 'Wedge osteotomy of patella', 'ICD9CM_2010'), +('77.27', 'Wedge osteotomy of tibia and fibula', 'ICD9CM_2010'), +('77.28', 'Wedge osteotomy of tarsals and metatarsals', 'ICD9CM_2010'), +('77.29', 'Wedge osteotomy of other bone', 'ICD9CM_2010'), +('77.3', 'Other division of bone', 'ICD9CM_2010'), +('77.30', 'Other division of bone, unspecified site', 'ICD9CM_2010'), +('77.31', 'Other division of scapula, clavicle, and thorax (ribs and sternum)', 'ICD9CM_2010'), +('77.32', 'Other division of humerus', 'ICD9CM_2010'), +('77.33', 'Other division of radius and ulna', 'ICD9CM_2010'), +('77.34', 'Other division of carpals and metacarpals', 'ICD9CM_2010'), +('77.35', 'Other division of femur', 'ICD9CM_2010'), +('77.36', 'Other division of patella', 'ICD9CM_2010'), +('77.37', 'Other division of tibia and fibula', 'ICD9CM_2010'), +('77.38', 'Other division of tarsals and metatarsals', 'ICD9CM_2010'), +('77.39', 'Other division of other bone', 'ICD9CM_2010'), +('77.4', 'Biopsy of bone', 'ICD9CM_2010'), +('77.40', 'Biopsy of bone, unspecified site', 'ICD9CM_2010'), +('77.41', 'Biopsy of scapula, clavicle, and thorax (ribs and sternum)', 'ICD9CM_2010'), +('77.42', 'Biopsy of humerus', 'ICD9CM_2010'), +('77.43', 'Biopsy of radius and ulna', 'ICD9CM_2010'), +('77.44', 'Biopsy of carpals and metacarpals', 'ICD9CM_2010'), +('77.45', 'Biopsy of femur', 'ICD9CM_2010'), +('77.46', 'Biopsy of patella', 'ICD9CM_2010'), +('77.47', 'Biopsy of tibia and fibula', 'ICD9CM_2010'), +('77.48', 'Biopsy of tarsals and metatarsals', 'ICD9CM_2010'), +('77.49', 'Biopsy of other bone', 'ICD9CM_2010'), +('77.5', 'Excision and repair of bunion and other toe deformities', 'ICD9CM_2010'), +('77.51', 'Bunionectomy with soft tissue correction and osteotomy of the first metatarsal', 'ICD9CM_2010'), +('77.52', 'Bunionectomy with soft tissue correction and arthrodesis', 'ICD9CM_2010'), +('77.53', 'Other bunionectomy with soft tissue correction', 'ICD9CM_2010'), +('77.54', 'Excision or correction of bunionette', 'ICD9CM_2010'), +('77.56', 'Repair of hammer toe', 'ICD9CM_2010'), +('77.57', 'Repair of claw toe', 'ICD9CM_2010'), +('77.58', 'Other excision, fusion, and repair of toes', 'ICD9CM_2010'), +('77.59', 'Other bunionectomy', 'ICD9CM_2010'), +('77.6', 'Local excision of lesion or tissue of bone', 'ICD9CM_2010'), +('77.60', 'Local excision of lesion or tissue of bone, unspecified site', 'ICD9CM_2010'), +('77.61', 'Local excision of lesion or tissue of scapula, clavicle, and thorax (ribs and sternum)', 'ICD9CM_2010'), +('77.62', 'Local excision of lesion or tissue of humerus', 'ICD9CM_2010'), +('77.63', 'Local excision of lesion or tissue of radius and ulna', 'ICD9CM_2010'), +('77.64', 'Local excision of lesion or tissue of carpals and metacarpals', 'ICD9CM_2010'), +('77.65', 'Local excision of lesion or tissue of femur', 'ICD9CM_2010'), +('77.66', 'Local excision of lesion or tissue of patella', 'ICD9CM_2010'), +('77.67', 'Local excision of lesion or tissue of tibia and fibula', 'ICD9CM_2010'), +('77.68', 'Local excision of lesion or tissue of tarsals and metatarsals', 'ICD9CM_2010'), +('77.69', 'Local excision of lesion or tissue of other specified bone', 'ICD9CM_2010'), +('77.7', 'Excision of bone for graft', 'ICD9CM_2010'), +('77.70', 'Excision of bone for graft, unspecified site', 'ICD9CM_2010'), +('77.71', 'Excision of bone for graft, scapula, clavicle, and thorax (ribs and sternum)', 'ICD9CM_2010'), +('77.72', 'Excision of bone for graft, humerus', 'ICD9CM_2010'), +('77.73', 'Excision of bone for graft, radius and ulna', 'ICD9CM_2010'), +('77.74', 'Excision of bone for graft, carpus and metacarpus', 'ICD9CM_2010'), +('77.75', 'Excision of bone for graft, femur', 'ICD9CM_2010'), +('77.76', 'Excision of bone for graft, patella', 'ICD9CM_2010'), +('77.77', 'Excision of bone for graft, tibia and fibula', 'ICD9CM_2010'), +('77.78', 'Excision of bone for graft, tarsals and metatarsals', 'ICD9CM_2010'), +('77.79', 'Excision of bone for graft, other specified bone', 'ICD9CM_2010'), +('77.8', 'Other partial ostectomy', 'ICD9CM_2010'), +('77.80', 'Other partial ostectomy, unspecified site', 'ICD9CM_2010'), +('77.81', 'Other partial ostectomy of scapula, clavicle, and thorax (ribs and sternum)', 'ICD9CM_2010'), +('77.82', 'Other partial ostectomy of humerus', 'ICD9CM_2010'), +('77.83', 'Other partial ostectomy of radius and ulna', 'ICD9CM_2010'), +('77.84', 'Other partial ostectomy of carpals and metacarpals', 'ICD9CM_2010'), +('77.85', 'Other partial ostectomy of femur', 'ICD9CM_2010'), +('77.86', 'Other partial ostectomy of patella', 'ICD9CM_2010'), +('77.87', 'Other partial ostectomy of tibia and fibula', 'ICD9CM_2010'), +('77.88', 'Other partial ostectomy of tarsals and metatarsals', 'ICD9CM_2010'), +('77.89', 'Other partial ostectomy of other bone', 'ICD9CM_2010'), +('77.9', 'Total ostectomy', 'ICD9CM_2010'), +('77.90', 'Total ostectomy, unspecified site', 'ICD9CM_2010'), +('77.91', 'Total ostectomy of scapula, clavicle, and thorax (ribs and sternum)', 'ICD9CM_2010'), +('77.92', 'Total ostectomy of humerus', 'ICD9CM_2010'), +('77.93', 'Total ostectomy of radius and ulna', 'ICD9CM_2010'), +('77.94', 'Total ostectomy of carpals and metacarpals', 'ICD9CM_2010'), +('77.95', 'Total ostectomy of femur', 'ICD9CM_2010'), +('77.96', 'Total ostectomy of patella', 'ICD9CM_2010'), +('77.97', 'Total ostectomy of tibia and fibula', 'ICD9CM_2010'), +('77.98', 'Total ostectomy of tarsals and metatarsals', 'ICD9CM_2010'), +('77.99', 'Total ostectomy of other bone', 'ICD9CM_2010'), +('78', 'Other operations on bones, except facial bones', 'ICD9CM_2010'), +('78.0', 'Bone graft', 'ICD9CM_2010'), +('78.00', 'Bone graft, unspecified site', 'ICD9CM_2010'), +('78.01', 'Bone graft of scapula, clavicle, and thorax (ribs and sternum)', 'ICD9CM_2010'), +('78.02', 'Bone graft of humerus', 'ICD9CM_2010'), +('78.03', 'Bone graft of radius and ulna', 'ICD9CM_2010'), +('78.04', 'Bone graft of carpals and metacarpals', 'ICD9CM_2010'), +('78.05', 'Bone graft of femur', 'ICD9CM_2010'), +('78.06', 'Bone graft of patella', 'ICD9CM_2010'), +('78.07', 'Bone graft of tibia and fibula', 'ICD9CM_2010'), +('78.08', 'Bone graft of tarsals and metatarsals', 'ICD9CM_2010'), +('78.09', 'Bone graft of other bone except facial bones', 'ICD9CM_2010'), +('78.1', 'Application of external fixation device', 'ICD9CM_2010'), +('78.10', 'Application of external fixation device, unspecified site', 'ICD9CM_2010'), +('78.11', 'Application of external fixation device, scapula, clavicle, and thorax (ribs and sternum)', 'ICD9CM_2010'), +('78.12', 'Application of external fixation device, humerus', 'ICD9CM_2010'), +('78.13', 'Application of external fixation device, radius and ulna', 'ICD9CM_2010'), +('78.14', 'Application of external fixation device, carpals and metacarpals', 'ICD9CM_2010'), +('78.15', 'Application of external fixation device, femur', 'ICD9CM_2010'), +('78.16', 'Application of external fixation device, patella', 'ICD9CM_2010'), +('78.17', 'Application of external fixation device, tibia and fibula', 'ICD9CM_2010'), +('78.18', 'Application of external fixation device, tarsals and metatarsals', 'ICD9CM_2010'), +('78.19', 'Application of external fixation device, other bone except facial bones', 'ICD9CM_2010'), +('78.2', 'Limb shortening procedures', 'ICD9CM_2010'), +('78.20', 'Limb shortening procedures, unspecified site', 'ICD9CM_2010'), +('78.22', 'Limb shortening procedures, humerus', 'ICD9CM_2010'), +('78.23', 'Limb shortening procedures, radius and ulna', 'ICD9CM_2010'), +('78.24', 'Limb shortening procedures, carpals and metacarpals', 'ICD9CM_2010'), +('78.25', 'Limb shortening procedures, femur', 'ICD9CM_2010'), +('78.27', 'Limb shortening procedures, tibia and fibula', 'ICD9CM_2010'), +('78.28', 'Limb shortening procedures, tarsals and metatarsals', 'ICD9CM_2010'), +('78.29', 'Limb shortening procedures, other bone except facial bones', 'ICD9CM_2010'), +('78.3', 'Limb lengthening procedures', 'ICD9CM_2010'), +('78.30', 'Limb lengthening procedures, unspecified site', 'ICD9CM_2010'), +('78.32', 'Limb lengthening procedures, humerus', 'ICD9CM_2010'), +('78.33', 'Limb lengthening procedures, radius and ulna', 'ICD9CM_2010'); +INSERT INTO `icd9` (`ID_ICD9`, `Prosedur`, `Versi_ICD9`) VALUES +('78.34', 'Limb lengthening procedures, carpals and metacarpals', 'ICD9CM_2010'), +('78.35', 'Limb lengthening procedures, femur', 'ICD9CM_2010'), +('78.37', 'Limb lengthening procedures, tibia and fibula', 'ICD9CM_2010'), +('78.38', 'Limb lengthening procedures, tarsals and metatarsals', 'ICD9CM_2010'), +('78.39', 'Limb lengthening procedures, other bone except facial bones', 'ICD9CM_2010'), +('78.4', 'Other repair or plastic operations on bone', 'ICD9CM_2010'), +('78.40', 'Other repair or plastic operations on bone, unspecified site', 'ICD9CM_2010'), +('78.41', 'Other repair or plastic operations on scapula, clavicle, and thorax (ribs and sternum)', 'ICD9CM_2010'), +('78.42', 'Other repair or plastic operation on humerus', 'ICD9CM_2010'), +('78.43', 'Other repair or plastic operations on radius and ulna', 'ICD9CM_2010'), +('78.44', 'Other repair or plastic operations on carpals and metacarpals', 'ICD9CM_2010'), +('78.45', 'Other repair or plastic operations on femur', 'ICD9CM_2010'), +('78.46', 'Other repair or plastic operations on patella', 'ICD9CM_2010'), +('78.47', 'Other repair or plastic operations on tibia and fibula', 'ICD9CM_2010'), +('78.48', 'Other repair or plastic operations on tarsals and metatarsals', 'ICD9CM_2010'), +('78.49', 'Other repair or plastic operations on other bone, except facial bone', 'ICD9CM_2010'), +('78.5', 'Internal fixation of bone without fracture reduction', 'ICD9CM_2010'), +('78.50', 'Internal fixation of bone without fracture reduction, unspecified site', 'ICD9CM_2010'), +('78.51', 'Internal fixation of bone without fracture reduction on scapula, clavicle, and thorax (ribs and sternum)', 'ICD9CM_2010'), +('78.52', 'Internal fixation of bone without fracture reduction on humerus', 'ICD9CM_2010'), +('78.53', 'Internal fixation of bone without fracture reduction on radius and ulna', 'ICD9CM_2010'), +('78.54', 'Internal fixation of bone without fracture reductionon carpals and metacarpals', 'ICD9CM_2010'), +('78.55', 'Internal fixation of bone without fracture reduction on femur', 'ICD9CM_2010'), +('78.56', 'Internal fixation of bone without fracture reduction on patella', 'ICD9CM_2010'), +('78.57', 'Internal fixation of bone without fracture reduction on tibia and fibula', 'ICD9CM_2010'), +('78.58', 'Internal fixation of bone without fracture reduction on tarsals and metatarsals', 'ICD9CM_2010'), +('78.59', 'Internal fixation of bone without fracture reduction on other bone, except facial bone', 'ICD9CM_2010'), +('78.6', 'Removal of implanted device from bone', 'ICD9CM_2010'), +('78.60', 'Removal of implanted device, unspecified site', 'ICD9CM_2010'), +('78.61', 'Removal of implanted device from scapula, clavicle, and thorax (ribs and sternum)', 'ICD9CM_2010'), +('78.62', 'Removal of implanted device from humerus', 'ICD9CM_2010'), +('78.63', 'Removal of implanted device from radius and ulna', 'ICD9CM_2010'), +('78.64', 'Removal of implanted device from carpals and metacarpals', 'ICD9CM_2010'), +('78.65', 'Removal of implanted device from femur', 'ICD9CM_2010'), +('78.66', 'Removal of implanted device from patella', 'ICD9CM_2010'), +('78.67', 'Removal of implanted device from tibia and fibula', 'ICD9CM_2010'), +('78.68', 'Removal of implanted device from tarsal and metatarsals', 'ICD9CM_2010'), +('78.69', 'Removal of implanted device from other bone, except facial bone', 'ICD9CM_2010'), +('78.7', 'Osteoclasis', 'ICD9CM_2010'), +('78.70', 'Osteoclasis, unspecified site', 'ICD9CM_2010'), +('78.71', 'Osteoclasis of scapula, clavicle, and thorax (ribs and sternum)', 'ICD9CM_2010'), +('78.72', 'Osteoclasis of humerus', 'ICD9CM_2010'), +('78.73', 'Osteoclasis of radius and ulna', 'ICD9CM_2010'), +('78.74', 'Osteoclasis of carpals and metacarpals', 'ICD9CM_2010'), +('78.75', 'Osteoclasis of femur', 'ICD9CM_2010'), +('78.76', 'Osteoclasis of patella', 'ICD9CM_2010'), +('78.77', 'Osteoclasis of tibia and fibula', 'ICD9CM_2010'), +('78.78', 'Osteoclasis of tarsals and metatarsals', 'ICD9CM_2010'), +('78.79', 'Osteoclasis of other bone, except facial bone', 'ICD9CM_2010'), +('78.8', 'Diagnostic procedures on bone, not elsewhere classified', 'ICD9CM_2010'), +('78.80', 'Diagnostic procedures on bone, not elsewhere classified, unspecified site', 'ICD9CM_2010'), +('78.81', 'Diagnostic procedures on scapula, clavicle, and thorax (ribs and sternum)', 'ICD9CM_2010'), +('78.82', 'Diagnostic procedures on humerus, not elsewhere classified', 'ICD9CM_2010'), +('78.83', 'Diagnostic procedures on radius and ulna, not elsewhere classified', 'ICD9CM_2010'), +('78.84', 'Diagnostic procedures on carpals and metacarpals, not elsewhere classified', 'ICD9CM_2010'), +('78.85', 'Diagnostic procedures on femur, not elsewhere classified', 'ICD9CM_2010'), +('78.86', 'Diagnostic procedures on patella, not elsewhere classified', 'ICD9CM_2010'), +('78.87', 'Diagnostic procedures on tibia and fibula, not elsewhere classified', 'ICD9CM_2010'), +('78.88', 'Diagnostic procedures on tarsals and metatarsals, not elsewhere classified', 'ICD9CM_2010'), +('78.89', 'Diagnostic procedures on other bone, not elsewhere classified', 'ICD9CM_2010'), +('78.9', 'Insertion of bone growth stimulator', 'ICD9CM_2010'), +('78.90', 'Insertion of bone growth stimulator, unspecified site', 'ICD9CM_2010'), +('78.91', 'Insertion of bone growth stimulator into scapula, clavicle, and thorax (ribs and sternum)', 'ICD9CM_2010'), +('78.92', 'Insertion of bone growth stimulator into humerus', 'ICD9CM_2010'), +('78.93', 'Insertion of bone growth stimulator into radius and ulna', 'ICD9CM_2010'), +('78.94', 'Insertion of bone growth stimulator into carpals and metacarpals', 'ICD9CM_2010'), +('78.95', 'Insertion of bone growth stimulator into femur', 'ICD9CM_2010'), +('78.96', 'Insertion of bone growth stimulator into patella', 'ICD9CM_2010'), +('78.97', 'Insertion of bone growth stimulator into tibia and fibula', 'ICD9CM_2010'), +('78.98', 'Insertion of bone growth stimulator into tarsals and metatarsals', 'ICD9CM_2010'), +('78.99', 'Insertion of bone growth stimulator into other bone, except facial bone', 'ICD9CM_2010'), +('79', 'Reduction of fracture and dislocation', 'ICD9CM_2010'), +('79.0', 'Closed reduction of fracture without internal fixation', 'ICD9CM_2010'), +('79.00', 'Closed reduction of fracture without internal fixation, unspecified site', 'ICD9CM_2010'), +('79.01', 'Closed reduction of fracture without internal fixation, humerus', 'ICD9CM_2010'), +('79.02', 'Closed reduction of fracture without internal fixation, radius and ulna', 'ICD9CM_2010'), +('79.03', 'Closed reduction of fracture without internal fixation, carpals and metacarpals', 'ICD9CM_2010'), +('79.04', 'Closed reduction of fracture without internal fixation, phalanges of hand', 'ICD9CM_2010'), +('79.05', 'Closed reduction of fracture without internal fixation, femur', 'ICD9CM_2010'), +('79.06', 'Closed reduction of fracture without internal fixation, tibia and fibula', 'ICD9CM_2010'), +('79.07', 'Closed reduction of fracture without internal fixation, tarsals and metatarsals', 'ICD9CM_2010'), +('79.08', 'Closed reduction of fracture without internal fixation, phalanges of foot', 'ICD9CM_2010'), +('79.09', 'Closed reduction of fracture without internal fixation, other specified bone', 'ICD9CM_2010'), +('79.1', 'Closed reduction of fracture with internal fixation', 'ICD9CM_2010'), +('79.10', 'Closed reduction of fracture with internal fixation, unspecified site', 'ICD9CM_2010'), +('79.11', 'Closed reduction of fracture with internal fixation, humerus', 'ICD9CM_2010'), +('79.12', 'Closed reduction of fracture with internal fixation, radius and ulna', 'ICD9CM_2010'), +('79.13', 'Closed reduction of fracture with internal fixation, carpals and metacarpals', 'ICD9CM_2010'), +('79.14', 'Closed reduction of fracture with internal fixation,phalanges of hand', 'ICD9CM_2010'), +('79.15', 'Closed reduction of fracture with internal fixation, femur', 'ICD9CM_2010'), +('79.16', 'Closed reduction of fracture with internal fixation, tibia and fibula', 'ICD9CM_2010'), +('79.17', 'Closed reduction of fracture with internal fixation, tarsals and metatarsals', 'ICD9CM_2010'), +('79.18', 'Closed reduction of fracture with internal fixation, phalanges of foot', 'ICD9CM_2010'), +('79.19', 'Closed reduction of fracture with internal fixation, other specified bone', 'ICD9CM_2010'), +('79.2', 'Open reduction of fracture without internal fixation', 'ICD9CM_2010'), +('79.20', 'Open reduction of fracture without internal fixation, unspecified site', 'ICD9CM_2010'), +('79.21', 'Open reduction of fracture without internal fixation, humerus', 'ICD9CM_2010'), +('79.22', 'Open reduction of fracture without internal fixation, radius and ulna', 'ICD9CM_2010'), +('79.23', 'Open reduction of fracture without internal fixation, carpals and metacarpals', 'ICD9CM_2010'), +('79.24', 'Open reduction of fracture without internal fixation, phalanges of hand', 'ICD9CM_2010'), +('79.25', 'Open reduction of fracture without internal fixation, femur', 'ICD9CM_2010'), +('79.26', 'Open reduction of fracture without internal fixation, tibia and fibula', 'ICD9CM_2010'), +('79.27', 'Open reduction of fracture without internal fixation, tarsals and metatarsals', 'ICD9CM_2010'), +('79.28', 'Open reduction of fracture without internal fixation, phalanges of foot', 'ICD9CM_2010'), +('79.29', 'Open reduction of fracture without internal fixation, other specified bone', 'ICD9CM_2010'), +('79.3', 'Open reduction of fracture with internal fixation', 'ICD9CM_2010'), +('79.30', 'Open reduction of fracture with internal fixation, unspecified site', 'ICD9CM_2010'), +('79.31', 'Open reduction of fracture with internal fixation, humerus', 'ICD9CM_2010'), +('79.32', 'Open reduction of fracture with internal fixation, radius and ulna', 'ICD9CM_2010'), +('79.33', 'Open reduction of fracture with internal fixation, carpals and metacarpals', 'ICD9CM_2010'), +('79.34', 'Open reduction of fracture with internal fixation, phalanges of hand', 'ICD9CM_2010'), +('79.35', 'Open reduction of fracture with internal fixation, femur', 'ICD9CM_2010'), +('79.36', 'Open reduction of fracture with internal fixation, tibia and fibula', 'ICD9CM_2010'), +('79.37', 'Open reduction of fracture with internal fixation, tarsals and metatarsals', 'ICD9CM_2010'), +('79.38', 'Open reduction of fracture with internal fixation, phalanges of foot', 'ICD9CM_2010'), +('79.39', 'Open reduction of fracture with internal fixation, other specified bone', 'ICD9CM_2010'), +('79.4', 'Closed reduction of separated epiphysis', 'ICD9CM_2010'), +('79.40', 'Closed reduction of separated epiphysis, unspecified site', 'ICD9CM_2010'), +('79.41', 'Closed reduction of separated epiphysis of humerus', 'ICD9CM_2010'), +('79.42', 'Closed reduction of separated epiphysis of radius and ulna', 'ICD9CM_2010'), +('79.45', 'Closed reduction of separated epiphysis of femur', 'ICD9CM_2010'), +('79.46', 'Closed reduction of separated epiphysis of tibia and fibula', 'ICD9CM_2010'), +('79.49', 'Closed reduction of separated epiphysis of other specified bone', 'ICD9CM_2010'), +('79.5', 'Open reduction of separated epiphysis', 'ICD9CM_2010'), +('79.50', 'Open reduction of separated epiphysis, unspecified site', 'ICD9CM_2010'), +('79.51', 'Open reduction of separated epiphysis of humerus', 'ICD9CM_2010'), +('79.52', 'Open reduction of separated epiphysis of radius and ulna', 'ICD9CM_2010'), +('79.55', 'Open reduction of separated epiphysis of femur', 'ICD9CM_2010'), +('79.56', 'Open reduction of separated epiphysis of tibia and fibula', 'ICD9CM_2010'), +('79.59', 'Open reduction of separated epiphysis of other specified bone', 'ICD9CM_2010'), +('79.6', 'Debridement of open fracture site', 'ICD9CM_2010'), +('79.60', 'Debridement of open fracture, unspecified site', 'ICD9CM_2010'), +('79.61', 'Debridement of open fracture of humerus', 'ICD9CM_2010'), +('79.62', 'Debridement of open fracture of radius and ulna', 'ICD9CM_2010'), +('79.63', 'Debridement of open fracture of carpals and metacarpals', 'ICD9CM_2010'), +('79.64', 'Debridement of open fracture of phalanges of hand', 'ICD9CM_2010'), +('79.65', 'Debridement of open fracture of femur', 'ICD9CM_2010'), +('79.66', 'Debridement of open fracture of tibia and fibula', 'ICD9CM_2010'), +('79.67', 'Debridement of open fracture of tarsals and metatarsals', 'ICD9CM_2010'), +('79.68', 'Debridement of open fracture of phalanges of foot', 'ICD9CM_2010'), +('79.69', 'Debridement of open fracture of other specified bone', 'ICD9CM_2010'), +('79.7', 'Closed reduction of dislocation', 'ICD9CM_2010'), +('79.70', 'Closed reduction of dislocation of unspecified site', 'ICD9CM_2010'), +('79.71', 'Closed reduction of dislocation of shoulder', 'ICD9CM_2010'), +('79.72', 'Closed reduction of dislocation of elbow', 'ICD9CM_2010'), +('79.73', 'Closed reduction of dislocation of wrist', 'ICD9CM_2010'), +('79.74', 'Closed reduction of dislocation of hand and finger', 'ICD9CM_2010'), +('79.75', 'Closed reduction of dislocation of hip', 'ICD9CM_2010'), +('79.76', 'Closed reduction of dislocation of knee', 'ICD9CM_2010'), +('79.77', 'Closed reduction of dislocation of ankle', 'ICD9CM_2010'), +('79.78', 'Closed reduction of dislocation of foot and toe', 'ICD9CM_2010'), +('79.79', 'Closed reduction of dislocation of other specified site, except temp', 'ICD9CM_2010'), +('79.8', 'Open reduction of dislocation', 'ICD9CM_2010'), +('79.80', 'Open reduction of dislocation of unspecified site', 'ICD9CM_2010'), +('79.81', 'Open reduction of dislocation of shoulder', 'ICD9CM_2010'), +('79.82', 'Open reduction of dislocation of elbow', 'ICD9CM_2010'), +('79.83', 'Open reduction of dislocation of wrist', 'ICD9CM_2010'), +('79.84', 'Open reduction of dislocation of hand and finger', 'ICD9CM_2010'), +('79.85', 'Open reduction of dislocation of hip', 'ICD9CM_2010'), +('79.86', 'Open reduction of dislocation of knee', 'ICD9CM_2010'), +('79.87', 'Open reduction of dislocation of ankle', 'ICD9CM_2010'), +('79.88', 'Open reduction of dislocation of foot and toe', 'ICD9CM_2010'), +('79.89', 'Open reduction of dislocation of other specified site, except tempor', 'ICD9CM_2010'), +('79.9', 'Unspecified operation on bone injury', 'ICD9CM_2010'), +('79.90', 'Unspecified operation on bone injury, unspecified site', 'ICD9CM_2010'), +('79.91', 'Unspecified operation on bone injury of humerus', 'ICD9CM_2010'), +('79.92', 'Unspecified operation on bone injury of radius and ulna', 'ICD9CM_2010'), +('79.93', 'Unspecified operation on bone injury of carpals and metacarpals', 'ICD9CM_2010'), +('79.94', 'Unspecified operation on bone injury of phalanges of hand', 'ICD9CM_2010'), +('79.95', 'Unspecified operation on bone injury of femur', 'ICD9CM_2010'), +('79.96', 'Unspecified operation on bone injury of tibia and fibula', 'ICD9CM_2010'), +('79.97', 'Unspecified operation on bone injury of tarsals and metatarsals', 'ICD9CM_2010'), +('79.98', 'Unspecified operation on bone injury of phalanges of foot', 'ICD9CM_2010'), +('79.99', 'Unspecified operation on bone injury of other specified bone', 'ICD9CM_2010'), +('80', 'Incision and excision of joint structures', 'ICD9CM_2010'), +('80.0', 'Arthrotomy for removal of prosthesis', 'ICD9CM_2010'), +('80.00', 'Arthrotomy for removal of prosthesis, unspecified site', 'ICD9CM_2010'), +('80.01', 'Arthrotomy for removal of prosthesis of shoulder', 'ICD9CM_2010'), +('80.02', 'Arthrotomy for removal of prosthesis of elbow', 'ICD9CM_2010'), +('80.03', 'Arthrotomy for removal of prosthesis of wrist', 'ICD9CM_2010'), +('80.04', 'Arthrotomy for removal of prosthesis of hand and finger', 'ICD9CM_2010'), +('80.05', 'Arthrotomy for removal of prosthesis of hip', 'ICD9CM_2010'), +('80.06', 'Arthrotomy for removal of prosthesis of knee', 'ICD9CM_2010'), +('80.07', 'Arthrotomy for removal of prosthesis of ankle', 'ICD9CM_2010'), +('80.08', 'Arthrotomy for removal of prosthesis of foot and toe', 'ICD9CM_2010'), +('80.09', 'Arthrotomy for removal of prosthesis of other specified site', 'ICD9CM_2010'), +('80.1', 'Other arthrotomy', 'ICD9CM_2010'), +('80.10', 'Other arthrotomy, unspecified site', 'ICD9CM_2010'), +('80.11', 'Other arthrotomy of shoulder', 'ICD9CM_2010'), +('80.12', 'Other arthrotomy of elbow', 'ICD9CM_2010'), +('80.13', 'Other arthrotomy of wrist', 'ICD9CM_2010'), +('80.14', 'Other arthrotomy of hand and finger', 'ICD9CM_2010'), +('80.15', 'Other arthrotomy of hip', 'ICD9CM_2010'), +('80.16', 'Other arthrotomy of knee', 'ICD9CM_2010'), +('80.17', 'Other arthrotomy of ankle', 'ICD9CM_2010'), +('80.18', 'Other arthrotomy of foot and toe', 'ICD9CM_2010'), +('80.19', 'Other arthrotomy of other specified site', 'ICD9CM_2010'), +('80.2', 'Arthroscopy', 'ICD9CM_2010'), +('80.20', 'Arthroscopy, unspecified site', 'ICD9CM_2010'), +('80.21', 'Arthroscopy of shoulder', 'ICD9CM_2010'), +('80.22', 'Arthroscopy of elbow', 'ICD9CM_2010'), +('80.23', 'Arthroscopy of wrist', 'ICD9CM_2010'), +('80.24', 'Arthroscopy of hand and finger', 'ICD9CM_2010'), +('80.25', 'Arthroscopy of hip', 'ICD9CM_2010'), +('80.26', 'Arthroscopy of knee', 'ICD9CM_2010'), +('80.27', 'Arthroscopy of ankle', 'ICD9CM_2010'), +('80.28', 'Arthroscopy of foot and toe', 'ICD9CM_2010'), +('80.29', 'Arthroscopy of other specified site', 'ICD9CM_2010'), +('80.3', 'Biopsy of joint structure', 'ICD9CM_2010'), +('80.30', 'Biopsy of joint structure, unspecified site', 'ICD9CM_2010'), +('80.31', 'Biopsy of joint structure of shoulder', 'ICD9CM_2010'), +('80.32', 'Biopsy of joint structure of elbow', 'ICD9CM_2010'), +('80.33', 'Biopsy of joint structure of wrist', 'ICD9CM_2010'), +('80.34', 'Biopsy of joint structure of hand and finger', 'ICD9CM_2010'), +('80.35', 'Biopsy of joint structure of hip', 'ICD9CM_2010'), +('80.36', 'Biopsy of joint structure of knee', 'ICD9CM_2010'), +('80.37', 'Biopsy of joint structure of ankle', 'ICD9CM_2010'), +('80.38', 'Biopsy of joint structure of foot and toe', 'ICD9CM_2010'), +('80.39', 'Biopsy of joint structure of other specified site', 'ICD9CM_2010'), +('80.4', 'Division of joint capsule, ligament, or cartilage', 'ICD9CM_2010'), +('80.40', 'Division of joint capsule, ligament, or cartilage, unspecified site', 'ICD9CM_2010'), +('80.41', 'Division of joint capsule, ligament, or cartilage of shoulder', 'ICD9CM_2010'), +('80.42', 'Division of joint capsule, ligament, or cartilage of elbow', 'ICD9CM_2010'), +('80.43', 'Division of joint capsule, ligament, or cartilage of wrist', 'ICD9CM_2010'), +('80.44', 'Division of joint capsule, ligament, or cartilage of hand and finger', 'ICD9CM_2010'), +('80.45', 'Division of joint capsule, ligament, or cartilage of hip', 'ICD9CM_2010'), +('80.46', 'Division of joint capsule, ligament, or cartilage of knee', 'ICD9CM_2010'), +('80.47', 'Division of joint capsule, ligament, or cartilage of ankle', 'ICD9CM_2010'), +('80.48', 'Division of joint capsule, ligament, or cartilage of foot and toe', 'ICD9CM_2010'), +('80.49', 'Division of joint capsule, ligament, or cartilage of other specified', 'ICD9CM_2010'), +('80.5', 'Excision or destruction of intervertebral disc', 'ICD9CM_2010'), +('80.50', 'Excision or destruction of intervertebral disc, unspecified', 'ICD9CM_2010'), +('80.51', 'Excision of intervertebral disc', 'ICD9CM_2010'), +('80.52', 'Intervertebral chemonucleolysis', 'ICD9CM_2010'), +('80.53', 'Repair of the anulus fibrosus with graft or prosthesis', 'ICD9CM_2010'), +('80.54', 'Other and unspecified repair of the anulus fibrosus', 'ICD9CM_2010'), +('80.59', 'Other destruction of intervertebral disc', 'ICD9CM_2010'), +('80.6', 'Excision of semilunar cartilage of knee', 'ICD9CM_2010'), +('80.7', 'Synovectomy', 'ICD9CM_2010'), +('80.70', 'Synovectomy, unspecified site', 'ICD9CM_2010'), +('80.71', 'Synovectomy of shoulder', 'ICD9CM_2010'), +('80.72', 'Synovectomy of elbow', 'ICD9CM_2010'), +('80.73', 'Synovectomy of wrist', 'ICD9CM_2010'), +('80.74', 'Synovectomy of hand and finger', 'ICD9CM_2010'), +('80.75', 'Synovectomy of hip', 'ICD9CM_2010'), +('80.76', 'Synovectomy of knee', 'ICD9CM_2010'), +('80.77', 'Synovectomy of ankle', 'ICD9CM_2010'), +('80.78', 'Synovectomy of foot and toe', 'ICD9CM_2010'), +('80.79', 'Synovectomy of other specified site', 'ICD9CM_2010'), +('80.8', 'Other local excision or destruction of lesion of joint', 'ICD9CM_2010'), +('80.80', 'Other local excision or destruction of lesion of joint, unspecified', 'ICD9CM_2010'), +('80.81', 'Other local excision or destruction of lesion of shoulder joint', 'ICD9CM_2010'), +('80.82', 'Other local excision or destruction of lesion of elbow joint', 'ICD9CM_2010'), +('80.83', 'Other local excision or destruction of lesion of wrist joint', 'ICD9CM_2010'), +('80.84', 'Other local excision or destruction of lesion of joint of hand and finger', 'ICD9CM_2010'), +('80.85', 'Other local excision or destruction of lesion of hip joint', 'ICD9CM_2010'), +('80.86', 'Other local excision or destruction of lesion of knee joint', 'ICD9CM_2010'), +('80.87', 'Other local excision or destruction of lesion of ankle joint', 'ICD9CM_2010'), +('80.88', 'Other local excision or destruction of lesion of joint of foot and toe', 'ICD9CM_2010'), +('80.89', 'Other local excision or destruction of lesion of joint of other specified site', 'ICD9CM_2010'), +('80.9', 'Other excision of joint', 'ICD9CM_2010'), +('80.90', 'Other excision of joint, unspecified site', 'ICD9CM_2010'), +('80.91', 'Other excision of shoulder joint', 'ICD9CM_2010'), +('80.92', 'Other excision of elbow joint', 'ICD9CM_2010'), +('80.93', 'Other excision of wrist joint', 'ICD9CM_2010'), +('80.94', 'Other excision of joint of hand and finger', 'ICD9CM_2010'), +('80.95', 'Other excision of hip joint', 'ICD9CM_2010'), +('80.96', 'Other excision of knee joint', 'ICD9CM_2010'), +('80.97', 'Other excision of ankle joint', 'ICD9CM_2010'), +('80.98', 'Other excision of joint of foot and toe', 'ICD9CM_2010'), +('80.99', 'Other excision of joint of other specified site', 'ICD9CM_2010'), +('81', 'Repair and plastic operations on joint structures', 'ICD9CM_2010'), +('81.0', 'Spinal fusion', 'ICD9CM_2010'), +('81.00', 'Spinal fusion, not otherwise specified', 'ICD9CM_2010'), +('81.01', 'Atlas-axis spinal fusion', 'ICD9CM_2010'), +('81.02', 'Other cervical fusion, anterior technique', 'ICD9CM_2010'), +('81.03', 'Other cervical fusion, posterior technique', 'ICD9CM_2010'), +('81.04', 'Dorsal and dorsolumbar fusion, anterior technique', 'ICD9CM_2010'), +('81.05', 'Dorsal and dorsolumbar fusion, posterior technique', 'ICD9CM_2010'), +('81.06', 'Lumbar and lumbosacral fusion, anterior technique', 'ICD9CM_2010'), +('81.07', 'Lumbar and lumbosacral fusion, lateral transverse process technique', 'ICD9CM_2010'), +('81.08', 'Lumbar and lumbosacral fusion, posterior technique', 'ICD9CM_2010'), +('81.1', 'Arthrodesis and arthroereisis of foot and ankle', 'ICD9CM_2010'), +('81.11', 'Ankle fusion', 'ICD9CM_2010'), +('81.12', 'Triple arthrodesis', 'ICD9CM_2010'), +('81.13', 'Subtalar fusion', 'ICD9CM_2010'), +('81.14', 'Midtarsal fusion', 'ICD9CM_2010'), +('81.15', 'Tarsometatarsal fusion', 'ICD9CM_2010'), +('81.16', 'Metatarsophalangeal fusion', 'ICD9CM_2010'), +('81.17', 'Other fusion of foot', 'ICD9CM_2010'), +('81.18', 'Subtalar joint arthroereisis', 'ICD9CM_2010'), +('81.2', 'Arthrodesis of other joint', 'ICD9CM_2010'), +('81.20', 'Arthrodesis of unspecified joint', 'ICD9CM_2010'), +('81.21', 'Arthrodesis of hip', 'ICD9CM_2010'), +('81.22', 'Arthrodesis of knee', 'ICD9CM_2010'), +('81.23', 'Arthrodesis of shoulder', 'ICD9CM_2010'), +('81.24', 'Arthrodesis of elbow', 'ICD9CM_2010'), +('81.25', 'Carporadial fusion', 'ICD9CM_2010'), +('81.26', 'Metacarpocarpal fusion', 'ICD9CM_2010'), +('81.27', 'Metacarpophalangeal fusion', 'ICD9CM_2010'), +('81.28', 'Interphalangeal fusion', 'ICD9CM_2010'), +('81.29', 'Arthrodesis of other specified joint', 'ICD9CM_2010'), +('81.3', 'Rerfusion of spine', 'ICD9CM_2010'), +('81.30', 'Refusion of spine,not otherwise specified', 'ICD9CM_2010'), +('81.31', 'Refusion of atlas-axis spine', 'ICD9CM_2010'), +('81.32', 'Refuison of other cervical spine, anterior technique', 'ICD9CM_2010'), +('81.33', 'Refuison of other cervical spine, posterior technique', 'ICD9CM_2010'), +('81.34', 'Refuison of dorsal and dorolumbarspine, anterior technique', 'ICD9CM_2010'), +('81.35', 'Refuison of dorsal and dorolumbarspine, posterior technique', 'ICD9CM_2010'), +('81.36', 'Refuison of lumbar and lumbosacral spine, anterior technique', 'ICD9CM_2010'), +('81.37', 'Refuison of lumbar and lumbosacral spine, lateral transverse technique', 'ICD9CM_2010'), +('81.38', 'Refuison of lumbar and lumbosacral spine, posterior technique', 'ICD9CM_2010'), +('81.39', 'Refusion of spine, NEC', 'ICD9CM_2010'), +('81.4', 'Other repair of joint of lower extremity', 'ICD9CM_2010'), +('81.40', 'Repair of hip, not elsewhere classified', 'ICD9CM_2010'), +('81.42', 'Five-in-one repair of knee', 'ICD9CM_2010'), +('81.43', 'Triad knee repair', 'ICD9CM_2010'), +('81.44', 'Patellar stabilization', 'ICD9CM_2010'), +('81.45', 'Other repair of the cruciate ligaments', 'ICD9CM_2010'), +('81.46', 'Other repair of the collateral ligaments', 'ICD9CM_2010'), +('81.47', 'Other repair of knee', 'ICD9CM_2010'), +('81.49', 'Other repair of ankle', 'ICD9CM_2010'), +('81.5', 'Joint replacement of lower extremity', 'ICD9CM_2010'), +('81.51', 'Total hip replacement', 'ICD9CM_2010'), +('81.52', 'Partial hip replacement', 'ICD9CM_2010'), +('81.53', 'Revision of hip replacement, NEC', 'ICD9CM_2010'), +('81.54', 'Total knee replacement', 'ICD9CM_2010'), +('81.55', 'Revision of knee replacement, NEC', 'ICD9CM_2010'), +('81.56', 'Total ankle replacement', 'ICD9CM_2010'), +('81.57', 'Replacement of joint of foot and toe', 'ICD9CM_2010'), +('81.59', 'Revision of joint replacement of lower extremity, not elsewhere classified', 'ICD9CM_2010'), +('81.6', 'Other procedures on spine', 'ICD9CM_2010'), +('81.62', 'Fusion or refusion of 2-3 vertebrae', 'ICD9CM_2010'), +('81.63', 'Fusion or refusion of 4-8 vertebrae', 'ICD9CM_2010'), +('81.64', 'Fusion or refusion of 9 or more vertebrae', 'ICD9CM_2010'), +('81.65', 'Percutaneous vertebroplasty', 'ICD9CM_2010'), +('81.66', 'Percutaneous vertebral augmentation', 'ICD9CM_2010'), +('81.7', 'Arthroplasty and repair of hand, fingers, and wrist', 'ICD9CM_2010'), +('81.71', 'Arthroplasty of metacarpophalangeal and interphalangeal joint with implant', 'ICD9CM_2010'), +('81.72', 'Arthroplasty of metacarpophalangeal and interphalangeal joint without implant', 'ICD9CM_2010'), +('81.73', 'Total wrist replacement', 'ICD9CM_2010'), +('81.74', 'Arthroplasty of carpocarpal or carpometacarpal joint with implant', 'ICD9CM_2010'), +('81.75', 'Arthroplasty of carpocarpal or carpometacarpal joint without implant', 'ICD9CM_2010'), +('81.79', 'Other repair of hand, fingers, and wrist', 'ICD9CM_2010'), +('81.8', 'Arthroplasty and repair of shoulder and elbow', 'ICD9CM_2010'), +('81.80', 'Total shoulder replacement', 'ICD9CM_2010'), +('81.81', 'Partial shoulder replacement', 'ICD9CM_2010'), +('81.82', 'Repair of recurrent dislocation of shoulder', 'ICD9CM_2010'), +('81.83', 'Other repair of shoulder', 'ICD9CM_2010'), +('81.84', 'Total elbow replacement', 'ICD9CM_2010'), +('81.85', 'Other repair of elbow', 'ICD9CM_2010'), +('81.88', 'Reverse total shoulder replacement', 'ICD9CM_2010'), +('81.9', 'Other operations on joint structures', 'ICD9CM_2010'), +('81.91', 'Arthrocentesis', 'ICD9CM_2010'), +('81.92', 'Injection of therapeutic substance into joint or ligament', 'ICD9CM_2010'), +('81.93', 'Suture of capsule or ligament of upper extremity', 'ICD9CM_2010'), +('81.94', 'Suture of capsule or ligament of ankle and foot', 'ICD9CM_2010'), +('81.95', 'Suture of capsule or ligament of other lower extremity', 'ICD9CM_2010'), +('81.96', 'Other repair of joint', 'ICD9CM_2010'), +('81.97', 'Revision of joint replacement of upper extremity', 'ICD9CM_2010'), +('81.98', 'Other diagnostic procedures on joint structures', 'ICD9CM_2010'), +('81.99', 'Other operations on joint structures', 'ICD9CM_2010'), +('82', 'Operations on muscle, tendon, and fascia of hand', 'ICD9CM_2010'), +('82.0', 'Incision of muscle, tendon, fascia, and bursa of hand', 'ICD9CM_2010'), +('82.01', 'Exploration of tendon sheath of hand', 'ICD9CM_2010'), +('82.02', 'Myotomy of hand', 'ICD9CM_2010'), +('82.03', 'Bursotomy of hand', 'ICD9CM_2010'), +('82.04', 'Incision and drainage of palmar or thenar space', 'ICD9CM_2010'), +('82.09', 'Other incision of soft tissue of hand', 'ICD9CM_2010'), +('82.1', 'Division of muscle, tendon, and fascia of hand', 'ICD9CM_2010'), +('82.11', 'Tenotomy of hand', 'ICD9CM_2010'), +('82.12', 'Fasciotomy of hand', 'ICD9CM_2010'), +('82.19', 'Other division of soft tissue of hand', 'ICD9CM_2010'), +('82.2', 'Excision of lesion of muscle, tendon, and fascia of hand', 'ICD9CM_2010'), +('82.21', 'Excision of lesion of tendon sheath of hand', 'ICD9CM_2010'), +('82.22', 'Excision of lesion of muscle of hand', 'ICD9CM_2010'), +('82.29', 'Excision of other lesion of soft tissue of hand', 'ICD9CM_2010'), +('82.3', 'Other excision of soft tissue of hand', 'ICD9CM_2010'), +('82.31', 'Bursectomy of hand', 'ICD9CM_2010'), +('82.32', 'Excision of tendon of hand for graft', 'ICD9CM_2010'), +('82.33', 'Other tenonectomy of hand', 'ICD9CM_2010'), +('82.34', 'Excision of muscle or fascia of hand for graft', 'ICD9CM_2010'), +('82.35', 'Other fasciectomy of hand', 'ICD9CM_2010'), +('82.36', 'Other myectomy of hand', 'ICD9CM_2010'), +('82.39', 'Other excision of soft tissue of hand', 'ICD9CM_2010'), +('82.4', 'Suture of muscle, tendon, and fascia of hand', 'ICD9CM_2010'), +('82.41', 'Suture of tendon sheath of hand', 'ICD9CM_2010'), +('82.42', 'Delayed suture of flexor tendon of hand', 'ICD9CM_2010'), +('82.43', 'Delayed suture of other tendon of hand', 'ICD9CM_2010'), +('82.44', 'Other suture of flexor tendon of hand', 'ICD9CM_2010'), +('82.45', 'Other suture of other tendon of hand', 'ICD9CM_2010'), +('82.46', 'Suture of muscle or fascia of hand', 'ICD9CM_2010'), +('82.5', 'Transplantation of muscle and tendon of hand', 'ICD9CM_2010'), +('82.51', 'Advancement of tendon of hand', 'ICD9CM_2010'), +('82.52', 'Recession of tendon of hand', 'ICD9CM_2010'), +('82.53', 'Reattachment of tendon of hand', 'ICD9CM_2010'), +('82.54', 'Reattachment of muscle of hand', 'ICD9CM_2010'), +('82.55', 'Other change in muscle or tendon length of hand', 'ICD9CM_2010'), +('82.56', 'Other hand tendon transfer or transplantation', 'ICD9CM_2010'), +('82.57', 'Other hand tendon transposition', 'ICD9CM_2010'), +('82.58', 'Other hand muscle transfer or transplantation', 'ICD9CM_2010'), +('82.59', 'Other hand muscle transposition', 'ICD9CM_2010'), +('82.6', 'Reconstruction of thumb', 'ICD9CM_2010'), +('82.61', 'Pollicization operation carrying over nerves and blood supply', 'ICD9CM_2010'), +('82.69', 'Other reconstruction of thumb', 'ICD9CM_2010'), +('82.7', 'Plastic operation on hand with graft or implant', 'ICD9CM_2010'), +('82.71', 'Tendon pulley reconstruction', 'ICD9CM_2010'), +('82.72', 'Plastic operation on hand with graft of muscle or fascia', 'ICD9CM_2010'), +('82.79', 'Plastic operation on hand with other graft or implant', 'ICD9CM_2010'), +('82.8', 'Other plastic operations on hand', 'ICD9CM_2010'), +('82.81', 'Transfer of finger, except thumb', 'ICD9CM_2010'), +('82.82', 'Repair of cleft hand', 'ICD9CM_2010'), +('82.83', 'Repair of macrodactyly', 'ICD9CM_2010'), +('82.84', 'Repair of mallet finger', 'ICD9CM_2010'), +('82.85', 'Other tenodesis of hand', 'ICD9CM_2010'), +('82.86', 'Other tenoplasty of hand', 'ICD9CM_2010'), +('82.89', 'Other plastic operations on hand', 'ICD9CM_2010'), +('82.9', 'Other operations on muscle, tendon, and fascia of hand', 'ICD9CM_2010'), +('82.91', 'Lysis of adhesions of hand', 'ICD9CM_2010'), +('82.92', 'Aspiration of bursa of hand', 'ICD9CM_2010'), +('82.93', 'Aspiration of other soft tissue of hand', 'ICD9CM_2010'), +('82.94', 'Injection of therapeutic substance into bursa of hand', 'ICD9CM_2010'), +('82.95', 'Injection of therapeutic substance into tendon of hand', 'ICD9CM_2010'), +('82.96', 'Other injection of locally-acting therapeutic substance into soft ti', 'ICD9CM_2010'), +('82.99', 'Other operations on muscle, tendon, and fascia of hand', 'ICD9CM_2010'), +('83', 'Operations on muscle, tendon, fascia, and bursa, except hand', 'ICD9CM_2010'), +('83.0', 'Incision of muscle, tendon, fascia, and bursa', 'ICD9CM_2010'), +('83.01', 'Exploration of tendon sheath', 'ICD9CM_2010'), +('83.02', 'Myotomy', 'ICD9CM_2010'), +('83.03', 'Bursotomy', 'ICD9CM_2010'), +('83.09', 'Other incision of soft tissue', 'ICD9CM_2010'), +('83.1', 'Division of muscle, tendon, and fascia', 'ICD9CM_2010'), +('83.11', 'Achillotenotomy', 'ICD9CM_2010'), +('83.12', 'Adductor tenotomy of hip', 'ICD9CM_2010'), +('83.13', 'Other tenotomy', 'ICD9CM_2010'), +('83.14', 'Fasciotomy', 'ICD9CM_2010'), +('83.19', 'Other division of soft tissue', 'ICD9CM_2010'), +('83.2', 'Diagnostic procedures on muscle, tendon, fascia, and bursa, including that of hand', 'ICD9CM_2010'), +('83.21', 'Biopsy of soft tissue', 'ICD9CM_2010'), +('83.29', 'Other diagnostic procedures on muscle, tendon, fascia, and bursa, including that of hand', 'ICD9CM_2010'), +('83.3', 'Excision of lesion of muscle, tendon, fascia, and bursa', 'ICD9CM_2010'), +('83.31', 'Excision of lesion of tendon sheath', 'ICD9CM_2010'), +('83.32', 'Excision of lesion of muscle', 'ICD9CM_2010'), +('83.39', 'Excision of lesion of other soft tissue', 'ICD9CM_2010'), +('83.4', 'Other excision of muscle, tendon, and fascia', 'ICD9CM_2010'), +('83.41', 'Excision of tendon for graft', 'ICD9CM_2010'), +('83.42', 'Other tenonectomy', 'ICD9CM_2010'), +('83.43', 'Excision of muscle or fascia for graft', 'ICD9CM_2010'), +('83.44', 'Other fasciectomy', 'ICD9CM_2010'), +('83.45', 'Other myectomy', 'ICD9CM_2010'), +('83.49', 'Other excision of soft tissue', 'ICD9CM_2010'), +('83.5', 'Bursectomy', 'ICD9CM_2010'), +('83.6', 'Suture of muscle, tendon, and fascia', 'ICD9CM_2010'), +('83.61', 'Suture of tendon sheath', 'ICD9CM_2010'), +('83.62', 'Delayed suture of tendon', 'ICD9CM_2010'), +('83.63', 'Rotator cuff repair', 'ICD9CM_2010'), +('83.64', 'Other suture of tendon', 'ICD9CM_2010'), +('83.65', 'Other suture of muscle or fascia', 'ICD9CM_2010'), +('83.7', 'Reconstruction of muscle and tendon', 'ICD9CM_2010'), +('83.71', 'Advancement of tendon', 'ICD9CM_2010'), +('83.72', 'Recession of tendon', 'ICD9CM_2010'), +('83.73', 'Reattachment of tendon', 'ICD9CM_2010'), +('83.74', 'Reattachment of muscle', 'ICD9CM_2010'), +('83.75', 'Tendon transfer or transplantation', 'ICD9CM_2010'), +('83.76', 'Other tendon transposition', 'ICD9CM_2010'), +('83.77', 'Muscle transfer or transplantation', 'ICD9CM_2010'), +('83.79', 'Other muscle transposition', 'ICD9CM_2010'), +('83.8', 'Other plastic operations on muscle, tendon, and fascia', 'ICD9CM_2010'), +('83.81', 'Tendon graft', 'ICD9CM_2010'), +('83.82', 'Graft of muscle or fascia', 'ICD9CM_2010'), +('83.83', 'Tendon pulley reconstruction', 'ICD9CM_2010'), +('83.84', 'Release of clubfoot, not elsewhere classified', 'ICD9CM_2010'), +('83.85', 'Other change in muscle or tendon length', 'ICD9CM_2010'), +('83.86', 'Quadricepsplasty', 'ICD9CM_2010'), +('83.87', 'Other plastic operations on muscle', 'ICD9CM_2010'), +('83.88', 'Other plastic operations on tendon', 'ICD9CM_2010'), +('83.89', 'Other plastic operations on fascia', 'ICD9CM_2010'), +('83.9', 'Other operations on muscle, tendon, fascia, and bursa', 'ICD9CM_2010'), +('83.91', 'Lysis of adhesions of muscle, tendon, fascia, and bursa', 'ICD9CM_2010'), +('83.92', 'Insertion or replacement of skeletal muscle stimulator', 'ICD9CM_2010'), +('83.93', 'Removal of skeletal muscle stimulator', 'ICD9CM_2010'), +('83.94', 'Aspiration of bursa', 'ICD9CM_2010'), +('83.95', 'Aspiration of other soft tissue', 'ICD9CM_2010'), +('83.96', 'Injection of therapeutic substance into bursa', 'ICD9CM_2010'), +('83.97', 'Injection of therapeutic substance into tendon', 'ICD9CM_2010'), +('83.98', 'Injection of locally acting therapeutic substance into other soft tissue', 'ICD9CM_2010'), +('83.99', 'Other operations on muscle, tendon, fascia, and bursa', 'ICD9CM_2010'), +('84', 'Other procedures on musculoskeletal system', 'ICD9CM_2010'), +('84.0', 'Amputation of upper limb', 'ICD9CM_2010'), +('84.00', 'Upper limb amputation, not otherwise specified', 'ICD9CM_2010'), +('84.01', 'Amputation and disarticulation of finger', 'ICD9CM_2010'), +('84.02', 'Amputation and disarticulation of thumb', 'ICD9CM_2010'), +('84.03', 'Amputation through hand', 'ICD9CM_2010'), +('84.04', 'Disarticulation of wrist', 'ICD9CM_2010'), +('84.05', 'Amputation through forearm', 'ICD9CM_2010'), +('84.06', 'Disarticulation of elbow', 'ICD9CM_2010'), +('84.07', 'Amputation through humerus', 'ICD9CM_2010'), +('84.08', 'Disarticulation of shoulder', 'ICD9CM_2010'), +('84.09', 'Interthoracoscapular amputation', 'ICD9CM_2010'), +('84.1', 'Amputation of lower limb', 'ICD9CM_2010'), +('84.10', 'Lower limb amputation, not otherwise specified', 'ICD9CM_2010'), +('84.11', 'Amputation of toe', 'ICD9CM_2010'), +('84.12', 'Amputation through foot', 'ICD9CM_2010'), +('84.13', 'Disarticulation of ankle', 'ICD9CM_2010'), +('84.14', 'Amputation of ankle through malleoli of tibia and fibula', 'ICD9CM_2010'), +('84.15', 'Other amputation below knee', 'ICD9CM_2010'), +('84.16', 'Disarticulation of knee', 'ICD9CM_2010'), +('84.17', 'Amputation above knee', 'ICD9CM_2010'), +('84.18', 'Disarticulation of hip', 'ICD9CM_2010'), +('84.19', 'Abdominopelvic amputation', 'ICD9CM_2010'), +('84.2', 'Reattachment of extremity', 'ICD9CM_2010'), +('84.21', 'Thumb reattachment', 'ICD9CM_2010'), +('84.22', 'Finger reattachment', 'ICD9CM_2010'), +('84.23', 'Forearm, wrist, or hand reattachment', 'ICD9CM_2010'), +('84.24', 'Upper arm reattachment', 'ICD9CM_2010'), +('84.25', 'Toe reattachment', 'ICD9CM_2010'), +('84.26', 'Foot reattachment', 'ICD9CM_2010'), +('84.27', 'Lower leg or ankle reattachment', 'ICD9CM_2010'), +('84.28', 'Thigh reattachment', 'ICD9CM_2010'), +('84.29', 'Other reattachment of extremity', 'ICD9CM_2010'), +('84.3', 'Revision of amputation stump', 'ICD9CM_2010'), +('84.4', 'Implantation or fitting of prosthetic limb device', 'ICD9CM_2010'), +('84.40', 'Implantation or fitting of prosthetic limb device, not otherwise specified', 'ICD9CM_2010'), +('84.41', 'Fitting of prosthesis of upper arm and shoulder', 'ICD9CM_2010'), +('84.42', 'Fitting of prosthesis of lower arm and hand', 'ICD9CM_2010'), +('84.43', 'Fitting of prosthesis of arm, not otherwise specified', 'ICD9CM_2010'), +('84.44', 'Implantation of prosthetic device of arm', 'ICD9CM_2010'), +('84.45', 'Fitting of prosthesis above knee', 'ICD9CM_2010'), +('84.46', 'Fitting of prosthesis below knee', 'ICD9CM_2010'), +('84.47', 'Fitting of prosthesis of leg, not otherwise specified', 'ICD9CM_2010'), +('84.48', 'Implantation of prosthetic device of leg', 'ICD9CM_2010'), +('84.5', 'Implantation of other musculoskeletal devices and substance', 'ICD9CM_2010'), +('84.51', 'Insertion of interbody spinal fusion device', 'ICD9CM_2010'), +('84.52', 'Insertion of recombinant bone morphogenetic protein rhBMP', 'ICD9CM_2010'), +('84.53', 'Implantation of internal limb lengthening device with kinetic distraction', 'ICD9CM_2010'), +('84.54', 'Implantation of other internal limb lengthening device', 'ICD9CM_2010'), +('84.55', 'Insertion of bone void filler', 'ICD9CM_2010'), +('84.56', 'Insertion or replacement of (cement) spacer', 'ICD9CM_2010'), +('84.57', 'Removal of (cement) spacer', 'ICD9CM_2010'), +('84.59', 'Insertion of other spinal devices', 'ICD9CM_2010'), +('84.6', 'Replacement of spinal disc', 'ICD9CM_2010'), +('84.60', 'Insertion of spinal disc prosthesis, not otherwise specified', 'ICD9CM_2010'), +('84.61', 'Insertion of partial spinal disc prosthesis, cervical', 'ICD9CM_2010'), +('84.62', 'Insertion of total spinal disc prosthesis cervical', 'ICD9CM_2010'), +('84.63', 'Insertion of spinal disc prosthesis,thoracic', 'ICD9CM_2010'), +('84.64', 'Insertion of partial spinal disc prosthesis, lumbosacral', 'ICD9CM_2010'), +('84.65', 'Insertion of total spinal disc prosthesis,lumbosacral', 'ICD9CM_2010'), +('84.66', 'Revision or replacement of artificial spinal disc prosthesis ,cervical', 'ICD9CM_2010'), +('84.67', 'Revision or replacement of artificial spinal disc prosthesis , thoracic', 'ICD9CM_2010'), +('84.68', 'Revision or replacement of artificial spinal disc prosthesis, lumbosacral', 'ICD9CM_2010'), +('84.69', 'Revision or replacement of artificial spinal disc prosthesis, not otherwise specified', 'ICD9CM_2010'), +('84.7', 'Adjunct codes for external fixator device', 'ICD9CM_2010'), +('84.71', 'Application of external fixator device, monoplanar system', 'ICD9CM_2010'), +('84.72', 'Application of external fixator device, ring system', 'ICD9CM_2010'), +('84.73', 'Application of hybrid external fixator device', 'ICD9CM_2010'), +('84.8', 'Insertion, replacement and revision of posterior spinal motion preservation device (s)', 'ICD9CM_2010'), +('84.80', 'Insertion or replacement of interspinous process device (s)', 'ICD9CM_2010'), +('84.81', 'Revision of interspinous device (s)', 'ICD9CM_2010'), +('84.82', 'Insertion or replacement of pedicle-based dynamic stabilization (s)', 'ICD9CM_2010'), +('84.83', 'Revision of pedicle-based dynamic stabilization (s)', 'ICD9CM_2010'), +('84.84', 'Insertion or replacement of facet replacement device (s)', 'ICD9CM_2010'), +('84.85', 'Revision of facet replacement device (s)', 'ICD9CM_2010'), +('84.9', 'Other operations on musculoskeletal system', 'ICD9CM_2010'), +('84.91', 'Amputation, not otherwise specified', 'ICD9CM_2010'), +('84.92', 'Separation of equal conjoined twins', 'ICD9CM_2010'), +('84.93', 'Separation of unequal conjoined twins', 'ICD9CM_2010'), +('84.94', 'Insertion of sternal fixation device with rigid plates', 'ICD9CM_2010'), +('84.99', 'Other operations on musculoskeletal system', 'ICD9CM_2010'), +('85', 'Operations on the breast', 'ICD9CM_2010'), +('85.0', 'Mastotomy', 'ICD9CM_2010'), +('85.1', 'Diagnostic procedures on breast', 'ICD9CM_2010'), +('85.11', 'Closed (percutaneous) (needle) biopsy of breast', 'ICD9CM_2010'), +('85.12', 'Open biopsy of breast', 'ICD9CM_2010'), +('85.19', 'Other diagnostic procedures on breast', 'ICD9CM_2010'), +('85.2', 'Excision or destruction of breast tissue', 'ICD9CM_2010'), +('85.20', 'Excision or destruction of breast tissue, not otherwise specified', 'ICD9CM_2010'), +('85.21', 'Local excision of lesion of breast', 'ICD9CM_2010'), +('85.22', 'Resection of quadrant of breast', 'ICD9CM_2010'), +('85.23', 'Subtotal mastectomy', 'ICD9CM_2010'), +('85.24', 'Excision of ectopic breast tissue', 'ICD9CM_2010'), +('85.25', 'Excision of nipple', 'ICD9CM_2010'), +('85.3', 'Reduction mammoplasty and subcutaneous mammectomy', 'ICD9CM_2010'), +('85.31', 'Unilateral reduction mammoplasty', 'ICD9CM_2010'), +('85.32', 'Bilateral reduction mammoplasty', 'ICD9CM_2010'), +('85.33', 'Unilateral subcutaneous mammectomy with synchronous implant', 'ICD9CM_2010'), +('85.34', 'Other unilateral subcutaneous mammectomy', 'ICD9CM_2010'), +('85.35', 'Bilateral subcutaneous mammectomy with synchronous implant', 'ICD9CM_2010'), +('85.36', 'Other bilateral subcutaneous mammectomy', 'ICD9CM_2010'), +('85.4', 'Mastectomy', 'ICD9CM_2010'), +('85.41', 'Unilateral simple mastectomy', 'ICD9CM_2010'), +('85.42', 'Bilateral simple mastectomy', 'ICD9CM_2010'), +('85.43', 'Unilateral extended simple mastectomy', 'ICD9CM_2010'), +('85.44', 'Bilateral extended simple mastectomy', 'ICD9CM_2010'), +('85.45', 'Unilateral radical mastectomy', 'ICD9CM_2010'), +('85.46', 'Bilateral radical mastectomy', 'ICD9CM_2010'), +('85.47', 'Unilateral extended radical mastectomy', 'ICD9CM_2010'), +('85.48', 'Bilateral extended radical mastectomy', 'ICD9CM_2010'), +('85.5', 'Augmentation mammoplasty', 'ICD9CM_2010'), +('85.50', 'Augmentation mammoplasty, not otherwise specified', 'ICD9CM_2010'), +('85.51', 'Unilateral injection into breast for augmentation', 'ICD9CM_2010'), +('85.52', 'Bilateral injection into breast for augmentation', 'ICD9CM_2010'), +('85.53', 'Unilateral breast implant', 'ICD9CM_2010'), +('85.54', 'Bilateral breast implant', 'ICD9CM_2010'), +('85.55', 'Fat graft to breast', 'ICD9CM_2010'), +('85.6', 'Mastopexy', 'ICD9CM_2010'), +('85.7', 'Total reconstruction of breast', 'ICD9CM_2010'), +('85.70', 'Total reconstruction of breast, not otherwise specified', 'ICD9CM_2010'), +('85.71', 'Latissimus dorsi myocutaneous flap', 'ICD9CM_2010'), +('85.72', 'Transverse rectus abdominis myocutaneous (TRAM) flap, pedicled', 'ICD9CM_2010'), +('85.73', 'Transverse rectus abdominis myocutaneous (TRAM) flap,free', 'ICD9CM_2010'), +('85.74', 'Deep inferior epigastric artery perforatar (DIEP)', 'ICD9CM_2010'), +('85.75', 'Superficial inferior epigastric artery (SIEA) flap, free', 'ICD9CM_2010'), +('85.76', 'Gluteal artery perforator (GAP) flap, free', 'ICD9CM_2010'), +('85.79', 'Other total reconstruction of breast', 'ICD9CM_2010'), +('85.8', 'Other repair and plastic operations on breast', 'ICD9CM_2010'), +('85.81', 'Suture of laceration of breast', 'ICD9CM_2010'), +('85.82', 'Split-thickness graft to breast', 'ICD9CM_2010'), +('85.83', 'Full-thickness graft to breast', 'ICD9CM_2010'), +('85.84', 'Pedicle graft to breast', 'ICD9CM_2010'), +('85.85', 'Muscle flap graft to breast', 'ICD9CM_2010'), +('85.86', 'Transposition of nipple', 'ICD9CM_2010'), +('85.87', 'Other repair or reconstruction of nipple', 'ICD9CM_2010'), +('85.89', 'Other mammoplasty', 'ICD9CM_2010'), +('85.9', 'Other operations on the breast', 'ICD9CM_2010'), +('85.91', 'Aspiration of breast', 'ICD9CM_2010'), +('85.92', 'Injection of therapeutic agent into breast', 'ICD9CM_2010'), +('85.93', 'Revision of implant of breast', 'ICD9CM_2010'), +('85.94', 'Removal of implant of breast', 'ICD9CM_2010'), +('85.95', 'Insertion of breast tissue expander', 'ICD9CM_2010'), +('85.96', 'Removal of breast tissue expander (s)', 'ICD9CM_2010'), +('85.99', 'Other operations on the breast', 'ICD9CM_2010'), +('86', 'Operations on skin and subcutaneous tissue', 'ICD9CM_2010'), +('86.0', 'Incision of skin and subcutaneous tissue', 'ICD9CM_2010'), +('86.01', 'Aspiration of skin and subcutaneous tissue', 'ICD9CM_2010'), +('86.02', 'Injection or tattooing of skin lesion or defect', 'ICD9CM_2010'), +('86.03', 'Incision of pilonidal sinus or cyst', 'ICD9CM_2010'), +('86.04', 'Other incision with drainage of skin and subcutaneous tissue', 'ICD9CM_2010'), +('86.05', 'Incision with removal of foreign body from skin and subcutaneous tissue', 'ICD9CM_2010'), +('86.06', 'Insertion of totally implantable infusion pump', 'ICD9CM_2010'), +('86.07', 'Insertion of totally implantable vascular access device (vad)', 'ICD9CM_2010'), +('86.09', 'Other incision of skin and subcutaneous tissue', 'ICD9CM_2010'), +('86.1', 'Diagnostic procedures on skin and subcutaneous tissue', 'ICD9CM_2010'), +('86.11', 'Biopsy of skin and subcutaneous tissue', 'ICD9CM_2010'), +('86.19', 'Other diagnostic procedures on skin and subcutaneous tissue', 'ICD9CM_2010'), +('86.2', 'Excision or destruction of lesion or tissue of skin and subcutaneous', 'ICD9CM_2010'), +('86.21', 'Excision of pilonidal cyst or sinus', 'ICD9CM_2010'), +('86.22', 'Excisional debridement of wound, infection, or burn', 'ICD9CM_2010'), +('86.23', 'Removal of nail, nailbed, or nail fold', 'ICD9CM_2010'), +('86.24', 'Chemosurgery of skin', 'ICD9CM_2010'), +('86.25', 'Dermabrasion', 'ICD9CM_2010'), +('86.26', 'Ligation of dermal appendage', 'ICD9CM_2010'), +('86.27', 'Debridement of nail, nail bed, or nail fold', 'ICD9CM_2010'), +('86.28', 'Nonexcisional debridement of wound, infection, or burn', 'ICD9CM_2010'), +('86.3', 'Other local excision or destruction of lesion or tissue of skin and', 'ICD9CM_2010'), +('86.4', 'Radical excision of skin lesion', 'ICD9CM_2010'), +('86.5', 'Suture of skin and subcutaneous tissue', 'ICD9CM_2010'), +('86.51', 'Replantation of scalp', 'ICD9CM_2010'), +('86.59', 'Suture of skin and subcutaneous tissue of other sites', 'ICD9CM_2010'), +('86.6', 'Free skin graft', 'ICD9CM_2010'), +('86.60', 'Free skin graft, not otherwise specified', 'ICD9CM_2010'), +('86.61', 'Full-thickness skin graft to hand', 'ICD9CM_2010'), +('86.62', 'Other skin graft to hand', 'ICD9CM_2010'), +('86.63', 'Full-thickness skin graft to other sites', 'ICD9CM_2010'), +('86.64', 'Hair transplant', 'ICD9CM_2010'), +('86.65', 'Heterograft to skin', 'ICD9CM_2010'), +('86.66', 'Homograft to skin', 'ICD9CM_2010'), +('86.67', 'Dermal regenerative graft', 'ICD9CM_2010'), +('86.69', 'Other skin graft to other sites', 'ICD9CM_2010'), +('86.7', 'Pedicle grafts or flaps', 'ICD9CM_2010'), +('86.70', 'Pedicle or flap graft, not otherwise specified', 'ICD9CM_2010'), +('86.71', 'Cutting and preparation of pedicle grafts or flaps', 'ICD9CM_2010'), +('86.72', 'Advancement of pedicle graft', 'ICD9CM_2010'), +('86.73', 'Attachment of pedicle or flap graft to hand', 'ICD9CM_2010'), +('86.74', 'Attachment of pedicle or flap graft to other sites', 'ICD9CM_2010'), +('86.75', 'Revision of pedicle or flap graft', 'ICD9CM_2010'), +('86.8', 'Other repair and reconstruction of skin and subcutaneous tissue', 'ICD9CM_2010'), +('86.81', 'Repair for facial weakness', 'ICD9CM_2010'), +('86.82', 'Facial rhytidectomy', 'ICD9CM_2010'), +('86.83', 'Size reduction plastic operation', 'ICD9CM_2010'), +('86.84', 'Relaxation of scar or web contracture of skin', 'ICD9CM_2010'), +('86.85', 'Correction of syndactyly', 'ICD9CM_2010'), +('86.86', 'Onychoplasty', 'ICD9CM_2010'), +('86.87', 'Fat graft of skin and subcutaneous tissue', 'ICD9CM_2010'), +('86.89', 'Other repair and reconstruction of skin and subcutaneous tissue', 'ICD9CM_2010'), +('86.9', 'Other operations on skin and subcutaneous tissue', 'ICD9CM_2010'), +('86.90', 'Extraction of fat for graft or banking', 'ICD9CM_2010'), +('86.91', 'Excision of skin for graft', 'ICD9CM_2010'), +('86.92', 'Electrolysis and other epilation of skin', 'ICD9CM_2010'), +('86.93', 'Insertion of tissue expander', 'ICD9CM_2010'), +('86.94', 'Insertion or replacement of singer array neurostimulator pulse generator, not specified as rechargeable', 'ICD9CM_2010'), +('86.95', 'Insertion or replacement of dual array neurostimulator pulse generator, not specified as rechargeable', 'ICD9CM_2010'), +('86.96', 'Insertion or replacement of other neurostimulator pulse generator', 'ICD9CM_2010'), +('86.97', 'Insertion or replacement of singer array rechargeable neurostimulator pulse generator', 'ICD9CM_2010'), +('86.98', 'Insertion or replacement of dual array rechargeable neurostimulator pulse generator', 'ICD9CM_2010'), +('86.99', 'Other operations on skin and subcutaneous tissue', 'ICD9CM_2010'), +('87', 'Diagnostic radiology', 'ICD9CM_2010'), +('87.0', 'Soft tissue x-ray of face, head, and neck', 'ICD9CM_2010'), +('87.01', 'Pneumoencephalogram', 'ICD9CM_2010'), +('87.02', 'Other contrast radiogram of brain and skull', 'ICD9CM_2010'), +('87.03', 'Computerized axial tomography of head', 'ICD9CM_2010'), +('87.04', 'Other tomography of head', 'ICD9CM_2010'), +('87.05', 'Contrast dacryocystogram', 'ICD9CM_2010'), +('87.06', 'Contrast radiogram of nasopharynx', 'ICD9CM_2010'), +('87.07', 'Contrast laryngogram', 'ICD9CM_2010'), +('87.08', 'Cervical lymphangiogram', 'ICD9CM_2010'), +('87.09', 'Other soft tissue x-ray of face, head, and neck', 'ICD9CM_2010'), +('87.1', 'Other x-ray of face, head, and neck', 'ICD9CM_2010'), +('87.11', 'Full-mouth x-ray of teeth', 'ICD9CM_2010'), +('87.12', 'Other dental x-ray', 'ICD9CM_2010'), +('87.13', 'Temporomandibular contrast arthrogram', 'ICD9CM_2010'), +('87.14', 'Contrast radiogram of orbit', 'ICD9CM_2010'), +('87.15', 'Contrast radiogram of sinus', 'ICD9CM_2010'), +('87.16', 'Other x-ray of facial bones', 'ICD9CM_2010'), +('87.17', 'Other x-ray of skull', 'ICD9CM_2010'), +('87.2', 'X-ray of spine', 'ICD9CM_2010'), +('87.21', 'Contrast myelogram', 'ICD9CM_2010'); +INSERT INTO `icd9` (`ID_ICD9`, `Prosedur`, `Versi_ICD9`) VALUES +('87.22', 'Other x-ray of cervical spine', 'ICD9CM_2010'), +('87.23', 'Other x-ray of thoracic spine', 'ICD9CM_2010'), +('87.24', 'Other x-ray of lumbosacral spine', 'ICD9CM_2010'), +('87.29', 'Other x-ray of spine', 'ICD9CM_2010'), +('87.3', 'Soft tissue x-ray of thorax', 'ICD9CM_2010'), +('87.31', 'Endotracheal bronchogram', 'ICD9CM_2010'), +('87.32', 'Other contrast bronchogram', 'ICD9CM_2010'), +('87.33', 'Mediastinal pneumogram', 'ICD9CM_2010'), +('87.34', 'Intrathoracic lymphangiogram', 'ICD9CM_2010'), +('87.35', 'Contrast radiogram of mammary ducts', 'ICD9CM_2010'), +('87.36', 'Xerography of breast', 'ICD9CM_2010'), +('87.37', 'Other mammography', 'ICD9CM_2010'), +('87.38', 'Sinogram of chest wall', 'ICD9CM_2010'), +('87.39', 'Other soft tissue x-ray of chest wall', 'ICD9CM_2010'), +('87.4', 'Other x-ray of thorax', 'ICD9CM_2010'), +('87.41', 'Computerized axial tomography of thorax', 'ICD9CM_2010'), +('87.42', 'Other tomography of thorax', 'ICD9CM_2010'), +('87.43', 'X-ray of ribs, sternum, and clavicle', 'ICD9CM_2010'), +('87.44', 'Routine chest x-ray, so described', 'ICD9CM_2010'), +('87.49', 'Other chest x-ray', 'ICD9CM_2010'), +('87.5', 'Biliary tract x-ray', 'ICD9CM_2010'), +('87.51', 'Percutaneous hepatic cholangiogram', 'ICD9CM_2010'), +('87.52', 'Intravenous cholangiogram', 'ICD9CM_2010'), +('87.53', 'Intraoperative cholangiogram', 'ICD9CM_2010'), +('87.54', 'Other cholangiogram', 'ICD9CM_2010'), +('87.59', 'Other biliary tract x-ray', 'ICD9CM_2010'), +('87.6', 'Other x-ray of digestive system', 'ICD9CM_2010'), +('87.61', 'Barium swallow', 'ICD9CM_2010'), +('87.62', 'Upper gi series', 'ICD9CM_2010'), +('87.63', 'Small bowel series', 'ICD9CM_2010'), +('87.64', 'Lower gi series', 'ICD9CM_2010'), +('87.65', 'Other x-ray of intestine', 'ICD9CM_2010'), +('87.66', 'Contrast pancreatogram', 'ICD9CM_2010'), +('87.69', 'Other digestive tract x-ray', 'ICD9CM_2010'), +('87.7', 'X-ray of urinary system', 'ICD9CM_2010'), +('87.71', 'Computerized axial tomography of kidney', 'ICD9CM_2010'), +('87.72', 'Other nephrotomogram', 'ICD9CM_2010'), +('87.73', 'Intravenous pyelogram', 'ICD9CM_2010'), +('87.74', 'Retrograde pyelogram', 'ICD9CM_2010'), +('87.75', 'Percutaneous pyelogram', 'ICD9CM_2010'), +('87.76', 'Retrograde cystourethrogram', 'ICD9CM_2010'), +('87.77', 'Other cystogram', 'ICD9CM_2010'), +('87.78', 'Ileal conduitogram', 'ICD9CM_2010'), +('87.79', 'Other x-ray of the urinary system', 'ICD9CM_2010'), +('87.8', 'X-ray of female genital organs', 'ICD9CM_2010'), +('87.81', 'X-ray of gravid uterus', 'ICD9CM_2010'), +('87.82', 'Gas contrast hysterosalpingogram', 'ICD9CM_2010'), +('87.83', 'Opaque dye contrast hysterosalpingogram', 'ICD9CM_2010'), +('87.84', 'Percutaneous hysterogram', 'ICD9CM_2010'), +('87.85', 'Other x-ray of fallopian tubes and uterus', 'ICD9CM_2010'), +('87.89', 'Other x-ray of female genital organs', 'ICD9CM_2010'), +('87.9', 'X-ray of male genital organs', 'ICD9CM_2010'), +('87.91', 'Contrast seminal vesiculogram', 'ICD9CM_2010'), +('87.92', 'Other x-ray of prostate and seminal vesicles', 'ICD9CM_2010'), +('87.93', 'Contrast epididymogram', 'ICD9CM_2010'), +('87.94', 'Contrast vasogram', 'ICD9CM_2010'), +('87.95', 'Other x-ray of epididymis and vas deferens', 'ICD9CM_2010'), +('87.99', 'Other x-ray of male genital organs', 'ICD9CM_2010'), +('88', 'Other diagnostic radiology and related techniques', 'ICD9CM_2010'), +('88.0', 'Soft tissue x-ray of abdomen', 'ICD9CM_2010'), +('88.01', 'Computerized axial tomography of abdomen', 'ICD9CM_2010'), +('88.02', 'Other abdomen tomography', 'ICD9CM_2010'), +('88.03', 'Sinogram of abdominal wall', 'ICD9CM_2010'), +('88.04', 'Abdominal lymphangiogram', 'ICD9CM_2010'), +('88.09', 'Other soft tissue x-ray of abdominal wall', 'ICD9CM_2010'), +('88.1', 'Other x-ray of abdomen', 'ICD9CM_2010'), +('88.11', 'Pelvic opaque dye contrast radiography', 'ICD9CM_2010'), +('88.12', 'Pelvic gas contrast radiography', 'ICD9CM_2010'), +('88.13', 'Other peritoneal pneumogram', 'ICD9CM_2010'), +('88.14', 'Retroperitoneal fistulogram', 'ICD9CM_2010'), +('88.15', 'Retroperitoneal pneumogram', 'ICD9CM_2010'), +('88.16', 'Other retroperitoneal x-ray', 'ICD9CM_2010'), +('88.19', 'Other x-ray of abdomen', 'ICD9CM_2010'), +('88.2', 'Skeletal x-ray of extremities and pelvis', 'ICD9CM_2010'), +('88.21', 'Skeletal x-ray of shoulder and upper arm', 'ICD9CM_2010'), +('88.22', 'Skeletal x-ray of elbow and forearm', 'ICD9CM_2010'), +('88.23', 'Skeletal x-ray of wrist and hand', 'ICD9CM_2010'), +('88.24', 'Skeletal x-ray of upper limb, not otherwise specified', 'ICD9CM_2010'), +('88.25', 'Pelvimetry', 'ICD9CM_2010'), +('88.26', 'Other skeletal x-ray of pelvis and hip', 'ICD9CM_2010'), +('88.27', 'Skeletal x-ray of thigh, knee, and lower leg', 'ICD9CM_2010'), +('88.28', 'Skeletal x-ray of ankle and foot', 'ICD9CM_2010'), +('88.29', 'Skeletal x-ray of lower limb, not otherwise specified', 'ICD9CM_2010'), +('88.3', 'Other x-ray', 'ICD9CM_2010'), +('88.31', 'Skeletal series', 'ICD9CM_2010'), +('88.32', 'Contrast arthrogram', 'ICD9CM_2010'), +('88.33', 'Other skeletal x-ray', 'ICD9CM_2010'), +('88.34', 'Lymphangiogram of upper limb', 'ICD9CM_2010'), +('88.35', 'Other soft tissue x-ray of upper limb', 'ICD9CM_2010'), +('88.36', 'Lymphangiogram of lower limb', 'ICD9CM_2010'), +('88.37', 'Other soft tissue x-ray of lower limb', 'ICD9CM_2010'), +('88.38', 'Other computerized axial tomography', 'ICD9CM_2010'), +('88.39', 'X-ray, other and unspecified', 'ICD9CM_2010'), +('88.4', 'Arteriography using contrast material', 'ICD9CM_2010'), +('88.40', 'Arteriography using contrast material, unspecified site', 'ICD9CM_2010'), +('88.41', 'Arteriography of cerebral arteries', 'ICD9CM_2010'), +('88.42', 'Aortography', 'ICD9CM_2010'), +('88.43', 'Arteriography of pulmonary arteries', 'ICD9CM_2010'), +('88.44', 'Arteriography of other intrathoracic vessels', 'ICD9CM_2010'), +('88.45', 'Arteriography of renal arteries', 'ICD9CM_2010'), +('88.46', 'Arteriography of placenta', 'ICD9CM_2010'), +('88.47', 'Arteriography of other intra-abdominal arteries', 'ICD9CM_2010'), +('88.48', 'Arteriography of femoral and other lower extremity arteries', 'ICD9CM_2010'), +('88.49', 'Arteriography of other specified sites', 'ICD9CM_2010'), +('88.5', 'Angiocardiography using contrast material', 'ICD9CM_2010'), +('88.50', 'Angiocardiography, not otherwise specified', 'ICD9CM_2010'), +('88.51', 'Angiocardiography of venae cavae', 'ICD9CM_2010'), +('88.52', 'Angiocardiography of right heart structures', 'ICD9CM_2010'), +('88.53', 'Angiocardiography of left heart structures', 'ICD9CM_2010'), +('88.54', 'Combined right and left heart angiocardiography', 'ICD9CM_2010'), +('88.55', 'Coronary arteriography using a single catheter', 'ICD9CM_2010'), +('88.56', 'Coronary arteriography using two catheters', 'ICD9CM_2010'), +('88.57', 'Other and unspecified coronary arteriography', 'ICD9CM_2010'), +('88.58', 'Negative-contrast cardiac roentgenography', 'ICD9CM_2010'), +('88.59', 'Intra-operative fluorescence vascular angiography', 'ICD9CM_2010'), +('88.6', 'Phlebography', 'ICD9CM_2010'), +('88.60', 'Phlebography using contrast material, unspecified site', 'ICD9CM_2010'), +('88.61', 'Phlebography of veins of head and neck using contrast material', 'ICD9CM_2010'), +('88.62', 'Phlebography of pulmonary veins using contrast material', 'ICD9CM_2010'), +('88.63', 'Phlebography of other intrathoracic veins using contrast material', 'ICD9CM_2010'), +('88.64', 'Phlebography of the portal venous system using contrast material', 'ICD9CM_2010'), +('88.65', 'Phlebography of other intra-abdominal veins using contrast material', 'ICD9CM_2010'), +('88.66', 'Phlebography of femoral and other lower extremity veins using contra', 'ICD9CM_2010'), +('88.67', 'Phlebography of other specified sites using contrast material', 'ICD9CM_2010'), +('88.68', 'Impedance phlebography', 'ICD9CM_2010'), +('88.7', 'Diagnostic ultrasound', 'ICD9CM_2010'), +('88.71', 'Diagnostic ultrasound of head and neck', 'ICD9CM_2010'), +('88.72', 'Diagnostic ultrasound of heart', 'ICD9CM_2010'), +('88.73', 'Diagnostic ultrasound of other sites of thorax', 'ICD9CM_2010'), +('88.74', 'Diagnostic ultrasound of digestive system', 'ICD9CM_2010'), +('88.75', 'Diagnostic ultrasound of urinary system', 'ICD9CM_2010'), +('88.76', 'Diagnostic ultrasound of abdomen and retroperitoneum', 'ICD9CM_2010'), +('88.77', 'Diagnostic ultrasound of peripheral vascular system', 'ICD9CM_2010'), +('88.78', 'Diagnostic ultrasound of gravid uterus', 'ICD9CM_2010'), +('88.79', 'Other diagnostic ultrasound', 'ICD9CM_2010'), +('88.8', 'Thermography', 'ICD9CM_2010'), +('88.81', 'Cerebral thermography', 'ICD9CM_2010'), +('88.82', 'Ocular thermography', 'ICD9CM_2010'), +('88.83', 'Bone thermography', 'ICD9CM_2010'), +('88.84', 'Muscle thermography', 'ICD9CM_2010'), +('88.85', 'Breast thermography', 'ICD9CM_2010'), +('88.86', 'Blood vessel thermography', 'ICD9CM_2010'), +('88.89', 'Thermography of other sites', 'ICD9CM_2010'), +('88.9', 'Other diagnostic imaging', 'ICD9CM_2010'), +('88.90', 'Diagnostic imaging, not elsewhere classified', 'ICD9CM_2010'), +('88.91', 'Magnetic resonance imaging of brain and brain stem', 'ICD9CM_2010'), +('88.92', 'Magnetic resonance imaging of chest and myocardium for evaluation of', 'ICD9CM_2010'), +('88.93', 'Magnetic resonance imaging of spinal canal', 'ICD9CM_2010'), +('88.94', 'Magnetic resonance imaging of musculoskeletal', 'ICD9CM_2010'), +('88.95', 'Magnetic resonance imaging of pelvis, prostate, and bladder', 'ICD9CM_2010'), +('88.96', 'Other intraoperative magnetic resonance imaging', 'ICD9CM_2010'), +('88.97', 'Magnetic resonance imaging of other and unspecified sites', 'ICD9CM_2010'), +('88.98', 'Bone mineral density studies', 'ICD9CM_2010'), +('89', 'Interview, evaluation, consultation, and examination', 'ICD9CM_2010'), +('89.0', 'Diagnostic interview, consultation, and evaluation', 'ICD9CM_2010'), +('89.01', 'Interview and evaluation, described as brief', 'ICD9CM_2010'), +('89.02', 'Interview and evaluation, described as limited', 'ICD9CM_2010'), +('89.03', 'Interview and evaluation, described as comprehensive', 'ICD9CM_2010'), +('89.04', 'Other interview and evaluation', 'ICD9CM_2010'), +('89.05', 'Diagnostic interview and evaluation, not otherwise specified', 'ICD9CM_2010'), +('89.06', 'Consultation, described as limited', 'ICD9CM_2010'), +('89.07', 'Consultation, described as comprehensive', 'ICD9CM_2010'), +('89.08', 'Other consultation', 'ICD9CM_2010'), +('89.09', 'Consultation, not otherwise specified', 'ICD9CM_2010'), +('89.1', 'Anatomic and physiologic measurements and manual examinations - nervous system and sense organs', 'ICD9CM_2010'), +('89.10', 'Intracarotid amobarbitral test', 'ICD9CM_2010'), +('89.11', 'Tonometry', 'ICD9CM_2010'), +('89.12', 'Nasal function study', 'ICD9CM_2010'), +('89.13', 'Neurologic examination', 'ICD9CM_2010'), +('89.14', 'Electroencephalogram', 'ICD9CM_2010'), +('89.15', 'Other nonoperative neurologic function tests', 'ICD9CM_2010'), +('89.16', 'Transillumination of newborn skull', 'ICD9CM_2010'), +('89.17', 'Polysomnogram', 'ICD9CM_2010'), +('89.18', 'Other sleep disorder function tests', 'ICD9CM_2010'), +('89.19', 'Video and radio-telemetered electroencephalographic monitoring', 'ICD9CM_2010'), +('89.2', 'Anatomic and physiologic measurements and manual examinations - genitourinary system', 'ICD9CM_2010'), +('89.21', 'Urinary manometry', 'ICD9CM_2010'), +('89.22', 'Cystometrogram', 'ICD9CM_2010'), +('89.23', 'Urethral sphincter electromyogram', 'ICD9CM_2010'), +('89.24', 'Uroflowmetry (UFR)', 'ICD9CM_2010'), +('89.25', 'Urethral pressure profile (UPP)', 'ICD9CM_2010'), +('89.26', 'Gynecological examination', 'ICD9CM_2010'), +('89.29', 'Other nonoperative genitourinary system measurements', 'ICD9CM_2010'), +('89.3', 'Other anatomic and physiologic measurements and manual examinations', 'ICD9CM_2010'), +('89.31', 'Dental examination', 'ICD9CM_2010'), +('89.32', 'Esophageal manometry', 'ICD9CM_2010'), +('89.33', 'Digital examination of enterostomy stoma', 'ICD9CM_2010'), +('89.34', 'Digital examination of rectum', 'ICD9CM_2010'), +('89.35', 'Transillumination of nasal sinuses', 'ICD9CM_2010'), +('89.36', 'Manual examination of breast', 'ICD9CM_2010'), +('89.37', 'Vital capacity determination', 'ICD9CM_2010'), +('89.38', 'Other nonoperative respiratory measurements', 'ICD9CM_2010'), +('89.39', 'Other nonoperative measurements and examinations', 'ICD9CM_2010'), +('89.4', 'Cardiac stress tests, pacemaker and defibrillator checks', 'ICD9CM_2010'), +('89.41', 'Cardiovascular stress test using treadmill', 'ICD9CM_2010'), +('89.42', 'Masters\' two-step stress test', 'ICD9CM_2010'), +('89.43', 'Cardiovascular stress test using bicycle ergometer', 'ICD9CM_2010'), +('89.44', 'Other cardiovascular stress test', 'ICD9CM_2010'), +('89.45', 'Artificial pacemaker rate check', 'ICD9CM_2010'), +('89.46', 'Artificial pacemaker artifact wave form check', 'ICD9CM_2010'), +('89.47', 'Artificial pacemaker electrode impedance check', 'ICD9CM_2010'), +('89.48', 'Artificial pacemaker voltage or amperage threshold check', 'ICD9CM_2010'), +('89.49', 'Automatic implantable cardioverter / defibrillator (AICD) check', 'ICD9CM_2010'), +('89.5', 'Other nonoperative cardiac and vascular diagnostic procedures', 'ICD9CM_2010'), +('89.50', 'Ambulatory cardiac monitoring', 'ICD9CM_2010'), +('89.51', 'Rhythm electrocardiogram', 'ICD9CM_2010'), +('89.52', 'Electrocardiogram', 'ICD9CM_2010'), +('89.53', 'Vectorcardiogram (with ecg)', 'ICD9CM_2010'), +('89.54', 'Electrographic monitoring', 'ICD9CM_2010'), +('89.55', 'Phonocardiogram with ECG lead', 'ICD9CM_2010'), +('89.56', 'Carotid pulse tracing with ECG lead', 'ICD9CM_2010'), +('89.57', 'Apexcardiogram (with ECG lead)', 'ICD9CM_2010'), +('89.58', 'Plethysmogram', 'ICD9CM_2010'), +('89.59', 'Other nonoperative cardiac and vascular measurements', 'ICD9CM_2010'), +('89.6', 'Circulatory monitoring', 'ICD9CM_2010'), +('89.60', 'Continuous intra-arterial blood gas monitoring', 'ICD9CM_2010'), +('89.61', 'Systemic arterial pressure monitoring', 'ICD9CM_2010'), +('89.62', 'Central venous pressure monitoring', 'ICD9CM_2010'), +('89.63', 'Pulmonary artery pressure monitoring', 'ICD9CM_2010'), +('89.64', 'Pulmonary artery wedge monitoring', 'ICD9CM_2010'), +('89.65', 'Measurement of systemic arterial blood gases', 'ICD9CM_2010'), +('89.66', 'Measurement of mixed venous blood gases', 'ICD9CM_2010'), +('89.67', 'Monitoring of cardiac output by oxygen consumption technique', 'ICD9CM_2010'), +('89.68', 'Monitoring of cardiac output by other technique', 'ICD9CM_2010'), +('89.69', 'Monitoring of coronary blood flow', 'ICD9CM_2010'), +('89.7', 'General physical examination', 'ICD9CM_2010'), +('89.8', 'Autopsy', 'ICD9CM_2010'), +('90', 'Microscopic examination - I', 'ICD9CM_2010'), +('90.0', 'Microscopic examination of specimen from nervous system and of spina fluid', 'ICD9CM_2010'), +('90.01', 'Microscopic examination of specimen from nervous system and of spina fluid,Bacterial smear', 'ICD9CM_2010'), +('90.02', 'Microscopic examination of specimen from nervous system and of spina fluid, Culture', 'ICD9CM_2010'), +('90.03', 'Microscopic examination of specimen from nervous system and of spina fluid, Culture and sensitivity', 'ICD9CM_2010'), +('90.04', 'Microscopic examination of specimen from nervous system and of spina fluid, Parasitology', 'ICD9CM_2010'), +('90.05', 'Microscopic examination of specimen from nervous system and of spina fluid, Toxicology', 'ICD9CM_2010'), +('90.06', 'Microscopic examination of specimen from nervous system and of spina fluid, Cell block and papanicolaou smear', 'ICD9CM_2010'), +('90.09', 'Microscopic examination of specimen from nervous system and of spina fluid, Other microscopic examination', 'ICD9CM_2010'), +('90.1', 'Microscopic examination of specimen from endocrine gland, not elsewhere classified', 'ICD9CM_2010'), +('90.11', 'Microscopic examination of specimen from endocrine gland, not elsewhere classified, Bacterial smear', 'ICD9CM_2010'), +('90.12', 'Microscopic examination of specimen from endocrine gland, not elsewhere classified, Culture', 'ICD9CM_2010'), +('90.13', 'Microscopic examination of specimen from endocrine gland, not elsewhere classified, Culture and sensitivity', 'ICD9CM_2010'), +('90.14', 'Microscopic examination of specimen from endocrine gland, not elsewhere classified, Parasitology', 'ICD9CM_2010'), +('90.15', 'Microscopic examination of specimen from endocrine gland, not elsewhere classified, Toxicology', 'ICD9CM_2010'), +('90.16', 'Microscopic examination of specimen from endocrine gland, not elsewhere classified, Cell block and papanicolaou smear', 'ICD9CM_2010'), +('90.19', 'Microscopic examination of specimen from endocrine gland, not elsewhere classified, Other microscopic examination', 'ICD9CM_2010'), +('90.2', 'Microscopic examination of specimen from eye', 'ICD9CM_2010'), +('90.21', 'Microscopic examination of specimen from eye, Bacterial smear', 'ICD9CM_2010'), +('90.22', 'Microscopic examination of specimen from eye, Culture', 'ICD9CM_2010'), +('90.23', 'Microscopic examination of specimen from eye, Culture and sensitivity', 'ICD9CM_2010'), +('90.24', 'Microscopic examination of specimen from eye, Parasitology', 'ICD9CM_2010'), +('90.25', 'Microscopic examination of specimen from eye, Toxicology', 'ICD9CM_2010'), +('90.26', 'Microscopic examination of specimen from eye, Cell block and papanicolaou smear', 'ICD9CM_2010'), +('90.29', 'Microscopic examination of specimen from eye, Other microscopic examination', 'ICD9CM_2010'), +('90.3', 'Microscopic examination of specimen from ear, nose, throat, and larynx', 'ICD9CM_2010'), +('90.31', 'Microscopic examination of specimen from ear, nose, throat, and larynx, Bacterial smear', 'ICD9CM_2010'), +('90.32', 'Microscopic examination of specimen from ear, nose, throat, and larynx, Culture', 'ICD9CM_2010'), +('90.33', 'Microscopic examination of specimen from ear, nose, throat, and larynx, Culture and sensitivity', 'ICD9CM_2010'), +('90.34', 'Microscopic examination of specimen from ear, nose, throat, and larynx, Parasitology', 'ICD9CM_2010'), +('90.35', 'Microscopic examination of specimen from ear, nose, throat, and larynx, Toxicology', 'ICD9CM_2010'), +('90.36', 'Microscopic examination of specimen from ear, nose, throat, and larynx, Cell block and papanicolaou smear', 'ICD9CM_2010'), +('90.39', 'Microscopic examination of specimen from ear, nose, throat, and larynx, Other microscopic examination', 'ICD9CM_2010'), +('90.4', 'Microscopic examination of specimen from trachea, bronchus, pleura,lung,and other thoracic specimen, and of sputum', 'ICD9CM_2010'), +('90.41', 'Microscopic examination of specimen from trachea, bronchus, pleura,lung,and other thoracic specimen, and of sputum, Bacterial smear', 'ICD9CM_2010'), +('90.42', 'Microscopic examination of specimen from trachea, bronchus, pleura,lung,and other thoracic specimen, and of sputum, Culture', 'ICD9CM_2010'), +('90.43', 'Microscopic examination of specimen from trachea, bronchus, pleura,lung,and other thoracic specimen, and of sputum, Culture and sensitivity', 'ICD9CM_2010'), +('90.44', 'Microscopic examination of specimen from trachea, bronchus, pleura,lung,and other thoracic specimen, and of sputum, Parasitology', 'ICD9CM_2010'), +('90.45', 'Microscopic examination of specimen from trachea, bronchus, pleura,lung,and other thoracic specimen, and of sputum, Toxicology', 'ICD9CM_2010'), +('90.46', 'Microscopic examination of specimen from trachea, bronchus, pleura,lung,and other thoracic specimen, and of sputum, Cell block and papanicolaou smear', 'ICD9CM_2010'), +('90.49', 'Microscopic examination of specimen from trachea, bronchus, pleura,lung,and other thoracic specimen, and of sputum, Other microscopic examination', 'ICD9CM_2010'), +('90.5', 'Microscopic examination of blood', 'ICD9CM_2010'), +('90.51', 'Microscopic examination of blood, Bacterial smear', 'ICD9CM_2010'), +('90.52', 'Microscopic examination of blood, Culture', 'ICD9CM_2010'), +('90.53', 'Microscopic examination of blood, Culture and sensitivity', 'ICD9CM_2010'), +('90.54', 'Microscopic examination of blood, Parasitology', 'ICD9CM_2010'), +('90.55', 'Microscopic examination of blood,Toxicology', 'ICD9CM_2010'), +('90.56', 'Microscopic examination of blood, Cell block and papanicolaou smear', 'ICD9CM_2010'), +('90.59', 'Microscopic examination of blood, Other microscopic examination', 'ICD9CM_2010'), +('90.6', 'Microscopic examination of specimen from spleen and of bone marrow', 'ICD9CM_2010'), +('90.61', 'Microscopic examination of specimen from spleen and of bone marrow, Bacterial smear', 'ICD9CM_2010'), +('90.62', 'Microscopic examination of specimen from spleen and of bone marrow, Culture', 'ICD9CM_2010'), +('90.63', 'Microscopic examination of specimen from spleen and of bone marrow, Culture and sensitivity', 'ICD9CM_2010'), +('90.64', 'Microscopic examination of specimen from spleen and of bone marrow, Parasitology', 'ICD9CM_2010'), +('90.65', 'Microscopic examination of specimen from spleen and of bone marrow, Toxicology', 'ICD9CM_2010'), +('90.66', 'Microscopic examination of specimen from spleen and of bone marrow, Cell block and papanicolaou smear', 'ICD9CM_2010'), +('90.69', 'Microscopic examination of specimen from spleen and of bone marrow, Other microscopic examination', 'ICD9CM_2010'), +('90.7', 'Microscopic examination of specimen from lymph node and of lymph', 'ICD9CM_2010'), +('90.71', 'Microscopic examination of specimen from lymph node and of lymph, Bacterial smear', 'ICD9CM_2010'), +('90.72', 'Microscopic examination of specimen from lymph node and of lymph, Culture', 'ICD9CM_2010'), +('90.73', 'Microscopic examination of specimen from lymph node and of lymph, Culture and sensitivity', 'ICD9CM_2010'), +('90.74', 'Microscopic examination of specimen from lymph node and of lymph, Parasitology', 'ICD9CM_2010'), +('90.75', 'Microscopic examination of specimen from lymph node and of lymph, Toxicology', 'ICD9CM_2010'), +('90.76', 'Microscopic examination of specimen from lymph node and of lymph, Cell block and papanicolaou smear', 'ICD9CM_2010'), +('90.79', 'Microscopic examination of specimen from lymph node and of lymph, Other microscopic examination', 'ICD9CM_2010'), +('90.8', 'Microscopic examination of specimen from upper gastrointestinal tract and vomitus', 'ICD9CM_2010'), +('90.81', 'Microscopic examination of specimen from upper gastrointestinal tract and vomitus, Bacterial smear', 'ICD9CM_2010'), +('90.82', 'Microscopic examination of specimen from upper gastrointestinal tract and vomitus, Culture', 'ICD9CM_2010'), +('90.83', 'Microscopic examination of specimen from upper gastrointestinal tract and vomitus, Culture and sensitivity', 'ICD9CM_2010'), +('90.84', 'Microscopic examination of specimen from upper gastrointestinal tract and vomitus, Parasitology', 'ICD9CM_2010'), +('90.85', 'Microscopic examination of specimen from upper gastrointestinal tract and vomitus, Toxicology', 'ICD9CM_2010'), +('90.86', 'Microscopic examination of specimen from upper gastrointestinal tract and vomitus, Cell block and papanicolaou smear', 'ICD9CM_2010'), +('90.89', 'Microscopic examination of specimen from upper gastrointestinal tract and vomitus, Other microscopic examination', 'ICD9CM_2010'), +('90.9', 'Microscopic examination of specimen from lower gastrointestinal tract and of stool', 'ICD9CM_2010'), +('90.91', 'Microscopic examination of specimen from lower gastrointestinal tract and of stool, Bacterial smear', 'ICD9CM_2010'), +('90.92', 'Microscopic examination of specimen from lower gastrointestinal tract and of stool, Culture', 'ICD9CM_2010'), +('90.93', 'Microscopic examination of specimen from lower gastrointestinal tract and of stool, Culture and sensitivity', 'ICD9CM_2010'), +('90.94', 'Microscopic examination of specimen from lower gastrointestinal tract and of stool, Parasitology', 'ICD9CM_2010'), +('90.95', 'Microscopic examination of specimen from lower gastrointestinal tract and of stool, Toxicology', 'ICD9CM_2010'), +('90.96', 'Microscopic examination of specimen from lower gastrointestinal tract and of stool, Cell block and papanicolaou smear', 'ICD9CM_2010'), +('90.99', 'Microscopic examination of specimen from lower gastrointestinal tract and of stool, Other microscopic examination', 'ICD9CM_2010'), +('91', 'Microscopic examination - ii', 'ICD9CM_2010'), +('91.0', 'Microscopic examination of specimen from liver, biliary tract, and pancreas', 'ICD9CM_2010'), +('91.01', 'Microscopic examination of specimen from liver, biliary tract, and pancreas, Bacterial smear', 'ICD9CM_2010'), +('91.02', 'Microscopic examination of specimen from liver, biliary tract, and pancreas, Culture', 'ICD9CM_2010'), +('91.03', 'Microscopic examination of specimen from liver, biliary tract, and pancreas, Culture and sensitivity', 'ICD9CM_2010'), +('91.04', 'Microscopic examination of specimen from liver, biliary tract, and pancreas, Parasitology', 'ICD9CM_2010'), +('91.05', 'Microscopic examination of specimen from liver, biliary tract, and pancreas, Toxicology', 'ICD9CM_2010'), +('91.06', 'Microscopic examination of specimen from liver, biliary tract, and pancreas, Cell block and papanicolaou smear', 'ICD9CM_2010'), +('91.09', 'Microscopic examination of specimen from liver, biliary tract, and pancreas, Other microscopic examination', 'ICD9CM_2010'), +('91.1', 'Microscopic examination of peritoneal and retroperitoneal specimen', 'ICD9CM_2010'), +('91.11', 'Microscopic examination of peritoneal and retroperitoneal specimen, Bacterial smear', 'ICD9CM_2010'), +('91.12', 'Microscopic examination of peritoneal and retroperitoneal specimen, Culture', 'ICD9CM_2010'), +('91.13', 'Microscopic examination of peritoneal and retroperitoneal specimen, Culture and sensitivity', 'ICD9CM_2010'), +('91.14', 'Microscopic examination of peritoneal and retroperitoneal specimen, Parasitology', 'ICD9CM_2010'), +('91.15', 'Microscopic examination of peritoneal and retroperitoneal specimen, Toxicology', 'ICD9CM_2010'), +('91.16', 'Microscopic examination of peritoneal and retroperitoneal specimen, Cell block and papanicolaou smear', 'ICD9CM_2010'), +('91.19', 'Microscopic examination of peritoneal and retroperitoneal specimen, Other microscopic examination', 'ICD9CM_2010'), +('91.2', 'Microscopic examination of specimen from kidney, ureter, perirenal and periureteral tissue', 'ICD9CM_2010'), +('91.21', 'Microscopic examination of specimen from kidney, ureter, perirenal and periureteral tissue, Bacterial smear', 'ICD9CM_2010'), +('91.22', 'Microscopic examination of specimen from kidney, ureter, perirenal and periureteral tissue, Culture', 'ICD9CM_2010'), +('91.23', 'Microscopic examination of specimen from kidney, ureter, perirenal and periureteral tissue, Culture and sensitivity', 'ICD9CM_2010'), +('91.24', 'Microscopic examination of specimen from kidney, ureter, perirenal and periureteral tissue, Parasitology', 'ICD9CM_2010'), +('91.25', 'Microscopic examination of specimen from kidney, ureter, perirenal and periureteral tissue, Toxicology', 'ICD9CM_2010'), +('91.26', 'Microscopic examination of specimen from kidney, ureter, perirenal and periureteral tissue, Cell block and papanicolaou smear', 'ICD9CM_2010'), +('91.29', 'Microscopic examination of specimen from kidney, ureter, perirenal and periureteral tissue, Other microscopic examination', 'ICD9CM_2010'), +('91.3', 'Microscopic examination of specimen from bladder, urethra, prostate,seminal vesicle, perivesical tissue, and of urine and semen', 'ICD9CM_2010'), +('91.31', 'Microscopic examination of specimen from bladder, urethra, prostate,seminal vesicle, perivesical tissue, and of urine and semen, Bacterial smear', 'ICD9CM_2010'), +('91.32', 'Microscopic examination of specimen from bladder, urethra, prostate,seminal vesicle, perivesical tissue, and of urine and semen, Culture', 'ICD9CM_2010'), +('91.33', 'Microscopic examination of specimen from bladder, urethra, prostate,seminal vesicle, perivesical tissue, and of urine and semen, Culture and sensitivi', 'ICD9CM_2010'), +('91.34', 'Microscopic examination of specimen from bladder, urethra, prostate,seminal vesicle, perivesical tissue, and of urine and semen, Parasitology', 'ICD9CM_2010'), +('91.35', 'Microscopic examination of specimen from bladder, urethra, prostate,seminal vesicle, perivesical tissue, and of urine and semen, Toxicology', 'ICD9CM_2010'), +('91.36', 'Microscopic examination of specimen from bladder, urethra, prostate,seminal vesicle, perivesical tissue, and of urine and semen, Cell block and papani', 'ICD9CM_2010'), +('91.39', 'Microscopic examination of specimen from bladder, urethra, prostate,seminal vesicle, perivesical tissue, and of urine and semen, Other microscopic exa', 'ICD9CM_2010'), +('91.4', 'Microscopic examination of specimen from female genital tract', 'ICD9CM_2010'), +('91.41', 'Microscopic examination of specimen from female genital tract, Bacterial smear', 'ICD9CM_2010'), +('91.42', 'Microscopic examination of specimen from female genital tract, Culture', 'ICD9CM_2010'), +('91.43', 'Microscopic examination of specimen from female genital tract, Culture and sensitivity', 'ICD9CM_2010'), +('91.44', 'Microscopic examination of specimen from female genital tract, Parasitology', 'ICD9CM_2010'), +('91.45', 'Microscopic examination of specimen from female genital tract, Toxicology', 'ICD9CM_2010'), +('91.46', 'Microscopic examination of specimen from female genital tract, Cell block and papanicolaou smear', 'ICD9CM_2010'), +('91.49', 'Microscopic examination of specimen from female genital tract, Other microscopic examination', 'ICD9CM_2010'), +('91.5', 'Microscopic examination of specimen from musculoskeletal system and of joint fluid', 'ICD9CM_2010'), +('91.51', 'Microscopic examination of specimen from musculoskeletal system and of joint fluid, Bacterial smear', 'ICD9CM_2010'), +('91.52', 'Microscopic examination of specimen from musculoskeletal system and of joint fluid, Culture', 'ICD9CM_2010'), +('91.53', 'Microscopic examination of specimen from musculoskeletal system and of joint fluid, Culture and sensitivity', 'ICD9CM_2010'), +('91.54', 'Microscopic examination of specimen from musculoskeletal system and of joint fluid, Parasitology', 'ICD9CM_2010'), +('91.55', 'Microscopic examination of specimen from musculoskeletal system and of joint fluid, Toxicology', 'ICD9CM_2010'), +('91.56', 'Microscopic examination of specimen from musculoskeletal system and of joint fluid, Cell block and papanicolaou smear', 'ICD9CM_2010'), +('91.59', 'Microscopic examination of specimen from musculoskeletal system and of joint fluid, Other microscopic examination', 'ICD9CM_2010'), +('91.6', 'Microscopic examination of specimen from skin and other integument', 'ICD9CM_2010'), +('91.61', 'Microscopic examination of specimen from skin and other integument, Bacterial smear', 'ICD9CM_2010'), +('91.62', 'Microscopic examination of specimen from skin and other integument, Culture', 'ICD9CM_2010'), +('91.63', 'Microscopic examination of specimen from skin and other integument, Culture and sensitivity', 'ICD9CM_2010'), +('91.64', 'Microscopic examination of specimen from skin and other integument, Parasitology', 'ICD9CM_2010'), +('91.65', 'Microscopic examination of specimen from skin and other integument, Toxicology', 'ICD9CM_2010'), +('91.66', 'Microscopic examination of specimen from skin and other integument, Cell block and papanicolaou smear', 'ICD9CM_2010'), +('91.69', 'Microscopic examination of specimen from skin and other integument, Other microscopic examination', 'ICD9CM_2010'), +('91.7', 'Microscopic examination of specimen from operative wound', 'ICD9CM_2010'), +('91.71', 'Microscopic examination of specimen from operative wound, Bacterial smear', 'ICD9CM_2010'), +('91.72', 'Microscopic examination of specimen from operative wound, Culture', 'ICD9CM_2010'), +('91.73', 'Microscopic examination of specimen from operative wound, Culture and sensitivity', 'ICD9CM_2010'), +('91.74', 'Microscopic examination of specimen from operative wound, Parasitology', 'ICD9CM_2010'), +('91.75', 'Microscopic examination of specimen from operative wound, Toxicology', 'ICD9CM_2010'), +('91.76', 'Microscopic examination of specimen from operative wound, Cell block and papanicolaou smear', 'ICD9CM_2010'), +('91.79', 'Microscopic examination of specimen from operative wound, Other microscopic examination', 'ICD9CM_2010'), +('91.8', 'Microscopic examination of specimen from other site', 'ICD9CM_2010'), +('91.81', 'Microscopic examination of specimen from other site, Bacterial smear', 'ICD9CM_2010'), +('91.82', 'Microscopic examination of specimen from other site, Culture', 'ICD9CM_2010'), +('91.83', 'Microscopic examination of specimen from other site, Culture and sensitivity', 'ICD9CM_2010'), +('91.84', 'Microscopic examination of specimen from other site, Parasitology', 'ICD9CM_2010'), +('91.85', 'Microscopic examination of specimen from other site, Toxicology', 'ICD9CM_2010'), +('91.86', 'Microscopic examination of specimen from other site, Cell block and papanicolaou smear', 'ICD9CM_2010'), +('91.89', 'Microscopic examination of specimen from other site, Other microscopic examination', 'ICD9CM_2010'), +('91.9', 'Microscopic examination of specimen from unspecified site', 'ICD9CM_2010'), +('91.91', 'Microscopic examination of specimen from unspecified site, Bacterial smear', 'ICD9CM_2010'), +('91.92', 'Microscopic examination of specimen from unspecified site, Culture', 'ICD9CM_2010'), +('91.93', 'Microscopic examination of specimen from unspecified site, Culture and sensitivity', 'ICD9CM_2010'), +('91.94', 'Microscopic examination of specimen from unspecified site, Parasitology', 'ICD9CM_2010'), +('91.95', 'Microscopic examination of specimen from unspecified site, Toxicology', 'ICD9CM_2010'), +('91.96', 'Microscopic examination of specimen from unspecified site, Cell block and papanicolaou smear', 'ICD9CM_2010'), +('91.99', 'Microscopic examination of specimen from unspecified site, Other microscopic examination', 'ICD9CM_2010'), +('92', 'Nuclear medicine', 'ICD9CM_2010'), +('92.0', 'Radioisotope scan and function study', 'ICD9CM_2010'), +('92.01', 'Thyroid scan and radioisotope function studies', 'ICD9CM_2010'), +('92.02', 'Liver scan and radioisotope function study', 'ICD9CM_2010'), +('92.03', 'Renal scan and radioisotope function study', 'ICD9CM_2010'), +('92.04', 'Gastrointestinal scan and radioisotope function study', 'ICD9CM_2010'), +('92.05', 'Cardiovascular and hematopoietic scan and radioisotope function study', 'ICD9CM_2010'), +('92.09', 'Other radioisotope function studies', 'ICD9CM_2010'), +('92.1', 'Other radioisotope scan', 'ICD9CM_2010'), +('92.11', 'Cerebral scan', 'ICD9CM_2010'), +('92.12', 'Scan of other sites of head', 'ICD9CM_2010'), +('92.13', 'Parathyroid scan', 'ICD9CM_2010'), +('92.14', 'Bone scan', 'ICD9CM_2010'), +('92.15', 'Pulmonary scan', 'ICD9CM_2010'), +('92.16', 'Scan of lymphatic system', 'ICD9CM_2010'), +('92.17', 'Placental scan', 'ICD9CM_2010'), +('92.18', 'Total body scan', 'ICD9CM_2010'), +('92.19', 'Scan of other site', 'ICD9CM_2010'), +('92.2', 'Therapeutic radiology and nuclear medicine', 'ICD9CM_2010'), +('92.20', 'Infusion of liquid brachytherapy radioisotope', 'ICD9CM_2010'), +('92.21', 'Superficial radiation', 'ICD9CM_2010'), +('92.22', 'Orthovoltage radiation', 'ICD9CM_2010'), +('92.23', 'Radioisotopic teleradiotherapy', 'ICD9CM_2010'), +('92.24', 'Teleradiotherapy using protons', 'ICD9CM_2010'), +('92.25', 'Teleradiotherapy using electrons', 'ICD9CM_2010'), +('92.26', 'Teleradiotherapy of other particulate radiation', 'ICD9CM_2010'), +('92.27', 'Implantation or insertion of radioactive elements', 'ICD9CM_2010'), +('92.28', 'Injection or instillation of radioisotopes', 'ICD9CM_2010'), +('92.29', 'Other radiotherapeutic procedure', 'ICD9CM_2010'), +('92.3', 'Stereotactic radiosurgery', 'ICD9CM_2010'), +('92.30', 'Stereotactic radiosurgery, not otherwise specified', 'ICD9CM_2010'), +('92.31', 'Single source photon radiosurgery', 'ICD9CM_2010'), +('92.32', 'Multi-source photon radiosurgery', 'ICD9CM_2010'), +('92.33', 'Particulate radiosurgery', 'ICD9CM_2010'), +('92.39', 'Stereotactic radiosugery, not elsewhere classified', 'ICD9CM_2010'), +('92.4', 'Intra-operative radiotion procedures', 'ICD9CM_2010'), +('92.41', 'Intra-operative electron radiation therapy', 'ICD9CM_2010'), +('93', 'Physical theraphy, respiratory theraphy, rehabilition, and related procedures', 'ICD9CM_2010'), +('93.0', 'Diagnostic physical therapy', 'ICD9CM_2010'), +('93.01', 'Functional evaluation', 'ICD9CM_2010'), +('93.02', 'Orthotic evaluation', 'ICD9CM_2010'), +('93.03', 'Prosthetic evaluation', 'ICD9CM_2010'), +('93.04', 'Manual testing of muscle function', 'ICD9CM_2010'), +('93.05', 'Range of motion testing', 'ICD9CM_2010'), +('93.06', 'Measurement of limb length', 'ICD9CM_2010'), +('93.07', 'Body measurement', 'ICD9CM_2010'), +('93.08', 'Electromyography', 'ICD9CM_2010'), +('93.09', 'Other diagnostic physical therapy procedure', 'ICD9CM_2010'), +('93.1', 'Physical therapy exercises', 'ICD9CM_2010'), +('93.11', 'Assisting exercise', 'ICD9CM_2010'), +('93.12', 'Other active musculoskeletal exercise', 'ICD9CM_2010'), +('93.13', 'Resistive exercise', 'ICD9CM_2010'), +('93.14', 'Training in joint movements', 'ICD9CM_2010'), +('93.15', 'Mobilization of spine', 'ICD9CM_2010'), +('93.16', 'Mobilization of other joints', 'ICD9CM_2010'), +('93.17', 'Other passive musculoskeletal exercise', 'ICD9CM_2010'), +('93.18', 'Breathing exercise', 'ICD9CM_2010'), +('93.19', 'Exercise, not elsewhere classified', 'ICD9CM_2010'), +('93.2', 'Other physical therapy musculoskeletal manipulation', 'ICD9CM_2010'), +('93.21', 'Manual and mechanical traction', 'ICD9CM_2010'), +('93.22', 'Ambulation and gait training', 'ICD9CM_2010'), +('93.23', 'Fitting of orthotic device', 'ICD9CM_2010'), +('93.24', 'Training in use of prosthetic or orthotic device', 'ICD9CM_2010'), +('93.25', 'Forced extension of limb', 'ICD9CM_2010'), +('93.26', 'Manual rupture of joint adhesions', 'ICD9CM_2010'), +('93.27', 'Stretching of muscle or tendon', 'ICD9CM_2010'), +('93.28', 'Stretching of fascia', 'ICD9CM_2010'), +('93.29', 'Other forcible correction of deformity', 'ICD9CM_2010'), +('93.3', 'Other physical therapy therapeutic procedures', 'ICD9CM_2010'), +('93.31', 'Assisted exercise in pool', 'ICD9CM_2010'), +('93.32', 'Whirlpool treatment', 'ICD9CM_2010'), +('93.33', 'Other hydrotherapy', 'ICD9CM_2010'), +('93.34', 'Diathermy', 'ICD9CM_2010'), +('93.35', 'Other heat therapy', 'ICD9CM_2010'), +('93.36', 'Cardiac retraining', 'ICD9CM_2010'), +('93.37', 'Prenatal training', 'ICD9CM_2010'), +('93.38', 'Combined physical therapy without mention of the components', 'ICD9CM_2010'), +('93.39', 'Other physical therapy', 'ICD9CM_2010'), +('93.4', 'Skeletal traction and other traction', 'ICD9CM_2010'), +('93.41', 'Spinal traction using skull device', 'ICD9CM_2010'), +('93.42', 'Other spinal traction', 'ICD9CM_2010'), +('93.43', 'Intermittent skeletal traction', 'ICD9CM_2010'), +('93.44', 'Other skeletal traction', 'ICD9CM_2010'), +('93.45', 'Thomas\' splint traction', 'ICD9CM_2010'), +('93.46', 'Other skin traction of limbs', 'ICD9CM_2010'), +('93.5', 'Other immobilization, pressure, and attention to wound', 'ICD9CM_2010'), +('93.51', 'Application of plaster jacket', 'ICD9CM_2010'), +('93.52', 'Application of neck support', 'ICD9CM_2010'), +('93.53', 'Application of other cast', 'ICD9CM_2010'), +('93.54', 'Application of splint', 'ICD9CM_2010'), +('93.55', 'Dental wiring', 'ICD9CM_2010'), +('93.56', 'Application of pressure dressing', 'ICD9CM_2010'), +('93.57', 'Application of other wound dressing', 'ICD9CM_2010'), +('93.58', 'Application of pressure trousers', 'ICD9CM_2010'), +('93.59', 'Other immobilization, pressure, and attention to wound', 'ICD9CM_2010'), +('93.6', 'Osteopathic manipulative treatment', 'ICD9CM_2010'), +('93.61', 'Osteopathic manipulative treatment for general mobilization', 'ICD9CM_2010'), +('93.62', 'Osteopathic manipulative treatment using high-velocity, low-amplitude forces', 'ICD9CM_2010'), +('93.63', 'Osteopathic manipulative treatment using low- velocity, high-amplitude forces', 'ICD9CM_2010'), +('93.64', 'Osteopathic manipulative treatment using isotonic, isometric forces', 'ICD9CM_2010'), +('93.65', 'Osteopathic manipulative treatment using indirect forces', 'ICD9CM_2010'), +('93.66', 'Osteopathic manipulative treatment to move tissue fluids', 'ICD9CM_2010'), +('93.67', 'Other specified osteopathic manipulative treatment', 'ICD9CM_2010'), +('93.7', 'Speech and reading rehabilitation and rehabilitation of the blind', 'ICD9CM_2010'), +('93.71', 'Dyslexia training', 'ICD9CM_2010'), +('93.72', 'Dysphasia training', 'ICD9CM_2010'), +('93.73', 'Esophageal speech training', 'ICD9CM_2010'), +('93.74', 'Speech defect training', 'ICD9CM_2010'), +('93.75', 'Other speech training and therapy', 'ICD9CM_2010'), +('93.76', 'Training in use of lead dog for the blind', 'ICD9CM_2010'), +('93.77', 'Training in braille or moon', 'ICD9CM_2010'), +('93.78', 'Other rehabilitation for the blind', 'ICD9CM_2010'), +('93.8', 'Other rehabilitation therapy', 'ICD9CM_2010'), +('93.81', 'Recreational therapy', 'ICD9CM_2010'), +('93.82', 'Educational therapy', 'ICD9CM_2010'), +('93.83', 'Occupational therapy', 'ICD9CM_2010'), +('93.84', 'Music therapy', 'ICD9CM_2010'), +('93.85', 'Vocational rehabilitation', 'ICD9CM_2010'), +('93.89', 'Rehabilitation, not elsewhere classified', 'ICD9CM_2010'), +('93.9', 'Respiratory therapy', 'ICD9CM_2010'), +('93.90', 'Non-invasive mechanical ventilation', 'ICD9CM_2010'), +('93.91', 'Intermittent positive pressure breathing (IPPB)', 'ICD9CM_2010'), +('93.93', 'Nonmechanical methods of resuscitation', 'ICD9CM_2010'), +('93.94', 'Respiratory medication administered by nebulizer', 'ICD9CM_2010'), +('93.95', 'Hyperbaric oxygenation', 'ICD9CM_2010'), +('93.96', 'Other oxygen enrichment', 'ICD9CM_2010'), +('93.960', 'High flow nasal canule oxygenation (IM)', 'ICD9CM_2010'), +('93.97', 'Decompression chamber', 'ICD9CM_2010'), +('93.98', 'Other control of atmospheric pressure and composition', 'ICD9CM_2010'), +('93.99', 'Other respiratory procedures', 'ICD9CM_2010'), +('94', 'Procedures related to the psyche', 'ICD9CM_2010'), +('94.0', 'Psychologic evaluation and testing', 'ICD9CM_2010'), +('94.01', 'Administration of intelligence test', 'ICD9CM_2010'), +('94.02', 'Administration of psychologic test', 'ICD9CM_2010'), +('94.03', 'Character analysis', 'ICD9CM_2010'), +('94.08', 'Other psychologic evaluation and testing', 'ICD9CM_2010'), +('94.09', 'Psychologic mental status determination, not otherwise specified', 'ICD9CM_2010'), +('94.1', 'Psychiatric interviews, consultations, and evaluations', 'ICD9CM_2010'), +('94.11', 'Psychiatric mental status determination', 'ICD9CM_2010'), +('94.12', 'Routine psychiatric visit, not otherwise specified', 'ICD9CM_2010'), +('94.13', 'Psychiatric commitment evaluation', 'ICD9CM_2010'), +('94.19', 'Other psychiatric interview and evaluation', 'ICD9CM_2010'), +('94.2', 'Psychiatric somatotherapy', 'ICD9CM_2010'), +('94.21', 'Narcoanalysis', 'ICD9CM_2010'), +('94.22', 'Lithium therapy', 'ICD9CM_2010'), +('94.23', 'Neuroleptic therapy', 'ICD9CM_2010'), +('94.24', 'Chemical shock therapy', 'ICD9CM_2010'), +('94.25', 'Other psychiatric drug therapy', 'ICD9CM_2010'), +('94.26', 'Subconvulsive electroshock therapy', 'ICD9CM_2010'), +('94.27', 'Other electroshock therapy', 'ICD9CM_2010'), +('94.29', 'Other psychiatric somatotherapy', 'ICD9CM_2010'), +('94.3', 'Individual psychotherapy', 'ICD9CM_2010'), +('94.31', 'Psychoanalysis', 'ICD9CM_2010'), +('94.32', 'Hypnotherapy', 'ICD9CM_2010'), +('94.33', 'Behavior therapy', 'ICD9CM_2010'), +('94.34', 'Individual therapy for psychosexual dysfunction', 'ICD9CM_2010'), +('94.35', 'Crisis intervention', 'ICD9CM_2010'), +('94.36', 'Play psychotherapy', 'ICD9CM_2010'), +('94.37', 'Exploratory verbal psychotherapy', 'ICD9CM_2010'), +('94.38', 'Supportive verbal psychotherapy', 'ICD9CM_2010'), +('94.39', 'Other individual psychotherapy', 'ICD9CM_2010'), +('94.4', 'Other psychotherapy and counselling', 'ICD9CM_2010'), +('94.41', 'Group therapy for psychosexual dysfunction', 'ICD9CM_2010'), +('94.42', 'Family therapy', 'ICD9CM_2010'), +('94.43', 'Psychodrama', 'ICD9CM_2010'), +('94.44', 'Other group therapy', 'ICD9CM_2010'), +('94.45', 'Drug addiction counselling', 'ICD9CM_2010'), +('94.46', 'Alcoholism counselling', 'ICD9CM_2010'), +('94.49', 'Other counselling', 'ICD9CM_2010'), +('94.5', 'Referral for psychologic rehabilitation', 'ICD9CM_2010'), +('94.51', 'Referral for psychotherapy', 'ICD9CM_2010'), +('94.52', 'Referral for psychiatric aftercare', 'ICD9CM_2010'), +('94.53', 'Referral for alcoholism rehabilitation', 'ICD9CM_2010'), +('94.54', 'Referral for drug addiction rehabilitation', 'ICD9CM_2010'), +('94.55', 'Referral for vocational rehabilitation', 'ICD9CM_2010'), +('94.59', 'Referral for other psychologic rehabilitation', 'ICD9CM_2010'), +('94.6', 'Alcohol and drug rehabilitation and detoxification', 'ICD9CM_2010'), +('94.61', 'Alcohol rehabilitation', 'ICD9CM_2010'), +('94.62', 'Alcohol detoxification', 'ICD9CM_2010'), +('94.63', 'Alcohol rehabilitation and detoxification', 'ICD9CM_2010'), +('94.64', 'Drug rehabilitation', 'ICD9CM_2010'), +('94.65', 'Drug detoxification', 'ICD9CM_2010'), +('94.66', 'Drug rehabilitation and detoxification', 'ICD9CM_2010'), +('94.67', 'Combined alcohol and drug rehabilitation', 'ICD9CM_2010'), +('94.68', 'Combined alcohol and drug detoxification', 'ICD9CM_2010'), +('94.69', 'Combined alcohol and drug rehabilitation and detoxification', 'ICD9CM_2010'), +('95', 'Ophthalmologic and otologic diagnosis and treatment', 'ICD9CM_2010'), +('95.0', 'General and subjective eye examination', 'ICD9CM_2010'), +('95.01', 'Limited eye examination', 'ICD9CM_2010'), +('95.02', 'Comprehensive eye examination', 'ICD9CM_2010'), +('95.03', 'Extended ophthalmologic work-up', 'ICD9CM_2010'), +('95.04', 'Eye examination under anesthesia', 'ICD9CM_2010'), +('95.05', 'Visual field study', 'ICD9CM_2010'), +('95.06', 'Color vision study', 'ICD9CM_2010'), +('95.07', 'Dark adaptation study', 'ICD9CM_2010'), +('95.09', 'Eye examination, not otherwise specified', 'ICD9CM_2010'), +('95.1', 'Examinations of form and structure of eye', 'ICD9CM_2010'), +('95.11', 'Fundus photography', 'ICD9CM_2010'), +('95.12', 'Fluorescein angiography or angioscopy of eye', 'ICD9CM_2010'), +('95.13', 'Ultrasound study of eye', 'ICD9CM_2010'), +('95.14', 'X-ray study of eye', 'ICD9CM_2010'), +('95.15', 'Ocular motility study', 'ICD9CM_2010'), +('95.16', 'P32 and other tracer studies of eye', 'ICD9CM_2010'), +('95.2', 'Objective functional tests of eye', 'ICD9CM_2010'), +('95.21', 'Electroretinogram (ERG)', 'ICD9CM_2010'), +('95.22', 'Electro-oculogram (EOG)', 'ICD9CM_2010'), +('95.23', 'Visual evoked potential (VEP)', 'ICD9CM_2010'), +('95.24', 'Electronystagmogram (ENG)', 'ICD9CM_2010'), +('95.25', 'Electromyogram of eye (EMG)', 'ICD9CM_2010'), +('95.26', 'Tonography, provocative tests, and other glaucoma testing', 'ICD9CM_2010'), +('95.3', 'Special vision services', 'ICD9CM_2010'), +('95.31', 'Fitting and dispensing of spectacles', 'ICD9CM_2010'), +('95.32', 'Prescription, fitting, and dispensing of contact lens', 'ICD9CM_2010'), +('95.33', 'Dispensing of other low vision aids', 'ICD9CM_2010'), +('95.34', 'Ocular prosthetics', 'ICD9CM_2010'), +('95.35', 'Orthoptic training', 'ICD9CM_2010'), +('95.36', 'Ophthalmologic counselling and instruction', 'ICD9CM_2010'), +('95.4', 'Nonoperative procedures related to hearing', 'ICD9CM_2010'), +('95.41', 'Audiometry', 'ICD9CM_2010'), +('95.42', 'Clinical test of hearing', 'ICD9CM_2010'), +('95.43', 'Audiological evaluation', 'ICD9CM_2010'), +('95.44', 'Clinical vestibular function tests', 'ICD9CM_2010'), +('95.45', 'Rotation tests', 'ICD9CM_2010'), +('95.46', 'Other auditory and vestibular function tests', 'ICD9CM_2010'), +('95.47', 'Hearing examination, not otherwise specified', 'ICD9CM_2010'), +('95.48', 'Fitting of hearing aid', 'ICD9CM_2010'), +('95.49', 'Other nonoperative procedures related to hearing', 'ICD9CM_2010'), +('96', 'Nonoperative intubation and irrigation', 'ICD9CM_2010'), +('96.0', 'Nonoperative intubation of gastrointestinal and respiratory tracts', 'ICD9CM_2010'), +('96.01', 'Insertion of nasopharyngeal airway', 'ICD9CM_2010'), +('96.02', 'Insertion of oropharyngeal airway', 'ICD9CM_2010'), +('96.03', 'Insertion of esophageal obturator airway', 'ICD9CM_2010'), +('96.04', 'Insertion of endotracheal tube', 'ICD9CM_2010'), +('96.05', 'Other intubation of respiratory tract', 'ICD9CM_2010'), +('96.06', 'Insertion of Sengstaken tube', 'ICD9CM_2010'), +('96.07', 'Insertion of other (naso-)gastric tube', 'ICD9CM_2010'), +('96.08', 'Insertion of (naso-)intestinal tube', 'ICD9CM_2010'), +('96.09', 'Insertion of rectal tube', 'ICD9CM_2010'), +('96.1', 'Other nonoperative insertion', 'ICD9CM_2010'), +('96.11', 'Packing of external auditory canal', 'ICD9CM_2010'), +('96.14', 'Vaginal packing', 'ICD9CM_2010'), +('96.15', 'Insertion of vaginal mold', 'ICD9CM_2010'), +('96.16', 'Other vaginal dilation', 'ICD9CM_2010'), +('96.17', 'Insertion of vaginal diaphragm', 'ICD9CM_2010'), +('96.18', 'Insertion of other vaginal pessary', 'ICD9CM_2010'), +('96.19', 'Rectal packing', 'ICD9CM_2010'), +('96.2', 'Nonoperative dilation and manipulation', 'ICD9CM_2010'), +('96.21', 'Dilation of frontonasal duct', 'ICD9CM_2010'), +('96.22', 'Dilation of rectum', 'ICD9CM_2010'), +('96.23', 'Dilation of anal sphincter', 'ICD9CM_2010'), +('96.24', 'Dilation and manipulation of enterostomy stoma', 'ICD9CM_2010'), +('96.25', 'Therapeutic distention of bladder', 'ICD9CM_2010'), +('96.26', 'Manual reduction of rectal prolapse', 'ICD9CM_2010'), +('96.27', 'Manual reduction of hernia', 'ICD9CM_2010'), +('96.28', 'Manual reduction of enterostomy prolapse', 'ICD9CM_2010'), +('96.29', 'Reduction of intussusception of alimentary tract', 'ICD9CM_2010'), +('96.3', 'Nonoperative alimentary tract irrigation, cleaning, and local instillation', 'ICD9CM_2010'), +('96.31', 'Gastric cooling', 'ICD9CM_2010'), +('96.32', 'Gastric freezing', 'ICD9CM_2010'), +('96.33', 'Gastric lavage', 'ICD9CM_2010'), +('96.34', 'Other irrigation of (naso-)gastric tube', 'ICD9CM_2010'), +('96.35', 'Gastric gavage', 'ICD9CM_2010'), +('96.36', 'Irrigation of gastrostomy or enterostomy', 'ICD9CM_2010'), +('96.37', 'Proctoclysis', 'ICD9CM_2010'), +('96.38', 'Removal of impacted feces', 'ICD9CM_2010'), +('96.39', 'Other transanal enema', 'ICD9CM_2010'), +('96.4', 'Nonoperative irrigation, cleaning, and local instillation of other digestive and genitourinary organs', 'ICD9CM_2010'), +('96.41', 'Irrigation of cholecystostomy and other biliary tube', 'ICD9CM_2010'), +('96.42', 'Irrigation of pancreatic tube', 'ICD9CM_2010'), +('96.43', 'Digestive tract instillation, except gastric gavage', 'ICD9CM_2010'), +('96.44', 'Vaginal douche', 'ICD9CM_2010'), +('96.45', 'Irrigation of nephrostomy and pyelostomy', 'ICD9CM_2010'), +('96.46', 'Irrigation of ureterostomy and ureteral catheter', 'ICD9CM_2010'), +('96.47', 'Irrigation of cystostomy', 'ICD9CM_2010'), +('96.48', 'Irrigation of other indwelling urinary catheter', 'ICD9CM_2010'), +('96.49', 'Other genitourinary instillation', 'ICD9CM_2010'), +('96.5', 'Other nonoperative irrigation and cleaning', 'ICD9CM_2010'), +('96.51', 'Irrigation of eye', 'ICD9CM_2010'), +('96.52', 'Irrigation of ear', 'ICD9CM_2010'), +('96.53', 'Irrigation of nasal passages', 'ICD9CM_2010'), +('96.54', 'Dental scaling, polishing, and debridement', 'ICD9CM_2010'), +('96.55', 'Tracheostomy toilette', 'ICD9CM_2010'), +('96.56', 'Other lavage of bronchus and trachea', 'ICD9CM_2010'); +INSERT INTO `icd9` (`ID_ICD9`, `Prosedur`, `Versi_ICD9`) VALUES +('96.57', 'Irrigation of vascular catheter', 'ICD9CM_2010'), +('96.58', 'Irrigation of wound catheter', 'ICD9CM_2010'), +('96.59', 'Other irrigation of wound', 'ICD9CM_2010'), +('96.6', 'Enteral infusion of concentrated nutritional substances', 'ICD9CM_2010'), +('96.7', 'Other continuous invasive mechanical ventilation', 'ICD9CM_2010'), +('96.70', 'Continuous invasive mechanical ventilation of unspecified duration', 'ICD9CM_2010'), +('96.71', 'Continuous invasive mechanical ventilation for less than 96 consecutive hours', 'ICD9CM_2010'), +('96.72', 'Continuous invasive mechanical ventilation for 96 consecutive hours or more', 'ICD9CM_2010'), +('97', 'Replacement and removal of therapeutic appliances', 'ICD9CM_2010'), +('97.0', 'Nonoperative replacement of gastrointestinal appliance', 'ICD9CM_2010'), +('97.01', 'Replacement of (naso-)gastric or esophagostomy tube', 'ICD9CM_2010'), +('97.02', 'Replacement of gastrostomy tube', 'ICD9CM_2010'), +('97.03', 'Replacement of tube or enterostomy device of small intestine', 'ICD9CM_2010'), +('97.04', 'Replacement of tube or enterostomy device of large intestine', 'ICD9CM_2010'), +('97.05', 'Replacement of stent (tube) in biliary or pancreatic duct', 'ICD9CM_2010'), +('97.1', 'Nonoperative replacement of musculoskeletal and integumentary system', 'ICD9CM_2010'), +('97.11', 'Replacement of cast on upper limb', 'ICD9CM_2010'), +('97.12', 'Replacement of cast on lower limb', 'ICD9CM_2010'), +('97.13', 'Replacement of other cast', 'ICD9CM_2010'), +('97.14', 'Replacement of other device for musculoskeletal immobilization', 'ICD9CM_2010'), +('97.15', 'Replacement of wound catheter', 'ICD9CM_2010'), +('97.16', 'Replacement of wound packing or drain', 'ICD9CM_2010'), +('97.2', 'Other nonoperative replacement', 'ICD9CM_2010'), +('97.21', 'Replacement of nasal packing', 'ICD9CM_2010'), +('97.22', 'Replacement of dental packing', 'ICD9CM_2010'), +('97.23', 'Replacement of tracheostomy tube', 'ICD9CM_2010'), +('97.24', 'Replacement and refitting of vaginal diaphragm', 'ICD9CM_2010'), +('97.25', 'Replacement of other vaginal pessary', 'ICD9CM_2010'), +('97.26', 'Replacement of vaginal or vulvar packing or drain', 'ICD9CM_2010'), +('97.29', 'Other nonoperative replacements', 'ICD9CM_2010'), +('97.3', 'Nonoperative removal of therapeutic device from head and neck', 'ICD9CM_2010'), +('97.31', 'Removal of eye prosthesis', 'ICD9CM_2010'), +('97.32', 'Removal of nasal packing', 'ICD9CM_2010'), +('97.33', 'Removal of dental wiring', 'ICD9CM_2010'), +('97.34', 'Removal of dental packing', 'ICD9CM_2010'), +('97.35', 'Removal of dental prosthesis', 'ICD9CM_2010'), +('97.36', 'Removal of other external mandibular fixation device', 'ICD9CM_2010'), +('97.37', 'Removal of tracheostomy tube', 'ICD9CM_2010'), +('97.38', 'Removal of sutures from head and neck', 'ICD9CM_2010'), +('97.39', 'Removal of other therapeutic device from head and neck', 'ICD9CM_2010'), +('97.4', 'Nonoperative removal of therapeutic device from thorax', 'ICD9CM_2010'), +('97.41', 'Removal of thoracotomy tube or pleural cavity drain', 'ICD9CM_2010'), +('97.42', 'Removal of mediastinal drain', 'ICD9CM_2010'), +('97.43', 'Removal of sutures from thorax', 'ICD9CM_2010'), +('97.44', 'Nonoperative removal of heart assist system', 'ICD9CM_2010'), +('97.49', 'Removal of other device from thorax', 'ICD9CM_2010'), +('97.5', 'Nonoperative removal of therapeutic device from digestive system', 'ICD9CM_2010'), +('97.51', 'Removal of gastrostomy tube', 'ICD9CM_2010'), +('97.52', 'Removal of tube from small intestine', 'ICD9CM_2010'), +('97.53', 'Removal of tube from large intestine or appendix', 'ICD9CM_2010'), +('97.54', 'Removal of cholecystostomy tube', 'ICD9CM_2010'), +('97.55', 'Removal of t-tube, other bile duct tube, or liver tube', 'ICD9CM_2010'), +('97.56', 'Removal of pancreatic tube or drain', 'ICD9CM_2010'), +('97.59', 'Removal of other device from digestive system', 'ICD9CM_2010'), +('97.6', 'Nonoperative removal of therapeutic device from urinary system', 'ICD9CM_2010'), +('97.61', 'Removal of pyelostomy and nephrostomy tube', 'ICD9CM_2010'), +('97.62', 'Removal of ureterostomy tube and ureteral catheter', 'ICD9CM_2010'), +('97.63', 'Removal of cystostomy tube', 'ICD9CM_2010'), +('97.64', 'Removal of other urinary drainage device', 'ICD9CM_2010'), +('97.65', 'Removal of urethral stent', 'ICD9CM_2010'), +('97.69', 'Removal of other device from urinary system', 'ICD9CM_2010'), +('97.7', 'Nonoperative removal of therapeutic device from genital system', 'ICD9CM_2010'), +('97.71', 'Removal of intrauterine contraceptive device', 'ICD9CM_2010'), +('97.72', 'Removal of intrauterine pack', 'ICD9CM_2010'), +('97.73', 'Removal of vaginal diaphragm', 'ICD9CM_2010'), +('97.74', 'Removal of other vaginal pessary', 'ICD9CM_2010'), +('97.75', 'Removal of vaginal or vulvar packing', 'ICD9CM_2010'), +('97.79', 'Removal of other device from genital tract', 'ICD9CM_2010'), +('97.8', 'Other nonoperative removal of therapeutic device', 'ICD9CM_2010'), +('97.81', 'Removal of retroperitoneal drainage device', 'ICD9CM_2010'), +('97.82', 'Removal of peritoneal drainage device', 'ICD9CM_2010'), +('97.83', 'Removal of abdominal wall sutures', 'ICD9CM_2010'), +('97.84', 'Removal of sutures from trunk, not elsewhere classified', 'ICD9CM_2010'), +('97.85', 'Removal of packing from trunk, not elsewhere classified', 'ICD9CM_2010'), +('97.86', 'Removal of other device from abdomen', 'ICD9CM_2010'), +('97.87', 'Removal of other device from trunk', 'ICD9CM_2010'), +('97.88', 'Removal of external immobilization device', 'ICD9CM_2010'), +('97.89', 'Removal of other therapeutic device', 'ICD9CM_2010'), +('98', 'Nonoperative removal of foreign body or calculus', 'ICD9CM_2010'), +('98.0', 'Removal of intraluminal foreign body from digestive system without incision', 'ICD9CM_2010'), +('98.01', 'Removal of intraluminal foreign body from mouth without incision', 'ICD9CM_2010'), +('98.02', 'Removal of intraluminal foreign body from esophagus without incision', 'ICD9CM_2010'), +('98.03', 'Removal of intraluminal foreign body from stomach and small intestine without incision', 'ICD9CM_2010'), +('98.04', 'Removal of intraluminal foreign body from large intestine without incision', 'ICD9CM_2010'), +('98.05', 'Removal of intraluminal foreign body from rectum and anus without incision', 'ICD9CM_2010'), +('98.1', 'Removal of intraluminal foreign body from other sites without incision', 'ICD9CM_2010'), +('98.11', 'Removal of intraluminal foreign body from ear without incision', 'ICD9CM_2010'), +('98.12', 'Removal of intraluminal foreign body from nose without incision', 'ICD9CM_2010'), +('98.13', 'Removal of intraluminal foreign body from pharynx without incision', 'ICD9CM_2010'), +('98.14', 'Removal of intraluminal foreign body from larynx without incision', 'ICD9CM_2010'), +('98.15', 'Removal of intraluminal foreign body from trachea and bronchus without incision', 'ICD9CM_2010'), +('98.16', 'Removal of intraluminal foreign body from uterus without incision', 'ICD9CM_2010'), +('98.17', 'Removal of intraluminal foreign body from vagina without incision', 'ICD9CM_2010'), +('98.18', 'Removal of intraluminal foreign body from artificial stoma without incision', 'ICD9CM_2010'), +('98.19', 'Removal of intraluminal foreign body from urethra without incision', 'ICD9CM_2010'), +('98.2', 'Removal of other foreign body without incision', 'ICD9CM_2010'), +('98.20', 'Removal of foreign body, not otherwise specified', 'ICD9CM_2010'), +('98.21', 'Removal of superficial foreign body from eye without incision', 'ICD9CM_2010'), +('98.22', 'Removal of other foreign body without incision from head and neck', 'ICD9CM_2010'), +('98.23', 'Removal of foreign body from vulva without incision', 'ICD9CM_2010'), +('98.24', 'Removal of foreign body from scrotum or penis without incision', 'ICD9CM_2010'), +('98.25', 'Removal of other foreign body without incision from trunk except scrotum,penis, or vulva', 'ICD9CM_2010'), +('98.26', 'Removal of foreign body from hand without incision', 'ICD9CM_2010'), +('98.27', 'Removal of foreign body without incision from upper limb, except hand', 'ICD9CM_2010'), +('98.28', 'Removal of foreign body from foot without incision', 'ICD9CM_2010'), +('98.29', 'Removal of foreign body without incision from lower limb, except foot', 'ICD9CM_2010'), +('98.5', 'Extracorporeal shockwave lithotripsy (ESWL)', 'ICD9CM_2010'), +('98.51', 'Extracorporeal shockwave lithotripsy (ESWL) of the kidney, ureter and/or bladder', 'ICD9CM_2010'), +('98.52', 'Extracorporeal shockwave lithotripsy (ESWL) of the gallbladder and/or bile duct', 'ICD9CM_2010'), +('98.59', 'Extracorporeal shockwave lithotripsy (ESWL) of other sites', 'ICD9CM_2010'), +('99', 'Other nonoperative procedures', 'ICD9CM_2010'), +('99.0', 'Transfusion of blood and blood components', 'ICD9CM_2010'), +('99.00', 'Perioperative autologous transfusion of whole blood or blood components', 'ICD9CM_2010'), +('99.01', 'Exchange transfusion', 'ICD9CM_2010'), +('99.02', 'Transfusion of previously collected autologous blood', 'ICD9CM_2010'), +('99.03', 'Other transfusion of whole blood', 'ICD9CM_2010'), +('99.04', 'Transfusion of packed cells', 'ICD9CM_2010'), +('99.05', 'Transfusion of platelets', 'ICD9CM_2010'), +('99.06', 'Transfusion of coagulation factors', 'ICD9CM_2010'), +('99.07', 'Transfusion of other serum', 'ICD9CM_2010'), +('99.08', 'Transfusion of blood expander', 'ICD9CM_2010'), +('99.09', 'Transfusion of other substance', 'ICD9CM_2010'), +('99.1', 'Injection or infusion of therapeutic or prophylactic substance', 'ICD9CM_2010'), +('99.10', 'Injection or infusion of thrombolytic agent', 'ICD9CM_2010'), +('99.11', 'Injection of Rh immune globulin', 'ICD9CM_2010'), +('99.12', 'Immunization for allergy', 'ICD9CM_2010'), +('99.13', 'Immunization for autoimmune disease', 'ICD9CM_2010'), +('99.14', 'Injection or infusion of gamma globulin', 'ICD9CM_2010'), +('99.15', 'Parenteral infusion of concentrated nutritional substances', 'ICD9CM_2010'), +('99.16', 'Injection of antidote', 'ICD9CM_2010'), +('99.17', 'Injection of insulin', 'ICD9CM_2010'), +('99.18', 'Injection or infusion of electrolytes', 'ICD9CM_2010'), +('99.19', 'Injection of anticoagulant', 'ICD9CM_2010'), +('99.2', 'Injection or infusion of other therapeutic or prophylactic substance', 'ICD9CM_2010'), +('99.20', 'Injection or infusion of platelet inhibitor', 'ICD9CM_2010'), +('99.21', 'Injection of antibiotic', 'ICD9CM_2010'), +('99.22', 'Injection of other anti-infective', 'ICD9CM_2010'), +('99.23', 'Injection of steroid', 'ICD9CM_2010'), +('99.24', 'Injection of other hormone', 'ICD9CM_2010'), +('99.25', 'Injection or infusion of cancer chemotherapeutic substance', 'ICD9CM_2010'), +('99.26', 'Injection of tranquilizer', 'ICD9CM_2010'), +('99.27', 'Iontophoresis', 'ICD9CM_2010'), +('99.28', 'Injection or infusion of biological response modifier [BRM] as an antineoplastic agent', 'ICD9CM_2010'), +('99.29', 'Injection or infusion of other therapeutic or prophylactic substance', 'ICD9CM_2010'), +('99.3', 'Prophylactic vaccination and inoculation against certain bacterial disease', 'ICD9CM_2010'), +('99.31', 'Vaccination against cholera', 'ICD9CM_2010'), +('99.32', 'Vaccination against typhoid and paratyphoid fever', 'ICD9CM_2010'), +('99.33', 'Vaccination against tuberculosis', 'ICD9CM_2010'), +('99.34', 'Vaccination against plague', 'ICD9CM_2010'), +('99.35', 'Vaccination against tularemia', 'ICD9CM_2010'), +('99.36', 'Administration of diphtheria toxoid', 'ICD9CM_2010'), +('99.37', 'Vaccination against pertussis', 'ICD9CM_2010'), +('99.38', 'Administration of tetanus toxoid', 'ICD9CM_2010'), +('99.39', 'Administration of diphtheria-tetanus-pertussis, combined', 'ICD9CM_2010'), +('99.4', 'Prophylactic vaccination and inoculation against certain viral diseases', 'ICD9CM_2010'), +('99.41', 'Administration of poliomyelitis vaccine', 'ICD9CM_2010'), +('99.42', 'Vaccination against smallpox', 'ICD9CM_2010'), +('99.43', 'Vaccination against yellow fever', 'ICD9CM_2010'), +('99.44', 'Vaccination against rabies', 'ICD9CM_2010'), +('99.45', 'Vaccination against measles', 'ICD9CM_2010'), +('99.46', 'Vaccination against mumps', 'ICD9CM_2010'), +('99.47', 'Vaccination against rubella', 'ICD9CM_2010'), +('99.48', 'Administration of measles-mumps-rubella vaccine', 'ICD9CM_2010'), +('99.5', 'Other vaccination and inoculation', 'ICD9CM_2010'), +('99.51', 'Prophylactic vaccination against the common cold', 'ICD9CM_2010'), +('99.52', 'Prophylactic vaccination against influenza', 'ICD9CM_2010'), +('99.53', 'Prophylactic vaccination against arthropod-borne viral encephalitis', 'ICD9CM_2010'), +('99.54', 'Prophylactic vaccination against other arthropod- borne viral diseases', 'ICD9CM_2010'), +('99.55', 'Prophylactic administration of vaccine against other diseases', 'ICD9CM_2010'), +('99.56', 'Administration of tetanus antitoxin', 'ICD9CM_2010'), +('99.57', 'Administration of botulism antitoxin', 'ICD9CM_2010'), +('99.58', 'Administration of other antitoxins', 'ICD9CM_2010'), +('99.59', 'Other vaccination and inoculation', 'ICD9CM_2010'), +('99.6', 'Conversion of cardiac rhythm', 'ICD9CM_2010'), +('99.60', 'Cardiopulmonary resuscitation, not otherwise specified', 'ICD9CM_2010'), +('99.61', 'Atrial cardioversion', 'ICD9CM_2010'), +('99.62', 'Other electric countershock of heart', 'ICD9CM_2010'), +('99.63', 'Closed chest cardiac massage', 'ICD9CM_2010'), +('99.64', 'Carotid sinus stimulation', 'ICD9CM_2010'), +('99.69', 'Other conversion of cardiac rhythm', 'ICD9CM_2010'), +('99.7', 'Therapeutic apheresis or other injection, administration, or infusion of other therapeutic or prophylactic substances', 'ICD9CM_2010'), +('99.71', 'Therapeutic plasmapheresis', 'ICD9CM_2010'), +('99.72', 'Therapeutic leukopheresis', 'ICD9CM_2010'), +('99.73', 'Therapeutic erythrocytapheresis', 'ICD9CM_2010'), +('99.74', 'Therapeutic plateletpheresis', 'ICD9CM_2010'), +('99.75', 'Administration of neuroprotective agent', 'ICD9CM_2010'), +('99.76', 'Extracorporeal immunoadsorption', 'ICD9CM_2010'), +('99.77', 'Application or administration of adhesion barrier sucstance', 'ICD9CM_2010'), +('99.78', 'Aquapheresis', 'ICD9CM_2010'), +('99.79', 'Other', 'ICD9CM_2010'), +('99.8', 'Miscellaneous physical procedures', 'ICD9CM_2010'), +('99.81', 'Hypothermia (central) (local)', 'ICD9CM_2010'), +('99.82', 'Ultraviolet light therapy', 'ICD9CM_2010'), +('99.83', 'Other phototherapy', 'ICD9CM_2010'), +('99.84', 'Isolation', 'ICD9CM_2010'), +('99.85', 'Hyperthermia for treatment of cancer', 'ICD9CM_2010'), +('99.86', 'Non-invasive placement of bone growth stimulator', 'ICD9CM_2010'), +('99.88', 'Therapeutic photopheresis', 'ICD9CM_2010'), +('99.9', 'Other miscellaneous procedures', 'ICD9CM_2010'), +('99.91', 'Acupuncture for anesthesia', 'ICD9CM_2010'), +('99.92', 'Other acupuncture', 'ICD9CM_2010'), +('99.93', 'Rectal massage (for levator spasm)', 'ICD9CM_2010'), +('99.94', 'Prostatic massage', 'ICD9CM_2010'), +('99.95', 'Stretching of foreskin', 'ICD9CM_2010'), +('99.96', 'Collection of sperm for artificial insemination', 'ICD9CM_2010'), +('99.97', 'Fitting of denture', 'ICD9CM_2010'), +('99.98', 'Extraction of milk from lactating breast', 'ICD9CM_2010'), +('99.99', 'Other', 'ICD9CM_2010'); + +-- -------------------------------------------------------- + +-- +-- Struktur dari tabel `icd10` +-- + +CREATE TABLE `icd10` ( + `ID_ICD10` varchar(20) NOT NULL, + `Diagnosa` varchar(150) DEFAULT NULL, + `Versi_ICD10` varchar(20) DEFAULT NULL +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; + +-- +-- Dumping data untuk tabel `icd10` +-- + +INSERT INTO `icd10` (`ID_ICD10`, `Diagnosa`, `Versi_ICD10`) VALUES +('A00', 'Cholera', 'ICD10_2010'), +('A00.0', 'Cholera due to vibrio cholerae 01, biovar cholerae', 'ICD10_2010'), +('A00.1', 'Cholera due to vibrio cholerae 01, biovar eltor', 'ICD10_2010'), +('A00.9', 'Cholera, unspecified', 'ICD10_2010'), +('A01', 'Typhoid and paratyphoid fevers', 'ICD10_2010'), +('A01.0', 'Typhoid fever', 'ICD10_2010'), +('A01.1', 'Paratyphoid fever a', 'ICD10_2010'), +('A01.2', 'Paratyphoid fever b', 'ICD10_2010'), +('A01.3', 'Paratyphoid fever c', 'ICD10_2010'), +('A01.4', 'Paratyphoid fever, unspecified', 'ICD10_2010'), +('A02', 'Other salmonella infections', 'ICD10_2010'), +('A02.0', 'Salmonella enteritis', 'ICD10_2010'), +('A02.1', 'Salmonella septicaemia', 'ICD10_2010'), +('A02.2', 'Localized salmonella infections', 'ICD10_2010'), +('A02.8', 'Other specified salmonella infections', 'ICD10_2010'), +('A02.9', 'Salmonella infection, unspecified', 'ICD10_2010'), +('A03', 'Shigellosis', 'ICD10_2010'), +('A03.0', 'Shigellosis due to shigella dysenteriae', 'ICD10_2010'), +('A03.1', 'Shigellosis due to shigella flexneri', 'ICD10_2010'), +('A03.2', 'Shigellosis due to shigella boydii', 'ICD10_2010'), +('A03.3', 'Shigellosis due to shigella sonnei', 'ICD10_2010'), +('A03.8', 'Other shigellosis', 'ICD10_2010'), +('A03.9', 'Shigellosis, unspecified', 'ICD10_2010'), +('A04', 'Other bacterial intestinal infections', 'ICD10_2010'), +('A04.0', 'Enteropathogenic escherichia coli infection', 'ICD10_2010'), +('A04.1', 'Enterotoxigenic escherichia coli infection', 'ICD10_2010'), +('A04.2', 'Enteroinvasive escherichia coli infection', 'ICD10_2010'), +('A04.3', 'Enterohaemorrhagic escherichia coli infection', 'ICD10_2010'), +('A04.4', 'Other intestinal escherichia coli infections', 'ICD10_2010'), +('A04.5', 'Campylobacter enteritis', 'ICD10_2010'), +('A04.6', 'Enteritis due to yersinia enterocolitica', 'ICD10_2010'), +('A04.7', 'Enterocolitis due to clostridium difficile', 'ICD10_2010'), +('A04.8', 'Other specified bacterial intestinal infections', 'ICD10_2010'), +('A04.9', 'Bacterial intestinal infection, unspecified', 'ICD10_2010'), +('A05', 'Other bacterial foodborne intoxications, not elsewhere classified', 'ICD10_2010'), +('A05.0', 'Foodborne staphylococcal intoxication', 'ICD10_2010'), +('A05.1', 'Botulism', 'ICD10_2010'), +('A05.2', 'Foodborne clostridium perfringens intoxication', 'ICD10_2010'), +('A05.3', 'Foodborne vibrio parahaemolyticus intoxication', 'ICD10_2010'), +('A05.4', 'Foodborne bacillus cereus intoxication', 'ICD10_2010'), +('A05.8', 'Other specified bacterial foodborne intoxications', 'ICD10_2010'), +('A05.9', 'Bacterial foodborne intoxication, unspecified', 'ICD10_2010'), +('A06', 'Amoebiasis', 'ICD10_2010'), +('A06.0', 'Acute amoebic dysentery', 'ICD10_2010'), +('A06.1', 'Chronic intestinal amoebiasis', 'ICD10_2010'), +('A06.2', 'Amoebic nondysenteric colitis', 'ICD10_2010'), +('A06.3', 'Amoeboma of intestine', 'ICD10_2010'), +('A06.4', 'Amoebic liver abscess', 'ICD10_2010'), +('A06.5', 'Amoebic lung abscess', 'ICD10_2010'), +('A06.6', 'Amoebic brain abscess', 'ICD10_2010'), +('A06.7', 'Cutaneous amoebiasis', 'ICD10_2010'), +('A06.8', 'Amoebic infection of other sites', 'ICD10_2010'), +('A06.9', 'Amoebiasis, unspecified', 'ICD10_2010'), +('A07', 'Other protozoal intestinal diseases', 'ICD10_2010'), +('A07.0', 'Balantidiasis', 'ICD10_2010'), +('A07.1', 'Giardiasis [lambliasis]', 'ICD10_2010'), +('A07.2', 'Cryptosporidiosis', 'ICD10_2010'), +('A07.3', 'Isosporiasis', 'ICD10_2010'), +('A07.8', 'Other specified protozoal intestinal diseases', 'ICD10_2010'), +('A07.9', 'Protozoal intestinal disease, unspecified', 'ICD10_2010'), +('A08', 'Viral and other specified intestinal infections', 'ICD10_2010'), +('A08.0', 'Rotaviral enteritis', 'ICD10_2010'), +('A08.1', 'Acute gastroenteropathy due to norwalk agent', 'ICD10_2010'), +('A08.2', 'Adenoviral enteritis', 'ICD10_2010'), +('A08.3', 'Other viral enteritis', 'ICD10_2010'), +('A08.4', 'Viral intestinal infection, unspecified', 'ICD10_2010'), +('A08.5', 'Other specified intestinal infections', 'ICD10_2010'), +('A09', 'Diarrhoea and gastroenteritis of presumed infectious origin', 'ICD10_2010'), +('A09.0', 'Other and unspecified gastroenteritis and colitis of infectious origin', 'ICD10_2010'), +('A09.9', 'Gastroenteritis and colitis of unspecified origin', 'ICD10_2010'), +('A15', 'Respiratory tuberculosis, bacteriologically and histologically confirmed', 'ICD10_2010'), +('A15.0', 'Tb lung confirm sputum microscopy with or without culture', 'ICD10_2010'), +('A15.1', 'Tuberculosis of lung, confirmed by culture only', 'ICD10_2010'), +('A15.2', 'Tuberculosis of lung, confirmed histologically', 'ICD10_2010'), +('A15.3', 'Tuberculosis of lung, confirmed by unspecified means', 'ICD10_2010'), +('A15.4', 'Tb intrathoracic lymph nodes confirm bact histologically', 'ICD10_2010'), +('A15.5', 'Tuberculosis of larynx, trachea & bronchus conf bact/hist\'y', 'ICD10_2010'), +('A15.6', 'Tuberculous pleurisy, conf bacteriologically/his\'y', 'ICD10_2010'), +('A15.7', 'Primary respiratory tb confirm bact and histologically', 'ICD10_2010'), +('A15.8', 'Other respiratory tb confirm bact and histologically', 'ICD10_2010'), +('A15.9', 'Respiratory tb unspec confirm bact and histologically', 'ICD10_2010'), +('A16', 'Respiratory tuberculosis, not confirmed bacteriologically or histologically', 'ICD10_2010'), +('A16.0', 'Tuberculosis of lung, bacteriologically & histolog\'y neg', 'ICD10_2010'), +('A16.1', 'Tuberculosis lung bact and histological examin not done', 'ICD10_2010'), +('A16.2', 'Tb lung without mention of bact or histological confirm', 'ICD10_2010'), +('A16.3', 'Tb intrathoracic lymph node without bact or hist confirm', 'ICD10_2010'), +('A16.4', 'Tb larynx trachea and bronchus without bact or hist confirm', 'ICD10_2010'), +('A16.5', 'Tb pleurisy without mention of bact or histological confirm', 'ICD10_2010'), +('A16.7', 'Prim respiratory tb without mention of bact or hist confirm', 'ICD10_2010'), +('A16.8', 'Oth respiratory tb without mention of bact or hist confirm', 'ICD10_2010'), +('A16.9', 'Resp tb unspec without mention of bact or hist confirm', 'ICD10_2010'), +('A17', 'Tuberculosis of nervous system', 'ICD10_2010'), +('A17.0', 'Tuberculous meningitis', 'ICD10_2010'), +('A17.1', 'Meningeal tuberculoma', 'ICD10_2010'), +('A17.8', 'Other tuberculosis of nervous system', 'ICD10_2010'), +('A17.9', 'Tuberculosis of nervous system unspecified', 'ICD10_2010'), +('A18', 'Tuberculosis of other organs', 'ICD10_2010'), +('A18.0', 'Tuberculosis of bones and joints', 'ICD10_2010'), +('A18.1', 'Tuberculosis of genitourinary system', 'ICD10_2010'), +('A18.2', 'Tuberculous peripheral lymphadenopathy', 'ICD10_2010'), +('A18.3', 'Tuberculosis of intestines, peritoneum and mesenteric glands', 'ICD10_2010'), +('A18.4', 'Tuberculosis of skin and subcutaneous tissue', 'ICD10_2010'), +('A18.5', 'Tuberculosis of eye', 'ICD10_2010'), +('A18.6', 'Tuberculosis of ear', 'ICD10_2010'), +('A18.7', 'Tuberculosis of adrenal glands', 'ICD10_2010'), +('A18.8', 'Tuberculosis of other specified organs', 'ICD10_2010'), +('A19', 'Miliary tuberculosis', 'ICD10_2010'), +('A19.0', 'Acute miliary tuberculosis of a single specified site', 'ICD10_2010'), +('A19.1', 'Acute miliary tuberculosis of multiple sites', 'ICD10_2010'), +('A19.2', 'Acute miliary tuberculosis, unspecified', 'ICD10_2010'), +('A19.8', 'Other miliary tuberculosis', 'ICD10_2010'), +('A19.9', 'Miliary tuberculosis, unspecified', 'ICD10_2010'), +('A20', 'Plague', 'ICD10_2010'), +('A20.0', 'Bubonic plague', 'ICD10_2010'), +('A20.1', 'Cellulocutaneous plague', 'ICD10_2010'), +('A20.2', 'Pneumonic plague', 'ICD10_2010'), +('A20.3', 'Plague meningitis', 'ICD10_2010'), +('A20.7', 'Septicaemic plague', 'ICD10_2010'), +('A20.8', 'Other forms of plague', 'ICD10_2010'), +('A20.9', 'Plague, unspecified', 'ICD10_2010'), +('A21', 'Tularaemia', 'ICD10_2010'), +('A21.0', 'Ulceroglandular tularaemia', 'ICD10_2010'), +('A21.1', 'Oculoglandular tularaemia', 'ICD10_2010'), +('A21.2', 'Pulmonary tularaemia', 'ICD10_2010'), +('A21.3', 'Gastrointestinal tularaemia', 'ICD10_2010'), +('A21.7', 'Generalized tularaemia', 'ICD10_2010'), +('A21.8', 'Other forms of tularaemia', 'ICD10_2010'), +('A21.9', 'Tularaemia, unspecified', 'ICD10_2010'), +('A22', 'Anthrax', 'ICD10_2010'), +('A22.0', 'Cutaneous anthrax', 'ICD10_2010'), +('A22.1', 'Pulmonary anthrax', 'ICD10_2010'), +('A22.2', 'Gastrointestinal anthrax', 'ICD10_2010'), +('A22.7', 'Anthrax septicaemia', 'ICD10_2010'), +('A22.8', 'Other forms of anthrax', 'ICD10_2010'), +('A22.9', 'Anthrax, unspecified', 'ICD10_2010'), +('A23', 'Brucellosis', 'ICD10_2010'), +('A23.0', 'Brucellosis due to brucella melitensis', 'ICD10_2010'), +('A23.1', 'Brucellosis due to brucella abortus', 'ICD10_2010'), +('A23.2', 'Brucellosis due to brucella suis', 'ICD10_2010'), +('A23.3', 'Brucellosis due to brucella canis', 'ICD10_2010'), +('A23.8', 'Other brucellosis', 'ICD10_2010'), +('A23.9', 'Brucellosis, unspecified', 'ICD10_2010'), +('A24', 'Glanders and melioidosis', 'ICD10_2010'), +('A24.0', 'Glanders', 'ICD10_2010'), +('A24.1', 'Acute and fulminating melioidosis', 'ICD10_2010'), +('A24.2', 'Subacute and chronic melioidosis', 'ICD10_2010'), +('A24.3', 'Other melioidosis', 'ICD10_2010'), +('A24.4', 'Melioidosis, unspecified', 'ICD10_2010'), +('A25', 'Rat-bite fevers', 'ICD10_2010'), +('A25.0', 'Spirillosis', 'ICD10_2010'), +('A25.1', 'Streptobacillosis', 'ICD10_2010'), +('A25.9', 'Rat-bite fever, unspecified', 'ICD10_2010'), +('A26', 'Erysipeloid', 'ICD10_2010'), +('A26.0', 'Cutaneous erysipeloid', 'ICD10_2010'), +('A26.7', 'Erysipelothrix septicaemia', 'ICD10_2010'), +('A26.8', 'Other forms of erysipeloid', 'ICD10_2010'), +('A26.9', 'Erysipeloid, unspecified', 'ICD10_2010'), +('A27', 'Leptospirosis', 'ICD10_2010'), +('A27.0', 'Leptospirosis icterohaemorrhagica', 'ICD10_2010'), +('A27.8', 'Other forms of leptospirosis', 'ICD10_2010'), +('A27.9', 'Leptospirosis, unspecified', 'ICD10_2010'), +('A28', 'Other zoonotic bacterial diseases, not elsewhere classified', 'ICD10_2010'), +('A28.0', 'Pasteurellosis', 'ICD10_2010'), +('A28.1', 'Cat-scratch disease', 'ICD10_2010'), +('A28.2', 'Extraintestinal yersiniosis', 'ICD10_2010'), +('A28.8', 'Other specified zoonotic bacterial diseases nec', 'ICD10_2010'), +('A28.9', 'Zoonotic bacterial disease, unspecified', 'ICD10_2010'), +('A30', 'Leprosy [Hansen disease]', 'ICD10_2010'), +('A30.0', 'Indeterminate leprosy', 'ICD10_2010'), +('A30.1', 'Tuberculoid leprosy', 'ICD10_2010'), +('A30.2', 'Borderline tuberculoid leprosy', 'ICD10_2010'), +('A30.3', 'Borderline leprosy', 'ICD10_2010'), +('A30.4', 'Borderline lepromatous leprosy', 'ICD10_2010'), +('A30.5', 'Lepromatous leprosy', 'ICD10_2010'), +('A30.8', 'Other forms of leprosy', 'ICD10_2010'), +('A30.9', 'Leprosy, unspecified', 'ICD10_2010'), +('A31', 'Infection due to other mycobacteria', 'ICD10_2010'), +('A31.0', 'Pulmonary mycobacterial infection', 'ICD10_2010'), +('A31.1', 'Cutaneous mycobacterial infection', 'ICD10_2010'), +('A31.8', 'Other mycobacterial infections', 'ICD10_2010'), +('A31.9', 'Mycobacterial infection, unspecified', 'ICD10_2010'), +('A32', 'Listeriosis', 'ICD10_2010'), +('A32.0', 'Cutaneous listeriosis', 'ICD10_2010'), +('A32.1', 'Listerial meningitis and meningoencephalitis', 'ICD10_2010'), +('A32.7', 'Listerial septicaemia', 'ICD10_2010'), +('A32.8', 'Other forms of listeriosis', 'ICD10_2010'), +('A32.9', 'Listeriosis, unspecified', 'ICD10_2010'), +('A33', 'Tetanus neonatorum', 'ICD10_2010'), +('A34', 'Obstetrical tetanus', 'ICD10_2010'), +('A35', 'Other tetanus', 'ICD10_2010'), +('A36', 'Diphtheria', 'ICD10_2010'), +('A36.0', 'Pharyngeal diphtheria', 'ICD10_2010'), +('A36.1', 'Nasopharyngeal diphtheria', 'ICD10_2010'), +('A36.2', 'Laryngeal diphtheria', 'ICD10_2010'), +('A36.3', 'Cutaneous diphtheria', 'ICD10_2010'), +('A36.8', 'Other diphtheria', 'ICD10_2010'), +('A36.9', 'Diphtheria, unspecified', 'ICD10_2010'), +('A37', 'Whooping cough', 'ICD10_2010'), +('A37.0', 'Whooping cough due to bordetella pertussis', 'ICD10_2010'), +('A37.1', 'Whooping cough due to bordetella parapertussis', 'ICD10_2010'), +('A37.8', 'Whooping cough due to other bordetella species', 'ICD10_2010'), +('A37.9', 'Whooping cough, unspecified', 'ICD10_2010'), +('A38', 'Scarlet fever', 'ICD10_2010'), +('A39', 'Meningococcal infection', 'ICD10_2010'), +('A39.0', 'Meningococcal meningitis', 'ICD10_2010'), +('A39.1', 'Waterhouse-friderichsen syndrome', 'ICD10_2010'), +('A39.2', 'Acute meningococcaemia', 'ICD10_2010'), +('A39.3', 'Chronic meningococcaemia', 'ICD10_2010'), +('A39.4', 'Meningococcaemia, unspecified', 'ICD10_2010'), +('A39.5', 'Meningococcal heart disease', 'ICD10_2010'), +('A39.8', 'Other meningococcal infections', 'ICD10_2010'), +('A39.9', 'Meningococcal infection, unspecified', 'ICD10_2010'), +('A40', 'Streptococcal sepsis', 'ICD10_2010'), +('A40.0', 'Septicaemia due to streptococcus, group a', 'ICD10_2010'), +('A40.1', 'Septicaemia due to streptococcus, group b', 'ICD10_2010'), +('A40.2', 'Septicaemia due to streptococcus, group d', 'ICD10_2010'), +('A40.3', 'Septicaemia due to streptococcus pneumoniae', 'ICD10_2010'), +('A40.8', 'Other streptococcal septicaemia', 'ICD10_2010'), +('A40.9', 'Streptococcal septicaemia, unspecified', 'ICD10_2010'), +('A41', 'Other sepsis', 'ICD10_2010'), +('A41.0', 'Septicaemia due to staphylococcus aureus', 'ICD10_2010'), +('A41.1', 'Septicaemia due to other specified staphylococcus', 'ICD10_2010'), +('A41.2', 'Septicaemia due to unspecified staphylococcus', 'ICD10_2010'), +('A41.3', 'Septicaemia due to haemophilus influenzae', 'ICD10_2010'), +('A41.4', 'Septicaemia due to anaerobes', 'ICD10_2010'), +('A41.5', 'Septicaemia due to other gram-negative organisms', 'ICD10_2010'), +('A41.8', 'Other specified septicaemia', 'ICD10_2010'), +('A41.9', 'Septicaemia, unspecified', 'ICD10_2010'), +('A42', 'Actinomycosis', 'ICD10_2010'), +('A42.0', 'Pulmonary actinomycosis', 'ICD10_2010'), +('A42.1', 'Abdominal actinomycosis', 'ICD10_2010'), +('A42.2', 'Cervicofacial actinomycosis', 'ICD10_2010'), +('A42.7', 'Actinomycotic septicaemia', 'ICD10_2010'), +('A42.8', 'Other forms of actinomycosis', 'ICD10_2010'), +('A42.9', 'Actinomycosis, unspecified', 'ICD10_2010'), +('A43', 'Nocardiosis', 'ICD10_2010'), +('A43.0', 'Pulmonary nocardiosis', 'ICD10_2010'), +('A43.1', 'Cutaneous nocardiosis', 'ICD10_2010'), +('A43.8', 'Other forms of nocardiosis', 'ICD10_2010'), +('A43.9', 'Nocardiosis, unspecified', 'ICD10_2010'), +('A44', 'Bartonellosis', 'ICD10_2010'), +('A44.0', 'Systemic bartonellosis', 'ICD10_2010'), +('A44.1', 'Cutaneous and mucocutaneous bartonellosis', 'ICD10_2010'), +('A44.8', 'Other forms of bartonellosis', 'ICD10_2010'), +('A44.9', 'Bartonellosis, unspecified', 'ICD10_2010'), +('A46', 'Erysipelas', 'ICD10_2010'), +('A48', 'Other bacterial diseases, not elsewhere classified', 'ICD10_2010'), +('A48.0', 'Gas gangrene', 'ICD10_2010'), +('A48.1', 'Legionnaires\' disease', 'ICD10_2010'), +('A48.2', 'Nonpneumonic legionnaires\' disease [pontiac fever]', 'ICD10_2010'), +('A48.3', 'Toxic shock syndrome', 'ICD10_2010'), +('A48.4', 'Brazilian purpuric fever', 'ICD10_2010'), +('A48.8', 'Other specified bacterial diseases', 'ICD10_2010'), +('A49', 'Bacterial infection of unspecified site', 'ICD10_2010'), +('A49.0', 'Staphylococcal infection, unspecified', 'ICD10_2010'), +('A49.1', 'Streptococcal infection, unspecified', 'ICD10_2010'), +('A49.2', 'Haemophilus influenzae infection, unspecified', 'ICD10_2010'), +('A49.3', 'Mycoplasma infection, unspecified', 'ICD10_2010'), +('A49.8', 'Other bacterial infections of unspecified site', 'ICD10_2010'), +('A49.9', 'Bacterial infection, unspecified', 'ICD10_2010'), +('A50', 'Congenital syphilis', 'ICD10_2010'), +('A50.0', 'Early congenital syphilis, symptomatic', 'ICD10_2010'), +('A50.1', 'Early congenital syphilis, latent', 'ICD10_2010'), +('A50.2', 'Early congenital syphilis, unspecified', 'ICD10_2010'), +('A50.3', 'Late congenital syphilitic oculopathy', 'ICD10_2010'), +('A50.4', 'Late congenital neurosyphilis [juvenile neurosyphilis]', 'ICD10_2010'), +('A50.5', 'Other late congenital syphilis, symptomatic', 'ICD10_2010'), +('A50.6', 'Late congenital syphilis, latent', 'ICD10_2010'), +('A50.7', 'Late congenital syphilis, unspecified', 'ICD10_2010'), +('A50.9', 'Congenital syphilis, unspecified', 'ICD10_2010'), +('A51', 'Early syphilis', 'ICD10_2010'), +('A51.0', 'Primary genital syphilis', 'ICD10_2010'), +('A51.1', 'Primary anal syphilis', 'ICD10_2010'), +('A51.2', 'Primary syphilis of other sites', 'ICD10_2010'), +('A51.3', 'Secondary syphilis of skin and mucous membranes', 'ICD10_2010'), +('A51.4', 'Other secondary syphilis', 'ICD10_2010'), +('A51.5', 'Early syphilis, latent', 'ICD10_2010'), +('A51.9', 'Early syphilis, unspecified', 'ICD10_2010'), +('A52', 'Late syphilis', 'ICD10_2010'), +('A52.0', 'Cardiovascular syphilis', 'ICD10_2010'), +('A52.1', 'Symptomatic neurosyphilis', 'ICD10_2010'), +('A52.2', 'Asymptomatic neurosyphilis', 'ICD10_2010'), +('A52.3', 'Neurosyphilis, unspecified', 'ICD10_2010'), +('A52.7', 'Other symptomatic late syphilis', 'ICD10_2010'), +('A52.8', 'Late syphilis, latent', 'ICD10_2010'), +('A52.9', 'Late syphilis, unspecified', 'ICD10_2010'), +('A53', 'Other and unspecified syphilis', 'ICD10_2010'), +('A53.0', 'Latent syphilis, unspecified as early or late', 'ICD10_2010'), +('A53.9', 'Syphilis, unspecified', 'ICD10_2010'), +('A54', 'Gonococcal infection', 'ICD10_2010'), +('A54.0', 'Gonococcal infection lower genitourinary tract without periurethral / accessory gland abscess', 'ICD10_2010'), +('A54.1', 'Gonococcal infection lower genitourinary tract with periurethral / accessory gland abscess', 'ICD10_2010'), +('A54.2', 'Gonococcal pelviperitonitis and other gonococcal genitourinary infections', 'ICD10_2010'), +('A54.3', 'Gonococcal infection of eye', 'ICD10_2010'), +('A54.4', 'Gonococcal infection of musculoskeletal system', 'ICD10_2010'), +('A54.5', 'Gonococcal pharyngitis', 'ICD10_2010'), +('A54.6', 'Gonococcal infection of anus and rectum', 'ICD10_2010'), +('A54.8', 'Other gonococcal infections', 'ICD10_2010'), +('A54.9', 'Gonococcal infection, unspecified', 'ICD10_2010'), +('A55', 'Chlamydial lymphogranuloma (venereum)', 'ICD10_2010'), +('A56', 'Other sexually transmitted chlamydial diseases', 'ICD10_2010'), +('A56.0', 'Chlamydial infection of lower genitourinary tract', 'ICD10_2010'), +('A56.1', 'Chlamydial infection of pelviperitoneum other genitourinary organs', 'ICD10_2010'), +('A56.2', 'Chlamydial infection of genitourinary tract, unspecified', 'ICD10_2010'), +('A56.3', 'Chlamydial infection of anus and rectum', 'ICD10_2010'), +('A56.4', 'Chlamydial infection of pharynx', 'ICD10_2010'), +('A56.8', 'Sexually transmitted chlamydial infection of other sites', 'ICD10_2010'), +('A57', 'Chancroid', 'ICD10_2010'), +('A58', 'Granuloma inguinale', 'ICD10_2010'), +('A59', 'Trichomoniasis', 'ICD10_2010'), +('A59.0', 'Urogenital trichomoniasis', 'ICD10_2010'), +('A59.8', 'Trichomoniasis of other sites', 'ICD10_2010'), +('A59.9', 'Trichomoniasis, unspecified', 'ICD10_2010'), +('A60', 'Anogenital herpesviral [herpes simplex] infection', 'ICD10_2010'), +('A60.0', 'Herpesviral infection of genitalia and urogenital tract', 'ICD10_2010'), +('A60.1', 'Herpesviral infection of perianal skin and rectum', 'ICD10_2010'), +('A60.9', 'Anogenital herpesviral infection, unspecified', 'ICD10_2010'), +('A63', 'Other predominantly sexually transmitted diseases, not elsewhere classified', 'ICD10_2010'), +('A63.0', 'Anogenital (venereal) warts', 'ICD10_2010'), +('A63.8', 'Other specified predominantly sexually transmitted diseases', 'ICD10_2010'), +('A64', 'Unspecified sexually transmitted disease', 'ICD10_2010'), +('A65', 'Nonvenereal syphilis', 'ICD10_2010'), +('A66', 'Yaws', 'ICD10_2010'), +('A66.0', 'Initial lesions of yaws', 'ICD10_2010'), +('A66.1', 'Multiple papillomata and wet crab yaws', 'ICD10_2010'), +('A66.2', 'Other early skin lesions of yaws', 'ICD10_2010'), +('A66.3', 'Hyperkeratosis of yaws', 'ICD10_2010'), +('A66.4', 'Gummata and ulcers of yaws', 'ICD10_2010'), +('A66.5', 'Gangosa', 'ICD10_2010'), +('A66.6', 'Bone and joint lesions of yaws', 'ICD10_2010'), +('A66.7', 'Other manifestations of yaws', 'ICD10_2010'), +('A66.8', 'Latent yaws', 'ICD10_2010'), +('A66.9', 'Yaws, unspecified', 'ICD10_2010'), +('A67', 'Pinta [carate]', 'ICD10_2010'), +('A67.0', 'Primary lesions of pinta', 'ICD10_2010'), +('A67.1', 'Intermediate lesions of pinta', 'ICD10_2010'), +('A67.2', 'Late lesions of pinta', 'ICD10_2010'), +('A67.3', 'Mixed lesions of pinta', 'ICD10_2010'), +('A67.9', 'Pinta, unspecified', 'ICD10_2010'), +('A68', 'Relapsing fevers', 'ICD10_2010'), +('A68.0', 'Louse-borne relapsing fever', 'ICD10_2010'), +('A68.1', 'Tick-borne relapsing fever', 'ICD10_2010'), +('A68.9', 'Relapsing fever, unspecified', 'ICD10_2010'), +('A69', 'Other spirochaetal infections', 'ICD10_2010'), +('A69.0', 'Necrotizing ulcerative stomatitis', 'ICD10_2010'), +('A69.1', 'Other vincent\'s infections', 'ICD10_2010'), +('A69.2', 'Lyme disease', 'ICD10_2010'), +('A69.8', 'Other specified spirochaetal infections', 'ICD10_2010'), +('A69.9', 'Spirochaetal infection, unspecified', 'ICD10_2010'), +('A70', 'Chlamydia psittaci infection', 'ICD10_2010'), +('A71', 'Trachoma', 'ICD10_2010'), +('A71.0', 'Initial stage of trachoma', 'ICD10_2010'), +('A71.1', 'Active stage of trachoma', 'ICD10_2010'), +('A71.9', 'Trachoma, unspecified', 'ICD10_2010'), +('A74', 'Other diseases caused by chlamydiae', 'ICD10_2010'), +('A74.0', 'Chlamydial conjunctivitis', 'ICD10_2010'), +('A74.8', 'Other chlamydial diseases', 'ICD10_2010'), +('A74.9', 'Chlamydial infection, unspecified', 'ICD10_2010'), +('A75', 'Typhus fever', 'ICD10_2010'), +('A75.0', 'Epidemic louse-borne typhus fever due to rickettsia prowazekii', 'ICD10_2010'), +('A75.1', 'Recrudescent typhus [brill\'s disease]', 'ICD10_2010'), +('A75.2', 'Typhus fever due to rickettsia typhi', 'ICD10_2010'), +('A75.3', 'Typhus fever due to rickettsia tsutsugamushi', 'ICD10_2010'), +('A75.9', 'Typhus fever, unspecified', 'ICD10_2010'), +('A77', 'Spotted fever [tick-borne rickettsioses]', 'ICD10_2010'), +('A77.0', 'Spotted fever due to rickettsia rickettsii', 'ICD10_2010'), +('A77.1', 'Spotted fever due to rickettsia conorii', 'ICD10_2010'), +('A77.2', 'Spotted fever due to rickettsia sibirica', 'ICD10_2010'), +('A77.3', 'Spotted fever due to rickettsia australis', 'ICD10_2010'), +('A77.8', 'Other spotted fevers', 'ICD10_2010'), +('A77.9', 'Spotted fever, unspecified', 'ICD10_2010'), +('A78', 'Q fever', 'ICD10_2010'), +('A79', 'Other rickettsioses', 'ICD10_2010'), +('A79.0', 'Trench fever', 'ICD10_2010'), +('A79.1', 'Rickettsialpox due to rickettsia akari', 'ICD10_2010'), +('A79.8', 'Other specified rickettsioses', 'ICD10_2010'), +('A79.9', 'Rickettsiosis, unspecified', 'ICD10_2010'), +('A80', 'Acute poliomyelitis', 'ICD10_2010'), +('A80.0', 'Acute paralytic poliomyelitis, vaccine-associated', 'ICD10_2010'), +('A80.1', 'Acute paralytic poliomyelitis, wild virus, imported', 'ICD10_2010'), +('A80.2', 'Acute paralytic poliomyelitis, wild virus, indigenous', 'ICD10_2010'), +('A80.3', 'Acute paralytic poliomyelitis, other and unspecified', 'ICD10_2010'), +('A80.4', 'Acute nonparalytic poliomyelitis', 'ICD10_2010'), +('A80.9', 'Acute poliomyelitis, unspecified', 'ICD10_2010'), +('A81', 'Atypical virus infections of central nervous system', 'ICD10_2010'), +('A81.0', 'Creutzfeldt-jakob disease', 'ICD10_2010'), +('A81.1', 'Subacute sclerosing panencephalitis', 'ICD10_2010'), +('A81.2', 'Progressive multifocal leukoencephalopathy', 'ICD10_2010'), +('A81.8', 'Other atypical virus infections of central nervous system', 'ICD10_2010'), +('A81.9', 'Atypical virus infection of central nervous system, unspecified', 'ICD10_2010'), +('A82', 'Rabies', 'ICD10_2010'), +('A82.0', 'Sylvatic rabies', 'ICD10_2010'), +('A82.1', 'Urban rabies', 'ICD10_2010'), +('A82.9', 'Rabies, unspecified', 'ICD10_2010'), +('A83', 'Mosquito-borne viral encephalitis', 'ICD10_2010'), +('A83.0', 'Japanese encephalitis', 'ICD10_2010'), +('A83.1', 'Western equine encephalitis', 'ICD10_2010'), +('A83.2', 'Eastern equine encephalitis', 'ICD10_2010'), +('A83.3', 'St louis encephalitis', 'ICD10_2010'), +('A83.4', 'Australian encephalitis', 'ICD10_2010'), +('A83.5', 'California encephalitis', 'ICD10_2010'), +('A83.6', 'Rocio virus disease', 'ICD10_2010'), +('A83.8', 'Other mosquito-borne viral encephalitis', 'ICD10_2010'), +('A83.9', 'Mosquito-borne viral encephalitis, unspecified', 'ICD10_2010'), +('A84', 'Tick-borne viral encephalitis', 'ICD10_2010'), +('A84.0', 'Far east tick-born enceph-russn spring-summ enceph', 'ICD10_2010'), +('A84.1', 'Central european tick-borne encephalitis', 'ICD10_2010'), +('A84.8', 'Other tick-borne viral encephalitis', 'ICD10_2010'), +('A84.9', 'Tick-borne viral encephalitis, unspecified', 'ICD10_2010'), +('A85', 'Other viral encephalitis, not elsewhere classified', 'ICD10_2010'), +('A85.0', 'Enteroviral encephalitis', 'ICD10_2010'), +('A85.1', 'Adenoviral encephalitis', 'ICD10_2010'), +('A85.2', 'Arthropod-borne viral encephalitis, unspecified', 'ICD10_2010'), +('A85.8', 'Other specified viral encephalitis', 'ICD10_2010'), +('A86', 'Unspecified viral encephalitis', 'ICD10_2010'), +('A87', 'Viral meningitis', 'ICD10_2010'), +('A87.0', 'Enteroviral meningitis', 'ICD10_2010'), +('A87.1', 'Adenoviral meningitis', 'ICD10_2010'), +('A87.2', 'Lymphocytic choriomeningitis', 'ICD10_2010'), +('A87.8', 'Other viral meningitis', 'ICD10_2010'), +('A87.9', 'Viral meningitis, unspecified', 'ICD10_2010'), +('A88', 'Other viral infections of central nervous system, not elsewhere classified', 'ICD10_2010'), +('A88.0', 'Enteroviral exanthematous fever [boston exanthem]', 'ICD10_2010'), +('A88.1', 'Epidemic vertigo', 'ICD10_2010'), +('A88.8', 'Other specified viral infections of central nervous system', 'ICD10_2010'), +('A89', 'Unspecified viral infection of central nervous system', 'ICD10_2010'), +('A90', 'Dengue fever [classical dengue]', 'ICD10_2010'), +('A91', 'Dengue haemorrhagic fever', 'ICD10_2010'), +('A92', 'Other mosquito-borne viral fevers', 'ICD10_2010'), +('A92.0', 'Chikungunya virus disease', 'ICD10_2010'), +('A92.1', 'O\'nyong-nyong fever', 'ICD10_2010'), +('A92.2', 'Venezuelan equine fever', 'ICD10_2010'), +('A92.3', 'West nile fever', 'ICD10_2010'), +('A92.4', 'Rift valley fever', 'ICD10_2010'), +('A92.8', 'Other specified mosquito-borne viral fevers', 'ICD10_2010'), +('A92.9', 'Mosquito-borne viral fever, unspecified', 'ICD10_2010'), +('A93', 'Other arthropod-borne viral fevers, not elsewhere classified', 'ICD10_2010'), +('A93.0', 'Oropouche virus disease', 'ICD10_2010'), +('A93.1', 'Sandfly fever', 'ICD10_2010'), +('A93.2', 'Colorado tick fever', 'ICD10_2010'), +('A93.8', 'Other specified arthropod-borne viral fevers', 'ICD10_2010'), +('A94', 'Unspecified arthropod-borne viral fever', 'ICD10_2010'), +('A95', 'Yellow fever', 'ICD10_2010'), +('A95.0', 'Sylvatic yellow fever', 'ICD10_2010'), +('A95.1', 'Urban yellow fever', 'ICD10_2010'), +('A95.9', 'Yellow fever, unspecified', 'ICD10_2010'), +('A96', 'Arenaviral haemorrhagic fever', 'ICD10_2010'), +('A96.0', 'Junin haemorrhagic fever', 'ICD10_2010'), +('A96.1', 'Machupo haemorrhagic fever', 'ICD10_2010'), +('A96.2', 'Lassa fever', 'ICD10_2010'), +('A96.8', 'Other arenaviral haemorrhagic fevers', 'ICD10_2010'), +('A96.9', 'Arenaviral haemorrhagic fever, unspecified', 'ICD10_2010'), +('A98', 'Other viral haemorrhagic fevers, not elsewhere classified', 'ICD10_2010'), +('A98.0', 'Crimean-congo haemorrhagic fever', 'ICD10_2010'), +('A98.1', 'Omsk haemorrhagic fever', 'ICD10_2010'), +('A98.2', 'Kyasanur forest disease', 'ICD10_2010'), +('A98.3', 'Marburg virus disease', 'ICD10_2010'), +('A98.4', 'Ebola virus disease', 'ICD10_2010'), +('A98.5', 'Haemorrhagic fever with renal syndrome', 'ICD10_2010'), +('A98.8', 'Other specified viral haemorrhagic fevers', 'ICD10_2010'), +('A99', 'Unspecified viral haemorrhagic fever', 'ICD10_2010'), +('B00', 'Herpesviral [herpes simplex] infections', 'ICD10_2010'), +('B00.0', 'Eczema herpeticum', 'ICD10_2010'), +('B00.1', 'Herpesviral vesicular dermatitis', 'ICD10_2010'), +('B00.2', 'Herpesviral gingivostomatitis and pharyngotonsillitis', 'ICD10_2010'), +('B00.3', 'Herpesviral meningitis', 'ICD10_2010'), +('B00.4', 'Herpesviral encephalitis', 'ICD10_2010'), +('B00.5', 'Herpesviral ocular disease', 'ICD10_2010'), +('B00.7', 'Disseminated herpesviral disease', 'ICD10_2010'), +('B00.8', 'Other forms of herpesviral infection', 'ICD10_2010'), +('B00.9', 'Herpesviral infection, unspecified', 'ICD10_2010'), +('B01', 'Varicella [chickenpox]', 'ICD10_2010'), +('B01.0', 'Varicella meningitis', 'ICD10_2010'), +('B01.1', 'Varicella encephalitis', 'ICD10_2010'), +('B01.2', 'Varicella pneumonia', 'ICD10_2010'), +('B01.8', 'Varicella with other complications', 'ICD10_2010'), +('B01.9', 'Varicella without complication', 'ICD10_2010'), +('B02', 'Zoster [herpes zoster]', 'ICD10_2010'), +('B02.0', 'Zoster encephalitis', 'ICD10_2010'), +('B02.1', 'Zoster meningitis', 'ICD10_2010'), +('B02.2', 'Zoster with other nervous system involvement', 'ICD10_2010'), +('B02.3', 'Zoster ocular disease', 'ICD10_2010'), +('B02.7', 'Disseminated zoster', 'ICD10_2010'), +('B02.8', 'Zoster with other complications', 'ICD10_2010'), +('B02.9', 'Zoster without complication', 'ICD10_2010'), +('B03', 'Smallpox', 'ICD10_2010'), +('B04', 'Monkeypox', 'ICD10_2010'), +('B05', 'Measles', 'ICD10_2010'), +('B05.0', 'Measles complicated by encephalitis', 'ICD10_2010'), +('B05.1', 'Measles complicated by meningitis', 'ICD10_2010'), +('B05.2', 'Measles complicated by pneumonia', 'ICD10_2010'), +('B05.3', 'Measles complicated by otitis media', 'ICD10_2010'), +('B05.4', 'Measles with intestinal complications', 'ICD10_2010'), +('B05.8', 'Measles with other complications', 'ICD10_2010'), +('B05.9', 'Measles without complication', 'ICD10_2010'), +('B06', 'Rubella [German measles]', 'ICD10_2010'), +('B06.0', 'Rubella with neurological complications', 'ICD10_2010'), +('B06.8', 'Rubella with other complications', 'ICD10_2010'), +('B06.9', 'Rubella without complication', 'ICD10_2010'), +('B07', 'Viral warts', 'ICD10_2010'), +('B08', 'Other viral infections characterized by skin and mucous membrane lesions, not elsewhere classified', 'ICD10_2010'), +('B08.0', 'Other orthopoxvirus infections', 'ICD10_2010'), +('B08.1', 'Molluscum contagiosum', 'ICD10_2010'), +('B08.2', 'Exanthema subitum [sixth disease]', 'ICD10_2010'), +('B08.3', 'Erythema infectiosum [fifth disease]', 'ICD10_2010'), +('B08.4', 'Enteroviral vesicular stomatitis with exanthem', 'ICD10_2010'), +('B08.5', 'Enteroviral vesicular pharyngitis', 'ICD10_2010'), +('B08.6', 'Exanthematic febrile disease (MEXICO)', 'ICD10_2010'), +('B08.8', 'Other specified viral infections characterized skin / mucous membrane lesions', 'ICD10_2010'), +('B09', 'Unspecified viral infection characterized skin / mucous membrane lesions', 'ICD10_2010'), +('B15', 'Acute hepatitis A', 'ICD10_2010'), +('B15.0', 'Hepatitis a with hepatic coma', 'ICD10_2010'), +('B15.9', 'Hepatitis a without hepatic coma', 'ICD10_2010'), +('B16', 'Acute hepatitis B', 'ICD10_2010'), +('B16.0', 'Acute hepatitis b with delta-agent (coinfection) with hepatitis coma', 'ICD10_2010'), +('B16.1', 'Acute hepatitis b with delta-agent (coinfection) without hepatitis coma', 'ICD10_2010'), +('B16.2', 'Acute hepatitis b without delta-agent with hepatic coma', 'ICD10_2010'), +('B16.9', 'Acute hepatitis b without delta-agent and without hepatatitis coma', 'ICD10_2010'), +('B17', 'Other acute viral hepatitis', 'ICD10_2010'), +('B17.0', 'Acute delta-(super)infection of hepatitis b carrier', 'ICD10_2010'), +('B17.1', 'Acute hepatitis c', 'ICD10_2010'), +('B17.2', 'Acute hepatitis e', 'ICD10_2010'), +('B17.8', 'Other specified acute viral hepatitis', 'ICD10_2010'), +('B17.9', 'Acute viral hepatitis, unspecified', 'ICD10_2010'), +('B18', 'Chronic viral hepatitis', 'ICD10_2010'), +('B18.0', 'Chronic viral hepatitis b with delta-agent', 'ICD10_2010'), +('B18.1', 'Chronic viral hepatitis b without delta-agent', 'ICD10_2010'), +('B18.2', 'Chronic viral hepatitis c', 'ICD10_2010'), +('B18.8', 'Other chronic viral hepatitis', 'ICD10_2010'), +('B18.9', 'Chronic viral hepatitis, unspecified', 'ICD10_2010'), +('B19', 'Unspecified viral hepatitis', 'ICD10_2010'), +('B19.0', 'Unspecified viral hepatitis hepatic with coma', 'ICD10_2010'), +('B19.9', 'Unspecified viral hepatitis without hepatic coma', 'ICD10_2010'), +('B20', 'Human immunodeficiency virus [HIV] disease resulting in infectious and parasitic diseases', 'ICD10_2010'), +('B20.0', 'HIV disease resulting in mycobacterial infection', 'ICD10_2010'), +('B20.1', 'HIV disease resulting in other bacterial infections', 'ICD10_2010'), +('B20.2', 'HIV disease resulting in cytomegaloviral disease', 'ICD10_2010'), +('B20.3', 'HIV disease resulting in other viral infections', 'ICD10_2010'), +('B20.4', 'HIV disease resulting in candidiasis', 'ICD10_2010'), +('B20.5', 'HIV disease resulting in other mycoses', 'ICD10_2010'), +('B20.6', 'HIV disease resulting in pneumocystis carinii pneumonia', 'ICD10_2010'), +('B20.7', 'HIV disease resulting in multiple infections', 'ICD10_2010'), +('B20.8', 'HIV disease resulting in other infectious and parasitic disease', 'ICD10_2010'), +('B20.9', 'HIV disease resulting in unspecified infectious or parasitic disease', 'ICD10_2010'), +('B21', 'Human immunodeficiency virus [HIV] disease resulting in malignant neoplasms', 'ICD10_2010'), +('B21.0', 'HIV disease resulting in kaposi\'s sarcoma', 'ICD10_2010'), +('B21.1', 'HIV disease resulting in burkitt\'s lymphoma', 'ICD10_2010'), +('B21.2', 'HIV dis resulting oth types of non-hodgkin\'s lymphoma', 'ICD10_2010'), +('B21.3', 'HIV dis result oth mal neo lymphoid haematopoietic rel tis', 'ICD10_2010'), +('B21.7', 'HIV disease resulting in multiple malignant neoplasms', 'ICD10_2010'), +('B21.8', 'HIV disease resulting in other malignant neoplasms', 'ICD10_2010'), +('B21.9', 'HIV disease resulting in unspecified malignant neoplasm', 'ICD10_2010'), +('B22', 'Human immunodeficiency virus [HIV] disease resulting in other specified diseases', 'ICD10_2010'), +('B22.0', 'HIV disease resulting in encephalopathy', 'ICD10_2010'), +('B22.1', 'HIV disease resulting in lymphoid interstitial pneumonitis', 'ICD10_2010'), +('B22.2', 'HIV disease resulting in wasting syndrome', 'ICD10_2010'), +('B22.7', 'HIV dis resulting in multiple diseases classif elsewhere', 'ICD10_2010'), +('B23', 'Human immunodeficiency virus [HIV] disease resulting in other conditions', 'ICD10_2010'), +('B23.0', 'Acute HIV infection syndrome', 'ICD10_2010'), +('B23.1', 'HIV dis result (persistent) generalized lymphadenopathy', 'ICD10_2010'), +('B23.2', 'HIV dis result haematologic / immunologic abnorm nec', 'ICD10_2010'), +('B23.8', 'HIV disease resulting in other specified conditions', 'ICD10_2010'), +('B24', 'Unspecified human immunodeficiency virus [hiv] disease', 'ICD10_2010'), +('B25', 'Cytomegaloviral disease', 'ICD10_2010'), +('B25.0', 'Cytomegaloviral pneumonitis', 'ICD10_2010'), +('B25.1', 'Cytomegaloviral hepatitis', 'ICD10_2010'), +('B25.2', 'Cytomegaloviral pancreatitis', 'ICD10_2010'), +('B25.8', 'Other cytomegaloviral diseases', 'ICD10_2010'), +('B25.9', 'Cytomegaloviral disease, unspecified', 'ICD10_2010'), +('B26', 'Mumps', 'ICD10_2010'), +('B26.0', 'Mumps orchitis', 'ICD10_2010'), +('B26.1', 'Mumps meningitis', 'ICD10_2010'), +('B26.2', 'Mumps encephalitis', 'ICD10_2010'), +('B26.3', 'Mumps pancreatitis', 'ICD10_2010'), +('B26.8', 'Mumps with other complications', 'ICD10_2010'), +('B26.9', 'Mumps without complication', 'ICD10_2010'), +('B27', 'Infectious mononucleosis', 'ICD10_2010'), +('B27.0', 'Gammaherpesviral mononucleosis', 'ICD10_2010'), +('B27.1', 'Cytomegaloviral mononucleosis', 'ICD10_2010'), +('B27.8', 'Other infectious mononucleosis', 'ICD10_2010'), +('B27.9', 'Infectious mononucleosis, unspecified', 'ICD10_2010'), +('B30', 'Viral conjunctivitis', 'ICD10_2010'), +('B30.0', 'Keratoconjunctivitis due to adenovirus', 'ICD10_2010'), +('B30.1', 'Conjunctivitis due to adenovirus', 'ICD10_2010'), +('B30.2', 'Viral pharyngoconjunctivitis', 'ICD10_2010'), +('B30.3', 'Acute epid haemorrhagic conjunctivitis (enteroviral)', 'ICD10_2010'), +('B30.8', 'Other viral conjunctivitis', 'ICD10_2010'), +('B30.9', 'Viral conjunctivitis, unspecified', 'ICD10_2010'), +('B33', 'Other viral diseases, not elsewhere classified', 'ICD10_2010'), +('B33.0', 'Epidemic myalgia', 'ICD10_2010'), +('B33.1', 'Ross river disease', 'ICD10_2010'), +('B33.2', 'Viral carditis', 'ICD10_2010'), +('B33.3', 'Retrovirus infections, not elsewhere classified', 'ICD10_2010'), +('B33.4', 'Hantavirus (cardio-)pulmonary syndrome [HPS] [HCPS]', 'ICD10_2010'), +('B33.8', 'Other specified viral diseases', 'ICD10_2010'), +('B34', 'Viral infection of unspecified site', 'ICD10_2010'), +('B34.0', 'Adenovirus infection, unspecified', 'ICD10_2010'), +('B34.1', 'Enterovirus infection, unspecified', 'ICD10_2010'), +('B34.2', 'Coronavirus infection, unspecified', 'ICD10_2010'), +('B34.3', 'Parvovirus infection, unspecified', 'ICD10_2010'), +('B34.4', 'Papovavirus infection, unspecified', 'ICD10_2010'), +('B34.8', 'Other viral infections of unspecified site', 'ICD10_2010'), +('B34.9', 'Viral infection, unspecified', 'ICD10_2010'), +('B35', 'Dermatophytosis', 'ICD10_2010'), +('B35.0', 'Tinea barbae and tinea capitis', 'ICD10_2010'), +('B35.1', 'Tinea unguium', 'ICD10_2010'), +('B35.2', 'Tinea manuum', 'ICD10_2010'), +('B35.3', 'Tinea pedis', 'ICD10_2010'), +('B35.4', 'Tinea corporis', 'ICD10_2010'), +('B35.5', 'Tinea imbricata', 'ICD10_2010'), +('B35.6', 'Tinea cruris', 'ICD10_2010'), +('B35.8', 'Other dermatophytoses', 'ICD10_2010'), +('B35.9', 'Dermatophytosis, unspecified', 'ICD10_2010'), +('B36', 'Other superficial mycoses', 'ICD10_2010'), +('B36.0', 'Pityriasis versicolor', 'ICD10_2010'), +('B36.1', 'Tinea nigra', 'ICD10_2010'), +('B36.2', 'White piedra', 'ICD10_2010'), +('B36.3', 'Black piedra', 'ICD10_2010'), +('B36.8', 'Other specified superficial mycoses', 'ICD10_2010'), +('B36.9', 'Superficial mycosis, unspecified', 'ICD10_2010'), +('B37', 'Candidiasis', 'ICD10_2010'), +('B37.0', 'Candidal stomatitis', 'ICD10_2010'), +('B37.1', 'Pulmonary candidiasis', 'ICD10_2010'), +('B37.2', 'Candidiasis of skin and nail', 'ICD10_2010'), +('B37.3', 'Candidiasis of vulva and vagina', 'ICD10_2010'), +('B37.4', 'Candidiasis of other urogenital sites', 'ICD10_2010'), +('B37.5', 'Candidal meningitis', 'ICD10_2010'), +('B37.6', 'Candidal endocarditis', 'ICD10_2010'), +('B37.7', 'Candidal septicaemia', 'ICD10_2010'), +('B37.8', 'Candidiasis of other sites', 'ICD10_2010'), +('B37.9', 'Candidiasis, unspecified', 'ICD10_2010'), +('B38', 'Coccidioidomycosis', 'ICD10_2010'), +('B38.0', 'Acute pulmonary coccidioidomycosis', 'ICD10_2010'), +('B38.1', 'Chronic pulmonary coccidioidomycosis', 'ICD10_2010'), +('B38.2', 'Pulmonary coccidioidomycosis, unspecified', 'ICD10_2010'), +('B38.3', 'Cutaneous coccidioidomycosis', 'ICD10_2010'), +('B38.4', 'Coccidioidomycosis meningitis', 'ICD10_2010'), +('B38.7', 'Disseminated coccidioidomycosis', 'ICD10_2010'), +('B38.8', 'Other forms of coccidioidomycosis', 'ICD10_2010'), +('B38.9', 'Coccidioidomycosis, unspecified', 'ICD10_2010'), +('B39', 'Histoplasmosis', 'ICD10_2010'), +('B39.0', 'Acute pulmonary histoplasmosis capsulati', 'ICD10_2010'), +('B39.1', 'Chronic pulmonary histoplasmosis capsulati', 'ICD10_2010'), +('B39.2', 'Pulmonary histoplasmosis capsulati, unspecified', 'ICD10_2010'), +('B39.3', 'Disseminated histoplasmosis capsulati', 'ICD10_2010'), +('B39.4', 'Histoplasmosis capsulati, unspecified', 'ICD10_2010'), +('B39.5', 'Histoplasmosis duboisii', 'ICD10_2010'), +('B39.9', 'Histoplasmosis, unspecified', 'ICD10_2010'), +('B40', 'Blastomycosis', 'ICD10_2010'), +('B40.0', 'Acute pulmonary blastomycosis', 'ICD10_2010'), +('B40.1', 'Chronic pulmonary blastomycosis', 'ICD10_2010'), +('B40.2', 'Pulmonary blastomycosis, unspecified', 'ICD10_2010'), +('B40.3', 'Cutaneous blastomycosis', 'ICD10_2010'), +('B40.7', 'Disseminated blastomycosis', 'ICD10_2010'), +('B40.8', 'Other forms of blastomycosis', 'ICD10_2010'), +('B40.9', 'Blastomycosis, unspecified', 'ICD10_2010'), +('B41', 'Paracoccidioidomycosis', 'ICD10_2010'), +('B41.0', 'Pulmonary paracoccidioidomycosis', 'ICD10_2010'), +('B41.7', 'Disseminated paracoccidioidomycosis', 'ICD10_2010'), +('B41.8', 'Other forms of paracoccidioidomycosis', 'ICD10_2010'), +('B41.9', 'Paracoccidioidomycosis, unspecified', 'ICD10_2010'), +('B42', 'Sporotrichosis', 'ICD10_2010'), +('B42.0', 'Pulmonary sporotrichosis', 'ICD10_2010'), +('B42.1', 'Lymphocutaneous sporotrichosis', 'ICD10_2010'), +('B42.7', 'Disseminated sporotrichosis', 'ICD10_2010'), +('B42.8', 'Other forms of sporotrichosis', 'ICD10_2010'), +('B42.9', 'Sporotrichosis, unspecified', 'ICD10_2010'), +('B43', 'Chromomycosis and phaeomycotic abscess', 'ICD10_2010'), +('B43.0', 'Cutaneous chromomycosis', 'ICD10_2010'), +('B43.1', 'Phaeomycotic brain abscess', 'ICD10_2010'), +('B43.2', 'Subcutaneous phaeomycotic abscess and cyst', 'ICD10_2010'), +('B43.8', 'Other forms of chromomycosis', 'ICD10_2010'), +('B43.9', 'Chromomycosis, unspecified', 'ICD10_2010'), +('B44', 'Aspergillosis', 'ICD10_2010'), +('B44.0', 'Invasive pulmonary aspergillosis', 'ICD10_2010'), +('B44.1', 'Other pulmonary aspergillosis', 'ICD10_2010'), +('B44.2', 'Tonsillar aspergillosis', 'ICD10_2010'), +('B44.7', 'Disseminated aspergillosis', 'ICD10_2010'), +('B44.8', 'Other forms of aspergillosis', 'ICD10_2010'), +('B44.9', 'Aspergillosis, unspecified', 'ICD10_2010'), +('B45', 'Cryptococcosis', 'ICD10_2010'), +('B45.0', 'Pulmonary cryptococcosis', 'ICD10_2010'), +('B45.1', 'Cerebral cryptococcosis', 'ICD10_2010'), +('B45.2', 'Cutaneous cryptococcosis', 'ICD10_2010'), +('B45.3', 'Osseous cryptococcosis', 'ICD10_2010'), +('B45.7', 'Disseminated cryptococcosis', 'ICD10_2010'), +('B45.8', 'Other forms of cryptococcosis', 'ICD10_2010'), +('B45.9', 'Cryptococcosis, unspecified', 'ICD10_2010'), +('B46', 'Zygomycosis', 'ICD10_2010'), +('B46.0', 'Pulmonary mucormycosis', 'ICD10_2010'), +('B46.1', 'Rhinocerebral mucormycosis', 'ICD10_2010'), +('B46.2', 'Gastrointestinal mucormycosis', 'ICD10_2010'), +('B46.3', 'Cutaneous mucormycosis', 'ICD10_2010'), +('B46.4', 'Disseminated mucormycosis', 'ICD10_2010'), +('B46.5', 'Mucormycosis, unspecified', 'ICD10_2010'), +('B46.8', 'Other zygomycoses', 'ICD10_2010'), +('B46.9', 'Zygomycosis, unspecified', 'ICD10_2010'), +('B47', 'Mycetoma', 'ICD10_2010'), +('B47.0', 'Eumycetoma', 'ICD10_2010'), +('B47.1', 'Actinomycetoma', 'ICD10_2010'), +('B47.9', 'Mycetoma, unspecified', 'ICD10_2010'), +('B48', 'Other mycoses, not elsewhere classified', 'ICD10_2010'), +('B48.0', 'Lobomycosis', 'ICD10_2010'), +('B48.1', 'Rhinosporidiosis', 'ICD10_2010'), +('B48.2', 'Allescheriasis', 'ICD10_2010'), +('B48.3', 'Geotrichosis', 'ICD10_2010'), +('B48.4', 'Penicillosis', 'ICD10_2010'), +('B48.7', 'Opportunistic mycoses', 'ICD10_2010'), +('B48.8', 'Other specified mycoses', 'ICD10_2010'), +('B49', 'Unspecified mycosis', 'ICD10_2010'), +('B50', 'Plasmodium falciparum malaria', 'ICD10_2010'), +('B50.0', 'Plasmodium falciparum malaria with cerebral complications', 'ICD10_2010'), +('B50.8', 'Other severe and complicated plasmodium falciparum malaria', 'ICD10_2010'), +('B50.9', 'Plasmodium falciparum malaria, unspecified', 'ICD10_2010'), +('B51', 'Plasmodium vivax malaria', 'ICD10_2010'), +('B51.0', 'Plasmodium vivax malaria with rupture of spleen', 'ICD10_2010'), +('B51.8', 'Plasmodium vivax malaria with other complications', 'ICD10_2010'), +('B51.9', 'Plasmodium vivax malaria without complication', 'ICD10_2010'), +('B52', 'Plasmodium malariae malaria', 'ICD10_2010'), +('B52.0', 'Plasmodium malariae malaria with nephropathy', 'ICD10_2010'), +('B52.8', 'Plasmodium malariae malaria with other complications', 'ICD10_2010'), +('B52.9', 'Plasmodium malariae malaria without complication', 'ICD10_2010'), +('B53', 'Other parasitologically confirmed malaria', 'ICD10_2010'), +('B53.0', 'Plasmodium ovale malaria', 'ICD10_2010'), +('B53.1', 'Malaria due to simian plasmodia', 'ICD10_2010'), +('B53.8', 'Other parasitologically confirmed malaria nec', 'ICD10_2010'), +('B54', 'Unspecified malaria', 'ICD10_2010'), +('B55', 'Leishmaniasis', 'ICD10_2010'), +('B55.0', 'Visceral leishmaniasis', 'ICD10_2010'), +('B55.1', 'Cutaneous leishmaniasis', 'ICD10_2010'), +('B55.2', 'Mucocutaneous leishmaniasis', 'ICD10_2010'), +('B55.9', 'Leishmaniasis, unspecified', 'ICD10_2010'), +('B56', 'African trypanosomiasis', 'ICD10_2010'), +('B56.0', 'Gambiense trypanosomiasis', 'ICD10_2010'), +('B56.1', 'Rhodesiense trypanosomiasis', 'ICD10_2010'), +('B56.9', 'African trypanosomiasis, unspecified', 'ICD10_2010'), +('B57', 'Chagas disease', 'ICD10_2010'), +('B57.0', 'Acute chagas\' disease with heart involvement', 'ICD10_2010'), +('B57.1', 'Acute chagas\' disease without heart involvement', 'ICD10_2010'), +('B57.2', 'Chagas\' disease (chronic) with heart involvement', 'ICD10_2010'), +('B57.3', 'Chagas\' disease (chronic) with digestive system involvement', 'ICD10_2010'), +('B57.4', 'Chagas\' disease (chronic) with nervous system involvement', 'ICD10_2010'), +('B57.5', 'Chagas\' disease (chronic) with other organ involvement', 'ICD10_2010'), +('B58', 'Toxoplasmosis', 'ICD10_2010'), +('B58.0', 'Toxoplasma oculopathy', 'ICD10_2010'), +('B58.1', 'Toxoplasma hepatitis', 'ICD10_2010'), +('B58.2', 'Toxoplasma meningoencephalitis', 'ICD10_2010'), +('B58.3', 'Pulmonary toxoplasmosis', 'ICD10_2010'), +('B58.8', 'Toxoplasmosis with other organ involvement', 'ICD10_2010'), +('B58.9', 'Toxoplasmosis, unspecified', 'ICD10_2010'), +('B59', 'Pneumocystosis', 'ICD10_2010'), +('B60', 'Other protozoal diseases, not elsewhere classified', 'ICD10_2010'), +('B60.0', 'Babesiosis', 'ICD10_2010'), +('B60.1', 'Acanthamoebiasis', 'ICD10_2010'), +('B60.2', 'Naegleriasis', 'ICD10_2010'), +('B60.8', 'Other specified protozoal diseases', 'ICD10_2010'), +('B64', 'Unspecified protozoal disease', 'ICD10_2010'), +('B65', 'Schistosomiasis [bilharziasis]', 'ICD10_2010'), +('B65.0', 'Schistosom due schis haematobium [urin schistosom]', 'ICD10_2010'), +('B65.1', 'Schistosom due schis mansoni [intest schistosom]', 'ICD10_2010'), +('B65.2', 'Schistosomiasis due to schistosoma japonicum', 'ICD10_2010'), +('B65.3', 'Cercarial dermatitis', 'ICD10_2010'), +('B65.8', 'Other schistosomiases', 'ICD10_2010'), +('B65.9', 'Schistosomiasis, unspecified', 'ICD10_2010'), +('B66', 'Other fluke infections', 'ICD10_2010'), +('B66.0', 'Opisthorchiasis', 'ICD10_2010'), +('B66.1', 'Clonorchiasis', 'ICD10_2010'), +('B66.2', 'Dicrocoeliasis', 'ICD10_2010'), +('B66.3', 'Fascioliasis', 'ICD10_2010'), +('B66.4', 'Paragonimiasis', 'ICD10_2010'), +('B66.5', 'Fasciolopsiasis', 'ICD10_2010'), +('B66.8', 'Other specified fluke infections', 'ICD10_2010'), +('B66.9', 'Fluke infection, unspecified', 'ICD10_2010'), +('B67', 'Echinococcosis', 'ICD10_2010'), +('B67.0', 'Echinococcus granulosus infection of liver', 'ICD10_2010'), +('B67.1', 'Echinococcus granulosus infection of lung', 'ICD10_2010'), +('B67.2', 'Echinococcus granulosus infection of bone', 'ICD10_2010'), +('B67.3', 'Echinococcus granulosus infection, other and multiple sites', 'ICD10_2010'), +('B67.4', 'Echinococcus granulosus infection, unspecified', 'ICD10_2010'), +('B67.5', 'Echinococcus multilocularis infection of liver', 'ICD10_2010'), +('B67.6', 'Echinococcus multilocularis infection oth / multiple sites', 'ICD10_2010'), +('B67.7', 'Echinococcus multilocularis infection, unspecified', 'ICD10_2010'), +('B67.8', 'Echinococcosis, unspecified, of liver', 'ICD10_2010'), +('B67.9', 'Echinococcosis, other and unspecified', 'ICD10_2010'), +('B68', 'Taeniasis', 'ICD10_2010'), +('B68.0', 'Taenia solium taeniasis', 'ICD10_2010'), +('B68.1', 'Taenia saginata taeniasis', 'ICD10_2010'), +('B68.9', 'Taeniasis, unspecified', 'ICD10_2010'), +('B69', 'Cysticercosis', 'ICD10_2010'), +('B69.0', 'Cysticercosis of central nervous system', 'ICD10_2010'), +('B69.1', 'Cysticercosis of eye', 'ICD10_2010'), +('B69.8', 'Cysticercosis of other sites', 'ICD10_2010'), +('B69.9', 'Cysticercosis, unspecified', 'ICD10_2010'), +('B70', 'Diphyllobothriasis and sparganosis', 'ICD10_2010'), +('B70.0', 'Diphyllobothriasis', 'ICD10_2010'), +('B70.1', 'Sparganosis', 'ICD10_2010'), +('B71', 'Other cestode infections', 'ICD10_2010'), +('B71.0', 'Hymenolepiasis', 'ICD10_2010'), +('B71.1', 'Dipylidiasis', 'ICD10_2010'), +('B71.8', 'Other specified cestode infections', 'ICD10_2010'), +('B71.9', 'Cestode infection, unspecified', 'ICD10_2010'), +('B72', 'Dracunculiasis', 'ICD10_2010'), +('B73', 'Onchocerciasis', 'ICD10_2010'), +('B74', 'Filariasis', 'ICD10_2010'), +('B74.0', 'Filariasis due to wuchereria bancrofti', 'ICD10_2010'), +('B74.1', 'Filariasis due to brugia malayi', 'ICD10_2010'), +('B74.2', 'Filariasis due to brugia timori', 'ICD10_2010'), +('B74.3', 'Loiasis', 'ICD10_2010'), +('B74.4', 'Mansonelliasis', 'ICD10_2010'), +('B74.8', 'Other filariases', 'ICD10_2010'), +('B74.9', 'Filariasis, unspecified', 'ICD10_2010'), +('B75', 'Trichinellosis', 'ICD10_2010'), +('B76', 'Hookworm diseases', 'ICD10_2010'), +('B76.0', 'Ancylostomiasis', 'ICD10_2010'), +('B76.1', 'Necatoriasis', 'ICD10_2010'), +('B76.8', 'Other hookworm diseases', 'ICD10_2010'), +('B76.9', 'Hookworm disease, unspecified', 'ICD10_2010'), +('B77', 'Ascariasis', 'ICD10_2010'), +('B77.0', 'Ascariasis with intestinal complications', 'ICD10_2010'), +('B77.8', 'Ascariasis with other complications', 'ICD10_2010'), +('B77.9', 'Ascariasis, unspecified', 'ICD10_2010'), +('B78', 'Strongyloidiasis', 'ICD10_2010'), +('B78.0', 'Intestinal strongyloidiasis', 'ICD10_2010'), +('B78.1', 'Cutaneous strongyloidiasis', 'ICD10_2010'), +('B78.7', 'Disseminated strongyloidiasis', 'ICD10_2010'), +('B78.9', 'Strongyloidiasis, unspecified', 'ICD10_2010'), +('B79', 'Trichuriasis', 'ICD10_2010'), +('B80', 'Enterobiasis', 'ICD10_2010'), +('B81', 'Other intestinal helminthiases, not elsewhere classified', 'ICD10_2010'), +('B81.0', 'Anisakiasis', 'ICD10_2010'), +('B81.1', 'Intestinal capillariasis', 'ICD10_2010'), +('B81.2', 'Trichostrongyliasis', 'ICD10_2010'), +('B81.3', 'Intestinal angiostrongyliasis', 'ICD10_2010'), +('B81.4', 'Mixed intestinal helminthiases', 'ICD10_2010'), +('B81.8', 'Other specified intestinal helminthiases', 'ICD10_2010'), +('B82', 'Unspecified intestinal parasitism', 'ICD10_2010'), +('B82.0', 'Intestinal helminthiasis, unspecified', 'ICD10_2010'), +('B82.9', 'Intestinal parasitism, unspecified', 'ICD10_2010'), +('B83', 'Other helminthiases', 'ICD10_2010'), +('B83.0', 'Visceral larva migrans', 'ICD10_2010'), +('B83.1', 'Gnathostomiasis', 'ICD10_2010'), +('B83.2', 'Angiostrongyliasis due to parastrongylus cantonensis', 'ICD10_2010'), +('B83.3', 'Syngamiasis', 'ICD10_2010'), +('B83.4', 'Internal hirudiniasis', 'ICD10_2010'), +('B83.8', 'Other specified helminthiases', 'ICD10_2010'), +('B83.9', 'Helminthiasis, unspecified', 'ICD10_2010'), +('B85', 'Pediculosis and phthiriasis', 'ICD10_2010'), +('B85.0', 'Pediculosis due to pediculus humanus capitis', 'ICD10_2010'), +('B85.1', 'Pediculosis due to pediculus humanus corporis', 'ICD10_2010'), +('B85.2', 'Pediculosis, unspecified', 'ICD10_2010'), +('B85.3', 'Phthiriasis', 'ICD10_2010'), +('B85.4', 'Mixed pediculosis and phthiriasis', 'ICD10_2010'), +('B86', 'Scabies', 'ICD10_2010'), +('B87', 'Myiasis', 'ICD10_2010'), +('B87.0', 'Cutaneous myiasis', 'ICD10_2010'), +('B87.1', 'Wound myiasis', 'ICD10_2010'), +('B87.2', 'Ocular myiasis', 'ICD10_2010'), +('B87.3', 'Nasopharyngeal myiasis', 'ICD10_2010'), +('B87.4', 'Aural myiasis', 'ICD10_2010'), +('B87.8', 'Myiasis of other sites', 'ICD10_2010'), +('B87.9', 'Myiasis, unspecified', 'ICD10_2010'), +('B88', 'Other infestations', 'ICD10_2010'), +('B88.0', 'Other acariasis', 'ICD10_2010'), +('B88.1', 'Tungiasis [sandflea infestation]', 'ICD10_2010'), +('B88.2', 'Other arthropod infestations', 'ICD10_2010'), +('B88.3', 'External hirudiniasis', 'ICD10_2010'), +('B88.8', 'Other specified infestations', 'ICD10_2010'), +('B88.9', 'Infestation, unspecified', 'ICD10_2010'), +('B89', 'Unspecified parasitic disease', 'ICD10_2010'), +('B90', 'Sequelae of tuberculosis', 'ICD10_2010'), +('B90.0', 'Sequelae of central nervous system tuberculosis', 'ICD10_2010'), +('B90.1', 'Sequelae of genitourinary tuberculosis', 'ICD10_2010'); +INSERT INTO `icd10` (`ID_ICD10`, `Diagnosa`, `Versi_ICD10`) VALUES +('B90.2', 'Sequelae of tuberculosis of bones and joints', 'ICD10_2010'), +('B90.8', 'Sequelae of tuberculosis of other organs', 'ICD10_2010'), +('B90.9', 'Sequelae of respiratory and unspecified tuberculosis', 'ICD10_2010'), +('B91', 'Sequelae of poliomyelitis', 'ICD10_2010'), +('B92', 'Sequelae of leprosy', 'ICD10_2010'), +('B94', 'Sequelae of other and unspecified infectious and parasitic diseases', 'ICD10_2010'), +('B94.0', 'Sequelae of trachoma', 'ICD10_2010'), +('B94.1', 'Sequelae of viral encephalitis', 'ICD10_2010'), +('B94.2', 'Sequelae of viral hepatitis', 'ICD10_2010'), +('B94.8', 'Sequelae of other specified infectious and parasitic diseases', 'ICD10_2010'), +('B94.9', 'Sequelae of unspecified infectious or parasitic disease', 'ICD10_2010'), +('B95', 'Streptococcus and staphylococcus as the cause of diseases classified to other chapters', 'ICD10_2010'), +('B95.0', 'Streptococcus group A as cause of diseases classified to other chapters', 'ICD10_2010'), +('B95.1', 'Streptococcus group B as cause of diseases classified to other chapters', 'ICD10_2010'), +('B95.2', 'Streptococcus group D as cause of diseases classified to other chapters', 'ICD10_2010'), +('B95.3', 'Streptococcus pneumoniae as cause of diseases classified other chapters', 'ICD10_2010'), +('B95.4', 'Other streptococcus as cause of diseases classified to other chapters', 'ICD10_2010'), +('B95.5', 'Unspecified streptococcus as cause of diseases classified to other chapters', 'ICD10_2010'), +('B95.6', 'Staphylococcus aureus as cause of disease classified to other chapters', 'ICD10_2010'), +('B95.7', 'Other staphylococcus as cause of diseases classified to other chapters', 'ICD10_2010'), +('B95.8', 'Unspecified staphylococcus as cause of diseases classified to other chapters', 'ICD10_2010'), +('B96', 'Other specified bacterial agents as the cause of diseases classified to other chapters', 'ICD10_2010'), +('B96.0', 'Mycoplasma pneumoniae as cause diseases classified to other chapters', 'ICD10_2010'), +('B96.1', 'Klebsiella pneumoniae as cause diseases classified to other chapters', 'ICD10_2010'), +('B96.2', 'Escherichia coli as cause diseases classified to other chapters', 'ICD10_2010'), +('B96.3', 'Haemophilus influenzae as cause diseases classified to other chapters', 'ICD10_2010'), +('B96.4', 'Proteus (mirabilis)(morganii) as cause diseases classified to other chapters', 'ICD10_2010'), +('B96.5', 'P.(aerugin)(mallei)(pseudomallei)as cause diseases classified to other chapters', 'ICD10_2010'), +('B96.6', 'Bacillus fragilis as cause diseases classified to other chapters', 'ICD10_2010'), +('B96.7', 'Clostridium perfringens as cause diseases classified to other chapters', 'ICD10_2010'), +('B96.8', 'Other spec bact agents as cause diseases classified to other chapters', 'ICD10_2010'), +('B97', 'Viral agents as the cause of diseases classified to other chapters', 'ICD10_2010'), +('B97.0', 'Adenovirus as the cause of diseases classified to other chapters', 'ICD10_2010'), +('B97.1', 'Enterovirus as the cause of diseases classified to other chapters', 'ICD10_2010'), +('B97.2', 'Coronavirus as the cause of diseases classified to other chapters', 'ICD10_2010'), +('B97.3', 'Retrovirus as the cause of diseases classified to other chapters', 'ICD10_2010'), +('B97.4', 'Resp syncytial virusas the cause of diseases classified to other chapters', 'ICD10_2010'), +('B97.5', 'Reovirus as the cause of diseases classified to other chapters', 'ICD10_2010'), +('B97.6', 'Parvovirus as the cause of diseases classified to other chapters', 'ICD10_2010'), +('B97.7', 'Papillomavirus as the cause of diseases classified to other chapters', 'ICD10_2010'), +('B97.8', 'Oth viral agents as the cause of diseases classified to other chapters', 'ICD10_2010'), +('B98', 'Other specified infectious agents as the cause of diseases classified to other chapters', 'ICD10_2010'), +('B98.0', 'Helicobacter pylori [H.pylori] as the cause of diseases classified to other chapters', 'ICD10_2010'), +('B98.1', 'Vibrio vulnificus as the cause of diseases classified to other chapters', 'ICD10_2010'), +('B99', 'Other and unspecified infectious diseases', 'ICD10_2010'), +('C00', 'Malignant neoplasm of lip', 'ICD10_2010'), +('C00.0', 'Malignant neoplasm, external upper lip', 'ICD10_2010'), +('C00.1', 'Malignant neoplasm, external lower lip', 'ICD10_2010'), +('C00.2', 'Malignant neoplasm, external lip, unspecified', 'ICD10_2010'), +('C00.3', 'Malignant neoplasm, upper lip, inner aspect', 'ICD10_2010'), +('C00.4', 'Malignant neoplasm, lower lip, inner aspect', 'ICD10_2010'), +('C00.5', 'Malignant neoplasm, lip, unspecified, inner aspect', 'ICD10_2010'), +('C00.6', 'Malignant neoplasm, commissure of lip', 'ICD10_2010'), +('C00.8', 'Malignant neoplasm, overlapping lesion of lip', 'ICD10_2010'), +('C00.9', 'Malignant neoplasm, lip, unspecified', 'ICD10_2010'), +('C01', 'Malignant neoplasm of base of tongue', 'ICD10_2010'), +('C02', 'Malignant neoplasm of other and unspecified parts of tongue', 'ICD10_2010'), +('C02.0', 'Malignant neoplasm, dorsal surface of tongue', 'ICD10_2010'), +('C02.1', 'Malignant neoplasm, border of tongue', 'ICD10_2010'), +('C02.2', 'Malignant neoplasm, ventral surface of tongue', 'ICD10_2010'), +('C02.3', 'Malignant neoplasm, anterior two-thirds of tongue, part unspecified', 'ICD10_2010'), +('C02.4', 'Malignant neoplasm, lingual tonsil', 'ICD10_2010'), +('C02.8', 'Malignant neoplasm, overlapping lesion of tongue', 'ICD10_2010'), +('C02.9', 'Malignant neoplasm, tongue, unspecified', 'ICD10_2010'), +('C03', 'Malignant neoplasm of gum', 'ICD10_2010'), +('C03.0', 'Malignant neoplasm, upper gum', 'ICD10_2010'), +('C03.1', 'Malignant neoplasm, lower gum', 'ICD10_2010'), +('C03.9', 'Malignant neoplasm, gum, unspecified', 'ICD10_2010'), +('C04', 'Malignant neoplasm of floor of mouth', 'ICD10_2010'), +('C04.0', 'Malignant neoplasm, anterior floor of mouth', 'ICD10_2010'), +('C04.1', 'Malignant neoplasm, lateral floor of mouth', 'ICD10_2010'), +('C04.8', 'Malignant neoplasm, overlapping lesion of floor of mouth', 'ICD10_2010'), +('C04.9', 'Malignant neoplasm, floor of mouth, unspecified', 'ICD10_2010'), +('C05', 'Malignant neoplasm of palate', 'ICD10_2010'), +('C05.0', 'Malignant neoplasm, hard palate', 'ICD10_2010'), +('C05.1', 'Malignant neoplasm, soft palate', 'ICD10_2010'), +('C05.2', 'Malignant neoplasm, uvula', 'ICD10_2010'), +('C05.8', 'Malignant neoplasm, overlapping lesion of palate', 'ICD10_2010'), +('C05.9', 'Malignant neoplasm, palate, unspecified', 'ICD10_2010'), +('C06', 'Malignant neoplasm of other and unspecified parts of mouth', 'ICD10_2010'), +('C06.0', 'Malignant neoplasm, cheek mucosa', 'ICD10_2010'), +('C06.1', 'Malignant neoplasm, vestibule of mouth', 'ICD10_2010'), +('C06.2', 'Malignant neoplasm, retromolar area', 'ICD10_2010'), +('C06.8', 'Malignant neoplasm, overlapping lesion of other and unspecified parts of mouth', 'ICD10_2010'), +('C06.9', 'Malignant neoplasm, mouth, unspecified', 'ICD10_2010'), +('C07', 'Malignant neoplasm of parotid gland', 'ICD10_2010'), +('C08', 'Malignant neoplasm of other and unspecified major salivary glands', 'ICD10_2010'), +('C08.0', 'Malignant neoplasm, submandibular gland', 'ICD10_2010'), +('C08.1', 'Malignant neoplasm, sublingual gland', 'ICD10_2010'), +('C08.8', 'Malignant neoplasm, overlapping lesion of major salivary glands', 'ICD10_2010'), +('C08.9', 'Malignant neoplasm, major salivary gland, unspecified', 'ICD10_2010'), +('C09', 'Malignant neoplasm of tonsil', 'ICD10_2010'), +('C09.0', 'Malignant neoplasm, tonsillar fossa', 'ICD10_2010'), +('C09.1', 'Malignant neoplasm, tonsillar pillar (anterior)(posterior)', 'ICD10_2010'), +('C09.8', 'Malignant neoplasm, overlapping lesion of tonsil', 'ICD10_2010'), +('C09.9', 'Malignant neoplasm, tonsil, unspecified', 'ICD10_2010'), +('C10', 'Malignant neoplasm of oropharynx', 'ICD10_2010'), +('C10.0', 'Malignant neoplasm, vallecula', 'ICD10_2010'), +('C10.1', 'Malignant neoplasm, anterior surface of epiglottis', 'ICD10_2010'), +('C10.2', 'Malignant neoplasm, lateral wall of oropharynx', 'ICD10_2010'), +('C10.3', 'Malignant neoplasm, posterior wall of oropharynx', 'ICD10_2010'), +('C10.4', 'Malignant neoplasm, branchial cleft', 'ICD10_2010'), +('C10.8', 'Malignant neoplasm, overlapping lesion of oropharynx', 'ICD10_2010'), +('C10.9', 'Malignant neoplasm, oropharynx, unspecified', 'ICD10_2010'), +('C11', 'Malignant neoplasm of nasopharynx', 'ICD10_2010'), +('C11.0', 'Malignant neoplasm, superior wall of nasopharynx', 'ICD10_2010'), +('C11.1', 'Malignant neoplasm, posterior wall of nasopharynx', 'ICD10_2010'), +('C11.2', 'Malignant neoplasm, lateral wall of nasopharynx', 'ICD10_2010'), +('C11.3', 'Malignant neoplasm, anterior wall of nasopharynx', 'ICD10_2010'), +('C11.8', 'Malignant neoplasm, overlapping lesion of nasopharynx', 'ICD10_2010'), +('C11.9', 'Malignant neoplasm, nasopharynx, unspecified', 'ICD10_2010'), +('C12', 'Malignant neoplasm of pyriform sinus', 'ICD10_2010'), +('C13', 'Malignant neoplasm of hypopharynx', 'ICD10_2010'), +('C13.0', 'Malignant neoplasm, postcricoid region', 'ICD10_2010'), +('C13.1', 'Malignant neoplasm, aryepiglottic fold, hypopharyngeal aspect', 'ICD10_2010'), +('C13.2', 'Malignant neoplasm, posterior wall of hypopharynx', 'ICD10_2010'), +('C13.8', 'Malignant neoplasm, overlapping lesion of hypopharynx', 'ICD10_2010'), +('C13.9', 'Malignant neoplasm, hypopharynx, unspecified', 'ICD10_2010'), +('C14', 'Malignant neoplasm of other and ill-defined sites in the lip, oral cavity and pharynx', 'ICD10_2010'), +('C14.0', 'Malignant neoplasm, pharynx, unspecified', 'ICD10_2010'), +('C14.1', 'Malignant neoplasm of laryngopharynx', 'ICD10_2010'), +('C14.2', 'Malignant neoplasm, waldeyer\'s ring', 'ICD10_2010'), +('C14.8', 'Malignant neoplasm, overlapping lesion of lip, oral cavity and pharynx', 'ICD10_2010'), +('C15', 'Malignant neoplasm of oesophagus', 'ICD10_2010'), +('C15.0', 'Malignant neoplasm, cervical part of oesophagus', 'ICD10_2010'), +('C15.1', 'Malignant neoplasm, thoracic part of oesophagus', 'ICD10_2010'), +('C15.2', 'Malignant neoplasm, abdominal part of oesophagus', 'ICD10_2010'), +('C15.3', 'Malignant neoplasm, upper third of oesophagus', 'ICD10_2010'), +('C15.4', 'Malignant neoplasm, middle third of oesophagus', 'ICD10_2010'), +('C15.5', 'Malignant neoplasm, lower third of oesophagus', 'ICD10_2010'), +('C15.8', 'Malignant neoplasm, overlapping lesion of oesophagus', 'ICD10_2010'), +('C15.9', 'Malignant neoplasm, oesophagus, unspecified', 'ICD10_2010'), +('C16', 'Malignant neoplasm of stomach', 'ICD10_2010'), +('C16.0', 'Malignant neoplasm, cardia', 'ICD10_2010'), +('C16.1', 'Malignant neoplasm, fundus of stomach', 'ICD10_2010'), +('C16.2', 'Malignant neoplasm, body of stomach', 'ICD10_2010'), +('C16.3', 'Malignant neoplasm, pyloric antrum', 'ICD10_2010'), +('C16.4', 'Malignant neoplasm, pylorus', 'ICD10_2010'), +('C16.5', 'Malignant neoplasm, lesser curvature of stomach, unspecified', 'ICD10_2010'), +('C16.6', 'Malignant neoplasm, greater curvature of stomach, unspecified', 'ICD10_2010'), +('C16.8', 'Malignant neoplasm, overlapping lesion of stomach', 'ICD10_2010'), +('C16.9', 'Malignant neoplasm, stomach, unspecified', 'ICD10_2010'), +('C17', 'Malignant neoplasm of small intestine', 'ICD10_2010'), +('C17.0', 'Malignant neoplasm, duodenum', 'ICD10_2010'), +('C17.1', 'Malignant neoplasm, jejunum', 'ICD10_2010'), +('C17.2', 'Malignant neoplasm, ileum', 'ICD10_2010'), +('C17.3', 'Malignant neoplasm, meckel\'s diverticulum', 'ICD10_2010'), +('C17.8', 'Malignant neoplasm, overlapping lesion of small intestine', 'ICD10_2010'), +('C17.9', 'Malignant neoplasm, small intestine, unspecified', 'ICD10_2010'), +('C18', 'Malignant neoplasm of colon', 'ICD10_2010'), +('C18.0', 'Malignant neoplasm, caecum', 'ICD10_2010'), +('C18.1', 'Malignant neoplasm, appendix', 'ICD10_2010'), +('C18.2', 'Malignant neoplasm, ascending colon', 'ICD10_2010'), +('C18.3', 'Malignant neoplasm, hepatic flexure', 'ICD10_2010'), +('C18.4', 'Malignant neoplasm, transverse colon', 'ICD10_2010'), +('C18.5', 'Malignant neoplasm, splenic flexure', 'ICD10_2010'), +('C18.6', 'Malignant neoplasm, descending colon', 'ICD10_2010'), +('C18.7', 'Malignant neoplasm, sigmoid colon', 'ICD10_2010'), +('C18.8', 'Malignant neoplasm, overlapping lesion of colon', 'ICD10_2010'), +('C18.9', 'Malignant neoplasm, colon, unspecified', 'ICD10_2010'), +('C19', 'Malignant neoplasm of rectosigmoid junction', 'ICD10_2010'), +('C20', 'Malignant neoplasm of rectum', 'ICD10_2010'), +('C21', 'Malignant neoplasm of anus and anal canal', 'ICD10_2010'), +('C21.0', 'Malignant neoplasm, anus, unspecified', 'ICD10_2010'), +('C21.1', 'Malignant neoplasm, anal canal', 'ICD10_2010'), +('C21.2', 'Malignant neoplasm, cloacogenic zone', 'ICD10_2010'), +('C21.8', 'Malignant neoplasm, overlapping lesion of rectum, anus and anal canal', 'ICD10_2010'), +('C22', 'Malignant neoplasm of liver and intrahepatic bile ducts', 'ICD10_2010'), +('C22.0', 'Malignant neoplasm, liver cell carcinoma', 'ICD10_2010'), +('C22.1', 'Malignant neoplasm, intrahepatic bile duct carcinoma', 'ICD10_2010'), +('C22.2', 'Malignant neoplasm, hepatoblastoma', 'ICD10_2010'), +('C22.3', 'Malignant neoplasm, angiosarcoma of liver', 'ICD10_2010'), +('C22.4', 'Malignant neoplasm, other sarcomas of liver', 'ICD10_2010'), +('C22.7', 'Malignant neoplasm, other specified carcinomas of liver', 'ICD10_2010'), +('C22.9', 'Malignant neoplasm, liver, unspecified', 'ICD10_2010'), +('C23', 'Malignant neoplasm of gallbladder', 'ICD10_2010'), +('C24', 'Malignant neoplasm of other and unspecified parts of biliary tract', 'ICD10_2010'), +('C24.0', 'Malignant neoplasm, extrahepatic bile duct', 'ICD10_2010'), +('C24.1', 'Malignant neoplasm, ampulla of vater', 'ICD10_2010'), +('C24.8', 'Malignant neoplasm, overlapping lesion of biliary tract', 'ICD10_2010'), +('C24.9', 'Malignant neoplasm, biliary tract, unspecified', 'ICD10_2010'), +('C25', 'Malignant neoplasm of pancreas', 'ICD10_2010'), +('C25.0', 'Malignant neoplasm, head of pancreas', 'ICD10_2010'), +('C25.1', 'Malignant neoplasm, body of pancreas', 'ICD10_2010'), +('C25.2', 'Malignant neoplasm, tail of pancreas', 'ICD10_2010'), +('C25.3', 'Malignant neoplasm, pancreatic duct', 'ICD10_2010'), +('C25.4', 'Malignant neoplasm, endocrine pancreas', 'ICD10_2010'), +('C25.7', 'Malignant neoplasm, other parts of pancreas', 'ICD10_2010'), +('C25.8', 'Malignant neoplasm, overlapping lesion of pancreas', 'ICD10_2010'), +('C25.9', 'Malignant neoplasm, pancreas, unspecified', 'ICD10_2010'), +('C26', 'Malignant neoplasm of other and ill-defined digestive organs', 'ICD10_2010'), +('C26.0', 'Malignant neoplasm, intestinal tract, part unspecified', 'ICD10_2010'), +('C26.1', 'Malignant neoplasm, spleen', 'ICD10_2010'), +('C26.8', 'Malignant neoplasm, overlapping lesion of digestive system', 'ICD10_2010'), +('C26.9', 'Malignant neoplasm, ill-defined sites within the digestive system', 'ICD10_2010'), +('C30', 'Malignant neoplasm of nasal cavity and middle ear', 'ICD10_2010'), +('C30.0', 'Malignant neoplasm, nasal cavity', 'ICD10_2010'), +('C30.1', 'Malignant neoplasm, middle ear', 'ICD10_2010'), +('C31', 'Malignant neoplasm of accessory sinuses', 'ICD10_2010'), +('C31.0', 'Malignant neoplasm, maxillary sinus', 'ICD10_2010'), +('C31.1', 'Malignant neoplasm, ethmoidal sinus', 'ICD10_2010'), +('C31.2', 'Malignant neoplasm, frontal sinus', 'ICD10_2010'), +('C31.3', 'Malignant neoplasm, sphenoidal sinus', 'ICD10_2010'), +('C31.8', 'Malignant neoplasm, overlapping lesion of accessory sinuses', 'ICD10_2010'), +('C31.9', 'Malignant neoplasm, accessory sinus, unspecified', 'ICD10_2010'), +('C32', 'Malignant neoplasm of larynx', 'ICD10_2010'), +('C32.0', 'Malignant neoplasm, glottis', 'ICD10_2010'), +('C32.1', 'Malignant neoplasm, supraglottis', 'ICD10_2010'), +('C32.2', 'Malignant neoplasm, subglottis', 'ICD10_2010'), +('C32.3', 'Malignant neoplasm, laryngeal cartilage', 'ICD10_2010'), +('C32.8', 'Malignant neoplasm, overlapping lesion of larynx', 'ICD10_2010'), +('C32.9', 'Malignant neoplasm, larynx, unspecified', 'ICD10_2010'), +('C33', 'Malignant neoplasm of trachea', 'ICD10_2010'), +('C34', 'Malignant neoplasm of bronchus and lung', 'ICD10_2010'), +('C34.0', 'Malignant neoplasm, main bronchus', 'ICD10_2010'), +('C34.1', 'Malignant neoplasm, upper lobe, bronchus or lung', 'ICD10_2010'), +('C34.2', 'Malignant neoplasm, middle lobe, bronchus or lung', 'ICD10_2010'), +('C34.3', 'Malignant neoplasm, lower lobe, bronchus or lung', 'ICD10_2010'), +('C34.8', 'Malignant neoplasm, overlapping lesion of bronchus and lung', 'ICD10_2010'), +('C34.9', 'Malignant neoplasm, bronchus or lung, unspecified', 'ICD10_2010'), +('C37', 'Malignant neoplasm of thymus', 'ICD10_2010'), +('C38', 'Malignant neoplasm of heart, mediastinum and pleura', 'ICD10_2010'), +('C38.0', 'Malignant neoplasm, heart', 'ICD10_2010'), +('C38.1', 'Malignant neoplasm, anterior mediastinum', 'ICD10_2010'), +('C38.2', 'Malignant neoplasm, posterior mediastinum', 'ICD10_2010'), +('C38.3', 'Malignant neoplasm, mediastinum, part unspecified', 'ICD10_2010'), +('C38.4', 'Malignant neoplasm, pleura', 'ICD10_2010'), +('C38.8', 'Malignant neoplasm, overlapping lesion of heart, mediastinum and pleura', 'ICD10_2010'), +('C39', 'Malignant neoplasm of other and ill-defined sites in the respiratory system and intrathoracic organs', 'ICD10_2010'), +('C39.0', 'Malignant neoplasm, upper respiratory tract, part unspecified', 'ICD10_2010'), +('C39.8', 'Malignant neoplasm, overlapping lesion of respiratory and intrathoracic organs', 'ICD10_2010'), +('C39.9', 'Malignant neoplasm, ill-defined sites within the respiratory system', 'ICD10_2010'), +('C40', 'Malignant neoplasm of bone and articular cartilage of limbs', 'ICD10_2010'), +('C40.0', 'Malignant neoplasm, scapula and long bones of upper limb', 'ICD10_2010'), +('C40.1', 'Malignant neoplasm, short bones of upper limb', 'ICD10_2010'), +('C40.2', 'Malignant neoplasm, long bones of lower limb', 'ICD10_2010'), +('C40.3', 'Malignant neoplasm, short bones of lower limb', 'ICD10_2010'), +('C40.8', 'Malignant neoplasm, overlapping lesion of bone and articular cartilage of limbs', 'ICD10_2010'), +('C40.9', 'Malignant neoplasm, bone and articular cartilage of limb, unspecified', 'ICD10_2010'), +('C41', 'Malignant neoplasm of bone and articular cartilage of other and unspecified sites', 'ICD10_2010'), +('C41.0', 'Malignant neoplasm, bones of skull and face', 'ICD10_2010'), +('C41.1', 'Malignant neoplasm, mandible', 'ICD10_2010'), +('C41.2', 'Malignant neoplasm, vertebral column', 'ICD10_2010'), +('C41.3', 'Malignant neoplasm, ribs, sternum and clavicle', 'ICD10_2010'), +('C41.4', 'Malignant neoplasm, pelvic bones, sacrum and coccyx', 'ICD10_2010'), +('C41.8', 'Malignant neoplasm, overlapping lesion of bone and articular cartilage', 'ICD10_2010'), +('C41.9', 'Malignant neoplasm, bone and articular cartilage, unspecified', 'ICD10_2010'), +('C43', 'Malignant melanoma of skin', 'ICD10_2010'), +('C43.0', 'Malignant melanoma of lip', 'ICD10_2010'), +('C43.1', 'Malignant melanoma of eyelid, including canthus', 'ICD10_2010'), +('C43.2', 'Malignant melanoma of ear and external auricular canal', 'ICD10_2010'), +('C43.3', 'Malignant melanoma of other and unspecified parts of face', 'ICD10_2010'), +('C43.4', 'Malignant melanoma of scalp and neck', 'ICD10_2010'), +('C43.5', 'Malignant melanoma of trunk', 'ICD10_2010'), +('C43.6', 'Malignant melanoma of upper limb, including shoulder', 'ICD10_2010'), +('C43.7', 'Malignant melanoma of lower limb, including hip', 'ICD10_2010'), +('C43.8', 'Malignant neoplasm, overlapping malignant melanoma of skin', 'ICD10_2010'), +('C43.9', 'Malignant melanoma of skin, unspecified', 'ICD10_2010'), +('C44', 'Other malignant neoplasms of skin', 'ICD10_2010'), +('C44.0', 'Malignant neoplasm, skin of lip', 'ICD10_2010'), +('C44.1', 'Malignant neoplasm, skin of eyelid, including canthus', 'ICD10_2010'), +('C44.2', 'Malignant neoplasm, skin of ear and external auricular canal', 'ICD10_2010'), +('C44.3', 'Malignant neoplasm, skin of other and unspecified parts of face', 'ICD10_2010'), +('C44.4', 'Malignant neoplasm, skin of scalp and neck', 'ICD10_2010'), +('C44.5', 'Malignant neoplasm, skin of trunk', 'ICD10_2010'), +('C44.6', 'Malignant neoplasm, skin of upper limb, including shoulder', 'ICD10_2010'), +('C44.7', 'Malignant neoplasm, skin of lower limb, including hip', 'ICD10_2010'), +('C44.8', 'Malignant neoplasm, overlapping lesion of skin', 'ICD10_2010'), +('C44.9', 'Malignant neoplasm of skin, unspecified', 'ICD10_2010'), +('C45', 'Mesothelioma', 'ICD10_2010'), +('C45.0', 'Mesothelioma of pleura', 'ICD10_2010'), +('C45.1', 'Mesothelioma of peritoneum', 'ICD10_2010'), +('C45.2', 'Mesothelioma of pericardium', 'ICD10_2010'), +('C45.7', 'Mesothelioma of other sites', 'ICD10_2010'), +('C45.9', 'Mesothelioma, unspecified', 'ICD10_2010'), +('C46', 'Kaposi sarcoma', 'ICD10_2010'), +('C46.0', 'Kaposi\'s sarcoma of skin', 'ICD10_2010'), +('C46.1', 'Kaposi\'s sarcoma of soft tissue', 'ICD10_2010'), +('C46.2', 'Kaposi\'s sarcoma of palate', 'ICD10_2010'), +('C46.3', 'Kaposi\'s sarcoma of lymph nodes', 'ICD10_2010'), +('C46.7', 'Kaposi\'s sarcoma of other sites', 'ICD10_2010'), +('C46.8', 'Kaposi\'s sarcoma of multiple organs', 'ICD10_2010'), +('C46.9', 'Kaposi\'s sarcoma, unspecified', 'ICD10_2010'), +('C47', 'Malignant neoplasm of peripheral nerves and autonomic nervous system', 'ICD10_2010'), +('C47.0', 'Malignant neoplasm, peripheral nerves of head, face and neck', 'ICD10_2010'), +('C47.1', 'Malignant neoplasm, peripheral nerves of upper limb, including shoulder', 'ICD10_2010'), +('C47.2', 'Malignant neoplasm, peripheral nerves of lower limb, including hip', 'ICD10_2010'), +('C47.3', 'Malignant neoplasm, peripheral nerves of thorax', 'ICD10_2010'), +('C47.4', 'Malignant neoplasm, peripheral nerves of abdomen', 'ICD10_2010'), +('C47.5', 'Malignant neoplasm, peripheral nerves of pelvis', 'ICD10_2010'), +('C47.6', 'Malignant neoplasm, peripheral nerves of trunk, unspecified', 'ICD10_2010'), +('C47.8', 'Malignant neoplasm, overlapping lesion peripheral nerve/autonomic nervous syst', 'ICD10_2010'), +('C47.9', 'Malignant neoplasm, peripheral nerves and autonomic nervous system, unspecified', 'ICD10_2010'), +('C48', 'Malignant neoplasm of retroperitoneum and peritoneum', 'ICD10_2010'), +('C48.0', 'Malignant neoplasm, retroperitoneum', 'ICD10_2010'), +('C48.1', 'Malignant neoplasm, specified parts of peritoneum', 'ICD10_2010'), +('C48.2', 'Malignant neoplasm, peritoneum, unspecified', 'ICD10_2010'), +('C48.8', 'Malignant neoplasm, overlapping lesion of retroperitoneum and peritoneum', 'ICD10_2010'), +('C49', 'Malignant neoplasm of other connective and soft tissue', 'ICD10_2010'), +('C49.0', 'Malignant neoplasm, connective and soft tissue of head, face and neck', 'ICD10_2010'), +('C49.1', 'Malignant neoplasm, connective and soft tissue of upper limb, including shoulder', 'ICD10_2010'), +('C49.2', 'Malignant neoplasm, connective and soft tissue of lower limb, including hip', 'ICD10_2010'), +('C49.3', 'Malignant neoplasm, connective and soft tissue of thorax', 'ICD10_2010'), +('C49.4', 'Malignant neoplasm, connective and soft tissue of abdomen', 'ICD10_2010'), +('C49.5', 'Malignant neoplasm, connective and soft tissue of pelvis', 'ICD10_2010'), +('C49.6', 'Malignant neoplasm, connective and soft tissue of trunk, unspecified', 'ICD10_2010'), +('C49.8', 'Malignant neoplasm, overlapping lesion of connective and soft tissue', 'ICD10_2010'), +('C49.9', 'Malignant neoplasm, connective and soft tissue, unspecified', 'ICD10_2010'), +('C50', 'Malignant neoplasm of breast', 'ICD10_2010'), +('C50.0', 'Malignant neoplasm, nipple and areola', 'ICD10_2010'), +('C50.1', 'Malignant neoplasm, central portion of breast', 'ICD10_2010'), +('C50.2', 'Malignant neoplasm, upper-inner quadrant of breast', 'ICD10_2010'), +('C50.3', 'Malignant neoplasm, lower-inner quadrant of breast', 'ICD10_2010'), +('C50.4', 'Malignant neoplasm, upper-outer quadrant of breast', 'ICD10_2010'), +('C50.5', 'Malignant neoplasm, lower-outer quadrant of breast', 'ICD10_2010'), +('C50.6', 'Malignant neoplasm, axillary tail of breast', 'ICD10_2010'), +('C50.8', 'Malignant neoplasm, overlapping lesion of breast', 'ICD10_2010'), +('C50.9', 'Malignant neoplasm, breast, unspecified', 'ICD10_2010'), +('C51', 'Malignant neoplasm of vulva', 'ICD10_2010'), +('C51.0', 'Malignant neoplasm, labium majus', 'ICD10_2010'), +('C51.1', 'Malignant neoplasm, labium minus', 'ICD10_2010'), +('C51.2', 'Malignant neoplasm, clitoris', 'ICD10_2010'), +('C51.8', 'Malignant neoplasm, overlapping lesion of vulva', 'ICD10_2010'), +('C51.9', 'Malignant neoplasm, vulva, unspecified', 'ICD10_2010'), +('C52', 'Malignant neoplasm of vagina', 'ICD10_2010'), +('C53', 'Malignant neoplasm of cervix uteri', 'ICD10_2010'), +('C53.0', 'Malignant neoplasm, endocervix', 'ICD10_2010'), +('C53.1', 'Malignant neoplasm, exocervix', 'ICD10_2010'), +('C53.8', 'Malignant neoplasm, overlapping lesion of cervix uteri', 'ICD10_2010'), +('C53.9', 'Malignant neoplasm, cervix uteri, unspecified', 'ICD10_2010'), +('C54', 'Malignant neoplasm of corpus uteri', 'ICD10_2010'), +('C54.0', 'Malignant neoplasm, isthmus uteri', 'ICD10_2010'), +('C54.1', 'Malignant neoplasm, endometrium', 'ICD10_2010'), +('C54.2', 'Malignant neoplasm, myometrium', 'ICD10_2010'), +('C54.3', 'Malignant neoplasm, fundus uteri', 'ICD10_2010'), +('C54.8', 'Malignant neoplasm, overlapping lesion of corpus uteri', 'ICD10_2010'), +('C54.9', 'Malignant neoplasm, corpus uteri, unspecified', 'ICD10_2010'), +('C55', 'Malignant neoplasm of uterus, part unspecified', 'ICD10_2010'), +('C56', 'Malignant neoplasm of ovary', 'ICD10_2010'), +('C57', 'Malignant neoplasm of other and unspecified female genital organs', 'ICD10_2010'), +('C57.0', 'Malignant neoplasm, fallopian tube', 'ICD10_2010'), +('C57.1', 'Malignant neoplasm, broad ligament', 'ICD10_2010'), +('C57.2', 'Malignant neoplasm, round ligament', 'ICD10_2010'), +('C57.3', 'Malignant neoplasm, parametrium', 'ICD10_2010'), +('C57.4', 'Malignant neoplasm, uterine adnexa, unspecified', 'ICD10_2010'), +('C57.7', 'Malignant neoplasm, other specified female genital organs', 'ICD10_2010'), +('C57.8', 'Malignant neoplasm, overlapping lesion of female genital organs', 'ICD10_2010'), +('C57.9', 'Malignant neoplasm, female genital organ, unspecified', 'ICD10_2010'), +('C58', 'Malignant neoplasm of placenta', 'ICD10_2010'), +('C60', 'Malignant neoplasm of penis', 'ICD10_2010'), +('C60.0', 'Malignant neoplasm, prepuce', 'ICD10_2010'), +('C60.1', 'Malignant neoplasm, glans penis', 'ICD10_2010'), +('C60.2', 'Malignant neoplasm, body of penis', 'ICD10_2010'), +('C60.8', 'Malignant neoplasm, overlapping lesion of penis', 'ICD10_2010'), +('C60.9', 'Malignant neoplasm, penis, unspecified', 'ICD10_2010'), +('C61', 'Malignant neoplasm of prostate', 'ICD10_2010'), +('C62', 'Malignant neoplasm of testis', 'ICD10_2010'), +('C62.0', 'Malignant neoplasm, undescended testis', 'ICD10_2010'), +('C62.1', 'Malignant neoplasm, descended testis', 'ICD10_2010'), +('C62.9', 'Malignant neoplasm, testis, unspecified', 'ICD10_2010'), +('C63', 'Malignant neoplasm of other and unspecified male genital organs', 'ICD10_2010'), +('C63.0', 'Malignant neoplasm, epididymis', 'ICD10_2010'), +('C63.1', 'Malignant neoplasm, spermatic cord', 'ICD10_2010'), +('C63.2', 'Malignant neoplasm, scrotum', 'ICD10_2010'), +('C63.7', 'Malignant neoplasm, other specified male genital organs', 'ICD10_2010'), +('C63.8', 'Malignant neoplasm, overlapping lesion of male genital organs', 'ICD10_2010'), +('C63.9', 'Malignant neoplasm, male genital organ, unspecified', 'ICD10_2010'), +('C64', 'Malignant neoplasm of kidney, except renal pelvis', 'ICD10_2010'), +('C65', 'Malignant neoplasm of renal pelvis', 'ICD10_2010'), +('C66', 'Malignant neoplasm of ureter', 'ICD10_2010'), +('C67', 'Malignant neoplasm of bladder', 'ICD10_2010'), +('C67.0', 'Malignant neoplasm, trigone of bladder', 'ICD10_2010'), +('C67.1', 'Malignant neoplasm, dome of bladder', 'ICD10_2010'), +('C67.2', 'Malignant neoplasm, lateral wall of bladder', 'ICD10_2010'), +('C67.3', 'Malignant neoplasm, anterior wall of bladder', 'ICD10_2010'), +('C67.4', 'Malignant neoplasm, posterior wall of bladder', 'ICD10_2010'), +('C67.5', 'Malignant neoplasm, bladder neck', 'ICD10_2010'), +('C67.6', 'Malignant neoplasm, ureteric orifice', 'ICD10_2010'), +('C67.7', 'Malignant neoplasm, urachus', 'ICD10_2010'), +('C67.8', 'Malignant neoplasm, overlapping lesion of bladder', 'ICD10_2010'), +('C67.9', 'Malignant neoplasm, bladder, unspecified', 'ICD10_2010'), +('C68', 'Malignant neoplasm of other and unspecified urinary organs', 'ICD10_2010'), +('C68.0', 'Malignant neoplasm, urethra', 'ICD10_2010'), +('C68.1', 'Malignant neoplasm, paraurethral gland', 'ICD10_2010'), +('C68.8', 'Malignant neoplasm, overlapping lesion of urinary organs', 'ICD10_2010'), +('C68.9', 'Malignant neoplasm, urinary organ, unspecified', 'ICD10_2010'), +('C69', 'Malignant neoplasm of eye and adnexa', 'ICD10_2010'), +('C69.0', 'Malignant neoplasm, conjunctiva', 'ICD10_2010'), +('C69.1', 'Malignant neoplasm, cornea', 'ICD10_2010'), +('C69.2', 'Malignant neoplasm, retina', 'ICD10_2010'), +('C69.3', 'Malignant neoplasm, choroid', 'ICD10_2010'), +('C69.4', 'Malignant neoplasm, ciliary body', 'ICD10_2010'), +('C69.5', 'Malignant neoplasm, lacrimal gland and duct', 'ICD10_2010'), +('C69.6', 'Malignant neoplasm, orbit', 'ICD10_2010'), +('C69.8', 'Malignant neoplasm, overlapping lesion of eye and adnexa', 'ICD10_2010'), +('C69.9', 'Malignant neoplasm, eye, unspecified', 'ICD10_2010'), +('C70', 'Malignant neoplasm of meninges', 'ICD10_2010'), +('C70.0', 'Malignant neoplasm, cerebral meninges', 'ICD10_2010'), +('C70.1', 'Malignant neoplasm, spinal meninges', 'ICD10_2010'), +('C70.9', 'Malignant neoplasm, meninges, unspecified', 'ICD10_2010'), +('C71', 'Malignant neoplasm of brain', 'ICD10_2010'), +('C71.0', 'Malignant neoplasm, cerebrum, except lobes and ventricles', 'ICD10_2010'), +('C71.1', 'Malignant neoplasm, frontal lobe', 'ICD10_2010'), +('C71.2', 'Malignant neoplasm, temporal lobe', 'ICD10_2010'), +('C71.3', 'Malignant neoplasm, parietal lobe', 'ICD10_2010'), +('C71.4', 'Malignant neoplasm, occipital lobe', 'ICD10_2010'), +('C71.5', 'Malignant neoplasm, cerebral ventricle', 'ICD10_2010'), +('C71.6', 'Malignant neoplasm, cerebellum', 'ICD10_2010'), +('C71.7', 'Malignant neoplasm, brain stem', 'ICD10_2010'), +('C71.8', 'Malignant neoplasm, overlapping lesion of brain', 'ICD10_2010'), +('C71.9', 'Malignant neoplasm, brain, unspecified', 'ICD10_2010'), +('C72', 'Malignant neoplasm of spinal cord, cranial nerves and other parts of central nervous system', 'ICD10_2010'), +('C72.0', 'Malignant neoplasm, spinal cord', 'ICD10_2010'), +('C72.1', 'Malignant neoplasm, cauda equina', 'ICD10_2010'), +('C72.2', 'Malignant neoplasm, olfactory nerve', 'ICD10_2010'), +('C72.3', 'Malignant neoplasm, optic nerve', 'ICD10_2010'), +('C72.4', 'Malignant neoplasm, acoustic nerve', 'ICD10_2010'), +('C72.5', 'Malignant neoplasm, other and unspecified cranial nerves', 'ICD10_2010'), +('C72.8', 'Malignant neoplasm, overlapping lesion of brain and other parts of cns', 'ICD10_2010'), +('C72.9', 'Malignant neoplasm, central nervous system, unspecified', 'ICD10_2010'), +('C73', 'Malignant neoplasm of thyroid gland', 'ICD10_2010'), +('C74', 'Malignant neoplasm of adrenal gland', 'ICD10_2010'), +('C74.0', 'Malignant neoplasm, cortex of adrenal gland', 'ICD10_2010'), +('C74.1', 'Malignant neoplasm, medulla of adrenal gland', 'ICD10_2010'), +('C74.9', 'Malignant neoplasm, adrenal gland, unspecified', 'ICD10_2010'), +('C75', 'Malignant neoplasm of other endocrine glands and related structures', 'ICD10_2010'), +('C75.0', 'Malignant neoplasm, parathyroid gland', 'ICD10_2010'), +('C75.1', 'Malignant neoplasm, pituitary gland', 'ICD10_2010'), +('C75.2', 'Malignant neoplasm, craniopharyngeal duct', 'ICD10_2010'), +('C75.3', 'Malignant neoplasm, pineal gland', 'ICD10_2010'), +('C75.4', 'Malignant neoplasm, carotid body', 'ICD10_2010'), +('C75.5', 'Malignant neoplasm, aortic body and other paraganglia', 'ICD10_2010'), +('C75.8', 'Malignant neoplasm, pluriglandular involvement, unspecified', 'ICD10_2010'), +('C75.9', 'Malignant neoplasm, endocrine gland, unspecified', 'ICD10_2010'), +('C76', 'Malignant neoplasm of other and ill-defined sites', 'ICD10_2010'), +('C76.0', 'Malignant neoplasm, head, face and neck', 'ICD10_2010'), +('C76.1', 'Malignant neoplasm, thorax', 'ICD10_2010'), +('C76.2', 'Malignant neoplasm, abdomen', 'ICD10_2010'), +('C76.3', 'Malignant neoplasm, pelvis', 'ICD10_2010'), +('C76.4', 'Malignant neoplasm, upper limb', 'ICD10_2010'), +('C76.5', 'Malignant neoplasm, lower limb', 'ICD10_2010'), +('C76.7', 'Malignant neoplasm, other ill-defined sites', 'ICD10_2010'), +('C76.8', 'Malignant neoplasm, overlapping lesion of other and ill-defined sites', 'ICD10_2010'), +('C77', 'Secondary and unspecified malignant neoplasm of lymph nodes', 'ICD10_2010'), +('C77.0', 'Secondary malignant neoplasm, lymph nodes of head, face and neck', 'ICD10_2010'), +('C77.1', 'Secondary malignant neoplasm, intrathoracic lymph nodes', 'ICD10_2010'), +('C77.2', 'Secondary malignant neoplasm, intra-abdominal lymph nodes', 'ICD10_2010'), +('C77.3', 'Secondary malignant neoplasm, axillary and upper limb lymph nodes', 'ICD10_2010'), +('C77.4', 'Secondary malignant neoplasm, inguinal and lower limb lymph nodes', 'ICD10_2010'), +('C77.5', 'Secondary malignant neoplasm, intrapelvic lymph nodes', 'ICD10_2010'), +('C77.8', 'Secondary malignant neoplasm, lymph nodes of multiple regions', 'ICD10_2010'), +('C77.9', 'Secondary malignant neoplasm, lymph node, unspecified', 'ICD10_2010'), +('C78', 'Secondary malignant neoplasm of respiratory and digestive organs', 'ICD10_2010'), +('C78.0', 'Secondary malignant neoplasm of lung', 'ICD10_2010'), +('C78.1', 'Secondary malignant neoplasm of mediastinum', 'ICD10_2010'), +('C78.2', 'Secondary malignant neoplasm of pleura', 'ICD10_2010'), +('C78.3', 'Secondary malignant neoplasm, other and unspecified respiratory organs', 'ICD10_2010'), +('C78.4', 'Secondary malignant neoplasm of small intestine', 'ICD10_2010'), +('C78.5', 'Secondary malignant neoplasm of large intestine and rectum', 'ICD10_2010'), +('C78.6', 'Sec malignant neoplasm of retroperitoneum and peritoneum', 'ICD10_2010'), +('C78.7', 'Secondary malignant neoplasm of liver', 'ICD10_2010'), +('C78.8', 'Sec malignant neoplasm of other and unspec digestive organs', 'ICD10_2010'), +('C79', 'Secondary malignant neoplasm of other and unspecified sites', 'ICD10_2010'), +('C79.0', 'Secondary malignant neoplasm of kidney and renal pelvis', 'ICD10_2010'), +('C79.1', 'Sec malignant neo bladder and oth and unspec urinary organ', 'ICD10_2010'), +('C79.2', 'Secondary malignant neoplasm of skin', 'ICD10_2010'), +('C79.3', 'Secondary malignant neoplasm of brain and cerebral meninges', 'ICD10_2010'), +('C79.4', 'Sec malignant neo of other and unspec parts of nervous sys', 'ICD10_2010'), +('C79.5', 'Secondary malignant neoplasm of bone and bone marrow', 'ICD10_2010'), +('C79.6', 'Secondary malignant neoplasm of ovary', 'ICD10_2010'), +('C79.7', 'Secondary malignant neoplasm of adrenal gland', 'ICD10_2010'), +('C79.8', 'Secondary malignant neoplasm of other specified sites', 'ICD10_2010'), +('C79.9', 'Secondary malignant neoplasm, unspecified site', 'ICD10_2010'), +('C80', 'Malignant neoplasm without specification of site', 'ICD10_2010'), +('C80.0', 'Malignant neoplasm, primary site unknown, so stated', 'ICD10_2010'), +('C80.9', 'Malignant neoplasm, unspecified', 'ICD10_2010'), +('C81', 'Hodgkin lymphoma', 'ICD10_2010'), +('C81.0', 'Hodgkin\'s disease, Lymphocytic predominance', 'ICD10_2010'), +('C81.1', 'Hodgkin\'s disease, Nodular sclerosis', 'ICD10_2010'), +('C81.2', 'Hodgkin\'s disease, Mixed cellularity', 'ICD10_2010'), +('C81.3', 'Hodgkin\'s disease, Lymphocytic depletion', 'ICD10_2010'), +('C81.4', 'Lymphocyte-rich classical Hodgkin lymphoma', 'ICD10_2010'), +('C81.7', 'Other hodgkin\'s disease', 'ICD10_2010'), +('C81.9', 'Hodgkin\'s disease, unspecified', 'ICD10_2010'), +('C82', 'Follicular lymphoma', 'ICD10_2010'), +('C82.0', 'Follicular non-hodgkin\'s lymphoma, Small cleaved cell, follicular', 'ICD10_2010'), +('C82.1', 'Follicular non-hodgkin\'s lymphoma, Mixed small cleaved and large cell, follicular', 'ICD10_2010'), +('C82.2', 'Follicular non-hodgkin\'s lymphoma, Large cell, follicular', 'ICD10_2010'), +('C82.3', 'Follicular lymphoma grade IIIa', 'ICD10_2010'), +('C82.4', 'Follicular lymphoma grade IIIb', 'ICD10_2010'), +('C82.5', 'Diffuse follicle centre lymphoma', 'ICD10_2010'), +('C82.6', 'Cutaneous follicle centre lymphoma', 'ICD10_2010'), +('C82.7', 'Other types of follicular non-hodgkin\'s lymphoma', 'ICD10_2010'), +('C82.9', 'Follicular non-hodgkin\'s lymphoma, unspecified', 'ICD10_2010'), +('C83', 'Non-follicular lymphoma', 'ICD10_2010'), +('C83.0', 'Diffuse non-hodgkin\'s lymphoma, Small cell (diffuse)', 'ICD10_2010'), +('C83.1', 'Diffuse non-hodgkin\'s lymphoma, Small cleaved cell (diffuse)', 'ICD10_2010'), +('C83.2', 'Diffuse non-hodgkin\'s lymphoma, Mixed small and large cell (diffuse)', 'ICD10_2010'), +('C83.3', 'Diffuse non-hodgkin\'s lymphoma, Large cell (diffuse)', 'ICD10_2010'), +('C83.4', 'Diffuse non-hodgkin\'s lymphoma, Immunoblastic (diffuse)', 'ICD10_2010'), +('C83.5', 'Diffuse non-hodgkin\'s lymphoma, Lymphoblastic (diffuse)', 'ICD10_2010'), +('C83.6', 'Diffuse non-hodgkin\'s lymphoma, Undifferentiated (diffuse)', 'ICD10_2010'), +('C83.7', 'Diffuse non-hodgkin\'s lymphoma, Burkitt\'s tumour', 'ICD10_2010'), +('C83.8', 'Other types of diffuse non-hodgkin\'s lymphoma', 'ICD10_2010'), +('C83.9', 'Diffuse non-hodgkin\'s lymphoma, unspecified', 'ICD10_2010'), +('C84', 'Mature T/NK-cell lymphomas', 'ICD10_2010'), +('C84.0', 'Peripheral and cutaneous T-cell lymphoma, Mycosis fungoides', 'ICD10_2010'), +('C84.1', 'Peripheral and cutaneous T-cell lymphoma, Sezary\'s disease', 'ICD10_2010'), +('C84.2', 'Peripheral and cutaneous T-cell lymphoma, T-zone lymphoma', 'ICD10_2010'), +('C84.3', 'Peripheral and cutaneous T-cell lymphoma, Lymphoepithelioid lymphoma', 'ICD10_2010'), +('C84.4', 'Peripheral t-cell lymphoma', 'ICD10_2010'), +('C84.5', 'Other and unspecified t-cell lymphomas', 'ICD10_2010'), +('C84.6', 'Anaplastic large cell lymphoma, ALK-positive', 'ICD10_2010'), +('C84.7', 'Anaplastic large cell lymphoma, ALK-negative', 'ICD10_2010'), +('C84.8', 'Cutaneous T-cell lymphoma, unspecified', 'ICD10_2010'), +('C84.9', 'Mature T/NK-cell lymphoma, unspecified', 'ICD10_2010'), +('C85', 'Other and unspecified types of non-Hodgkin lymphoma', 'ICD10_2010'), +('C85.0', 'Lymphosarcoma', 'ICD10_2010'), +('C85.1', 'B-cell lymphoma, unspecified', 'ICD10_2010'), +('C85.2', 'Mediastinal (thymic) large B-cell lymphoma', 'ICD10_2010'), +('C85.7', 'Other specified types of non-hodgkin\'s lymphoma', 'ICD10_2010'), +('C85.9', 'Non-hodgkin\'s lymphoma, unspecified type', 'ICD10_2010'), +('C86', 'Other specified types of T/NK-cell lymphoma', 'ICD10_2010'), +('C86.0', 'Extranodal NK/T-cell lymphoma, nasal type', 'ICD10_2010'), +('C86.1', 'Hepatosplenic T-cell lymphoma', 'ICD10_2010'), +('C86.2', 'Enteropathy-type (intestinal) T-cell lymphoma', 'ICD10_2010'), +('C86.3', 'Subcutaneous panniculitis-like T-cell lymphoma', 'ICD10_2010'), +('C86.4', 'Blastic NK-cell lymphoma', 'ICD10_2010'), +('C86.5', 'Angioimmunoblastic T-cell lymphoma', 'ICD10_2010'), +('C86.6', 'Primary cutaneous CD30-positive T-cell proliferations', 'ICD10_2010'), +('C88', 'Malignant immunoproliferative diseases', 'ICD10_2010'), +('C88.0', 'Waldenstram\'s macroglobulinaemia', 'ICD10_2010'), +('C88.1', 'Alpha heavy chain disease', 'ICD10_2010'), +('C88.2', 'Gamma heavy chain disease', 'ICD10_2010'), +('C88.3', 'Immunoproliferative small intestinal disease', 'ICD10_2010'), +('C88.4', 'Extranodal marginal zone B-cell lymphoma of mucosa-associated lymphoid tissue [MALT-lyphoma]', 'ICD10_2010'), +('C88.7', 'Other malignant immunoproliferative diseases', 'ICD10_2010'), +('C88.9', 'Malignant immunoproliferative diseases, unspecified', 'ICD10_2010'), +('C90', 'Multiple myeloma and malignant plasma cell neoplasms', 'ICD10_2010'), +('C90.0', 'Multiple myeloma', 'ICD10_2010'), +('C90.1', 'Plasma cell leukaemia', 'ICD10_2010'), +('C90.2', 'Plasmacytoma, extramedullary', 'ICD10_2010'), +('C90.3', 'Solitary plasmacytoma', 'ICD10_2010'), +('C91', 'Lymphoid leukaemia', 'ICD10_2010'), +('C91.0', 'Acute lymphoblastic leukaemia', 'ICD10_2010'), +('C91.1', 'Chronic lymphocytic leukaemia', 'ICD10_2010'), +('C91.2', 'Subacute lymphocytic leukaemia', 'ICD10_2010'), +('C91.3', 'Prolymphocytic leukaemia', 'ICD10_2010'), +('C91.4', 'Hairy-cell leukaemia', 'ICD10_2010'), +('C91.5', 'Adult t-cell leukaemia', 'ICD10_2010'), +('C91.6', 'Prolymphocytic leukaemia of T-cell type', 'ICD10_2010'), +('C91.7', 'Other lymphoid leukaemia', 'ICD10_2010'), +('C91.8', 'Mature B-cell leukaemia Burkitt-type', 'ICD10_2010'), +('C91.9', 'Lymphoid leukaemia, unspecified', 'ICD10_2010'), +('C92', 'Myeloid leukaemia', 'ICD10_2010'), +('C92.0', 'Acute myeloid leukaemia', 'ICD10_2010'), +('C92.1', 'Chronic myeloid leukaemia', 'ICD10_2010'), +('C92.2', 'Subacute myeloid leukaemia', 'ICD10_2010'), +('C92.3', 'Myeloid sarcoma', 'ICD10_2010'), +('C92.4', 'Acute promyelocytic leukaemia', 'ICD10_2010'), +('C92.5', 'Acute myelomonocytic leukaemia', 'ICD10_2010'), +('C92.6', 'Acute myeloid leukaemia with 11q23-abnormality', 'ICD10_2010'), +('C92.7', 'Other myeloid leukaemia', 'ICD10_2010'), +('C92.8', 'Acute myeloid leukaemia with multilineage dysplasia', 'ICD10_2010'), +('C92.9', 'Myeloid leukaemia, unspecified', 'ICD10_2010'), +('C93', 'Monocytic leukaemia', 'ICD10_2010'), +('C93.0', 'Acute monocytic leukaemia', 'ICD10_2010'), +('C93.1', 'Chronic monocytic leukaemia', 'ICD10_2010'), +('C93.2', 'Subacute monocytic leukaemia', 'ICD10_2010'), +('C93.3', 'Juvenile myelomonocytic leukaemia', 'ICD10_2010'), +('C93.7', 'Other monocytic leukaemia', 'ICD10_2010'), +('C93.9', 'Monocytic leukaemia, unspecified', 'ICD10_2010'), +('C94', 'Other leukaemias of specified cell type', 'ICD10_2010'), +('C94.0', 'Acute erythraemia and erythroleukaemia', 'ICD10_2010'), +('C94.1', 'Chronic erythraemia', 'ICD10_2010'), +('C94.2', 'Acute megakaryoblastic leukaemia', 'ICD10_2010'), +('C94.3', 'Mast cell leukaemia', 'ICD10_2010'), +('C94.4', 'Acute panmyelosis', 'ICD10_2010'), +('C94.5', 'Acute myelofibrosis', 'ICD10_2010'), +('C94.6', 'Myelodysplastic and myeloproliferative disease, not elsewhere classified', 'ICD10_2010'), +('C94.7', 'Other specified leukaemias', 'ICD10_2010'), +('C95', 'Leukaemia of unspecified cell type', 'ICD10_2010'), +('C95.0', 'Acute leukaemia of unspecified cell type', 'ICD10_2010'), +('C95.1', 'Chronic leukaemia of unspecified cell type', 'ICD10_2010'), +('C95.2', 'Subacute leukaemia of unspecified cell type', 'ICD10_2010'), +('C95.7', 'Other leukaemia of unspecified cell type', 'ICD10_2010'), +('C95.9', 'Leukaemia, unspecified', 'ICD10_2010'), +('C96', 'Other and unspecified malignant neoplasms of lymphoid, haematopoietic and related tissue', 'ICD10_2010'), +('C96.0', 'Letterer-siwe disease', 'ICD10_2010'), +('C96.1', 'Malignant histiocytosis', 'ICD10_2010'), +('C96.2', 'Malignant mast cell tumour', 'ICD10_2010'), +('C96.3', 'True histiocytic lymphoma', 'ICD10_2010'), +('C96.4', 'Sarcoma of dendritic cells (accessory cells)', 'ICD10_2010'), +('C96.5', 'Multifocal and unisystemic Langerhans-cell histiocytosis', 'ICD10_2010'), +('C96.6', 'Unifocal Langerhans-cell histiocytosis', 'ICD10_2010'), +('C96.7', 'Other specified malignant neoplasm lymphoid, hematopoietic & related tissue', 'ICD10_2010'), +('C96.8', 'Histiocytic sarcoma', 'ICD10_2010'), +('C96.9', 'Malignant neoplasm of lymphoid, haematopoietic and related tissue, unspecified', 'ICD10_2010'), +('C97', 'Malignant neoplasms of independent (primary) multiple sites', 'ICD10_2010'), +('D00', 'Carcinoma in situ of oral cavity, oesophagus and stomach', 'ICD10_2010'), +('D00.0', 'Carcinoma in situ of lip, oral cavity and pharynx', 'ICD10_2010'), +('D00.1', 'Carcinoma in situ of oesophagus', 'ICD10_2010'), +('D00.2', 'Carcinoma in situ of stomach', 'ICD10_2010'), +('D01', 'Carcinoma in situ of other and unspecified digestive organs', 'ICD10_2010'), +('D01.0', 'Carcinoma in situ of colon', 'ICD10_2010'), +('D01.1', 'Carcinoma in situ of rectosigmoid junction', 'ICD10_2010'), +('D01.2', 'Carcinoma in situ of rectum', 'ICD10_2010'), +('D01.3', 'Carcinoma in situ of anus and anal canal', 'ICD10_2010'), +('D01.4', 'Carcinoma in situ of other and unspecified parts of intestine', 'ICD10_2010'), +('D01.5', 'Carcinoma in situ of liver, gallbladder and bile ducts', 'ICD10_2010'), +('D01.7', 'Carcinoma in situ of other specified digestive organs', 'ICD10_2010'), +('D01.9', 'Carcinoma in situ of digestive organ, unspecified', 'ICD10_2010'), +('D02', 'Carcinoma in situ of middle ear and respiratory system', 'ICD10_2010'), +('D02.0', 'Carcinoma in situ of larynx', 'ICD10_2010'), +('D02.1', 'Carcinoma in situ of trachea', 'ICD10_2010'), +('D02.2', 'Carcinoma in situ of bronchus and lung', 'ICD10_2010'), +('D02.3', 'Carcinoma in situ of other parts of respiratory system', 'ICD10_2010'), +('D02.4', 'Carcinoma in situ of respiratory system, unspecified', 'ICD10_2010'), +('D03', 'Melanoma in situ', 'ICD10_2010'), +('D03.0', 'Melanoma in situ of lip', 'ICD10_2010'), +('D03.1', 'Melanoma in situ of eyelid, including canthus', 'ICD10_2010'), +('D03.2', 'Melanoma in situ of ear and external auricular canal', 'ICD10_2010'), +('D03.3', 'Melanoma in situ of other and unspecified parts of face', 'ICD10_2010'), +('D03.4', 'Melanoma in situ of scalp and neck', 'ICD10_2010'), +('D03.5', 'Melanoma in situ of trunk', 'ICD10_2010'), +('D03.6', 'Melanoma in situ of upper limb, including shoulder', 'ICD10_2010'), +('D03.7', 'Melanoma in situ of lower limb, including hip', 'ICD10_2010'), +('D03.8', 'Melanoma in situ of other sites', 'ICD10_2010'), +('D03.9', 'Melanoma in situ, unspecified', 'ICD10_2010'), +('D04', 'Carcinoma in situ of skin', 'ICD10_2010'), +('D04.0', 'Carcinoma in situ skin of lip', 'ICD10_2010'), +('D04.1', 'Carcinoma in situ skin of eyelid, including canthus', 'ICD10_2010'), +('D04.2', 'Carcinoma in situ skin of ear and external auricular canal', 'ICD10_2010'), +('D04.3', 'Carcinoma in situ skin of other and unspecified parts of face', 'ICD10_2010'), +('D04.4', 'Carcinoma in situ skin of scalp and neck', 'ICD10_2010'), +('D04.5', 'Carcinoma in situ skin of trunk', 'ICD10_2010'), +('D04.6', 'Carcinoma in situ skin of upper limb, including shoulder', 'ICD10_2010'), +('D04.7', 'Carcinoma in situ skin of lower limb, including hip', 'ICD10_2010'), +('D04.8', 'Carcinoma in situ skin of other sites', 'ICD10_2010'), +('D04.9', 'Carcinoma in situ skin, unspecified', 'ICD10_2010'), +('D05', 'Carcinoma in situ of breast', 'ICD10_2010'), +('D05.0', 'Lobular carcinoma in situ', 'ICD10_2010'), +('D05.1', 'Intraductal carcinoma in situ', 'ICD10_2010'), +('D05.7', 'Other carcinoma in situ of breast', 'ICD10_2010'), +('D05.9', 'Carcinoma in situ of breast, unspecified', 'ICD10_2010'), +('D06', 'Carcinoma in situ of cervix uteri', 'ICD10_2010'), +('D06.0', 'Carcinoma in situ of endocervix', 'ICD10_2010'), +('D06.1', 'Carcinoma in situ of exocervix', 'ICD10_2010'), +('D06.7', 'Carcinoma in situ of other parts of cervix', 'ICD10_2010'), +('D06.9', 'Carcinoma in situ of cervix, unspecified', 'ICD10_2010'), +('D07', 'Carcinoma in situ of other and unspecified genital organs', 'ICD10_2010'), +('D07.0', 'Carcinoma in situ of endometrium', 'ICD10_2010'), +('D07.1', 'Carcinoma in situ of vulva', 'ICD10_2010'), +('D07.2', 'Carcinoma in situ of vagina', 'ICD10_2010'), +('D07.3', 'Carcinoma in situ of other and unspecified female genital organs', 'ICD10_2010'), +('D07.4', 'Carcinoma in situ of penis', 'ICD10_2010'), +('D07.5', 'Carcinoma in situ of prostate', 'ICD10_2010'), +('D07.6', 'Carcinoma in situ of other and unspecified male genital organs', 'ICD10_2010'), +('D09', 'Carcinoma in situ of other and unspecified sites', 'ICD10_2010'), +('D09.0', 'Carcinoma in situ of bladder', 'ICD10_2010'), +('D09.1', 'Carcinoma in situ of other and unspecified urinary organs', 'ICD10_2010'), +('D09.2', 'Carcinoma in situ of eye', 'ICD10_2010'), +('D09.3', 'Carcinoma in situ of thyroid and other endocrine glands', 'ICD10_2010'), +('D09.7', 'Carcinoma in situ of other specified sites', 'ICD10_2010'), +('D09.9', 'Carcinoma in situ, unspecified', 'ICD10_2010'), +('D10', 'Benign neoplasm of mouth and pharynx', 'ICD10_2010'), +('D10.0', 'Benign neoplasm, lip', 'ICD10_2010'), +('D10.1', 'Benign neoplasm, tongue', 'ICD10_2010'), +('D10.2', 'Benign neoplasm, floor of mouth', 'ICD10_2010'), +('D10.3', 'Benign neoplasm, other and unspecified parts of mouth', 'ICD10_2010'), +('D10.4', 'Benign neoplasm, tonsil', 'ICD10_2010'), +('D10.5', 'Benign neoplasm, other parts of oropharynx', 'ICD10_2010'), +('D10.6', 'Benign neoplasm, nasopharynx', 'ICD10_2010'), +('D10.7', 'Benign neoplasm, hypopharynx', 'ICD10_2010'), +('D10.9', 'Benign neoplasm, pharynx, unspecified', 'ICD10_2010'), +('D11', 'Benign neoplasm of major salivary glands', 'ICD10_2010'), +('D11.0', 'Benign neoplasm, parotid gland', 'ICD10_2010'), +('D11.7', 'Benign neoplasm, other major salivary glands', 'ICD10_2010'), +('D11.9', 'Benign neoplasm, major salivary gland, unspecified', 'ICD10_2010'), +('D12', 'Benign neoplasm of colon, rectum, anus and anal canal', 'ICD10_2010'), +('D12.0', 'Benign neoplasm, caecum', 'ICD10_2010'), +('D12.1', 'Benign neoplasm, appendix', 'ICD10_2010'), +('D12.2', 'Benign neoplasm, ascending colon', 'ICD10_2010'), +('D12.3', 'Benign neoplasm, transverse colon', 'ICD10_2010'), +('D12.4', 'Benign neoplasm, descending colon', 'ICD10_2010'), +('D12.5', 'Benign neoplasm, sigmoid colon', 'ICD10_2010'), +('D12.6', 'Benign neoplasm, colon, unspecified', 'ICD10_2010'), +('D12.7', 'Benign neoplasm, rectosigmoid junction', 'ICD10_2010'), +('D12.8', 'Benign neoplasm, rectum', 'ICD10_2010'), +('D12.9', 'Benign neoplasm, anus and anal canal', 'ICD10_2010'), +('D13', 'Benign neoplasm of other and ill-defined parts of digestive system', 'ICD10_2010'), +('D13.0', 'Benign neoplasm, oesophagus', 'ICD10_2010'), +('D13.1', 'Benign neoplasm, stomach', 'ICD10_2010'), +('D13.2', 'Benign neoplasm, duodenum', 'ICD10_2010'), +('D13.3', 'Benign neoplasm, other and unspecified parts of small intestine', 'ICD10_2010'), +('D13.4', 'Benign neoplasm, liver', 'ICD10_2010'), +('D13.5', 'Benign neoplasm, extrahepatic bile ducts', 'ICD10_2010'), +('D13.6', 'Benign neoplasm, pancreas', 'ICD10_2010'), +('D13.7', 'Benign neoplasm, endocrine pancreas', 'ICD10_2010'), +('D13.9', 'Benign neoplasm, ill-defined sites within the digestive system', 'ICD10_2010'), +('D14', 'Benign neoplasm of middle ear and respiratory system', 'ICD10_2010'), +('D14.0', 'Benign neoplasm, middle ear, nasal cavity and accessory sinuses', 'ICD10_2010'), +('D14.1', 'Benign neoplasm, larynx', 'ICD10_2010'), +('D14.2', 'Benign neoplasm, trachea', 'ICD10_2010'), +('D14.3', 'Benign neoplasm, bronchus and lung', 'ICD10_2010'), +('D14.4', 'Benign neoplasm, respiratory system, unspecified', 'ICD10_2010'), +('D15', 'Benign neoplasm of other and unspecified intrathoracic organs', 'ICD10_2010'), +('D15.0', 'Benign neoplasm, thymus', 'ICD10_2010'), +('D15.1', 'Benign neoplasm, heart', 'ICD10_2010'), +('D15.2', 'Benign neoplasm, mediastinum', 'ICD10_2010'), +('D15.7', 'Benign neoplasm, other specified intrathoracic organs', 'ICD10_2010'), +('D15.9', 'Benign neoplasm, intrathoracic organ, unspecified', 'ICD10_2010'), +('D16', 'Benign neoplasm of bone and articular cartilage', 'ICD10_2010'), +('D16.0', 'Benign neoplasm, scapula and long bones of upper limb', 'ICD10_2010'), +('D16.1', 'Benign neoplasm, short bones of upper limb', 'ICD10_2010'), +('D16.2', 'Benign neoplasm, long bones of lower limb', 'ICD10_2010'); +INSERT INTO `icd10` (`ID_ICD10`, `Diagnosa`, `Versi_ICD10`) VALUES +('D16.3', 'Benign neoplasm, short bones of lower limb', 'ICD10_2010'), +('D16.4', 'Benign neoplasm, bones of skull and face', 'ICD10_2010'), +('D16.5', 'Benign neoplasm, lower jaw bone', 'ICD10_2010'), +('D16.6', 'Benign neoplasm, vertebral column', 'ICD10_2010'), +('D16.7', 'Benign neoplasm, ribs, sternum and clavicle', 'ICD10_2010'), +('D16.8', 'Benign neoplasm, pelvic bones, sacrum and coccyx', 'ICD10_2010'), +('D16.9', 'Benign neoplasm, bone and articular cartilage, unspecified', 'ICD10_2010'), +('D17', 'Benign lipomatous neoplasm', 'ICD10_2010'), +('D17.0', 'Benign lipomatous neopl skin/subcut tis head face & neck', 'ICD10_2010'), +('D17.1', 'Benign lipomatous neoplasm skin and subcut tissue of trunk', 'ICD10_2010'), +('D17.2', 'Benign lipomatous neoplasm skin and subcut tissue of limbs', 'ICD10_2010'), +('D17.3', 'Benign lipomatous neopl skin/subcut tis other/unspec sites', 'ICD10_2010'), +('D17.4', 'Benign lipomatous neoplasm of intrathoracic organs', 'ICD10_2010'), +('D17.5', 'Benign lipomatous neoplasm of intra-abdominal organs', 'ICD10_2010'), +('D17.6', 'Benign lipomatous neoplasm of spermatic cord', 'ICD10_2010'), +('D17.7', 'Benign lipomatous neoplasm of other sites', 'ICD10_2010'), +('D17.9', 'Benign lipomatous neoplasm, unspecified', 'ICD10_2010'), +('D18', 'Haemangioma and lymphangioma, any site', 'ICD10_2010'), +('D18.0', 'Haemangioma, any site', 'ICD10_2010'), +('D18.1', 'Lymphangioma, any site', 'ICD10_2010'), +('D19', 'Benign neoplasm of mesothelial tissue', 'ICD10_2010'), +('D19.0', 'Benign neoplasm, mesothelial tissue of pleura', 'ICD10_2010'), +('D19.1', 'Benign neoplasm, mesothelial tissue of peritoneum', 'ICD10_2010'), +('D19.7', 'Benign neoplasm, mesothelial tissue of other sites', 'ICD10_2010'), +('D19.9', 'Benign neoplasm, mesothelial tissue, unspecified', 'ICD10_2010'), +('D20', 'Benign neoplasm of soft tissue of retroperitoneum and peritoneum', 'ICD10_2010'), +('D20.0', 'Benign neoplasm, retroperitoneum', 'ICD10_2010'), +('D20.1', 'Benign neoplasm, peritoneum', 'ICD10_2010'), +('D21', 'Other benign neoplasms of connective and other soft tissue', 'ICD10_2010'), +('D21.0', 'Benign neoplasm, connective and other soft tissue of head, face and neck', 'ICD10_2010'), +('D21.1', 'Benign neoplasm, connective and other soft tis of upper limb, inc shoulder', 'ICD10_2010'), +('D21.2', 'Benign neoplasm, connective and other soft tissue of lower limb, inc hip', 'ICD10_2010'), +('D21.3', 'Benign neoplasm, connective and other soft tissue of thorax', 'ICD10_2010'), +('D21.4', 'Benign neoplasm, connective and other soft tissue of abdomen', 'ICD10_2010'), +('D21.5', 'Benign neoplasm, connective and other soft tissue of pelvis', 'ICD10_2010'), +('D21.6', 'Benign neoplasm, connective and other soft tissue of trunk, unspecified', 'ICD10_2010'), +('D21.9', 'Benign neoplasm, connective and other soft tissue, unspecified', 'ICD10_2010'), +('D22', 'Melanocytic naevi', 'ICD10_2010'), +('D22.0', 'Melanocytic naevi of lip', 'ICD10_2010'), +('D22.1', 'Melanocytic naevi of eyelid, including canthus', 'ICD10_2010'), +('D22.2', 'Melanocytic naevi of ear and external auricular canal', 'ICD10_2010'), +('D22.3', 'Melanocytic naevi of other and unspecified parts of face', 'ICD10_2010'), +('D22.4', 'Melanocytic naevi of scalp and neck', 'ICD10_2010'), +('D22.5', 'Melanocytic naevi of trunk', 'ICD10_2010'), +('D22.6', 'Melanocytic naevi of upper limb, including shoulder', 'ICD10_2010'), +('D22.7', 'Melanocytic naevi of lower limb, including hip', 'ICD10_2010'), +('D22.9', 'Melanocytic naevi, unspecified', 'ICD10_2010'), +('D23', 'Other benign neoplasms of skin', 'ICD10_2010'), +('D23.0', 'Benign neoplasm, skin of lip', 'ICD10_2010'), +('D23.1', 'Benign neoplasm, skin of eyelid, including canthus', 'ICD10_2010'), +('D23.2', 'Benign neoplasm, skin of ear and external auricular canal', 'ICD10_2010'), +('D23.3', 'Benign neoplasm, skin of other and unspecified parts of face', 'ICD10_2010'), +('D23.4', 'Benign neoplasm, skin of scalp and neck', 'ICD10_2010'), +('D23.5', 'Benign neoplasm, skin of trunk', 'ICD10_2010'), +('D23.6', 'Benign neoplasm, skin of upper limb, including shoulder', 'ICD10_2010'), +('D23.7', 'Benign neoplasm, skin of lower limb, including hip', 'ICD10_2010'), +('D23.9', 'Benign neoplasm, skin, unspecified', 'ICD10_2010'), +('D24', 'Benign neoplasm of breast', 'ICD10_2010'), +('D25', 'Leiomyoma of uterus', 'ICD10_2010'), +('D25.0', 'Submucous leiomyoma of uterus', 'ICD10_2010'), +('D25.1', 'Intramural leiomyoma of uterus', 'ICD10_2010'), +('D25.2', 'Subserosal leiomyoma of uterus', 'ICD10_2010'), +('D25.9', 'Leiomyoma of uterus, unspecified', 'ICD10_2010'), +('D26', 'Other benign neoplasms of uterus', 'ICD10_2010'), +('D26.0', 'Benign neoplasm, cervix uteri', 'ICD10_2010'), +('D26.1', 'Benign neoplasm, corpus uteri', 'ICD10_2010'), +('D26.7', 'Benign neoplasm, other parts of uterus', 'ICD10_2010'), +('D26.9', 'Benign neoplasm, uterus, unspecified', 'ICD10_2010'), +('D27', 'Benign neoplasm of ovary', 'ICD10_2010'), +('D28', 'Benign neoplasm of other and unspecified female genital organs', 'ICD10_2010'), +('D28.0', 'Benign neoplasm, vulva', 'ICD10_2010'), +('D28.1', 'Benign neoplasm, vagina', 'ICD10_2010'), +('D28.2', 'Benign neoplasm, uterine tubes and ligaments', 'ICD10_2010'), +('D28.7', 'Benign neoplasm, other specified female genital organs', 'ICD10_2010'), +('D28.9', 'Benign neoplasm, female genital organ, unspecified', 'ICD10_2010'), +('D29', 'Benign neoplasm of male genital organs', 'ICD10_2010'), +('D29.0', 'Benign neoplasm, penis', 'ICD10_2010'), +('D29.1', 'Benign neoplasm, prostate', 'ICD10_2010'), +('D29.2', 'Benign neoplasm, testis', 'ICD10_2010'), +('D29.3', 'Benign neoplasm, epididymis', 'ICD10_2010'), +('D29.4', 'Benign neoplasm, scrotum', 'ICD10_2010'), +('D29.7', 'Benign neoplasm, other male genital organs', 'ICD10_2010'), +('D29.9', 'Benign neoplasm, male genital organ, unspecified', 'ICD10_2010'), +('D30', 'Benign neoplasm of urinary organs', 'ICD10_2010'), +('D30.0', 'Benign neoplasm, kidney', 'ICD10_2010'), +('D30.1', 'Benign neoplasm, renal pelvis', 'ICD10_2010'), +('D30.2', 'Benign neoplasm, ureter', 'ICD10_2010'), +('D30.3', 'Benign neoplasm, bladder', 'ICD10_2010'), +('D30.4', 'Benign neoplasm, urethra', 'ICD10_2010'), +('D30.7', 'Benign neoplasm, other urinary organs', 'ICD10_2010'), +('D30.9', 'Benign neoplasm, urinary organ, unspecified', 'ICD10_2010'), +('D31', 'Benign neoplasm of eye and adnexa', 'ICD10_2010'), +('D31.0', 'Benign neoplasm, conjunctiva', 'ICD10_2010'), +('D31.1', 'Benign neoplasm, cornea', 'ICD10_2010'), +('D31.2', 'Benign neoplasm, retina', 'ICD10_2010'), +('D31.3', 'Benign neoplasm, choroid', 'ICD10_2010'), +('D31.4', 'Benign neoplasm, ciliary body', 'ICD10_2010'), +('D31.5', 'Benign neoplasm, lacrimal gland and duct', 'ICD10_2010'), +('D31.6', 'Benign neoplasm, orbit, unspecified', 'ICD10_2010'), +('D31.9', 'Benign neoplasm, eye, unspecified', 'ICD10_2010'), +('D32', 'Benign neoplasm of meninges', 'ICD10_2010'), +('D32.0', 'Benign neoplasm, cerebral meninges', 'ICD10_2010'), +('D32.1', 'Benign neoplasm, spinal meninges', 'ICD10_2010'), +('D32.9', 'Benign neoplasm, meninges, unspecified', 'ICD10_2010'), +('D33', 'Benign neoplasm of brain and other parts of central nervous system', 'ICD10_2010'), +('D33.0', 'Benign neoplasm, brain, supratentorial', 'ICD10_2010'), +('D33.1', 'Benign neoplasm, brain, infratentorial', 'ICD10_2010'), +('D33.2', 'Benign neoplasm, brain, unspecified', 'ICD10_2010'), +('D33.3', 'Benign neoplasm, cranial nerves', 'ICD10_2010'), +('D33.4', 'Benign neoplasm, spinal cord', 'ICD10_2010'), +('D33.7', 'Benign neoplasm, other specified parts of central nervous system', 'ICD10_2010'), +('D33.9', 'Benign neoplasm, central nervous system, unspecified', 'ICD10_2010'), +('D34', 'Benign neoplasm of thyroid gland', 'ICD10_2010'), +('D35', 'Benign neoplasm of other and unspecified endocrine glands', 'ICD10_2010'), +('D35.0', 'Benign neoplasm, adrenal gland', 'ICD10_2010'), +('D35.1', 'Benign neoplasm, parathyroid gland', 'ICD10_2010'), +('D35.2', 'Benign neoplasm, pituitary gland', 'ICD10_2010'), +('D35.3', 'Benign neoplasm, craniopharyngeal duct', 'ICD10_2010'), +('D35.4', 'Benign neoplasm, pineal gland', 'ICD10_2010'), +('D35.5', 'Benign neoplasm, carotid body', 'ICD10_2010'), +('D35.6', 'Benign neoplasm, aortic body and other paraganglia', 'ICD10_2010'), +('D35.7', 'Benign neoplasm, other specified endocrine glands', 'ICD10_2010'), +('D35.8', 'Benign neoplasm, pluriglandular involvement', 'ICD10_2010'), +('D35.9', 'Benign neoplasm, endocrine gland, unspecified', 'ICD10_2010'), +('D36', 'Benign neoplasm of other and unspecified sites', 'ICD10_2010'), +('D36.0', 'Benign neoplasm, lymph nodes', 'ICD10_2010'), +('D36.1', 'Benign neoplasm, peripheral nerves and autonomic nervous system', 'ICD10_2010'), +('D36.7', 'Benign neoplasm, other specified sites', 'ICD10_2010'), +('D36.9', 'Benign neoplasm of unspecified site', 'ICD10_2010'), +('D37', 'Neoplasm of uncertain or unknown behaviour of oral cavity and digestive organs', 'ICD10_2010'), +('D37.0', 'Neoplasm of uncertain or unknown behaviour of lip, oral cavity and pharynx', 'ICD10_2010'), +('D37.1', 'Neoplasm of uncertain or unknown behaviour of stomach', 'ICD10_2010'), +('D37.2', 'Neoplasm of uncertain or unknown behaviour of small intestine', 'ICD10_2010'), +('D37.3', 'Neoplasm of uncertain or unknown behaviour of appendix', 'ICD10_2010'), +('D37.4', 'Neoplasm of uncertain or unknown behaviour of colon', 'ICD10_2010'), +('D37.5', 'Neoplasm of uncertain or unknown behaviour of rectum', 'ICD10_2010'), +('D37.6', 'Neoplasm of uncertain or unknown behaviour of liver, gallbladder and bile ducts', 'ICD10_2010'), +('D37.7', 'Neoplasm of uncertain or unknown behaviour of other digestive organs', 'ICD10_2010'), +('D37.9', 'Neoplasm of uncertain or unknown behaviour of digestive organ, unspecified', 'ICD10_2010'), +('D38', 'Neoplasm of uncertain or unknown behaviour of middle ear and respiratory and intrathoracic organs', 'ICD10_2010'), +('D38.0', 'Neoplasm of uncertain or unknown behaviour of larynx', 'ICD10_2010'), +('D38.1', 'Neoplasm of uncertain or unknown behaviour of trachea, bronchus and lung', 'ICD10_2010'), +('D38.2', 'Neoplasm of uncertain or unknown behaviour of pleura', 'ICD10_2010'), +('D38.3', 'Neoplasm of uncertain or unknown behaviour of mediastinum', 'ICD10_2010'), +('D38.4', 'Neoplasm of uncertain or unknown behaviour of thymus', 'ICD10_2010'), +('D38.5', 'Neoplasm of uncertain or unknown behaviour of other respiratory organs', 'ICD10_2010'), +('D38.6', 'Neoplasm of uncertain or unknown behaviour of respiratory organ, unspecified', 'ICD10_2010'), +('D39', 'Neoplasm of uncertain or unknown behaviour of female genital organs', 'ICD10_2010'), +('D39.0', 'Neoplasm of uncertain or unknown behaviour of uterus', 'ICD10_2010'), +('D39.1', 'Neoplasm of uncertain or unknown behaviour of ovary', 'ICD10_2010'), +('D39.2', 'Neoplasm of uncertain or unknown behaviour of placenta', 'ICD10_2010'), +('D39.7', 'Neoplasm of uncertain or unknown behaviour of other female genital organs', 'ICD10_2010'), +('D39.9', 'Neoplasm of uncertain or unknown behaviour of female genital organ, unspecified', 'ICD10_2010'), +('D40', 'Neoplasm of uncertain or unknown behaviour of male genital organs', 'ICD10_2010'), +('D40.0', 'Neoplasm of uncertain or unknown behaviour of prostate', 'ICD10_2010'), +('D40.1', 'Neoplasm of uncertain or unknown behaviour of testis', 'ICD10_2010'), +('D40.7', 'Neoplasm of uncertain or unknown behaviour of other male genital organs', 'ICD10_2010'), +('D40.9', 'Neoplasm of uncertain or unknown behaviour of male genital organ, unspecified', 'ICD10_2010'), +('D41', 'Neoplasm of uncertain or unknown behaviour of urinary organs', 'ICD10_2010'), +('D41.0', 'Neoplasm of uncertain or unknown behaviour of kidney', 'ICD10_2010'), +('D41.1', 'Neoplasm of uncertain or unknown behaviour of renal pelvis', 'ICD10_2010'), +('D41.2', 'Neoplasm of uncertain or unknown behaviour of ureter', 'ICD10_2010'), +('D41.3', 'Neoplasm of uncertain or unknown behaviour of urethra', 'ICD10_2010'), +('D41.4', 'Neoplasm of uncertain or unknown behaviour of bladder', 'ICD10_2010'), +('D41.7', 'Neoplasm of uncertain or unknown behaviour of other urinary organs', 'ICD10_2010'), +('D41.9', 'Neoplasm of uncertain or unknown behaviour of urinary organ, unspecified', 'ICD10_2010'), +('D42', 'Neoplasm of uncertain or unknown behaviour of meninges', 'ICD10_2010'), +('D42.0', 'Neoplasm of uncertain or unknown behaviour of cerebral meninges', 'ICD10_2010'), +('D42.1', 'Neoplasm of uncertain or unknown behaviour of spinal meninges', 'ICD10_2010'), +('D42.9', 'Neoplasm of uncertain or unknown behaviour of meninges, unspecified', 'ICD10_2010'), +('D43', 'Neoplasm of uncertain or unknown behaviour of brain and central nervous system', 'ICD10_2010'), +('D43.0', 'Neoplasm of uncertain or unknown behaviour of brain, supratentorial', 'ICD10_2010'), +('D43.1', 'Neoplasm of uncertain or unknown behaviour of brain, infratentorial', 'ICD10_2010'), +('D43.2', 'Neoplasm of uncertain or unknown behaviour of brain, unspecified', 'ICD10_2010'), +('D43.3', 'Neoplasm of uncertain or unknown behaviour of cranial nerves', 'ICD10_2010'), +('D43.4', 'Neoplasm of uncertain or unknown behaviour of spinal cord', 'ICD10_2010'), +('D43.7', 'Neoplasm of uncertain or unknown behaviour of other parts of central nervous system', 'ICD10_2010'), +('D43.9', 'Neoplasm of uncertain or unknown behaviour of central nervous system, unspecified', 'ICD10_2010'), +('D44', 'Neoplasm of uncertain or unknown behaviour of endocrine glands', 'ICD10_2010'), +('D44.0', 'Neoplasm of uncertain or unknown behaviour of thyroid gland', 'ICD10_2010'), +('D44.1', 'Neoplasm of uncertain or unknown behaviour of adrenal gland', 'ICD10_2010'), +('D44.2', 'Neoplasm of uncertain or unknown behaviour of parathyroid gland', 'ICD10_2010'), +('D44.3', 'Neoplasm of uncertain or unknown behaviour of pituitary gland', 'ICD10_2010'), +('D44.4', 'Neoplasm of uncertain or unknown behaviour of craniopharyngeal duct', 'ICD10_2010'), +('D44.5', 'Neoplasm of uncertain or unknown behaviour of pineal gland', 'ICD10_2010'), +('D44.6', 'Neoplasm of uncertain or unknown behaviour of carotid body', 'ICD10_2010'), +('D44.7', 'Neoplasm of uncertain or unknown behaviour of aortic body and other paraganglia', 'ICD10_2010'), +('D44.8', 'Neoplasm of uncertain or unknown behaviour of pluriglandular involvement', 'ICD10_2010'), +('D44.9', 'Neoplasm of uncertain or unknown behaviour of endocrine gland, unspecified', 'ICD10_2010'), +('D45', 'Polycythaemia vera', 'ICD10_2010'), +('D46', 'Myelodysplastic syndromes', 'ICD10_2010'), +('D46.0', 'Refractory anaemia without sideroblasts, so stated', 'ICD10_2010'), +('D46.1', 'Refractory anaemia with sideroblasts', 'ICD10_2010'), +('D46.2', 'Refractory anaemia with excess of blasts', 'ICD10_2010'), +('D46.3', 'Refractory anaemia with excess of blasts with transformation', 'ICD10_2010'), +('D46.4', 'Refractory anaemia, unspecified', 'ICD10_2010'), +('D46.5', 'Refractory anaemia with multi-lineage dysplasia', 'ICD10_2010'), +('D46.6', 'Myelodysplastic syndrome with isolated del(5q) chromosomal abnormality', 'ICD10_2010'), +('D46.7', 'Other myelodysplastic syndromes', 'ICD10_2010'), +('D46.9', 'Myelodysplastic syndrome, unspecified', 'ICD10_2010'), +('D47', 'Other neoplasms of uncertain or unknown behaviour of lymphoid, haematopoietic and related tissue', 'ICD10_2010'), +('D47.0', 'Histiocytic and mast cell tumours uncertain and unknown behaviour', 'ICD10_2010'), +('D47.1', 'Chronic myeloproliferative disease', 'ICD10_2010'), +('D47.2', 'Monoclonal gammopathy', 'ICD10_2010'), +('D47.3', 'Essential (haemorrhagic) thrombocythaemia', 'ICD10_2010'), +('D47.4', 'Osteomyelofibrosis', 'ICD10_2010'), +('D47.5', 'Chronic eosinophilic leukaemia [hypereosinophilic syndrome]', 'ICD10_2010'), +('D47.7', 'Other specified neoplasms of uncertain or unknown behaviour of lymphoid, haematopoietic and related tissue', 'ICD10_2010'), +('D47.9', 'Neoplasms of uncertain or unknown behaviour of lymphoid, haematopoietic and related tissue, unspecified', 'ICD10_2010'), +('D48', 'Neoplasm of uncertain or unknown behaviour of other and unspecified sites', 'ICD10_2010'), +('D48.0', 'Neoplasms of uncertain or unknown behaviour of bone and articular cartilage', 'ICD10_2010'), +('D48.1', 'Neoplasms of uncertain or unknown behaviour of connective and other soft tissue', 'ICD10_2010'), +('D48.2', 'Neoplasms of uncertain or unknown behaviour of peripheral nerves and autonomic nervous system', 'ICD10_2010'), +('D48.3', 'Neoplasms of uncertain or unknown behaviour of retroperitoneum', 'ICD10_2010'), +('D48.4', 'Neoplasms of uncertain or unknown behaviour of peritoneum', 'ICD10_2010'), +('D48.5', 'Neoplasms of uncertain or unknown behaviour of skin', 'ICD10_2010'), +('D48.6', 'Neoplasms of uncertain or unknown behaviour of breast', 'ICD10_2010'), +('D48.7', 'Neoplasms of uncertain or unknown behaviour of other specified sites', 'ICD10_2010'), +('D48.9', 'Neoplasm of uncertain or unknown behaviour, unspecified', 'ICD10_2010'), +('D50', 'Iron deficiency anaemia', 'ICD10_2010'), +('D50.0', 'Iron deficiency anaemia secondary to blood loss (chronic)', 'ICD10_2010'), +('D50.1', 'Sideropenic dysphagia', 'ICD10_2010'), +('D50.8', 'Other iron deficiency anaemias', 'ICD10_2010'), +('D50.9', 'Iron deficiency anaemia, unspecified', 'ICD10_2010'), +('D51', 'Vitamin B12 deficiency anaemia', 'ICD10_2010'), +('D51.0', 'Vitamin b12 defic anaemia due to intrinsic factor deficiency', 'ICD10_2010'), +('D51.1', 'Vit b12 def anaem select vit b12 malabsorp with proteinuria', 'ICD10_2010'), +('D51.2', 'Transcobalamin ii deficiency', 'ICD10_2010'), +('D51.3', 'Other dietary vitamin b12 deficiency anaemia', 'ICD10_2010'), +('D51.8', 'Other vitamin b12 deficiency anaemias', 'ICD10_2010'), +('D51.9', 'Vitamin b12 deficiency anaemia, unspecified', 'ICD10_2010'), +('D52', 'Folate deficiency anaemia', 'ICD10_2010'), +('D52.0', 'Dietary folate deficiency anaemia', 'ICD10_2010'), +('D52.1', 'Drug-induced folate deficiency anaemia', 'ICD10_2010'), +('D52.8', 'Other folate deficiency anaemias', 'ICD10_2010'), +('D52.9', 'Folate deficiency anaemia, unspecified', 'ICD10_2010'), +('D53', 'Other nutritional anaemias', 'ICD10_2010'), +('D53.0', 'Protein deficiency anaemia', 'ICD10_2010'), +('D53.1', 'Other megaloblastic anaemias, not elsewhere classified', 'ICD10_2010'), +('D53.2', 'Scorbutic anaemia', 'ICD10_2010'), +('D53.8', 'Other specified nutritional anaemias', 'ICD10_2010'), +('D53.9', 'Nutritional anaemia, unspecified', 'ICD10_2010'), +('D55', 'Anaemia due to enzyme disorders', 'ICD10_2010'), +('D55.0', 'Anaemia due to glucose-6-phosphate dehydrogenase deficiency', 'ICD10_2010'), +('D55.1', 'Anaemia due to other disorders of glutathione metabolism', 'ICD10_2010'), +('D55.2', 'Anaemia due to disorders of glycolytic enzymes', 'ICD10_2010'), +('D55.3', 'Anaemia due to disorders of nucleotide metabolism', 'ICD10_2010'), +('D55.8', 'Other anaemias due to enzyme disorders', 'ICD10_2010'), +('D55.9', 'Anaemia due to enzyme disorder, unspecified', 'ICD10_2010'), +('D56', 'Thalassaemia', 'ICD10_2010'), +('D56.0', 'Alpha thalassaemia', 'ICD10_2010'), +('D56.1', 'Beta thalassaemia', 'ICD10_2010'), +('D56.2', 'Delta-beta thalassaemia', 'ICD10_2010'), +('D56.3', 'Thalassaemia trait', 'ICD10_2010'), +('D56.4', 'Hereditary persistence of fetal haemoglobin [hpfh]', 'ICD10_2010'), +('D56.8', 'Other thalassaemias', 'ICD10_2010'), +('D56.9', 'Thalassaemia, unspecified', 'ICD10_2010'), +('D57', 'Sickle-cell disorders', 'ICD10_2010'), +('D57.0', 'Sickle-cell anaemia with crisis', 'ICD10_2010'), +('D57.1', 'Sickle-cell anaemia without crisis', 'ICD10_2010'), +('D57.2', 'Double heterozygous sickling disorders', 'ICD10_2010'), +('D57.3', 'Sickle-cell trait', 'ICD10_2010'), +('D57.8', 'Other sickle-cell disorders', 'ICD10_2010'), +('D58', 'Other hereditary haemolytic anaemias', 'ICD10_2010'), +('D58.0', 'Hereditary spherocytosis', 'ICD10_2010'), +('D58.1', 'Hereditary elliptocytosis', 'ICD10_2010'), +('D58.2', 'Other haemoglobinopathies', 'ICD10_2010'), +('D58.8', 'Other specified hereditary haemolytic anaemias', 'ICD10_2010'), +('D58.9', 'Hereditary haemolytic anaemia, unspecified', 'ICD10_2010'), +('D59', 'Acquired haemolytic anaemia', 'ICD10_2010'), +('D59.0', 'Drug-induced autoimmune haemolytic anaemia', 'ICD10_2010'), +('D59.1', 'Other autoimmune haemolytic anaemias', 'ICD10_2010'), +('D59.2', 'Drug-induced nonautoimmune haemolytic anaemia', 'ICD10_2010'), +('D59.3', 'Haemolytic-uraemic syndrome', 'ICD10_2010'), +('D59.4', 'Other nonautoimmune haemolytic anaemias', 'ICD10_2010'), +('D59.5', 'Paroxysmal nocturnal haemoglobinuria [marchiafava-micheli]', 'ICD10_2010'), +('D59.6', 'Haemoglobinuria due to haemolysis from other external causes', 'ICD10_2010'), +('D59.8', 'Other acquired haemolytic anaemias', 'ICD10_2010'), +('D59.9', 'Acquired haemolytic anaemia, unspecified', 'ICD10_2010'), +('D60', 'Acquired pure red cell aplasia [erythroblastopenia]', 'ICD10_2010'), +('D60.0', 'Chronic acquired pure red cell aplasia', 'ICD10_2010'), +('D60.1', 'Transient acquired pure red cell aplasia', 'ICD10_2010'), +('D60.8', 'Other acquired pure red cell aplasias', 'ICD10_2010'), +('D60.9', 'Acquired pure red cell aplasia, unspecified', 'ICD10_2010'), +('D61', 'Other aplastic anaemias', 'ICD10_2010'), +('D61.0', 'Constitutional aplastic anaemia', 'ICD10_2010'), +('D61.1', 'Drug-induced aplastic anaemia', 'ICD10_2010'), +('D61.2', 'Aplastic anaemia due to other external agents', 'ICD10_2010'), +('D61.3', 'Idiopathic aplastic anaemia', 'ICD10_2010'), +('D61.8', 'Other specified aplastic anaemias', 'ICD10_2010'), +('D61.9', 'Aplastic anaemia, unspecified', 'ICD10_2010'), +('D62', 'Acute posthaemorrhagic anaemia', 'ICD10_2010'), +('D63', 'Anaemia in chronic diseases classified elsewhere', 'ICD10_2010'), +('D63.0', 'Anaemia in neoplastic disease', 'ICD10_2010'), +('D63.8', 'Anaemia in other chronic diseases classified elsewhere', 'ICD10_2010'), +('D64', 'Other anaemias', 'ICD10_2010'), +('D64.0', 'Hereditary sideroblastic anaemia', 'ICD10_2010'), +('D64.1', 'Secondary sideroblastic anaemia due to disease', 'ICD10_2010'), +('D64.2', 'Secondary sideroblastic anaemia due to drugs and toxins', 'ICD10_2010'), +('D64.3', 'Other sideroblastic anaemias', 'ICD10_2010'), +('D64.4', 'Congenital dyserythropoietic anaemia', 'ICD10_2010'), +('D64.8', 'Other specified anaemias', 'ICD10_2010'), +('D64.9', 'Anaemia, unspecified', 'ICD10_2010'), +('D65', 'Dissem intravascular coagulation [defibrination syndrome]', 'ICD10_2010'), +('D66', 'Hereditary factor viii deficiency', 'ICD10_2010'), +('D67', 'Hereditary factor ix deficiency', 'ICD10_2010'), +('D68', 'Other coagulation defects', 'ICD10_2010'), +('D68.0', 'Von willebrand\'s disease', 'ICD10_2010'), +('D68.1', 'Hereditary factor xi deficiency', 'ICD10_2010'), +('D68.2', 'Hereditary deficiency of other clotting factors', 'ICD10_2010'), +('D68.3', 'Haemorrhagic disorder due to circulating anticoagulants', 'ICD10_2010'), +('D68.4', 'Acquired coagulation factor deficiency', 'ICD10_2010'), +('D68.5', 'Primary Thrombophilia', 'ICD10_2010'), +('D68.6', 'Other Thrombophilia', 'ICD10_2010'), +('D68.8', 'Other specified coagulation defects', 'ICD10_2010'), +('D68.9', 'Coagulation defect, unspecified', 'ICD10_2010'), +('D69', 'Purpura and other haemorrhagic conditions', 'ICD10_2010'), +('D69.0', 'Allergic purpura', 'ICD10_2010'), +('D69.1', 'Qualitative platelet defects', 'ICD10_2010'), +('D69.2', 'Other nonthrombocytopenic purpura', 'ICD10_2010'), +('D69.3', 'Idiopathic thrombocytopenic purpura', 'ICD10_2010'), +('D69.4', 'Other primary thrombocytopenia', 'ICD10_2010'), +('D69.5', 'Secondary thrombocytopenia', 'ICD10_2010'), +('D69.6', 'Thrombocytopenia, unspecified', 'ICD10_2010'), +('D69.8', 'Other specified haemorrhagic conditions', 'ICD10_2010'), +('D69.9', 'Haemorrhagic condition, unspecified', 'ICD10_2010'), +('D70', 'Agranulocytosis', 'ICD10_2010'), +('D71', 'Functional disorders of polymorphonuclear neutrophils', 'ICD10_2010'), +('D72', 'Other disorders of white blood cells', 'ICD10_2010'), +('D72.0', 'Genetic anomalies of leukocytes', 'ICD10_2010'), +('D72.1', 'Eosinophilia', 'ICD10_2010'), +('D72.8', 'Other specified disorders of white blood cells', 'ICD10_2010'), +('D72.9', 'Disorder of white blood cells, unspecified', 'ICD10_2010'), +('D73', 'Diseases of spleen', 'ICD10_2010'), +('D73.0', 'Hyposplenism', 'ICD10_2010'), +('D73.1', 'Hypersplenism', 'ICD10_2010'), +('D73.2', 'Chronic congestive splenomegaly', 'ICD10_2010'), +('D73.3', 'Abscess of spleen', 'ICD10_2010'), +('D73.4', 'Cyst of spleen', 'ICD10_2010'), +('D73.5', 'Infarction of spleen', 'ICD10_2010'), +('D73.8', 'Other diseases of spleen', 'ICD10_2010'), +('D73.9', 'Disease of spleen, unspecified', 'ICD10_2010'), +('D74', 'Methaemoglobinaemia', 'ICD10_2010'), +('D74.0', 'Congenital methaemoglobinaemia', 'ICD10_2010'), +('D74.8', 'Other methaemoglobinaemias', 'ICD10_2010'), +('D74.9', 'Methaemoglobinaemia, unspecified', 'ICD10_2010'), +('D75', 'Other diseases of blood and blood-forming organs', 'ICD10_2010'), +('D75.0', 'Familial erythrocytosis', 'ICD10_2010'), +('D75.1', 'Secondary polycythaemia', 'ICD10_2010'), +('D75.2', 'Essential thrombocytosis', 'ICD10_2010'), +('D75.8', 'Other specified diseases of blood and blood-forming organs', 'ICD10_2010'), +('D75.9', 'Disease of blood and blood-forming organs, unspecified', 'ICD10_2010'), +('D76', 'Other specified diseases with participation of lymphoreticular and reticulohistiocytic tissue', 'ICD10_2010'), +('D76.0', 'Langerhans\' cell histiocytosis, not elsewhere classified', 'ICD10_2010'), +('D76.1', 'Haemophagocytic lymphohistiocytosis', 'ICD10_2010'), +('D76.2', 'Haemophagocytic syndrome, infection-associated', 'ICD10_2010'), +('D76.3', 'Other histiocytosis syndromes', 'ICD10_2010'), +('D77', 'Other disorders of blood and blood-forming organs in dis ce', 'ICD10_2010'), +('D80', 'Immunodeficiency with predominantly antibody defects', 'ICD10_2010'), +('D80.0', 'Hereditary hypogammaglobulinaemia', 'ICD10_2010'), +('D80.1', 'Nonfamilial hypogammaglobulinaemia', 'ICD10_2010'), +('D80.2', 'Selective deficiency of immunoglobulin a [iga]', 'ICD10_2010'), +('D80.3', 'Selective deficiency of immunoglobulin g [igg] subclasses', 'ICD10_2010'), +('D80.4', 'Selective deficiency of immunoglobulin m [igm]', 'ICD10_2010'), +('D80.5', 'Immunodeficiency with increased immunoglobulin m [igm]', 'ICD10_2010'), +('D80.6', 'Antibod def with near-norm imunoglob/hyperimmunoglobulinaemia', 'ICD10_2010'), +('D80.7', 'Transient hypogammaglobulinaemia of infancy', 'ICD10_2010'), +('D80.8', 'Other immunodeficiencies with predominantly antibody defects', 'ICD10_2010'), +('D80.9', 'Immunodeficiency with predominantly antibody defects, unspec act', 'ICD10_2010'), +('D81', 'Combined immunodeficiencies', 'ICD10_2010'), +('D81.0', 'Severe combined immunodeficiency with reticular dysgenesis', 'ICD10_2010'), +('D81.1', 'Severe combined immunodef with low t- and b-cell numbers', 'ICD10_2010'), +('D81.2', 'Severe combined immunodef with low or normal b-cell numbers', 'ICD10_2010'), +('D81.3', 'Adenosine deaminase [ada] deficiency', 'ICD10_2010'), +('D81.4', 'Nezelof\'s syndrome', 'ICD10_2010'), +('D81.5', 'Purine nucleoside phosphorylase [pnp] deficiency', 'ICD10_2010'), +('D81.6', 'Major histocompatibility complex class i deficiency', 'ICD10_2010'), +('D81.7', 'Major histocompatibility complex class ii deficiency', 'ICD10_2010'), +('D81.8', 'Other combined immunodeficiencies', 'ICD10_2010'), +('D81.9', 'Combined immunodeficiency, unspecified', 'ICD10_2010'), +('D82', 'Immunodeficiency associated with other major defects', 'ICD10_2010'), +('D82.0', 'Wiskott-aldrich syndrome', 'ICD10_2010'), +('D82.1', 'Di george\'s syndrome', 'ICD10_2010'), +('D82.2', 'Immunodeficiency with short-limbed stature', 'ICD10_2010'), +('D82.3', 'Immunodef follow hereditary defect respon epstein-barr virus', 'ICD10_2010'), +('D82.4', 'Hyperimmunoglobulin e [ige] syndrome', 'ICD10_2010'), +('D82.8', 'Immunodeficiency assoc with other specified major defects', 'ICD10_2010'), +('D82.9', 'Immunodeficiency associated with major defect, unspecified', 'ICD10_2010'), +('D83', 'Common variable immunodeficiency', 'ICD10_2010'), +('D83.0', 'Com var immunodef with predom abn b-cell numb and function', 'ICD10_2010'), +('D83.1', 'Common var immunodef predom immunoregulatory t-cell disorder', 'ICD10_2010'), +('D83.2', 'Common variable immunodef autoantibodies to b- or t-cells', 'ICD10_2010'), +('D83.8', 'Other common variable immunodeficiencies', 'ICD10_2010'), +('D83.9', 'Common variable immunodeficiency, unspecified', 'ICD10_2010'), +('D84', 'Other immunodeficiencies', 'ICD10_2010'), +('D84.0', 'Lymphocyte function antigen-1 [lfa-1] defect', 'ICD10_2010'), +('D84.1', 'Defects in the complement system', 'ICD10_2010'), +('D84.8', 'Other specified immunodeficiencies', 'ICD10_2010'), +('D84.9', 'Immunodeficiency, unspecified', 'ICD10_2010'), +('D86', 'Sarcoidosis', 'ICD10_2010'), +('D86.0', 'Sarcoidosis of lung', 'ICD10_2010'), +('D86.1', 'Sarcoidosis of lymph nodes', 'ICD10_2010'), +('D86.2', 'Sarcoidosis of lung with sarcoidosis of lymph nodes', 'ICD10_2010'), +('D86.3', 'Sarcoidosis of skin', 'ICD10_2010'), +('D86.8', 'Sarcoidosis of other and combined sites', 'ICD10_2010'), +('D86.9', 'Sarcoidosis, unspecified', 'ICD10_2010'), +('D89', 'Other disorders involving the immune mechanism, not elsewhere classified', 'ICD10_2010'), +('D89.0', 'Polyclonal hypergammaglobulinaemia', 'ICD10_2010'), +('D89.1', 'Cryoglobulinaemia', 'ICD10_2010'), +('D89.2', 'Hypergammaglobulinaemia, unspecified', 'ICD10_2010'), +('D89.3', 'Immune reconstitution syndrome', 'ICD10_2010'), +('D89.8', 'Oth specified disorders involving the immune mechanism nec', 'ICD10_2010'), +('D89.9', 'Disorder involving the immune mechanism, unspecified', 'ICD10_2010'), +('E00', 'Congenital iodine-deficiency syndrome', 'ICD10_2010'), +('E00.0', 'Congenital iodine-deficiency syndrome, neurological type', 'ICD10_2010'), +('E00.1', 'Congenital iodine-deficiency syndrome, myxoedematous type', 'ICD10_2010'), +('E00.2', 'Congenital iodine-deficiency syndrome, mixed type', 'ICD10_2010'), +('E00.9', 'Congenital iodine-deficiency syndrome, unspecified', 'ICD10_2010'), +('E01', 'Iodine-deficiency-related thyroid disorders and allied conditions', 'ICD10_2010'), +('E01.0', 'Iodine-deficiency-related diffuse (endemic) goitre', 'ICD10_2010'), +('E01.1', 'Iodine-deficiency-related multinodular (endemic) goitre', 'ICD10_2010'), +('E01.2', 'Iodine-deficiency-related (endemic) goitre, unspecified', 'ICD10_2010'), +('E01.8', 'Other iodine-def-related thyroid disorders and allied conds', 'ICD10_2010'), +('E02', 'Subclinical iodine-deficiency hypothyroidism', 'ICD10_2010'), +('E03', 'Other hypothyroidism', 'ICD10_2010'), +('E03.0', 'Congenital hypothyroidism with diffuse goitre', 'ICD10_2010'), +('E03.1', 'Congenital hypothyroidism without goitre', 'ICD10_2010'), +('E03.2', 'Hypothyroidism due medicaments and oth exogenous substances', 'ICD10_2010'), +('E03.3', 'Postinfectious hypothyroidism', 'ICD10_2010'), +('E03.4', 'Atrophy of thyroid (acquired)', 'ICD10_2010'), +('E03.5', 'Myxoedema coma', 'ICD10_2010'), +('E03.8', 'Other specified hypothyroidism', 'ICD10_2010'), +('E03.9', 'Hypothyroidism, unspecified', 'ICD10_2010'), +('E04', 'Other nontoxic goitre', 'ICD10_2010'), +('E04.0', 'Nontoxic diffuse goitre', 'ICD10_2010'), +('E04.1', 'Nontoxic single thyroid nodule', 'ICD10_2010'), +('E04.2', 'Nontoxic multinodular goitre', 'ICD10_2010'), +('E04.8', 'Other specified nontoxic goitre', 'ICD10_2010'), +('E04.9', 'Nontoxic goitre, unspecified', 'ICD10_2010'), +('E05', 'Thyrotoxicosis [hyperthyroidism]', 'ICD10_2010'), +('E05.0', 'Thyrotoxicosis with diffuse goitre', 'ICD10_2010'), +('E05.1', 'Thyrotoxicosis with toxic single thyroid nodule', 'ICD10_2010'), +('E05.2', 'Thyrotoxicosis with toxic multinodular goitre', 'ICD10_2010'), +('E05.3', 'Thyrotoxicosis from ectopic thyroid tissue', 'ICD10_2010'), +('E05.4', 'Thyrotoxicosis factitia', 'ICD10_2010'), +('E05.5', 'Thyroid crisis or storm', 'ICD10_2010'), +('E05.8', 'Other thyrotoxicosis', 'ICD10_2010'), +('E05.9', 'Thyrotoxicosis, unspecified', 'ICD10_2010'), +('E06', 'Thyroiditis', 'ICD10_2010'), +('E06.0', 'Acute thyroiditis', 'ICD10_2010'), +('E06.1', 'Subacute thyroiditis', 'ICD10_2010'), +('E06.2', 'Chronic thyroiditis with transient thyrotoxicosis', 'ICD10_2010'), +('E06.3', 'Autoimmune thyroiditis', 'ICD10_2010'), +('E06.4', 'Drug-induced thyroiditis', 'ICD10_2010'), +('E06.5', 'Other chronic thyroiditis', 'ICD10_2010'), +('E06.9', 'Thyroiditis, unspecified', 'ICD10_2010'), +('E07', 'Other disorders of thyroid', 'ICD10_2010'), +('E07.0', 'Hypersecretion of calcitonin', 'ICD10_2010'), +('E07.1', 'Dyshormogenetic goitre', 'ICD10_2010'), +('E07.8', 'Other specified disorders of thyroid', 'ICD10_2010'), +('E07.9', 'Disorder of thyroid, unspecified', 'ICD10_2010'), +('E10', 'Insulin-dependent diabetes mellitus', 'ICD10_2010'), +('E10.0', 'Insulin-dependent diabetes mellitus with coma', 'ICD10_2010'), +('E10.1', 'Insulin-dependent diabetes mellitus with ketoacidosis', 'ICD10_2010'), +('E10.2', 'Insulin-dependent diabetes mellitus with renal complications', 'ICD10_2010'), +('E10.3', 'Insulin-dependent diabetes mellitus with ophthalmic complications', 'ICD10_2010'), +('E10.4', 'Insulin-dependent diabetes mellitus with neurological complications', 'ICD10_2010'), +('E10.5', 'Insulin-dependent diabetes mellitus with peripheral circulatory complications', 'ICD10_2010'), +('E10.6', 'Insulin-dependent diabetes mellitus with other specified complications', 'ICD10_2010'), +('E10.7', 'Insulin-dependent diabetes mellitus with multiple complications', 'ICD10_2010'), +('E10.8', 'Insulin-dependent diabetes mellitus with unspecified complications', 'ICD10_2010'), +('E10.9', 'Insulin-dependent diabetes mellitus without complications', 'ICD10_2010'), +('E11', 'Non-insulin-dependent diabetes mellitus', 'ICD10_2010'), +('E11.0', 'Non-insulin-dependent diabetes mellitus with coma', 'ICD10_2010'), +('E11.1', 'Non-insulin-dependent diabetes mellitus with ketoacidosis', 'ICD10_2010'), +('E11.2', 'Non-insulin-dependent diabetes mellitus with renal complications', 'ICD10_2010'), +('E11.3', 'Non-insulin-dependent diabetes mellitus with ophthalmic complications', 'ICD10_2010'), +('E11.4', 'Non-insulin-dependent diabetes mellitus with neurological complications', 'ICD10_2010'), +('E11.5', 'Non-insulin-dependent diabetes mellitus with peripheral circulatory complications', 'ICD10_2010'), +('E11.6', 'Non-insulin-dependent diabetes mellitus with other specified complications', 'ICD10_2010'), +('E11.7', 'Non-insulin-dependent diabetes mellitus with multiple complications', 'ICD10_2010'), +('E11.8', 'Non-insulin-dependent diabetes mellitus with unspecified complications', 'ICD10_2010'), +('E11.9', 'Non-insulin-dependent diabetes mellitus without complications', 'ICD10_2010'), +('E12', 'Malnutrition-related diabetes mellitus', 'ICD10_2010'), +('E12.0', 'Malnutrition-related diabetes mellitus with coma', 'ICD10_2010'), +('E12.1', 'Malnutrition-related diabetes mellitus with ketoacidosis', 'ICD10_2010'), +('E12.2', 'Malnutrition-related diabetes mellitus with renal complications', 'ICD10_2010'), +('E12.3', 'Malnutrition-related diabetes mellitus with ophthalmic complications', 'ICD10_2010'), +('E12.4', 'Malnutrition-related diabetes mellitus with neurological complications', 'ICD10_2010'), +('E12.5', 'Malnutrition-related diabetes mellitus with peripheral circulatory complications', 'ICD10_2010'), +('E12.6', 'Malnutrition-related diabetes mellitus with other specified complications', 'ICD10_2010'), +('E12.7', 'Malnutrition-related diabetes mellitus with multiple complications', 'ICD10_2010'), +('E12.8', 'Malnutrition-related diabetes mellitus with unspecified complications', 'ICD10_2010'), +('E12.9', 'Malnutrition-related diabetes mellitus without complications', 'ICD10_2010'), +('E13', 'Other specified diabetes mellitus', 'ICD10_2010'), +('E13.0', 'Other specified diabetes mellitus with coma', 'ICD10_2010'), +('E13.1', 'Other specified diabetes mellitus with ketoacidosis', 'ICD10_2010'), +('E13.2', 'Other specified diabetes mellitus with renal complications', 'ICD10_2010'), +('E13.3', 'Other specified diabetes mellitus with ophthalmic complications', 'ICD10_2010'), +('E13.4', 'Other specified diabetes mellitus with neurological complications', 'ICD10_2010'), +('E13.5', 'Other specified diabetes mellitus with peripheral circulatory complications', 'ICD10_2010'), +('E13.6', 'Other specified diabetes mellitus with other specified complications', 'ICD10_2010'), +('E13.7', 'Other specified diabetes mellitus with multiple complications', 'ICD10_2010'), +('E13.8', 'Other specified diabetes mellitus with unspecified complications', 'ICD10_2010'), +('E13.9', 'Other specified diabetes mellitus without complications', 'ICD10_2010'), +('E14', 'Unspecified diabetes mellitus', 'ICD10_2010'), +('E14.0', 'Unspecified diabetes mellitus with coma', 'ICD10_2010'), +('E14.1', 'Unspecified diabetes mellitus with ketoacidosis', 'ICD10_2010'), +('E14.2', 'Unspecified diabetes mellitus with renal complications', 'ICD10_2010'), +('E14.3', 'Unspecified diabetes mellitus with ophthalmic complications', 'ICD10_2010'), +('E14.4', 'Unspecified diabetes mellitus with neurological complications', 'ICD10_2010'), +('E14.5', 'Unspecified diabetes mellitus with peripheral circulatory complications', 'ICD10_2010'), +('E14.6', 'Unspecified diabetes mellitus with other specified complications', 'ICD10_2010'), +('E14.7', 'Unspecified diabetes mellitus with multiple complications', 'ICD10_2010'), +('E14.8', 'Unspecified diabetes mellitus with unspecified complications', 'ICD10_2010'), +('E14.9', 'Unspecified diabetes mellitus without complications', 'ICD10_2010'), +('E15', 'Nondiabetic hypoglycaemic coma', 'ICD10_2010'), +('E16', 'Other disorders of pancreatic internal secretion', 'ICD10_2010'), +('E16.0', 'Drug-induced hypoglycaemia without coma', 'ICD10_2010'), +('E16.1', 'Other hypoglycaemia', 'ICD10_2010'), +('E16.2', 'Hypoglycaemia, unspecified', 'ICD10_2010'), +('E16.3', 'Increased secretion of glucagon', 'ICD10_2010'), +('E16.4', 'Abnormal secretion of gastrin', 'ICD10_2010'), +('E16.8', 'Other specified disorders of pancreatic internal secretion', 'ICD10_2010'), +('E16.9', 'Disorder of pancreatic internal secretion, unspecified', 'ICD10_2010'), +('E20', 'Hypoparathyroidism', 'ICD10_2010'), +('E20.0', 'Idiopathic hypoparathyroidism', 'ICD10_2010'), +('E20.1', 'Pseudohypoparathyroidism', 'ICD10_2010'), +('E20.8', 'Other hypoparathyroidism', 'ICD10_2010'), +('E20.9', 'Hypoparathyroidism, unspecified', 'ICD10_2010'), +('E21', 'Hyperparathyroidism and other disorders of parathyroid gland', 'ICD10_2010'), +('E21.0', 'Primary hyperparathyroidism', 'ICD10_2010'), +('E21.1', 'Secondary hyperparathyroidism, not elsewhere classified', 'ICD10_2010'), +('E21.2', 'Other hyperparathyroidism', 'ICD10_2010'), +('E21.3', 'Hyperparathyroidism, unspecified', 'ICD10_2010'), +('E21.4', 'Other specified disorders of parathyroid gland', 'ICD10_2010'), +('E21.5', 'Disorder of parathyroid gland, unspecified', 'ICD10_2010'), +('E22', 'Hyperfunction of pituitary gland', 'ICD10_2010'), +('E22.0', 'Acromegaly and pituitary gigantism', 'ICD10_2010'), +('E22.1', 'Hyperprolactinaemia', 'ICD10_2010'), +('E22.2', 'Syndrome of inappropriate secretion of antidiuretic hormone', 'ICD10_2010'), +('E22.8', 'Other hyperfunction of pituitary gland', 'ICD10_2010'), +('E22.9', 'Hyperfunction of pituitary gland, unspecified', 'ICD10_2010'), +('E23', 'Hypofunction and other disorders of pituitary gland', 'ICD10_2010'), +('E23.0', 'Hypopituitarism', 'ICD10_2010'), +('E23.1', 'Drug-induced hypopituitarism', 'ICD10_2010'), +('E23.2', 'Diabetes insipidus', 'ICD10_2010'), +('E23.3', 'Hypothalamic dysfunction, not elsewhere classified', 'ICD10_2010'), +('E23.6', 'Other disorders of pituitary gland', 'ICD10_2010'), +('E23.7', 'Disorder of pituitary gland, unspecified', 'ICD10_2010'), +('E24', 'Cushing syndrome', 'ICD10_2010'), +('E24.0', 'Pituitary-dependent cushing\'s disease', 'ICD10_2010'), +('E24.1', 'Nelson\'s syndrome', 'ICD10_2010'), +('E24.2', 'Drug-induced cushing\'s syndrome', 'ICD10_2010'), +('E24.3', 'Ectopic acth syndrome', 'ICD10_2010'), +('E24.4', 'Alcohol-induced pseudo-cushing\'s syndrome', 'ICD10_2010'), +('E24.8', 'Other cushing\'s syndrome', 'ICD10_2010'), +('E24.9', 'Cushing\'s syndrome, unspecified', 'ICD10_2010'), +('E25', 'Adrenogenital disorders', 'ICD10_2010'), +('E25.0', 'Congenital adrenogenital disorders associated enzyme def', 'ICD10_2010'), +('E25.8', 'Other adrenogenital disorders', 'ICD10_2010'), +('E25.9', 'Adrenogenital disorder, unspecified', 'ICD10_2010'), +('E26', 'Hyperaldosteronism', 'ICD10_2010'), +('E26.0', 'Primary hyperaldosteronism', 'ICD10_2010'), +('E26.1', 'Secondary hyperaldosteronism', 'ICD10_2010'), +('E26.8', 'Other hyperaldosteronism', 'ICD10_2010'), +('E26.9', 'Hyperaldosteronism, unspecified', 'ICD10_2010'), +('E27', 'Other disorders of adrenal gland', 'ICD10_2010'), +('E27.0', 'Other adrenocortical overactivity', 'ICD10_2010'), +('E27.1', 'Primary adrenocortical insufficiency', 'ICD10_2010'), +('E27.2', 'Addisonian crisis', 'ICD10_2010'), +('E27.3', 'Drug-induced adrenocortical insufficiency', 'ICD10_2010'), +('E27.4', 'Other and unspecified adrenocortical insufficiency', 'ICD10_2010'), +('E27.5', 'Adrenomedullary hyperfunction', 'ICD10_2010'), +('E27.8', 'Other specified disorders of adrenal gland', 'ICD10_2010'), +('E27.9', 'Disorder of adrenal gland, unspecified', 'ICD10_2010'), +('E28', 'Ovarian dysfunction', 'ICD10_2010'), +('E28.0', 'Estrogen excess', 'ICD10_2010'), +('E28.1', 'Androgen excess', 'ICD10_2010'), +('E28.2', 'Polycystic ovarian syndrome', 'ICD10_2010'), +('E28.3', 'Primary ovarian failure', 'ICD10_2010'), +('E28.8', 'Other ovarian dysfunction', 'ICD10_2010'), +('E28.9', 'Ovarian dysfunction, unspecified', 'ICD10_2010'), +('E29', 'Testicular dysfunction', 'ICD10_2010'), +('E29.0', 'Testicular hyperfunction', 'ICD10_2010'), +('E29.1', 'Testicular hypofunction', 'ICD10_2010'), +('E29.8', 'Other testicular dysfunction', 'ICD10_2010'), +('E29.9', 'Testicular dysfunction, unspecified', 'ICD10_2010'), +('E30', 'Disorders of puberty, not elsewhere classified', 'ICD10_2010'), +('E30.0', 'Delayed puberty', 'ICD10_2010'), +('E30.1', 'Precocious puberty', 'ICD10_2010'), +('E30.8', 'Other disorders of puberty', 'ICD10_2010'), +('E30.9', 'Disorder of puberty, unspecified', 'ICD10_2010'), +('E31', 'Polyglandular dysfunction', 'ICD10_2010'), +('E31.0', 'Autoimmune polyglandular failure', 'ICD10_2010'), +('E31.1', 'Polyglandular hyperfunction', 'ICD10_2010'), +('E31.8', 'Other polyglandular dysfunction', 'ICD10_2010'), +('E31.9', 'Polyglandular dysfunction, unspecified', 'ICD10_2010'), +('E32', 'Diseases of thymus', 'ICD10_2010'), +('E32.0', 'Persistent hyperplasia of thymus', 'ICD10_2010'), +('E32.1', 'Abscess of thymus', 'ICD10_2010'), +('E32.8', 'Other diseases of thymus', 'ICD10_2010'), +('E32.9', 'Disease of thymus, unspecified', 'ICD10_2010'), +('E34', 'Other endocrine disorders', 'ICD10_2010'), +('E34.0', 'Carcinoid syndrome', 'ICD10_2010'), +('E34.1', 'Other hypersecretion of intestinal hormones', 'ICD10_2010'), +('E34.2', 'Ectopic hormone secretion, not elsewhere classified', 'ICD10_2010'), +('E34.3', 'Short stature, not elsewhere classified', 'ICD10_2010'), +('E34.4', 'Constitutional tall stature', 'ICD10_2010'), +('E34.5', 'Androgen resistance syndrome', 'ICD10_2010'), +('E34.8', 'Other specified endocrine disorders', 'ICD10_2010'), +('E34.9', 'Endocrine disorder, unspecified', 'ICD10_2010'), +('E35', 'Disorders of endocrine glands in diseases classified elsewhere', 'ICD10_2010'), +('E35.0', 'Disorders of thyroid gland in diseases classified elsewhere', 'ICD10_2010'), +('E35.1', 'Disorders of adrenal glands in diseases classified elsewhere', 'ICD10_2010'), +('E35.8', 'Disorders other endocrine glands in disease class elsewhere', 'ICD10_2010'), +('E40', 'Kwashiorkor', 'ICD10_2010'), +('E41', 'Nutritional marasmus', 'ICD10_2010'), +('E42', 'Marasmic kwashiorkor', 'ICD10_2010'), +('E43', 'Unspecified severe protein-energy malnutrition', 'ICD10_2010'), +('E44', 'Protein-energy malnutrition of moderate and mild degree', 'ICD10_2010'), +('E44.0', 'Moderate protein-energy malnutrition', 'ICD10_2010'), +('E44.1', 'Mild protein-energy malnutrition', 'ICD10_2010'), +('E45', 'Retarded development following protein-energy malnutrition', 'ICD10_2010'), +('E46', 'Unspecified protein-energy malnutrition', 'ICD10_2010'), +('E50', 'Vitamin A deficiency', 'ICD10_2010'), +('E50.0', 'Vitamin A deficiency with conjunctival xerosis', 'ICD10_2010'), +('E50.1', 'Vitamin A deficiency with bitot\'s spot and conjunctival xerosis', 'ICD10_2010'), +('E50.2', 'Vitamin A deficiency with corneal xerosis', 'ICD10_2010'), +('E50.3', 'Vitamin A deficiency with corneal ulceration and xerosis', 'ICD10_2010'), +('E50.4', 'Vitamin A deficiency with keratomalacia', 'ICD10_2010'), +('E50.5', 'Vitamin A deficiency with night blindness', 'ICD10_2010'), +('E50.6', 'Vitamin A deficiency with xerophthalmic scars of cornea', 'ICD10_2010'), +('E50.7', 'Other ocular manifestations of vitamin A deficiency', 'ICD10_2010'), +('E50.8', 'Other manifestations of vitamin A deficiency', 'ICD10_2010'), +('E50.9', 'Vitamin A deficiency, unspecified', 'ICD10_2010'), +('E51', 'Thiamine deficiency', 'ICD10_2010'), +('E51.1', 'Beriberi', 'ICD10_2010'), +('E51.2', 'Wernicke\'s encephalopathy', 'ICD10_2010'), +('E51.8', 'Other manifestations of thiamine deficiency', 'ICD10_2010'), +('E51.9', 'Thiamine deficiency, unspecified', 'ICD10_2010'), +('E52', 'Niacin deficiency [pellagra]', 'ICD10_2010'), +('E53', 'Deficiency of other B group vitamins', 'ICD10_2010'), +('E53.0', 'Riboflavin deficiency', 'ICD10_2010'), +('E53.1', 'Pyridoxine deficiency', 'ICD10_2010'), +('E53.8', 'Deficiency of other specified B group vitamins', 'ICD10_2010'), +('E53.9', 'Vitamin B deficiency, unspecified', 'ICD10_2010'), +('E54', 'Ascorbic acid deficiency', 'ICD10_2010'), +('E55', 'Vitamin D deficiency', 'ICD10_2010'), +('E55.0', 'Rickets, active', 'ICD10_2010'), +('E55.9', 'Vitamin D deficiency, unspecified', 'ICD10_2010'), +('E56', 'Other vitamin deficiencies', 'ICD10_2010'), +('E56.0', 'Deficiency of vitamin E', 'ICD10_2010'), +('E56.1', 'Deficiency of vitamin K', 'ICD10_2010'), +('E56.8', 'Deficiency of other vitamins', 'ICD10_2010'), +('E56.9', 'Vitamin deficiency, unspecified', 'ICD10_2010'), +('E58', 'Dietary calcium deficiency', 'ICD10_2010'), +('E59', 'Dietary selenium deficiency', 'ICD10_2010'), +('E60', 'Dietary zinc deficiency', 'ICD10_2010'), +('E61', 'Deficiency of other nutrient elements', 'ICD10_2010'), +('E61.0', 'Copper deficiency', 'ICD10_2010'), +('E61.1', 'Iron deficiency', 'ICD10_2010'), +('E61.2', 'Magnesium deficiency', 'ICD10_2010'), +('E61.3', 'Manganese deficiency', 'ICD10_2010'), +('E61.4', 'Chromium deficiency', 'ICD10_2010'), +('E61.5', 'Molybdenum deficiency', 'ICD10_2010'), +('E61.6', 'Vanadium deficiency', 'ICD10_2010'), +('E61.7', 'Deficiency of multiple nutrient elements', 'ICD10_2010'), +('E61.8', 'Deficiency of other specified nutrient elements', 'ICD10_2010'), +('E61.9', 'Deficiency of nutrient element, unspecified', 'ICD10_2010'), +('E63', 'Other nutritional deficiencies', 'ICD10_2010'), +('E63.0', 'Essential fatty acid [efa] deficiency', 'ICD10_2010'), +('E63.1', 'Imbalance of constituents of food intake', 'ICD10_2010'), +('E63.8', 'Other specified nutritional deficiencies', 'ICD10_2010'), +('E63.9', 'Nutritional deficiency, unspecified', 'ICD10_2010'), +('E64', 'Sequelae of malnutrition and other nutritional deficiencies', 'ICD10_2010'), +('E64.0', 'Sequelae of protein-energy malnutrition', 'ICD10_2010'), +('E64.1', 'Sequelae of vitamin A deficiency', 'ICD10_2010'), +('E64.2', 'Sequelae of vitamin C deficiency', 'ICD10_2010'), +('E64.3', 'Sequelae of rickets', 'ICD10_2010'), +('E64.8', 'Sequelae of other nutritional deficiencies', 'ICD10_2010'), +('E64.9', 'Sequelae of unspecified nutritional deficiency', 'ICD10_2010'), +('E65', 'Localized adiposity', 'ICD10_2010'), +('E66', 'Obesity', 'ICD10_2010'), +('E66.0', 'Obesity due to excess calories', 'ICD10_2010'), +('E66.1', 'Drug-induced obesity', 'ICD10_2010'), +('E66.2', 'Extreme obesity with alveolar hypoventilation', 'ICD10_2010'), +('E66.8', 'Other obesity', 'ICD10_2010'), +('E66.9', 'Obesity, unspecified', 'ICD10_2010'), +('E67', 'Other hyperalimentation', 'ICD10_2010'), +('E67.0', 'Hypervitaminosis A', 'ICD10_2010'), +('E67.1', 'Hypercarotenaemia', 'ICD10_2010'), +('E67.2', 'Megavitamin-B6 syndrome', 'ICD10_2010'), +('E67.3', 'Hypervitaminosis D', 'ICD10_2010'), +('E67.8', 'Other specified hyperalimentation', 'ICD10_2010'), +('E68', 'Sequelae of hyperalimentation', 'ICD10_2010'), +('E70', 'Disorders of aromatic amino-acid metabolism', 'ICD10_2010'), +('E70.0', 'Classical phenylketonuria', 'ICD10_2010'), +('E70.1', 'Other hyperphenylalaninaemias', 'ICD10_2010'), +('E70.2', 'Disorders of tyrosine metabolism', 'ICD10_2010'), +('E70.3', 'Albinism', 'ICD10_2010'), +('E70.8', 'Other disorders of aromatic amino-acid metabolism', 'ICD10_2010'), +('E70.9', 'Disorder of aromatic amino-acid metabolism, unspecified', 'ICD10_2010'), +('E71', 'Disorders of branched-chain amino-acid metabolism and fatty-acid metabolism', 'ICD10_2010'), +('E71.0', 'Maple-syrup-urine disease', 'ICD10_2010'), +('E71.1', 'Other disorders of branched-chain amino-acid metabolism', 'ICD10_2010'), +('E71.2', 'Disorder of branched-chain amino-acid metabolism, unspec act', 'ICD10_2010'), +('E71.3', 'Disorders of fatty-acid metabolism', 'ICD10_2010'), +('E72', 'Other disorders of amino-acid metabolism', 'ICD10_2010'), +('E72.0', 'Disorders of amino-acid transport', 'ICD10_2010'), +('E72.1', 'Disorders of sulfur-bearing amino-acid metabolism', 'ICD10_2010'), +('E72.2', 'Disorders of urea cycle metabolism', 'ICD10_2010'), +('E72.3', 'Disorders of lysine and hydroxylysine metabolism', 'ICD10_2010'), +('E72.4', 'Disorders of ornithine metabolism', 'ICD10_2010'), +('E72.5', 'Disorders of glycine metabolism', 'ICD10_2010'), +('E72.8', 'Other specified disorders of amino-acid metabolism', 'ICD10_2010'), +('E72.9', 'Disorder of amino-acid metabolism, unspecified', 'ICD10_2010'), +('E73', 'Lactose intolerance', 'ICD10_2010'), +('E73.0', 'Congenital lactase deficiency', 'ICD10_2010'), +('E73.1', 'Secondary lactase deficiency', 'ICD10_2010'), +('E73.8', 'Other lactose intolerance', 'ICD10_2010'), +('E73.9', 'Lactose intolerance, unspecified', 'ICD10_2010'), +('E74', 'Other disorders of carbohydrate metabolism', 'ICD10_2010'), +('E74.0', 'Glycogen storage disease', 'ICD10_2010'), +('E74.1', 'Disorders of fructose metabolism', 'ICD10_2010'), +('E74.2', 'Disorders of galactose metabolism', 'ICD10_2010'), +('E74.3', 'Other disorders of intestinal carbohydrate absorption', 'ICD10_2010'), +('E74.4', 'Disorders of pyruvate metabolism and gluconeogenesis', 'ICD10_2010'), +('E74.8', 'Other specified disorders of carbohydrate metabolism', 'ICD10_2010'), +('E74.9', 'Disorder of carbohydrate metabolism, unspecified', 'ICD10_2010'), +('E75', 'Disorders of sphingolipid metabolism and other lipid storage disorders', 'ICD10_2010'), +('E75.0', 'Gm2 gangliosidosis', 'ICD10_2010'), +('E75.1', 'Other gangliosidosis', 'ICD10_2010'), +('E75.2', 'Other sphingolipidosis', 'ICD10_2010'), +('E75.3', 'Sphingolipidosis, unspecified', 'ICD10_2010'), +('E75.4', 'Neuronal ceroid lipofuscinosis', 'ICD10_2010'), +('E75.5', 'Other lipid storage disorders', 'ICD10_2010'), +('E75.6', 'Lipid storage disorder, unspecified', 'ICD10_2010'), +('E76', 'Disorders of glycosaminoglycan metabolism', 'ICD10_2010'), +('E76.0', 'Mucopolysaccharidosis, type i', 'ICD10_2010'), +('E76.1', 'Mucopolysaccharidosis, type ii', 'ICD10_2010'), +('E76.2', 'Other mucopolysaccharidoses', 'ICD10_2010'); +INSERT INTO `icd10` (`ID_ICD10`, `Diagnosa`, `Versi_ICD10`) VALUES +('E76.3', 'Mucopolysaccharidosis, unspecified', 'ICD10_2010'), +('E76.8', 'Other disorders of glucosaminoglycan metabolism', 'ICD10_2010'), +('E76.9', 'Disorder of glucosaminoglycan metabolism, unspecified', 'ICD10_2010'), +('E77', 'Disorders of glycoprotein metabolism', 'ICD10_2010'), +('E77.0', 'Defects in post-translational modif\'n of lysosomal enzymes', 'ICD10_2010'), +('E77.1', 'Defects in glycoprotein degradation', 'ICD10_2010'), +('E77.8', 'Other disorders of glycoprotein metabolism', 'ICD10_2010'), +('E77.9', 'Disorder of glycoprotein metabolism, unspecified', 'ICD10_2010'), +('E78', 'Disorders of lipoprotein metabolism and other lipidaemias', 'ICD10_2010'), +('E78.0', 'Pure hypercholesterolaemia', 'ICD10_2010'), +('E78.1', 'Pure hyperglyceridaemia', 'ICD10_2010'), +('E78.2', 'Mixed hyperlipidaemia', 'ICD10_2010'), +('E78.3', 'Hyperchylomicronaemia', 'ICD10_2010'), +('E78.4', 'Other hyperlipidaemia', 'ICD10_2010'), +('E78.5', 'Hyperlipidaemia, unspecified', 'ICD10_2010'), +('E78.6', 'Lipoprotein deficiency', 'ICD10_2010'), +('E78.8', 'Other disorders of lipoprotein metabolism', 'ICD10_2010'), +('E78.9', 'Disorder of lipoprotein metabolism, unspecified', 'ICD10_2010'), +('E79', 'Disorders of purine and pyrimidine metabolism', 'ICD10_2010'), +('E79.0', 'Hyperuricaem without sign inflamm arthritis+tophaceous dis', 'ICD10_2010'), +('E79.1', 'Lesch-Nyhan syndrome', 'ICD10_2010'), +('E79.8', 'Other disorders of purine and pyrimidine metabolism', 'ICD10_2010'), +('E79.9', 'Disorder of purine and pyrimidine metabolism, unspecified', 'ICD10_2010'), +('E80', 'Disorders of porphyrin and bilirubin metabolism', 'ICD10_2010'), +('E80.0', 'Hereditary erythropoietic porphyria', 'ICD10_2010'), +('E80.1', 'Porphyria cutanea tarda', 'ICD10_2010'), +('E80.2', 'Other porphyria', 'ICD10_2010'), +('E80.3', 'Defects of catalase and peroxidase', 'ICD10_2010'), +('E80.4', 'Gilbert\'s syndrome', 'ICD10_2010'), +('E80.5', 'Crigler-najjar syndrome', 'ICD10_2010'), +('E80.6', 'Other disorders of bilirubin metabolism', 'ICD10_2010'), +('E80.7', 'Disorder of bilirubin metabolism, unspecified', 'ICD10_2010'), +('E83', 'Disorders of mineral metabolism', 'ICD10_2010'), +('E83.0', 'Disorders of copper metabolism', 'ICD10_2010'), +('E83.1', 'Disorders of iron metabolism', 'ICD10_2010'), +('E83.2', 'Disorders of zinc metabolism', 'ICD10_2010'), +('E83.3', 'Disorders of phosphorus metabolism', 'ICD10_2010'), +('E83.4', 'Disorders of magnesium metabolism', 'ICD10_2010'), +('E83.5', 'Disorders of calcium metabolism', 'ICD10_2010'), +('E83.8', 'Other disorders of mineral metabolism', 'ICD10_2010'), +('E83.9', 'Disorder of mineral metabolism, unspecified', 'ICD10_2010'), +('E84', 'Cystic fibrosis', 'ICD10_2010'), +('E84.0', 'Cystic fibrosis with pulmonary manifestations', 'ICD10_2010'), +('E84.1', 'Cystic fibrosis with intestinal manifestations', 'ICD10_2010'), +('E84.8', 'Cystic fibrosis with other manifestations', 'ICD10_2010'), +('E84.9', 'Cystic fibrosis, unspecified', 'ICD10_2010'), +('E85', 'Amyloidosis', 'ICD10_2010'), +('E85.0', 'Non-neuropathic heredofamilial amyloidosis', 'ICD10_2010'), +('E85.1', 'Neuropathic heredofamilial amyloidosis', 'ICD10_2010'), +('E85.2', 'Heredofamilial amyloidosis, unspecified', 'ICD10_2010'), +('E85.3', 'Secondary systemic amyloidosis', 'ICD10_2010'), +('E85.4', 'Organ-limited amyloidosis', 'ICD10_2010'), +('E85.8', 'Other amyloidosis', 'ICD10_2010'), +('E85.9', 'Amyloidosis, unspecified', 'ICD10_2010'), +('E86', 'Volume depletion', 'ICD10_2010'), +('E87', 'Other disorders of fluid, electrolyte and acid-base balance', 'ICD10_2010'), +('E87.0', 'Hyperosmolality and hypernatraemia', 'ICD10_2010'), +('E87.1', 'Hypo-osmolality and hyponatraemia', 'ICD10_2010'), +('E87.2', 'Acidosis', 'ICD10_2010'), +('E87.3', 'Alkalosis', 'ICD10_2010'), +('E87.4', 'Mixed disorder of acid-base balance', 'ICD10_2010'), +('E87.5', 'Hyperkalaemia', 'ICD10_2010'), +('E87.6', 'Hypokalaemia', 'ICD10_2010'), +('E87.7', 'Fluid overload', 'ICD10_2010'), +('E87.8', 'Other disorders of electrolyte and fluid balance NEC', 'ICD10_2010'), +('E88', 'Other metabolic disorders', 'ICD10_2010'), +('E88.0', 'Disorders of plasma-protein metabolism NEC', 'ICD10_2010'), +('E88.1', 'Lipodystrophy, not elsewhere classified', 'ICD10_2010'), +('E88.2', 'Lipomatosis, not elsewhere classified', 'ICD10_2010'), +('E88.3', 'Tumour lysis syndrome', 'ICD10_2010'), +('E88.8', 'Other specified metabolic disorders', 'ICD10_2010'), +('E88.9', 'Metabolic disorder, unspecified', 'ICD10_2010'), +('E89', 'Postprocedural endocrine and metabolic disorders, not elsewhere classified', 'ICD10_2010'), +('E89.0', 'Postprocedural hypothyroidism', 'ICD10_2010'), +('E89.1', 'Postprocedural hypoinsulinaemia', 'ICD10_2010'), +('E89.2', 'Postprocedural hypoparathyroidism', 'ICD10_2010'), +('E89.3', 'Postprocedural hypopituitarism', 'ICD10_2010'), +('E89.4', 'Postprocedural ovarian failure', 'ICD10_2010'), +('E89.5', 'Postprocedural testicular hypofunction', 'ICD10_2010'), +('E89.6', 'Postprocedural adrenocortical(-medullary) hypofunction', 'ICD10_2010'), +('E89.8', 'Other postprocedural endocrine and metabolic disorders', 'ICD10_2010'), +('E89.9', 'Postprocedural endocrine and metabolic disorder, unspecified', 'ICD10_2010'), +('E90', 'Nutritional and metabolic disorders in diseases', 'ICD10_2010'), +('F00', 'Dementia in Alzheimer disease', 'ICD10_2010'), +('F00.0', 'Dementia in alzheimer\'s disease with early onset', 'ICD10_2010'), +('F00.1', 'Dementia in alzheimer\'s disease with late onset', 'ICD10_2010'), +('F00.2', 'Dementia in alzheimer\'s disease, atypical or mixed type', 'ICD10_2010'), +('F00.9', 'Dementia in alzheimer\'s disease, unspecified', 'ICD10_2010'), +('F01', 'Vascular dementia', 'ICD10_2010'), +('F01.0', 'Vascular dementia of acute onset', 'ICD10_2010'), +('F01.1', 'Multi-infarct dementia', 'ICD10_2010'), +('F01.2', 'Subcortical vascular dementia', 'ICD10_2010'), +('F01.3', 'Mixed cortical and subcortical vascular dementia', 'ICD10_2010'), +('F01.8', 'Other vascular dementia', 'ICD10_2010'), +('F01.9', 'Vascular dementia, unspecified', 'ICD10_2010'), +('F02', 'Dementia in other diseases classified elsewhere', 'ICD10_2010'), +('F02.0', 'Dementia in Pick\'s disease', 'ICD10_2010'), +('F02.1', 'Dementia in Creutzfeldt-Jakob disease', 'ICD10_2010'), +('F02.2', 'Dementia in Huntington\'s disease', 'ICD10_2010'), +('F02.3', 'Dementia in Parkinson\'s disease', 'ICD10_2010'), +('F02.4', 'Dementia in human immunodef virus [HIV] disease', 'ICD10_2010'), +('F02.8', 'Dementia in other specified diseases classified elsewhere', 'ICD10_2010'), +('F03', 'Unspecified dementia', 'ICD10_2010'), +('F04', 'Organic amnesic syndrome not induced alcohol/other psychoactive substances', 'ICD10_2010'), +('F05', 'Delirium, not induced by alcohol and other psychoactive substances', 'ICD10_2010'), +('F05.0', 'Delirium not superimposed on dementia, so described', 'ICD10_2010'), +('F05.1', 'Delirium superimposed on dementia', 'ICD10_2010'), +('F05.8', 'Other delirium', 'ICD10_2010'), +('F05.9', 'Delirium, unspecified', 'ICD10_2010'), +('F06', 'Other mental disorders due to brain damage and dysfunction and to physical disease', 'ICD10_2010'), +('F06.0', 'Organic hallucinosis', 'ICD10_2010'), +('F06.1', 'Organic catatonic disorder', 'ICD10_2010'), +('F06.2', 'Organic delusional [schizophrenia-like] disorder', 'ICD10_2010'), +('F06.3', 'Organic mood [affective] disorders', 'ICD10_2010'), +('F06.4', 'Organic anxiety disorder', 'ICD10_2010'), +('F06.5', 'Organic dissociative disorder', 'ICD10_2010'), +('F06.6', 'Organic emotionally labile [asthenic] disorder', 'ICD10_2010'), +('F06.7', 'Mild cognitive disorder', 'ICD10_2010'), +('F06.8', 'Other specified mental disorder brain damage and dysfunction/physcal disease', 'ICD10_2010'), +('F06.9', 'Unspecified mental disorder brain damage and dysfunction/physcal disease', 'ICD10_2010'), +('F07', 'Personality and behavioural disorders due to brain disease, damage and dysfunction', 'ICD10_2010'), +('F07.0', 'Organic personality disorder', 'ICD10_2010'), +('F07.1', 'Postencephalitic syndrome', 'ICD10_2010'), +('F07.2', 'Postconcussional syndrome', 'ICD10_2010'), +('F07.8', 'Other organ personality behavioural disorders due to brain disease, damage dysfunction', 'ICD10_2010'), +('F07.9', 'Unspecified organ personality behavioural disorder brain damage and dysfunction', 'ICD10_2010'), +('F09', 'Unspecified organic or symptomatic mental disorder', 'ICD10_2010'), +('F10', 'Mental and behavioural disorders due to use of alcohol', 'ICD10_2010'), +('F10.0', 'Mental & behavioural disorder due to use of alcohol: acute intoxication', 'ICD10_2010'), +('F10.1', 'Mental & behavioural disorder due to use of alcohol: harmful use', 'ICD10_2010'), +('F10.2', 'Mental & behavioural disorder due to use of alcohol: dependence syndrome', 'ICD10_2010'), +('F10.3', 'Mental & behavioural disorder due to use of alcohol: withdrawal state', 'ICD10_2010'), +('F10.4', 'Mental & behavioural disorder due to use of alcohol: withdrawl state with delirium', 'ICD10_2010'), +('F10.5', 'Mental & behavioural disorder due to use of alcohol: psychotic disorder', 'ICD10_2010'), +('F10.6', 'Mental & behavioural disorder due to use of alcohol: amnesic syndrome', 'ICD10_2010'), +('F10.7', 'Mental & behavioural disorder due to use of alcohol: residual & late-onset psychotic disorder', 'ICD10_2010'), +('F10.8', 'Mental & behavioural disorder due to use of alcohol: other mental & behavioural disorder', 'ICD10_2010'), +('F10.9', 'Mental & behavioural disorder due to use of alcohol: unspecified mental & behavioural disorder', 'ICD10_2010'), +('F11', 'Mental and behavioural disorders due to use of opioids', 'ICD10_2010'), +('F11.0', 'Mental & behavioural disorder due to use of opiods: acute intoxication', 'ICD10_2010'), +('F11.1', 'Mental & behavioural disorder due to use of opiods: harmful use', 'ICD10_2010'), +('F11.2', 'Mental & behavioural disorder due to use of opiods: dependence syndrome', 'ICD10_2010'), +('F11.3', 'Mental & behavioural disorder due to use of opiods: withdrawal state', 'ICD10_2010'), +('F11.4', 'Mental & behavioural disorder due to use of opiods: withdrawl state with delirium', 'ICD10_2010'), +('F11.5', 'Mental & behavioural disorder due to use of opiods: psychotic disorder', 'ICD10_2010'), +('F11.6', 'Mental & behavioural disorder due to use of opiods: amnesic syndrome', 'ICD10_2010'), +('F11.7', 'Mental & behavioural disorder due to use of opiods: residual & late-onset psychotic disorder', 'ICD10_2010'), +('F11.8', 'Mental & behavioural disorder due to use of opiods: other mental & behavioural disorder', 'ICD10_2010'), +('F11.9', 'Mental & behavioural disorder due to use of opiods: unspecified mental & behavioural disorder', 'ICD10_2010'), +('F12', 'Mental and behavioural disorders due to use of cannabinoids', 'ICD10_2010'), +('F12.0', 'Mental & behavioural disorder due to use of cannabinoids: acute intoxication', 'ICD10_2010'), +('F12.1', 'Mental & behavioural disorder due to use of cannabinoids: harmful use', 'ICD10_2010'), +('F12.2', 'Mental & behavioural disorder due to use of cannabinoids: dependence syndrome', 'ICD10_2010'), +('F12.3', 'Mental & behavioural disorder due to use of cannabinoids: withdrawal state', 'ICD10_2010'), +('F12.4', 'Mental & behavioural disorder due to use of cannabinoids: withdrawl state with delirium', 'ICD10_2010'), +('F12.5', 'Mental & behavioural disorder due to use of cannabinoids: psychotic disorder', 'ICD10_2010'), +('F12.6', 'Mental & behavioural disorder due to use of cannabinoids: amnesic syndrome', 'ICD10_2010'), +('F12.7', 'Mental & behavioural disorder due to use of cannabinoids: residual & late-onset psychotic disorder', 'ICD10_2010'), +('F12.8', 'Mental & behavioural disorder due to use of cannabinoids: other mental & behavioural disorder', 'ICD10_2010'), +('F12.9', 'Mental & behavioural disorder due to use of cannabinoids: unspecified mental & behavioural disorder', 'ICD10_2010'), +('F13', 'Mental and behavioural disorders due to use of sedatives or hypnotics', 'ICD10_2010'), +('F13.0', 'Mental & behavioural disorder due to use of sedatives or hypnotics: acute intoxication', 'ICD10_2010'), +('F13.1', 'Mental & behavioural disorder due to use of sedatives or hypnotics: harmful use', 'ICD10_2010'), +('F13.2', 'Mental & behavioural disorder due to use of sedatives or hypnotics: dependence syndrome', 'ICD10_2010'), +('F13.3', 'Mental & behavioural disorder due to use of sedatives or hypnotics: withdrawal state', 'ICD10_2010'), +('F13.4', 'Mental & behavioural disorder due to use of sedatives or hypnotics: withdrawl state with delirium', 'ICD10_2010'), +('F13.5', 'Mental & behavioural disorder due to use of sedatives or hypnotics: psychotic disorder', 'ICD10_2010'), +('F13.6', 'Mental & behavioural disorder due to use of sedatives or hypnotics: amnesic syndrome', 'ICD10_2010'), +('F13.7', 'Mental & behavioural disorder due to use of sedatives or hypnotics: residual & late-onset psychotic disorder', 'ICD10_2010'), +('F13.8', 'Mental & behavioural disorder due to use of sedatives or hypnotics: other mental & behavioural disorder', 'ICD10_2010'), +('F13.9', 'Mental & behavioural disorder due to use of sedatives or hypnotics: unspecified mental & behavioural disorder', 'ICD10_2010'), +('F14', 'Mental and behavioural disorders due to use of cocaine', 'ICD10_2010'), +('F14.0', 'Mental & behavioural disorder due to use of cocaine: acute intoxication', 'ICD10_2010'), +('F14.1', 'Mental & behavioural disorder due to use of cocaine: harmful use', 'ICD10_2010'), +('F14.2', 'Mental & behavioural disorder due to use of cocaine: dependence syndrome', 'ICD10_2010'), +('F14.3', 'Mental & behavioural disorder due to use of cocaine: withdrawal state', 'ICD10_2010'), +('F14.4', 'Mental & behavioural disorder due to use of cocaine: withdrawl state with delirium', 'ICD10_2010'), +('F14.5', 'Mental & behavioural disorder due to use of cocaine: psychotic disorder', 'ICD10_2010'), +('F14.6', 'Mental & behavioural disorder due to use of cocaine: amnesic syndrome', 'ICD10_2010'), +('F14.7', 'Mental & behavioural disorder due to use of cocaine: residual & late-onset psychotic disorder', 'ICD10_2010'), +('F14.8', 'Mental & behavioural disorder due to use of cocaine: other mental & behavioural disorder', 'ICD10_2010'), +('F14.9', 'Mental & behavioural disorder due to use of cocaine: unspecified mental & behavioural disorder', 'ICD10_2010'), +('F15', 'Mental and behavioural disorders due to use of other stimulants, including caffeine', 'ICD10_2010'), +('F15.0', 'Mental & behavioural disorder due to use of other stimulants, including caffeine: acute intoxication', 'ICD10_2010'), +('F15.1', 'Mental & behavioural disorder due to use of other stimulants, including caffeine: harmful use', 'ICD10_2010'), +('F15.2', 'Mental & behavioural disorder due to use of other stimulants, including caffeine: dependence syndrome', 'ICD10_2010'), +('F15.3', 'Mental & behavioural disorder due to use of other stimulants, including caffeine: withdrawal state', 'ICD10_2010'), +('F15.4', 'Mental & behavioural disorder due to use of other stimulants, including caffeine: withdrawl state with delirium', 'ICD10_2010'), +('F15.5', 'Mental & behavioural disorder due to use of other stimulants, including caffeine: psychotic disorder', 'ICD10_2010'), +('F15.6', 'Mental & behavioural disorder due to use of other stimulants, including caffeine: amnesic syndrome', 'ICD10_2010'), +('F15.7', 'Mental & behavioural disorder due to use of other stimulants, including caffeine: residual & late-onset psychotic disorder', 'ICD10_2010'), +('F15.8', 'Mental & behavioural disorder due to use of other stimulants, including caffeine: other mental & behavioural disorder', 'ICD10_2010'), +('F15.9', 'Mental & behavioural disorder due to use of other stimulants, including caffeine: unspecified mental & behavioural disorder', 'ICD10_2010'), +('F16', 'Mental and behavioural disorders due to use of hallucinogens', 'ICD10_2010'), +('F16.0', 'Mental & behavioural disorder due to use hallucinogens: acute intoxication', 'ICD10_2010'), +('F16.1', 'Mental & behavioural disorder due to use hallucinogens: harmful use', 'ICD10_2010'), +('F16.2', 'Mental & behavioural disorder due to use hallucinogens: dependence syndrome', 'ICD10_2010'), +('F16.3', 'Mental & behavioural disorder due to use hallucinogens: withdrawal state', 'ICD10_2010'), +('F16.4', 'Mental & behavioural disorder due to use hallucinogens: withdrawl state with delirium', 'ICD10_2010'), +('F16.5', 'Mental & behavioural disorder due to use hallucinogens: psychotic disorder', 'ICD10_2010'), +('F16.6', 'Mental & behavioural disorder due to use hallucinogens: amnesic syndrome', 'ICD10_2010'), +('F16.7', 'Mental & behavioural disorder due to use hallucinogens: residual & late-onset psychotic disorder', 'ICD10_2010'), +('F16.8', 'Mental & behavioural disorder due to use hallucinogens: other mental & behavioural disorder', 'ICD10_2010'), +('F16.9', 'Mental & behavioural disorder due to use hallucinogens: unspecified mental & behavioural disorder', 'ICD10_2010'), +('F17', 'Mental and behavioural disorders due to use of tobacco', 'ICD10_2010'), +('F17.0', 'Mental & behavioural disorder due of tobacco: acute intoxication', 'ICD10_2010'), +('F17.1', 'Mental & behavioural disorder due of tobacco: harmful use', 'ICD10_2010'), +('F17.2', 'Mental & behavioural disorder due of tobacco: dependence syndrome', 'ICD10_2010'), +('F17.3', 'Mental & behavioural disorder due of tobacco: withdrawal state', 'ICD10_2010'), +('F17.4', 'Mental & behavioural disorder due of tobacco: withdrawl state with delirium', 'ICD10_2010'), +('F17.5', 'Mental & behavioural disorder due of tobacco: psychotic disorder', 'ICD10_2010'), +('F17.6', 'Mental & behavioural disorder due of tobacco: amnesic syndrome', 'ICD10_2010'), +('F17.7', 'Mental & behavioural disorder due of tobacco: residual & late-onset psychotic disorder', 'ICD10_2010'), +('F17.8', 'Mental & behavioural disorder due of tobacco: other mental & behavioural disorder', 'ICD10_2010'), +('F17.9', 'Mental & behavioural disorder due of tobacco: unspecified mental & behavioural disorder', 'ICD10_2010'), +('F18', 'Mental and behavioural disorders due to use of volatile solvents', 'ICD10_2010'), +('F18.0', 'Mental & behavioural disorder due of volatile solvents: acute intoxication', 'ICD10_2010'), +('F18.1', 'Mental & behavioural disorder due of volatile solvents: harmful use', 'ICD10_2010'), +('F18.2', 'Mental & behavioural disorder due of volatile solvents: dependence syndrome', 'ICD10_2010'), +('F18.3', 'Mental & behavioural disorder due of volatile solvents: withdrawal state', 'ICD10_2010'), +('F18.4', 'Mental & behavioural disorder due of volatile solvents: withdrawl state with delirium', 'ICD10_2010'), +('F18.5', 'Mental & behavioural disorder due of volatile solvents: psychotic disorder', 'ICD10_2010'), +('F18.6', 'Mental & behavioural disorder due of volatile solvents: amnesic syndrome', 'ICD10_2010'), +('F18.7', 'Mental & behavioural disorder due of volatile solvents: residual & late-onset psychotic disorder', 'ICD10_2010'), +('F18.8', 'Mental & behavioural disorder due of volatile solvents: other mental & behavioural disorder', 'ICD10_2010'), +('F18.9', 'Mental & behavioural disorder due of volatile solvents: unspecified mental & behavioural disorder', 'ICD10_2010'), +('F19', 'Mental and behavioural disorders due to multiple drug use and use of other psychoactive substances', 'ICD10_2010'), +('F19.0', 'Mental & behavioural disorder due to multiple drug use and use of other psychoactive substances: acute intoxication', 'ICD10_2010'), +('F19.1', 'Mental & behavioural disorder due to multiple drug use and use of other psychoactive substances: harmful use', 'ICD10_2010'), +('F19.2', 'Mental & behavioural disorder due to multiple drug use and use of other psychoactive substances: dependence syndrome', 'ICD10_2010'), +('F19.3', 'Mental & behavioural disorder due to multiple drug use and use of other psychoactive substances: withdrawal state', 'ICD10_2010'), +('F19.4', 'Mental & behavioural disorder due to multiple drug use and use of other psychoactive substances: withdrawl state with delirium', 'ICD10_2010'), +('F19.5', 'Mental & behavioural disorder due to multiple drug use and use of other psychoactive substances: psychotic disorder', 'ICD10_2010'), +('F19.6', 'Mental & behavioural disorder due to multiple drug use and use of other psychoactive substances: amnesic syndrome', 'ICD10_2010'), +('F19.7', 'Mental & behavioural disorder due to multiple drug use and use of other psychoactive substances: residual & late-onset psychotic disorder', 'ICD10_2010'), +('F19.8', 'Mental & behavioural disorder due to multiple drug use and use of other psychoactive substances: other mental & behavioural disorder', 'ICD10_2010'), +('F19.9', 'Mental & behavioural disorder due to multiple drug use and use of other psychoactive substances: unspecified mental & behavioural disorder', 'ICD10_2010'), +('F20', 'Schizophrenia', 'ICD10_2010'), +('F20.0', 'Paranoid schizophrenia', 'ICD10_2010'), +('F20.1', 'Hebephrenic schizophrenia', 'ICD10_2010'), +('F20.2', 'Catatonic schizophrenia', 'ICD10_2010'), +('F20.3', 'Undifferentiated schizophrenia', 'ICD10_2010'), +('F20.4', 'Post-schizophrenic depression', 'ICD10_2010'), +('F20.5', 'Residual schizophrenia', 'ICD10_2010'), +('F20.6', 'Simple schizophrenia', 'ICD10_2010'), +('F20.8', 'Other schizophrenia', 'ICD10_2010'), +('F20.9', 'Schizophrenia, unspecified', 'ICD10_2010'), +('F21', 'Schizotypal disorder', 'ICD10_2010'), +('F22', 'Persistent delusional disorders', 'ICD10_2010'), +('F22.0', 'Delusional disorder', 'ICD10_2010'), +('F22.8', 'Other persistent delusional disorders', 'ICD10_2010'), +('F22.9', 'Persistent delusional disorder, unspecified', 'ICD10_2010'), +('F23', 'Acute and transient psychotic disorders', 'ICD10_2010'), +('F23.0', 'Acute polymorphic psychot disorder without symptoms of schizophrenia', 'ICD10_2010'), +('F23.1', 'Acute polymorphic psychot disorder with symptoms of schizophrenia', 'ICD10_2010'), +('F23.2', 'Acute schizophrenia-like psychotic disorder', 'ICD10_2010'), +('F23.3', 'Other acute predominantly delusional psychotic disorders', 'ICD10_2010'), +('F23.8', 'Other acute and transient psychotic disorders', 'ICD10_2010'), +('F23.9', 'Acute and transient psychotic disorder, unspecified', 'ICD10_2010'), +('F24', 'Induced delusional disorder', 'ICD10_2010'), +('F25', 'Schizoaffective disorders', 'ICD10_2010'), +('F25.0', 'Schizoaffective disorder, manic type', 'ICD10_2010'), +('F25.1', 'Schizoaffective disorder, depressive type', 'ICD10_2010'), +('F25.2', 'Schizoaffective disorder, mixed type', 'ICD10_2010'), +('F25.8', 'Other schizoaffective disorders', 'ICD10_2010'), +('F25.9', 'Schizoaffective disorder, unspecified', 'ICD10_2010'), +('F28', 'Other nonorganic psychotic disorders', 'ICD10_2010'), +('F29', 'Unspecified nonorganic psychosis', 'ICD10_2010'), +('F30', 'Manic episode', 'ICD10_2010'), +('F30.0', 'Hypomania', 'ICD10_2010'), +('F30.1', 'Mania without psychotic symptoms', 'ICD10_2010'), +('F30.2', 'Mania with psychotic symptoms', 'ICD10_2010'), +('F30.8', 'Other manic episodes', 'ICD10_2010'), +('F30.9', 'Manic episode, unspecified', 'ICD10_2010'), +('F31', 'Bipolar affective disorder', 'ICD10_2010'), +('F31.0', 'Bipolar affective disorder, current episode hypomanic', 'ICD10_2010'), +('F31.1', 'Bipolar affective disorder, current episode without psychotic symptoms', 'ICD10_2010'), +('F31.2', 'Bipolar affective disorder, current episode manic with psychotic symptoms', 'ICD10_2010'), +('F31.3', 'Bipolar affective disorder, current episode mild or moderate depression', 'ICD10_2010'), +('F31.4', 'Bipolar affective disorder, current episode severe depression without psychotic symptoms', 'ICD10_2010'), +('F31.5', 'Bipolar affective disorder, current episode severe depression with psychotic symptoms', 'ICD10_2010'), +('F31.6', 'Bipolar affective disorder, current episode mixed', 'ICD10_2010'), +('F31.7', 'Bipolar affective disorder, currently in remission', 'ICD10_2010'), +('F31.8', 'Other bipolar affective disorders', 'ICD10_2010'), +('F31.9', 'Bipolar affective disorder, unspecified', 'ICD10_2010'), +('F32', 'Depressive episode', 'ICD10_2010'), +('F32.0', 'Mild depressive episode', 'ICD10_2010'), +('F32.1', 'Moderate depressive episode', 'ICD10_2010'), +('F32.2', 'Severe depressive episode without psychotic symptoms', 'ICD10_2010'), +('F32.3', 'Severe depressive episode with psychotic symptoms', 'ICD10_2010'), +('F32.8', 'Other depressive episodes', 'ICD10_2010'), +('F32.9', 'Depressive episode, unspecified', 'ICD10_2010'), +('F33', 'Recurrent depressive disorder', 'ICD10_2010'), +('F33.0', 'Recurrent depressive disorder, current episode mild', 'ICD10_2010'), +('F33.1', 'Recurrent depressive disorder, current episode moderate', 'ICD10_2010'), +('F33.2', 'Recurrent depress disorder current episode severe without symptoms', 'ICD10_2010'), +('F33.3', 'Recurrent depress disorder current episode severe with psyc symp', 'ICD10_2010'), +('F33.4', 'Recurrent depressive disorder, currently in remission', 'ICD10_2010'), +('F33.8', 'Other recurrent depressive disorders', 'ICD10_2010'), +('F33.9', 'Recurrent depressive disorder, unspecified', 'ICD10_2010'), +('F34', 'Persistent mood [affective] disorders', 'ICD10_2010'), +('F34.0', 'Cyclothymia', 'ICD10_2010'), +('F34.1', 'Dysthymia', 'ICD10_2010'), +('F34.8', 'Other persistent mood [affective] disorders', 'ICD10_2010'), +('F34.9', 'Persistent mood [affective] disorder, unspecified', 'ICD10_2010'), +('F38', 'Other mood [affective] disorders', 'ICD10_2010'), +('F38.0', 'Other single mood [affective] disorders', 'ICD10_2010'), +('F38.1', 'Other recurrent mood [affective] disorders', 'ICD10_2010'), +('F38.8', 'Other specified mood [affective] disorders', 'ICD10_2010'), +('F39', 'Unspecified mood [affective] disorder', 'ICD10_2010'), +('F40', 'Phobic anxiety disorders', 'ICD10_2010'), +('F40.0', 'Agoraphobia', 'ICD10_2010'), +('F40.1', 'Social phobias', 'ICD10_2010'), +('F40.2', 'Specific (isolated) phobias', 'ICD10_2010'), +('F40.8', 'Other phobic anxiety disorders', 'ICD10_2010'), +('F40.9', 'Phobic anxiety disorder, unspecified', 'ICD10_2010'), +('F41', 'Other anxiety disorders', 'ICD10_2010'), +('F41.0', 'Panic disorder [episodic paroxysmal anxiety]', 'ICD10_2010'), +('F41.1', 'Generalized anxiety disorder', 'ICD10_2010'), +('F41.2', 'Mixed anxiety and depressive disorder', 'ICD10_2010'), +('F41.3', 'Other mixed anxiety disorders', 'ICD10_2010'), +('F41.8', 'Other specified anxiety disorders', 'ICD10_2010'), +('F41.9', 'Anxiety disorder, unspecified', 'ICD10_2010'), +('F42', 'Obsessive-compulsive disorder', 'ICD10_2010'), +('F42.0', 'Predominantly obsessional thoughts or ruminations', 'ICD10_2010'), +('F42.1', 'Predominantly compulsive acts [obsessional rituals]', 'ICD10_2010'), +('F42.2', 'Mixed obsessional thoughts and acts', 'ICD10_2010'), +('F42.8', 'Other obsessive-compulsive disorders', 'ICD10_2010'), +('F42.9', 'Obsessive-compulsive disorder, unspecified', 'ICD10_2010'), +('F43', 'Reaction to severe stress, and adjustment disorders', 'ICD10_2010'), +('F43.0', 'Acute stress reaction', 'ICD10_2010'), +('F43.1', 'Post-traumatic stress disorder', 'ICD10_2010'), +('F43.2', 'Adjustment disorders', 'ICD10_2010'), +('F43.8', 'Other reactions to severe stress', 'ICD10_2010'), +('F43.9', 'Reaction to severe stress, unspecified', 'ICD10_2010'), +('F44', 'Dissociative [conversion] disorders', 'ICD10_2010'), +('F44.0', 'Dissociative amnesia', 'ICD10_2010'), +('F44.1', 'Dissociative fugue', 'ICD10_2010'), +('F44.2', 'Dissociative stupor', 'ICD10_2010'), +('F44.3', 'Trance and possession disorders', 'ICD10_2010'), +('F44.4', 'Dissociative motor disorders', 'ICD10_2010'), +('F44.5', 'Dissociative convulsions', 'ICD10_2010'), +('F44.6', 'Dissociative anaesthesia and sensory loss', 'ICD10_2010'), +('F44.7', 'Mixed dissociative [conversion] disorders', 'ICD10_2010'), +('F44.8', 'Other dissociative [conversion] disorders', 'ICD10_2010'), +('F44.9', 'Dissociative [conversion] disorder, unspecified', 'ICD10_2010'), +('F45', 'Somatoform disorders', 'ICD10_2010'), +('F45.0', 'Somatization disorder', 'ICD10_2010'), +('F45.1', 'Undifferentiated somatoform disorder', 'ICD10_2010'), +('F45.2', 'Hypochondriacal disorder', 'ICD10_2010'), +('F45.3', 'Somatoform autonomic dysfunction', 'ICD10_2010'), +('F45.4', 'Persistent somatoform pain disorder', 'ICD10_2010'), +('F45.8', 'Other somatoform disorders', 'ICD10_2010'), +('F45.9', 'Somatoform disorder, unspecified', 'ICD10_2010'), +('F48', 'Other neurotic disorders', 'ICD10_2010'), +('F48.0', 'Neurasthenia', 'ICD10_2010'), +('F48.1', 'Depersonalization-derealization syndrome', 'ICD10_2010'), +('F48.8', 'Other specified neurotic disorders', 'ICD10_2010'), +('F48.9', 'Neurotic disorder, unspecified', 'ICD10_2010'), +('F50', 'Eating disorders', 'ICD10_2010'), +('F50.0', 'Anorexia nervosa', 'ICD10_2010'), +('F50.1', 'Atypical anorexia nervosa', 'ICD10_2010'), +('F50.2', 'Bulimia nervosa', 'ICD10_2010'), +('F50.3', 'Atypical bulimia nervosa', 'ICD10_2010'), +('F50.4', 'Overeating associated with other psychological disturbances', 'ICD10_2010'), +('F50.5', 'Vomiting associated with other psychological disturbances', 'ICD10_2010'), +('F50.8', 'Other eating disorders', 'ICD10_2010'), +('F50.9', 'Eating disorder, unspecified', 'ICD10_2010'), +('F51', 'Nonorganic sleep disorders', 'ICD10_2010'), +('F51.0', 'Nonorganic insomnia', 'ICD10_2010'), +('F51.1', 'Nonorganic hypersomnia', 'ICD10_2010'), +('F51.2', 'Nonorganic disorder of the sleep-wake schedule', 'ICD10_2010'), +('F51.3', 'Sleepwalking [somnambulism]', 'ICD10_2010'), +('F51.4', 'Sleep terrors [night terrors]', 'ICD10_2010'), +('F51.5', 'Nightmares', 'ICD10_2010'), +('F51.8', 'Other nonorganic sleep disorders', 'ICD10_2010'), +('F51.9', 'Nonorganic sleep disorder, unspecified', 'ICD10_2010'), +('F52', 'Sexual dysfunction, not caused by organic disorder or disease', 'ICD10_2010'), +('F52.0', 'Lack or loss of sexual desire', 'ICD10_2010'), +('F52.1', 'Sexual aversion and lack of sexual enjoyment', 'ICD10_2010'), +('F52.2', 'Failure of genital response', 'ICD10_2010'), +('F52.3', 'Orgasmic dysfunction', 'ICD10_2010'), +('F52.4', 'Premature ejaculation', 'ICD10_2010'), +('F52.5', 'Nonorganic vaginismus', 'ICD10_2010'), +('F52.6', 'Nonorganic dyspareunia', 'ICD10_2010'), +('F52.7', 'Excessive sexual drive', 'ICD10_2010'), +('F52.8', 'Other sexual dysfunction not caused by organic disorder/disease', 'ICD10_2010'), +('F52.9', 'Unspecified sexual dysfunction not caused by organic disorder or disease', 'ICD10_2010'), +('F53', 'Mental and behavioural disorders associated with the puerperium, not elsewhere classified', 'ICD10_2010'), +('F53.0', 'Mild mental and behavioural disorder associated with the puerperium NEC', 'ICD10_2010'), +('F53.1', 'Severe mental and behavioural disorder associated with puerperium NEC', 'ICD10_2010'), +('F53.8', 'Other mental and behavioural disorder associated with the puerperium NEC', 'ICD10_2010'), +('F53.9', 'Puerperal mental disorder, unspecified', 'ICD10_2010'), +('F54', 'Psychological and behavioural factor associated with disord or disease Classified elsewhere', 'ICD10_2010'), +('F55', 'Abuse of non-dependence-producing substances', 'ICD10_2010'), +('F59', 'Unspecified behavaviural syndrome associated with physiological disturbances and physical factor', 'ICD10_2010'), +('F60', 'Specific personality disorders', 'ICD10_2010'), +('F60.0', 'Paranoid personality disorder', 'ICD10_2010'), +('F60.1', 'Schizoid personality disorder', 'ICD10_2010'), +('F60.2', 'Dissocial personality disorder', 'ICD10_2010'), +('F60.3', 'Emotionally unstable personality disorder', 'ICD10_2010'), +('F60.4', 'Histrionic personality disorder', 'ICD10_2010'), +('F60.5', 'Anankastic personality disorder', 'ICD10_2010'), +('F60.6', 'Anxious [avoidant] personality disorder', 'ICD10_2010'), +('F60.7', 'Dependent personality disorder', 'ICD10_2010'), +('F60.8', 'Other specific personality disorders', 'ICD10_2010'), +('F60.9', 'Personality disorder, unspecified', 'ICD10_2010'), +('F61', 'Mixed and other personality disorders', 'ICD10_2010'), +('F62', 'Enduring personality changes, not attributable to brain damage and disease', 'ICD10_2010'), +('F62.0', 'Enduring personality change after catastrophic experience', 'ICD10_2010'), +('F62.1', 'Enduring personality change after psychiatric illness', 'ICD10_2010'), +('F62.8', 'Other enduring personality changes', 'ICD10_2010'), +('F62.9', 'Enduring personality change, unspecified', 'ICD10_2010'), +('F63', 'Habit and impulse disorders', 'ICD10_2010'), +('F63.0', 'Pathological gambling', 'ICD10_2010'), +('F63.1', 'Pathological fire-setting [pyromania]', 'ICD10_2010'), +('F63.2', 'Pathological stealing [kleptomania]', 'ICD10_2010'), +('F63.3', 'Trichotillomania', 'ICD10_2010'), +('F63.8', 'Other habit and impulse disorders', 'ICD10_2010'), +('F63.9', 'Habit and impulse disorder, unspecified', 'ICD10_2010'), +('F64', 'Gender identity disorders', 'ICD10_2010'), +('F64.0', 'Transsexualism', 'ICD10_2010'), +('F64.1', 'Dual-role transvestism', 'ICD10_2010'), +('F64.2', 'Gender identity disorder of childhood', 'ICD10_2010'), +('F64.8', 'Other gender identity disorders', 'ICD10_2010'), +('F64.9', 'Gender identity disorder, unspecified', 'ICD10_2010'), +('F65', 'Disorders of sexual preference', 'ICD10_2010'), +('F65.0', 'Fetishism', 'ICD10_2010'), +('F65.1', 'Fetishistic transvestism', 'ICD10_2010'), +('F65.2', 'Exhibitionism', 'ICD10_2010'), +('F65.3', 'Voyeurism', 'ICD10_2010'), +('F65.4', 'Paedophilia', 'ICD10_2010'), +('F65.5', 'Sadomasochism', 'ICD10_2010'), +('F65.6', 'Multiple disorders of sexual preference', 'ICD10_2010'), +('F65.8', 'Other disorders of sexual preference', 'ICD10_2010'), +('F65.9', 'Disorder of sexual preference, unspecified', 'ICD10_2010'), +('F66', 'Psychological and behavioural disorders associated with sexual development and orientation', 'ICD10_2010'), +('F66.0', 'Sexual maturation disorder', 'ICD10_2010'), +('F66.1', 'Egodystonic sexual orientation', 'ICD10_2010'), +('F66.2', 'Sexual relationship disorder', 'ICD10_2010'), +('F66.8', 'Other psychosexual development disorders', 'ICD10_2010'), +('F66.9', 'Psychosexual development disorder, unspecified', 'ICD10_2010'), +('F68', 'Other disorders of adult personality and behaviour', 'ICD10_2010'), +('F68.0', 'Elaboration of physical symptoms for psychological reasons', 'ICD10_2010'), +('F68.1', 'Intentional production/feigning of symptoms/disabilities either physical/psychological [factititous disorder)', 'ICD10_2010'), +('F68.8', 'Other specified disorders of adult personality and behaviour', 'ICD10_2010'), +('F69', 'Unspecified disorder of adult personality and behaviour', 'ICD10_2010'), +('F70', 'Mild mental retardation', 'ICD10_2010'), +('F70.0', 'Mild mental retardation: with statement no or minimal, impairment of behaviour', 'ICD10_2010'), +('F70.1', 'Mild mental retardation: significant impairment behaviour requiring attentiom / treatment', 'ICD10_2010'), +('F70.8', 'Mild mental retardation: other impairments of behaviour', 'ICD10_2010'), +('F70.9', 'Mild mental retardation: without mention of impairment behaviour', 'ICD10_2010'), +('F71', 'Moderate mental retardation', 'ICD10_2010'), +('F71.0', 'Mod mental retardation: with statement no or minimal, impairment of behaviour', 'ICD10_2010'), +('F71.1', 'Mod mental retardation: significant impairment behaviour requiring attentiom / treatment', 'ICD10_2010'), +('F71.8', 'Mod mental retardation: other impairments of behaviour', 'ICD10_2010'), +('F71.9', 'Mod mental retardation: without mention of impairment behaviour', 'ICD10_2010'), +('F72', 'Severe mental retardation', 'ICD10_2010'), +('F72.0', 'Severe mental retardation: with statement no or minimal, impairment of behaviour', 'ICD10_2010'), +('F72.1', 'Severe mental retardation: significant impairment behaviour requiring attentiom / treatment', 'ICD10_2010'), +('F72.8', 'Severe mental retardation: other impairments of behaviour', 'ICD10_2010'), +('F72.9', 'Severe mental retardation: without mention of impairment behaviour', 'ICD10_2010'), +('F73', 'Profound mental retardation', 'ICD10_2010'), +('F73.0', 'Profound mental retardation: with statement no or minimal, impairment of behaviour', 'ICD10_2010'), +('F73.1', 'Profound mental retardation: significant impairment behaviour requiring attentiom / treatment', 'ICD10_2010'), +('F73.8', 'Profound mental retardation: other impairments of behaviour', 'ICD10_2010'), +('F73.9', 'Profound mental retardation: without mention of impairment behaviour', 'ICD10_2010'), +('F78', 'Other mental retardation', 'ICD10_2010'), +('F78.0', 'other mental retardation: with statement no or minimal, impairment of behaviour', 'ICD10_2010'), +('F78.1', 'other mental retardation: significant impairment behaviour requiring attentiom / treatment', 'ICD10_2010'), +('F78.8', 'other mental retardation: other impairments of behaviour', 'ICD10_2010'), +('F78.9', 'other mental retardation: without mention of impairment behaviour', 'ICD10_2010'), +('F79', 'Unspecified mental retardation', 'ICD10_2010'), +('F79.0', 'Unspecified mental retardation: with statement no or minimal, impairment of behaviour', 'ICD10_2010'), +('F79.1', 'Unspecified mental retardation: significant impairment behaviour requiring attentiom / treatment', 'ICD10_2010'), +('F79.8', 'Unspecified mental retardation: other impairments of behaviour', 'ICD10_2010'), +('F79.9', 'Unspecified mental retardation: without mention of impairment behaviour', 'ICD10_2010'), +('F80', 'Specific developmental disorders of speech and language', 'ICD10_2010'), +('F80.0', 'Specific speech articulation disorder', 'ICD10_2010'), +('F80.1', 'Expressive language disorder', 'ICD10_2010'), +('F80.2', 'Receptive language disorder', 'ICD10_2010'), +('F80.3', 'Acquired aphasia with epilepsy [landau-kleffner]', 'ICD10_2010'), +('F80.8', 'Other developmental disorders of speech and language', 'ICD10_2010'), +('F80.9', 'Developmental disorder of speech and language, unspecified', 'ICD10_2010'), +('F81', 'Specific developmental disorders of scholastic skills', 'ICD10_2010'), +('F81.0', 'Specific reading disorder', 'ICD10_2010'), +('F81.1', 'Specific spelling disorder', 'ICD10_2010'), +('F81.2', 'Specific disorder of arithmetical skills', 'ICD10_2010'), +('F81.3', 'Mixed disorder of scholastic skills', 'ICD10_2010'), +('F81.8', 'Other developmental disorders of scholastic skills', 'ICD10_2010'), +('F81.9', 'Developmental disorder of scholastic skills, unspecified', 'ICD10_2010'), +('F82', 'Specific developmental disorder of motor function', 'ICD10_2010'), +('F83', 'Mixed specific developmental disorders', 'ICD10_2010'), +('F84', 'Pervasive developmental disorders', 'ICD10_2010'), +('F84.0', 'Childhood autism', 'ICD10_2010'), +('F84.1', 'Atypical autism', 'ICD10_2010'), +('F84.2', 'Rett\'s syndrome', 'ICD10_2010'), +('F84.3', 'Other childhood disintegrative disorder', 'ICD10_2010'), +('F84.4', 'Overactive disorder associated with mental retardation and stereotype movements', 'ICD10_2010'), +('F84.5', 'Asperger\'s syndrome', 'ICD10_2010'), +('F84.8', 'Other pervasive developmental disorders', 'ICD10_2010'), +('F84.9', 'Pervasive developmental disorder, unspecified', 'ICD10_2010'), +('F88', 'Other disorders of psychological development', 'ICD10_2010'), +('F89', 'Unspecified disorder of psychological development', 'ICD10_2010'), +('F90', 'Hyperkinetic disorders', 'ICD10_2010'), +('F90.0', 'Disturbance of activity and attention', 'ICD10_2010'), +('F90.1', 'Hyperkinetic conduct disorder', 'ICD10_2010'), +('F90.8', 'Other hyperkinetic disorders', 'ICD10_2010'), +('F90.9', 'Hyperkinetic disorder, unspecified', 'ICD10_2010'), +('F91', 'Conduct disorders', 'ICD10_2010'), +('F91.0', 'Conduct disorder confined to the family context', 'ICD10_2010'), +('F91.1', 'Unsocialized conduct disorder', 'ICD10_2010'), +('F91.2', 'Socialized conduct disorder', 'ICD10_2010'), +('F91.3', 'Oppositional defiant disorder', 'ICD10_2010'), +('F91.8', 'Other conduct disorders', 'ICD10_2010'), +('F91.9', 'Conduct disorder, unspecified', 'ICD10_2010'), +('F92', 'Mixed disorders of conduct and emotions', 'ICD10_2010'), +('F92.0', 'Depressive conduct disorder', 'ICD10_2010'), +('F92.8', 'Other mixed disorders of conduct and emotions', 'ICD10_2010'), +('F92.9', 'Mixed disorder of conduct and emotions, unspecified', 'ICD10_2010'), +('F93', 'Emotional disorders with onset specific to childhood', 'ICD10_2010'), +('F93.0', 'Separation anxiety disorder of childhood', 'ICD10_2010'), +('F93.1', 'Phobic anxiety disorder of childhood', 'ICD10_2010'), +('F93.2', 'Social anxiety disorder of childhood', 'ICD10_2010'), +('F93.3', 'Sibling rivalry disorder', 'ICD10_2010'), +('F93.8', 'Other childhood emotional disorders', 'ICD10_2010'), +('F93.9', 'Childhood emotional disorder, unspecified', 'ICD10_2010'), +('F94', 'Disorders of social functioning with onset specific to childhood and adolescence', 'ICD10_2010'), +('F94.0', 'Elective mutism', 'ICD10_2010'), +('F94.1', 'Reactive attachment disorder of childhood', 'ICD10_2010'), +('F94.2', 'Disinhibited attachment disorder of childhood', 'ICD10_2010'), +('F94.8', 'Other childhood disorders of social functioning', 'ICD10_2010'), +('F94.9', 'Childhood disorder of social functioning, unspecified', 'ICD10_2010'), +('F95', 'Tic disorders', 'ICD10_2010'), +('F95.0', 'Transient tic disorder', 'ICD10_2010'), +('F95.1', 'Chronic motor or vocal tic disorder', 'ICD10_2010'), +('F95.2', 'Combined vocal multiple motor tic disorder [de la tourette]', 'ICD10_2010'), +('F95.8', 'Other tic disorders', 'ICD10_2010'), +('F95.9', 'Tic disorder, unspecified', 'ICD10_2010'), +('F98', 'Other behavioural and emotional disorders with onset usually occurring in childhood and adolescence', 'ICD10_2010'), +('F98.0', 'Nonorganic enuresis', 'ICD10_2010'), +('F98.1', 'Nonorganic encopresis', 'ICD10_2010'), +('F98.2', 'Feeding disorder of infancy and childhood', 'ICD10_2010'), +('F98.3', 'Pica of infancy and childhood', 'ICD10_2010'), +('F98.4', 'Stereotyped movement disorders', 'ICD10_2010'), +('F98.5', 'Stuttering [stammering]', 'ICD10_2010'), +('F98.6', 'Cluttering', 'ICD10_2010'), +('F98.8', 'Other behavioral and emotional disorder onset usually ocurring childhood adolescence', 'ICD10_2010'), +('F98.9', 'Unspecified behavioral and emotional disorder onset usually ocurring childhood adolescence', 'ICD10_2010'), +('F99', 'Mental disorder, not otherwise specified', 'ICD10_2010'), +('G00', 'Bacterial meningitis, not elsewhere classified', 'ICD10_2010'), +('G00.0', 'Haemophilus meningitis', 'ICD10_2010'), +('G00.1', 'Pneumococcal meningitis', 'ICD10_2010'), +('G00.2', 'Streptococcal meningitis', 'ICD10_2010'), +('G00.3', 'Staphylococcal meningitis', 'ICD10_2010'), +('G00.8', 'Other bacterial meningitis', 'ICD10_2010'), +('G00.9', 'Bacterial meningitis, unspecified', 'ICD10_2010'), +('G01', 'Meningitis in bacterial diseases classified elsewhere', 'ICD10_2010'), +('G02', 'Meningitis in other infectious and parasitic diseases classified elsewhere', 'ICD10_2010'), +('G02.0', 'Meningitis in viral diseases classified elsewhere', 'ICD10_2010'), +('G02.1', 'Meningitis in mycoses', 'ICD10_2010'), +('G02.8', 'Meningitis in other spec infectious and parasitic dis ec', 'ICD10_2010'), +('G03', 'Meningitis due to other and unspecified causes', 'ICD10_2010'), +('G03.0', 'Nonpyogenic meningitis', 'ICD10_2010'), +('G03.1', 'Chronic meningitis', 'ICD10_2010'), +('G03.2', 'Benign recurrent meningitis [mollaret]', 'ICD10_2010'), +('G03.8', 'Meningitis due to other specified causes', 'ICD10_2010'), +('G03.9', 'Meningitis, unspecified', 'ICD10_2010'), +('G04', 'Encephalitis, myelitis and encephalomyelitis', 'ICD10_2010'), +('G04.0', 'Acute disseminated encephalitis', 'ICD10_2010'), +('G04.1', 'Tropical spastic paraplegia', 'ICD10_2010'), +('G04.2', 'Bacterial meningoencephalitis and meningomyelitis nec', 'ICD10_2010'), +('G04.8', 'Other encephalitis, myelitis and encephalomyelitis', 'ICD10_2010'), +('G04.9', 'Encephalitis, myelitis and encephalomyelitis, unspecified', 'ICD10_2010'), +('G05', 'Encephalitis, myelitis and encephalomyelitis in diseases classified elsewhere', 'ICD10_2010'), +('G05.0', 'Encephalitis, myelitis & encephalomyelitis in bacterial disease classified elsewhere', 'ICD10_2010'), +('G05.1', 'Encephalitis, myelitis & encephalomyelitis in viral disease classified elsewhere', 'ICD10_2010'), +('G05.2', 'Encephalitis myelitis encphlomyelitis infectious and parasitic disease classified elsewhere', 'ICD10_2010'), +('G05.8', 'Encephalitis, myelitis & encephalomyelitis in other disease classified elsewhere', 'ICD10_2010'), +('G06', 'Intracranial and intraspinal abscess and granuloma', 'ICD10_2010'), +('G06.0', 'Intracranial abscess and granuloma', 'ICD10_2010'), +('G06.1', 'Intraspinal abscess and granuloma', 'ICD10_2010'), +('G06.2', 'Extradural and subdural abscess, unspecified', 'ICD10_2010'), +('G07', 'Intracranial and intraspinal abscess and granuloma disease classified elsewhere', 'ICD10_2010'), +('G08', 'Intracranial and intraspinal phlebitis and thrombophlebitis', 'ICD10_2010'), +('G09', 'Sequelae of inflammatory diseases of central nervous system', 'ICD10_2010'), +('G10', 'Huntington\'s disease', 'ICD10_2010'), +('G11', 'Hereditary ataxia', 'ICD10_2010'), +('G11.0', 'Congenital nonprogressive ataxia', 'ICD10_2010'), +('G11.1', 'Early-onset cerebellar ataxia', 'ICD10_2010'), +('G11.2', 'Late-onset cerebellar ataxia', 'ICD10_2010'), +('G11.3', 'Cerebellar ataxia with defective dna repair', 'ICD10_2010'), +('G11.4', 'Hereditary spastic paraplegia', 'ICD10_2010'), +('G11.8', 'Other hereditary ataxias', 'ICD10_2010'), +('G11.9', 'Hereditary ataxia, unspecified', 'ICD10_2010'), +('G12', 'Spinal muscular atrophy and related syndromes', 'ICD10_2010'), +('G12.0', 'Infantile spinal muscular atrophy, type i [werdnig-hoffman]', 'ICD10_2010'), +('G12.1', 'Other inherited spinal muscular atrophy', 'ICD10_2010'), +('G12.2', 'Motor neuron disease', 'ICD10_2010'), +('G12.8', 'Other spinal muscular atrophies and related syndromes', 'ICD10_2010'), +('G12.9', 'Spinal muscular atrophy, unspecified', 'ICD10_2010'), +('G13', 'Systemic atrophies primarily affecting central nervous system in diseases classified elsewhere', 'ICD10_2010'), +('G13.0', 'Paraneoplastic neuromyopathy and neuropathy', 'ICD10_2010'), +('G13.1', 'Other systemic atrophy primarily affect central nervous system neoplastic disease', 'ICD10_2010'), +('G13.2', 'Systemic atrophy primarily affecting central nervous system in myxoedema', 'ICD10_2010'), +('G13.8', 'Systemic atrophy primarily affecting central nervous system other disease classified elsewhere', 'ICD10_2010'), +('G14', 'Postpolio syndrome', 'ICD10_2010'), +('G20', 'Parkinson\'s disease', 'ICD10_2010'), +('G21', 'Secondary parkinsonism', 'ICD10_2010'), +('G21.0', 'Malignant neuroleptic syndrome', 'ICD10_2010'), +('G21.1', 'Other drug-induced secondary parkinsonism', 'ICD10_2010'), +('G21.2', 'Secondary parkinsonism due to other external agents', 'ICD10_2010'), +('G21.3', 'Postencephalitic parkinsonism', 'ICD10_2010'), +('G21.4', 'Vascular parkinsonism', 'ICD10_2010'), +('G21.8', 'Other secondary parkinsonism', 'ICD10_2010'), +('G21.9', 'Secondary parkinsonism, unspecified', 'ICD10_2010'), +('G22', 'Parkinsonism in diseases classified elsewhere', 'ICD10_2010'), +('G23', 'Other degenerative diseases of basal ganglia', 'ICD10_2010'), +('G23.0', 'Hallervorden-Spatz disease', 'ICD10_2010'), +('G23.1', 'Progressive supranuclear ophthalmoplegia', 'ICD10_2010'), +('G23.2', 'Striatonigral degeneration', 'ICD10_2010'), +('G23.8', 'Other specified degenerative diseases of basal ganglia', 'ICD10_2010'), +('G23.9', 'Degenerative disease of basal ganglia, unspecified', 'ICD10_2010'), +('G24', 'Dystonia', 'ICD10_2010'), +('G24.0', 'Drug-induced dystonia', 'ICD10_2010'), +('G24.1', 'Idiopathic familial dystonia', 'ICD10_2010'), +('G24.2', 'Idiopathic nonfamilial dystonia', 'ICD10_2010'), +('G24.3', 'Spasmodic torticollis', 'ICD10_2010'), +('G24.4', 'Idiopathic orofacial dystonia', 'ICD10_2010'), +('G24.5', 'Blepharospasm', 'ICD10_2010'), +('G24.8', 'Other dystonia', 'ICD10_2010'), +('G24.9', 'Dystonia, unspecified', 'ICD10_2010'), +('G25', 'Other extrapyramidal and movement disorders', 'ICD10_2010'), +('G25.0', 'Essential tremor', 'ICD10_2010'), +('G25.1', 'Drug-induced tremor', 'ICD10_2010'), +('G25.2', 'Other specified forms of tremor', 'ICD10_2010'), +('G25.3', 'Myoclonus', 'ICD10_2010'), +('G25.4', 'Drug-induced chorea', 'ICD10_2010'), +('G25.5', 'Other chorea', 'ICD10_2010'), +('G25.6', 'Drug-induced tics and other tics of organic origin', 'ICD10_2010'), +('G25.8', 'Other specified extrapyramidal and movement disorders', 'ICD10_2010'), +('G25.9', 'Extrapyramidal and movement disorder, unspecified', 'ICD10_2010'), +('G26', 'Extrapyramidal and movement disorders in disease classified elsewhere', 'ICD10_2010'), +('G30', 'Alzheimer disease', 'ICD10_2010'), +('G30.0', 'Alzheimer\'s disease with early onset', 'ICD10_2010'), +('G30.1', 'Alzheimer\'s disease with late onset', 'ICD10_2010'), +('G30.8', 'Other alzheimer\'s disease', 'ICD10_2010'), +('G30.9', 'Alzheimer\'s disease, unspecified', 'ICD10_2010'), +('G31', 'Other degenerative diseases of nervous system, not elsewhere classified', 'ICD10_2010'), +('G31.0', 'Circumscribed brain atrophy', 'ICD10_2010'), +('G31.1', 'Senile degeneration of brain, not elsewhere classified', 'ICD10_2010'), +('G31.2', 'Degeneration of nervous system due to alcohol', 'ICD10_2010'), +('G31.8', 'Other specified degenerative diseases of nervous system', 'ICD10_2010'), +('G31.9', 'Degenerative disease of nervous system, unspecified', 'ICD10_2010'), +('G32', 'Other degenerative disorders of nervous system in diseases classified elsewhere', 'ICD10_2010'), +('G32.0', 'Subacute combined degeneration of spinal cord in dis ec', 'ICD10_2010'), +('G32.8', 'Other spec degenerative disorders of nervous system dis ec', 'ICD10_2010'), +('G35', 'Multiple sclerosis', 'ICD10_2010'), +('G36', 'Other acute disseminated demyelination', 'ICD10_2010'), +('G36.0', 'Neuromyelitis optica [devic]', 'ICD10_2010'), +('G36.1', 'Acute and subacute haemorrhagic leukoencephalitis [hurst]', 'ICD10_2010'), +('G36.8', 'Other specified acute disseminated demyelination', 'ICD10_2010'), +('G36.9', 'Acute disseminated demyelination, unspecified', 'ICD10_2010'), +('G37', 'Other demyelinating diseases of central nervous system', 'ICD10_2010'), +('G37.0', 'Diffuse sclerosis', 'ICD10_2010'), +('G37.1', 'Central demyelination of corpus callosum', 'ICD10_2010'), +('G37.2', 'Central pontine myelinolysis', 'ICD10_2010'), +('G37.3', 'Acute transverse myelitis in demyelinating disease of cns', 'ICD10_2010'), +('G37.4', 'Subacute necrotizing myelitis', 'ICD10_2010'), +('G37.5', 'Concentric sclerosis [bal-]', 'ICD10_2010'), +('G37.8', 'Other spec demyelinating diseases of central nervous system', 'ICD10_2010'), +('G37.9', 'Demyelinating disease of central nervous system, unspecified', 'ICD10_2010'), +('G40', 'Epilepsy', 'ICD10_2010'), +('G40.0', 'Localization-related(focal)(partial)idiopathic epilepsy / epileptic syndromes seizures localized onset', 'ICD10_2010'), +('G40.1', 'Localization-related(focal)(partial)idiopathic epilepsy / epileptic syndromes with simple partial seizures', 'ICD10_2010'), +('G40.2', 'Localization-related(focal)(partial)idiopathic epilepsy / epileptic syndromes with complex partial seizures', 'ICD10_2010'), +('G40.3', 'Generalized idiopathic epilepsy and epileptic syndromes', 'ICD10_2010'), +('G40.4', 'Other generalized epilepsy and epileptic syndromes', 'ICD10_2010'), +('G40.5', 'Special epileptic syndromes', 'ICD10_2010'), +('G40.6', 'Grand mal seizures, unspecified (with or without petit mal)', 'ICD10_2010'); +INSERT INTO `icd10` (`ID_ICD10`, `Diagnosa`, `Versi_ICD10`) VALUES +('G40.7', 'Petit mal, unspecified, without grand mal seizures', 'ICD10_2010'), +('G40.8', 'Other epilepsy', 'ICD10_2010'), +('G40.9', 'Epilepsy, unspecified', 'ICD10_2010'), +('G41', 'Status epilepticus', 'ICD10_2010'), +('G41.0', 'Grand mal status epilepticus', 'ICD10_2010'), +('G41.1', 'Petit mal status epilepticus', 'ICD10_2010'), +('G41.2', 'Complex partial status epilepticus', 'ICD10_2010'), +('G41.8', 'Other status epilepticus', 'ICD10_2010'), +('G41.9', 'Status epilepticus, unspecified', 'ICD10_2010'), +('G43', 'Migraine', 'ICD10_2010'), +('G43.0', 'Migraine without aura [common migraine]', 'ICD10_2010'), +('G43.1', 'Migraine with aura [classical migraine]', 'ICD10_2010'), +('G43.2', 'Status migrainosus', 'ICD10_2010'), +('G43.3', 'Complicated migraine', 'ICD10_2010'), +('G43.8', 'Other migraine', 'ICD10_2010'), +('G43.9', 'Migraine, unspecified', 'ICD10_2010'), +('G44', 'Other headache syndromes', 'ICD10_2010'), +('G44.0', 'Cluster headache syndrome', 'ICD10_2010'), +('G44.1', 'Vascular headache, not elsewhere classified', 'ICD10_2010'), +('G44.2', 'Tension-type headache', 'ICD10_2010'), +('G44.3', 'Chronic post-traumatic headache', 'ICD10_2010'), +('G44.4', 'Drug-induced headache, not elsewhere classified', 'ICD10_2010'), +('G44.8', 'Other specified headache syndromes', 'ICD10_2010'), +('G45', 'Transient cerebral ischaemic attacks and related syndromes', 'ICD10_2010'), +('G45.0', 'Vertebro-basilar artery syndrome', 'ICD10_2010'), +('G45.1', 'Carotid artery syndrome (hemispheric)', 'ICD10_2010'), +('G45.2', 'Multiple and bilateral precerebral artery syndromes', 'ICD10_2010'), +('G45.3', 'Amaurosis fugax', 'ICD10_2010'), +('G45.4', 'Transient global amnesia', 'ICD10_2010'), +('G45.8', 'Other transient cerebral ischaemic attacks and related synd', 'ICD10_2010'), +('G45.9', 'Transient cerebral ischaemic attack, unspecified', 'ICD10_2010'), +('G46', 'Vascular syndromes of brain in cerebrovascular diseases', 'ICD10_2010'), +('G46.0', 'Middle cerebral artery syndrome', 'ICD10_2010'), +('G46.1', 'Anterior cerebral artery syndrome', 'ICD10_2010'), +('G46.2', 'Posterior cerebral artery syndrome', 'ICD10_2010'), +('G46.3', 'Brain stem stroke syndrome', 'ICD10_2010'), +('G46.4', 'Cerebellar stroke syndrome', 'ICD10_2010'), +('G46.5', 'Pure motor lacunar syndrome', 'ICD10_2010'), +('G46.6', 'Pure sensory lacunar syndrome', 'ICD10_2010'), +('G46.7', 'Other lacunar syndromes', 'ICD10_2010'), +('G46.8', 'Other vascular syndromes of brain in cerebrovascular disease', 'ICD10_2010'), +('G47', 'Sleep disorders', 'ICD10_2010'), +('G47.0', 'Disorders of initiating and maintaining sleep [insomnias]', 'ICD10_2010'), +('G47.1', 'Disorders of excessive somnolence [hypersomnias]', 'ICD10_2010'), +('G47.2', 'Disorders of the sleep-wake schedule', 'ICD10_2010'), +('G47.3', 'Sleep apnoea', 'ICD10_2010'), +('G47.4', 'Narcolepsy and cataplexy', 'ICD10_2010'), +('G47.8', 'Other sleep disorders', 'ICD10_2010'), +('G47.9', 'Sleep disorder, unspecified', 'ICD10_2010'), +('G50', 'Disorders of trigeminal nerve', 'ICD10_2010'), +('G50.0', 'Trigeminal neuralgia', 'ICD10_2010'), +('G50.1', 'Atypical facial pain', 'ICD10_2010'), +('G50.8', 'Other disorders of trigeminal nerve', 'ICD10_2010'), +('G50.9', 'Disorder of trigeminal nerve, unspecified', 'ICD10_2010'), +('G51', 'Facial nerve disorders', 'ICD10_2010'), +('G51.0', 'Bell\'s palsy', 'ICD10_2010'), +('G51.1', 'Geniculate ganglionitis', 'ICD10_2010'), +('G51.2', 'Melkersson\'s syndrome', 'ICD10_2010'), +('G51.3', 'Clonic hemifacial spasm', 'ICD10_2010'), +('G51.4', 'Facial myokymia', 'ICD10_2010'), +('G51.8', 'Other disorders of facial nerve', 'ICD10_2010'), +('G51.9', 'Disorder of facial nerve, unspecified', 'ICD10_2010'), +('G52', 'Disorders of other cranial nerves', 'ICD10_2010'), +('G52.0', 'Disorders of olfactory nerve', 'ICD10_2010'), +('G52.1', 'Disorders of glossopharyngeal nerve', 'ICD10_2010'), +('G52.2', 'Disorders of vagus nerve', 'ICD10_2010'), +('G52.3', 'Disorders of hypoglossal nerve', 'ICD10_2010'), +('G52.7', 'Disorders of multiple cranial nerves', 'ICD10_2010'), +('G52.8', 'Disorders of other specified cranial nerves', 'ICD10_2010'), +('G52.9', 'Cranial nerve disorder, unspecified', 'ICD10_2010'), +('G53', 'Cranial nerve disorders in diseases classified elsewhere', 'ICD10_2010'), +('G53.0', 'Postzoster neuralgia', 'ICD10_2010'), +('G53.1', 'Multiple cranial nerve palsies in infectious & parasit disease classified elsewhere', 'ICD10_2010'), +('G53.2', 'Multiple cranial nerve palsies in sarcoidosis', 'ICD10_2010'), +('G53.3', 'Multiple cranial nerve palsies in neoplastic disease', 'ICD10_2010'), +('G53.8', 'Other cranial nerve disorders in other disease classified elsewhere', 'ICD10_2010'), +('G54', 'Nerve root and plexus disorders', 'ICD10_2010'), +('G54.0', 'Brachial plexus disorders', 'ICD10_2010'), +('G54.1', 'Lumbosacral plexus disorders', 'ICD10_2010'), +('G54.2', 'Cervical root disorders, not elsewhere classified', 'ICD10_2010'), +('G54.3', 'Thoracic root disorders, not elsewhere classified', 'ICD10_2010'), +('G54.4', 'Lumbosacral root disorders, not elsewhere classified', 'ICD10_2010'), +('G54.5', 'Neuralgic amyotrophy', 'ICD10_2010'), +('G54.6', 'Phantom limb syndrome with pain', 'ICD10_2010'), +('G54.7', 'Phantom limb syndrome without pain', 'ICD10_2010'), +('G54.8', 'Other nerve root and plexus disorders', 'ICD10_2010'), +('G54.9', 'Nerve root and plexus disorder, unspecified', 'ICD10_2010'), +('G55', 'Nerve root and plexus compressions in diseases classified elsewhere', 'ICD10_2010'), +('G55.0', 'Nerve root and plexus compressions in neoplastic disease', 'ICD10_2010'), +('G55.1', 'Nerve root and plexus compressions in intravert disc disord', 'ICD10_2010'), +('G55.2', 'Nerve root and plexus compressions in spondylosis', 'ICD10_2010'), +('G55.3', 'Nerve root and plexus compressions in oth dorsopathies', 'ICD10_2010'), +('G55.8', 'Nerve root and plexus compressions in other disease classified elsewhere', 'ICD10_2010'), +('G56', 'Mononeuropathies of upper limb', 'ICD10_2010'), +('G56.0', 'Carpal tunnel syndrome', 'ICD10_2010'), +('G56.1', 'Other lesions of median nerve', 'ICD10_2010'), +('G56.2', 'Lesion of ulnar nerve', 'ICD10_2010'), +('G56.3', 'Lesion of radial nerve', 'ICD10_2010'), +('G56.4', 'Causalgia', 'ICD10_2010'), +('G56.8', 'Other mononeuropathies of upper limb', 'ICD10_2010'), +('G56.9', 'Mononeuropathy of upper limb, unspecified', 'ICD10_2010'), +('G57', 'Mononeuropathies of lower limb', 'ICD10_2010'), +('G57.0', 'Lesion of sciatic nerve', 'ICD10_2010'), +('G57.1', 'Meralgia paraesthetica', 'ICD10_2010'), +('G57.2', 'Lesion of femoral nerve', 'ICD10_2010'), +('G57.3', 'Lesion of lateral popliteal nerve', 'ICD10_2010'), +('G57.4', 'Lesion of medial popliteal nerve', 'ICD10_2010'), +('G57.5', 'Tarsal tunnel syndrome', 'ICD10_2010'), +('G57.6', 'Lesion of plantar nerve', 'ICD10_2010'), +('G57.8', 'Other mononeuropathies of lower limb', 'ICD10_2010'), +('G57.9', 'Mononeuropathy of lower limb, unspecified', 'ICD10_2010'), +('G58', 'Other mononeuropathies', 'ICD10_2010'), +('G58.0', 'Intercostal neuropathy', 'ICD10_2010'), +('G58.7', 'Mononeuritis multiplex', 'ICD10_2010'), +('G58.8', 'Other specified mononeuropathies', 'ICD10_2010'), +('G58.9', 'Mononeuropathy, unspecified', 'ICD10_2010'), +('G59', 'Mononeuropathy in diseases classified elsewhere', 'ICD10_2010'), +('G59.0', 'Diabetic mononeuropathy', 'ICD10_2010'), +('G59.8', 'Other mononeuropathies in diseases classified elsewhere', 'ICD10_2010'), +('G60', 'Hereditary and idiopathic neuropathy', 'ICD10_2010'), +('G60.0', 'Hereditary motor and sensory neuropathy', 'ICD10_2010'), +('G60.1', 'Refsum\'s disease', 'ICD10_2010'), +('G60.2', 'Neuropathy in association with hereditary ataxia', 'ICD10_2010'), +('G60.3', 'Idiopathic progressive neuropathy', 'ICD10_2010'), +('G60.8', 'Other hereditary and idiopathic neuropathies', 'ICD10_2010'), +('G60.9', 'Hereditary and idiopathic neuropathy, unspecified', 'ICD10_2010'), +('G61', 'Inflammatory polyneuropathy', 'ICD10_2010'), +('G61.0', 'Guillain-barre syndrome', 'ICD10_2010'), +('G61.1', 'Serum neuropathy', 'ICD10_2010'), +('G61.8', 'Other inflammatory polyneuropathies', 'ICD10_2010'), +('G61.9', 'Inflammatory polyneuropathy, unspecified', 'ICD10_2010'), +('G62', 'Other polyneuropathies', 'ICD10_2010'), +('G62.0', 'Drug-induced polyneuropathy', 'ICD10_2010'), +('G62.1', 'Alcoholic polyneuropathy', 'ICD10_2010'), +('G62.2', 'Polyneuropathy due to other toxic agents', 'ICD10_2010'), +('G62.8', 'Other specified polyneuropathies', 'ICD10_2010'), +('G62.9', 'Polyneuropathy, unspecified', 'ICD10_2010'), +('G63', 'Polyneuropathy in diseases classified elsewhere', 'ICD10_2010'), +('G63.0', 'Polyneuropathy in infectious and parasitic disease classified elsewhere', 'ICD10_2010'), +('G63.1', 'Polyneuropathy in neoplastic disease', 'ICD10_2010'), +('G63.2', 'Diabetic polyneuropathy', 'ICD10_2010'), +('G63.3', 'Polyneuropathy in other endocrine and metabolic diseases', 'ICD10_2010'), +('G63.4', 'Polyneuropathy in nutritional deficiency', 'ICD10_2010'), +('G63.5', 'Polyneuropathy in systemic connective tissue disorders', 'ICD10_2010'), +('G63.6', 'Polyneuropathy in other musculoskeletal disorders', 'ICD10_2010'), +('G63.8', 'Polyneuropathy in other diseases classified elsewhere', 'ICD10_2010'), +('G64', 'Other disorders of peripheral nervous system', 'ICD10_2010'), +('G70', 'Myasthenia gravis and other myoneural disorders', 'ICD10_2010'), +('G70.0', 'Myasthenia gravis', 'ICD10_2010'), +('G70.1', 'Toxic myoneural disorders', 'ICD10_2010'), +('G70.2', 'Congenital and developmental myasthenia', 'ICD10_2010'), +('G70.8', 'Other specified myoneural disorders', 'ICD10_2010'), +('G70.9', 'Myoneural disorder, unspecified', 'ICD10_2010'), +('G71', 'Primary disorders of muscles', 'ICD10_2010'), +('G71.0', 'Muscular dystrophy', 'ICD10_2010'), +('G71.1', 'Myotonic disorders', 'ICD10_2010'), +('G71.2', 'Congenital myopathies', 'ICD10_2010'), +('G71.3', 'Mitochondrial myopathy, not elsewhere classified', 'ICD10_2010'), +('G71.8', 'Other primary disorders of muscles', 'ICD10_2010'), +('G71.9', 'Primary disorder of muscle, unspecified', 'ICD10_2010'), +('G72', 'Other myopathies', 'ICD10_2010'), +('G72.0', 'Drug-induced myopathy', 'ICD10_2010'), +('G72.1', 'Alcoholic myopathy', 'ICD10_2010'), +('G72.2', 'Myopathy due to other toxic agents', 'ICD10_2010'), +('G72.3', 'Periodic paralysis', 'ICD10_2010'), +('G72.4', 'Inflammatory myopathy, not elsewhere classified', 'ICD10_2010'), +('G72.8', 'Other specified myopathies', 'ICD10_2010'), +('G72.9', 'Myopathy, unspecified', 'ICD10_2010'), +('G73', 'Disorders of myoneural junction and muscle in diseases classified elsewhere', 'ICD10_2010'), +('G73.0', 'Myasthenic syndromes in endocrine diseases', 'ICD10_2010'), +('G73.1', 'Eaton-lambert syndrome', 'ICD10_2010'), +('G73.2', 'Other myasthenic syndromes in neoplastic disease', 'ICD10_2010'), +('G73.3', 'Myasthenic syndromes in other diseases classified elsewhere', 'ICD10_2010'), +('G73.4', 'Myopathy in infectious and parasitic disease classified elsewhere', 'ICD10_2010'), +('G73.5', 'Myopathy in endocrine diseases', 'ICD10_2010'), +('G73.6', 'Myopathy in metabolic diseases', 'ICD10_2010'), +('G73.7', 'Myopathy in other diseases classified elsewhere', 'ICD10_2010'), +('G80', 'Cerebral palsy', 'ICD10_2010'), +('G80.0', 'Spastic cerebral palsy', 'ICD10_2010'), +('G80.1', 'Spastic diplegia', 'ICD10_2010'), +('G80.2', 'Infantile hemiplegia', 'ICD10_2010'), +('G80.3', 'Dyskinetic cerebral palsy', 'ICD10_2010'), +('G80.4', 'Ataxic cerebral palsy', 'ICD10_2010'), +('G80.8', 'Other infantile cerebral palsy', 'ICD10_2010'), +('G80.9', 'Infantile cerebral palsy, unspecified', 'ICD10_2010'), +('G81', 'Hemiplegia', 'ICD10_2010'), +('G81.0', 'Flaccid hemiplegia', 'ICD10_2010'), +('G81.1', 'Spastic hemiplegia', 'ICD10_2010'), +('G81.9', 'Hemiplegia, unspecified', 'ICD10_2010'), +('G82', 'Paraplegia and tetraplegia', 'ICD10_2010'), +('G82.0', 'Flaccid paraplegia', 'ICD10_2010'), +('G82.1', 'Spastic paraplegia', 'ICD10_2010'), +('G82.2', 'Paraplegia, unspecified', 'ICD10_2010'), +('G82.3', 'Flaccid tetraplegia', 'ICD10_2010'), +('G82.4', 'Spastic tetraplegia', 'ICD10_2010'), +('G82.5', 'Tetraplegia, unspecified', 'ICD10_2010'), +('G83', 'Other paralytic syndromes', 'ICD10_2010'), +('G83.0', 'Diplegia of upper limbs', 'ICD10_2010'), +('G83.1', 'Monoplegia of lower limb', 'ICD10_2010'), +('G83.2', 'Monoplegia of upper limb', 'ICD10_2010'), +('G83.3', 'Monoplegia, unspecified', 'ICD10_2010'), +('G83.4', 'Cauda equina syndrome', 'ICD10_2010'), +('G83.8', 'Other specified paralytic syndromes', 'ICD10_2010'), +('G83.9', 'Paralytic syndrome, unspecified', 'ICD10_2010'), +('G90', 'Disorders of autonomic nervous system', 'ICD10_2010'), +('G90.0', 'Idiopathic peripheral autonomic neuropathy', 'ICD10_2010'), +('G90.1', 'Familial dysautonomia [riley-day]', 'ICD10_2010'), +('G90.2', 'Horner\'s syndrome', 'ICD10_2010'), +('G90.3', 'Multi-system degeneration', 'ICD10_2010'), +('G90.4', 'Autonomic dysreflexia', 'ICD10_2010'), +('G90.8', 'Other disorders of autonomic nervous system', 'ICD10_2010'), +('G90.9', 'Disorder of autonomic nervous system, unspecified', 'ICD10_2010'), +('G91', 'Hydrocephalus', 'ICD10_2010'), +('G91.0', 'Communicating hydrocephalus', 'ICD10_2010'), +('G91.1', 'Obstructive hydrocephalus', 'ICD10_2010'), +('G91.2', 'Normal-pressure hydrocephalus', 'ICD10_2010'), +('G91.3', 'Post-traumatic hydrocephalus, unspecified', 'ICD10_2010'), +('G91.8', 'Other hydrocephalus', 'ICD10_2010'), +('G91.9', 'Hydrocephalus, unspecified', 'ICD10_2010'), +('G92', 'Toxic encephalopathy', 'ICD10_2010'), +('G93', 'Other disorders of brain', 'ICD10_2010'), +('G93.0', 'Cerebral cysts', 'ICD10_2010'), +('G93.1', 'Anoxic brain damage, not elsewhere classified', 'ICD10_2010'), +('G93.2', 'Benign intracranial hypertension', 'ICD10_2010'), +('G93.3', 'Postviral fatigue syndrome', 'ICD10_2010'), +('G93.4', 'Encephalopathy, unspecified', 'ICD10_2010'), +('G93.5', 'Compression of brain', 'ICD10_2010'), +('G93.6', 'Cerebral oedema', 'ICD10_2010'), +('G93.7', 'Reye\'s syndrome', 'ICD10_2010'), +('G93.8', 'Other specified disorders of brain', 'ICD10_2010'), +('G93.9', 'Disorder of brain, unspecified', 'ICD10_2010'), +('G94', 'Other disorders of brain in diseases classified elsewhere', 'ICD10_2010'), +('G94.0', 'Hydrocephalus in infectious and parasitic disease classified elsewhere', 'ICD10_2010'), +('G94.1', 'Hydrocephalus in neoplastic disease', 'ICD10_2010'), +('G94.2', 'Hydrocephalus in other diseases classified elsewhere', 'ICD10_2010'), +('G94.8', 'Other specified disorders of brain in disease classified elsewhere', 'ICD10_2010'), +('G95', 'Other diseases of spinal cord', 'ICD10_2010'), +('G95.0', 'Syringomyelia and syringobulbia', 'ICD10_2010'), +('G95.1', 'Vascular myelopathies', 'ICD10_2010'), +('G95.2', 'Cord compression, unspecified', 'ICD10_2010'), +('G95.8', 'Other specified diseases of spinal cord', 'ICD10_2010'), +('G95.9', 'Disease of spinal cord, unspecified', 'ICD10_2010'), +('G96', 'Other disorders of central nervous system', 'ICD10_2010'), +('G96.0', 'Cerebrospinal fluid leak', 'ICD10_2010'), +('G96.1', 'Disorders of meninges, not elsewhere classified', 'ICD10_2010'), +('G96.8', 'Other specified disorders of central nervous system', 'ICD10_2010'), +('G96.9', 'Disorder of central nervous system, unspecified', 'ICD10_2010'), +('G97', 'Postprocedural disorders of nervous system, not elsewhere classified', 'ICD10_2010'), +('G97.0', 'Cerebrospinal fluid leak from spinal puncture', 'ICD10_2010'), +('G97.1', 'Other reaction to spinal and lumbar puncture', 'ICD10_2010'), +('G97.2', 'Intracranial hypotension following ventricular shunting', 'ICD10_2010'), +('G97.8', 'Other postprocedural disorders of nervous system', 'ICD10_2010'), +('G97.9', 'Postprocedural disorder of nervous system, unspecified', 'ICD10_2010'), +('G98', 'Other disorders of nervous system, not elsewhere classified', 'ICD10_2010'), +('G99', 'Other disorders of nervous system in diseases classified elsewhere', 'ICD10_2010'), +('G99.0', 'Autonomic neuropathy in endocrine and metabolic diseases', 'ICD10_2010'), +('G99.1', 'Other disorders of autonomic nervous system in other disease classified elsewhere', 'ICD10_2010'), +('G99.2', 'Myelopathy in diseases classified elsewhere', 'ICD10_2010'), +('G99.8', 'Other specified disorders of nervous system in diseases ec', 'ICD10_2010'), +('H00', 'Hordeolum and chalazion', 'ICD10_2010'), +('H00.0', 'Hordeolum and other deep inflammation of eyelid', 'ICD10_2010'), +('H00.1', 'Chalazion', 'ICD10_2010'), +('H01', 'Other inflammation of eyelid', 'ICD10_2010'), +('H01.0', 'Blepharitis', 'ICD10_2010'), +('H01.1', 'Noninfectious dermatoses of eyelid', 'ICD10_2010'), +('H01.8', 'Other specified inflammation of eyelid', 'ICD10_2010'), +('H01.9', 'Inflammation of eyelid, unspecified', 'ICD10_2010'), +('H02', 'Other disorders of eyelid', 'ICD10_2010'), +('H02.0', 'Entropion and trichiasis of eyelid', 'ICD10_2010'), +('H02.1', 'Ectropion of eyelid', 'ICD10_2010'), +('H02.2', 'Lagophthalmos', 'ICD10_2010'), +('H02.3', 'Blepharochalasis', 'ICD10_2010'), +('H02.4', 'Ptosis of eyelid', 'ICD10_2010'), +('H02.5', 'Other disorders affecting eyelid function', 'ICD10_2010'), +('H02.6', 'Xanthelasma of eyelid', 'ICD10_2010'), +('H02.7', 'Other degenerative disorders of eyelid and periocular area', 'ICD10_2010'), +('H02.8', 'Other specified disorders of eyelid', 'ICD10_2010'), +('H02.9', 'Disorder of eyelid, unspecified', 'ICD10_2010'), +('H03', 'Disorders of eyelid in diseases classified elsewhere', 'ICD10_2010'), +('H03.0', 'Parasitic infestation of eyelid in diseases classified', 'ICD10_2010'), +('H03.1', 'Involvement of eyelid in other infectious diseases classified elsewhere', 'ICD10_2010'), +('H03.8', 'Involvement of eyelid in other diseases classified elsewhere', 'ICD10_2010'), +('H04', 'Disorders of lacrimal system', 'ICD10_2010'), +('H04.0', 'Dacryoadenitis', 'ICD10_2010'), +('H04.1', 'Other disorders of lacrimal gland', 'ICD10_2010'), +('H04.2', 'Epiphora', 'ICD10_2010'), +('H04.3', 'Acute and unspecified inflammation of lacrimal passages', 'ICD10_2010'), +('H04.4', 'Chronic inflammation of lacrimal passages', 'ICD10_2010'), +('H04.5', 'Stenosis and insufficiency of lacrimal passages', 'ICD10_2010'), +('H04.6', 'Other changes in lacrimal passages', 'ICD10_2010'), +('H04.8', 'Other disorders of lacrimal system', 'ICD10_2010'), +('H04.9', 'Disorder of lacrimal system, unspecified', 'ICD10_2010'), +('H05', 'Disorders of orbit', 'ICD10_2010'), +('H05.0', 'Acute inflammation of orbit', 'ICD10_2010'), +('H05.1', 'Chronic inflammatory disorders of orbit', 'ICD10_2010'), +('H05.2', 'Exophthalmic conditions', 'ICD10_2010'), +('H05.3', 'Deformity of orbit', 'ICD10_2010'), +('H05.4', 'Enophthalmos', 'ICD10_2010'), +('H05.5', 'Retained (old) foreign body folowing penetrating wound of orbit', 'ICD10_2010'), +('H05.8', 'Other disorders of orbit', 'ICD10_2010'), +('H05.9', 'Disorder of orbit, unspecified', 'ICD10_2010'), +('H06', 'Disorders of lacrimal system and orbit in diseases classified elsewhere', 'ICD10_2010'), +('H06.0', 'Disorders of lacrimal system in diseases classified elsewhere', 'ICD10_2010'), +('H06.1', 'Parasitic infestation of orbit in diseases classified elsewhere', 'ICD10_2010'), +('H06.2', 'Dysthyroid exophthalmos', 'ICD10_2010'), +('H06.3', 'Other disorders of orbit in diseases classified elsewhere', 'ICD10_2010'), +('H10', 'Conjunctivitis', 'ICD10_2010'), +('H10.0', 'Mucopurulent conjunctivitis', 'ICD10_2010'), +('H10.1', 'Acute atopic conjunctivitis', 'ICD10_2010'), +('H10.2', 'Other acute conjunctivitis', 'ICD10_2010'), +('H10.3', 'Acute conjunctivitis, unspecified', 'ICD10_2010'), +('H10.4', 'Chronic conjunctivitis', 'ICD10_2010'), +('H10.5', 'Blepharoconjunctivitis', 'ICD10_2010'), +('H10.8', 'Other conjunctivitis', 'ICD10_2010'), +('H10.9', 'Conjunctivitis, unspecified', 'ICD10_2010'), +('H11', 'Other disorders of conjunctiva', 'ICD10_2010'), +('H11.0', 'Pterygium', 'ICD10_2010'), +('H11.1', 'Conjunctival degenerations and deposits', 'ICD10_2010'), +('H11.2', 'Conjunctival scars', 'ICD10_2010'), +('H11.3', 'Conjunctival haemorrhage', 'ICD10_2010'), +('H11.4', 'Other conjunctival vascular disorders and cysts', 'ICD10_2010'), +('H11.8', 'Other specified disorders of conjunctiva', 'ICD10_2010'), +('H11.9', 'Disorder of conjunctiva, unspecified', 'ICD10_2010'), +('H13', 'Disorders of conjunctiva in diseases classified elsewhere', 'ICD10_2010'), +('H13.0', 'Filarial infection of conjunctiva', 'ICD10_2010'), +('H13.1', 'Conjunctivitis in infectious and parasitic diseases classified elsewhere', 'ICD10_2010'), +('H13.2', 'Conjunctivitis in other diseases classified elsewhere', 'ICD10_2010'), +('H13.3', 'Ocular pemphigoid', 'ICD10_2010'), +('H13.8', 'Other disorders of conjunctiva in diseases classified elsewhere', 'ICD10_2010'), +('H15', 'Disorders of sclera', 'ICD10_2010'), +('H15.0', 'Scleritis', 'ICD10_2010'), +('H15.1', 'Episcleritis', 'ICD10_2010'), +('H15.8', 'Other disorders of sclera', 'ICD10_2010'), +('H15.9', 'Disorder of sclera, unspecified', 'ICD10_2010'), +('H16', 'Keratitis', 'ICD10_2010'), +('H16.0', 'Corneal ulcer', 'ICD10_2010'), +('H16.1', 'Other superficial keratitis without conjunctivitis', 'ICD10_2010'), +('H16.2', 'Keratoconjunctivitis', 'ICD10_2010'), +('H16.3', 'Interstitial and deep keratitis', 'ICD10_2010'), +('H16.4', 'Corneal neovascularization', 'ICD10_2010'), +('H16.8', 'Other keratitis', 'ICD10_2010'), +('H16.9', 'Keratitis, unspecified', 'ICD10_2010'), +('H17', 'Corneal scars and opacities', 'ICD10_2010'), +('H17.0', 'Adherent leukoma', 'ICD10_2010'), +('H17.1', 'Other central corneal opacity', 'ICD10_2010'), +('H17.8', 'Other corneal scars and opacities', 'ICD10_2010'), +('H17.9', 'Corneal scar and opacity, unspecified', 'ICD10_2010'), +('H18', 'Other disorders of cornea', 'ICD10_2010'), +('H18.0', 'Corneal pigmentations and deposits', 'ICD10_2010'), +('H18.1', 'Bullous keratopathy', 'ICD10_2010'), +('H18.2', 'Other corneal oedema', 'ICD10_2010'), +('H18.3', 'Changes in corneal membranes', 'ICD10_2010'), +('H18.4', 'Corneal degeneration', 'ICD10_2010'), +('H18.5', 'Hereditary corneal dystrophies', 'ICD10_2010'), +('H18.6', 'Keratoconus', 'ICD10_2010'), +('H18.7', 'Other corneal deformities', 'ICD10_2010'), +('H18.8', 'Other specified disorders of cornea', 'ICD10_2010'), +('H18.9', 'Disorder of cornea, unspecified', 'ICD10_2010'), +('H19', 'Disorders of sclera and cornea in diseases classified elsewhere', 'ICD10_2010'), +('H19.0', 'Scleritis and episcleritis in diseases classified elsewhere', 'ICD10_2010'), +('H19.1', 'Herpesviral keratitis and keratoconjunctivitis', 'ICD10_2010'), +('H19.2', 'Keratitis and keratoconjunctivitis in other infectious and parasitic disease classified elsewhere', 'ICD10_2010'), +('H19.3', 'Keratitis and keratoconjunctivitis in other diseases classified elsewhere', 'ICD10_2010'), +('H19.8', 'Other disorders of sclera and cornea in diseases classified elsewhere', 'ICD10_2010'), +('H20', 'Iridocyclitis', 'ICD10_2010'), +('H20.0', 'Acute and subacute iridocyclitis', 'ICD10_2010'), +('H20.1', 'Chronic iridocyclitis', 'ICD10_2010'), +('H20.2', 'Lens-induced iridocyclitis', 'ICD10_2010'), +('H20.8', 'Other iridocyclitis', 'ICD10_2010'), +('H20.9', 'Iridocyclitis, unspecified', 'ICD10_2010'), +('H21', 'Other disorders of iris and ciliary body', 'ICD10_2010'), +('H21.0', 'Hyphaema', 'ICD10_2010'), +('H21.1', 'Other vascular disorders of iris and ciliary body', 'ICD10_2010'), +('H21.2', 'Degeneration of iris and ciliary body', 'ICD10_2010'), +('H21.3', 'Cyst of iris, ciliary body and anterior chamber', 'ICD10_2010'), +('H21.4', 'Pupillary membranes', 'ICD10_2010'), +('H21.5', 'Other adhesions and disruptions of iris and ciliary body', 'ICD10_2010'), +('H21.8', 'Other specified disorders of iris and ciliary body', 'ICD10_2010'), +('H21.9', 'Disorder of iris and ciliary body, unspecified', 'ICD10_2010'), +('H22', 'Disorders of iris and ciliary body in diseases classified elsewhere', 'ICD10_2010'), +('H22.0', 'Iridocyclitis in infectious and parasitic diseases classified elsewhere', 'ICD10_2010'), +('H22.1', 'Iridocyclitis in other diseases classified elsewhere', 'ICD10_2010'), +('H22.8', 'Other disorders of iris and ciliary body in diseases classified elsewhere', 'ICD10_2010'), +('H25', 'Senile cataract', 'ICD10_2010'), +('H25.0', 'Senile incipient cataract', 'ICD10_2010'), +('H25.1', 'Senile nuclear cataract', 'ICD10_2010'), +('H25.2', 'Senile cataract, morgagnian type', 'ICD10_2010'), +('H25.8', 'Other senile cataract', 'ICD10_2010'), +('H25.9', 'Senile cataract, unspecified', 'ICD10_2010'), +('H26', 'Other cataract', 'ICD10_2010'), +('H26.0', 'Infantile, juvenile and presenile cataract', 'ICD10_2010'), +('H26.1', 'Traumatic cataract', 'ICD10_2010'), +('H26.2', 'Complicated cataract', 'ICD10_2010'), +('H26.3', 'Drug-induced cataract', 'ICD10_2010'), +('H26.4', 'After-cataract', 'ICD10_2010'), +('H26.8', 'Other specified cataract', 'ICD10_2010'), +('H26.9', 'Cataract, unspecified', 'ICD10_2010'), +('H27', 'Other disorders of lens', 'ICD10_2010'), +('H27.0', 'Aphakia', 'ICD10_2010'), +('H27.1', 'Dislocation of lens', 'ICD10_2010'), +('H27.8', 'Other specified disorders of lens', 'ICD10_2010'), +('H27.9', 'Disorder of lens, unspecified', 'ICD10_2010'), +('H28', 'Cataract and other disorders of lens in diseases classified elsewhere', 'ICD10_2010'), +('H28.0', 'Diabetic cataract (E10-E14 with common fourth character 3)', 'ICD10_2010'), +('H28.1', 'Cataract in other endocrine, nutritional and metabolic diseases', 'ICD10_2010'), +('H28.2', 'Cataract in other diseases classified elsewhere', 'ICD10_2010'), +('H28.8', 'Other disorders of lens in diseases classified elsewhere', 'ICD10_2010'), +('H30', 'Chorioretinal inflammation', 'ICD10_2010'), +('H30.0', 'Focal chorioretinal inflammation', 'ICD10_2010'), +('H30.1', 'Disseminated chorioretinal inflammation', 'ICD10_2010'), +('H30.2', 'Posterior cyclitis', 'ICD10_2010'), +('H30.8', 'Other chorioretinal inflammations', 'ICD10_2010'), +('H30.9', 'Chorioretinal inflammation, unspecified', 'ICD10_2010'), +('H31', 'Other disorders of choroid', 'ICD10_2010'), +('H31.0', 'Chorioretinal scars', 'ICD10_2010'), +('H31.1', 'Choroidal degeneration', 'ICD10_2010'), +('H31.2', 'Hereditary choroidal dystrophy', 'ICD10_2010'), +('H31.3', 'Choroidal haemorrhage and rupture', 'ICD10_2010'), +('H31.4', 'Choroidal detachment', 'ICD10_2010'), +('H31.8', 'Other specified disorders of choroid', 'ICD10_2010'), +('H31.9', 'Disorder of choroid, unspecified', 'ICD10_2010'), +('H32', 'Chorioretinal disorders in diseases classified elsewhere', 'ICD10_2010'), +('H32.0', 'Chorioretinal inflammation infectious and parasitic diseases classified elsewhere', 'ICD10_2010'), +('H32.8', 'Other chorioretinal disorders in diseases classified elsewhere', 'ICD10_2010'), +('H33', 'Retinal detachments and breaks', 'ICD10_2010'), +('H33.0', 'Retinal detachment with retinal break', 'ICD10_2010'), +('H33.1', 'Retinoschisis and retinal cysts', 'ICD10_2010'), +('H33.2', 'Serous retinal detachment', 'ICD10_2010'), +('H33.3', 'Retinal breaks without detachment', 'ICD10_2010'), +('H33.4', 'Traction detachment of retina', 'ICD10_2010'), +('H33.5', 'Other retinal detachments', 'ICD10_2010'), +('H34', 'Retinal vascular occlusions', 'ICD10_2010'), +('H34.0', 'Transient retinal artery occlusion', 'ICD10_2010'), +('H34.1', 'Central retinal artery occlusion', 'ICD10_2010'), +('H34.2', 'Other retinal artery occlusions', 'ICD10_2010'), +('H34.8', 'Other retinal vascular occlusions', 'ICD10_2010'), +('H34.9', 'Retinal vascular occlusion, unspecified', 'ICD10_2010'), +('H35', 'Other retinal disorders', 'ICD10_2010'), +('H35.0', 'Background retinopathy and retinal vascular changes', 'ICD10_2010'), +('H35.1', 'Retinopathy of prematurity', 'ICD10_2010'), +('H35.2', 'Other proliferative retinopathy', 'ICD10_2010'), +('H35.3', 'Degeneration of macula and posterior pole', 'ICD10_2010'), +('H35.4', 'Peripheral retinal degeneration', 'ICD10_2010'), +('H35.5', 'Hereditary retinal dystrophy', 'ICD10_2010'), +('H35.6', 'Retinal haemorrhage', 'ICD10_2010'), +('H35.7', 'Separation of retinal layers', 'ICD10_2010'), +('H35.8', 'Other specified retinal disorders', 'ICD10_2010'), +('H35.9', 'Retinal disorder, unspecified', 'ICD10_2010'), +('H36', 'Retinal disorders in diseases classified elsewhere', 'ICD10_2010'), +('H36.0', 'Diabetic retinopathy (E10-E14 with common fourth character 3)', 'ICD10_2010'), +('H36.8', 'Other retinal disorders in diseases classified elsewhere', 'ICD10_2010'), +('H40', 'Glaucoma', 'ICD10_2010'), +('H40.0', 'Glaucoma suspect', 'ICD10_2010'), +('H40.1', 'Primary open-angle glaucoma', 'ICD10_2010'), +('H40.2', 'Primary angle-closure glaucoma', 'ICD10_2010'), +('H40.3', 'Glaucoma secondary to eye trauma', 'ICD10_2010'), +('H40.4', 'Glaucoma secondary to eye inflammation', 'ICD10_2010'), +('H40.5', 'Glaucoma secondary to other eye disorders', 'ICD10_2010'), +('H40.6', 'Glaucoma secondary to drugs', 'ICD10_2010'), +('H40.8', 'Other glaucoma', 'ICD10_2010'), +('H40.9', 'Glaucoma, unspecified', 'ICD10_2010'), +('H42', 'Glaucoma in diseases classified elsewhere', 'ICD10_2010'), +('H42.0', 'Glaucoma in endocrine, nutritional and metabolic diseases', 'ICD10_2010'), +('H42.8', 'Glaucoma in other diseases classified elsewhere', 'ICD10_2010'), +('H43', 'Disorders of vitreous body', 'ICD10_2010'), +('H43.0', 'Vitreous prolapse', 'ICD10_2010'), +('H43.1', 'Vitreous haemorrhage', 'ICD10_2010'), +('H43.2', 'Crystalline deposits in vitreous body', 'ICD10_2010'), +('H43.3', 'Other vitreous opacities', 'ICD10_2010'), +('H43.8', 'Other disorders of vitreous body', 'ICD10_2010'), +('H43.9', 'Disorder of vitreous body, unspecified', 'ICD10_2010'), +('H44', 'Disorders of globe', 'ICD10_2010'), +('H44.0', 'Purulent endophthalmitis', 'ICD10_2010'), +('H44.1', 'Other endophthalmitis', 'ICD10_2010'), +('H44.2', 'Degenerative myopia', 'ICD10_2010'), +('H44.3', 'Other degenerative disorders of globe', 'ICD10_2010'), +('H44.4', 'Hypotony of eye', 'ICD10_2010'), +('H44.5', 'Degenerated conditions of globe', 'ICD10_2010'), +('H44.6', 'Retained (old) intraocular foreign body, magnetic', 'ICD10_2010'), +('H44.7', 'Retained (old) intraocular foreign body, nonmagnetic', 'ICD10_2010'), +('H44.8', 'Other disorders of globe', 'ICD10_2010'), +('H44.9', 'Disorder of globe, unspecified', 'ICD10_2010'), +('H45', 'Disorders of vitreous body and globe in diseases classified elsewhere', 'ICD10_2010'), +('H45.0', 'Vitreous haemorrhage in diseases classified elsewhere', 'ICD10_2010'), +('H45.1', 'Endophthalmitis in diseases classified elsewhere', 'ICD10_2010'), +('H45.8', 'Other disorders of vitreous body and globe in diseases classified elsewhere', 'ICD10_2010'), +('H46', 'Optic neuritis', 'ICD10_2010'), +('H47', 'Other disorders of optic [2nd] nerve and visual pathways', 'ICD10_2010'), +('H47.0', 'Disorders of optic nerve, not elsewhere classified', 'ICD10_2010'), +('H47.1', 'Papilloedema, unspecified', 'ICD10_2010'), +('H47.2', 'Optic atrophy', 'ICD10_2010'), +('H47.3', 'Other disorders of optic disc', 'ICD10_2010'), +('H47.4', 'Disorders of optic chiasm', 'ICD10_2010'), +('H47.5', 'Disorders of other visual pathways', 'ICD10_2010'), +('H47.6', 'Disorders of visual cortex', 'ICD10_2010'), +('H47.7', 'Disorder of visual pathways, unspecified', 'ICD10_2010'), +('H48', 'Disorders of optic [2nd] nerve and visual pathways in diseases classified elsewhere', 'ICD10_2010'), +('H48.0', 'Optic atrophy in diseases classified elsewhere', 'ICD10_2010'), +('H48.1', 'Retrobulbar neuritis in diseases classified elsewhere', 'ICD10_2010'), +('H48.8', 'Other disorder of optic nerve and visual pathways in diseases classified elsewhere', 'ICD10_2010'), +('H49', 'Paralytic strabismus', 'ICD10_2010'), +('H49.0', 'Third [oculomotor] nerve palsy', 'ICD10_2010'), +('H49.1', 'Fourth [trochlear] nerve palsy', 'ICD10_2010'), +('H49.2', 'Sixth [abducent] nerve palsy', 'ICD10_2010'), +('H49.3', 'Total (external) ophthalmoplegia', 'ICD10_2010'), +('H49.4', 'Progressive external ophthalmoplegia', 'ICD10_2010'), +('H49.8', 'Other paralytic strabismus', 'ICD10_2010'), +('H49.9', 'Paralytic strabismus, unspecified', 'ICD10_2010'), +('H50', 'Other strabismus', 'ICD10_2010'), +('H50.0', 'Convergent concomitant strabismus', 'ICD10_2010'), +('H50.1', 'Divergent concomitant strabismus', 'ICD10_2010'), +('H50.2', 'Vertical strabismus', 'ICD10_2010'), +('H50.3', 'Intermittent heterotropia', 'ICD10_2010'), +('H50.4', 'Other and unspecified heterotropia', 'ICD10_2010'), +('H50.5', 'Heterophoria', 'ICD10_2010'), +('H50.6', 'Mechanical strabismus', 'ICD10_2010'), +('H50.8', 'Other specified strabismus', 'ICD10_2010'), +('H50.9', 'Strabismus, unspecified', 'ICD10_2010'), +('H51', 'Other disorders of binocular movement', 'ICD10_2010'), +('H51.0', 'Palsy of conjugate gaze', 'ICD10_2010'), +('H51.1', 'Convergence insufficiency and excess', 'ICD10_2010'), +('H51.2', 'Internuclear ophthalmoplegia', 'ICD10_2010'), +('H51.8', 'Other specified disorders of binocular movement', 'ICD10_2010'), +('H51.9', 'Disorder of binocular movement, unspecified', 'ICD10_2010'), +('H52', 'Disorders of refraction and accommodation', 'ICD10_2010'), +('H52.0', 'Hypermetropia', 'ICD10_2010'), +('H52.1', 'Myopia', 'ICD10_2010'), +('H52.2', 'Astigmatism', 'ICD10_2010'), +('H52.3', 'Anisometropia and aniseikonia', 'ICD10_2010'), +('H52.4', 'Presbyopia', 'ICD10_2010'), +('H52.5', 'Disorders of accommodation', 'ICD10_2010'), +('H52.6', 'Other disorders of refraction', 'ICD10_2010'), +('H52.7', 'Disorder of refraction, unspecified', 'ICD10_2010'), +('H53', 'Visual disturbances', 'ICD10_2010'), +('H53.0', 'Amblyopia ex anopsia', 'ICD10_2010'), +('H53.1', 'Subjective visual disturbances', 'ICD10_2010'), +('H53.2', 'Diplopia', 'ICD10_2010'), +('H53.3', 'Other disorders of binocular vision', 'ICD10_2010'), +('H53.4', 'Visual field defects', 'ICD10_2010'), +('H53.5', 'Colour vision deficiencies', 'ICD10_2010'), +('H53.6', 'Night blindness', 'ICD10_2010'), +('H53.8', 'Other visual disturbances', 'ICD10_2010'), +('H53.9', 'Visual disturbance, unspecified', 'ICD10_2010'), +('H54', 'Visual impairment including blindness (binocular or monocular)', 'ICD10_2010'), +('H54.0', 'Blindness, both eyes', 'ICD10_2010'), +('H54.1', 'Blindness, one eye, low vision other eye', 'ICD10_2010'), +('H54.2', 'Low vision, both eyes', 'ICD10_2010'), +('H54.3', 'Unqualified visual loss, both eyes', 'ICD10_2010'), +('H54.4', 'Blindness, one eye', 'ICD10_2010'), +('H54.5', 'Low vision, one eye', 'ICD10_2010'), +('H54.6', 'Unqualified visual loss, one eye', 'ICD10_2010'), +('H54.7', 'Unspecified visual loss', 'ICD10_2010'), +('H54.9', 'Unspecified visual impairment (binocular)', 'ICD10_2010'), +('H55', 'Nystagmus and other irregular eye movements', 'ICD10_2010'), +('H57', 'Other disorders of eye and adnexa', 'ICD10_2010'), +('H57.0', 'Anomalies of pupillary function', 'ICD10_2010'), +('H57.1', 'Ocular pain', 'ICD10_2010'), +('H57.8', 'Other specified disorders of eye and adnexa', 'ICD10_2010'), +('H57.9', 'Disorder of eye and adnexa, unspecified', 'ICD10_2010'), +('H58', 'Other disorders of eye and adnexa in diseases classified elsewhere', 'ICD10_2010'), +('H58.0', 'Anomalies of pupillary function in diseases classified elsewhere', 'ICD10_2010'), +('H58.1', 'Visual disturbances in diseases classified elsewhere', 'ICD10_2010'), +('H58.8', 'Other specified disorders of eye and adnexa in diseases classified elsewhere', 'ICD10_2010'), +('H59', 'Postprocedural disorders of eye and adnexa, not elsewhere classified', 'ICD10_2010'), +('H59.0', 'Keratopathy (bullous aphakic) following cataract surgery', 'ICD10_2010'), +('H59.8', 'Other postprocedural disorders of eye and adnexa', 'ICD10_2010'), +('H59.9', 'Postprocedural disorder of eye and adnexa, unspecified', 'ICD10_2010'), +('H60', 'Otitis externa', 'ICD10_2010'), +('H60.0', 'Abscess of external ear', 'ICD10_2010'), +('H60.1', 'Cellulitis of external ear', 'ICD10_2010'), +('H60.2', 'Malignant otitis externa', 'ICD10_2010'), +('H60.3', 'Other infective otitis externa', 'ICD10_2010'), +('H60.4', 'Cholesteatoma of external ear', 'ICD10_2010'), +('H60.5', 'Acute otitis externa, noninfective', 'ICD10_2010'), +('H60.8', 'Other otitis externa', 'ICD10_2010'), +('H60.9', 'Otitis externa, unspecified', 'ICD10_2010'), +('H61', 'Other disorders of external ear', 'ICD10_2010'), +('H61.0', 'Perichondritis of external ear', 'ICD10_2010'), +('H61.1', 'Noninfective disorders of pinna', 'ICD10_2010'), +('H61.2', 'Impacted cerumen', 'ICD10_2010'), +('H61.3', 'Acquired stenosis of external ear canal', 'ICD10_2010'), +('H61.8', 'Other specified disorders of external ear', 'ICD10_2010'), +('H61.9', 'Disorder of external ear, unspecified', 'ICD10_2010'), +('H62', 'Disorders of external ear in diseases classified elsewhere', 'ICD10_2010'), +('H62.0', 'Otitis externa in bacterial diseases classified elsewhere', 'ICD10_2010'), +('H62.1', 'Otitis externa in viral diseases classified elsewhere', 'ICD10_2010'), +('H62.2', 'Otitis externa in mycoses', 'ICD10_2010'), +('H62.3', 'Otitis externa in oth infectious and parasitic diseases classified elsewhere', 'ICD10_2010'), +('H62.4', 'Otitis externa in other diseases classified elsewhere', 'ICD10_2010'), +('H62.8', 'Other disorders of external ear in diseases classified elsewhere', 'ICD10_2010'), +('H65', 'Nonsuppurative otitis media', 'ICD10_2010'), +('H65.0', 'Acute serous otitis media', 'ICD10_2010'), +('H65.1', 'Other acute nonsuppurative otitis media', 'ICD10_2010'), +('H65.2', 'Chronic serous otitis media', 'ICD10_2010'), +('H65.3', 'Chronic mucoid otitis media', 'ICD10_2010'), +('H65.4', 'Other chronic nonsuppurative otitis media', 'ICD10_2010'), +('H65.9', 'Nonsuppurative otitis media, unspecified', 'ICD10_2010'), +('H66', 'Suppurative and unspecified otitis media', 'ICD10_2010'), +('H66.0', 'Acute suppurative otitis media', 'ICD10_2010'), +('H66.1', 'Chronic tubotympanic suppurative otitis media', 'ICD10_2010'), +('H66.2', 'Chronic atticoantral suppurative otitis media', 'ICD10_2010'), +('H66.3', 'Other chronic suppurative otitis media', 'ICD10_2010'), +('H66.4', 'Suppurative otitis media, unspecified', 'ICD10_2010'), +('H66.9', 'Otitis media, unspecified', 'ICD10_2010'), +('H67', 'Otitis media in diseases classified elsewhere', 'ICD10_2010'), +('H67.0', 'Otitis media in bacterial diseases classified elsewhere', 'ICD10_2010'), +('H67.1', 'Otitis media in viral diseases classified elsewhere', 'ICD10_2010'), +('H67.8', 'Otitis media in other diseases classified elsewhere', 'ICD10_2010'), +('H68', 'Eustachian salpingitis and obstruction', 'ICD10_2010'), +('H68.0', 'Eustachian salpingitis', 'ICD10_2010'), +('H68.1', 'Obstruction of Eustachian tube', 'ICD10_2010'), +('H69', 'Other disorders of Eustachian tube', 'ICD10_2010'), +('H69.0', 'Patulous Eustachian tube', 'ICD10_2010'), +('H69.8', 'Other specified disorders of Eustachian tube', 'ICD10_2010'), +('H69.9', 'Eustachian tube disorder, unspecified', 'ICD10_2010'), +('H70', 'Mastoiditis and related conditions', 'ICD10_2010'), +('H70.0', 'Acute mastoiditis', 'ICD10_2010'), +('H70.1', 'Chronic mastoiditis', 'ICD10_2010'), +('H70.2', 'Petrositis', 'ICD10_2010'), +('H70.8', 'Other mastoiditis and related conditions', 'ICD10_2010'), +('H70.9', 'Mastoiditis, unspecified', 'ICD10_2010'), +('H71', 'Cholesteatoma of middle ear', 'ICD10_2010'), +('H72', 'Perforation of tympanic membrane', 'ICD10_2010'), +('H72.0', 'Central perforation of tympanic membrane', 'ICD10_2010'), +('H72.1', 'Attic perforation of tympanic membrane', 'ICD10_2010'), +('H72.2', 'Other marginal perforations of tympanic membrane', 'ICD10_2010'), +('H72.8', 'Other perforations of tympanic membrane', 'ICD10_2010'), +('H72.9', 'Perforation of tympanic membrane, unspecified', 'ICD10_2010'), +('H73', 'Other disorders of tympanic membrane', 'ICD10_2010'), +('H73.0', 'Acute myringitis', 'ICD10_2010'), +('H73.1', 'Chronic myringitis', 'ICD10_2010'), +('H73.8', 'Other specified disorders of tympanic membrane', 'ICD10_2010'), +('H73.9', 'Disorder of tympanic membrane, unspecified', 'ICD10_2010'), +('H74', 'Other disorders of middle ear and mastoid', 'ICD10_2010'), +('H74.0', 'Tympanosclerosis', 'ICD10_2010'), +('H74.1', 'Adhesive middle ear disease', 'ICD10_2010'), +('H74.2', 'Discontinuity and dislocation of ear ossicles', 'ICD10_2010'), +('H74.3', 'Other acquired abnormalities of ear ossicles', 'ICD10_2010'), +('H74.4', 'Polyp of middle ear', 'ICD10_2010'), +('H74.8', 'Other specified disorders of middle ear and mastoid', 'ICD10_2010'), +('H74.9', 'Disorder of middle ear and mastoid, unspecified', 'ICD10_2010'), +('H75', 'Other disorders of middle ear and mastoid in diseases classified elsewhere', 'ICD10_2010'), +('H75.0', 'Mastoiditis in infectious and parasitic diseases classified elsewhere', 'ICD10_2010'), +('H75.8', 'Other spec disorder of middle ear and mastoid in diseases classified elsewhere', 'ICD10_2010'), +('H80', 'Otosclerosis', 'ICD10_2010'), +('H80.0', 'Otosclerosis involving oval window, nonobliterative', 'ICD10_2010'), +('H80.1', 'Otosclerosis involving oval window, obliterative', 'ICD10_2010'), +('H80.2', 'Cochlear otosclerosis', 'ICD10_2010'), +('H80.8', 'Other otosclerosis', 'ICD10_2010'), +('H80.9', 'Otosclerosis, unspecified', 'ICD10_2010'), +('H81', 'Disorders of vestibular function', 'ICD10_2010'), +('H81.0', 'Meniere\'s disease', 'ICD10_2010'), +('H81.1', 'Benign paroxysmal vertigo', 'ICD10_2010'), +('H81.2', 'Vestibular neuronitis', 'ICD10_2010'), +('H81.3', 'Other peripheral vertigo', 'ICD10_2010'), +('H81.4', 'Vertigo of central origin', 'ICD10_2010'), +('H81.8', 'Other disorders of vestibular function', 'ICD10_2010'), +('H81.9', 'Disorder of vestibular function, unspecified', 'ICD10_2010'), +('H82', 'Vertiginous syndromes in diseases classified elsewhere', 'ICD10_2010'), +('H83', 'Other diseases of inner ear', 'ICD10_2010'), +('H83.0', 'Labyrinthitis', 'ICD10_2010'), +('H83.1', 'Labyrinthine fistula', 'ICD10_2010'), +('H83.2', 'Labyrinthine dysfunction', 'ICD10_2010'), +('H83.3', 'Noise effects on inner ear', 'ICD10_2010'), +('H83.8', 'Other specified diseases of inner ear', 'ICD10_2010'), +('H83.9', 'Disease of inner ear, unspecified', 'ICD10_2010'), +('H90', 'Conductive and sensorineural hearing loss', 'ICD10_2010'), +('H90.0', 'Conductive hearing loss, bilateral', 'ICD10_2010'), +('H90.1', 'Conduct hearing loss, unilateral with unrestricted hearing on the contralateral side', 'ICD10_2010'), +('H90.2', 'Conductive hearing loss, unspecified', 'ICD10_2010'), +('H90.3', 'Sensorineural hearing loss, bilateral', 'ICD10_2010'), +('H90.4', 'Sensorineural hear loss unilat unrestricted hearing contralateral side', 'ICD10_2010'), +('H90.5', 'Sensorineural hearing loss, unspecified', 'ICD10_2010'), +('H90.6', 'Mixed conductive and sensorineural hearing loss, bilateral', 'ICD10_2010'), +('H90.7', 'Mix conductive and sensorineural hearing loss, unilateral unrestricted hearing on the contralateral side', 'ICD10_2010'), +('H90.8', 'Mixed conductive and sensorineural hearing loss, unspecified', 'ICD10_2010'), +('H91', 'Other hearing loss', 'ICD10_2010'), +('H91.0', 'Ototoxic hearing loss', 'ICD10_2010'), +('H91.1', 'Presbycusis', 'ICD10_2010'), +('H91.2', 'Sudden idiopathic hearing loss', 'ICD10_2010'), +('H91.3', 'Deaf mutism, not elsewhere classified', 'ICD10_2010'), +('H91.8', 'Other specified hearing loss', 'ICD10_2010'), +('H91.9', 'Hearing loss, unspecified', 'ICD10_2010'), +('H92', 'Otalgia and effusion of ear', 'ICD10_2010'), +('H92.0', 'Otalgia', 'ICD10_2010'), +('H92.1', 'Otorrhoea', 'ICD10_2010'), +('H92.2', 'Otorrhagia', 'ICD10_2010'), +('H93', 'Other disorders of ear, not elsewhere classified', 'ICD10_2010'), +('H93.0', 'Degenerative and vascular disorders of ear', 'ICD10_2010'), +('H93.1', 'Tinnitus', 'ICD10_2010'), +('H93.2', 'Other abnormal auditory perceptions', 'ICD10_2010'), +('H93.3', 'Disorders of acoustic nerve', 'ICD10_2010'), +('H93.8', 'Other specified disorders of ear', 'ICD10_2010'), +('H93.9', 'Disorder of ear, unspecified', 'ICD10_2010'), +('H94', 'Other disorders of ear in diseases classified elsewhere', 'ICD10_2010'), +('H94.0', 'Acoustic neuritis in infectious and parasitic diseases classified elsewhere', 'ICD10_2010'), +('H94.8', 'Other specified disorders of ear in diseases classified elsewhere', 'ICD10_2010'), +('H95', 'Postprocedural disorders of ear and mastoid process, not elsewhere classified', 'ICD10_2010'), +('H95.0', 'Recurrent cholesteatoma of postmastoidectomy cavity', 'ICD10_2010'), +('H95.1', 'Other disorders following mastoidectomy', 'ICD10_2010'), +('H95.8', 'Other postprocedural disorders of ear and mastoid process', 'ICD10_2010'), +('H95.9', 'Postprocedural disorder of ear and mastoid process, unspecified', 'ICD10_2010'), +('I00', 'Rheumatic fever without mention of heart involvement', 'ICD10_2010'), +('I01', 'Rheumatic fever with heart involvement', 'ICD10_2010'), +('I01.0', 'Acute rheumatic pericarditis', 'ICD10_2010'), +('I01.1', 'Acute rheumatic endocarditis', 'ICD10_2010'), +('I01.2', 'Acute rheumatic myocarditis', 'ICD10_2010'), +('I01.8', 'Other acute rheumatic heart disease', 'ICD10_2010'), +('I01.9', 'Acute rheumatic heart disease, unspecified', 'ICD10_2010'), +('I02', 'Rheumatic chorea', 'ICD10_2010'), +('I02.0', 'Rheumatic chorea with heart involvement', 'ICD10_2010'), +('I02.9', 'Rheumatic chorea without heart involvement', 'ICD10_2010'), +('I05', 'Rheumatic mitral valve diseases', 'ICD10_2010'), +('I05.0', 'Mitral stenosis', 'ICD10_2010'), +('I05.1', 'Rheumatic mitral insufficiency', 'ICD10_2010'), +('I05.2', 'Mitral stenosis with insufficiency', 'ICD10_2010'), +('I05.8', 'Other mitral valve diseases', 'ICD10_2010'), +('I05.9', 'Mitral valve disease, unspecified', 'ICD10_2010'), +('I06', 'Rheumatic aortic valve diseases', 'ICD10_2010'), +('I06.0', 'Rheumatic aortic stenosis', 'ICD10_2010'), +('I06.1', 'Rheumatic aortic insufficiency', 'ICD10_2010'), +('I06.2', 'Rheumatic aortic stenosis with insufficiency', 'ICD10_2010'), +('I06.8', 'Other rheumatic aortic valve diseases', 'ICD10_2010'), +('I06.9', 'Rheumatic aortic valve disease, unspecified', 'ICD10_2010'), +('I07', 'Rheumatic tricuspid valve diseases', 'ICD10_2010'), +('I07.0', 'Tricuspid stenosis', 'ICD10_2010'), +('I07.1', 'Tricuspid insufficiency', 'ICD10_2010'), +('I07.2', 'Tricuspid stenosis with insufficiency', 'ICD10_2010'), +('I07.8', 'Other tricuspid valve diseases', 'ICD10_2010'), +('I07.9', 'Tricuspid valve disease, unspecified', 'ICD10_2010'), +('I08', 'Multiple valve diseases', 'ICD10_2010'), +('I08.0', 'Disorders of both mitral and aortic valves', 'ICD10_2010'), +('I08.1', 'Disorders of both mitral and tricuspid valves', 'ICD10_2010'), +('I08.2', 'Disorders of both aortic and tricuspid valves', 'ICD10_2010'), +('I08.3', 'Combined disorders of mitral, aortic and tricuspid valves', 'ICD10_2010'), +('I08.8', 'Other multiple valve diseases', 'ICD10_2010'), +('I08.9', 'Multiple valve disease, unspecified', 'ICD10_2010'), +('I09', 'Other rheumatic heart diseases', 'ICD10_2010'), +('I09.0', 'Rheumatic myocarditis', 'ICD10_2010'), +('I09.1', 'Rheumatic diseases of endocardium, valve unspecified', 'ICD10_2010'), +('I09.2', 'Chronic rheumatic pericarditis', 'ICD10_2010'), +('I09.8', 'Other specified rheumatic heart diseases', 'ICD10_2010'), +('I09.9', 'Rheumatic heart disease, unspecified', 'ICD10_2010'), +('I10', 'Essential (primary) hypertension', 'ICD10_2010'), +('I11', 'Hypertensive heart disease', 'ICD10_2010'), +('I11.0', 'Hypertensive heart disease with (congestive) heart failure', 'ICD10_2010'), +('I11.9', 'Hypertensive heart disease without (congestive) heart failure', 'ICD10_2010'), +('I12', 'Hypertensive renal disease', 'ICD10_2010'), +('I12.0', 'Hypertensive renal disease with renal failure', 'ICD10_2010'), +('I12.9', 'Hypertensive renal disease without renal failure', 'ICD10_2010'), +('I13', 'Hypertensive heart and renal disease', 'ICD10_2010'), +('I13.0', 'Hypertens heart and renal dis with (congestive) heart failure', 'ICD10_2010'), +('I13.1', 'Hypertensive heart and renal disease with renal failure', 'ICD10_2010'), +('I13.2', 'Hyper heart and renal disease both (congestive) heart failure and renal failure', 'ICD10_2010'), +('I13.9', 'Hypertensive heart and renal disease, unspecified', 'ICD10_2010'), +('I15', 'Secondary hypertension', 'ICD10_2010'), +('I15.0', 'Renovascular hypertension', 'ICD10_2010'), +('I15.1', 'Hypertension secondary to other renal disorders', 'ICD10_2010'), +('I15.2', 'Hypertension secondary to endocrine disorders', 'ICD10_2010'), +('I15.8', 'Other secondary hypertension', 'ICD10_2010'), +('I15.9', 'Secondary hypertension, unspecified', 'ICD10_2010'), +('I20', 'Angina pectoris', 'ICD10_2010'), +('I20.0', 'Unstable angina', 'ICD10_2010'), +('I20.1', 'Angina pectoris with documented spasm', 'ICD10_2010'), +('I20.8', 'Other forms of angina pectoris', 'ICD10_2010'), +('I20.9', 'Angina pectoris, unspecified', 'ICD10_2010'), +('I21', 'Acute myocardial infarction', 'ICD10_2010'), +('I21.0', 'Acute transmural myocardial infarction of anterior wall', 'ICD10_2010'), +('I21.1', 'Acute transmural myocardial infarction of inferior wall', 'ICD10_2010'), +('I21.2', 'Acute transmural myocardial infarction of other sites', 'ICD10_2010'), +('I21.3', 'Acute transmural myocardial infarction of unspecified site', 'ICD10_2010'), +('I21.4', 'Acute subendocardial myocardial infarction', 'ICD10_2010'), +('I21.9', 'Acute myocardial infarction, unspecified', 'ICD10_2010'), +('I22', 'Subsequent myocardial infarction', 'ICD10_2010'), +('I22.0', 'Subsequent myocardial infarction of anterior wall', 'ICD10_2010'), +('I22.1', 'Subsequent myocardial infarction of inferior wall', 'ICD10_2010'), +('I22.8', 'Subsequent myocardial infarction of other sites', 'ICD10_2010'), +('I22.9', 'Subsequent myocardial infarction of unspecified site', 'ICD10_2010'), +('I23', 'Certain current complications following acute myocardial infarction', 'ICD10_2010'), +('I23.0', 'Haemopericardium as current complication following acute myocardial infarction', 'ICD10_2010'), +('I23.1', 'Atrial septal defect as current complication following acute myocardial infarction', 'ICD10_2010'), +('I23.2', 'Ventricular septal defect as current complication following acute myocardial infarction', 'ICD10_2010'), +('I23.3', 'Rupture cardiac wall without haemopericardium as current complication following acute myocardial infarction', 'ICD10_2010'), +('I23.4', 'Rupture chordae tendineae as current complication following acut myocardial infarction', 'ICD10_2010'), +('I23.5', 'Rupture of papilary muscle as current complication following acute myocardial infarction', 'ICD10_2010'), +('I23.6', 'Thrombosis of atrium, auricular appendage ventricle as current complication following acute myocardial infarction', 'ICD10_2010'), +('I23.8', 'Oth current complications following acute myocardial infarction', 'ICD10_2010'), +('I24', 'Other acute ischaemic heart diseases', 'ICD10_2010'), +('I24.0', 'Coronary thrombosis not resulting in myocardial infarction', 'ICD10_2010'), +('I24.1', 'Dressler\'s syndrome', 'ICD10_2010'), +('I24.8', 'Other forms of acute ischaemic heart disease', 'ICD10_2010'), +('I24.9', 'Acute ischaemic heart disease, unspecified', 'ICD10_2010'), +('I25', 'Chronic ischaemic heart disease', 'ICD10_2010'), +('I25.0', 'Atherosclerotic cardiovascular disease, so described', 'ICD10_2010'), +('I25.1', 'Atherosclerotic heart disease', 'ICD10_2010'), +('I25.2', 'Old myocardial infarction', 'ICD10_2010'), +('I25.3', 'Aneurysm of heart', 'ICD10_2010'), +('I25.4', 'Coronary artery aneurysm', 'ICD10_2010'), +('I25.5', 'Ischaemic cardiomyopathy', 'ICD10_2010'), +('I25.6', 'Silent myocardial ischaemia', 'ICD10_2010'), +('I25.8', 'Other forms of chronic ischaemic heart disease', 'ICD10_2010'), +('I25.9', 'Chronic ischaemic heart disease, unspecified', 'ICD10_2010'), +('I26', 'Pulmonary embolism', 'ICD10_2010'), +('I26.0', 'Pulmonary embolism with mention of acute cor pulmonale', 'ICD10_2010'), +('I26.9', 'Pulmonary embolism without mention of acute cor pulmonale', 'ICD10_2010'), +('I27', 'Other pulmonary heart diseases', 'ICD10_2010'), +('I27.0', 'Primary pulmonary hypertension', 'ICD10_2010'); +INSERT INTO `icd10` (`ID_ICD10`, `Diagnosa`, `Versi_ICD10`) VALUES +('I27.1', 'Kyphoscoliotic heart disease', 'ICD10_2010'), +('I27.2', 'Other secondary pulmonary hypertension', 'ICD10_2010'), +('I27.8', 'Other specified pulmonary heart diseases', 'ICD10_2010'), +('I27.9', 'Pulmonary heart disease, unspecified', 'ICD10_2010'), +('I28', 'Other diseases of pulmonary vessels', 'ICD10_2010'), +('I28.0', 'Arteriovenous fistula of pulmonary vessels', 'ICD10_2010'), +('I28.1', 'Aneurysm of pulmonary artery', 'ICD10_2010'), +('I28.8', 'Other specified diseases of pulmonary vessels', 'ICD10_2010'), +('I28.9', 'Disease of pulmonary vessels, unspecified', 'ICD10_2010'), +('I30', 'Acute pericarditis', 'ICD10_2010'), +('I30.0', 'Acute nonspecific idiopathic pericarditis', 'ICD10_2010'), +('I30.1', 'Infective pericarditis', 'ICD10_2010'), +('I30.8', 'Other forms of acute pericarditis', 'ICD10_2010'), +('I30.9', 'Acute pericarditis, unspecified', 'ICD10_2010'), +('I31', 'Other diseases of pericardium', 'ICD10_2010'), +('I31.0', 'Chronic adhesive pericarditis', 'ICD10_2010'), +('I31.1', 'Chronic constrictive pericarditis', 'ICD10_2010'), +('I31.2', 'Haemopericardium, not elsewhere classified', 'ICD10_2010'), +('I31.3', 'Pericardial effusion (noninflammatory)', 'ICD10_2010'), +('I31.8', 'Other specified diseases of pericardium', 'ICD10_2010'), +('I31.9', 'Disease of pericardium, unspecified', 'ICD10_2010'), +('I32', 'Pericarditis in diseases classified elsewhere', 'ICD10_2010'), +('I32.0', 'Pericarditis in bacterial diseases classified elsewhere', 'ICD10_2010'), +('I32.1', 'Pericarditis in other infectious and parasitic diseases classified elsewhere', 'ICD10_2010'), +('I32.8', 'Pericarditis in other diseases classified elsewhere', 'ICD10_2010'), +('I33', 'Acute and subacute endocarditis', 'ICD10_2010'), +('I33.0', 'Acute and subacute infective endocarditis', 'ICD10_2010'), +('I33.9', 'Acute endocarditis, unspecified', 'ICD10_2010'), +('I34', 'Nonrheumatic mitral valve disorders', 'ICD10_2010'), +('I34.0', 'Mitral (valve) insufficiency', 'ICD10_2010'), +('I34.1', 'Mitral (valve) prolapse', 'ICD10_2010'), +('I34.2', 'Nonrheumatic mitral (valve) stenosis', 'ICD10_2010'), +('I34.8', 'Other nonrheumatic mitral valve disorders', 'ICD10_2010'), +('I34.9', 'Nonrheumatic mitral valve disorder, unspecified', 'ICD10_2010'), +('I35', 'Nonrheumatic aortic valve disorders', 'ICD10_2010'), +('I35.0', 'Aortic (valve) stenosis', 'ICD10_2010'), +('I35.1', 'Aortic (valve) insufficiency', 'ICD10_2010'), +('I35.2', 'Aortic (valve) stenosis with insufficiency', 'ICD10_2010'), +('I35.8', 'Other aortic valve disorders', 'ICD10_2010'), +('I35.9', 'Aortic valve disorder, unspecified', 'ICD10_2010'), +('I36', 'Nonrheumatic tricuspid valve disorders', 'ICD10_2010'), +('I36.0', 'Nonrheumatic tricuspid (valve) stenosis', 'ICD10_2010'), +('I36.1', 'Nonrheumatic tricuspid (valve) insufficiency', 'ICD10_2010'), +('I36.2', 'Nonrheumatic tricuspid (valve) stenosis with insufficiency', 'ICD10_2010'), +('I36.8', 'Other nonrheumatic tricuspid valve disorders', 'ICD10_2010'), +('I36.9', 'Nonrheumatic tricuspid valve disorder, unspecified', 'ICD10_2010'), +('I37', 'Pulmonary valve disorders', 'ICD10_2010'), +('I37.0', 'Pulmonary valve stenosis', 'ICD10_2010'), +('I37.1', 'Pulmonary valve insufficiency', 'ICD10_2010'), +('I37.2', 'Pulmonary valve stenosis with insufficiency', 'ICD10_2010'), +('I37.8', 'Other pulmonary valve disorders', 'ICD10_2010'), +('I37.9', 'Pulmonary valve disorder, unspecified', 'ICD10_2010'), +('I38', 'Endocarditis, valve unspecified', 'ICD10_2010'), +('I39', 'Endocarditis and heart valve disorders in diseases classified elsewhere', 'ICD10_2010'), +('I39.0', 'Mitral valve disorders in diseases classified elsewhere', 'ICD10_2010'), +('I39.1', 'Aortic valve disorders in diseases classified elsewhere', 'ICD10_2010'), +('I39.2', 'Tricuspid valve disorders in diseases classified elsewhere', 'ICD10_2010'), +('I39.3', 'Pulmonary valve disorders in diseases classified elsewhere', 'ICD10_2010'), +('I39.4', 'Multiple valve disorders in diseases classified elsewhere', 'ICD10_2010'), +('I39.8', 'Endocarditis, valve unspec, in diseases class elsewhere', 'ICD10_2010'), +('I40', 'Acute myocarditis', 'ICD10_2010'), +('I40.0', 'Infective myocarditis', 'ICD10_2010'), +('I40.1', 'Isolated myocarditis', 'ICD10_2010'), +('I40.8', 'Other acute myocarditis', 'ICD10_2010'), +('I40.9', 'Acute myocarditis, unspecified', 'ICD10_2010'), +('I41', 'Myocarditis in diseases classified elsewhere', 'ICD10_2010'), +('I41.0', 'Myocarditis in bacterial diseases classified elsewhere', 'ICD10_2010'), +('I41.1', 'Myocarditis in viral diseases classified elsewhere', 'ICD10_2010'), +('I41.2', 'Myocarditis in other infectious and parasitic diseases classified elsewhere', 'ICD10_2010'), +('I41.8', 'Myocarditis in other diseases classified elsewhere', 'ICD10_2010'), +('I42', 'Cardiomyopathy', 'ICD10_2010'), +('I42.0', 'Dilated cardiomyopathy', 'ICD10_2010'), +('I42.1', 'Obstructive hypertrophic cardiomyopathy', 'ICD10_2010'), +('I42.2', 'Other hypertrophic cardiomyopathy', 'ICD10_2010'), +('I42.3', 'Endomyocardial (eosinophilic) disease', 'ICD10_2010'), +('I42.4', 'Endocardial fibroelastosis', 'ICD10_2010'), +('I42.5', 'Other restrictive cardiomyopathy', 'ICD10_2010'), +('I42.6', 'Alcoholic cardiomyopathy', 'ICD10_2010'), +('I42.7', 'Cardiomyopathy due to drugs and other external agents', 'ICD10_2010'), +('I42.8', 'Other cardiomyopathies', 'ICD10_2010'), +('I42.9', 'Cardiomyopathy, unspecified', 'ICD10_2010'), +('I43', 'Cardiomyopathy in diseases classified elsewhere', 'ICD10_2010'), +('I43.0', 'Cardiomyopathy in infectious & parasitic diseases classified elsewhere', 'ICD10_2010'), +('I43.1', 'Cardiomyopathy in metabolic diseases', 'ICD10_2010'), +('I43.2', 'Cardiomyopathy in nutritional diseases', 'ICD10_2010'), +('I43.8', 'Cardiomyopathy in other diseases classified elsewhere', 'ICD10_2010'), +('I44', 'Atrioventricular and left bundle-branch block', 'ICD10_2010'), +('I44.0', 'Atrioventricular block, first degree', 'ICD10_2010'), +('I44.1', 'Atrioventricular block, second degree', 'ICD10_2010'), +('I44.2', 'Atrioventricular block, complete', 'ICD10_2010'), +('I44.3', 'Other and unspecified atrioventricular block', 'ICD10_2010'), +('I44.4', 'Left anterior fascicular block', 'ICD10_2010'), +('I44.5', 'Left posterior fascicular block', 'ICD10_2010'), +('I44.6', 'Other and unspecified fascicular block', 'ICD10_2010'), +('I44.7', 'Left bundle-branch block, unspecified', 'ICD10_2010'), +('I45', 'Other conduction disorders', 'ICD10_2010'), +('I45.0', 'Right fascicular block', 'ICD10_2010'), +('I45.1', 'Other and unspecified right bundle-branch block', 'ICD10_2010'), +('I45.2', 'Bifascicular block', 'ICD10_2010'), +('I45.3', 'Trifascicular block', 'ICD10_2010'), +('I45.4', 'Nonspecific intraventricular block', 'ICD10_2010'), +('I45.5', 'Other specified heart block', 'ICD10_2010'), +('I45.6', 'Pre-excitation syndrome', 'ICD10_2010'), +('I45.8', 'Other specified conduction disorders', 'ICD10_2010'), +('I45.9', 'Conduction disorder, unspecified', 'ICD10_2010'), +('I46', 'Cardiac arrest', 'ICD10_2010'), +('I46.0', 'Cardiac arrest with successful resuscitation', 'ICD10_2010'), +('I46.1', 'Sudden cardiac death, so described', 'ICD10_2010'), +('I46.9', 'Cardiac arrest, unspecified', 'ICD10_2010'), +('I47', 'Paroxysmal tachycardia', 'ICD10_2010'), +('I47.0', 'Re-entry ventricular arrhythmia', 'ICD10_2010'), +('I47.1', 'Supraventricular tachycardia', 'ICD10_2010'), +('I47.2', 'Ventricular tachycardia', 'ICD10_2010'), +('I47.9', 'Paroxysmal tachycardia, unspecified', 'ICD10_2010'), +('I48', 'Atrial fibrillation and flutter', 'ICD10_2010'), +('I49', 'Other cardiac arrhythmias', 'ICD10_2010'), +('I49.0', 'Ventricular fibrillation and flutter', 'ICD10_2010'), +('I49.1', 'Atrial premature depolarization', 'ICD10_2010'), +('I49.2', 'Junctional premature depolarization', 'ICD10_2010'), +('I49.3', 'Ventricular premature depolarization', 'ICD10_2010'), +('I49.4', 'Other and unspecified premature depolarization', 'ICD10_2010'), +('I49.5', 'Sick sinus syndrome', 'ICD10_2010'), +('I49.8', 'Other specified cardiac arrhythmias', 'ICD10_2010'), +('I49.9', 'Cardiac arrhythmia, unspecified', 'ICD10_2010'), +('I50', 'Heart failure', 'ICD10_2010'), +('I50.0', 'Congestive heart failure', 'ICD10_2010'), +('I50.1', 'Left ventricular failure', 'ICD10_2010'), +('I50.9', 'Heart failure, unspecified', 'ICD10_2010'), +('I51', 'Complications and ill-defined descriptions of heart disease', 'ICD10_2010'), +('I51.0', 'Cardiac septal defect, acquired', 'ICD10_2010'), +('I51.1', 'Rupture of chordae tendineae, not elsewhere classified', 'ICD10_2010'), +('I51.2', 'Rupture of papillary muscle, not elsewhere classified', 'ICD10_2010'), +('I51.3', 'Intracardiac thrombosis, not elsewhere classified', 'ICD10_2010'), +('I51.4', 'Myocarditis, unspecified', 'ICD10_2010'), +('I51.5', 'Myocardial degeneration', 'ICD10_2010'), +('I51.6', 'Cardiovascular disease, unspecified', 'ICD10_2010'), +('I51.7', 'Cardiomegaly', 'ICD10_2010'), +('I51.8', 'Other ill-defined heart diseases', 'ICD10_2010'), +('I51.9', 'Heart disease, unspecified', 'ICD10_2010'), +('I52', 'Other heart disorders in diseases classified elsewhere', 'ICD10_2010'), +('I52.0', 'Other heart disorders in bacterial diseases classified elsewhere', 'ICD10_2010'), +('I52.1', 'Oth heart disorders in oth infectious and parasitic disease classified elsewhere', 'ICD10_2010'), +('I52.8', 'Other heart disorders in other diseases classified elsewhere', 'ICD10_2010'), +('I60', 'Subarachnoid haemorrhage', 'ICD10_2010'), +('I60.0', 'Subarachnoid haemorrhage from carotid siphon and bifurcation', 'ICD10_2010'), +('I60.1', 'Subarachnoid haemorrhage from middle cerebral artery', 'ICD10_2010'), +('I60.2', 'Subarachnoid haemorrhage from anterior communicating artery', 'ICD10_2010'), +('I60.3', 'Subarachnoid haemorrhage from posterior communicating artery', 'ICD10_2010'), +('I60.4', 'Subarachnoid haemorrhage from basilar artery', 'ICD10_2010'), +('I60.5', 'Subarachnoid haemorrhage from vertebral artery', 'ICD10_2010'), +('I60.6', 'Subarachnoid haemorrhage from other intracranial arteries', 'ICD10_2010'), +('I60.7', 'Subarachnoid haemorrhage from intracranial artery, unspecified', 'ICD10_2010'), +('I60.8', 'Other subarachnoid haemorrhage', 'ICD10_2010'), +('I60.9', 'Subarachnoid haemorrhage, unspecified', 'ICD10_2010'), +('I61', 'Intracerebral haemorrhage', 'ICD10_2010'), +('I61.0', 'Intracerebral haemorrhage in hemisphere, subcortical', 'ICD10_2010'), +('I61.1', 'Intracerebral haemorrhage in hemisphere, cortical', 'ICD10_2010'), +('I61.2', 'Intracerebral haemorrhage in hemisphere, unspecified', 'ICD10_2010'), +('I61.3', 'Intracerebral haemorrhage in brain stem', 'ICD10_2010'), +('I61.4', 'Intracerebral haemorrhage in cerebellum', 'ICD10_2010'), +('I61.5', 'Intracerebral haemorrhage, intraventricular', 'ICD10_2010'), +('I61.6', 'Intracerebral haemorrhage, multiple localized', 'ICD10_2010'), +('I61.8', 'Other intracerebral haemorrhage', 'ICD10_2010'), +('I61.9', 'Intracerebral haemorrhage, unspecified', 'ICD10_2010'), +('I62', 'Other nontraumatic intracranial haemorrhage', 'ICD10_2010'), +('I62.0', 'Subdural haemorrhage (acute)(nontraumatic)', 'ICD10_2010'), +('I62.1', 'Nontraumatic extradural haemorrhage', 'ICD10_2010'), +('I62.9', 'Intracranial haemorrhage (nontraumatic), unspecified', 'ICD10_2010'), +('I63', 'Cerebral infarction', 'ICD10_2010'), +('I63.0', 'Cerebral infarct due to thrombosis of precerebral arteries', 'ICD10_2010'), +('I63.1', 'Cerebral infarction due to embolism of precerebral arteries', 'ICD10_2010'), +('I63.2', 'Cerebral infarction due unspecified occlusion or stenosis precerebral arteries', 'ICD10_2010'), +('I63.3', 'Cerebral infarction due to thrombosis of cerebral arteries', 'ICD10_2010'), +('I63.4', 'Cerebral infarction due to embolism of cerebral arteries', 'ICD10_2010'), +('I63.5', 'Cerebral infarction due unspecified occlusion or stenos cerebrl arteries', 'ICD10_2010'), +('I63.6', 'Cerebral infarction due cerebral venous thrombosis, nonpyogenic', 'ICD10_2010'), +('I63.8', 'Other cerebral infarction', 'ICD10_2010'), +('I63.9', 'Cerebral infarction, unspecified', 'ICD10_2010'), +('I64', 'Stroke, not specified as haemorrhage or infarction', 'ICD10_2010'), +('I65', 'Occlusion and stenosis of precerebral arteries, not resulting in cerebral infarction', 'ICD10_2010'), +('I65.0', 'Occlusion and stenosis of vertebral artery', 'ICD10_2010'), +('I65.1', 'Occlusion and stenosis of basilar artery', 'ICD10_2010'), +('I65.2', 'Occlusion and stenosis of carotid artery', 'ICD10_2010'), +('I65.3', 'Occlusion and stenosis of multip and bilat precerebral arteries', 'ICD10_2010'), +('I65.8', 'Occlusion and stenosis of other precerebral artery', 'ICD10_2010'), +('I65.9', 'Occlusion and stenosis of unspecified precerebral artery', 'ICD10_2010'), +('I66', 'Occlusion and stenosis of cerebral arteries, not resulting in cerebral infarction', 'ICD10_2010'), +('I66.0', 'Occlusion and stenosis of middle cerebral artery', 'ICD10_2010'), +('I66.1', 'Occlusion and stenosis of anterior cerebral artery', 'ICD10_2010'), +('I66.2', 'Occlusion and stenosis of posterior cerebral artery', 'ICD10_2010'), +('I66.3', 'Occlusion and stenosis of cerebellar arteries', 'ICD10_2010'), +('I66.4', 'Occlusion and stenosis of multiple and bilat cerebral arts', 'ICD10_2010'), +('I66.8', 'Occlusion and stenosis of other cerebral artery', 'ICD10_2010'), +('I66.9', 'Occlusion and stenosis of unspecified cerebral artery', 'ICD10_2010'), +('I67', 'Other cerebrovascular diseases', 'ICD10_2010'), +('I67.0', 'Dissection of cerebral arteries, nonruptured', 'ICD10_2010'), +('I67.1', 'Cerebral aneurysm, nonruptured', 'ICD10_2010'), +('I67.2', 'Cerebral atherosclerosis', 'ICD10_2010'), +('I67.3', 'Progressive vascular leukoencephalopathy', 'ICD10_2010'), +('I67.4', 'Hypertensive encephalopathy', 'ICD10_2010'), +('I67.5', 'Moyamoya disease', 'ICD10_2010'), +('I67.6', 'Nonpyogenic thrombosis of intracranial venous system', 'ICD10_2010'), +('I67.7', 'Cerebral arteritis, not elsewhere classified', 'ICD10_2010'), +('I67.8', 'Other specified cerebrovascular diseases', 'ICD10_2010'), +('I67.9', 'Cerebrovascular disease, unspecified', 'ICD10_2010'), +('I68', 'Cerebrovascular disorders in diseases classified elsewhere', 'ICD10_2010'), +('I68.0', 'Cerebral amyloid angiopathy', 'ICD10_2010'), +('I68.1', 'Cerebral arteritis in infectious & parasitic diseases classified elsewhere', 'ICD10_2010'), +('I68.2', 'Cerebral arteritis in other diseases classified elsewhere', 'ICD10_2010'), +('I68.8', 'Other cerebrovascular disorders in diseases classified elsewhere', 'ICD10_2010'), +('I69', 'Sequelae of cerebrovascular disease', 'ICD10_2010'), +('I69.0', 'Sequelae of subarachnoid haemorrhage', 'ICD10_2010'), +('I69.1', 'Sequelae of intracerebral haemorrhage', 'ICD10_2010'), +('I69.2', 'Sequelae of other nontraumatic intracranial haemorrhage', 'ICD10_2010'), +('I69.3', 'Sequelae of cerebral infarction', 'ICD10_2010'), +('I69.4', 'Sequelae of stroke, not specified as haemorrhage or infarction', 'ICD10_2010'), +('I69.8', 'Sequelae of other and unspecified cerebrovascular diseases', 'ICD10_2010'), +('I70', 'Atherosclerosis', 'ICD10_2010'), +('I70.0', 'Atherosclerosis of aorta', 'ICD10_2010'), +('I70.1', 'Atherosclerosis of renal artery', 'ICD10_2010'), +('I70.2', 'Atherosclerosis of arteries of extremities', 'ICD10_2010'), +('I70.8', 'Atherosclerosis of other arteries', 'ICD10_2010'), +('I70.9', 'Generalized and unspecified atherosclerosis', 'ICD10_2010'), +('I71', 'Aortic aneurysm and dissection', 'ICD10_2010'), +('I71.0', 'Dissection of aorta [any part]', 'ICD10_2010'), +('I71.1', 'Thoracic aortic aneurysm, ruptured', 'ICD10_2010'), +('I71.2', 'Thoracic aortic aneurysm, without mention of rupture', 'ICD10_2010'), +('I71.3', 'Abdominal aortic aneurysm, ruptured', 'ICD10_2010'), +('I71.4', 'Abdominal aortic aneurysm, without mention of rupture', 'ICD10_2010'), +('I71.5', 'Thoracoabdominal aortic aneurysm, ruptured', 'ICD10_2010'), +('I71.6', 'Thoracoabdominal aortic aneurysm, without mention of rupture', 'ICD10_2010'), +('I71.8', 'Aortic aneurysm of unspecified site, ruptured', 'ICD10_2010'), +('I71.9', 'Aortic aneurysm of unspecified site, without mention of rupture', 'ICD10_2010'), +('I72', 'Other aneurysm and dissection', 'ICD10_2010'), +('I72.0', 'Aneurysm of carotid artery', 'ICD10_2010'), +('I72.1', 'Aneurysm of artery of upper extremity', 'ICD10_2010'), +('I72.2', 'Aneurysm of renal artery', 'ICD10_2010'), +('I72.3', 'Aneurysm of iliac artery', 'ICD10_2010'), +('I72.4', 'Aneurysm of artery of lower extremity', 'ICD10_2010'), +('I72.5', 'Aneurysm and dissection of other precerebral arteries', 'ICD10_2010'), +('I72.8', 'Aneurysm of other specified arteries', 'ICD10_2010'), +('I72.9', 'Aneurysm of unspecified site', 'ICD10_2010'), +('I73', 'Other peripheral vascular diseases', 'ICD10_2010'), +('I73.0', 'Raynaud\'s syndrome', 'ICD10_2010'), +('I73.1', 'Thromboangiitis obliterans [buerger]', 'ICD10_2010'), +('I73.8', 'Other specified peripheral vascular diseases', 'ICD10_2010'), +('I73.9', 'Peripheral vascular disease, unspecified', 'ICD10_2010'), +('I74', 'Arterial embolism and thrombosis', 'ICD10_2010'), +('I74.0', 'Embolism and thrombosis of abdominal aorta', 'ICD10_2010'), +('I74.1', 'Embolism and thrombosis of other and unspecified parts of aorta', 'ICD10_2010'), +('I74.2', 'Embolism and thrombosis of arteries of upper extremities', 'ICD10_2010'), +('I74.3', 'Embolism and thrombosis of arteries of lower extremities', 'ICD10_2010'), +('I74.4', 'Embolism and thrombosis of arteries of extremities, unspecified', 'ICD10_2010'), +('I74.5', 'Embolism and thrombosis of iliac artery', 'ICD10_2010'), +('I74.8', 'Embolism and thrombosis of other arteries', 'ICD10_2010'), +('I74.9', 'Embolism and thrombosis of unspecified artery', 'ICD10_2010'), +('I77', 'Other disorders of arteries and arterioles', 'ICD10_2010'), +('I77.0', 'Arteriovenous fistula, acquired', 'ICD10_2010'), +('I77.1', 'Stricture of artery', 'ICD10_2010'), +('I77.2', 'Rupture of artery', 'ICD10_2010'), +('I77.3', 'Arterial fibromuscular dysplasia', 'ICD10_2010'), +('I77.4', 'Coeliac artery compression syndrome', 'ICD10_2010'), +('I77.5', 'Necrosis of artery', 'ICD10_2010'), +('I77.6', 'Arteritis, unspecified', 'ICD10_2010'), +('I77.8', 'Other specified disorders of arteries and arterioles', 'ICD10_2010'), +('I77.9', 'Disorder of arteries and arterioles, unspecified', 'ICD10_2010'), +('I78', 'Diseases of capillaries', 'ICD10_2010'), +('I78.0', 'Hereditary haemorrhagic telangiectasia', 'ICD10_2010'), +('I78.1', 'Naevus, non-neoplastic', 'ICD10_2010'), +('I78.8', 'Other diseases of capillaries', 'ICD10_2010'), +('I78.9', 'Disease of capillaries, unspecified', 'ICD10_2010'), +('I79', 'Disorders of arteries, arterioles and capillaries in diseases classified elsewhere', 'ICD10_2010'), +('I79.0', 'Aneurysm of aorta in diseases classified elsewhere', 'ICD10_2010'), +('I79.1', 'Aortitis in diseases classified elsewhere', 'ICD10_2010'), +('I79.2', 'Peripheral angiopathy in diseases classified elsewhere', 'ICD10_2010'), +('I79.8', 'Oth disord arteries, arterioles & capillaries in diseases classified elsewhere', 'ICD10_2010'), +('I80', 'Phlebitis and thrombophlebitis', 'ICD10_2010'), +('I80.0', 'Phlebitis and thrombophlebitis superficial vessels low extremities', 'ICD10_2010'), +('I80.1', 'Phlebitis and thrombophlebitis of femoral vein', 'ICD10_2010'), +('I80.2', 'Phlebitis and thrombophlebitis oth deep vessels low extremities', 'ICD10_2010'), +('I80.3', 'Phlebitis and thrombophlebitis of lower extremities, unspecified', 'ICD10_2010'), +('I80.8', 'Phlebitis and thrombophlebitis of other sites', 'ICD10_2010'), +('I80.9', 'Phlebitis and thrombophlebitis of unspecified site', 'ICD10_2010'), +('I81', 'Portal vein thrombosis', 'ICD10_2010'), +('I82', 'Other venous embolism and thrombosis', 'ICD10_2010'), +('I82.0', 'Budd-chiari syndrome', 'ICD10_2010'), +('I82.1', 'Thrombophlebitis migrans', 'ICD10_2010'), +('I82.2', 'Embolism and thrombosis of vena cava', 'ICD10_2010'), +('I82.3', 'Embolism and thrombosis of renal vein', 'ICD10_2010'), +('I82.8', 'Embolism and thrombosis of other specified veins', 'ICD10_2010'), +('I82.9', 'Embolism and thrombosis of unspecified vein', 'ICD10_2010'), +('I83', 'Varicose veins of lower extremities', 'ICD10_2010'), +('I83.0', 'Varicose veins of lower extremities with ulcer', 'ICD10_2010'), +('I83.1', 'Varicose veins of lower extremities with inflammation', 'ICD10_2010'), +('I83.2', 'Varicose veins low extremities with both ulcer and inflammation', 'ICD10_2010'), +('I83.9', 'Varicose veins lower extremities without ulcer or inflammation', 'ICD10_2010'), +('I84', 'Haemorrhoids', 'ICD10_2010'), +('I84.0', 'Internal thrombosed haemorrhoids', 'ICD10_2010'), +('I84.1', 'Internal haemorrhoids with other complications', 'ICD10_2010'), +('I84.2', 'Internal haemorrhoids without complication', 'ICD10_2010'), +('I84.3', 'External thrombosed haemorrhoids', 'ICD10_2010'), +('I84.4', 'External haemorrhoids with other complications', 'ICD10_2010'), +('I84.5', 'External haemorrhoids without complication', 'ICD10_2010'), +('I84.6', 'Residual haemorrhoidal skin tags', 'ICD10_2010'), +('I84.7', 'Unspecified thrombosed haemorrhoids', 'ICD10_2010'), +('I84.8', 'Unspecified haemorrhoids with other complications', 'ICD10_2010'), +('I84.9', 'Unspecified haemorrhoids without complication', 'ICD10_2010'), +('I85', 'Oesophageal varices', 'ICD10_2010'), +('I85.0', 'Oesophageal varices with bleeding', 'ICD10_2010'), +('I85.9', 'Oesophageal varices without bleeding', 'ICD10_2010'), +('I86', 'Varicose veins of other sites', 'ICD10_2010'), +('I86.0', 'Sublingual varices', 'ICD10_2010'), +('I86.1', 'Scrotal varices', 'ICD10_2010'), +('I86.2', 'Pelvic varices', 'ICD10_2010'), +('I86.3', 'Vulval varices', 'ICD10_2010'), +('I86.4', 'Gastric varices', 'ICD10_2010'), +('I86.8', 'Varicose veins of other specified sites', 'ICD10_2010'), +('I87', 'Other disorders of veins', 'ICD10_2010'), +('I87.0', 'Postphlebitic syndrome', 'ICD10_2010'), +('I87.1', 'Compression of vein', 'ICD10_2010'), +('I87.2', 'Venous insufficiency (chronic)(peripheral)', 'ICD10_2010'), +('I87.8', 'Other specified disorders of veins', 'ICD10_2010'), +('I87.9', 'Disorder of vein, unspecified', 'ICD10_2010'), +('I88', 'Nonspecific lymphadenitis', 'ICD10_2010'), +('I88.0', 'Nonspecific mesenteric lymphadenitis', 'ICD10_2010'), +('I88.1', 'Chronic lymphadenitis, except mesenteric', 'ICD10_2010'), +('I88.8', 'Other nonspecific lymphadenitis', 'ICD10_2010'), +('I88.9', 'Nonspecific lymphadenitis, unspecified', 'ICD10_2010'), +('I89', 'Other noninfective disorders of lymphatic vessels and lymph nodes', 'ICD10_2010'), +('I89.0', 'Lymphoedema, not elsewhere classified', 'ICD10_2010'), +('I89.1', 'Lymphangitis', 'ICD10_2010'), +('I89.8', 'Other specified noninfective disorders lymphatic vessels and lymph nodes', 'ICD10_2010'), +('I89.9', 'Noninfective disorder lymphatic vessels and lymph nodes, unspecified', 'ICD10_2010'), +('I95', 'Hypotension', 'ICD10_2010'), +('I95.0', 'Idiopathic hypotension', 'ICD10_2010'), +('I95.1', 'Orthostatic hypotension', 'ICD10_2010'), +('I95.2', 'Hypotension due to drugs', 'ICD10_2010'), +('I95.8', 'Other hypotension', 'ICD10_2010'), +('I95.9', 'Hypotension, unspecified', 'ICD10_2010'), +('I97', 'Postprocedural disorders of circulatory system, not elsewhere classified', 'ICD10_2010'), +('I97.0', 'Postcardiotomy syndrome', 'ICD10_2010'), +('I97.1', 'Other functional disturbances following cardiac surgery', 'ICD10_2010'), +('I97.2', 'Postmastectomy lymphoedema syndrome', 'ICD10_2010'), +('I97.8', 'Other postprocedural disorders of circulatory system , not elsewhere classified', 'ICD10_2010'), +('I97.9', 'Postprocedural disorder of circulatory system, unspecified', 'ICD10_2010'), +('I98', 'Other disorders of circulatory system in diseases classified elsewhere', 'ICD10_2010'), +('I98.0', 'Cardiovascular syphilis', 'ICD10_2010'), +('I98.1', 'Cardiovascular disorder other infectious and parasitic diseases classified elsewhere', 'ICD10_2010'), +('I98.2', 'Oesophageal varices in diseases classified elsewhere', 'ICD10_2010'), +('I98.3', 'Oesophageal varices with bleeding in diseases classified elsewhere', 'ICD10_2010'), +('I98.8', 'Other specified disorders of circulatory system in diseases classified elsewhere', 'ICD10_2010'), +('I99', 'Other and unspecified disorders of circulatory system', 'ICD10_2010'), +('J00', 'Acute nasopharyngitis [common cold]', 'ICD10_2010'), +('J01', 'Acute sinusitis', 'ICD10_2010'), +('J01.0', 'Acute maxillary sinusitis', 'ICD10_2010'), +('J01.1', 'Acute frontal sinusitis', 'ICD10_2010'), +('J01.2', 'Acute ethmoidal sinusitis', 'ICD10_2010'), +('J01.3', 'Acute sphenoidal sinusitis', 'ICD10_2010'), +('J01.4', 'Acute pansinusitis', 'ICD10_2010'), +('J01.8', 'Other acute sinusitis', 'ICD10_2010'), +('J01.9', 'Acute sinusitis, unspecified', 'ICD10_2010'), +('J02', 'Acute pharyngitis', 'ICD10_2010'), +('J02.0', 'Streptococcal pharyngitis', 'ICD10_2010'), +('J02.8', 'Acute pharyngitis due to other specified organisms', 'ICD10_2010'), +('J02.9', 'Acute pharyngitis, unspecified', 'ICD10_2010'), +('J03', 'Acute tonsillitis', 'ICD10_2010'), +('J03.0', 'Streptococcal tonsillitis', 'ICD10_2010'), +('J03.8', 'Acute tonsillitis due to other specified organisms', 'ICD10_2010'), +('J03.9', 'Acute tonsillitis, unspecified', 'ICD10_2010'), +('J04', 'Acute laryngitis and tracheitis', 'ICD10_2010'), +('J04.0', 'Acute laryngitis', 'ICD10_2010'), +('J04.1', 'Acute tracheitis', 'ICD10_2010'), +('J04.2', 'Acute laryngotracheitis', 'ICD10_2010'), +('J05', 'Acute obstructive laryngitis [croup] and epiglottitis', 'ICD10_2010'), +('J05.0', 'Acute obstructive laryngitis [croup]', 'ICD10_2010'), +('J05.1', 'Acute epiglottitis', 'ICD10_2010'), +('J06', 'Acute upper respiratory infections of multiple and unspecified sites', 'ICD10_2010'), +('J06.0', 'Acute laryngopharyngitis', 'ICD10_2010'), +('J06.8', 'Other acute upper respiratory infections of multiple sites', 'ICD10_2010'), +('J06.9', 'Acute upper respiratory infection, unspecified', 'ICD10_2010'), +('J09', 'Influenza due to identified avian infliuenza virus', 'ICD10_2010'), +('J10', 'Influenza due to other identified influenza virus', 'ICD10_2010'), +('J10.0', 'Influenza with pneumonia, influenza virus identified', 'ICD10_2010'), +('J10.1', 'Influenza with other respiratory manifestations, other influenza virus identified', 'ICD10_2010'), +('J10.8', 'Influenza with other manifestations, other influenza virus identified', 'ICD10_2010'), +('J11', 'Influenza, virus not identified', 'ICD10_2010'), +('J11.0', 'Influenza with pneumonia, virus not identified', 'ICD10_2010'), +('J11.1', 'Influenza with other respiratory manifestations virus not identified', 'ICD10_2010'), +('J11.8', 'Influenza with other manifestations, virus not identified', 'ICD10_2010'), +('J12', 'Viral pneumonia, not elsewhere classified', 'ICD10_2010'), +('J12.0', 'Adenoviral pneumonia', 'ICD10_2010'), +('J12.1', 'Respiratory syncytial virus pneumonia', 'ICD10_2010'), +('J12.2', 'Parainfluenza virus pneumonia', 'ICD10_2010'), +('J12.3', 'Human metapneumovirus pneumonia', 'ICD10_2010'), +('J12.8', 'Other viral pneumonia', 'ICD10_2010'), +('J12.9', 'Viral pneumonia, unspecified', 'ICD10_2010'), +('J13', 'Pneumonia due to streptococcus pneumoniae', 'ICD10_2010'), +('J14', 'Pneumonia due to haemophilus influenzae', 'ICD10_2010'), +('J15', 'Bacterial pneumonia, not elsewhere classified', 'ICD10_2010'), +('J15.0', 'Pneumonia due to klebsiella pneumoniae', 'ICD10_2010'), +('J15.1', 'Pneumonia due to pseudomonas', 'ICD10_2010'), +('J15.2', 'Pneumonia due to staphylococcus', 'ICD10_2010'), +('J15.3', 'Pneumonia due to streptococcus, group B', 'ICD10_2010'), +('J15.4', 'Pneumonia due to other streptococci', 'ICD10_2010'), +('J15.5', 'Pneumonia due to escherichia coli', 'ICD10_2010'), +('J15.6', 'Pneumonia due to other aerobic gram-negative bacteria', 'ICD10_2010'), +('J15.7', 'Pneumonia due to mycoplasma pneumoniae', 'ICD10_2010'), +('J15.8', 'Other bacterial pneumonia', 'ICD10_2010'), +('J15.9', 'Bacterial pneumonia, unspecified', 'ICD10_2010'), +('J16', 'Pneumonia due to other infectious organisms, not elsewhere classified', 'ICD10_2010'), +('J16.0', 'Chlamydial pneumonia', 'ICD10_2010'), +('J16.8', 'Pneumonia due to other specified infectious organisms', 'ICD10_2010'), +('J17', 'Pneumonia in diseases classified elsewhere', 'ICD10_2010'), +('J17.0', 'Pneumonia in bacterial diseases classified elsewhere', 'ICD10_2010'), +('J17.1', 'Pneumonia in viral diseases classified elsewhere', 'ICD10_2010'), +('J17.2', 'Pneumonia in mycoses', 'ICD10_2010'), +('J17.3', 'Pneumonia in parasitic diseases', 'ICD10_2010'), +('J17.8', 'Pneumonia in other diseases classified elsewhere', 'ICD10_2010'), +('J18', 'Pneumonia, organism unspecified', 'ICD10_2010'), +('J18.0', 'Bronchopneumonia, unspecified', 'ICD10_2010'), +('J18.1', 'Lobar pneumonia, unspecified', 'ICD10_2010'), +('J18.2', 'Hypostatic pneumonia, unspecified', 'ICD10_2010'), +('J18.8', 'Other pneumonia, organism unspecified', 'ICD10_2010'), +('J18.9', 'Pneumonia, unspecified', 'ICD10_2010'), +('J20', 'Acute bronchitis', 'ICD10_2010'), +('J20.0', 'Acute bronchitis due to mycoplasma pneumoniae', 'ICD10_2010'), +('J20.1', 'Acute bronchitis due to haemophilus influenzae', 'ICD10_2010'), +('J20.2', 'Acute bronchitis due to streptococcus', 'ICD10_2010'), +('J20.3', 'Acute bronchitis due to coxsackievirus', 'ICD10_2010'), +('J20.4', 'Acute bronchitis due to parainfluenza virus', 'ICD10_2010'), +('J20.5', 'Acute bronchitis due to respiratory syncytial virus', 'ICD10_2010'), +('J20.6', 'Acute bronchitis due to rhinovirus', 'ICD10_2010'), +('J20.7', 'Acute bronchitis due to echovirus', 'ICD10_2010'), +('J20.8', 'Acute bronchitis due to other specified organisms', 'ICD10_2010'), +('J20.9', 'Acute bronchitis, unspecified', 'ICD10_2010'), +('J21', 'Acute bronchiolitis', 'ICD10_2010'), +('J21.0', 'Acute bronchiolitis due to respiratory syncytial virus', 'ICD10_2010'), +('J21.1', 'Acute bronchiolitis due to human metapneumovirus', 'ICD10_2010'), +('J21.8', 'Acute bronchiolitis due to other specified organisms', 'ICD10_2010'), +('J21.9', 'Acute bronchiolitis, unspecified', 'ICD10_2010'), +('J22', 'Unspecified acute lower respiratory infection', 'ICD10_2010'), +('J30', 'Vasomotor and allergic rhinitis', 'ICD10_2010'), +('J30.0', 'Vasomotor rhinitis', 'ICD10_2010'), +('J30.1', 'Allergic rhinitis due to pollen', 'ICD10_2010'), +('J30.2', 'Other seasonal allergic rhinitis', 'ICD10_2010'), +('J30.3', 'Other allergic rhinitis', 'ICD10_2010'), +('J30.4', 'Allergic rhinitis, unspecified', 'ICD10_2010'), +('J31', 'Chronic rhinitis, nasopharyngitis and pharyngitis', 'ICD10_2010'), +('J31.0', 'Chronic rhinitis', 'ICD10_2010'), +('J31.1', 'Chronic nasopharyngitis', 'ICD10_2010'), +('J31.2', 'Chronic pharyngitis', 'ICD10_2010'), +('J32', 'Chronic sinusitis', 'ICD10_2010'), +('J32.0', 'Chronic maxillary sinusitis', 'ICD10_2010'), +('J32.1', 'Chronic frontal sinusitis', 'ICD10_2010'), +('J32.2', 'Chronic ethmoidal sinusitis', 'ICD10_2010'), +('J32.3', 'Chronic sphenoidal sinusitis', 'ICD10_2010'), +('J32.4', 'Chronic pansinusitis', 'ICD10_2010'), +('J32.8', 'Other chronic sinusitis', 'ICD10_2010'), +('J32.9', 'Chronic sinusitis, unspecified', 'ICD10_2010'), +('J33', 'Nasal polyp', 'ICD10_2010'), +('J33.0', 'Polyp of nasal cavity', 'ICD10_2010'), +('J33.1', 'Polypoid sinus degeneration', 'ICD10_2010'), +('J33.8', 'Other polyp of sinus', 'ICD10_2010'), +('J33.9', 'Nasal polyp, unspecified', 'ICD10_2010'), +('J34', 'Other disorders of nose and nasal sinuses', 'ICD10_2010'), +('J34.0', 'Abscess, furuncle and carbuncle of nose', 'ICD10_2010'), +('J34.1', 'Cyst and mucocele of nose and nasal sinus', 'ICD10_2010'), +('J34.2', 'Deviated nasal septum', 'ICD10_2010'), +('J34.3', 'Hypertrophy of nasal turbinates', 'ICD10_2010'), +('J34.8', 'Other specified disorders of nose and nasal sinuses', 'ICD10_2010'), +('J35', 'Chronic diseases of tonsils and adenoids', 'ICD10_2010'), +('J35.0', 'Chronic tonsillitis', 'ICD10_2010'), +('J35.1', 'Hypertrophy of tonsils', 'ICD10_2010'), +('J35.2', 'Hypertrophy of adenoids', 'ICD10_2010'), +('J35.3', 'Hypertrophy of tonsils with hypertrophy of adenoids', 'ICD10_2010'), +('J35.8', 'Other chronic diseases of tonsils and adenoids', 'ICD10_2010'), +('J35.9', 'Chronic disease of tonsils and adenoids, unspecified', 'ICD10_2010'), +('J36', 'Peritonsillar abscess', 'ICD10_2010'), +('J37', 'Chronic laryngitis and laryngotracheitis', 'ICD10_2010'), +('J37.0', 'Chronic laryngitis', 'ICD10_2010'), +('J37.1', 'Chronic laryngotracheitis', 'ICD10_2010'), +('J38', 'Diseases of vocal cords and larynx, not elsewhere classified', 'ICD10_2010'), +('J38.0', 'Paralysis of vocal cords and larynx', 'ICD10_2010'), +('J38.1', 'Polyp of vocal cord and larynx', 'ICD10_2010'), +('J38.2', 'Nodules of vocal cords', 'ICD10_2010'), +('J38.3', 'Other diseases of vocal cords', 'ICD10_2010'), +('J38.4', 'Oedema of larynx', 'ICD10_2010'), +('J38.5', 'Laryngeal spasm', 'ICD10_2010'), +('J38.6', 'Stenosis of larynx', 'ICD10_2010'), +('J38.7', 'Other diseases of larynx', 'ICD10_2010'), +('J39', 'Other diseases of upper respiratory tract', 'ICD10_2010'), +('J39.0', 'Retropharyngeal and parapharyngeal abscess', 'ICD10_2010'), +('J39.1', 'Other abscess of pharynx', 'ICD10_2010'), +('J39.2', 'Other diseases of pharynx', 'ICD10_2010'), +('J39.3', 'Upper respiratory tract hypersensitivity reaction, site unspecified', 'ICD10_2010'), +('J39.8', 'Other specified diseases of upper respiratory tract', 'ICD10_2010'), +('J39.9', 'Disease of upper respiratory tract, unspecified', 'ICD10_2010'), +('J40', 'Bronchitis, not specified as acute or chronic', 'ICD10_2010'), +('J41', 'Simple and mucopurulent chronic bronchitis', 'ICD10_2010'), +('J41.0', 'Simple chronic bronchitis', 'ICD10_2010'), +('J41.1', 'Mucopurulent chronic bronchitis', 'ICD10_2010'), +('J41.8', 'Mixed simple and mucopurulent chronic bronchitis', 'ICD10_2010'), +('J42', 'Unspecified chronic bronchitis', 'ICD10_2010'), +('J43', 'Emphysema', 'ICD10_2010'), +('J43.0', 'Macleod\'s syndrome', 'ICD10_2010'), +('J43.1', 'Panlobular emphysema', 'ICD10_2010'), +('J43.2', 'Centrilobular emphysema', 'ICD10_2010'), +('J43.8', 'Other emphysema', 'ICD10_2010'), +('J43.9', 'Emphysema, unspecified', 'ICD10_2010'), +('J44', 'Other chronic obstructive pulmonary disease', 'ICD10_2010'), +('J44.0', 'Chronic obstructive pulmonary disease with acute lower respiratory infection', 'ICD10_2010'), +('J44.1', 'Chronic obstructive pulmonary disease with acute exacerbation, unspecified', 'ICD10_2010'), +('J44.8', 'Other specified chronic obstructive pulmonary disease', 'ICD10_2010'), +('J44.9', 'Chronic obstructive pulmonary disease, unspecified', 'ICD10_2010'), +('J45', 'Asthma', 'ICD10_2010'), +('J45.0', 'Predominantly allergic asthma', 'ICD10_2010'), +('J45.1', 'Nonallergic asthma', 'ICD10_2010'), +('J45.8', 'Mixed asthma', 'ICD10_2010'), +('J45.9', 'Asthma, unspecified', 'ICD10_2010'), +('J46', 'Status asthmaticus', 'ICD10_2010'), +('J47', 'Bronchiectasis', 'ICD10_2010'), +('J60', 'Coalworker\'s pneumoconiosis', 'ICD10_2010'), +('J61', 'Pneumoconiosis due to asbestos and other mineral fibres', 'ICD10_2010'), +('J62', 'Pneumoconiosis due to dust containing silica', 'ICD10_2010'), +('J62.0', 'Pneumoconiosis due to talc dust', 'ICD10_2010'), +('J62.8', 'Pneumoconiosis due to other dust containing silica', 'ICD10_2010'), +('J63', 'Pneumoconiosis due to other inorganic dusts', 'ICD10_2010'), +('J63.0', 'Aluminosis (of lung)', 'ICD10_2010'), +('J63.1', 'Bauxite fibrosis (of lung)', 'ICD10_2010'), +('J63.2', 'Berylliosis', 'ICD10_2010'), +('J63.3', 'Graphite fibrosis (of lung)', 'ICD10_2010'), +('J63.4', 'Siderosis', 'ICD10_2010'), +('J63.5', 'Stannosis', 'ICD10_2010'), +('J63.8', 'Pneumoconiosis due to other specified inorganic dusts', 'ICD10_2010'), +('J64', 'Unspecified pneumoconiosis', 'ICD10_2010'), +('J65', 'Pneumoconiosis associated with tuberculosis', 'ICD10_2010'), +('J66', 'Airway disease due to specific organic dust', 'ICD10_2010'), +('J66.0', 'Byssinosis', 'ICD10_2010'), +('J66.1', 'Flax-dresser\'s disease', 'ICD10_2010'), +('J66.2', 'Cannabinosis', 'ICD10_2010'), +('J66.8', 'Airway disease due to other specific organic dusts', 'ICD10_2010'), +('J67', 'Hypersensitivity pneumonitis due to organic dust', 'ICD10_2010'), +('J67.0', 'Farmer\'s lung', 'ICD10_2010'), +('J67.1', 'Bagassosis', 'ICD10_2010'), +('J67.2', 'Bird fancier\'s lung', 'ICD10_2010'), +('J67.3', 'Suberosis', 'ICD10_2010'), +('J67.4', 'Maltworker\'s lung', 'ICD10_2010'), +('J67.5', 'Mushroom-worker\'s lung', 'ICD10_2010'), +('J67.6', 'Maple-bark-stripper\'s lung', 'ICD10_2010'), +('J67.7', 'Air-conditioner and humidifier lung', 'ICD10_2010'), +('J67.8', 'Hypersensitivity pneumonitis due to other organic dusts', 'ICD10_2010'), +('J67.9', 'Hypersensitivity pneumonitis due to unspecified organic dust', 'ICD10_2010'), +('J68', 'Respiratory conditions due to inhalation of chemicals, gases, fumes and vapours', 'ICD10_2010'), +('J68.0', 'Bronchitis & pneumonitis due chemicals, gases fumes & vapours', 'ICD10_2010'), +('J68.1', 'Acute pulmon\'y oedema due chemicals, gases fumes & vapours', 'ICD10_2010'), +('J68.2', 'Upper respiratory inflammation due to chemicals gases, fumes and vapour not elsewhere classified', 'ICD10_2010'), +('J68.3', 'Other acute and subacute respiratory conditions due to chemicals, gases, fumes & vapours', 'ICD10_2010'), +('J68.4', 'Chronic respiratory conditions due chemicals, gases, fumes and vapours', 'ICD10_2010'), +('J68.8', 'Other respiratory conditions due chemicals, gases fumes & vapours', 'ICD10_2010'), +('J68.9', 'Unspecified respiratory conditions due chemicals, gases fumes & vapours', 'ICD10_2010'), +('J69', 'Pneumonitis due to solids and liquids', 'ICD10_2010'), +('J69.0', 'Pneumonitis due to food and vomit', 'ICD10_2010'), +('J69.1', 'Pneumonitis due to oils and essences', 'ICD10_2010'), +('J69.8', 'Pneumonitis due to other solids and liquids', 'ICD10_2010'), +('J70', 'Respiratory conditions due to other external agents', 'ICD10_2010'), +('J70.0', 'Acute pulmonary manifestations due to radiation', 'ICD10_2010'), +('J70.1', 'Chronic and other pulmonary manifestations due to radiation', 'ICD10_2010'), +('J70.2', 'Acute drug-induced interstitial lung disorders', 'ICD10_2010'), +('J70.3', 'Chronic drug-induced interstitial lung disorders', 'ICD10_2010'), +('J70.4', 'Drug-induced interstitial lung disorders, unspecified', 'ICD10_2010'), +('J70.8', 'Respiratory conditions due to other specified external agents', 'ICD10_2010'), +('J70.9', 'Respiratory conditions due to unspecified external agent', 'ICD10_2010'), +('J80', 'Adult respiratory distress syndrome', 'ICD10_2010'), +('J81', 'Pulmonary oedema', 'ICD10_2010'), +('J82', 'Pulmonary eosinophilia, not elsewhere classified', 'ICD10_2010'), +('J84', 'Other interstitial pulmonary diseases', 'ICD10_2010'), +('J84.0', 'Alveolar and parietoalveolar conditions', 'ICD10_2010'), +('J84.1', 'Other interstitial pulmonary diseases with fibrosis', 'ICD10_2010'), +('J84.8', 'Other specified interstitial pulmonary diseases', 'ICD10_2010'), +('J84.9', 'Interstitial pulmonary disease, unspecified', 'ICD10_2010'), +('J85', 'Abscess of lung and mediastinum', 'ICD10_2010'), +('J85.0', 'Gangrene and necrosis of lung', 'ICD10_2010'), +('J85.1', 'Abscess of lung with pneumonia', 'ICD10_2010'), +('J85.2', 'Abscess of lung without pneumonia', 'ICD10_2010'), +('J85.3', 'Abscess of mediastinum', 'ICD10_2010'), +('J86', 'Pyothorax', 'ICD10_2010'), +('J86.0', 'Pyothorax with fistula', 'ICD10_2010'), +('J86.9', 'Pyothorax without fistula', 'ICD10_2010'), +('J90', 'Pleural effusion, not elsewhere classified', 'ICD10_2010'), +('J91', 'Pleural effusion in conditions classified elsewhere', 'ICD10_2010'), +('J92', 'Pleural plaque', 'ICD10_2010'), +('J92.0', 'Pleural plaque with presence of asbestos', 'ICD10_2010'), +('J92.9', 'Pleural plaque without asbestos', 'ICD10_2010'), +('J93', 'Pneumothorax', 'ICD10_2010'), +('J93.0', 'Spontaneous tension pneumothorax', 'ICD10_2010'), +('J93.1', 'Other spontaneous pneumothorax', 'ICD10_2010'), +('J93.8', 'Other pneumothorax', 'ICD10_2010'), +('J93.9', 'Pneumothorax, unspecified', 'ICD10_2010'), +('J94', 'Other pleural conditions', 'ICD10_2010'), +('J94.0', 'Chylous effusion', 'ICD10_2010'), +('J94.1', 'Fibrothorax', 'ICD10_2010'), +('J94.2', 'Haemothorax', 'ICD10_2010'), +('J94.8', 'Other specified pleural conditions', 'ICD10_2010'), +('J94.9', 'Pleural condition, unspecified', 'ICD10_2010'), +('J95', 'Postprocedural respiratory disorders, not elsewhere classified', 'ICD10_2010'), +('J95.0', 'Tracheostomy malfunction', 'ICD10_2010'), +('J95.1', 'Acute pulmonary insufficiency following thoracic surgery', 'ICD10_2010'), +('J95.2', 'Acute pulmonary insufficiency following nonthoracic surgery', 'ICD10_2010'), +('J95.3', 'Chronic pulmonary insufficiency following surgery', 'ICD10_2010'), +('J95.4', 'Mendelson\'s syndrome', 'ICD10_2010'), +('J95.5', 'Postprocedural subglottic stenosis', 'ICD10_2010'), +('J95.8', 'Other postprocedural respiratory disorders', 'ICD10_2010'), +('J95.9', 'Postprocedural respiratory disorder, unspecified', 'ICD10_2010'), +('J96', 'Respiratory failure, not elsewhere classified', 'ICD10_2010'), +('J96.0', 'Acute respiratory failure', 'ICD10_2010'), +('J96.1', 'Chronic respiratory failure', 'ICD10_2010'), +('J96.9', 'Respiratory failure, unspecified', 'ICD10_2010'), +('J98', 'Other respiratory disorders', 'ICD10_2010'), +('J98.0', 'Diseases of bronchus, not elsewhere classified', 'ICD10_2010'), +('J98.1', 'Pulmonary collapse', 'ICD10_2010'), +('J98.2', 'Interstitial emphysema', 'ICD10_2010'), +('J98.3', 'Compensatory emphysema', 'ICD10_2010'), +('J98.4', 'Other disorders of lung', 'ICD10_2010'), +('J98.5', 'Diseases of mediastinum, not elsewhere classified', 'ICD10_2010'), +('J98.6', 'Disorders of diaphragm', 'ICD10_2010'), +('J98.8', 'Other specified respiratory disorders', 'ICD10_2010'), +('J98.9', 'Respiratory disorder, unspecified', 'ICD10_2010'), +('J99', 'Respiratory disorders in diseases classified elsewhere', 'ICD10_2010'), +('J99.0', 'Rheumatoid lung disease', 'ICD10_2010'), +('J99.1', 'Resp disorders in other diffuse connective tissue disorders', 'ICD10_2010'), +('J99.8', 'Respiratory disorders in other diseases classified elsewhere', 'ICD10_2010'), +('K00', 'Disorders of tooth development and eruption', 'ICD10_2010'), +('K00.0', 'Anodontia', 'ICD10_2010'), +('K00.1', 'Supernumerary teeth', 'ICD10_2010'), +('K00.2', 'Abnormalities of size and form of teeth', 'ICD10_2010'), +('K00.3', 'Mottled teeth', 'ICD10_2010'), +('K00.4', 'Disturbances in tooth formation', 'ICD10_2010'), +('K00.5', 'Hereditary disturbances in tooth structure nec', 'ICD10_2010'), +('K00.6', 'Disturbances in tooth eruption', 'ICD10_2010'), +('K00.7', 'Teething syndrome', 'ICD10_2010'), +('K00.8', 'Other disorders of tooth development', 'ICD10_2010'), +('K00.9', 'Disorder of tooth development, unspecified', 'ICD10_2010'), +('K01', 'Embedded and impacted teeth', 'ICD10_2010'), +('K01.0', 'Embedded teeth', 'ICD10_2010'), +('K01.1', 'Impacted teeth', 'ICD10_2010'), +('K02', 'Dental caries', 'ICD10_2010'), +('K02.0', 'Caries limited to enamel', 'ICD10_2010'), +('K02.1', 'Caries of dentine', 'ICD10_2010'), +('K02.2', 'Caries of cementum', 'ICD10_2010'), +('K02.3', 'Arrested dental caries', 'ICD10_2010'), +('K02.4', 'Odontoclasia', 'ICD10_2010'), +('K02.8', 'Other dental caries', 'ICD10_2010'), +('K02.9', 'Dental caries, unspecified', 'ICD10_2010'), +('K03', 'Other diseases of hard tissues of teeth', 'ICD10_2010'), +('K03.0', 'Excessive attrition of teeth', 'ICD10_2010'), +('K03.1', 'Abrasion of teeth', 'ICD10_2010'), +('K03.2', 'Erosion of teeth', 'ICD10_2010'), +('K03.3', 'Pathological resorption of teeth', 'ICD10_2010'), +('K03.4', 'Hypercementosis', 'ICD10_2010'), +('K03.5', 'Ankylosis of teeth', 'ICD10_2010'), +('K03.6', 'Deposits [accretions] on teeth', 'ICD10_2010'), +('K03.7', 'Posteruptive colour changes of dental hard tissues', 'ICD10_2010'), +('K03.8', 'Other specified diseases of hard tissues of teeth', 'ICD10_2010'), +('K03.9', 'Disease of hard tissues of teeth, unspecified', 'ICD10_2010'), +('K04', 'Diseases of pulp and periapical tissues', 'ICD10_2010'), +('K04.0', 'Pulpitis', 'ICD10_2010'), +('K04.1', 'Necrosis of pulp', 'ICD10_2010'), +('K04.2', 'Pulp degeneration', 'ICD10_2010'), +('K04.3', 'Abnormal hard tissue formation in pulp', 'ICD10_2010'), +('K04.4', 'Acute apical periodontitis of pulpal origin', 'ICD10_2010'), +('K04.5', 'Chronic apical periodontitis', 'ICD10_2010'), +('K04.6', 'Periapical abscess with sinus', 'ICD10_2010'), +('K04.7', 'Periapical abscess without sinus', 'ICD10_2010'), +('K04.8', 'Radicular cyst', 'ICD10_2010'), +('K04.9', 'Other and unspec diseases of pulp and periapical tissues', 'ICD10_2010'), +('K05', 'Gingivitis and periodontal diseases', 'ICD10_2010'), +('K05.0', 'Acute gingivitis', 'ICD10_2010'), +('K05.1', 'Chronic gingivitis', 'ICD10_2010'), +('K05.2', 'Acute periodontitis', 'ICD10_2010'), +('K05.3', 'Chronic periodontitis', 'ICD10_2010'), +('K05.4', 'Periodontosis', 'ICD10_2010'), +('K05.5', 'Other periodontal diseases', 'ICD10_2010'), +('K05.6', 'Periodontal disease, unspecified', 'ICD10_2010'), +('K06', 'Other disorders of gingiva and edentulous alveolar ridge', 'ICD10_2010'), +('K06.0', 'Gingival recession', 'ICD10_2010'), +('K06.1', 'Gingival enlargement', 'ICD10_2010'), +('K06.2', 'Gingival and edentulous alveolar ridge les assoc with traum', 'ICD10_2010'), +('K06.8', 'Other specified disorder of gingiva and edentulous alveolar ridge', 'ICD10_2010'), +('K06.9', 'Disorder of gingiva and edentulous alveolar ridge, unspec act', 'ICD10_2010'), +('K07', 'Dentofacial anomalies [including malocclusion]', 'ICD10_2010'), +('K07.0', 'Major anomalies of jaw size', 'ICD10_2010'), +('K07.1', 'Anomalies of jaw-cranial base relationship', 'ICD10_2010'), +('K07.2', 'Anomalies of dental arch relationship', 'ICD10_2010'), +('K07.3', 'Anomalies of tooth position', 'ICD10_2010'), +('K07.4', 'Malocclusion, unspecified', 'ICD10_2010'), +('K07.5', 'Dentofacial functional abnormalities', 'ICD10_2010'), +('K07.6', 'Temporomandibular joint disorders', 'ICD10_2010'), +('K07.8', 'Other dentofacial anomalies', 'ICD10_2010'), +('K07.9', 'Dentofacial anomaly, unspecified', 'ICD10_2010'), +('K08', 'Other disorders of teeth and supporting structures', 'ICD10_2010'), +('K08.0', 'Exfoliation of teeth due to systemic causes', 'ICD10_2010'), +('K08.1', 'Loss of teeth accident extraction or local periodontal dis', 'ICD10_2010'), +('K08.2', 'Atrophy of edentulous alveolar ridge', 'ICD10_2010'), +('K08.3', 'Retained dental root', 'ICD10_2010'), +('K08.8', 'Other specified disorders of teeth and supporting structures', 'ICD10_2010'), +('K08.9', 'Disorder of teeth and supporting structures, unspecified', 'ICD10_2010'), +('K09', 'Cysts of oral region, not elsewhere classified', 'ICD10_2010'), +('K09.0', 'Developmental odontogenic cysts', 'ICD10_2010'), +('K09.1', 'Developmental (nonodontogenic) cysts of oral region', 'ICD10_2010'), +('K09.2', 'Other cysts of jaw', 'ICD10_2010'), +('K09.8', 'Other cysts of oral region, not elsewhere classified', 'ICD10_2010'), +('K09.9', 'Cyst of oral region, unspecified', 'ICD10_2010'), +('K10', 'Other diseases of jaws', 'ICD10_2010'), +('K10.0', 'Developmental disorders of jaws', 'ICD10_2010'), +('K10.1', 'Giant cell granuloma, central', 'ICD10_2010'), +('K10.2', 'Inflammatory conditions of jaws', 'ICD10_2010'), +('K10.3', 'Alveolitis of jaws', 'ICD10_2010'), +('K10.8', 'Other specified diseases of jaws', 'ICD10_2010'), +('K10.9', 'Disease of jaws, unspecified', 'ICD10_2010'), +('K11', 'Diseases of salivary glands', 'ICD10_2010'), +('K11.0', 'Atrophy of salivary gland', 'ICD10_2010'), +('K11.1', 'Hypertrophy of salivary gland', 'ICD10_2010'), +('K11.2', 'Sialoadenitis', 'ICD10_2010'), +('K11.3', 'Abscess of salivary gland', 'ICD10_2010'), +('K11.4', 'Fistula of salivary gland', 'ICD10_2010'), +('K11.5', 'Sialolithiasis', 'ICD10_2010'), +('K11.6', 'Mucocele of salivary gland', 'ICD10_2010'), +('K11.7', 'Disturbances of salivary secretion', 'ICD10_2010'), +('K11.8', 'Other diseases of salivary glands', 'ICD10_2010'), +('K11.9', 'Disease of salivary gland, unspecified', 'ICD10_2010'), +('K12', 'Stomatitis and related lesions', 'ICD10_2010'), +('K12.0', 'Recurrent oral aphthae', 'ICD10_2010'), +('K12.1', 'Other forms of stomatitis', 'ICD10_2010'), +('K12.2', 'Cellulitis and abscess of mouth', 'ICD10_2010'), +('K12.3', 'Oral mucositis (ulcerative)', 'ICD10_2010'), +('K13', 'Other diseases of lip and oral mucosa', 'ICD10_2010'), +('K13.0', 'Diseases of lips', 'ICD10_2010'), +('K13.1', 'Cheek and lip biting', 'ICD10_2010'), +('K13.2', 'Leukoplakia and other disturbances of oral epithelium, including tongue', 'ICD10_2010'), +('K13.3', 'Hairy leukoplakia', 'ICD10_2010'), +('K13.4', 'Granuloma and granuloma-like lesions of oral mucosa', 'ICD10_2010'), +('K13.5', 'Oral submucous fibrosis', 'ICD10_2010'), +('K13.6', 'Irritative hyperplasia of oral mucosa', 'ICD10_2010'), +('K13.7', 'Other and unspecified lesions of oral mucosa', 'ICD10_2010'), +('K14', 'Diseases of tongue', 'ICD10_2010'), +('K14.0', 'Glossitis', 'ICD10_2010'), +('K14.1', 'Geographic tongue', 'ICD10_2010'), +('K14.2', 'Median rhomboid glossitis', 'ICD10_2010'), +('K14.3', 'Hypertrophy of tongue papillae', 'ICD10_2010'), +('K14.4', 'Atrophy of tongue papillae', 'ICD10_2010'), +('K14.5', 'Plicated tongue', 'ICD10_2010'), +('K14.6', 'Glossodynia', 'ICD10_2010'), +('K14.8', 'Other diseases of tongue', 'ICD10_2010'), +('K14.9', 'Disease of tongue, unspecified', 'ICD10_2010'), +('K20', 'Oesophagitis', 'ICD10_2010'), +('K21', 'Gastro-oesophageal reflux disease', 'ICD10_2010'), +('K21.0', 'Gastro-oesophageal reflux disease with oesophagitis', 'ICD10_2010'), +('K21.9', 'Gastro-oesophageal reflux disease without oesophagitis', 'ICD10_2010'), +('K22', 'Other diseases of oesophagus', 'ICD10_2010'), +('K22.0', 'Achalasia of cardia', 'ICD10_2010'), +('K22.1', 'Ulcer of oesophagus', 'ICD10_2010'), +('K22.2', 'Oesophageal obstruction', 'ICD10_2010'), +('K22.3', 'Perforation of oesophagus', 'ICD10_2010'), +('K22.4', 'Dyskinesia of oesophagus', 'ICD10_2010'), +('K22.5', 'Diverticulum of oesophagus, acquired', 'ICD10_2010'), +('K22.6', 'Gastro-oesophageal laceration-haemorrhage syndrome', 'ICD10_2010'), +('K22.7', 'Barrett\'s oesophagus', 'ICD10_2010'), +('K22.8', 'Other specified diseases of oesophagus', 'ICD10_2010'), +('K22.9', 'Disease of oesophagus, unspecified', 'ICD10_2010'), +('K23', 'Disorders of oesophagus in diseases classified elsewhere', 'ICD10_2010'), +('K23.0', 'Tuberculous oesophagitis', 'ICD10_2010'), +('K23.1', 'Megaoesophagus in chagas\' disease', 'ICD10_2010'), +('K23.8', 'Disorders of oesophagus in other diseases ec', 'ICD10_2010'), +('K25', 'Gastric ulcer', 'ICD10_2010'), +('K25.0', 'Gastric ulcer, acute with haemorrhage', 'ICD10_2010'), +('K25.1', 'Gastric ulcer, acute with perforation', 'ICD10_2010'), +('K25.2', 'Gastric ulcer, acute with both haemorrhage and perforation', 'ICD10_2010'), +('K25.3', 'Gastric ulcer, acute without haemorrhage or perforation', 'ICD10_2010'), +('K25.4', 'Gastric ulcer, chronic or unspecified with haemorrhage', 'ICD10_2010'), +('K25.5', 'Gastric ulcer, chronic or unspecified with perforation', 'ICD10_2010'), +('K25.6', 'Gastric ulcer, chronic or unspecified with both haemorrhage and perforation', 'ICD10_2010'), +('K25.7', 'Gastric ulcer, chronic without haemorrhage or perforation', 'ICD10_2010'), +('K25.9', 'Gastric ulcer, unspec as acute or chronic w\'out haemorrhage or perforation', 'ICD10_2010'), +('K26', 'Duodenal ulcer', 'ICD10_2010'), +('K26.0', 'Duodenal ulcer, acute with haemorrhage', 'ICD10_2010'), +('K26.1', 'Duodenal ulcer, acute with perforation', 'ICD10_2010'), +('K26.2', 'Duodenal ulcer, acute with both haemorrhage and perforation', 'ICD10_2010'), +('K26.3', 'Duodenal ulcer, acute without haemorrhage or perforation', 'ICD10_2010'), +('K26.4', 'Duodenal ulcer, chronic or unspecified with haemorrhage', 'ICD10_2010'); +INSERT INTO `icd10` (`ID_ICD10`, `Diagnosa`, `Versi_ICD10`) VALUES +('K26.5', 'Duodenal ulcer, chronic or unspecified with perforation', 'ICD10_2010'), +('K26.6', 'Chronic or unspecified with both haemorrhage and perforation', 'ICD10_2010'), +('K26.7', 'Duodenal ulcer, chronic without haemorrhage or perforation', 'ICD10_2010'), +('K26.9', 'Unspec as acute or chronic without haemorrhage or perforation', 'ICD10_2010'), +('K27', 'Peptic ulcer, site unspecified', 'ICD10_2010'), +('K27.0', 'Peptic ulcer, acute with haemorrhage', 'ICD10_2010'), +('K27.1', 'Peptic ulcer, acute with perforation', 'ICD10_2010'), +('K27.2', 'Peptic ulcer, acute with both haemorrhage and perforation', 'ICD10_2010'), +('K27.3', 'Peptic ulcer, acute without haemorrhage or perforation', 'ICD10_2010'), +('K27.4', 'Peptic ulcer, chronic or unspecified with haemorrhage', 'ICD10_2010'), +('K27.5', 'Peptic ulcer, chronic or unspecified with perforation', 'ICD10_2010'), +('K27.6', 'Peptic ulcer, chronic or unspecified with both haemorrhage and perforation', 'ICD10_2010'), +('K27.7', 'Peptic ulcer, chronic without haemorrhage or perforation', 'ICD10_2010'), +('K27.9', 'Peptic ulcer, unspec as acute or chronic without haemorrhage or perforation', 'ICD10_2010'), +('K28', 'Gastrojejunal ulcer', 'ICD10_2010'), +('K28.0', 'Gastrojejunal ulcer, acute with haemorrhage', 'ICD10_2010'), +('K28.1', 'Gastrojejunal ulcer, acute with perforation', 'ICD10_2010'), +('K28.2', 'Gastrojejunal ulcer, acute with both haemorrhage and perforation', 'ICD10_2010'), +('K28.3', 'Gastrojejunal ulcer, acute without haemorrhage or perforation', 'ICD10_2010'), +('K28.4', 'Gastrojejunal ulcer, chronic or unspecified with haemorrhage', 'ICD10_2010'), +('K28.5', 'Gastrojejunal ulcer, chronic or unspecified with perforation', 'ICD10_2010'), +('K28.6', 'Gastrojejunal ulcer, chronic or unspecified with both haemorrhage and perforation', 'ICD10_2010'), +('K28.7', 'Gastrojejunal ulcer, chronic without haemorrhage or perforation', 'ICD10_2010'), +('K28.9', 'Gastrojejunal ulcer, unspec as acute or chronic without haemorrhage or perforation', 'ICD10_2010'), +('K29', 'Gastritis and duodenitis', 'ICD10_2010'), +('K29.0', 'Acute haemorrhagic gastritis', 'ICD10_2010'), +('K29.1', 'Other acute gastritis', 'ICD10_2010'), +('K29.2', 'Alcoholic gastritis', 'ICD10_2010'), +('K29.3', 'Chronic superficial gastritis', 'ICD10_2010'), +('K29.4', 'Chronic atrophic gastritis', 'ICD10_2010'), +('K29.5', 'Chronic gastritis, unspecified', 'ICD10_2010'), +('K29.6', 'Other gastritis', 'ICD10_2010'), +('K29.7', 'Gastritis, unspecified', 'ICD10_2010'), +('K29.8', 'Duodenitis', 'ICD10_2010'), +('K29.9', 'Gastroduodenitis, unspecified', 'ICD10_2010'), +('K30', 'Dyspepsia', 'ICD10_2010'), +('K31', 'Other diseases of stomach and duodenum', 'ICD10_2010'), +('K31.0', 'Acute dilatation of stomach', 'ICD10_2010'), +('K31.1', 'Adult hypertrophic pyloric stenosis', 'ICD10_2010'), +('K31.2', 'Hourglass stricture and stenosis of stomach', 'ICD10_2010'), +('K31.3', 'Pylorospasm, not elsewhere classified', 'ICD10_2010'), +('K31.4', 'Gastric diverticulum', 'ICD10_2010'), +('K31.5', 'Obstruction of duodenum', 'ICD10_2010'), +('K31.6', 'Fistula of stomach and duodenum', 'ICD10_2010'), +('K31.7', 'Polyp of stomach and duodenum', 'ICD10_2010'), +('K31.8', 'Other specified diseases of stomach and duodenum', 'ICD10_2010'), +('K31.9', 'Disease of stomach and duodenum, unspecified', 'ICD10_2010'), +('K35', 'Acute appendicitis', 'ICD10_2010'), +('K35.2', 'Acute appendicitis with generalized peritonitis', 'ICD10_2010'), +('K35.3', 'Acute appendicitis with localized peritonitis', 'ICD10_2010'), +('K35.8', 'Acute appendicitis, other and unspecified', 'ICD10_2010'), +('K36', 'Other appendicitis', 'ICD10_2010'), +('K37', 'Unspecified appendicitis', 'ICD10_2010'), +('K38', 'Other diseases of appendix', 'ICD10_2010'), +('K38.0', 'Hyperplasia of appendix', 'ICD10_2010'), +('K38.1', 'Appendicular concretions', 'ICD10_2010'), +('K38.2', 'Diverticulum of appendix', 'ICD10_2010'), +('K38.3', 'Fistula of appendix', 'ICD10_2010'), +('K38.8', 'Other specified diseases of appendix', 'ICD10_2010'), +('K38.9', 'Disease of appendix, unspecified', 'ICD10_2010'), +('K40', 'Inguinal hernia', 'ICD10_2010'), +('K40.0', 'Bilateral inguinal hernia, with obstruction, without gangrene', 'ICD10_2010'), +('K40.1', 'Bilateral inguinal hernia, with gangrene', 'ICD10_2010'), +('K40.2', 'Bilateral inguinal hernia, without obstruction or gangrene', 'ICD10_2010'), +('K40.3', 'Unilateral or unspecified inguinal hernia, with obstruction, without gangrene', 'ICD10_2010'), +('K40.4', 'Unilateral or unspecified inguinal hernia, with gangrene', 'ICD10_2010'), +('K40.9', 'Unilateral or unspecified inguinal hernia, without obstruction or gangrene', 'ICD10_2010'), +('K41', 'Femoral hernia', 'ICD10_2010'), +('K41.0', 'Bilateral femoral hernia, with obstruction, without gangrene', 'ICD10_2010'), +('K41.1', 'Bilateral femoral hernia, with gangrene', 'ICD10_2010'), +('K41.2', 'Bilateral femoral hernia, without obstruction or gangrene', 'ICD10_2010'), +('K41.3', 'Unilateral or unspecified femoral hernia, with obstruction, without gangrene', 'ICD10_2010'), +('K41.4', 'Unilateral or unspecified femoral hernia, with gangrene', 'ICD10_2010'), +('K41.9', 'Unilateral or unspecified femoral hernia, without obstruction or gangrene', 'ICD10_2010'), +('K42', 'Umbilical hernia', 'ICD10_2010'), +('K42.0', 'Umbilical hernia with obstruction, without gangrene', 'ICD10_2010'), +('K42.1', 'Umbilical hernia with gangrene', 'ICD10_2010'), +('K42.9', 'Umbilical hernia without obstruction or gangrene', 'ICD10_2010'), +('K43', 'Ventral hernia', 'ICD10_2010'), +('K43.0', 'Ventral hernia with obstruction, without gangrene', 'ICD10_2010'), +('K43.1', 'Ventral hernia with gangrene', 'ICD10_2010'), +('K43.9', 'Ventral hernia without obstruction or gangrene', 'ICD10_2010'), +('K44', 'Diaphragmatic hernia', 'ICD10_2010'), +('K44.0', 'Diaphragmatic hernia with obstruction, without gangrene', 'ICD10_2010'), +('K44.1', 'Diaphragmatic hernia with gangrene', 'ICD10_2010'), +('K44.9', 'Diaphragmatic hernia without obstruction or gangrene', 'ICD10_2010'), +('K45', 'Other abdominal hernia', 'ICD10_2010'), +('K45.0', 'Other spec abdominal hernia with obstruct without gangrene', 'ICD10_2010'), +('K45.1', 'Other specified abdominal hernia with gangrene', 'ICD10_2010'), +('K45.8', 'Other specified abdominal hernia without obstruction or gangrene', 'ICD10_2010'), +('K46', 'Unspecified abdominal hernia', 'ICD10_2010'), +('K46.0', 'Unspecified abdominal hernia with obstruction without gangrene', 'ICD10_2010'), +('K46.1', 'Unspecified abdominal hernia with gangrene', 'ICD10_2010'), +('K46.9', 'Unspecified abdominal hernia without obstruction or gangrene', 'ICD10_2010'), +('K50', 'Crohn disease [regional enteritis]', 'ICD10_2010'), +('K50.0', 'Crohn\'s disease of small intestine', 'ICD10_2010'), +('K50.1', 'Crohn\'s disease of large intestine', 'ICD10_2010'), +('K50.8', 'Other crohn\'s disease', 'ICD10_2010'), +('K50.9', 'Crohn\'s disease, unspecified', 'ICD10_2010'), +('K51', 'Ulcerative colitis', 'ICD10_2010'), +('K51.0', 'Ulcerative (chronic) enterocolitis', 'ICD10_2010'), +('K51.1', 'Ulcerative (chronic) ileocolitis', 'ICD10_2010'), +('K51.2', 'Ulcerative (chronic) proctitis', 'ICD10_2010'), +('K51.3', 'Ulcerative (chronic) rectosigmoiditis', 'ICD10_2010'), +('K51.4', 'Pseudopolyposis of colon', 'ICD10_2010'), +('K51.5', 'Mucosal proctocolitis', 'ICD10_2010'), +('K51.8', 'Other ulcerative colitis', 'ICD10_2010'), +('K51.9', 'Ulcerative colitis, unspecified', 'ICD10_2010'), +('K52', 'Other noninfective gastroenteritis and colitis', 'ICD10_2010'), +('K52.0', 'Gastroenteritis and colitis due to radiation', 'ICD10_2010'), +('K52.1', 'Toxic gastroenteritis and colitis', 'ICD10_2010'), +('K52.2', 'Allergic and dietetic gastroenteritis and colitis', 'ICD10_2010'), +('K52.3', 'Indeterminate colitis', 'ICD10_2010'), +('K52.8', 'Other specified noninfective gastroenteritis and colitis', 'ICD10_2010'), +('K52.9', 'Noninfective gastroenteritis and colitis, unspecified', 'ICD10_2010'), +('K55', 'Vascular disorders of intestine', 'ICD10_2010'), +('K55.0', 'Acute vascular disorders of intestine', 'ICD10_2010'), +('K55.1', 'Chronic vascular disorders of intestine', 'ICD10_2010'), +('K55.2', 'Angiodysplasia of colon', 'ICD10_2010'), +('K55.8', 'Other vascular disorders of intestine', 'ICD10_2010'), +('K55.9', 'Vascular disorder of intestine, unspecified', 'ICD10_2010'), +('K56', 'Paralytic ileus and intestinal obstruction without hernia', 'ICD10_2010'), +('K56.0', 'Paralytic ileus', 'ICD10_2010'), +('K56.1', 'Intussusception', 'ICD10_2010'), +('K56.2', 'Volvulus', 'ICD10_2010'), +('K56.3', 'Gallstone ileus', 'ICD10_2010'), +('K56.4', 'Other impaction of intestine', 'ICD10_2010'), +('K56.5', 'Intestinal adhesions [bands] with obstruction', 'ICD10_2010'), +('K56.6', 'Other and unspecified intestinal obstruction', 'ICD10_2010'), +('K56.7', 'Ileus, unspecified', 'ICD10_2010'), +('K57', 'Diverticular disease of intestine', 'ICD10_2010'), +('K57.0', 'Diverticular disease of small intestine with perforation and abscess', 'ICD10_2010'), +('K57.1', 'Diverticular disease of small intestine without perforation or abscess', 'ICD10_2010'), +('K57.2', 'Diverticular disease of large intestine with perforation and abscess', 'ICD10_2010'), +('K57.3', 'Diverticular disease of large intestine without perforation or abscess', 'ICD10_2010'), +('K57.4', 'Diverticular disease of both small and large intestine with perforation and abscess', 'ICD10_2010'), +('K57.5', 'Diverticular disease of both small and large intestine without perforation or abscess', 'ICD10_2010'), +('K57.8', 'Diverticular disease of intestine, part unspecified, with perforation and abscess', 'ICD10_2010'), +('K57.9', 'Diverticular disease of intestine, part unspecified, without perforation or abscess', 'ICD10_2010'), +('K58', 'Irritable bowel syndrome', 'ICD10_2010'), +('K58.0', 'Irritable bowel syndrome with diarrhoea', 'ICD10_2010'), +('K58.9', 'Irritable bowel syndrome without diarrhoea', 'ICD10_2010'), +('K59', 'Other functional intestinal disorders', 'ICD10_2010'), +('K59.0', 'Constipation', 'ICD10_2010'), +('K59.1', 'Functional diarrhoea', 'ICD10_2010'), +('K59.2', 'Neurogenic bowel, not elsewhere classified', 'ICD10_2010'), +('K59.3', 'Megacolon, not elsewhere classified', 'ICD10_2010'), +('K59.4', 'Anal spasm', 'ICD10_2010'), +('K59.8', 'Other specified functional intestinal disorders', 'ICD10_2010'), +('K59.9', 'Functional intestinal disorder, unspecified', 'ICD10_2010'), +('K60', 'Fissure and fistula of anal and rectal regions', 'ICD10_2010'), +('K60.0', 'Acute anal fissure', 'ICD10_2010'), +('K60.1', 'Chronic anal fissure', 'ICD10_2010'), +('K60.2', 'Anal fissure, unspecified', 'ICD10_2010'), +('K60.3', 'Anal fistula', 'ICD10_2010'), +('K60.4', 'Rectal fistula', 'ICD10_2010'), +('K60.5', 'Anorectal fistula', 'ICD10_2010'), +('K61', 'Abscess of anal and rectal regions', 'ICD10_2010'), +('K61.0', 'Anal abscess', 'ICD10_2010'), +('K61.1', 'Rectal abscess', 'ICD10_2010'), +('K61.2', 'Anorectal abscess', 'ICD10_2010'), +('K61.3', 'Ischiorectal abscess', 'ICD10_2010'), +('K61.4', 'Intrasphincteric abscess', 'ICD10_2010'), +('K62', 'Other diseases of anus and rectum', 'ICD10_2010'), +('K62.0', 'Anal polyp', 'ICD10_2010'), +('K62.1', 'Rectal polyp', 'ICD10_2010'), +('K62.2', 'Anal prolapse', 'ICD10_2010'), +('K62.3', 'Rectal prolapse', 'ICD10_2010'), +('K62.4', 'Stenosis of anus and rectum', 'ICD10_2010'), +('K62.5', 'Haemorrhage of anus and rectum', 'ICD10_2010'), +('K62.6', 'Ulcer of anus and rectum', 'ICD10_2010'), +('K62.7', 'Radiation proctitis', 'ICD10_2010'), +('K62.8', 'Other specified diseases of anus and rectum', 'ICD10_2010'), +('K62.9', 'Disease of anus and rectum, unspecified', 'ICD10_2010'), +('K63', 'Other diseases of intestine', 'ICD10_2010'), +('K63.0', 'Abscess of intestine', 'ICD10_2010'), +('K63.1', 'Perforation of intestine (nontraumatic)', 'ICD10_2010'), +('K63.2', 'Fistula of intestine', 'ICD10_2010'), +('K63.3', 'Ulcer of intestine', 'ICD10_2010'), +('K63.4', 'Enteroptosis', 'ICD10_2010'), +('K63.5', 'Polyp of colon', 'ICD10_2010'), +('K63.8', 'Other specified diseases of intestine', 'ICD10_2010'), +('K63.9', 'Disease of intestine, unspecified', 'ICD10_2010'), +('K65', 'Peritonitis', 'ICD10_2010'), +('K65.0', 'Acute peritonitis', 'ICD10_2010'), +('K65.8', 'Other peritonitis', 'ICD10_2010'), +('K65.9', 'Peritonitis, unspecified', 'ICD10_2010'), +('K66', 'Other disorders of peritoneum', 'ICD10_2010'), +('K66.0', 'Peritoneal adhesions', 'ICD10_2010'), +('K66.1', 'Haemoperitoneum', 'ICD10_2010'), +('K66.8', 'Other specified disorders of peritoneum', 'ICD10_2010'), +('K66.9', 'Disorder of peritoneum, unspecified', 'ICD10_2010'), +('K67', 'Disorders of peritoneum in infectious diseases classified elsewhere', 'ICD10_2010'), +('K67.0', 'Chlamydial peritonitis', 'ICD10_2010'), +('K67.1', 'Gonococcal peritonitis', 'ICD10_2010'), +('K67.2', 'Syphilitic peritonitis', 'ICD10_2010'), +('K67.3', 'Tuberculous peritonitis', 'ICD10_2010'), +('K67.8', 'Other disorders of peritoneum in infectious diseases ec', 'ICD10_2010'), +('K70', 'Alcoholic liver disease', 'ICD10_2010'), +('K70.0', 'Alcoholic fatty liver', 'ICD10_2010'), +('K70.1', 'Alcoholic hepatitis', 'ICD10_2010'), +('K70.2', 'Alcoholic fibrosis and sclerosis of liver', 'ICD10_2010'), +('K70.3', 'Alcoholic cirrhosis of liver', 'ICD10_2010'), +('K70.4', 'Alcoholic hepatic failure', 'ICD10_2010'), +('K70.9', 'Alcoholic liver disease, unspecified', 'ICD10_2010'), +('K71', 'Toxic liver disease', 'ICD10_2010'), +('K71.0', 'Toxic liver disease with cholestasis', 'ICD10_2010'), +('K71.1', 'Toxic liver disease with hepatic necrosis', 'ICD10_2010'), +('K71.2', 'Toxic liver disease with acute hepatitis', 'ICD10_2010'), +('K71.3', 'Toxic liver disease with chronic persistent hepatitis', 'ICD10_2010'), +('K71.4', 'Toxic liver disease with chronic lobular hepatitis', 'ICD10_2010'), +('K71.5', 'Toxic liver disease with chronic active hepatitis', 'ICD10_2010'), +('K71.6', 'Toxic liver disease with hepatitis, not elsewhere classified', 'ICD10_2010'), +('K71.7', 'Toxic liver disease with fibrosis and cirrhosis of liver', 'ICD10_2010'), +('K71.8', 'Toxic liver disease with other disorders of liver', 'ICD10_2010'), +('K71.9', 'Toxic liver disease, unspecified', 'ICD10_2010'), +('K72', 'Hepatic failure, not elsewhere classified', 'ICD10_2010'), +('K72.0', 'Acute and subacute hepatic failure', 'ICD10_2010'), +('K72.1', 'Chronic hepatic failure', 'ICD10_2010'), +('K72.9', 'Hepatic failure, unspecified', 'ICD10_2010'), +('K73', 'Chronic hepatitis, not elsewhere classified', 'ICD10_2010'), +('K73.0', 'Chronic persistent hepatitis, not elsewhere classified', 'ICD10_2010'), +('K73.1', 'Chronic lobular hepatitis, not elsewhere classified', 'ICD10_2010'), +('K73.2', 'Chronic active hepatitis, not elsewhere classified', 'ICD10_2010'), +('K73.8', 'Other chronic hepatitis, not elsewhere classified', 'ICD10_2010'), +('K73.9', 'Chronic hepatitis, unspecified', 'ICD10_2010'), +('K74', 'Fibrosis and cirrhosis of liver', 'ICD10_2010'), +('K74.0', 'Hepatic fibrosis', 'ICD10_2010'), +('K74.1', 'Hepatic sclerosis', 'ICD10_2010'), +('K74.2', 'Hepatic fibrosis with hepatic sclerosis', 'ICD10_2010'), +('K74.3', 'Primary biliary cirrhosis', 'ICD10_2010'), +('K74.4', 'Secondary biliary cirrhosis', 'ICD10_2010'), +('K74.5', 'Biliary cirrhosis, unspecified', 'ICD10_2010'), +('K74.6', 'Other and unspecified cirrhosis of liver', 'ICD10_2010'), +('K75', 'Other inflammatory liver diseases', 'ICD10_2010'), +('K75.0', 'Abscess of liver', 'ICD10_2010'), +('K75.1', 'Phlebitis of portal vein', 'ICD10_2010'), +('K75.2', 'Nonspecific reactive hepatitis', 'ICD10_2010'), +('K75.3', 'Granulomatous hepatitis, not elsewhere classified', 'ICD10_2010'), +('K75.4', 'Autoimmune hepatitis', 'ICD10_2010'), +('K75.8', 'Other specified inflammatory liver diseases', 'ICD10_2010'), +('K75.9', 'Inflammatory liver disease, unspecified', 'ICD10_2010'), +('K76', 'Other diseases of liver', 'ICD10_2010'), +('K76.0', 'Fatty (change of) liver, not elsewhere classified', 'ICD10_2010'), +('K76.1', 'Chronic passive congestion of liver', 'ICD10_2010'), +('K76.2', 'Central haemorrhagic necrosis of liver', 'ICD10_2010'), +('K76.3', 'Infarction of liver', 'ICD10_2010'), +('K76.4', 'Peliosis hepatis', 'ICD10_2010'), +('K76.5', 'Hepatic veno-occlusive disease', 'ICD10_2010'), +('K76.6', 'Portal hypertension', 'ICD10_2010'), +('K76.7', 'Hepatorenal syndrome', 'ICD10_2010'), +('K76.8', 'Other specified diseases of liver', 'ICD10_2010'), +('K76.9', 'Liver disease, unspecified', 'ICD10_2010'), +('K77', 'Liver disorders in diseases classified elsewhere', 'ICD10_2010'), +('K77.0', 'Liver disorders in infectious and parasitic diseases classified elsewhere', 'ICD10_2010'), +('K77.8', 'Liver disorders in other diseases classified elsewhere', 'ICD10_2010'), +('K80', 'Cholelithiasis', 'ICD10_2010'), +('K80.0', 'Calculus of gallbladder with acute cholecystitis', 'ICD10_2010'), +('K80.1', 'Calculus of gallbladder with other cholecystitis', 'ICD10_2010'), +('K80.2', 'Calculus of gallbladder without cholecystitis', 'ICD10_2010'), +('K80.3', 'Calculus of bile duct with cholangitis', 'ICD10_2010'), +('K80.4', 'Calculus of bile duct with cholecystitis', 'ICD10_2010'), +('K80.5', 'Calculus of bile duct without cholangitis or cholecystitis', 'ICD10_2010'), +('K80.8', 'Other cholelithiasis', 'ICD10_2010'), +('K81', 'Cholecystitis', 'ICD10_2010'), +('K81.0', 'Acute cholecystitis', 'ICD10_2010'), +('K81.1', 'Chronic cholecystitis', 'ICD10_2010'), +('K81.8', 'Other cholecystitis', 'ICD10_2010'), +('K81.9', 'Cholecystitis, unspecified', 'ICD10_2010'), +('K82', 'Other diseases of gallbladder', 'ICD10_2010'), +('K82.0', 'Obstruction of gallbladder', 'ICD10_2010'), +('K82.1', 'Hydrops of gallbladder', 'ICD10_2010'), +('K82.2', 'Perforation of gallbladder', 'ICD10_2010'), +('K82.3', 'Fistula of gallbladder', 'ICD10_2010'), +('K82.4', 'Cholesterolosis of gallbladder', 'ICD10_2010'), +('K82.8', 'Other specified diseases of gallbladder', 'ICD10_2010'), +('K82.9', 'Disease of gallbladder, unspecified', 'ICD10_2010'), +('K83', 'Other diseases of biliary tract', 'ICD10_2010'), +('K83.0', 'Cholangitis', 'ICD10_2010'), +('K83.1', 'Obstruction of bile duct', 'ICD10_2010'), +('K83.2', 'Perforation of bile duct', 'ICD10_2010'), +('K83.3', 'Fistula of bile duct', 'ICD10_2010'), +('K83.4', 'Spasm of sphincter of oddi', 'ICD10_2010'), +('K83.5', 'Biliary cyst', 'ICD10_2010'), +('K83.8', 'Other specified diseases of biliary tract', 'ICD10_2010'), +('K83.9', 'Disease of biliary tract, unspecified', 'ICD10_2010'), +('K85', 'Acute pancreatitis', 'ICD10_2010'), +('K85.0', 'Idiopathic acute pancreatitis', 'ICD10_2010'), +('K85.1', 'Biliary acute pancreatitis', 'ICD10_2010'), +('K85.2', 'Alcohol-induced acute pancreatitis', 'ICD10_2010'), +('K85.3', 'Drug-induced acute pancreatitis', 'ICD10_2010'), +('K85.8', 'Other acute pancreatitis', 'ICD10_2010'), +('K85.9', 'Acute pancreatitis, unspecified', 'ICD10_2010'), +('K86', 'Other diseases of pancreas', 'ICD10_2010'), +('K86.0', 'Alcohol-induced chronic pancreatitis', 'ICD10_2010'), +('K86.1', 'Other chronic pancreatitis', 'ICD10_2010'), +('K86.2', 'Cyst of pancreas', 'ICD10_2010'), +('K86.3', 'Pseudocyst of pancreas', 'ICD10_2010'), +('K86.8', 'Other specified diseases of pancreas', 'ICD10_2010'), +('K86.9', 'Disease of pancreas, unspecified', 'ICD10_2010'), +('K87', 'Disorders of gallbladder, biliary tract and pancreas in diseases classified elsewhere', 'ICD10_2010'), +('K87.0', 'Disorders of gallbladder and biliary tract in diseases classified elsewhere', 'ICD10_2010'), +('K87.1', 'Disorders of pancreas in diseases classified elsewhere', 'ICD10_2010'), +('K90', 'Intestinal malabsorption', 'ICD10_2010'), +('K90.0', 'Coeliac disease', 'ICD10_2010'), +('K90.1', 'Tropical sprue', 'ICD10_2010'), +('K90.2', 'Blind loop syndrome, not elsewhere classified', 'ICD10_2010'), +('K90.3', 'Pancreatic steatorrhoea', 'ICD10_2010'), +('K90.4', 'Malabsorption due to intolerance, not elsewhere classified', 'ICD10_2010'), +('K90.8', 'Other intestinal malabsorption', 'ICD10_2010'), +('K90.9', 'Intestinal malabsorption, unspecified', 'ICD10_2010'), +('K91', 'Postprocedural disorders of digestive system, not elsewhere classified', 'ICD10_2010'), +('K91.0', 'Vomiting following gastrointestinal surgery', 'ICD10_2010'), +('K91.1', 'Postgastric surgery syndromes', 'ICD10_2010'), +('K91.2', 'Postsurgical malabsorption, not elsewhere classified', 'ICD10_2010'), +('K91.3', 'Postoperative intestinal obstruction', 'ICD10_2010'), +('K91.4', 'Colostomy and enterostomy malfunction', 'ICD10_2010'), +('K91.5', 'Postcholecystectomy syndrome', 'ICD10_2010'), +('K91.8', 'Other postprocedural disorders of digestive system, not elsewhere classified', 'ICD10_2010'), +('K91.9', 'Postprocedural disorder of digestive system, unspecified', 'ICD10_2010'), +('K92', 'Other diseases of digestive system', 'ICD10_2010'), +('K92.0', 'Haematemesis', 'ICD10_2010'), +('K92.1', 'Melaena', 'ICD10_2010'), +('K92.2', 'Gastrointestinal haemorrhage, unspecified', 'ICD10_2010'), +('K92.8', 'Other specified diseases of digestive system', 'ICD10_2010'), +('K92.9', 'Disease of digestive system, unspecified', 'ICD10_2010'), +('K93', 'Disorders of other digestive organs in diseases classified elsewhere', 'ICD10_2010'), +('K93.0', 'Tuberculous disorders of intestines, peritoneum and mesenteric glands', 'ICD10_2010'), +('K93.1', 'Megacolon in chagas\' disease', 'ICD10_2010'), +('K93.8', 'Disord of oth spec digestive organs in dis class elsewhere', 'ICD10_2010'), +('L00', 'Staphylococcal scalded skin syndrome', 'ICD10_2010'), +('L01', 'Impetigo', 'ICD10_2010'), +('L01.0', 'Impetigo [any organism] [any site]', 'ICD10_2010'), +('L01.1', 'Impetiginization of other dermatoses', 'ICD10_2010'), +('L02', 'Cutaneous abscess, furuncle and carbuncle', 'ICD10_2010'), +('L02.0', 'Cutaneous abscess, furuncle and carbuncle of face', 'ICD10_2010'), +('L02.1', 'Cutaneous abscess, furuncle and carbuncle of neck', 'ICD10_2010'), +('L02.2', 'Cutaneous abscess, furuncle and carbuncle of trunk', 'ICD10_2010'), +('L02.3', 'Cutaneous abscess, furuncle and carbuncle of buttock', 'ICD10_2010'), +('L02.4', 'Cutaneous abscess, furuncle and carbuncle of limb', 'ICD10_2010'), +('L02.8', 'Cutaneous abscess, furuncle and carbuncle of other sites', 'ICD10_2010'), +('L02.9', 'Cutaneous abscess, furuncle and carbuncle, unspecified', 'ICD10_2010'), +('L03', 'Cellulitis', 'ICD10_2010'), +('L03.0', 'Cellulitis of finger and toe', 'ICD10_2010'), +('L03.1', 'Cellulitis of other parts of limb', 'ICD10_2010'), +('L03.2', 'Cellulitis of face', 'ICD10_2010'), +('L03.3', 'Cellulitis of trunk', 'ICD10_2010'), +('L03.8', 'Cellulitis of other sites', 'ICD10_2010'), +('L03.9', 'Cellulitis, unspecified', 'ICD10_2010'), +('L04', 'Acute lymphadenitis', 'ICD10_2010'), +('L04.0', 'Acute lymphadenitis of face, head and neck', 'ICD10_2010'), +('L04.1', 'Acute lymphadenitis of trunk', 'ICD10_2010'), +('L04.2', 'Acute lymphadenitis of upper limb', 'ICD10_2010'), +('L04.3', 'Acute lymphadenitis of lower limb', 'ICD10_2010'), +('L04.8', 'Acute lymphadenitis of other sites', 'ICD10_2010'), +('L04.9', 'Acute lymphadenitis, unspecified', 'ICD10_2010'), +('L05', 'Pilonidal cyst', 'ICD10_2010'), +('L05.0', 'Pilonidal cyst with abscess', 'ICD10_2010'), +('L05.9', 'Pilonidal cyst without abscess', 'ICD10_2010'), +('L08', 'Other local infections of skin and subcutaneous tissue', 'ICD10_2010'), +('L08.0', 'Pyoderma', 'ICD10_2010'), +('L08.1', 'Erythrasma', 'ICD10_2010'), +('L08.8', 'Other specified local infections of skin and subcutaneous tissue', 'ICD10_2010'), +('L08.9', 'Local infection of skin and subcutaneous tissue, unspecified', 'ICD10_2010'), +('L10', 'Pemphigus', 'ICD10_2010'), +('L10.0', 'Pemphigus vulgaris', 'ICD10_2010'), +('L10.1', 'Pemphigus vegetans', 'ICD10_2010'), +('L10.2', 'Pemphigus foliaceus', 'ICD10_2010'), +('L10.3', 'Brazilian pemphigus [fogo selvagem]', 'ICD10_2010'), +('L10.4', 'Pemphigus erythematosus', 'ICD10_2010'), +('L10.5', 'Drug induced pemphigus', 'ICD10_2010'), +('L10.8', 'Other pemphigus', 'ICD10_2010'), +('L10.9', 'Pemphigus, unspecified', 'ICD10_2010'), +('L11', 'Other acantholytic disorders', 'ICD10_2010'), +('L11.0', 'Acquired keratosis follicularis', 'ICD10_2010'), +('L11.1', 'Transient acantholytic dermatosis [grover]', 'ICD10_2010'), +('L11.8', 'Other specified acantholytic disorders', 'ICD10_2010'), +('L11.9', 'Acantholytic disorder, unspecified', 'ICD10_2010'), +('L12', 'Pemphigoid', 'ICD10_2010'), +('L12.0', 'Bullous pemphigoid', 'ICD10_2010'), +('L12.1', 'Cicatricial pemphigoid', 'ICD10_2010'), +('L12.2', 'Chronic bullous disease of childhood', 'ICD10_2010'), +('L12.3', 'Acquired epidermolysis bullosa', 'ICD10_2010'), +('L12.8', 'Other pemphigoid', 'ICD10_2010'), +('L12.9', 'Pemphigoid, unspecified', 'ICD10_2010'), +('L13', 'Other bullous disorders', 'ICD10_2010'), +('L13.0', 'Dermatitis herpetiformis', 'ICD10_2010'), +('L13.1', 'Subcorneal pustular dermatitis', 'ICD10_2010'), +('L13.8', 'Other specified bullous disorders', 'ICD10_2010'), +('L13.9', 'Bullous disorder, unspecified', 'ICD10_2010'), +('L14', 'Bullous disorders in diseases classified elsewhere', 'ICD10_2010'), +('L20', 'Atopic dermatitis', 'ICD10_2010'), +('L20.0', 'Besnier\'s prurigo', 'ICD10_2010'), +('L20.8', 'Other atopic dermatitis', 'ICD10_2010'), +('L20.9', 'Atopic dermatitis, unspecified', 'ICD10_2010'), +('L21', 'Seborrhoeic dermatitis', 'ICD10_2010'), +('L21.0', 'Seborrhoea capitis', 'ICD10_2010'), +('L21.1', 'Seborrhoeic infantile dermatitis', 'ICD10_2010'), +('L21.8', 'Other seborrhoeic dermatitis', 'ICD10_2010'), +('L21.9', 'Seborrhoeic dermatitis, unspecified', 'ICD10_2010'), +('L22', 'Diaper [napkin] dermatitis', 'ICD10_2010'), +('L23', 'Allergic contact dermatitis', 'ICD10_2010'), +('L23.0', 'Allergic contact dermatitis due to metals', 'ICD10_2010'), +('L23.1', 'Allergic contact dermatitis due to adhesives', 'ICD10_2010'), +('L23.2', 'Allergic contact dermatitis due to cosmetics', 'ICD10_2010'), +('L23.3', 'Allergic contact dermatitis due drugs in contact with skin', 'ICD10_2010'), +('L23.4', 'Allergic contact dermatitis due to dyes', 'ICD10_2010'), +('L23.5', 'Allergic contact dermatitis due to other chemical products', 'ICD10_2010'), +('L23.6', 'Allergic contact dermatitis due to food in contact with skin', 'ICD10_2010'), +('L23.7', 'Allergic contact dermatitis due to plants, except food', 'ICD10_2010'), +('L23.8', 'Allergic contact dermatitis due to other agents', 'ICD10_2010'), +('L23.9', 'Allergic contact dermatitis, unspecified cause', 'ICD10_2010'), +('L24', 'Irritant contact dermatitis', 'ICD10_2010'), +('L24.0', 'Irritant contact dermatitis due to detergents', 'ICD10_2010'), +('L24.1', 'Irritant contact dermatitis due to oils and greases', 'ICD10_2010'), +('L24.2', 'Irritant contact dermatitis due to solvents', 'ICD10_2010'), +('L24.3', 'Irritant contact dermatitis due to cosmetics', 'ICD10_2010'), +('L24.4', 'Irritant contact dermatitis due drugs in contact with skin', 'ICD10_2010'), +('L24.5', 'Irritant contact dermatitis due to other chemical products', 'ICD10_2010'), +('L24.6', 'Irritant contact dermatitis due to food in contact with skin', 'ICD10_2010'), +('L24.7', 'Irritant contact dermatitis due to plants, except food', 'ICD10_2010'), +('L24.8', 'Irritant contact dermatitis due to other agents', 'ICD10_2010'), +('L24.9', 'Irritant contact dermatitis, unspecified cause', 'ICD10_2010'), +('L25', 'Unspecified contact dermatitis', 'ICD10_2010'), +('L25.0', 'Unspecified contact dermatitis due to cosmetics', 'ICD10_2010'), +('L25.1', 'Unspecified contact dermatitis due to drugs in contact with skin', 'ICD10_2010'), +('L25.2', 'Unspecified contact dermatitis due to dyes', 'ICD10_2010'), +('L25.3', 'Unspecified contact dermatitis due to other chemical products', 'ICD10_2010'), +('L25.4', 'Unspecified contact dermatitis due to food in contact with skin', 'ICD10_2010'), +('L25.5', 'Unspecified contact dermatitis due to plants, except food', 'ICD10_2010'), +('L25.8', 'Unspecified contact dermatitis due to other agents', 'ICD10_2010'), +('L25.9', 'Unspecified contact dermatitis, unspecified cause', 'ICD10_2010'), +('L26', 'Exfoliative dermatitis', 'ICD10_2010'), +('L27', 'Dermatitis due to substances taken internally', 'ICD10_2010'), +('L27.0', 'Generalized skin eruption due to drugs and medicaments', 'ICD10_2010'), +('L27.1', 'Localized skin eruption due to drugs and medicaments', 'ICD10_2010'), +('L27.2', 'Dermatitis due to ingested food', 'ICD10_2010'), +('L27.8', 'Dermatitis due to other substances taken internally', 'ICD10_2010'), +('L27.9', 'Dermatitis due to unspecified substance taken internally', 'ICD10_2010'), +('L28', 'Lichen simplex chronicus and prurigo', 'ICD10_2010'), +('L28.0', 'Lichen simplex chronicus', 'ICD10_2010'), +('L28.1', 'Prurigo nodularis', 'ICD10_2010'), +('L28.2', 'Other prurigo', 'ICD10_2010'), +('L29', 'Pruritus', 'ICD10_2010'), +('L29.0', 'Pruritus ani', 'ICD10_2010'), +('L29.1', 'Pruritus scroti', 'ICD10_2010'), +('L29.2', 'Pruritus vulvae', 'ICD10_2010'), +('L29.3', 'Anogenital pruritus, unspecified', 'ICD10_2010'), +('L29.8', 'Other pruritus', 'ICD10_2010'), +('L29.9', 'Pruritus, unspecified', 'ICD10_2010'), +('L30', 'Other dermatitis', 'ICD10_2010'), +('L30.0', 'Nummular dermatitis', 'ICD10_2010'), +('L30.1', 'Dyshidrosis [pompholyx]', 'ICD10_2010'), +('L30.2', 'Cutaneous autosensitization', 'ICD10_2010'), +('L30.3', 'Infective dermatitis', 'ICD10_2010'), +('L30.4', 'Erythema intertrigo', 'ICD10_2010'), +('L30.5', 'Pityriasis alba', 'ICD10_2010'), +('L30.8', 'Other specified dermatitis', 'ICD10_2010'), +('L30.9', 'Dermatitis, unspecified', 'ICD10_2010'), +('L40', 'Psoriasis', 'ICD10_2010'), +('L40.0', 'Psoriasis vulgaris', 'ICD10_2010'), +('L40.1', 'Generalized pustular psoriasis', 'ICD10_2010'), +('L40.2', 'Acrodermatitis continua', 'ICD10_2010'), +('L40.3', 'Pustulosis palmaris et plantaris', 'ICD10_2010'), +('L40.4', 'Guttate psoriasis', 'ICD10_2010'), +('L40.5', 'Arthropathic psoriasis', 'ICD10_2010'), +('L40.8', 'Other psoriasis', 'ICD10_2010'), +('L40.9', 'Psoriasis, unspecified', 'ICD10_2010'), +('L41', 'Parapsoriasis', 'ICD10_2010'), +('L41.0', 'Pityriasis lichenoides et varioliformis acuta', 'ICD10_2010'), +('L41.1', 'Pityriasis lichenoides chronica', 'ICD10_2010'), +('L41.2', 'Lymphomatoid papulosis', 'ICD10_2010'), +('L41.3', 'Small plaque parapsoriasis', 'ICD10_2010'), +('L41.4', 'Large plaque parapsoriasis', 'ICD10_2010'), +('L41.5', 'Retiform parapsoriasis', 'ICD10_2010'), +('L41.8', 'Other parapsoriasis', 'ICD10_2010'), +('L41.9', 'Parapsoriasis, unspecified', 'ICD10_2010'), +('L42', 'Pityriasis rosea', 'ICD10_2010'), +('L43', 'Lichen planus', 'ICD10_2010'), +('L43.0', 'Hypertrophic lichen planus', 'ICD10_2010'), +('L43.1', 'Bullous lichen planus', 'ICD10_2010'), +('L43.2', 'Lichenoid drug reaction', 'ICD10_2010'), +('L43.3', 'Subacute (active) lichen planus', 'ICD10_2010'), +('L43.8', 'Other lichen planus', 'ICD10_2010'), +('L43.9', 'Lichen planus, unspecified', 'ICD10_2010'), +('L44', 'Other papulosquamous disorders', 'ICD10_2010'), +('L44.0', 'Pityriasis rubra pilaris', 'ICD10_2010'), +('L44.1', 'Lichen nitidus', 'ICD10_2010'), +('L44.2', 'Lichen striatus', 'ICD10_2010'), +('L44.3', 'Lichen ruber moniliformis', 'ICD10_2010'), +('L44.4', 'Infantile papular acrodermatitis [giannotti-crosti]', 'ICD10_2010'), +('L44.8', 'Other specified papulosquamous disorders', 'ICD10_2010'), +('L44.9', 'Papulosquamous disorder, unspecified', 'ICD10_2010'), +('L45', 'Papulosquamous disorders in diseases classif elsewhere', 'ICD10_2010'), +('L50', 'Urticaria', 'ICD10_2010'), +('L50.0', 'Allergic urticaria', 'ICD10_2010'), +('L50.1', 'Idiopathic urticaria', 'ICD10_2010'), +('L50.2', 'Urticaria due to cold and heat', 'ICD10_2010'), +('L50.3', 'Dermatographic urticaria', 'ICD10_2010'), +('L50.4', 'Vibratory urticaria', 'ICD10_2010'), +('L50.5', 'Cholinergic urticaria', 'ICD10_2010'), +('L50.6', 'Contact urticaria', 'ICD10_2010'), +('L50.8', 'Other urticaria', 'ICD10_2010'), +('L50.9', 'Urticaria, unspecified', 'ICD10_2010'), +('L51', 'Erythema multiforme', 'ICD10_2010'), +('L51.0', 'Nonbullous erythema multiforme', 'ICD10_2010'), +('L51.1', 'Bullous erythema multiforme', 'ICD10_2010'), +('L51.2', 'Toxic epidermal necrolysis [lyell]', 'ICD10_2010'), +('L51.8', 'Other erythema multiforme', 'ICD10_2010'), +('L51.9', 'Erythema multiforme, unspecified', 'ICD10_2010'), +('L52', 'Erythema nodosum', 'ICD10_2010'), +('L53', 'Other erythematous conditions', 'ICD10_2010'), +('L53.0', 'Toxic erythema', 'ICD10_2010'), +('L53.1', 'Erythema annulare centrifugum', 'ICD10_2010'), +('L53.2', 'Erythema marginatum', 'ICD10_2010'), +('L53.3', 'Other chronic figurate erythema', 'ICD10_2010'), +('L53.8', 'Other specified erythematous conditions', 'ICD10_2010'), +('L53.9', 'Erythematous condition, unspecified', 'ICD10_2010'), +('L54', 'Erythema in diseases classified elsewhere', 'ICD10_2010'), +('L54.0', 'Erythema marginatum in acute rheumatic fever', 'ICD10_2010'), +('L54.8', 'Erythema in other diseases classified elsewhere', 'ICD10_2010'), +('L55', 'Sunburn', 'ICD10_2010'), +('L55.0', 'Sunburn of first degree', 'ICD10_2010'), +('L55.1', 'Sunburn of second degree', 'ICD10_2010'), +('L55.2', 'Sunburn of third degree', 'ICD10_2010'), +('L55.8', 'Other sunburn', 'ICD10_2010'), +('L55.9', 'Sunburn, unspecified', 'ICD10_2010'), +('L56', 'Other acute skin changes due to ultraviolet radiation', 'ICD10_2010'), +('L56.0', 'Drug phototoxic response', 'ICD10_2010'), +('L56.1', 'Drug photoallergic response', 'ICD10_2010'), +('L56.2', 'Photocontact dermatitis [berloque dermatitis]', 'ICD10_2010'), +('L56.3', 'Solar urticaria', 'ICD10_2010'), +('L56.4', 'Polymorphous light eruption', 'ICD10_2010'), +('L56.8', 'Other specified acute skin changes due to ultraviolet radiation', 'ICD10_2010'), +('L56.9', 'Acute skin change due to ultraviolet radiation, unspecified', 'ICD10_2010'), +('L57', 'Skin changes due to chronic exposure to nonionizing radiation', 'ICD10_2010'), +('L57.0', 'Actinic keratosis', 'ICD10_2010'), +('L57.1', 'Actinic reticuloid', 'ICD10_2010'), +('L57.2', 'Cutis rhomboidalis nuchae', 'ICD10_2010'), +('L57.3', 'Poikiloderma of civatte', 'ICD10_2010'), +('L57.4', 'Cutis laxa senilis', 'ICD10_2010'), +('L57.5', 'Actinic granuloma', 'ICD10_2010'), +('L57.8', 'Other skin change due chronic exposure to nonionizing radiation', 'ICD10_2010'), +('L57.9', 'Skin change due chronic exposure to nonionizing radiation, unspecified', 'ICD10_2010'), +('L58', 'Radiodermatitis', 'ICD10_2010'), +('L58.0', 'Acute radiodermatitis', 'ICD10_2010'), +('L58.1', 'Chronic radiodermatitis', 'ICD10_2010'), +('L58.9', 'Radiodermatitis, unspecified', 'ICD10_2010'), +('L59', 'Other disorders of skin and subcutaneous tissue related to radiation', 'ICD10_2010'), +('L59.0', 'Erythema ab igne [dermatitis ab igne]', 'ICD10_2010'), +('L59.8', 'Other specified disorders of skin and subcutaneous tissue related to radiation', 'ICD10_2010'), +('L59.9', 'Disorder of skin and subcutaneous tissue related to radiation unspecified', 'ICD10_2010'), +('L60', 'Nail disorders', 'ICD10_2010'), +('L60.0', 'Ingrowing nail', 'ICD10_2010'), +('L60.1', 'Onycholysis', 'ICD10_2010'), +('L60.2', 'Onychogryphosis', 'ICD10_2010'), +('L60.3', 'Nail dystrophy', 'ICD10_2010'), +('L60.4', 'Beau\'s lines', 'ICD10_2010'), +('L60.5', 'Yellow nail syndrome', 'ICD10_2010'), +('L60.8', 'Other nail disorders', 'ICD10_2010'), +('L60.9', 'Nail disorder, unspecified', 'ICD10_2010'), +('L62', 'Nail disorders in diseases classified elsewhere', 'ICD10_2010'), +('L62.0', 'Clubbed nail pachydermoperiostosis', 'ICD10_2010'), +('L62.8', 'Nail disorders in other diseases classified elsewhere', 'ICD10_2010'), +('L63', 'Alopecia areata', 'ICD10_2010'), +('L63.0', 'Alopecia (capitis) totalis', 'ICD10_2010'), +('L63.1', 'Alopecia universalis', 'ICD10_2010'), +('L63.2', 'Ophiasis', 'ICD10_2010'), +('L63.8', 'Other alopecia areata', 'ICD10_2010'), +('L63.9', 'Alopecia areata, unspecified', 'ICD10_2010'), +('L64', 'Androgenic alopecia', 'ICD10_2010'), +('L64.0', 'Drug-induced androgenic alopecia', 'ICD10_2010'), +('L64.8', 'Other androgenic alopecia', 'ICD10_2010'), +('L64.9', 'Androgenic alopecia, unspecified', 'ICD10_2010'), +('L65', 'Other nonscarring hair loss', 'ICD10_2010'), +('L65.0', 'Telogen effluvium', 'ICD10_2010'), +('L65.1', 'Anagen effluvium', 'ICD10_2010'), +('L65.2', 'Alopecia mucinosa', 'ICD10_2010'), +('L65.8', 'Other specified nonscarring hair loss', 'ICD10_2010'), +('L65.9', 'Nonscarring hair loss, unspecified', 'ICD10_2010'), +('L66', 'Cicatricial alopecia [scarring hair loss]', 'ICD10_2010'), +('L66.0', 'Pseudopelade', 'ICD10_2010'), +('L66.1', 'Lichen planopilaris', 'ICD10_2010'), +('L66.2', 'Folliculitis decalvans', 'ICD10_2010'), +('L66.3', 'Perifolliculitis capitis abscedens', 'ICD10_2010'), +('L66.4', 'Folliculitis ulerythematosa reticulata', 'ICD10_2010'), +('L66.8', 'Other cicatricial alopecia', 'ICD10_2010'), +('L66.9', 'Cicatricial alopecia, unspecified', 'ICD10_2010'), +('L67', 'Hair colour and hair shaft abnormalities', 'ICD10_2010'), +('L67.0', 'Trichorrhexis nodosa', 'ICD10_2010'), +('L67.1', 'Variations in hair colour', 'ICD10_2010'), +('L67.8', 'Other hair colour and hair shaft abnormalities', 'ICD10_2010'), +('L67.9', 'Hair colour and hair shaft abnormality, unspecified', 'ICD10_2010'), +('L68', 'Hypertrichosis', 'ICD10_2010'), +('L68.0', 'Hirsutism', 'ICD10_2010'), +('L68.1', 'Acquired hypertrichosis lanuginosa', 'ICD10_2010'), +('L68.2', 'Localized hypertrichosis', 'ICD10_2010'), +('L68.3', 'Polytrichia', 'ICD10_2010'), +('L68.8', 'Other hypertrichosis', 'ICD10_2010'), +('L68.9', 'Hypertrichosis, unspecified', 'ICD10_2010'), +('L70', 'Acne', 'ICD10_2010'), +('L70.0', 'Acne vulgaris', 'ICD10_2010'), +('L70.1', 'Acne conglobata', 'ICD10_2010'), +('L70.2', 'Acne varioliformis', 'ICD10_2010'), +('L70.3', 'Acne tropica', 'ICD10_2010'), +('L70.4', 'Infantile acne', 'ICD10_2010'), +('L70.5', 'Acn', 'ICD10_2010'), +('L70.8', 'Other acne', 'ICD10_2010'), +('L70.9', 'Acne, unspecified', 'ICD10_2010'), +('L71', 'Rosacea', 'ICD10_2010'), +('L71.0', 'Perioral dermatitis', 'ICD10_2010'), +('L71.1', 'Rhinophyma', 'ICD10_2010'), +('L71.8', 'Other rosacea', 'ICD10_2010'), +('L71.9', 'Rosacea, unspecified', 'ICD10_2010'), +('L72', 'Follicular cysts of skin and subcutaneous tissue', 'ICD10_2010'), +('L72.0', 'Epidermal cyst', 'ICD10_2010'), +('L72.1', 'Trichilemmal cyst', 'ICD10_2010'), +('L72.2', 'Steatocystoma multiplex', 'ICD10_2010'), +('L72.8', 'Other follicular cysts of skin and subcutaneous tissue', 'ICD10_2010'), +('L72.9', 'Follicular cyst of skin and subcutaneous tissue, unspecified', 'ICD10_2010'), +('L73', 'Other follicular disorders', 'ICD10_2010'), +('L73.0', 'Acne keloid', 'ICD10_2010'), +('L73.1', 'Pseudofolliculitis barbae', 'ICD10_2010'), +('L73.2', 'Hidradenitis suppurativa', 'ICD10_2010'), +('L73.8', 'Other specified follicular disorders', 'ICD10_2010'), +('L73.9', 'Follicular disorder, unspecified', 'ICD10_2010'), +('L74', 'Eccrine sweat disorders', 'ICD10_2010'), +('L74.0', 'Miliaria rubra', 'ICD10_2010'), +('L74.1', 'Miliaria crystallina', 'ICD10_2010'), +('L74.2', 'Miliaria profunda', 'ICD10_2010'), +('L74.3', 'Miliaria, unspecified', 'ICD10_2010'), +('L74.4', 'Anhidrosis', 'ICD10_2010'), +('L74.8', 'Other eccrine sweat disorders', 'ICD10_2010'), +('L74.9', 'Eccrine sweat disorder, unspecified', 'ICD10_2010'), +('L75', 'Apocrine sweat disorders', 'ICD10_2010'), +('L75.0', 'Bromhidrosis', 'ICD10_2010'), +('L75.1', 'Chromhidrosis', 'ICD10_2010'), +('L75.2', 'Apocrine miliaria', 'ICD10_2010'), +('L75.8', 'Other apocrine sweat disorders', 'ICD10_2010'), +('L75.9', 'Apocrine sweat disorder, unspecified', 'ICD10_2010'), +('L80', 'Vitiligo', 'ICD10_2010'), +('L81', 'Other disorders of pigmentation', 'ICD10_2010'), +('L81.0', 'Postinflammatory hyperpigmentation', 'ICD10_2010'), +('L81.1', 'Chloasma', 'ICD10_2010'), +('L81.2', 'Freckles', 'ICD10_2010'), +('L81.3', 'Cafe au Lait Spots', 'ICD10_2010'), +('L81.4', 'Other melanin hyperpigmentation', 'ICD10_2010'), +('L81.5', 'Leukoderma, not elsewhere classified', 'ICD10_2010'), +('L81.6', 'Other disorders of diminished melanin formation', 'ICD10_2010'), +('L81.7', 'Pigmented purpuric dermatosis', 'ICD10_2010'), +('L81.8', 'Other specified disorders of pigmentation', 'ICD10_2010'), +('L81.9', 'Disorder of pigmentation, unspecified', 'ICD10_2010'), +('L82', 'Seborrhoeic keratosis', 'ICD10_2010'), +('L83', 'Acanthosis nigricans', 'ICD10_2010'), +('L84', 'Corns and callosities', 'ICD10_2010'), +('L85', 'Other epidermal thickening', 'ICD10_2010'), +('L85.0', 'Acquired ichthyosis', 'ICD10_2010'), +('L85.1', 'Acquired keratosis [keratoderma] palmaris et plantaris', 'ICD10_2010'), +('L85.2', 'Keratosis punctata (palmaris et plantaris)', 'ICD10_2010'), +('L85.3', 'Xerosis cutis', 'ICD10_2010'), +('L85.8', 'Other specified epidermal thickening', 'ICD10_2010'), +('L85.9', 'Epidermal thickening, unspecified', 'ICD10_2010'), +('L86', 'Keratoderma in diseases classified elsewhere', 'ICD10_2010'), +('L87', 'Transepidermal elimination disorders', 'ICD10_2010'), +('L87.0', 'Keratosis foll et parafoicularis cutem penetrans [kyrle]', 'ICD10_2010'), +('L87.1', 'Reactive perforating collagenosis', 'ICD10_2010'), +('L87.2', 'Elastosis perforans serpiginosa', 'ICD10_2010'), +('L87.8', 'Other transepidermal elimination disorders', 'ICD10_2010'), +('L87.9', 'Transepidermal elimination disorder, unspecified', 'ICD10_2010'), +('L88', 'Pyoderma gangrenosum', 'ICD10_2010'), +('L89', 'Decubitus ulcer', 'ICD10_2010'), +('L89.0', 'Stage I decubitus ulcer and pressure area', 'ICD10_2010'), +('L89.1', 'Stage II decubitus ulcer', 'ICD10_2010'), +('L89.2', 'Stage III decubitus ulcer', 'ICD10_2010'), +('L89.3', 'Stage IV decubitus ulcer', 'ICD10_2010'), +('L89.9', 'Decubitus ulcer and pressure area, unspecified', 'ICD10_2010'), +('L90', 'Atrophic disorders of skin', 'ICD10_2010'), +('L90.0', 'Lichen sclerosus et atrophicus', 'ICD10_2010'), +('L90.1', 'Anetoderma of Schweninger-Buzzi', 'ICD10_2010'), +('L90.2', 'Anetoderma of Jadassohn-Pellizzari', 'ICD10_2010'), +('L90.3', 'Atrophoderma of Pasini and Pierini', 'ICD10_2010'), +('L90.4', 'Acrodermatitis chronica atrophicans', 'ICD10_2010'), +('L90.5', 'Scar conditions and fibrosis of skin', 'ICD10_2010'), +('L90.6', 'Striae atrophicae', 'ICD10_2010'), +('L90.8', 'Other atrophic disorders of skin', 'ICD10_2010'), +('L90.9', 'Atrophic disorder of skin, unspecified', 'ICD10_2010'), +('L91', 'Hypertrophic disorders of skin', 'ICD10_2010'), +('L91.0', 'Keloid scar', 'ICD10_2010'), +('L91.8', 'Other hypertrophic disorders of skin', 'ICD10_2010'), +('L91.9', 'Hypertrophic disorder of skin, unspecified', 'ICD10_2010'), +('L92', 'Granulomatous disorders of skin and subcutaneous tissue', 'ICD10_2010'), +('L92.0', 'Granuloma annulare', 'ICD10_2010'), +('L92.1', 'Necrobiosis lipoidica, not elsewhere classified', 'ICD10_2010'), +('L92.2', 'Granuloma faciale [eosinophilic granuloma of skin]', 'ICD10_2010'), +('L92.3', 'Foreign body granuloma of skin and subcutaneous tissue', 'ICD10_2010'), +('L92.8', 'Other granulomatous disorders of skin and subcutaneous tissue', 'ICD10_2010'), +('L92.9', 'Granulomatous disorder of skin and subcutaneous tissue, unspecified', 'ICD10_2010'), +('L93', 'Lupus erythematosus', 'ICD10_2010'), +('L93.0', 'Discoid lupus erythematosus', 'ICD10_2010'), +('L93.1', 'Subacute cutaneous lupus erythematosus', 'ICD10_2010'), +('L93.2', 'Other local lupus erythematosus', 'ICD10_2010'), +('L94', 'Other localized connective tissue disorders', 'ICD10_2010'), +('L94.0', 'Localized scleroderma [morphea]', 'ICD10_2010'), +('L94.1', 'Linear scleroderma', 'ICD10_2010'), +('L94.2', 'Calcinosis cutis', 'ICD10_2010'), +('L94.3', 'Sclerodactyly', 'ICD10_2010'), +('L94.4', 'Gottron\'s papules', 'ICD10_2010'), +('L94.5', 'Poikiloderma vasculare atrophicans', 'ICD10_2010'), +('L94.6', 'Ainhum', 'ICD10_2010'), +('L94.8', 'Other specified localized connective tissue disorders', 'ICD10_2010'), +('L94.9', 'Localized connective tissue disorder, unspecified', 'ICD10_2010'), +('L95', 'Vasculitis limited to skin, not elsewhere classified', 'ICD10_2010'), +('L95.0', 'Livedoid vasculitis', 'ICD10_2010'), +('L95.1', 'Erythema elevatum diutinum', 'ICD10_2010'), +('L95.8', 'Other vasculitis limited to skin', 'ICD10_2010'), +('L95.9', 'Vasculitis limited to skin, unspecified', 'ICD10_2010'), +('L97', 'Ulcer of lower limb, not elsewhere classified', 'ICD10_2010'), +('L98', 'Other disorders of skin and subcutaneous tissue, not elsewhere classified', 'ICD10_2010'), +('L98.0', 'Pyogenic granuloma', 'ICD10_2010'), +('L98.1', 'Factitial dermatitis', 'ICD10_2010'), +('L98.2', 'Febrile neutrophilic dermatosis [Sweet]', 'ICD10_2010'), +('L98.3', 'Eosinophilic cellulitis [Wells]', 'ICD10_2010'), +('L98.4', 'Chronic ulcer of skin, not elsewhere classified', 'ICD10_2010'), +('L98.5', 'Mucinosis of skin', 'ICD10_2010'), +('L98.6', 'Other infiltrative disorders of skin and subcutaneous tissue', 'ICD10_2010'), +('L98.8', 'Other specified disorders of skin and subcutaneous tissue', 'ICD10_2010'), +('L98.9', 'Disorder of skin and subcutaneous tissue, unspecified', 'ICD10_2010'), +('L99', 'Other disorders of skin and subcutaneous tissue in diseases classified elsewhere', 'ICD10_2010'), +('L99.0', 'Amyloidosis of skin', 'ICD10_2010'), +('L99.8', 'Other specified disorders of skin and subcutaneous tissue in disease classified elsewhere', 'ICD10_2010'), +('M00', 'Pyogenic arthritis', 'ICD10_2010'), +('M00.0', 'Staphylococcal arthritis and polyarthritis', 'ICD10_2010'), +('M00.00', 'Staphylococcal arthritis and polyarthritis, multiple sites', 'ICD10_2010'), +('M00.01', 'Staphylococcal arthritis and polyarthritis, shoulder region', 'ICD10_2010'), +('M00.02', 'Staphylococcal arthritis and polyarthritis, upper arm', 'ICD10_2010'), +('M00.03', 'Staphylococcal arthritis and polyarthritis, forearm', 'ICD10_2010'), +('M00.04', 'Staphylococcal arthritis and polyarthritis, hand', 'ICD10_2010'), +('M00.05', 'Staphylococcal arthritis and polyarthritis, pelvic and thigh', 'ICD10_2010'), +('M00.06', 'Staphylococcal arthritis and polyarthritis, lower leg', 'ICD10_2010'), +('M00.07', 'Staphylococcal arthritis and polyarthritis, ankle and foot', 'ICD10_2010'), +('M00.08', 'Staphylococcal arthritis and polyarthritis, other site', 'ICD10_2010'), +('M00.09', 'Staphylococcal arthritis and polyarthritis, unspecified site', 'ICD10_2010'), +('M00.1', 'Pneumococcal arthritis and polyarthritis', 'ICD10_2010'), +('M00.10', 'Pneumococcal arthritis and polyarthritis, multiple sites', 'ICD10_2010'), +('M00.11', 'Pneumococcal arthritis and polyarthritis, shoulder region', 'ICD10_2010'), +('M00.12', 'Pneumococcal arthritis and polyarthritis, upper arm', 'ICD10_2010'), +('M00.13', 'Pneumococcal arthritis and polyarthritis, forearm', 'ICD10_2010'), +('M00.14', 'Pneumococcal arthritis and polyarthritis, hand', 'ICD10_2010'), +('M00.15', 'Pneumococcal arthritis and polyarthritis, pelvic and thigh', 'ICD10_2010'), +('M00.16', 'Pneumococcal arthritis and polyarthritis, lower leg', 'ICD10_2010'), +('M00.17', 'Pneumococcal arthritis and polyarthritis, ankle and foot', 'ICD10_2010'), +('M00.18', 'Pneumococcal arthritis and polyarthritis, other sites', 'ICD10_2010'), +('M00.19', 'Pneumococcal arthritis and polyarthritis, unspecified site', 'ICD10_2010'), +('M00.2', 'Other streptococcal arthritis and polyarthritis', 'ICD10_2010'), +('M00.20', 'Other streptococcal arthritis and polyarthritis, multiple sites', 'ICD10_2010'), +('M00.21', 'Other streptococcal arthritis and polyarthritis, shoulder region', 'ICD10_2010'), +('M00.22', 'Other streptococcal arthritis and polyarthritis, upper arm', 'ICD10_2010'), +('M00.23', 'Other streptococcal arthritis and polyarthritis, forearm', 'ICD10_2010'), +('M00.24', 'Other streptococcal arthritis and polyarthritis, hand', 'ICD10_2010'), +('M00.25', 'Other streptococcal arthritis and polyarthritis, pelvic and thigh', 'ICD10_2010'), +('M00.26', 'Other streptococcal arthritis and polyarthritis, lower leg', 'ICD10_2010'), +('M00.27', 'Other streptococcal arthritis and polyarthritis, ankle and foot', 'ICD10_2010'), +('M00.28', 'Other streptococcal arthritis and polyarthritis, other sites', 'ICD10_2010'), +('M00.29', 'Other streptococcal arthritis and polyarthritis, unspecified site', 'ICD10_2010'), +('M00.8', 'Arthritis and polyarthritis due other specified bacterial agents', 'ICD10_2010'), +('M00.80', 'Arthritis and polyarthritis due other specified bacterial agents, multiple sites', 'ICD10_2010'), +('M00.81', 'Arthritis and polyarthritis due other specified bacterial agents, shouder region', 'ICD10_2010'), +('M00.82', 'Arthritis and polyarthritis due other specified bacterial agents, upper arm', 'ICD10_2010'), +('M00.83', 'Arthritis and polyarthritis due other specified bacterial agents, forearm', 'ICD10_2010'), +('M00.84', 'Arthritis and polyarthritis due other specified bacterial agents, hand', 'ICD10_2010'), +('M00.85', 'Arthritis and polyarthritis due other specified bacterial agents, pelvic and thigh', 'ICD10_2010'), +('M00.86', 'Arthritis and polyarthritis due other specified bacterial agents, lower leg', 'ICD10_2010'), +('M00.87', 'Arthritis and polyarthritis due other specified bacterial agents, ankle and foot', 'ICD10_2010'), +('M00.88', 'Arthritis and polyarthritis due other specified bacterial agents, other sites', 'ICD10_2010'), +('M00.89', 'Arthritis and polyarthritis due other specified bacterial agents, unspecified site', 'ICD10_2010'), +('M00.9', 'Pyogenic arthritis, unspecified', 'ICD10_2010'), +('M00.90', 'Pyogenic arthritis, unspecified, multiple sites', 'ICD10_2010'), +('M00.91', 'Pyogenic arthritis, unspecified, shoulder region', 'ICD10_2010'), +('M00.92', 'Pyogenic arthritis, unspecified, upper arm', 'ICD10_2010'), +('M00.93', 'Pyogenic arthritis, unspecified, forearm', 'ICD10_2010'), +('M00.94', 'Pyogenic arthritis, unspecified, hand', 'ICD10_2010'), +('M00.95', 'Pyogenic arthritis, unspecified, pelvic and thigh', 'ICD10_2010'), +('M00.96', 'Pyogenic arthritis, unspecified, lower leg', 'ICD10_2010'), +('M00.97', 'Pyogenic arthritis, unspecified, ankle and foot', 'ICD10_2010'), +('M00.98', 'Pyogenic arthritis, unspecified, other sites', 'ICD10_2010'), +('M00.99', 'Pyogenic arthritis, unspecified, unspecified site', 'ICD10_2010'), +('M01', 'Direct infections of joint in infectious and parasitic diseases classified elsewhere', 'ICD10_2010'), +('M01.0', 'Meningococcal arthritis', 'ICD10_2010'), +('M01.00', 'Meningococcal arthritis, multiple sites', 'ICD10_2010'), +('M01.01', 'Meningococcal arthritis, shoulder region', 'ICD10_2010'), +('M01.02', 'Meningococcal arthritis, upper arm', 'ICD10_2010'), +('M01.03', 'Meningococcal arthritis, forearm', 'ICD10_2010'), +('M01.04', 'Meningococcal arthritis, hand', 'ICD10_2010'), +('M01.05', 'Meningococcal arthritis, pelvic and thigh', 'ICD10_2010'), +('M01.06', 'Meningococcal arthritis, lower leg', 'ICD10_2010'), +('M01.07', 'Meningococcal arthritis, ankle and foot', 'ICD10_2010'), +('M01.08', 'Meningococcal arthritis, other sites', 'ICD10_2010'), +('M01.09', 'Meningococcal arthritis, unspecified site', 'ICD10_2010'), +('M01.1', 'Tuberculous arthritis', 'ICD10_2010'), +('M01.10', 'Tuberculous arthritis, multiple sites', 'ICD10_2010'), +('M01.11', 'Tuberculous arthritis, shoulder region', 'ICD10_2010'), +('M01.12', 'Tuberculous arthritis, upper arm', 'ICD10_2010'), +('M01.13', 'Tuberculous arthritis, forearm', 'ICD10_2010'), +('M01.14', 'Tuberculous arthritis, hand', 'ICD10_2010'), +('M01.15', 'Tuberculous arthritis, pelvic and thigh', 'ICD10_2010'), +('M01.16', 'Tuberculous arthritis, lower leg', 'ICD10_2010'), +('M01.17', 'Tuberculous arthritis, ankle and foot', 'ICD10_2010'), +('M01.18', 'Tuberculous arthritis, other sites', 'ICD10_2010'), +('M01.19', 'Tuberculous arthritis, unspecified site', 'ICD10_2010'), +('M01.2', 'Arthritis in lyme disease', 'ICD10_2010'), +('M01.20', 'Arthritis in lyme disease, multiple sites', 'ICD10_2010'), +('M01.21', 'Arthritis in lyme disease, shoulder region', 'ICD10_2010'), +('M01.22', 'Arthritis in lyme disease, upper arm', 'ICD10_2010'); +INSERT INTO `icd10` (`ID_ICD10`, `Diagnosa`, `Versi_ICD10`) VALUES +('M01.23', 'Arthritis in lyme disease, forearm', 'ICD10_2010'), +('M01.24', 'Arthritis in lyme disease, hand', 'ICD10_2010'), +('M01.25', 'Arthritis in lyme disease, pelvic and thigh', 'ICD10_2010'), +('M01.26', 'Arthritis in lyme disease, lower leg', 'ICD10_2010'), +('M01.27', 'Arthritis in lyme disease, ankle and foot', 'ICD10_2010'), +('M01.28', 'Arthritis in lyme disease, other sites', 'ICD10_2010'), +('M01.29', 'Arthritis in lyme disease, unspecified site', 'ICD10_2010'), +('M01.3', 'Arthritis in other bacterial diseases classified elsewhere', 'ICD10_2010'), +('M01.30', 'Arthritis in other bacterial diseases classified elsewhere, multiple sites', 'ICD10_2010'), +('M01.31', 'Arthritis in other bacterial diseases classified elsewhere, shouder region', 'ICD10_2010'), +('M01.32', 'Arthritis in other bacterial diseases classified elsewhere, upper arm', 'ICD10_2010'), +('M01.33', 'Arthritis in other bacterial diseases classified elsewhere, forearm', 'ICD10_2010'), +('M01.34', 'Arthritis in other bacterial diseases classified elsewhere, hand', 'ICD10_2010'), +('M01.35', 'Arthritis in other bacterial diseases classified elsewhere, pelvic and thigh', 'ICD10_2010'), +('M01.36', 'Arthritis in other bacterial diseases classified elsewhere, lower leg', 'ICD10_2010'), +('M01.37', 'Arthritis in other bacterial diseases classified elsewhere, ankle and foot', 'ICD10_2010'), +('M01.38', 'Arthritis in other bacterial diseases classified elsewhere, other sites', 'ICD10_2010'), +('M01.39', 'Arthritis in other bacterial diseases classified elsewhere, unspecified site', 'ICD10_2010'), +('M01.4', 'Rubella arthritis', 'ICD10_2010'), +('M01.40', 'Rubella arthritis, multiple sites', 'ICD10_2010'), +('M01.41', 'Rubella arthritis, shoulder region', 'ICD10_2010'), +('M01.42', 'Rubella arthritis, upper arm', 'ICD10_2010'), +('M01.43', 'Rubella arthritis, forearm', 'ICD10_2010'), +('M01.44', 'Rubella arthritis, hand', 'ICD10_2010'), +('M01.45', 'Rubella arthritis, pelvic and thigh', 'ICD10_2010'), +('M01.46', 'Rubella arthritis, lower leg', 'ICD10_2010'), +('M01.47', 'Rubella arthritis, ankle and foot', 'ICD10_2010'), +('M01.48', 'Rubella arthritis, other sites', 'ICD10_2010'), +('M01.49', 'Rubella arthritis, unspecified site', 'ICD10_2010'), +('M01.5', 'Arthritis in other viral diseases classified elsewhere', 'ICD10_2010'), +('M01.50', 'Arthritis in other viral diseases classified elsewhere, multiple sites', 'ICD10_2010'), +('M01.51', 'Arthritis in other viral diseases classified elsewhere, shoulder region', 'ICD10_2010'), +('M01.52', 'Arthritis in other viral diseases classified elsewhere, upper arm', 'ICD10_2010'), +('M01.53', 'Arthritis in other viral diseases classified elsewhere, forearm', 'ICD10_2010'), +('M01.54', 'Arthritis in other viral diseases classified elsewhere, hand', 'ICD10_2010'), +('M01.55', 'Arthritis in other viral diseases classified elsewhere, pelvic and thigh', 'ICD10_2010'), +('M01.56', 'Arthritis in other viral diseases classified elsewhere, lower leg', 'ICD10_2010'), +('M01.57', 'Arthritis in other viral diseases classified elsewhere, ankle and foot', 'ICD10_2010'), +('M01.58', 'Arthritis in other viral diseases classified elsewhere, other sites', 'ICD10_2010'), +('M01.59', 'Arthritis in other viral diseases classified elsewhere, unspecified site', 'ICD10_2010'), +('M01.6', 'Arhritis in mycoses', 'ICD10_2010'), +('M01.60', 'Arhritis in mycoses, multiple sites', 'ICD10_2010'), +('M01.61', 'Arhritis in mycoses, shoulder region', 'ICD10_2010'), +('M01.62', 'Arhritis in mycoses, upper arm', 'ICD10_2010'), +('M01.63', 'Arhritis in mycoses, forearm', 'ICD10_2010'), +('M01.64', 'Arhritis in mycoses, hand', 'ICD10_2010'), +('M01.65', 'Arhritis in mycoses, pelvic and thigh', 'ICD10_2010'), +('M01.66', 'Arhritis in mycoses, lower leg', 'ICD10_2010'), +('M01.67', 'Arhritis in mycoses, ankle and foot', 'ICD10_2010'), +('M01.68', 'Arhritis in mycoses, other sites', 'ICD10_2010'), +('M01.69', 'Arhritis in mycoses, unspecified site', 'ICD10_2010'), +('M01.8', 'Arthritis in other infectious and parasitic diseases classified elsewhere', 'ICD10_2010'), +('M01.80', 'Arthritis in other infectious and parasitic diseases classified elsewhere, multiple sites', 'ICD10_2010'), +('M01.81', 'Arthritis in other infectious and parasitic diseases classified elsewhere, shoulder region', 'ICD10_2010'), +('M01.82', 'Arthritis in other infectious and parasitic diseases classified elsewhere, upper arm', 'ICD10_2010'), +('M01.83', 'Arthritis in other infectious and parasitic diseases classified elsewhere, forearm', 'ICD10_2010'), +('M01.84', 'Arthritis in other infectious and parasitic diseases classified elsewhere, hand', 'ICD10_2010'), +('M01.85', 'Arthritis in other infectious and parasitic diseases classified elsewhere, pelvic and thigh', 'ICD10_2010'), +('M01.86', 'Arthritis in other infectious and parasitic diseases classified elsewhere, lower leg', 'ICD10_2010'), +('M01.87', 'Arthritis in other infectious and parasitic diseases classified elsewhere, ankle and foot', 'ICD10_2010'), +('M01.88', 'Arthritis in other infectious and parasitic diseases classified elsewhere, other sites', 'ICD10_2010'), +('M01.89', 'Arthritis in other infectious and parasitic diseases classified elsewhere, unspecified site', 'ICD10_2010'), +('M02', 'Reactive arthropathies', 'ICD10_2010'), +('M02.0', 'Arthropathy following intestinal bypass', 'ICD10_2010'), +('M02.00', 'Arthropathy following intestinal bypass, multiple sites', 'ICD10_2010'), +('M02.01', 'Arthropathy following intestinal bypass, shoulder region', 'ICD10_2010'), +('M02.02', 'Arthropathy following intestinal bypass, upper arm', 'ICD10_2010'), +('M02.03', 'Arthropathy following intestinal bypass, forearm', 'ICD10_2010'), +('M02.04', 'Arthropathy following intestinal bypass, hand', 'ICD10_2010'), +('M02.05', 'Arthropathy following intestinal bypass, pelvic and thigh', 'ICD10_2010'), +('M02.06', 'Arthropathy following intestinal bypass, lower leg', 'ICD10_2010'), +('M02.07', 'Arthropathy following intestinal bypass, ankle and foot', 'ICD10_2010'), +('M02.08', 'Arthropathy following intestinal bypass, other sites', 'ICD10_2010'), +('M02.09', 'Arthropathy following intestinal bypass, unspecified site', 'ICD10_2010'), +('M02.1', 'Postdysenteric arthropathy', 'ICD10_2010'), +('M02.10', 'Postdysenteric arthropathy, multiple sites', 'ICD10_2010'), +('M02.11', 'Postdysenteric arthropathy, shoulder region', 'ICD10_2010'), +('M02.12', 'Postdysenteric arthropathy, upper arm', 'ICD10_2010'), +('M02.13', 'Postdysenteric arthropathy, forearm', 'ICD10_2010'), +('M02.14', 'Postdysenteric arthropathy, hand', 'ICD10_2010'), +('M02.15', 'Postdysenteric arthropathy, pelvic and thigh', 'ICD10_2010'), +('M02.16', 'Postdysenteric arthropathy, lower leg', 'ICD10_2010'), +('M02.17', 'Postdysenteric arthropathy, ankle and foot', 'ICD10_2010'), +('M02.18', 'Postdysenteric arthropathy, other sites', 'ICD10_2010'), +('M02.19', 'Postdysenteric arthropathy, unspecified site', 'ICD10_2010'), +('M02.2', 'Postimmunization arthropathy', 'ICD10_2010'), +('M02.20', 'Postimmunization arthropathy, multiple sites', 'ICD10_2010'), +('M02.21', 'Postimmunization arthropathy, shoulder region', 'ICD10_2010'), +('M02.22', 'Postimmunization arthropathy, upper arm', 'ICD10_2010'), +('M02.23', 'Postimmunization arthropathy, forearm', 'ICD10_2010'), +('M02.24', 'Postimmunization arthropathy, hand', 'ICD10_2010'), +('M02.25', 'Postimmunization arthropathy, pelvic and thigh', 'ICD10_2010'), +('M02.26', 'Postimmunization arthropathy, lower leg', 'ICD10_2010'), +('M02.27', 'Postimmunization arthropathy, ankle and foot', 'ICD10_2010'), +('M02.28', 'Postimmunization arthropathy, other sites', 'ICD10_2010'), +('M02.29', 'Postimmunization arthropathy, unspecified site', 'ICD10_2010'), +('M02.3', 'Reiter\'s disease', 'ICD10_2010'), +('M02.30', 'Reiter\'s disease, multiple sites', 'ICD10_2010'), +('M02.31', 'Reiter\'s disease, shoulder region', 'ICD10_2010'), +('M02.32', 'Reiter\'s disease, upper arm', 'ICD10_2010'), +('M02.33', 'Reiter\'s disease, forearm', 'ICD10_2010'), +('M02.34', 'Reiter\'s disease, hand', 'ICD10_2010'), +('M02.35', 'Reiter\'s disease, pelvic and thigh', 'ICD10_2010'), +('M02.36', 'Reiter\'s disease, lower leg', 'ICD10_2010'), +('M02.37', 'Reiter\'s disease, ankle and foot', 'ICD10_2010'), +('M02.38', 'Reiter\'s disease, other sites', 'ICD10_2010'), +('M02.39', 'Reiter\'s disease, unspecified site', 'ICD10_2010'), +('M02.8', 'Other reactive arthropathies', 'ICD10_2010'), +('M02.80', 'Other reactive arthropathies, multiple sites', 'ICD10_2010'), +('M02.81', 'Other reactive arthropathies, shouder region', 'ICD10_2010'), +('M02.82', 'Other reactive arthropathies, upper arm', 'ICD10_2010'), +('M02.83', 'Other reactive arthropathies, forearm', 'ICD10_2010'), +('M02.84', 'Other reactive arthropathies, hand', 'ICD10_2010'), +('M02.85', 'Other reactive arthropathies, pelvic and thigh', 'ICD10_2010'), +('M02.86', 'Other reactive arthropathies, lower leg', 'ICD10_2010'), +('M02.87', 'Other reactive arthropathies, ankle and foot', 'ICD10_2010'), +('M02.88', 'Other reactive arthropathies, other sites', 'ICD10_2010'), +('M02.89', 'Other reactive arthropathies, unspecified site', 'ICD10_2010'), +('M02.9', 'Reactive arthropathy, unspecified', 'ICD10_2010'), +('M02.90', 'Reactive arthropathy, unspecified, multiple sites', 'ICD10_2010'), +('M02.91', 'Reactive arthropathy, unspecified, shoulder region', 'ICD10_2010'), +('M02.92', 'Reactive arthropathy, unspecified, upper arm', 'ICD10_2010'), +('M02.93', 'Reactive arthropathy, unspecified, forearm', 'ICD10_2010'), +('M02.94', 'Reactive arthropathy, unspecified, hand', 'ICD10_2010'), +('M02.95', 'Reactive arthropathy, unspecified, pelvic and thigh', 'ICD10_2010'), +('M02.96', 'Reactive arthropathy, unspecified, lower leg', 'ICD10_2010'), +('M02.97', 'Reactive arthropathy, unspecified, ankle and foot', 'ICD10_2010'), +('M02.98', 'Reactive arthropathy, unspecified, other sites', 'ICD10_2010'), +('M02.99', 'Reactive arthropathy, unspecified, unspecified site', 'ICD10_2010'), +('M03', 'Postinfective and reactive arthropathies in diseases classified elsewhere', 'ICD10_2010'), +('M03.0', 'Postmeningococcal arthritis', 'ICD10_2010'), +('M03.00', 'Postmeningococcal arthritis, multiple sites', 'ICD10_2010'), +('M03.01', 'Postmeningococcal arthritis, shoulder region', 'ICD10_2010'), +('M03.02', 'Postmeningococcal arthritis, upper arm', 'ICD10_2010'), +('M03.03', 'Postmeningococcal arthritis, forearm', 'ICD10_2010'), +('M03.04', 'Postmeningococcal arthritis, hand', 'ICD10_2010'), +('M03.05', 'Postmeningococcal arthritis, pelvic and thigh', 'ICD10_2010'), +('M03.06', 'Postmeningococcal arthritis, lower leg', 'ICD10_2010'), +('M03.07', 'Postmeningococcal arthritis, ankle and foot', 'ICD10_2010'), +('M03.08', 'Postmeningococcal arthritis, other sites', 'ICD10_2010'), +('M03.09', 'Postmeningococcal arthritis, unspecified site', 'ICD10_2010'), +('M03.1', 'Postinfective arthropathy in syphilis', 'ICD10_2010'), +('M03.10', 'Postinfective arthropathy in syphilis, multiple sites', 'ICD10_2010'), +('M03.11', 'Postinfective arthropathy in syphilis, shoulder region', 'ICD10_2010'), +('M03.12', 'Postinfective arthropathy in syphilis, upper arm', 'ICD10_2010'), +('M03.13', 'Postinfective arthropathy in syphilis, forearm', 'ICD10_2010'), +('M03.14', 'Postinfective arthropathy in syphilis, hand', 'ICD10_2010'), +('M03.15', 'Postinfective arthropathy in syphilis, pelvic and thigh', 'ICD10_2010'), +('M03.16', 'Postinfective arthropathy in syphilis, lower leg', 'ICD10_2010'), +('M03.17', 'Postinfective arthropathy in syphilis, ankle and foot', 'ICD10_2010'), +('M03.18', 'Postinfective arthropathy in syphilis, other sites', 'ICD10_2010'), +('M03.19', 'Postinfective arthropathy in syphilis, unspecified site', 'ICD10_2010'), +('M03.2', 'Other postinfectious arthropathies in diseases classified elsewhere', 'ICD10_2010'), +('M03.20', 'Other postinfectious arthropathies in diseases classified elsewhere, multiple sites', 'ICD10_2010'), +('M03.21', 'Other postinfectious arthropathies in diseases classified elsewhere, shoulder region', 'ICD10_2010'), +('M03.22', 'Other postinfectious arthropathies in diseases classified elsewhere, upper arm', 'ICD10_2010'), +('M03.23', 'Other postinfectious arthropathies in diseases classified elsewhere, forearm', 'ICD10_2010'), +('M03.24', 'Other postinfectious arthropathies in diseases classified elsewhere, hand', 'ICD10_2010'), +('M03.25', 'Other postinfectious arthropathies in diseases classified elsewhere, pelvic and thigh', 'ICD10_2010'), +('M03.26', 'Other postinfectious arthropathies in diseases classified elsewhere, lower leg', 'ICD10_2010'), +('M03.27', 'Other postinfectious arthropathies in diseases classified elsewhere, ankle and foot', 'ICD10_2010'), +('M03.28', 'Other postinfectious arthropathies in diseases classified elsewhere, other sites', 'ICD10_2010'), +('M03.29', 'Other postinfectious arthropathies in diseases classified elsewhere, unspecified site', 'ICD10_2010'), +('M03.6', 'Reactive arthropathy in other diseases classified elsewhere', 'ICD10_2010'), +('M03.60', 'Reactive arthropathy in other diseases classified elsewhere, multiple sites', 'ICD10_2010'), +('M03.61', 'Reactive arthropathy in other diseases classified elsewhere, shoulder region', 'ICD10_2010'), +('M03.62', 'Reactive arthropathy in other diseases classified elsewhere, upper arm', 'ICD10_2010'), +('M03.63', 'Reactive arthropathy in other diseases classified elsewhere, forearm', 'ICD10_2010'), +('M03.64', 'Reactive arthropathy in other diseases classified elsewhere, hand', 'ICD10_2010'), +('M03.65', 'Reactive arthropathy in other diseases classified elsewhere, pelvic and thigh', 'ICD10_2010'), +('M03.66', 'Reactive arthropathy in other diseases classified elsewhere, lower leg', 'ICD10_2010'), +('M03.67', 'Reactive arthropathy in other diseases classified elsewhere, ankle and foot', 'ICD10_2010'), +('M03.68', 'Reactive arthropathy in other diseases classified elsewhere, other sites', 'ICD10_2010'), +('M03.69', 'Reactive arthropathy in other diseases classified elsewhere, unspecified site', 'ICD10_2010'), +('M05', 'Seropositive rheumatoid arthritis', 'ICD10_2010'), +('M05.0', 'Seropositive Felty\'s syndrome', 'ICD10_2010'), +('M05.00', 'Seropositive Felty\'s syndrome, multiple sites', 'ICD10_2010'), +('M05.01', 'Seropositive Felty\'s syndrome, shoulder region', 'ICD10_2010'), +('M05.02', 'Seropositive Felty\'s syndrome, upper arm', 'ICD10_2010'), +('M05.03', 'Seropositive Felty\'s syndrome, forearm', 'ICD10_2010'), +('M05.04', 'Seropositive Felty\'s syndrome, hand', 'ICD10_2010'), +('M05.05', 'Seropositive Felty\'s syndrome, pelvic and thigh', 'ICD10_2010'), +('M05.06', 'Seropositive Felty\'s syndrome, lower leg', 'ICD10_2010'), +('M05.07', 'Seropositive Felty\'s syndrome, ankle and foot', 'ICD10_2010'), +('M05.08', 'Seropositive Felty\'s syndrome, other sites', 'ICD10_2010'), +('M05.09', 'Seropositive Felty\'s syndrome, unspecified site', 'ICD10_2010'), +('M05.1', 'Seropositive rheumatoid lung disease', 'ICD10_2010'), +('M05.10', 'Seropositive rheumatoid lung disease, multiple sites', 'ICD10_2010'), +('M05.11', 'Seropositive rheumatoid lung disease, shoulder region', 'ICD10_2010'), +('M05.12', 'Seropositive rheumatoid lung disease, upper arm', 'ICD10_2010'), +('M05.13', 'Seropositive rheumatoid lung disease, forearm', 'ICD10_2010'), +('M05.14', 'Seropositive rheumatoid lung disease, hand', 'ICD10_2010'), +('M05.15', 'Seropositive rheumatoid lung disease, pelvic and thigh', 'ICD10_2010'), +('M05.16', 'Seropositive rheumatoid lung disease, lower leg', 'ICD10_2010'), +('M05.17', 'Seropositive rheumatoid lung disease, ankle and foot', 'ICD10_2010'), +('M05.18', 'Seropositive rheumatoid lung disease, other sites', 'ICD10_2010'), +('M05.19', 'Seropositive rheumatoid lung disease, unspecified site', 'ICD10_2010'), +('M05.2', 'Seropositive rheumatoid vasculitis', 'ICD10_2010'), +('M05.20', 'Seropositive rheumatoid vasculitis, multiple sites', 'ICD10_2010'), +('M05.21', 'Seropositive rheumatoid vasculitis, shoulder region', 'ICD10_2010'), +('M05.22', 'Seropositive rheumatoid vasculitis, upper arm', 'ICD10_2010'), +('M05.23', 'Seropositive rheumatoid vasculitis, forearm', 'ICD10_2010'), +('M05.24', 'Seropositive rheumatoid vasculitis, hand', 'ICD10_2010'), +('M05.25', 'Seropositive rheumatoid vasculitis, pelvic and thigh', 'ICD10_2010'), +('M05.26', 'Seropositive rheumatoid vasculitis, lower leg', 'ICD10_2010'), +('M05.27', 'Seropositive rheumatoid vasculitis, ankle and foot', 'ICD10_2010'), +('M05.28', 'Seropositive rheumatoid vasculitis, other sites', 'ICD10_2010'), +('M05.29', 'Seropositive rheumatoid vasculitis, unspecified site', 'ICD10_2010'), +('M05.3', 'Seropositive rheumatoid arthritis with involvement of oth organs and sys', 'ICD10_2010'), +('M05.30', 'Seropositive rheumatoid arthritis with involvement of other organs and system, multiple site', 'ICD10_2010'), +('M05.31', 'Seropositive rheumatoid arthritis with involvement of other organs and system, shoulder region', 'ICD10_2010'), +('M05.32', 'Seropositive rheumatoid arthritis with involvement of other organs and system, upper arm', 'ICD10_2010'), +('M05.33', 'Seropositive rheumatoid arthritis with involvement of other organs and system, forearm', 'ICD10_2010'), +('M05.34', 'Seropositive rheumatoid arthritis with involvement of other organs and system, hand', 'ICD10_2010'), +('M05.35', 'Seropositive rheumatoid arthritis with involvement of other organs and system, pelvic and thigh', 'ICD10_2010'), +('M05.36', 'Seropositive rheumatoid arthritis with involvement of other organs and system, lower leg', 'ICD10_2010'), +('M05.37', 'Seropositive rheumatoid arthritis with involvement of other organs and system, ankle and foot', 'ICD10_2010'), +('M05.38', 'Seropositive rheumatoid arthritis with involvement of other organs and system, other sites', 'ICD10_2010'), +('M05.39', 'Seropositive rheumatoid arthritis with involvement of other organs and system, unspecified site', 'ICD10_2010'), +('M05.8', 'Other seropositive rheumatoid arthritis', 'ICD10_2010'), +('M05.80', 'Other seropositive rheumatoid arthritis, multiple sites', 'ICD10_2010'), +('M05.81', 'Other seropositive rheumatoid arthritis, shoulder region', 'ICD10_2010'), +('M05.82', 'Other seropositive rheumatoid arthritis, upper arm', 'ICD10_2010'), +('M05.83', 'Other seropositive rheumatoid arthritis, forearm', 'ICD10_2010'), +('M05.84', 'Other seropositive rheumatoid arthritis, hand', 'ICD10_2010'), +('M05.85', 'Other seropositive rheumatoid arthritis, pelvic and thigh', 'ICD10_2010'), +('M05.86', 'Other seropositive rheumatoid arthritis, lower leg', 'ICD10_2010'), +('M05.87', 'Other seropositive rheumatoid arthritis, ankle and foot', 'ICD10_2010'), +('M05.88', 'Other seropositive rheumatoid arthritis, other sites', 'ICD10_2010'), +('M05.89', 'Other seropositive rheumatoid arthritis, unspecified site', 'ICD10_2010'), +('M05.9', 'Seropositive rheumatoid arthritis, unspecified', 'ICD10_2010'), +('M05.90', 'Seropositive rheumatoid arthritis, unspecified, multiple sites', 'ICD10_2010'), +('M05.91', 'Seropositive rheumatoid arthritis, unspecified, shoulder region', 'ICD10_2010'), +('M05.92', 'Seropositive rheumatoid arthritis, unspecified, upper arm', 'ICD10_2010'), +('M05.93', 'Seropositive rheumatoid arthritis, unspecified, forearm', 'ICD10_2010'), +('M05.94', 'Seropositive rheumatoid arthritis, unspecified, hand', 'ICD10_2010'), +('M05.95', 'Seropositive rheumatoid arthritis, unspecified, pelvic and thigh', 'ICD10_2010'), +('M05.96', 'Seropositive rheumatoid arthritis, unspecified, lower leg', 'ICD10_2010'), +('M05.97', 'Seropositive rheumatoid arthritis, unspecified, ankle and foot', 'ICD10_2010'), +('M05.98', 'Seropositive rheumatoid arthritis, unspecified, other sites', 'ICD10_2010'), +('M05.99', 'Seropositive rheumatoid arthritis, unspecified, unspecified site', 'ICD10_2010'), +('M06', 'Other rheumatoid arthritis', 'ICD10_2010'), +('M06.0', 'Seronegative rheumatoid arthritis', 'ICD10_2010'), +('M06.00', 'Seronegative rheumatoid arthritis, multiple sites', 'ICD10_2010'), +('M06.01', 'Seronegative rheumatoid arthritis, shoulder region', 'ICD10_2010'), +('M06.02', 'Seronegative rheumatoid arthritis, upper arm', 'ICD10_2010'), +('M06.03', 'Seronegative rheumatoid arthritis, forearm', 'ICD10_2010'), +('M06.04', 'Seronegative rheumatoid arthritis, hand', 'ICD10_2010'), +('M06.05', 'Seronegative rheumatoid arthritis, pelvic and thigh', 'ICD10_2010'), +('M06.06', 'Seronegative rheumatoid arthritis, lower leg', 'ICD10_2010'), +('M06.07', 'Seronegative rheumatoid arthritis, ankle and foot', 'ICD10_2010'), +('M06.08', 'Seronegative rheumatoid arthritis, other sites', 'ICD10_2010'), +('M06.09', 'Seronegative rheumatoid arthritis, unspecified site', 'ICD10_2010'), +('M06.1', 'Adult-onset still\'s disease', 'ICD10_2010'), +('M06.10', 'Adult-onset still\'s disease, multiple sites', 'ICD10_2010'), +('M06.11', 'Adult-onset still\'s disease, shoulder region', 'ICD10_2010'), +('M06.12', 'Adult-onset still\'s disease, upper arm', 'ICD10_2010'), +('M06.13', 'Adult-onset still\'s disease, forearm', 'ICD10_2010'), +('M06.14', 'Adult-onset still\'s disease, hand', 'ICD10_2010'), +('M06.15', 'Adult-onset still\'s disease, pelvic and thigh', 'ICD10_2010'), +('M06.16', 'Adult-onset still\'s disease, lower leg', 'ICD10_2010'), +('M06.17', 'Adult-onset still\'s disease, ankle and foot', 'ICD10_2010'), +('M06.18', 'Adult-onset still\'s disease, other sites', 'ICD10_2010'), +('M06.19', 'Adult-onset still\'s disease, unspecified site', 'ICD10_2010'), +('M06.2', 'Rheumatoid bursitis', 'ICD10_2010'), +('M06.20', 'Rheumatoid bursitis, multiple sites', 'ICD10_2010'), +('M06.21', 'Rheumatoid bursitis, shoulder region', 'ICD10_2010'), +('M06.22', 'Rheumatoid bursitis, upper arm', 'ICD10_2010'), +('M06.23', 'Rheumatoid bursitis, forearm', 'ICD10_2010'), +('M06.24', 'Rheumatoid bursitis, hand', 'ICD10_2010'), +('M06.25', 'Rheumatoid bursitis, pelvic and thigh', 'ICD10_2010'), +('M06.26', 'Rheumatoid bursitis, lower leg', 'ICD10_2010'), +('M06.27', 'Rheumatoid bursitis, ankle and foot', 'ICD10_2010'), +('M06.28', 'Rheumatoid bursitis, other sites', 'ICD10_2010'), +('M06.29', 'Rheumatoid bursitis, unspecified site', 'ICD10_2010'), +('M06.3', 'Rheumatoid nodule', 'ICD10_2010'), +('M06.30', 'Rheumatoid nodule, multiple sites', 'ICD10_2010'), +('M06.31', 'Rheumatoid nodule, shoulder region', 'ICD10_2010'), +('M06.32', 'Rheumatoid nodule, upper arm', 'ICD10_2010'), +('M06.33', 'Rheumatoid nodule, forearm', 'ICD10_2010'), +('M06.34', 'Rheumatoid nodule, hand', 'ICD10_2010'), +('M06.35', 'Rheumatoid nodule, pelvic and thigh', 'ICD10_2010'), +('M06.36', 'Rheumatoid nodule, lower leg', 'ICD10_2010'), +('M06.37', 'Rheumatoid nodule, ankle and foot', 'ICD10_2010'), +('M06.38', 'Rheumatoid nodule, other sites', 'ICD10_2010'), +('M06.39', 'Rheumatoid nodule, unspecified site', 'ICD10_2010'), +('M06.4', 'Inflammatory polyarthropathy', 'ICD10_2010'), +('M06.40', 'Inflammatory polyarthropathy, multiple sites', 'ICD10_2010'), +('M06.41', 'Inflammatory polyarthropathy, shoulder region', 'ICD10_2010'), +('M06.42', 'Inflammatory polyarthropathy, upper arm', 'ICD10_2010'), +('M06.43', 'Inflammatory polyarthropathy, forearm', 'ICD10_2010'), +('M06.44', 'Inflammatory polyarthropathy, hand', 'ICD10_2010'), +('M06.45', 'Inflammatory polyarthropathy, pelvic and thigh', 'ICD10_2010'), +('M06.46', 'Inflammatory polyarthropathy, lower leg', 'ICD10_2010'), +('M06.47', 'Inflammatory polyarthropathy, ankle and foot', 'ICD10_2010'), +('M06.48', 'Inflammatory polyarthropathy, other sites', 'ICD10_2010'), +('M06.49', 'Inflammatory polyarthropathy, unspecified site', 'ICD10_2010'), +('M06.8', 'Other specified rheumatoid arthritis', 'ICD10_2010'), +('M06.80', 'Other specified rheumatoid arthritis, multiple sites', 'ICD10_2010'), +('M06.81', 'Other specified rheumatoid arthritis, shoulder region', 'ICD10_2010'), +('M06.82', 'Other specified rheumatoid arthritis, upper arm', 'ICD10_2010'), +('M06.83', 'Other specified rheumatoid arthritis, forearm', 'ICD10_2010'), +('M06.84', 'Other specified rheumatoid arthritis, hand', 'ICD10_2010'), +('M06.85', 'Other specified rheumatoid arthritis, pelvic and thigh', 'ICD10_2010'), +('M06.86', 'Other specified rheumatoid arthritis, lower leg', 'ICD10_2010'), +('M06.87', 'Other specified rheumatoid arthritis, ankle and foot', 'ICD10_2010'), +('M06.88', 'Other specified rheumatoid arthritis, other sites', 'ICD10_2010'), +('M06.89', 'Other specified rheumatoid arthritis, unspecified site', 'ICD10_2010'), +('M06.9', 'Rheumatoid arthritis, unspecified', 'ICD10_2010'), +('M06.90', 'Rheumatoid arthritis, unspecified, multiple sites', 'ICD10_2010'), +('M06.91', 'Rheumatoid arthritis, unspecified, shoulder region', 'ICD10_2010'), +('M06.92', 'Rheumatoid arthritis, unspecified, upper arm', 'ICD10_2010'), +('M06.93', 'Rheumatoid arthritis, unspecified, forearm', 'ICD10_2010'), +('M06.94', 'Rheumatoid arthritis, unspecified, hand', 'ICD10_2010'), +('M06.95', 'Rheumatoid arthritis, unspecified, pelvic and thigh', 'ICD10_2010'), +('M06.96', 'Rheumatoid arthritis, unspecified, lower leg', 'ICD10_2010'), +('M06.97', 'Rheumatoid arthritis, unspecified, ankle and foot', 'ICD10_2010'), +('M06.98', 'Rheumatoid arthritis, unspecified, other sites', 'ICD10_2010'), +('M06.99', 'Rheumatoid arthritis, unspecified, unspecified site', 'ICD10_2010'), +('M07', 'Psoriatic and enteropathic arthropathies', 'ICD10_2010'), +('M07.0', 'Distal interphalangeal proriatic arthropathy', 'ICD10_2010'), +('M07.00', 'Distal interphalangeal psoriatic arthropathy, multiple sites', 'ICD10_2010'), +('M07.04', 'Distal interphalangeal psoriatic arthropathy, hand', 'ICD10_2010'), +('M07.07', 'Distal interphalangeal psoriatic arthropathy, ankle and foot', 'ICD10_2010'), +('M07.09', 'Distal interphalangeal psoriatic arthropathy, site unspecified', 'ICD10_2010'), +('M07.1', 'Arthritis mutilans', 'ICD10_2010'), +('M07.10', 'Arthritis mutilans, multiple sites', 'ICD10_2010'), +('M07.11', 'Arthritis mutilans, shoulder region', 'ICD10_2010'), +('M07.12', 'Arthritis mutilans, upper arm', 'ICD10_2010'), +('M07.13', 'Arthritis mutilans, forearm', 'ICD10_2010'), +('M07.14', 'Arthritis mutilans, hand', 'ICD10_2010'), +('M07.15', 'Arthritis mutilans, pelvic and thigh', 'ICD10_2010'), +('M07.16', 'Arthritis mutilans, lower leg', 'ICD10_2010'), +('M07.17', 'Arthritis mutilans, ankle and foot', 'ICD10_2010'), +('M07.18', 'Arthritis mutilans, other sites', 'ICD10_2010'), +('M07.19', 'Arthritis mutilans, unspecified site', 'ICD10_2010'), +('M07.2', 'Psoriatic spondylitis', 'ICD10_2010'), +('M07.3', 'Other psoriatic arthropathies', 'ICD10_2010'), +('M07.30', 'Other psoriatic arthropathies, multiple sites', 'ICD10_2010'), +('M07.31', 'Other psoriatic arthropathies, sholder region', 'ICD10_2010'), +('M07.32', 'Other psoriatic arthropathies, upper arm', 'ICD10_2010'), +('M07.33', 'Other psoriatic arthropathies, forearm', 'ICD10_2010'), +('M07.34', 'Other psoriatic arthropathies, hand', 'ICD10_2010'), +('M07.35', 'Other psoriatic arthropathies, pelvic and thigh', 'ICD10_2010'), +('M07.36', 'Other psoriatic arthropathies, lower leg', 'ICD10_2010'), +('M07.37', 'Other psoriatic arthropathies, ankle and foot', 'ICD10_2010'), +('M07.38', 'Other psoriatic arthropathies, other sites', 'ICD10_2010'), +('M07.39', 'Other psoriatic arthropathies, unspecified site', 'ICD10_2010'), +('M07.4', 'Arthropathy in crohn\'s disease [regional enteritis]', 'ICD10_2010'), +('M07.40', 'Arthropathy in crohn\'s disease [regional enteritis], multiple sites', 'ICD10_2010'), +('M07.41', 'Arthropathy in crohn\'s disease [regional enteritis], shoulder region', 'ICD10_2010'), +('M07.42', 'Arthropathy in crohn\'s disease [regional enteritis], upper arm', 'ICD10_2010'), +('M07.43', 'Arthropathy in crohn\'s disease [regional enteritis], forearm', 'ICD10_2010'), +('M07.44', 'Arthropathy in crohn\'s disease [regional enteritis], hand', 'ICD10_2010'), +('M07.45', 'Arthropathy in crohn\'s disease [regional enteritis], pelvic and thigh', 'ICD10_2010'), +('M07.46', 'Arthropathy in crohn\'s disease [regional enteritis], lower leg', 'ICD10_2010'), +('M07.47', 'Arthropathy in crohn\'s disease [regional enteritis], ankle and foot', 'ICD10_2010'), +('M07.48', 'Arthropathy in crohn\'s disease [regional enteritis], other sites', 'ICD10_2010'), +('M07.49', 'Arthropathy in crohn\'s disease [regional enteritis], unspecified site', 'ICD10_2010'), +('M07.5', 'Arthropathy in ulcerative colitis', 'ICD10_2010'), +('M07.50', 'Arthropathy in ulcerative colitis, multiple sites', 'ICD10_2010'), +('M07.51', 'Arthropathy in ulcerative colitis, shoulder region', 'ICD10_2010'), +('M07.52', 'Arthropathy in ulcerative colitis, upper arm', 'ICD10_2010'), +('M07.53', 'Arthropathy in ulcerative colitis, forearm', 'ICD10_2010'), +('M07.54', 'Arthropathy in ulcerative colitis, hand', 'ICD10_2010'), +('M07.55', 'Arthropathy in ulcerative colitis, pelvic and thigh', 'ICD10_2010'), +('M07.56', 'Arthropathy in ulcerative colitis, lower leg', 'ICD10_2010'), +('M07.57', 'Arthropathy in ulcerative colitis, ankle and foot', 'ICD10_2010'), +('M07.58', 'Arthropathy in ulcerative colitis, other sites', 'ICD10_2010'), +('M07.59', 'Arthropathy in ulcerative colitis, unspecified site', 'ICD10_2010'), +('M07.6', 'Other enteropathic arthropathies', 'ICD10_2010'), +('M07.60', 'Other enteropathic arthropathies, multiple sites', 'ICD10_2010'), +('M07.61', 'Other enteropathic arthropathies, shoulder region', 'ICD10_2010'), +('M07.62', 'Other enteropathic arthropathies, upper arm', 'ICD10_2010'), +('M07.63', 'Other enteropathic arthropathies, forearm', 'ICD10_2010'), +('M07.64', 'Other enteropathic arthropathies, hand', 'ICD10_2010'), +('M07.65', 'Other enteropathic arthropathies, pelvic and thigh', 'ICD10_2010'), +('M07.66', 'Other enteropathic arthropathies, lower leg', 'ICD10_2010'), +('M07.67', 'Other enteropathic arthropathies, ankle and foot', 'ICD10_2010'), +('M07.68', 'Other enteropathic arthropathies, other sites', 'ICD10_2010'), +('M07.69', 'Other enteropathic arthropathies, unspecified site', 'ICD10_2010'), +('M08', 'Juvenile arthritis', 'ICD10_2010'), +('M08.0', 'Juvenile rheumatoid arthritis', 'ICD10_2010'), +('M08.00', 'Juvenile rheumatoid arthritis, multiple sites', 'ICD10_2010'), +('M08.01', 'Juvenile rheumatoid arthritis, shoulder region', 'ICD10_2010'), +('M08.02', 'Juvenile rheumatoid arthritis, upper arm', 'ICD10_2010'), +('M08.03', 'Juvenile rheumatoid arthritis, forearm', 'ICD10_2010'), +('M08.04', 'Juvenile rheumatoid arthritis, hand', 'ICD10_2010'), +('M08.05', 'Juvenile rheumatoid arthritis, pelvic and thigh', 'ICD10_2010'), +('M08.06', 'Juvenile rheumatoid arthritis, lower leg', 'ICD10_2010'), +('M08.07', 'Juvenile rheumatoid arthritis, ankle and foot', 'ICD10_2010'), +('M08.08', 'Juvenile rheumatoid arthritis, other sites', 'ICD10_2010'), +('M08.09', 'Juvenile rheumatoid arthritis, unspecified site', 'ICD10_2010'), +('M08.1', 'Juvenile ankylosing spondylitis', 'ICD10_2010'), +('M08.10', 'Juvenile ankylosing spondylitis, multiple sites', 'ICD10_2010'), +('M08.11', 'Juvenile ankylosing spondylitis, shouder region', 'ICD10_2010'), +('M08.12', 'Juvenile ankylosing spondylitis, upper arm', 'ICD10_2010'), +('M08.13', 'Juvenile ankylosing spondylitis, forearm', 'ICD10_2010'), +('M08.14', 'Juvenile ankylosing spondylitis, hand', 'ICD10_2010'), +('M08.15', 'Juvenile ankylosing spondylitis, pelvic and thigh', 'ICD10_2010'), +('M08.16', 'Juvenile ankylosing spondylitis, lower leg', 'ICD10_2010'), +('M08.17', 'Juvenile ankylosing spondylitis, ankle and foot', 'ICD10_2010'), +('M08.18', 'Juvenile ankylosing spondylitis, other sites', 'ICD10_2010'), +('M08.19', 'Juvenile ankylosing spondylitis, unspecified site', 'ICD10_2010'), +('M08.2', 'Juvenile arthritis with systemic onset', 'ICD10_2010'), +('M08.20', 'Juvenile arthritis with systemic onset, multiple sites', 'ICD10_2010'), +('M08.21', 'Juvenile arthritis with systemic onset, shoulder region', 'ICD10_2010'), +('M08.22', 'Juvenile arthritis with systemic onset, upper arm', 'ICD10_2010'), +('M08.23', 'Juvenile arthritis with systemic onset, forearm', 'ICD10_2010'), +('M08.24', 'Juvenile arthritis with systemic onset, hand', 'ICD10_2010'), +('M08.25', 'Juvenile arthritis with systemic onset, pelvic and thigh', 'ICD10_2010'), +('M08.26', 'Juvenile arthritis with systemic onset, lower leg', 'ICD10_2010'), +('M08.27', 'Juvenile arthritis with systemic onset, ankle and foot', 'ICD10_2010'), +('M08.28', 'Juvenile arthritis with systemic onset, other sites', 'ICD10_2010'), +('M08.29', 'Juvenile arthritis with systemic onset, unspecified site', 'ICD10_2010'), +('M08.3', 'Juvenile polyarthritis (seronegative)', 'ICD10_2010'), +('M08.30', 'Juvenile polyarthritis (seronegative), multiple sites', 'ICD10_2010'), +('M08.31', 'Juvenile polyarthritis (seronegative), shoulder region', 'ICD10_2010'), +('M08.32', 'Juvenile polyarthritis (seronegative), upper arm', 'ICD10_2010'), +('M08.33', 'Juvenile polyarthritis (seronegative), forearm', 'ICD10_2010'), +('M08.34', 'Juvenile polyarthritis (seronegative), hand', 'ICD10_2010'), +('M08.35', 'Juvenile polyarthritis (seronegative), pelvic and thigh', 'ICD10_2010'), +('M08.36', 'Juvenile polyarthritis (seronegative), lower leg', 'ICD10_2010'), +('M08.37', 'Juvenile polyarthritis (seronegative), ankle and foot', 'ICD10_2010'), +('M08.38', 'Juvenile polyarthritis (seronegative), other sites', 'ICD10_2010'), +('M08.39', 'Juvenile polyarthritis (seronegative), unspecified site', 'ICD10_2010'), +('M08.4', 'Pauciarticular juvenile arthritis', 'ICD10_2010'), +('M08.40', 'Pauciarticular juvenile arthritis, multiple sites', 'ICD10_2010'), +('M08.41', 'Pauciarticular juvenile arthritis, shoulder region', 'ICD10_2010'), +('M08.42', 'Pauciarticular juvenile arthritis, upper arm', 'ICD10_2010'), +('M08.43', 'Pauciarticular juvenile arthritis, forearm', 'ICD10_2010'), +('M08.44', 'Pauciarticular juvenile arthritis, hand', 'ICD10_2010'), +('M08.45', 'Pauciarticular juvenile arthritis, pelvica and thigh', 'ICD10_2010'), +('M08.46', 'Pauciarticular juvenile arthritis, lower leg', 'ICD10_2010'), +('M08.47', 'Pauciarticular juvenile arthritis, ankle and foot', 'ICD10_2010'), +('M08.48', 'Pauciarticular juvenile arthritis, other sites', 'ICD10_2010'), +('M08.49', 'Pauciarticular juvenile arthritis, unspecified site', 'ICD10_2010'), +('M08.8', 'Other juvenile arthritis', 'ICD10_2010'), +('M08.80', 'Other juvenile arthritis, multiple sites', 'ICD10_2010'), +('M08.81', 'Other juvenile arthritis, shoulder region', 'ICD10_2010'), +('M08.82', 'Other juvenile arthritis, upper arm', 'ICD10_2010'), +('M08.83', 'Other juvenile arthritis, forearm', 'ICD10_2010'), +('M08.84', 'Other juvenile arthritis, hand', 'ICD10_2010'), +('M08.85', 'Other juvenile arthritis, pelvic and thigh', 'ICD10_2010'), +('M08.86', 'Other juvenile arthritis, lower leg', 'ICD10_2010'), +('M08.87', 'Other juvenile arthritis, ankle and foot', 'ICD10_2010'), +('M08.88', 'Other juvenile arthritis, other sites', 'ICD10_2010'), +('M08.89', 'Other juvenile arthritis, unspecified site', 'ICD10_2010'), +('M08.9', 'Juvenile arthritis, unspecified', 'ICD10_2010'), +('M08.90', 'Juvenile arthritis, unspecified, multiple sites', 'ICD10_2010'), +('M08.91', 'Juvenile arthritis, unspecified, shoulder region', 'ICD10_2010'), +('M08.92', 'Juvenile arthritis, unspecified, upper arm', 'ICD10_2010'), +('M08.93', 'Juvenile arthritis, unspecified, forearm', 'ICD10_2010'), +('M08.94', 'Juvenile arthritis, unspecified, hand', 'ICD10_2010'), +('M08.95', 'Juvenile arthritis, unspecified, pelvic and thigh', 'ICD10_2010'), +('M08.96', 'Juvenile arthritis, unspecified, lower leg', 'ICD10_2010'), +('M08.97', 'Juvenile arthritis, unspecified, ankle and foot', 'ICD10_2010'), +('M08.98', 'Juvenile arthritis, unspecified, other sites', 'ICD10_2010'), +('M08.99', 'Juvenile arthritis, unspecified, unspecified site', 'ICD10_2010'), +('M09', 'Juvenile arthritis in diseases classified elsewhere', 'ICD10_2010'), +('M09.0', 'Juvenile arthritis in psoriasis', 'ICD10_2010'), +('M09.00', 'Juvenile arthritis in psoriasis, multiple sites', 'ICD10_2010'), +('M09.01', 'Juvenile arthritis in psoriasis, shoulder region', 'ICD10_2010'), +('M09.02', 'Juvenile arthritis in psoriasis, upper arm', 'ICD10_2010'), +('M09.03', 'Juvenile arthritis in psoriasis, forearm', 'ICD10_2010'), +('M09.04', 'Juvenile arthritis in psoriasis, hand', 'ICD10_2010'), +('M09.05', 'Juvenile arthritis in psoriasis, pelvic and thigh', 'ICD10_2010'), +('M09.06', 'Juvenile arthritis in psoriasis, lower leg', 'ICD10_2010'), +('M09.07', 'Juvenile arthritis in psoriasis, ankle and foot', 'ICD10_2010'), +('M09.08', 'Juvenile arthritis in psoriasis, other sites', 'ICD10_2010'), +('M09.09', 'Juvenile arthritis in psoriasis, unspecified site', 'ICD10_2010'), +('M09.1', 'Juvenile arthritis in crohn\'s disease [regional enteritis]', 'ICD10_2010'), +('M09.10', 'Juvenile arthritis in crohn\'s disease [regional enteritis], multiple sites', 'ICD10_2010'), +('M09.11', 'Juvenile arthritis in crohn\'s disease [regional enteritis], shoulder region', 'ICD10_2010'), +('M09.12', 'Juvenile arthritis in crohn\'s disease [regional enteritis], upper arm', 'ICD10_2010'), +('M09.13', 'Juvenile arthritis in crohn\'s disease [regional enteritis], forearm', 'ICD10_2010'), +('M09.14', 'Juvenile arthritis in crohn\'s disease [regional enteritis], hand', 'ICD10_2010'), +('M09.15', 'Juvenile arthritis in crohn\'s disease [regional enteritis], pelvic and thigh', 'ICD10_2010'), +('M09.16', 'Juvenile arthritis in crohn\'s disease [regional enteritis], lower leg', 'ICD10_2010'), +('M09.17', 'Juvenile arthritis in crohn\'s disease [regional enteritis], ankle and foot', 'ICD10_2010'), +('M09.18', 'Juvenile arthritis in crohn\'s disease [regional enteritis], other sites', 'ICD10_2010'), +('M09.19', 'Juvenile arthritis in crohn\'s disease [regional enteritis], unspecified site', 'ICD10_2010'), +('M09.2', 'Juvenile arthritis in ulcerative colitis', 'ICD10_2010'), +('M09.20', 'Juvenile arthritis in ulcerative colitis, multiple sites', 'ICD10_2010'), +('M09.21', 'Juvenile arthritis in ulcerative colitis, shoulder region', 'ICD10_2010'), +('M09.22', 'Juvenile arthritis in ulcerative colitis, upper arm', 'ICD10_2010'), +('M09.23', 'Juvenile arthritis in ulcerative colitis, forearm', 'ICD10_2010'), +('M09.24', 'Juvenile arthritis in ulcerative colitis, hand', 'ICD10_2010'), +('M09.25', 'Juvenile arthritis in ulcerative colitis, pelvic and thigh', 'ICD10_2010'), +('M09.26', 'Juvenile arthritis in ulcerative colitis, lower leg', 'ICD10_2010'), +('M09.27', 'Juvenile arthritis in ulcerative colitis, ankle and foot', 'ICD10_2010'), +('M09.28', 'Juvenile arthritis in ulcerative colitis, other sites', 'ICD10_2010'), +('M09.29', 'Juvenile arthritis in ulcerative colitis, unspecified site', 'ICD10_2010'), +('M09.8', 'Juvenile arthritis in other diseases classified elsewhere', 'ICD10_2010'), +('M09.80', 'Juvenile arthritis in other diseases classified elsewhere, multiple sites', 'ICD10_2010'), +('M09.81', 'Juvenile arthritis in other diseases classified elsewhere, shoulder region', 'ICD10_2010'), +('M09.82', 'Juvenile arthritis in other diseases classified elsewhere, upper arm', 'ICD10_2010'), +('M09.83', 'Juvenile arthritis in other diseases classified elsewhere, forearm', 'ICD10_2010'), +('M09.84', 'Juvenile arthritis in other diseases classified elsewhere, hand', 'ICD10_2010'), +('M09.85', 'Juvenile arthritis in other diseases classified elsewhere, pelvic and thigh', 'ICD10_2010'), +('M09.86', 'Juvenile arthritis in other diseases classified elsewhere, lower leg', 'ICD10_2010'), +('M09.87', 'Juvenile arthritis in other diseases classified elsewhere, ankle and foot', 'ICD10_2010'), +('M09.88', 'Juvenile arthritis in other diseases classified elsewhere, other sites', 'ICD10_2010'), +('M09.89', 'Juvenile arthritis in other diseases classified elsewhere, unspecified site', 'ICD10_2010'), +('M10', 'Gout', 'ICD10_2010'), +('M10.0', 'Idiopathic gout', 'ICD10_2010'), +('M10.00', 'Idiopathic gout, multiple sites', 'ICD10_2010'), +('M10.01', 'Idiopathic gout, shoulder region', 'ICD10_2010'), +('M10.02', 'Idiopathic gout, upper arm', 'ICD10_2010'), +('M10.03', 'Idiopathic gout, forearm', 'ICD10_2010'), +('M10.04', 'Idiopathic gout, hand', 'ICD10_2010'), +('M10.05', 'Idiopathic gout, pelvic and thigh', 'ICD10_2010'), +('M10.06', 'Idiopathic gout, lower leg', 'ICD10_2010'), +('M10.07', 'Idiopathic gout, ankle and foot', 'ICD10_2010'), +('M10.08', 'Idiopathic gout, other sites', 'ICD10_2010'), +('M10.09', 'Idiopathic gout, unspecified site', 'ICD10_2010'), +('M10.1', 'Lead-induced gout', 'ICD10_2010'), +('M10.10', 'Lead-induced gout, multiple sites', 'ICD10_2010'), +('M10.11', 'Lead-induced gout, shoulder region', 'ICD10_2010'), +('M10.12', 'Lead-induced gout, upper arm', 'ICD10_2010'), +('M10.13', 'Lead-induced gout, forearm', 'ICD10_2010'), +('M10.14', 'Lead-induced gout, hand', 'ICD10_2010'), +('M10.15', 'Lead-induced gout, pelvic and thigh', 'ICD10_2010'), +('M10.16', 'Lead-induced gout, lower leg', 'ICD10_2010'), +('M10.17', 'Lead-induced gout, ankle and foot', 'ICD10_2010'), +('M10.18', 'Lead-induced gout, other sites', 'ICD10_2010'), +('M10.19', 'Lead-induced gout, unspecified site', 'ICD10_2010'), +('M10.2', 'Drug-induced gout', 'ICD10_2010'), +('M10.20', 'Drug-induced gout, multiple sites', 'ICD10_2010'), +('M10.21', 'Drug-induced gout, shoulder region', 'ICD10_2010'), +('M10.22', 'Drug-induced gout, upper arm', 'ICD10_2010'), +('M10.23', 'Drug-induced gout, forearm', 'ICD10_2010'), +('M10.24', 'Drug-induced gout, hand', 'ICD10_2010'), +('M10.25', 'Drug-induced gout, pelvic and thigh', 'ICD10_2010'), +('M10.26', 'Drug-induced gout, lower leg', 'ICD10_2010'), +('M10.27', 'Drug-induced gout, ankle and foot', 'ICD10_2010'), +('M10.28', 'Drug-induced gout, other sites', 'ICD10_2010'), +('M10.29', 'Drug-induced gout, unspecified site', 'ICD10_2010'), +('M10.3', 'Gout due to impairment of renal function', 'ICD10_2010'), +('M10.30', 'Gout due to impairment of renal function, multiple sites', 'ICD10_2010'), +('M10.31', 'Gout due to impairment of renal function, shoulder region', 'ICD10_2010'), +('M10.32', 'Gout due to impairment of renal function, upper arm', 'ICD10_2010'), +('M10.33', 'Gout due to impairment of renal function, forearm', 'ICD10_2010'), +('M10.34', 'Gout due to impairment of renal function, hand', 'ICD10_2010'), +('M10.35', 'Gout due to impairment of renal function, pelvic and thigh', 'ICD10_2010'), +('M10.36', 'Gout due to impairment of renal function, lower leg', 'ICD10_2010'), +('M10.37', 'Gout due to impairment of renal function, ankle and foot', 'ICD10_2010'), +('M10.38', 'Gout due to impairment of renal function, other sites', 'ICD10_2010'), +('M10.39', 'Gout due to impairment of renal function, unspecified site', 'ICD10_2010'), +('M10.4', 'Other secondary gout', 'ICD10_2010'), +('M10.40', 'Other secondary gout, multiple sites', 'ICD10_2010'), +('M10.41', 'Other secondary gout, shoulder region', 'ICD10_2010'), +('M10.42', 'Other secondary gout, upper arm', 'ICD10_2010'), +('M10.43', 'Other secondary gout, forearm', 'ICD10_2010'), +('M10.44', 'Other secondary gout, hand', 'ICD10_2010'), +('M10.45', 'Other secondary gout, pelvic and thigh', 'ICD10_2010'), +('M10.46', 'Other secondary gout, lower leg', 'ICD10_2010'), +('M10.47', 'Other secondary gout, ankle and foot', 'ICD10_2010'), +('M10.48', 'Other secondary gout, other sites', 'ICD10_2010'), +('M10.49', 'Other secondary gout, unspecified site', 'ICD10_2010'), +('M10.9', 'Gout, unspecified', 'ICD10_2010'), +('M10.90', 'Gout, unspecified, multiple sites', 'ICD10_2010'), +('M10.91', 'Gout, unspecified, shoulder region', 'ICD10_2010'), +('M10.92', 'Gout, unspecified, upper arm', 'ICD10_2010'), +('M10.93', 'Gout, unspecified, forearm', 'ICD10_2010'), +('M10.94', 'Gout, unspecified, hand', 'ICD10_2010'), +('M10.95', 'Gout, unspecified, pelvic and thigh', 'ICD10_2010'), +('M10.96', 'Gout, unspecified, lower leg', 'ICD10_2010'), +('M10.97', 'Gout, unspecified, ankle and foot', 'ICD10_2010'), +('M10.98', 'Gout, unspecified, other sites', 'ICD10_2010'), +('M10.99', 'Gout, unspecified, unspecified site', 'ICD10_2010'), +('M11', 'Other crystal arthropathies', 'ICD10_2010'), +('M11.0', 'Hydroxyapatite deposition disease', 'ICD10_2010'), +('M11.00', 'Hydroxyapatite deposition disease, multiple sites', 'ICD10_2010'), +('M11.01', 'Hydroxyapatite deposition disease, shoulder region', 'ICD10_2010'), +('M11.02', 'Hydroxyapatite deposition disease, upper arm', 'ICD10_2010'), +('M11.03', 'Hydroxyapatite deposition disease, forearm', 'ICD10_2010'), +('M11.04', 'Hydroxyapatite deposition disease, hand', 'ICD10_2010'), +('M11.05', 'Hydroxyapatite deposition disease, pelvic and thigh', 'ICD10_2010'), +('M11.06', 'Hydroxyapatite deposition disease, lower leg', 'ICD10_2010'), +('M11.07', 'Hydroxyapatite deposition disease, ankle and foot', 'ICD10_2010'), +('M11.08', 'Hydroxyapatite deposition disease, other sites', 'ICD10_2010'), +('M11.09', 'Hydroxyapatite deposition disease, unspecified site', 'ICD10_2010'), +('M11.1', 'Familial chondrocalcinosis', 'ICD10_2010'), +('M11.10', 'Familial chondrocalcinosis, multiple sites', 'ICD10_2010'), +('M11.11', 'Familial chondrocalcinosis, shoulder region', 'ICD10_2010'), +('M11.12', 'Familial chondrocalcinosis, upper arm', 'ICD10_2010'), +('M11.13', 'Familial chondrocalcinosis, forearm', 'ICD10_2010'), +('M11.14', 'Familial chondrocalcinosis, hand', 'ICD10_2010'), +('M11.15', 'Familial chondrocalcinosis, pelvic and thigh', 'ICD10_2010'), +('M11.16', 'Familial chondrocalcinosis, lower leg', 'ICD10_2010'), +('M11.17', 'Familial chondrocalcinosis, ankle and foot', 'ICD10_2010'), +('M11.18', 'Familial chondrocalcinosis, other sites', 'ICD10_2010'), +('M11.19', 'Familial chondrocalcinosis, unspecified site', 'ICD10_2010'), +('M11.2', 'Other chondrocalcinosis', 'ICD10_2010'), +('M11.20', 'Other chondrocalcinosis, multiple sites', 'ICD10_2010'), +('M11.21', 'Other chondrocalcinosis, shoulder region', 'ICD10_2010'), +('M11.22', 'Other chondrocalcinosis, upper arm', 'ICD10_2010'), +('M11.23', 'Other chondrocalcinosis, forearm', 'ICD10_2010'), +('M11.24', 'Other chondrocalcinosis, hand', 'ICD10_2010'), +('M11.25', 'Other chondrocalcinosis, pelvic and thigh', 'ICD10_2010'), +('M11.26', 'Other chondrocalcinosis, lower leg', 'ICD10_2010'), +('M11.27', 'Other chondrocalcinosis, ankle and foot', 'ICD10_2010'), +('M11.28', 'Other chondrocalcinosis, other sites', 'ICD10_2010'), +('M11.29', 'Other chondrocalcinosis, unspecified site', 'ICD10_2010'), +('M11.8', 'Other specified crystal arthropathies', 'ICD10_2010'), +('M11.80', 'Other specified crystal arthropathies, multiple sites', 'ICD10_2010'), +('M11.81', 'Other specified crystal arthropathies, shoulder region', 'ICD10_2010'), +('M11.82', 'Other specified crystal arthropathies, upper arm', 'ICD10_2010'), +('M11.83', 'Other specified crystal arthropathies, forearm', 'ICD10_2010'), +('M11.84', 'Other specified crystal arthropathies, hand', 'ICD10_2010'), +('M11.85', 'Other specified crystal arthropathies, pelvic and thigh', 'ICD10_2010'), +('M11.86', 'Other specified crystal arthropathies, lower leg', 'ICD10_2010'), +('M11.87', 'Other specified crystal arthropathies, ankle and foot', 'ICD10_2010'), +('M11.88', 'Other specified crystal arthropathies, other sites', 'ICD10_2010'), +('M11.89', 'Other specified crystal arthropathies, unspecified site', 'ICD10_2010'), +('M11.9', 'Crystal arthropathy, unspecified', 'ICD10_2010'), +('M11.90', 'Crystal arthropathy, unspecified, multiple sites', 'ICD10_2010'), +('M11.91', 'Crystal arthropathy, unspecified, shoulder region', 'ICD10_2010'), +('M11.92', 'Crystal arthropathy, unspecified, upper arm', 'ICD10_2010'), +('M11.93', 'Crystal arthropathy, unspecified, forearm', 'ICD10_2010'), +('M11.94', 'Crystal arthropathy, unspecified, hand', 'ICD10_2010'), +('M11.95', 'Crystal arthropathy, unspecified, pelvic and thigh', 'ICD10_2010'), +('M11.96', 'Crystal arthropathy, unspecified, lower leg', 'ICD10_2010'), +('M11.97', 'Crystal arthropathy, unspecified, ankle and foot', 'ICD10_2010'), +('M11.98', 'Crystal arthropathy, unspecified, other sites', 'ICD10_2010'), +('M11.99', 'Crystal arthropathy, unspecified, unspecified site', 'ICD10_2010'), +('M12', 'Other specific arthropathies', 'ICD10_2010'), +('M12.0', 'Chronic postrheumatic arthropathy [jaccoud]', 'ICD10_2010'), +('M12.00', 'Chronic postrheumatic arthropathy [jaccoud], multiple sites', 'ICD10_2010'), +('M12.01', 'Chronic postrheumatic arthropathy [jaccoud], shoulder region', 'ICD10_2010'), +('M12.02', 'Chronic postrheumatic arthropathy [jaccoud], upper arm', 'ICD10_2010'), +('M12.03', 'Chronic postrheumatic arthropathy [jaccoud], forearm', 'ICD10_2010'), +('M12.04', 'Chronic postrheumatic arthropathy [jaccoud], hand', 'ICD10_2010'), +('M12.05', 'Chronic postrheumatic arthropathy [jaccoud], pelvic and thigh', 'ICD10_2010'), +('M12.06', 'Chronic postrheumatic arthropathy [jaccoud], lower leg', 'ICD10_2010'), +('M12.07', 'Chronic postrheumatic arthropathy [jaccoud], ankle and foot', 'ICD10_2010'), +('M12.08', 'Chronic postrheumatic arthropathy [jaccoud], other sites', 'ICD10_2010'), +('M12.09', 'Chronic postrheumatic arthropathy [jaccoud], unspecified site', 'ICD10_2010'), +('M12.1', 'Kaschin-beck disease', 'ICD10_2010'), +('M12.10', 'Kaschin-beck disease, multiple sites', 'ICD10_2010'), +('M12.11', 'Kaschin-beck disease, shoulder region', 'ICD10_2010'), +('M12.12', 'Kaschin-beck disease, upper arm', 'ICD10_2010'), +('M12.13', 'Kaschin-beck disease, forearm', 'ICD10_2010'), +('M12.14', 'Kaschin-beck disease, hand', 'ICD10_2010'), +('M12.15', 'Kaschin-beck disease, pelvic and thigh', 'ICD10_2010'), +('M12.16', 'Kaschin-beck disease, lower leg', 'ICD10_2010'), +('M12.17', 'Kaschin-beck disease, ankle and foot', 'ICD10_2010'), +('M12.18', 'Kaschin-beck disease, other sites', 'ICD10_2010'), +('M12.19', 'Kaschin-beck disease, unspecified site', 'ICD10_2010'), +('M12.2', 'Villonodular synovitis (pigmented)', 'ICD10_2010'), +('M12.20', 'Villonodular synovitis (pigmented), multiple sites', 'ICD10_2010'), +('M12.21', 'Villonodular synovitis (pigmented), shoulder region', 'ICD10_2010'), +('M12.22', 'Villonodular synovitis (pigmented), upper arm', 'ICD10_2010'), +('M12.23', 'Villonodular synovitis (pigmented), forearm', 'ICD10_2010'), +('M12.24', 'Villonodular synovitis (pigmented), hand', 'ICD10_2010'), +('M12.25', 'Villonodular synovitis (pigmented), pelvic and thigh', 'ICD10_2010'), +('M12.26', 'Villonodular synovitis (pigmented), lower leg', 'ICD10_2010'), +('M12.27', 'Villonodular synovitis (pigmented), ankle and foot', 'ICD10_2010'), +('M12.28', 'Villonodular synovitis (pigmented), other sites', 'ICD10_2010'), +('M12.29', 'Villonodular synovitis (pigmented), unspecified site', 'ICD10_2010'), +('M12.3', 'Palindromic rheumatism', 'ICD10_2010'), +('M12.30', 'Palindromic rheumatism, multiple sites', 'ICD10_2010'), +('M12.31', 'Palindromic rheumatism, shoulder region', 'ICD10_2010'), +('M12.32', 'Palindromic rheumatism, upper arm', 'ICD10_2010'), +('M12.33', 'Palindromic rheumatism, forearm', 'ICD10_2010'), +('M12.34', 'Palindromic rheumatism, hand', 'ICD10_2010'), +('M12.35', 'Palindromic rheumatism, pelvic and thigh', 'ICD10_2010'), +('M12.36', 'Palindromic rheumatism, lower leg', 'ICD10_2010'), +('M12.37', 'Palindromic rheumatism, ankle and foot', 'ICD10_2010'), +('M12.38', 'Palindromic rheumatism, other sites', 'ICD10_2010'), +('M12.39', 'Palindromic rheumatism, unspecified site', 'ICD10_2010'), +('M12.4', 'Intermittent hydrarthrosis', 'ICD10_2010'), +('M12.40', 'Intermittent hydrarthrosis, multiple sites', 'ICD10_2010'), +('M12.41', 'Intermittent hydrarthrosis, shoulder region', 'ICD10_2010'), +('M12.42', 'Intermittent hydrarthrosis, upper arm', 'ICD10_2010'); +INSERT INTO `icd10` (`ID_ICD10`, `Diagnosa`, `Versi_ICD10`) VALUES +('M12.43', 'Intermittent hydrarthrosis, forearm', 'ICD10_2010'), +('M12.44', 'Intermittent hydrarthrosis, hand', 'ICD10_2010'), +('M12.45', 'Intermittent hydrarthrosis, pelvic and thigh', 'ICD10_2010'), +('M12.46', 'Intermittent hydrarthrosis, lower leg', 'ICD10_2010'), +('M12.47', 'Intermittent hydrarthrosis, ankle and foot', 'ICD10_2010'), +('M12.48', 'Intermittent hydrarthrosis, other sites', 'ICD10_2010'), +('M12.49', 'Intermittent hydrarthrosis, unspecified site', 'ICD10_2010'), +('M12.5', 'Traumatic arthropathy', 'ICD10_2010'), +('M12.50', 'Traumatic arthropathy, multiple sites', 'ICD10_2010'), +('M12.51', 'Traumatic arthropathy, shoulder region', 'ICD10_2010'), +('M12.52', 'Traumatic arthropathy, upper arm', 'ICD10_2010'), +('M12.53', 'Traumatic arthropathy, forearm', 'ICD10_2010'), +('M12.54', 'Traumatic arthropathy, hand', 'ICD10_2010'), +('M12.55', 'Traumatic arthropathy, pelvic and thigh', 'ICD10_2010'), +('M12.56', 'Traumatic arthropathy, lower leg', 'ICD10_2010'), +('M12.57', 'Traumatic arthropathy, ankle and foot', 'ICD10_2010'), +('M12.58', 'Traumatic arthropathy, other sites', 'ICD10_2010'), +('M12.59', 'Traumatic arthropathy, unspecified site', 'ICD10_2010'), +('M12.8', 'Other specific arthropathies, not elsewhere classified', 'ICD10_2010'), +('M12.80', 'Other specific arthropathies, not elsewhere classified, multiple sites', 'ICD10_2010'), +('M12.81', 'Other specific arthropathies, not elsewhere classified, shoulder region', 'ICD10_2010'), +('M12.82', 'Other specific arthropathies, not elsewhere classified, upper arm', 'ICD10_2010'), +('M12.83', 'Other specific arthropathies, not elsewhere classified, forearm', 'ICD10_2010'), +('M12.84', 'Other specific arthropathies, not elsewhere classified, hand', 'ICD10_2010'), +('M12.85', 'Other specific arthropathies, not elsewhere classified, pelvic and thigh', 'ICD10_2010'), +('M12.86', 'Other specific arthropathies, not elsewhere classified, lower leg', 'ICD10_2010'), +('M12.87', 'Other specific arthropathies, not elsewhere classified, ankle and foot', 'ICD10_2010'), +('M12.88', 'Other specific arthropathies, not elsewhere classified, other sites', 'ICD10_2010'), +('M12.89', 'Other specific arthropathies, not elsewhere classified, unspecified site', 'ICD10_2010'), +('M13', 'Other arthritis', 'ICD10_2010'), +('M13.0', 'Polyarthritis, unspecified', 'ICD10_2010'), +('M13.00', 'Polyarthritis, unspecified, multiple sites', 'ICD10_2010'), +('M13.01', 'Polyarthritis, unspecified, shoulder region', 'ICD10_2010'), +('M13.02', 'Polyarthritis, unspecified, upper arm', 'ICD10_2010'), +('M13.03', 'Polyarthritis, unspecified, forearm', 'ICD10_2010'), +('M13.04', 'Polyarthritis, unspecified, hand', 'ICD10_2010'), +('M13.05', 'Polyarthritis, unspecified, pelvic and thigh', 'ICD10_2010'), +('M13.06', 'Polyarthritis, unspecified, lower leg', 'ICD10_2010'), +('M13.07', 'Polyarthritis, unspecified, ankle and foot', 'ICD10_2010'), +('M13.08', 'Polyarthritis, unspecified, other sites', 'ICD10_2010'), +('M13.09', 'Polyarthritis, unspecified, unspecified site', 'ICD10_2010'), +('M13.1', 'Monoarthritis, not elsewhere classified', 'ICD10_2010'), +('M13.10', 'Monoarthritis, not elsewhere classified, multiple sites', 'ICD10_2010'), +('M13.11', 'Monoarthritis, not elsewhere classified, shoulder region', 'ICD10_2010'), +('M13.12', 'Monoarthritis, not elsewhere classified, upper arm', 'ICD10_2010'), +('M13.13', 'Monoarthritis, not elsewhere classified, forearm', 'ICD10_2010'), +('M13.14', 'Monoarthritis, not elsewhere classified, hand', 'ICD10_2010'), +('M13.15', 'Monoarthritis, not elsewhere classified, pelvic and thigh', 'ICD10_2010'), +('M13.16', 'Monoarthritis, not elsewhere classified, lower leg', 'ICD10_2010'), +('M13.17', 'Monoarthritis, not elsewhere classified, ankle and foot', 'ICD10_2010'), +('M13.18', 'Monoarthritis, not elsewhere classified, other sites', 'ICD10_2010'), +('M13.19', 'Monoarthritis, not elsewhere classified, unspecified site', 'ICD10_2010'), +('M13.8', 'Other specified arthritis', 'ICD10_2010'), +('M13.80', 'Other specified arthritis, multiple sites', 'ICD10_2010'), +('M13.81', 'Other specified arthritis, shoulder region', 'ICD10_2010'), +('M13.82', 'Other specified arthritis, upper arm', 'ICD10_2010'), +('M13.83', 'Other specified arthritis, forearm', 'ICD10_2010'), +('M13.84', 'Other specified arthritis, hand', 'ICD10_2010'), +('M13.85', 'Other specified arthritis, pelvic and thigh', 'ICD10_2010'), +('M13.86', 'Other specified arthritis, lower leg', 'ICD10_2010'), +('M13.87', 'Other specified arthritis, ankle and foot', 'ICD10_2010'), +('M13.88', 'Other specified arthritis, other sites', 'ICD10_2010'), +('M13.89', 'Other specified arthritis, unspecified site', 'ICD10_2010'), +('M13.9', 'Arthritis, unspecified', 'ICD10_2010'), +('M13.90', 'Arthritis, unspecified, multiple sites', 'ICD10_2010'), +('M13.91', 'Arthritis, unspecified, shoulder region', 'ICD10_2010'), +('M13.92', 'Arthritis, unspecified, upper arm', 'ICD10_2010'), +('M13.93', 'Arthritis, unspecified, forearm', 'ICD10_2010'), +('M13.94', 'Arthritis, unspecified, hand', 'ICD10_2010'), +('M13.95', 'Arthritis, unspecified, pelvic and thigh', 'ICD10_2010'), +('M13.96', 'Arthritis, unspecified, lower leg', 'ICD10_2010'), +('M13.97', 'Arthritis, unspecified, ankle and foot', 'ICD10_2010'), +('M13.98', 'Arthritis, unspecified, other sites', 'ICD10_2010'), +('M13.99', 'Arthritis, unspecified, unspecified site', 'ICD10_2010'), +('M14', 'Arthropathies in other diseases classified elsewhere', 'ICD10_2010'), +('M14.0', 'Gouty arthropathy due to enzyme defects and other inherited disorders', 'ICD10_2010'), +('M14.1', 'Crystal arthropathy in other metabolic disorders', 'ICD10_2010'), +('M14.2', 'Diabetic arthropathy', 'ICD10_2010'), +('M14.3', 'Lipoid dermatoarthritis', 'ICD10_2010'), +('M14.4', 'Arthropathy in amylodosis', 'ICD10_2010'), +('M14.5', 'Arthropathies in other endocrine nutritional and metabolic disorders', 'ICD10_2010'), +('M14.6', 'Neuropathic arthropathy', 'ICD10_2010'), +('M14.8', 'Arthropathies in other specified diseases classified elsewhere', 'ICD10_2010'), +('M15', 'Polyarthrosis', 'ICD10_2010'), +('M15.0', 'Primary generalized (osteo)arthrosis', 'ICD10_2010'), +('M15.1', 'Heberden\'s nodes (with arthropathy)', 'ICD10_2010'), +('M15.2', 'Bouchard\'s nodes (with arthropathy)', 'ICD10_2010'), +('M15.3', 'Secondary multiple arthrosis', 'ICD10_2010'), +('M15.4', 'Erosive (osteo)arthrosis', 'ICD10_2010'), +('M15.8', 'Other polyarthrosis', 'ICD10_2010'), +('M15.9', 'Polyarthrosis, unspecified', 'ICD10_2010'), +('M16', 'Coxarthrosis [arthrosis of hip]', 'ICD10_2010'), +('M16.0', 'Primary coxarthrosis, bilateral', 'ICD10_2010'), +('M16.1', 'Other primary coxarthrosis', 'ICD10_2010'), +('M16.2', 'Coxarthrosis resulting from dysplasia, bilateral', 'ICD10_2010'), +('M16.3', 'Other dysplastic coxarthrosis', 'ICD10_2010'), +('M16.4', 'Post-traumatic coxarthrosis, bilateral', 'ICD10_2010'), +('M16.5', 'Other post-traumatic coxarthrosis', 'ICD10_2010'), +('M16.6', 'Other secondary coxarthrosis, bilateral', 'ICD10_2010'), +('M16.7', 'Other secondary coxarthrosis', 'ICD10_2010'), +('M16.9', 'Coxarthrosis, unspecified', 'ICD10_2010'), +('M17', 'Gonarthrosis [arthrosis of knee]', 'ICD10_2010'), +('M17.0', 'Primary gonarthrosis, bilateral', 'ICD10_2010'), +('M17.1', 'Other primary gonarthrosis', 'ICD10_2010'), +('M17.2', 'Post-traumatic gonarthrosis, bilateral', 'ICD10_2010'), +('M17.3', 'Other post-traumatic gonarthrosis', 'ICD10_2010'), +('M17.4', 'Other secondary gonarthrosis, bilateral', 'ICD10_2010'), +('M17.5', 'Other secondary gonarthrosis', 'ICD10_2010'), +('M17.9', 'Gonarthrosis, unspecified', 'ICD10_2010'), +('M18', 'Arthrosis of first carpometacarpal joint', 'ICD10_2010'), +('M18.0', 'Primary arthrosis of first carpometacarpal joints, bilateral', 'ICD10_2010'), +('M18.1', 'Other primary arthrosis of first carpometacarpal joint', 'ICD10_2010'), +('M18.2', 'Post-traumatic arthrosis of first carpometacarpal joints, bilateral', 'ICD10_2010'), +('M18.3', 'Other post-traumatic arthrosis of first carpometacarpal joints', 'ICD10_2010'), +('M18.4', 'Other secondary arthrosis of first carpometacarpal joints, bilateral', 'ICD10_2010'), +('M18.5', 'Other secondary arthrosis of first carpometacarpal joint', 'ICD10_2010'), +('M18.9', 'Arthrosis of first carpometacarpal joint, unspecified', 'ICD10_2010'), +('M19', 'Other arthrosis', 'ICD10_2010'), +('M19.0', 'Primary arthrosis of other joints', 'ICD10_2010'), +('M19.00', 'Primary arthrosis of other joints, multiple sites', 'ICD10_2010'), +('M19.01', 'Primary arthrosis of other joints, shoulder region', 'ICD10_2010'), +('M19.02', 'Primary arthrosis of other joints, upper arm', 'ICD10_2010'), +('M19.03', 'Primary arthrosis of other joints, forearm', 'ICD10_2010'), +('M19.04', 'Primary arthrosis of other joints, hand', 'ICD10_2010'), +('M19.05', 'Primary arthrosis of other joints, pelvic and thigh', 'ICD10_2010'), +('M19.06', 'Primary arthrosis of other joints, lower leg', 'ICD10_2010'), +('M19.07', 'Primary arthrosis of other joints, ankle and foot', 'ICD10_2010'), +('M19.08', 'Primary arthrosis of other joints, other sites', 'ICD10_2010'), +('M19.09', 'Primary arthrosis of other joints, unspecified site', 'ICD10_2010'), +('M19.1', 'Post-traumatic arthrosis of other joints', 'ICD10_2010'), +('M19.10', 'Post-traumatic arthrosis of other joints, multiple sites', 'ICD10_2010'), +('M19.11', 'Post-traumatic arthrosis of other joints, shoulder region', 'ICD10_2010'), +('M19.12', 'Post-traumatic arthrosis of other joints, upper arm', 'ICD10_2010'), +('M19.13', 'Post-traumatic arthrosis of other joints, forearm', 'ICD10_2010'), +('M19.14', 'Post-traumatic arthrosis of other joints, hand', 'ICD10_2010'), +('M19.15', 'Post-traumatic arthrosis of other joints, pelvic and thigh', 'ICD10_2010'), +('M19.16', 'Post-traumatic arthrosis of other joints, lower leg', 'ICD10_2010'), +('M19.17', 'Post-traumatic arthrosis of other joints, ankle and foot', 'ICD10_2010'), +('M19.18', 'Post-traumatic arthrosis of other joints, other sites', 'ICD10_2010'), +('M19.19', 'Post-traumatic arthrosis of other joints, unspecified site', 'ICD10_2010'), +('M19.2', 'Secondary arthrosis of other joints', 'ICD10_2010'), +('M19.20', 'Secondary arthrosis of other joints, multiple sites', 'ICD10_2010'), +('M19.21', 'Secondary arthrosis of other joints, shoulder region', 'ICD10_2010'), +('M19.22', 'Secondary arthrosis of other joints, upper arm', 'ICD10_2010'), +('M19.23', 'Secondary arthrosis of other joints, forearm', 'ICD10_2010'), +('M19.24', 'Secondary arthrosis of other joints, hand', 'ICD10_2010'), +('M19.25', 'Secondary arthrosis of other joints, pelvic and thigh', 'ICD10_2010'), +('M19.26', 'Secondary arthrosis of other joints, lower leg', 'ICD10_2010'), +('M19.27', 'Secondary arthrosis of other joints, ankle and foot', 'ICD10_2010'), +('M19.28', 'Secondary arthrosis of other joints, other sites', 'ICD10_2010'), +('M19.29', 'Secondary arthrosis of other joints, unspecified site', 'ICD10_2010'), +('M19.8', 'Other specified arthrosis', 'ICD10_2010'), +('M19.80', 'Other specified arthrosis, multiple sites', 'ICD10_2010'), +('M19.81', 'Other specified arthrosis, shoulder region', 'ICD10_2010'), +('M19.82', 'Other specified arthrosis, upper arm', 'ICD10_2010'), +('M19.83', 'Other specified arthrosis, forearm', 'ICD10_2010'), +('M19.84', 'Other specified arthrosis, hand', 'ICD10_2010'), +('M19.85', 'Other specified arthrosis, pelvic and thigh', 'ICD10_2010'), +('M19.86', 'Other specified arthrosis, lower leg', 'ICD10_2010'), +('M19.87', 'Other specified arthrosis, ankle and foot', 'ICD10_2010'), +('M19.88', 'Other specified arthrosis, other sites', 'ICD10_2010'), +('M19.89', 'Other specified arthrosis, unspecified site', 'ICD10_2010'), +('M19.9', 'Arthrosis, unspecified', 'ICD10_2010'), +('M19.90', 'Arthrosis, unspecified, multiple sites', 'ICD10_2010'), +('M19.91', 'Arthrosis, unspecified, shouder region', 'ICD10_2010'), +('M19.92', 'Arthrosis, unspecified, upper arm', 'ICD10_2010'), +('M19.93', 'Arthrosis, unspecified, forearm', 'ICD10_2010'), +('M19.94', 'Arthrosis, unspecified, hand', 'ICD10_2010'), +('M19.95', 'Arthrosis, unspecified, pelvic and thigh', 'ICD10_2010'), +('M19.96', 'Arthrosis, unspecified, lower leg', 'ICD10_2010'), +('M19.97', 'Arthrosis, unspecified, ankle and foot', 'ICD10_2010'), +('M19.98', 'Arthrosis, unspecified, other sites', 'ICD10_2010'), +('M19.99', 'Arthrosis, unspecified, unspecified site', 'ICD10_2010'), +('M20', 'Acquired deformities of fingers and toes', 'ICD10_2010'), +('M20.0', 'Deformity of finger(s)', 'ICD10_2010'), +('M20.1', 'Hallux valgus (acquired)', 'ICD10_2010'), +('M20.2', 'Hallux rigidus', 'ICD10_2010'), +('M20.3', 'Other deformity of hallux (acquired)', 'ICD10_2010'), +('M20.4', 'Other hammer toe(s) (acquired)', 'ICD10_2010'), +('M20.5', 'Other deformities of toe(s) (acquired)', 'ICD10_2010'), +('M20.6', 'Acquired deformity of toe(s), unspecified', 'ICD10_2010'), +('M21', 'Other acquired deformities of limbs', 'ICD10_2010'), +('M21.0', 'Valgus deformity, not elsewhere classified', 'ICD10_2010'), +('M21.00', 'Valgus deformity, not elsewhere classified, multiple sites', 'ICD10_2010'), +('M21.01', 'Valgus deformity, not elsewhere classified, shoulder region', 'ICD10_2010'), +('M21.02', 'Valgus deformity, not elsewhere classified, upper arm', 'ICD10_2010'), +('M21.03', 'Valgus deformity, not elsewhere classified, forearm', 'ICD10_2010'), +('M21.04', 'Valgus deformity, not elsewhere classified, hand', 'ICD10_2010'), +('M21.05', 'Valgus deformity, not elsewhere classified, pelvic and thigh', 'ICD10_2010'), +('M21.06', 'Valgus deformity, not elsewhere classified, lower leg', 'ICD10_2010'), +('M21.07', 'Valgus deformity, not elsewhere classified, ankle and foot', 'ICD10_2010'), +('M21.08', 'Valgus deformity, not elsewhere classified, other sites', 'ICD10_2010'), +('M21.09', 'Valgus deformity, not elsewhere classified, unspecified site', 'ICD10_2010'), +('M21.1', 'Varus deformity, not elsewhere classified', 'ICD10_2010'), +('M21.10', 'Varus deformity, not elsewhere classified, multiple sites', 'ICD10_2010'), +('M21.11', 'Varus deformity, not elsewhere classified, shoulder region', 'ICD10_2010'), +('M21.12', 'Varus deformity, not elsewhere classified, upper arm', 'ICD10_2010'), +('M21.13', 'Varus deformity, not elsewhere classified, forearm', 'ICD10_2010'), +('M21.14', 'Varus deformity, not elsewhere classified, hand', 'ICD10_2010'), +('M21.15', 'Varus deformity, not elsewhere classified, pelvic and thigh', 'ICD10_2010'), +('M21.16', 'Varus deformity, not elsewhere classified, lower leg', 'ICD10_2010'), +('M21.17', 'Varus deformity, not elsewhere classified, ankle and foot', 'ICD10_2010'), +('M21.18', 'Varus deformity, not elsewhere classified, other sites', 'ICD10_2010'), +('M21.19', 'Varus deformity, not elsewhere classified, unspecified site', 'ICD10_2010'), +('M21.2', 'Flexion deformity', 'ICD10_2010'), +('M21.20', 'Flexion deformity, multiple sites', 'ICD10_2010'), +('M21.21', 'Flexion deformity, shoulder region', 'ICD10_2010'), +('M21.22', 'Flexion deformity, upper arm', 'ICD10_2010'), +('M21.23', 'Flexion deformity, forearm', 'ICD10_2010'), +('M21.24', 'Flexion deformity, hand', 'ICD10_2010'), +('M21.25', 'Flexion deformity, pelvic and thigh', 'ICD10_2010'), +('M21.26', 'Flexion deformity, lower leg', 'ICD10_2010'), +('M21.27', 'Flexion deformity, ankle and foot', 'ICD10_2010'), +('M21.28', 'Flexion deformity, other sites', 'ICD10_2010'), +('M21.29', 'Flexion deformity, unspecified site', 'ICD10_2010'), +('M21.3', 'Wrist or foot drop (acquired)', 'ICD10_2010'), +('M21.34', 'Wrist or foot drop (acquired), hand', 'ICD10_2010'), +('M21.37', 'Wrist or foot drop (acquired), ankle and foot', 'ICD10_2010'), +('M21.4', 'Flat foot [pes planus] (acquired)', 'ICD10_2010'), +('M21.47', 'Flat foot [pes planus] (acquired), ankle and foot', 'ICD10_2010'), +('M21.5', 'Acquired clawhand, clubhand, clawfoot and clubfoot', 'ICD10_2010'), +('M21.54', 'Acquired clawhand, clubhand, clawfoot and clubfoot, hand', 'ICD10_2010'), +('M21.57', 'Acquired clawhand, clubhand, clawfoot and clubfoot, ankle and foot', 'ICD10_2010'), +('M21.6', 'Other acquired deformities of ankle and foot', 'ICD10_2010'), +('M21.67', 'Other acquired deformities of ankle and foot, ankle and foot', 'ICD10_2010'), +('M21.7', 'Unequal limb length (acquired)', 'ICD10_2010'), +('M21.70', 'Unequal limb length (acquired), multiple sites', 'ICD10_2010'), +('M21.71', 'Unequal limb length (acquired), shoulder region', 'ICD10_2010'), +('M21.72', 'Unequal limb length (acquired), upper arm', 'ICD10_2010'), +('M21.73', 'Unequal limb length (acquired), forearm', 'ICD10_2010'), +('M21.74', 'Unequal limb length (acquired), hand', 'ICD10_2010'), +('M21.75', 'Unequal limb length (acquired), pelvic and thigh', 'ICD10_2010'), +('M21.76', 'Unequal limb length (acquired), lower leg', 'ICD10_2010'), +('M21.77', 'Unequal limb length (acquired), ankle and foot', 'ICD10_2010'), +('M21.78', 'Unequal limb length (acquired), other sites', 'ICD10_2010'), +('M21.79', 'Unequal limb length (acquired), unspecified site', 'ICD10_2010'), +('M21.8', 'Other specified acquired deformities of limbs', 'ICD10_2010'), +('M21.80', 'Other specified acquired deformities of limbs, multiple sites', 'ICD10_2010'), +('M21.81', 'Other specified acquired deformities of limbs, shoulder region', 'ICD10_2010'), +('M21.82', 'Other specified acquired deformities of limbs, upper arm', 'ICD10_2010'), +('M21.83', 'Other specified acquired deformities of limbs, forearm', 'ICD10_2010'), +('M21.84', 'Other specified acquired deformities of limbs, hand', 'ICD10_2010'), +('M21.85', 'Other specified acquired deformities of limbs, pelvic and thigh', 'ICD10_2010'), +('M21.86', 'Other specified acquired deformities of limbs, lower leg 1', 'ICD10_2010'), +('M21.87', 'Other specified acquired deformities of limbs, ankle and foot 1', 'ICD10_2010'), +('M21.88', 'Other specified acquired deformities of limbs, other sites 1', 'ICD10_2010'), +('M21.89', 'Other specified acquired deformities of limbs, unspecified site 1', 'ICD10_2010'), +('M21.9', 'Acquired deformity of limb, unspecified 1', 'ICD10_2010'), +('M21.90', 'Acquired deformity of limb, unspecified, multiple sites 1', 'ICD10_2010'), +('M21.91', 'Acquired deformity of limb, unspecified, shoulder region 1', 'ICD10_2010'), +('M21.92', 'Acquired deformity of limb, unspecified, upper arm 1', 'ICD10_2010'), +('M21.93', 'Acquired deformity of limb, unspecified, forearm 1', 'ICD10_2010'), +('M21.94', 'Acquired deformity of limb, unspecified, hand 1', 'ICD10_2010'), +('M21.95', 'Acquired deformity of limb, unspecified, pelvic and thigh 1', 'ICD10_2010'), +('M21.96', 'Acquired deformity of limb, unspecified, lower leg 1', 'ICD10_2010'), +('M21.97', 'Acquired deformity of limb, unspecified, ankle and foot 1', 'ICD10_2010'), +('M21.98', 'Acquired deformity of limb, unspecified, other sites 1', 'ICD10_2010'), +('M21.99', 'Acquired deformity of limb, unspecified, unspecified site 1', 'ICD10_2010'), +('M22', 'Disorders of patella', 'ICD10_2010'), +('M22.0', 'Recurrent dislocation of patella 1', 'ICD10_2010'), +('M22.1', 'Recurrent subluxation of patella 1', 'ICD10_2010'), +('M22.2', 'Patellofemoral disorders 1', 'ICD10_2010'), +('M22.3', 'Other derangements of patella 1', 'ICD10_2010'), +('M22.4', 'Chondromalacia patellae', 'ICD10_2010'), +('M22.8', 'Other disorders of patella', 'ICD10_2010'), +('M22.9', 'Disorder of patella, unspecified', 'ICD10_2010'), +('M23', 'Internal derangement of knee', 'ICD10_2010'), +('M23.0', 'Cystic meniscus', 'ICD10_2010'), +('M23.00', 'Cystic meniscus, multiple sites', 'ICD10_2010'), +('M23.01', 'Cystic meniscus, anterior cruciate ligament or anterior horn medial meniscus', 'ICD10_2010'), +('M23.02', 'Cystic meniscus, posterior cruciate ligament or anterior horn medial meniscus', 'ICD10_2010'), +('M23.03', 'Cystic meniscus, medial collateral ligament or other and unspecified medial meniscus', 'ICD10_2010'), +('M23.04', 'Cystic meniscus, lateral collateral ligament or anterior horn of lateral meniscus', 'ICD10_2010'), +('M23.05', 'Cystic meniscus, posterior horn of lateral meniscus', 'ICD10_2010'), +('M23.06', 'Cystic meniscus, other and unspecified lateral meniscus', 'ICD10_2010'), +('M23.07', 'Cystic meniscus, capsular ligament', 'ICD10_2010'), +('M23.09', 'Cystic meniscus, unspecified ligament or unspecified meniscus', 'ICD10_2010'), +('M23.1', 'Discoid meniscus (congenital)', 'ICD10_2010'), +('M23.10', 'Discoid meniscus (congenital), multiple sites', 'ICD10_2010'), +('M23.11', 'Discoid meniscus (congenital), anterior cruciate ligament or anterior horn medial meniscus', 'ICD10_2010'), +('M23.12', 'Discoid meniscus (congenital), posterior cruciate ligament or anterior horn medial meniscus', 'ICD10_2010'), +('M23.13', 'Discoid meniscus (congenital), medial collateral ligament or other and unspecified medial meniscus', 'ICD10_2010'), +('M23.14', 'Discoid meniscus (congenital), lateral collateral ligament or anterior horn of lateral meniscus', 'ICD10_2010'), +('M23.15', 'Discoid meniscus (congenital), posterior horn of lateral meniscus', 'ICD10_2010'), +('M23.16', 'Discoid meniscus (congenital), other and unspecified lateral meniscus', 'ICD10_2010'), +('M23.17', 'Discoid meniscus (congenital),capsular ligament', 'ICD10_2010'), +('M23.19', 'Discoid meniscus (congenital), unspecified ligament or unspecified meniscus', 'ICD10_2010'), +('M23.2', 'Derangement of meniscus due to old tear or injury', 'ICD10_2010'), +('M23.20', 'Derangement of meniscus due to old tear or injury, multiple sites', 'ICD10_2010'), +('M23.21', 'Derangement of meniscus due to old tear or injury, anterior cruciate ligament or anterior horn medial meniscus', 'ICD10_2010'), +('M23.22', 'Derangement of meniscus due to old tear or injury, posterior cruciate ligament or anterior horn medial meniscus', 'ICD10_2010'), +('M23.23', 'Derangement of meniscus due to old tear or injury, medial collateral ligament or other and unspecified medial meniscus', 'ICD10_2010'), +('M23.24', 'Derangement of meniscus due to old tear or injury, lateral collateral ligament or anterior horn of lateral meniscus', 'ICD10_2010'), +('M23.25', 'Derangement of meniscus due to old tear or injury, posterior horn of lateral meniscus', 'ICD10_2010'), +('M23.26', 'Derangement of meniscus due to old tear or injury, other and unspecified lateral meniscus', 'ICD10_2010'), +('M23.27', 'Derangement of meniscus due to old tear or injury, capsular ligament', 'ICD10_2010'), +('M23.29', 'Derangement of meniscus due to old tear or injury, unspecified ligament or unspecified meniscus', 'ICD10_2010'), +('M23.3', 'Other meniscus derangements', 'ICD10_2010'), +('M23.30', 'Other meniscus derangements, multiple sites', 'ICD10_2010'), +('M23.31', 'Other meniscus derangements, anterior cruciate ligament or anterior horn medial meniscus', 'ICD10_2010'), +('M23.32', 'Other meniscus derangements, posterior cruciate ligament or anterior horn medial meniscus', 'ICD10_2010'), +('M23.33', 'Other meniscus derangements, medial collateral ligament or other and unspecified medial meniscus', 'ICD10_2010'), +('M23.34', 'Other meniscus derangements, lateral collateral ligament or anterior horn of lateral meniscus', 'ICD10_2010'), +('M23.35', 'Other meniscus derangements, posterior horn of lateral meniscus', 'ICD10_2010'), +('M23.36', 'Other meniscus derangements, other and unspecified lateral meniscus', 'ICD10_2010'), +('M23.37', 'Other meniscus derangements, capsular ligament', 'ICD10_2010'), +('M23.39', 'Other meniscus derangements, unspecified ligament or unspecified meniscus', 'ICD10_2010'), +('M23.4', 'Loose body in knee', 'ICD10_2010'), +('M23.40', 'Loose body in knee, multiple sites', 'ICD10_2010'), +('M23.41', 'Loose body in knee, anterior cruciate ligament or anterior horn medial meniscus', 'ICD10_2010'), +('M23.42', 'Loose body in knee, posterior cruciate ligament or anterior horn medial meniscus', 'ICD10_2010'), +('M23.43', 'Loose body in knee, medial collateral ligament or other and unspecified medial meniscus', 'ICD10_2010'), +('M23.44', 'Loose body in knee, lateral collateral ligament or anterior horn of lateral meniscus', 'ICD10_2010'), +('M23.45', 'Loose body in knee, posterior horn of lateral meniscus', 'ICD10_2010'), +('M23.46', 'Loose body in knee, other and unspecified lateral meniscus', 'ICD10_2010'), +('M23.47', 'Loose body in knee, capsular ligament', 'ICD10_2010'), +('M23.49', 'Loose body in knee, unspecified ligament or unspecified meniscus', 'ICD10_2010'), +('M23.5', 'Chronic instability of knee', 'ICD10_2010'), +('M23.50', 'Chronic instability of knee, multiple sites', 'ICD10_2010'), +('M23.51', 'Chronic instability of knee, anterior cruciate ligament or anterior horn medial meniscus', 'ICD10_2010'), +('M23.52', 'Chronic instability of knee, posterior cruciate ligament or anterior horn medial meniscus', 'ICD10_2010'), +('M23.53', 'Chronic instability of knee, medial collateral ligament or other and unspecified medial meniscus', 'ICD10_2010'), +('M23.54', 'Chronic instability of knee, lateral collateral ligament or anterior horn of lateral meniscus', 'ICD10_2010'), +('M23.55', 'Chronic instability of knee, posterior horn of lateral meniscus', 'ICD10_2010'), +('M23.56', 'Chronic instability of knee, other and unspecified lateral meniscus', 'ICD10_2010'), +('M23.57', 'Chronic instability of knee, capsular ligament', 'ICD10_2010'), +('M23.59', 'Chronic instability of knee, unspecified ligament or unspecified meniscus', 'ICD10_2010'), +('M23.6', 'Other spontaneous disruption of ligament(s) of knee', 'ICD10_2010'), +('M23.60', 'Other spontaneous disruption of ligament(s) of knee, multiple sites', 'ICD10_2010'), +('M23.61', 'Other spontaneous disruption of ligament(s) of knee, anterior cruciate ligament or anterior horn medial meniscus', 'ICD10_2010'), +('M23.62', 'Other spontaneous disruption of ligament(s) of knee, posterior cruciate ligament or anterior horn medial meniscus', 'ICD10_2010'), +('M23.63', 'Other spontaneous disruption of ligament(s) of knee, medial collateral ligament or other and unspecified medial meniscus', 'ICD10_2010'), +('M23.64', 'Other spontaneous disruption of ligament(s) of knee, lateral collateral ligament or anterior horn of lateral meniscus', 'ICD10_2010'), +('M23.65', 'Other spontaneous disruption of ligament(s) of knee, posterior horn of lateral meniscus', 'ICD10_2010'), +('M23.66', 'Other spontaneous disruption of ligament(s) of knee, other and unspecified lateral meniscus', 'ICD10_2010'), +('M23.67', 'Other spontaneous disruption of ligament(s) of knee, capsular ligament', 'ICD10_2010'), +('M23.69', 'Other spontaneous disruption of ligament(s) of knee, unspecified ligament or unspecified meniscus', 'ICD10_2010'), +('M23.8', 'Other internal derangements of knee', 'ICD10_2010'), +('M23.80', 'Other internal derangements of knee, multiple sites', 'ICD10_2010'), +('M23.81', 'Other internal derangements of knee, anterior cruciate ligament or anterior horn medial meniscus', 'ICD10_2010'), +('M23.82', 'Other internal derangements of knee, posterior cruciate ligament or anterior horn medial meniscus', 'ICD10_2010'), +('M23.83', 'Other internal derangements of knee, medial collateral ligament or other and unspecified medial meniscus', 'ICD10_2010'), +('M23.84', 'Other internal derangements of knee, lateral collateral ligament or anterior horn of lateral meniscus', 'ICD10_2010'), +('M23.85', 'Other internal derangements of knee, posterior horn of lateral meniscus', 'ICD10_2010'), +('M23.86', 'Other internal derangements of knee, other and unspecified lateral meniscus', 'ICD10_2010'), +('M23.87', 'Other internal derangements of knee, capsular ligament', 'ICD10_2010'), +('M23.89', 'Other internal derangements of knee, unspecified ligament or unspecified meniscus', 'ICD10_2010'), +('M23.9', 'Internal derangement of knee, unspecified', 'ICD10_2010'), +('M23.90', 'Internal derangement of knee, unspecified, multiple sites', 'ICD10_2010'), +('M23.91', 'Internal derangement of knee, unspecified,anterior cruciate ligament or anterior horn medial meniscus', 'ICD10_2010'), +('M23.92', 'Internal derangement of knee, unspecified, posterior cruciate ligament or anterior horn medial meniscus', 'ICD10_2010'), +('M23.93', 'Internal derangement of knee, unspecified, medial collateral ligament or other and unspecified medial meniscus', 'ICD10_2010'), +('M23.94', 'Internal derangement of knee, unspecified, lateral collateral ligament or anterior horn of lateral meniscus', 'ICD10_2010'), +('M23.95', 'Internal derangement of knee, unspecified, posterior horn of lateral meniscus', 'ICD10_2010'), +('M23.96', 'Internal derangement of knee, unspecified, other and unspecified lateral meniscus', 'ICD10_2010'), +('M23.97', 'Internal derangement of knee, unspecified, capsular ligament', 'ICD10_2010'), +('M23.99', 'Internal derangement of knee, unspecified, unspecified ligament or unspecified meniscus', 'ICD10_2010'), +('M24', 'Other specific joint derangements', 'ICD10_2010'), +('M24.0', 'Loose body in joint', 'ICD10_2010'), +('M24.00', 'Loose body in joint, multiple sites', 'ICD10_2010'), +('M24.01', 'Loose body in joint, shouder region', 'ICD10_2010'), +('M24.02', 'Loose body in joint, upper arm', 'ICD10_2010'), +('M24.03', 'Loose body in joint, forearm', 'ICD10_2010'), +('M24.04', 'Loose body in joint, hand', 'ICD10_2010'), +('M24.05', 'Loose body in joint, pelvic and thigh', 'ICD10_2010'), +('M24.06', 'Loose body in joint, lower leg', 'ICD10_2010'), +('M24.07', 'Loose body in joint, ankle and foot', 'ICD10_2010'), +('M24.08', 'Loose body in joint, other sites', 'ICD10_2010'), +('M24.09', 'Loose body in joint, unspecified site', 'ICD10_2010'), +('M24.1', 'Other articular cartilage disorders', 'ICD10_2010'), +('M24.10', 'Other articular cartilage disorders, multiple sites', 'ICD10_2010'), +('M24.11', 'Other articular cartilage disorders, shoulder region', 'ICD10_2010'), +('M24.12', 'Other articular cartilage disorders, upper arm', 'ICD10_2010'), +('M24.13', 'Other articular cartilage disorders, forearm', 'ICD10_2010'), +('M24.14', 'Other articular cartilage disorders, hand', 'ICD10_2010'), +('M24.15', 'Other articular cartilage disorders, pelvic and thigh', 'ICD10_2010'), +('M24.16', 'Other articular cartilage disorders, lower leg', 'ICD10_2010'), +('M24.17', 'Other articular cartilage disorders, ankle and foot', 'ICD10_2010'), +('M24.18', 'Other articular cartilage disorders, other sites', 'ICD10_2010'), +('M24.19', 'Other articular cartilage disorders, unspecified site', 'ICD10_2010'), +('M24.2', 'Disorder of ligament', 'ICD10_2010'), +('M24.20', 'Disorder of ligament, multiple sites', 'ICD10_2010'), +('M24.21', 'Disorder of ligament, shouder region', 'ICD10_2010'), +('M24.22', 'Disorder of ligament, upper arm', 'ICD10_2010'), +('M24.23', 'Disorder of ligament, forearm', 'ICD10_2010'), +('M24.24', 'Disorder of ligament, hand', 'ICD10_2010'), +('M24.25', 'Disorder of ligament, pelvic and thigh', 'ICD10_2010'), +('M24.26', 'Disorder of ligament, lower leg', 'ICD10_2010'), +('M24.27', 'Disorder of ligament, ankle and foot', 'ICD10_2010'), +('M24.28', 'Disorder of ligament, other sites', 'ICD10_2010'), +('M24.29', 'Disorder of ligament, unspecified site', 'ICD10_2010'), +('M24.3', 'Pathological dislocation and subluxation of joint, not elsewhere classified', 'ICD10_2010'), +('M24.30', 'Pathological dislocation and subluxation of joint not elsewhere classified, multiple sites', 'ICD10_2010'), +('M24.31', 'Pathological dislocation and subluxation of joint not elsewhere classified, shoulder region', 'ICD10_2010'), +('M24.32', 'Pathological dislocation and subluxation of joint not elsewhere classified, upper arm', 'ICD10_2010'), +('M24.33', 'Pathological dislocation and subluxation of joint not elsewhere classified, forearm', 'ICD10_2010'), +('M24.34', 'Pathological dislocation and subluxation of joint not elsewhere classified, hand', 'ICD10_2010'), +('M24.35', 'Pathological dislocation and subluxation of joint not elsewhere classified, pelvic and thigh', 'ICD10_2010'), +('M24.36', 'Pathological dislocation and subluxation of joint not elsewhere classified, lower leg', 'ICD10_2010'), +('M24.37', 'Pathological dislocation and subluxation of joint not elsewhere classified, ankle and foot', 'ICD10_2010'), +('M24.38', 'Pathological dislocation and subluxation of joint not elsewhere classified, other sites', 'ICD10_2010'), +('M24.39', 'Pathological dislocation and subluxation of joint not elsewhere classified, unspecified site', 'ICD10_2010'), +('M24.4', 'Recurrent dislocation and subluxation of joint', 'ICD10_2010'), +('M24.40', 'Recurrent dislocation and subluxation of joint, multiple sites', 'ICD10_2010'), +('M24.41', 'Recurrent dislocation and subluxation of joint, shoulder region', 'ICD10_2010'), +('M24.42', 'Recurrent dislocation and subluxation of joint, upper arm', 'ICD10_2010'), +('M24.43', 'Recurrent dislocation and subluxation of joint, forearm', 'ICD10_2010'), +('M24.44', 'Recurrent dislocation and subluxation of joint, hand', 'ICD10_2010'), +('M24.45', 'Recurrent dislocation and subluxation of joint, pelvic and thigh', 'ICD10_2010'), +('M24.46', 'Recurrent dislocation and subluxation of joint, lower leg', 'ICD10_2010'), +('M24.47', 'Recurrent dislocation and subluxation of joint, ankle and foot', 'ICD10_2010'), +('M24.48', 'Recurrent dislocation and subluxation of joint, other sites', 'ICD10_2010'), +('M24.49', 'Recurrent dislocation and subluxation of joint, unspecified site', 'ICD10_2010'), +('M24.5', 'Contracture of joint', 'ICD10_2010'), +('M24.50', 'Contracture of joint, multiple sites', 'ICD10_2010'), +('M24.51', 'Contracture of joint, shouder region', 'ICD10_2010'), +('M24.52', 'Contracture of joint, upper arm', 'ICD10_2010'), +('M24.53', 'Contracture of joint, forearm', 'ICD10_2010'), +('M24.54', 'Contracture of joint, hand', 'ICD10_2010'), +('M24.55', 'Contracture of joint, pelvic and thigh', 'ICD10_2010'), +('M24.56', 'Contracture of joint, lower leg', 'ICD10_2010'), +('M24.57', 'Contracture of joint, ankle and foot', 'ICD10_2010'), +('M24.58', 'Contracture of joint, other sites', 'ICD10_2010'), +('M24.59', 'Contracture of joint, unspecified site', 'ICD10_2010'), +('M24.6', 'Ankylosis of joint', 'ICD10_2010'), +('M24.60', 'Ankylosis of joint, multiple sites', 'ICD10_2010'), +('M24.61', 'Ankylosis of joint, shoulder region', 'ICD10_2010'), +('M24.62', 'Ankylosis of joint, upper arm', 'ICD10_2010'), +('M24.63', 'Ankylosis of joint, forearm', 'ICD10_2010'), +('M24.64', 'Ankylosis of joint, hand', 'ICD10_2010'), +('M24.65', 'Ankylosis of joint, pelvic and thigh', 'ICD10_2010'), +('M24.66', 'Ankylosis of joint, lower leg', 'ICD10_2010'), +('M24.67', 'Ankylosis of joint, ankle and foot', 'ICD10_2010'), +('M24.68', 'Ankylosis of joint, other sites', 'ICD10_2010'), +('M24.69', 'Ankylosis of joint, unspecified site', 'ICD10_2010'), +('M24.7', 'Protrusio acetabuli', 'ICD10_2010'), +('M24.75', 'Protrusio acetabuli, pelvic andthigh', 'ICD10_2010'), +('M24.8', 'Other specific joint derangements, not elsewhere classified', 'ICD10_2010'), +('M24.80', 'Other specific joint derangements, not elsewhere classified, multiple sites', 'ICD10_2010'), +('M24.81', 'Other specific joint derangements, not elsewhere classified, shoulder region', 'ICD10_2010'), +('M24.82', 'Other specific joint derangements, not elsewhere classified, upper arm', 'ICD10_2010'), +('M24.83', 'Other specific joint derangements, not elsewhere classified, forearm', 'ICD10_2010'), +('M24.84', 'Other specific joint derangements, not elsewhere classified, hand', 'ICD10_2010'), +('M24.85', 'Other specific joint derangements, not elsewhere classified, pelvic and thigh', 'ICD10_2010'), +('M24.86', 'Other specific joint derangements, not elsewhere classified, lower leg', 'ICD10_2010'), +('M24.87', 'Other specific joint derangements, not elsewhere classified, ankle and foot', 'ICD10_2010'), +('M24.88', 'Other specific joint derangements, not elsewhere classified, other sites', 'ICD10_2010'), +('M24.89', 'Other specific joint derangements, not elsewhere classified, unspecified site', 'ICD10_2010'), +('M24.9', 'Joint derangement, unspecified', 'ICD10_2010'), +('M24.90', 'Joint derangement, unspecified, multiple sites', 'ICD10_2010'), +('M24.91', 'Joint derangement, unspecified, shoulder region', 'ICD10_2010'), +('M24.92', 'Joint derangement, unspecified, upper arm', 'ICD10_2010'), +('M24.93', 'Joint derangement, unspecified, forearm', 'ICD10_2010'), +('M24.94', 'Joint derangement, unspecified, hand', 'ICD10_2010'), +('M24.95', 'Joint derangement, unspecified, pelvic and thigh', 'ICD10_2010'), +('M24.96', 'Joint derangement, unspecified, lower leg', 'ICD10_2010'), +('M24.97', 'Joint derangement, unspecified, ankle and foot', 'ICD10_2010'), +('M24.98', 'Joint derangement, unspecified, other sites', 'ICD10_2010'), +('M24.99', 'Joint derangement, unspecified, unspecified site', 'ICD10_2010'), +('M25', 'Other joint disorders, not elsewhere classified', 'ICD10_2010'), +('M25.0', 'Haemarthrosis', 'ICD10_2010'), +('M25.00', 'Haemarthrosis, multiple sites', 'ICD10_2010'), +('M25.01', 'Haemarthrosis, shoulder region', 'ICD10_2010'), +('M25.02', 'Haemarthrosis, upper arm', 'ICD10_2010'), +('M25.03', 'Haemarthrosis, forearm', 'ICD10_2010'), +('M25.04', 'Haemarthrosis, hand', 'ICD10_2010'), +('M25.05', 'Haemarthrosis, pelvic and thigh', 'ICD10_2010'), +('M25.06', 'Haemarthrosis, lower leg', 'ICD10_2010'), +('M25.07', 'Haemarthrosis, ankle and foot', 'ICD10_2010'), +('M25.08', 'Haemarthrosis, other sites', 'ICD10_2010'), +('M25.09', 'Haemarthrosis, unspecified site', 'ICD10_2010'), +('M25.1', 'Fistula of joint', 'ICD10_2010'), +('M25.10', 'Fistula of joint, multiple sites', 'ICD10_2010'), +('M25.11', 'Fistula of joint, shoulder region', 'ICD10_2010'), +('M25.12', 'Fistula of joint, upper arm', 'ICD10_2010'), +('M25.13', 'Fistula of joint, forearm', 'ICD10_2010'), +('M25.14', 'Fistula of joint, hand', 'ICD10_2010'), +('M25.15', 'Fistula of joint, pelvic and thigh', 'ICD10_2010'), +('M25.16', 'Fistula of joint, lower leg', 'ICD10_2010'), +('M25.17', 'Fistula of joint, ankle and foot', 'ICD10_2010'), +('M25.18', 'Fistula of joint, other sites', 'ICD10_2010'), +('M25.19', 'Fistula of joint, unspecified site', 'ICD10_2010'), +('M25.2', 'Flail joint', 'ICD10_2010'), +('M25.20', 'Flail joint, multiple sites', 'ICD10_2010'), +('M25.21', 'Flail joint, shoulder region', 'ICD10_2010'), +('M25.22', 'Flail joint, upper arm', 'ICD10_2010'), +('M25.23', 'Flail joint, forearm', 'ICD10_2010'), +('M25.24', 'Flail joint, hand', 'ICD10_2010'), +('M25.25', 'Flail joint, pelvic and thigh', 'ICD10_2010'), +('M25.26', 'Flail joint, lower leg', 'ICD10_2010'), +('M25.27', 'Flail joint, ankle and foot', 'ICD10_2010'), +('M25.28', 'Flail joint, other sites', 'ICD10_2010'), +('M25.29', 'Flail joint, unspecified site', 'ICD10_2010'), +('M25.3', 'Other instability of joint', 'ICD10_2010'), +('M25.30', 'Other instability of joint, multiple sites', 'ICD10_2010'), +('M25.31', 'Other instability of joint, shoulder region', 'ICD10_2010'), +('M25.32', 'Other instability of joint, upper arm', 'ICD10_2010'), +('M25.33', 'Other instability of joint, forearm', 'ICD10_2010'), +('M25.34', 'Other instability of joint, hand', 'ICD10_2010'), +('M25.35', 'Other instability of joint, pelvic and thigh', 'ICD10_2010'), +('M25.36', 'Other instability of joint, lower leg', 'ICD10_2010'), +('M25.37', 'Other instability of joint, ankle and foot', 'ICD10_2010'), +('M25.38', 'Other instability of joint, other sites', 'ICD10_2010'), +('M25.39', 'Other instability of joint, unspecified site', 'ICD10_2010'), +('M25.4', 'Effusion of joint', 'ICD10_2010'), +('M25.40', 'Effusion of joint, multiple sites', 'ICD10_2010'), +('M25.41', 'Effusion of joint, shoulder region', 'ICD10_2010'), +('M25.42', 'Effusion of joint, upper arm', 'ICD10_2010'), +('M25.43', 'Effusion of joint, forearm', 'ICD10_2010'), +('M25.44', 'Effusion of joint, hand', 'ICD10_2010'), +('M25.45', 'Effusion of joint, pelvic and thigh', 'ICD10_2010'), +('M25.46', 'Effusion of joint, lower leg', 'ICD10_2010'), +('M25.47', 'Effusion of joint, ankle and foot', 'ICD10_2010'), +('M25.48', 'Effusion of joint, other sites', 'ICD10_2010'), +('M25.49', 'Effusion of joint, unspecified site', 'ICD10_2010'), +('M25.5', 'Pain in joint', 'ICD10_2010'), +('M25.50', 'Pain in joint, multiple sites', 'ICD10_2010'), +('M25.51', 'Pain in joint, shouder region', 'ICD10_2010'), +('M25.52', 'Pain in joint, upper arm', 'ICD10_2010'), +('M25.53', 'Pain in joint, forearm', 'ICD10_2010'), +('M25.54', 'Pain in joint, hand', 'ICD10_2010'), +('M25.55', 'Pain in joint, pelvic and thigh', 'ICD10_2010'), +('M25.56', 'Pain in joint, lower leg', 'ICD10_2010'), +('M25.57', 'Pain in joint, ankle and foot', 'ICD10_2010'), +('M25.58', 'Pain in joint, other sites', 'ICD10_2010'), +('M25.59', 'Pain in joint, unspecified site', 'ICD10_2010'), +('M25.6', 'Stiffness of joint, not elsewhere classified', 'ICD10_2010'), +('M25.60', 'Stiffness of joint, not elsewhere classified, multiple sites', 'ICD10_2010'), +('M25.61', 'Stiffness of joint, not elsewhere classified, shoulder region', 'ICD10_2010'), +('M25.62', 'Stiffness of joint, not elsewhere classified, upper arm', 'ICD10_2010'), +('M25.63', 'Stiffness of joint, not elsewhere classified, forearm', 'ICD10_2010'), +('M25.64', 'Stiffness of joint, not elsewhere classified, hand', 'ICD10_2010'), +('M25.65', 'Stiffness of joint, not elsewhere classified, pelvic and thigh', 'ICD10_2010'), +('M25.66', 'Stiffness of joint, not elsewhere classified, lower leg', 'ICD10_2010'), +('M25.67', 'Stiffness of joint, not elsewhere classified, ankle and foot', 'ICD10_2010'), +('M25.68', 'Stiffness of joint, not elsewhere classified, other sites', 'ICD10_2010'), +('M25.69', 'Stiffness of joint, not elsewhere classified, unspecified site', 'ICD10_2010'), +('M25.7', 'Osteophyte', 'ICD10_2010'), +('M25.70', 'Osteophyte, multiple sites', 'ICD10_2010'), +('M25.71', 'Osteophyte, shoulder region', 'ICD10_2010'), +('M25.72', 'Osteophyte, upper arm', 'ICD10_2010'), +('M25.73', 'Osteophyte, forearm', 'ICD10_2010'), +('M25.74', 'Osteophyte, hand', 'ICD10_2010'), +('M25.75', 'Osteophyte, pelvic and thigh', 'ICD10_2010'), +('M25.76', 'Osteophyte, lower leg', 'ICD10_2010'), +('M25.77', 'Osteophyte, ankle and foot', 'ICD10_2010'), +('M25.78', 'Osteophyte, other sites', 'ICD10_2010'), +('M25.79', 'Osteophyte, unspecified site', 'ICD10_2010'), +('M25.8', 'Other specified joint disorders', 'ICD10_2010'), +('M25.80', 'Other specified joint disorders, multiple sites', 'ICD10_2010'), +('M25.81', 'Other specified joint disorders, sholder region', 'ICD10_2010'), +('M25.82', 'Other specified joint disorders, upper arm', 'ICD10_2010'), +('M25.83', 'Other specified joint disorders, forearm', 'ICD10_2010'), +('M25.84', 'Other specified joint disorders, hand', 'ICD10_2010'), +('M25.85', 'Other specified joint disorders, pelvic and thigh', 'ICD10_2010'), +('M25.86', 'Other specified joint disorders, lower leg', 'ICD10_2010'), +('M25.87', 'Other specified joint disorders, ankle and foot', 'ICD10_2010'), +('M25.88', 'Other specified joint disorders, other sites', 'ICD10_2010'), +('M25.89', 'Other specified joint disorders, unspecified site', 'ICD10_2010'), +('M25.9', 'Joint disorder, unspecified', 'ICD10_2010'), +('M25.90', 'Joint disorder, unspecified, multiple sites', 'ICD10_2010'), +('M25.91', 'Joint disorder, unspecified, shoulder region', 'ICD10_2010'), +('M25.92', 'Joint disorder, unspecified, upper arm', 'ICD10_2010'), +('M25.93', 'Joint disorder, unspecified, forearm', 'ICD10_2010'), +('M25.94', 'Joint disorder, unspecified, hand', 'ICD10_2010'), +('M25.95', 'Joint disorder, unspecified, pelvic and thigh', 'ICD10_2010'), +('M25.96', 'Joint disorder, unspecified, lower leg', 'ICD10_2010'), +('M25.97', 'Joint disorder, unspecified, ankle and foot', 'ICD10_2010'), +('M25.98', 'Joint disorder, unspecified, other sites', 'ICD10_2010'), +('M25.99', 'Joint disorder, unspecified, unspecified site', 'ICD10_2010'), +('M30', 'Polyarteritis nodosa and related conditions', 'ICD10_2010'), +('M30.0', 'Polyarteritis nodosa', 'ICD10_2010'), +('M30.1', 'Polyarteritis with lung involvement [churg-strauss]', 'ICD10_2010'), +('M30.2', 'Juvenile polyarteritis', 'ICD10_2010'), +('M30.3', 'Mucocutaneous lymph node syndrome [kawasaki]', 'ICD10_2010'), +('M30.8', 'Other conditions related to polyarteritis nodosa', 'ICD10_2010'), +('M31', 'Other necrotizing vasculopathies', 'ICD10_2010'), +('M31.0', 'Hypersensitivity angiitis', 'ICD10_2010'), +('M31.1', 'Thrombotic microangiopathy', 'ICD10_2010'), +('M31.2', 'Lethal midline granuloma', 'ICD10_2010'), +('M31.3', 'Wegener\'s granulomatosis', 'ICD10_2010'), +('M31.4', 'Aortic arch syndrome [takayasu]', 'ICD10_2010'), +('M31.5', 'Giant cell arteritis with polymyalgia rheumatica', 'ICD10_2010'), +('M31.6', 'Other giant cell arteritis', 'ICD10_2010'), +('M31.7', 'Microscopic polyangiitis', 'ICD10_2010'), +('M31.8', 'Other specified necrotizing vasculopathies', 'ICD10_2010'), +('M31.9', 'Necrotizing vasculopathy, unspecified', 'ICD10_2010'), +('M32', 'Systemic lupus erythematosus', 'ICD10_2010'), +('M32.0', 'Drug-induced systemic lupus erythematosus', 'ICD10_2010'), +('M32.1', 'Systemic lupus erythematosus with organ or system involvement', 'ICD10_2010'), +('M32.8', 'Other forms of systemic lupus erythematosus', 'ICD10_2010'), +('M32.9', 'Systemic lupus erythematosus, unspecified', 'ICD10_2010'), +('M33', 'Dermatopolymyositis', 'ICD10_2010'), +('M33.0', 'Juvenile dermatomyositis', 'ICD10_2010'), +('M33.1', 'Other dermatomyositis', 'ICD10_2010'), +('M33.2', 'Polymyositis', 'ICD10_2010'), +('M33.9', 'Dermatopolymyositis, unspecified', 'ICD10_2010'), +('M34', 'Systemic sclerosis', 'ICD10_2010'), +('M34.0', 'Progressive systemic sclerosis', 'ICD10_2010'), +('M34.1', 'CR(E)ST syndrome', 'ICD10_2010'), +('M34.2', 'Systemic sclerosis induced by drugs and chemicals', 'ICD10_2010'), +('M34.8', 'Other forms of systemic sclerosis', 'ICD10_2010'), +('M34.9', 'Systemic sclerosis, unspecified', 'ICD10_2010'), +('M35', 'Other systemic involvement of connective tissue', 'ICD10_2010'), +('M35.0', 'Sicca syndrome [sjogren]', 'ICD10_2010'), +('M35.1', 'Other overlap syndromes', 'ICD10_2010'), +('M35.2', 'Behcet\'s disease', 'ICD10_2010'), +('M35.3', 'Polymyalgia rheumatica', 'ICD10_2010'), +('M35.4', 'Diffuse (eosinophilic) fasciitis', 'ICD10_2010'), +('M35.5', 'Multifocal fibrosclerosis', 'ICD10_2010'), +('M35.6', 'Relapsing panniculitis [Weber-Christian]', 'ICD10_2010'), +('M35.7', 'Hypermobility syndrome', 'ICD10_2010'), +('M35.8', 'Other specified systemic involvement of connective tissue', 'ICD10_2010'), +('M35.9', 'Systemic involvement of connective tissue, unspecified', 'ICD10_2010'), +('M36', 'Systemic disorders of connective tissue in diseases classified elsewhere', 'ICD10_2010'), +('M36.0', 'Dermato(poly)myositis in neoplastic disease', 'ICD10_2010'), +('M36.1', 'Arthropathy in neoplastic disease', 'ICD10_2010'), +('M36.2', 'Haemophilic arthropathy', 'ICD10_2010'), +('M36.3', 'Arthropathy in other blood disorders', 'ICD10_2010'), +('M36.4', 'Arthropathy in hypersensitivity reactions classified elsewhere', 'ICD10_2010'), +('M36.8', 'Systemic disorder of connective tissue in other diseases classified elsewhere', 'ICD10_2010'), +('M40', 'Kyphosis and lordosis', 'ICD10_2010'), +('M40.0', 'Postural kyphosis', 'ICD10_2010'), +('M40.00', 'Postural kyphosis, multiple sites in spine', 'ICD10_2010'), +('M40.01', 'Postural kyphosis, occipito-atlanto-axial region', 'ICD10_2010'), +('M40.02', 'Postural kyphosis, cervical region', 'ICD10_2010'), +('M40.03', 'Postural kyphosis, cervicothoracic region', 'ICD10_2010'), +('M40.04', 'Postural kyphosis, thoracic region', 'ICD10_2010'), +('M40.05', 'Postural kyphosis, thoracolumbar region', 'ICD10_2010'), +('M40.06', 'Postural kyphosis, lumbar region', 'ICD10_2010'), +('M40.07', 'Postural kyphosis, lumbosacral region', 'ICD10_2010'), +('M40.08', 'Postural kyphosis, sacral and sacrococcygeal region', 'ICD10_2010'), +('M40.09', 'Postural kyphosis, site unspecified', 'ICD10_2010'), +('M40.1', 'Other secondary kyphosis', 'ICD10_2010'), +('M40.10', 'Other secondary kyphosis, multiple sites in spine', 'ICD10_2010'), +('M40.11', 'Other secondary kyphosis, occipito-atlanto-axial region', 'ICD10_2010'), +('M40.12', 'Other secondary kyphosis, cervical region', 'ICD10_2010'), +('M40.13', 'Other secondary kyphosis, cervicothoracic region', 'ICD10_2010'), +('M40.14', 'Other secondary kyphosis, thoracic region', 'ICD10_2010'), +('M40.15', 'Other secondary kyphosis, thoracolumbar region', 'ICD10_2010'), +('M40.16', 'Other secondary kyphosis, lumbar region', 'ICD10_2010'), +('M40.17', 'Other secondary kyphosis, lumbosacral region', 'ICD10_2010'), +('M40.18', 'Other secondary kyphosis, sacral and sacrococcygeal region', 'ICD10_2010'), +('M40.19', 'Other secondary kyphosis, site unspecified', 'ICD10_2010'), +('M40.2', 'Other and unspecified kyphosis', 'ICD10_2010'), +('M40.20', 'Other and unspecified kyphosis, multiple sites in spine', 'ICD10_2010'), +('M40.21', 'Other and unspecified kyphosis, occipito-atlanto-axial region', 'ICD10_2010'), +('M40.22', 'Other and unspecified kyphosis, cervical region', 'ICD10_2010'), +('M40.23', 'Other and unspecified kyphosis, cervicothoracic region', 'ICD10_2010'), +('M40.24', 'Other and unspecified kyphosis, thoracic region', 'ICD10_2010'), +('M40.25', 'Other and unspecified kyphosis, thoracolumbar region', 'ICD10_2010'), +('M40.26', 'Other and unspecified kyphosis, lumbar region', 'ICD10_2010'), +('M40.27', 'Other and unspecified kyphosis, lumbosacral region', 'ICD10_2010'), +('M40.28', 'Other and unspecified kyphosis, sacral and sacrococcygeal region', 'ICD10_2010'), +('M40.29', 'Other and unspecified kyphosis, site unspecified', 'ICD10_2010'), +('M40.3', 'Flatback syndrome', 'ICD10_2010'), +('M40.30', 'Flatback syndrome, multiple sites in spine', 'ICD10_2010'), +('M40.31', 'Flatback syndrome, occipito-atlanto-axial region', 'ICD10_2010'), +('M40.32', 'Flatback syndrome, cervical region', 'ICD10_2010'), +('M40.33', 'Flatback syndrome, cervicothoracic region', 'ICD10_2010'), +('M40.34', 'Flatback syndrome, thoracic region', 'ICD10_2010'), +('M40.35', 'Flatback syndrome, thoracolumbar region', 'ICD10_2010'), +('M40.36', 'Flatback syndrome, lumbar region', 'ICD10_2010'), +('M40.37', 'Flatback syndrome, lumbosacral region', 'ICD10_2010'), +('M40.38', 'Flatback syndrome, sacral and sacrococcygeal region', 'ICD10_2010'), +('M40.39', 'Flatback syndrome, site unspecified', 'ICD10_2010'), +('M40.4', 'Other lordosis', 'ICD10_2010'), +('M40.40', 'Other lordosis, multiple sites in spine', 'ICD10_2010'), +('M40.41', 'Other lordosis, occipito-atlanto-axial region', 'ICD10_2010'), +('M40.42', 'Other lordosis, cervical region', 'ICD10_2010'), +('M40.43', 'Other lordosis, cervicothoracic region', 'ICD10_2010'), +('M40.44', 'Other lordosis, thoracic region', 'ICD10_2010'), +('M40.45', 'Other lordosis, thoracolumbar region', 'ICD10_2010'), +('M40.46', 'Other lordosis, lumbar region', 'ICD10_2010'), +('M40.47', 'Other lordosis, lumbosacral region', 'ICD10_2010'), +('M40.48', 'Other lordosis, sacral and sacrococcygeal region', 'ICD10_2010'), +('M40.49', 'Other lordosis, site unspecified', 'ICD10_2010'), +('M40.5', 'Lordosis, unspecified', 'ICD10_2010'), +('M40.50', 'Lordosis unspecified, multiple sites in spine', 'ICD10_2010'), +('M40.51', 'Lordosis, unspecified, occipito-atlanto-axial region', 'ICD10_2010'), +('M40.52', 'Lordosis, unspecified, cervical region', 'ICD10_2010'), +('M40.53', 'Lordosis, unspecified, cervicothoracic region', 'ICD10_2010'), +('M40.54', 'Lordosis, unspecified, thoracic region', 'ICD10_2010'), +('M40.55', 'Lordosis, unspecified, thoracolumbar region', 'ICD10_2010'), +('M40.56', 'Lordosis, unspecified, lumbar region', 'ICD10_2010'); +INSERT INTO `icd10` (`ID_ICD10`, `Diagnosa`, `Versi_ICD10`) VALUES +('M40.57', 'Lordosis, unspecified, lumbosacral region', 'ICD10_2010'), +('M40.58', 'Lordosis, unspecified, sacral and sacrococcygeal region', 'ICD10_2010'), +('M40.59', 'Lordosis, unspecified, site unspecified', 'ICD10_2010'), +('M41', 'Scoliosis', 'ICD10_2010'), +('M41.0', 'Infantile idiopathic scoliosis', 'ICD10_2010'), +('M41.00', 'Infantile idiopathic scoliosis, multiple sites in spine', 'ICD10_2010'), +('M41.01', 'Infantile idiopathic scoliosis, occipito-atlanto-axial region', 'ICD10_2010'), +('M41.02', 'Infantile idiopathic scoliosis , cervical region', 'ICD10_2010'), +('M41.03', 'Infantile idiopathic scoliosis, cervicothoracic region', 'ICD10_2010'), +('M41.04', 'Infantile idiopathic scoliosis, thoracic region', 'ICD10_2010'), +('M41.05', 'Infantile idiopathic scoliosis, thoracolumbar region', 'ICD10_2010'), +('M41.06', 'Infantile idiopathic scoliosis, lumbar region', 'ICD10_2010'), +('M41.07', 'Infantile idiopathic scoliosis, lumbosacral region', 'ICD10_2010'), +('M41.08', 'Infantile idiopathic scoliosis, sacral and sacrococcygeal region', 'ICD10_2010'), +('M41.09', 'Infantile idiopathic scoliosis, site unspecified', 'ICD10_2010'), +('M41.1', 'Juvenile idiopathic scoliosis', 'ICD10_2010'), +('M41.10', 'Juvenile idiopathic scoliosis, multiple sites in spine', 'ICD10_2010'), +('M41.11', 'Juvenile idiopathic scoliosis, occipito-atlanto-axial region', 'ICD10_2010'), +('M41.12', 'Juvenile idiopathic scoliosis, cervical region', 'ICD10_2010'), +('M41.13', 'Juvenile idiopathic scoliosis, cervicothoracic region', 'ICD10_2010'), +('M41.14', 'Juvenile idiopathic scoliosis, thoracic region', 'ICD10_2010'), +('M41.15', 'Juvenile idiopathic scoliosis, thoracolumbar region', 'ICD10_2010'), +('M41.16', 'Juvenile idiopathic scoliosis, lumbar region', 'ICD10_2010'), +('M41.17', 'Juvenile idiopathic scoliosis, lumbosacral region', 'ICD10_2010'), +('M41.18', 'Juvenile idiopathic scoliosis, sacral and sacrococcygeal region', 'ICD10_2010'), +('M41.19', 'Juvenile idiopathic scoliosis, site unspecified', 'ICD10_2010'), +('M41.2', 'Other idiopathic scoliosis', 'ICD10_2010'), +('M41.20', 'Other idiopathic scoliosis, multiple sites in spine', 'ICD10_2010'), +('M41.21', 'Other idiopathic scoliosis, occipito-atlanto-axial region', 'ICD10_2010'), +('M41.22', 'Other idiopathic scoliosis, cervical region', 'ICD10_2010'), +('M41.23', 'Other idiopathic scoliosis, cervicothoracic region', 'ICD10_2010'), +('M41.24', 'Other idiopathic scoliosis, thoracic region', 'ICD10_2010'), +('M41.25', 'Other idiopathic scoliosis, thoracolumbar region', 'ICD10_2010'), +('M41.26', 'Other idiopathic scoliosis, lumbar region', 'ICD10_2010'), +('M41.27', 'Other idiopathic scoliosis, lumbosacral region', 'ICD10_2010'), +('M41.28', 'Other idiopathic scoliosis, sacral and sacrococcygeal region', 'ICD10_2010'), +('M41.29', 'Other idiopathic scoliosis, site unspecified', 'ICD10_2010'), +('M41.3', 'Thoracogenic scoliosis', 'ICD10_2010'), +('M41.30', 'Thoracogenic scoliosis, multiple sites in spine', 'ICD10_2010'), +('M41.31', 'Thoracogenic scoliosis, occipito-atlanto-axial region', 'ICD10_2010'), +('M41.32', 'Thoracogenic scoliosis, cervical region', 'ICD10_2010'), +('M41.33', 'Thoracogenic scoliosis, cervicothoracic region', 'ICD10_2010'), +('M41.34', 'Thoracogenic scoliosis, thoracic region', 'ICD10_2010'), +('M41.35', 'Thoracogenic scoliosis, thoracolumbar region', 'ICD10_2010'), +('M41.36', 'Thoracogenic scoliosis, lumbar region', 'ICD10_2010'), +('M41.37', 'Thoracogenic scoliosis, lumbosacral region', 'ICD10_2010'), +('M41.38', 'Thoracogenic scoliosis, sacral and sacrococcygeal region', 'ICD10_2010'), +('M41.39', 'Thoracogenic scoliosis, site unspecified', 'ICD10_2010'), +('M41.4', 'Neuromuscular scoliosis', 'ICD10_2010'), +('M41.40', 'Neuromuscular scoliosis, multiple sites in spine', 'ICD10_2010'), +('M41.41', 'Neuromuscular scoliosis, occipito-atlanto-axial region', 'ICD10_2010'), +('M41.42', 'Neuromuscular scoliosis, cervical region', 'ICD10_2010'), +('M41.43', 'Neuromuscular scoliosis, cervicothoracic region', 'ICD10_2010'), +('M41.44', 'Neuromuscular scoliosis, thoracic region', 'ICD10_2010'), +('M41.45', 'Neuromuscular scoliosis, thoracolumbar region', 'ICD10_2010'), +('M41.46', 'Neuromuscular scoliosis, lumbar region', 'ICD10_2010'), +('M41.47', 'Neuromuscular scoliosis, lumbosacral region', 'ICD10_2010'), +('M41.48', 'Neuromuscular scoliosis, sacral and sacrococcygeal region', 'ICD10_2010'), +('M41.49', 'Neuromuscular scoliosis, site unspecified', 'ICD10_2010'), +('M41.5', 'Other secondary scoliosis', 'ICD10_2010'), +('M41.50', 'Other secondary scoliosis, multiple sites in spine', 'ICD10_2010'), +('M41.51', 'Other secondary scoliosis, occipito-atlanto-axial region', 'ICD10_2010'), +('M41.52', 'Other secondary scoliosis, cervical region', 'ICD10_2010'), +('M41.53', 'Other secondary scoliosis, cervicothoracic region', 'ICD10_2010'), +('M41.54', 'Other secondary scoliosis, thoracic region', 'ICD10_2010'), +('M41.55', 'Other secondary scoliosis, thoracolumbar region', 'ICD10_2010'), +('M41.56', 'Other secondary scoliosis, lumbar region', 'ICD10_2010'), +('M41.57', 'Other secondary scoliosis, lumbosacral region', 'ICD10_2010'), +('M41.58', 'Other secondary scoliosis, sacral and sacrococcygeal region', 'ICD10_2010'), +('M41.59', 'Other secondary scoliosis, site unspecified', 'ICD10_2010'), +('M41.8', 'Other forms of scoliosis', 'ICD10_2010'), +('M41.80', 'Other forms of scoliosis, multiple sites in spine', 'ICD10_2010'), +('M41.81', 'Other forms of scoliosis, occipito-atlanto-axial region', 'ICD10_2010'), +('M41.82', 'Other forms of scoliosis, cervical region', 'ICD10_2010'), +('M41.83', 'Other forms of scoliosis, cervicothoracic region', 'ICD10_2010'), +('M41.84', 'Other forms of scoliosis, thoracic region', 'ICD10_2010'), +('M41.85', 'Other forms of scoliosis, thoracolumbar region', 'ICD10_2010'), +('M41.86', 'Other forms of scoliosis, lumbar region', 'ICD10_2010'), +('M41.87', 'Other forms of scoliosis, lumbosacral region', 'ICD10_2010'), +('M41.88', 'Other forms of scoliosis, sacral and sacrococcygeal region', 'ICD10_2010'), +('M41.89', 'Other forms of scoliosis, site unspecified', 'ICD10_2010'), +('M41.9', 'Scoliosis, unspecified', 'ICD10_2010'), +('M41.90', 'Scoliosis, multiple sites in spine', 'ICD10_2010'), +('M41.91', 'Scoliosis, unspecified, occipito-atlanto-axial region', 'ICD10_2010'), +('M41.92', 'Scoliosis, unspecified, cervical region', 'ICD10_2010'), +('M41.93', 'Scoliosis, unspecified, cervicothoracic region', 'ICD10_2010'), +('M41.94', 'Scoliosis, unspecified, thoracic region', 'ICD10_2010'), +('M41.95', 'Scoliosis, unspecified, thoracolumbar region', 'ICD10_2010'), +('M41.96', 'Scoliosis, unspecified, lumbar region', 'ICD10_2010'), +('M41.97', 'Scoliosis, unspecified, lumbosacral region', 'ICD10_2010'), +('M41.98', 'Scoliosis, unspecified, sacral and sacrococcygeal region', 'ICD10_2010'), +('M41.99', 'Scoliosis, unspecified, site unspecified', 'ICD10_2010'), +('M42', 'Spinal osteochondrosis', 'ICD10_2010'), +('M42.0', 'Juvenile osteochondrosis of spine', 'ICD10_2010'), +('M42.00', 'Juvenile osteochondrosis of spine, multiple sites in spine', 'ICD10_2010'), +('M42.01', 'Juvenile osteochondrosis of spine, occipito-atlanto-axial region', 'ICD10_2010'), +('M42.02', 'Juvenile osteochondrosis of spine, cervical region', 'ICD10_2010'), +('M42.03', 'Juvenile osteochondrosis of spine, cervicothoracic region', 'ICD10_2010'), +('M42.04', 'Juvenile osteochondrosis of spine, thoracic region', 'ICD10_2010'), +('M42.05', 'Juvenile osteochondrosis of spine, thoracolumbar region', 'ICD10_2010'), +('M42.06', 'Juvenile osteochondrosis of spine, lumbar region', 'ICD10_2010'), +('M42.07', 'Juvenile osteochondrosis of spine, lumbosacral region', 'ICD10_2010'), +('M42.08', 'Juvenile osteochondrosis of spine, sacral and sacrococcygeal region', 'ICD10_2010'), +('M42.09', 'Juvenile osteochondrosis of spine, site unspecified', 'ICD10_2010'), +('M42.1', 'Adult osteochondrosis of spine', 'ICD10_2010'), +('M42.10', 'Adult osteochondrosis of spine, multiple sites in spine', 'ICD10_2010'), +('M42.11', 'Adult osteochondrosis of spine, occipito-atlanto-axial region', 'ICD10_2010'), +('M42.12', 'Adult osteochondrosis of spine, cervical region', 'ICD10_2010'), +('M42.13', 'Adult osteochondrosis of spine, cervicothoracic region', 'ICD10_2010'), +('M42.14', 'Adult osteochondrosis of spine, thoracic region', 'ICD10_2010'), +('M42.15', 'Adult osteochondrosis of spine, thoracolumbar region', 'ICD10_2010'), +('M42.16', 'Adult osteochondrosis of spine, lumbar region', 'ICD10_2010'), +('M42.17', 'Adult osteochondrosis of spine, lumbosacral region', 'ICD10_2010'), +('M42.18', 'Adult osteochondrosis of spine, sacral and sacrococcygeal region', 'ICD10_2010'), +('M42.19', 'Adult osteochondrosis of spine, site unspecified', 'ICD10_2010'), +('M42.9', 'Spinal osteochondrosis, unspecified', 'ICD10_2010'), +('M42.90', 'Spinal osteochondrosis, unspecified, multiple sites in spine', 'ICD10_2010'), +('M42.91', 'Spinal osteochondrosis, unspecified, occipito-atlanto-axial region', 'ICD10_2010'), +('M42.92', 'Spinal osteochondrosis, unspecified, cervical region', 'ICD10_2010'), +('M42.93', 'Spinal osteochondrosis, unspecified, cervicothoracic region', 'ICD10_2010'), +('M42.94', 'Spinal osteochondrosis, unspecified, thoracic region', 'ICD10_2010'), +('M42.95', 'Spinal osteochondrosis, unspecified, thoracolumbar region', 'ICD10_2010'), +('M42.96', 'Spinal osteochondrosis, unspecified, lumbar region', 'ICD10_2010'), +('M42.97', 'Spinal osteochondrosis, unspecified, lumbosacral region', 'ICD10_2010'), +('M42.98', 'Spinal osteochondrosis, unspecified, sacral and sacrococcygeal region', 'ICD10_2010'), +('M42.99', 'Spinal osteochondrosis, unspecified, site unspecified', 'ICD10_2010'), +('M43', 'Other deforming dorsopathies', 'ICD10_2010'), +('M43.0', 'Spondylolysis', 'ICD10_2010'), +('M43.00', 'Spondylolysis, multiple sites in spine', 'ICD10_2010'), +('M43.01', 'Spondylolysis, occipito-atlanto-axial region', 'ICD10_2010'), +('M43.02', 'Spondylolysis, cervical region', 'ICD10_2010'), +('M43.03', 'Spondylolysis, cervicothoracic region', 'ICD10_2010'), +('M43.04', 'Spondylolysis, thoracic region', 'ICD10_2010'), +('M43.05', 'Spondylolysis, thoracolumbar region', 'ICD10_2010'), +('M43.06', 'Spondylolysis, lumbar region', 'ICD10_2010'), +('M43.07', 'Spondylolysis, lumbosacral region', 'ICD10_2010'), +('M43.08', 'Spondylolysis, sacral and sacrococcygeal region', 'ICD10_2010'), +('M43.09', 'Spondylolysis, site unspecified', 'ICD10_2010'), +('M43.1', 'Spondylolisthesis', 'ICD10_2010'), +('M43.10', 'Spondylolisthesis, multiple sites in spine', 'ICD10_2010'), +('M43.11', 'Spondylolisthesis, occipito-atlanto-axial region', 'ICD10_2010'), +('M43.12', 'Spondylolisthesis, cervical region', 'ICD10_2010'), +('M43.13', 'Spondylolisthesis, cervicothoracic region', 'ICD10_2010'), +('M43.14', 'Spondylolisthesis, thoracic region', 'ICD10_2010'), +('M43.15', 'Spondylolisthesis, thoracolumbar region', 'ICD10_2010'), +('M43.16', 'Spondylolisthesis, lumbar region', 'ICD10_2010'), +('M43.17', 'Spondylolisthesis, lumbosacral region', 'ICD10_2010'), +('M43.18', 'Spondylolisthesis, sacral and sacrococcygeal region', 'ICD10_2010'), +('M43.19', 'Spondylolisthesis, site unspecified', 'ICD10_2010'), +('M43.2', 'Other fusion of spine', 'ICD10_2010'), +('M43.20', 'Other fusion of spine, multiple sites in spine', 'ICD10_2010'), +('M43.21', 'Other fusion of spine, occipito-atlanto-axial region', 'ICD10_2010'), +('M43.22', 'Other fusion of spine, cervical region', 'ICD10_2010'), +('M43.23', 'Other fusion of spine, cervicothoracic region', 'ICD10_2010'), +('M43.24', 'Other fusion of spine, thoracic region', 'ICD10_2010'), +('M43.25', 'Other fusion of spine, thoracolumbar region', 'ICD10_2010'), +('M43.26', 'Other fusion of spine, lumbar region', 'ICD10_2010'), +('M43.27', 'Other fusion of spine, lumbosacral region', 'ICD10_2010'), +('M43.28', 'Other fusion of spine, sacral and sacrococcygeal region', 'ICD10_2010'), +('M43.29', 'Other fusion of spine, site unspecified', 'ICD10_2010'), +('M43.3', 'Recurrent atlantoaxial subluxation with myelopathy', 'ICD10_2010'), +('M43.30', 'Recurrent atlantoaxial subluxation with myelopathy, multiple sites in spine', 'ICD10_2010'), +('M43.31', 'Recurrent atlantoaxial subluxation with myelopathy, occipito-atlanto-axial region', 'ICD10_2010'), +('M43.32', 'Recurrent atlantoaxial subluxation with myelopathy, cervical region', 'ICD10_2010'), +('M43.33', 'Recurrent atlantoaxial subluxation with myelopathy, cervicothoracic region', 'ICD10_2010'), +('M43.34', 'Recurrent atlantoaxial subluxation with myelopathy, thoracic region', 'ICD10_2010'), +('M43.35', 'Recurrent atlantoaxial subluxation with myelopathy, thoracolumbar region', 'ICD10_2010'), +('M43.36', 'Recurrent atlantoaxial subluxation with myelopathy, lumbar region', 'ICD10_2010'), +('M43.37', 'Recurrent atlantoaxial subluxation with myelopathy, lumbosacral region', 'ICD10_2010'), +('M43.38', 'Recurrent atlantoaxial subluxation with myelopathy, sacral and sacrococcygeal region', 'ICD10_2010'), +('M43.39', 'Recurrent atlantoaxial subluxation with myelopathy, site unspecified', 'ICD10_2010'), +('M43.4', 'Other recurrent atlantoaxial subluxation', 'ICD10_2010'), +('M43.40', 'Other recurrent atlantoaxial subluxation, multiple sites in spine', 'ICD10_2010'), +('M43.41', 'Other recurrent atlantoaxial subluxation, occipito-atlanto-axial region', 'ICD10_2010'), +('M43.42', 'Other recurrent atlantoaxial subluxation, cervical region', 'ICD10_2010'), +('M43.43', 'Other recurrent atlantoaxial subluxation, cervicothoracic region', 'ICD10_2010'), +('M43.44', 'Other recurrent atlantoaxial subluxation, thoracic region', 'ICD10_2010'), +('M43.45', 'Other recurrent atlantoaxial subluxation, thoracolumbar region', 'ICD10_2010'), +('M43.46', 'Other recurrent atlantoaxial subluxation, lumbar region', 'ICD10_2010'), +('M43.47', 'Other recurrent atlantoaxial subluxation, lumbosacral region', 'ICD10_2010'), +('M43.48', 'Other recurrent atlantoaxial subluxation, sacral and sacrococcygeal region', 'ICD10_2010'), +('M43.49', 'Other recurrent atlantoaxial subluxation, site unspecified', 'ICD10_2010'), +('M43.5', 'Other recurrent vertebral subluxation', 'ICD10_2010'), +('M43.50', 'Other recurrent vertebral subluxation, multiple sites in spine', 'ICD10_2010'), +('M43.51', 'Other recurrent vertebral subluxation, occipito-atlanto-axial region', 'ICD10_2010'), +('M43.52', 'Other recurrent vertebral subluxation, cervical region', 'ICD10_2010'), +('M43.53', 'Other recurrent vertebral subluxation, cervicothoracic region', 'ICD10_2010'), +('M43.54', 'Other recurrent vertebral subluxation, thoracic region', 'ICD10_2010'), +('M43.55', 'Other recurrent vertebral subluxation, thoracolumar region', 'ICD10_2010'), +('M43.56', 'Other recurrent vertebral subluxation, lumbar region', 'ICD10_2010'), +('M43.57', 'Other recurrent vertebral subluxation, lumbosacral region', 'ICD10_2010'), +('M43.58', 'Other recurrent vertebral subluxation, sacral and sacrococcygeal region', 'ICD10_2010'), +('M43.59', 'Other recurrent vertebral subluxation, site unspecified', 'ICD10_2010'), +('M43.6', 'Torticollis', 'ICD10_2010'), +('M43.60', 'Torticollis, multiple sites in spine', 'ICD10_2010'), +('M43.61', 'Torticollis, occipito-atlanto-axial region', 'ICD10_2010'), +('M43.62', 'Torticollis, cervical region', 'ICD10_2010'), +('M43.63', 'Torticollis, cervicothoracic region', 'ICD10_2010'), +('M43.64', 'Torticollis, thoracic region', 'ICD10_2010'), +('M43.65', 'Torticollis, thoracolumar region', 'ICD10_2010'), +('M43.66', 'Torticollis, lumbar region', 'ICD10_2010'), +('M43.67', 'Torticollis, lumbosacral region', 'ICD10_2010'), +('M43.68', 'Torticollis, sacral and sacrococcygeal region', 'ICD10_2010'), +('M43.69', 'Torticollis, site unspecified', 'ICD10_2010'), +('M43.8', 'Other specified deforming dorsopathies', 'ICD10_2010'), +('M43.80', 'Other specified deforming dorsopathies, multiple sites', 'ICD10_2010'), +('M43.81', 'Other specified deforming dorsopathies, occipito and atlanto and axial region', 'ICD10_2010'), +('M43.82', 'Other specified deforming dorsopathies, cervical region', 'ICD10_2010'), +('M43.83', 'Other specified deforming dorsopathies, cervicothoracic region', 'ICD10_2010'), +('M43.84', 'Other specified deforming dorsopathies, thoracic region', 'ICD10_2010'), +('M43.85', 'Other specified deforming dorsopathies, thoracolumbar region', 'ICD10_2010'), +('M43.86', 'Other specified deforming dorsopathies, lumbar region', 'ICD10_2010'), +('M43.87', 'Other specified deforming dorsopathies, lumbosacral region', 'ICD10_2010'), +('M43.88', 'Other specified deforming dorsopathies, sacral and sacrococcygeal region', 'ICD10_2010'), +('M43.89', 'Other specified deforming dorsopathies, site unspecified', 'ICD10_2010'), +('M43.9', 'Deforming dorsopathy, unspecified', 'ICD10_2010'), +('M43.90', 'Deforming dorsopathy, unspecified, multiple sites', 'ICD10_2010'), +('M43.91', 'Deforming dorsopathy, unspecified, occipito-atlanto-axial region', 'ICD10_2010'), +('M43.92', 'Deforming dorsopathy, unspecified, cervical region', 'ICD10_2010'), +('M43.93', 'Deforming dorsopathy, unspecified, cervicothoracic region', 'ICD10_2010'), +('M43.94', 'Deforming dorsopathy, unspecified, thoracic region', 'ICD10_2010'), +('M43.95', 'Deforming dorsopathy, unspecified, thoracolumbar region', 'ICD10_2010'), +('M43.96', 'Deforming dorsopathy, unspecified, lumbar region', 'ICD10_2010'), +('M43.97', 'Deforming dorsopathy, unspecified, lumbosacral region', 'ICD10_2010'), +('M43.98', 'Deforming dorsopathy, unspecified, sacral and sacrococcygeal region', 'ICD10_2010'), +('M43.99', 'Deforming dorsopathy, unspecified, site unspecified', 'ICD10_2010'), +('M45', 'Ankylosing spondylitis', 'ICD10_2010'), +('M45.0', 'Ankylosing spondylitis, multiple sites in spine', 'ICD10_2010'), +('M45.1', 'Ankylosing spondylitis, occipito-atlanto-axial region', 'ICD10_2010'), +('M45.2', 'Ankylosing spondylitis, cervical region', 'ICD10_2010'), +('M45.3', 'Ankylosing spondylitis, cervicothoracic region', 'ICD10_2010'), +('M45.4', 'Ankylosing spondylitis, thoracic region', 'ICD10_2010'), +('M45.5', 'Ankylosing spondylitis, thoracolumbar region', 'ICD10_2010'), +('M45.6', 'Ankylosing spondylitis, lumbar region', 'ICD10_2010'), +('M45.7', 'Ankylosing spondylitis, lumbosacral region', 'ICD10_2010'), +('M45.8', 'Ankylosing spondylitis, sacral and sacrococcygeal region', 'ICD10_2010'), +('M45.9', 'Ankylosing spondylitis, site unspecified', 'ICD10_2010'), +('M46', 'Spinal enthesopathy', 'ICD10_2010'), +('M46.0', 'Spinal enthesopathy', 'ICD10_2010'), +('M46.00', 'Spinal enthesopathy, multiple sites', 'ICD10_2010'), +('M46.01', 'Spinal enthesopathy, occipito-atlanto-axial region', 'ICD10_2010'), +('M46.02', 'Spinal enthesopathy, cervical region', 'ICD10_2010'), +('M46.03', 'Spinal enthesopathy, cervicothoracic region', 'ICD10_2010'), +('M46.04', 'Spinal enthesopathy, thoracic region', 'ICD10_2010'), +('M46.05', 'Spinal enthesopathy, thoracolumbar region', 'ICD10_2010'), +('M46.06', 'Spinal enthesopathy, lumbar region', 'ICD10_2010'), +('M46.07', 'Spinal enthesopathy, lumbosacral region', 'ICD10_2010'), +('M46.08', 'Spinal enthesopathy, sacral and sacrococcygeal region', 'ICD10_2010'), +('M46.09', 'Spinal enthesopathy, site unspecified', 'ICD10_2010'), +('M46.1', 'Sacroiliitis, not elsewhere classified', 'ICD10_2010'), +('M46.10', 'Sacroiliitis, not elsewhere classified, multiple sites', 'ICD10_2010'), +('M46.11', 'Sacroiliitis, not elsewhere classified, occipito-atlanto-axial region', 'ICD10_2010'), +('M46.12', 'Sacroiliitis, not elsewhere classified, cervical region', 'ICD10_2010'), +('M46.13', 'Sacroiliitis, not elsewhere classified, cervicothoracic region', 'ICD10_2010'), +('M46.14', 'Sacroiliitis, not elsewhere classified, thoracic region', 'ICD10_2010'), +('M46.15', 'Sacroiliitis, not elsewhere classified, thoracolumbar region', 'ICD10_2010'), +('M46.16', 'Sacroiliitis, not elsewhere classified, lumbar region', 'ICD10_2010'), +('M46.17', 'Sacroiliitis, not elsewhere classified, lumbosacral region', 'ICD10_2010'), +('M46.18', 'Sacroiliitis, not elsewhere classified, sacral and sacrococcygeal region', 'ICD10_2010'), +('M46.19', 'Sacroiliitis, not elsewhere classified, site unspecified', 'ICD10_2010'), +('M46.2', 'Osteomyelitis of vertebra', 'ICD10_2010'), +('M46.20', 'Osteomyelitis of vertebra, multiple sites', 'ICD10_2010'), +('M46.21', 'Osteomyelitis of vertebra, occipito-atlanto-axial region', 'ICD10_2010'), +('M46.22', 'Osteomyelitis of vertebra, cervical region', 'ICD10_2010'), +('M46.23', 'Osteomyelitis of vertebra, cervicothoracic region', 'ICD10_2010'), +('M46.24', 'Osteomyelitis of vertebra, thoracic region', 'ICD10_2010'), +('M46.25', 'Osteomyelitis of vertebra, thoracolumbar region', 'ICD10_2010'), +('M46.26', 'Osteomyelitis of vertebra, lumbar region', 'ICD10_2010'), +('M46.27', 'Osteomyelitis of vertebra, lumbosacral region', 'ICD10_2010'), +('M46.28', 'Osteomyelitis of vertebra, sacral and sacrococcygeal region', 'ICD10_2010'), +('M46.29', 'Osteomyelitis of vertebra, site unspecified', 'ICD10_2010'), +('M46.3', 'Infection of intervertebral disc (pyogenic)', 'ICD10_2010'), +('M46.30', 'Infection of intervertebral disc (pyogenic), multiple sites', 'ICD10_2010'), +('M46.31', 'Infection of intervertebral disc (pyogenic), occipito-atlanto-axial region', 'ICD10_2010'), +('M46.32', 'Infection of intervertebral disc (pyogenic), cervical region', 'ICD10_2010'), +('M46.33', 'Infection of intervertebral disc (pyogenic), cervicothoracic region', 'ICD10_2010'), +('M46.34', 'Infection of intervertebral disc (pyogenic), thoracic region', 'ICD10_2010'), +('M46.35', 'Infection of intervertebral disc (pyogenic), thoracolumbar region', 'ICD10_2010'), +('M46.36', 'Infection of intervertebral disc (pyogenic), lumbar region', 'ICD10_2010'), +('M46.37', 'Infection of intervertebral disc (pyogenic), lumbosacral region', 'ICD10_2010'), +('M46.38', 'Infection of intervertebral disc (pyogenic), sacral and sacrococcygeal region', 'ICD10_2010'), +('M46.39', 'Infection of intervertebral disc (pyogenic), site unspecified', 'ICD10_2010'), +('M46.4', 'Discitis, unspecified', 'ICD10_2010'), +('M46.40', 'Discitis, unspecified, multiple sites', 'ICD10_2010'), +('M46.41', 'Discitis, unspecified, occipito-atlanto-axial region', 'ICD10_2010'), +('M46.42', 'Discitis, unspecified, cervical region', 'ICD10_2010'), +('M46.43', 'Discitis, unspecified, cervicothoracic region', 'ICD10_2010'), +('M46.44', 'Discitis, unspecified, thoracic region', 'ICD10_2010'), +('M46.45', 'Discitis, unspecified, thoracolumbar region', 'ICD10_2010'), +('M46.46', 'Discitis, unspecified, lumbar region', 'ICD10_2010'), +('M46.47', 'Discitis, unspecified, lumbosacral region', 'ICD10_2010'), +('M46.48', 'Discitis, unspecified, sacral and sacrococcygeal region', 'ICD10_2010'), +('M46.49', 'Discitis, unspecified, site unspecified', 'ICD10_2010'), +('M46.5', 'Other infective spondylopathies', 'ICD10_2010'), +('M46.50', 'Other infective spondylopathies, multiple sites', 'ICD10_2010'), +('M46.51', 'Other infective spondylopathies, occipito-atlanto-axial region', 'ICD10_2010'), +('M46.52', 'Other infective spondylopathies, cervical region', 'ICD10_2010'), +('M46.53', 'Other infective spondylopathies, cervicothoracic region', 'ICD10_2010'), +('M46.54', 'Other infective spondylopathies, thoracic region', 'ICD10_2010'), +('M46.55', 'Other infective spondylopathies, thoracolumbar region', 'ICD10_2010'), +('M46.56', 'Other infective spondylopathies, lumbar region', 'ICD10_2010'), +('M46.57', 'Other infective spondylopathies, lumbosacral region', 'ICD10_2010'), +('M46.58', 'Other infective spondylopathies, sacral and sacrococcygeal region', 'ICD10_2010'), +('M46.59', 'Other infective spondylopathies, site unspecified', 'ICD10_2010'), +('M46.8', 'Other specified inflammatory spondylopathies', 'ICD10_2010'), +('M46.80', 'Other specified inflammatory spondylopathies, multiple sites', 'ICD10_2010'), +('M46.81', 'Other specified inflammatory spondylopathies, occipito-atlanto-axial region', 'ICD10_2010'), +('M46.82', 'Other specified inflammatory spondylopathies, cervical region', 'ICD10_2010'), +('M46.83', 'Other specified inflammatory spondylopathies, cervicothoracic region', 'ICD10_2010'), +('M46.84', 'Other specified inflammatory spondylopathies, thoracic region', 'ICD10_2010'), +('M46.85', 'Other specified inflammatory spondylopathies, thoracolumbar region', 'ICD10_2010'), +('M46.86', 'Other specified inflammatory spondylopathies, lumbar region', 'ICD10_2010'), +('M46.87', 'Other specified inflammatory spondylopathies, lumbosacral region', 'ICD10_2010'), +('M46.88', 'Other specified inflammatory spondylopathies, sacral and sacrococcygeal region', 'ICD10_2010'), +('M46.89', 'Other specified inflammatory spondylopathies, site unspecified', 'ICD10_2010'), +('M46.9', 'Inflammatory spondylopathy, unspecified', 'ICD10_2010'), +('M46.90', 'Inflammatory spondylopathy, unspecified, multiple sites', 'ICD10_2010'), +('M46.91', 'Inflammatory spondylopathy, unspecified, occipito-atlanto-axial region', 'ICD10_2010'), +('M46.92', 'Inflammatory spondylopathy, unspecified, cervical region', 'ICD10_2010'), +('M46.93', 'Inflammatory spondylopathy, unspecified, cervicothoracic region', 'ICD10_2010'), +('M46.94', 'Inflammatory spondylopathy, unspecified, thoracic region', 'ICD10_2010'), +('M46.95', 'Inflammatory spondylopathy, unspecified, thoracolumbar region', 'ICD10_2010'), +('M46.96', 'Inflammatory spondylopathy, unspecified, lumbar region', 'ICD10_2010'), +('M46.97', 'Inflammatory spondylopathy, unspecified, lumbosacral region', 'ICD10_2010'), +('M46.98', 'Inflammatory spondylopathy, unspecified, sacral and sacrococcygeal region', 'ICD10_2010'), +('M46.99', 'Inflammatory spondylopathy, unspecified, site unspecified', 'ICD10_2010'), +('M47', 'Spondylosis', 'ICD10_2010'), +('M47.0', 'Ant spinal and vertebral artery compression syndromes, multiple sites', 'ICD10_2010'), +('M47.00', 'Anterior spinal and vertebral artery compression syndromes, multiple sites', 'ICD10_2010'), +('M47.01', 'Anterior spinal and vertebral artery compression syndromes, occipito-atlanto-axial region', 'ICD10_2010'), +('M47.02', 'Anterior spinal and vertebral artery compression syndromes, cervical region', 'ICD10_2010'), +('M47.03', 'Anterior spinal and vertebral artery compression syndromes, cervicothoracic region', 'ICD10_2010'), +('M47.04', 'Anterior spinal and vertebral artery compression syndromes, thoracic region', 'ICD10_2010'), +('M47.05', 'Anterior spinal and vertebral artery compression syndromes, thoracolumbar region', 'ICD10_2010'), +('M47.06', 'Anterior spinal and vertebral artery compression syndromes, lumbar region', 'ICD10_2010'), +('M47.07', 'Anterior spinal and vertebral artery compression syndromes, lumbosacral region', 'ICD10_2010'), +('M47.08', 'Anterior spinal and vertebral artery compression syndromes, sacral and sacrococcygeal region', 'ICD10_2010'), +('M47.09', 'Anterior spinal and vertebral artery compression syndromes, site unspecified', 'ICD10_2010'), +('M47.1', 'Ant spinal and vertebral artery compression syndromes, occipito-atlanto-axial region', 'ICD10_2010'), +('M47.10', 'Other spondylosis with myelopathy, multiple sites', 'ICD10_2010'), +('M47.11', 'Other spondylosis with myelopathy, occipito-atlanto-axial region', 'ICD10_2010'), +('M47.12', 'Other spondylosis with myelopathy, cervical region', 'ICD10_2010'), +('M47.13', 'Other spondylosis with myelopathy, cervicothoracic region', 'ICD10_2010'), +('M47.14', 'Other spondylosis with myelopathy, thoracic region', 'ICD10_2010'), +('M47.15', 'Other spondylosis with myelopathy, thoracolumbar region', 'ICD10_2010'), +('M47.16', 'Other spondylosis with myelopathy, lumbar region', 'ICD10_2010'), +('M47.17', 'Other spondylosis with myelopathy, lumbosacral region', 'ICD10_2010'), +('M47.18', 'Other spondylosis with myelopathy, sacral and sacrococcygeal region', 'ICD10_2010'), +('M47.19', 'Other spondylosis with myelopathy, site unspecified', 'ICD10_2010'), +('M47.2', 'Other spondylosis with radiculopathy', 'ICD10_2010'), +('M47.20', 'Other spondylosis with radiculopathy, multiple sites', 'ICD10_2010'), +('M47.21', 'Other spondylosis with radiculopathy, occipito-atlanto-axial region', 'ICD10_2010'), +('M47.22', 'Other spondylosis with radiculopathy, cervical region', 'ICD10_2010'), +('M47.23', 'Other spondylosis with radiculopathy, cervicothoracic region', 'ICD10_2010'), +('M47.24', 'Other spondylosis with radiculopathy, thoracic region', 'ICD10_2010'), +('M47.25', 'Other spondylosis with radiculopathy, thoracolumbar region', 'ICD10_2010'), +('M47.26', 'Other spondylosis with radiculopathy, lumbar region', 'ICD10_2010'), +('M47.27', 'Other spondylosis with radiculopathy, lumbosacral region', 'ICD10_2010'), +('M47.28', 'Other spondylosis with radiculopathy, sacral and sacrococcygeal region', 'ICD10_2010'), +('M47.29', 'Other spondylosis with radiculopathy, site unspecified', 'ICD10_2010'), +('M47.3', 'Ant spinal and vertebral artery compression syndromes, cervicothoracic region', 'ICD10_2010'), +('M47.4', 'Ant spinal and vertebral artery compression syndromes, thoracic region', 'ICD10_2010'), +('M47.5', 'Ant spinal and vertebral artery compression syndromes, thoracolumbar region', 'ICD10_2010'), +('M47.6', 'Ant spinal and vertebral artery compression syndromes, lumbar region', 'ICD10_2010'), +('M47.7', 'Ant spinal and vertebral artery compression syndromes, lumbosacral region', 'ICD10_2010'), +('M47.8', 'Ant spinal and vertebral artery compression syndromes, sacral and sacrococcygeal region', 'ICD10_2010'), +('M47.80', 'Other spondylosis, multiple sites', 'ICD10_2010'), +('M47.81', 'Other spondylosis, occipito-atlanto-axial region', 'ICD10_2010'), +('M47.82', 'Other spondylosis, cervical region', 'ICD10_2010'), +('M47.83', 'Other spondylosis, cervicothoracic region', 'ICD10_2010'), +('M47.84', 'Other spondylosis, thoracic region', 'ICD10_2010'), +('M47.85', 'Other spondylosis, thoracolumbar region', 'ICD10_2010'), +('M47.86', 'Other spondylosis, lumbar region', 'ICD10_2010'), +('M47.87', 'Other spondylosis, lumbosacral region', 'ICD10_2010'), +('M47.88', 'Other spondylosis, sacral and sacrococcygeal region', 'ICD10_2010'), +('M47.89', 'Other spondylosis, site unspecified', 'ICD10_2010'), +('M47.9', 'Ant spinal and vertebral artery compression syndromes, site unspecified', 'ICD10_2010'), +('M47.90', 'Spondylosis, unspecified, multiple sites', 'ICD10_2010'), +('M47.91', 'Spondylosis, unspecified, occipito-atlanto-axial region', 'ICD10_2010'), +('M47.92', 'Spondylosis, unspecified, cervical region', 'ICD10_2010'), +('M47.93', 'Spondylosis, unspecified, cervicothoracic region', 'ICD10_2010'), +('M47.94', 'Spondylosis, unspecified, thoracic region', 'ICD10_2010'), +('M47.95', 'Spondylosis, unspecified, thoracolumbar region', 'ICD10_2010'), +('M47.96', 'Spondylosis, unspecified, lumbar region', 'ICD10_2010'), +('M47.97', 'Spondylosis, unspecified, lumbosacral region', 'ICD10_2010'), +('M47.98', 'Spondylosis, unspecified, sacral and sacrococcygeal region', 'ICD10_2010'), +('M47.99', 'Spondylosis, unspecified, site unspecified', 'ICD10_2010'), +('M48', 'Other spondylopathies', 'ICD10_2010'), +('M48.0', 'Spinal stenosis', 'ICD10_2010'), +('M48.00', 'Spinal stenosis, multiple sites', 'ICD10_2010'), +('M48.01', 'Spinal stenosis, occipito-atlanto-axial region', 'ICD10_2010'), +('M48.02', 'Spinal stenosis, cervical region', 'ICD10_2010'), +('M48.03', 'Spinal stenosis, cervicothoracic region', 'ICD10_2010'), +('M48.04', 'Spinal stenosis, thoracic region', 'ICD10_2010'), +('M48.05', 'Spinal stenosis, thoracolumbar region', 'ICD10_2010'), +('M48.06', 'Spinal stenosis, lumbar region', 'ICD10_2010'), +('M48.07', 'Spinal stenosis, lumbosacral region', 'ICD10_2010'), +('M48.08', 'Spinal stenosis, sacral and sacrococcygeal region', 'ICD10_2010'), +('M48.09', 'Spinal stenosis, site unspecified', 'ICD10_2010'), +('M48.1', 'Ankylosing hyperostosis [forestier]', 'ICD10_2010'), +('M48.10', 'Ankylosing hyperostosis [forestier], multiple sites', 'ICD10_2010'), +('M48.11', 'Ankylosing hyperostosis [forestier], occipito-atlanto-axial region', 'ICD10_2010'), +('M48.12', 'Ankylosing hyperostosis [forestier], cervical region', 'ICD10_2010'), +('M48.13', 'Ankylosing hyperostosis [forestier], cervicothoracic region', 'ICD10_2010'), +('M48.14', 'Ankylosing hyperostosis [forestier], thoracic region', 'ICD10_2010'), +('M48.15', 'Ankylosing hyperostosis [forestier], thoracolumbar region', 'ICD10_2010'), +('M48.16', 'Ankylosing hyperostosis [forestier], lumbar region', 'ICD10_2010'), +('M48.17', 'Ankylosing hyperostosis [forestier], lumbosacral region', 'ICD10_2010'), +('M48.18', 'Ankylosing hyperostosis [forestier], sacral and sacrococcygeal region', 'ICD10_2010'), +('M48.19', 'Ankylosing hyperostosis [forestier], site unspecified', 'ICD10_2010'), +('M48.2', 'Kissing spine', 'ICD10_2010'), +('M48.20', 'Kissing spine, multiple sites', 'ICD10_2010'), +('M48.21', 'Kissing spine, occipito-atlanto-axial region', 'ICD10_2010'), +('M48.22', 'Kissing spine, cervical region', 'ICD10_2010'), +('M48.23', 'Kissing spine, cervicothoracic region', 'ICD10_2010'), +('M48.24', 'Kissing spine, thoracic region', 'ICD10_2010'), +('M48.25', 'Kissing spine, thoracolumbar region', 'ICD10_2010'), +('M48.26', 'Kissing spine, lumbar region', 'ICD10_2010'), +('M48.27', 'Kissing spine, lumbosacral region', 'ICD10_2010'), +('M48.28', 'Kissing spine, sacral and sacrococcygeal region', 'ICD10_2010'), +('M48.29', 'Kissing spine, site unspecified', 'ICD10_2010'), +('M48.3', 'Traumatic spondylopathy', 'ICD10_2010'), +('M48.30', 'Traumatic spondylopathy, multiple sites', 'ICD10_2010'), +('M48.31', 'Traumatic spondylopathy, occipito-atlanto-axial region', 'ICD10_2010'), +('M48.32', 'Traumatic spondylopathy, cervical region', 'ICD10_2010'), +('M48.33', 'Traumatic spondylopathy, cervicothoracic region', 'ICD10_2010'), +('M48.34', 'Traumatic spondylopathy, thoracic region', 'ICD10_2010'), +('M48.35', 'Traumatic spondylopathy, thoracolumbar region', 'ICD10_2010'), +('M48.36', 'Traumatic spondylopathy, lumbar region', 'ICD10_2010'), +('M48.37', 'Traumatic spondylopathy, lumbosacral region', 'ICD10_2010'), +('M48.38', 'Traumatic spondylopathy, sacral and sacrococcygeal region', 'ICD10_2010'), +('M48.39', 'Traumatic spondylopathy, site unspecified', 'ICD10_2010'), +('M48.4', 'Fatigue fracture of vertebra', 'ICD10_2010'), +('M48.40', 'Fatigue fracture of vertebra, multiple sites', 'ICD10_2010'), +('M48.41', 'Fatigue fracture of vertebra, occipito-atlanto-axial region', 'ICD10_2010'), +('M48.42', 'Fatigue fracture of vertebra, cervical region', 'ICD10_2010'), +('M48.43', 'Fatigue fracture of vertebra, cervicothoracic region', 'ICD10_2010'), +('M48.44', 'Fatigue fracture of vertebra, thoracic region', 'ICD10_2010'), +('M48.45', 'Fatigue fracture of vertebra, thoracolumbar region', 'ICD10_2010'), +('M48.46', 'Fatigue fracture of vertebra, lumbar region', 'ICD10_2010'), +('M48.47', 'Fatigue fracture of vertebra, lumbosacral region', 'ICD10_2010'), +('M48.48', 'Fatigue fracture of vertebra, sacral and sacrococcygeal region', 'ICD10_2010'), +('M48.49', 'Fatigue fracture of vertebra, site unspecified', 'ICD10_2010'), +('M48.5', 'Collapsed vertebra, not elsewhere classified', 'ICD10_2010'), +('M48.50', 'Collapsed vertebra, not elsewhere classified, multiple sites', 'ICD10_2010'), +('M48.51', 'Collapsed vertebra, not elsewhere classified, occipito-atlanto-axial region', 'ICD10_2010'), +('M48.52', 'Collapsed vertebra, not elsewhere classified, cervical region', 'ICD10_2010'), +('M48.53', 'Collapsed vertebra, not elsewhere classified, cervicothoracic region', 'ICD10_2010'), +('M48.54', 'Collapsed vertebra, not elsewhere classified, thoracic region', 'ICD10_2010'), +('M48.55', 'Collapsed vertebra, not elsewhere classified, thoracolumbar region', 'ICD10_2010'), +('M48.56', 'Collapsed vertebra, not elsewhere classified, lumbar region', 'ICD10_2010'), +('M48.57', 'Collapsed vertebra, not elsewhere classified, lumbosacral region', 'ICD10_2010'), +('M48.58', 'Collapsed vertebra, not elsewhere classified, sacral and sacrococcygeal region', 'ICD10_2010'), +('M48.59', 'Collapsed vertebra, not elsewhere classified, site unspecified', 'ICD10_2010'), +('M48.8', 'Other specified spondylopathies', 'ICD10_2010'), +('M48.80', 'Other specified spondylopathies, multiple sites', 'ICD10_2010'), +('M48.81', 'Other specified spondylopathies, occipito-atlanto-axial region', 'ICD10_2010'), +('M48.82', 'Other specified spondylopathies, cervical region', 'ICD10_2010'), +('M48.83', 'Other specified spondylopathies, cervicothoracic region', 'ICD10_2010'), +('M48.84', 'Other specified spondylopathies, thoracic region', 'ICD10_2010'), +('M48.85', 'Other specified spondylopathies, thoracolumbar region', 'ICD10_2010'), +('M48.86', 'Other specified spondylopathies, lumbar region', 'ICD10_2010'), +('M48.87', 'Other specified spondylopathies, lumbosacral region', 'ICD10_2010'), +('M48.88', 'Other specified spondylopathies, sacral and sacrococcygeal region', 'ICD10_2010'), +('M48.89', 'Other specified spondylopathies, site unspecified', 'ICD10_2010'), +('M48.9', 'Spondylopathy, unspecified', 'ICD10_2010'), +('M48.90', 'Spondylopathy, unspecified, multiple sites', 'ICD10_2010'), +('M48.91', 'Spondylopathy, unspecified, occipito-atlanto-axial region', 'ICD10_2010'), +('M48.92', 'Spondylopathy, unspecified, cervical region', 'ICD10_2010'), +('M48.93', 'Spondylopathy, unspecified, cervicothoracic region', 'ICD10_2010'), +('M48.94', 'Spondylopathy, unspecified, thoracic region', 'ICD10_2010'), +('M48.95', 'Spondylopathy, unspecified, thoracolumbar region', 'ICD10_2010'), +('M48.96', 'Spondylopathy, unspecified, lumbar region', 'ICD10_2010'), +('M48.97', 'Spondylopathy, unspecified, lumbosacral region', 'ICD10_2010'), +('M48.98', 'Spondylopathy, unspecified, sacral and sacrococcygeal region', 'ICD10_2010'), +('M48.99', 'Spondylopathy, unspecified, site unspecified', 'ICD10_2010'), +('M49', 'Spondylopathies in diseases classified elsewhere', 'ICD10_2010'), +('M49.0', 'Tuberculosis of spine', 'ICD10_2010'), +('M49.00', 'Tuberculosis of spine, multiple sites', 'ICD10_2010'), +('M49.01', 'Tuberculosis of spine, occipito-atlanto-axial region', 'ICD10_2010'), +('M49.02', 'Tuberculosis of spine, cervical region', 'ICD10_2010'), +('M49.03', 'Tuberculosis of spine, cervicothoracic region', 'ICD10_2010'), +('M49.04', 'Tuberculosis of spine, thoracic region', 'ICD10_2010'), +('M49.05', 'Tuberculosis of spine, thoracolumbar region', 'ICD10_2010'), +('M49.06', 'Tuberculosis of spine, lumbar region', 'ICD10_2010'), +('M49.07', 'Tuberculosis of spine, lumbosacral region', 'ICD10_2010'), +('M49.08', 'Tuberculosis of spine, sacral and sacrococcygeal region', 'ICD10_2010'), +('M49.09', 'Tuberculosis of spine, site unspecified', 'ICD10_2010'), +('M49.1', 'Brucella spondylitis', 'ICD10_2010'), +('M49.10', 'Brucella spondylitis, multiple sites', 'ICD10_2010'), +('M49.11', 'Brucella spondylitis, occipito-atlanto-axial region', 'ICD10_2010'), +('M49.12', 'Brucella spondylitis, cervical region', 'ICD10_2010'), +('M49.13', 'Brucella spondylitis, cervicothoracic region', 'ICD10_2010'), +('M49.14', 'Brucella spondylitis, thoracic region', 'ICD10_2010'), +('M49.15', 'Brucella spondylitis, thoracolumbar region', 'ICD10_2010'), +('M49.16', 'Brucella spondylitis, lumbar region', 'ICD10_2010'), +('M49.17', 'Brucella spondylitis, lumbosacral region', 'ICD10_2010'), +('M49.18', 'Brucella spondylitis, sacral and sacrococcygeal region', 'ICD10_2010'), +('M49.19', 'Brucella spondylitis, site unspecified', 'ICD10_2010'), +('M49.2', 'Enterobacterial spondylitis', 'ICD10_2010'), +('M49.20', 'Enterobacterial spondylitis, multiple sites', 'ICD10_2010'), +('M49.21', 'Enterobacterial spondylitis, occipito-atlanto-axial region', 'ICD10_2010'), +('M49.22', 'Enterobacterial spondylitis, cervical region', 'ICD10_2010'), +('M49.23', 'Enterobacterial spondylitis, cervicothoracic region', 'ICD10_2010'), +('M49.24', 'Enterobacterial spondylitis, thoracic region', 'ICD10_2010'), +('M49.25', 'Enterobacterial spondylitis, thoracolumbar region', 'ICD10_2010'), +('M49.26', 'Enterobacterial spondylitis, lumbar region', 'ICD10_2010'), +('M49.27', 'Enterobacterial spondylitis, lumbosacral region', 'ICD10_2010'), +('M49.28', 'Enterobacterial spondylitis, sacral and sacrococcygeal region', 'ICD10_2010'), +('M49.29', 'Enterobacterial spondylitis, site unspecified', 'ICD10_2010'), +('M49.3', 'Spondylopathy in other infectious and parasitic disease classified elsewhere', 'ICD10_2010'), +('M49.30', 'Spondylopathy in other infectious and parasitic disease, multiple sites', 'ICD10_2010'), +('M49.31', 'Spondylopathy in other infectious and parasitic disease, occipito-atlanto-axial region', 'ICD10_2010'), +('M49.32', 'Spondylopathy in other infectious and parasitic disease, cervical region', 'ICD10_2010'), +('M49.33', 'Spondylopathy in other infectious and parasitic disease, cervicothoracic region', 'ICD10_2010'), +('M49.34', 'Spondylopathy in other infectious and parasitic disease, thoracic region', 'ICD10_2010'), +('M49.35', 'Spondylopathy in other infectious and parasitic disease, thoracolumbar region', 'ICD10_2010'), +('M49.36', 'Spondylopathy in other infectious and parasitic disease, lumbar region', 'ICD10_2010'), +('M49.37', 'Spondylopathy in other infectious and parasitic disease, lumbosacral region', 'ICD10_2010'), +('M49.38', 'Spondylopathy in other infectious and parasitic disease, sacral and sacrococcygeal region', 'ICD10_2010'), +('M49.39', 'Spondylopathy in other infectious and parasitic disease, site unspecified', 'ICD10_2010'), +('M49.4', 'Neuropathic spondylopathy', 'ICD10_2010'), +('M49.40', 'Neuropathic spondylopathy, multiple sites', 'ICD10_2010'), +('M49.41', 'Neuropathic spondylopathy, occipito-atlanto-axial region', 'ICD10_2010'), +('M49.42', 'Neuropathic spondylopathy, cervical region', 'ICD10_2010'), +('M49.43', 'Neuropathic spondylopathy, cervicothoracic region', 'ICD10_2010'), +('M49.44', 'Neuropathic spondylopathy, thoracic region', 'ICD10_2010'), +('M49.45', 'Neuropathic spondylopathy, thoracolumbar region', 'ICD10_2010'), +('M49.46', 'Neuropathic spondylopathy, lumbar region', 'ICD10_2010'), +('M49.47', 'Neuropathic spondylopathy, lumbosacral region', 'ICD10_2010'), +('M49.48', 'Neuropathic spondylopathy, sacral and sacrococcygeal region', 'ICD10_2010'), +('M49.49', 'Neuropathic spondylopathy, site unspecified', 'ICD10_2010'), +('M49.5', 'Collapsed vertebra in diseases classified elsewhere', 'ICD10_2010'), +('M49.50', 'Collapsed vertebra in diseases classified elsewhere, multiple sites', 'ICD10_2010'), +('M49.51', 'Collapsed vertebra in diseases classified elsewhere, occipito-atlanto-axial region', 'ICD10_2010'), +('M49.52', 'Collapsed vertebra in diseases classified elsewhere, cervical region', 'ICD10_2010'), +('M49.53', 'Collapsed vertebra in diseases classified elsewhere, cervicothoracic region', 'ICD10_2010'), +('M49.54', 'Collapsed vertebra in diseases classified elsewhere, thoracic region', 'ICD10_2010'), +('M49.55', 'Collapsed vertebra in diseases classified elsewhere, thoracolumbar region', 'ICD10_2010'), +('M49.56', 'Collapsed vertebra in diseases classified elsewhere, lumbar region', 'ICD10_2010'), +('M49.57', 'Collapsed vertebra in diseases classified elsewhere, lumbosacral region', 'ICD10_2010'), +('M49.58', 'Collapsed vertebra in diseases classified elsewhere, sacral and sacrococcygeal region', 'ICD10_2010'), +('M49.59', 'Collapsed vertebra in diseases classified elsewhere, site unspecified', 'ICD10_2010'), +('M49.8', 'Spondylopathy in other diseases classified elsewhere', 'ICD10_2010'), +('M49.80', 'Spondylopathy in other diseases classified elsewhere, multiple sites', 'ICD10_2010'), +('M49.81', 'Spondylopathy in other diseases classified elsewhere, occipito-atlanto-axial region', 'ICD10_2010'), +('M49.82', 'Spondylopathy in other diseases classified elsewhere, cervical region', 'ICD10_2010'), +('M49.83', 'Spondylopathy in other diseases classified elsewhere, cervicothoracic region', 'ICD10_2010'), +('M49.84', 'Spondylopathy in other diseases classified elsewhere, thoracic region', 'ICD10_2010'), +('M49.85', 'Spondylopathy in other diseases classified elsewhere, thoracolumbar region', 'ICD10_2010'), +('M49.86', 'Spondylopathy in other diseases classified elsewhere, lumbar region', 'ICD10_2010'), +('M49.87', 'Spondylopathy in other diseases classified elsewhere, lumbosacral region', 'ICD10_2010'), +('M49.88', 'Spondylopathy in other diseases classified elsewhere, sacral and sacrococcygeal region', 'ICD10_2010'), +('M49.89', 'Spondylopathy in other diseases classified elsewhere, site unspecified', 'ICD10_2010'), +('M50', 'Cervical disc disorders', 'ICD10_2010'), +('M50.0', 'Cervical disc disorder with myelopathy', 'ICD10_2010'), +('M50.1', 'Cervical disc disorder with radiculopathy', 'ICD10_2010'), +('M50.2', 'Other cervical disc displacement', 'ICD10_2010'), +('M50.3', 'Other cervical disc degeneration', 'ICD10_2010'), +('M50.8', 'Other cervical disc disorders', 'ICD10_2010'), +('M50.9', 'Cervical disc disorder, unspecified', 'ICD10_2010'), +('M51', 'Other intervertebral disc disorders', 'ICD10_2010'), +('M51.0', 'Lumbar and other intervertebral disc disorder with mylopathy', 'ICD10_2010'), +('M51.1', 'Lumbar and other intervertebral disc disorders with radiculopathy', 'ICD10_2010'), +('M51.2', 'Other specified intervertebral disc displacement', 'ICD10_2010'), +('M51.3', 'Other specified intervertebral disc degeneration', 'ICD10_2010'), +('M51.4', 'Schmorl\'s nodes', 'ICD10_2010'), +('M51.8', 'Other specified intervertebral disc disorders', 'ICD10_2010'), +('M51.9', 'Intervertebral disc disorder, unspecified', 'ICD10_2010'), +('M53', 'Other dorsopathies, not elsewhere classified', 'ICD10_2010'), +('M53.0', 'Cervicocranial syndrome', 'ICD10_2010'), +('M53.00', 'Cervicocranial syndrome, multiple sites', 'ICD10_2010'), +('M53.01', 'Cervicocranial syndrome, occipito-atlanto-axial region', 'ICD10_2010'), +('M53.02', 'Cervicocranial syndrome, cervical region', 'ICD10_2010'), +('M53.03', 'Cervicocranial syndrome, cervicothoracic region', 'ICD10_2010'), +('M53.04', 'Cervicocranial syndrome, thoracic region', 'ICD10_2010'), +('M53.05', 'Cervicocranial syndrome, thoracolumbar region', 'ICD10_2010'), +('M53.06', 'Cervicocranial syndrome, lumbar region', 'ICD10_2010'), +('M53.07', 'Cervicocranial syndrome, lumbosacral region', 'ICD10_2010'), +('M53.08', 'Cervicocranial syndrome, sacral and sacrococcygeal region', 'ICD10_2010'), +('M53.09', 'Cervicocranial syndrome, site unspecified', 'ICD10_2010'), +('M53.1', 'Cervicobrachial syndrome', 'ICD10_2010'), +('M53.10', 'Cervicobrachial syndrome, multiple sites', 'ICD10_2010'), +('M53.11', 'Cervicobrachial syndrome, occipito-atlanto-axial region', 'ICD10_2010'), +('M53.12', 'Cervicobrachial syndrome, cervical region', 'ICD10_2010'), +('M53.13', 'Cervicobrachial syndrome, cervicothoracic region', 'ICD10_2010'), +('M53.14', 'Cervicobrachial syndrome, thoracic region', 'ICD10_2010'), +('M53.15', 'Cervicobrachial syndrome, thoracolumbar region', 'ICD10_2010'), +('M53.16', 'Cervicobrachial syndrome, lumbar region', 'ICD10_2010'), +('M53.17', 'Cervicobrachial syndrome, lumbosacral region', 'ICD10_2010'), +('M53.18', 'Cervicobrachial syndrome, sacral and sacrococcygeal region', 'ICD10_2010'), +('M53.19', 'Cervicobrachial syndrome, site unspecified', 'ICD10_2010'), +('M53.2', 'Spinal instabilities', 'ICD10_2010'), +('M53.20', 'Spinal instabilities, multiple sites', 'ICD10_2010'), +('M53.21', 'Spinal instabilities, occipito-atlanto-axial region', 'ICD10_2010'), +('M53.22', 'Spinal instabilities, cervical region', 'ICD10_2010'), +('M53.23', 'Spinal instabilities, cervicothoracic region', 'ICD10_2010'), +('M53.24', 'Spinal instabilities, thoracic region', 'ICD10_2010'), +('M53.25', 'Spinal instabilities, thoracolumbar region', 'ICD10_2010'), +('M53.26', 'Spinal instabilities, lumbar region', 'ICD10_2010'), +('M53.27', 'Spinal instabilities, lumbosacral region', 'ICD10_2010'), +('M53.28', 'Spinal instabilities, sacral and sacrococcygeal region', 'ICD10_2010'), +('M53.29', 'Spinal instabilities, site unspecified', 'ICD10_2010'), +('M53.3', 'Sacrococcygeal disorders, not elsewhere classified', 'ICD10_2010'), +('M53.30', 'Sacrococcygeal disorders, not elsewhere classified, multiple sites', 'ICD10_2010'), +('M53.31', 'Sacrococcygeal disorders, not elsewhere classified, occipito-atlanto-axial region', 'ICD10_2010'), +('M53.32', 'Sacrococcygeal disorders, not elsewhere classified, cervical region', 'ICD10_2010'), +('M53.33', 'Sacrococcygeal disorders, not elsewhere classified, cervicothoracic region', 'ICD10_2010'), +('M53.34', 'Sacrococcygeal disorders, not elsewhere classified, thoracic region', 'ICD10_2010'), +('M53.35', 'Sacrococcygeal disorders, not elsewhere classified, thoracolumbar region', 'ICD10_2010'), +('M53.36', 'Sacrococcygeal disorders, not elsewhere classified, lumbosacral region', 'ICD10_2010'), +('M53.37', 'Sacrococcygeal disorders, not elsewhere classified, sacral and sacrococcygeal region', 'ICD10_2010'), +('M53.38', 'Sacrococcygeal disorders, not elsewhere classified, sacral and sacrococcygeal region', 'ICD10_2010'), +('M53.39', 'Sacrococcygeal disorders, not elsewhere classified, site unspecified', 'ICD10_2010'), +('M53.8', 'Other specified dorsopathies', 'ICD10_2010'), +('M53.80', 'Other specified dorsopathies, multiple sites', 'ICD10_2010'), +('M53.81', 'Other specified dorsopathies, occipito-atlanto-axial region', 'ICD10_2010'), +('M53.82', 'Other specified dorsopathies, cervical region', 'ICD10_2010'), +('M53.83', 'Other specified dorsopathies, cervicothoracic region', 'ICD10_2010'), +('M53.84', 'Other specified dorsopathies, thoracic region', 'ICD10_2010'), +('M53.85', 'Other specified dorsopathies, thoracolumbar region', 'ICD10_2010'), +('M53.86', 'Other specified dorsopathies, lumbar region', 'ICD10_2010'), +('M53.87', 'Other specified dorsopathies, lumbosacral region', 'ICD10_2010'), +('M53.88', 'Other specified dorsopathies, sacral and sacrococcygeal region', 'ICD10_2010'), +('M53.89', 'Other specified dorsopathies, site unspecified', 'ICD10_2010'), +('M53.9', 'Dorsopathy, unspecified', 'ICD10_2010'), +('M53.90', 'Dorsopathy, unspecified, multiple sites', 'ICD10_2010'), +('M53.91', 'Dorsopathy, unspecified, occipito-atlanto-axial region', 'ICD10_2010'), +('M53.92', 'Dorsopathy, unspecified, cervical region', 'ICD10_2010'), +('M53.93', 'Dorsopathy, unspecified, cervicothoracic region', 'ICD10_2010'), +('M53.94', 'Dorsopathy, unspecified, thoracic region', 'ICD10_2010'), +('M53.95', 'Dorsopathy, unspecified, thoracolumbar region', 'ICD10_2010'), +('M53.96', 'Dorsopathy, unspecified, lumbar region', 'ICD10_2010'), +('M53.97', 'Dorsopathy, unspecified, lumbosacral region', 'ICD10_2010'), +('M53.98', 'Dorsopathy, unspecified, sacral and sacrococcygeal region', 'ICD10_2010'), +('M53.99', 'Dorsopathy, unspecified, site unspecified', 'ICD10_2010'), +('M54', 'Dorsalgia', 'ICD10_2010'), +('M54.0', 'Panniculitis affecting regions of neck and back', 'ICD10_2010'), +('M54.00', 'Panniculitis affecting regions of neck and back, multiple sites', 'ICD10_2010'), +('M54.01', 'Panniculitis affecting regions of neck and back, occipito-atlanto-axial region', 'ICD10_2010'), +('M54.02', 'Panniculitis affecting regions of neck and back, cervical region', 'ICD10_2010'), +('M54.03', 'Panniculitis affecting regions of neck and back, cervicothoracic region', 'ICD10_2010'), +('M54.04', 'Panniculitis affecting regions of neck and back, thoracic region', 'ICD10_2010'), +('M54.05', 'Panniculitis affecting regions of neck and back, thoracolumbar region', 'ICD10_2010'); +INSERT INTO `icd10` (`ID_ICD10`, `Diagnosa`, `Versi_ICD10`) VALUES +('M54.06', 'Panniculitis affecting regions of neck and back, lumbar region', 'ICD10_2010'), +('M54.07', 'Panniculitis affecting regions of neck and back, lumbosacral region', 'ICD10_2010'), +('M54.08', 'Panniculitis affecting regions of neck and back, sacral and sacrococcygeal region', 'ICD10_2010'), +('M54.09', 'Panniculitis affecting regions of neck and back, site unspecified', 'ICD10_2010'), +('M54.1', 'Radiculopathy', 'ICD10_2010'), +('M54.10', 'Radiculopathy, multiple sites', 'ICD10_2010'), +('M54.11', 'Radiculopathy, occipito-atlanto-axial region', 'ICD10_2010'), +('M54.12', 'Radiculopathy, cervical region', 'ICD10_2010'), +('M54.13', 'Radiculopathy, cervicothoracic region', 'ICD10_2010'), +('M54.14', 'Radiculopathy, thoracic region', 'ICD10_2010'), +('M54.15', 'Radiculopathy, thoracolumbar region', 'ICD10_2010'), +('M54.16', 'Radiculopathy, lumbar region', 'ICD10_2010'), +('M54.17', 'Radiculopathy, lumbosacral region', 'ICD10_2010'), +('M54.18', 'Radiculopathy, sacral and sacrococcygeal region', 'ICD10_2010'), +('M54.19', 'Radiculopathy, site unspecified', 'ICD10_2010'), +('M54.2', 'Cervicalgia', 'ICD10_2010'), +('M54.20', 'Cervicalgia, multiple sites', 'ICD10_2010'), +('M54.21', 'Cervicalgia, occipito-atlanto-axial region', 'ICD10_2010'), +('M54.22', 'Cervicalgia, cervical region', 'ICD10_2010'), +('M54.23', 'Cervicalgia, cervicothoracic region', 'ICD10_2010'), +('M54.24', 'Cervicalgia, thoracic region', 'ICD10_2010'), +('M54.25', 'Cervicalgia, thoracolumbar region', 'ICD10_2010'), +('M54.26', 'Cervicalgia, lumbar region', 'ICD10_2010'), +('M54.27', 'Cervicalgia, lumbosacral region', 'ICD10_2010'), +('M54.28', 'Cervicalgia, sacral and sacrococcygeal region', 'ICD10_2010'), +('M54.29', 'Cervicalgia, site unspecified', 'ICD10_2010'), +('M54.3', 'Sciatica', 'ICD10_2010'), +('M54.30', 'Sciatica, multiple sites', 'ICD10_2010'), +('M54.31', 'Sciatica, occipito-atlanto-axial region', 'ICD10_2010'), +('M54.32', 'Sciatica, cervical region', 'ICD10_2010'), +('M54.33', 'Sciatica, cervicothoracic region', 'ICD10_2010'), +('M54.34', 'Sciatica, thoracic region', 'ICD10_2010'), +('M54.35', 'Sciatica, thoracolumbar region', 'ICD10_2010'), +('M54.36', 'Sciatica, lumbar region', 'ICD10_2010'), +('M54.37', 'Sciatica, lumbosacral region', 'ICD10_2010'), +('M54.38', 'Sciatica, sacral and sacrococcygeal region', 'ICD10_2010'), +('M54.39', 'Sciatica, site unspecified', 'ICD10_2010'), +('M54.4', 'Lumbago with sciatica', 'ICD10_2010'), +('M54.40', 'Lumbago with sciatica, multiple sites', 'ICD10_2010'), +('M54.41', 'Lumbago with sciatica, occipito-atlanto-axial region', 'ICD10_2010'), +('M54.42', 'Lumbago with sciatica, cervical region', 'ICD10_2010'), +('M54.43', 'Lumbago with sciatica, cervicothoracic region', 'ICD10_2010'), +('M54.44', 'Lumbago with sciatica, thoracic region', 'ICD10_2010'), +('M54.45', 'Lumbago with sciatica, thoracolumbar region', 'ICD10_2010'), +('M54.46', 'Lumbago with sciatica, lumbar region', 'ICD10_2010'), +('M54.47', 'Lumbago with sciatica, lumbosacral region', 'ICD10_2010'), +('M54.48', 'Lumbago with sciatica, sacral and sacrococcygeal region', 'ICD10_2010'), +('M54.49', 'Lumbago with sciatica, site unspecified', 'ICD10_2010'), +('M54.5', 'Low back pain', 'ICD10_2010'), +('M54.50', 'Low back pain, multiple sites', 'ICD10_2010'), +('M54.51', 'Low back pain, occipito-atlanto-axial region', 'ICD10_2010'), +('M54.52', 'Low back pain, cervical region', 'ICD10_2010'), +('M54.53', 'Low back pain, cervicothoracic region', 'ICD10_2010'), +('M54.54', 'Low back pain, thoracic region', 'ICD10_2010'), +('M54.55', 'Low back pain, thoracolumbar region', 'ICD10_2010'), +('M54.56', 'Low back pain, lumbar region', 'ICD10_2010'), +('M54.57', 'Low back pain, lumbosacral region', 'ICD10_2010'), +('M54.58', 'Low back pain, sacral and sacrococcygeal region', 'ICD10_2010'), +('M54.59', 'Low back pain, site unspecified', 'ICD10_2010'), +('M54.6', 'Pain in thoracic spine', 'ICD10_2010'), +('M54.60', 'Pain in thoracic spine, multiple sites', 'ICD10_2010'), +('M54.61', 'Pain in thoracic spine, occipito-atlanto-axial region', 'ICD10_2010'), +('M54.62', 'Pain in thoracic spine, cervical region', 'ICD10_2010'), +('M54.63', 'Pain in thoracic spine, cervicothoracic region', 'ICD10_2010'), +('M54.64', 'Pain in thoracic spine, thoracic region', 'ICD10_2010'), +('M54.65', 'Pain in thoracic spine, thoracolumbar region', 'ICD10_2010'), +('M54.66', 'Pain in thoracic spine, lumbar region', 'ICD10_2010'), +('M54.67', 'Pain in thoracic spine, lumbosacral region', 'ICD10_2010'), +('M54.68', 'Pain in thoracic spine, sacral and sacrococcygeal region', 'ICD10_2010'), +('M54.69', 'Pain in thoracic spine, site unspecified', 'ICD10_2010'), +('M54.8', 'Other dorsalgia', 'ICD10_2010'), +('M54.80', 'Other dorsalgia, multiple sites', 'ICD10_2010'), +('M54.81', 'Other dorsalgia, occipito-atlanto-axial region', 'ICD10_2010'), +('M54.82', 'Other dorsalgia, cervical region', 'ICD10_2010'), +('M54.83', 'Other dorsalgia, cervicothoracic region', 'ICD10_2010'), +('M54.84', 'Other dorsalgia, thoracic region', 'ICD10_2010'), +('M54.85', 'Other dorsalgia, thoracolumbar region', 'ICD10_2010'), +('M54.86', 'Other dorsalgia, lumbar region', 'ICD10_2010'), +('M54.87', 'Other dorsalgia, lumbosacral region', 'ICD10_2010'), +('M54.88', 'Other dorsalgia, sacral and sacrococcygeal region', 'ICD10_2010'), +('M54.89', 'Other dorsalgia, site unspecified', 'ICD10_2010'), +('M54.9', 'Dorsalgia, unspecified', 'ICD10_2010'), +('M54.90', 'Dorsalgia, unspecified, multiple sites', 'ICD10_2010'), +('M54.91', 'Dorsalgia, unspecified, occipito-atlanto-axial region', 'ICD10_2010'), +('M54.92', 'Dorsalgia, unspecified, cervical region', 'ICD10_2010'), +('M54.93', 'Dorsalgia, unspecified, cervicothoracic region', 'ICD10_2010'), +('M54.94', 'Dorsalgia, unspecified, thoracic region', 'ICD10_2010'), +('M54.95', 'Dorsalgia, unspecified, thoracolumbar region', 'ICD10_2010'), +('M54.96', 'Dorsalgia, unspecified, lumbar region', 'ICD10_2010'), +('M54.97', 'Dorsalgia, unspecified, lumbosacral region', 'ICD10_2010'), +('M54.98', 'Dorsalgia, unspecified, sacral and sacrococcygeal region', 'ICD10_2010'), +('M54.99', 'Dorsalgia, unspecified, site unspecified', 'ICD10_2010'), +('M60', 'Myositis', 'ICD10_2010'), +('M60.0', 'Infective myositis', 'ICD10_2010'), +('M60.00', 'Infective myositis, mulitple sites', 'ICD10_2010'), +('M60.01', 'Infective myositis, shoulder', 'ICD10_2010'), +('M60.02', 'Infective myositis, upper arm', 'ICD10_2010'), +('M60.03', 'Infective myositis, forearm', 'ICD10_2010'), +('M60.04', 'Infective myositis, hand', 'ICD10_2010'), +('M60.05', 'Infective myositis, pelvic region and thigh', 'ICD10_2010'), +('M60.06', 'Infective myositis, lower leg', 'ICD10_2010'), +('M60.07', 'Infective myositis, ankle and foot', 'ICD10_2010'), +('M60.08', 'Infective myositis, other', 'ICD10_2010'), +('M60.09', 'Infective myositis, site unspecified', 'ICD10_2010'), +('M60.1', 'Interstitial myositis', 'ICD10_2010'), +('M60.10', 'Interstitial myositis, mulitple sites', 'ICD10_2010'), +('M60.11', 'Interstitial myositis, shoulder', 'ICD10_2010'), +('M60.12', 'Interstitial myositis, upper arm', 'ICD10_2010'), +('M60.13', 'Interstitial myositis, forearm', 'ICD10_2010'), +('M60.14', 'Interstitial myositis, hand', 'ICD10_2010'), +('M60.15', 'Interstitial myositis, pelvic region and thigh', 'ICD10_2010'), +('M60.16', 'Interstitial myositis, lower leg', 'ICD10_2010'), +('M60.17', 'Interstitial myositis, ankle and foot', 'ICD10_2010'), +('M60.18', 'Interstitial myositis, other', 'ICD10_2010'), +('M60.19', 'Interstitial myositis, site unspecified', 'ICD10_2010'), +('M60.2', 'Foreign body granuloma of soft tissue, not elsewhere classified', 'ICD10_2010'), +('M60.20', 'Foreign body graniloma of soft tissue, mulitple sites', 'ICD10_2010'), +('M60.21', 'Foreign body graniloma of soft tissue, shoulder', 'ICD10_2010'), +('M60.22', 'Foreign body graniloma of soft tissue, upper arm', 'ICD10_2010'), +('M60.23', 'Foreign body graniloma of soft tissue, forearm', 'ICD10_2010'), +('M60.24', 'Foreign body graniloma of soft tissue, hand', 'ICD10_2010'), +('M60.25', 'Foreign body granuloma of soft tissue, pelvic region and thigh', 'ICD10_2010'), +('M60.26', 'Foreign body graniloma of soft tissue, lower leg', 'ICD10_2010'), +('M60.27', 'Foreign body graniloma of soft tissue, ankle and foot', 'ICD10_2010'), +('M60.28', 'Foreign body granuloma of soft tissue, other', 'ICD10_2010'), +('M60.29', 'Foreign body granuloma of soft tissue, site unspecified', 'ICD10_2010'), +('M60.8', 'Other myositis', 'ICD10_2010'), +('M60.80', 'Other myositis, mulitple sites', 'ICD10_2010'), +('M60.81', 'Other myositis, shoulder', 'ICD10_2010'), +('M60.82', 'Other myositis, upper arm', 'ICD10_2010'), +('M60.83', 'Other myositis, forearm', 'ICD10_2010'), +('M60.84', 'Other myositis, hand', 'ICD10_2010'), +('M60.85', 'Other myositis, pelvic region and thigh', 'ICD10_2010'), +('M60.86', 'Other myositis, lower leg', 'ICD10_2010'), +('M60.87', 'Other myositis, ankle and foot', 'ICD10_2010'), +('M60.88', 'Other myositis, other', 'ICD10_2010'), +('M60.89', 'Other myositis, site unspecified', 'ICD10_2010'), +('M60.9', 'Myositis, unspecified', 'ICD10_2010'), +('M60.90', 'Myositis unspecified, mulitple sites', 'ICD10_2010'), +('M60.91', 'Myositis unspecified, shoulder', 'ICD10_2010'), +('M60.92', 'Myositis unspecified, upper arm', 'ICD10_2010'), +('M60.93', 'Myositis unspecified, forearm', 'ICD10_2010'), +('M60.94', 'Myositis unspecified, hand', 'ICD10_2010'), +('M60.95', 'Myositis unspecified, pelvic region and thigh', 'ICD10_2010'), +('M60.96', 'Myositis unspecified, lower leg', 'ICD10_2010'), +('M60.97', 'Myositis unspecified, ankle and foot', 'ICD10_2010'), +('M60.98', 'Myositis unspecified, other', 'ICD10_2010'), +('M60.99', 'Myositis unspecified, site unspecified', 'ICD10_2010'), +('M61', 'Calcification and ossification of muscle', 'ICD10_2010'), +('M61.0', 'Myositis ossificans traumatica', 'ICD10_2010'), +('M61.00', 'Myositis ossificans traumatica, mulitple sites', 'ICD10_2010'), +('M61.01', 'Myositis ossificans traumatica, shoulder', 'ICD10_2010'), +('M61.02', 'Myositis ossificans traumatica, upper arm', 'ICD10_2010'), +('M61.03', 'Myositis ossificans traumatica, forearm', 'ICD10_2010'), +('M61.04', 'Myositis ossificans traumatica, hand', 'ICD10_2010'), +('M61.05', 'Myositis ossificans traumatica, pelvic region and thigh', 'ICD10_2010'), +('M61.06', 'Myositis ossificans traumatica, lower leg', 'ICD10_2010'), +('M61.07', 'Myositis ossificans traumatica, ankle and foot', 'ICD10_2010'), +('M61.08', 'Myositis ossificans traumatica, other', 'ICD10_2010'), +('M61.09', 'Myositis ossificans traumatica, site unspecified', 'ICD10_2010'), +('M61.1', 'Myositis ossificans progressiva', 'ICD10_2010'), +('M61.10', 'Myositis ossificans progressiva, mulitple sites', 'ICD10_2010'), +('M61.11', 'Myositis ossificans progressiva, shoulder', 'ICD10_2010'), +('M61.12', 'Myositis ossificans progressiva, upper arm', 'ICD10_2010'), +('M61.13', 'Myositis ossificans progressiva, forearm', 'ICD10_2010'), +('M61.14', 'Myositis ossificans progressiva, hand', 'ICD10_2010'), +('M61.15', 'Myositis ossificans progressiva, pelvic region and thigh', 'ICD10_2010'), +('M61.16', 'Myositis ossificans progressiva, lower leg', 'ICD10_2010'), +('M61.17', 'Myositis ossificans progressiva, ankle and foot', 'ICD10_2010'), +('M61.18', 'Myositis ossificans progressiva, other', 'ICD10_2010'), +('M61.19', 'Myositis ossificans progressiva, site unspecified', 'ICD10_2010'), +('M61.2', 'Paralytic calcification and ossification of muscle', 'ICD10_2010'), +('M61.20', 'Paralytic calcification and ossifcation of muscle, mulitple sites', 'ICD10_2010'), +('M61.21', 'Paralytic calcification and ossifcation of muscle, shoulder', 'ICD10_2010'), +('M61.22', 'Paralytic calcification and ossifcation of muscle, upper arm', 'ICD10_2010'), +('M61.23', 'Paralytic calcification and ossifcation of muscle, forearm', 'ICD10_2010'), +('M61.24', 'Paralytic calcification and ossifcation of muscle, hand', 'ICD10_2010'), +('M61.25', 'Paralytic calcification and ossifcation of muscle, pelvic region and thigh', 'ICD10_2010'), +('M61.26', 'Paralytic calcification and ossifcation of muscle, lower leg', 'ICD10_2010'), +('M61.27', 'Paralytic calcification and ossifcation of muscle, ankle and foot', 'ICD10_2010'), +('M61.28', 'Paralytic calcification and ossifcation of muscle, other', 'ICD10_2010'), +('M61.29', 'Paralytic calcification and ossifcation of muscle, site unspecified', 'ICD10_2010'), +('M61.3', 'Calcification and ossification of muscles assoc with burns', 'ICD10_2010'), +('M61.30', 'Calcification and ossification of muscles assco with burns, multiple sites', 'ICD10_2010'), +('M61.31', 'Calcification and ossification of muscles assco with burns, shoulder', 'ICD10_2010'), +('M61.32', 'Calcification and ossification of muscles assco with burns, upper arm', 'ICD10_2010'), +('M61.33', 'Calcification and ossification of muscles assco with burns, forearm', 'ICD10_2010'), +('M61.34', 'Calcification and ossification of muscles assco with burns, hand', 'ICD10_2010'), +('M61.35', 'Calcification and ossification of muscles assco with burns, pelvic region and thigh', 'ICD10_2010'), +('M61.36', 'Calcification and ossification of muscles assco with burns, lower leg', 'ICD10_2010'), +('M61.37', 'Calcification and ossification of muscles assco with burns, ankle and foot', 'ICD10_2010'), +('M61.38', 'Calcification and ossification of muscles assco with burns, other', 'ICD10_2010'), +('M61.39', 'Calcification and ossification of muscles assco with burns, site unspecified', 'ICD10_2010'), +('M61.4', 'Other calcification of muscle', 'ICD10_2010'), +('M61.40', 'Other calcification of muscle, multiple sites', 'ICD10_2010'), +('M61.41', 'Other calcification of muscle, shoulder', 'ICD10_2010'), +('M61.42', 'Other calcification of muscle, upper arm', 'ICD10_2010'), +('M61.43', 'Other calcification of muscle, forearm', 'ICD10_2010'), +('M61.44', 'Other calcification of muscle, hand', 'ICD10_2010'), +('M61.45', 'Other calcification of muscle, pelvic region and thigh', 'ICD10_2010'), +('M61.46', 'Other calcification of muscle, lower leg', 'ICD10_2010'), +('M61.47', 'Other calcification of muscle, ankle and foot', 'ICD10_2010'), +('M61.48', 'Other calcification of muscle, other', 'ICD10_2010'), +('M61.49', 'Other calcification of muscle, site unspecified', 'ICD10_2010'), +('M61.5', 'Other ossification of muscle', 'ICD10_2010'), +('M61.50', 'Other ossification of muscle, multiple sites', 'ICD10_2010'), +('M61.51', 'Other ossification of muscle, shoulder', 'ICD10_2010'), +('M61.52', 'Other ossification of muscle, upper arm', 'ICD10_2010'), +('M61.53', 'Other ossification of muscle, forearm', 'ICD10_2010'), +('M61.54', 'Other ossification of muscle, hand', 'ICD10_2010'), +('M61.55', 'Other ossification of muscle, pelvic region and thigh', 'ICD10_2010'), +('M61.56', 'Other ossification of muscle, lower leg', 'ICD10_2010'), +('M61.57', 'Other ossification of muscle, ankle and foot', 'ICD10_2010'), +('M61.58', 'Other ossification of muscle, other', 'ICD10_2010'), +('M61.59', 'Other ossification of muscle, site unspecified', 'ICD10_2010'), +('M61.9', 'Calcification and ossification of muscle, unspecified', 'ICD10_2010'), +('M61.90', 'Calcification and ossification of muscle unspecified, multiple sites', 'ICD10_2010'), +('M61.91', 'Calcification and ossification of muscle unspecified, shoulder', 'ICD10_2010'), +('M61.92', 'Calcification and ossification of muscle unspecified, upper arm', 'ICD10_2010'), +('M61.93', 'Calcification and ossification of muscle unspecified, forearm', 'ICD10_2010'), +('M61.94', 'Calcification and ossification of muscle unspecified, hand', 'ICD10_2010'), +('M61.95', 'Calcification and ossification of muscle unspecified, pelvic region and thigh', 'ICD10_2010'), +('M61.96', 'Calcification and ossification of muscle unspecified, lower leg', 'ICD10_2010'), +('M61.97', 'Calcification and ossification of muscle unspecified, ankle and foot', 'ICD10_2010'), +('M61.98', 'Calcification and ossification of muscle unspecified, other', 'ICD10_2010'), +('M61.99', 'Calcification and ossification of muscle unspecified, site unspecified', 'ICD10_2010'), +('M62', 'Other disorders of muscle', 'ICD10_2010'), +('M62.0', 'Diastasis of muscle', 'ICD10_2010'), +('M62.00', 'Diastasis of muscle, mulitple sites', 'ICD10_2010'), +('M62.01', 'Diastasis of muscle, shoulder', 'ICD10_2010'), +('M62.02', 'Diastasis of muscle, upper arm', 'ICD10_2010'), +('M62.03', 'Diastasis of muscle, forearm', 'ICD10_2010'), +('M62.04', 'Diastasis of muscle, hand', 'ICD10_2010'), +('M62.05', 'Diastasis of muscle, pelvic region and thigh', 'ICD10_2010'), +('M62.06', 'Diastasis of muscle, lower leg', 'ICD10_2010'), +('M62.07', 'Diastasis of muscle, ankle and foot', 'ICD10_2010'), +('M62.08', 'Diastasis of muscle, other', 'ICD10_2010'), +('M62.09', 'Diastasis of muscle, site unspecified', 'ICD10_2010'), +('M62.1', 'Other rupture of muscle (nontraumatic)', 'ICD10_2010'), +('M62.10', 'Other rupture of muscle (nontraumatic), multiple sites', 'ICD10_2010'), +('M62.11', 'Other rupture of muscle (nontraumatic), shoulder', 'ICD10_2010'), +('M62.12', 'Other rupture of muscle (nontraumatic), upper arm', 'ICD10_2010'), +('M62.13', 'Other rupture of muscle (nontraumatic), forearm', 'ICD10_2010'), +('M62.14', 'Other rupture of muscle (nontraumatic), hand', 'ICD10_2010'), +('M62.15', 'Other rupture of muscle (nontraumatic), pelvic region and thigh', 'ICD10_2010'), +('M62.16', 'Other rupture of muscle (nontraumatic), lower leg', 'ICD10_2010'), +('M62.17', 'Other rupture of muscle (nontraumatic), ankle and foot', 'ICD10_2010'), +('M62.18', 'Other rupture of muscle (nontraumatic), other', 'ICD10_2010'), +('M62.19', 'Other rupture of muscle (nontraumatic), site unspecified', 'ICD10_2010'), +('M62.2', 'Ischaemic infarction of muscle', 'ICD10_2010'), +('M62.20', 'Ischaemic infarction of muscle, multiple sites', 'ICD10_2010'), +('M62.21', 'Ischaemic infarction of muscle, shoulder', 'ICD10_2010'), +('M62.22', 'Ischaemic infarction of muscle, upper arm', 'ICD10_2010'), +('M62.23', 'Ischaemic infarction of muscle, forearm', 'ICD10_2010'), +('M62.24', 'Ischaemic infarction of muscle, hand', 'ICD10_2010'), +('M62.25', 'Ischaemic infarction of muscle, pelvic region and thigh', 'ICD10_2010'), +('M62.26', 'Ischaemic infarction of muscle, lower leg', 'ICD10_2010'), +('M62.27', 'Ischaemic infarction of muscle, ankle and foot', 'ICD10_2010'), +('M62.28', 'Ischaemic infarction of muscle, other', 'ICD10_2010'), +('M62.29', 'Ischaemic infarction of muscle, site unspecified', 'ICD10_2010'), +('M62.3', 'Immobility syndrome (paraplegic)', 'ICD10_2010'), +('M62.30', 'Immobility syndrome (paraplegic), multiple sites', 'ICD10_2010'), +('M62.31', 'Immobility syndrome (paraplegic), shoulder', 'ICD10_2010'), +('M62.32', 'Immobility syndrome (paraplegic), upper arm', 'ICD10_2010'), +('M62.33', 'Immobility syndrome (paraplegic), forearm', 'ICD10_2010'), +('M62.34', 'Immobility syndrome (paraplegic), hand', 'ICD10_2010'), +('M62.35', 'Immobility syndrome (paraplegic), pelvic region and thigh', 'ICD10_2010'), +('M62.36', 'Immobility syndrome (paraplegic), lower leg', 'ICD10_2010'), +('M62.37', 'Immobility syndrome (paraplegic), ankle and foot', 'ICD10_2010'), +('M62.38', 'Immobility syndrome (paraplegic), other', 'ICD10_2010'), +('M62.39', 'Immobility syndrome (paraplegic), site unspecified', 'ICD10_2010'), +('M62.4', 'Contracture of muscle', 'ICD10_2010'), +('M62.40', 'Contracture of muscle, multiple sites', 'ICD10_2010'), +('M62.41', 'Contracture of muscle, shoulder', 'ICD10_2010'), +('M62.42', 'Contracture of muscle, upper arm', 'ICD10_2010'), +('M62.43', 'Contracture of muscle, forearm', 'ICD10_2010'), +('M62.44', 'Contracture of muscle, hand', 'ICD10_2010'), +('M62.45', 'Contracture of muscle, pelvic region and thigh', 'ICD10_2010'), +('M62.46', 'Contracture of muscle, lower leg', 'ICD10_2010'), +('M62.47', 'Contracture of muscle, ankle and foot', 'ICD10_2010'), +('M62.48', 'Contracture of muscle, other', 'ICD10_2010'), +('M62.49', 'Contracture of muscle, site unspecified', 'ICD10_2010'), +('M62.5', 'Muscle wasting and atrophy, not elsewhere classified', 'ICD10_2010'), +('M62.50', 'Muscle wasting and atrophy, multiple sites', 'ICD10_2010'), +('M62.51', 'Muscle wasting and atrophy, shoulder', 'ICD10_2010'), +('M62.52', 'Muscle wasting and atrophy, upper arm', 'ICD10_2010'), +('M62.53', 'Muscle wasting and atrophy, forearm', 'ICD10_2010'), +('M62.54', 'Muscle wasting and atrophy, hand', 'ICD10_2010'), +('M62.55', 'Muscle wasting and atrophy, pelvic region and thigh', 'ICD10_2010'), +('M62.56', 'Muscle wasting and atrophy, lower leg', 'ICD10_2010'), +('M62.57', 'Muscle wasting and atrophy, ankle and foot', 'ICD10_2010'), +('M62.58', 'Muscle wasting and atrophy, other', 'ICD10_2010'), +('M62.59', 'Muscle wasting and atrophy, site unspecified', 'ICD10_2010'), +('M62.6', 'Muscle strain', 'ICD10_2010'), +('M62.60', 'Muscle strain, multiple sites', 'ICD10_2010'), +('M62.61', 'Muscle strain, shoulder', 'ICD10_2010'), +('M62.62', 'Muscle strain, upper arm', 'ICD10_2010'), +('M62.63', 'Muscle strain, forearm', 'ICD10_2010'), +('M62.64', 'Muscle strain, hand', 'ICD10_2010'), +('M62.65', 'Muscle strain, pelvic region and thigh', 'ICD10_2010'), +('M62.66', 'Muscle strain, lower leg', 'ICD10_2010'), +('M62.67', 'Muscle strain, ankle and foot', 'ICD10_2010'), +('M62.68', 'Muscle strain, other', 'ICD10_2010'), +('M62.69', 'Muscle strain, site unspecified', 'ICD10_2010'), +('M62.8', 'Other specified disorders of muscle', 'ICD10_2010'), +('M62.80', 'Other specified disorders of muscle, multiple sites', 'ICD10_2010'), +('M62.81', 'Other specified disorders of muscle, shoulder', 'ICD10_2010'), +('M62.82', 'Other specified disorders of muscle, upper arm', 'ICD10_2010'), +('M62.83', 'Other specified disorders of muscle, forearm', 'ICD10_2010'), +('M62.84', 'Other specified disorders of muscle, hand', 'ICD10_2010'), +('M62.85', 'Other specified disorders of muscle, pelvic region and thigh', 'ICD10_2010'), +('M62.86', 'Other specified disorders of muscle, lower leg', 'ICD10_2010'), +('M62.87', 'Other specified disorders of muscle, ankle and foot', 'ICD10_2010'), +('M62.88', 'Other specified disorders of muscle, other', 'ICD10_2010'), +('M62.89', 'Other specified disorders of muscle, site unspecified', 'ICD10_2010'), +('M62.9', 'Disorder of muscle, unspecified', 'ICD10_2010'), +('M62.90', 'Disorder of muscle, unspecified, multiple sites', 'ICD10_2010'), +('M62.91', 'Disorder of muscle, unspecified, shoulder', 'ICD10_2010'), +('M62.92', 'Disorder of muscle, unspecified, upper arm', 'ICD10_2010'), +('M62.93', 'Disorder of muscle, unspecified, forearm', 'ICD10_2010'), +('M62.94', 'Disorder of muscle, unspecified, hand', 'ICD10_2010'), +('M62.95', 'Disorder of muscle, unspecified, pelvic region and thigh', 'ICD10_2010'), +('M62.96', 'Disorder of muscle, unspecified, lower leg', 'ICD10_2010'), +('M62.97', 'Disorder of muscle, unspecified, ankle and foot', 'ICD10_2010'), +('M62.98', 'Disorder of muscle, unspecified, other', 'ICD10_2010'), +('M62.99', 'Disorder of muscle, unspecified, site unspecified', 'ICD10_2010'), +('M63', 'Disorders of muscle in diseases classified elsewhere', 'ICD10_2010'), +('M63.0', 'Myositis in bacterial diseases classified elsewhere', 'ICD10_2010'), +('M63.1', 'Myositis in protozoal and parasitic infections classified elsewhere', 'ICD10_2010'), +('M63.2', 'Myositis in other infectious diseases classified elsewhere', 'ICD10_2010'), +('M63.3', 'Myositis in sarcoidosis', 'ICD10_2010'), +('M63.8', 'Other disorders of muscle in diseases classified elsewhere', 'ICD10_2010'), +('M65', 'Synovitis and tenosynovitis', 'ICD10_2010'), +('M65.0', 'Abscess of tendon sheath', 'ICD10_2010'), +('M65.00', 'Abscess of tendon sheath, multiple sites', 'ICD10_2010'), +('M65.01', 'Abscess of tendon sheath, shoulder region', 'ICD10_2010'), +('M65.02', 'Abscess of tendon sheath, upper arm', 'ICD10_2010'), +('M65.03', 'Abscess of tendon sheath, forearm', 'ICD10_2010'), +('M65.04', 'Abscess of tendon sheath, hand', 'ICD10_2010'), +('M65.05', 'Abscess of tendon sheath, pelvic and thigh', 'ICD10_2010'), +('M65.06', 'Abscess of tendon sheath, lower leg', 'ICD10_2010'), +('M65.07', 'Abscess of tendon sheath, ankle and foot', 'ICD10_2010'), +('M65.08', 'Abscess of tendon sheath, other', 'ICD10_2010'), +('M65.09', 'Abscess of tendon sheath, site unspecified', 'ICD10_2010'), +('M65.1', 'Other infective (teno)synovitis', 'ICD10_2010'), +('M65.10', 'Other infective (teno)synovitis, multiple sites', 'ICD10_2010'), +('M65.11', 'Other infective (teno)synovitis, shoulder region', 'ICD10_2010'), +('M65.12', 'Other infective (teno)synovitis, upper arm', 'ICD10_2010'), +('M65.13', 'Other infective (teno)synovitis, forearm', 'ICD10_2010'), +('M65.14', 'Other infective (teno)synovitis, hand', 'ICD10_2010'), +('M65.15', 'Other infective (teno)synovitis, pelvic and thigh', 'ICD10_2010'), +('M65.16', 'Other infective (teno)synovitis, lower leg', 'ICD10_2010'), +('M65.17', 'Other infective (teno)synovitis, ankle and foot', 'ICD10_2010'), +('M65.18', 'Other infective (teno)synovitis, other', 'ICD10_2010'), +('M65.19', 'Other infective (teno)synovitis, site unspecified', 'ICD10_2010'), +('M65.2', 'Calcific tendinitis', 'ICD10_2010'), +('M65.20', 'Calcific tendinitis, multiple sites', 'ICD10_2010'), +('M65.21', 'Calcific tendinitis, shoulder region', 'ICD10_2010'), +('M65.22', 'Calcific tendinitis, upper arm', 'ICD10_2010'), +('M65.23', 'Calcific tendinitis, forearm', 'ICD10_2010'), +('M65.24', 'Calcific tendinitis, hand', 'ICD10_2010'), +('M65.25', 'Calcific tendinitis, pelvic region and thigh', 'ICD10_2010'), +('M65.26', 'Calcific tendinitis, lower leg', 'ICD10_2010'), +('M65.27', 'Calcific tendinitis, ankle and foot', 'ICD10_2010'), +('M65.28', 'Calcific tendinitis, other', 'ICD10_2010'), +('M65.29', 'Calcific tendinitis, site unspecified', 'ICD10_2010'), +('M65.3', 'Trigger finger', 'ICD10_2010'), +('M65.30', 'Trigger finger, multiple sites', 'ICD10_2010'), +('M65.31', 'Trigger finger, shoulder region', 'ICD10_2010'), +('M65.32', 'Trigger finger, upper arm', 'ICD10_2010'), +('M65.33', 'Trigger finger, forearm', 'ICD10_2010'), +('M65.34', 'Trigger finger, hand', 'ICD10_2010'), +('M65.35', 'Trigger finger, pelvic region and thigh', 'ICD10_2010'), +('M65.36', 'Trigger finger, lower leg', 'ICD10_2010'), +('M65.37', 'Trigger finger, ankle and foot', 'ICD10_2010'), +('M65.38', 'Trigger finger, other', 'ICD10_2010'), +('M65.39', 'Trigger finger, site unspecified', 'ICD10_2010'), +('M65.4', 'Radial styloid tenosynovitis [de quervain]', 'ICD10_2010'), +('M65.40', 'Radial styloid tenosynovitis [de quervain], multiple sites', 'ICD10_2010'), +('M65.41', 'Radial styloid tenosynovitis [de quervain], shoulder region', 'ICD10_2010'), +('M65.42', 'Radial styloid tenosynovitis [de quervain], upper arm', 'ICD10_2010'), +('M65.43', 'Radial styloid tenosynovitis [de quervain], forearm', 'ICD10_2010'), +('M65.44', 'Radial styloid tenosynovitis [de quervain], hand', 'ICD10_2010'), +('M65.45', 'Radial styloid tenosynovitis [de quervain], pelvic region and thigh', 'ICD10_2010'), +('M65.46', 'Radial styloid tenosynovitis [de quervain], lower leg', 'ICD10_2010'), +('M65.47', 'Radial styloid tenosynovitis [de quervain], ankle and foot', 'ICD10_2010'), +('M65.48', 'Radial styloid tenosynovitis [de quervain], other', 'ICD10_2010'), +('M65.49', 'Radial styloid tenosynovitis [de quervain], site unspecified', 'ICD10_2010'), +('M65.8', 'Other synovitis and tenosynovitis', 'ICD10_2010'), +('M65.80', 'Other synovitis and tenosynovitis, multiple sites', 'ICD10_2010'), +('M65.81', 'Other synovitis and tenosynovitis, shoulder region', 'ICD10_2010'), +('M65.82', 'Other synovitis and tenosynovitis, upper arm', 'ICD10_2010'), +('M65.83', 'Other synovitis and tenosynovitis, forearm', 'ICD10_2010'), +('M65.84', 'Other synovitis and tenosynovitis, hand', 'ICD10_2010'), +('M65.85', 'Other synovitis and tenosynovitis, pelvic region and thigh', 'ICD10_2010'), +('M65.86', 'Other synovitis and tenosynovitis, lower leg', 'ICD10_2010'), +('M65.87', 'Other synovitis and tenosynovitis, ankle and foot', 'ICD10_2010'), +('M65.88', 'Other synovitis and tenosynovitis, other', 'ICD10_2010'), +('M65.89', 'Other synovitis and tenosynovitis, site unspecified', 'ICD10_2010'), +('M65.9', 'Synovitis and tenosynovitis, unspecified', 'ICD10_2010'), +('M65.90', 'Synovitis and tenosynovitis, unspecified, multiple sites', 'ICD10_2010'), +('M65.91', 'Synovitis and tenosynovitis, unspecified, shoulder region', 'ICD10_2010'), +('M65.92', 'Synovitis and tenosynovitis, unspecified, upper arm', 'ICD10_2010'), +('M65.93', 'Synovitis and tenosynovitis, unspecified, forearm', 'ICD10_2010'), +('M65.94', 'Synovitis and tenosynovitis, unspecified, hand', 'ICD10_2010'), +('M65.95', 'Synovitis and tenosynovitis, unspecified, pelvic region and thigh', 'ICD10_2010'), +('M65.96', 'Synovitis and tenosynovitis, unspecified, lower leg', 'ICD10_2010'), +('M65.97', 'Synovitis and tenosynovitis, unspecified, ankle and foot', 'ICD10_2010'), +('M65.98', 'Synovitis and tenosynovitis, unspecified, other', 'ICD10_2010'), +('M65.99', 'Synovitis and tenosynovitis, unspecified, site unspecified', 'ICD10_2010'), +('M66', 'Spontaneous rupture of synovium and tendon', 'ICD10_2010'), +('M66.0', 'Rupture of popliteal cyst', 'ICD10_2010'), +('M66.00', 'Rupture of popliteal cyst, multiple sites', 'ICD10_2010'), +('M66.01', 'Rupture of popliteal cyst, shoulder region', 'ICD10_2010'), +('M66.02', 'Rupture of popliteal cyst, upper arm', 'ICD10_2010'), +('M66.03', 'Rupture of popliteal cyst, forearm', 'ICD10_2010'), +('M66.04', 'Rupture of popliteal cyst, hand', 'ICD10_2010'), +('M66.05', 'Rupture of popliteal cyst, pelvic region and thigh', 'ICD10_2010'), +('M66.06', 'Rupture of popliteal cyst, lower leg', 'ICD10_2010'), +('M66.07', 'Rupture of popliteal cyst, ankle and foot', 'ICD10_2010'), +('M66.08', 'Rupture of popliteal cyst, other', 'ICD10_2010'), +('M66.09', 'Rupture of popliteal cyst, site unspecified', 'ICD10_2010'), +('M66.1', 'Rupture of synovium', 'ICD10_2010'), +('M66.10', 'Rupture of synovium, multiple sites', 'ICD10_2010'), +('M66.11', 'Rupture of synovium, shoulder region', 'ICD10_2010'), +('M66.12', 'Rupture of synovium, upper arm', 'ICD10_2010'), +('M66.13', 'Rupture of synovium, forearm', 'ICD10_2010'), +('M66.14', 'Rupture of synovium, hand', 'ICD10_2010'), +('M66.15', 'Rupture of synovium, pelvic region and thigh', 'ICD10_2010'), +('M66.16', 'Rupture of synovium, lower leg', 'ICD10_2010'), +('M66.17', 'Rupture of synovium, ankle and foot', 'ICD10_2010'), +('M66.18', 'Rupture of synovium, other', 'ICD10_2010'), +('M66.19', 'Rupture of synovium, site unspecified', 'ICD10_2010'), +('M66.2', 'Spontaneous rupture of extensor tendons', 'ICD10_2010'), +('M66.20', 'Spontaneous rupture of extensor tendons, multiple sites', 'ICD10_2010'), +('M66.21', 'Spontaneous rupture of extensor tendons, shoulder region', 'ICD10_2010'), +('M66.22', 'Spontaneous rupture of extensor tendons, upper arm', 'ICD10_2010'), +('M66.23', 'Spontaneous rupture of extensor tendons, forearm', 'ICD10_2010'), +('M66.24', 'Spontaneous rupture of extensor tendons, hand', 'ICD10_2010'), +('M66.25', 'Spontaneous rupture of extensor tendons, pelvic region and thigh', 'ICD10_2010'), +('M66.26', 'Spontaneous rupture of extensor tendons, lower leg', 'ICD10_2010'), +('M66.27', 'Spontaneous rupture of extensor tendons, ankle and foot', 'ICD10_2010'), +('M66.28', 'Spontaneous rupture of extensor tendons, other', 'ICD10_2010'), +('M66.29', 'Spontaneous rupture of extensor tendons, site unspecified', 'ICD10_2010'), +('M66.3', 'Spontaneous rupture of flexor tendons', 'ICD10_2010'), +('M66.30', 'Spontaneous rupture of flexor tendons, multiple sites', 'ICD10_2010'), +('M66.31', 'Spontaneous rupture of flexor tendons, shoulder region', 'ICD10_2010'), +('M66.32', 'Spontaneous rupture of flexor tendons, upper arm', 'ICD10_2010'), +('M66.33', 'Spontaneous rupture of flexor tendons, forearm', 'ICD10_2010'), +('M66.34', 'Spontaneous rupture of flexor tendons, hand', 'ICD10_2010'), +('M66.35', 'Spontaneous rupture of flexor tendons, pelvic region and thigh', 'ICD10_2010'), +('M66.36', 'Spontaneous rupture of flexor tendons, lower leg', 'ICD10_2010'), +('M66.37', 'Spontaneous rupture of flexor tendons, ankle and foot', 'ICD10_2010'), +('M66.38', 'Spontaneous rupture of flexor tendons, other', 'ICD10_2010'), +('M66.39', 'Spontaneous rupture of flexor tendons, site unspecified', 'ICD10_2010'), +('M66.4', 'Spontaneous rupture of other tendons', 'ICD10_2010'), +('M66.40', 'Spontaneous rupture of other tendons, multiple sites', 'ICD10_2010'), +('M66.41', 'Spontaneous rupture of other tendons, shoulder region', 'ICD10_2010'), +('M66.42', 'Spontaneous rupture of other tendons, upper arm', 'ICD10_2010'), +('M66.43', 'Spontaneous rupture of other tendons, forearm', 'ICD10_2010'), +('M66.44', 'Spontaneous rupture of other tendons, hand', 'ICD10_2010'), +('M66.45', 'Spontaneous rupture of other tendons, pelvic region and thigh', 'ICD10_2010'), +('M66.46', 'Spontaneous rupture of other tendons, lower leg', 'ICD10_2010'), +('M66.47', 'Spontaneous rupture of other tendons, ankle and foot', 'ICD10_2010'), +('M66.48', 'Spontaneous rupture of other tendons, other', 'ICD10_2010'), +('M66.49', 'Spontaneous rupture of other tendons, site unspecified', 'ICD10_2010'), +('M66.5', 'Spontaneous rupture of unspecified tendon', 'ICD10_2010'), +('M66.50', 'Spontaneous rupture of unspecified tendon, multiple sites', 'ICD10_2010'), +('M66.51', 'Spontaneous rupture of unspecified tendon, shoulder region', 'ICD10_2010'), +('M66.52', 'Spontaneous rupture of unspecified tendon, upper arm', 'ICD10_2010'), +('M66.53', 'Spontaneous rupture of unspecified tendon, forearm', 'ICD10_2010'), +('M66.54', 'Spontaneous rupture of unspecified tendon, hand', 'ICD10_2010'), +('M66.55', 'Spontaneous rupture of unspecified tendon, pelvic region and thigh', 'ICD10_2010'), +('M66.56', 'Spontaneous rupture of unspecified tendon, lower leg', 'ICD10_2010'), +('M66.57', 'Spontaneous rupture of unspecified tendon, ankle and foot', 'ICD10_2010'), +('M66.58', 'Spontaneous rupture of unspecified tendon, other', 'ICD10_2010'), +('M66.59', 'Spontaneous rupture of unspecified tendon, site unspecified', 'ICD10_2010'), +('M67', 'Other disorders of synovium and tendon', 'ICD10_2010'), +('M67.0', 'Short achilles tendon (acquired)', 'ICD10_2010'), +('M67.1', 'Other contracture of tendon (sheath)', 'ICD10_2010'), +('M67.2', 'Synovial hypertrophy, not elsewhere classified', 'ICD10_2010'), +('M67.3', 'Transient synovitis', 'ICD10_2010'), +('M67.4', 'Ganglion', 'ICD10_2010'), +('M67.8', 'Other specified disorders of synovium and tendon', 'ICD10_2010'), +('M67.9', 'Disorder of synovium and tendon, unspecified', 'ICD10_2010'), +('M68', 'Disorders of synovium and tendon in diseases classified elsewhere', 'ICD10_2010'), +('M68.0', 'Synovitis and tenosynovitis in bacterial diseases classified elsewhere', 'ICD10_2010'), +('M68.8', 'Other disorders of synovium and tendon in diseases classified elsewhere', 'ICD10_2010'), +('M70', 'Soft tissue disorders related to use, overuse and pressure', 'ICD10_2010'), +('M70.0', 'Chronic crepitant synovitis of hand and wrist', 'ICD10_2010'), +('M70.00', 'Chronic crepitant synovitis of hand and wrist, multiple sites', 'ICD10_2010'), +('M70.01', 'Chronic crepitant synovitis of hand and wrist, shoulder region', 'ICD10_2010'), +('M70.02', 'Chronic crepitant synovitis of hand and wrist, upper arm', 'ICD10_2010'), +('M70.03', 'Chronic crepitant synovitis of hand and wrist, forearm', 'ICD10_2010'), +('M70.04', 'Chronic crepitant synovitis of hand and wrist, hand', 'ICD10_2010'), +('M70.05', 'Chronic crepitant synovitis of hand and wrist, pelvic region and thigh', 'ICD10_2010'), +('M70.06', 'Chronic crepitant synovitis of hand and wrist, lower leg', 'ICD10_2010'), +('M70.07', 'Chronic crepitant synovitis of hand and wrist, ankle and foot', 'ICD10_2010'), +('M70.08', 'Chronic crepitant synovitis of hand and wrist, other', 'ICD10_2010'), +('M70.09', 'Chronic crepitant synovitis of hand and wrist, site unspecified', 'ICD10_2010'), +('M70.1', 'Bursitis of hand', 'ICD10_2010'), +('M70.10', 'Bursitis of hand, multiple sites', 'ICD10_2010'), +('M70.11', 'Bursitis of hand, shoulder region', 'ICD10_2010'), +('M70.12', 'Bursitis of hand, upper arm', 'ICD10_2010'), +('M70.13', 'Bursitis of hand, forearm', 'ICD10_2010'), +('M70.14', 'Bursitis of hand, hand', 'ICD10_2010'), +('M70.15', 'Bursitis of hand, pelvic region and thigh', 'ICD10_2010'), +('M70.16', 'Bursitis of hand, lower leg', 'ICD10_2010'), +('M70.17', 'Bursitis of hand, ankle and foot', 'ICD10_2010'), +('M70.18', 'Bursitis of hand, other', 'ICD10_2010'), +('M70.19', 'Bursitis of hand, site unspecified', 'ICD10_2010'), +('M70.2', 'Olecranon bursitis', 'ICD10_2010'), +('M70.20', 'Olecranon bursitis, multiple sites', 'ICD10_2010'), +('M70.21', 'Olecranon bursitis, shoulder region', 'ICD10_2010'), +('M70.22', 'Olecranon bursitis, upper arm', 'ICD10_2010'), +('M70.23', 'Olecranon bursitis, forearm', 'ICD10_2010'), +('M70.24', 'Olecranon bursitis, hand', 'ICD10_2010'), +('M70.25', 'Olecranon bursitis, pelvic region and thigh', 'ICD10_2010'), +('M70.26', 'Olecranon bursitis, lower leg', 'ICD10_2010'), +('M70.27', 'Olecranon bursitis, ankle and foot', 'ICD10_2010'), +('M70.28', 'Olecranon bursitis, other', 'ICD10_2010'), +('M70.29', 'Olecranon bursitis, site unspecified', 'ICD10_2010'), +('M70.3', 'Other bursitis of elbow', 'ICD10_2010'), +('M70.30', 'Other bursitis of elbow, multiple sites', 'ICD10_2010'), +('M70.31', 'Other bursitis of elbow, shoulder region', 'ICD10_2010'), +('M70.32', 'Other bursitis of elbow, upper arm', 'ICD10_2010'), +('M70.33', 'Other bursitis of elbow, forearm', 'ICD10_2010'), +('M70.34', 'Other bursitis of elbow, hand', 'ICD10_2010'), +('M70.35', 'Other bursitis of elbow, pelvic region and thigh', 'ICD10_2010'), +('M70.36', 'Other bursitis of elbow, lower leg', 'ICD10_2010'), +('M70.37', 'Other bursitis of elbow, ankle and foot', 'ICD10_2010'), +('M70.38', 'Other bursitis of elbow, other', 'ICD10_2010'), +('M70.39', 'Other bursitis of elbow, site unspecified', 'ICD10_2010'), +('M70.4', 'Prepatellar bursitis', 'ICD10_2010'), +('M70.40', 'Prepatellar bursitis, multiple sites', 'ICD10_2010'), +('M70.41', 'Prepatellar bursitis, shoulder region', 'ICD10_2010'), +('M70.42', 'Prepatellar bursitis, upper arm', 'ICD10_2010'), +('M70.43', 'Prepatellar bursitis, forearm', 'ICD10_2010'), +('M70.44', 'Prepatellar bursitis, hand', 'ICD10_2010'), +('M70.45', 'Prepatellar bursitis, pelvic region and thigh', 'ICD10_2010'), +('M70.46', 'Prepatellar bursitis, lower leg', 'ICD10_2010'), +('M70.47', 'Prepatellar bursitis, ankle and foot', 'ICD10_2010'), +('M70.48', 'Prepatellar bursitis, other', 'ICD10_2010'), +('M70.49', 'Prepatellar bursitis, site unspecified', 'ICD10_2010'), +('M70.5', 'Other bursitis of knee', 'ICD10_2010'), +('M70.50', 'Other bursitis of knee, multiple sites', 'ICD10_2010'), +('M70.51', 'Other bursitis of knee, shoulder region', 'ICD10_2010'), +('M70.52', 'Other bursitis of knee, upper arm', 'ICD10_2010'), +('M70.53', 'Other bursitis of knee, forearm', 'ICD10_2010'), +('M70.54', 'Other bursitis of knee, hand', 'ICD10_2010'), +('M70.55', 'Other bursitis of knee, pelvic region and thigh', 'ICD10_2010'), +('M70.56', 'Other bursitis of knee, lower leg', 'ICD10_2010'), +('M70.57', 'Other bursitis of knee, ankle and foot', 'ICD10_2010'), +('M70.58', 'Other bursitis of knee, other', 'ICD10_2010'), +('M70.59', 'Other bursitis of knee, site unspecified', 'ICD10_2010'), +('M70.6', 'Trochanteric bursitis', 'ICD10_2010'), +('M70.60', 'Trochanteric bursitis, multiple sites', 'ICD10_2010'), +('M70.61', 'Trochanteric bursitis, shoulder region', 'ICD10_2010'), +('M70.62', 'Trochanteric bursitis, upper arm', 'ICD10_2010'), +('M70.63', 'Trochanteric bursitis, forearm', 'ICD10_2010'), +('M70.64', 'Trochanteric bursitis, hand', 'ICD10_2010'), +('M70.65', 'Trochanteric bursitis, pelvic region and thigh', 'ICD10_2010'), +('M70.66', 'Trochanteric bursitis, lower leg', 'ICD10_2010'), +('M70.67', 'Trochanteric bursitis, ankle and foot', 'ICD10_2010'), +('M70.68', 'Trochanteric bursitis, other', 'ICD10_2010'), +('M70.69', 'Trochanteric bursitis, site unspecified', 'ICD10_2010'), +('M70.7', 'Other bursitis of hip', 'ICD10_2010'), +('M70.70', 'Other bursitis of hip, multiple sites', 'ICD10_2010'), +('M70.71', 'Other bursitis of hip, shoulder region', 'ICD10_2010'), +('M70.72', 'Other bursitis of hip, upper arm', 'ICD10_2010'), +('M70.73', 'Other bursitis of hip, forearm', 'ICD10_2010'), +('M70.74', 'Other bursitis of hip, hand', 'ICD10_2010'), +('M70.75', 'Other bursitis of hip, pelvic region and thigh', 'ICD10_2010'), +('M70.76', 'Other bursitis of hip, lower leg', 'ICD10_2010'), +('M70.77', 'Other bursitis of hip, ankle and foot', 'ICD10_2010'), +('M70.78', 'Other bursitis of hip, other', 'ICD10_2010'), +('M70.79', 'Other bursitis of hip, site unspecified', 'ICD10_2010'), +('M70.8', 'Other soft tissue disorder related to use overuse and pressure', 'ICD10_2010'), +('M70.80', 'Other soft tissue disorder related to use overuse and pressure, multiple sites', 'ICD10_2010'), +('M70.81', 'Other soft tissue disorder related to use overuse and pressure, shoulder region', 'ICD10_2010'), +('M70.82', 'Other soft tissue disorder related to use overuse and pressure, upper arm', 'ICD10_2010'), +('M70.83', 'Other soft tissue disorder related to use overuse and pressure, forearm', 'ICD10_2010'), +('M70.84', 'Other soft tissue disorder related to use overuse and pressure, hand', 'ICD10_2010'), +('M70.85', 'Other soft tissue disorder related to use overuse and pressure, pelvic region and thigh', 'ICD10_2010'), +('M70.86', 'Other soft tissue disorder related to use overuse and pressure, lower leg', 'ICD10_2010'), +('M70.87', 'Other soft tissue disorder related to use overuse and pressure, ankle and foot', 'ICD10_2010'), +('M70.88', 'Other soft tissue disorder related to use overuse and pressure, other', 'ICD10_2010'), +('M70.89', 'Other soft tissue disorder related to use overuse and pressure, site unspecified', 'ICD10_2010'), +('M70.9', 'Unspecified soft tissue disorder related to use overuse and pressure', 'ICD10_2010'), +('M70.90', 'Unspecified soft tissue disorder related to use overuse and pressure, multiple sites', 'ICD10_2010'), +('M70.91', 'Unspecified soft tissue disorder related to use overuse and pressure, shoulder region', 'ICD10_2010'), +('M70.92', 'Unspecified soft tissue disorder related to use overuse and pressure, upper arm', 'ICD10_2010'), +('M70.93', 'Unspecified soft tissue disorder related to use overuse and pressure, forearm', 'ICD10_2010'), +('M70.94', 'Unspecified soft tissue disorder related to use overuse and pressure, hand', 'ICD10_2010'), +('M70.95', 'Unspecified soft tissue disorder related to use overuse and pressure, pelvic region and thigh', 'ICD10_2010'), +('M70.96', 'Unspecified soft tissue disorder related to use overuse and pressure, lower leg', 'ICD10_2010'), +('M70.97', 'Unspecified soft tissue disorder related to use overuse and pressure, ankle and foot', 'ICD10_2010'), +('M70.98', 'Unspecified soft tissue disorder related to use overuse and pressure, other', 'ICD10_2010'), +('M70.99', 'Unspecified soft tissue disorder related to use overuse and pressure, site unspecified', 'ICD10_2010'), +('M71', 'Other bursopathies', 'ICD10_2010'), +('M71.0', 'Abscess of bursa', 'ICD10_2010'), +('M71.00', 'Abscess of bursa, multiple sites', 'ICD10_2010'), +('M71.01', 'Abscess of bursa, shoulder region', 'ICD10_2010'), +('M71.02', 'Abscess of bursa, upper arm', 'ICD10_2010'), +('M71.03', 'Abscess of bursa, forearm', 'ICD10_2010'), +('M71.04', 'Abscess of bursa, hand', 'ICD10_2010'), +('M71.05', 'Abscess of bursa, pelvic region and thigh', 'ICD10_2010'), +('M71.06', 'Abscess of bursa, lower leg', 'ICD10_2010'), +('M71.07', 'Abscess of bursa, ankle and foot', 'ICD10_2010'), +('M71.08', 'Abscess of bursa, other', 'ICD10_2010'), +('M71.09', 'Abscess of bursa, site unspecified', 'ICD10_2010'), +('M71.1', 'Other infective bursitis', 'ICD10_2010'), +('M71.10', 'Other infective bursitis, multiple sites', 'ICD10_2010'), +('M71.11', 'Other infective bursitis, shoulder region', 'ICD10_2010'), +('M71.12', 'Other infective bursitis, upper arm', 'ICD10_2010'), +('M71.13', 'Other infective bursitis, forearm', 'ICD10_2010'), +('M71.14', 'Other infective bursitis, hand', 'ICD10_2010'), +('M71.15', 'Other infective bursitis, pelvic region and thigh', 'ICD10_2010'), +('M71.16', 'Other infective bursitis, lower leg', 'ICD10_2010'), +('M71.17', 'Other infective bursitis, ankle and foot', 'ICD10_2010'), +('M71.18', 'Other infective bursitis, other', 'ICD10_2010'), +('M71.19', 'Other infective bursitis, site unspecified', 'ICD10_2010'), +('M71.2', 'Synovial cyst of popliteal space [baker]', 'ICD10_2010'), +('M71.20', 'Synovial cyst of popliteal space [Baker], multiple sites', 'ICD10_2010'), +('M71.21', 'Synovial cyst of popliteal space [Baker], shoulder region', 'ICD10_2010'), +('M71.22', 'Synovial cyst of popliteal space [Baker], upper arm', 'ICD10_2010'), +('M71.23', 'Synovial cyst of popliteal space [Baker], forearm', 'ICD10_2010'), +('M71.24', 'Synovial cyst of popliteal space [Baker], hand', 'ICD10_2010'), +('M71.25', 'Synovial cyst of popliteal space [Baker], pelvic region and thigh', 'ICD10_2010'), +('M71.26', 'Synovial cyst of popliteal space [Baker], lower leg', 'ICD10_2010'), +('M71.27', 'Synovial cyst of popliteal space [Baker], ankle and foot', 'ICD10_2010'), +('M71.28', 'Synovial cyst of popliteal space [Baker], other', 'ICD10_2010'), +('M71.29', 'Synovial cyst of popliteal space [Baker], site unspecified', 'ICD10_2010'), +('M71.3', 'Other bursal cyst', 'ICD10_2010'), +('M71.30', 'Other bursal cyst, multiple sites', 'ICD10_2010'), +('M71.31', 'Other bursal cyst, shoulder region', 'ICD10_2010'), +('M71.32', 'Other bursal cyst, upper arm', 'ICD10_2010'), +('M71.33', 'Other bursal cyst, forearm', 'ICD10_2010'), +('M71.34', 'Other bursal cyst, hand', 'ICD10_2010'), +('M71.35', 'Other bursal cyst, pelvic region and thigh', 'ICD10_2010'), +('M71.36', 'Other bursal cyst, lower leg', 'ICD10_2010'), +('M71.37', 'Other bursal cyst, ankle and foot', 'ICD10_2010'), +('M71.38', 'Other bursal cyst, other', 'ICD10_2010'), +('M71.39', 'Other bursal cyst, site unspecified', 'ICD10_2010'), +('M71.4', 'Calcium deposit in bursa', 'ICD10_2010'), +('M71.40', 'Calcium deposit in bursa, multiple sites', 'ICD10_2010'), +('M71.42', 'Calcium deposit in bursa, upper arm', 'ICD10_2010'), +('M71.43', 'Calcium deposit in bursa, forearm', 'ICD10_2010'), +('M71.44', 'Calcium deposit in bursa, hand', 'ICD10_2010'), +('M71.45', 'Calcium deposit in bursa, pelvic region and thigh', 'ICD10_2010'), +('M71.46', 'Calcium deposit in bursa, lower leg', 'ICD10_2010'), +('M71.47', 'Calcium deposit in bursa, ankle and foot', 'ICD10_2010'), +('M71.48', 'Calcium deposit in bursa, other', 'ICD10_2010'), +('M71.49', 'Calcium deposit in bursa, site unspecified', 'ICD10_2010'), +('M71.5', 'Other bursitis, not elsewhere classified', 'ICD10_2010'), +('M71.50', 'Other bursitis, not elsewhere classified, multiple sites', 'ICD10_2010'), +('M71.52', 'Other bursitis, not elsewhere classified, upper arm', 'ICD10_2010'), +('M71.53', 'Other bursitis, not elsewhere classified, forearm', 'ICD10_2010'), +('M71.54', 'Other bursitis, not elsewhere classified, hand', 'ICD10_2010'), +('M71.55', 'Other bursitis, not elsewhere classified, pelvic region and thigh', 'ICD10_2010'), +('M71.56', 'Other bursitis, not elsewhere classified, lower leg', 'ICD10_2010'), +('M71.57', 'Other bursitis, not elsewhere classified, ankle and foot', 'ICD10_2010'), +('M71.58', 'Other bursitis, not elsewhere classified, other', 'ICD10_2010'), +('M71.59', 'Other bursitis, not elsewhere classified, site unspecified', 'ICD10_2010'), +('M71.8', 'Other specified bursopathies', 'ICD10_2010'), +('M71.80', 'Other specified bursopathies, multiple sites', 'ICD10_2010'), +('M71.81', 'Other specified bursopathies, shoulder region', 'ICD10_2010'), +('M71.82', 'Other specified bursopathies, upper arm', 'ICD10_2010'), +('M71.83', 'Other specified bursopathies, forearm', 'ICD10_2010'), +('M71.84', 'Other specified bursopathies, hand', 'ICD10_2010'), +('M71.85', 'Other specified bursopathies, pelvic region and thigh', 'ICD10_2010'), +('M71.86', 'Other specified bursopathies, lower leg', 'ICD10_2010'), +('M71.87', 'Other specified bursopathies, ankle and foot', 'ICD10_2010'), +('M71.88', 'Other specified bursopathies, other', 'ICD10_2010'), +('M71.89', 'Other specified bursopathies, site unspecified', 'ICD10_2010'), +('M71.9', 'Bursopathy, unspecified', 'ICD10_2010'), +('M71.90', 'Bursopathy, unspecified, multiple sites', 'ICD10_2010'), +('M71.91', 'Bursopathy, unspecified, shoulder region', 'ICD10_2010'), +('M71.92', 'Bursopathy, unspecified, upper arm', 'ICD10_2010'), +('M71.93', 'Bursopathy, unspecified, forearm', 'ICD10_2010'), +('M71.94', 'Bursopathy, unspecified, hand', 'ICD10_2010'), +('M71.95', 'Bursopathy, unspecified, pelvic region and thigh', 'ICD10_2010'), +('M71.96', 'Bursopathy, unspecified, lower leg', 'ICD10_2010'), +('M71.97', 'Bursopathy, unspecified, ankle and foot', 'ICD10_2010'), +('M71.98', 'Bursopathy, unspecified, other', 'ICD10_2010'), +('M71.99', 'Bursopathy, unspecified, site unspecified', 'ICD10_2010'), +('M72', 'Fibroblastic disorders', 'ICD10_2010'), +('M72.0', 'Palmar fascial fibromatosis [dupuytren]', 'ICD10_2010'), +('M72.00', 'Palmar fascial fibromatosis [Dupuytren], multiple sites', 'ICD10_2010'), +('M72.01', 'Palmar fascial fibromatosis [Dupuytren], shoulder region', 'ICD10_2010'), +('M72.02', 'Palmar fascial fibromatosis [Dupuytren], upper arm', 'ICD10_2010'), +('M72.03', 'Palmar fascial fibromatosis [Dupuytren], forearm', 'ICD10_2010'), +('M72.04', 'Palmar fascial fibromatosis [Dupuytren], hand', 'ICD10_2010'), +('M72.05', 'Palmar fascial fibromatosis [Dupuytren], pelvic region and thigh', 'ICD10_2010'), +('M72.06', 'Palmar fascial fibromatosis [Dupuytren], lower leg', 'ICD10_2010'), +('M72.07', 'Palmar fascial fibromatosis [Dupuytren], ankle and foot', 'ICD10_2010'), +('M72.08', 'Palmar fascial fibromatosis [Dupuytren], other', 'ICD10_2010'), +('M72.09', 'Palmar fascial fibromatosis [Dupuytren], site unspecified', 'ICD10_2010'), +('M72.1', 'Knuckle pads', 'ICD10_2010'), +('M72.10', 'Knuckle pads, multiple sites', 'ICD10_2010'), +('M72.11', 'Knuckle pads, shoulder region', 'ICD10_2010'), +('M72.12', 'Knuckle pads, upper arm', 'ICD10_2010'), +('M72.13', 'Knuckle pads, forearm', 'ICD10_2010'), +('M72.14', 'Knuckle pads, hand', 'ICD10_2010'), +('M72.15', 'Knuckle pads, pelvic region and thigh', 'ICD10_2010'), +('M72.16', 'Knuckle pads, lower leg', 'ICD10_2010'), +('M72.17', 'Knuckle pads, ankle and foot', 'ICD10_2010'), +('M72.18', 'Knuckle pads, other', 'ICD10_2010'), +('M72.19', 'Knuckle pads, site unspecified', 'ICD10_2010'), +('M72.2', 'Plantar fascial fibromatosis', 'ICD10_2010'), +('M72.20', 'Plantar fascial fibromatosis, multiple sites', 'ICD10_2010'), +('M72.21', 'Plantar fascial fibromatosis, shoulder region', 'ICD10_2010'), +('M72.22', 'Plantar fascial fibromatosis, upper arm', 'ICD10_2010'), +('M72.23', 'Plantar fascial fibromatosis, forearm', 'ICD10_2010'), +('M72.24', 'Plantar fascial fibromatosis, hand', 'ICD10_2010'), +('M72.25', 'Plantar fascial fibromatosis, pelvic region and thigh', 'ICD10_2010'), +('M72.26', 'Plantar fascial fibromatosis, lower leg', 'ICD10_2010'), +('M72.27', 'Plantar fascial fibromatosis, ankle and foot', 'ICD10_2010'), +('M72.28', 'Plantar fascial fibromatosis, other', 'ICD10_2010'), +('M72.29', 'Plantar fascial fibromatosis, site unspecified', 'ICD10_2010'), +('M72.4', 'Pseudosarcomatous fibromatosis', 'ICD10_2010'), +('M72.40', 'Pseudosarcomatous fibromatosis, multiple sites', 'ICD10_2010'); +INSERT INTO `icd10` (`ID_ICD10`, `Diagnosa`, `Versi_ICD10`) VALUES +('M72.41', 'Pseudosarcomatous fibromatosis, shoulder region', 'ICD10_2010'), +('M72.42', 'Pseudosarcomatous fibromatosis, upper arm', 'ICD10_2010'), +('M72.43', 'Pseudosarcomatous fibromatosis, forearm', 'ICD10_2010'), +('M72.44', 'Pseudosarcomatous fibromatosis, hand', 'ICD10_2010'), +('M72.45', 'Pseudosarcomatous fibromatosis, pelvic region and thigh', 'ICD10_2010'), +('M72.46', 'Pseudosarcomatous fibromatosis, lower leg', 'ICD10_2010'), +('M72.47', 'Pseudosarcomatous fibromatosis, ankle and foot', 'ICD10_2010'), +('M72.48', 'Pseudosarcomatous fibromatosis, other', 'ICD10_2010'), +('M72.49', 'Pseudosarcomatous fibromatosis, site unspecified', 'ICD10_2010'), +('M72.5', 'Fasciitis, not elsewhere classified', 'ICD10_2010'), +('M72.50', 'Fasciitis, not elsewhere classified, multiple sites', 'ICD10_2010'), +('M72.51', 'Fasciitis, not elsewhere classified, shoulder region', 'ICD10_2010'), +('M72.52', 'Fasciitis, not elsewhere classified, upper arm', 'ICD10_2010'), +('M72.53', 'Fasciitis, not elsewhere classified, forearm', 'ICD10_2010'), +('M72.54', 'Fasciitis, not elsewhere classified, hand', 'ICD10_2010'), +('M72.55', 'Fasciitis, not elsewhere classified, pelvic region and thigh', 'ICD10_2010'), +('M72.56', 'Fasciitis, not elsewhere classified, lower leg', 'ICD10_2010'), +('M72.57', 'Fasciitis, not elsewhere classified, ankle and foot', 'ICD10_2010'), +('M72.58', 'Fasciitis, not elsewhere classified, other', 'ICD10_2010'), +('M72.59', 'Fasciitis, not elsewhere classified, site unspecified', 'ICD10_2010'), +('M72.6', 'Necrotizing fasciitis', 'ICD10_2010'), +('M72.60', 'Necrotizing fasciitis, multiple sites', 'ICD10_2010'), +('M72.61', 'Necrotizing fasciitis, shoulder region', 'ICD10_2010'), +('M72.62', 'Necrotizing fasciitis, upper arm', 'ICD10_2010'), +('M72.63', 'Necrotizing fasciitis, forearm', 'ICD10_2010'), +('M72.64', 'Necrotizing fasciitis, hand', 'ICD10_2010'), +('M72.65', 'Necrotizing fasciitis, pelvic region and thigh', 'ICD10_2010'), +('M72.66', 'Necrotizing fasciitis, lower leg', 'ICD10_2010'), +('M72.67', 'Necrotizing fasciitis, ankle and foot', 'ICD10_2010'), +('M72.68', 'Necrotizing fasciitis, other', 'ICD10_2010'), +('M72.69', 'Necrotizing fasciitis, site unspecified', 'ICD10_2010'), +('M72.8', 'Other fibroblastic disorders', 'ICD10_2010'), +('M72.80', 'Other fibroblastic disorders, multiple sites', 'ICD10_2010'), +('M72.81', 'Other fibroblastic disorders, shoulder region', 'ICD10_2010'), +('M72.82', 'Other fibroblastic disorders, upper arm', 'ICD10_2010'), +('M72.83', 'Other fibroblastic disorders, forearm', 'ICD10_2010'), +('M72.84', 'Other fibroblastic disorders, hand', 'ICD10_2010'), +('M72.85', 'Other fibroblastic disorders, pelvic region and thigh', 'ICD10_2010'), +('M72.86', 'Other fibroblastic disorders, lower leg', 'ICD10_2010'), +('M72.87', 'Other fibroblastic disorders, ankle and foot', 'ICD10_2010'), +('M72.88', 'Other fibroblastic disorders, other', 'ICD10_2010'), +('M72.89', 'Other fibroblastic disorders, site unspecified', 'ICD10_2010'), +('M72.9', 'Fibroblastic disorder, unspecified', 'ICD10_2010'), +('M72.90', 'Fibroblastic disorder, unspecified, multiple sites', 'ICD10_2010'), +('M72.91', 'Fibroblastic disorder, unspecified, shoulder region', 'ICD10_2010'), +('M72.92', 'Fibroblastic disorder, unspecified, upper arm', 'ICD10_2010'), +('M72.93', 'Fibroblastic disorder, unspecified, forearm', 'ICD10_2010'), +('M72.94', 'Fibroblastic disorder, unspecified, hand', 'ICD10_2010'), +('M72.95', 'Fibroblastic disorder, unspecified, pelvic region and thigh', 'ICD10_2010'), +('M72.96', 'Fibroblastic disorder, unspecified, lower leg', 'ICD10_2010'), +('M72.97', 'Fibroblastic disorder, unspecified, ankle and foot', 'ICD10_2010'), +('M72.98', 'Fibroblastic disorder, unspecified, other', 'ICD10_2010'), +('M72.99', 'Fibroblastic disorder, unspecified, site unspecified', 'ICD10_2010'), +('M73', 'Soft tissue disorders in diseases classified elsewhere', 'ICD10_2010'), +('M73.0', 'Gonococcal bursitis', 'ICD10_2010'), +('M73.00', 'Gonococcal bursitis, multiple sites', 'ICD10_2010'), +('M73.01', 'Gonococcal bursitis, shoulder region', 'ICD10_2010'), +('M73.02', 'Gonococcal bursitis, upper arm', 'ICD10_2010'), +('M73.03', 'Gonococcal bursitis, forearm', 'ICD10_2010'), +('M73.04', 'Gonococcal bursitis, hand', 'ICD10_2010'), +('M73.05', 'Gonococcal bursitis, pelvic region and thigh', 'ICD10_2010'), +('M73.06', 'Gonococcal bursitis, lower leg', 'ICD10_2010'), +('M73.07', 'Gonococcal bursitis, ankle and foot', 'ICD10_2010'), +('M73.08', 'Gonococcal bursitis, other', 'ICD10_2010'), +('M73.09', 'Gonococcal bursitis, site unspecified', 'ICD10_2010'), +('M73.1', 'Syphilitic bursitis', 'ICD10_2010'), +('M73.10', 'Syphilitic bursitis, multiple sites', 'ICD10_2010'), +('M73.11', 'Syphilitic bursitis, shoulder region', 'ICD10_2010'), +('M73.12', 'Syphilitic bursitis, upper arm', 'ICD10_2010'), +('M73.13', 'Syphilitic bursitis, forearm', 'ICD10_2010'), +('M73.14', 'Syphilitic bursitis, hand', 'ICD10_2010'), +('M73.15', 'Syphilitic bursitis, pelvic region and thigh', 'ICD10_2010'), +('M73.16', 'Syphilitic bursitis, lower leg', 'ICD10_2010'), +('M73.17', 'Syphilitic bursitis, ankle and foot', 'ICD10_2010'), +('M73.18', 'Syphilitic bursitis, other', 'ICD10_2010'), +('M73.19', 'Syphilitic bursitis, site unspecified', 'ICD10_2010'), +('M73.8', 'Other soft tissue disorders in diseases classified elsewhere', 'ICD10_2010'), +('M73.80', 'Other soft tissue disorders in diseases classified elsewhere, multiple sites', 'ICD10_2010'), +('M73.81', 'Other soft tissue disorders in diseases classified elsewhere, shoulder region', 'ICD10_2010'), +('M73.82', 'Other soft tissue disorders in diseases classified elsewhere, upper arm', 'ICD10_2010'), +('M73.83', 'Other soft tissue disorders in diseases classified elsewhere, forearm', 'ICD10_2010'), +('M73.84', 'Other soft tissue disorders in diseases classified elsewhere, hand', 'ICD10_2010'), +('M73.85', 'Other soft tissue disorders in diseases classified elsewhere, pelvic region and thigh', 'ICD10_2010'), +('M73.86', 'Other soft tissue disorders in diseases classified elsewhere, lower leg', 'ICD10_2010'), +('M73.87', 'Other soft tissue disorders in diseases classified elsewhere, ankle and foot', 'ICD10_2010'), +('M73.88', 'Other soft tissue disorders in diseases classified elsewhere, other', 'ICD10_2010'), +('M73.89', 'Other soft tissue disorders in diseases classified elsewhere, site unspecified', 'ICD10_2010'), +('M75', 'Shoulder lesions', 'ICD10_2010'), +('M75.0', 'Adhesive capsulitis of shoulder', 'ICD10_2010'), +('M75.1', 'Rotator cuff syndrome', 'ICD10_2010'), +('M75.2', 'Bicipital tendinitis', 'ICD10_2010'), +('M75.3', 'Calcific tendinitis of shoulder', 'ICD10_2010'), +('M75.4', 'Impingement syndrome of shoulder', 'ICD10_2010'), +('M75.5', 'Bursitis of shoulder', 'ICD10_2010'), +('M75.8', 'Other shoulder lesions', 'ICD10_2010'), +('M75.9', 'Shoulder lesion, unspecified', 'ICD10_2010'), +('M76', 'Enthesopathies of lower limb, excluding foot', 'ICD10_2010'), +('M76.0', 'Gluteal tendinitis', 'ICD10_2010'), +('M76.00', 'Gluteal tendinitis, multiple sites', 'ICD10_2010'), +('M76.01', 'Gluteal tendinitis, shoulder region', 'ICD10_2010'), +('M76.02', 'Gluteal tendinitis, upper arm', 'ICD10_2010'), +('M76.03', 'Gluteal tendinitis, forearm', 'ICD10_2010'), +('M76.04', 'Gluteal tendinitis, hand', 'ICD10_2010'), +('M76.05', 'Gluteal tendinitis, pelvic region and thigh', 'ICD10_2010'), +('M76.06', 'Gluteal tendinitis, lower leg', 'ICD10_2010'), +('M76.07', 'Gluteal tendinitis, ankle and foot', 'ICD10_2010'), +('M76.08', 'Gluteal tendinitis, other', 'ICD10_2010'), +('M76.09', 'Gluteal tendinitis, site unspecified', 'ICD10_2010'), +('M76.1', 'Psoas tendinitis', 'ICD10_2010'), +('M76.10', 'Psoas tendinitis, multiple sites', 'ICD10_2010'), +('M76.11', 'Psoas tendinitis, shoulder region', 'ICD10_2010'), +('M76.12', 'Psoas tendinitis, upper arm', 'ICD10_2010'), +('M76.13', 'Psoas tendinitis, forearm', 'ICD10_2010'), +('M76.14', 'Psoas tendinitis, hand', 'ICD10_2010'), +('M76.15', 'Psoas tendinitis, pelvic region and thigh', 'ICD10_2010'), +('M76.16', 'Psoas tendinitis, lower leg', 'ICD10_2010'), +('M76.17', 'Psoas tendinitis, ankle and foot', 'ICD10_2010'), +('M76.18', 'Psoas tendinitis, other', 'ICD10_2010'), +('M76.19', 'Psoas tendinitis, site unspecified', 'ICD10_2010'), +('M76.2', 'Iliac crest spur', 'ICD10_2010'), +('M76.20', 'Iliac crest spur, multiple sites', 'ICD10_2010'), +('M76.21', 'Iliac crest spur, shoulder region', 'ICD10_2010'), +('M76.22', 'Iliac crest spur, upper arm', 'ICD10_2010'), +('M76.23', 'Iliac crest spur, forearm', 'ICD10_2010'), +('M76.24', 'Iliac crest spur, hand', 'ICD10_2010'), +('M76.25', 'Iliac crest spur, pelvic region and thigh', 'ICD10_2010'), +('M76.26', 'Iliac crest spur, lower leg', 'ICD10_2010'), +('M76.27', 'Iliac crest spur, ankle and foot', 'ICD10_2010'), +('M76.28', 'Iliac crest spur, other', 'ICD10_2010'), +('M76.29', 'Iliac crest spur, site unspecified', 'ICD10_2010'), +('M76.3', 'Iliotibial band syndrome', 'ICD10_2010'), +('M76.30', 'Iliotibial band syndrome, multiple sites', 'ICD10_2010'), +('M76.31', 'Iliotibial band syndrome, shoulder region', 'ICD10_2010'), +('M76.32', 'Iliotibial band syndrome, upper arm', 'ICD10_2010'), +('M76.33', 'Iliotibial band syndrome, forearm', 'ICD10_2010'), +('M76.34', 'Iliotibial band syndrome, hand', 'ICD10_2010'), +('M76.35', 'Iliotibial band syndrome, pelvic region and thigh', 'ICD10_2010'), +('M76.36', 'Iliotibial band syndrome, lower leg', 'ICD10_2010'), +('M76.37', 'Iliotibial band syndrome, ankle and foot', 'ICD10_2010'), +('M76.38', 'Iliotibial band syndrome, other', 'ICD10_2010'), +('M76.39', 'Iliotibial band syndrome, site unspecified', 'ICD10_2010'), +('M76.4', 'Tibial collateral bursitis [pellegrini-stieda]', 'ICD10_2010'), +('M76.40', 'Tibial collateral bursitis [Pellegrini-Stieda], multiple sites', 'ICD10_2010'), +('M76.41', 'Tibial collateral bursitis [Pellegrini-Stieda], shoulder region', 'ICD10_2010'), +('M76.42', 'Tibial collateral bursitis [Pellegrini-Stieda], upper arm', 'ICD10_2010'), +('M76.43', 'Tibial collateral bursitis [Pellegrini-Stieda], forearm', 'ICD10_2010'), +('M76.44', 'Tibial collateral bursitis [Pellegrini-Stieda], hand', 'ICD10_2010'), +('M76.45', 'Tibial collateral bursitis [Pellegrini-Stieda], pelvic region and thigh', 'ICD10_2010'), +('M76.46', 'Tibial collateral bursitis [Pellegrini-Stieda], lower leg', 'ICD10_2010'), +('M76.47', 'Tibial collateral bursitis [Pellegrini-Stieda], ankle and foot', 'ICD10_2010'), +('M76.48', 'Tibial collateral bursitis [Pellegrini-Stieda], other', 'ICD10_2010'), +('M76.49', 'Tibial collateral bursitis [pellegrini-stieda], site unspecified', 'ICD10_2010'), +('M76.5', 'Patellar tendinitis', 'ICD10_2010'), +('M76.50', 'Patellar tendinitis, multiple sites', 'ICD10_2010'), +('M76.51', 'Patellar tendinitis, shoulder region', 'ICD10_2010'), +('M76.52', 'Patellar tendinitis, upper arm', 'ICD10_2010'), +('M76.53', 'Patellar tendinitis, forearm', 'ICD10_2010'), +('M76.54', 'Patellar tendinitis, hand', 'ICD10_2010'), +('M76.55', 'Patellar tendinitis, pelvic region and thigh', 'ICD10_2010'), +('M76.56', 'Patellar tendinitis, lower leg', 'ICD10_2010'), +('M76.57', 'Patellar tendinitis, ankle and foot', 'ICD10_2010'), +('M76.58', 'Patellar tendinitis, other', 'ICD10_2010'), +('M76.59', 'Patellar tendinitis, site unspecified', 'ICD10_2010'), +('M76.6', 'Achilles tendinitis', 'ICD10_2010'), +('M76.60', 'Achilles tendinitis, multiple sites', 'ICD10_2010'), +('M76.61', 'Achilles tendinitis, shoulder region', 'ICD10_2010'), +('M76.62', 'Achilles tendinitis, upper arm', 'ICD10_2010'), +('M76.63', 'Achilles tendinitis, forearm', 'ICD10_2010'), +('M76.64', 'Achilles tendinitis, hand', 'ICD10_2010'), +('M76.65', 'Achilles tendinitis, pelvic region and thigh', 'ICD10_2010'), +('M76.66', 'Achilles tendinitis, lower leg', 'ICD10_2010'), +('M76.67', 'Achilles tendinitis, ankle and foot', 'ICD10_2010'), +('M76.68', 'Achilles tendinitis, other', 'ICD10_2010'), +('M76.69', 'Achilles tendinitis, site unspecified', 'ICD10_2010'), +('M76.7', 'Peroneal tendinitis', 'ICD10_2010'), +('M76.70', 'Peroneal tendinitis, multiple sites', 'ICD10_2010'), +('M76.71', 'Peroneal tendinitis, shoulder region', 'ICD10_2010'), +('M76.72', 'Peroneal tendinitis, upper arm', 'ICD10_2010'), +('M76.73', 'Peroneal tendinitis, forearm', 'ICD10_2010'), +('M76.74', 'Peroneal tendinitis, hand', 'ICD10_2010'), +('M76.75', 'Peroneal tendinitis, pelvic region and thigh', 'ICD10_2010'), +('M76.76', 'Peroneal tendinitis, lower leg', 'ICD10_2010'), +('M76.77', 'Peroneal tendinitis, ankle and foot', 'ICD10_2010'), +('M76.78', 'Peroneal tendinitis, other', 'ICD10_2010'), +('M76.79', 'Peroneal tendinitis, site unspecified', 'ICD10_2010'), +('M76.8', 'Other enthesopathies of lower limb, excluding foot', 'ICD10_2010'), +('M76.80', 'Other enthesopathies of lower limb, excluding foot, multiple sites', 'ICD10_2010'), +('M76.81', 'Other enthesopathies of lower limb, excluding foot, shoulder region', 'ICD10_2010'), +('M76.82', 'Other enthesopathies of lower limb, excluding foot, upper arm', 'ICD10_2010'), +('M76.83', 'Other enthesopathies of lower limb, excluding foot, forearm', 'ICD10_2010'), +('M76.84', 'Other enthesopathies of lower limb, excluding foot, hand', 'ICD10_2010'), +('M76.85', 'Other enthesopathies of lower limb, excluding foot, pelvic region and thigh', 'ICD10_2010'), +('M76.86', 'Other enthesopathies of lower limb, excluding foot, lower leg', 'ICD10_2010'), +('M76.87', 'Other enthesopathies of lower limb, excluding foot, ankle and foot', 'ICD10_2010'), +('M76.88', 'Other enthesopathies of lower limb, excluding foot, other', 'ICD10_2010'), +('M76.89', 'Other enthesopathies of lower limb, excluding foot, site unspecified', 'ICD10_2010'), +('M76.9', 'Enthesopathy of lower limb, unspecified', 'ICD10_2010'), +('M76.90', 'Enthesopathy of lower limb, unspecified, multiple sites', 'ICD10_2010'), +('M76.91', 'Enthesopathy of lower limb, unspecified, shoulder region', 'ICD10_2010'), +('M76.92', 'Enthesopathy of lower limb, unspecified, upper arm', 'ICD10_2010'), +('M76.93', 'Enthesopathy of lower limb, unspecified, forearm', 'ICD10_2010'), +('M76.94', 'Enthesopathy of lower limb, unspecified, hand', 'ICD10_2010'), +('M76.95', 'Enthesopathy of lower limb, unspecified, pelvic region and thigh', 'ICD10_2010'), +('M76.96', 'Enthesopathy of lower limb, unspecified, lower leg', 'ICD10_2010'), +('M76.97', 'Enthesopathy of lower limb, unspecified, ankle and foot', 'ICD10_2010'), +('M76.98', 'Enthesopathy of lower limb, unspecified, other', 'ICD10_2010'), +('M76.99', 'Enthesopathy of lower limb, unspecified, site unspecified', 'ICD10_2010'), +('M77', 'Other enthesopathies', 'ICD10_2010'), +('M77.0', 'Medial epicondylitis', 'ICD10_2010'), +('M77.00', 'Medial epicondylitis, multiple sites', 'ICD10_2010'), +('M77.01', 'Medial epicondylitis, shoulder region', 'ICD10_2010'), +('M77.02', 'Medial epicondylitis, upper arm', 'ICD10_2010'), +('M77.03', 'Medial epicondylitis, forearm', 'ICD10_2010'), +('M77.04', 'Medial epicondylitis, hand', 'ICD10_2010'), +('M77.05', 'Medial epicondylitis, pelvic region and thigh', 'ICD10_2010'), +('M77.06', 'Medial epicondylitis, lower leg', 'ICD10_2010'), +('M77.07', 'Medial epicondylitis, ankle and foot', 'ICD10_2010'), +('M77.08', 'Medial epicondylitis, other', 'ICD10_2010'), +('M77.09', 'Medial epicondylitis, site unspecified', 'ICD10_2010'), +('M77.1', 'Lateral epicondylitis', 'ICD10_2010'), +('M77.10', 'Lateral epicondylitis, multiple sites', 'ICD10_2010'), +('M77.11', 'Lateral epicondylitis, shoulder region', 'ICD10_2010'), +('M77.12', 'Lateral epicondylitis, upper arm', 'ICD10_2010'), +('M77.13', 'Lateral epicondylitis, forearm', 'ICD10_2010'), +('M77.14', 'Lateral epicondylitis, hand', 'ICD10_2010'), +('M77.15', 'Lateral epicondylitis, pelvic region and thigh', 'ICD10_2010'), +('M77.16', 'Lateral epicondylitis, lower leg', 'ICD10_2010'), +('M77.17', 'Lateral epicondylitis, ankle and foot', 'ICD10_2010'), +('M77.18', 'Lateral epicondylitis, other', 'ICD10_2010'), +('M77.19', 'Lateral epicondylitis, site unspecified', 'ICD10_2010'), +('M77.2', 'Periarthritis of wrist', 'ICD10_2010'), +('M77.20', 'Periarthritis of wrist, multiple sites', 'ICD10_2010'), +('M77.21', 'Periarthritis of wrist, shoulder region', 'ICD10_2010'), +('M77.22', 'Periarthritis of wrist, upper arm', 'ICD10_2010'), +('M77.23', 'Periarthritis of wrist, forearm', 'ICD10_2010'), +('M77.24', 'Periarthritis of wrist, hand', 'ICD10_2010'), +('M77.25', 'Periarthritis of wrist, pelvic region and thigh', 'ICD10_2010'), +('M77.26', 'Periarthritis of wrist, lower leg', 'ICD10_2010'), +('M77.27', 'Periarthritis of wrist, ankle and foot', 'ICD10_2010'), +('M77.28', 'Periarthritis of wrist, other', 'ICD10_2010'), +('M77.29', 'Periarthritis of wrist, site unspecified', 'ICD10_2010'), +('M77.3', 'Calcaneal spur', 'ICD10_2010'), +('M77.30', 'Calcaneal spur, multiple sites', 'ICD10_2010'), +('M77.31', 'Calcaneal spur, shoulder region', 'ICD10_2010'), +('M77.32', 'Calcaneal spur, upper arm', 'ICD10_2010'), +('M77.33', 'Calcaneal spur, forearm', 'ICD10_2010'), +('M77.34', 'Calcaneal spur, hand', 'ICD10_2010'), +('M77.35', 'Calcaneal spur, pelvic region and thigh', 'ICD10_2010'), +('M77.36', 'Calcaneal spur, lower leg', 'ICD10_2010'), +('M77.37', 'Calcaneal spur, ankle and foot', 'ICD10_2010'), +('M77.38', 'Calcaneal spur, other', 'ICD10_2010'), +('M77.39', 'Calcaneal spur, site unspecified', 'ICD10_2010'), +('M77.4', 'Metatarsalgia', 'ICD10_2010'), +('M77.40', 'Metatarsalgia, multiple sites', 'ICD10_2010'), +('M77.41', 'Metatarsalgia, shoulder region', 'ICD10_2010'), +('M77.42', 'Metatarsalgia, upper arm', 'ICD10_2010'), +('M77.43', 'Metatarsalgia, forearm', 'ICD10_2010'), +('M77.44', 'Metatarsalgia, hand', 'ICD10_2010'), +('M77.45', 'Metatarsalgia, pelvic region and thigh', 'ICD10_2010'), +('M77.46', 'Metatarsalgia, lower leg', 'ICD10_2010'), +('M77.47', 'Metatarsalgia, ankle and foot', 'ICD10_2010'), +('M77.48', 'Metatarsalgia, other', 'ICD10_2010'), +('M77.49', 'Metatarsalgia, site unspecified', 'ICD10_2010'), +('M77.5', 'Other enthesopathy of foot', 'ICD10_2010'), +('M77.50', 'Other enthesopathy of foot, multiple sites', 'ICD10_2010'), +('M77.51', 'Other enthesopathy of foot, shoulder region', 'ICD10_2010'), +('M77.52', 'Other enthesopathy of foot, upper arm', 'ICD10_2010'), +('M77.53', 'Other enthesopathy of foot, forearm', 'ICD10_2010'), +('M77.54', 'Other enthesopathy of foot, hand', 'ICD10_2010'), +('M77.55', 'Other enthesopathy of foot, pelvic region and thigh', 'ICD10_2010'), +('M77.56', 'Other enthesopathy of foot, lower leg', 'ICD10_2010'), +('M77.57', 'Other enthesopathy of foot, ankle and foot', 'ICD10_2010'), +('M77.58', 'Other enthesopathy of foot, other', 'ICD10_2010'), +('M77.59', 'Other enthesopathy of foot, site unspecified', 'ICD10_2010'), +('M77.8', 'Other enthesopathies, not elsewhere classified', 'ICD10_2010'), +('M77.80', 'Other enthesopathies, not elsewhere classified, multiple sites', 'ICD10_2010'), +('M77.81', 'Other enthesopathies, not elsewhere classified, shoulder region', 'ICD10_2010'), +('M77.82', 'Other enthesopathies, not elsewhere classified, upper arm', 'ICD10_2010'), +('M77.83', 'Other enthesopathies, not elsewhere classified, forearm', 'ICD10_2010'), +('M77.84', 'Other enthesopathies, not elsewhere classified, hand', 'ICD10_2010'), +('M77.85', 'Other enthesopathies, not elsewhere classified, pelvic region and thigh', 'ICD10_2010'), +('M77.86', 'Other enthesopathies, not elsewhere classified, lower leg', 'ICD10_2010'), +('M77.87', 'Other enthesopathies, not elsewhere classified, ankle and foot', 'ICD10_2010'), +('M77.88', 'Other enthesopathies, not elsewhere classified, other', 'ICD10_2010'), +('M77.89', 'Other enthesopathies, not elsewhere classified, site unspecified', 'ICD10_2010'), +('M77.9', 'Enthesopathy, unspecified', 'ICD10_2010'), +('M77.90', 'Enthesopathy, unspecified, multiple sites', 'ICD10_2010'), +('M77.91', 'Enthesopathy, unspecified, shoulder region', 'ICD10_2010'), +('M77.92', 'Enthesopathy, unspecified, upper arm', 'ICD10_2010'), +('M77.93', 'Enthesopathy, unspecified, forearm', 'ICD10_2010'), +('M77.94', 'Enthesopathy, unspecified, hand', 'ICD10_2010'), +('M77.95', 'Enthesopathy, unspecified, pelvic region and thigh', 'ICD10_2010'), +('M77.96', 'Enthesopathy, unspecified, lower leg', 'ICD10_2010'), +('M77.97', 'Enthesopathy, unspecified, ankle and foot', 'ICD10_2010'), +('M77.98', 'Enthesopathy, unspecified, other', 'ICD10_2010'), +('M77.99', 'Enthesopathy, unspecified, site unspecified', 'ICD10_2010'), +('M79', 'Other soft tissue disorders, not elsewhere classified', 'ICD10_2010'), +('M79.0', 'Rheumatism, unspecified', 'ICD10_2010'), +('M79.00', 'Rheumatism, unspecified, multiple sites', 'ICD10_2010'), +('M79.01', 'Rheumatism, unspecified, shoulder region', 'ICD10_2010'), +('M79.02', 'Rheumatism, unspecified, upper arm', 'ICD10_2010'), +('M79.03', 'Rheumatism, unspecified, forearm', 'ICD10_2010'), +('M79.04', 'Rheumatism, unspecified, hand', 'ICD10_2010'), +('M79.05', 'Rheumatism, unspecified, pelvic region and thigh', 'ICD10_2010'), +('M79.06', 'Rheumatism, unspecified, lower leg', 'ICD10_2010'), +('M79.07', 'Rheumatism, unspecified, ankle and foot', 'ICD10_2010'), +('M79.08', 'Rheumatism, unspecified, other', 'ICD10_2010'), +('M79.09', 'Rheumatism, unspecified, site unspecified', 'ICD10_2010'), +('M79.1', 'Myalgia', 'ICD10_2010'), +('M79.10', 'Myalgia, multiple sites', 'ICD10_2010'), +('M79.11', 'Myalgia, shoulder region', 'ICD10_2010'), +('M79.12', 'Myalgia, upper arm', 'ICD10_2010'), +('M79.13', 'Myalgia, forearm', 'ICD10_2010'), +('M79.14', 'Myalgia, hand', 'ICD10_2010'), +('M79.15', 'Myalgia, pelvic and thigh', 'ICD10_2010'), +('M79.16', 'Myalgia, lower leg', 'ICD10_2010'), +('M79.17', 'Myalgia, ankle and foot', 'ICD10_2010'), +('M79.18', 'Myalgia, other site', 'ICD10_2010'), +('M79.19', 'Myalgia, site unspecified', 'ICD10_2010'), +('M79.2', 'Neuralgia and neuritis, unspecified', 'ICD10_2010'), +('M79.20', 'Neuralgia and neuritis, unspecified, multiple sites', 'ICD10_2010'), +('M79.21', 'Neuralgia and neuritis, unspecified, shoulder region', 'ICD10_2010'), +('M79.22', 'Neuralgia and neuritis, unspecified, upper arm', 'ICD10_2010'), +('M79.23', 'Neuralgia and neuritis, unspecified, forearm', 'ICD10_2010'), +('M79.24', 'Neuralgia and neuritis, unspecified, hand', 'ICD10_2010'), +('M79.25', 'Neuralgia and neuritis, unspecified, pelvic and thigh', 'ICD10_2010'), +('M79.26', 'Neuralgia and neuritis, unspecified, lower leg', 'ICD10_2010'), +('M79.27', 'Neuralgia and neuritis, unspecified, ankle and foot', 'ICD10_2010'), +('M79.28', 'Neuralgia and neuritis, unspecified, other site', 'ICD10_2010'), +('M79.29', 'Neuralgia and neuritis, unspecified, site unspecified', 'ICD10_2010'), +('M79.3', 'Panniculitis, unspecified', 'ICD10_2010'), +('M79.30', 'Panniculitis, unspecified, multiple sites', 'ICD10_2010'), +('M79.31', 'Panniculitis, unspecified, shoulder region', 'ICD10_2010'), +('M79.32', 'Panniculitis, unspecified, upper arm', 'ICD10_2010'), +('M79.33', 'Panniculitis, unspecified, forearm', 'ICD10_2010'), +('M79.34', 'Panniculitis, unspecified, hand', 'ICD10_2010'), +('M79.35', 'Panniculitis, unspecified, pelvic and thigh', 'ICD10_2010'), +('M79.36', 'Panniculitis, unspecified, lower leg', 'ICD10_2010'), +('M79.37', 'Panniculitis, unspecified, ankle and foot', 'ICD10_2010'), +('M79.38', 'Panniculitis, unspecified, other site', 'ICD10_2010'), +('M79.39', 'Panniculitis, unspecified, site unspecified', 'ICD10_2010'), +('M79.4', 'Hypertrophy of (infrapatellar) fat pad', 'ICD10_2010'), +('M79.40', 'Hypertrophy of (infrapatellar) fat pad, multiple sites', 'ICD10_2010'), +('M79.41', 'Hypertrophy of (infrapatellar) fat pad, shoulder region', 'ICD10_2010'), +('M79.42', 'Hypertrophy of (infrapatellar) fat pad, upper arm', 'ICD10_2010'), +('M79.43', 'Hypertrophy of (infrapatellar) fat pad, forearm', 'ICD10_2010'), +('M79.44', 'Hypertrophy of (infrapatellar) fat pad, hand', 'ICD10_2010'), +('M79.45', 'Hypertrophy of (infrapatellar) fat pad, pelvic region and thigh', 'ICD10_2010'), +('M79.46', 'Hypertrophy of (infrapatellar) fat pad, lower leg', 'ICD10_2010'), +('M79.47', 'Hypertrophy of (infrapatellar) fat pad, ankle and foot', 'ICD10_2010'), +('M79.48', 'Hypertrophy of (infrapatellar) fat pad, other', 'ICD10_2010'), +('M79.49', 'Hypertrophy of (infrapatellar) fat pad, site unspecified', 'ICD10_2010'), +('M79.5', 'Residual foreign body in soft tissue', 'ICD10_2010'), +('M79.50', 'Residual foreign body in soft tissue, multiple sites', 'ICD10_2010'), +('M79.51', 'Residual foreign body in soft tissue, shoulder region', 'ICD10_2010'), +('M79.52', 'Residual foreign body in soft tissue, upper arm', 'ICD10_2010'), +('M79.53', 'Residual foreign body in soft tissue, forearm', 'ICD10_2010'), +('M79.54', 'Residual foreign body in soft tissue, hand', 'ICD10_2010'), +('M79.55', 'Residual foreign body in soft tissue, pelvic and thigh', 'ICD10_2010'), +('M79.56', 'Residual foreign body in soft tissue, lower leg', 'ICD10_2010'), +('M79.57', 'Residual foreign body in soft tissue, ankle and foot', 'ICD10_2010'), +('M79.58', 'Residual foreign body in soft tissue, other site', 'ICD10_2010'), +('M79.59', 'Residual foreign body in soft tissue, site unspecified', 'ICD10_2010'), +('M79.6', 'Pain in limb', 'ICD10_2010'), +('M79.60', 'Pain in limb, multiple sites', 'ICD10_2010'), +('M79.61', 'Pain in limb, shoulder region', 'ICD10_2010'), +('M79.62', 'Pain in limb, upper arm', 'ICD10_2010'), +('M79.63', 'Pain in limb, forearm', 'ICD10_2010'), +('M79.64', 'Pain in limb, hand', 'ICD10_2010'), +('M79.65', 'Pain in limb, pelvic and thigh', 'ICD10_2010'), +('M79.66', 'Pain in limb, lower leg', 'ICD10_2010'), +('M79.67', 'Pain in limb, ankle and foot', 'ICD10_2010'), +('M79.68', 'Pain in limb, other site', 'ICD10_2010'), +('M79.69', 'Pain in limb, site unspecified', 'ICD10_2010'), +('M79.7', 'Fibromyalgia', 'ICD10_2010'), +('M79.70', 'Fibromyalgia, multiple sites', 'ICD10_2010'), +('M79.71', 'Fibromyalgia, shoulder region', 'ICD10_2010'), +('M79.72', 'Fibromyalgia, upper arm', 'ICD10_2010'), +('M79.73', 'Fibromyalgia, forearm', 'ICD10_2010'), +('M79.74', 'Fibromyalgia, hand', 'ICD10_2010'), +('M79.75', 'Fibromyalgia, pelvic and thigh', 'ICD10_2010'), +('M79.76', 'Fibromyalgia, lower leg', 'ICD10_2010'), +('M79.77', 'Fibromyalgia, ankle and foot', 'ICD10_2010'), +('M79.78', 'Fibromyalgia, other site', 'ICD10_2010'), +('M79.79', 'Fibromyalgia, site unspecified', 'ICD10_2010'), +('M79.8', 'Other specified soft tissue disorders', 'ICD10_2010'), +('M79.80', 'Other specified soft tissue disorders, multiple sites', 'ICD10_2010'), +('M79.81', 'Other specified soft tissue disorders, shoulder region', 'ICD10_2010'), +('M79.82', 'Other specified soft tissue disorders, upper arm', 'ICD10_2010'), +('M79.83', 'Other specified soft tissue disorders, forearm', 'ICD10_2010'), +('M79.84', 'Other specified soft tissue disorders, hand', 'ICD10_2010'), +('M79.85', 'Other specified soft tissue disorders, pelvic and thigh', 'ICD10_2010'), +('M79.86', 'Other specified soft tissue disorders, lower leg', 'ICD10_2010'), +('M79.87', 'Other specified soft tissue disorders, ankle and foot', 'ICD10_2010'), +('M79.88', 'Other specified soft tissue disorders, other site', 'ICD10_2010'), +('M79.89', 'Other specified soft tissue disorders, site unspecified', 'ICD10_2010'), +('M79.9', 'Soft tissue disorder, unspecified', 'ICD10_2010'), +('M79.90', 'Soft tissue disorder, unspecified, multiple sites', 'ICD10_2010'), +('M79.91', 'Soft tissue disorder, unspecified, shoulder region', 'ICD10_2010'), +('M79.92', 'Soft tissue disorder, unspecified, upper arm', 'ICD10_2010'), +('M79.93', 'Soft tissue disorder, unspecified, forearm', 'ICD10_2010'), +('M79.94', 'Soft tissue disorder, unspecified, hand', 'ICD10_2010'), +('M79.95', 'Soft tissue disorder, unspecified, pelvic and thigh', 'ICD10_2010'), +('M79.96', 'Soft tissue disorder, unspecified, lower leg', 'ICD10_2010'), +('M79.97', 'Soft tissue disorder, unspecified, ankle and foot', 'ICD10_2010'), +('M79.98', 'Soft tissue disorder, unspecified, other site', 'ICD10_2010'), +('M79.99', 'Soft tissue disorder, unspecified, site unspecified', 'ICD10_2010'), +('M80', 'Osteoporosis with pathological fracture', 'ICD10_2010'), +('M80.0', 'Postmenopausal osteoporosis with pathological fracture', 'ICD10_2010'), +('M80.00', 'Postmenopausal osteoporosis with pathological fracture, multiple sites', 'ICD10_2010'), +('M80.01', 'Postmenopausal osteoporosis with pathological fracture, shoulder region', 'ICD10_2010'), +('M80.02', 'Postmenopausal osteoporosis with pathological fracture, upper arm', 'ICD10_2010'), +('M80.03', 'Postmenopausal osteoporosis with pathological fracture, forearm', 'ICD10_2010'), +('M80.04', 'Postmenopausal osteoporosis with pathological fracture, hand', 'ICD10_2010'), +('M80.05', 'Postmenopausal osteoporosis with pathological fracture, pelvic and thigh', 'ICD10_2010'), +('M80.06', 'Postmenopausal osteoporosis with pathological fracture, lower leg', 'ICD10_2010'), +('M80.07', 'Postmenopausal osteoporosis with pathological fracture, ankle and foot', 'ICD10_2010'), +('M80.08', 'Postmenopausal osteoporosis with pathological fracture, other site', 'ICD10_2010'), +('M80.09', 'Postmenopausal osteoporosis with pathological fracture, site unspecified', 'ICD10_2010'), +('M80.1', 'Postoophorectomy osteoporosis with pathological fracture', 'ICD10_2010'), +('M80.10', 'Postoophorectomy osteoporosis with pathological fracture, multiple sites', 'ICD10_2010'), +('M80.11', 'Postoophorectomy osteoporosis with pathological fracture, shoulder region', 'ICD10_2010'), +('M80.12', 'Postoophorectomy osteoporosis with pathological fracture, upper arm', 'ICD10_2010'), +('M80.13', 'Postoophorectomy osteoporosis with pathological fracture, forearm', 'ICD10_2010'), +('M80.14', 'Postoophorectomy osteoporosis with pathological fracture, hand', 'ICD10_2010'), +('M80.15', 'Postoophorectomy osteoporosis with pathological fracture, pelvic and thigh', 'ICD10_2010'), +('M80.16', 'Postoophorectomy osteoporosis with pathological fracture, lower leg', 'ICD10_2010'), +('M80.17', 'Postoophorectomy osteoporosis with pathological fracture, ankle and foot', 'ICD10_2010'), +('M80.18', 'Postoophorectomy osteoporosis with pathological fracture, other site', 'ICD10_2010'), +('M80.19', 'Postoophorectomy osteoporosis with pathological fracture, site unspecified', 'ICD10_2010'), +('M80.2', 'Osteoporosis of disuse with pathological fracture', 'ICD10_2010'), +('M80.20', 'Osteoporosis of disuse with pathological fracture, multiple sites', 'ICD10_2010'), +('M80.21', 'Osteoporosis of disuse with pathological fracture, shoulder region', 'ICD10_2010'), +('M80.22', 'Osteoporosis of disuse with pathological fracture, upper arm', 'ICD10_2010'), +('M80.23', 'Osteoporosis of disuse with pathological fracture, forearm', 'ICD10_2010'), +('M80.24', 'Osteoporosis of disuse with pathological fracture, hand', 'ICD10_2010'), +('M80.25', 'Osteoporosis of disuse with pathological fracture, pelvic and thigh', 'ICD10_2010'), +('M80.26', 'Osteoporosis of disuse with pathological fracture, lower leg', 'ICD10_2010'), +('M80.27', 'Osteoporosis of disuse with pathological fracture, ankle and foot', 'ICD10_2010'), +('M80.28', 'Osteoporosis of disuse with pathological fracture, other site', 'ICD10_2010'), +('M80.29', 'Osteoporosis of disuse with pathological fracture, site unspecified', 'ICD10_2010'), +('M80.3', 'Postsurgical malabsorption osteoporosis with path fracture', 'ICD10_2010'), +('M80.30', 'Postsurgical malabsorption osteoporosis with path fracture, multiple sites', 'ICD10_2010'), +('M80.31', 'Postsurgical malabsorption osteoporosis with path fracture, shoulder region', 'ICD10_2010'), +('M80.32', 'Postsurgical malabsorption osteoporosis with path fracture, upper arm', 'ICD10_2010'), +('M80.33', 'Postsurgical malabsorption osteoporosis with path fracture, forearm', 'ICD10_2010'), +('M80.34', 'Postsurgical malabsorption osteoporosis with path fracture, hand', 'ICD10_2010'), +('M80.35', 'Postsurgical malabsorption osteoporosis with path fracture, pelvic and thigh', 'ICD10_2010'), +('M80.36', 'Postsurgical malabsorption osteoporosis with path fracture, lower leg', 'ICD10_2010'), +('M80.37', 'Postsurgical malabsorption osteoporosis with path fracture, ankle and foot', 'ICD10_2010'), +('M80.38', 'Postsurgical malabsorption osteoporosis with path fracture, other site', 'ICD10_2010'), +('M80.39', 'Postsurgical malabsorption osteoporosis with path fracture, site unspecified', 'ICD10_2010'), +('M80.4', 'Drug-induced osteoporosis with pathological fracture', 'ICD10_2010'), +('M80.40', 'Drug-induced osteoporosis with pathological fracture, multiple sites', 'ICD10_2010'), +('M80.41', 'Drug-induced osteoporosis with pathological fracture, shoulder region', 'ICD10_2010'), +('M80.42', 'Drug-induced osteoporosis with pathological fracture, upper arm', 'ICD10_2010'), +('M80.43', 'Drug-induced osteoporosis with pathological fracture, forearm', 'ICD10_2010'), +('M80.44', 'Drug-induced osteoporosis with pathological fracture, hand', 'ICD10_2010'), +('M80.45', 'Drug-induced osteoporosis with pathological fracture, pelvic and thigh', 'ICD10_2010'), +('M80.46', 'Drug-induced osteoporosis with pathological fracture, lower leg', 'ICD10_2010'), +('M80.47', 'Drug-induced osteoporosis with pathological fracture, ankle and foot', 'ICD10_2010'), +('M80.48', 'Drug-induced osteoporosis with pathological fracture, other site', 'ICD10_2010'), +('M80.49', 'Drug-induced osteoporosis with pathological fracture, site unspecified', 'ICD10_2010'), +('M80.5', 'Idiopathic osteoporosis with pathological fracture', 'ICD10_2010'), +('M80.50', 'Idiopathic osteoporosis with pathological fracture, multiple sites', 'ICD10_2010'), +('M80.51', 'Idiopathic osteoporosis with pathological fracture, shoulder region', 'ICD10_2010'), +('M80.52', 'Idiopathic osteoporosis with pathological fracture, upper arm', 'ICD10_2010'), +('M80.53', 'Idiopathic osteoporosis with pathological fracture, forearm', 'ICD10_2010'), +('M80.54', 'Idiopathic osteoporosis with pathological fracture, hand', 'ICD10_2010'), +('M80.55', 'Idiopathic osteoporosis with pathological fracture, pelvic and thigh', 'ICD10_2010'), +('M80.56', 'Idiopathic osteoporosis with pathological fracture, lower leg', 'ICD10_2010'), +('M80.57', 'Idiopathic osteoporosis with pathological fracture, ankle and foot', 'ICD10_2010'), +('M80.58', 'Idiopathic osteoporosis with pathological fracture, other site', 'ICD10_2010'), +('M80.59', 'Idiopathic osteoporosis with pathological fracture, site unspecified', 'ICD10_2010'), +('M80.8', 'Other osteoporosis with pathological fracture', 'ICD10_2010'), +('M80.80', 'Other osteoporosis with pathological fracture, multiple sites', 'ICD10_2010'), +('M80.81', 'Other osteoporosis with pathological fracture, shoulder region', 'ICD10_2010'), +('M80.82', 'Other osteoporosis with pathological fracture, upper arm', 'ICD10_2010'), +('M80.83', 'Other osteoporosis with pathological fracture, forearm', 'ICD10_2010'), +('M80.84', 'Other osteoporosis with pathological fracture, hand', 'ICD10_2010'), +('M80.85', 'Other osteoporosis with pathological fracture, pelvic and thigh', 'ICD10_2010'), +('M80.86', 'Other osteoporosis with pathological fracture, lower leg', 'ICD10_2010'), +('M80.87', 'Other osteoporosis with pathological fracture, ankle and foot', 'ICD10_2010'), +('M80.88', 'Other osteoporosis with pathological fracture, other site', 'ICD10_2010'), +('M80.89', 'Other osteoporosis with pathological fracture, site unspecified', 'ICD10_2010'), +('M80.9', 'Unspecified osteoporosis with pathological fracture', 'ICD10_2010'), +('M80.90', 'Unspecified osteoporosis with pathological fracture, multiple sites', 'ICD10_2010'), +('M80.91', 'Unspecified osteoporosis with pathological fracture, shoulder region', 'ICD10_2010'), +('M80.92', 'Unspecified osteoporosis with pathological fracture, upper arm', 'ICD10_2010'), +('M80.93', 'Unspecified osteoporosis with pathological fracture, forearm', 'ICD10_2010'), +('M80.94', 'Unspecified osteoporosis with pathological fracture, hand', 'ICD10_2010'), +('M80.95', 'Unspecified osteoporosis with pathological fracture, pelvic and thigh', 'ICD10_2010'), +('M80.96', 'Unspecified osteoporosis with pathological fracture, lower leg', 'ICD10_2010'), +('M80.97', 'Unspecified osteoporosis with pathological fracture, ankle and foot', 'ICD10_2010'), +('M80.98', 'Unspecified osteoporosis with pathological fracture, other site', 'ICD10_2010'), +('M80.99', 'Unspecified osteoporosis with pathological fracture, site unspecified', 'ICD10_2010'), +('M81', 'Osteoporosis without pathological fracture', 'ICD10_2010'), +('M81.0', 'Postmenopausal osteoporosis', 'ICD10_2010'), +('M81.00', 'Postmenopausal osteoporosis, multiple sites', 'ICD10_2010'), +('M81.01', 'Postmenopausal osteoporosis, shoulder region', 'ICD10_2010'), +('M81.02', 'Postmenopausal osteoporosis, upper arm', 'ICD10_2010'), +('M81.03', 'Postmenopausal osteoporosis, forearm', 'ICD10_2010'), +('M81.04', 'Postmenopausal osteoporosis, hand', 'ICD10_2010'), +('M81.05', 'Postmenopausal osteoporosis, pelvic and thigh', 'ICD10_2010'), +('M81.06', 'Postmenopausal osteoporosis, lower leg', 'ICD10_2010'), +('M81.07', 'Postmenopausal osteoporosis, ankle and foot', 'ICD10_2010'), +('M81.08', 'Postmenopausal osteoporosis, other site', 'ICD10_2010'), +('M81.09', 'Postmenopausal osteoporosis, site unspecified', 'ICD10_2010'), +('M81.1', 'Postoophorectomy osteoporosis', 'ICD10_2010'), +('M81.10', 'Postoophorectomy osteoporosis, multiple sites', 'ICD10_2010'), +('M81.11', 'Postoophorectomy osteoporosis, shoulder region', 'ICD10_2010'), +('M81.12', 'Postoophorectomy osteoporosis, upper arm', 'ICD10_2010'), +('M81.13', 'Postoophorectomy osteoporosis, forearm', 'ICD10_2010'), +('M81.14', 'Postoophorectomy osteoporosis, hand', 'ICD10_2010'), +('M81.15', 'Postoophorectomy osteoporosis, pelvic and thigh', 'ICD10_2010'), +('M81.16', 'Postoophorectomy osteoporosis, lower leg', 'ICD10_2010'), +('M81.17', 'Postoophorectomy osteoporosis, ankle and foot', 'ICD10_2010'), +('M81.18', 'Postoophorectomy osteoporosis, other site', 'ICD10_2010'), +('M81.19', 'Postoophorectomy osteoporosis, site unspecified', 'ICD10_2010'), +('M81.2', 'Osteoporosis of disuse', 'ICD10_2010'), +('M81.20', 'Osteoporosis of disuse, multiple sites', 'ICD10_2010'), +('M81.21', 'Osteoporosis of disuse, shoulder region', 'ICD10_2010'), +('M81.22', 'Osteoporosis of disuse, upper arm', 'ICD10_2010'), +('M81.23', 'Osteoporosis of disuse, forearm', 'ICD10_2010'), +('M81.24', 'Osteoporosis of disuse, hand', 'ICD10_2010'), +('M81.25', 'Osteoporosis of disuse, pelvic and thigh', 'ICD10_2010'), +('M81.26', 'Osteoporosis of disuse, lower leg', 'ICD10_2010'), +('M81.27', 'Osteoporosis of disuse, ankle and foot', 'ICD10_2010'), +('M81.28', 'Osteoporosis of disuse, other site', 'ICD10_2010'), +('M81.29', 'Osteoporosis of disuse, site unspecified', 'ICD10_2010'), +('M81.3', 'Postsurgical malabsorption osteoporosis', 'ICD10_2010'), +('M81.30', 'Postsurgical malabsorption osteoporosis, multiple sites', 'ICD10_2010'), +('M81.31', 'Postsurgical malabsorption osteoporosis, shoulder region', 'ICD10_2010'), +('M81.32', 'Postsurgical malabsorption osteoporosis, upper arm', 'ICD10_2010'), +('M81.33', 'Postsurgical malabsorption osteoporosis, forearm', 'ICD10_2010'), +('M81.34', 'Postsurgical malabsorption osteoporosis, hand', 'ICD10_2010'), +('M81.35', 'Postsurgical malabsorption osteoporosis, pelvic and thigh', 'ICD10_2010'), +('M81.36', 'Postsurgical malabsorption osteoporosis, lower leg', 'ICD10_2010'), +('M81.37', 'Postsurgical malabsorption osteoporosis, ankle and foot', 'ICD10_2010'), +('M81.38', 'Postsurgical malabsorption osteoporosis, other site', 'ICD10_2010'), +('M81.39', 'Postsurgical malabsorption osteoporosis, site unspecified', 'ICD10_2010'), +('M81.4', 'Drug-induced osteoporosis', 'ICD10_2010'), +('M81.40', 'Drug-induced osteoporosis, multiple sites', 'ICD10_2010'), +('M81.41', 'Drug-induced osteoporosis, shoulder region', 'ICD10_2010'), +('M81.42', 'Drug-induced osteoporosis, upper arm', 'ICD10_2010'), +('M81.43', 'Drug-induced osteoporosis, forearm', 'ICD10_2010'), +('M81.44', 'Drug-induced osteoporosis, hand', 'ICD10_2010'), +('M81.45', 'Drug-induced osteoporosis, pelvic and thigh', 'ICD10_2010'), +('M81.46', 'Drug-induced osteoporosis, lower leg', 'ICD10_2010'), +('M81.47', 'Drug-induced osteoporosis, ankle and foot', 'ICD10_2010'), +('M81.48', 'Drug-induced osteoporosis, other site', 'ICD10_2010'), +('M81.49', 'Drug-induced osteoporosis, site unspecified', 'ICD10_2010'), +('M81.5', 'Idiopathic osteoporosis', 'ICD10_2010'), +('M81.50', 'Idiopathic osteoporosis, multiple sites', 'ICD10_2010'), +('M81.51', 'Idiopathic osteoporosis, shoulder region', 'ICD10_2010'), +('M81.52', 'Idiopathic osteoporosis, upper arm', 'ICD10_2010'), +('M81.53', 'Idiopathic osteoporosis, forearm', 'ICD10_2010'), +('M81.54', 'Idiopathic osteoporosis, hand', 'ICD10_2010'), +('M81.55', 'Idiopathic osteoporosis, pelvic and thigh', 'ICD10_2010'), +('M81.56', 'Idiopathic osteoporosis, lower leg', 'ICD10_2010'), +('M81.57', 'Idiopathic osteoporosis, ankle and foot', 'ICD10_2010'), +('M81.58', 'Idiopathic osteoporosis, other site', 'ICD10_2010'), +('M81.59', 'Idiopathic osteoporosis, site unspecified', 'ICD10_2010'), +('M81.6', 'Localized osteoporosis [lequesne]', 'ICD10_2010'), +('M81.60', 'Localized osteoporosis [lequesne], multiple sites', 'ICD10_2010'), +('M81.61', 'Localized osteoporosis [lequesne], shoulder region', 'ICD10_2010'), +('M81.62', 'Localized osteoporosis [lequesne], upper arm', 'ICD10_2010'), +('M81.63', 'Localized osteoporosis [lequesne], forearm', 'ICD10_2010'), +('M81.64', 'Localized osteoporosis [lequesne], hand', 'ICD10_2010'), +('M81.65', 'Localized osteoporosis [lequesne], pelvic and thigh', 'ICD10_2010'), +('M81.66', 'Localized osteoporosis [lequesne], lower leg', 'ICD10_2010'), +('M81.67', 'Localized osteoporosis [lequesne], ankle and foot', 'ICD10_2010'), +('M81.68', 'Localized osteoporosis [lequesne], other site', 'ICD10_2010'), +('M81.69', 'Localized osteoporosis [lequesne], site unspecified', 'ICD10_2010'), +('M81.8', 'Other osteoporosis', 'ICD10_2010'), +('M81.80', 'Other osteoporosis, multiple sites', 'ICD10_2010'), +('M81.81', 'Other osteoporosis, shoulder region', 'ICD10_2010'), +('M81.82', 'Other osteoporosis, upper arm', 'ICD10_2010'), +('M81.83', 'Other osteoporosis, forearm', 'ICD10_2010'), +('M81.84', 'Other osteoporosis, hand', 'ICD10_2010'), +('M81.85', 'Other osteoporosis, pelvic and thigh', 'ICD10_2010'), +('M81.86', 'Other osteoporosis, lower leg', 'ICD10_2010'), +('M81.87', 'Other osteoporosis, ankle and foot', 'ICD10_2010'), +('M81.88', 'Other osteoporosis, other site', 'ICD10_2010'), +('M81.89', 'Other osteoporosis, site unspecified', 'ICD10_2010'), +('M81.9', 'Osteoporosis, unspecified', 'ICD10_2010'), +('M81.90', 'Osteoporosis, unspecified, multiple sites', 'ICD10_2010'), +('M81.91', 'Osteoporosis, unspecified, shoulder region', 'ICD10_2010'), +('M81.92', 'Osteoporosis, unspecified, upper arm', 'ICD10_2010'), +('M81.93', 'Osteoporosis, unspecified, forearm', 'ICD10_2010'), +('M81.94', 'Osteoporosis, unspecified, hand', 'ICD10_2010'), +('M81.95', 'Osteoporosis, unspecified, pelvic and thigh', 'ICD10_2010'), +('M81.96', 'Osteoporosis, unspecified, lower leg', 'ICD10_2010'), +('M81.97', 'Osteoporosis, unspecified, ankle and foot', 'ICD10_2010'), +('M81.98', 'Osteoporosis, unspecified, other site', 'ICD10_2010'), +('M81.99', 'Osteoporosis, unspecified, site unspecified', 'ICD10_2010'), +('M82', 'Osteoporosis in diseases classified elsewhere', 'ICD10_2010'), +('M82.0', 'Osteoporosis in multiple myelomatosis', 'ICD10_2010'), +('M82.00', 'Osteoporosis in multiple myelomatosis, multiple sites', 'ICD10_2010'), +('M82.01', 'Osteoporosis in multiple myelomatosis, shoulder region', 'ICD10_2010'), +('M82.02', 'Osteoporosis in multiple myelomatosis, upper arm', 'ICD10_2010'), +('M82.03', 'Osteoporosis in multiple myelomatosis, forearm', 'ICD10_2010'), +('M82.04', 'Osteoporosis in multiple myelomatosis, hand', 'ICD10_2010'), +('M82.05', 'Osteoporosis in multiple myelomatosis, pelvic and thigh', 'ICD10_2010'), +('M82.06', 'Osteoporosis in multiple myelomatosis, lower leg', 'ICD10_2010'), +('M82.07', 'Osteoporosis in multiple myelomatosis, ankle and foot', 'ICD10_2010'), +('M82.08', 'Osteoporosis in multiple myelomatosis, other site', 'ICD10_2010'), +('M82.09', 'Osteoporosis in multiple myelomatosis, site unspecified', 'ICD10_2010'), +('M82.1', 'Osteoporosis in endocrine disorders', 'ICD10_2010'), +('M82.10', 'Osteoporosis in endocrine disorders, multiple sites', 'ICD10_2010'), +('M82.11', 'Osteoporosis in endocrine disorders, shoulder region', 'ICD10_2010'), +('M82.12', 'Osteoporosis in endocrine disorders, upper arm', 'ICD10_2010'), +('M82.13', 'Osteoporosis in endocrine disorders, forearm', 'ICD10_2010'), +('M82.14', 'Osteoporosis in endocrine disorders, hand', 'ICD10_2010'), +('M82.15', 'Osteoporosis in endocrine disorders, pelvic and thigh', 'ICD10_2010'), +('M82.16', 'Osteoporosis in endocrine disorders, lower leg', 'ICD10_2010'), +('M82.17', 'Osteoporosis in endocrine disorders, ankle and foot', 'ICD10_2010'), +('M82.18', 'Osteoporosis in endocrine disorders, other site', 'ICD10_2010'), +('M82.19', 'Osteoporosis in endocrine disorders, site unspecified', 'ICD10_2010'), +('M82.8', 'Osteoporosis in other diseases classified elsewhere', 'ICD10_2010'), +('M82.80', 'Osteoporosis in other diseases classified elsewhere, multiple sites', 'ICD10_2010'), +('M82.81', 'Osteoporosis in other diseases classified elsewhere, shoulder region', 'ICD10_2010'), +('M82.82', 'Osteoporosis in other diseases classified elsewhere, upper arm', 'ICD10_2010'), +('M82.83', 'Osteoporosis in other diseases classified elsewhere, forearm', 'ICD10_2010'), +('M82.84', 'Osteoporosis in other diseases classified elsewhere, hand', 'ICD10_2010'), +('M82.85', 'Osteoporosis in other diseases classified elsewhere, pelvic and thigh', 'ICD10_2010'), +('M82.86', 'Osteoporosis in other diseases classified elsewhere, lower leg', 'ICD10_2010'), +('M82.87', 'Osteoporosis in other diseases classified elsewhere, ankle and foot', 'ICD10_2010'), +('M82.88', 'Osteoporosis in other diseases classified elsewhere, other site', 'ICD10_2010'), +('M82.89', 'Osteoporosis in other diseases classified elsewhere, site unspecified', 'ICD10_2010'), +('M83', 'Adult osteomalacia', 'ICD10_2010'), +('M83.0', 'Puerperal osteomalacia', 'ICD10_2010'), +('M83.00', 'Puerperal osteomalacia, multiple sites', 'ICD10_2010'), +('M83.01', 'Puerperal osteomalacia, shoulder region', 'ICD10_2010'), +('M83.02', 'Puerperal osteomalacia, upper arm', 'ICD10_2010'), +('M83.03', 'Puerperal osteomalacia, forearm', 'ICD10_2010'), +('M83.04', 'Puerperal osteomalacia, hand', 'ICD10_2010'), +('M83.05', 'Puerperal osteomalacia, pelvic and thigh', 'ICD10_2010'), +('M83.06', 'Puerperal osteomalacia, lower leg', 'ICD10_2010'), +('M83.07', 'Puerperal osteomalacia, ankle and foot', 'ICD10_2010'), +('M83.08', 'Puerperal osteomalacia, other site', 'ICD10_2010'), +('M83.09', 'Puerperal osteomalacia, site unspecified', 'ICD10_2010'), +('M83.1', 'Senile osteomalacia', 'ICD10_2010'), +('M83.10', 'Senile osteomalacia, multiple sites', 'ICD10_2010'), +('M83.11', 'Senile osteomalacia, shoulder region', 'ICD10_2010'), +('M83.12', 'Senile osteomalacia, upper arm', 'ICD10_2010'), +('M83.13', 'Senile osteomalacia, forearm', 'ICD10_2010'), +('M83.14', 'Senile osteomalacia, hand', 'ICD10_2010'), +('M83.15', 'Senile osteomalacia, pelvic and thigh', 'ICD10_2010'), +('M83.16', 'Senile osteomalacia, lower leg', 'ICD10_2010'), +('M83.17', 'Senile osteomalacia, ankle and foot', 'ICD10_2010'), +('M83.18', 'Senile osteomalacia, other site', 'ICD10_2010'), +('M83.19', 'Senile osteomalacia, site unspecified', 'ICD10_2010'), +('M83.2', 'Adult osteomalacia due to malabsorption', 'ICD10_2010'), +('M83.20', 'Adult osteomalacia due to malabsorption, multiple sites', 'ICD10_2010'), +('M83.21', 'Adult osteomalacia due to malabsorption, shoulder region', 'ICD10_2010'), +('M83.22', 'Adult osteomalacia due to malabsorption, upper arm', 'ICD10_2010'), +('M83.23', 'Adult osteomalacia due to malabsorption, forearm', 'ICD10_2010'), +('M83.24', 'Adult osteomalacia due to malabsorption, hand', 'ICD10_2010'), +('M83.25', 'Adult osteomalacia due to malabsorption, pelvic and thigh', 'ICD10_2010'), +('M83.26', 'Adult osteomalacia due to malabsorption, lower leg', 'ICD10_2010'), +('M83.27', 'Adult osteomalacia due to malabsorption, ankle and foot', 'ICD10_2010'), +('M83.28', 'Adult osteomalacia due to malabsorption, other site', 'ICD10_2010'), +('M83.29', 'Adult osteomalacia due to malabsorption, site unspecified', 'ICD10_2010'), +('M83.3', 'Adult osteomalacia due to malnutrition', 'ICD10_2010'), +('M83.30', 'Adult osteomalacia due to malnutrition, multiple sites', 'ICD10_2010'), +('M83.31', 'Adult osteomalacia due to malnutrition, shoulder region', 'ICD10_2010'), +('M83.32', 'Adult osteomalacia due to malnutrition, upper arm', 'ICD10_2010'), +('M83.33', 'Adult osteomalacia due to malnutrition, forearm', 'ICD10_2010'), +('M83.34', 'Adult osteomalacia due to malnutrition, hand', 'ICD10_2010'), +('M83.35', 'Adult osteomalacia due to malnutrition, pelvic and thigh', 'ICD10_2010'), +('M83.36', 'Adult osteomalacia due to malnutrition, lower leg', 'ICD10_2010'), +('M83.37', 'Adult osteomalacia due to malnutrition, ankle and foot', 'ICD10_2010'), +('M83.38', 'Adult osteomalacia due to malnutrition, other site', 'ICD10_2010'), +('M83.39', 'Adult osteomalacia due to malnutrition, site unspecified', 'ICD10_2010'), +('M83.4', 'Aluminium bone disease', 'ICD10_2010'), +('M83.40', 'Aluminium bone disease, multiple sites', 'ICD10_2010'), +('M83.41', 'Aluminium bone disease, shoulder region', 'ICD10_2010'), +('M83.42', 'Aluminium bone disease, upper arm', 'ICD10_2010'), +('M83.43', 'Aluminium bone disease, forearm', 'ICD10_2010'), +('M83.44', 'Aluminium bone disease, hand', 'ICD10_2010'), +('M83.45', 'Aluminium bone disease, pelvic and thigh', 'ICD10_2010'), +('M83.46', 'Aluminium bone disease, lower leg', 'ICD10_2010'), +('M83.47', 'Aluminium bone disease, ankle and foot', 'ICD10_2010'), +('M83.48', 'Aluminium bone disease, other site', 'ICD10_2010'), +('M83.49', 'Aluminium bone disease, site unspecified', 'ICD10_2010'), +('M83.5', 'Other drug-induced osteomalacia in adults', 'ICD10_2010'), +('M83.50', 'Other drug-induced osteomalacia in adults, multiple sites', 'ICD10_2010'), +('M83.51', 'Other drug-induced osteomalacia in adults, shoulder region', 'ICD10_2010'), +('M83.52', 'Other drug-induced osteomalacia in adults, upper arm', 'ICD10_2010'), +('M83.53', 'Other drug-induced osteomalacia in adults, forearm', 'ICD10_2010'), +('M83.54', 'Other drug-induced osteomalacia in adults, hand', 'ICD10_2010'), +('M83.55', 'Other drug-induced osteomalacia in adults, pelvic and thigh', 'ICD10_2010'), +('M83.56', 'Other drug-induced osteomalacia in adults, lower leg', 'ICD10_2010'), +('M83.57', 'Other drug-induced osteomalacia in adults, ankle and foot', 'ICD10_2010'), +('M83.58', 'Other drug-induced osteomalacia in adults, other site', 'ICD10_2010'), +('M83.59', 'Other drug-induced osteomalacia in adults, site unspecified', 'ICD10_2010'), +('M83.8', 'Other adult osteomalacia', 'ICD10_2010'), +('M83.80', 'Other adult osteomalacia, multiple sites', 'ICD10_2010'), +('M83.81', 'Other adult osteomalacia, shoulder region', 'ICD10_2010'), +('M83.82', 'Other adult osteomalacia, upper arm', 'ICD10_2010'), +('M83.83', 'Other adult osteomalacia, forearm', 'ICD10_2010'), +('M83.84', 'Other adult osteomalacia, hand', 'ICD10_2010'), +('M83.85', 'Other adult osteomalacia, pelvic and thigh', 'ICD10_2010'), +('M83.86', 'Other adult osteomalacia, lower leg', 'ICD10_2010'), +('M83.87', 'Other adult osteomalacia, ankle and foot', 'ICD10_2010'); +INSERT INTO `icd10` (`ID_ICD10`, `Diagnosa`, `Versi_ICD10`) VALUES +('M83.88', 'Other adult osteomalacia, other site', 'ICD10_2010'), +('M83.89', 'Other adult osteomalacia, site unspecified', 'ICD10_2010'), +('M83.9', 'Adult osteomalacia, unspecified', 'ICD10_2010'), +('M83.90', 'Adult osteomalacia, unspecified, multiple sites', 'ICD10_2010'), +('M83.91', 'Adult osteomalacia, unspecified, shoulder region', 'ICD10_2010'), +('M83.92', 'Adult osteomalacia, unspecified, upper arm', 'ICD10_2010'), +('M83.93', 'Adult osteomalacia, unspecified, forearm', 'ICD10_2010'), +('M83.94', 'Adult osteomalacia, unspecified, hand', 'ICD10_2010'), +('M83.95', 'Adult osteomalacia, unspecified, pelvic and thigh', 'ICD10_2010'), +('M83.96', 'Adult osteomalacia, unspecified, lower leg', 'ICD10_2010'), +('M83.97', 'Adult osteomalacia, unspecified, ankle and foot', 'ICD10_2010'), +('M83.98', 'Adult osteomalacia, unspecified, other site', 'ICD10_2010'), +('M83.99', 'Adult osteomalacia, unspecified, site unspecified', 'ICD10_2010'), +('M84', 'Disorders of continuity of bone', 'ICD10_2010'), +('M84.0', 'Malunion of fracture', 'ICD10_2010'), +('M84.00', 'Malunion of fracture, multiple sites', 'ICD10_2010'), +('M84.01', 'Malunion of fracture, shoulder region', 'ICD10_2010'), +('M84.02', 'Malunion of fracture, upper arm', 'ICD10_2010'), +('M84.03', 'Malunion of fracture, forearm', 'ICD10_2010'), +('M84.04', 'Malunion of fracture, hand', 'ICD10_2010'), +('M84.05', 'Malunion of fracture, pelvic and thigh', 'ICD10_2010'), +('M84.06', 'Malunion of fracture, lower leg', 'ICD10_2010'), +('M84.07', 'Malunion of fracture, ankle and foot', 'ICD10_2010'), +('M84.08', 'Malunion of fracture, other site', 'ICD10_2010'), +('M84.09', 'Malunion of fracture, site unspecified', 'ICD10_2010'), +('M84.1', 'Nonunion of fracture [pseudarthrosis]', 'ICD10_2010'), +('M84.10', 'Nonunion of fracture [pseudarthrosis], multiple sites', 'ICD10_2010'), +('M84.11', 'Nonunion of fracture [pseudarthrosis], shoulder region', 'ICD10_2010'), +('M84.12', 'Nonunion of fracture [pseudarthrosis], upper arm', 'ICD10_2010'), +('M84.13', 'Nonunion of fracture [pseudarthrosis], forearm', 'ICD10_2010'), +('M84.14', 'Nonunion of fracture [pseudarthrosis], hand', 'ICD10_2010'), +('M84.15', 'Nonunion of fracture [pseudarthrosis], pelvic and thigh', 'ICD10_2010'), +('M84.16', 'Nonunion of fracture [pseudarthrosis], lower leg', 'ICD10_2010'), +('M84.17', 'Nonunion of fracture [pseudarthrosis], ankle and foot', 'ICD10_2010'), +('M84.18', 'Nonunion of fracture [pseudarthrosis], other site', 'ICD10_2010'), +('M84.19', 'Nonunion of fracture [pseudarthrosis], site unspecified', 'ICD10_2010'), +('M84.2', 'Delayed union of fracture', 'ICD10_2010'), +('M84.20', 'Delayed union of fracture, multiple sites', 'ICD10_2010'), +('M84.21', 'Delayed union of fracture, shoulder region', 'ICD10_2010'), +('M84.22', 'Delayed union of fracture, upper arm', 'ICD10_2010'), +('M84.23', 'Delayed union of fracture, forearm', 'ICD10_2010'), +('M84.24', 'Delayed union of fracture, hand', 'ICD10_2010'), +('M84.25', 'Delayed union of fracture, pelvic and thigh', 'ICD10_2010'), +('M84.26', 'Delayed union of fracture, lower leg', 'ICD10_2010'), +('M84.27', 'Delayed union of fracture, ankle and foot', 'ICD10_2010'), +('M84.28', 'Delayed union of fracture, other site', 'ICD10_2010'), +('M84.29', 'Delayed union of fracture, site unspecified', 'ICD10_2010'), +('M84.3', 'Stress fracture, not elsewhere classified', 'ICD10_2010'), +('M84.30', 'Stress fracture, not elsewhere classified, multiple sites', 'ICD10_2010'), +('M84.31', 'Stress fracture, not elsewhere classified, shoulder region', 'ICD10_2010'), +('M84.32', 'Stress fracture, not elsewhere classified, upper arm', 'ICD10_2010'), +('M84.33', 'Stress fracture, not elsewhere classified, forearm', 'ICD10_2010'), +('M84.34', 'Stress fracture, not elsewhere classified, hand', 'ICD10_2010'), +('M84.35', 'Stress fracture, not elsewhere classified, pelvic and thigh', 'ICD10_2010'), +('M84.36', 'Stress fracture, not elsewhere classified, lower leg', 'ICD10_2010'), +('M84.37', 'Stress fracture, not elsewhere classified, ankle and foot', 'ICD10_2010'), +('M84.38', 'Stress fracture, not elsewhere classified, other site', 'ICD10_2010'), +('M84.39', 'Stress fracture, not elsewhere classified, site unspecified', 'ICD10_2010'), +('M84.4', 'Pathological fracture, not elsewhere classified', 'ICD10_2010'), +('M84.40', 'Pathological fracture, not elsewhere classified, multiple sites', 'ICD10_2010'), +('M84.41', 'Pathological fracture, not elsewhere classified, shoulder region', 'ICD10_2010'), +('M84.42', 'Pathological fracture, not elsewhere classified, upper arm', 'ICD10_2010'), +('M84.43', 'Pathological fracture, not elsewhere classified, forearm', 'ICD10_2010'), +('M84.44', 'Pathological fracture, not elsewhere classified, hand', 'ICD10_2010'), +('M84.45', 'Pathological fracture, not elsewhere classified, pelvic and thigh', 'ICD10_2010'), +('M84.46', 'Pathological fracture, not elsewhere classified, lower leg', 'ICD10_2010'), +('M84.47', 'Pathological fracture, not elsewhere classified, ankle and foot', 'ICD10_2010'), +('M84.48', 'Pathological fracture, not elsewhere classified, other site', 'ICD10_2010'), +('M84.49', 'Pathological fracture, not elsewhere classified, site unspecified', 'ICD10_2010'), +('M84.8', 'Other disorders of continuity of bone', 'ICD10_2010'), +('M84.80', 'Other disorders of continuity of bone, multiple sites', 'ICD10_2010'), +('M84.81', 'Other disorders of continuity of bone, shoulder region', 'ICD10_2010'), +('M84.82', 'Other disorders of continuity of bone, upper arm', 'ICD10_2010'), +('M84.83', 'Other disorders of continuity of bone, forearm', 'ICD10_2010'), +('M84.84', 'Other disorders of continuity of bone, hand', 'ICD10_2010'), +('M84.85', 'Other disorders of continuity of bone, pelvic and thigh', 'ICD10_2010'), +('M84.86', 'Other disorders of continuity of bone, lower leg', 'ICD10_2010'), +('M84.87', 'Other disorders of continuity of bone, ankle and foot', 'ICD10_2010'), +('M84.88', 'Other disorders of continuity of bone, other site', 'ICD10_2010'), +('M84.89', 'Other disorders of continuity of bone, site unspecified', 'ICD10_2010'), +('M84.9', 'Disorder of continuity of bone, unspecified', 'ICD10_2010'), +('M84.90', 'Disorder of continuity of bone, unspecified, multiple sites', 'ICD10_2010'), +('M84.91', 'Disorder of continuity of bone, unspecified, shoulder region', 'ICD10_2010'), +('M84.92', 'Disorder of continuity of bone, unspecified, upper arm', 'ICD10_2010'), +('M84.93', 'Disorder of continuity of bone, unspecified, forearm', 'ICD10_2010'), +('M84.94', 'Disorder of continuity of bone, unspecified, hand', 'ICD10_2010'), +('M84.95', 'Disorder of continuity of bone, unspecified, pelvic and thigh', 'ICD10_2010'), +('M84.96', 'Disorder of continuity of bone, unspecified, lower leg', 'ICD10_2010'), +('M84.97', 'Disorder of continuity of bone, unspecified, ankle and foot', 'ICD10_2010'), +('M84.98', 'Disorder of continuity of bone, unspecified, other site', 'ICD10_2010'), +('M84.99', 'Disorder of continuity of bone, unspecified, site unspecified', 'ICD10_2010'), +('M85', 'Other disorders of bone density and structure', 'ICD10_2010'), +('M85.0', 'Fibrous dysplasia (monostotic)', 'ICD10_2010'), +('M85.00', 'Fibrous dysplasia (monostotic), multiple sites', 'ICD10_2010'), +('M85.01', 'Fibrous dysplasia (monostotic), shoulder region', 'ICD10_2010'), +('M85.02', 'Fibrous dysplasia (monostotic), upper arm', 'ICD10_2010'), +('M85.03', 'Fibrous dysplasia (monostotic), forearm', 'ICD10_2010'), +('M85.04', 'Fibrous dysplasia (monostotic), hand', 'ICD10_2010'), +('M85.05', 'Fibrous dysplasia (monostotic), pelvic and thigh', 'ICD10_2010'), +('M85.06', 'Fibrous dysplasia (monostotic), lower leg', 'ICD10_2010'), +('M85.07', 'Fibrous dysplasia (monostotic), ankle and foot', 'ICD10_2010'), +('M85.08', 'Fibrous dysplasia (monostotic), other site', 'ICD10_2010'), +('M85.09', 'Fibrous dysplasia (monostotic), site unspecified', 'ICD10_2010'), +('M85.1', 'Skeletal fluorosis', 'ICD10_2010'), +('M85.10', 'Skeletal fluorosis, multiple sites', 'ICD10_2010'), +('M85.11', 'Skeletal fluorosis, shoulder region', 'ICD10_2010'), +('M85.12', 'Skeletal fluorosis, upper arm', 'ICD10_2010'), +('M85.13', 'Skeletal fluorosis, forearm', 'ICD10_2010'), +('M85.14', 'Skeletal fluorosis, hand', 'ICD10_2010'), +('M85.15', 'Skeletal fluorosis, pelvic and thigh', 'ICD10_2010'), +('M85.16', 'Skeletal fluorosis, lower leg', 'ICD10_2010'), +('M85.17', 'Skeletal fluorosis, ankle and foot', 'ICD10_2010'), +('M85.18', 'Skeletal fluorosis, other site', 'ICD10_2010'), +('M85.19', 'Skeletal fluorosis, site unspecified', 'ICD10_2010'), +('M85.2', 'Hyperostosis of skull', 'ICD10_2010'), +('M85.20', 'Hyperostosis of skull, multiple sites', 'ICD10_2010'), +('M85.21', 'Hyperostosis of skull, shoulder region', 'ICD10_2010'), +('M85.22', 'Hyperostosis of skull, upper arm', 'ICD10_2010'), +('M85.23', 'Hyperostosis of skull, forearm', 'ICD10_2010'), +('M85.24', 'Hyperostosis of skull, hand', 'ICD10_2010'), +('M85.25', 'Hyperostosis of skull, pelvic region and thigh', 'ICD10_2010'), +('M85.26', 'Hyperostosis of skull, lower leg', 'ICD10_2010'), +('M85.27', 'Hyperostosis of skull, ankle and foot', 'ICD10_2010'), +('M85.28', 'Hyperostosis of skull, other', 'ICD10_2010'), +('M85.29', 'Hyperostosis of skull, site unspecified', 'ICD10_2010'), +('M85.3', 'Osteitis condensans', 'ICD10_2010'), +('M85.30', 'Osteitis condensans, multiple sites', 'ICD10_2010'), +('M85.31', 'Osteitis condensans, shoulder region', 'ICD10_2010'), +('M85.32', 'Osteitis condensans, upper arm', 'ICD10_2010'), +('M85.33', 'Osteitis condensans, forearm', 'ICD10_2010'), +('M85.34', 'Osteitis condensans, hand', 'ICD10_2010'), +('M85.35', 'Osteitis condensans, pelvic and thigh', 'ICD10_2010'), +('M85.36', 'Osteitis condensans, lower leg', 'ICD10_2010'), +('M85.37', 'Osteitis condensans, ankle and foot', 'ICD10_2010'), +('M85.38', 'Osteitis condensans, other site', 'ICD10_2010'), +('M85.39', 'Osteitis condensans, site unspecified', 'ICD10_2010'), +('M85.4', 'Solitary bone cyst', 'ICD10_2010'), +('M85.40', 'Solitary bone cyst, multiple sites', 'ICD10_2010'), +('M85.41', 'Solitary bone cyst, shoulder region', 'ICD10_2010'), +('M85.42', 'Solitary bone cyst, upper arm', 'ICD10_2010'), +('M85.43', 'Solitary bone cyst, forearm', 'ICD10_2010'), +('M85.44', 'Solitary bone cyst, hand', 'ICD10_2010'), +('M85.45', 'Solitary bone cyst, pelvic and thigh', 'ICD10_2010'), +('M85.46', 'Solitary bone cyst, lower leg', 'ICD10_2010'), +('M85.47', 'Solitary bone cyst, ankle and foot', 'ICD10_2010'), +('M85.48', 'Solitary bone cyst, other site', 'ICD10_2010'), +('M85.49', 'Solitary bone cyst, site unspecified', 'ICD10_2010'), +('M85.5', 'Aneurysmal bone cyst', 'ICD10_2010'), +('M85.50', 'Aneurysmal bone cyst, multiple sites', 'ICD10_2010'), +('M85.51', 'Aneurysmal bone cyst, shoulder region', 'ICD10_2010'), +('M85.52', 'Aneurysmal bone cyst, upper arm', 'ICD10_2010'), +('M85.53', 'Aneurysmal bone cyst, forearm', 'ICD10_2010'), +('M85.54', 'Aneurysmal bone cyst, hand', 'ICD10_2010'), +('M85.55', 'Aneurysmal bone cyst, pelvic and thigh', 'ICD10_2010'), +('M85.56', 'Aneurysmal bone cyst, lower leg', 'ICD10_2010'), +('M85.57', 'Aneurysmal bone cyst, ankle and foot', 'ICD10_2010'), +('M85.58', 'Aneurysmal bone cyst, other site', 'ICD10_2010'), +('M85.59', 'Aneurysmal bone cyst, site unspecified', 'ICD10_2010'), +('M85.6', 'Other cyst of bone', 'ICD10_2010'), +('M85.60', 'Other cyst of bone, multiple sites', 'ICD10_2010'), +('M85.61', 'Other cyst of bone, shoulder region', 'ICD10_2010'), +('M85.62', 'Other cyst of bone, upper arm', 'ICD10_2010'), +('M85.63', 'Other cyst of bone, forearm', 'ICD10_2010'), +('M85.64', 'Other cyst of bone, hand', 'ICD10_2010'), +('M85.65', 'Other cyst of bone, pelvic and thigh', 'ICD10_2010'), +('M85.66', 'Other cyst of bone, lower leg', 'ICD10_2010'), +('M85.67', 'Other cyst of bone, ankle and foot', 'ICD10_2010'), +('M85.68', 'Other cyst of bone, other site', 'ICD10_2010'), +('M85.69', 'Other cyst of bone, site unspecified', 'ICD10_2010'), +('M85.8', 'Other specified disorders of bone density and structure', 'ICD10_2010'), +('M85.80', 'Other specified disorders of bone density and structure, multiple sites', 'ICD10_2010'), +('M85.81', 'Other specified disorders of bone density and structure, shoulder region', 'ICD10_2010'), +('M85.82', 'Other specified disorders of bone density and structure, upper arm', 'ICD10_2010'), +('M85.83', 'Other specified disorders of bone density and structure, forearm', 'ICD10_2010'), +('M85.84', 'Other specified disorders of bone density and structure, hand', 'ICD10_2010'), +('M85.85', 'Other specified disorders of bone density and structure, pelvic and thigh', 'ICD10_2010'), +('M85.86', 'Other specified disorders of bone density and structure, lower leg', 'ICD10_2010'), +('M85.87', 'Other specified disorders of bone density and structure, ankle and foot', 'ICD10_2010'), +('M85.88', 'Other specified disorders of bone density and structure, other site', 'ICD10_2010'), +('M85.89', 'Other specified disorders of bone density and structure, site unspecified', 'ICD10_2010'), +('M85.9', 'Disorder of bone density and structure, unspecified', 'ICD10_2010'), +('M85.90', 'Disorder of bone density and structure, unspecified, multiple sites', 'ICD10_2010'), +('M85.91', 'Disorder of bone density and structure, unspecified, shoulder region', 'ICD10_2010'), +('M85.92', 'Disorder of bone density and structure, unspecified, upper arm', 'ICD10_2010'), +('M85.93', 'Disorder of bone density and structure, unspecified, forearm', 'ICD10_2010'), +('M85.94', 'Disorder of bone density and structure, unspecified, hand', 'ICD10_2010'), +('M85.95', 'Disorder of bone density and structure, unspecified, pelvic and thigh', 'ICD10_2010'), +('M85.96', 'Disorder of bone density and structure, unspecified, lower leg', 'ICD10_2010'), +('M85.97', 'Disorder of bone density and structure, unspecified, ankle and foot', 'ICD10_2010'), +('M85.98', 'Disorder of bone density and structure, unspecified, other site', 'ICD10_2010'), +('M85.99', 'Disorder of bone density and structure, unspecified, site unspecified', 'ICD10_2010'), +('M86', 'Osteomyelitis', 'ICD10_2010'), +('M86.0', 'Acute haematogenous osteomyelitis', 'ICD10_2010'), +('M86.00', 'Acute haematogenous osteomyelitis, multiple sites', 'ICD10_2010'), +('M86.01', 'Acute haematogenous osteomyelitis, shoulder region', 'ICD10_2010'), +('M86.02', 'Acute haematogenous osteomyelitis, upper arm', 'ICD10_2010'), +('M86.03', 'Acute haematogenous osteomyelitis, forearm', 'ICD10_2010'), +('M86.04', 'Acute haematogenous osteomyelitis, hand', 'ICD10_2010'), +('M86.05', 'Acute haematogenous osteomyelitis, pelvic and thigh', 'ICD10_2010'), +('M86.06', 'Acute haematogenous osteomyelitis, lower leg', 'ICD10_2010'), +('M86.07', 'Acute haematogenous osteomyelitis, ankle and foot', 'ICD10_2010'), +('M86.08', 'Acute haematogenous osteomyelitis, other site', 'ICD10_2010'), +('M86.09', 'Acute haematogenous osteomyelitis, site unspecified', 'ICD10_2010'), +('M86.1', 'Other acute osteomyelitis', 'ICD10_2010'), +('M86.10', 'Other acute osteomyelitis, multiple sites', 'ICD10_2010'), +('M86.11', 'Other acute osteomyelitis, shoulder region', 'ICD10_2010'), +('M86.12', 'Other acute osteomyelitis, upper arm', 'ICD10_2010'), +('M86.13', 'Other acute osteomyelitis, forearm', 'ICD10_2010'), +('M86.14', 'Other acute osteomyelitis, hand', 'ICD10_2010'), +('M86.15', 'Other acute osteomyelitis, pelvic and thigh', 'ICD10_2010'), +('M86.16', 'Other acute osteomyelitis, lower leg', 'ICD10_2010'), +('M86.17', 'Other acute osteomyelitis, ankle and foot', 'ICD10_2010'), +('M86.18', 'Other acute osteomyelitis, other site', 'ICD10_2010'), +('M86.19', 'Other acute osteomyelitis, site unspecified', 'ICD10_2010'), +('M86.2', 'Subacute osteomyelitis', 'ICD10_2010'), +('M86.20', 'Subacute osteomyelitis, multiple sites', 'ICD10_2010'), +('M86.21', 'Subacute osteomyelitis, shoulder region', 'ICD10_2010'), +('M86.22', 'Subacute osteomyelitis, upper arm', 'ICD10_2010'), +('M86.23', 'Subacute osteomyelitis, forearm', 'ICD10_2010'), +('M86.24', 'Subacute osteomyelitis, hand', 'ICD10_2010'), +('M86.25', 'Subacute osteomyelitis, pelvic and thigh', 'ICD10_2010'), +('M86.26', 'Subacute osteomyelitis, lower leg', 'ICD10_2010'), +('M86.27', 'Subacute osteomyelitis, ankle and foot', 'ICD10_2010'), +('M86.28', 'Subacute osteomyelitis, other site', 'ICD10_2010'), +('M86.29', 'Subacute osteomyelitis, site unspecified', 'ICD10_2010'), +('M86.3', 'Chronic multifocal osteomyelitis', 'ICD10_2010'), +('M86.30', 'Chronic multifocal osteomyelitis, multiple sites', 'ICD10_2010'), +('M86.31', 'Chronic multifocal osteomyelitis, shoulder region', 'ICD10_2010'), +('M86.32', 'Chronic multifocal osteomyelitis, upper arm', 'ICD10_2010'), +('M86.33', 'Chronic multifocal osteomyelitis, forearm', 'ICD10_2010'), +('M86.34', 'Chronic multifocal osteomyelitis, hand', 'ICD10_2010'), +('M86.35', 'Chronic multifocal osteomyelitis, pelvic and thigh', 'ICD10_2010'), +('M86.36', 'Chronic multifocal osteomyelitis, lower leg', 'ICD10_2010'), +('M86.37', 'Chronic multifocal osteomyelitis, ankle and foot', 'ICD10_2010'), +('M86.38', 'Chronic multifocal osteomyelitis, other site', 'ICD10_2010'), +('M86.39', 'Chronic multifocal osteomyelitis, site unspecified', 'ICD10_2010'), +('M86.4', 'Chronic osteomyelitis with draining sinus', 'ICD10_2010'), +('M86.40', 'Chronic osteomyelitis with draining sinus, multiple sites', 'ICD10_2010'), +('M86.41', 'Chronic osteomyelitis with draining sinus, shoulder region', 'ICD10_2010'), +('M86.42', 'Chronic osteomyelitis with draining sinus, upper arm', 'ICD10_2010'), +('M86.43', 'Chronic osteomyelitis with draining sinus, forearm', 'ICD10_2010'), +('M86.44', 'Chronic osteomyelitis with draining sinus, hand', 'ICD10_2010'), +('M86.45', 'Chronic osteomyelitis with draining sinus, pelvic and thigh', 'ICD10_2010'), +('M86.46', 'Chronic osteomyelitis with draining sinus, lower leg', 'ICD10_2010'), +('M86.47', 'Chronic osteomyelitis with draining sinus, ankle and foot', 'ICD10_2010'), +('M86.48', 'Chronic osteomyelitis with draining sinus, other site', 'ICD10_2010'), +('M86.49', 'Chronic osteomyelitis with draining sinus, site unspecified', 'ICD10_2010'), +('M86.5', 'Other chronic haematogenous osteomyelitis', 'ICD10_2010'), +('M86.50', 'Other chronic haematogenous osteomyelitis, multiple sites', 'ICD10_2010'), +('M86.51', 'Other chronic haematogenous osteomyelitis, shoulder region', 'ICD10_2010'), +('M86.52', 'Other chronic haematogenous osteomyelitis, upper arm', 'ICD10_2010'), +('M86.53', 'Other chronic haematogenous osteomyelitis, forearm', 'ICD10_2010'), +('M86.54', 'Other chronic haematogenous osteomyelitis, hand', 'ICD10_2010'), +('M86.55', 'Other chronic haematogenous osteomyelitis, pelvic and thigh', 'ICD10_2010'), +('M86.56', 'Other chronic haematogenous osteomyelitis, lower leg', 'ICD10_2010'), +('M86.57', 'Other chronic haematogenous osteomyelitis, ankle and foot', 'ICD10_2010'), +('M86.58', 'Other chronic haematogenous osteomyelitis, other site', 'ICD10_2010'), +('M86.59', 'Other chronic haematogenous osteomyelitis, site unspecified', 'ICD10_2010'), +('M86.6', 'Other chronic osteomyelitis', 'ICD10_2010'), +('M86.60', 'Other chronic osteomyelitis, multiple sites', 'ICD10_2010'), +('M86.61', 'Other chronic osteomyelitis, shoulder region', 'ICD10_2010'), +('M86.62', 'Other chronic osteomyelitis, upper arm', 'ICD10_2010'), +('M86.63', 'Other chronic osteomyelitis, forearm', 'ICD10_2010'), +('M86.64', 'Other chronic osteomyelitis, hand', 'ICD10_2010'), +('M86.65', 'Other chronic osteomyelitis, pelvic and thigh', 'ICD10_2010'), +('M86.66', 'Other chronic osteomyelitis, lower leg', 'ICD10_2010'), +('M86.67', 'Other chronic osteomyelitis, ankle and foot', 'ICD10_2010'), +('M86.68', 'Other chronic osteomyelitis, other site', 'ICD10_2010'), +('M86.69', 'Other chronic osteomyelitis, site unspecified', 'ICD10_2010'), +('M86.8', 'Other osteomyelitis', 'ICD10_2010'), +('M86.80', 'Other osteomyelitis, multiple sites', 'ICD10_2010'), +('M86.81', 'Other osteomyelitis, shoulder region', 'ICD10_2010'), +('M86.82', 'Other osteomyelitis, upper arm', 'ICD10_2010'), +('M86.83', 'Other osteomyelitis, forearm', 'ICD10_2010'), +('M86.84', 'Other osteomyelitis, hand', 'ICD10_2010'), +('M86.85', 'Other osteomyelitis, pelvic and thigh', 'ICD10_2010'), +('M86.86', 'Other osteomyelitis, lower leg', 'ICD10_2010'), +('M86.87', 'Other osteomyelitis, ankle and foot', 'ICD10_2010'), +('M86.88', 'Other osteomyelitis, other site', 'ICD10_2010'), +('M86.89', 'Other osteomyelitis, site unspecified', 'ICD10_2010'), +('M86.9', 'Osteomyelitis, unspecified', 'ICD10_2010'), +('M86.90', 'Osteomyelitis, unspecified, multiple sites', 'ICD10_2010'), +('M86.91', 'Osteomyelitis, unspecified, shoulder region', 'ICD10_2010'), +('M86.92', 'Osteomyelitis, unspecified, upper arm', 'ICD10_2010'), +('M86.93', 'Osteomyelitis, unspecified, forearm', 'ICD10_2010'), +('M86.94', 'Osteomyelitis, unspecified, hand', 'ICD10_2010'), +('M86.95', 'Osteomyelitis, unspecified, pelvic and thigh', 'ICD10_2010'), +('M86.96', 'Osteomyelitis, unspecified, lower leg', 'ICD10_2010'), +('M86.97', 'Osteomyelitis, unspecified, ankle and foot', 'ICD10_2010'), +('M86.98', 'Osteomyelitis, unspecified, other site', 'ICD10_2010'), +('M86.99', 'Osteomyelitis, unspecified, site unspecified', 'ICD10_2010'), +('M87', 'Osteonecrosis', 'ICD10_2010'), +('M87.0', 'Idiopathic aseptic necrosis of bone', 'ICD10_2010'), +('M87.00', 'Idiopathic aseptic necrosis of bone, multiple sites', 'ICD10_2010'), +('M87.01', 'Idiopathic aseptic necrosis of bone, shoulder region', 'ICD10_2010'), +('M87.02', 'Idiopathic aseptic necrosis of bone, upper arm', 'ICD10_2010'), +('M87.03', 'Idiopathic aseptic necrosis of bone, forearm', 'ICD10_2010'), +('M87.04', 'Idiopathic aseptic necrosis of bone, hand', 'ICD10_2010'), +('M87.05', 'Idiopathic aseptic necrosis of bone, pelvic and thigh', 'ICD10_2010'), +('M87.06', 'Idiopathic aseptic necrosis of bone, lower leg', 'ICD10_2010'), +('M87.07', 'Idiopathic aseptic necrosis of bone, ankle and foot', 'ICD10_2010'), +('M87.08', 'Idiopathic aseptic necrosis of bone, other site', 'ICD10_2010'), +('M87.09', 'Idiopathic aseptic necrosis of bone, site unspecified', 'ICD10_2010'), +('M87.1', 'Osteonecrosis due to drugs', 'ICD10_2010'), +('M87.10', 'Osteonecrosis due to drugs, multiple sites', 'ICD10_2010'), +('M87.11', 'Osteonecrosis due to drugs, shoulder region', 'ICD10_2010'), +('M87.12', 'Osteonecrosis due to drugs, upper arm', 'ICD10_2010'), +('M87.13', 'Osteonecrosis due to drugs, forearm', 'ICD10_2010'), +('M87.14', 'Osteonecrosis due to drugs, hand', 'ICD10_2010'), +('M87.15', 'Osteonecrosis due to drugs, pelvic and thigh', 'ICD10_2010'), +('M87.16', 'Osteonecrosis due to drugs, lower leg', 'ICD10_2010'), +('M87.17', 'Osteonecrosis due to drugs, ankle and foot', 'ICD10_2010'), +('M87.18', 'Osteonecrosis due to drugs, other site', 'ICD10_2010'), +('M87.19', 'Osteonecrosis due to drugs, site unspecified', 'ICD10_2010'), +('M87.2', 'Osteonecrosis due to previous trauma', 'ICD10_2010'), +('M87.20', 'Osteonecrosis due to previous trauma, multiple sites', 'ICD10_2010'), +('M87.21', 'Osteonecrosis due to previous trauma, shoulder region', 'ICD10_2010'), +('M87.22', 'Osteonecrosis due to previous trauma, upper arm', 'ICD10_2010'), +('M87.23', 'Osteonecrosis due to previous trauma, forearm', 'ICD10_2010'), +('M87.24', 'Osteonecrosis due to previous trauma, hand', 'ICD10_2010'), +('M87.25', 'Osteonecrosis due to previous trauma, pelvic and thigh', 'ICD10_2010'), +('M87.26', 'Osteonecrosis due to previous trauma, lower leg', 'ICD10_2010'), +('M87.27', 'Osteonecrosis due to previous trauma, ankle and foot', 'ICD10_2010'), +('M87.28', 'Osteonecrosis due to previous trauma, other site', 'ICD10_2010'), +('M87.29', 'Osteonecrosis due to previous trauma, site unspecified', 'ICD10_2010'), +('M87.3', 'Other secondary osteonecrosis', 'ICD10_2010'), +('M87.30', 'Other secondary osteonecrosis, multiple sites', 'ICD10_2010'), +('M87.31', 'Other secondary osteonecrosis, shoulder region', 'ICD10_2010'), +('M87.32', 'Other secondary osteonecrosis, upper arm', 'ICD10_2010'), +('M87.33', 'Other secondary osteonecrosis, forearm', 'ICD10_2010'), +('M87.34', 'Other secondary osteonecrosis, hand', 'ICD10_2010'), +('M87.35', 'Other secondary osteonecrosis, pelvic and thigh', 'ICD10_2010'), +('M87.36', 'Other secondary osteonecrosis, lower leg', 'ICD10_2010'), +('M87.37', 'Other secondary osteonecrosis, ankle and foot', 'ICD10_2010'), +('M87.38', 'Other secondary osteonecrosis, other site', 'ICD10_2010'), +('M87.39', 'Other secondary osteonecrosis, site unspecified', 'ICD10_2010'), +('M87.8', 'Other osteonecrosis', 'ICD10_2010'), +('M87.80', 'Other osteonecrosis, multiple sites', 'ICD10_2010'), +('M87.81', 'Other osteonecrosis, shoulder region', 'ICD10_2010'), +('M87.82', 'Other osteonecrosis, upper arm', 'ICD10_2010'), +('M87.83', 'Other osteonecrosis, forearm', 'ICD10_2010'), +('M87.84', 'Other osteonecrosis, hand', 'ICD10_2010'), +('M87.85', 'Other osteonecrosis, pelvic and thigh', 'ICD10_2010'), +('M87.86', 'Other osteonecrosis, lower leg', 'ICD10_2010'), +('M87.87', 'Other osteonecrosis, ankle and foot', 'ICD10_2010'), +('M87.88', 'Other osteonecrosis, other site', 'ICD10_2010'), +('M87.89', 'Other osteonecrosis, site unspecified', 'ICD10_2010'), +('M87.9', 'Osteonecrosis, unspecified', 'ICD10_2010'), +('M87.90', 'Osteonecrosis, unspecified, multiple sites', 'ICD10_2010'), +('M87.91', 'Osteonecrosis, unspecified, shoulder region', 'ICD10_2010'), +('M87.92', 'Osteonecrosis, unspecified, upper arm', 'ICD10_2010'), +('M87.93', 'Osteonecrosis, unspecified, forearm', 'ICD10_2010'), +('M87.94', 'Osteonecrosis, unspecified, hand', 'ICD10_2010'), +('M87.95', 'Osteonecrosis, unspecified, pelvic and thigh', 'ICD10_2010'), +('M87.96', 'Osteonecrosis, unspecified, lower leg', 'ICD10_2010'), +('M87.97', 'Osteonecrosis, unspecified, ankle and foot', 'ICD10_2010'), +('M87.98', 'Osteonecrosis, unspecified, other site', 'ICD10_2010'), +('M87.99', 'Osteonecrosis, unspecified, site unspecified', 'ICD10_2010'), +('M88', 'Paget disease of bone [osteitis deformans]', 'ICD10_2010'), +('M88.0', 'Paget\'s disease of skull', 'ICD10_2010'), +('M88.09', 'Paget\'s disease of skull, site unspecified', 'ICD10_2010'), +('M88.8', 'Paget\'s disease of other bones', 'ICD10_2010'), +('M88.80', 'Paget\'s disease of other bones, multiple sites', 'ICD10_2010'), +('M88.81', 'Paget\'s disease of other bones, shoulder region', 'ICD10_2010'), +('M88.82', 'Paget\'s disease of other bones, upper arm', 'ICD10_2010'), +('M88.83', 'Paget\'s disease of other bones, forearm', 'ICD10_2010'), +('M88.84', 'Paget\'s disease of other bones, hand', 'ICD10_2010'), +('M88.85', 'Paget\'s disease of other bones, pelvic and thigh', 'ICD10_2010'), +('M88.86', 'Paget\'s disease of other bones, lower leg', 'ICD10_2010'), +('M88.87', 'Paget\'s disease of other bones, ankle and foot', 'ICD10_2010'), +('M88.88', 'Paget\'s disease of other bones, other site', 'ICD10_2010'), +('M88.89', 'Paget\'s disease of other bones, site unspecified', 'ICD10_2010'), +('M88.9', 'Paget\'s disease of bone, unspecified', 'ICD10_2010'), +('M88.90', 'Paget\'s disease of bone, unspecified, multiple sites', 'ICD10_2010'), +('M88.91', 'Paget\'s disease of bone, unspecified, shoulder region', 'ICD10_2010'), +('M88.92', 'Paget\'s disease of bone, unspecified, upper arm', 'ICD10_2010'), +('M88.93', 'Paget\'s disease of bone, unspecified, forearm', 'ICD10_2010'), +('M88.94', 'Paget\'s disease of bone, unspecified, hand', 'ICD10_2010'), +('M88.95', 'Paget\'s disease of bone, unspecified, pelvic and thigh', 'ICD10_2010'), +('M88.96', 'Paget\'s disease of bone, unspecified, lower leg', 'ICD10_2010'), +('M88.97', 'Paget\'s disease of bone, unspecified, ankle and foot', 'ICD10_2010'), +('M88.98', 'Paget\'s disease of bone, unspecified, other site', 'ICD10_2010'), +('M88.99', 'Paget\'s disease of bone, unspecified, site unspecified', 'ICD10_2010'), +('M89', 'Other disorders of bone', 'ICD10_2010'), +('M89.0', 'Algoneurodystrophy', 'ICD10_2010'), +('M89.00', 'Algoneurodystrophy, multiple sites', 'ICD10_2010'), +('M89.01', 'Algoneurodystrophy, shoulder region', 'ICD10_2010'), +('M89.02', 'Algoneurodystrophy, upper arm', 'ICD10_2010'), +('M89.03', 'Algoneurodystrophy, forearm', 'ICD10_2010'), +('M89.04', 'Algoneurodystrophy, hand', 'ICD10_2010'), +('M89.05', 'Algoneurodystrophy, pelvic and thigh', 'ICD10_2010'), +('M89.06', 'Algoneurodystrophy, lower leg', 'ICD10_2010'), +('M89.07', 'Algoneurodystrophy, ankle and foot', 'ICD10_2010'), +('M89.08', 'Algoneurodystrophy, other site', 'ICD10_2010'), +('M89.09', 'Algoneurodystrophy, site unspecified', 'ICD10_2010'), +('M89.1', 'Epiphyseal arrest', 'ICD10_2010'), +('M89.10', 'Epiphyseal arrest, multiple sites', 'ICD10_2010'), +('M89.11', 'Epiphyseal arrest, shoulder region', 'ICD10_2010'), +('M89.12', 'Epiphyseal arrest, upper arm', 'ICD10_2010'), +('M89.13', 'Epiphyseal arrest, forearm', 'ICD10_2010'), +('M89.14', 'Epiphyseal arrest, hand', 'ICD10_2010'), +('M89.15', 'Epiphyseal arrest, pelvic and thigh', 'ICD10_2010'), +('M89.16', 'Epiphyseal arrest, lower leg', 'ICD10_2010'), +('M89.17', 'Epiphyseal arrest, ankle and foot', 'ICD10_2010'), +('M89.18', 'Epiphyseal arrest, other site', 'ICD10_2010'), +('M89.19', 'Epiphyseal arrest, site unspecified', 'ICD10_2010'), +('M89.2', 'Other disorders of bone development and growth', 'ICD10_2010'), +('M89.20', 'Other disorders of bone development and growth, multiple sites', 'ICD10_2010'), +('M89.21', 'Other disorders of bone development and growth, shoulder region', 'ICD10_2010'), +('M89.22', 'Other disorders of bone development and growth, upper arm', 'ICD10_2010'), +('M89.23', 'Other disorders of bone development and growth, forearm', 'ICD10_2010'), +('M89.24', 'Other disorders of bone development and growth, hand', 'ICD10_2010'), +('M89.25', 'Other disorders of bone development and growth, pelvic and thigh', 'ICD10_2010'), +('M89.26', 'Other disorders of bone development and growth, lower leg', 'ICD10_2010'), +('M89.27', 'Other disorders of bone development and growth, ankle and foot', 'ICD10_2010'), +('M89.28', 'Other disorders of bone development and growth, other site', 'ICD10_2010'), +('M89.29', 'Other disorders of bone development and growth, site unspecified', 'ICD10_2010'), +('M89.3', 'Hypertrophy of bone', 'ICD10_2010'), +('M89.30', 'Hypertrophy of bone, multiple sites', 'ICD10_2010'), +('M89.31', 'Hypertrophy of bone, shoulder region', 'ICD10_2010'), +('M89.32', 'Hypertrophy of bone, upper arm', 'ICD10_2010'), +('M89.33', 'Hypertrophy of bone, forearm', 'ICD10_2010'), +('M89.34', 'Hypertrophy of bone, hand', 'ICD10_2010'), +('M89.35', 'Hypertrophy of bone, pelvic and thigh', 'ICD10_2010'), +('M89.36', 'Hypertrophy of bone, lower leg', 'ICD10_2010'), +('M89.37', 'Hypertrophy of bone, ankle and foot', 'ICD10_2010'), +('M89.38', 'Hypertrophy of bone, other site', 'ICD10_2010'), +('M89.39', 'Hypertrophy of bone, site unspecified', 'ICD10_2010'), +('M89.4', 'Other hypertrophic osteoarthropathy', 'ICD10_2010'), +('M89.40', 'Other hypertrophic osteoarthropathy, multiple sites', 'ICD10_2010'), +('M89.41', 'Other hypertrophic osteoarthropathy, shoulder region', 'ICD10_2010'), +('M89.42', 'Other hypertrophic osteoarthropathy, upper arm', 'ICD10_2010'), +('M89.43', 'Other hypertrophic osteoarthropathy, forearm', 'ICD10_2010'), +('M89.44', 'Other hypertrophic osteoarthropathy, hand', 'ICD10_2010'), +('M89.45', 'Other hypertrophic osteoarthropathy, pelvic and thigh', 'ICD10_2010'), +('M89.46', 'Other hypertrophic osteoarthropathy, lower leg', 'ICD10_2010'), +('M89.47', 'Other hypertrophic osteoarthropathy, ankle and foot', 'ICD10_2010'), +('M89.48', 'Other hypertrophic osteoarthropathy, other site', 'ICD10_2010'), +('M89.49', 'Other hypertrophic osteoarthropathy, site unspecified', 'ICD10_2010'), +('M89.5', 'Osteolysis', 'ICD10_2010'), +('M89.50', 'Osteolysis, multiple sites', 'ICD10_2010'), +('M89.51', 'Osteolysis, shoulder region', 'ICD10_2010'), +('M89.52', 'Osteolysis, upper arm', 'ICD10_2010'), +('M89.53', 'Osteolysis, forearm', 'ICD10_2010'), +('M89.54', 'Osteolysis, hand', 'ICD10_2010'), +('M89.55', 'Osteolysis, pelvic and thigh', 'ICD10_2010'), +('M89.56', 'Osteolysis, lower leg', 'ICD10_2010'), +('M89.57', 'Osteolysis, ankle and foot', 'ICD10_2010'), +('M89.58', 'Osteolysis, other site', 'ICD10_2010'), +('M89.59', 'Osteolysis, site unspecified', 'ICD10_2010'), +('M89.6', 'Osteopathy after poliomyelitis', 'ICD10_2010'), +('M89.60', 'Osteopathy after poliomyelitis, multiple sites', 'ICD10_2010'), +('M89.61', 'Osteopathy after poliomyelitis, shoulder region', 'ICD10_2010'), +('M89.62', 'Osteopathy after poliomyelitis, upper arm', 'ICD10_2010'), +('M89.63', 'Osteopathy after poliomyelitis, forearm', 'ICD10_2010'), +('M89.64', 'Osteopathy after poliomyelitis, hand', 'ICD10_2010'), +('M89.65', 'Osteopathy after poliomyelitis, pelvic and thigh', 'ICD10_2010'), +('M89.66', 'Osteopathy after poliomyelitis, lower leg', 'ICD10_2010'), +('M89.67', 'Osteopathy after poliomyelitis, ankle and foot', 'ICD10_2010'), +('M89.68', 'Osteopathy after poliomyelitis, other site', 'ICD10_2010'), +('M89.69', 'Osteopathy after poliomyelitis, site unspecified', 'ICD10_2010'), +('M89.8', 'Other specified disorders of bone', 'ICD10_2010'), +('M89.80', 'Other specified disorders of bone, multiple sites', 'ICD10_2010'), +('M89.81', 'Other specified disorders of bone, shoulder region', 'ICD10_2010'), +('M89.82', 'Other specified disorders of bone, upper arm', 'ICD10_2010'), +('M89.83', 'Other specified disorders of bone, forearm', 'ICD10_2010'), +('M89.84', 'Other specified disorders of bone, hand', 'ICD10_2010'), +('M89.85', 'Other specified disorders of bone, pelvic and thigh', 'ICD10_2010'), +('M89.86', 'Other specified disorders of bone, lower leg', 'ICD10_2010'), +('M89.87', 'Other specified disorders of bone, ankle and foot', 'ICD10_2010'), +('M89.88', 'Other specified disorders of bone, other site', 'ICD10_2010'), +('M89.89', 'Other specified disorders of bone, site unspecified', 'ICD10_2010'), +('M89.9', 'Disorder of bone, unspecified', 'ICD10_2010'), +('M89.90', 'Disorder of bone, unspecified, multiple sites', 'ICD10_2010'), +('M89.91', 'Disorder of bone, unspecified, shoulder region', 'ICD10_2010'), +('M89.92', 'Disorder of bone, unspecified, upper arm', 'ICD10_2010'), +('M89.93', 'Disorder of bone, unspecified, forearm', 'ICD10_2010'), +('M89.94', 'Disorder of bone, unspecified, hand', 'ICD10_2010'), +('M89.95', 'Disorder of bone, unspecified, pelvic and thigh', 'ICD10_2010'), +('M89.96', 'Disorder of bone, unspecified, lower leg', 'ICD10_2010'), +('M89.97', 'Disorder of bone, unspecified, ankle and foot', 'ICD10_2010'), +('M89.98', 'Disorder of bone, unspecified, other site', 'ICD10_2010'), +('M89.99', 'Disorder of bone, unspecified, site unspecified', 'ICD10_2010'), +('M90', 'Osteopathies in diseases classified elsewhere', 'ICD10_2010'), +('M90.0', 'Tuberculosis of bone', 'ICD10_2010'), +('M90.00', 'Tuberculosis of bone, multiple sites', 'ICD10_2010'), +('M90.01', 'Tuberculosis of bone, shoulder region', 'ICD10_2010'), +('M90.02', 'Tuberculosis of bone, upper arm', 'ICD10_2010'), +('M90.03', 'Tuberculosis of bone, forearm', 'ICD10_2010'), +('M90.04', 'Tuberculosis of bone, hand', 'ICD10_2010'), +('M90.05', 'Tuberculosis of bone, pelvic and thigh', 'ICD10_2010'), +('M90.06', 'Tuberculosis of bone, lower leg', 'ICD10_2010'), +('M90.07', 'Tuberculosis of bone, ankle and foot', 'ICD10_2010'), +('M90.08', 'Tuberculosis of bone, other site', 'ICD10_2010'), +('M90.09', 'Tuberculosis of bone, site unspecified', 'ICD10_2010'), +('M90.1', 'Periostitis in other infectious diseases classified elsewhere', 'ICD10_2010'), +('M90.10', 'Periostitis in other infectious diseases classified elsewhere, multiple sites', 'ICD10_2010'), +('M90.11', 'Periostitis in other infectious diseases classified elsewhere, shoulder region', 'ICD10_2010'), +('M90.12', 'Periostitis in other infectious diseases classified elsewhere, upper arm', 'ICD10_2010'), +('M90.13', 'Periostitis in other infectious diseases classified elsewhere, forearm', 'ICD10_2010'), +('M90.14', 'Periostitis in other infectious diseases classified elsewhere, hand', 'ICD10_2010'), +('M90.15', 'Periostitis in other infectious diseases classified elsewhere, pelvic and thigh', 'ICD10_2010'), +('M90.16', 'Periostitis in other infectious diseases classified elsewhere, lower leg', 'ICD10_2010'), +('M90.17', 'Periostitis in other infectious diseases classified elsewhere, ankle and foot', 'ICD10_2010'), +('M90.18', 'Periostitis in other infectious diseases classified elsewhere, other site', 'ICD10_2010'), +('M90.19', 'Periostitis in other infectious diseases classified elsewhere, site unspecified', 'ICD10_2010'), +('M90.2', 'Osteopathy in other infectious diseases classified elsewhere', 'ICD10_2010'), +('M90.20', 'Osteopathy in other infectious diseases classified elsewhere, multiple sites', 'ICD10_2010'), +('M90.21', 'Osteopathy in other infectious diseases classified elsewhere, shoulder region', 'ICD10_2010'), +('M90.22', 'Osteopathy in other infectious diseases classified elsewhere, upper arm', 'ICD10_2010'), +('M90.23', 'Osteopathy in other infectious diseases classified elsewhere, forearm', 'ICD10_2010'), +('M90.24', 'Osteopathy in other infectious diseases classified elsewhere, hand', 'ICD10_2010'), +('M90.25', 'Osteopathy in other infectious diseases classified elsewhere, pelvic and thigh', 'ICD10_2010'), +('M90.26', 'Osteopathy in other infectious diseases classified elsewhere, lower leg', 'ICD10_2010'), +('M90.27', 'Osteopathy in other infectious diseases classified elsewhere, ankle and foot', 'ICD10_2010'), +('M90.28', 'Osteopathy in other infectious diseases classified elsewhere, other site', 'ICD10_2010'), +('M90.29', 'Osteopathy in other infectious diseases classified elsewhere, site unspecified', 'ICD10_2010'), +('M90.3', 'Osteonecrosis in caisson disease', 'ICD10_2010'), +('M90.30', 'Osteonecrosis in caisson disease, multiple sites', 'ICD10_2010'), +('M90.31', 'Osteonecrosis in caisson disease, shoulder region', 'ICD10_2010'), +('M90.32', 'Osteonecrosis in caisson disease, upper arm', 'ICD10_2010'), +('M90.33', 'Osteonecrosis in caisson disease, forearm', 'ICD10_2010'), +('M90.34', 'Osteonecrosis in caisson disease, hand', 'ICD10_2010'), +('M90.35', 'Osteonecrosis in caisson disease, pelvic and thigh', 'ICD10_2010'), +('M90.36', 'Osteonecrosis in caisson disease, lower leg', 'ICD10_2010'), +('M90.37', 'Osteonecrosis in caisson disease, ankle and foot', 'ICD10_2010'), +('M90.38', 'Osteonecrosis in caisson disease, other site', 'ICD10_2010'), +('M90.39', 'Osteonecrosis in caisson disease, site unspecified', 'ICD10_2010'), +('M90.4', 'Osteonecrosis due to haemoglobinopathy', 'ICD10_2010'), +('M90.40', 'Osteonecrosis due to haemoglobinopathy, multiple sites', 'ICD10_2010'), +('M90.41', 'Osteonecrosis due to haemoglobinopathy, shoulder region', 'ICD10_2010'), +('M90.42', 'Osteonecrosis due to haemoglobinopathy, upper arm', 'ICD10_2010'), +('M90.43', 'Osteonecrosis due to haemoglobinopathy, forearm', 'ICD10_2010'), +('M90.44', 'Osteonecrosis due to haemoglobinopathy, hand', 'ICD10_2010'), +('M90.45', 'Osteonecrosis due to haemoglobinopathy, pelvic and thigh', 'ICD10_2010'), +('M90.46', 'Osteonecrosis due to haemoglobinopathy, lower leg', 'ICD10_2010'), +('M90.47', 'Osteonecrosis due to haemoglobinopathy, ankle and foot', 'ICD10_2010'), +('M90.48', 'Osteonecrosis due to haemoglobinopathy, other site', 'ICD10_2010'), +('M90.49', 'Osteonecrosis due to haemoglobinopathy, site unspecified', 'ICD10_2010'), +('M90.5', 'Osteonecrosis in other diseases classified elsewhere', 'ICD10_2010'), +('M90.50', 'Osteonecrosis in other diseases classified elsewhere, multiple sites', 'ICD10_2010'), +('M90.51', 'Osteonecrosis in other diseases classified elsewhere, shoulder region', 'ICD10_2010'), +('M90.52', 'Osteonecrosis in other diseases classified elsewhere, upper arm', 'ICD10_2010'), +('M90.53', 'Osteonecrosis in other diseases classified elsewhere, forearm', 'ICD10_2010'), +('M90.54', 'Osteonecrosis in other diseases classified elsewhere, hand', 'ICD10_2010'), +('M90.55', 'Osteonecrosis in other diseases classified elsewhere, pelvic and thigh', 'ICD10_2010'), +('M90.56', 'Osteonecrosis in other diseases classified elsewhere, lower leg', 'ICD10_2010'), +('M90.57', 'Osteonecrosis in other diseases classified elsewhere, ankle and foot', 'ICD10_2010'), +('M90.58', 'Osteonecrosis in other diseases classified elsewhere, other site', 'ICD10_2010'), +('M90.59', 'Osteonecrosis in other diseases classified elsewhere, site unspecified', 'ICD10_2010'), +('M90.6', 'Osteitis deformans in neoplastic disease', 'ICD10_2010'), +('M90.60', 'Osteitis deformans in neoplastic disease, multiple sites', 'ICD10_2010'), +('M90.61', 'Osteitis deformans in neoplastic disease, shoulder region', 'ICD10_2010'), +('M90.62', 'Osteitis deformans in neoplastic disease, upper arm', 'ICD10_2010'), +('M90.63', 'Osteitis deformans in neoplastic disease, forearm', 'ICD10_2010'), +('M90.64', 'Osteitis deformans in neoplastic disease, hand', 'ICD10_2010'), +('M90.65', 'Osteitis deformans in neoplastic disease, pelvic and thigh', 'ICD10_2010'), +('M90.66', 'Osteitis deformans in neoplastic disease, lower leg', 'ICD10_2010'), +('M90.67', 'Osteitis deformans in neoplastic disease, ankle and foot', 'ICD10_2010'), +('M90.68', 'Osteitis deformans in neoplastic disease, other site', 'ICD10_2010'), +('M90.69', 'Osteitis deformans in neoplastic disease, site unspecified', 'ICD10_2010'), +('M90.7', 'Fracture of bone in neoplastic disease', 'ICD10_2010'), +('M90.70', 'Fracture of bone in neoplastic disease, multiple sites', 'ICD10_2010'), +('M90.71', 'Fracture of bone in neoplastic disease, shoulder region', 'ICD10_2010'), +('M90.72', 'Fracture of bone in neoplastic disease, upper arm', 'ICD10_2010'), +('M90.73', 'Fracture of bone in neoplastic disease, forearm', 'ICD10_2010'), +('M90.74', 'Fracture of bone in neoplastic disease, hand', 'ICD10_2010'), +('M90.75', 'Fracture of bone in neoplastic disease, pelvic and thigh', 'ICD10_2010'), +('M90.76', 'Fracture of bone in neoplastic disease, lower leg', 'ICD10_2010'), +('M90.77', 'Fracture of bone in neoplastic disease, ankle and foot', 'ICD10_2010'), +('M90.78', 'Fracture of bone in neoplastic disease, other site', 'ICD10_2010'), +('M90.79', 'Fracture of bone in neoplastic disease, site unspecified', 'ICD10_2010'), +('M90.8', 'Osteopathy in other diseases classified elsewhere', 'ICD10_2010'), +('M90.80', 'Osteopathy in other diseases classified elsewhere, multiple sites', 'ICD10_2010'), +('M90.81', 'Osteopathy in other diseases classified elsewhere, shoulder region', 'ICD10_2010'), +('M90.82', 'Osteopathy in other diseases classified elsewhere, upper arm', 'ICD10_2010'), +('M90.83', 'Osteopathy in other diseases classified elsewhere, forearm', 'ICD10_2010'), +('M90.84', 'Osteopathy in other diseases classified elsewhere, hand', 'ICD10_2010'), +('M90.85', 'Osteopathy in other diseases classified elsewhere, pelvic and thigh', 'ICD10_2010'), +('M90.86', 'Osteopathy in other diseases classified elsewhere, lower leg', 'ICD10_2010'), +('M90.87', 'Osteopathy in other diseases classified elsewhere, ankle and foot', 'ICD10_2010'), +('M90.88', 'Osteopathy in other diseases classified elsewhere, other site', 'ICD10_2010'), +('M90.89', 'Osteopathy in other diseases classified elsewhere, site unspecified', 'ICD10_2010'), +('M91', 'Juvenile osteochondrosis of hip and pelvis', 'ICD10_2010'), +('M91.0', 'Juvenile osteochondrosis of pelvis', 'ICD10_2010'), +('M91.00', 'Juvenile osteochondrosis of pelvis, multiple sites', 'ICD10_2010'), +('M91.01', 'Juvenile osteochondrosis of pelvis, shoulder region', 'ICD10_2010'), +('M91.02', 'Juvenile osteochondrosis of pelvis, upper arm', 'ICD10_2010'), +('M91.03', 'Juvenile osteochondrosis of pelvis, forearm', 'ICD10_2010'), +('M91.04', 'Juvenile osteochondrosis of pelvis, hand', 'ICD10_2010'), +('M91.05', 'Juvenile osteochondrosis of pelvis, pelvic region and thigh', 'ICD10_2010'), +('M91.06', 'Juvenile osteochondrosis of pelvis, lower leg', 'ICD10_2010'), +('M91.07', 'Juvenile osteochondrosis of pelvis, ankle and foot', 'ICD10_2010'), +('M91.08', 'Juvenile osteochondrosis of pelvis, other', 'ICD10_2010'), +('M91.09', 'Juvenile osteochondrosis of pelvis, site unspecified', 'ICD10_2010'), +('M91.1', 'Juv osteochondrosis head of femur [legg-calv', 'ICD10_2010'), +('M91.10', 'Juv osteochondrosis head of femur [legg-calv', 'ICD10_2010'), +('M91.11', 'Juv osteochondrosis head of femur [legg-calv', 'ICD10_2010'), +('M91.12', 'Juv osteochondrosis head of femur [legg-calv', 'ICD10_2010'), +('M91.13', 'Juv osteochondrosis head of femur [legg-calv', 'ICD10_2010'), +('M91.14', 'Juv osteochondrosis head of femur [legg-calv', 'ICD10_2010'), +('M91.15', 'Juv osteochondrosis head of femur [legg-calv', 'ICD10_2010'), +('M91.16', 'Juv osteochondrosis head of femur [legg-calv', 'ICD10_2010'), +('M91.17', 'Juv osteochondrosis head of femur [legg-calv', 'ICD10_2010'), +('M91.18', 'Juv osteochondrosis head of femur [legg-calv', 'ICD10_2010'), +('M91.19', 'Juv osteochondrosis head of femur [legg-calv', 'ICD10_2010'), +('M91.2', 'Coxa plana', 'ICD10_2010'), +('M91.20', 'Coxa plana, multiple sites', 'ICD10_2010'), +('M91.21', 'Coxa plana, shoulder region', 'ICD10_2010'), +('M91.22', 'Coxa plana, upper arm', 'ICD10_2010'), +('M91.23', 'Coxa plana, forearm', 'ICD10_2010'), +('M91.24', 'Coxa plana, hand', 'ICD10_2010'), +('M91.25', 'Coxa plana, pelvic region and thigh', 'ICD10_2010'), +('M91.26', 'Coxa plana, lower leg', 'ICD10_2010'), +('M91.27', 'Coxa plana, ankle and foot', 'ICD10_2010'), +('M91.28', 'Coxa plana, other', 'ICD10_2010'), +('M91.29', 'Coxa plana, site unspecified', 'ICD10_2010'), +('M91.3', 'Pseudocoxalgia', 'ICD10_2010'), +('M91.30', 'Pseudocoxalgia, multiple sites', 'ICD10_2010'), +('M91.31', 'Pseudocoxalgia, shoulder region', 'ICD10_2010'), +('M91.32', 'Pseudocoxalgia, upper arm', 'ICD10_2010'), +('M91.33', 'Pseudocoxalgia, forearm', 'ICD10_2010'), +('M91.34', 'Pseudocoxalgia, hand', 'ICD10_2010'), +('M91.35', 'Pseudocoxalgia, pelvic region and thigh', 'ICD10_2010'), +('M91.36', 'Pseudocoxalgia, lower leg', 'ICD10_2010'), +('M91.37', 'Pseudocoxalgia, ankle and foot', 'ICD10_2010'), +('M91.38', 'Pseudocoxalgia, other', 'ICD10_2010'), +('M91.39', 'Pseudocoxalgia, site unspecified', 'ICD10_2010'), +('M91.8', 'Other juvenile osteochondrosis of hip and pelvis', 'ICD10_2010'), +('M91.80', 'Other juvenile osteochondrosis of hip and pelvis, multiple sites', 'ICD10_2010'), +('M91.81', 'Other juvenile osteochondrosis of hip and pelvis, shoulder region', 'ICD10_2010'), +('M91.82', 'Other juvenile osteochondrosis of hip and pelvis, upper arm', 'ICD10_2010'), +('M91.83', 'Other juvenile osteochondrosis of hip and pelvis, forearm', 'ICD10_2010'), +('M91.84', 'Other juvenile osteochondrosis of hip and pelvis, hand', 'ICD10_2010'), +('M91.85', 'Other juvenile osteochondrosis of hip and pelvis, pelvic region and thigh', 'ICD10_2010'), +('M91.86', 'Other juvenile osteochondrosis of hip and pelvis, lower leg', 'ICD10_2010'), +('M91.87', 'Other juvenile osteochondrosis of hip and pelvis, ankle and foot', 'ICD10_2010'), +('M91.88', 'Other juvenile osteochondrosis of hip and pelvis, other', 'ICD10_2010'), +('M91.89', 'Other juvenile osteochondrosis of hip and pelvis, site unspecified', 'ICD10_2010'), +('M91.9', 'Juvenile osteochondrosis of hip and pelvis, unspecified', 'ICD10_2010'), +('M91.90', 'Juvenile osteochondrosis of hip and pelvis, unspecified, multiple sites', 'ICD10_2010'), +('M91.91', 'Juvenile osteochondrosis of hip and pelvis, unspecified, shoulder region', 'ICD10_2010'), +('M91.92', 'Juvenile osteochondrosis of hip and pelvis, unspecified, upper arm', 'ICD10_2010'), +('M91.93', 'Juvenile osteochondrosis of hip and pelvis, unspecified, forearm', 'ICD10_2010'), +('M91.94', 'Juvenile osteochondrosis of hip and pelvis, unspecified, hand', 'ICD10_2010'), +('M91.95', 'Juvenile osteochondrosis of hip and pelvis, unspecified, pelvic region and thigh', 'ICD10_2010'), +('M91.96', 'Juvenile osteochondrosis of hip and pelvis, unspecified, lower leg', 'ICD10_2010'), +('M91.97', 'Juvenile osteochondrosis of hip and pelvis, unspecified, ankle and foot', 'ICD10_2010'), +('M91.98', 'Juvenile osteochondrosis of hip and pelvis, unspecified, other', 'ICD10_2010'), +('M91.99', 'Juvenile osteochondrosis of hip and pelvis, unspecified, site unspecified', 'ICD10_2010'), +('M92', 'Other juvenile osteochondrosis', 'ICD10_2010'), +('M92.0', 'Juvenile osteochondrosis of humerus', 'ICD10_2010'), +('M92.00', 'Juvenile osteochondrosis of humerus, multiple sites', 'ICD10_2010'), +('M92.01', 'Juvenile osteochondrosis of humerus, shoulder region', 'ICD10_2010'), +('M92.02', 'Juvenile osteochondrosis of humerus, upper arm', 'ICD10_2010'), +('M92.03', 'Juvenile osteochondrosis of humerus, forearm', 'ICD10_2010'), +('M92.04', 'Juvenile osteochondrosis of humerus, hand', 'ICD10_2010'), +('M92.05', 'Juvenile osteochondrosis of humerus, pelvic region and thigh', 'ICD10_2010'), +('M92.06', 'Juvenile osteochondrosis of humerus, lower leg', 'ICD10_2010'), +('M92.07', 'Juvenile osteochondrosis of humerus, ankle and foot', 'ICD10_2010'), +('M92.08', 'Juvenile osteochondrosis of humerus, other', 'ICD10_2010'), +('M92.09', 'Juvenile osteochondrosis of humerus, site unspecified', 'ICD10_2010'), +('M92.1', 'Juvenile osteochondrosis of radius and ulna', 'ICD10_2010'), +('M92.10', 'Juvenile osteochondrosis of radius and ulna, multiple sites', 'ICD10_2010'), +('M92.11', 'Juvenile osteochondrosis of radius and ulna, shoulder region', 'ICD10_2010'), +('M92.12', 'Juvenile osteochondrosis of radius and ulna, upper arm', 'ICD10_2010'), +('M92.13', 'Juvenile osteochondrosis of radius and ulna, forearm', 'ICD10_2010'), +('M92.14', 'Juvenile osteochondrosis of radius and ulna, hand', 'ICD10_2010'), +('M92.15', 'Juvenile osteochondrosis of radius and ulna, pelvic region and thigh', 'ICD10_2010'), +('M92.16', 'Juvenile osteochondrosis of radius and ulna, lower leg', 'ICD10_2010'), +('M92.17', 'Juvenile osteochondrosis of radius and ulna, ankle and foot', 'ICD10_2010'), +('M92.18', 'Juvenile osteochondrosis of radius and ulna, other', 'ICD10_2010'), +('M92.19', 'Juvenile osteochondrosis of radius and ulna, site unspecified', 'ICD10_2010'), +('M92.2', 'Juvenile osteochondrosis of hand', 'ICD10_2010'), +('M92.20', 'Juvenile osteochondrosis of hand, multiple sites', 'ICD10_2010'), +('M92.21', 'Juvenile osteochondrosis of hand, shoulder region', 'ICD10_2010'), +('M92.22', 'Juvenile osteochondrosis of hand, upper arm', 'ICD10_2010'), +('M92.23', 'Juvenile osteochondrosis of hand, forearm', 'ICD10_2010'), +('M92.24', 'Juvenile osteochondrosis of hand, hand', 'ICD10_2010'), +('M92.25', 'Juvenile osteochondrosis of hand, pelvic region and thigh', 'ICD10_2010'), +('M92.26', 'Juvenile osteochondrosis of hand, lower leg', 'ICD10_2010'), +('M92.27', 'Juvenile osteochondrosis of hand, ankle and foot', 'ICD10_2010'), +('M92.28', 'Juvenile osteochondrosis of hand, other', 'ICD10_2010'), +('M92.29', 'Juvenile osteochondrosis of hand, site unspecified', 'ICD10_2010'), +('M92.3', 'Other juvenile osteochondrosis of upper limb', 'ICD10_2010'), +('M92.30', 'Other juvenile osteochondrosis of upper limb, multiple sites', 'ICD10_2010'), +('M92.31', 'Other juvenile osteochondrosis of upper limb, shoulder region', 'ICD10_2010'), +('M92.32', 'Other juvenile osteochondrosis of upper limb, upper arm', 'ICD10_2010'), +('M92.33', 'Other juvenile osteochondrosis of upper limb, forearm', 'ICD10_2010'), +('M92.34', 'Other juvenile osteochondrosis of upper limb, hand', 'ICD10_2010'), +('M92.35', 'Other juvenile osteochondrosis of upper limb, pelvic region and thigh', 'ICD10_2010'); +INSERT INTO `icd10` (`ID_ICD10`, `Diagnosa`, `Versi_ICD10`) VALUES +('M92.36', 'Other juvenile osteochondrosis of upper limb, lower leg', 'ICD10_2010'), +('M92.37', 'Other juvenile osteochondrosis of upper limb, ankle and foot', 'ICD10_2010'), +('M92.38', 'Other juvenile osteochondrosis of upper limb, other', 'ICD10_2010'), +('M92.39', 'Other juvenile osteochondrosis of upper limb, site unspecified', 'ICD10_2010'), +('M92.4', 'Juvenile osteochondrosis of patella', 'ICD10_2010'), +('M92.40', 'Juvenile osteochondrosis of patella, multiple sites', 'ICD10_2010'), +('M92.41', 'Juvenile osteochondrosis of patella, shoulder region', 'ICD10_2010'), +('M92.42', 'Juvenile osteochondrosis of patella, upper arm', 'ICD10_2010'), +('M92.43', 'Juvenile osteochondrosis of patella, forearm', 'ICD10_2010'), +('M92.44', 'Juvenile osteochondrosis of patella, hand', 'ICD10_2010'), +('M92.45', 'Juvenile osteochondrosis of patella, pelvic region and thigh', 'ICD10_2010'), +('M92.46', 'Juvenile osteochondrosis of patella, lower leg', 'ICD10_2010'), +('M92.47', 'Juvenile osteochondrosis of patella, ankle and foot', 'ICD10_2010'), +('M92.48', 'Juvenile osteochondrosis of patella, other', 'ICD10_2010'), +('M92.49', 'Juvenile osteochondrosis of patella, site unspecified', 'ICD10_2010'), +('M92.5', 'Juvenile osteochondrosis of tibia and fibula', 'ICD10_2010'), +('M92.50', 'Juvenile osteochondrosis of tibia and fibula, multiple sites', 'ICD10_2010'), +('M92.51', 'Juvenile osteochondrosis of tibia and fibula, shoulder region', 'ICD10_2010'), +('M92.52', 'Juvenile osteochondrosis of tibia and fibula, upper arm', 'ICD10_2010'), +('M92.53', 'Juvenile osteochondrosis of tibia and fibula, forearm', 'ICD10_2010'), +('M92.54', 'Juvenile osteochondrosis of tibia and fibula, hand', 'ICD10_2010'), +('M92.55', 'Juvenile osteochondrosis of tibia and fibula, pelvic region and thigh', 'ICD10_2010'), +('M92.56', 'Juvenile osteochondrosis of tibia and fibula, lower leg', 'ICD10_2010'), +('M92.57', 'Juvenile osteochondrosis of tibia and fibula, ankle and foot', 'ICD10_2010'), +('M92.58', 'Juvenile osteochondrosis of tibia and fibula, other', 'ICD10_2010'), +('M92.59', 'Juvenile osteochondrosis of tibia and fibula, site unspecified', 'ICD10_2010'), +('M92.6', 'Juvenile osteochondrosis of tarsus', 'ICD10_2010'), +('M92.60', 'Juvenile osteochondrosis of tarsus, multiple sites', 'ICD10_2010'), +('M92.61', 'Juvenile osteochondrosis of tarsus, shoulder region', 'ICD10_2010'), +('M92.62', 'Juvenile osteochondrosis of tarsus, upper arm', 'ICD10_2010'), +('M92.63', 'Juvenile osteochondrosis of tarsus, forearm', 'ICD10_2010'), +('M92.64', 'Juvenile osteochondrosis of tarsus, hand', 'ICD10_2010'), +('M92.65', 'Juvenile osteochondrosis of tarsus, pelvic region and thigh', 'ICD10_2010'), +('M92.66', 'Juvenile osteochondrosis of tarsus, lower leg', 'ICD10_2010'), +('M92.67', 'Juvenile osteochondrosis of tarsus, ankle and foot', 'ICD10_2010'), +('M92.68', 'Juvenile osteochondrosis of tarsus, other', 'ICD10_2010'), +('M92.69', 'Juvenile osteochondrosis of tarsus, site unspecified', 'ICD10_2010'), +('M92.7', 'Juvenile osteochondrosis of metatarsus', 'ICD10_2010'), +('M92.70', 'Juvenile osteochondrosis of metatarsus, multiple sites', 'ICD10_2010'), +('M92.71', 'Juvenile osteochondrosis of metatarsus, shoulder region', 'ICD10_2010'), +('M92.72', 'Juvenile osteochondrosis of metatarsus, upper arm', 'ICD10_2010'), +('M92.73', 'Juvenile osteochondrosis of metatarsus, forearm', 'ICD10_2010'), +('M92.74', 'Juvenile osteochondrosis of metatarsus, hand', 'ICD10_2010'), +('M92.75', 'Juvenile osteochondrosis of metatarsus, pelvic region and thigh', 'ICD10_2010'), +('M92.76', 'Juvenile osteochondrosis of metatarsus, lower leg', 'ICD10_2010'), +('M92.77', 'Juvenile osteochondrosis of metatarsus, ankle and foot', 'ICD10_2010'), +('M92.78', 'Juvenile osteochondrosis of metatarsus, other', 'ICD10_2010'), +('M92.79', 'Juvenile osteochondrosis of metatarsus, site unspecified', 'ICD10_2010'), +('M92.8', 'Other specified juvenile osteochondrosis', 'ICD10_2010'), +('M92.80', 'Other specified juvenile osteochondrosis, multiple sites', 'ICD10_2010'), +('M92.81', 'Other specified juvenile osteochondrosis, shoulder region', 'ICD10_2010'), +('M92.82', 'Other specified juvenile osteochondrosis, upper arm', 'ICD10_2010'), +('M92.83', 'Other specified juvenile osteochondrosis, forearm', 'ICD10_2010'), +('M92.84', 'Other specified juvenile osteochondrosis, hand', 'ICD10_2010'), +('M92.85', 'Other specified juvenile osteochondrosis, pelvic region and thigh', 'ICD10_2010'), +('M92.86', 'Other specified juvenile osteochondrosis, lower leg', 'ICD10_2010'), +('M92.87', 'Other specified juvenile osteochondrosis, ankle and foot', 'ICD10_2010'), +('M92.88', 'Other specified juvenile osteochondrosis, other', 'ICD10_2010'), +('M92.89', 'Other specified juvenile osteochondrosis, site unspecified', 'ICD10_2010'), +('M92.9', 'Juvenile osteochondrosis, unspecified', 'ICD10_2010'), +('M92.90', 'Juvenile osteochondrosis, unspecified, multiple sites', 'ICD10_2010'), +('M92.91', 'Juvenile osteochondrosis, unspecified, shoulder region', 'ICD10_2010'), +('M92.92', 'Juvenile osteochondrosis, unspecified, upper arm', 'ICD10_2010'), +('M92.93', 'Juvenile osteochondrosis, unspecified, forearm', 'ICD10_2010'), +('M92.94', 'Juvenile osteochondrosis, unspecified, hand', 'ICD10_2010'), +('M92.95', 'Juvenile osteochondrosis, unspecified, pelvic region and thigh', 'ICD10_2010'), +('M92.96', 'Juvenile osteochondrosis, unspecified, lower leg', 'ICD10_2010'), +('M92.97', 'Juvenile osteochondrosis, unspecified, ankle and foot', 'ICD10_2010'), +('M92.98', 'Juvenile osteochondrosis, unspecified, other', 'ICD10_2010'), +('M92.99', 'Juvenile osteochondrosis, unspecified, site unspecified', 'ICD10_2010'), +('M93', 'Other osteochondropathies', 'ICD10_2010'), +('M93.0', 'Slipped upper femoral epiphysis (nontraumatic)', 'ICD10_2010'), +('M93.00', 'Slipped upper femoral epiphysis (nontraumatic), multiple sites', 'ICD10_2010'), +('M93.01', 'Slipped upper femoral epiphysis (nontraumatic), shoulder region', 'ICD10_2010'), +('M93.02', 'Slipped upper femoral epiphysis (nontraumatic), upper arm', 'ICD10_2010'), +('M93.03', 'Slipped upper femoral epiphysis (nontraumatic), forearm', 'ICD10_2010'), +('M93.04', 'Slipped upper femoral epiphysis (nontraumatic), hand', 'ICD10_2010'), +('M93.05', 'Slipped upper femoral epiphysis (nontraumatic), pelvic region and thigh', 'ICD10_2010'), +('M93.06', 'Slipped upper femoral epiphysis (nontraumatic), lower leg', 'ICD10_2010'), +('M93.07', 'Slipped upper femoral epiphysis (nontraumatic), ankle and foot', 'ICD10_2010'), +('M93.08', 'Slipped upper femoral epiphysis (nontraumatic), other', 'ICD10_2010'), +('M93.09', 'Slipped upper femoral epiphysis (nontraumatic), site unspecified', 'ICD10_2010'), +('M93.1', 'Kienbock disease of adults', 'ICD10_2010'), +('M93.10', 'Kienbock disease of adults, multiple sites', 'ICD10_2010'), +('M93.11', 'Kienbock disease of adults, shoulder region', 'ICD10_2010'), +('M93.12', 'Kienbock disease of adults, upper arm', 'ICD10_2010'), +('M93.13', 'Kienbock disease of adults, forearm', 'ICD10_2010'), +('M93.14', 'Kienbock disease of adults, hand', 'ICD10_2010'), +('M93.15', 'Kienbock disease of adults, pelvic region and thigh', 'ICD10_2010'), +('M93.16', 'Kienbock disease of adults, lower leg', 'ICD10_2010'), +('M93.17', 'Kienbock disease of adults, ankle and foot', 'ICD10_2010'), +('M93.18', 'Kienbock disease of adults, other', 'ICD10_2010'), +('M93.19', 'Kienbock disease of adults, site unspecified', 'ICD10_2010'), +('M93.2', 'Osteochondritis dissecans', 'ICD10_2010'), +('M93.20', 'Osteochondritis dissecans, multiple sites', 'ICD10_2010'), +('M93.21', 'Osteochondritis dissecans, shoulder region', 'ICD10_2010'), +('M93.22', 'Osteochondritis dissecans, upper arm', 'ICD10_2010'), +('M93.23', 'Osteochondritis dissecans, forearm', 'ICD10_2010'), +('M93.24', 'Osteochondritis dissecans, hand', 'ICD10_2010'), +('M93.25', 'Osteochondritis dissecans, pelvic region and thigh', 'ICD10_2010'), +('M93.26', 'Osteochondritis dissecans, lower leg', 'ICD10_2010'), +('M93.27', 'Osteochondritis dissecans, ankle and foot', 'ICD10_2010'), +('M93.28', 'Osteochondritis dissecans, other', 'ICD10_2010'), +('M93.29', 'Osteochondritis dissecans, site unspecified', 'ICD10_2010'), +('M93.8', 'Other specified osteochondropathies', 'ICD10_2010'), +('M93.80', 'Other specified osteochondropathies, multiple sites', 'ICD10_2010'), +('M93.81', 'Other specified osteochondropathies, shoulder region', 'ICD10_2010'), +('M93.82', 'Other specified osteochondropathies, upper arm', 'ICD10_2010'), +('M93.83', 'Other specified osteochondropathies, forearm', 'ICD10_2010'), +('M93.84', 'Other specified osteochondropathies, hand', 'ICD10_2010'), +('M93.85', 'Other specified osteochondropathies, pelvic region and thigh', 'ICD10_2010'), +('M93.86', 'Other specified osteochondropathies, lower leg', 'ICD10_2010'), +('M93.87', 'Other specified osteochondropathies, ankle and foot', 'ICD10_2010'), +('M93.88', 'Other specified osteochondropathies, other', 'ICD10_2010'), +('M93.89', 'Other specified osteochondropathies, site unspecified', 'ICD10_2010'), +('M93.9', 'Osteochondropathy, unspecified', 'ICD10_2010'), +('M93.90', 'Osteochondropathy, unspecified, multiple sites', 'ICD10_2010'), +('M93.91', 'Osteochondropathy, unspecified, shoulder region', 'ICD10_2010'), +('M93.92', 'Osteochondropathy, unspecified, upper arm', 'ICD10_2010'), +('M93.93', 'Osteochondropathy, unspecified, forearm', 'ICD10_2010'), +('M93.94', 'Osteochondropathy, unspecified, hand', 'ICD10_2010'), +('M93.95', 'Osteochondropathy, unspecified, pelvic region and thigh', 'ICD10_2010'), +('M93.96', 'Osteochondropathy, unspecified, lower leg', 'ICD10_2010'), +('M93.97', 'Osteochondropathy, unspecified, ankle and foot', 'ICD10_2010'), +('M93.98', 'Osteochondropathy, unspecified, other', 'ICD10_2010'), +('M93.99', 'Osteochondropathy, unspecified, site unspecified', 'ICD10_2010'), +('M94', 'Other disorders of cartilage', 'ICD10_2010'), +('M94.0', 'Chondrocostal junction syndrome [tietze]', 'ICD10_2010'), +('M94.00', 'Chondrocostal junction syndrome [tietze], multiple sites', 'ICD10_2010'), +('M94.01', 'Chondrocostal junction syndrome [tietze], shoulder region', 'ICD10_2010'), +('M94.02', 'Chondrocostal junction syndrome [tietze], upper arm', 'ICD10_2010'), +('M94.03', 'Chondrocostal junction syndrome [tietze], forearm', 'ICD10_2010'), +('M94.04', 'Chondrocostal junction syndrome [tietze], hand', 'ICD10_2010'), +('M94.05', 'Chondrocostal junction syndrome [tietze], pelvic region and thigh', 'ICD10_2010'), +('M94.06', 'Chondrocostal junction syndrome [tietze], lower leg', 'ICD10_2010'), +('M94.07', 'Chondrocostal junction syndrome [tietze], ankle and foot', 'ICD10_2010'), +('M94.08', 'Chondrocostal junction syndrome [tietze], other', 'ICD10_2010'), +('M94.09', 'Chondrocostal junction syndrome [tietze], site unspecified', 'ICD10_2010'), +('M94.1', 'Relapsing polychondritis', 'ICD10_2010'), +('M94.10', 'Relapsing polychondritis, multiple sites', 'ICD10_2010'), +('M94.11', 'Relapsing polychondritis, shoulder region', 'ICD10_2010'), +('M94.12', 'Relapsing polychondritis, upper arm', 'ICD10_2010'), +('M94.13', 'Relapsing polychondritis, forearm', 'ICD10_2010'), +('M94.14', 'Relapsing polychondritis, hand', 'ICD10_2010'), +('M94.15', 'Relapsing polychondritis, pelvic and thigh', 'ICD10_2010'), +('M94.16', 'Relapsing polychondritis, lower leg', 'ICD10_2010'), +('M94.17', 'Relapsing polychondritis, ankle and foot', 'ICD10_2010'), +('M94.18', 'Relapsing polychondritis, other site', 'ICD10_2010'), +('M94.19', 'Relapsing polychondritis, site unspecified', 'ICD10_2010'), +('M94.2', 'Chondromalacia', 'ICD10_2010'), +('M94.20', 'Chondromalacia, multiple sites', 'ICD10_2010'), +('M94.21', 'Chondromalacia, shoulder region', 'ICD10_2010'), +('M94.22', 'Chondromalacia, upper arm', 'ICD10_2010'), +('M94.23', 'Chondromalacia, forearm', 'ICD10_2010'), +('M94.24', 'Chondromalacia, hand', 'ICD10_2010'), +('M94.25', 'Chondromalacia, pelvic and thigh', 'ICD10_2010'), +('M94.26', 'Chondromalacia, lower leg', 'ICD10_2010'), +('M94.27', 'Chondromalacia, ankle and foot', 'ICD10_2010'), +('M94.28', 'Chondromalacia, other site', 'ICD10_2010'), +('M94.29', 'Chondromalacia, site unspecified', 'ICD10_2010'), +('M94.3', 'Chondrolysis', 'ICD10_2010'), +('M94.30', 'Chondrolysis, multiple sites', 'ICD10_2010'), +('M94.31', 'Chondrolysis, shoulder region', 'ICD10_2010'), +('M94.32', 'Chondrolysis, upper arm', 'ICD10_2010'), +('M94.33', 'Chondrolysis, forearm', 'ICD10_2010'), +('M94.34', 'Chondrolysis, hand', 'ICD10_2010'), +('M94.35', 'Chondrolysis, pelvic and thigh', 'ICD10_2010'), +('M94.36', 'Chondrolysis, lower leg', 'ICD10_2010'), +('M94.37', 'Chondrolysis, ankle and foot', 'ICD10_2010'), +('M94.38', 'Chondrolysis, other site', 'ICD10_2010'), +('M94.39', 'Chondrolysis, site unspecified', 'ICD10_2010'), +('M94.8', 'Other specified disorders of cartilage', 'ICD10_2010'), +('M94.80', 'Other specified disorders of cartilage, multiple sites', 'ICD10_2010'), +('M94.81', 'Other specified disorders of cartilage, shoulder region', 'ICD10_2010'), +('M94.82', 'Other specified disorders of cartilage, upper arm', 'ICD10_2010'), +('M94.83', 'Other specified disorders of cartilage, forearm', 'ICD10_2010'), +('M94.84', 'Other specified disorders of cartilage, hand', 'ICD10_2010'), +('M94.85', 'Other specified disorders of cartilage, pelvic and thigh', 'ICD10_2010'), +('M94.86', 'Other specified disorders of cartilage, lower leg', 'ICD10_2010'), +('M94.87', 'Other specified disorders of cartilage, ankle and foot', 'ICD10_2010'), +('M94.88', 'Other specified disorders of cartilage, other site', 'ICD10_2010'), +('M94.89', 'Other specified disorders of cartilage, site unspecified', 'ICD10_2010'), +('M94.9', 'Disorder of cartilage, unspecified', 'ICD10_2010'), +('M94.90', 'Disorder of cartilage, unspecified, multiple sites', 'ICD10_2010'), +('M94.91', 'Disorder of cartilage, unspecified, shoulder region', 'ICD10_2010'), +('M94.92', 'Disorder of cartilage, unspecified, upper arm', 'ICD10_2010'), +('M94.93', 'Disorder of cartilage, unspecified, forearm', 'ICD10_2010'), +('M94.94', 'Disorder of cartilage, unspecified, hand', 'ICD10_2010'), +('M94.95', 'Disorder of cartilage, unspecified, pelvic and thigh', 'ICD10_2010'), +('M94.96', 'Disorder of cartilage, unspecified, lower leg', 'ICD10_2010'), +('M94.97', 'Disorder of cartilage, unspecified, ankle and foot', 'ICD10_2010'), +('M94.98', 'Disorder of cartilage, unspecified, other site', 'ICD10_2010'), +('M94.99', 'Disorder of cartilage, unspecified, site unspecified', 'ICD10_2010'), +('M95', 'Other acquired deformities of musculoskeletal system and connective tissue', 'ICD10_2010'), +('M95.0', 'Acquired deformity of nose', 'ICD10_2010'), +('M95.1', 'Cauliflower ear', 'ICD10_2010'), +('M95.2', 'Other acquired deformity of head', 'ICD10_2010'), +('M95.3', 'Acquired deformity of neck', 'ICD10_2010'), +('M95.4', 'Acquired deformity of chest and rib', 'ICD10_2010'), +('M95.5', 'Acquired deformity of pelvis', 'ICD10_2010'), +('M95.8', 'Other specified acquired deformities of musculoskel sys', 'ICD10_2010'), +('M95.9', 'Acquired deformity of musculoskeletal system, unspecified', 'ICD10_2010'), +('M96', 'Postprocedural musculoskeletal disorders, not elsewhere classified', 'ICD10_2010'), +('M96.0', 'Pseudarthrosis after fusion or arthrodesis', 'ICD10_2010'), +('M96.1', 'Postlaminectomy syndrome, not elsewhere classified', 'ICD10_2010'), +('M96.2', 'Postradiation kyphosis', 'ICD10_2010'), +('M96.3', 'Postlaminectomy kyphosis', 'ICD10_2010'), +('M96.4', 'Postsurgical lordosis', 'ICD10_2010'), +('M96.5', 'Postradiation scoliosis', 'ICD10_2010'), +('M96.6', 'Fract bone fllg ins orthopae implt jnt prosthesis and bone plate', 'ICD10_2010'), +('M96.8', 'Other postprocedural musculoskeletal disorders', 'ICD10_2010'), +('M96.9', 'Postprocedural musculoskeletal disorder, unspecified', 'ICD10_2010'), +('M99', 'Biomechanical lesions, not elsewhere classified', 'ICD10_2010'), +('M99.0', 'Segmental and somatic dysfunction', 'ICD10_2010'), +('M99.00', 'Segmental and somatic dysfunction, head region', 'ICD10_2010'), +('M99.01', 'Segmental and somatic dysfunction, cervical region', 'ICD10_2010'), +('M99.02', 'Segmental and somatic dysfunction , thoracic region', 'ICD10_2010'), +('M99.03', 'Segmental and somatic dysfunction , lumbar region', 'ICD10_2010'), +('M99.04', 'Segmental and somatic dysfunction , sacral region', 'ICD10_2010'), +('M99.05', 'Segmental and somatic dysfunction , pelvic region', 'ICD10_2010'), +('M99.06', 'Segmental and somatic dysfunction , lower extremity', 'ICD10_2010'), +('M99.07', 'Segmental and somatic dysfunction, upper extremity', 'ICD10_2010'), +('M99.08', 'Segmental and somatic dysfunction, rib region', 'ICD10_2010'), +('M99.09', 'Segmental and somatic dysfunction, abdomen region', 'ICD10_2010'), +('M99.1', 'Subluxation complex (vertebral)', 'ICD10_2010'), +('M99.10', 'Subluxation complex (vertebral), head region', 'ICD10_2010'), +('M99.11', 'Subluxation complex (vertebral), cervical region', 'ICD10_2010'), +('M99.12', ' Subluxation complex (vertebral), thoracic region', 'ICD10_2010'), +('M99.13', ' Subluxation complex (vertebral), lumbar region', 'ICD10_2010'), +('M99.14', 'Subluxation complex (vertebral) , sacral region', 'ICD10_2010'), +('M99.15', ' Subluxation complex (vertebral), pelvic region', 'ICD10_2010'), +('M99.16', ' Subluxation complex (vertebral), lower extremity', 'ICD10_2010'), +('M99.17', 'Subluxation complex (vertebral), upper extremity', 'ICD10_2010'), +('M99.18', 'Subluxation complex (vertebral), rib cage', 'ICD10_2010'), +('M99.19', 'Subluxation complex (vertebral), abdomen and other', 'ICD10_2010'), +('M99.2', 'Subluxation stenosis of neural canal', 'ICD10_2010'), +('M99.20', 'Subluxation stenosis of neural canal, head region', 'ICD10_2010'), +('M99.21', 'Subluxation stenosis of neural canal, cervical region', 'ICD10_2010'), +('M99.22', 'Subluxation stenosis of neural canal, thoracic region', 'ICD10_2010'), +('M99.23', 'Subluxation stenosis of neural canal , lumbar region', 'ICD10_2010'), +('M99.24', 'Subluxation stenosis of neural canal , sacral region', 'ICD10_2010'), +('M99.25', 'Subluxation stenosis of neural canal , pelvic region', 'ICD10_2010'), +('M99.26', 'Subluxation stenosis of neural canal , lower extremity', 'ICD10_2010'), +('M99.27', 'Subluxation stenosis of neural canal, upper extremity', 'ICD10_2010'), +('M99.28', 'Subluxation stenosis of neural canal, rib cage', 'ICD10_2010'), +('M99.29', 'Subluxation stenosis of neural canal, abdomen and other', 'ICD10_2010'), +('M99.3', 'Osseous stenosis of neural canal', 'ICD10_2010'), +('M99.30', 'Osseous stenosis of neural canal, head region', 'ICD10_2010'), +('M99.31', 'Osseous stenosis of neural canal, cervical region', 'ICD10_2010'), +('M99.32', 'Osseous stenosis of neural canal , thoracic region', 'ICD10_2010'), +('M99.33', 'Osseous stenosis of neural canal, lumbar region', 'ICD10_2010'), +('M99.34', 'Osseous stenosis of neural canal , sacral region', 'ICD10_2010'), +('M99.35', 'Osseous stenosis of neural canal , pelvic region', 'ICD10_2010'), +('M99.36', 'Osseous stenosis of neural canal , lower extremity', 'ICD10_2010'), +('M99.37', 'Osseous stenosis of neural canal, upper extremity', 'ICD10_2010'), +('M99.38', 'Osseous stenosis of neural canal, rib cage', 'ICD10_2010'), +('M99.39', 'Osseous stenosis of neural canal, abdomen and other', 'ICD10_2010'), +('M99.4', 'Connective tissue stenosis of neural canal', 'ICD10_2010'), +('M99.40', 'Connective tissue stenosis of neural canal, head region', 'ICD10_2010'), +('M99.41', 'Connective tissue stenosis of neural canal, cervical region', 'ICD10_2010'), +('M99.42', 'Connective tissue stenosis of neural canal, thoracic region', 'ICD10_2010'), +('M99.43', 'Connective tissue stenosis of neural canal, lumbar region', 'ICD10_2010'), +('M99.44', 'Connective tissue stenosis of neural canal , sacral region', 'ICD10_2010'), +('M99.45', 'Connective tissue stenosis of neural canal , pelvic region', 'ICD10_2010'), +('M99.46', 'Connective tissue stenosis of neural canal , lower extremity', 'ICD10_2010'), +('M99.47', 'Connective tissue stenosis of neural canal, upper extremity', 'ICD10_2010'), +('M99.48', 'Connective tissue stenosis of neural canal, rib cage', 'ICD10_2010'), +('M99.49', 'Connective tissue stenosis of neural canal, abdomen and other', 'ICD10_2010'), +('M99.5', 'Intervertebral disc stenosis of neural canal , pelvic region', 'ICD10_2010'), +('M99.50', 'Intervertebral disc stenosis of neural canal , pelvic region, head region', 'ICD10_2010'), +('M99.51', 'Intervertebral disc stenosis of neural canal , pelvic region, cervical region', 'ICD10_2010'), +('M99.52', 'Intervertebral disc stenosis of neural canal , pelvic region , thoracic region', 'ICD10_2010'), +('M99.53', 'Intervertebral disc stenosis of neural canal , pelvic region , lumbar region', 'ICD10_2010'), +('M99.54', 'Intervertebral disc stenosis of neural canal , pelvic region , sacral region', 'ICD10_2010'), +('M99.55', 'Intervertebral disc stenosis of neural canal , pelvic region , pelvic region', 'ICD10_2010'), +('M99.56', 'Intervertebral disc stenosis of neural canal , pelvic region , lower extremity', 'ICD10_2010'), +('M99.57', 'Intervertebral disc stenosis of neural canal , pelvic region, upper extremity', 'ICD10_2010'), +('M99.58', 'Intervertebral disc stenosis of neural canal , pelvic region, rib cage', 'ICD10_2010'), +('M99.59', 'Intervertebral disc stenosis of neural canal , pelvic region, abdomen and other', 'ICD10_2010'), +('M99.6', 'Osseous and subluxation stenosis of intervertebral foramina', 'ICD10_2010'), +('M99.60', 'Osseous and subluxation stenosis of intervertebral foramina, head region', 'ICD10_2010'), +('M99.61', 'Osseous and subluxation stenosis of intervertebral foramina, cervical region', 'ICD10_2010'), +('M99.62', 'Osseous and subluxation stenosis of intervertebral foramina , thoracic region', 'ICD10_2010'), +('M99.63', 'Osseous and subluxation stenosis of intervertebral foramina , lumbar region', 'ICD10_2010'), +('M99.64', 'Osseous and subluxation stenosis of intervertebral foramina , sacral region', 'ICD10_2010'), +('M99.65', 'Osseous and subluxation stenosis of intervertebral foramina , pelvic region', 'ICD10_2010'), +('M99.66', 'Osseous and subluxation stenosis of intervertebral foramina , lower extremity', 'ICD10_2010'), +('M99.67', 'Osseous and subluxation stenosis of intervertebral foramina, upper extremity', 'ICD10_2010'), +('M99.68', 'Osseous and subluxation stenosis of intervertebral foramina, rib cage', 'ICD10_2010'), +('M99.69', 'Osseous and subluxation stenosis of intervertebral foramina, abdomen and other', 'ICD10_2010'), +('M99.7', 'Connective tis and disc stenosis of intervertebral foramina', 'ICD10_2010'), +('M99.70', 'Connective tis and disc stenosis of intervertebral foramina, head region', 'ICD10_2010'), +('M99.71', 'Connective tis and disc stenosis of intervertebral foramina, cervical region', 'ICD10_2010'), +('M99.72', 'Connective tis and disc stenosis of intervertebral foramina , thoracic region', 'ICD10_2010'), +('M99.73', 'Connective tis and disc stenosis of intervertebral foramina , lumbar region', 'ICD10_2010'), +('M99.74', 'Connective tis and disc stenosis of intervertebral foramina , sacral region', 'ICD10_2010'), +('M99.75', 'Connective tis and disc stenosis of intervertebral foramina , pelvic region', 'ICD10_2010'), +('M99.76', 'Connective tis and disc stenosis of intervertebral foramina , lower extremity', 'ICD10_2010'), +('M99.77', 'Connective tis and disc stenosis of intervertebral foramina, upper extremity', 'ICD10_2010'), +('M99.78', 'Connective tis and disc stenosis of intervertebral foramina, rib cage', 'ICD10_2010'), +('M99.79', 'Connective tis and disc stenosis of intervertebral foramina, abdomen and other', 'ICD10_2010'), +('M99.8', 'Other biomechanical lesions', 'ICD10_2010'), +('M99.80', 'Other biomechanical lesions, head region', 'ICD10_2010'), +('M99.81', 'Other biomechanical lesions, cervical region', 'ICD10_2010'), +('M99.82', 'Other biomechanical lesions, thoracic region', 'ICD10_2010'), +('M99.83', 'Other biomechanical lesions. lumbar region', 'ICD10_2010'), +('M99.84', 'Other biomechanical lesions, sacral region', 'ICD10_2010'), +('M99.85', 'Other biomechanical lesions, pelvic region', 'ICD10_2010'), +('M99.86', 'Other biomechanical lesions, lower extremity', 'ICD10_2010'), +('M99.87', 'Other biomechanical lesions, upper extremity', 'ICD10_2010'), +('M99.88', 'Other biomechanical lesions, rib region', 'ICD10_2010'), +('M99.89', 'Other biomechanical lesions, abdomen region', 'ICD10_2010'), +('M99.9', 'Biomechanical lesion, unspecified', 'ICD10_2010'), +('M99.90', 'Biomechanical lesion, unspecified, head region', 'ICD10_2010'), +('M99.91', 'Biomechanical lesion, unspecified, cervical region', 'ICD10_2010'), +('M99.92', 'Biomechanical lesion, unspecified, thoracic region', 'ICD10_2010'), +('M99.93', 'Biomechanical lesion, unspecified, lumbar region', 'ICD10_2010'), +('M99.94', 'Biomechanical lesion, unspecified, sacral region', 'ICD10_2010'), +('M99.95', 'Biomechanical lesion, unspecified, pelvic region', 'ICD10_2010'), +('M99.96', 'Biomechanical lesion, unspecified, lower extremity', 'ICD10_2010'), +('M99.97', 'Biomechanical lesion, unspecified, upper extremity', 'ICD10_2010'), +('M99.98', 'Biomechanical lesion, unspecified, rib region', 'ICD10_2010'), +('M99.99', 'Biomechanical lesion, unspecified, abdomen region', 'ICD10_2010'), +('N00', 'Acute nephritic syndrome', 'ICD10_2010'), +('N00.0', 'Acute nephritic syndrome, minor glomerular abnormality', 'ICD10_2010'), +('N00.1', 'Acute nephritic syndrome, focal and segmental glomerular lesions', 'ICD10_2010'), +('N00.2', 'Acute nephritic syndrome, diffuse membranous glomerulonephritis', 'ICD10_2010'), +('N00.3', 'Acute nephritic syndrome, diffuse mesangial proliferative glomerulonephritis', 'ICD10_2010'), +('N00.4', 'Acute nephritic syndrome, diffuse endocapillary proliferative glomerulonephritis', 'ICD10_2010'), +('N00.5', 'Acute nephritic syndrome, diffuse mesangiocapillary glomerulonephritis', 'ICD10_2010'), +('N00.6', 'Acute nephritic syndrome, dense deposit disease', 'ICD10_2010'), +('N00.7', 'Acute nephritic syndrome, diffuse crescentic glomerulonephritis', 'ICD10_2010'), +('N00.8', 'Acute nephritic syndrome, other', 'ICD10_2010'), +('N00.9', 'Acute nephritic syndrome, unspecified', 'ICD10_2010'), +('N01', 'Rapidly progressive nephritic syndrome', 'ICD10_2010'), +('N01.0', 'Rapidly progressive nephritic syndrome, minor glomerular abnormality', 'ICD10_2010'), +('N01.1', 'Rapidly progressive nephritic syndrome, focal and segmental glomerular lesions', 'ICD10_2010'), +('N01.2', 'Rapidly progressive nephritic syndrome, diffuse membranous glomerulonephritis', 'ICD10_2010'), +('N01.3', 'Rapidly progressive nephritic syndrome, diffuse mesangial proliferative glomerulonephritis', 'ICD10_2010'), +('N01.4', 'Rapidly progressive nephritic syndrome, diffuse endocapillary proliferative glomerulonephritis', 'ICD10_2010'), +('N01.5', 'Rapidly progressive nephritic syndrome, diffuse mesangiocapillary glomerulonephritis', 'ICD10_2010'), +('N01.6', 'Rapidly progressive nephritic syndrome, dense deposit disease', 'ICD10_2010'), +('N01.7', 'Rapidly progressive nephritic syndrome, diffuse crescentic glomerulonephritis', 'ICD10_2010'), +('N01.8', 'Rapidly progressive nephritic syndrome, other', 'ICD10_2010'), +('N01.9', 'Rapidly progressive nephritic syndrome, unspecified', 'ICD10_2010'), +('N02', 'Recurrent and persistent haematuria', 'ICD10_2010'), +('N02.0', 'Recurrent and persistent haematuria, minor glomerular abnormality', 'ICD10_2010'), +('N02.1', 'Recurrent and persistent haematuria, focal and segmental glomerular lesions', 'ICD10_2010'), +('N02.2', 'Recurrent and persistent haematuria, diffuse membranous glomerulonephritis', 'ICD10_2010'), +('N02.3', 'Recurrent and persistent haematuria, diffuse mesangial proliferative glomerulonephritis', 'ICD10_2010'), +('N02.4', 'Recurrent and persistent haematuria, diffuse endocapillary proliferative glomerulonephritis', 'ICD10_2010'), +('N02.5', 'Recurrent and persistent haematuria, diffuse mesangiocapillary glomerulonephritis', 'ICD10_2010'), +('N02.6', 'Recurrent and persistent haematuria, dense deposit disease', 'ICD10_2010'), +('N02.7', 'Recurrent and persistent haematuria, diffuse crescentic glomerulonephritis', 'ICD10_2010'), +('N02.8', 'Recurrent and persistent haematuria, other', 'ICD10_2010'), +('N02.9', 'Recurrent and persistent haematuria, unspecified', 'ICD10_2010'), +('N03', 'Chronic nephritic syndrome', 'ICD10_2010'), +('N03.0', 'Chronic nephritic syndrome, minor glomerular abnormality', 'ICD10_2010'), +('N03.1', 'Chronic nephritic syndrome, focal and segmental glomerular lesions', 'ICD10_2010'), +('N03.2', 'Chronic nephritic syndrome, diffuse membranous glomerulonephritis', 'ICD10_2010'), +('N03.3', 'Chronic nephritic syndrome, diffuse mesangial proliferative glomerulonephritis', 'ICD10_2010'), +('N03.4', 'Chronic nephritic syndrome, diffuse endocapillary proliferative glomerulonephritis', 'ICD10_2010'), +('N03.5', 'Chronic nephritic syndrome, diffuse mesangiocapillary glomerulonephritis', 'ICD10_2010'), +('N03.6', 'Chronic nephritic syndrome, dense deposit disease', 'ICD10_2010'), +('N03.7', 'Chronic nephritic syndrome, diffuse crescentic glomerulonephritis', 'ICD10_2010'), +('N03.8', 'Chronic nephritic syndrome, other', 'ICD10_2010'), +('N03.9', 'Chronic nephritic syndrome, unspecified', 'ICD10_2010'), +('N04', 'Nephrotic syndrome', 'ICD10_2010'), +('N04.0', 'Nephrotic syndrome, minor glomerular abnormality', 'ICD10_2010'), +('N04.1', 'Nephrotic syndrome, focal and segmental glomerular lesions', 'ICD10_2010'), +('N04.2', 'Nephrotic syndrome, diffuse membranous glomerulonephritis', 'ICD10_2010'), +('N04.3', 'Nephrotic syndrome, diffuse mesangial proliferative glomerulonephritis', 'ICD10_2010'), +('N04.4', 'Nephrotic syndrome, diffuse endocapillary proliferative glomerulonephritis', 'ICD10_2010'), +('N04.5', 'Nephrotic syndrome, diffuse mesangiocapillary glomerulonephritis', 'ICD10_2010'), +('N04.6', 'Nephrotic syndrome, dense deposit disease', 'ICD10_2010'), +('N04.7', 'Nepthrotic syndrome, diffuse crescentic glomerulonephritis', 'ICD10_2010'), +('N04.8', 'Nephtrotic syndrome, other', 'ICD10_2010'), +('N04.9', 'Nepthrotic syndrome, unspecified', 'ICD10_2010'), +('N05', 'Unspecified nephritic syndrome', 'ICD10_2010'), +('N05.0', 'Unspecified nephritic syndrome, minor glomerular abnormality', 'ICD10_2010'), +('N05.1', 'Unspecified nephritic syndrome, focal and segmental glomerular lesions', 'ICD10_2010'), +('N05.2', 'Unspecified nephritic syndrome, diffuse membranous glomerulonephritis', 'ICD10_2010'), +('N05.3', 'Unspecified nephritic syndrome, diffuse mesangial proliferative glomerulonephritis', 'ICD10_2010'), +('N05.4', 'Unspecified nephritic syndrome, diffuse endocapillary proliferative glomerulonephritis', 'ICD10_2010'), +('N05.5', 'Unspecified nephritic syndrome, diffuse mesangiocapillary glomeru', 'ICD10_2010'), +('N05.6', 'Unspecified nephritic syndrome, dense deposit disease', 'ICD10_2010'), +('N05.7', 'Unspecified nephritic syndrome, diffuse crescentic glomerulonephritis', 'ICD10_2010'), +('N05.8', 'Unspecified nephritic syndrome, other', 'ICD10_2010'), +('N05.9', 'Unspecified nephritic syndrome, unspecified', 'ICD10_2010'), +('N06', 'Isolated proteinuria with specified morphological lesion', 'ICD10_2010'), +('N06.0', 'Isolated proteinuria with specified morphological lesion, minor glomerular abnormality', 'ICD10_2010'), +('N06.1', 'Isolated proteinuria with specified morphological lesion, focal and segmental glomerular lesions', 'ICD10_2010'), +('N06.2', 'Isolated proteinuria with specified morphological lesion, diffuse membranous glomerulonephritis', 'ICD10_2010'), +('N06.3', 'Isolated proteinuria with specified morphological lesion, diffuse mesangial proliferative glomerulonephritis', 'ICD10_2010'), +('N06.4', 'Isolated proteinuria with specified morphological lesion, diffuse endocapillary proliferative glomerulonephritis', 'ICD10_2010'), +('N06.5', 'Isolated proteinuria with specified morphological lesion, diffuse mesangiocapillary glomerulonephritis', 'ICD10_2010'), +('N06.6', 'Isolated proteinuria with specified morphological lesion, dense deposit disease', 'ICD10_2010'), +('N06.7', 'Isolated proteinuria with specified morphological lesion, diffuse crescentic glomerulonephritis', 'ICD10_2010'), +('N06.8', 'Isolated proteinuria with specified morphological lesion, other', 'ICD10_2010'), +('N06.9', 'Isolated proteinuria with specified morphological lesion, unspecified', 'ICD10_2010'), +('N07', 'Hereditary nephropathy, not elsewhere classified', 'ICD10_2010'), +('N07.0', 'Hereditary nephropathy, not elsewhere classified, minor glomerular abnormality', 'ICD10_2010'), +('N07.1', 'Hereditary nephropathy, not elsewhere classified, focal and segmental glomerular lesions', 'ICD10_2010'), +('N07.2', 'Hereditary nephropathy, not elsewhere classified, diffuse membranous glomerulonephritis', 'ICD10_2010'), +('N07.3', 'Hereditary nephropathy, not elsewhere classified, diffuse mesangial proliferative glomerulonephritis', 'ICD10_2010'), +('N07.4', 'Hereditary nephropathy, not elsewhere classified, diffuse endocapillary proliferative glomerulonephritis', 'ICD10_2010'), +('N07.5', 'Hereditary nephropathy, not elsewhere classified, diffuse mesangiocapillary glomerulonephritis', 'ICD10_2010'), +('N07.6', 'Hereditary nephropathy, not elsewhere classified, dense deposit disease', 'ICD10_2010'), +('N07.7', 'Hereditary nephropathy, not elsewhere classified, diffuse crescentic glomerulonephritis', 'ICD10_2010'), +('N07.8', 'Hereditary nephropathy, not elsewhere classified, other', 'ICD10_2010'), +('N07.9', 'Hereditary nephropathy, not elsewhere classified, unspecified', 'ICD10_2010'), +('N08', 'Glomerular disorders in diseases classified elsewhere', 'ICD10_2010'), +('N08.0', 'Glomerular disorder in infectious and parasitic diseases classified elsewhere', 'ICD10_2010'), +('N08.1', 'Glomerular disorders in neoplastic diseases', 'ICD10_2010'), +('N08.2', 'Glomerular disorders in blood diseases and disorders involving the immune mechanism', 'ICD10_2010'), +('N08.3', 'Glomerular disorders in diabetes mellitus', 'ICD10_2010'), +('N08.4', 'Glomerular disorders in other endocrine, nutritional and metabolic diseases', 'ICD10_2010'), +('N08.5', 'Glomerular disorders in systemic connective tissue disorders', 'ICD10_2010'), +('N08.8', 'Glomerular disorders in other diseases classified elsewhere', 'ICD10_2010'), +('N10', 'Acute tubulo-interstitial nephritis', 'ICD10_2010'), +('N11', 'Chronic tubulo-interstitial nephritis', 'ICD10_2010'), +('N11.0', 'Nonobstructive reflux-associated chronic pyelonephritis', 'ICD10_2010'), +('N11.1', 'Chronic obstructive pyelonephritis', 'ICD10_2010'), +('N11.8', 'Other chronic tubulo-interstitial nephritis', 'ICD10_2010'), +('N11.9', 'Chronic tubulo-interstitial nephritis, unspecified', 'ICD10_2010'), +('N12', 'Tubulo-interstitial nephritis not specified as acute or chronic', 'ICD10_2010'), +('N13', 'Obstructive and reflux uropathy', 'ICD10_2010'), +('N13.0', 'Hydronephrosis with ureteropelvic junction obstruction', 'ICD10_2010'), +('N13.1', 'Hydronephrosis with ureteral stricture not elsewhere classified', 'ICD10_2010'), +('N13.2', 'Hydronephrosis with renal and ureteral calculous obstruction', 'ICD10_2010'), +('N13.3', 'Other and unspecified hydronephrosis', 'ICD10_2010'), +('N13.4', 'Hydroureter', 'ICD10_2010'), +('N13.5', 'Kinking and stricture of ureter without hydronephrosis', 'ICD10_2010'), +('N13.6', 'Pyonephrosis', 'ICD10_2010'), +('N13.7', 'Vesicoureteral-reflux-associated uropathy', 'ICD10_2010'), +('N13.8', 'Other obstructive and reflux uropathy', 'ICD10_2010'), +('N13.9', 'Obstructive and reflux uropathy, unspecified', 'ICD10_2010'), +('N14', 'Drug- and heavy-metal-induced tubulo-interstitial and tubular conditions', 'ICD10_2010'), +('N14.0', 'Analgesic nephropathy', 'ICD10_2010'), +('N14.1', 'Nephropathy induced by other drugs, medicaments and biological substances', 'ICD10_2010'), +('N14.2', 'Neuropathy induced by unspecified drug, medicament or biological substance', 'ICD10_2010'), +('N14.3', 'Nephropathy induced by heavy metals', 'ICD10_2010'), +('N14.4', 'Toxic nephropathy, not elsewhere classified', 'ICD10_2010'), +('N15', 'Other renal tubulo-interstitial diseases', 'ICD10_2010'), +('N15.0', 'Balkan nephropathy', 'ICD10_2010'), +('N15.1', 'Renal and perinephric abscess', 'ICD10_2010'), +('N15.8', 'Other specified renal tubulo-interstitial diseases', 'ICD10_2010'), +('N15.9', 'Renal tubulo-interstitial disease, unspecified', 'ICD10_2010'), +('N16', 'Renal tubulo-interstitial disorders in diseases classified elsewhere', 'ICD10_2010'), +('N16.0', 'Renal tubulo-interstital disorders in infectious and parasitic diseases classified elsewhere', 'ICD10_2010'), +('N16.1', 'Renal tubulo-interstitial disorders in neoplastic diseases', 'ICD10_2010'), +('N16.2', 'Renal tubulo-interstitial disorders in blood diseases and disorders involving the immune mechanism', 'ICD10_2010'), +('N16.3', 'Renal tubulo-interstitial disorders in metabolic diseases', 'ICD10_2010'), +('N16.4', 'Renal tubulo-interstitial disorders systemic connective tissue disorders', 'ICD10_2010'), +('N16.5', 'Renal tubulo-interstitial disorders in transplant rejection', 'ICD10_2010'), +('N16.8', 'Renal tubulo-interstitial disorders in other diseases classified elsewhere', 'ICD10_2010'), +('N17', 'Acute renal failure', 'ICD10_2010'), +('N17.0', 'Acute renal failure with tubular necrosis', 'ICD10_2010'), +('N17.1', 'Acute renal failure with acute cortical necrosis', 'ICD10_2010'), +('N17.2', 'Acute renal failure with medullary necrosis', 'ICD10_2010'), +('N17.8', 'Other acute renal failure', 'ICD10_2010'), +('N17.9', 'Acute renal failure, unspecified', 'ICD10_2010'), +('N18', 'Chronic kidney disease', 'ICD10_2010'), +('N18.0', 'End-stage renal disease', 'ICD10_2010'), +('N18.1', 'Chronic kidney disease, stage 1', 'ICD10_2010'), +('N18.2', 'Chronic kidney disease, stage 2', 'ICD10_2010'), +('N18.3', 'Chronic kidney disease, stage 3', 'ICD10_2010'), +('N18.4', 'Chronic kidney disease, stage 4', 'ICD10_2010'), +('N18.5', 'Chronic kidney disease, stage 5', 'ICD10_2010'), +('N18.8', 'Other chronic renal failure', 'ICD10_2010'), +('N18.9', 'Chronic renal failure, unspecified', 'ICD10_2010'), +('N19', 'Unspecified renal failure', 'ICD10_2010'), +('N20', 'Calculus of kidney and ureter', 'ICD10_2010'), +('N20.0', 'Calculus of kidney', 'ICD10_2010'), +('N20.1', 'Calculus of ureter', 'ICD10_2010'), +('N20.2', 'Calculus of kidney with calculus of ureter', 'ICD10_2010'), +('N20.9', 'Urinary calculus, unspecified', 'ICD10_2010'), +('N21', 'Calculus of lower urinary tract', 'ICD10_2010'), +('N21.0', 'Calculus in bladder', 'ICD10_2010'), +('N21.1', 'Calculus in urethra', 'ICD10_2010'), +('N21.8', 'Other lower urinary tract calculus', 'ICD10_2010'), +('N21.9', 'Calculus of lower urinary tract, unspecified', 'ICD10_2010'), +('N22', 'Calculus of urinary tract in diseases classified elsewhere', 'ICD10_2010'), +('N22.0', 'Urinary calculus in schistosomiasis bilharziasis', 'ICD10_2010'), +('N22.8', 'Calculus of urinary tract in other diseases classified elsewhere', 'ICD10_2010'), +('N23', 'Unspecified renal colic', 'ICD10_2010'), +('N25', 'Disorders resulting from impaired renal tubular function', 'ICD10_2010'), +('N25.0', 'Renal osteodystrophy', 'ICD10_2010'), +('N25.1', 'Nephrogenic diabetes insipidus', 'ICD10_2010'), +('N25.8', 'Other disorders resulting from impaired renal tubular function', 'ICD10_2010'), +('N25.9', 'Disorder resulting from impaired renal tubular function, unspecified', 'ICD10_2010'), +('N26', 'Unspecified contracted kidney', 'ICD10_2010'), +('N27', 'Small kidney of unknown cause', 'ICD10_2010'), +('N27.0', 'Small kidney, unilateral', 'ICD10_2010'), +('N27.1', 'Small kidney, bilateral', 'ICD10_2010'), +('N27.9', 'Small kidney, unspecified', 'ICD10_2010'), +('N28', 'Other disorders of kidney and ureter, not elsewhere classified', 'ICD10_2010'), +('N28.0', 'Ischaemia and infarction of kidney', 'ICD10_2010'), +('N28.1', 'Cyst of kidney, acquired', 'ICD10_2010'), +('N28.8', 'Other specified disorders of kidney and ureter', 'ICD10_2010'), +('N28.9', 'Disorder of kidney and ureter, unspecified', 'ICD10_2010'), +('N29', 'Other disorders of kidney and ureter in diseases classified elsewhere', 'ICD10_2010'), +('N29.0', 'Late syphilis of kidney', 'ICD10_2010'), +('N29.1', 'Other disorders of kidney and ureter in infectious and parasitic diseases classified elsewhere', 'ICD10_2010'), +('N29.8', 'Other disorders of kidney and ureter in other diseases classified elsewhere', 'ICD10_2010'), +('N30', 'Cystitis', 'ICD10_2010'), +('N30.0', 'Acute cystitis', 'ICD10_2010'), +('N30.1', 'Interstitial cystitis chronic', 'ICD10_2010'), +('N30.2', 'Other chronic cystitis', 'ICD10_2010'), +('N30.3', 'Trigonitis', 'ICD10_2010'), +('N30.4', 'Irradiation cystitis', 'ICD10_2010'), +('N30.8', 'Other cystitis', 'ICD10_2010'), +('N30.9', 'Cystitis, unspecified', 'ICD10_2010'), +('N31', 'Neuromuscular dysfunction of bladder, not elsewhere classified', 'ICD10_2010'), +('N31.0', 'Uninhibited neuropathic bladder, not elsewhere classified', 'ICD10_2010'), +('N31.1', 'Reflex neuropathic bladder, not elsewhere classified', 'ICD10_2010'), +('N31.2', 'Flaccid neuropathic bladder, not elsewhere classified', 'ICD10_2010'), +('N31.8', 'Other neuromuscular dysfunction of bladder', 'ICD10_2010'), +('N31.9', 'Neuromuscular dysfunction of bladder, unspecified', 'ICD10_2010'), +('N32', 'Other disorders of bladder', 'ICD10_2010'), +('N32.0', 'Bladder-neck obstruction', 'ICD10_2010'), +('N32.1', 'Vesicointestinal fistula', 'ICD10_2010'), +('N32.2', 'Vesical fistula, not elsewhere classified', 'ICD10_2010'), +('N32.3', 'Diverticulum of bladder', 'ICD10_2010'), +('N32.4', 'Rupture of bladder, nontraumatic', 'ICD10_2010'), +('N32.8', 'Other specified disorders of bladder', 'ICD10_2010'), +('N32.9', 'Bladder disorder, unspecified', 'ICD10_2010'), +('N33', 'Bladder disorders in diseases classified elsewhere', 'ICD10_2010'), +('N33.0', 'Tuberculous cystitis', 'ICD10_2010'), +('N33.8', 'Bladder disorders in other diseases classified elsewhere', 'ICD10_2010'), +('N34', 'Urethritis and urethral syndrome', 'ICD10_2010'), +('N34.0', 'Urethral abscess', 'ICD10_2010'), +('N34.1', 'Nonspecific urethritis', 'ICD10_2010'), +('N34.2', 'Other urethritis', 'ICD10_2010'), +('N34.3', 'Urethral syndrome, unspecified', 'ICD10_2010'), +('N35', 'Urethral stricture', 'ICD10_2010'), +('N35.0', 'Post-traumatic urethral stricture', 'ICD10_2010'), +('N35.1', 'Postinfective urethral stricture, not elsewhere classified', 'ICD10_2010'), +('N35.8', 'Other urethral stricture', 'ICD10_2010'), +('N35.9', 'Urethral stricture, unspecified', 'ICD10_2010'), +('N36', 'Other disorders of urethra', 'ICD10_2010'), +('N36.0', 'Urethral fistula', 'ICD10_2010'), +('N36.1', 'Urethral diverticulum', 'ICD10_2010'), +('N36.2', 'Urethral caruncle', 'ICD10_2010'), +('N36.3', 'Prolapsed urethral mucosa', 'ICD10_2010'), +('N36.8', 'Other specified disorders of urethra', 'ICD10_2010'), +('N36.9', 'Urethral disorder, unspecified', 'ICD10_2010'), +('N37', 'Urethral disorders in diseases classified elsewhere', 'ICD10_2010'), +('N37.0', 'Urethritis in diseases classified elsewhere', 'ICD10_2010'), +('N37.8', 'Other urethral disorders in diseases classified elsewhere', 'ICD10_2010'), +('N39', 'Other disorders of urinary system', 'ICD10_2010'), +('N39.0', 'Urinary tract infection, site not specified', 'ICD10_2010'), +('N39.1', 'Persistent proteinuria, unspecified', 'ICD10_2010'), +('N39.2', 'Orthostatic proteinuria, unspecified', 'ICD10_2010'), +('N39.3', 'Stress incontinence', 'ICD10_2010'), +('N39.4', 'Other specified urinary incontinence', 'ICD10_2010'), +('N39.8', 'Other specified disorders of urinary system', 'ICD10_2010'), +('N39.9', 'Disorder of urinary system, unspecified', 'ICD10_2010'), +('N40', 'Hyperplasia of prostate', 'ICD10_2010'), +('N41', 'Inflammatory diseases of prostate', 'ICD10_2010'), +('N41.0', 'Acute prostatitis', 'ICD10_2010'), +('N41.1', 'Chronic prostatitis', 'ICD10_2010'), +('N41.2', 'Abscess of prostate', 'ICD10_2010'), +('N41.3', 'Prostatocystitis', 'ICD10_2010'), +('N41.8', 'Other inflammatory diseases of prostate', 'ICD10_2010'), +('N41.9', 'Inflammatory disease of prostate, unspecified', 'ICD10_2010'), +('N42', 'Other disorders of prostate', 'ICD10_2010'), +('N42.0', 'Calculus of prostate', 'ICD10_2010'), +('N42.1', 'Congestion and haemorrhage of prostate', 'ICD10_2010'), +('N42.2', 'Atrophy of prostate', 'ICD10_2010'), +('N42.3', 'Dysplasia of prostate', 'ICD10_2010'), +('N42.8', 'Other specified disorders of prostate', 'ICD10_2010'), +('N42.9', 'Disorder of prostate, unspecified', 'ICD10_2010'), +('N43', 'Hydrocele and spermatocele', 'ICD10_2010'), +('N43.0', 'Encysted hydrocele', 'ICD10_2010'), +('N43.1', 'Infected hydrocele', 'ICD10_2010'), +('N43.2', 'Other hydrocele', 'ICD10_2010'), +('N43.3', 'Hydrocele, unspecified', 'ICD10_2010'), +('N43.4', 'Spermatocele', 'ICD10_2010'), +('N44', 'Torsion of testis', 'ICD10_2010'), +('N45', 'Orchitis and epididymitis', 'ICD10_2010'), +('N45.0', 'Orchitis, epididymitis and epididymo-orchitis with abscess', 'ICD10_2010'), +('N45.9', 'Orchitis epididymitis and epididymo-orchitis without abscess', 'ICD10_2010'), +('N46', 'Male infertility', 'ICD10_2010'), +('N47', 'Redundant prepuce, phimosis and paraphimosis', 'ICD10_2010'), +('N48', 'Other disorders of penis', 'ICD10_2010'), +('N48.0', 'Leukoplakia of penis', 'ICD10_2010'), +('N48.1', 'Balanoposthitis', 'ICD10_2010'), +('N48.2', 'Other inflammatory disorders of penis', 'ICD10_2010'), +('N48.3', 'Priapism', 'ICD10_2010'), +('N48.4', 'Impotence of organic origin', 'ICD10_2010'), +('N48.5', 'Ulcer of penis', 'ICD10_2010'), +('N48.6', 'Induratio penis plastica', 'ICD10_2010'), +('N48.8', 'Other specified disorders of penis', 'ICD10_2010'), +('N48.9', 'Disorder of penis, unspecified', 'ICD10_2010'), +('N49', 'Inflammatory disorders of male genital organs, not elsewhere classified', 'ICD10_2010'), +('N49.0', 'Inflammatory disorders of seminal vesicle', 'ICD10_2010'), +('N49.1', 'Inflammatory disorders spermatic cord, tunica vaginalis and vas deferens', 'ICD10_2010'), +('N49.2', 'Inflammatory disorders of scrotum', 'ICD10_2010'), +('N49.8', 'Inflammatory disorders of other specified male genital organs', 'ICD10_2010'), +('N49.9', 'Inflammatory disorder of unspecified male genital organ', 'ICD10_2010'), +('N50', 'Other disorders of male genital organs', 'ICD10_2010'), +('N50.0', 'Atrophy of testis', 'ICD10_2010'), +('N50.1', 'Vascular disorders of male genital organs', 'ICD10_2010'), +('N50.8', 'Other specified disorders of male genital organs', 'ICD10_2010'), +('N50.9', 'Disorder of male genital organs, unspecified', 'ICD10_2010'), +('N51', 'Disorders of male genital organs in diseases classified elsewhere', 'ICD10_2010'), +('N51.0', 'Disorders of prostate in diseases classified elsewhere', 'ICD10_2010'), +('N51.1', 'Disorders of testis and epididymis in diseases classified elsewhere', 'ICD10_2010'), +('N51.2', 'Balanitis in diseases classified elsewhere', 'ICD10_2010'), +('N51.8', 'Other disorders of male genital organs in diseases classified elsewhere', 'ICD10_2010'), +('N60', 'Benign mammary dysplasia', 'ICD10_2010'), +('N60.0', 'Solitary cyst of breast', 'ICD10_2010'), +('N60.1', 'Diffuse cystic mastopathy', 'ICD10_2010'), +('N60.2', 'Fibroadenosis of breast', 'ICD10_2010'), +('N60.3', 'Fibrosclerosis of breast', 'ICD10_2010'), +('N60.4', 'Mammary duct ectasia', 'ICD10_2010'), +('N60.8', 'Other benign mammary dysplasias', 'ICD10_2010'), +('N60.9', 'Benign mammary dysplasia, unspecified', 'ICD10_2010'), +('N61', 'Inflammatory disorders of breast', 'ICD10_2010'), +('N62', 'Hypertrophy of breast', 'ICD10_2010'), +('N63', 'Unspecified lump in breast', 'ICD10_2010'), +('N64', 'Other disorders of breast', 'ICD10_2010'), +('N64.0', 'Fissure and fistula of nipple', 'ICD10_2010'), +('N64.1', 'Fat necrosis of breast', 'ICD10_2010'), +('N64.2', 'Atrophy of breast', 'ICD10_2010'), +('N64.3', 'Galactorrhoea not associated with childbirth', 'ICD10_2010'), +('N64.4', 'Mastodynia', 'ICD10_2010'), +('N64.5', 'Other signs and symptoms in breast', 'ICD10_2010'), +('N64.8', 'Other specified disorders of breast', 'ICD10_2010'), +('N64.9', 'Disorder of breast, unspecified', 'ICD10_2010'), +('N70', 'Salpingitis and oophoritis', 'ICD10_2010'), +('N70.0', 'Acute salpingitis and oophoritis', 'ICD10_2010'), +('N70.1', 'Chronic salpingitis and oophoritis', 'ICD10_2010'), +('N70.9', 'Salpingitis and oophoritis, unspecified', 'ICD10_2010'), +('N71', 'Inflammatory disease of uterus, except cervix', 'ICD10_2010'), +('N71.0', 'Acute inflammatory disease of uterus', 'ICD10_2010'), +('N71.1', 'Chronic inflammatory disease of uterus', 'ICD10_2010'), +('N71.9', 'Inflammatory disease of uterus, unspecified', 'ICD10_2010'), +('N72', 'Inflammatory disease of cervix uteri', 'ICD10_2010'), +('N73', 'Other female pelvic inflammatory diseases', 'ICD10_2010'), +('N73.0', 'Acute parametritis and pelvic cellulitis', 'ICD10_2010'), +('N73.1', 'Chronic parametritis and pelvic cellulitis', 'ICD10_2010'), +('N73.2', 'Unspecified parametritis and pelvic cellulitis', 'ICD10_2010'), +('N73.3', 'Female acute pelvic peritonitis', 'ICD10_2010'), +('N73.4', 'Female chronic pelvic peritonitis', 'ICD10_2010'), +('N73.5', 'Female pelvic peritonitis, unspecified', 'ICD10_2010'), +('N73.6', 'Female pelvic peritoneal adhesions', 'ICD10_2010'), +('N73.8', 'Other specified female pelvic inflammatory diseases', 'ICD10_2010'), +('N73.9', 'Female pelvic inflammatory disease, unspecified', 'ICD10_2010'), +('N74', 'Female pelvic inflammatory disorders in diseases classified elsewhere', 'ICD10_2010'), +('N74.0', 'Tuberculous infection of cervix uteri', 'ICD10_2010'), +('N74.1', 'Female tuberculous pelvic inflammatory disease', 'ICD10_2010'), +('N74.2', 'Female syphilitic pelvic inflammatory disease', 'ICD10_2010'), +('N74.3', 'Female gonococcal pelvic inflammatory disease', 'ICD10_2010'), +('N74.4', 'Female chlamydial pelvic inflammatory disease', 'ICD10_2010'), +('N74.8', 'Female pelvic inflammatory disorders in other diseases classified elsewhere', 'ICD10_2010'), +('N75', 'Diseases of Bartholin gland', 'ICD10_2010'), +('N75.0', 'Cyst of Bartholin\'s gland', 'ICD10_2010'), +('N75.1', 'Abscess of Bartholin\'s gland', 'ICD10_2010'), +('N75.8', 'Other diseases of Bartholin\'s gland', 'ICD10_2010'), +('N75.9', 'Disease of Bartholin\'s gland, unspecified', 'ICD10_2010'), +('N76', 'Other inflammation of vagina and vulva', 'ICD10_2010'), +('N76.0', 'Acute vaginitis', 'ICD10_2010'), +('N76.1', 'Subacute and chronic vaginitis', 'ICD10_2010'), +('N76.2', 'Acute vulvitis', 'ICD10_2010'), +('N76.3', 'Subacute and chronic vulvitis', 'ICD10_2010'), +('N76.4', 'Abscess of vulva', 'ICD10_2010'), +('N76.5', 'Ulceration of vagina', 'ICD10_2010'), +('N76.6', 'Ulceration of vulva', 'ICD10_2010'), +('N76.8', 'Other specified inflammation of vagina and vulva', 'ICD10_2010'), +('N77', 'Vulvovaginal ulceration and inflammation in diseases classified elsewhere', 'ICD10_2010'), +('N77.0', 'Ulceration of vulva in infectious and parasitic diseases classified elsewhere', 'ICD10_2010'), +('N77.1', 'Vaginitis vulvitis and vulvovaginitis in infectious and parasitic diseases classified elsewhere', 'ICD10_2010'), +('N77.8', 'Vulvovaginal ulceration and inflammation in other diseases classified elsewhere', 'ICD10_2010'), +('N80', 'Endometriosis', 'ICD10_2010'), +('N80.0', 'Endometriosis of uterus', 'ICD10_2010'), +('N80.1', 'Endometriosis of ovary', 'ICD10_2010'), +('N80.2', 'Endometriosis of fallopian tube', 'ICD10_2010'); +INSERT INTO `icd10` (`ID_ICD10`, `Diagnosa`, `Versi_ICD10`) VALUES +('N80.3', 'Endometriosis of pelvic peritoneum', 'ICD10_2010'), +('N80.4', 'Endometriosis of rectovaginal septum and vagina', 'ICD10_2010'), +('N80.5', 'Endometriosis of intestine', 'ICD10_2010'), +('N80.6', 'Endometriosis in cutaneous scar', 'ICD10_2010'), +('N80.8', 'Other endometriosis', 'ICD10_2010'), +('N80.9', 'Endometriosis, unspecified', 'ICD10_2010'), +('N81', 'Female genital prolapse', 'ICD10_2010'), +('N81.0', 'Female urethrocele', 'ICD10_2010'), +('N81.1', 'Cystocele', 'ICD10_2010'), +('N81.2', 'Incomplete uterovaginal prolapse', 'ICD10_2010'), +('N81.3', 'Complete uterovaginal prolapse', 'ICD10_2010'), +('N81.4', 'Uterovaginal prolapse, unspecified', 'ICD10_2010'), +('N81.5', 'Vaginal enterocele', 'ICD10_2010'), +('N81.6', 'Rectocele', 'ICD10_2010'), +('N81.8', 'Other female genital prolapse', 'ICD10_2010'), +('N81.9', 'Female genital prolapse, unspecified', 'ICD10_2010'), +('N82', 'Fistulae involving female genital tract', 'ICD10_2010'), +('N82.0', 'Vesicovaginal fistula', 'ICD10_2010'), +('N82.1', 'Other female urinary-genital tract fistulae', 'ICD10_2010'), +('N82.2', 'Fistula of vagina to small intestine', 'ICD10_2010'), +('N82.3', 'Fistula of vagina to large intestine', 'ICD10_2010'), +('N82.4', 'Other female intestinal-genital tract fistulae', 'ICD10_2010'), +('N82.5', 'Female genital tract-skin fistulae', 'ICD10_2010'), +('N82.8', 'Other female genital tract fistulae', 'ICD10_2010'), +('N82.9', 'Female genital tract fistula, unspecified', 'ICD10_2010'), +('N83', 'Noninflammatory disorders of ovary, fallopian tube and broad ligament', 'ICD10_2010'), +('N83.0', 'Follicular cyst of ovary', 'ICD10_2010'), +('N83.1', 'Corpus luteum cyst', 'ICD10_2010'), +('N83.2', 'Other and unspecified ovarian cysts', 'ICD10_2010'), +('N83.3', 'Acquired atrophy of ovary and fallopian tube', 'ICD10_2010'), +('N83.4', 'Prolapse and hernia of ovary and fallopian tube', 'ICD10_2010'), +('N83.5', 'Torsion of ovary, ovarian pedicle and fallopian tube', 'ICD10_2010'), +('N83.6', 'Haematosalpinx', 'ICD10_2010'), +('N83.7', 'Haematoma of broad ligament', 'ICD10_2010'), +('N83.8', 'Other noninflamatory disorders of ovary, fallopian tube and broad ligament', 'ICD10_2010'), +('N83.9', 'Noninflammatory disorder of ovary, fallopian tube and broad ligament, unspecified', 'ICD10_2010'), +('N84', 'Polyp of female genital tract', 'ICD10_2010'), +('N84.0', 'Polyp of corpus uteri', 'ICD10_2010'), +('N84.1', 'Polyp of cervix uteri', 'ICD10_2010'), +('N84.2', 'Polyp of vagina', 'ICD10_2010'), +('N84.3', 'Polyp of vulva', 'ICD10_2010'), +('N84.8', 'Polyp of other parts of female genital tract', 'ICD10_2010'), +('N84.9', 'Polyp of female genital tract, unspecified', 'ICD10_2010'), +('N85', 'Other noninflammatory disorders of uterus, except cervix', 'ICD10_2010'), +('N85.0', 'Endometrial glandular hyperplasia', 'ICD10_2010'), +('N85.1', 'Endometrial adenomatous hyperplasia', 'ICD10_2010'), +('N85.2', 'Hypertrophy of uterus', 'ICD10_2010'), +('N85.3', 'Subinvolution of uterus', 'ICD10_2010'), +('N85.4', 'Malposition of uterus', 'ICD10_2010'), +('N85.5', 'Inversion of uterus', 'ICD10_2010'), +('N85.6', 'Intrauterine synechiae', 'ICD10_2010'), +('N85.7', 'Haematometra', 'ICD10_2010'), +('N85.8', 'Other specified noninflammatory disorders of uterus', 'ICD10_2010'), +('N85.9', 'Noninflammatory disorder of uterus, unspecified', 'ICD10_2010'), +('N86', 'Erosion and ectropion of cervix uteri', 'ICD10_2010'), +('N87', 'Dysplasia of cervix uteri', 'ICD10_2010'), +('N87.0', 'Mild cervical dysplasia', 'ICD10_2010'), +('N87.1', 'Moderate cervical dysplasia', 'ICD10_2010'), +('N87.2', 'Severe cervical dysplasia, not elsewhere classified', 'ICD10_2010'), +('N87.9', 'Dysplasia of cervix uteri, unspecified', 'ICD10_2010'), +('N88', 'Other noninflammatory disorders of cervix uteri', 'ICD10_2010'), +('N88.0', 'Leukoplakia of cervix uteri', 'ICD10_2010'), +('N88.1', 'Old laceration of cervix uteri', 'ICD10_2010'), +('N88.2', 'Stricture and stenosis of cervix uteri', 'ICD10_2010'), +('N88.3', 'Incompetence of cervix uteri', 'ICD10_2010'), +('N88.4', 'Hypertrophic elongation of cervix uteri', 'ICD10_2010'), +('N88.8', 'Other specified noninflammatory disorders of cervix uteri', 'ICD10_2010'), +('N88.9', 'Noninflammatory disorder of cervix uteri, unspecified', 'ICD10_2010'), +('N89', 'Other noninflammatory disorders of vagina', 'ICD10_2010'), +('N89.0', 'Mild vaginal dysplasia', 'ICD10_2010'), +('N89.1', 'Moderate vaginal dysplasia', 'ICD10_2010'), +('N89.2', 'Severe vaginal dysplasia, not elsewhere classified', 'ICD10_2010'), +('N89.3', 'Dysplasia of vagina, unspecified', 'ICD10_2010'), +('N89.4', 'Leukoplakia of vagina', 'ICD10_2010'), +('N89.5', 'Stricture and atresia of vagina', 'ICD10_2010'), +('N89.6', 'Tight hymenal ring', 'ICD10_2010'), +('N89.7', 'Haematocolpos', 'ICD10_2010'), +('N89.8', 'Other specified noninflammatory disorders of vagina', 'ICD10_2010'), +('N89.9', 'Noninflammatory disorder of vagina, unspecified', 'ICD10_2010'), +('N90', 'Other noninflammatory disorders of vulva and perineum', 'ICD10_2010'), +('N90.0', 'Mild vulvar dysplasia', 'ICD10_2010'), +('N90.1', 'Moderate vulvar dysplasia', 'ICD10_2010'), +('N90.2', 'Severe vulvar dysplasia, not elsewhere classified', 'ICD10_2010'), +('N90.3', 'Dysplasia of vulva, unspecified', 'ICD10_2010'), +('N90.4', 'Leukoplakia of vulva', 'ICD10_2010'), +('N90.5', 'Atrophy of vulva', 'ICD10_2010'), +('N90.6', 'Hypertrophy of vulva', 'ICD10_2010'), +('N90.7', 'Vulvar cyst', 'ICD10_2010'), +('N90.8', 'Other specified noninflammatory disorders of vulva and perineum', 'ICD10_2010'), +('N90.9', 'Noninflammatory disorder of vulva and perineum, unspecified', 'ICD10_2010'), +('N91', 'Absent, scanty and rare menstruation', 'ICD10_2010'), +('N91.0', 'Primary amenorrhoea', 'ICD10_2010'), +('N91.1', 'Secondary amenorrhoea', 'ICD10_2010'), +('N91.2', 'Amenorrhoea, unspecified', 'ICD10_2010'), +('N91.3', 'Primary oligomenorrhoea', 'ICD10_2010'), +('N91.4', 'Secondary oligomenorrhoea', 'ICD10_2010'), +('N91.5', 'Oligomenorrhoea, unspecified', 'ICD10_2010'), +('N92', 'Excessive, frequent and irregular menstruation', 'ICD10_2010'), +('N92.0', 'Excessive and frequent menstruation with regular cycle', 'ICD10_2010'), +('N92.1', 'Excessive and frequent menstruation with irregular cycle', 'ICD10_2010'), +('N92.2', 'Excessive menstruation at puberty', 'ICD10_2010'), +('N92.3', 'Ovulation bleeding', 'ICD10_2010'), +('N92.4', 'Excessive bleeding in the premenopausal period', 'ICD10_2010'), +('N92.5', 'Other specified irregular menstruation', 'ICD10_2010'), +('N92.6', 'Irregular menstruation, unspecified', 'ICD10_2010'), +('N93', 'Other abnormal uterine and vaginal bleeding', 'ICD10_2010'), +('N93.0', 'Postcoital and contact bleeding', 'ICD10_2010'), +('N93.8', 'Other specified abnormal uterine and vaginal bleeding', 'ICD10_2010'), +('N93.9', 'Abnormal uterine and vaginal bleeding, unspecified', 'ICD10_2010'), +('N94', 'Pain and other conditions associated with female genital organs and menstrual cycle', 'ICD10_2010'), +('N94.0', 'Mittelschmerz', 'ICD10_2010'), +('N94.1', 'Dyspareunia', 'ICD10_2010'), +('N94.2', 'Vaginismus', 'ICD10_2010'), +('N94.3', 'Premenstrual tension syndrome', 'ICD10_2010'), +('N94.4', 'Primary dysmenorrhoea', 'ICD10_2010'), +('N94.5', 'Secondary dysmenorrhoea', 'ICD10_2010'), +('N94.6', 'Dysmenorrhoea, unspecified', 'ICD10_2010'), +('N94.8', 'Other specified conditions associated with female genital organs and menstrual cycle', 'ICD10_2010'), +('N94.9', 'Unspecified condition associated with female genital organs and menstrual cycle', 'ICD10_2010'), +('N95', 'Menopausal and other perimenopausal disorders', 'ICD10_2010'), +('N95.0', 'Postmenopausal bleeding', 'ICD10_2010'), +('N95.1', 'Menopausal and female climacteric states', 'ICD10_2010'), +('N95.2', 'Postmenopausal atrophic vaginitis', 'ICD10_2010'), +('N95.3', 'States associated with artificial menopause', 'ICD10_2010'), +('N95.8', 'Other specified menopausal and perimenopausal disorders', 'ICD10_2010'), +('N95.9', 'Menopausal and perimenopausal disorder, unspecified', 'ICD10_2010'), +('N96', 'Habitual aborter', 'ICD10_2010'), +('N97', 'Female infertility', 'ICD10_2010'), +('N97.0', 'Female infertility associated with anovulation', 'ICD10_2010'), +('N97.1', 'Female infertility of tubal origin', 'ICD10_2010'), +('N97.2', 'Female infertility of uterine origin', 'ICD10_2010'), +('N97.3', 'Female infertility of cervical origin', 'ICD10_2010'), +('N97.4', 'Female infertility associated with male factors', 'ICD10_2010'), +('N97.8', 'Female infertility of other origin', 'ICD10_2010'), +('N97.9', 'Female infertility, unspecified', 'ICD10_2010'), +('N98', 'Complications associated with artificial fertilization', 'ICD10_2010'), +('N98.0', 'Infection associated with artificial insemination', 'ICD10_2010'), +('N98.1', 'Hyperstimulation of ovaries', 'ICD10_2010'), +('N98.2', 'Complications attempted introduction fertilized ovum following in vitro fertilization', 'ICD10_2010'), +('N98.3', 'Complications attempted introduction of embryo in embryo transfer', 'ICD10_2010'), +('N98.8', 'Other complications associated with artificial fertilization', 'ICD10_2010'), +('N98.9', 'Complication associated with artificial fertilization, unspecified', 'ICD10_2010'), +('N99', 'Postprocedural disorders of genitourinary system, not elsewhere classified', 'ICD10_2010'), +('N99.0', 'Postprocedural renal failure', 'ICD10_2010'), +('N99.1', 'Postprocedural urethral stricture', 'ICD10_2010'), +('N99.2', 'Postoperative adhesions of vagina', 'ICD10_2010'), +('N99.3', 'Prolapse of vaginal vault after hysterectomy', 'ICD10_2010'), +('N99.4', 'Postprocedural pelvic peritoneal adhesions', 'ICD10_2010'), +('N99.5', 'Malfunction of external stoma of urinary tract', 'ICD10_2010'), +('N99.8', 'Other postprocedural disorders of genitourinary system', 'ICD10_2010'), +('N99.9', 'Postprocedural disorder of genitourinary system, unspecified', 'ICD10_2010'), +('O00', 'Ectopic pregnancy', 'ICD10_2010'), +('O00.0', 'Abdominal pregnancy', 'ICD10_2010'), +('O00.1', 'Tubal pregnancy', 'ICD10_2010'), +('O00.2', 'Ovarian pregnancy', 'ICD10_2010'), +('O00.8', 'Other ectopic pregnancy', 'ICD10_2010'), +('O00.9', 'Ectopic pregnancy, unspecified', 'ICD10_2010'), +('O01', 'Hydatidiform mole', 'ICD10_2010'), +('O01.0', 'Classical hydatidiform mole', 'ICD10_2010'), +('O01.1', 'Incomplete and partial hydatidiform mole', 'ICD10_2010'), +('O01.9', 'Hydatidiform mole, unspecified', 'ICD10_2010'), +('O02', 'Other abnormal products of conception', 'ICD10_2010'), +('O02.0', 'Blighted ovum and nonhydatidiform mole', 'ICD10_2010'), +('O02.1', 'Missed abortion', 'ICD10_2010'), +('O02.8', 'Other specified abnormal products of conception', 'ICD10_2010'), +('O02.9', 'Abnormal product of conception, unspecified', 'ICD10_2010'), +('O03', 'Spontaneous abortion', 'ICD10_2010'), +('O03.0', 'Spontaneous abortion, incomplete abortion complicated by genital tract and pelvic infection', 'ICD10_2010'), +('O03.1', 'Spontaneous abortion, incomplete abortion complicated by delayed or excessive haemorrhage', 'ICD10_2010'), +('O03.2', 'Spontaneous abortion, incomplete, complicated by embolism', 'ICD10_2010'), +('O03.3', 'Spontaneous abortion, incomplete, with other and unspecified complications', 'ICD10_2010'), +('O03.4', 'Spontaneous abortion, incomplete, without complication', 'ICD10_2010'), +('O03.5', 'Spontaneous abortion, complete or unspecified, complicated by genital tract and pelvic infection', 'ICD10_2010'), +('O03.6', 'Spontaneous abortion, complete or unspecified, complicated by delayed or excessive haemorrhage', 'ICD10_2010'), +('O03.7', 'Spontaneous abortion, complete or unspecified, complicated by embolism', 'ICD10_2010'), +('O03.8', 'Spontaneous abortion, complete or unspecified, with other and unspecified complications', 'ICD10_2010'), +('O03.9', 'Spontaneous abortion, complete or unspecified, without complication', 'ICD10_2010'), +('O04', 'Medical abortion', 'ICD10_2010'), +('O04.0', 'Medical abortion, incomplete, complicated by genital tract and pelvic infection', 'ICD10_2010'), +('O04.1', 'Medical abortion, incomplete, complicated by delayed or excessive haemorrhage', 'ICD10_2010'), +('O04.2', 'Medical abortion, incomplete, complicated by embolism', 'ICD10_2010'), +('O04.3', 'Medical abortion, incomplete, with other and unspecified complications', 'ICD10_2010'), +('O04.4', 'Medical abortion, incomplete, without complication', 'ICD10_2010'), +('O04.5', 'Medical abortion, complete or unspecified, complicated by genital tract and pelvic infection', 'ICD10_2010'), +('O04.6', 'Medical abortion, complete or unspecified, complicated by delayed or excessive haemorrhage', 'ICD10_2010'), +('O04.7', 'Medical abortion, complete or unspecified, complicated by embolism', 'ICD10_2010'), +('O04.8', 'Medical abortion, complete or unspecified, with other and unspecified complications', 'ICD10_2010'), +('O04.9', 'Medical abortion, complete or unspecified, without complication', 'ICD10_2010'), +('O05', 'Other abortion', 'ICD10_2010'), +('O05.0', 'Other abortion, incomplete, complicated by genital tract and pelvic infection', 'ICD10_2010'), +('O05.1', 'Other abortion, incomplete, complicated by delayed or excessive haemorrhage', 'ICD10_2010'), +('O05.2', 'Other abortion, incomplete, complicated by embolism', 'ICD10_2010'), +('O05.3', 'Other abortion, incomplete, with other and unspecified complications', 'ICD10_2010'), +('O05.4', 'Other abortion, incomplete, without complication', 'ICD10_2010'), +('O05.5', 'Other abortion, complete or unspecified, complicated by genital tract and pelvic infection', 'ICD10_2010'), +('O05.6', 'Other abortion, complete or unspecified, complicated by delayed or excessive haemorrhage', 'ICD10_2010'), +('O05.7', 'Other abortion, complete or unspecified, complicated by embolism', 'ICD10_2010'), +('O05.8', 'Other abortion, complete or unspecified, with other and unspecified complications', 'ICD10_2010'), +('O05.9', 'Other abortion, complete or unspecified, without complication', 'ICD10_2010'), +('O06', 'Unspecified abortion', 'ICD10_2010'), +('O06.0', 'Unspecified abortion, incomplete, complicated by genital tract and pelvic infection', 'ICD10_2010'), +('O06.1', 'Unspecified abortion, incomplete, complicated by delayed or excessive haemorrhage', 'ICD10_2010'), +('O06.2', 'Unspecified abortion, incomplete, complicated by embolism', 'ICD10_2010'), +('O06.3', 'Unspecified abortion, incomplete, with other and unspecified complications', 'ICD10_2010'), +('O06.4', 'Unspecified abortion, incomplete, without complication', 'ICD10_2010'), +('O06.5', 'Unspecified abortion, complete or unspecified, complicated by genital tract and pelvic infection', 'ICD10_2010'), +('O06.6', 'Unspecified abortion, complete or unspecified, complicated by delayed or excessive haemorrhage', 'ICD10_2010'), +('O06.7', 'Unspecified abortion, complete or unspecified, complicated by embolism', 'ICD10_2010'), +('O06.8', 'Unspecified abortion, complete or unspecified, with other and unspecified complications', 'ICD10_2010'), +('O06.9', 'Unspecified abortion, complete or unspecified, without complication', 'ICD10_2010'), +('O07', 'Failed attempted abortion', 'ICD10_2010'), +('O07.0', 'Failed medical abortion, complicated by genital tract and pelvic infection', 'ICD10_2010'), +('O07.1', 'Failed medical abortion complicated by delayed or excessive haemorrhage', 'ICD10_2010'), +('O07.2', 'Failed medical abortion, complicated by embolism', 'ICD10_2010'), +('O07.3', 'Failed medical abortion, with other and unspecified complications', 'ICD10_2010'), +('O07.4', 'Failed medical abortion, without complication', 'ICD10_2010'), +('O07.5', 'Other and unspecified failed attempted abortion, complicated by genital tract and pelvic infection', 'ICD10_2010'), +('O07.6', 'Other and unspecified failed attempted abortion, complicated by delayed or excessive haemorrhage', 'ICD10_2010'), +('O07.7', 'Other and unspecified failed attempted abortion, complicated by embolism', 'ICD10_2010'), +('O07.8', 'Other and unspecified failed attempted abortion, with other and unspecified complications', 'ICD10_2010'), +('O07.9', 'Other and unspecified failed attempted abortion, without complication', 'ICD10_2010'), +('O08', 'Complications following abortion and ectopic and molar pregnancy', 'ICD10_2010'), +('O08.0', 'Genital tract and pelvic infection following abortion and ectopic and molar pregnancy', 'ICD10_2010'), +('O08.1', 'Delayed or excessive haemorrhage following abortion and ectopic and molar pregnancy', 'ICD10_2010'), +('O08.2', 'Embolism following abortion and ectopic and molar pregnancy', 'ICD10_2010'), +('O08.3', 'Shock following abortion and ectopic and molar pregnancy', 'ICD10_2010'), +('O08.4', 'Renal failure following abortion and ectopic and molar pregnancy', 'ICD10_2010'), +('O08.5', 'Metabolic disorders following abortion and ectopic and molar pregnancy', 'ICD10_2010'), +('O08.6', 'Damage to pelvic organs and tissues following abortion and ectopic and molar pregnancy', 'ICD10_2010'), +('O08.7', 'Other venous complications following abortion and ectopic and molar pregnancy', 'ICD10_2010'), +('O08.8', 'Other complications following abortion and ectopic and molar pregnancy', 'ICD10_2010'), +('O08.9', 'Complication following abortion and ectopic and molar pregnancy, unspecified', 'ICD10_2010'), +('O10', 'Pre-existing hypertension complicating pregnancy, childbirth and the puerperium', 'ICD10_2010'), +('O10.0', 'Pre-existing essential hypertension complicating pregnancy, childbirth and the puerperium', 'ICD10_2010'), +('O10.1', 'Pre-existing hypertensive heart disease complicating pregnancy, childbirth and the puerperium', 'ICD10_2010'), +('O10.2', 'Pre-existing hypertensive renal disease complicating pregnancy, childbirth and puerperium', 'ICD10_2010'), +('O10.3', 'Pre-existing hypertensive heart and renal disease complicating pregnancy, childbirth and the puerperium', 'ICD10_2010'), +('O10.4', 'Pre-existing secondary hypertension complicating pregnancy, childbirth and the puerperium', 'ICD10_2010'), +('O10.9', 'Unspecified pre-existing hypertension complicating pregnancy, childbirth and the puerperium', 'ICD10_2010'), +('O11', 'Pre-existing hypertensive disorder with superimposed proteinuria', 'ICD10_2010'), +('O12', 'Gestational [pregnancy-induced] oedema and proteinuria without hypertension', 'ICD10_2010'), +('O12.0', 'Gestational oedema', 'ICD10_2010'), +('O12.1', 'Gestational proteinuria', 'ICD10_2010'), +('O12.2', 'Gestational oedema with proteinuria', 'ICD10_2010'), +('O13', 'Gestational [pregnancy-induced] hypertension without signification proteinuria', 'ICD10_2010'), +('O14', 'Gestational [pregnancy-induced] hypertension with significant proteinuria', 'ICD10_2010'), +('O14.0', 'Moderate pre-eclampsia', 'ICD10_2010'), +('O14.1', 'Severe pre-eclampsia', 'ICD10_2010'), +('O14.2', 'HELLP syndrome', 'ICD10_2010'), +('O14.9', 'Pre-eclampsia, unspecified', 'ICD10_2010'), +('O15', 'Eclampsia', 'ICD10_2010'), +('O15.0', 'Eclampsia in pregnancy', 'ICD10_2010'), +('O15.1', 'Eclampsia in labour', 'ICD10_2010'), +('O15.2', 'Eclampsia in the puerperium', 'ICD10_2010'), +('O15.9', 'Eclampsia, unspecified as to time period', 'ICD10_2010'), +('O16', 'Unspecified maternal hypertension', 'ICD10_2010'), +('O20', 'Haemorrhage in early pregnancy', 'ICD10_2010'), +('O20.0', 'Threatened abortion', 'ICD10_2010'), +('O20.8', 'Other haemorrhage in early pregnancy', 'ICD10_2010'), +('O20.9', 'Haemorrhage in early pregnancy, unspecified', 'ICD10_2010'), +('O21', 'Excessive vomiting in pregnancy', 'ICD10_2010'), +('O21.0', 'Mild hyperemesis gravidarum', 'ICD10_2010'), +('O21.1', 'Hyperemesis gravidarum with metabolic disturbance', 'ICD10_2010'), +('O21.2', 'Late vomiting of pregnancy', 'ICD10_2010'), +('O21.8', 'Other vomiting complicating pregnancy', 'ICD10_2010'), +('O21.9', 'Vomiting of pregnancy, unspecified', 'ICD10_2010'), +('O22', 'Venous complications in pregnancy', 'ICD10_2010'), +('O22.0', 'Varicose veins of lower extremity in pregnancy', 'ICD10_2010'), +('O22.1', 'Genital varices in pregnancy', 'ICD10_2010'), +('O22.2', 'Superficial thrombophlebitis in pregnancy', 'ICD10_2010'), +('O22.3', 'Deep phlebothrombosis in pregnancy', 'ICD10_2010'), +('O22.4', 'Haemorrhoids in pregnancy', 'ICD10_2010'), +('O22.5', 'Cerebral venous thrombosis in pregnancy', 'ICD10_2010'), +('O22.8', 'Other venous complications in pregnancy', 'ICD10_2010'), +('O22.9', 'Venous complication in pregnancy, unspecified', 'ICD10_2010'), +('O23', 'Infections of genitourinary tract in pregnancy', 'ICD10_2010'), +('O23.0', 'Infections of kidney in pregnancy', 'ICD10_2010'), +('O23.1', 'Infections of bladder in pregnancy', 'ICD10_2010'), +('O23.2', 'Infections of urethra in pregnancy', 'ICD10_2010'), +('O23.3', 'Infections of other parts of urinary tract in pregnancy', 'ICD10_2010'), +('O23.4', 'Unspecified infection of urinary tract in pregnancy', 'ICD10_2010'), +('O23.5', 'Infections of the genital tract in pregnancy', 'ICD10_2010'), +('O23.9', 'Other and unspecified genitourinary tract infection in pregnancy', 'ICD10_2010'), +('O24', 'Diabetes mellitus in pregnancy', 'ICD10_2010'), +('O24.0', 'Pre-existing diabetes mellitus, insulin-dependent', 'ICD10_2010'), +('O24.1', 'Pre-existing diabetes mellitus, non-insulin-dependent', 'ICD10_2010'), +('O24.2', 'Pre-existing malnutrition-related diabetes mellitus', 'ICD10_2010'), +('O24.3', 'Pre-existing diabetes mellitus, unspecified', 'ICD10_2010'), +('O24.4', 'Diabetes mellitus arising in pregnancy', 'ICD10_2010'), +('O24.9', 'Diabetes mellitus in pregnancy, unspecified', 'ICD10_2010'), +('O25', 'Malnutrition in pregnancy', 'ICD10_2010'), +('O26', 'Maternal care for other conditions predominantly related to pregnancy', 'ICD10_2010'), +('O26.0', 'Excessive weight gain in pregnancy', 'ICD10_2010'), +('O26.1', 'Low weight gain in pregnancy', 'ICD10_2010'), +('O26.2', 'Pregnancy care of habitual aborter', 'ICD10_2010'), +('O26.3', 'Retained intrauterine contraceptive device in pregnancy', 'ICD10_2010'), +('O26.4', 'Herpes gestationis', 'ICD10_2010'), +('O26.5', 'Maternal hypotension syndrome', 'ICD10_2010'), +('O26.6', 'Liver disorders in pregnancy, childbirth and the puerperium', 'ICD10_2010'), +('O26.7', 'Subluxation of symphysis pubis in pregnancy, childbirth and the puerperium', 'ICD10_2010'), +('O26.8', 'Other specified pregnancy-related conditions', 'ICD10_2010'), +('O26.9', 'Pregnancy-related condition, unspecified', 'ICD10_2010'), +('O28', 'Abnormal findings on antenatal screening of mother', 'ICD10_2010'), +('O28.0', 'Abnormal haematological finding on antenatal screening of mother', 'ICD10_2010'), +('O28.1', 'Abnormal biochemical finding on antenatal screening of mother', 'ICD10_2010'), +('O28.2', 'Abnormal cytological finding on antenatal screening of mother', 'ICD10_2010'), +('O28.3', 'Abnormal ultrasonic finding on antenatal screening of mother', 'ICD10_2010'), +('O28.4', 'Abnormal radiological find on antenatal screening of mother', 'ICD10_2010'), +('O28.5', 'Abnormal chromosomal and genetic finding antenatal screening of mother', 'ICD10_2010'), +('O28.8', 'Other abnormal findings on antenatal screening of mother', 'ICD10_2010'), +('O28.9', 'Abnormal finding on antenatal screening of mother, unspecified', 'ICD10_2010'), +('O29', 'Complications of anaesthesia during pregnancy', 'ICD10_2010'), +('O29.0', 'Pulmonary complications of anaesthesia during pregnancy', 'ICD10_2010'), +('O29.1', 'Cardiac complications of anaesthesia during pregnancy', 'ICD10_2010'), +('O29.2', 'Central nervous system complications of anaesthesia during pregnancy', 'ICD10_2010'), +('O29.3', 'Toxic reaction to local anaesthesia during pregnancy', 'ICD10_2010'), +('O29.4', 'Spinal and epidural anaesthesia-induced headache during pregnancy', 'ICD10_2010'), +('O29.5', 'Other complications of spinal and epidural anaesthesia during pregnancy', 'ICD10_2010'), +('O29.6', 'Failed or difficult intubation during pregnancy', 'ICD10_2010'), +('O29.8', 'Other complications of anaesthesia during pregnancy', 'ICD10_2010'), +('O29.9', 'Complication of anaesthesia during pregnancy, unspecified', 'ICD10_2010'), +('O30', 'Multiple gestation', 'ICD10_2010'), +('O30.0', 'Twin pregnancy', 'ICD10_2010'), +('O30.1', 'Triplet pregnancy', 'ICD10_2010'), +('O30.2', 'Quadruplet pregnancy', 'ICD10_2010'), +('O30.8', 'Other multiple gestation', 'ICD10_2010'), +('O30.9', 'Multiple gestation, unspecified', 'ICD10_2010'), +('O31', 'Complications specific to multiple gestation', 'ICD10_2010'), +('O31.0', 'Papyraceous fetus', 'ICD10_2010'), +('O31.1', 'Continuing pregnancy after abortion of one fetus or more', 'ICD10_2010'), +('O31.2', 'Continuing pregnancy after intrauterine death of one fetus or more', 'ICD10_2010'), +('O31.8', 'Other complications specific to multiple gestation', 'ICD10_2010'), +('O32', 'Maternal care for known or suspected malpresentation of fetus', 'ICD10_2010'), +('O32.0', 'Maternal care for unstable lie', 'ICD10_2010'), +('O32.1', 'Maternal care for breech presentation', 'ICD10_2010'), +('O32.2', 'Maternal care for transverse and oblique lie', 'ICD10_2010'), +('O32.3', 'Maternal care for face, brow and chin presentation', 'ICD10_2010'), +('O32.4', 'Maternal care for high head at term', 'ICD10_2010'), +('O32.5', 'Maternal care for multiple gestation with malpresentation of one fetus or more', 'ICD10_2010'), +('O32.6', 'Maternal care for compound presentation', 'ICD10_2010'), +('O32.8', 'Maternal care for other malpresentation of fetus', 'ICD10_2010'), +('O32.9', 'Maternal care for malpresentation of fetus, unspecified', 'ICD10_2010'), +('O33', 'Maternal care for known or suspected disproportion', 'ICD10_2010'), +('O33.0', 'Maternal care for disproportion due to deformity of maternal pelvic bones', 'ICD10_2010'), +('O33.1', 'Maternal care for disproportion due to generally contracted pelvis', 'ICD10_2010'), +('O33.2', 'Maternal care for disproportion due to inlet contraction of pelvis', 'ICD10_2010'), +('O33.3', 'Maternalcare for disproportion due to outlet contract of pelvis', 'ICD10_2010'), +('O33.4', 'Maternal care for disproportion of mixed maternal and fetal origin', 'ICD10_2010'), +('O33.5', 'Maternal care for disproportion due to unusually large fetus', 'ICD10_2010'), +('O33.6', 'Maternal care for disproportion due to hydrocephalic fetus', 'ICD10_2010'), +('O33.7', 'Maternal care for disproportion due to other fetal deformities', 'ICD10_2010'), +('O33.8', 'Maternal care for disproportion of other origin', 'ICD10_2010'), +('O33.9', 'Maternal care for disproportion, unspecified', 'ICD10_2010'), +('O34', 'Maternal care for known or suspected abnormality of pelvic organs', 'ICD10_2010'), +('O34.0', 'Maternal care for congenital malformation of uterus', 'ICD10_2010'), +('O34.1', 'Maternal care for tumour of corpus uteri', 'ICD10_2010'), +('O34.2', 'Maternal care due to uterine scar from previous surgery', 'ICD10_2010'), +('O34.3', 'Maternal care for cervical incompetence', 'ICD10_2010'), +('O34.4', 'Maternal care for other abnormalities of cervix', 'ICD10_2010'), +('O34.5', 'Maternal care for other abnormalities of gravid uterus', 'ICD10_2010'), +('O34.6', 'Maternal care for abnormality of vagina', 'ICD10_2010'), +('O34.7', 'Maternal care for abnormality of vulva and perineum', 'ICD10_2010'), +('O34.8', 'Maternal care for other abnormalities of pelvic organs', 'ICD10_2010'), +('O34.9', 'Maternal care for abnormality of pelvic organ, unspecified', 'ICD10_2010'), +('O35', 'Maternal care for known or suspected fetal abnormality and damage', 'ICD10_2010'), +('O35.0', 'Maternal care for suspected central nervous system malformation in fetus', 'ICD10_2010'), +('O35.1', 'Maternal care for suspected chromosomal abnormality in fetus', 'ICD10_2010'), +('O35.2', 'Maternal care for suspected hereditary disease in fetus', 'ICD10_2010'), +('O35.3', 'Maternal care for suspected damage to fetus from viral disease in mother', 'ICD10_2010'), +('O35.4', 'Maternal care for suspected damage to fetus from alcohol', 'ICD10_2010'), +('O35.5', 'Maternal care for suspected damage to fetus by drugs', 'ICD10_2010'), +('O35.6', 'Maternal care for suspected damage to fetus by radiation', 'ICD10_2010'), +('O35.7', 'Maternal care for suspected damage to fetus by other medical procedures', 'ICD10_2010'), +('O35.8', 'Maternal care for other suspected fetal abnormality and damage', 'ICD10_2010'), +('O35.9', 'Maternal care for suspected fetal abnormality and damage, unspecified', 'ICD10_2010'), +('O36', 'Maternal care for other known or suspected fetal problems', 'ICD10_2010'), +('O36.0', 'Maternal care for rhesus isoimmunization', 'ICD10_2010'), +('O36.1', 'Maternal care for other isoimmunization', 'ICD10_2010'), +('O36.2', 'Maternal care for hydrops fetalis', 'ICD10_2010'), +('O36.3', 'Maternal care for signs of fetal hypoxia', 'ICD10_2010'), +('O36.4', 'Maternal care for intrauterine death', 'ICD10_2010'), +('O36.5', 'Maternal care for poor fetal growth', 'ICD10_2010'), +('O36.6', 'Maternal care for excessive fetal growth', 'ICD10_2010'), +('O36.7', 'Maternal care for viable fetus in abdominal pregnancy', 'ICD10_2010'), +('O36.8', 'Maternal care for other specified fetal problems', 'ICD10_2010'), +('O36.9', 'Maternal care for fetal problem, unspecified', 'ICD10_2010'), +('O40', 'Polyhydramnios', 'ICD10_2010'), +('O41', 'Other disorders of amniotic fluid and membranes', 'ICD10_2010'), +('O41.0', 'Oligohydramnios', 'ICD10_2010'), +('O41.1', 'Infection of amniotic sac and membranes', 'ICD10_2010'), +('O41.8', 'Other specified disorders of amniotic fluid and membranes', 'ICD10_2010'), +('O41.9', 'Disorder of amniotic fluid and membranes, unspecified', 'ICD10_2010'), +('O42', 'Premature rupture of membranes', 'ICD10_2010'), +('O42.0', 'Premature rupture of membranes, onset of labour within 24 hours', 'ICD10_2010'), +('O42.1', 'Premature rupture of membranes, onset of labour after 24 hours', 'ICD10_2010'), +('O42.2', 'Premature rupture of membranes, labour delayed by therapy', 'ICD10_2010'), +('O42.9', 'Premature rupture of membranes, unspecified', 'ICD10_2010'), +('O43', 'Placental disorders', 'ICD10_2010'), +('O43.0', 'Placental transfusion syndromes', 'ICD10_2010'), +('O43.1', 'Malformation of placenta', 'ICD10_2010'), +('O43.2', 'Morbidly adherent placenta', 'ICD10_2010'), +('O43.8', 'Other placental disorders', 'ICD10_2010'), +('O43.9', 'Placental disorder, unspecified', 'ICD10_2010'), +('O44', 'Placenta praevia', 'ICD10_2010'), +('O44.0', 'Placenta praevia specified as without haemorrhage', 'ICD10_2010'), +('O44.1', 'Placenta praevia with haemorrhage', 'ICD10_2010'), +('O45', 'Premature separation of placenta [abruptio placentae]', 'ICD10_2010'), +('O45.0', 'Premature separation of placenta with coagulation defect', 'ICD10_2010'), +('O45.8', 'Other premature separation of placenta', 'ICD10_2010'), +('O45.9', 'Premature separation of placenta, unspecified', 'ICD10_2010'), +('O46', 'Antepartum haemorrhage, not elsewhere classified', 'ICD10_2010'), +('O46.0', 'Antepartum haemorrhage with coagulation defect', 'ICD10_2010'), +('O46.8', 'Other antepartum haemorrhage', 'ICD10_2010'), +('O46.9', 'Antepartum haemorrhage, unspecified', 'ICD10_2010'), +('O47', 'False labour', 'ICD10_2010'), +('O47.0', 'False labour before 37 completed weeks of gestation', 'ICD10_2010'), +('O47.1', 'False labour at or after 37 completed weeks of gestation', 'ICD10_2010'), +('O47.9', 'False labour, unspecified', 'ICD10_2010'), +('O48', 'Prolonged pregnancy', 'ICD10_2010'), +('O60', 'Preterm labour and delivery', 'ICD10_2010'), +('O60.0', 'Preterm labour without delivery', 'ICD10_2010'), +('O60.1', 'Preterm labour with preterm delivery', 'ICD10_2010'), +('O60.2', 'Preterm labour with term delivery', 'ICD10_2010'), +('O60.3', 'Preterm delivery without spontaneous labour', 'ICD10_2010'), +('O61', 'Failed induction of labour', 'ICD10_2010'), +('O61.0', 'Failed medical induction of labour', 'ICD10_2010'), +('O61.1', 'Failed instrumental induction of labour', 'ICD10_2010'), +('O61.8', 'Other failed induction of labour', 'ICD10_2010'), +('O61.9', 'Failed induction of labour, unspecified', 'ICD10_2010'), +('O62', 'Abnormalities of forces of labour', 'ICD10_2010'), +('O62.0', 'Primary inadequate contractions', 'ICD10_2010'), +('O62.1', 'Secondary uterine inertia', 'ICD10_2010'), +('O62.2', 'Other uterine inertia', 'ICD10_2010'), +('O62.3', 'Precipitate labour', 'ICD10_2010'), +('O62.4', 'Hypertonic, incoordinate, and prolonged uterine contractions', 'ICD10_2010'), +('O62.8', 'Other abnormalities of forces of labour', 'ICD10_2010'), +('O62.9', 'Abnormality of forces of labour, unspecified', 'ICD10_2010'), +('O63', 'Long labour', 'ICD10_2010'), +('O63.0', 'Prolonged first stage of labour', 'ICD10_2010'), +('O63.1', 'Prolonged second stage of labour', 'ICD10_2010'), +('O63.2', 'Delayed delivery of second twin, triplet, etc', 'ICD10_2010'), +('O63.9', 'Long labour, unspecified', 'ICD10_2010'), +('O64', 'Obstructed labour due to malposition and malpresentation of fetus', 'ICD10_2010'), +('O64.0', 'Obstructed labour due to incomplete rotation of fetal head', 'ICD10_2010'), +('O64.1', 'Obstructed labour due to breech presentation', 'ICD10_2010'), +('O64.2', 'Obstructed labour due to face presentation', 'ICD10_2010'), +('O64.3', 'Obstructed labour due to brow presentation', 'ICD10_2010'), +('O64.4', 'Obstructed labour due to shoulder presentation', 'ICD10_2010'), +('O64.5', 'Obstructed labour due to compound presentation', 'ICD10_2010'), +('O64.8', 'Obstructed labour due other malposition and malpresentation', 'ICD10_2010'), +('O64.9', 'Obstructed labour due malposition and malpresentation, unspecified', 'ICD10_2010'), +('O65', 'Obstructed labour due to maternal pelvic abnormality', 'ICD10_2010'), +('O65.0', 'Obstructed labour due to deformed pelvis', 'ICD10_2010'), +('O65.1', 'Obstructed labour due to generally contracted pelvis', 'ICD10_2010'), +('O65.2', 'Obstructed labour due to pelvic inlet contraction', 'ICD10_2010'), +('O65.3', 'Obstructed labour due pelvic outlet and mid-cavity contraction', 'ICD10_2010'), +('O65.4', 'Obstructed labour due to fetopelvic disproportion, unspecified', 'ICD10_2010'), +('O65.5', 'Obstructed labour due abnormality of maternal pelvic organs', 'ICD10_2010'), +('O65.8', 'Obstructed labour due to other maternal pelvic abnormalities', 'ICD10_2010'), +('O65.9', 'Obstructed labour due to maternal pelvic abnormality, unspecified', 'ICD10_2010'), +('O66', 'Other obstructed labour', 'ICD10_2010'), +('O66.0', 'Obstructed labour due to shoulder dystocia', 'ICD10_2010'), +('O66.1', 'Obstructed labour due to locked twins', 'ICD10_2010'), +('O66.2', 'Obstructed labour due to unusually large fetus', 'ICD10_2010'), +('O66.3', 'Obstructed labour due to other abnormalities of fetus', 'ICD10_2010'), +('O66.4', 'Failed trial of labour, unspecified', 'ICD10_2010'), +('O66.5', 'Failed application of vacuum extractor and forceps, unspecified', 'ICD10_2010'), +('O66.8', 'Other specified obstructed labour', 'ICD10_2010'), +('O66.9', 'Obstructed labour, unspecified', 'ICD10_2010'), +('O67', 'Labour and delivery complicated by intrapartum haemorrhage, not elsewhere classified', 'ICD10_2010'), +('O67.0', 'Intrapartum haemorrhage with coagulation defect', 'ICD10_2010'), +('O67.8', 'Other intrapartum haemorrhage', 'ICD10_2010'), +('O67.9', 'Intrapartum haemorrhage, unspecified', 'ICD10_2010'), +('O68', 'Labour and delivery complicated by fetal stress [distress]', 'ICD10_2010'), +('O68.0', 'Labour and delivery complicated by fetal heart rate anomaly', 'ICD10_2010'), +('O68.1', 'Labour and delivery complicated by meconium in amniotic fluid', 'ICD10_2010'), +('O68.2', 'Labour and delivery complicated fetal heart rate anomaly with meconium in amniot fluid', 'ICD10_2010'), +('O68.3', 'Labour and delivery complicated by biochemical evidence of fetal stress', 'ICD10_2010'), +('O68.8', 'Labour and delivery complicated by other evidence of fetal stress', 'ICD10_2010'), +('O68.9', 'Labour and delivery complicated by fetal stress, unspecified', 'ICD10_2010'), +('O69', 'Labour and delivery complicated by umbilical cord complications', 'ICD10_2010'), +('O69.0', 'Labour and delivery complicated by prolapse of cord', 'ICD10_2010'), +('O69.1', 'Labour and delivery complicated cord around neck, with compression', 'ICD10_2010'), +('O69.2', 'Labour and delivery complicated by other cord entanglement', 'ICD10_2010'), +('O69.3', 'Labour and delivery complicated by short cord', 'ICD10_2010'), +('O69.4', 'Labour and delivery complicated by vasa praevia', 'ICD10_2010'), +('O69.5', 'Labour and delivery complicated by vascular lesion of cord', 'ICD10_2010'), +('O69.8', 'Labour and delivery complicated by other cord complications', 'ICD10_2010'), +('O69.9', 'Labour and delivery complicated by cord complication, unspecified', 'ICD10_2010'), +('O70', 'Perineal laceration during delivery', 'ICD10_2010'), +('O70.0', 'First degree perineal laceration during delivery', 'ICD10_2010'), +('O70.1', 'Second degree perineal laceration during delivery', 'ICD10_2010'), +('O70.2', 'Third degree perineal laceration during delivery', 'ICD10_2010'), +('O70.3', 'Fourth degree perineal laceration during delivery', 'ICD10_2010'), +('O70.9', 'Perineal laceration during delivery, unspecified', 'ICD10_2010'), +('O71', 'Other obstetric trauma', 'ICD10_2010'), +('O71.0', 'Rupture of uterus before onset of labour', 'ICD10_2010'), +('O71.1', 'Rupture of uterus during labour', 'ICD10_2010'), +('O71.2', 'Postpartum inversion of uterus', 'ICD10_2010'), +('O71.3', 'Obstetric laceration of cervix', 'ICD10_2010'), +('O71.4', 'Obstetric high vaginal laceration alone', 'ICD10_2010'), +('O71.5', 'Other obstetric injury to pelvic organs', 'ICD10_2010'), +('O71.6', 'Obstetric damage to pelvic joints and ligaments', 'ICD10_2010'), +('O71.7', 'Obstetric haematoma of pelvis', 'ICD10_2010'), +('O71.8', 'Other specified obstetric trauma', 'ICD10_2010'), +('O71.9', 'Obstetric trauma, unspecified', 'ICD10_2010'), +('O72', 'Postpartum haemorrhage', 'ICD10_2010'), +('O72.0', 'Third-stage haemorrhage', 'ICD10_2010'), +('O72.1', 'Other immediate postpartum haemorrhage', 'ICD10_2010'), +('O72.2', 'Delayed and secondary postpartum haemorrhage', 'ICD10_2010'), +('O72.3', 'Postpartum coagulation defects', 'ICD10_2010'), +('O73', 'Retained placenta and membranes, without haemorrhage', 'ICD10_2010'), +('O73.0', 'Retained placenta without haemorrhage', 'ICD10_2010'), +('O73.1', 'Retained portions of placenta and membranes, without haemorrhage', 'ICD10_2010'), +('O74', 'Complications of anaesthesia during labour and delivery', 'ICD10_2010'), +('O74.0', 'Aspiration pneumonitis due to anaesthesia during labour and delivery', 'ICD10_2010'), +('O74.1', 'Other pulmonary complications anaesthesia during labour and delivery', 'ICD10_2010'), +('O74.2', 'Cardiac complications of anaesthesia during labour and delivery', 'ICD10_2010'), +('O74.3', 'Central nervous system complications of anaesthesia during labour and delivery', 'ICD10_2010'), +('O74.4', 'Toxic reaction to local anaesthesia during labour and delivery', 'ICD10_2010'), +('O74.5', 'Spinal and epidural anaesthesia-induced headache during labour and delivery', 'ICD10_2010'), +('O74.6', 'Other complications of spinal and epidural anaesthesia during labour and delivery', 'ICD10_2010'), +('O74.7', 'Failed or difficult intubation during labour and delivery', 'ICD10_2010'), +('O74.8', 'Other complications of anaesthesia during labour and delivery', 'ICD10_2010'), +('O74.9', 'Complication of anaesthesia during labour and delivery, unspecified', 'ICD10_2010'), +('O75', 'Other complications of labour and delivery, not elsewhere classified', 'ICD10_2010'), +('O75.0', 'Maternal distress during labour and delivery', 'ICD10_2010'), +('O75.1', 'Shock during or following labour and delivery', 'ICD10_2010'), +('O75.2', 'Pyrexia during labour, not elsewhere classified', 'ICD10_2010'), +('O75.3', 'Other infection during labour', 'ICD10_2010'), +('O75.4', 'Other complications of obstetric surgery and procedures', 'ICD10_2010'), +('O75.5', 'Delayed delivery after artificial rupture of membranes', 'ICD10_2010'), +('O75.6', 'Delayed delivery after spontaneous or unspecified rupture of membranes', 'ICD10_2010'), +('O75.7', 'Vaginal delivery following previous caesarean section', 'ICD10_2010'), +('O75.8', 'Other specified complications of labour and delivery', 'ICD10_2010'), +('O75.9', 'Complication of labour and delivery, unspecified', 'ICD10_2010'), +('O80', 'Single spontaneous delivery', 'ICD10_2010'), +('O80.0', 'Spontaneous vertex delivery', 'ICD10_2010'), +('O80.1', 'Spontaneous breech delivery', 'ICD10_2010'), +('O80.8', 'Other single spontaneous delivery', 'ICD10_2010'), +('O80.9', 'Single spontaneous delivery, unspecified', 'ICD10_2010'), +('O81', 'Single delivery by forceps and vacuum extractor', 'ICD10_2010'), +('O81.0', 'Low forceps delivery', 'ICD10_2010'), +('O81.1', 'Mid-cavity forceps delivery', 'ICD10_2010'), +('O81.2', 'Mid-cavity forceps with rotation', 'ICD10_2010'), +('O81.3', 'Other and unspecified forceps delivery', 'ICD10_2010'), +('O81.4', 'Vacuum extractor delivery', 'ICD10_2010'), +('O81.5', 'Delivery by combination of forceps and vacuum extractor', 'ICD10_2010'), +('O82', 'Single delivery by caesarean section', 'ICD10_2010'), +('O82.0', 'Delivery by elective caesarean section', 'ICD10_2010'), +('O82.1', 'Delivery by emergency caesarean section', 'ICD10_2010'), +('O82.2', 'Delivery by caesarean hysterectomy', 'ICD10_2010'), +('O82.8', 'Other single delivery by caesarean section', 'ICD10_2010'), +('O82.9', 'Delivery by caesarean section, unspecified', 'ICD10_2010'), +('O83', 'Other assisted single delivery', 'ICD10_2010'), +('O83.0', 'Breech extraction', 'ICD10_2010'), +('O83.1', 'Other assisted breech delivery', 'ICD10_2010'), +('O83.2', 'Other manipulation-assisted delivery', 'ICD10_2010'), +('O83.3', 'Delivery of viable fetus in abdominal pregnancy', 'ICD10_2010'), +('O83.4', 'Destructive operation for delivery', 'ICD10_2010'), +('O83.8', 'Other specified assisted single delivery', 'ICD10_2010'), +('O83.9', 'Assisted single delivery, unspecified', 'ICD10_2010'), +('O84', 'Multiple delivery', 'ICD10_2010'), +('O84.0', 'Multiple delivery, all spontaneous', 'ICD10_2010'), +('O84.1', 'Multiple delivery, all by forceps and vacuum extractor', 'ICD10_2010'), +('O84.2', 'Multiple delivery, all by caesarean section', 'ICD10_2010'), +('O84.8', 'Other multiple delivery', 'ICD10_2010'), +('O84.9', 'Multiple delivery, unspecified', 'ICD10_2010'), +('O85', 'Puerperal sepsis', 'ICD10_2010'), +('O86', 'Other puerperal infections', 'ICD10_2010'), +('O86.0', 'Infection of obstetric surgical wound', 'ICD10_2010'), +('O86.1', 'Other infection of genital tract following delivery', 'ICD10_2010'), +('O86.2', 'Urinary tract infection following delivery', 'ICD10_2010'), +('O86.3', 'Other genitourinary tract infections following delivery', 'ICD10_2010'), +('O86.4', 'Pyrexia of unknown origin following delivery', 'ICD10_2010'), +('O86.8', 'Other specified puerperal infections', 'ICD10_2010'), +('O87', 'Venous complications in the puerperium', 'ICD10_2010'), +('O87.0', 'Superficial thrombophlebitis in the puerperium', 'ICD10_2010'), +('O87.1', 'Deep phlebothrombosis in the puerperium', 'ICD10_2010'), +('O87.2', 'Haemorrhoids in the puerperium', 'ICD10_2010'), +('O87.3', 'Cerebral venous thrombosis in the puerperium', 'ICD10_2010'), +('O87.8', 'Other venous complications in the puerperium', 'ICD10_2010'), +('O87.9', 'Venous complication in the puerperium, unspecified', 'ICD10_2010'), +('O88', 'Obstetric embolism', 'ICD10_2010'), +('O88.0', 'Obstetric air embolism', 'ICD10_2010'), +('O88.1', 'Amniotic fluid embolism', 'ICD10_2010'), +('O88.2', 'Obstetric blood-clot embolism', 'ICD10_2010'), +('O88.3', 'Obstetric pyaemic and septic embolism', 'ICD10_2010'), +('O88.8', 'Other obstetric embolism', 'ICD10_2010'), +('O89', 'Complications of anaesthesia during the puerperium', 'ICD10_2010'), +('O89.0', 'Pulmonary complications of anaesthesia during the puerperium', 'ICD10_2010'), +('O89.1', 'Cardiac complications of anaesthesia during the puerperium', 'ICD10_2010'), +('O89.2', 'Central nervous system complications of anaesthesia during the puerperium', 'ICD10_2010'), +('O89.3', 'Toxic reaction to local anaesthesia during the puerperium', 'ICD10_2010'), +('O89.4', 'Spinal and epidural anaesthesia-induced headache during the puerperium', 'ICD10_2010'), +('O89.5', 'Other complications of spinal and epidural anaesthesia during puerperium', 'ICD10_2010'), +('O89.6', 'Failed or difficult intubation during the puerperium', 'ICD10_2010'), +('O89.8', 'Other complications of anaesthesia during the puerperium', 'ICD10_2010'), +('O89.9', 'Complication of anaesthesia during the puerperium, unspecified', 'ICD10_2010'), +('O90', 'Complications of the puerperium, not elsewhere classified', 'ICD10_2010'), +('O90.0', 'Disruption of caesarean section wound', 'ICD10_2010'), +('O90.1', 'Disruption of perineal obstetric wound', 'ICD10_2010'), +('O90.2', 'Haematoma of obstetric wound', 'ICD10_2010'), +('O90.3', 'Cardiomyopathy in the puerperium', 'ICD10_2010'), +('O90.4', 'Postpartum acute renal failure', 'ICD10_2010'), +('O90.5', 'Postpartum thyroiditis', 'ICD10_2010'), +('O90.8', 'Other complications of the puerperium, not elsewhere classified', 'ICD10_2010'), +('O90.9', 'Complication of the puerperium, unspecified', 'ICD10_2010'), +('O91', 'Infections of breast associated with childbirth', 'ICD10_2010'), +('O91.0', 'Infection of nipple associated with childbirth', 'ICD10_2010'), +('O91.1', 'Abscess of breast associated with childbirth', 'ICD10_2010'), +('O91.2', 'Nonpurulent mastitis associated with childbirth', 'ICD10_2010'), +('O92', 'Other disorders of breast and lactation associated with childbirth', 'ICD10_2010'), +('O92.0', 'Retracted nipple associated with childbirth', 'ICD10_2010'), +('O92.1', 'Cracked nipple associated with childbirth', 'ICD10_2010'), +('O92.2', 'Other and unspecified disorders of breast associated with childbirth', 'ICD10_2010'), +('O92.3', 'Agalactia', 'ICD10_2010'), +('O92.4', 'Hypogalactia', 'ICD10_2010'), +('O92.5', 'Suppressed lactation', 'ICD10_2010'), +('O92.6', 'Galactorrhoea', 'ICD10_2010'), +('O92.7', 'Other and unspecified disorders of lactation', 'ICD10_2010'), +('O94', 'Sequelae of complication of pregnancy, childbirth and the puerperium', 'ICD10_2010'), +('O95', 'Obstetric death of unspecified cause', 'ICD10_2010'), +('O96', 'Death from any obstetric cause occuring more than 42 days but less than one year after delivery', 'ICD10_2010'), +('O96.0', 'Death from direct obstetric cause', 'ICD10_2010'), +('O96.1', 'Death from indirect obstetric cause', 'ICD10_2010'), +('O96.9', 'Death from unspecified obstetric cause', 'ICD10_2010'), +('O97', 'Death from sequelae of direct obstetric causes', 'ICD10_2010'), +('O97.0', 'Death from sequelae of direct obstetric cause', 'ICD10_2010'), +('O97.1', 'Death from sequelae of indirect obstetric cause', 'ICD10_2010'), +('O97.9', 'Death from sequelae of obstetric cause, unspecified', 'ICD10_2010'), +('O98', 'Maternal infectious and parasitic diseases classifiable elsewhere but complicating pregnancy, childbirth and the puerperium', 'ICD10_2010'), +('O98.0', 'Tuberculosis complicating pregnancy, childbirth and the puerperium', 'ICD10_2010'), +('O98.1', 'Syphilis complicating pregnancy, childbirth and the puerperium', 'ICD10_2010'), +('O98.2', 'Gonorrhoea complicating pregnancy, childbirth and the puerperium', 'ICD10_2010'), +('O98.3', 'Other infections predominantly sexual mode of transmission complicating pregnancy, childbirth and the puerperium', 'ICD10_2010'), +('O98.4', 'Viral hepatitis complicating pregnancy, childbirth and the puerperium', 'ICD10_2010'), +('O98.5', 'Other viral diseases complicating pregnancy, childbirth and the puerperium', 'ICD10_2010'), +('O98.6', 'Protozoal diseases complicating pregnancy, childbirth and the puerperium', 'ICD10_2010'), +('O98.7', 'Human immunodeficiency [HIV] disease complicating pregnancy, childbirth and the puerperium', 'ICD10_2010'), +('O98.8', 'Other maternal infectious parasitic diseases complicating pregnancy, childbirth and the puerperium', 'ICD10_2010'), +('O98.9', 'Unspecified maternal infectious parasitic disease complicating pregnancy, childbirth and the puerperium', 'ICD10_2010'), +('O99', 'Other maternal diseases classifiable elsewhere but complicating pregnancy, childbirth and the puerperium', 'ICD10_2010'), +('O99.0', 'Anaemia complicating pregnancy, childbirth and the puerperium', 'ICD10_2010'), +('O99.1', 'Other diseases of the blood and blood-forming organs and certain disorders involving the immune mechanism complicating pregnancy, childbirth and the p', 'ICD10_2010'), +('O99.2', 'Endocrine, nutritional metabolic diseases complicating pregnancy, childbirth and the puerperium', 'ICD10_2010'), +('O99.3', 'Mental disorders and diseases of the nervous system complicating pregnancy, childbirth and the puerperium', 'ICD10_2010'), +('O99.4', 'Diseases of the circulatory system complicating pregnancy, childbirth and the puerperium', 'ICD10_2010'), +('O99.5', 'Diseases of the respiratory system complicating pregnancy, childbirth and the puerperium', 'ICD10_2010'), +('O99.6', 'Diseases of the digestive system complicating pregnancy, childbirth and the puerperium', 'ICD10_2010'), +('O99.7', 'Diseases of the skin and subcutaneous tissue complicating pregnancy, childbirth and the puerperium', 'ICD10_2010'), +('O99.8', 'Other specified diseases and conditions complicating pregnancy, childbirth and the puerperium', 'ICD10_2010'), +('P00', 'Fetus and newborn affected by maternal conditions that may be unrelated to present pregnancy', 'ICD10_2010'), +('P00.0', 'Fetus and newborn afected by maternal hypertensive disord', 'ICD10_2010'), +('P00.1', 'Fet and newborn afected by mat renal and urinary tract dis', 'ICD10_2010'), +('P00.2', 'Fetus and newborn affected by mat infect and parasitic dis', 'ICD10_2010'), +('P00.3', 'Fetus and newborn affected oth mat circulatory and resp dis', 'ICD10_2010'), +('P00.4', 'Fetus and newborn affected by maternal nutritional disorders', 'ICD10_2010'), +('P00.5', 'Fetus and newborn affected by maternal injury', 'ICD10_2010'), +('P00.6', 'Fetus and newborn affected by surgical procedure on mother', 'ICD10_2010'), +('P00.7', 'Fetus and newborn affected other medic procs on mother nec', 'ICD10_2010'), +('P00.8', 'Fetus and newborn affected by other maternal conditions', 'ICD10_2010'), +('P00.9', 'Fetus and newborn affected by unspecified maternal condition', 'ICD10_2010'), +('P01', 'Fetus and newborn affected by maternal complications of pregnancy', 'ICD10_2010'), +('P01.0', 'Fetus and newborn affected by incompetent cervix', 'ICD10_2010'), +('P01.1', 'Fetus and newborn affected by premature rupture of membranes', 'ICD10_2010'), +('P01.2', 'Fetus and newborn affected by oligohydramnios', 'ICD10_2010'), +('P01.3', 'Fetus and newborn affected by polyhydramnios', 'ICD10_2010'), +('P01.4', 'Fetus and newborn affected by ectopic pregnancy', 'ICD10_2010'), +('P01.5', 'Fetus and newborn affected by multiple pregnancy', 'ICD10_2010'), +('P01.6', 'Fetus and newborn affected by maternal death', 'ICD10_2010'), +('P01.7', 'Fetus and newborn affected by malpresentation before labour', 'ICD10_2010'), +('P01.8', 'Fetus and newborn affected other maternal comps of preg', 'ICD10_2010'), +('P01.9', 'Fetus and newborn affect by maternal comp of preg unspec act', 'ICD10_2010'), +('P02', 'Fetus and newborn affected by complications of placenta, cord and membranes', 'ICD10_2010'), +('P02.0', 'Fetus and newborn affected by placenta praevia', 'ICD10_2010'), +('P02.1', 'Fetus and newborn affect oth forms placent sepn haemorrh', 'ICD10_2010'), +('P02.2', 'Fetus newborn affect other unsp morph funct abnorm placent', 'ICD10_2010'); +INSERT INTO `icd10` (`ID_ICD10`, `Diagnosa`, `Versi_ICD10`) VALUES +('P02.3', 'Fet and newborn affected by placental transfusion syndr', 'ICD10_2010'), +('P02.4', 'Fetus and newborn affected by prolapsed cord', 'ICD10_2010'), +('P02.5', 'Fetus and newborn affected other compression umb cord', 'ICD10_2010'), +('P02.6', 'Fetus and newborn affect oth unspec conds of umbilical cord', 'ICD10_2010'), +('P02.7', 'Fetus and newborn affected by chorioamnionitis', 'ICD10_2010'), +('P02.8', 'Fetus and newborn affect by oth abnormalities of membr', 'ICD10_2010'), +('P02.9', 'Fetus and newborn affected by abnorm of membranes unsp', 'ICD10_2010'), +('P03', 'Fetus and newborn affected by other complications of labour and delivery', 'ICD10_2010'), +('P03.0', 'Fetus and newborn affected by breech delivery and extraction', 'ICD10_2010'), +('P03.1', 'Fet newborn affect oth malpresent malpos disprop lab deliv', 'ICD10_2010'), +('P03.2', 'Fetus and newborn affected by forceps delivery', 'ICD10_2010'), +('P03.3', 'Fet and newborn affected deliv vacuum extractor ventouse', 'ICD10_2010'), +('P03.4', 'Fetus and newborn affected by caesarean delivery', 'ICD10_2010'), +('P03.5', 'Fetus and newborn affected by precipitate delivery', 'ICD10_2010'), +('P03.6', 'Fetus and newborn affected by abnormal uterine contractions', 'ICD10_2010'), +('P03.8', 'Fetus and newborn affected other spec comps of labour deliv', 'ICD10_2010'), +('P03.9', 'Fetus and newborn affected by comp of lab and deliv unsp', 'ICD10_2010'), +('P04', 'Fetus and newborn affected by noxious influences transmitted via placenta or breast milk', 'ICD10_2010'), +('P04.0', 'Fet newborn affect mat anaesth and analges preg lab del', 'ICD10_2010'), +('P04.1', 'Fetus and newborn affected by other maternal medication', 'ICD10_2010'), +('P04.2', 'Fetus and newborn affected by maternal use of tobacco', 'ICD10_2010'), +('P04.3', 'Fetus and newborn affected by maternal use of alcohol', 'ICD10_2010'), +('P04.4', 'Fetus and newborn affected by mat use of drugs of addiction', 'ICD10_2010'), +('P04.5', 'Fetus and newborn afect by mat use of nutritional chem subs', 'ICD10_2010'), +('P04.6', 'Fet newborn affect mat exposure to environml chem subs', 'ICD10_2010'), +('P04.8', 'Fetus and newborn affected by other mat noxious influences', 'ICD10_2010'), +('P04.9', 'Fetus and newborn affected by mat noxious influence unspec act', 'ICD10_2010'), +('P05', 'Slow fetal growth and fetal malnutrition', 'ICD10_2010'), +('P05.0', 'Light for gestational age', 'ICD10_2010'), +('P05.1', 'Small for gestational age', 'ICD10_2010'), +('P05.2', 'Fet malnutrit without mention light or small for gestat age', 'ICD10_2010'), +('P05.9', 'Slow fetal growth, unspecified', 'ICD10_2010'), +('P07', 'Disorders related to short gestation and low birth weight, not elsewhere classified', 'ICD10_2010'), +('P07.0', 'Extremely low birth weight', 'ICD10_2010'), +('P07.1', 'Other low birth weight', 'ICD10_2010'), +('P07.2', 'Extreme immaturity', 'ICD10_2010'), +('P07.3', 'Other preterm infants', 'ICD10_2010'), +('P08', 'Disorders related to long gestation and high birth weight', 'ICD10_2010'), +('P08.0', 'Exceptionally large baby', 'ICD10_2010'), +('P08.1', 'Other heavy for gestational age infants', 'ICD10_2010'), +('P08.2', 'Post-term infant, not heavy for gestational age', 'ICD10_2010'), +('P10', 'Intracranial laceration and haemorrhage due to birth injury', 'ICD10_2010'), +('P10.0', 'Subdural haemorrhage due to birth injury', 'ICD10_2010'), +('P10.1', 'Cerebral haemorrhage due to birth injury', 'ICD10_2010'), +('P10.2', 'Intraventricular haemorrhage due to birth injury', 'ICD10_2010'), +('P10.3', 'Subarachnoid haemorrhage due to birth injury', 'ICD10_2010'), +('P10.4', 'Tentorial tear due to birth injury', 'ICD10_2010'), +('P10.8', 'Oth intracranial lacerations and haemorrhages due birth inj', 'ICD10_2010'), +('P10.9', 'Unsp intracranial laceration and haemorrhage due birth inj', 'ICD10_2010'), +('P11', 'Other birth injuries to central nervous system', 'ICD10_2010'), +('P11.0', 'Cerebral oedema due to birth injury', 'ICD10_2010'), +('P11.1', 'Other specified brain damage due to birth injury', 'ICD10_2010'), +('P11.2', 'Unspecified brain damage due to birth injury', 'ICD10_2010'), +('P11.3', 'Birth injury to facial nerve', 'ICD10_2010'), +('P11.4', 'Birth injury to other cranial nerves', 'ICD10_2010'), +('P11.5', 'Birth injury to spine and spinal cord', 'ICD10_2010'), +('P11.9', 'Birth injury to central nervous system, unspecified', 'ICD10_2010'), +('P12', 'Birth injury to scalp', 'ICD10_2010'), +('P12.0', 'Cephalhaematoma due to birth injury', 'ICD10_2010'), +('P12.1', 'Chignon due to birth injury', 'ICD10_2010'), +('P12.2', 'Epicranial subaponeurotic haemorrhage due to birth injury', 'ICD10_2010'), +('P12.3', 'Bruising of scalp due to birth injury', 'ICD10_2010'), +('P12.4', 'Monitoring injury of scalp of newborn', 'ICD10_2010'), +('P12.8', 'Other birth injuries to scalp', 'ICD10_2010'), +('P12.9', 'Birth injury to scalp, unspecified', 'ICD10_2010'), +('P13', 'Birth injury to skeleton', 'ICD10_2010'), +('P13.0', 'Fracture of skull due to birth injury', 'ICD10_2010'), +('P13.1', 'Other birth injuries to skull', 'ICD10_2010'), +('P13.2', 'Birth injury to femur', 'ICD10_2010'), +('P13.3', 'Birth injury to other long bones', 'ICD10_2010'), +('P13.4', 'Fracture of clavicle due to birth injury', 'ICD10_2010'), +('P13.8', 'Birth injuries to other parts of skeleton', 'ICD10_2010'), +('P13.9', 'Birth injury to skeleton, unspecified', 'ICD10_2010'), +('P14', 'Birth injury to peripheral nervous system', 'ICD10_2010'), +('P14.0', 'Erb\'s paralysis due to birth injury', 'ICD10_2010'), +('P14.1', 'Klumpke\'s paralysis due to birth injury', 'ICD10_2010'), +('P14.2', 'Phrenic nerve paralysis due to birth injury', 'ICD10_2010'), +('P14.3', 'Other brachial plexus birth injuries', 'ICD10_2010'), +('P14.8', 'Birth injuries to other parts of peripheral nervous system', 'ICD10_2010'), +('P14.9', 'Birth injury to peripheral nervous system, unspecified', 'ICD10_2010'), +('P15', 'Other birth injuries', 'ICD10_2010'), +('P15.0', 'Birth injury to liver', 'ICD10_2010'), +('P15.1', 'Birth injury to spleen', 'ICD10_2010'), +('P15.2', 'Sternomastoid injury due to birth injury', 'ICD10_2010'), +('P15.3', 'Birth injury to eye', 'ICD10_2010'), +('P15.4', 'Birth injury to face', 'ICD10_2010'), +('P15.5', 'Birth injury to external genitalia', 'ICD10_2010'), +('P15.6', 'Subcutaneous fat necrosis due to birth injury', 'ICD10_2010'), +('P15.8', 'Other specified birth injuries', 'ICD10_2010'), +('P15.9', 'Birth injury, unspecified', 'ICD10_2010'), +('P20', 'Intrauterine hypoxia', 'ICD10_2010'), +('P20.0', 'Intrauterine hypoxia first noted before onset of labour', 'ICD10_2010'), +('P20.1', 'Intrauterine hypoxia first noted during labour and delivery', 'ICD10_2010'), +('P20.9', 'Intrauterine hypoxia, unspecified', 'ICD10_2010'), +('P21', 'Birth asphyxia', 'ICD10_2010'), +('P21.0', 'Severe birth asphyxia', 'ICD10_2010'), +('P21.1', 'Mild and moderate birth asphyxia', 'ICD10_2010'), +('P21.9', 'Birth asphyxia, unspecified', 'ICD10_2010'), +('P22', 'Respiratory distress of newborn', 'ICD10_2010'), +('P22.0', 'Respiratory distress syndrome of newborn', 'ICD10_2010'), +('P22.1', 'Transient tachypnoea of newborn', 'ICD10_2010'), +('P22.8', 'Other respiratory distress of newborn', 'ICD10_2010'), +('P22.9', 'Respiratory distress of newborn, unspecified', 'ICD10_2010'), +('P23', 'Congenital pneumonia', 'ICD10_2010'), +('P23.0', 'Congenital pneumonia due to viral agent', 'ICD10_2010'), +('P23.1', 'Congenital pneumonia due to chlamydia', 'ICD10_2010'), +('P23.2', 'Congenital pneumonia due to staphylococcus', 'ICD10_2010'), +('P23.3', 'Congenital pneumonia due to streptococcus, group b', 'ICD10_2010'), +('P23.4', 'Congenital pneumonia due to escherichia coli', 'ICD10_2010'), +('P23.5', 'Congenital pneumonia due to pseudomonas', 'ICD10_2010'), +('P23.6', 'Congenital pneumonia due to other bacterial agents', 'ICD10_2010'), +('P23.8', 'Congenital pneumonia due to other organisms', 'ICD10_2010'), +('P23.9', 'Congenital pneumonia, unspecified', 'ICD10_2010'), +('P24', 'Neonatal aspiration syndromes', 'ICD10_2010'), +('P24.0', 'Neonatal aspiration of meconium', 'ICD10_2010'), +('P24.1', 'Neonatal aspiration of amniotic fluid and mucus', 'ICD10_2010'), +('P24.2', 'Neonatal aspiration of blood', 'ICD10_2010'), +('P24.3', 'Neonatal aspiration of milk and regurgitated food', 'ICD10_2010'), +('P24.8', 'Other neonatal aspiration syndromes', 'ICD10_2010'), +('P24.9', 'Neonatal aspiration syndrome, unspecified', 'ICD10_2010'), +('P25', 'Interstitial emphysema and related conditions originating in the perinatal period', 'ICD10_2010'), +('P25.0', 'Interstitial emphysema originating in the perinatal period', 'ICD10_2010'), +('P25.1', 'Pneumothorax originating in the perinatal period', 'ICD10_2010'), +('P25.2', 'Pneumomediastinum originating in the perinatal period', 'ICD10_2010'), +('P25.3', 'Pneumopericardium originating in the perinatal period', 'ICD10_2010'), +('P25.8', 'Oth conds rel interstit emphysema orig in perinatal period', 'ICD10_2010'), +('P26', 'Pulmonary haemorrhage originating in the perinatal period', 'ICD10_2010'), +('P26.0', 'Tracheobronchial haemorrhage origin in the perinatal period', 'ICD10_2010'), +('P26.1', 'Massive pulmonary haemorrhage orig in the perinatal period', 'ICD10_2010'), +('P26.8', 'Oth pulmonary haemorrhages originating in perinatal period', 'ICD10_2010'), +('P26.9', 'Unspec pulmonary haemorrhage origin in the perinatal period', 'ICD10_2010'), +('P27', 'Chronic respiratory disease originating in the perinatal period', 'ICD10_2010'), +('P27.0', 'Wilson-mikity syndrome', 'ICD10_2010'), +('P27.1', 'Bronchopulmonary dysplasia origin in the perinatal period', 'ICD10_2010'), +('P27.8', 'Other chronic resp diseases origin in the perinatal period', 'ICD10_2010'), +('P27.9', 'Unspec chronic resp disease origin in the perinatal period', 'ICD10_2010'), +('P28', 'Other respiratory conditions originating in the perinatal period', 'ICD10_2010'), +('P28.0', 'Primary atelectasis of newborn', 'ICD10_2010'), +('P28.1', 'Other and unspecified atelectasis of newborn', 'ICD10_2010'), +('P28.2', 'Cyanotic attacks of newborn', 'ICD10_2010'), +('P28.3', 'Primary sleep apnoea of newborn', 'ICD10_2010'), +('P28.4', 'Other apnoea of newborn', 'ICD10_2010'), +('P28.5', 'Respiratory failure of newborn', 'ICD10_2010'), +('P28.8', 'Other specified respiratory conditions of newborn', 'ICD10_2010'), +('P28.9', 'Respiratory condition of newborn, unspecified', 'ICD10_2010'), +('P29', 'Cardiovascular disorders originating in the perinatal period', 'ICD10_2010'), +('P29.0', 'Neonatal cardiac failure', 'ICD10_2010'), +('P29.1', 'Neonatal cardiac dysrhythmia', 'ICD10_2010'), +('P29.2', 'Neonatal hypertension', 'ICD10_2010'), +('P29.3', 'Persistent fetal circulation', 'ICD10_2010'), +('P29.4', 'Transient myocardial ischaemia of newborn', 'ICD10_2010'), +('P29.8', 'Oth cardiovascular disorders origin in the perinatal period', 'ICD10_2010'), +('P29.9', 'Cardiovascular disorder origin in the perinatal period unsp', 'ICD10_2010'), +('P35', 'Congenital viral diseases', 'ICD10_2010'), +('P35.0', 'Congenital rubella syndrome', 'ICD10_2010'), +('P35.1', 'Congenital cytomegalovirus infection', 'ICD10_2010'), +('P35.2', 'Congenital herpesviral [herpes simplex] infection', 'ICD10_2010'), +('P35.3', 'Congenital viral hepatitis', 'ICD10_2010'), +('P35.8', 'Other congenital viral diseases', 'ICD10_2010'), +('P35.9', 'Congenital viral disease, unspecified', 'ICD10_2010'), +('P36', 'Bacterial sepsis of newborn', 'ICD10_2010'), +('P36.0', 'Sepsis of newborn due to streptococcus, group b', 'ICD10_2010'), +('P36.1', 'Sepsis of newborn due to other and unspecified streptococci', 'ICD10_2010'), +('P36.2', 'Sepsis of newborn due to staphylococcus aureus', 'ICD10_2010'), +('P36.3', 'Sepsis of newborn due to other and unspecified staphylococci', 'ICD10_2010'), +('P36.4', 'Sepsis of newborn due to escherichia coli', 'ICD10_2010'), +('P36.5', 'Sepsis of newborn due to anaerobes', 'ICD10_2010'), +('P36.8', 'Other bacterial sepsis of newborn', 'ICD10_2010'), +('P36.9', 'Bacterial sepsis of newborn, unspecified', 'ICD10_2010'), +('P37', 'Other congenital infectious and parasitic diseases', 'ICD10_2010'), +('P37.0', 'Congenital tuberculosis', 'ICD10_2010'), +('P37.1', 'Congenital toxoplasmosis', 'ICD10_2010'), +('P37.2', 'Neonatal (disseminated) listeriosis', 'ICD10_2010'), +('P37.3', 'Congenital falciparum malaria', 'ICD10_2010'), +('P37.4', 'Other congenital malaria', 'ICD10_2010'), +('P37.5', 'Neonatal candidiasis', 'ICD10_2010'), +('P37.8', 'Other specified congenital infectious and parasitic diseases', 'ICD10_2010'), +('P37.9', 'Congenital infectious and parasitic disease, unspecified', 'ICD10_2010'), +('P38', 'Omphalitis of newborn with or without mild haemorrhage', 'ICD10_2010'), +('P39', 'Other infections specific to the perinatal period', 'ICD10_2010'), +('P39.0', 'Neonatal infective mastitis', 'ICD10_2010'), +('P39.1', 'Neonatal conjunctivitis and dacryocystitis', 'ICD10_2010'), +('P39.2', 'Intra-amniotic infection of fetus, not elsewhere classified', 'ICD10_2010'), +('P39.3', 'Neonatal urinary tract infection', 'ICD10_2010'), +('P39.4', 'Neonatal skin infection', 'ICD10_2010'), +('P39.8', 'Other specified infections specific to the perinatal period', 'ICD10_2010'), +('P39.9', 'Infection specific to the perinatal period, unspecified', 'ICD10_2010'), +('P50', 'Fetal blood loss', 'ICD10_2010'), +('P50.0', 'Fetal blood loss from vasa praevia', 'ICD10_2010'), +('P50.1', 'Fetal blood loss from ruptured cord', 'ICD10_2010'), +('P50.2', 'Fetal blood loss from placenta', 'ICD10_2010'), +('P50.3', 'Haemorrhage into co-twin', 'ICD10_2010'), +('P50.4', 'Haemorrhage into maternal circulation', 'ICD10_2010'), +('P50.5', 'Fetal blood loss from cut end of co-twin\'s cord', 'ICD10_2010'), +('P50.8', 'Other fetal blood loss', 'ICD10_2010'), +('P50.9', 'Fetal blood loss, unspecified', 'ICD10_2010'), +('P51', 'Umbilical haemorrhage of newborn', 'ICD10_2010'), +('P51.0', 'Massive umbilical haemorrhage of newborn', 'ICD10_2010'), +('P51.8', 'Other umbilical haemorrhages of newborn', 'ICD10_2010'), +('P51.9', 'Umbilical haemorrhage of newborn, unspecified', 'ICD10_2010'), +('P52', 'Intracranial nontraumatic haemorrhage of fetus and newborn', 'ICD10_2010'), +('P52.0', 'Intraventric (nontraumatic) haemorhage grade 1 fet newborn', 'ICD10_2010'), +('P52.1', 'Intraventric (nontraumatic) haemorhage grade 2 fet newborn', 'ICD10_2010'), +('P52.2', 'Intraventric (nontraumatic) haemorhage grade 3 fet newborn', 'ICD10_2010'), +('P52.3', 'Unspec intraventric (nontraumatic) haemorh fetus newborn', 'ICD10_2010'), +('P52.4', 'Intracerebral (nontraumatic) haemorrhage of fet and newborn', 'ICD10_2010'), +('P52.5', 'Subarachnoid (nontraumatic) haemorrhage of fetus and newborn', 'ICD10_2010'), +('P52.6', 'Cerebelar (nontraum) an post fossa haemorhage fet newborn', 'ICD10_2010'), +('P52.8', 'Oth intracranial (nontraumatic) haemorrhages fetus newborn', 'ICD10_2010'), +('P52.9', 'Intracranial (nontraumatic) haemorrhage fetus newborn unsp', 'ICD10_2010'), +('P53', 'Haemorrhagic disease of fetus and newborn', 'ICD10_2010'), +('P54', 'Other neonatal haemorrhages', 'ICD10_2010'), +('P54.0', 'Neonatal haematemesis', 'ICD10_2010'), +('P54.1', 'Neonatal melaena', 'ICD10_2010'), +('P54.2', 'Neonatal rectal haemorrhage', 'ICD10_2010'), +('P54.3', 'Other neonatal gastrointestinal haemorrhage', 'ICD10_2010'), +('P54.4', 'Neonatal adrenal haemorrhage', 'ICD10_2010'), +('P54.5', 'Neonatal cutaneous haemorrhage', 'ICD10_2010'), +('P54.6', 'Neonatal vaginal haemorrhage', 'ICD10_2010'), +('P54.8', 'Other specified neonatal haemorrhages', 'ICD10_2010'), +('P54.9', 'Neonatal haemorrhage, unspecified', 'ICD10_2010'), +('P55', 'Haemolytic disease of fetus and newborn', 'ICD10_2010'), +('P55.0', 'Rh isoimmunization of fetus and newborn', 'ICD10_2010'), +('P55.1', 'Abo isoimmunization of fetus and newborn', 'ICD10_2010'), +('P55.8', 'Other haemolytic diseases of fetus and newborn', 'ICD10_2010'), +('P55.9', 'Haemolytic disease of fetus and newborn, unspecified', 'ICD10_2010'), +('P56', 'Hydrops fetalis due to haemolytic disease', 'ICD10_2010'), +('P56.0', 'Hydrops fetalis due to isoimmunization', 'ICD10_2010'), +('P56.9', 'Hydrops fetalis due to other and unspec haemolytic disease', 'ICD10_2010'), +('P57', 'Kernicterus', 'ICD10_2010'), +('P57.0', 'Kernicterus due to isoimmunization', 'ICD10_2010'), +('P57.8', 'Other specified kernicterus', 'ICD10_2010'), +('P57.9', 'Kernicterus, unspecified', 'ICD10_2010'), +('P58', 'Neonatal jaundice due to other excessive haemolysis', 'ICD10_2010'), +('P58.0', 'Neonatal jaundice due to bruising', 'ICD10_2010'), +('P58.1', 'Neonatal jaundice due to bleeding', 'ICD10_2010'), +('P58.2', 'Neonatal jaundice due to infection', 'ICD10_2010'), +('P58.3', 'Neonatal jaundice due to polycythaemia', 'ICD10_2010'), +('P58.4', 'Neon jaund due drug tox transmit from mother or given nwbrn', 'ICD10_2010'), +('P58.5', 'Neonatal jaundice due to swallowed maternal blood', 'ICD10_2010'), +('P58.8', 'Neonatal jaundice due to oth specif excessive haemolysis', 'ICD10_2010'), +('P58.9', 'Neonatal jaundice due to excessive haemolysis, unspecified', 'ICD10_2010'), +('P59', 'Neonatal jaundice from other and unspecified causes', 'ICD10_2010'), +('P59.0', 'Neonatal jaundice associated with preterm delivery', 'ICD10_2010'), +('P59.1', 'Inspissated bile syndrome', 'ICD10_2010'), +('P59.2', 'Neonat jaundice from oth and unspec hepatocellul damage', 'ICD10_2010'), +('P59.3', 'Neonatal jaundice from breast milk inhibitor', 'ICD10_2010'), +('P59.8', 'Neonatal jaundice from other specified causes', 'ICD10_2010'), +('P59.9', 'Neonatal jaundice, unspecified', 'ICD10_2010'), +('P60', 'Disseminated intravascular coagulation of fetus and newborn', 'ICD10_2010'), +('P61', 'Other perinatal haematological disorders', 'ICD10_2010'), +('P61.0', 'Transient neonatal thrombocytopenia', 'ICD10_2010'), +('P61.1', 'Polycythaemia neonatorum', 'ICD10_2010'), +('P61.2', 'Anaemia of prematurity', 'ICD10_2010'), +('P61.3', 'Congenital anaemia from fetal blood loss', 'ICD10_2010'), +('P61.4', 'Other congenital anaemias, not elsewhere classified', 'ICD10_2010'), +('P61.5', 'Transient neonatal neutropenia', 'ICD10_2010'), +('P61.6', 'Other transient neonatal disorders of coagulation', 'ICD10_2010'), +('P61.8', 'Other specified perinatal haematological disorders', 'ICD10_2010'), +('P61.9', 'Perinatal haematological disorder, unspecified', 'ICD10_2010'), +('P70', 'Transitory disorders of carbohydrate metabolism specific to fetus and newborn', 'ICD10_2010'), +('P70.0', 'Syndrome of infant of mother with gestational diabetes', 'ICD10_2010'), +('P70.1', 'Syndrome of infant of a diabetic mother', 'ICD10_2010'), +('P70.2', 'Neonatal diabetes mellitus', 'ICD10_2010'), +('P70.3', 'Iatrogenic neonatal hypoglycaemia', 'ICD10_2010'), +('P70.4', 'Other neonatal hypoglycaemia', 'ICD10_2010'), +('P70.8', 'Oth transitory disorder carbohydrate metab fet and newborn', 'ICD10_2010'), +('P70.9', 'Trans disorder carbohydrate metab of fet and newborn unspec act', 'ICD10_2010'), +('P71', 'Transitory neonatal disorders of calcium and magnesium metabolism', 'ICD10_2010'), +('P71.0', 'Cow\'s milk hypocalcaemia in newborn', 'ICD10_2010'), +('P71.1', 'Other neonatal hypocalcaemia', 'ICD10_2010'), +('P71.2', 'Neonatal hypomagnesaemia', 'ICD10_2010'), +('P71.3', 'Neonatal tetany without calcium or magnesium deficiency', 'ICD10_2010'), +('P71.4', 'Transitory neonatal hypoparathyroidism', 'ICD10_2010'), +('P71.8', 'Oth transitory neonatl disord calcium and magnesium metab', 'ICD10_2010'), +('P71.9', 'Transitory neonatl disord calcium and magnes metab uns', 'ICD10_2010'), +('P72', 'Other transitory neonatal endocrine disorders', 'ICD10_2010'), +('P72.0', 'Neonatal goitre, not elsewhere classified', 'ICD10_2010'), +('P72.1', 'Transitory neonatal hyperthyroidism', 'ICD10_2010'), +('P72.2', 'Other transitory neonatal disorders of thyroid function nec', 'ICD10_2010'), +('P72.8', 'Other specified transitory neonatal endocrine disorders', 'ICD10_2010'), +('P72.9', 'Transitory neonatal endocrine disorder, unspecified', 'ICD10_2010'), +('P74', 'Other transitory neonatal electrolyte and metabolic disturbances', 'ICD10_2010'), +('P74.0', 'Late metabolic acidosis of newborn', 'ICD10_2010'), +('P74.1', 'Dehydration of newborn', 'ICD10_2010'), +('P74.2', 'Disturbances of sodium balance of newborn', 'ICD10_2010'), +('P74.3', 'Disturbances of potassium balance of newborn', 'ICD10_2010'), +('P74.4', 'Other transitory electrolyte disturbances of newborn', 'ICD10_2010'), +('P74.5', 'Transitory tyrosinaemia of newborn', 'ICD10_2010'), +('P74.8', 'Other transitory metabolic disturbances of newborn', 'ICD10_2010'), +('P74.9', 'Transitory metabolic disturbance of newborn, unspecified', 'ICD10_2010'), +('P75', 'Meconium ileus', 'ICD10_2010'), +('P76', 'Other intestinal obstruction of newborn', 'ICD10_2010'), +('P76.0', 'Meconium plug syndrome', 'ICD10_2010'), +('P76.1', 'Transitory ileus of newborn', 'ICD10_2010'), +('P76.2', 'Intestinal obstruction due to inspissated milk', 'ICD10_2010'), +('P76.8', 'Other specified intestinal obstruction of newborn', 'ICD10_2010'), +('P76.9', 'Intestinal obstruction of newborn, unspecified', 'ICD10_2010'), +('P77', 'Necrotizing enterocolitis of fetus and newborn', 'ICD10_2010'), +('P78', 'Other perinatal digestive system disorders', 'ICD10_2010'), +('P78.0', 'Perinatal intestinal perforation', 'ICD10_2010'), +('P78.1', 'Other neonatal peritonitis', 'ICD10_2010'), +('P78.2', 'Neonat haematemesis and melaena due swallow mat blood', 'ICD10_2010'), +('P78.3', 'Noninfective neonatal diarrhoea', 'ICD10_2010'), +('P78.8', 'Other specified perinatal digestive system disorders', 'ICD10_2010'), +('P78.9', 'Perinatal digestive system disorder, unspecified', 'ICD10_2010'), +('P80', 'Hypothermia of newborn', 'ICD10_2010'), +('P80.0', 'Cold injury syndrome', 'ICD10_2010'), +('P80.8', 'Other hypothermia of newborn', 'ICD10_2010'), +('P80.9', 'Hypothermia of newborn, unspecified', 'ICD10_2010'), +('P81', 'Other disturbances of temperature regulation of newborn', 'ICD10_2010'), +('P81.0', 'Environmental hyperthermia of newborn', 'ICD10_2010'), +('P81.8', 'Oth spec disturbances of temperature regulation of newborn', 'ICD10_2010'), +('P81.9', 'Disturbance of temperature regulation of newborn', 'ICD10_2010'), +('P83', 'Other conditions of integument specific to fetus and newborn', 'ICD10_2010'), +('P83.0', 'Sclerema neonatorum', 'ICD10_2010'), +('P83.1', 'Neonatal erythema toxicum', 'ICD10_2010'), +('P83.2', 'Hydrops fetalis not due to haemolytic disease', 'ICD10_2010'), +('P83.3', 'Other and unspecified oedema specific to fetus and newborn', 'ICD10_2010'), +('P83.4', 'Breast engorgement of newborn', 'ICD10_2010'), +('P83.5', 'Congenital hydrocele', 'ICD10_2010'), +('P83.6', 'Umbilical polyp of newborn', 'ICD10_2010'), +('P83.8', 'Other spec cond of integument specific to fetus and newborn', 'ICD10_2010'), +('P83.9', 'Condition of integument specific to fetus and newborn uns', 'ICD10_2010'), +('P90', 'Convulsions of newborn', 'ICD10_2010'), +('P91', 'Other disturbances of cerebral status of newborn', 'ICD10_2010'), +('P91.0', 'Neonatal cerebral ischaemia', 'ICD10_2010'), +('P91.1', 'Acquired periventricular cysts of newborn', 'ICD10_2010'), +('P91.2', 'Neonatal cerebral leukomalacia', 'ICD10_2010'), +('P91.3', 'Neonatal cerebral irritability', 'ICD10_2010'), +('P91.4', 'Neonatal cerebral depression', 'ICD10_2010'), +('P91.5', 'Neonatal coma', 'ICD10_2010'), +('P91.6', 'Hypoxic ischaemic encephalopathy of newborn', 'ICD10_2010'), +('P91.8', 'Other specified disturbances of cerebral status of newborn', 'ICD10_2010'), +('P91.9', 'Disturbance of cerebral status of newborn, unspecified', 'ICD10_2010'), +('P92', 'Feeding problems of newborn', 'ICD10_2010'), +('P92.0', 'Vomiting in newborn', 'ICD10_2010'), +('P92.1', 'Regurgitation and rumination in newborn', 'ICD10_2010'), +('P92.2', 'Slow feeding of newborn', 'ICD10_2010'), +('P92.3', 'Underfeeding of newborn', 'ICD10_2010'), +('P92.4', 'Overfeeding of newborn', 'ICD10_2010'), +('P92.5', 'Neonatal difficulty in feeding at breast', 'ICD10_2010'), +('P92.8', 'Other feeding problems of newborn', 'ICD10_2010'), +('P92.9', 'Feeding problem of newborn, unspecified', 'ICD10_2010'), +('P93', 'Reactions and intoxications due drug admin fet and newborn', 'ICD10_2010'), +('P94', 'Disorders of muscle tone of newborn', 'ICD10_2010'), +('P94.0', 'Transient neonatal myasthenia gravis', 'ICD10_2010'), +('P94.1', 'Congenital hypertonia', 'ICD10_2010'), +('P94.2', 'Congenital hypotonia', 'ICD10_2010'), +('P94.8', 'Other disorders of muscle tone of newborn', 'ICD10_2010'), +('P94.9', 'Disorder of muscle tone of newborn, unspecified', 'ICD10_2010'), +('P95', 'Fetal death of unspecified cause', 'ICD10_2010'), +('P96', 'Other conditions originating in the perinatal period', 'ICD10_2010'), +('P96.0', 'Congenital renal failure', 'ICD10_2010'), +('P96.1', 'Neonat withdrawal symptom from mat use of drug of addiction', 'ICD10_2010'), +('P96.2', 'Withdrawal symptoms from therapeutic use of drugs in newborn', 'ICD10_2010'), +('P96.3', 'Wide cranial sutures of newborn', 'ICD10_2010'), +('P96.4', 'Termination of pregnancy, fetus and newborn', 'ICD10_2010'), +('P96.5', 'Complicationss of intrauterine procedures nec', 'ICD10_2010'), +('P96.8', 'Other spec conditions originating in the perinatal period', 'ICD10_2010'), +('P96.9', 'Condition originating in the perinatal period, unspecified', 'ICD10_2010'), +('Q00', 'Anencephaly and similar malformations', 'ICD10_2010'), +('Q00.0', 'Anencephaly', 'ICD10_2010'), +('Q00.1', 'Craniorachischisis', 'ICD10_2010'), +('Q00.2', 'Iniencephaly', 'ICD10_2010'), +('Q01', 'Encephalocele', 'ICD10_2010'), +('Q01.0', 'Frontal encephalocele', 'ICD10_2010'), +('Q01.1', 'Nasofrontal encephalocele', 'ICD10_2010'), +('Q01.2', 'Occipital encephalocele', 'ICD10_2010'), +('Q01.8', 'Encephalocele of other sites', 'ICD10_2010'), +('Q01.9', 'Encephalocele, unspecified', 'ICD10_2010'), +('Q02', 'Microcephaly', 'ICD10_2010'), +('Q03', 'Congenital hydrocephalus', 'ICD10_2010'), +('Q03.0', 'Malformations of aqueduct of sylvius', 'ICD10_2010'), +('Q03.1', 'Atresia of foramina of magendie and luschka', 'ICD10_2010'), +('Q03.8', 'Other congenital hydrocephalus', 'ICD10_2010'), +('Q03.9', 'Congenital hydrocephalus, unspecified', 'ICD10_2010'), +('Q04', 'Other congenital malformations of brain', 'ICD10_2010'), +('Q04.0', 'Congenital malformations of corpus callosum', 'ICD10_2010'), +('Q04.1', 'Arhinencephaly', 'ICD10_2010'), +('Q04.2', 'Holoprosencephaly', 'ICD10_2010'), +('Q04.3', 'Other reduction deformities of brain', 'ICD10_2010'), +('Q04.4', 'Septo-optic dysplasia', 'ICD10_2010'), +('Q04.5', 'Megalencephaly', 'ICD10_2010'), +('Q04.6', 'Congenital cerebral cysts', 'ICD10_2010'), +('Q04.8', 'Other specified congenital malformations of brain', 'ICD10_2010'), +('Q04.9', 'Congenital malformation of brain, unspecified', 'ICD10_2010'), +('Q05', 'Spina bifida', 'ICD10_2010'), +('Q05.0', 'Cervical spina bifida with hydrocephalus', 'ICD10_2010'), +('Q05.1', 'Thoracic spina bifida with hydrocephalus', 'ICD10_2010'), +('Q05.2', 'Lumbar spina bifida with hydrocephalus', 'ICD10_2010'), +('Q05.3', 'Sacral spina bifida with hydrocephalus', 'ICD10_2010'), +('Q05.4', 'Unspecified spina bifida with hydrocephalus', 'ICD10_2010'), +('Q05.5', 'Cervical spina bifida without hydrocephalus', 'ICD10_2010'), +('Q05.6', 'Thoracic spina bifida without hydrocephalus', 'ICD10_2010'), +('Q05.7', 'Lumbar spina bifida without hydrocephalus', 'ICD10_2010'), +('Q05.8', 'Sacral spina bifida without hydrocephalus', 'ICD10_2010'), +('Q05.9', 'Spina bifida, unspecified', 'ICD10_2010'), +('Q06', 'Other congenital malformations of spinal cord', 'ICD10_2010'), +('Q06.0', 'Amyelia', 'ICD10_2010'), +('Q06.1', 'Hypoplasia and dysplasia of spinal cord', 'ICD10_2010'), +('Q06.2', 'Diastematomyelia', 'ICD10_2010'), +('Q06.3', 'Other congenital cauda equina malformations', 'ICD10_2010'), +('Q06.4', 'Hydromyelia', 'ICD10_2010'), +('Q06.8', 'Other specified congenital malformations of spinal cord', 'ICD10_2010'), +('Q06.9', 'Congenital malformation of spinal cord, unspecified', 'ICD10_2010'), +('Q07', 'Other congenital malformations of nervous system', 'ICD10_2010'), +('Q07.0', 'Arnold-chiari syndrome', 'ICD10_2010'), +('Q07.8', 'Other specified congenital malformations of nervous system', 'ICD10_2010'), +('Q07.9', 'Congenital malformation of nervous system, unspecified', 'ICD10_2010'), +('Q10', 'Congenital malformations of eyelid, lacrimal apparatus and orbit', 'ICD10_2010'), +('Q10.0', 'Congenital ptosis', 'ICD10_2010'), +('Q10.1', 'Congenital ectropion', 'ICD10_2010'), +('Q10.2', 'Congenital entropion', 'ICD10_2010'), +('Q10.3', 'Other congenital malformations of eyelid', 'ICD10_2010'), +('Q10.4', 'Absence and agenesis of lacrimal apparatus', 'ICD10_2010'), +('Q10.5', 'Congenital stenosis and stricture of lacrimal duct', 'ICD10_2010'), +('Q10.6', 'Other congenital malformations of lacrimal apparatus', 'ICD10_2010'), +('Q10.7', 'Congenital malformation of orbit', 'ICD10_2010'), +('Q11', 'Anophthalmos, microphthalmos and macrophthalmos', 'ICD10_2010'), +('Q11.0', 'Cystic eyeball', 'ICD10_2010'), +('Q11.1', 'Other anophthalmos', 'ICD10_2010'), +('Q11.2', 'Microphthalmos', 'ICD10_2010'), +('Q11.3', 'Macrophthalmos', 'ICD10_2010'), +('Q12', 'Congenital lens malformations', 'ICD10_2010'), +('Q12.0', 'Congenital cataract', 'ICD10_2010'), +('Q12.1', 'Congenital displaced lens', 'ICD10_2010'), +('Q12.2', 'Coloboma of lens', 'ICD10_2010'), +('Q12.3', 'Congenital aphakia', 'ICD10_2010'), +('Q12.4', 'Spherophakia', 'ICD10_2010'), +('Q12.8', 'Other congenital lens malformations', 'ICD10_2010'), +('Q12.9', 'Congenital lens malformation, unspecified', 'ICD10_2010'), +('Q13', 'Congenital malformations of anterior segment of eye', 'ICD10_2010'), +('Q13.0', 'Coloboma of iris', 'ICD10_2010'), +('Q13.1', 'Absence of iris', 'ICD10_2010'), +('Q13.2', 'Other congenital malformations of iris', 'ICD10_2010'), +('Q13.3', 'Congenital corneal opacity', 'ICD10_2010'), +('Q13.4', 'Other congenital corneal malformations', 'ICD10_2010'), +('Q13.5', 'Blue sclera', 'ICD10_2010'), +('Q13.8', 'Other congenital malformations of anterior segment of eye', 'ICD10_2010'), +('Q13.9', 'Congenital malformation of anterior segment of eye unspecified', 'ICD10_2010'), +('Q14', 'Congenital malformations of posterior segment of eye', 'ICD10_2010'), +('Q14.0', 'Congenital malformation of vitreous humour', 'ICD10_2010'), +('Q14.1', 'Congenital malformation of retina', 'ICD10_2010'), +('Q14.2', 'Congenital malformation of optic disc', 'ICD10_2010'), +('Q14.3', 'Congenital malformation of choroid', 'ICD10_2010'), +('Q14.8', 'Other congenital malformations of posterior segment of eye', 'ICD10_2010'), +('Q14.9', 'Congenital malformation of posterior segment of eye unspecified', 'ICD10_2010'), +('Q15', 'Other congenital malformations of eye', 'ICD10_2010'), +('Q15.0', 'Congenital glaucoma', 'ICD10_2010'), +('Q15.8', 'Other specified congenital malformations of eye', 'ICD10_2010'), +('Q15.9', 'Congenital malformation of eye, unspecified', 'ICD10_2010'), +('Q16', 'Congenital malformations of ear causing impairment of hearing', 'ICD10_2010'), +('Q16.0', 'Congenital absence of (ear) auricle', 'ICD10_2010'), +('Q16.1', 'Congenital absence atresia & stricture auditory canal (external)', 'ICD10_2010'), +('Q16.2', 'Absence of eustachian tube', 'ICD10_2010'), +('Q16.3', 'Congenital malformation of ear ossicles', 'ICD10_2010'), +('Q16.4', 'Other congenital malformations of middle ear', 'ICD10_2010'), +('Q16.5', 'Congenital malformation of inner ear', 'ICD10_2010'), +('Q16.9', 'Congenital malform of ear causing impairment of hearing unspecified', 'ICD10_2010'), +('Q17', 'Other congenital malformations of ear', 'ICD10_2010'), +('Q17.0', 'Accessory auricle', 'ICD10_2010'), +('Q17.1', 'Macrotia', 'ICD10_2010'), +('Q17.2', 'Microtia', 'ICD10_2010'), +('Q17.3', 'Other misshapen ear', 'ICD10_2010'), +('Q17.4', 'Misplaced ear', 'ICD10_2010'), +('Q17.5', 'Prominent ear', 'ICD10_2010'), +('Q17.8', 'Other specified congenital malformations of ear', 'ICD10_2010'), +('Q17.9', 'Congenital malformation of ear, unspecified', 'ICD10_2010'), +('Q18', 'Other congenital malformations of face and neck', 'ICD10_2010'), +('Q18.0', 'Sinus, fistula and cyst of branchial cleft', 'ICD10_2010'), +('Q18.1', 'Preauricular sinus and cyst', 'ICD10_2010'), +('Q18.2', 'Other branchial cleft malformations', 'ICD10_2010'), +('Q18.3', 'Webbing of neck', 'ICD10_2010'), +('Q18.4', 'Macrostomia', 'ICD10_2010'), +('Q18.5', 'Microstomia', 'ICD10_2010'), +('Q18.6', 'Macrocheilia', 'ICD10_2010'), +('Q18.7', 'Microcheilia', 'ICD10_2010'), +('Q18.8', 'Other specified congenital malformations of face and neck', 'ICD10_2010'), +('Q18.9', 'Congenital malformation of face and neck, unspecified', 'ICD10_2010'), +('Q20', 'Congenital malformations of cardiac chambers and connections', 'ICD10_2010'), +('Q20.0', 'Common arterial trunk', 'ICD10_2010'), +('Q20.1', 'Double outlet right ventricle', 'ICD10_2010'), +('Q20.2', 'Double outlet left ventricle', 'ICD10_2010'), +('Q20.3', 'Discordant ventriculoarterial connection', 'ICD10_2010'), +('Q20.4', 'Double inlet ventricle', 'ICD10_2010'), +('Q20.5', 'Discordant atrioventricular connection', 'ICD10_2010'), +('Q20.6', 'Isomerism of atrial appendages', 'ICD10_2010'), +('Q20.8', 'Other congenital malformations of cardiac chambers and connections', 'ICD10_2010'), +('Q20.9', 'Congenital malformation of cardiac chambers and connections unspecified', 'ICD10_2010'), +('Q21', 'Congenital malformations of cardiac septa', 'ICD10_2010'), +('Q21.0', 'Ventricular septal defect', 'ICD10_2010'), +('Q21.1', 'Atrial septal defect', 'ICD10_2010'), +('Q21.2', 'Atrioventricular septal defect', 'ICD10_2010'), +('Q21.3', 'Tetralogy of fallot', 'ICD10_2010'), +('Q21.4', 'Aortopulmonary septal defect', 'ICD10_2010'), +('Q21.8', 'Other congenital malformations of cardiac septa', 'ICD10_2010'), +('Q21.9', 'Congenital malformation of cardiac septum, unspecified', 'ICD10_2010'), +('Q22', 'Congenital malformations of pulmonary and tricuspid valves', 'ICD10_2010'), +('Q22.0', 'Pulmonary valve atresia', 'ICD10_2010'), +('Q22.1', 'Congenital pulmonary valve stenosis', 'ICD10_2010'), +('Q22.2', 'Congenital pulmonary valve insufficiency', 'ICD10_2010'), +('Q22.3', 'Other congenital malformations of pulmonary valve', 'ICD10_2010'), +('Q22.4', 'Congenital tricuspid stenosis', 'ICD10_2010'), +('Q22.5', 'Ebstein\'s anomaly', 'ICD10_2010'), +('Q22.6', 'Hypoplastic right heart syndrome', 'ICD10_2010'), +('Q22.8', 'Other congenital malformations of tricuspid valve', 'ICD10_2010'), +('Q22.9', 'Congenital malformation of tricuspid valve, unspecified', 'ICD10_2010'), +('Q23', 'Congenital malformations of aortic and mitral valves', 'ICD10_2010'), +('Q23.0', 'Congenital stenosis of aortic valve', 'ICD10_2010'), +('Q23.1', 'Congenital insufficiency of aortic valve', 'ICD10_2010'), +('Q23.2', 'Congenital mitral stenosis', 'ICD10_2010'), +('Q23.3', 'Congenital mitral insufficiency', 'ICD10_2010'), +('Q23.4', 'Hypoplastic left heart syndrome', 'ICD10_2010'), +('Q23.8', 'Other congenital malformations of aortic and mitral valves', 'ICD10_2010'), +('Q23.9', 'Congenital malformation of aortic and mitral valves unspecified', 'ICD10_2010'), +('Q24', 'Other congenital malformations of heart', 'ICD10_2010'), +('Q24.0', 'Dextrocardia', 'ICD10_2010'), +('Q24.1', 'Laevocardia', 'ICD10_2010'), +('Q24.2', 'Cor triatriatum', 'ICD10_2010'), +('Q24.3', 'Pulmonary infundibular stenosis', 'ICD10_2010'), +('Q24.4', 'Congenital subaortic stenosis', 'ICD10_2010'), +('Q24.5', 'Malformation of coronary vessels', 'ICD10_2010'), +('Q24.6', 'Congenital heart block', 'ICD10_2010'), +('Q24.8', 'Other specified congenital malformations of heart', 'ICD10_2010'), +('Q24.9', 'Congenital malformation of heart, unspecified', 'ICD10_2010'), +('Q25', 'Congenital malformations of great arteries', 'ICD10_2010'), +('Q25.0', 'Patent ductus arteriosus', 'ICD10_2010'), +('Q25.1', 'Coarctation of aorta', 'ICD10_2010'), +('Q25.2', 'Atresia of aorta', 'ICD10_2010'), +('Q25.3', 'Stenosis of aorta', 'ICD10_2010'), +('Q25.4', 'Other congenital malformations of aorta', 'ICD10_2010'), +('Q25.5', 'Atresia of pulmonary artery', 'ICD10_2010'), +('Q25.6', 'Stenosis of pulmonary artery', 'ICD10_2010'), +('Q25.7', 'Other congenital malformations of pulmonary artery', 'ICD10_2010'), +('Q25.8', 'Other congenital malformations of great arteries', 'ICD10_2010'), +('Q25.9', 'Congenital malformation of great arteries, unspecified', 'ICD10_2010'), +('Q26', 'Congenital malformations of great veins', 'ICD10_2010'), +('Q26.0', 'Congenital stenosis of vena cava', 'ICD10_2010'), +('Q26.1', 'Persistent left superior vena cava', 'ICD10_2010'), +('Q26.2', 'Total anomalous pulmonary venous connection', 'ICD10_2010'), +('Q26.3', 'Partial anomalous pulmonary venous connection', 'ICD10_2010'), +('Q26.4', 'Anomalous pulmonary venous connection, unspecified', 'ICD10_2010'), +('Q26.5', 'Anomalous portal venous connection', 'ICD10_2010'), +('Q26.6', 'Portal vein-hepatic artery fistula', 'ICD10_2010'), +('Q26.8', 'Other congenital malformations of great veins', 'ICD10_2010'), +('Q26.9', 'Congenital malformation of great vein, unspecified', 'ICD10_2010'), +('Q27', 'Other congenital malformations of peripheral vascular system', 'ICD10_2010'), +('Q27.0', 'Congenital absence and hypoplasia of umbilical artery', 'ICD10_2010'), +('Q27.1', 'Congenital renal artery stenosis', 'ICD10_2010'), +('Q27.2', 'Other congenital malformations of renal artery', 'ICD10_2010'), +('Q27.3', 'Peripheral arteriovenous malformation', 'ICD10_2010'), +('Q27.4', 'Congenital phlebectasia', 'ICD10_2010'), +('Q27.8', 'Other specified congenitalo malformations of peripheral vascular system', 'ICD10_2010'), +('Q27.9', 'Congenital malformation of peripheral vascular system unspecified', 'ICD10_2010'), +('Q28', 'Other congenital malformations of circulatory system', 'ICD10_2010'), +('Q28.0', 'Arteriovenous malformation of precerebral vessels', 'ICD10_2010'), +('Q28.1', 'Other malformations of precerebral vessels', 'ICD10_2010'), +('Q28.2', 'Arteriovenous malformation of cerebral vessels', 'ICD10_2010'), +('Q28.3', 'Other malformations of cerebral vessels', 'ICD10_2010'), +('Q28.8', 'Other specified congenital malformations of circulatory system', 'ICD10_2010'), +('Q28.9', 'Congenital malformation of circulatory system, unspecified', 'ICD10_2010'), +('Q30', 'Congenital malformations of nose', 'ICD10_2010'), +('Q30.0', 'Choanal atresia', 'ICD10_2010'), +('Q30.1', 'Agenesis and underdevelopment of nose', 'ICD10_2010'), +('Q30.2', 'Fissured, notched and cleft nose', 'ICD10_2010'), +('Q30.3', 'Congenital perforated nasal septum', 'ICD10_2010'), +('Q30.8', 'Other congenital malformations of nose', 'ICD10_2010'), +('Q30.9', 'Congenital malformation of nose, unspecified', 'ICD10_2010'), +('Q31', 'Congenital malformations of larynx', 'ICD10_2010'), +('Q31.0', 'Web of larynx', 'ICD10_2010'), +('Q31.1', 'Congenital subglottic stenosis', 'ICD10_2010'), +('Q31.2', 'Laryngeal hypoplasia', 'ICD10_2010'), +('Q31.3', 'Laryngocele', 'ICD10_2010'), +('Q31.4', 'Congenital laryngeal stridor', 'ICD10_2010'), +('Q31.5', 'Congenital laryngomalacia', 'ICD10_2010'), +('Q31.8', 'Other congenital malformations of larynx', 'ICD10_2010'), +('Q31.9', 'Congenital malformation of larynx, unspecified', 'ICD10_2010'), +('Q32', 'Congenital malformations of trachea and bronchus', 'ICD10_2010'), +('Q32.0', 'Congenital tracheomalacia', 'ICD10_2010'), +('Q32.1', 'Other congenital malformations of trachea', 'ICD10_2010'), +('Q32.2', 'Congenital bronchomalacia', 'ICD10_2010'), +('Q32.3', 'Congenital stenosis of bronchus', 'ICD10_2010'), +('Q32.4', 'Other congenital malformations of bronchus', 'ICD10_2010'), +('Q33', 'Congenital malformations of lung', 'ICD10_2010'), +('Q33.0', 'Congenital cystic lung', 'ICD10_2010'), +('Q33.1', 'Accessory lobe of lung', 'ICD10_2010'), +('Q33.2', 'Sequestration of lung', 'ICD10_2010'), +('Q33.3', 'Agenesis of lung', 'ICD10_2010'), +('Q33.4', 'Congenital bronchiectasis', 'ICD10_2010'), +('Q33.5', 'Ectopic tissue in lung', 'ICD10_2010'), +('Q33.6', 'Hypoplasia and dysplasia of lung', 'ICD10_2010'), +('Q33.8', 'Other congenital malformations of lung', 'ICD10_2010'), +('Q33.9', 'Congenital malformation of lung, unspecified', 'ICD10_2010'), +('Q34', 'Other congenital malformations of respiratory system', 'ICD10_2010'), +('Q34.0', 'Anomaly of pleura', 'ICD10_2010'), +('Q34.1', 'Congenital cyst of mediastinum', 'ICD10_2010'), +('Q34.8', 'Other specified congenital malformations of respiratory system', 'ICD10_2010'), +('Q34.9', 'Congenital malformation of respiratory system, unspecified', 'ICD10_2010'), +('Q35', 'Cleft palate', 'ICD10_2010'), +('Q35.0', 'Cleft hard palate, bilateral*', 'ICD10_2010'), +('Q35.1', 'Cleft hard palate', 'ICD10_2010'), +('Q35.2', 'Cleft soft palate, bilateral*', 'ICD10_2010'), +('Q35.3', 'Cleft soft palate', 'ICD10_2010'), +('Q35.4', 'Cleft hard palate with cleft soft palate, bilateral*', 'ICD10_2010'), +('Q35.5', 'Cleft hard palate with cleft soft palate', 'ICD10_2010'), +('Q35.6', 'Cleft palate, medial', 'ICD10_2010'), +('Q35.7', 'Cleft uvula', 'ICD10_2010'), +('Q35.8', 'Cleft palate, unspecified, bilateral*', 'ICD10_2010'), +('Q35.9', 'Cleft palate, unspecified', 'ICD10_2010'), +('Q36', 'Cleft lip', 'ICD10_2010'), +('Q36.0', 'Cleft lip, bilateral', 'ICD10_2010'), +('Q36.1', 'Cleft lip, median', 'ICD10_2010'), +('Q36.9', 'Cleft lip, unilateral', 'ICD10_2010'), +('Q37', 'Cleft palate with cleft lip', 'ICD10_2010'), +('Q37.0', 'Cleft hard palate with bilateral cleft lip', 'ICD10_2010'), +('Q37.1', 'Cleft hard palate with unilateral cleft lip', 'ICD10_2010'), +('Q37.2', 'Cleft soft palate with bilateral cleft lip', 'ICD10_2010'), +('Q37.3', 'Cleft soft palate with unilateral cleft lip', 'ICD10_2010'), +('Q37.4', 'Cleft hard and soft palate with bilateral cleft lip', 'ICD10_2010'), +('Q37.5', 'Cleft hard and soft palate with unilateral cleft lip', 'ICD10_2010'), +('Q37.8', 'Unspecified cleft palate with bilateral cleft lip', 'ICD10_2010'), +('Q37.9', 'Unspecified cleft palate with unilateral cleft lip', 'ICD10_2010'), +('Q38', 'Other congenital malformations of tongue, mouth and pharynx', 'ICD10_2010'), +('Q38.0', 'Congenital malformations of lips, not elsewhere classified', 'ICD10_2010'), +('Q38.1', 'Ankyloglossia', 'ICD10_2010'), +('Q38.2', 'Macroglossia', 'ICD10_2010'), +('Q38.3', 'Other congenital malformations of tongue', 'ICD10_2010'), +('Q38.4', 'Congenital malformations of salivary glands and ducts', 'ICD10_2010'), +('Q38.5', 'Congenital malformations of palate, not elsewhere classified', 'ICD10_2010'), +('Q38.6', 'Other congenital malformations of mouth', 'ICD10_2010'), +('Q38.7', 'Pharyngeal pouch', 'ICD10_2010'), +('Q38.8', 'Other congenital malformations of pharynx', 'ICD10_2010'), +('Q39', 'Congenital malformations of oesophagus', 'ICD10_2010'), +('Q39.0', 'Atresia of oesophagus without fistula', 'ICD10_2010'), +('Q39.1', 'Atresia of oesophagus with tracheo-oesophageal fistula', 'ICD10_2010'), +('Q39.2', 'Congenital tracheo-oesophageal fistula without atresia', 'ICD10_2010'), +('Q39.3', 'Congenital stenosis and stricture of oesophagus', 'ICD10_2010'), +('Q39.4', 'Oesophageal web', 'ICD10_2010'), +('Q39.5', 'Congenital dilatation of oesophagus', 'ICD10_2010'), +('Q39.6', 'Diverticulum of oesophagus', 'ICD10_2010'), +('Q39.8', 'Other congenital malformations of oesophagus', 'ICD10_2010'), +('Q39.9', 'Congenital malformation of oesophagus, unspecified', 'ICD10_2010'), +('Q40', 'Other congenital malformations of upper alimentary tract', 'ICD10_2010'), +('Q40.0', 'Congenital hypertrophic pyloric stenosis', 'ICD10_2010'), +('Q40.1', 'Congenital hiatus hernia', 'ICD10_2010'), +('Q40.2', 'Other specified congenital malformations of stomach', 'ICD10_2010'), +('Q40.3', 'Congenital malformation of stomach, unspecified', 'ICD10_2010'), +('Q40.8', 'Other specified congenital malforms of upper alimentary tract', 'ICD10_2010'), +('Q40.9', 'Congenital malformation of upper alimentary tract, unspecified', 'ICD10_2010'), +('Q41', 'Congenital absence, atresia and stenosis of small intestine', 'ICD10_2010'), +('Q41.0', 'Congenital absence, atresia and stenosis of duodenum', 'ICD10_2010'), +('Q41.1', 'Congenital absence, atresia and stenosis of jejunum', 'ICD10_2010'), +('Q41.2', 'Congenital absence, atresia and stenosis of ileum', 'ICD10_2010'), +('Q41.8', 'Congenital absence atresia stenosis other specified parts small intestine', 'ICD10_2010'), +('Q41.9', 'Congenital absence atresia and stenosis small intestine part unspecified', 'ICD10_2010'), +('Q42', 'Congenital absence, atresia and stenosis of large intestine', 'ICD10_2010'), +('Q42.0', 'Congenital absence atresia and stenosis of rectum with fistula', 'ICD10_2010'), +('Q42.1', 'Congenital absence atresia and stenosis rectum without fistula', 'ICD10_2010'), +('Q42.2', 'Congenital absence atresia and stenosis anus with fistula', 'ICD10_2010'), +('Q42.3', 'Congenital absence atresia and stenosis anus without fistula', 'ICD10_2010'), +('Q42.8', 'Congenital absence atresia and stenosis other parts of large intest', 'ICD10_2010'), +('Q42.9', 'Congenital absce atresia and sten of large intest part unspecified', 'ICD10_2010'), +('Q43', 'Other congenital malformations of intestine', 'ICD10_2010'), +('Q43.0', 'Meckel\'s diverticulum', 'ICD10_2010'), +('Q43.1', 'Hirschsprung\'s disease', 'ICD10_2010'), +('Q43.2', 'Other congenital functional disorders of colon', 'ICD10_2010'), +('Q43.3', 'Congenital malformations of intestinal fixation', 'ICD10_2010'), +('Q43.4', 'Duplication of intestine', 'ICD10_2010'), +('Q43.5', 'Ectopic anus', 'ICD10_2010'), +('Q43.6', 'Congenital fistula of rectum and anus', 'ICD10_2010'), +('Q43.7', 'Persistent cloaca', 'ICD10_2010'), +('Q43.8', 'Other specified congenital malformations of intestine', 'ICD10_2010'), +('Q43.9', 'Congenital malformation of intestine, unspecified', 'ICD10_2010'), +('Q44', 'Congenital malformations of gallbladder, bile ducts and liver', 'ICD10_2010'), +('Q44.0', 'Agenesis, aplasia and hypoplasia of gallbladder', 'ICD10_2010'), +('Q44.1', 'Other congenital malformations of gallbladder', 'ICD10_2010'), +('Q44.2', 'Atresia of bile ducts', 'ICD10_2010'), +('Q44.3', 'Congenital stenosis and stricture of bile ducts', 'ICD10_2010'), +('Q44.4', 'Choledochal cyst', 'ICD10_2010'), +('Q44.5', 'Other congenital malformations of bile ducts', 'ICD10_2010'), +('Q44.6', 'Cystic disease of liver', 'ICD10_2010'), +('Q44.7', 'Other congenital malformations of liver', 'ICD10_2010'), +('Q45', 'Other congenital malformations of digestive system', 'ICD10_2010'), +('Q45.0', 'Agenesis, aplasia and hypoplasia of pancreas', 'ICD10_2010'), +('Q45.1', 'Annular pancreas', 'ICD10_2010'), +('Q45.2', 'Congenital pancreatic cyst', 'ICD10_2010'), +('Q45.3', 'Other congenital malformations of pancreas and pancreatic duct', 'ICD10_2010'), +('Q45.8', 'Other specified congenital malformations of digestive system', 'ICD10_2010'), +('Q45.9', 'Congenital malformation of digestive system, unspecified', 'ICD10_2010'), +('Q50', 'Congenital malformations of ovaries, fallopian tubes and broad ligaments', 'ICD10_2010'), +('Q50.0', 'Congenital absence of ovary', 'ICD10_2010'), +('Q50.1', 'Developmental ovarian cyst', 'ICD10_2010'), +('Q50.2', 'Congenital torsion of ovary', 'ICD10_2010'), +('Q50.3', 'Other congenital malformations of ovary', 'ICD10_2010'), +('Q50.4', 'Embryonic cyst of fallopian tube', 'ICD10_2010'), +('Q50.5', 'Embryonic cyst of broad ligament', 'ICD10_2010'), +('Q50.6', 'Other congenital malformations of fallopian tube and broad ligament', 'ICD10_2010'), +('Q51', 'Congenital malformations of uterus and cervix', 'ICD10_2010'), +('Q51.0', 'Agenesis and aplasia of uterus', 'ICD10_2010'), +('Q51.1', 'Doubling of uterus with doubling of cervix and vagina', 'ICD10_2010'), +('Q51.2', 'Other doubling of uterus', 'ICD10_2010'), +('Q51.3', 'Bicornate uterus', 'ICD10_2010'), +('Q51.4', 'Unicornate uterus', 'ICD10_2010'), +('Q51.5', 'Agenesis and aplasia of cervix', 'ICD10_2010'), +('Q51.6', 'Embryonic cyst of cervix', 'ICD10_2010'), +('Q51.7', 'Congenital fistulae btwn uterus and digestive and urinary tracts', 'ICD10_2010'), +('Q51.8', 'Other congenital malformations of uterus and cervix', 'ICD10_2010'), +('Q51.9', 'Congenital malformation of uterus and cervix, unspecified', 'ICD10_2010'), +('Q52', 'Other congenital malformations of female genitalia', 'ICD10_2010'), +('Q52.0', 'Congenital absence of vagina', 'ICD10_2010'), +('Q52.1', 'Doubling of vagina', 'ICD10_2010'), +('Q52.2', 'Congenital rectovaginal fistula', 'ICD10_2010'), +('Q52.3', 'Imperforate hymen', 'ICD10_2010'), +('Q52.4', 'Other congenital malformations of vagina', 'ICD10_2010'), +('Q52.5', 'Fusion of labia', 'ICD10_2010'), +('Q52.6', 'Congenital malformation of clitoris', 'ICD10_2010'), +('Q52.7', 'Other congenital malformations of vulva', 'ICD10_2010'), +('Q52.8', 'Other specified congenital malformations of female genitalia', 'ICD10_2010'), +('Q52.9', 'Congenital malformation of female genitalia, unspecified', 'ICD10_2010'), +('Q53', 'Undescended testicle', 'ICD10_2010'), +('Q53.0', 'Ectopic testis', 'ICD10_2010'), +('Q53.1', 'Undescended testicle, unilateral', 'ICD10_2010'), +('Q53.2', 'Undescended testicle, bilateral', 'ICD10_2010'), +('Q53.9', 'Undescended testicle, unspecified', 'ICD10_2010'), +('Q54', 'Hypospadias', 'ICD10_2010'), +('Q54.0', 'Hypospadias, balanic', 'ICD10_2010'), +('Q54.1', 'Hypospadias, penile', 'ICD10_2010'), +('Q54.2', 'Hypospadias, penoscrotal', 'ICD10_2010'), +('Q54.3', 'Hypospadias, perineal', 'ICD10_2010'), +('Q54.4', 'Congenital chordee', 'ICD10_2010'), +('Q54.8', 'Other hypospadias', 'ICD10_2010'), +('Q54.9', 'Hypospadias, unspecified', 'ICD10_2010'), +('Q55', 'Other congenital malformations of male genital organs', 'ICD10_2010'), +('Q55.0', 'Absence and aplasia of testis', 'ICD10_2010'), +('Q55.1', 'Hypoplasia of testis and scrotum', 'ICD10_2010'), +('Q55.2', 'Other congenital malformations of testis and scrotum', 'ICD10_2010'), +('Q55.3', 'Atresia of vas deferens', 'ICD10_2010'), +('Q55.4', 'Other congenital malformations vas deferens, epididymis seminal vesicles and prostate', 'ICD10_2010'), +('Q55.5', 'Congenital absence and aplasia of penis', 'ICD10_2010'), +('Q55.6', 'Other congenital malformations of penis', 'ICD10_2010'), +('Q55.8', 'Other specified congen malformations of male genital organs', 'ICD10_2010'), +('Q55.9', 'Congenital malformation of male genital organ, unspecified', 'ICD10_2010'), +('Q56', 'Indeterminate sex and pseudohermaphroditism', 'ICD10_2010'), +('Q56.0', 'Hermaphroditism, not elsewhere classified', 'ICD10_2010'), +('Q56.1', 'Male pseudohermaphroditism, not elsewhere classified', 'ICD10_2010'), +('Q56.2', 'Female pseudohermaphroditism, not elsewhere classified', 'ICD10_2010'), +('Q56.3', 'Pseudohermaphroditism, unspecified', 'ICD10_2010'), +('Q56.4', 'Indeterminate sex, unspecified', 'ICD10_2010'), +('Q60', 'Renal agenesis and other reduction defects of kidney', 'ICD10_2010'), +('Q60.0', 'Renal agenesis, unilateral', 'ICD10_2010'), +('Q60.1', 'Renal agenesis, bilateral', 'ICD10_2010'), +('Q60.2', 'Renal agenesis, unspecified', 'ICD10_2010'), +('Q60.3', 'Renal hypoplasia, unilateral', 'ICD10_2010'), +('Q60.4', 'Renal hypoplasia, bilateral', 'ICD10_2010'), +('Q60.5', 'Renal hypoplasia, unspecified', 'ICD10_2010'), +('Q60.6', 'Potter\'s syndrome', 'ICD10_2010'), +('Q61', 'Cystic kidney disease', 'ICD10_2010'), +('Q61.0', 'Congenital single renal cyst', 'ICD10_2010'), +('Q61.1', 'Polycystic kidney, autosomal recessive', 'ICD10_2010'), +('Q61.2', 'Polycystic kidney, autosomal dominant', 'ICD10_2010'), +('Q61.3', 'Polycystic kidney, unspecified', 'ICD10_2010'), +('Q61.4', 'Renal dysplasia', 'ICD10_2010'), +('Q61.5', 'Medullary cystic kidney', 'ICD10_2010'), +('Q61.8', 'Other cystic kidney diseases', 'ICD10_2010'), +('Q61.9', 'Cystic kidney disease, unspecified', 'ICD10_2010'); +INSERT INTO `icd10` (`ID_ICD10`, `Diagnosa`, `Versi_ICD10`) VALUES +('Q62', 'Congenital obstructive defects of renal pelvis and congenital malformations of ureter', 'ICD10_2010'), +('Q62.0', 'Congenital hydronephrosis', 'ICD10_2010'), +('Q62.1', 'Atresia and stenosis of ureter', 'ICD10_2010'), +('Q62.2', 'Congenital megaloureter', 'ICD10_2010'), +('Q62.3', 'Other obstructive defects of renal pelvis and ureter', 'ICD10_2010'), +('Q62.4', 'Agenesis of ureter', 'ICD10_2010'), +('Q62.5', 'Duplication of ureter', 'ICD10_2010'), +('Q62.6', 'Malposition of ureter', 'ICD10_2010'), +('Q62.7', 'Congenital vesico-uretero-renal reflux', 'ICD10_2010'), +('Q62.8', 'Other congenital malformations of ureter', 'ICD10_2010'), +('Q63', 'Other congenital malformations of kidney', 'ICD10_2010'), +('Q63.0', 'Accessory kidney', 'ICD10_2010'), +('Q63.1', 'Lobulated, fused and horseshoe kidney', 'ICD10_2010'), +('Q63.2', 'Ectopic kidney', 'ICD10_2010'), +('Q63.3', 'Hyperplastic and giant kidney', 'ICD10_2010'), +('Q63.8', 'Other specified congenital malformations of kidney', 'ICD10_2010'), +('Q63.9', 'Congenital malformation of kidney, unspecified', 'ICD10_2010'), +('Q64', 'Other congenital malformations of urinary system', 'ICD10_2010'), +('Q64.0', 'Epispadias', 'ICD10_2010'), +('Q64.1', 'Exstrophy of urinary bladder', 'ICD10_2010'), +('Q64.2', 'Congenital posterior urethral valves', 'ICD10_2010'), +('Q64.3', 'Other atresia and stenosis of urethra and bladder neck', 'ICD10_2010'), +('Q64.4', 'Malformation of urachus', 'ICD10_2010'), +('Q64.5', 'Congenital absence of bladder and urethra', 'ICD10_2010'), +('Q64.6', 'Congenital diverticulum of bladder', 'ICD10_2010'), +('Q64.7', 'Other congenital malformations of bladder and urethra', 'ICD10_2010'), +('Q64.8', 'Other specified congenital malformations of urinary system', 'ICD10_2010'), +('Q64.9', 'Congenital malformation of urinary system, unspecified', 'ICD10_2010'), +('Q65', 'Congenital deformities of hip', 'ICD10_2010'), +('Q65.0', 'Congenital dislocation of hip, unilateral', 'ICD10_2010'), +('Q65.1', 'Congenital dislocation of hip, bilateral', 'ICD10_2010'), +('Q65.2', 'Congenital dislocation of hip, unspecified', 'ICD10_2010'), +('Q65.3', 'Congenital subluxation of hip, unilateral', 'ICD10_2010'), +('Q65.4', 'Congenital subluxation of hip, bilateral', 'ICD10_2010'), +('Q65.5', 'Congenital subluxation of hip, unspecified', 'ICD10_2010'), +('Q65.6', 'Unstable hip', 'ICD10_2010'), +('Q65.8', 'Other congenital deformities of hip', 'ICD10_2010'), +('Q65.9', 'Congenital deformity of hip, unspecified', 'ICD10_2010'), +('Q66', 'Congenital deformities of feet', 'ICD10_2010'), +('Q66.0', 'Talipes equinovarus', 'ICD10_2010'), +('Q66.1', 'Talipes calcaneovarus', 'ICD10_2010'), +('Q66.2', 'Metatarsus varus', 'ICD10_2010'), +('Q66.3', 'Other congenital varus deformities of feet', 'ICD10_2010'), +('Q66.4', 'Talipes calcaneovalgus', 'ICD10_2010'), +('Q66.5', 'Congenital pes planus', 'ICD10_2010'), +('Q66.6', 'Other congenital valgus deformities of feet', 'ICD10_2010'), +('Q66.7', 'Pes cavus', 'ICD10_2010'), +('Q66.8', 'Other congenital deformities of feet', 'ICD10_2010'), +('Q66.9', 'Congenital deformity of feet, unspecified', 'ICD10_2010'), +('Q67', 'Congenital musculoskeletal deformities of head, face, spine and chest', 'ICD10_2010'), +('Q67.0', 'Facial asymmetry', 'ICD10_2010'), +('Q67.1', 'Compression facies', 'ICD10_2010'), +('Q67.2', 'Dolichocephaly', 'ICD10_2010'), +('Q67.3', 'Plagiocephaly', 'ICD10_2010'), +('Q67.4', 'Other congenital deformities of skull, face and jaw', 'ICD10_2010'), +('Q67.5', 'Congenital deformity of spine', 'ICD10_2010'), +('Q67.6', 'Pectus excavatum', 'ICD10_2010'), +('Q67.7', 'Pectus carinatum', 'ICD10_2010'), +('Q67.8', 'Other congenital deformities of chest', 'ICD10_2010'), +('Q68', 'Other congenital musculoskeletal deformities', 'ICD10_2010'), +('Q68.0', 'Congenital deformity of sternocleidomastoid muscle', 'ICD10_2010'), +('Q68.1', 'Congenital deformity of hand', 'ICD10_2010'), +('Q68.2', 'Congenital deformity of knee', 'ICD10_2010'), +('Q68.3', 'Congenital bowing of femur', 'ICD10_2010'), +('Q68.4', 'Congenital bowing of tibia and fibula', 'ICD10_2010'), +('Q68.5', 'Congenital bowing of long bones of leg, unspecified', 'ICD10_2010'), +('Q68.8', 'Other specified congenital musculoskeletal deformities', 'ICD10_2010'), +('Q69', 'Polydactyly', 'ICD10_2010'), +('Q69.0', 'Accessory finger(s)', 'ICD10_2010'), +('Q69.1', 'Accessory thumb(s)', 'ICD10_2010'), +('Q69.2', 'Accessory toe(s)', 'ICD10_2010'), +('Q69.9', 'Polydactyly, unspecified', 'ICD10_2010'), +('Q70', 'Syndactyly', 'ICD10_2010'), +('Q70.0', 'Fused fingers', 'ICD10_2010'), +('Q70.1', 'Webbed fingers', 'ICD10_2010'), +('Q70.2', 'Fused toes', 'ICD10_2010'), +('Q70.3', 'Webbed toes', 'ICD10_2010'), +('Q70.4', 'Polysyndactyly', 'ICD10_2010'), +('Q70.9', 'Syndactyly, unspecified', 'ICD10_2010'), +('Q71', 'Reduction defects of upper limb', 'ICD10_2010'), +('Q71.0', 'Congenital complete absence of upper limb(s)', 'ICD10_2010'), +('Q71.1', 'Cong absence of upper arm and forearm with hand present', 'ICD10_2010'), +('Q71.2', 'Congenital absence of both forearm and hand', 'ICD10_2010'), +('Q71.3', 'Congenital absence of hand and finger(s)', 'ICD10_2010'), +('Q71.4', 'Longitudinal reduction defect of radius', 'ICD10_2010'), +('Q71.5', 'Longitudinal reduction defect of ulna', 'ICD10_2010'), +('Q71.6', 'Lobster-claw hand', 'ICD10_2010'), +('Q71.8', 'Other reduction defects of upper limb(s)', 'ICD10_2010'), +('Q71.9', 'Reduction defect of upper limb, unspecified', 'ICD10_2010'), +('Q72', 'Reduction defects of lower limb', 'ICD10_2010'), +('Q72.0', 'Congenital complete absence of lower limb(s)', 'ICD10_2010'), +('Q72.1', 'Congenital absence of thigh and lower leg with foot present', 'ICD10_2010'), +('Q72.2', 'Congenital absence of both lower leg and foot', 'ICD10_2010'), +('Q72.3', 'Congenital absence of foot and toe(s)', 'ICD10_2010'), +('Q72.4', 'Longitudinal reduction defect of femur', 'ICD10_2010'), +('Q72.5', 'Longitudinal reduction defect of tibia', 'ICD10_2010'), +('Q72.6', 'Longitudinal reduction defect of fibula', 'ICD10_2010'), +('Q72.7', 'Split foot', 'ICD10_2010'), +('Q72.8', 'Other reduction defects of lower limb(s)', 'ICD10_2010'), +('Q72.9', 'Reduction defect of lower limb, unspecified', 'ICD10_2010'), +('Q73', 'Reduction defects of unspecified limb', 'ICD10_2010'), +('Q73.0', 'Congenital absence of unspecified limb(s)', 'ICD10_2010'), +('Q73.1', 'Phocomelia, unspecified limb(s)', 'ICD10_2010'), +('Q73.8', 'Other reduction defects of unspecified limb(s)', 'ICD10_2010'), +('Q74', 'Other congenital malformations of limb(s)', 'ICD10_2010'), +('Q74.0', 'Other congenital malformation of upper limb(s) including shoulder girdle', 'ICD10_2010'), +('Q74.1', 'Congenital malformation of knee', 'ICD10_2010'), +('Q74.2', 'Other congenital malformation of lower limb(s) including pelvic girdle', 'ICD10_2010'), +('Q74.3', 'Arthrogryposis multiplex congenita', 'ICD10_2010'), +('Q74.8', 'Other specified congenital malformations of limb(s)', 'ICD10_2010'), +('Q74.9', 'Unspecified congenital malformation of limb(s)', 'ICD10_2010'), +('Q75', 'Other congenital malformations of skull and face bones', 'ICD10_2010'), +('Q75.0', 'Craniosynostosis', 'ICD10_2010'), +('Q75.1', 'Craniofacial dysostosis', 'ICD10_2010'), +('Q75.2', 'Hypertelorism', 'ICD10_2010'), +('Q75.3', 'Macrocephaly', 'ICD10_2010'), +('Q75.4', 'Mandibulofacial dysostosis', 'ICD10_2010'), +('Q75.5', 'Oculomandibular dysostosis', 'ICD10_2010'), +('Q75.8', 'Other specified congenital malformations of skull and face bones', 'ICD10_2010'), +('Q75.9', 'Congenital malformation of skull and face bones, unspecified', 'ICD10_2010'), +('Q76', 'Congenital malformations of spine and bony thorax', 'ICD10_2010'), +('Q76.0', 'Spina bifida occulta', 'ICD10_2010'), +('Q76.1', 'Klippel-feil syndrome', 'ICD10_2010'), +('Q76.2', 'Congenital spondylolisthesis', 'ICD10_2010'), +('Q76.3', 'Congenital scoliosis due to congenital bony malformation', 'ICD10_2010'), +('Q76.4', 'Other congenital malformation of spine not associated with scoliosis', 'ICD10_2010'), +('Q76.5', 'Cervical rib', 'ICD10_2010'), +('Q76.6', 'Other congenital malformations of ribs', 'ICD10_2010'), +('Q76.7', 'Congenital malformation of sternum', 'ICD10_2010'), +('Q76.8', 'Other congenital malformations of bony thorax', 'ICD10_2010'), +('Q76.9', 'Congenital malformation of bony thorax, unspecified', 'ICD10_2010'), +('Q77', 'Osteochondrodysplasia with defects of growth of tubular bones and spine', 'ICD10_2010'), +('Q77.0', 'Achondrogenesis', 'ICD10_2010'), +('Q77.1', 'Thanatophoric short stature', 'ICD10_2010'), +('Q77.2', 'Short rib syndrome', 'ICD10_2010'), +('Q77.3', 'Chondrodysplasia punctata', 'ICD10_2010'), +('Q77.4', 'Achondroplasia', 'ICD10_2010'), +('Q77.5', 'Dystrophic dysplasia', 'ICD10_2010'), +('Q77.6', 'Chondroectodermal dysplasia', 'ICD10_2010'), +('Q77.7', 'Spondyloepiphyseal dysplasia', 'ICD10_2010'), +('Q77.8', 'Other osteochondrodysplas with defect growth tubular bone spine', 'ICD10_2010'), +('Q77.9', 'Osteochondrodyspl with defect growth tubular bones and spine, unspecified', 'ICD10_2010'), +('Q78', 'Other osteochondrodysplasias', 'ICD10_2010'), +('Q78.0', 'Osteogenesis imperfecta', 'ICD10_2010'), +('Q78.1', 'Polyostotic fibrous dysplasia', 'ICD10_2010'), +('Q78.2', 'Osteopetrosis', 'ICD10_2010'), +('Q78.3', 'Progressive diaphyseal dysplasia', 'ICD10_2010'), +('Q78.4', 'Enchondromatosis', 'ICD10_2010'), +('Q78.5', 'Metaphyseal dysplasia', 'ICD10_2010'), +('Q78.6', 'Multiple congenital exostoses', 'ICD10_2010'), +('Q78.8', 'Other specified osteochondrodysplasias', 'ICD10_2010'), +('Q78.9', 'Osteochondrodysplasia, unspecified', 'ICD10_2010'), +('Q79', 'Congenital malformations of the musculoskeletal system, not elsewhere classified', 'ICD10_2010'), +('Q79.0', 'Congenital diaphragmatic hernia', 'ICD10_2010'), +('Q79.1', 'Other congenital malformations of diaphragm', 'ICD10_2010'), +('Q79.2', 'Exomphalos', 'ICD10_2010'), +('Q79.3', 'Gastroschisis', 'ICD10_2010'), +('Q79.4', 'Prune belly syndrome', 'ICD10_2010'), +('Q79.5', 'Other congenital malformations of abdominal wall', 'ICD10_2010'), +('Q79.6', 'Ehlers-danlos syndrome', 'ICD10_2010'), +('Q79.8', 'Other congenital malformations of musculoskeletal system', 'ICD10_2010'), +('Q79.9', 'Congenital malformation of musculoskeletal system unspecified', 'ICD10_2010'), +('Q80', 'Congenital ichthyosis', 'ICD10_2010'), +('Q80.0', 'Ichthyosis vulgaris', 'ICD10_2010'), +('Q80.1', 'X-linked ichthyosis', 'ICD10_2010'), +('Q80.2', 'Lamellar ichthyosis', 'ICD10_2010'), +('Q80.3', 'Congenital bullous ichthyosiform erythroderma', 'ICD10_2010'), +('Q80.4', 'Harlequin fetus', 'ICD10_2010'), +('Q80.8', 'Other congenital ichthyosis', 'ICD10_2010'), +('Q80.9', 'Congenital ichthyosis, unspecified', 'ICD10_2010'), +('Q81', 'Epidermolysis bullosa', 'ICD10_2010'), +('Q81.0', 'Epidermolysis bullosa simplex', 'ICD10_2010'), +('Q81.1', 'Epidermolysis bullosa letalis', 'ICD10_2010'), +('Q81.2', 'Epidermolysis bullosa dystrophica', 'ICD10_2010'), +('Q81.8', 'Other epidermolysis bullosa', 'ICD10_2010'), +('Q81.9', 'Epidermolysis bullosa, unspecified', 'ICD10_2010'), +('Q82', 'Other congenital malformations of skin', 'ICD10_2010'), +('Q82.0', 'Hereditary lymphoedema', 'ICD10_2010'), +('Q82.1', 'Xeroderma pigmentosum', 'ICD10_2010'), +('Q82.2', 'Mastocytosis', 'ICD10_2010'), +('Q82.3', 'Incontinentia pigmenti', 'ICD10_2010'), +('Q82.4', 'Ectodermal dysplasia (anhidrotic)', 'ICD10_2010'), +('Q82.5', 'Congenital non-neoplastic naevus', 'ICD10_2010'), +('Q82.8', 'Other specified congenital malformations of skin', 'ICD10_2010'), +('Q82.9', 'Congenital malformation of skin, unspecified', 'ICD10_2010'), +('Q83', 'Congenital malformations of breast', 'ICD10_2010'), +('Q83.0', 'Congenital absence of breast with absent nipple', 'ICD10_2010'), +('Q83.1', 'Accessory breast', 'ICD10_2010'), +('Q83.2', 'Absent nipple', 'ICD10_2010'), +('Q83.3', 'Accessory nipple', 'ICD10_2010'), +('Q83.8', 'Other congenital malformations of breast', 'ICD10_2010'), +('Q83.9', 'Congenital malformation of breast, unspecified', 'ICD10_2010'), +('Q84', 'Other congenital malformations of integument', 'ICD10_2010'), +('Q84.0', 'Congenital alopecia', 'ICD10_2010'), +('Q84.1', 'Congenital morphological disturbances of hair nec', 'ICD10_2010'), +('Q84.2', 'Other congenital malformations of hair', 'ICD10_2010'), +('Q84.3', 'Anonychia', 'ICD10_2010'), +('Q84.4', 'Congenital leukonychia', 'ICD10_2010'), +('Q84.5', 'Enlarged and hypertrophic nails', 'ICD10_2010'), +('Q84.6', 'Other congenital malformations of nails', 'ICD10_2010'), +('Q84.8', 'Other specified congenital malformations of integument', 'ICD10_2010'), +('Q84.9', 'Congenital malformation of integument, unspecified', 'ICD10_2010'), +('Q85', 'Phakomatoses, not elsewhere classified', 'ICD10_2010'), +('Q85.0', 'Neurofibromatosis (nonmalignant)', 'ICD10_2010'), +('Q85.1', 'Tuberous sclerosis', 'ICD10_2010'), +('Q85.8', 'Other phakomatoses, not elsewhere classified', 'ICD10_2010'), +('Q85.9', 'Phakomatosis, unspecified', 'ICD10_2010'), +('Q86', 'Congenital malformation syndromes due to known exogenous causes, not elsewhere classified', 'ICD10_2010'), +('Q86.0', 'Fetal alcohol syndrome (dysmorphic)', 'ICD10_2010'), +('Q86.1', 'Fetal hydantoin syndrome', 'ICD10_2010'), +('Q86.2', 'Dysmorphism due to warfarin', 'ICD10_2010'), +('Q86.8', 'Other congenital malformation syndromes due to known exogen causes', 'ICD10_2010'), +('Q87', 'Other specified congenital malformation syndromes affecting multiple systems', 'ICD10_2010'), +('Q87.0', 'Congenital malformation syndromes predominantly affect facial appearance', 'ICD10_2010'), +('Q87.1', 'Congenital malformation syndromes predominantly associated with short stature', 'ICD10_2010'), +('Q87.2', 'Congenital malformation syndromes predominantly involving limbs', 'ICD10_2010'), +('Q87.3', 'Congenital malformation syndromes involving early overgrowth', 'ICD10_2010'), +('Q87.4', 'Marfan\'s syndrome', 'ICD10_2010'), +('Q87.5', 'Other congenital malformation syndromes with other skeletal changes', 'ICD10_2010'), +('Q87.8', 'Other specified congenital malformation syndromes NEC', 'ICD10_2010'), +('Q89', 'Other congenital malformations, not elsewhere classified', 'ICD10_2010'), +('Q89.0', 'Congenital malformations of spleen', 'ICD10_2010'), +('Q89.1', 'Congenital malformations of adrenal gland', 'ICD10_2010'), +('Q89.2', 'Congenital malformations of other endocrine glands', 'ICD10_2010'), +('Q89.3', 'Situs inversus', 'ICD10_2010'), +('Q89.4', 'Conjoined twins', 'ICD10_2010'), +('Q89.7', 'Multiple congenital malformations, not elsewhere classified', 'ICD10_2010'), +('Q89.8', 'Other specified congenital malformations', 'ICD10_2010'), +('Q89.9', 'Congenital malformation, unspecified', 'ICD10_2010'), +('Q90', 'Down syndrome', 'ICD10_2010'), +('Q90.0', 'Trisomy 21, meiotic nondisjunction', 'ICD10_2010'), +('Q90.1', 'Trisomy 21, mosaicism (mitotic nondisjunction)', 'ICD10_2010'), +('Q90.2', 'Trisomy 21, translocation', 'ICD10_2010'), +('Q90.9', 'Down\'s syndrome, unspecified', 'ICD10_2010'), +('Q91', 'Edwards syndrome and Patau syndrome', 'ICD10_2010'), +('Q91.0', 'Trisomy 18, meiotic nondisjunction', 'ICD10_2010'), +('Q91.1', 'Trisomy 18, mosaicism (mitotic nondisjunction)', 'ICD10_2010'), +('Q91.2', 'Trisomy 18, translocation', 'ICD10_2010'), +('Q91.3', 'Edwards\' syndrome, unspecified', 'ICD10_2010'), +('Q91.4', 'Trisomy 13, meiotic nondisjunction', 'ICD10_2010'), +('Q91.5', 'Trisomy 13, mosaicism (mitotic nondisjunction)', 'ICD10_2010'), +('Q91.6', 'Trisomy 13, translocation', 'ICD10_2010'), +('Q91.7', 'Patau\'s syndrome, unspecified', 'ICD10_2010'), +('Q92', 'Other trisomies and partial trisomies of the autosomes, not elsewhere classified', 'ICD10_2010'), +('Q92.0', 'Whole chromosome trisomy, meiotic nondisjunction', 'ICD10_2010'), +('Q92.1', 'Whole chromosome trisomy, mosaicism (mitotic nondisjunction)', 'ICD10_2010'), +('Q92.2', 'Major partial trisomy', 'ICD10_2010'), +('Q92.3', 'Minor partial trisomy', 'ICD10_2010'), +('Q92.4', 'Duplications seen only at prometaphase', 'ICD10_2010'), +('Q92.5', 'Duplications with other complex rearrangements', 'ICD10_2010'), +('Q92.6', 'Extra marker chromosomes', 'ICD10_2010'), +('Q92.7', 'Triploidy and polyploidy', 'ICD10_2010'), +('Q92.8', 'Other specified trisomies and partial trisomies of autosomes', 'ICD10_2010'), +('Q92.9', 'Trisomy and partial trisomy of autosomes, unspecified', 'ICD10_2010'), +('Q93', 'Monosomies and deletions from the autosomes, not elsewhere classified', 'ICD10_2010'), +('Q93.0', 'Whole chromosome monosomy, meiotic nondisjunction', 'ICD10_2010'), +('Q93.1', 'Whole chrom monosomy mosaicism (mitotic nondisjunction)', 'ICD10_2010'), +('Q93.2', 'Chromosome replaced with ring or dicentric', 'ICD10_2010'), +('Q93.3', 'Deletion of short arm of chromosome 4', 'ICD10_2010'), +('Q93.4', 'Deletion of short arm of chromosome 5', 'ICD10_2010'), +('Q93.5', 'Other deletions of part of a chromosome', 'ICD10_2010'), +('Q93.6', 'Deletions seen only at prometaphase', 'ICD10_2010'), +('Q93.7', 'Deletions with other complex rearrangements', 'ICD10_2010'), +('Q93.8', 'Other deletions from the autosomes', 'ICD10_2010'), +('Q93.9', 'Deletion from autosomes, unspecified', 'ICD10_2010'), +('Q95', 'Balanced rearrangements and structural markers, not elsewhere classified', 'ICD10_2010'), +('Q95.0', 'Balanced translocation and insertion in normal individual', 'ICD10_2010'), +('Q95.1', 'Chromosome inversion in normal individual', 'ICD10_2010'), +('Q95.2', 'Balanced autosomal rearrangement in abnormal individual', 'ICD10_2010'), +('Q95.3', 'Balanced sex/autosomal rearrangement in abnormal individual', 'ICD10_2010'), +('Q95.4', 'Individuals with marker heterochromatin', 'ICD10_2010'), +('Q95.5', 'Individuals with autosomal fragile site', 'ICD10_2010'), +('Q95.8', 'Other balanced rearrangements and structural markers', 'ICD10_2010'), +('Q95.9', 'Balanced rearrangement and structural marker, unspecified', 'ICD10_2010'), +('Q96', 'Turner syndrome', 'ICD10_2010'), +('Q96.0', 'Karyotype 45x', 'ICD10_2010'), +('Q96.1', 'Karyotype 46x iso (xq)', 'ICD10_2010'), +('Q96.2', 'Karyotype 46x with abnormal sex chromosome, except iso (Xq)', 'ICD10_2010'), +('Q96.3', 'Mosaicism, 45, x/46, xx or xy', 'ICD10_2010'), +('Q96.4', 'Mosaicism 45x/oth cell line(s) with abnorm sex chromosome', 'ICD10_2010'), +('Q96.8', 'Other variants of turner\'s syndrome', 'ICD10_2010'), +('Q96.9', 'Turner\'s syndrome, unspecified', 'ICD10_2010'), +('Q97', 'Other sex chromosome abnormalities, female phenotype, not elsewhere classified', 'ICD10_2010'), +('Q97.0', 'Karotype 47, XXX', 'ICD10_2010'), +('Q97.1', 'Female with more than three x chromosomes', 'ICD10_2010'), +('Q97.2', 'Mosaicism, lines with various numbers of x chromosomes', 'ICD10_2010'), +('Q97.3', 'Female with 46, XY karyotype', 'ICD10_2010'), +('Q97.8', 'Other specified sex chromosome abnormalities female phrenotype', 'ICD10_2010'), +('Q97.9', 'Sex chromosome abnormality, female phenotype, unspecified', 'ICD10_2010'), +('Q98', 'Other sex chromosome abnormalities, male phenotype, not elsewhere classified', 'ICD10_2010'), +('Q98.0', 'Klinefelters syndrome karyotype 47, XXY', 'ICD10_2010'), +('Q98.1', 'Klinefelters syndrome male with more than two X chromosomes', 'ICD10_2010'), +('Q98.2', 'Klinefelters syndrome karyotype male with 46, XX karyotype', 'ICD10_2010'), +('Q98.3', 'Other male with 46 XX karyotype', 'ICD10_2010'), +('Q98.4', 'Klinefelter\'s syndrome, unspecified', 'ICD10_2010'), +('Q98.5', 'Karyotype 47 , XYY', 'ICD10_2010'), +('Q98.6', 'Male with structurally abnormal sex chromosome', 'ICD10_2010'), +('Q98.7', 'Male with sex chromosome mosaicism', 'ICD10_2010'), +('Q98.8', 'Other specified sex chromosome abnormalities, male phenotype', 'ICD10_2010'), +('Q98.9', 'Sex chromosome abnormality, male phenotype, unspecified', 'ICD10_2010'), +('Q99', 'Other chromosome abnormalities, not elsewhere classified', 'ICD10_2010'), +('Q99.0', 'Chimera 46, XX/46, XY', 'ICD10_2010'), +('Q99.1', '46, XX true hemaphrodite', 'ICD10_2010'), +('Q99.2', 'Fragile x chromosome', 'ICD10_2010'), +('Q99.8', 'Other specified chromosome abnormalities', 'ICD10_2010'), +('Q99.9', 'Chromosomal abnormality, unspecified', 'ICD10_2010'), +('R00', 'Abnormalities of heart beat', 'ICD10_2010'), +('R00.0', 'Tachycardia, unspecified', 'ICD10_2010'), +('R00.1', 'Bradycardia, unspecified', 'ICD10_2010'), +('R00.2', 'Palpitations', 'ICD10_2010'), +('R00.8', 'Other and unspecified abnormalities of heart beat', 'ICD10_2010'), +('R01', 'Cardiac murmurs and other cardiac sounds', 'ICD10_2010'), +('R01.0', 'Benign and innocent cardiac murmurs', 'ICD10_2010'), +('R01.1', 'Cardiac murmur, unspecified', 'ICD10_2010'), +('R01.2', 'Other cardiac sounds', 'ICD10_2010'), +('R02', 'Gangrene, not elsewhere classified', 'ICD10_2010'), +('R03', 'Abnormal blood-pressure reading, without diagnosis', 'ICD10_2010'), +('R03.0', 'Elevated blood-pressure reading without diagnosis of hypertension', 'ICD10_2010'), +('R03.1', 'Nonspecific low blood-pressure reading', 'ICD10_2010'), +('R04', 'Haemorrhage from respiratory passages', 'ICD10_2010'), +('R04.0', 'Epistaxis', 'ICD10_2010'), +('R04.1', 'Haemorrhage from throat', 'ICD10_2010'), +('R04.2', 'Haemoptysis', 'ICD10_2010'), +('R04.8', 'Haemorrhage from other sites in respiratory passages', 'ICD10_2010'), +('R04.9', 'Haemorrhage from respiratory passages, unspecified', 'ICD10_2010'), +('R05', 'Cough', 'ICD10_2010'), +('R06', 'Abnormalities of breathing', 'ICD10_2010'), +('R06.0', 'Dyspnoea', 'ICD10_2010'), +('R06.1', 'Stridor', 'ICD10_2010'), +('R06.2', 'Wheezing', 'ICD10_2010'), +('R06.3', 'Periodic breathing', 'ICD10_2010'), +('R06.4', 'Hyperventilation', 'ICD10_2010'), +('R06.5', 'Mouth breathing', 'ICD10_2010'), +('R06.6', 'Hiccough', 'ICD10_2010'), +('R06.7', 'Sneezing', 'ICD10_2010'), +('R06.8', 'Other and unspecified abnormalities of breathing', 'ICD10_2010'), +('R07', 'Pain in throat and chest', 'ICD10_2010'), +('R07.0', 'Pain in throat', 'ICD10_2010'), +('R07.1', 'Chest pain on breathing', 'ICD10_2010'), +('R07.2', 'Precordial pain', 'ICD10_2010'), +('R07.3', 'Other chest pain', 'ICD10_2010'), +('R07.4', 'Chest pain, unspecified', 'ICD10_2010'), +('R09', 'Other symptoms and signs involving the circulatory and respiratory systems', 'ICD10_2010'), +('R09.0', 'Asphyxia', 'ICD10_2010'), +('R09.1', 'Pleurisy', 'ICD10_2010'), +('R09.2', 'Respiratory arrest', 'ICD10_2010'), +('R09.3', 'Abnormal sputum', 'ICD10_2010'), +('R09.8', 'Other specified symptoms and signs involving circulatory and respiratory systems', 'ICD10_2010'), +('R10', 'Abdominal and pelvic pain', 'ICD10_2010'), +('R10.0', 'Acute abdomen', 'ICD10_2010'), +('R10.1', 'Pain localized to upper abdomen', 'ICD10_2010'), +('R10.2', 'Pelvic and perineal pain', 'ICD10_2010'), +('R10.3', 'Pain localized to other parts of lower abdomen', 'ICD10_2010'), +('R10.4', 'Other and unspecified abdominal pain', 'ICD10_2010'), +('R11', 'Nausea and vomiting', 'ICD10_2010'), +('R12', 'Heartburn', 'ICD10_2010'), +('R13', 'Dysphagia', 'ICD10_2010'), +('R14', 'Flatulence and related conditions', 'ICD10_2010'), +('R15', 'Faecal incontinence', 'ICD10_2010'), +('R16', 'Hepatomegaly and splenomegaly, not elsewhere classified', 'ICD10_2010'), +('R16.0', 'Hepatomegaly, not elsewhere classified', 'ICD10_2010'), +('R16.1', 'Splenomegaly, not elsewhere classified', 'ICD10_2010'), +('R16.2', 'Hepatomegaly with splenomegaly, not elsewhere classified', 'ICD10_2010'), +('R17', 'Unspecified jaundice', 'ICD10_2010'), +('R18', 'Ascites', 'ICD10_2010'), +('R19', 'Other symptoms and signs involving the digestive system and abdomen', 'ICD10_2010'), +('R19.0', 'Intra-abdominal and pelvic swelling, mass and lump', 'ICD10_2010'), +('R19.1', 'Abnormal bowel sounds', 'ICD10_2010'), +('R19.2', 'Visible peristalsis', 'ICD10_2010'), +('R19.3', 'Abdominal rigidity', 'ICD10_2010'), +('R19.4', 'Change in bowel habit', 'ICD10_2010'), +('R19.5', 'Other faecal abnormalities', 'ICD10_2010'), +('R19.6', 'Halitosis', 'ICD10_2010'), +('R19.8', 'Other specified symptoms and signs involving digestive system and abdomen', 'ICD10_2010'), +('R20', 'Disturbances of skin sensation', 'ICD10_2010'), +('R20.0', 'Anaesthesia of skin', 'ICD10_2010'), +('R20.1', 'Hypoaesthesia of skin', 'ICD10_2010'), +('R20.2', 'Paraesthesia of skin', 'ICD10_2010'), +('R20.3', 'Hyperaesthesia', 'ICD10_2010'), +('R20.8', 'Other and unspecified disturbances of skin sensation', 'ICD10_2010'), +('R21', 'Rash and other nonspecific skin eruption', 'ICD10_2010'), +('R22', 'Localized swelling, mass and lump of skin and subcutaneous tissue', 'ICD10_2010'), +('R22.0', 'Localized swelling, mass and lump, head', 'ICD10_2010'), +('R22.1', 'Localized swelling, mass and lump, neck', 'ICD10_2010'), +('R22.2', 'Localized swelling, mass and lump, trunk', 'ICD10_2010'), +('R22.3', 'Localized swelling, mass and lump, upper limb', 'ICD10_2010'), +('R22.4', 'Localized swelling, mass and lump, lower limb', 'ICD10_2010'), +('R22.7', 'Localized swelling, mass and lump, multiple sites', 'ICD10_2010'), +('R22.9', 'Localized swelling, mass and lump, unspecified', 'ICD10_2010'), +('R23', 'Other skin changes', 'ICD10_2010'), +('R23.0', 'Cyanosis', 'ICD10_2010'), +('R23.1', 'Pallor', 'ICD10_2010'), +('R23.2', 'Flushing', 'ICD10_2010'), +('R23.3', 'Spontaneous ecchymoses', 'ICD10_2010'), +('R23.4', 'Changes in skin texture', 'ICD10_2010'), +('R23.8', 'Other and unspecified skin changes', 'ICD10_2010'), +('R25', 'Abnormal involuntary movements', 'ICD10_2010'), +('R25.0', 'Abnormal head movements', 'ICD10_2010'), +('R25.1', 'Tremor, unspecified', 'ICD10_2010'), +('R25.2', 'Cramp and spasm', 'ICD10_2010'), +('R25.3', 'Fasciculation', 'ICD10_2010'), +('R25.8', 'Other and unspecified abnormal involuntary movements', 'ICD10_2010'), +('R26', 'Abnormalities of gait and mobility', 'ICD10_2010'), +('R26.0', 'Ataxic gait', 'ICD10_2010'), +('R26.1', 'Paralytic gait', 'ICD10_2010'), +('R26.2', 'Difficulty in walking, not elsewhere classified', 'ICD10_2010'), +('R26.3', 'Immobility', 'ICD10_2010'), +('R26.8', 'Other and unspecified abnormalities of gait and mobility', 'ICD10_2010'), +('R27', 'Other lack of coordination', 'ICD10_2010'), +('R27.0', 'Ataxia, unspecified', 'ICD10_2010'), +('R27.8', 'Other and unspecified lack of coordination', 'ICD10_2010'), +('R29', 'Other symptoms and signs involving the nervous and musculoskeletal systems', 'ICD10_2010'), +('R29.0', 'Tetany', 'ICD10_2010'), +('R29.1', 'Meningismus', 'ICD10_2010'), +('R29.2', 'Abnormal reflex', 'ICD10_2010'), +('R29.3', 'Abnormal posture', 'ICD10_2010'), +('R29.4', 'Clicking hip', 'ICD10_2010'), +('R29.6', 'Tendency to fall, NEC', 'ICD10_2010'), +('R29.8', 'Other unspecified symptoms and signs involving the nervous and musculoskel systems', 'ICD10_2010'), +('R30', 'Pain associated with micturition', 'ICD10_2010'), +('R30.0', 'Dysuria', 'ICD10_2010'), +('R30.1', 'Vesical tenesmus', 'ICD10_2010'), +('R30.9', 'Painful micturition, unspecified', 'ICD10_2010'), +('R31', 'Unspecified haematuria', 'ICD10_2010'), +('R32', 'Unspecified urinary incontinence', 'ICD10_2010'), +('R33', 'Retention of urine', 'ICD10_2010'), +('R34', 'Anuria and oliguria', 'ICD10_2010'), +('R35', 'Polyuria', 'ICD10_2010'), +('R36', 'Urethral discharge', 'ICD10_2010'), +('R39', 'Other symptoms and signs involving the urinary system', 'ICD10_2010'), +('R39.0', 'Extravasation of urine', 'ICD10_2010'), +('R39.1', 'Other difficulties with micturition', 'ICD10_2010'), +('R39.2', 'Extrarenal uraemia', 'ICD10_2010'), +('R39.8', 'Other and unspecified symptoms and signs involving urinary system', 'ICD10_2010'), +('R40', 'Somnolence, stupor and coma', 'ICD10_2010'), +('R40.0', 'Somnolence', 'ICD10_2010'), +('R40.1', 'Stupor', 'ICD10_2010'), +('R40.2', 'Coma, unspecified', 'ICD10_2010'), +('R41', 'Other symptoms and signs involving cognitive functions and awareness', 'ICD10_2010'), +('R41.0', 'Disorientation, unspecified', 'ICD10_2010'), +('R41.1', 'Anterograde amnesia', 'ICD10_2010'), +('R41.2', 'Retrograde amnesia', 'ICD10_2010'), +('R41.3', 'Other amnesia', 'ICD10_2010'), +('R41.8', 'Other and unspecified symptoms and signs involving cognitive functions and awareness', 'ICD10_2010'), +('R42', 'Dizziness and giddiness', 'ICD10_2010'), +('R43', 'Disturbances of smell and taste', 'ICD10_2010'), +('R43.0', 'Anosmia', 'ICD10_2010'), +('R43.1', 'Parosmia', 'ICD10_2010'), +('R43.2', 'Parageusia', 'ICD10_2010'), +('R43.8', 'Other and unspecified disturbances of smell and taste', 'ICD10_2010'), +('R44', 'Other symptoms and signs involving general sensations and perceptions', 'ICD10_2010'), +('R44.0', 'Auditory hallucinations', 'ICD10_2010'), +('R44.1', 'Visual hallucinations', 'ICD10_2010'), +('R44.2', 'Other hallucinations', 'ICD10_2010'), +('R44.3', 'Hallucinations, unspecified', 'ICD10_2010'), +('R44.8', 'Other and unspecified symptoms and signs involving general sensations and perceptions', 'ICD10_2010'), +('R45', 'Symptoms and signs involving emotional state', 'ICD10_2010'), +('R45.0', 'Nervousness', 'ICD10_2010'), +('R45.1', 'Restlessness and agitation', 'ICD10_2010'), +('R45.2', 'Unhappiness', 'ICD10_2010'), +('R45.3', 'Demoralization and apathy', 'ICD10_2010'), +('R45.4', 'Irritability and anger', 'ICD10_2010'), +('R45.5', 'Hostility', 'ICD10_2010'), +('R45.6', 'Physical violence', 'ICD10_2010'), +('R45.7', 'State of emotional shock and stress, unspecified', 'ICD10_2010'), +('R45.8', 'Other symptoms and signs involving emotional state', 'ICD10_2010'), +('R46', 'Symptoms and signs involving appearance and behaviour', 'ICD10_2010'), +('R46.0', 'Very low level of personal hygiene', 'ICD10_2010'), +('R46.1', 'Bizarre personal appearance', 'ICD10_2010'), +('R46.2', 'Strange and inexplicable behaviour', 'ICD10_2010'), +('R46.3', 'Overactivity', 'ICD10_2010'), +('R46.4', 'Slowness and poor responsiveness', 'ICD10_2010'), +('R46.5', 'Suspiciousness and marked evasiveness', 'ICD10_2010'), +('R46.6', 'Undue concern and preoccupation with stressful events', 'ICD10_2010'), +('R46.7', 'Verbosity and circumstantial detail obscuring reason for contact', 'ICD10_2010'), +('R46.8', 'Other symptoms and signs involving appearance and behaviour', 'ICD10_2010'), +('R47', 'Speech disturbances, not elsewhere classified', 'ICD10_2010'), +('R47.0', 'Dysphasia and aphasia', 'ICD10_2010'), +('R47.1', 'Dysarthria and anarthria', 'ICD10_2010'), +('R47.8', 'Other and unspecified speech disturbances', 'ICD10_2010'), +('R48', 'Dyslexia and other symbolic dysfunctions, not elsewhere classified', 'ICD10_2010'), +('R48.0', 'Dyslexia and alexia', 'ICD10_2010'), +('R48.1', 'Agnosia', 'ICD10_2010'), +('R48.2', 'Apraxia', 'ICD10_2010'), +('R48.8', 'Other and unspecified symbolic dysfunctions', 'ICD10_2010'), +('R49', 'Voice disturbances', 'ICD10_2010'), +('R49.0', 'Dysphonia', 'ICD10_2010'), +('R49.1', 'Aphonia', 'ICD10_2010'), +('R49.2', 'Hypernasality and hyponasality', 'ICD10_2010'), +('R49.8', 'Other and unspecified voice disturbances', 'ICD10_2010'), +('R50', 'Fever of other and unknown origin', 'ICD10_2010'), +('R50.2', 'Drug-induced fever', 'ICD10_2010'), +('R50.8', 'Other specified fever', 'ICD10_2010'), +('R50.9', 'Fever, unspecified', 'ICD10_2010'), +('R51', 'Headache', 'ICD10_2010'), +('R52', 'Pain, not elsewhere classified', 'ICD10_2010'), +('R52.0', 'Acute pain', 'ICD10_2010'), +('R52.1', 'Chronic intractable pain', 'ICD10_2010'), +('R52.2', 'Other chronic pain', 'ICD10_2010'), +('R52.9', 'Pain, unspecified', 'ICD10_2010'), +('R53', 'Malaise and fatigue', 'ICD10_2010'), +('R54', 'Senility', 'ICD10_2010'), +('R55', 'Syncope and collapse', 'ICD10_2010'), +('R56', 'Convulsions, not elsewhere classified', 'ICD10_2010'), +('R56.0', 'Febrile convulsions', 'ICD10_2010'), +('R56.8', 'Other and unspecified convulsions', 'ICD10_2010'), +('R57', 'Shock, not elsewhere classified', 'ICD10_2010'), +('R57.0', 'Cardiogenic shock', 'ICD10_2010'), +('R57.1', 'Hypovolaemic shock', 'ICD10_2010'), +('R57.2', 'Septic shock', 'ICD10_2010'), +('R57.8', 'Other shock', 'ICD10_2010'), +('R57.9', 'Shock, unspecified', 'ICD10_2010'), +('R58', 'Haemorrhage, not elsewhere classified', 'ICD10_2010'), +('R59', 'Enlarged lymph nodes', 'ICD10_2010'), +('R59.0', 'Localized enlarged lymph nodes', 'ICD10_2010'), +('R59.1', 'Generalized enlarged lymph nodes', 'ICD10_2010'), +('R59.9', 'Enlarged lymph nodes, unspecified', 'ICD10_2010'), +('R60', 'Oedema, not elsewhere classified', 'ICD10_2010'), +('R60.0', 'Localized oedema', 'ICD10_2010'), +('R60.1', 'Generalized oedema', 'ICD10_2010'), +('R60.9', 'Oedema, unspecified', 'ICD10_2010'), +('R61', 'Hyperhidrosis', 'ICD10_2010'), +('R61.0', 'Localized hyperhidrosis', 'ICD10_2010'), +('R61.1', 'Generalized hyperhidrosis', 'ICD10_2010'), +('R61.9', 'Hyperhidrosis, unspecified', 'ICD10_2010'), +('R62', 'Lack of expected normal physiological development', 'ICD10_2010'), +('R62.0', 'Delayed milestone', 'ICD10_2010'), +('R62.8', 'Other lack of expected normal physiological development', 'ICD10_2010'), +('R62.9', 'Lack of expected normal physiologic developmemnt unspecified', 'ICD10_2010'), +('R63', 'Symptoms and signs concerning food and fluid intake', 'ICD10_2010'), +('R63.0', 'Anorexia', 'ICD10_2010'), +('R63.1', 'Polydipsia', 'ICD10_2010'), +('R63.2', 'Polyphagia', 'ICD10_2010'), +('R63.3', 'Feeding difficulties and mismanagement', 'ICD10_2010'), +('R63.4', 'Abnormal weight loss', 'ICD10_2010'), +('R63.5', 'Abnormal weight gain', 'ICD10_2010'), +('R63.6', 'Insufficient intake of food and water due to self neglect', 'ICD10_2010'), +('R63.8', 'Other symptoms and signs concerning food and fluid intake', 'ICD10_2010'), +('R64', 'Cachexia', 'ICD10_2010'), +('R65', 'Systemic Inflammatory Response Syndrome [SIRS]', 'ICD10_2010'), +('R65.0', 'Systemic Inflammatory Response Syndrome of infectious origin without organ failure', 'ICD10_2010'), +('R65.1', 'Systemic Inflammatory Response Syndrome of infectious origin with organ failure', 'ICD10_2010'), +('R65.2', 'Systemic Inflammatory Response Syndrome of non-infectious origin without organ failure', 'ICD10_2010'), +('R65.3', 'Systemic Inflammatory Response Syndrome of non-infectious origin with organ failure', 'ICD10_2010'), +('R65.9', 'Systemic Inflammatory Response Syndrome, unspecified', 'ICD10_2010'), +('R68', 'Other general symptoms and signs', 'ICD10_2010'), +('R68.0', 'Hypothermia not associated with low environmental temperature', 'ICD10_2010'), +('R68.1', 'Nonspecific symptoms peculiar to infancy', 'ICD10_2010'), +('R68.2', 'Dry mouth, unspecified', 'ICD10_2010'), +('R68.3', 'Clubbing of fingers', 'ICD10_2010'), +('R68.8', 'Other specified general symptoms and signs', 'ICD10_2010'), +('R69', 'Unknown and unspecified causes of morbidity', 'ICD10_2010'), +('R70', 'Elevated erythrocyte sedimentation rate and abnormality of plasma viscosity', 'ICD10_2010'), +('R70.0', 'Elevated erythrocyte sedimentation rate', 'ICD10_2010'), +('R70.1', 'Abnormal plasma viscosity', 'ICD10_2010'), +('R71', 'Abnormality of red blood cells', 'ICD10_2010'), +('R72', 'Abnormality of white blood cells, not elsewhere classified', 'ICD10_2010'), +('R73', 'Elevated blood glucose level', 'ICD10_2010'), +('R73.0', 'Abnormal glucose tolerance test', 'ICD10_2010'), +('R73.9', 'Hyperglycaemia, unspecified', 'ICD10_2010'), +('R74', 'Abnormal serum enzyme levels', 'ICD10_2010'), +('R74.0', 'Elevated levels of transaminase & lactic acid dehydrogenase', 'ICD10_2010'), +('R74.8', 'Abnormal levels of other serum enzymes', 'ICD10_2010'), +('R74.9', 'Abnormal level of unspecified serum enzyme', 'ICD10_2010'), +('R75', 'Laboratory evidence of human immunodeficiency virus [hiv]', 'ICD10_2010'), +('R76', 'Other abnormal immunological findings in serum', 'ICD10_2010'), +('R76.0', 'Raised antibody titre', 'ICD10_2010'), +('R76.1', 'Abnormal reaction to tuberculin test', 'ICD10_2010'), +('R76.2', 'False-positive serological test for syphilis', 'ICD10_2010'), +('R76.8', 'Other specified abnormal immunological findings in serum', 'ICD10_2010'), +('R76.9', 'Abnormal immunological finding in serum, unspecified', 'ICD10_2010'), +('R77', 'Other abnormalities of plasma proteins', 'ICD10_2010'), +('R77.0', 'Abnormality of albumin', 'ICD10_2010'), +('R77.1', 'Abnormality of globulin', 'ICD10_2010'), +('R77.2', 'Abnormality of alphafetoprotein', 'ICD10_2010'), +('R77.8', 'Other specified abnormalities of plasma proteins', 'ICD10_2010'), +('R77.9', 'Abnormality of plasma protein, unspecified', 'ICD10_2010'), +('R78', 'Findings of drugs and other substances, not normally found in blood', 'ICD10_2010'), +('R78.0', 'Finding of alcohol in blood', 'ICD10_2010'), +('R78.1', 'Finding of opiate drug in blood', 'ICD10_2010'), +('R78.2', 'Finding of cocaine in blood', 'ICD10_2010'), +('R78.3', 'Finding of hallucinogen in blood', 'ICD10_2010'), +('R78.4', 'Finding of other drugs of addictive potential in blood', 'ICD10_2010'), +('R78.5', 'Finding of psychotropic drug in blood', 'ICD10_2010'), +('R78.6', 'Finding of steroid agent in blood', 'ICD10_2010'), +('R78.7', 'Finding of abnormal level of heavy metals in blood', 'ICD10_2010'), +('R78.8', 'Finding of other specified substance not normally found in blood', 'ICD10_2010'), +('R78.9', 'Finding of unspecified substance not normally found in blood', 'ICD10_2010'), +('R79', 'Other abnormal findings of blood chemistry', 'ICD10_2010'), +('R79.0', 'Abnormal level of blood mineral', 'ICD10_2010'), +('R79.8', 'Other specified abnormal findings of blood chemistry', 'ICD10_2010'), +('R79.9', 'Abnormal finding of blood chemistry, unspecified', 'ICD10_2010'), +('R80', 'Isolated proteinuria', 'ICD10_2010'), +('R81', 'Glycosuria', 'ICD10_2010'), +('R82', 'Other abnormal findings in urine', 'ICD10_2010'), +('R82.0', 'Chyluria', 'ICD10_2010'), +('R82.1', 'Myoglobinuria', 'ICD10_2010'), +('R82.2', 'Biliuria', 'ICD10_2010'), +('R82.3', 'Haemoglobinuria', 'ICD10_2010'), +('R82.4', 'Acetonuria', 'ICD10_2010'), +('R82.5', 'Elevated urine levels of drugs, medicaments and biolog substance', 'ICD10_2010'), +('R82.6', 'Abnormal urine levels of substance chiefly nonmedicinal as to sources', 'ICD10_2010'), +('R82.7', 'Abnormal findings on microbiological examination of urine', 'ICD10_2010'), +('R82.8', 'Abnormal find on cytological and histological examination of urine', 'ICD10_2010'), +('R82.9', 'Other and unspecified abnormal findings in urine', 'ICD10_2010'), +('R83', 'Abnormal findings in cerebrospinal fluid', 'ICD10_2010'), +('R83.0', 'Abnormal findings in cerebrospinal fluid, abnormal level of enzymes', 'ICD10_2010'), +('R83.1', 'Abnormal findings in cerebrospinal fluid, abnormal level of hormones', 'ICD10_2010'), +('R83.2', 'Abnormal findings in cerebrospinal fluid, abnormal level other drugs, medicaments and biological substance', 'ICD10_2010'), +('R83.3', 'Abnormal findings in cerebrospinal fluid, abnormal level substance chiefly nonmedicinal as to source', 'ICD10_2010'), +('R83.4', 'Abnormal findings in cerebrospinal fluid, abnormal immunological findings', 'ICD10_2010'), +('R83.5', 'Abnormal findings in cerebrospinal fluid, abnormal microbiological findings', 'ICD10_2010'), +('R83.6', 'Abnormal findings in cerebrospinal fluid, abnormal cytological findings', 'ICD10_2010'), +('R83.7', 'Abnormal findings in cerebrospinal fluid, abnormal histological findings', 'ICD10_2010'), +('R83.8', 'Abnormal findings in cerebrospinal fluid, other abnormal findings', 'ICD10_2010'), +('R83.9', 'Abnormal findings in cerebrospinal fluid, unspecified abnormal finding', 'ICD10_2010'), +('R84', 'Abnormal findings in specimens from respiratory organs and thorax', 'ICD10_2010'), +('R84.0', 'Abnormal findings in specimens from respiratory organs and thorax, abnormal level of enzymes', 'ICD10_2010'), +('R84.1', 'Abnormal findings in specimens from respiratory organs and thorax, abnormal level of hormones', 'ICD10_2010'), +('R84.2', 'Abnormal findings in specimens from respiratory organs and thorax, abnormal level other drugs, medicaments and biological substance', 'ICD10_2010'), +('R84.3', 'Abnormal findings in specimens from respiratory organs and thorax, abnormal level substance chiefly nonmedicinal as to source', 'ICD10_2010'), +('R84.4', 'Abnormal findings in specimens from respiratory organs and thorax, abnormal immunological findings', 'ICD10_2010'), +('R84.5', 'Abnormal findings in specimens from respiratory organs and thorax, abnormal microbiological findings', 'ICD10_2010'), +('R84.6', 'Abnormal findings in specimens from respiratory organs and thorax, abnormal cytological findings', 'ICD10_2010'), +('R84.7', 'Abnormal findings in specimens from respiratory organs and thorax, abnormal histological findings', 'ICD10_2010'), +('R84.8', 'Abnormal findings in specimens from respiratory organs and thorax, other abnormal findings', 'ICD10_2010'), +('R84.9', 'Abnormal findings in specimens from respiratory organs and thorax, unspecified abnormal finding', 'ICD10_2010'), +('R85', 'Abnormal findings in specimens from digestive organs and abdominal cavity', 'ICD10_2010'), +('R85.0', 'Abnormal finding in specimens from digestive organs and abnomoinal cavity, abnormal level of enzymes', 'ICD10_2010'), +('R85.1', 'Abnormal finding in specimens from digestive organs and abnomoinal cavity, abnormal level of hormones', 'ICD10_2010'), +('R85.2', 'Abnormal finding in specimens from digestive organs and abnomoinal cavity, abnormal level other drugs, medicaments and biological substance', 'ICD10_2010'), +('R85.3', 'Abnormal finding in specimens from digestive organs and abnomoinal cavity, abnormal level substance chiefly nonmedicinal as to source', 'ICD10_2010'), +('R85.4', 'Abnormal finding in specimens from digestive organs and abnomoinal cavity, abnormal immunological findings', 'ICD10_2010'), +('R85.5', 'Abnormal finding in specimens from digestive organs and abnomoinal cavity, abnormal microbiological findings', 'ICD10_2010'), +('R85.6', 'Abnormal finding in specimens from digestive organs and abnomoinal cavity, abnormal cytological findings', 'ICD10_2010'), +('R85.7', 'Abnormal finding in specimens from digestive organs and abnomoinal cavity, abnormal histological findings', 'ICD10_2010'), +('R85.8', 'Abnormal finding in specimens from digestive organs and abnomoinal cavity, other abnormal findings', 'ICD10_2010'), +('R85.9', 'Abnormal finding in specimens from digestive organs and abnomoinal cavity, unspecified abnormal finding', 'ICD10_2010'), +('R86', 'Abnormal findings in specimens from male genital organs', 'ICD10_2010'), +('R86.0', 'Abnormal findings in specimens from male genital organs, abnormal level of enzymes', 'ICD10_2010'), +('R86.1', 'Abnormal findings in specimens from male genital organs, abnormal level of hormones', 'ICD10_2010'), +('R86.2', 'Abnormal findings in specimens from male genital organs, abnormal level other drugs, medicaments and biological substance', 'ICD10_2010'), +('R86.3', 'Abnormal findings in specimens from male genital organs, abnormal level substance chiefly nonmedicinal as to source', 'ICD10_2010'), +('R86.4', 'Abnormal findings in specimens from male genital organs, abnormal immunological findings', 'ICD10_2010'), +('R86.5', 'Abnormal findings in specimens from male genital organs, abnormal microbiological findings', 'ICD10_2010'), +('R86.6', 'Abnormal findings in specimens from male genital organs, abnormal cytological findings', 'ICD10_2010'), +('R86.7', 'Abnormal findings in specimens from male genital organs, abnormal histological findings', 'ICD10_2010'), +('R86.8', 'Abnormal findings in specimens from male genital organs, other abnormal findings', 'ICD10_2010'), +('R86.9', 'Abnormal findings in specimens from male genital organs, unspecified abnormal finding', 'ICD10_2010'), +('R87', 'Abnormal findings in specimens from female genital organs', 'ICD10_2010'), +('R87.0', 'Abnormal findings in specimens from famale genital organs, abnormal level of enzymes', 'ICD10_2010'), +('R87.1', 'Abnormal findings in specimens from famale genital organs, abnormal level of hormones', 'ICD10_2010'), +('R87.2', 'Abnormal findings in specimens from famale genital organs, abnormal level other drugs, medicaments and biological substance', 'ICD10_2010'), +('R87.3', 'Abnormal findings in specimens from famale genital organs, abnormal level substance chiefly nonmedicinal as to source', 'ICD10_2010'), +('R87.4', 'Abnormal findings in specimens from famale genital organs, abnormal immunological findings', 'ICD10_2010'), +('R87.5', 'Abnormal findings in specimens from famale genital organs, abnormal microbiological findings', 'ICD10_2010'), +('R87.6', 'Abnormal findings in specimens from famale genital organs, abnormal cytological findings', 'ICD10_2010'), +('R87.7', 'Abnormal findings in specimens from famale genital organs, abnormal histological findings', 'ICD10_2010'), +('R87.8', 'Abnormal findings in specimens from famale genital organs, other abnormal findings', 'ICD10_2010'), +('R87.9', 'Abnormal findings in specimens from famale genital organs, unspecified abnormal finding', 'ICD10_2010'), +('R89', 'Abnormal findings in specimens from other organs, systems and tissues', 'ICD10_2010'), +('R89.0', 'Abnormal findings in specimens from other organs,systems and tissue, abnormal level of enzymes', 'ICD10_2010'), +('R89.1', 'Abnormal findings in specimens from other organs,systems and tissue, abnormal level of hormones', 'ICD10_2010'), +('R89.2', 'Abnormal findings in specimens from other organs,systems and tissue, abnormal level other drugs, medicaments and biological substance', 'ICD10_2010'), +('R89.3', 'Abnormal findings in specimens from other organs,systems and tissue, abnormal level substance chiefly nonmedicinal as to source', 'ICD10_2010'), +('R89.4', 'Abnormal findings in specimens from other organs,systems and tissue, abnormal immunological findings', 'ICD10_2010'), +('R89.5', 'Abnormal findings in specimens from other organs,systems and tissue, abnormal microbiological findings', 'ICD10_2010'), +('R89.6', 'Abnormal findings in specimens from other organs,systems and tissue, abnormal cytological findings', 'ICD10_2010'), +('R89.7', 'Abnormal findings in specimens from other organs,systems and tissue, abnormal histological findings', 'ICD10_2010'), +('R89.8', 'Abnormal findings in specimens from other organs,systems and tissue, other abnormal findings', 'ICD10_2010'), +('R89.9', 'Abnormal findings in specimens from other organs,systems and tissue, unspecified abnormal finding', 'ICD10_2010'), +('R90', 'Abnormal findings on diagnostic imaging of central nervous system', 'ICD10_2010'), +('R90.0', 'Intracranial space-occupying lesion', 'ICD10_2010'), +('R90.8', 'Other abnormal findings on diagnostic imaging of central nervous system', 'ICD10_2010'), +('R91', 'Abnormal findings on diagnostic imaging of lung', 'ICD10_2010'), +('R92', 'Abnormal findings on diagnostic imaging of breast', 'ICD10_2010'), +('R93', 'Abnormal findings on diagnostic imaging of other body structures', 'ICD10_2010'), +('R93.0', 'Abnormal findings on diagnostic imaging of skull and head NEC', 'ICD10_2010'), +('R93.1', 'Abnormal findings on diagnostic imaging of heart and coronary circulation', 'ICD10_2010'), +('R93.2', 'Abnormal findings diagnostic imaging of liver and biliary tract', 'ICD10_2010'), +('R93.3', 'Abnormal findings diagnostic imaging of other parts of digestive tract', 'ICD10_2010'), +('R93.4', 'Abnormal findings on diagnostic imaging of urinary organs', 'ICD10_2010'), +('R93.5', 'Abnormal findings on diagnostic imaging of other abdominal regions, including retroperitoneum', 'ICD10_2010'), +('R93.6', 'Abnormal findings on diagnostic imaging of limbs', 'ICD10_2010'), +('R93.7', 'Abnormal findings on diagnostic imaging of other parts of musculoskeletal system', 'ICD10_2010'), +('R93.8', 'Abnormal findings on diagnostic imaging of other specified body structures', 'ICD10_2010'), +('R94', 'Abnormal results of function studies', 'ICD10_2010'), +('R94.0', 'Abnormal results of function studies of central nervous system', 'ICD10_2010'), +('R94.1', 'Abnormal results function studies peripheral nervous system special senses', 'ICD10_2010'), +('R94.2', 'Abnormal results of pulmonary function studies', 'ICD10_2010'), +('R94.3', 'Abnormal results of cardiovascular function studies', 'ICD10_2010'), +('R94.4', 'Abnormal results of kidney function studies', 'ICD10_2010'), +('R94.5', 'Abnormal results of liver function studies', 'ICD10_2010'), +('R94.6', 'Abnormal results of thyroid function studies', 'ICD10_2010'), +('R94.7', 'Abnormal results of other endocrine function studies', 'ICD10_2010'), +('R94.8', 'Abnormal results of function studies of other organs and systems', 'ICD10_2010'), +('R95', 'Sudden infant death syndrome', 'ICD10_2010'), +('R96', 'Other sudden death, cause unknown', 'ICD10_2010'), +('R96.0', 'Instantaneous death', 'ICD10_2010'), +('R96.1', 'Death occurring less than 24 hr from onset symptoms not otherwise explained', 'ICD10_2010'), +('R98', 'Unattended death', 'ICD10_2010'), +('R99', 'Other ill-defined and unspecified cause of mortality', 'ICD10_2010'), +('S00', 'Superficial injury of head', 'ICD10_2010'), +('S00.0', 'Superficial injury of scalp', 'ICD10_2010'), +('S00.1', 'Contusion of eyelid and periocular area', 'ICD10_2010'), +('S00.2', 'Other superficial injuries of eyelid and periocular area', 'ICD10_2010'), +('S00.3', 'Superficial injury of nose', 'ICD10_2010'), +('S00.4', 'Superficial injury of ear', 'ICD10_2010'), +('S00.5', 'Superficial injury of lip and oral cavity', 'ICD10_2010'), +('S00.7', 'Multiple superficial injuries of head', 'ICD10_2010'), +('S00.8', 'Superficial injury of other parts of head', 'ICD10_2010'), +('S00.9', 'Superficial injury of head, part unspecified', 'ICD10_2010'), +('S01', 'Open wound of head', 'ICD10_2010'), +('S01.0', 'Open wound of scalp', 'ICD10_2010'), +('S01.1', 'Open wound of eyelid and periocular area', 'ICD10_2010'), +('S01.2', 'Open wound of nose', 'ICD10_2010'), +('S01.3', 'Open wound of ear', 'ICD10_2010'), +('S01.4', 'Open wound of cheek and temporomandibular area', 'ICD10_2010'), +('S01.5', 'Open wound of lip and oral cavity', 'ICD10_2010'), +('S01.7', 'Multiple open wounds of head', 'ICD10_2010'), +('S01.8', 'Open wound of other parts of head', 'ICD10_2010'), +('S01.9', 'Open wound of head, part unspecified', 'ICD10_2010'), +('S02', 'Fracture of skull and facial bones', 'ICD10_2010'), +('S02.0', 'Fracture of vault of skull', 'ICD10_2010'), +('S02.00', 'Fracture of vault of skull, closed', 'ICD10_2010'), +('S02.01', 'Fracture of vault of skull, open', 'ICD10_2010'), +('S02.1', 'Fracture of base of skull', 'ICD10_2010'), +('S02.10', 'Fracture of base of skull, closed', 'ICD10_2010'), +('S02.11', 'Fracture of base of skull, open', 'ICD10_2010'), +('S02.2', 'Fracture of nasal bones', 'ICD10_2010'), +('S02.20', 'Fracture of nasal bones, closed', 'ICD10_2010'), +('S02.21', 'Fracture of nasal bones, open', 'ICD10_2010'), +('S02.3', 'Fracture of orbital floor', 'ICD10_2010'), +('S02.30', 'Fracture of orbital floor, closed', 'ICD10_2010'), +('S02.31', 'Fracture of orbital floor, open', 'ICD10_2010'), +('S02.4', 'Fracture of malar and maxillary bones', 'ICD10_2010'), +('S02.40', 'Fracture of malar and maxillary bones, closed', 'ICD10_2010'), +('S02.41', 'Fracture of malar and maxillary bones, open', 'ICD10_2010'), +('S02.5', 'Fracture of tooth', 'ICD10_2010'), +('S02.50', 'Fracture of tooth, closed', 'ICD10_2010'), +('S02.51', 'Fracture of tooth, open', 'ICD10_2010'), +('S02.6', 'Fracture of mandible', 'ICD10_2010'), +('S02.60', 'Fracture of mandible, closed', 'ICD10_2010'), +('S02.61', 'Fracture of mandible, open', 'ICD10_2010'), +('S02.7', 'Multiple fractures involving skull and facial bones', 'ICD10_2010'), +('S02.70', 'Multiple fractures involving skull and facial bones, closed', 'ICD10_2010'), +('S02.71', 'Multiple fractures involving skull and facial bones, open', 'ICD10_2010'), +('S02.8', 'Fractures of other skull and facial bones', 'ICD10_2010'), +('S02.80', 'Fractures of other skull and facial bones, closed', 'ICD10_2010'), +('S02.81', 'Fractures of other skull and facial bones, open', 'ICD10_2010'); +INSERT INTO `icd10` (`ID_ICD10`, `Diagnosa`, `Versi_ICD10`) VALUES +('S02.9', 'Fracture of skull and facial bones, part unspecified', 'ICD10_2010'), +('S02.90', 'Fracture of skull and facial bones, part unspecified, closed', 'ICD10_2010'), +('S02.91', 'Fracture of skull and facial bones, part unspecified, open', 'ICD10_2010'), +('S03', 'Dislocation, sprain and strain of joints and ligaments of head', 'ICD10_2010'), +('S03.0', 'Dislocation of jaw', 'ICD10_2010'), +('S03.1', 'Dislocation of septal cartilage of nose', 'ICD10_2010'), +('S03.2', 'Dislocation of tooth', 'ICD10_2010'), +('S03.3', 'Dislocation of other and unspecified parts of head', 'ICD10_2010'), +('S03.4', 'Sprain and strain of jaw', 'ICD10_2010'), +('S03.5', 'Sprain and strain joints ligs other and unspec parts head', 'ICD10_2010'), +('S04', 'Injury of cranial nerves', 'ICD10_2010'), +('S04.0', 'Injury of optic nerve and pathways', 'ICD10_2010'), +('S04.1', 'Injury of oculomotor nerve', 'ICD10_2010'), +('S04.2', 'Injury of trochlear nerve', 'ICD10_2010'), +('S04.3', 'Injury of trigeminal nerve', 'ICD10_2010'), +('S04.4', 'Injury of abducent nerve', 'ICD10_2010'), +('S04.5', 'Injury of facial nerve', 'ICD10_2010'), +('S04.6', 'Injury of acoustic nerve', 'ICD10_2010'), +('S04.7', 'Injury of accessory nerve', 'ICD10_2010'), +('S04.8', 'Injury of other cranial nerves', 'ICD10_2010'), +('S04.9', 'Injury of unspecified cranial nerve', 'ICD10_2010'), +('S05', 'Injury of eye and orbit', 'ICD10_2010'), +('S05.0', 'Injury conjunctiva corneal abras without ment foreign body', 'ICD10_2010'), +('S05.1', 'Contusion of eyeball and orbital tissues', 'ICD10_2010'), +('S05.2', 'Ocular lacn and rupture with prolapse or loss intraoc tiss', 'ICD10_2010'), +('S05.3', 'Ocular lacn without prolapse or loss of intraocular tissue', 'ICD10_2010'), +('S05.4', 'Penetrating wound of orbit with or without foreign body', 'ICD10_2010'), +('S05.5', 'Penetrating wound of eyeball with foreign body', 'ICD10_2010'), +('S05.6', 'Penetrating wound of eyeball without foreign body', 'ICD10_2010'), +('S05.7', 'Avulsion of eye', 'ICD10_2010'), +('S05.8', 'Other injuries of eye and orbit', 'ICD10_2010'), +('S05.9', 'Injury of eye and orbit, unspecified', 'ICD10_2010'), +('S06', 'Intracranial injury', 'ICD10_2010'), +('S06.0', 'Concussion', 'ICD10_2010'), +('S06.00', 'Concussion, without open intracranial wound', 'ICD10_2010'), +('S06.01', 'Concussion, with open intracranial wound', 'ICD10_2010'), +('S06.1', 'Traumatic cerebral oedema', 'ICD10_2010'), +('S06.10', 'Traumatic cerebral oedema, without open intracranial wound', 'ICD10_2010'), +('S06.11', 'Traumatic cerebral oedema, with open intracranial wound', 'ICD10_2010'), +('S06.2', 'Diffuse brain injury', 'ICD10_2010'), +('S06.20', 'Diffuse brain injury, without open intracranial wound', 'ICD10_2010'), +('S06.21', 'Diffuse brain injury, with open intracranial wound', 'ICD10_2010'), +('S06.3', 'Focal brain injury', 'ICD10_2010'), +('S06.30', 'Focal brain injury, without open intracranial wound', 'ICD10_2010'), +('S06.31', 'Focal brain injury, with open intracranial wound', 'ICD10_2010'), +('S06.4', 'Epidural haemorrhage', 'ICD10_2010'), +('S06.40', 'Epidural haemorrhage, without open intracranial wound', 'ICD10_2010'), +('S06.41', 'Epidural haemorrhage, with open intracranial wound', 'ICD10_2010'), +('S06.5', 'Traumatic subdural haemorrhage', 'ICD10_2010'), +('S06.50', 'Traumatic subdural haemorrhage, without open intracranial wound', 'ICD10_2010'), +('S06.51', 'Traumatic subdural haemorrhage, with open intracranial wound', 'ICD10_2010'), +('S06.6', 'Traumatic subarachnoid haemorrhage', 'ICD10_2010'), +('S06.60', 'Traumatic subarachnoid haemorrhage, without open intracranial wound', 'ICD10_2010'), +('S06.61', 'Traumatic subarachnoid haemorrhage, with open intracranial wound', 'ICD10_2010'), +('S06.7', 'Intracranial injury with prolonged coma', 'ICD10_2010'), +('S06.70', 'Intracranial injury with prolonged coma, without open intracranial wound', 'ICD10_2010'), +('S06.71', 'Intracranial injury with prolonged coma, with open intracranial wound', 'ICD10_2010'), +('S06.8', 'Other intracranial injuries', 'ICD10_2010'), +('S06.80', 'Other intracranial injuries, without open intracranial wound', 'ICD10_2010'), +('S06.81', 'Other intracranial injuries, with open intracranial wound', 'ICD10_2010'), +('S06.9', 'Intracranial injury, unspecified', 'ICD10_2010'), +('S06.90', 'Intracranial injury, unspecified, without open intracranial wound', 'ICD10_2010'), +('S06.91', 'Intracranial injury, unspecified, with open intracranial wound', 'ICD10_2010'), +('S07', 'Crushing injury of head', 'ICD10_2010'), +('S07.0', 'Crushing injury of face', 'ICD10_2010'), +('S07.1', 'Crushing injury of skull', 'ICD10_2010'), +('S07.8', 'Crushing injury of other parts of head', 'ICD10_2010'), +('S07.9', 'Crushing injury of head, part unspecified', 'ICD10_2010'), +('S08', 'Traumatic amputation of part of head', 'ICD10_2010'), +('S08.0', 'Avulsion of scalp', 'ICD10_2010'), +('S08.1', 'Traumatic amputation of ear', 'ICD10_2010'), +('S08.8', 'Traumatic amputation of other parts of head', 'ICD10_2010'), +('S08.9', 'Traumatic amputation of unspecified part of head', 'ICD10_2010'), +('S09', 'Other and unspecified injuries of head', 'ICD10_2010'), +('S09.0', 'Injury of blood vessels of head, not elsewhere classified', 'ICD10_2010'), +('S09.1', 'Injury of muscle and tendon of head', 'ICD10_2010'), +('S09.2', 'Traumatic rupture of ear drum', 'ICD10_2010'), +('S09.7', 'Multiple injuries of head', 'ICD10_2010'), +('S09.8', 'Other specified injuries of head', 'ICD10_2010'), +('S09.9', 'Unspecified injury of head', 'ICD10_2010'), +('S10', 'Superficial injury of neck', 'ICD10_2010'), +('S10.0', 'Contusion of throat', 'ICD10_2010'), +('S10.1', 'Other and unspecified superficial injuries of throat', 'ICD10_2010'), +('S10.7', 'Multiple superficial injuries of neck', 'ICD10_2010'), +('S10.8', 'Superficial injury of other parts of neck', 'ICD10_2010'), +('S10.9', 'Superficial injury of neck, part unspecified', 'ICD10_2010'), +('S11', 'Open wound of neck', 'ICD10_2010'), +('S11.0', 'Open wound involving larynx and trachea', 'ICD10_2010'), +('S11.1', 'Open wound involving thyroid gland', 'ICD10_2010'), +('S11.2', 'Open wound involving pharynx and cervical oesophagus', 'ICD10_2010'), +('S11.7', 'Multiple open wounds of neck', 'ICD10_2010'), +('S11.8', 'Open wound of other parts of neck', 'ICD10_2010'), +('S11.9', 'Open wound of neck, part unspecified', 'ICD10_2010'), +('S12', 'Fracture of neck', 'ICD10_2010'), +('S12.0', 'Fracture of first cervical vertebra', 'ICD10_2010'), +('S12.00', 'Fracture of first cervical vertebra, closed', 'ICD10_2010'), +('S12.01', 'Fracture of first cervical vertebra, open', 'ICD10_2010'), +('S12.1', 'Fracture of second cervical vertebra', 'ICD10_2010'), +('S12.10', 'Fracture of second cervical vertebra, closed', 'ICD10_2010'), +('S12.11', 'Fracture of second cervical vertebra, open', 'ICD10_2010'), +('S12.2', 'Fracture of other specified cervical vertebra', 'ICD10_2010'), +('S12.20', 'Fracture of other specified cervical vertebra, closed', 'ICD10_2010'), +('S12.21', 'Fracture of other specified cervical vertebra, open', 'ICD10_2010'), +('S12.7', 'Multiple fractures of cervical spine', 'ICD10_2010'), +('S12.70', 'Multiple fractures of cervical spine, closed', 'ICD10_2010'), +('S12.71', 'Multiple fractures of cervical spine, open', 'ICD10_2010'), +('S12.8', 'Fracture of other parts of neck', 'ICD10_2010'), +('S12.80', 'Fracture of other parts of neck, closed', 'ICD10_2010'), +('S12.81', 'Fracture of other parts of neck, open', 'ICD10_2010'), +('S12.9', 'Fracture of neck, part unspecified', 'ICD10_2010'), +('S12.90', 'Fracture of neck, part unspecified, closed', 'ICD10_2010'), +('S12.91', 'Fracture of neck, part unspecified, open', 'ICD10_2010'), +('S13', 'Dislocation, sprain and strain of joints and ligaments at neck level', 'ICD10_2010'), +('S13.0', 'Traumatic rupture of cervical intervertebral disc', 'ICD10_2010'), +('S13.1', 'Dislocation of cervical vertebra', 'ICD10_2010'), +('S13.2', 'Dislocation of other and unspecified parts of neck', 'ICD10_2010'), +('S13.3', 'Multiple dislocations of neck', 'ICD10_2010'), +('S13.4', 'Sprain and strain of cervical spine', 'ICD10_2010'), +('S13.5', 'Sprain and strain of thyroid region', 'ICD10_2010'), +('S13.6', 'Sprain and strain of joints and ligaments of other and unspecified parts of neck', 'ICD10_2010'), +('S14', 'Injury of nerves and spinal cord at neck level', 'ICD10_2010'), +('S14.0', 'Concussion and oedema of cervical spinal cord', 'ICD10_2010'), +('S14.1', 'Other and unspecified injuries of cervical spinal cord', 'ICD10_2010'), +('S14.2', 'Injury of nerve root of cervical spine', 'ICD10_2010'), +('S14.3', 'Injury of brachial plexus', 'ICD10_2010'), +('S14.4', 'Injury of peripheral nerves of neck', 'ICD10_2010'), +('S14.5', 'Injury of cervical sympathetic nerves', 'ICD10_2010'), +('S14.6', 'Injury of other and unspecified nerves of neck', 'ICD10_2010'), +('S15', 'Injury of blood vessels at neck level', 'ICD10_2010'), +('S15.0', 'Injury of carotid artery', 'ICD10_2010'), +('S15.1', 'Injury of vertebral artery', 'ICD10_2010'), +('S15.2', 'Injury of external jugular vein', 'ICD10_2010'), +('S15.3', 'Injury of internal jugular vein', 'ICD10_2010'), +('S15.7', 'Injury of multiple blood vessels at neck level', 'ICD10_2010'), +('S15.8', 'Injury of other blood vessels at neck level', 'ICD10_2010'), +('S15.9', 'Injury of unspecified blood vessel at neck level', 'ICD10_2010'), +('S16', 'Injury of muscle and tendon at neck level', 'ICD10_2010'), +('S17', 'Crushing injury of neck', 'ICD10_2010'), +('S17.0', 'Crushing injury of larynx and trachea', 'ICD10_2010'), +('S17.8', 'Crushing injury of other parts of neck', 'ICD10_2010'), +('S17.9', 'Crushing injury of neck, part unspecified', 'ICD10_2010'), +('S18', 'Traumatic amputation at neck level', 'ICD10_2010'), +('S19', 'Other and unspecified injuries of neck', 'ICD10_2010'), +('S19.7', 'Multiple injuries of neck', 'ICD10_2010'), +('S19.8', 'Other specified injuries of neck', 'ICD10_2010'), +('S19.9', 'Unspecified injury of neck', 'ICD10_2010'), +('S20', 'Superficial injury of thorax', 'ICD10_2010'), +('S20.0', 'Contusion of breast', 'ICD10_2010'), +('S20.1', 'Other and unspecified superficial injuries of breast', 'ICD10_2010'), +('S20.2', 'Contusion of thorax', 'ICD10_2010'), +('S20.3', 'Other superficial injuries of front wall of thorax', 'ICD10_2010'), +('S20.4', 'Other superficial injuries of back wall of thorax', 'ICD10_2010'), +('S20.7', 'Multiple superficial injuries of thorax', 'ICD10_2010'), +('S20.8', 'Superficial injury of other and unspecified parts of thorax', 'ICD10_2010'), +('S21', 'Open wound of thorax', 'ICD10_2010'), +('S21.0', 'Open wound of breast', 'ICD10_2010'), +('S21.1', 'Open wound of front wall of thorax', 'ICD10_2010'), +('S21.2', 'Open wound of back wall of thorax', 'ICD10_2010'), +('S21.7', 'Multiple open wounds of thoracic wall', 'ICD10_2010'), +('S21.8', 'Open wound of other parts of thorax', 'ICD10_2010'), +('S21.9', 'Open wound of thorax, part unspecified', 'ICD10_2010'), +('S22', 'Fracture of rib(s), sternum and thoracic spine', 'ICD10_2010'), +('S22.0', 'Fracture of thoracic vertebra', 'ICD10_2010'), +('S22.00', 'Fracture of thoracic vertebra, closed', 'ICD10_2010'), +('S22.01', 'Fracture of thoracic vertebra, open', 'ICD10_2010'), +('S22.1', 'Multiple fractures of thoracic spine', 'ICD10_2010'), +('S22.10', 'Multiple fractures of thoracic spine, closed', 'ICD10_2010'), +('S22.11', 'Multiple fractures of thoracic spine, open', 'ICD10_2010'), +('S22.2', 'Fracture of sternum', 'ICD10_2010'), +('S22.20', 'Fracture of sternum, closed', 'ICD10_2010'), +('S22.21', 'Fracture of sternum, open', 'ICD10_2010'), +('S22.3', 'Fracture of rib', 'ICD10_2010'), +('S22.30', 'Fracture of rib, closed', 'ICD10_2010'), +('S22.31', 'Fracture of rib, open', 'ICD10_2010'), +('S22.4', 'Multiple fractures of ribs', 'ICD10_2010'), +('S22.40', 'Multiple fractures of ribs, closed', 'ICD10_2010'), +('S22.41', 'Multiple fractures of ribs, open', 'ICD10_2010'), +('S22.5', 'Flail chest', 'ICD10_2010'), +('S22.50', 'Flail chest, closed', 'ICD10_2010'), +('S22.51', 'Flail chest, open', 'ICD10_2010'), +('S22.8', 'Fracture of other parts of bony thorax', 'ICD10_2010'), +('S22.80', 'Fracture of other parts of bony thorax, closed', 'ICD10_2010'), +('S22.81', 'Fracture of other parts of bony thorax, open', 'ICD10_2010'), +('S22.9', 'Fracture of bony thorax, part unspecified', 'ICD10_2010'), +('S22.90', 'Fracture of bony thorax, part unspecified, closed', 'ICD10_2010'), +('S22.91', 'Fracture of bony thorax, part unspecified, open', 'ICD10_2010'), +('S23', 'Dislocation, sprain and strain of joints and ligaments of thorax', 'ICD10_2010'), +('S23.0', 'Traumatic rupture of thoracic intervertebral disc', 'ICD10_2010'), +('S23.1', 'Dislocation of thoracic vertebra', 'ICD10_2010'), +('S23.2', 'Dislocation of other and unspecified parts of thorax', 'ICD10_2010'), +('S23.3', 'Sprain and strain of thoracic spine', 'ICD10_2010'), +('S23.4', 'Sprain and strain of ribs and sternum', 'ICD10_2010'), +('S23.5', 'Sprain and strain of other and unspecified parts of thorax', 'ICD10_2010'), +('S24', 'Injury of nerves and spinal cord at thorax level', 'ICD10_2010'), +('S24.0', 'Concussion and oedema of thoracic spinal cord', 'ICD10_2010'), +('S24.1', 'Other and unspecified injuries of thoracic spinal cord', 'ICD10_2010'), +('S24.2', 'Injury of nerve root of thoracic spine', 'ICD10_2010'), +('S24.3', 'Injury of peripheral nerves of thorax', 'ICD10_2010'), +('S24.4', 'Injury of thoracic sympathetic nerves', 'ICD10_2010'), +('S24.5', 'Injury of other nerves of thorax', 'ICD10_2010'), +('S24.6', 'Injury of unspecified nerve of thorax', 'ICD10_2010'), +('S25', 'Injury of blood vessels of thorax', 'ICD10_2010'), +('S25.0', 'Injury of thoracic aorta', 'ICD10_2010'), +('S25.1', 'Injury of innominate or subclavian artery', 'ICD10_2010'), +('S25.2', 'Injury of superior vena cava', 'ICD10_2010'), +('S25.3', 'Injury of innominate or subclavian vein', 'ICD10_2010'), +('S25.4', 'Injury of pulmonary blood vessels', 'ICD10_2010'), +('S25.5', 'Injury of intercostal blood vessels', 'ICD10_2010'), +('S25.7', 'Injury of multiple blood vessels of thorax', 'ICD10_2010'), +('S25.8', 'Injury of other blood vessels of thorax', 'ICD10_2010'), +('S25.9', 'Injury of unspecified blood vessel of thorax', 'ICD10_2010'), +('S26', 'Injury of heart', 'ICD10_2010'), +('S26.0', 'Injury of heart with haemopericardium', 'ICD10_2010'), +('S26.00', 'Injury of heart with haemopericardium, without open wound into thoracic cavity', 'ICD10_2010'), +('S26.01', 'Injury of heart with haemopericardium, with open wound into thoracic cavity', 'ICD10_2010'), +('S26.8', 'Other injuries of heart', 'ICD10_2010'), +('S26.80', 'Other injuries of heart, without open wound into thoracic cavity', 'ICD10_2010'), +('S26.81', 'Other injuries of heart, with open wound into thoracic cavity', 'ICD10_2010'), +('S26.9', 'Injury of heart, unspecified', 'ICD10_2010'), +('S26.90', 'Injury of heart, unspecified, withoutopen wound into thoracic cavity', 'ICD10_2010'), +('S26.91', 'Injury of heart, unspecified, with open wound into thoracic cavity', 'ICD10_2010'), +('S27', 'Injury of other and unspecified intrathoracic organs', 'ICD10_2010'), +('S27.0', 'Traumatic pneumothorax', 'ICD10_2010'), +('S27.00', 'Traumatic pneumothorax, without open wound into thoracic cavity', 'ICD10_2010'), +('S27.01', 'Traumatic pneumothorax, with open wound into thoracic cavity', 'ICD10_2010'), +('S27.1', 'Traumatic haemothorax', 'ICD10_2010'), +('S27.10', 'Traumatic haemothorax, without open wound into thoracic cavity', 'ICD10_2010'), +('S27.11', 'Traumatic haemothorax, with open wound into thoracic cavity', 'ICD10_2010'), +('S27.2', 'Traumatic haemopneumothorax', 'ICD10_2010'), +('S27.20', 'Traumatic haemopneumothorax, without open wound into thoracic cavity', 'ICD10_2010'), +('S27.21', 'Traumatic haemopneumothorax, with open wound into thoracic cavity', 'ICD10_2010'), +('S27.3', 'Other injuries of lung', 'ICD10_2010'), +('S27.30', 'Other injuries of lung, without open wound into thoracic cavity', 'ICD10_2010'), +('S27.31', 'Other injuries of lung, with open wound into thoracic cavity', 'ICD10_2010'), +('S27.4', 'Injury of bronchus', 'ICD10_2010'), +('S27.40', 'Injury of bronchus, without open wound into thoracic cavity', 'ICD10_2010'), +('S27.41', 'Injury of bronchus, with open wound into thoracic cavity', 'ICD10_2010'), +('S27.5', 'Injury of thoracic trachea', 'ICD10_2010'), +('S27.50', 'Injury of thoracic trachea, without open wound into thoracic cavity', 'ICD10_2010'), +('S27.51', 'Injury of thoracic trachea, with open wound into thoracic cavity', 'ICD10_2010'), +('S27.6', 'Injury of pleura', 'ICD10_2010'), +('S27.60', 'Injury of pleura, without open wound into thoracic cavity', 'ICD10_2010'), +('S27.61', 'Injury of pleura, with open wound into thoracic cavity', 'ICD10_2010'), +('S27.7', 'Multiple injuries of intrathoracic organs', 'ICD10_2010'), +('S27.70', 'Multiple injuries of intrathoracic organs, without open wound into thoracic cavity', 'ICD10_2010'), +('S27.71', 'Multiple injuries of intrathoracic organs, with open wound into thoracic cavity', 'ICD10_2010'), +('S27.8', 'Injury of other specified intrathoracic organs', 'ICD10_2010'), +('S27.80', 'Injury of other specified intrathoracic organs, without open wound into thoracic cavity', 'ICD10_2010'), +('S27.81', 'Injury of other specified intrathoracic organs, with open wound into thoracic cavity', 'ICD10_2010'), +('S27.9', 'Injury of unspecified intrathoracic organ', 'ICD10_2010'), +('S27.90', 'Injury of unspecified intrathoracic organ, without open wound into thoracic cavity', 'ICD10_2010'), +('S27.91', 'Injury of unspecified intrathoracic organ, with open wound into thoracic cavity', 'ICD10_2010'), +('S28', 'Crushing injury of thorax and traumatic amputation of part of thorax', 'ICD10_2010'), +('S28.0', 'Crushed chest', 'ICD10_2010'), +('S28.1', 'Traumatic amputation of part of thorax', 'ICD10_2010'), +('S29', 'Other and unspecified injuries of thorax', 'ICD10_2010'), +('S29.0', 'Injury of muscle and tendon at thorax level', 'ICD10_2010'), +('S29.7', 'Multiple injuries of thorax', 'ICD10_2010'), +('S29.8', 'Other specified injuries of thorax', 'ICD10_2010'), +('S29.9', 'Unspecified injury of thorax', 'ICD10_2010'), +('S30', 'Superficial injury of abdomen, lower back and pelvis', 'ICD10_2010'), +('S30.0', 'Contusion of lower back and pelvis', 'ICD10_2010'), +('S30.1', 'Contusion of abdominal wall', 'ICD10_2010'), +('S30.2', 'Contusion of external genital organs', 'ICD10_2010'), +('S30.7', 'Multiple superficial injuries of abdomen lower back and pelvis', 'ICD10_2010'), +('S30.8', 'Other superficial injuries of abdomen, lower back and pelvis', 'ICD10_2010'), +('S30.9', 'Superficial injury of abdomen lower back and pelvis, part unspecified', 'ICD10_2010'), +('S31', 'Open wound of abdomen, lower back and pelvis', 'ICD10_2010'), +('S31.0', 'Open wound of lower back and pelvis', 'ICD10_2010'), +('S31.1', 'Open wound of abdominal wall', 'ICD10_2010'), +('S31.2', 'Open wound of penis', 'ICD10_2010'), +('S31.3', 'Open wound of scrotum and testes', 'ICD10_2010'), +('S31.4', 'Open wound of vagina and vulva', 'ICD10_2010'), +('S31.5', 'Open wound of other and unspecified external genital organs', 'ICD10_2010'), +('S31.7', 'Multiple open wounds of abdomen, lower back and pelvis', 'ICD10_2010'), +('S31.8', 'Open wound of other and unspecified parts of abdomen', 'ICD10_2010'), +('S32', 'Fracture of lumbar spine and pelvis', 'ICD10_2010'), +('S32.0', 'Fracture of lumbar vertebra', 'ICD10_2010'), +('S32.00', 'Fracture of lumbar vertebra, closed', 'ICD10_2010'), +('S32.01', 'Fracture of lumbar vertebra, open', 'ICD10_2010'), +('S32.1', 'Fracture of sacrum', 'ICD10_2010'), +('S32.10', 'Fracture of sacrum, closed', 'ICD10_2010'), +('S32.11', 'Fracture of sacrum, open', 'ICD10_2010'), +('S32.2', 'Fracture of coccyx', 'ICD10_2010'), +('S32.20', 'Fracture of coccyx, closed', 'ICD10_2010'), +('S32.21', 'Fracture of coccyx, open', 'ICD10_2010'), +('S32.3', 'Fracture of ilium', 'ICD10_2010'), +('S32.30', 'Fracture of ilium, closed', 'ICD10_2010'), +('S32.31', 'Fracture of ilium, open', 'ICD10_2010'), +('S32.4', 'Fracture of acetabulum', 'ICD10_2010'), +('S32.40', 'Fracture of acetabulum, closed', 'ICD10_2010'), +('S32.41', 'Fracture of acetabulum, open', 'ICD10_2010'), +('S32.5', 'Fracture of pubis', 'ICD10_2010'), +('S32.50', 'Fracture of pubis, closed', 'ICD10_2010'), +('S32.51', 'Fracture of pubis, open', 'ICD10_2010'), +('S32.7', 'Multiple fractures of lumbar spine and pelvis', 'ICD10_2010'), +('S32.70', 'Multiple fractures of lumbar spine and pelvis, closed', 'ICD10_2010'), +('S32.71', 'Multiple fractures of lumbar spine and pelvis, open', 'ICD10_2010'), +('S32.8', 'Fracture of oth unspecified parts of lumbar spine and pelvis', 'ICD10_2010'), +('S32.80', 'Fracture of other and unspecified parts of lumbar spine and pelvis, closed', 'ICD10_2010'), +('S32.81', 'Fracture of other and unspecified parts of lumbar spine and pelvis, open', 'ICD10_2010'), +('S33', 'Dislocation, sprain and strain of joints and ligaments of lumbar spine and pelvis', 'ICD10_2010'), +('S33.0', 'Traumatic rupture of lumbar intervertebral disc', 'ICD10_2010'), +('S33.1', 'Dislocation of lumbar vertebra', 'ICD10_2010'), +('S33.2', 'Dislocation of sacroiliac and sacrococcygeal joint', 'ICD10_2010'), +('S33.3', 'Dislocation oth and unspec parts of lumbar spine and pelvis', 'ICD10_2010'), +('S33.4', 'Traumatic rupture of symphysis pubis', 'ICD10_2010'), +('S33.5', 'Sprain and strain of lumbar spine', 'ICD10_2010'), +('S33.6', 'Sprain and strain of sacroiliac joint', 'ICD10_2010'), +('S33.7', 'Sprain and strain of other and unspec partsof lumbar spine pelvis', 'ICD10_2010'), +('S34', 'Injury of nerves and lumbar spinal cord at abdomen, lower back and pelvis level', 'ICD10_2010'), +('S34.0', 'Concussion and oedema of lumbar spinal cord', 'ICD10_2010'), +('S34.1', 'Other injury of lumbar spinal cord', 'ICD10_2010'), +('S34.2', 'Injury of nerve root of lumbar and sacral spine', 'ICD10_2010'), +('S34.3', 'Injury of cauda equina', 'ICD10_2010'), +('S34.4', 'Injury of lumbosacral plexus', 'ICD10_2010'), +('S34.5', 'Injury of lumbar, sacral and pelvic sympathetic nerves', 'ICD10_2010'), +('S34.6', 'Injury of peripheral nerve(s) of abdomen, lower back and pelvis', 'ICD10_2010'), +('S34.8', 'Injury other and unspecified nerves abdomen lower back and pelvis level', 'ICD10_2010'), +('S35', 'Injury of blood vessels at abdomen, lower back and pelvis level', 'ICD10_2010'), +('S35.0', 'Injury of abdominal aorta', 'ICD10_2010'), +('S35.1', 'Injury of inferior vena cava', 'ICD10_2010'), +('S35.2', 'Injury of coeliac or mesenteric artery', 'ICD10_2010'), +('S35.3', 'Injury of portal or splenic vein', 'ICD10_2010'), +('S35.4', 'Injury of renal blood vessels', 'ICD10_2010'), +('S35.5', 'Injury of iliac blood vessels', 'ICD10_2010'), +('S35.7', 'Injury of multiple blood vessels at abdomen, lower back and pelvis level', 'ICD10_2010'), +('S35.8', 'Injury of other blood vessels at abdomen, lower back and pelvis level', 'ICD10_2010'), +('S35.9', 'Injury of unspecified blood vessel abdoment, lower back and pelvis level', 'ICD10_2010'), +('S36', 'Injury of intra-abdominal organs', 'ICD10_2010'), +('S36.0', 'Injury of spleen', 'ICD10_2010'), +('S36.00', 'Injury of spleen, without open wound into cavity', 'ICD10_2010'), +('S36.01', 'Injury of spleen, with open wound into cavity', 'ICD10_2010'), +('S36.1', 'Injury of liver or gallbladder', 'ICD10_2010'), +('S36.10', 'Injury of liver or gallbladder, without open wound into cavity', 'ICD10_2010'), +('S36.11', 'Injury of liver or gallbladder, with open wound into cavity', 'ICD10_2010'), +('S36.2', 'Injury of pancreas', 'ICD10_2010'), +('S36.20', 'Injury of pancreas, without open wound into cavity', 'ICD10_2010'), +('S36.21', 'Injury of pancreas, with open wound into cavity', 'ICD10_2010'), +('S36.3', 'Injury of stomach', 'ICD10_2010'), +('S36.30', 'Injury of stomach, without open wound into cavity', 'ICD10_2010'), +('S36.31', 'Injury of stomach, with open wound into cavity', 'ICD10_2010'), +('S36.4', 'Injury of small intestine', 'ICD10_2010'), +('S36.40', 'Injury of small intestine, without open wound into cavity', 'ICD10_2010'), +('S36.41', 'Injury of small intestine, with open wound into cavity', 'ICD10_2010'), +('S36.5', 'Injury of colon', 'ICD10_2010'), +('S36.50', 'Injury of colon, without open wound into cavity', 'ICD10_2010'), +('S36.51', 'Injury of colon, with open wound into cavity', 'ICD10_2010'), +('S36.6', 'Injury of rectum', 'ICD10_2010'), +('S36.60', 'Injury of rectum, without open wound into cavity', 'ICD10_2010'), +('S36.61', 'Injury of rectum, with open wound into cavity', 'ICD10_2010'), +('S36.7', 'Injury of multiple intra-abdominal organs', 'ICD10_2010'), +('S36.70', 'Injury of multiple intra-abdominal organs, without open wound into cavity', 'ICD10_2010'), +('S36.71', 'Injury of multiple intra-abdominal organs, with open wound into cavity', 'ICD10_2010'), +('S36.8', 'Injury of other intra-abdominal organs', 'ICD10_2010'), +('S36.80', 'Injury of other intra-abdominal organs, without open wound into cavity', 'ICD10_2010'), +('S36.81', 'Injury of other intra-abdominal organs, with open wound into cavity', 'ICD10_2010'), +('S36.9', 'Injury of unspecified intra-abdominal organ', 'ICD10_2010'), +('S36.90', 'Injury of unspecified intra-abdominal organ, without open wound into cavity', 'ICD10_2010'), +('S36.91', 'Injury of unspecified intra-abdominal organ, with open wound into cavity', 'ICD10_2010'), +('S37', 'Injury of urinary and pelvic organs', 'ICD10_2010'), +('S37.0', 'Injury of kidney', 'ICD10_2010'), +('S37.00', 'Injury of kidney, without open wound into cavity', 'ICD10_2010'), +('S37.01', 'Injury of kidney, with open wound into cavity', 'ICD10_2010'), +('S37.1', 'Injury of ureter', 'ICD10_2010'), +('S37.10', 'Injury of ureter, without open wound into cavity', 'ICD10_2010'), +('S37.11', 'Injury of ureter, with open wound into cavity', 'ICD10_2010'), +('S37.2', 'Injury of bladder', 'ICD10_2010'), +('S37.20', 'Injury of bladder, without open wound into cavity', 'ICD10_2010'), +('S37.21', 'Injury of bladder, with open wound into cavity', 'ICD10_2010'), +('S37.3', 'Injury of urethra', 'ICD10_2010'), +('S37.30', 'Injury of urethra, without open wound into cavity', 'ICD10_2010'), +('S37.31', 'Injury of urethra, with open wound into cavity', 'ICD10_2010'), +('S37.4', 'Injury of ovary', 'ICD10_2010'), +('S37.40', 'Injury of ovary, without open wound into cavity', 'ICD10_2010'), +('S37.41', 'Injury of ovary, with open wound into cavity', 'ICD10_2010'), +('S37.5', 'Injury of fallopian tube', 'ICD10_2010'), +('S37.50', 'Injury of fallopian tube, without open wound into cavity', 'ICD10_2010'), +('S37.51', 'Injury of fallopian tube, with open wound into cavity', 'ICD10_2010'), +('S37.6', 'Injury of uterus', 'ICD10_2010'), +('S37.60', 'Injury of uterus, without open wound into cavity', 'ICD10_2010'), +('S37.61', 'Injury of uterus, with open wound into cavity', 'ICD10_2010'), +('S37.7', 'Injury of multiple urinary and pelvic organs', 'ICD10_2010'), +('S37.70', 'Injury of multiple urinary and pelvic organs, without open wound into cavity', 'ICD10_2010'), +('S37.71', 'Injury of multiple urinary and pelvic organs, with open wound into cavity', 'ICD10_2010'), +('S37.8', 'Injury of other urinary and pelvic organs', 'ICD10_2010'), +('S37.80', 'Injury of other urinary and pelvic organs, without open wound into cavity', 'ICD10_2010'), +('S37.81', 'Injury of other urinary and pelvic organs, with open wound into cavity', 'ICD10_2010'), +('S37.9', 'Injury of unspecified urinary and pelvic organ', 'ICD10_2010'), +('S37.90', 'Injury of unspecified urinary and pelvic organ, without open wound into cavity', 'ICD10_2010'), +('S37.91', 'Injury of unspecified urinary and pelvic organ, with open wound into cavity', 'ICD10_2010'), +('S38', 'Crushing injury and traumatic amputation of part of abdomen, lower back and pelvis', 'ICD10_2010'), +('S38.0', 'Crushing injury of external genital organs', 'ICD10_2010'), +('S38.1', 'Crushing injury of other and unspecified part of abdomen, lower back and pelvis', 'ICD10_2010'), +('S38.2', 'Traumatic amputation of external genital organs', 'ICD10_2010'), +('S38.3', 'Traumatic amputation of other and unspecified parts of abdomen, low back and pelvis', 'ICD10_2010'), +('S39', 'Other and unspecified injuries of abdomen, lower back and pelvis', 'ICD10_2010'), +('S39.0', 'Injury of muscle and tendon of abdomen lower back and pelvis', 'ICD10_2010'), +('S39.6', 'Injury of intra-abdominal organ(s) with pelvic organ(s)', 'ICD10_2010'), +('S39.7', 'Other multiple injuries of abdomen, lower back and pelvis', 'ICD10_2010'), +('S39.8', 'Other specified injuries of abdomen, lower back and pelvis', 'ICD10_2010'), +('S39.9', 'Unspecified injury of abdomen, lower back and pelvis', 'ICD10_2010'), +('S40', 'Superficial injury of shoulder and upper arm', 'ICD10_2010'), +('S40.0', 'Contusion of shoulder and upper arm', 'ICD10_2010'), +('S40.7', 'Multiple superficial injuries of shoulder and upper arm', 'ICD10_2010'), +('S40.8', 'Other superficial injuries of shoulder and upper arm', 'ICD10_2010'), +('S40.9', 'Superficial injury of shoulder and upper arm, unspecified', 'ICD10_2010'), +('S41', 'Open wound of shoulder and upper arm', 'ICD10_2010'), +('S41.0', 'Open wound of shoulder', 'ICD10_2010'), +('S41.1', 'Open wound of upper arm', 'ICD10_2010'), +('S41.7', 'Multiple open wounds of shoulder and upper arm', 'ICD10_2010'), +('S41.8', 'Open wound of other and unspecified parts of shoulder girdle', 'ICD10_2010'), +('S42', 'Fracture of shoulder and upper arm', 'ICD10_2010'), +('S42.0', 'Fracture of clavicle', 'ICD10_2010'), +('S42.00', 'Fracture of clavicle, closed', 'ICD10_2010'), +('S42.01', 'Fracture of clavicle, open', 'ICD10_2010'), +('S42.1', 'Fracture of scapula', 'ICD10_2010'), +('S42.10', 'Fracture of scapula, closed', 'ICD10_2010'), +('S42.11', 'Fracture of scapula, open', 'ICD10_2010'), +('S42.2', 'Fracture of upper end of humerus', 'ICD10_2010'), +('S42.20', 'Fracture of upper end of humerus, closed', 'ICD10_2010'), +('S42.21', 'Fracture of upper end of humerus, open', 'ICD10_2010'), +('S42.3', 'Fracture of shaft of humerus', 'ICD10_2010'), +('S42.30', 'Fracture of shaft of humerus, closed', 'ICD10_2010'), +('S42.31', 'Fracture of shaft of humerus, open', 'ICD10_2010'), +('S42.4', 'Fracture of lower end of humerus', 'ICD10_2010'), +('S42.40', 'Fracture of lower end of humerus, closed', 'ICD10_2010'), +('S42.41', 'Fracture of lower end of humerus, open', 'ICD10_2010'), +('S42.7', 'Multiple fractures of clavicle, scapula and humerus', 'ICD10_2010'), +('S42.70', 'Multiple fractures of clavicle, scapula and humerus, closed', 'ICD10_2010'), +('S42.71', 'Multiple fractures of clavicle, scapula and humerus, open', 'ICD10_2010'), +('S42.8', 'Fracture of other parts of shoulder and upper arm', 'ICD10_2010'), +('S42.80', 'Fracture of other parts of shoulder and upper arm, closed', 'ICD10_2010'), +('S42.81', 'Fracture of other parts of shoulder and upper arm, open', 'ICD10_2010'), +('S42.9', 'Fracture of shoulder girdle, part unspecified', 'ICD10_2010'), +('S42.90', 'Fracture of shoulder girdle, part unspecified, closed', 'ICD10_2010'), +('S42.91', 'Fracture of shoulder girdle, part unspecified, open', 'ICD10_2010'), +('S43', 'Dislocation, sprain and strain of joints and ligaments of shoulder girdle', 'ICD10_2010'), +('S43.0', 'Dislocation of shoulder joint', 'ICD10_2010'), +('S43.1', 'Dislocation of acromioclavicular joint', 'ICD10_2010'), +('S43.2', 'Dislocation of sternoclavicular joint', 'ICD10_2010'), +('S43.3', 'Dislocation of other and unspec parts of shoulder girdle', 'ICD10_2010'), +('S43.4', 'Sprain and strain of shoulder joint', 'ICD10_2010'), +('S43.5', 'Sprain and strain of acromioclavicular joint', 'ICD10_2010'), +('S43.6', 'Sprain and strain of sternoclavicular joint', 'ICD10_2010'), +('S43.7', 'Sprain and strain of oth and unspec part of shoulder girdle', 'ICD10_2010'), +('S44', 'Injury of nerves at shoulder and upper arm level', 'ICD10_2010'), +('S44.0', 'Injury of ulnar nerve at upper arm level', 'ICD10_2010'), +('S44.1', 'Injury of median nerve at upper arm level', 'ICD10_2010'), +('S44.2', 'Injury of radial nerve at upper arm level', 'ICD10_2010'), +('S44.3', 'Injury of axillary nerve', 'ICD10_2010'), +('S44.4', 'Injury of musculocutaneous nerve', 'ICD10_2010'), +('S44.5', 'Injury of cutaneous sensory nerve at shoulder and upper arm level', 'ICD10_2010'), +('S44.7', 'Injury of multiple nerves at shoulder and upper arm level', 'ICD10_2010'), +('S44.8', 'Injury of other nerves at shoulder and upper arm level', 'ICD10_2010'), +('S44.9', 'Injury of unspecified nerve at shoulder and upper arm level', 'ICD10_2010'), +('S45', 'Injury of blood vessels at shoulder and upper arm level', 'ICD10_2010'), +('S45.0', 'Injury of axillary artery', 'ICD10_2010'), +('S45.1', 'Injury of brachial artery', 'ICD10_2010'), +('S45.2', 'Injury of axillary or brachial vein', 'ICD10_2010'), +('S45.3', 'Injury of superficial vein at shoulder and upper arm level', 'ICD10_2010'), +('S45.7', 'Injury of multiple blood vessels shoulder and upper arm level', 'ICD10_2010'), +('S45.8', 'Injury of oth blood vessels at shoulder and upper arm level', 'ICD10_2010'), +('S45.9', 'Injury unspecified blood vessel at shoulder and upper arm level', 'ICD10_2010'), +('S46', 'Injury of muscle and tendon at shoulder and upper arm level', 'ICD10_2010'), +('S46.0', 'Injury of tendon of the rotator cuff of shoulder', 'ICD10_2010'), +('S46.1', 'Injury of muscle and tendon of long head of biceps', 'ICD10_2010'), +('S46.2', 'Injury of muscle and tendon of other parts of biceps', 'ICD10_2010'), +('S46.3', 'Injury of muscle and tendon of triceps', 'ICD10_2010'), +('S46.7', 'Injury multiple muscles and tendons shoulder and upper arm level', 'ICD10_2010'), +('S46.8', 'Injury of other muscles and tendons at shoulder and upper arm level', 'ICD10_2010'), +('S46.9', 'Injury unspecified muscle and tendon at shoulder and upper arm level', 'ICD10_2010'), +('S47', 'Crushing injury of shoulder and upper arm', 'ICD10_2010'), +('S48', 'Traumatic amputation of shoulder and upper arm', 'ICD10_2010'), +('S48.0', 'Traumatic amputation at shoulder joint', 'ICD10_2010'), +('S48.1', 'Traumatic amputation at level between shoulder and elbow', 'ICD10_2010'), +('S48.9', 'Traumatic amputation of shoulder and upper arm level unspecified', 'ICD10_2010'), +('S49', 'Other and unspecified injuries of shoulder and upper arm', 'ICD10_2010'), +('S49.7', 'Multiple injuries of shoulder and upper arm', 'ICD10_2010'), +('S49.8', 'Other specified injuries of shoulder and upper arm', 'ICD10_2010'), +('S49.9', 'Unspecified injury of shoulder and upper arm', 'ICD10_2010'), +('S50', 'Superficial injury of forearm', 'ICD10_2010'), +('S50.0', 'Contusion of elbow', 'ICD10_2010'), +('S50.1', 'Contusion of other and unspecified parts of forearm', 'ICD10_2010'), +('S50.7', 'Multiple superficial injuries of forearm', 'ICD10_2010'), +('S50.8', 'Other superficial injuries of forearm', 'ICD10_2010'), +('S50.9', 'Superficial injury of forearm, unspecified', 'ICD10_2010'), +('S51', 'Open wound of forearm', 'ICD10_2010'), +('S51.0', 'Open wound of elbow', 'ICD10_2010'), +('S51.7', 'Multiple open wounds of forearm', 'ICD10_2010'), +('S51.8', 'Open wound of other parts of forearm', 'ICD10_2010'), +('S51.9', 'Open wound of forearm, part unspecified', 'ICD10_2010'), +('S52', 'Fracture of forearm', 'ICD10_2010'), +('S52.0', 'Fracture of upper end of ulna', 'ICD10_2010'), +('S52.00', 'Fracture of upper end of ulna, closed', 'ICD10_2010'), +('S52.01', 'Fracture of upper end of ulna, open', 'ICD10_2010'), +('S52.1', 'Fracture of upper end of radius', 'ICD10_2010'), +('S52.10', 'Fracture of upper end of radius, closed', 'ICD10_2010'), +('S52.11', 'Fracture of upper end of radius, open', 'ICD10_2010'), +('S52.2', 'Fracture of shaft of ulna', 'ICD10_2010'), +('S52.20', 'Fracture of shaft of ulna, closed', 'ICD10_2010'), +('S52.21', 'Fracture of shaft of ulna, open', 'ICD10_2010'), +('S52.3', 'Fracture of shaft of radius', 'ICD10_2010'), +('S52.30', 'Fracture of shaft of radius, closed', 'ICD10_2010'), +('S52.31', 'Fracture of shaft of radius, open', 'ICD10_2010'), +('S52.4', 'Fracture of shafts of both ulna and radius', 'ICD10_2010'), +('S52.40', 'Fracture of shafts of both ulna and radius, closed', 'ICD10_2010'), +('S52.41', 'Fracture of shafts of both ulna and radius, open', 'ICD10_2010'), +('S52.5', 'Fracture of lower end of radius', 'ICD10_2010'), +('S52.50', 'Fracture of lower end of radius, closed', 'ICD10_2010'), +('S52.51', 'Fracture of lower end of radius, open', 'ICD10_2010'), +('S52.6', 'Fracture of lower end of both ulna and radius', 'ICD10_2010'), +('S52.60', 'Fracture of lower end of both ulna and radius, closed', 'ICD10_2010'), +('S52.61', 'Fracture of lower end of both ulna and radius, open', 'ICD10_2010'), +('S52.7', 'Multiple fractures of forearm', 'ICD10_2010'), +('S52.70', 'Multiple fractures of forearm , closed', 'ICD10_2010'), +('S52.71', 'Multiple fractures of forearm , open', 'ICD10_2010'), +('S52.8', 'Fracture of other parts of forearm', 'ICD10_2010'), +('S52.80', 'Fracture of other parts of forearm , closed', 'ICD10_2010'), +('S52.81', 'Fracture of other parts of forearm , open', 'ICD10_2010'), +('S52.9', 'Fracture of forearm, part unspecified', 'ICD10_2010'), +('S52.90', 'Fracture of forearm, part unspecified , closed', 'ICD10_2010'), +('S52.91', 'Fracture of forearm, part unspecified , open', 'ICD10_2010'), +('S53', 'Dislocation, sprain and strain of joints and ligaments of elbow', 'ICD10_2010'), +('S53.0', 'Dislocation of radial head', 'ICD10_2010'), +('S53.1', 'Dislocation of elbow, unspecified', 'ICD10_2010'), +('S53.2', 'Traumatic rupture of radial collateral ligament', 'ICD10_2010'), +('S53.3', 'Traumatic rupture of ulnar collateral ligament', 'ICD10_2010'), +('S53.4', 'Sprain and strain of elbow', 'ICD10_2010'), +('S54', 'Injury of nerves at forearm level', 'ICD10_2010'), +('S54.0', 'Injury of ulnar nerve at forearm level', 'ICD10_2010'), +('S54.1', 'Injury of median nerve at forearm level', 'ICD10_2010'), +('S54.2', 'Injury of radial nerve at forearm level', 'ICD10_2010'), +('S54.3', 'Injury of cutaneous sensory nerve at forearm level', 'ICD10_2010'), +('S54.7', 'Injury of multiple nerves at forearm level', 'ICD10_2010'), +('S54.8', 'Injury of other nerves at forearm level', 'ICD10_2010'), +('S54.9', 'Injury of unspecified nerve at forearm level', 'ICD10_2010'), +('S55', 'Injury of blood vessels at forearm level', 'ICD10_2010'), +('S55.0', 'Injury of ulnar artery at forearm level', 'ICD10_2010'), +('S55.1', 'Injury of radial artery at forearm level', 'ICD10_2010'), +('S55.2', 'Injury of vein at forearm level', 'ICD10_2010'), +('S55.7', 'Injury of multiple blood vessels at forearm level', 'ICD10_2010'), +('S55.8', 'Injury of other blood vessels at forearm level', 'ICD10_2010'), +('S55.9', 'Injury of unspecified blood vessel at forearm level', 'ICD10_2010'), +('S56', 'Injury of muscle and tendon at forearm level', 'ICD10_2010'), +('S56.0', 'Injury of flexor muscle and tendon of thumb at forearm level', 'ICD10_2010'), +('S56.1', 'Injury long flexor muscle and tendon other finger(s) forearm level', 'ICD10_2010'), +('S56.2', 'Injury of other flexor muscle and tendon at forearm level', 'ICD10_2010'), +('S56.3', 'Injury extensor or abductor muscles and tendons of thumb at forearm level', 'ICD10_2010'), +('S56.4', 'Injury extensor muscle and tendon oth finger(s) at forearm level', 'ICD10_2010'), +('S56.5', 'Injury of other extensor muscle and tendon at forearm level', 'ICD10_2010'), +('S56.7', 'Injury of multiple muscles and tendons at forearm level', 'ICD10_2010'), +('S56.8', 'Injury other and unspecified muscles and tendons at forearm level', 'ICD10_2010'), +('S57', 'Crushing injury of forearm', 'ICD10_2010'), +('S57.0', 'Crushing injury of elbow', 'ICD10_2010'), +('S57.8', 'Crushing injury of other parts of forearm', 'ICD10_2010'), +('S57.9', 'Crushing injury of forearm, part unspecified', 'ICD10_2010'), +('S58', 'Traumatic amputation of forearm', 'ICD10_2010'), +('S58.0', 'Traumatic amputation at elbow level', 'ICD10_2010'), +('S58.1', 'Traumatic amputation at level between elbow and wrist', 'ICD10_2010'), +('S58.9', 'Traumatic amputation of forearm, level unspecified', 'ICD10_2010'), +('S59', 'Other and unspecified injuries of forearm', 'ICD10_2010'), +('S59.7', 'Multiple injuries of forearm', 'ICD10_2010'), +('S59.8', 'Other specified injuries of forearm', 'ICD10_2010'), +('S59.9', 'Unspecified injury of forearm', 'ICD10_2010'), +('S60', 'Superficial injury of wrist and hand', 'ICD10_2010'), +('S60.0', 'Contusion of finger(s) without damage to nail', 'ICD10_2010'), +('S60.1', 'Contusion of finger(s) with damage to nail', 'ICD10_2010'), +('S60.2', 'Contusion of other parts of wrist and hand', 'ICD10_2010'), +('S60.7', 'Multiple superficial injuries of wrist and hand', 'ICD10_2010'), +('S60.8', 'Other superficial injuries of wrist and hand', 'ICD10_2010'), +('S60.9', 'Superficial injury of wrist and hand, unspecified', 'ICD10_2010'), +('S61', 'Open wound of wrist and hand', 'ICD10_2010'), +('S61.0', 'Open wound of finger(s) without damage to nail', 'ICD10_2010'), +('S61.1', 'Open wound of finger(s) with damage to nail', 'ICD10_2010'), +('S61.7', 'Multiple open wounds of wrist and hand', 'ICD10_2010'), +('S61.8', 'Open wound of other parts of wrist and hand', 'ICD10_2010'), +('S61.9', 'Open wound of wrist and hand part, part unspecified', 'ICD10_2010'), +('S62', 'Fracture at wrist and hand level', 'ICD10_2010'), +('S62.0', 'Fracture of navicular [scaphoid] bone of hand', 'ICD10_2010'), +('S62.00', 'Fracture of navicular [scaphoid] bone of hand , closed', 'ICD10_2010'), +('S62.01', 'Fracture of navicular [scaphoid] bone of hand , open', 'ICD10_2010'), +('S62.1', 'Fracture of other carpal bone(s)', 'ICD10_2010'), +('S62.10', 'Fracture of other carpal bone(s) , closed', 'ICD10_2010'), +('S62.11', 'Fracture of other carpal bone(s) , open', 'ICD10_2010'), +('S62.2', 'Fracture of first metacarpal bone', 'ICD10_2010'), +('S62.20', 'Fracture of first metacarpal bone , closed', 'ICD10_2010'), +('S62.21', 'Fracture of first metacarpal bone , open', 'ICD10_2010'), +('S62.3', 'Fracture of other metacarpal bone', 'ICD10_2010'), +('S62.30', 'Fracture of other metacarpal bone, closed', 'ICD10_2010'), +('S62.31', 'Fracture of other metacarpal bone, open', 'ICD10_2010'), +('S62.4', 'Multiple fractures of metacarpal bones', 'ICD10_2010'), +('S62.40', 'Multiple fractures of metacarpal bones , closed', 'ICD10_2010'), +('S62.41', 'Multiple fractures of metacarpal bones , open', 'ICD10_2010'), +('S62.5', 'Fracture of thumb', 'ICD10_2010'), +('S62.50', 'Fracture of thumb , closed', 'ICD10_2010'), +('S62.51', 'Fracture of thumb , open', 'ICD10_2010'), +('S62.6', 'Fracture of other finger', 'ICD10_2010'), +('S62.60', 'Fracture of other finger , closed', 'ICD10_2010'), +('S62.61', 'Fracture of other finger , open', 'ICD10_2010'), +('S62.7', 'Multiple fractures of fingers', 'ICD10_2010'), +('S62.70', 'Multiple fractures of fingers, closed', 'ICD10_2010'), +('S62.71', 'Multiple fractures of fingers, open', 'ICD10_2010'), +('S62.8', 'Fracture of other and unspecified parts of wrist and hand', 'ICD10_2010'), +('S62.80', 'Fracture of other and unspecified parts of wrist and hand, closed', 'ICD10_2010'), +('S62.81', 'Fracture of other and unspecified parts of wrist and hand, open', 'ICD10_2010'), +('S63', 'Dislocation, sprain and strain of joints and ligaments at wrist and hand level', 'ICD10_2010'), +('S63.0', 'Dislocation of wrist', 'ICD10_2010'), +('S63.1', 'Dislocation of finger', 'ICD10_2010'), +('S63.2', 'Multiple dislocations of fingers', 'ICD10_2010'), +('S63.3', 'Traumatic rupture of ligament of wrist and carpus', 'ICD10_2010'), +('S63.4', 'Traumatic rupture of ligament of finger at metacarpophalangeal and interphalangeal joint(s)', 'ICD10_2010'), +('S63.5', 'Sprain and strain of wrist', 'ICD10_2010'), +('S63.6', 'Sprain and strain of finger(s)', 'ICD10_2010'), +('S63.7', 'Sprain and strain of other and unspecified parts of hand', 'ICD10_2010'), +('S64', 'Injury of nerves at wrist and hand level', 'ICD10_2010'), +('S64.0', 'Injury of ulnar nerve at wrist and hand level', 'ICD10_2010'), +('S64.1', 'Injury of median nerve at wrist and hand level', 'ICD10_2010'), +('S64.2', 'Injury of radial nerve at wrist and hand level', 'ICD10_2010'), +('S64.3', 'Injury of digital nerve of thumb', 'ICD10_2010'), +('S64.4', 'Injury of digital nerve of other finger', 'ICD10_2010'), +('S64.7', 'Injury of multiple nerves at wrist and hand level', 'ICD10_2010'), +('S64.8', 'Injury of other nerves at wrist and hand level', 'ICD10_2010'), +('S64.9', 'Injury of unspecified nerve at wrist and hand level', 'ICD10_2010'), +('S65', 'Injury of blood vessels at wrist and hand level', 'ICD10_2010'), +('S65.0', 'Injury of ulnar artery at wrist and hand level', 'ICD10_2010'), +('S65.1', 'Injury of radial artery at wrist and hand level', 'ICD10_2010'), +('S65.2', 'Injury of superficial palmar arch', 'ICD10_2010'), +('S65.3', 'Injury of deep palmar arch', 'ICD10_2010'), +('S65.4', 'Injury of blood vessel(s) of thumb', 'ICD10_2010'), +('S65.5', 'Injury of blood vessel(s) of other finger', 'ICD10_2010'), +('S65.7', 'Injury of multiple blood vessels at wrist and hand level', 'ICD10_2010'), +('S65.8', 'Injury of other blood vessels at wrist and hand level', 'ICD10_2010'), +('S65.9', 'Injury of unspecified blood vessel at wrist and hand level', 'ICD10_2010'), +('S66', 'Injury of muscle and tendon at wrist and hand level', 'ICD10_2010'), +('S66.0', 'Injury of long flexor muscle and tendon of thumb at wrist and hand level', 'ICD10_2010'), +('S66.1', 'Injury of flexor muscle and tendon of other finger at wrist and hand level', 'ICD10_2010'), +('S66.2', 'Injury of extensor muscle and tendon of thumb at wrist and hand level', 'ICD10_2010'), +('S66.3', 'Injury of extensor muscle and tendon of other finger at wrist and hand level', 'ICD10_2010'), +('S66.4', 'Injury of intrinsic muscle and tendon of thumb at wrist and hand level', 'ICD10_2010'), +('S66.5', 'Injury of intrinsic muscle and tendon other finger at wrist and hand level', 'ICD10_2010'), +('S66.6', 'Injury of multiple flexor muscles and tendons at wrist and hand level', 'ICD10_2010'), +('S66.7', 'Injury of multiple extensor muscles and tendons at wrist and hand level', 'ICD10_2010'), +('S66.8', 'Injury of other muscles and tendons at wrist and hand level', 'ICD10_2010'), +('S66.9', 'Injury unspecified muscle and tendon at wrist and hand level', 'ICD10_2010'), +('S67', 'Crushing injury of wrist and hand', 'ICD10_2010'), +('S67.0', 'Crushing injury of thumb and other finger(s)', 'ICD10_2010'), +('S67.8', 'Crush injury other and unspecified parts of wrist and hand', 'ICD10_2010'), +('S68', 'Traumatic amputation of wrist and hand', 'ICD10_2010'), +('S68.0', 'Traumatic amputation of thumb (complete)(partial)', 'ICD10_2010'), +('S68.1', 'Traumatic amputation of other single finger (complete)(partial)', 'ICD10_2010'), +('S68.2', 'Traumatic amputation two or more fingers alone (cmpte/part)', 'ICD10_2010'), +('S68.3', 'Combination traumatic amputation of (part of) finger(s) with other parts wrist and hand', 'ICD10_2010'), +('S68.4', 'Traumatic amputation of hand at wrist level', 'ICD10_2010'), +('S68.8', 'Traumatic amputation of other parts of wrist and hand', 'ICD10_2010'), +('S68.9', 'Traumatic amputation of wrist and hand, level unspecified', 'ICD10_2010'), +('S69', 'Other and unspecified injuries of wrist and hand', 'ICD10_2010'), +('S69.7', 'Multiple injuries of wrist and hand', 'ICD10_2010'), +('S69.8', 'Other specified injuries of wrist and hand', 'ICD10_2010'), +('S69.9', 'Unspecified injury of wrist and hand', 'ICD10_2010'), +('S70', 'Superficial injury of hip and thigh', 'ICD10_2010'), +('S70.0', 'Contusion of hip', 'ICD10_2010'), +('S70.1', 'Contusion of thigh', 'ICD10_2010'), +('S70.7', 'Multiple superficial injuries of hip and thigh', 'ICD10_2010'), +('S70.8', 'Other superficial injuries of hip and thigh', 'ICD10_2010'), +('S70.9', 'Superficial injury of hip and thigh, unspecified', 'ICD10_2010'), +('S71', 'Open wound of hip and thigh', 'ICD10_2010'), +('S71.0', 'Open wound of hip', 'ICD10_2010'), +('S71.1', 'Open wound of thigh', 'ICD10_2010'), +('S71.7', 'Multiple open wounds of hip and thigh', 'ICD10_2010'), +('S71.8', 'Open wound of other and unspecified parts of pelvic girdle', 'ICD10_2010'), +('S72', 'Fracture of femur', 'ICD10_2010'), +('S72.0', 'Fracture of neck of femur', 'ICD10_2010'), +('S72.00', 'Fracture of neck of femur, closed', 'ICD10_2010'), +('S72.01', 'Fracture of neck of femur, open', 'ICD10_2010'), +('S72.1', 'Pertrochanteric fracture', 'ICD10_2010'), +('S72.10', 'Pertrochanteric fracture, closed', 'ICD10_2010'), +('S72.11', 'Pertrochanteric fracture, open', 'ICD10_2010'), +('S72.2', 'Subtrochanteric fracture', 'ICD10_2010'), +('S72.20', 'Subtrochanteric fracture, closed', 'ICD10_2010'), +('S72.21', 'Subtrochanteric fracture, open', 'ICD10_2010'), +('S72.3', 'Fracture of shaft of femur', 'ICD10_2010'), +('S72.30', 'Fracture of shaft of femur, closed', 'ICD10_2010'), +('S72.31', 'Fracture of shaft of femur, open', 'ICD10_2010'), +('S72.4', 'Fracture of lower end of femur', 'ICD10_2010'), +('S72.40', 'Fracture of lower end of femur, closed', 'ICD10_2010'), +('S72.41', 'Fracture of lower end of femur, open', 'ICD10_2010'), +('S72.7', 'Multiple fractures of femur', 'ICD10_2010'), +('S72.70', 'Multiple fractures of femur, closed', 'ICD10_2010'), +('S72.71', 'Multiple fractures of femur, open', 'ICD10_2010'), +('S72.8', 'Fractures of other parts of femur', 'ICD10_2010'), +('S72.80', 'Fractures of other parts of femur, closed', 'ICD10_2010'), +('S72.81', 'Fractures of other parts of femur, open', 'ICD10_2010'), +('S72.9', 'Fracture of femur, part unspecified', 'ICD10_2010'), +('S72.90', 'Fracture of femur, part unspecified, closed', 'ICD10_2010'), +('S72.91', 'Fracture of femur, part unspecified , open', 'ICD10_2010'), +('S73', 'Dislocation, sprain and strain of joint and ligaments of hip', 'ICD10_2010'), +('S73.0', 'Dislocation of hip', 'ICD10_2010'), +('S73.1', 'Sprain and strain of hip', 'ICD10_2010'), +('S74', 'Injury of nerves at hip and thigh level', 'ICD10_2010'), +('S74.0', 'Injury of sciatic nerve at hip and thigh level', 'ICD10_2010'), +('S74.1', 'Injury of femoral nerve at hip and thigh level', 'ICD10_2010'), +('S74.2', 'Injury of cutaneous sensory nerve at hip and thigh level', 'ICD10_2010'), +('S74.7', 'Injury of multiple nerves at hip and thigh level', 'ICD10_2010'), +('S74.8', 'Injury of other nerves at hip and thigh level', 'ICD10_2010'), +('S74.9', 'Injury of unspecified nerve at hip and thigh level', 'ICD10_2010'), +('S75', 'Injury of blood vessels at hip and thigh level', 'ICD10_2010'), +('S75.0', 'Injury of femoral artery', 'ICD10_2010'), +('S75.1', 'Injury of femoral vein at hip and thigh level', 'ICD10_2010'), +('S75.2', 'Injury of greater saphenous vein at hip and thigh level', 'ICD10_2010'), +('S75.7', 'Injury of multiple blood vessels at hip and thigh level', 'ICD10_2010'), +('S75.8', 'Injury of other blood vessels at hip and thigh level', 'ICD10_2010'), +('S75.9', 'Injury of unspecified blood vessel at hip and thigh level', 'ICD10_2010'), +('S76', 'Injury of muscle and tendon at hip and thigh level', 'ICD10_2010'), +('S76.0', 'Injury of muscle and tendon of hip', 'ICD10_2010'), +('S76.1', 'Injury of quadriceps muscle and tendon', 'ICD10_2010'), +('S76.2', 'Injury of adductor muscle and tendon of thigh', 'ICD10_2010'), +('S76.3', 'Injury of muscle and tendon of the posterior muscle group at thigh level', 'ICD10_2010'), +('S76.4', 'Injury of other and unspec muscles and tendons at thigh level', 'ICD10_2010'); +INSERT INTO `icd10` (`ID_ICD10`, `Diagnosa`, `Versi_ICD10`) VALUES +('S76.7', 'Injury of multiple muscles and tendons at hip & thigh level', 'ICD10_2010'), +('S77', 'Crushing injury of hip and thigh', 'ICD10_2010'), +('S77.0', 'Crushing injury of hip', 'ICD10_2010'), +('S77.1', 'Crushing injury of thigh', 'ICD10_2010'), +('S77.2', 'Crushing injury of hip with thigh', 'ICD10_2010'), +('S78', 'Traumatic amputation of hip and thigh', 'ICD10_2010'), +('S78.0', 'Traumatic amputation at hip joint', 'ICD10_2010'), +('S78.1', 'Traumatic amputation at level between hip and knee', 'ICD10_2010'), +('S78.9', 'Traumatic amputation of hip and thigh, level unspecified', 'ICD10_2010'), +('S79', 'Other and specified injuries of hip and thigh', 'ICD10_2010'), +('S79.7', 'Multiple injuries of hip and thigh', 'ICD10_2010'), +('S79.8', 'Other specified injuries of hip and thigh', 'ICD10_2010'), +('S79.9', 'Unspecified injury of hip and thigh', 'ICD10_2010'), +('S80', 'Superficial injury of lower leg', 'ICD10_2010'), +('S80.0', 'Contusion of knee', 'ICD10_2010'), +('S80.1', 'Contusion of other and unspecified parts of lower leg', 'ICD10_2010'), +('S80.7', 'Multiple superficial injuries of lower leg', 'ICD10_2010'), +('S80.8', 'Other superficial injuries of lower leg', 'ICD10_2010'), +('S80.9', 'Superficial injury of lower leg, unspecified', 'ICD10_2010'), +('S81', 'Open wound of lower leg', 'ICD10_2010'), +('S81.0', 'Open wound of knee', 'ICD10_2010'), +('S81.7', 'Multiple open wounds of lower leg', 'ICD10_2010'), +('S81.8', 'Open wound of other parts of lower leg', 'ICD10_2010'), +('S81.9', 'Open wound of lower leg, part unspecified', 'ICD10_2010'), +('S82', 'Fracture of lower leg, including ankle', 'ICD10_2010'), +('S82.0', 'Fracture of patella', 'ICD10_2010'), +('S82.00', 'Fracture of patella, closed', 'ICD10_2010'), +('S82.01', 'Fracture of patella, open', 'ICD10_2010'), +('S82.1', 'Fracture of upper end of tibia', 'ICD10_2010'), +('S82.10', 'Fracture of upper end of tibia, closed', 'ICD10_2010'), +('S82.11', 'Fracture of upper end of tibia , open', 'ICD10_2010'), +('S82.2', 'Fracture of shaft of tibia', 'ICD10_2010'), +('S82.20', 'Fracture of shaft of tibia, closed', 'ICD10_2010'), +('S82.21', 'Fracture of shaft of tibia , open', 'ICD10_2010'), +('S82.3', 'Fracture of lower end of tibia', 'ICD10_2010'), +('S82.30', 'Fracture of lower end of tibia, closed', 'ICD10_2010'), +('S82.31', 'Fracture of lower end of tibia , open', 'ICD10_2010'), +('S82.4', 'Fracture of fibula alone', 'ICD10_2010'), +('S82.40', 'Fracture of fibula alone, closed', 'ICD10_2010'), +('S82.41', 'Fracture of fibula alone , open', 'ICD10_2010'), +('S82.5', 'Fracture of medial malleolus', 'ICD10_2010'), +('S82.50', 'Fracture of medial malleolus, closed', 'ICD10_2010'), +('S82.51', 'Fracture of medial malleolus , open', 'ICD10_2010'), +('S82.6', 'Fracture of lateral malleolus', 'ICD10_2010'), +('S82.60', 'Fracture of lateral malleolus, closed', 'ICD10_2010'), +('S82.61', 'Fracture of lateral malleolus, open', 'ICD10_2010'), +('S82.7', 'Multiple fractures of lower leg', 'ICD10_2010'), +('S82.70', 'Multiple fractures of lower leg, closed', 'ICD10_2010'), +('S82.71', 'Multiple fractures of lower leg, open', 'ICD10_2010'), +('S82.8', 'Fractures of other parts of lower leg', 'ICD10_2010'), +('S82.80', 'Fractures of other parts of lower leg, closed', 'ICD10_2010'), +('S82.81', 'Fractures of other parts of lower leg, open', 'ICD10_2010'), +('S82.9', 'Fracture of lower leg, part unspecified', 'ICD10_2010'), +('S82.90', 'Fracture of lower leg, part unspecified, closed', 'ICD10_2010'), +('S82.91', 'Fracture of lower leg, part unspecified , open', 'ICD10_2010'), +('S83', 'Dislocation, sprain and strain of joints and ligaments of knee', 'ICD10_2010'), +('S83.0', 'Dislocation of patella', 'ICD10_2010'), +('S83.1', 'Dislocation of knee', 'ICD10_2010'), +('S83.2', 'Tear of meniscus, current', 'ICD10_2010'), +('S83.3', 'Tear of articular cartilage of knee, current', 'ICD10_2010'), +('S83.4', 'Sprain and strain involving (fibular)(tibial) collateral lig knee', 'ICD10_2010'), +('S83.5', 'Sprain and strain involving (anterior)(posterior) cruciate lig knee', 'ICD10_2010'), +('S83.6', 'Sprain and strain of other and unspecified parts of knee', 'ICD10_2010'), +('S83.7', 'Injury to multiple structures of knee', 'ICD10_2010'), +('S84', 'Injury of nerves at lower leg level', 'ICD10_2010'), +('S84.0', 'Injury of tibial nerve at lower leg level', 'ICD10_2010'), +('S84.1', 'Injury of peroneal nerve at lower leg level', 'ICD10_2010'), +('S84.2', 'Injury of cutaneous sensory nerve at lower leg level', 'ICD10_2010'), +('S84.7', 'Injury of multiple nerves at lower leg level', 'ICD10_2010'), +('S84.8', 'Injury of other nerves at lower leg level', 'ICD10_2010'), +('S84.9', 'Injury of unspecified nerve at lower leg level', 'ICD10_2010'), +('S85', 'Injury of blood vessels at lower leg level', 'ICD10_2010'), +('S85.0', 'Injury of popliteal artery', 'ICD10_2010'), +('S85.1', 'Injury of (anterior)(posterior) tibial artery', 'ICD10_2010'), +('S85.2', 'Injury of peroneal artery', 'ICD10_2010'), +('S85.3', 'Injury of greater saphenous vein at lower leg level', 'ICD10_2010'), +('S85.4', 'Injury of lesser saphenous vein at lower leg level', 'ICD10_2010'), +('S85.5', 'Injury of popliteal vein', 'ICD10_2010'), +('S85.7', 'Injury of multiple blood vessels at lower leg level', 'ICD10_2010'), +('S85.8', 'Injury of other blood vessels at lower leg level', 'ICD10_2010'), +('S85.9', 'Injury of unspecified blood vessel at lower leg level', 'ICD10_2010'), +('S86', 'Injury of muscle and tendon at lower leg level', 'ICD10_2010'), +('S86.0', 'Injury of achilles tendon', 'ICD10_2010'), +('S86.1', 'Injury other muscle(s) tendon(s) of posterior muscle group at low leg level', 'ICD10_2010'), +('S86.2', 'Injury of muscle(s) and tendon(s) of anterior muscle group at lower leg level', 'ICD10_2010'), +('S86.3', 'Injury of muscle(s) and tendon(s) peroneal muscle group at lower leg level', 'ICD10_2010'), +('S86.7', 'Injury of multiple muscles and tendons at lower leg level', 'ICD10_2010'), +('S86.8', 'Injury of other muscles and tendons at lower leg level', 'ICD10_2010'), +('S86.9', 'Injury of unspecified muscle and tendon at lower leg level', 'ICD10_2010'), +('S87', 'Crushing injury of lower leg', 'ICD10_2010'), +('S87.0', 'Crushing injury of knee', 'ICD10_2010'), +('S87.8', 'Crushing injury of other and unspecified parts of lower leg', 'ICD10_2010'), +('S88', 'Traumatic amputation of lower leg', 'ICD10_2010'), +('S88.0', 'Traumatic amputation at knee level', 'ICD10_2010'), +('S88.1', 'Traumatic amputation at level between knee and ankle', 'ICD10_2010'), +('S88.9', 'Traumatic amputation of lower leg, level unspecified', 'ICD10_2010'), +('S89', 'Other and unspecified injuries of lower leg', 'ICD10_2010'), +('S89.7', 'Multiple injuries of lower leg', 'ICD10_2010'), +('S89.8', 'Other specified injuries of lower leg', 'ICD10_2010'), +('S89.9', 'Unspecified injury of lower leg', 'ICD10_2010'), +('S90', 'Superficial injury of ankle and foot', 'ICD10_2010'), +('S90.0', 'Contusion of ankle', 'ICD10_2010'), +('S90.1', 'Contusion of toe(s) without damage to nail', 'ICD10_2010'), +('S90.2', 'Contusion of toe(s) with damage to nail', 'ICD10_2010'), +('S90.3', 'Contusion of other and unspecified parts of foot', 'ICD10_2010'), +('S90.7', 'Multiple superficial injuries of ankle and foot', 'ICD10_2010'), +('S90.8', 'Other superficial injuries of ankle and foot', 'ICD10_2010'), +('S90.9', 'Superficial injury of ankle and foot, unspecified', 'ICD10_2010'), +('S91', 'Open wound of ankle and foot', 'ICD10_2010'), +('S91.0', 'Open wound of ankle', 'ICD10_2010'), +('S91.1', 'Open wound of toe(s) without damage to nail', 'ICD10_2010'), +('S91.2', 'Open wound of toe(s) with damage to nail', 'ICD10_2010'), +('S91.3', 'Open wound of other parts of foot', 'ICD10_2010'), +('S91.7', 'Multiple open wounds of ankle and foot', 'ICD10_2010'), +('S92', 'Fracture of foot, except ankle', 'ICD10_2010'), +('S92.0', 'Fracture of calcaneus', 'ICD10_2010'), +('S92.00', 'Fracture of calcaneus, closed', 'ICD10_2010'), +('S92.01', 'Fracture of calcaneus , open', 'ICD10_2010'), +('S92.1', 'Fracture of talus', 'ICD10_2010'), +('S92.10', 'Fracture of talus, closed', 'ICD10_2010'), +('S92.11', 'Fracture of talus, open', 'ICD10_2010'), +('S92.2', 'Fracture of other tarsal bone(s)', 'ICD10_2010'), +('S92.20', 'Fracture of other tarsal bone(s) , closed', 'ICD10_2010'), +('S92.21', 'Fracture of other tarsal bone(s) , open', 'ICD10_2010'), +('S92.3', 'Fracture of metatarsal bone', 'ICD10_2010'), +('S92.30', 'Fracture of metatarsal bone, closed', 'ICD10_2010'), +('S92.31', 'Fracture of metatarsal bone , open', 'ICD10_2010'), +('S92.4', 'Fracture of great toe', 'ICD10_2010'), +('S92.40', 'Fracture of great toe, closed', 'ICD10_2010'), +('S92.41', 'Fracture of great toe, open', 'ICD10_2010'), +('S92.5', 'Fracture of other toe', 'ICD10_2010'), +('S92.50', 'Fracture of other toe, closed', 'ICD10_2010'), +('S92.51', 'Fracture of other toe, open', 'ICD10_2010'), +('S92.7', 'Multiple fractures of foot', 'ICD10_2010'), +('S92.70', 'Multiple fractures of foot, closed', 'ICD10_2010'), +('S92.71', 'Multiple fractures of foot , open', 'ICD10_2010'), +('S92.9', 'Fracture of foot, unspecified', 'ICD10_2010'), +('S92.90', 'Fracture of foot, unspecified, closed', 'ICD10_2010'), +('S92.91', 'Fracture of foot, unspecified , open', 'ICD10_2010'), +('S93', 'Dislocation, sprain and strain of joints and ligaments at ankle and foot level', 'ICD10_2010'), +('S93.0', 'Dislocation of ankle joint', 'ICD10_2010'), +('S93.1', 'Dislocation of toe(s)', 'ICD10_2010'), +('S93.2', 'Rupture of ligaments at ankle and foot level', 'ICD10_2010'), +('S93.3', 'Dislocation of other and unspecified parts of foot', 'ICD10_2010'), +('S93.4', 'Sprain and strain of ankle', 'ICD10_2010'), +('S93.5', 'Sprain and strain of toe(s)', 'ICD10_2010'), +('S93.6', 'Sprain and strain of other and unspecified parts of foot', 'ICD10_2010'), +('S94', 'Injury of nerves at ankle and foot level', 'ICD10_2010'), +('S94.0', 'Injury of lateral plantar nerve', 'ICD10_2010'), +('S94.1', 'Injury of medial plantar nerve', 'ICD10_2010'), +('S94.2', 'Injury of deep peroneal nerve at ankle and foot level', 'ICD10_2010'), +('S94.3', 'Injury of cutaneous sensory nerve at ankle and foot level', 'ICD10_2010'), +('S94.7', 'Injury of multiple nerves at ankle and foot level', 'ICD10_2010'), +('S94.8', 'Injury of other nerves at ankle and foot level', 'ICD10_2010'), +('S94.9', 'Injury of unspecified nerve at ankle and foot level', 'ICD10_2010'), +('S95', 'Injury of blood vessels at ankle and foot level', 'ICD10_2010'), +('S95.0', 'Injury of dorsal artery of foot', 'ICD10_2010'), +('S95.1', 'Injury of plantar artery of foot', 'ICD10_2010'), +('S95.2', 'Injury of dorsal vein of foot', 'ICD10_2010'), +('S95.7', 'Injury of multiple blood vessels at ankle and foot level', 'ICD10_2010'), +('S95.8', 'Injury of other blood vessels at ankle and foot level', 'ICD10_2010'), +('S95.9', 'Injury of unspecified blood vessel at ankle and foot level', 'ICD10_2010'), +('S96', 'Injury of muscle and tendon at ankle and foot level', 'ICD10_2010'), +('S96.0', 'Injury muscle and tendon of long flexor muscle toe at ankle and foot level', 'ICD10_2010'), +('S96.1', 'Injury muscle & tendon long extensor muscle toe at ankle and foot level', 'ICD10_2010'), +('S96.2', 'Injury of intrinsic muscle and tendon at ankle and foot level', 'ICD10_2010'), +('S96.7', 'Injury of multi muscles and tendons at ankle and foot level', 'ICD10_2010'), +('S96.8', 'Injury of other muscles and tendons at ankle and foot level', 'ICD10_2010'), +('S96.9', 'Injury of unspec muscle and tendon at ankle and foot level', 'ICD10_2010'), +('S97', 'Crushing injury of ankle and foot', 'ICD10_2010'), +('S97.0', 'Crushing injury of ankle', 'ICD10_2010'), +('S97.1', 'Crushing injury of toe(s)', 'ICD10_2010'), +('S97.8', 'Crushing injury of other parts of ankle and foot', 'ICD10_2010'), +('S98', 'Traumatic amputation of ankle and foot', 'ICD10_2010'), +('S98.0', 'Traumatic amputation of foot at ankle level', 'ICD10_2010'), +('S98.1', 'Traumatic amputation of one toe', 'ICD10_2010'), +('S98.2', 'Traumatic amputation of two or more toes', 'ICD10_2010'), +('S98.3', 'Traumatic amputation of other parts of foot', 'ICD10_2010'), +('S98.4', 'Traumatic amputation of foot, level unspecified', 'ICD10_2010'), +('S99', 'Other and unspecified injuries of ankle and foot', 'ICD10_2010'), +('S99.7', 'Multiple injuries of ankle and foot', 'ICD10_2010'), +('S99.8', 'Other specified injuries of ankle and foot', 'ICD10_2010'), +('S99.9', 'Unspecified injury of ankle and foot', 'ICD10_2010'), +('T00', 'Superficial injuries involving multiple body regions', 'ICD10_2010'), +('T00.0', 'Superficial injuries involving head with neck', 'ICD10_2010'), +('T00.1', 'Superficial injuries involving thorax with abdomen, lower back and pelvis', 'ICD10_2010'), +('T00.2', 'Superficial injuries involving multiple region of upper limb(s)', 'ICD10_2010'), +('T00.3', 'Superficial injuries involving multiple region of lower limb(s)', 'ICD10_2010'), +('T00.6', 'Superficial injuries involving multiple region upper limb(s) with lower limb(s)', 'ICD10_2010'), +('T00.8', 'Superfic injuries involving oth combinations of body regions', 'ICD10_2010'), +('T00.9', 'Multiple superficial injuries, unspecified', 'ICD10_2010'), +('T01', 'Open wounds involving multiple body regions', 'ICD10_2010'), +('T01.0', 'Open wounds involving head with neck', 'ICD10_2010'), +('T01.1', 'Open wounds involving thorax wth abdomen, lower back and pelvis', 'ICD10_2010'), +('T01.2', 'Open wounds involving multiple regions of upper limb(s)', 'ICD10_2010'), +('T01.3', 'Open wounds involving multiple regions of lower limb(s)', 'ICD10_2010'), +('T01.6', 'Open wounds involving multiple regions of up limb(s) with low limb(s)', 'ICD10_2010'), +('T01.8', 'Open wounds involving other combinations of body regions', 'ICD10_2010'), +('T01.9', 'Multiple open wounds, unspecified', 'ICD10_2010'), +('T02', 'Fractures involving multiple body regions', 'ICD10_2010'), +('T02.0', 'Fractures involving head with neck', 'ICD10_2010'), +('T02.00', 'Fractures involving head with neck, closed', 'ICD10_2010'), +('T02.01', 'Fractures involving head with neck, open', 'ICD10_2010'), +('T02.1', 'Fractures involving thorax with lower back and pelvis', 'ICD10_2010'), +('T02.10', 'Fractures involving thorax with lower back and pelvis, closed', 'ICD10_2010'), +('T02.11', 'Fractures involving thorax with lower back and pelvis, open', 'ICD10_2010'), +('T02.2', 'Fractures involving multiple regions of one upper limb', 'ICD10_2010'), +('T02.20', 'Fractures involving multiple regions of one upper limb, closed', 'ICD10_2010'), +('T02.21', 'Fractures involving multiple regions of one upper limb, open', 'ICD10_2010'), +('T02.3', 'Fractures involving multiple regions of one lower limb', 'ICD10_2010'), +('T02.30', 'Fractures involving multiple regions of one lower limb, closed', 'ICD10_2010'), +('T02.31', 'Fractures involving multiple regions of one lower limb, open', 'ICD10_2010'), +('T02.4', 'Fractures involving multiple regions of both upper limbs', 'ICD10_2010'), +('T02.40', 'Fractures involving multiple regions of both upper limbs, closed', 'ICD10_2010'), +('T02.41', 'Fractures involving multiple regions of both upper limbs, open', 'ICD10_2010'), +('T02.5', 'Fractures involving multiple regions of both lower limbs', 'ICD10_2010'), +('T02.50', 'Fractures involving multiple regions of both lower limbs, closed', 'ICD10_2010'), +('T02.51', 'Fractures involving multiple regions of both lower limbs, open', 'ICD10_2010'), +('T02.6', 'Fractures involving multiple regions of up limb(s) with low limb(s)', 'ICD10_2010'), +('T02.60', 'Fractures involving multiple regions of up limb(s) with low limb(s), closed', 'ICD10_2010'), +('T02.61', 'Fractures involving multiple regions of up limb(s) with low limb(s), open', 'ICD10_2010'), +('T02.7', 'Fractures involving thorax with lower back and pelvis with limb(s)', 'ICD10_2010'), +('T02.70', 'Fractures involving thorax with lower back and pelvis with limb(s), closed', 'ICD10_2010'), +('T02.71', 'Fractures involving thorax with lower back and pelvis with limb(s), open', 'ICD10_2010'), +('T02.8', 'Fractures involving other combinations of body regions', 'ICD10_2010'), +('T02.80', 'Fractures involving other combinations of body regions, closed', 'ICD10_2010'), +('T02.81', 'Fractures involving other combinations of body regions, open', 'ICD10_2010'), +('T02.9', 'Multiple fractures, unspecified', 'ICD10_2010'), +('T02.90', 'Multiple fractures, unspecified, closed', 'ICD10_2010'), +('T02.91', 'Multiple fractures, unspecified, open', 'ICD10_2010'), +('T03', 'Dislocations, sprains and strains involving multiple body regions', 'ICD10_2010'), +('T03.0', 'Dislocations, sprains and strains involving head with neck', 'ICD10_2010'), +('T03.1', 'Dislocation sprains and strains involving thorax wth lower back and pelvis', 'ICD10_2010'), +('T03.2', 'Dislocation sprains and strains involving multiple regions upper limb(s)', 'ICD10_2010'), +('T03.3', 'Dislocation sprains and strains involving multiple reginns lower limb(s)', 'ICD10_2010'), +('T03.4', 'Dislocation sprains and strains involving multiple regions upper & lower limb(s)', 'ICD10_2010'), +('T03.8', 'Dislocation sprains and strains involving other combinations body regions', 'ICD10_2010'), +('T03.9', 'Multiple dislocations, sprains and strains, unspecified', 'ICD10_2010'), +('T04', 'Crushing injuries involving multiple body regions', 'ICD10_2010'), +('T04.0', 'Crushing injuries involving head with neck', 'ICD10_2010'), +('T04.1', 'Crush injuries involving thorax with abdomen lower back and pelvis', 'ICD10_2010'), +('T04.2', 'Crushing injuries involving multiple region of upper limb(s)', 'ICD10_2010'), +('T04.3', 'Crushing injuries involving multiple region of lower limb(s)', 'ICD10_2010'), +('T04.4', 'Crushing injuries involving multiple regions of upper limb(s) with lower limb(s)', 'ICD10_2010'), +('T04.7', 'Crushing injuries of thorax with abdomen, lower back and pelvis with limb(s)', 'ICD10_2010'), +('T04.8', 'Crushing injuries involving other combinations of body regions', 'ICD10_2010'), +('T04.9', 'Multiple crushing injuries, unspecified', 'ICD10_2010'), +('T05', 'Traumatic amputations involving multiple body regions', 'ICD10_2010'), +('T05.0', 'Traumatic amputation of both hands', 'ICD10_2010'), +('T05.1', 'Traumatic amputation of one hand and other arm [any level, except hand]', 'ICD10_2010'), +('T05.2', 'Traumatic amputation of both arms [any level]', 'ICD10_2010'), +('T05.3', 'Traumatic amputation of both feet', 'ICD10_2010'), +('T05.4', 'Traumatic amputation of one foot and other leg [any level except foot]', 'ICD10_2010'), +('T05.5', 'Traumatic amputation of both legs [any level]', 'ICD10_2010'), +('T05.6', 'Traumatic amputation of upper and lower limbs, any combination [any level]', 'ICD10_2010'), +('T05.8', 'Traumatic amputations involving other combinations of body regions', 'ICD10_2010'), +('T05.9', 'Multiple traumatic amputations, unspecified', 'ICD10_2010'), +('T06', 'Other injuries involving multiple body regions, not elsewhere classified', 'ICD10_2010'), +('T06.0', 'Injuries of brain and cranial nerve with injuries of nerves and spinal cord neck level', 'ICD10_2010'), +('T06.1', 'Injuries of nerves and spinal cord involving other multiple body regions', 'ICD10_2010'), +('T06.2', 'Injuries of nerves involving multiple body regions', 'ICD10_2010'), +('T06.3', 'Injuries of blood vessels involving multiple body regions', 'ICD10_2010'), +('T06.4', 'Injuries of muscles and tendons involving multiple body regions', 'ICD10_2010'), +('T06.5', 'Injuries of intrathoracic organ with intra-abdominal and pelvic organs', 'ICD10_2010'), +('T06.8', 'Other specified injuries involving multiple body regions', 'ICD10_2010'), +('T07', 'Unspecified multiple injuries', 'ICD10_2010'), +('T08', 'Fracture of spine, level unspecified', 'ICD10_2010'), +('T08.0', 'Fracture of spine, level unspecified , closed', 'ICD10_2010'), +('T08.1', 'Fracture of spine, level unspecified , open', 'ICD10_2010'), +('T09', 'Other injuries of spine and trunk, level unspecified', 'ICD10_2010'), +('T09.0', 'Superficial injury of trunk, level unspecified', 'ICD10_2010'), +('T09.1', 'Open wound of trunk, level unspecified', 'ICD10_2010'), +('T09.2', 'Dislocation sprain and strain unspec joint and ligament trunk', 'ICD10_2010'), +('T09.3', 'Injury of spinal cord, level unspecified', 'ICD10_2010'), +('T09.4', 'Injury unspecified nerve, spinal nerve root and plexus of trunk', 'ICD10_2010'), +('T09.5', 'Injury of unspecified muscle and tendon of trunk', 'ICD10_2010'), +('T09.6', 'Traumatic amputation of trunk, level unspecified', 'ICD10_2010'), +('T09.8', 'Other specified injuries of trunk, level unspecified', 'ICD10_2010'), +('T09.9', 'Unspecified injury of trunk, level unspecified', 'ICD10_2010'), +('T10', 'Fracture of upper limb, level unspecified', 'ICD10_2010'), +('T10.0', 'Fracture of upper limb, level unspecified , closed', 'ICD10_2010'), +('T10.1', 'Fracture of upper limb, level unspecified , open', 'ICD10_2010'), +('T11', 'Other injuries of upper limb, level unspecified', 'ICD10_2010'), +('T11.0', 'Superficial injury of upper limb, level unspecified', 'ICD10_2010'), +('T11.1', 'Open wound of upper limb, level unspecified', 'ICD10_2010'), +('T11.2', 'Disl\'n sprain/strain unsp joint & ligament upr limb lvl unsp', 'ICD10_2010'), +('T11.3', 'Injury of unspecified nerve of upper limb, level unspecified', 'ICD10_2010'), +('T11.4', 'Injury of unspec blood vessel of upper limb level unspec act', 'ICD10_2010'), +('T11.5', 'Injury of unspec muscle & tendon of upr limb level unspec act', 'ICD10_2010'), +('T11.6', 'Traumatic amputation of upper limb, level unspecified', 'ICD10_2010'), +('T11.8', 'Other specified injuries of upper limb, level unspecified', 'ICD10_2010'), +('T11.9', 'Unspecified injury of upper limb, level unspecified', 'ICD10_2010'), +('T12', 'Fracture of lower limb, level unspecified', 'ICD10_2010'), +('T12.0', 'Fracture of lower limb, level unspecified, closed', 'ICD10_2010'), +('T12.1', 'Fracture of lower limb, level unspecified, open', 'ICD10_2010'), +('T13', 'Other injuries of lower limb, level unspecified', 'ICD10_2010'), +('T13.0', 'Superficial injury of lower limb, level unspecified', 'ICD10_2010'), +('T13.1', 'Open wound of lower limb, level unspecified', 'ICD10_2010'), +('T13.2', 'Dislocation sprain and strain unspecified joint and ligament of lower limb, level unspecified', 'ICD10_2010'), +('T13.3', 'Injury of unspecified nerve of lower limb, level unspecified', 'ICD10_2010'), +('T13.4', 'Injury of unspecified blood vessel of lower limb level unspecified', 'ICD10_2010'), +('T13.5', 'Injury of unspecified muscle & tendon of lower limb, level unspecified', 'ICD10_2010'), +('T13.6', 'Traumatic amputation of lower limb, level unspecified', 'ICD10_2010'), +('T13.8', 'Other specified injuries of lower limb, level unspecified', 'ICD10_2010'), +('T13.9', 'Unspecified injury of lower limb, level unspecified', 'ICD10_2010'), +('T14', 'Injury of unspecified body region', 'ICD10_2010'), +('T14.0', 'Superficial injury of unspecified body region', 'ICD10_2010'), +('T14.1', 'Open wound of unspecified body region', 'ICD10_2010'), +('T14.2', 'Fracture of unspecified body region', 'ICD10_2010'), +('T14.20', 'Fracture of unspecified body region, closed', 'ICD10_2010'), +('T14.21', 'Fracture of unspecified body region, open', 'ICD10_2010'), +('T14.3', 'Dislocation, sprain and strain of unspecified body region', 'ICD10_2010'), +('T14.30', 'Dislocation, sprain and strain of unspecified body region, closed', 'ICD10_2010'), +('T14.31', 'Dislocation, sprain and strain of unspecified body region, open', 'ICD10_2010'), +('T14.4', 'Injury of nerve(s) of unspecified body region', 'ICD10_2010'), +('T14.40', 'Injury of nerve(s) of unspecified body region, closed', 'ICD10_2010'), +('T14.41', 'Injury of nerve(s) of unspecified body region, open', 'ICD10_2010'), +('T14.5', 'Injury of blood vessel(s) of unspecified body region', 'ICD10_2010'), +('T14.50', 'Injury of blood vessel(s) of unspecified body region, closed', 'ICD10_2010'), +('T14.51', 'Injury of blood vessel(s) of unspecified body region, open', 'ICD10_2010'), +('T14.6', 'Injury of muscles and tendons of unspecified body region', 'ICD10_2010'), +('T14.60', 'Injury of muscles and tendons of unspecified body region, closed', 'ICD10_2010'), +('T14.61', 'Injury of muscles and tendons of unspecified body region, open', 'ICD10_2010'), +('T14.7', 'Crush injury and traumatic amputation of unspec body region', 'ICD10_2010'), +('T14.70', 'Crush injury and traumatic amputation of unspec body region, closed', 'ICD10_2010'), +('T14.71', 'Crush injury and traumatic amputation of unspec body region, open', 'ICD10_2010'), +('T14.8', 'Other injuries of unspecified body region', 'ICD10_2010'), +('T14.80', 'Other injuries of unspecified body region, closed', 'ICD10_2010'), +('T14.81', 'Other injuries of unspecified body region, open', 'ICD10_2010'), +('T14.9', 'Injury, unspecified', 'ICD10_2010'), +('T14.90', 'Injury, unspecified, closed', 'ICD10_2010'), +('T14.91', 'Injury, unspecified, open', 'ICD10_2010'), +('T15', 'Foreign body on external eye', 'ICD10_2010'), +('T15.0', 'Foreign body in cornea', 'ICD10_2010'), +('T15.1', 'Foreign body in conjunctival sac', 'ICD10_2010'), +('T15.8', 'Foreign body in other and multiple parts of external eye', 'ICD10_2010'), +('T15.9', 'Foreign body on external eye, part unspecified', 'ICD10_2010'), +('T16', 'Foreign body in ear', 'ICD10_2010'), +('T17', 'Foreign body in respiratory tract', 'ICD10_2010'), +('T17.0', 'Foreign body in nasal sinus', 'ICD10_2010'), +('T17.1', 'Foreign body in nostril', 'ICD10_2010'), +('T17.2', 'Foreign body in pharynx', 'ICD10_2010'), +('T17.3', 'Foreign body in larynx', 'ICD10_2010'), +('T17.4', 'Foreign body in trachea', 'ICD10_2010'), +('T17.5', 'Foreign body in bronchus', 'ICD10_2010'), +('T17.8', 'Foreign body in other and multiple parts of respiratory tract', 'ICD10_2010'), +('T17.9', 'Foreign body in respiratory tract, part unspecified', 'ICD10_2010'), +('T18', 'Foreign body in alimentary tract', 'ICD10_2010'), +('T18.0', 'Foreign body in mouth', 'ICD10_2010'), +('T18.1', 'Foreign body in oesophagus', 'ICD10_2010'), +('T18.2', 'Foreign body in stomach', 'ICD10_2010'), +('T18.3', 'Foreign body in small intestine', 'ICD10_2010'), +('T18.4', 'Foreign body in colon', 'ICD10_2010'), +('T18.5', 'Foreign body in anus and rectum', 'ICD10_2010'), +('T18.8', 'Foreign body in other and multiple parts of alimentary tract', 'ICD10_2010'), +('T18.9', 'Foreign body in alimentary tract, part unspecified', 'ICD10_2010'), +('T19', 'Foreign body in genitourinary tract', 'ICD10_2010'), +('T19.0', 'Foreign body in urethra', 'ICD10_2010'), +('T19.1', 'Foreign body in bladder', 'ICD10_2010'), +('T19.2', 'Foreign body in vulva and vagina', 'ICD10_2010'), +('T19.3', 'Foreign body in uterus [any part]', 'ICD10_2010'), +('T19.8', 'Foreign body in oth and multiple part of genitourinary tract', 'ICD10_2010'), +('T19.9', 'Foreign body in genitourinary tract, part unspecified', 'ICD10_2010'), +('T20', 'Burn and corrosion of head and neck', 'ICD10_2010'), +('T20.0', 'Burn of unspecified degree of head and neck', 'ICD10_2010'), +('T20.1', 'Burn of first degree of head and neck', 'ICD10_2010'), +('T20.2', 'Burn of second degree of head and neck', 'ICD10_2010'), +('T20.3', 'Burn of third degree of head and neck', 'ICD10_2010'), +('T20.4', 'Corrosion of unspecified degree of head and neck', 'ICD10_2010'), +('T20.5', 'Corrosion of first degree of head and neck', 'ICD10_2010'), +('T20.6', 'Corrosion of second degree of head and neck', 'ICD10_2010'), +('T20.7', 'Corrosion of third degree of head and neck', 'ICD10_2010'), +('T21', 'Burn and corrosion of trunk', 'ICD10_2010'), +('T21.0', 'Burn of unspecified degree of trunk', 'ICD10_2010'), +('T21.1', 'Burn of first degree of trunk', 'ICD10_2010'), +('T21.2', 'Burn of second degree of trunk', 'ICD10_2010'), +('T21.3', 'Burn of third degree of trunk', 'ICD10_2010'), +('T21.4', 'Corrosion of unspecified degree of trunk', 'ICD10_2010'), +('T21.5', 'Corrosion of first degree of trunk', 'ICD10_2010'), +('T21.6', 'Corrosion of second degree of trunk', 'ICD10_2010'), +('T21.7', 'Corrosion of third degree of trunk', 'ICD10_2010'), +('T22', 'Burn and corrosion of shoulder and upper limb, except wrist and hand', 'ICD10_2010'), +('T22.0', 'Burn of unspecified degree of shoulder and upper limb except wrist and hand', 'ICD10_2010'), +('T22.1', 'Burn of first degree of shoulder and upper limb, except wrist and hand', 'ICD10_2010'), +('T22.2', 'Burn of secondary degree of shoulder and upper limb, except wrist and hand', 'ICD10_2010'), +('T22.3', 'Burn of third degree of shoulder and upper limb excpt wrist and hand', 'ICD10_2010'), +('T22.4', 'Corrosion unspecified degree of shoulder and upper limb except wrist and hand', 'ICD10_2010'), +('T22.5', 'Corrosion of first degree of shoulder and upper limb, except wrist and hand', 'ICD10_2010'), +('T22.6', 'Corrosion secondary degree shoulder and upper limb except wrist and hand', 'ICD10_2010'), +('T22.7', 'Corrosion of third degree shoulder and upper limb, except wrist and hand', 'ICD10_2010'), +('T23', 'Burn and corrosion of wrist and hand', 'ICD10_2010'), +('T23.0', 'Burn of unspecified degree of wrist and hand', 'ICD10_2010'), +('T23.1', 'Burn of first degree of wrist and hand', 'ICD10_2010'), +('T23.2', 'Burn of second degree of wrist and hand', 'ICD10_2010'), +('T23.3', 'Burn of third degree of wrist and hand', 'ICD10_2010'), +('T23.4', 'Corrosion of unspecified degree of wrist and hand', 'ICD10_2010'), +('T23.5', 'Corrosion of first degree of wrist and hand', 'ICD10_2010'), +('T23.6', 'Corrosion of second degree of wrist and hand', 'ICD10_2010'), +('T23.7', 'Corrosion of third degree of wrist and hand', 'ICD10_2010'), +('T24', 'Burn and corrosion of hip and lower limb, except ankle and foot', 'ICD10_2010'), +('T24.0', 'Burn of unspecified degree of hip and lower limb except ankle and foot', 'ICD10_2010'), +('T24.1', 'Burn of first degree hip and lower limb except ankle and foot', 'ICD10_2010'), +('T24.2', 'Burn of second degree hip and lower limb except ankle and foot', 'ICD10_2010'), +('T24.3', 'Burn of third degree hip and lower limb except ankle and foot', 'ICD10_2010'), +('T24.4', 'Corrosion of unspecified degree hip and lower limb except ankle & foot', 'ICD10_2010'), +('T24.5', 'Corrosion of first degree hip and lower limb, except ankle & foot', 'ICD10_2010'), +('T24.6', 'Corrosion of second degree hip and lower limb, except ankle and foot', 'ICD10_2010'), +('T24.7', 'Corrosion of third degree of hip and lower limb, except ankle and foot', 'ICD10_2010'), +('T25', 'Burn and corrosion of ankle and foot', 'ICD10_2010'), +('T25.0', 'Burn of unspecified degree of ankle and foot', 'ICD10_2010'), +('T25.1', 'Burn of first degree of ankle and foot', 'ICD10_2010'), +('T25.2', 'Burn of second degree of ankle and foot', 'ICD10_2010'), +('T25.3', 'Burn of third degree of ankle and foot', 'ICD10_2010'), +('T25.4', 'Corrosion of unspecified degree of ankle and foot', 'ICD10_2010'), +('T25.5', 'Corrosion of first degree of ankle and foot', 'ICD10_2010'), +('T25.6', 'Corrosion of second degree of ankle and foot', 'ICD10_2010'), +('T25.7', 'Corrosion of third degree of ankle and foot', 'ICD10_2010'), +('T26', 'Burn and corrosion confined to eye and adnexa', 'ICD10_2010'), +('T26.0', 'Burn of eyelid and periocular area', 'ICD10_2010'), +('T26.1', 'Burn of cornea and conjunctival sac', 'ICD10_2010'), +('T26.2', 'Burn with resulting rupture and destruction of eyeball', 'ICD10_2010'), +('T26.3', 'Burn of other parts of eye and adnexa', 'ICD10_2010'), +('T26.4', 'Burn of eye and adnexa, part unspecified', 'ICD10_2010'), +('T26.5', 'Corrosion of eyelid and periocular area', 'ICD10_2010'), +('T26.6', 'Corrosion of cornea and conjunctival sac', 'ICD10_2010'), +('T26.7', 'Corrosion with resulting rupture and destruction of eyeball', 'ICD10_2010'), +('T26.8', 'Corrosion of other parts of eye and adnexa', 'ICD10_2010'), +('T26.9', 'Corrosion of eye and adnexa, part unspecified', 'ICD10_2010'), +('T27', 'Burn and corrosion of respiratory tract', 'ICD10_2010'), +('T27.0', 'Burn of larynx and trachea', 'ICD10_2010'), +('T27.1', 'Burn involving larynx and trachea with lung', 'ICD10_2010'), +('T27.2', 'Burn of other parts of respiratory tract', 'ICD10_2010'), +('T27.3', 'Burn of respiratory tract, part unspecified', 'ICD10_2010'), +('T27.4', 'Corrosion of larynx and trachea', 'ICD10_2010'), +('T27.5', 'Corrosion involving larynx and trachea with lung', 'ICD10_2010'), +('T27.6', 'Corrosion of other parts of respiratory tract', 'ICD10_2010'), +('T27.7', 'Corrosion of respiratory tract, part unspecified', 'ICD10_2010'), +('T28', 'Burn and corrosion of other internal organs', 'ICD10_2010'), +('T28.0', 'Burn of mouth and pharynx', 'ICD10_2010'), +('T28.1', 'Burn of oesophagus', 'ICD10_2010'), +('T28.2', 'Burn of other parts of alimentary tract', 'ICD10_2010'), +('T28.3', 'Burn of internal genitourinary organs', 'ICD10_2010'), +('T28.4', 'Burn of other and unspecified internal organs', 'ICD10_2010'), +('T28.5', 'Corrosion of mouth and pharynx', 'ICD10_2010'), +('T28.6', 'Corrosion of oesophagus', 'ICD10_2010'), +('T28.7', 'Corrosion of other parts of alimentary tract', 'ICD10_2010'), +('T28.8', 'Corrosion of internal genitourinary organs', 'ICD10_2010'), +('T28.9', 'Corrosion of other and unspecified internal organs', 'ICD10_2010'), +('T29', 'Burns and corrosions of multiple body regions', 'ICD10_2010'), +('T29.0', 'Burns of multiple regions, unspecified degree', 'ICD10_2010'), +('T29.1', 'Burns multi regions no more than first-degree burns mentioned', 'ICD10_2010'), +('T29.2', 'Burns multi regions no more than second-degree burns mentioned', 'ICD10_2010'), +('T29.3', 'Burns multi regions at least one burn of third degree mentioned', 'ICD10_2010'), +('T29.4', 'Corrosions of multiple regions, unspecified degree', 'ICD10_2010'), +('T29.5', 'Corrosions of multiple regions, no more than first-deg corrosions mentioned', 'ICD10_2010'), +('T29.6', 'Corrosions of multiple regions, no more than second-degree corrosions mentioned', 'ICD10_2010'), +('T29.7', 'Corros multi reg at least one corros of third deg mentioned', 'ICD10_2010'), +('T30', 'Burn and corrosion, body region unspecified', 'ICD10_2010'), +('T30.0', 'Burn of unspecified body region, unspecified degree', 'ICD10_2010'), +('T30.1', 'Burn of first degree, body region unspecified', 'ICD10_2010'), +('T30.2', 'Burn of second degree, body region unspecified', 'ICD10_2010'), +('T30.3', 'Burn of third degree, body region unspecified', 'ICD10_2010'), +('T30.4', 'Corrosion of unspecified body region, unspecified degree', 'ICD10_2010'), +('T30.5', 'Corrosion of first degree, body region unspecified', 'ICD10_2010'), +('T30.6', 'Corrosion of second degree, body region unspecified', 'ICD10_2010'), +('T30.7', 'Corrosion of third degree, body region unspecified', 'ICD10_2010'), +('T31', 'Burns classified according to extent of body surface involved', 'ICD10_2010'), +('T31.0', 'Burns involving less than 10% of body surface', 'ICD10_2010'), +('T31.1', 'Burns involving 10-19% of body surface', 'ICD10_2010'), +('T31.2', 'Burns involving 20-29% of body surface', 'ICD10_2010'), +('T31.3', 'Burns involving 30-39% of body surface', 'ICD10_2010'), +('T31.4', 'Burns involving 40-49% of body surface', 'ICD10_2010'), +('T31.5', 'Burns involving 50-59% of body surface', 'ICD10_2010'), +('T31.6', 'Burns involving 60-69% of body surface', 'ICD10_2010'), +('T31.7', 'Burns involving 70-79% of body surface', 'ICD10_2010'), +('T31.8', 'Burns involving 80-89% of body surface', 'ICD10_2010'), +('T31.9', 'Burns involving 90% or more of body surface', 'ICD10_2010'), +('T32', 'Corrosions classified according to extent of body surface involved', 'ICD10_2010'), +('T32.0', 'Corrosions involving less than 10% of body surface', 'ICD10_2010'), +('T32.1', 'Corrosions involving 10-19% of body surface', 'ICD10_2010'), +('T32.2', 'Corrosions involving 20-29% of body surface', 'ICD10_2010'), +('T32.3', 'Corrosions involving 30-39% of body surface', 'ICD10_2010'), +('T32.4', 'Corrosions involving 40-49% of body surface', 'ICD10_2010'), +('T32.5', 'Corrosions involving 50-59% of body surface', 'ICD10_2010'), +('T32.6', 'Corrosions involving 60-69% of body surface', 'ICD10_2010'), +('T32.7', 'Corrosions involving 70-79% of body surface', 'ICD10_2010'), +('T32.8', 'Corrosions involving 80-89% of body surface', 'ICD10_2010'), +('T32.9', 'Corrosions involving 90% or more of body surface', 'ICD10_2010'), +('T33', 'Superficial frostbite', 'ICD10_2010'), +('T33.0', 'Superficial frostbite of head', 'ICD10_2010'), +('T33.1', 'Superficial frostbite of neck', 'ICD10_2010'), +('T33.2', 'Superficial frostbite of thorax', 'ICD10_2010'), +('T33.3', 'Superficial frostbite of abdominal wall, lower back and pelvis', 'ICD10_2010'), +('T33.4', 'Superficial frostbite of arm', 'ICD10_2010'), +('T33.5', 'Superficial frostbite of wrist and hand', 'ICD10_2010'), +('T33.6', 'Superficial frostbite of hip and thigh', 'ICD10_2010'), +('T33.7', 'Superficial frostbite of knee and lower leg', 'ICD10_2010'), +('T33.8', 'Superficial frostbite of ankle and foot', 'ICD10_2010'), +('T33.9', 'Superficial frostbite of other and unspecified sites', 'ICD10_2010'), +('T34', 'Frostbite with tissue necrosis', 'ICD10_2010'), +('T34.0', 'Frostbite with tissue necrosis of head', 'ICD10_2010'), +('T34.1', 'Frostbite with tissue necrosis of neck', 'ICD10_2010'), +('T34.2', 'Frostbite with tissue necrosis of thorax', 'ICD10_2010'), +('T34.3', 'Frostbite with tissue necrosis abdominal wall, lower back and pelvis', 'ICD10_2010'), +('T34.4', 'Frostbite with tissue necrosis of arm', 'ICD10_2010'), +('T34.5', 'Frostbite with tissue necrosis of wrist and hand', 'ICD10_2010'), +('T34.6', 'Frostbite with tissue necrosis of hip and thigh', 'ICD10_2010'), +('T34.7', 'Frostbite with tissue necrosis of knee and lower leg', 'ICD10_2010'), +('T34.8', 'Frostbite with tissue necrosis of ankle and foot', 'ICD10_2010'), +('T34.9', 'Frostbite with tissue necrosis of other and unspec sites', 'ICD10_2010'), +('T35', 'Frostbite involving multiple body regions and unspecified frostbite', 'ICD10_2010'), +('T35.0', 'Superficial frostbite involving multiple body regions', 'ICD10_2010'), +('T35.1', 'Frostbite with tissue necrosis involving multiple body regions', 'ICD10_2010'), +('T35.2', 'Unspecified frostbite of head and neck', 'ICD10_2010'), +('T35.3', 'Unspecified frostbite thorax, abdomen, lowerr back and pelvis', 'ICD10_2010'), +('T35.4', 'Unspecified frostbite of upper limb', 'ICD10_2010'), +('T35.5', 'Unspecified frostbite of lower limb', 'ICD10_2010'), +('T35.6', 'Unspecified frostbite involving multiple body regions', 'ICD10_2010'), +('T35.7', 'Unspecified frostbite of unspecified site', 'ICD10_2010'), +('T36', 'Poisoning by systemic antibiotics', 'ICD10_2010'), +('T36.0', 'Poisoning, penicillins', 'ICD10_2010'), +('T36.1', 'Poisoning, cefalosporins and other beta-lactam antibiotics', 'ICD10_2010'), +('T36.2', 'Poisoning, chloramphenicol group', 'ICD10_2010'), +('T36.3', 'Poisoning, macrolides', 'ICD10_2010'), +('T36.4', 'Poisoning, tetracyclines', 'ICD10_2010'), +('T36.5', 'Poisoning, aminoglycosides', 'ICD10_2010'), +('T36.6', 'Poisoning, rifamycins', 'ICD10_2010'), +('T36.7', 'Poisoning, antifungal antibiotics, systemically used', 'ICD10_2010'), +('T36.8', 'Poisoning, other systemic antibiotics', 'ICD10_2010'), +('T36.9', 'Poisoning, systemic antibiotic, unspecified', 'ICD10_2010'), +('T37', 'Poisoning by other systemic anti-infectives and antiparasitics', 'ICD10_2010'), +('T37.0', 'Poisoning, sulfonamides', 'ICD10_2010'), +('T37.1', 'Poisoning, antimycobacterial drugs', 'ICD10_2010'), +('T37.2', 'Poisoning, antimalarials and drugs acting on other blood protozoa', 'ICD10_2010'), +('T37.3', 'Poisoning, other antiprotozoal drugs', 'ICD10_2010'), +('T37.4', 'Poisoning, anthelminthics', 'ICD10_2010'), +('T37.5', 'Poisoning, antiviral drugs', 'ICD10_2010'), +('T37.8', 'Poisoning, other specified systemic anti-infectives and antiparasitics', 'ICD10_2010'), +('T37.9', 'Poisoning, systemic anti-infective and antiparasitic, unspecified', 'ICD10_2010'), +('T38', 'Poisoning by hormones and their synthetic substitutes and antagonists, not elsewhere classified', 'ICD10_2010'), +('T38.0', 'Poisoning, glucocorticoids and synthetic analogues', 'ICD10_2010'), +('T38.1', 'Poisoning, thyroid hormones and substitutes', 'ICD10_2010'), +('T38.2', 'Poisoning, antithyroid drugs', 'ICD10_2010'), +('T38.3', 'Poisoning, insulin and oral hypoglycaemic [antidiabetic] drugs', 'ICD10_2010'), +('T38.4', 'Poisoning, oral contraceptives', 'ICD10_2010'), +('T38.5', 'Poisoning, other estrogens and progestogens', 'ICD10_2010'), +('T38.6', 'Poisoning, antigonadotropins, antiestrogens, antiandrogens nec', 'ICD10_2010'), +('T38.7', 'Poisoning, androgens and anabolic congeners', 'ICD10_2010'), +('T38.8', 'Poisoning, other and unspecified hormones and their synthetic substitutes', 'ICD10_2010'), +('T38.9', 'Poisoning, other and unspecified hormone antagonists', 'ICD10_2010'), +('T39', 'Poisoning by nonopioid analgesics, antipyretics and antirheumatics', 'ICD10_2010'), +('T39.0', 'Poisoning, salicylates', 'ICD10_2010'), +('T39.1', 'Poisoning, 4-aminophenol derivatives', 'ICD10_2010'), +('T39.2', 'Poisoning, pyrazolone derivatives', 'ICD10_2010'), +('T39.3', 'Poisoning, other nonsteroidal anti-inflammatory drugs [NSAID]', 'ICD10_2010'), +('T39.4', 'Poisoning, antirheumatics, not elsewhere classified', 'ICD10_2010'), +('T39.8', 'Poisoning, other nonopiod analgesics and antipyretics nec', 'ICD10_2010'), +('T39.9', 'Poisoning, nonopioid analgesic, antipyretic and antirheumatic unspec act', 'ICD10_2010'), +('T40', 'Poisoning by narcotics and psychodysleptics [hallucinogens]', 'ICD10_2010'), +('T40.0', 'Poisoning, opium', 'ICD10_2010'), +('T40.1', 'Poisoning, heroin', 'ICD10_2010'), +('T40.2', 'Poisoning, other opioids', 'ICD10_2010'), +('T40.3', 'Poisoning, methadone', 'ICD10_2010'), +('T40.4', 'Poisoning, other synthetic narcotics', 'ICD10_2010'), +('T40.5', 'Poisoning, cocaine', 'ICD10_2010'), +('T40.6', 'Poisoning, other and unspecified narcotics', 'ICD10_2010'), +('T40.7', 'Poisoning, cannabis (derivatives)', 'ICD10_2010'), +('T40.8', 'Poisoning, lysergide [lsd]', 'ICD10_2010'), +('T40.9', 'Poisoning, other and unspecified psychodysleptics [hallucinogens]', 'ICD10_2010'), +('T41', 'Poisoning by anaesthetics and therapeutic gases', 'ICD10_2010'), +('T41.0', 'Poisoning, inhaled anaesthetics', 'ICD10_2010'), +('T41.1', 'Poisoning, intravenous anaesthetics', 'ICD10_2010'), +('T41.2', 'Poisoning, other and unspecified general anaesthetics', 'ICD10_2010'), +('T41.3', 'Poisoning, local anaesthetics', 'ICD10_2010'), +('T41.4', 'Poisoning, anaesthetic, unspecified', 'ICD10_2010'), +('T41.5', 'Poisoning, therapeutic gases', 'ICD10_2010'), +('T42', 'Poisoning by antiepileptic, sedative-hypnotic and antiparkinsonism drugs', 'ICD10_2010'), +('T42.0', 'Poisoning, hydantoin derivatives', 'ICD10_2010'), +('T42.1', 'Poisoning, iminostilbenes', 'ICD10_2010'), +('T42.2', 'Poisoning, succinimides and oxazolidinediones', 'ICD10_2010'), +('T42.3', 'Poisoning, barbiturates', 'ICD10_2010'), +('T42.4', 'Poisoning, benzodiazepines', 'ICD10_2010'), +('T42.5', 'Poisoning, mixed antiepileptics, not elsewhere classified', 'ICD10_2010'), +('T42.6', 'Poisoning, other antiepileptic and sedative-hypnotic drugs', 'ICD10_2010'), +('T42.7', 'Poisoning, antiepileptic and sedative-hypnotic drugs, unspecified', 'ICD10_2010'), +('T42.8', 'Poisoning, antiparkinson drug and other central muscle-tone depressant', 'ICD10_2010'), +('T43', 'Poisoning by psychotropic drugs, not elsewhere classified', 'ICD10_2010'), +('T43.0', 'Poisoning, tricyclic and tetracyclic antidepressants', 'ICD10_2010'), +('T43.1', 'Poisoning, monoamine-oxidase-inhibitor antidepressants', 'ICD10_2010'), +('T43.2', 'Poisoning, other and unspecified antidepressants', 'ICD10_2010'), +('T43.3', 'Poisoning, phenothiazine antipsychotics and neuroleptics', 'ICD10_2010'), +('T43.4', 'Poisoning, butyrophenone and thioxanthene neuroleptics', 'ICD10_2010'), +('T43.5', 'Poisoning, other and unspecified antipsychotics and neuroleptics', 'ICD10_2010'), +('T43.6', 'Poisoning, psychostimulants with abuse potential', 'ICD10_2010'), +('T43.8', 'Poisoning, other psychotropic drugs, not elsewhere classified', 'ICD10_2010'), +('T43.9', 'Poisoning, psychotropic drug, unspecified', 'ICD10_2010'), +('T44', 'Poisoning by drugs primarily affecting the autonomic nervous system', 'ICD10_2010'), +('T44.0', 'Poisoning, anticholinesterase agents', 'ICD10_2010'), +('T44.1', 'Poisoning, other parasympathomimetics [cholinergics]', 'ICD10_2010'), +('T44.2', 'Poisoning, ganglionic blocking drugs, not elsewhere classified', 'ICD10_2010'), +('T44.3', 'Poisoning, oth parasympatholy [antichol and antimusc] spasmolytics nec', 'ICD10_2010'), +('T44.4', 'Poisoning, predominantly alpha-adrenoreceptor agonists nec', 'ICD10_2010'), +('T44.5', 'Poisoning, predominantly beta-adrenreceptor agonists nec', 'ICD10_2010'), +('T44.6', 'Poisoning, alpha-adrenoreceptor agonists nec', 'ICD10_2010'), +('T44.7', 'Poisoning, beta-adrenreceptor agonists nec', 'ICD10_2010'), +('T44.8', 'Poisoning, centrally acting and adrenergic-neuron-blocking agents nec', 'ICD10_2010'), +('T44.9', 'Poisoning, other unspecified drugs primarily affect the autonomic nervous system', 'ICD10_2010'), +('T45', 'Poisoning by primarily systemic and haematological agents, not elsewhere classified', 'ICD10_2010'), +('T45.0', 'Poisoning, antiallergic and antiemetic drugs', 'ICD10_2010'), +('T45.1', 'Poisoning, antineoplastic and immunosuppressive drugs', 'ICD10_2010'), +('T45.2', 'Poisoning, vitamins, not elsewhere classified', 'ICD10_2010'), +('T45.3', 'Poisoning, enzymes, not elsewhere classified', 'ICD10_2010'), +('T45.4', 'Poisoning, iron and its compounds', 'ICD10_2010'), +('T45.5', 'Poisoning, anticoagulants', 'ICD10_2010'), +('T45.6', 'Poisoning, fibrinolysis-affecting drugs', 'ICD10_2010'), +('T45.7', 'Poisoning, anticoagulant antagonists, vitamin k and other coagulants', 'ICD10_2010'), +('T45.8', 'Poisoning, other primarily systemic and haematological agents', 'ICD10_2010'), +('T45.9', 'Poisoning, primarily systemic and haematological agent, unspecified', 'ICD10_2010'), +('T46', 'Poisoning by agents primarily affecting the cardiovascular system', 'ICD10_2010'), +('T46.0', 'Poisoning, cardiac-stimulant glycosides and drugs of similar action', 'ICD10_2010'), +('T46.1', 'Poisoning, calcium-channel blockers', 'ICD10_2010'), +('T46.2', 'Poisoning, other antidysrhythmic drugs, not elsewhere classified', 'ICD10_2010'), +('T46.3', 'Poisoning, coronary vasodilators, not elsewhere classified', 'ICD10_2010'), +('T46.4', 'Poisoning, angiotensin-converting-enzyme inhibitors', 'ICD10_2010'), +('T46.5', 'Poisoning, other antihypertensive drugs, not elsewhere classified', 'ICD10_2010'), +('T46.6', 'Poisoning, antihyperlipidaemic and antiarteriosclerotic drugs', 'ICD10_2010'), +('T46.7', 'Poisoning, peripheral vasodilators', 'ICD10_2010'), +('T46.8', 'Poisoning, antivaricose drugs, including sclerosing agents', 'ICD10_2010'), +('T46.9', 'Poisoning, oth and unspec agent primarily affect the cardiovascular sys', 'ICD10_2010'), +('T47', 'Poisoning by agents primarily affecting the gastrointestinal system', 'ICD10_2010'), +('T47.0', 'Poisoning, histamine h2-receptor antagonists', 'ICD10_2010'), +('T47.1', 'Poisoning, other antacids and anti-gastric-secretion drugs', 'ICD10_2010'), +('T47.2', 'Poisoning, stimulant laxatives', 'ICD10_2010'), +('T47.3', 'Poisoning, saline and osmotic laxatives', 'ICD10_2010'), +('T47.4', 'Poisoning, other laxatives', 'ICD10_2010'), +('T47.5', 'Poisoning, digestants', 'ICD10_2010'), +('T47.6', 'Poisoning, antidiarrhoeal drugs', 'ICD10_2010'), +('T47.7', 'Poisoning, emetics', 'ICD10_2010'), +('T47.8', 'Poisoning, other agents primarily affecting the gastrointestinal system', 'ICD10_2010'), +('T47.9', 'Poisoning, agent primarily affecting the gastrointestinal syst unspec act', 'ICD10_2010'), +('T48', 'Poisoning by agents primarily acting on smooth and skeletal muscles and the respiratory system', 'ICD10_2010'), +('T48.0', 'Poisoning, oxytocic drugs', 'ICD10_2010'), +('T48.1', 'Poisoning, skeletal muscle relaxants [neuromuscular blocking agents]', 'ICD10_2010'), +('T48.2', 'Poisoning, other and unspecified agents primarily acting on muscles', 'ICD10_2010'), +('T48.3', 'Poisoning, antitussives', 'ICD10_2010'), +('T48.4', 'Poisoning, expectorants', 'ICD10_2010'), +('T48.5', 'Poisoning, anti-common-cold drugs', 'ICD10_2010'), +('T48.6', 'Poisoning, antiasthmatics, not elsewhere classified', 'ICD10_2010'), +('T48.7', 'Poisoning, other and unspec agents primarily acting on the respiratory system', 'ICD10_2010'), +('T49', 'Poisoning by topical agents primarily affecting skin and mucous membrane and by ophthalmological, otorhinolaryngological and dental drugs', 'ICD10_2010'), +('T49.0', 'Poisoning, loc antifungal anti-infective & anti-inflammatory drug nec', 'ICD10_2010'), +('T49.1', 'Poisoning, antipruritics', 'ICD10_2010'), +('T49.2', 'Poisoning, local astringents and local detergents', 'ICD10_2010'), +('T49.3', 'Poisoning, emollients, demulcents and protectants', 'ICD10_2010'), +('T49.4', 'Poisoning, keratolytics keratoplastics oth hair treat drugs and preps', 'ICD10_2010'), +('T49.5', 'Poisoning, ophthalmological drugs and preparations', 'ICD10_2010'), +('T49.6', 'Poisoning, otorhinolaryngological drugs and preparations', 'ICD10_2010'), +('T49.7', 'Poisoning, dental drugs, topically applied', 'ICD10_2010'), +('T49.8', 'Poisoning, other topical agents', 'ICD10_2010'), +('T49.9', 'Poisoning, topical agent, unspecified', 'ICD10_2010'), +('T50', 'Poisoning by diuretics and other and unspecified drugs, medicaments and biological substances', 'ICD10_2010'), +('T50.0', 'Poisoning, mineralocorticoids and their antagonists', 'ICD10_2010'), +('T50.1', 'Poisoning, loop [high-ceiling] diuretics', 'ICD10_2010'), +('T50.2', 'Poisoning, carbonic-anhydrase inhibitors benzothiadiazide oth diuretic', 'ICD10_2010'), +('T50.3', 'Poisoning, electrolytic, caloric and water-balance agents', 'ICD10_2010'), +('T50.4', 'Poisoning, drugs affecting uric acid metabolism', 'ICD10_2010'), +('T50.5', 'Poisoning, appetite depressants', 'ICD10_2010'), +('T50.6', 'Poisoning, antidotes and chelating agents, not elsewhere classified', 'ICD10_2010'), +('T50.7', 'Poisoning, analeptics and opioid receptor antagonists', 'ICD10_2010'), +('T50.8', 'Poisoning, diagnostic agents', 'ICD10_2010'), +('T50.9', 'Poisoning, other and unspec drugs medicaments & biological subs', 'ICD10_2010'), +('T51', 'Toxic effect of alcohol', 'ICD10_2010'), +('T51.0', 'Toxic effect, ethanol', 'ICD10_2010'), +('T51.1', 'Toxic effect, methanol', 'ICD10_2010'), +('T51.2', 'Toxic effect, 2-propanol', 'ICD10_2010'), +('T51.3', 'Toxic effect, fusel oil', 'ICD10_2010'), +('T51.8', 'Toxic effect, other alcohols', 'ICD10_2010'), +('T51.9', 'Toxic effect, alcohol, unspecified', 'ICD10_2010'), +('T52', 'Toxic effect of organic solvents', 'ICD10_2010'), +('T52.0', 'Toxic effect, petroleum products', 'ICD10_2010'), +('T52.1', 'Toxic effect, benzene', 'ICD10_2010'), +('T52.2', 'Toxic effect, homologues of benzene', 'ICD10_2010'), +('T52.3', 'Toxic effect, glycols', 'ICD10_2010'), +('T52.4', 'Toxic effect, ketones', 'ICD10_2010'), +('T52.8', 'Toxic effect, other organic solvents', 'ICD10_2010'), +('T52.9', 'Toxic effect, organic solvent, unspecified', 'ICD10_2010'), +('T53', 'Toxic effect of halogen derivatives of aliphatic and aromatic hydrocarbons', 'ICD10_2010'), +('T53.0', 'Toxic effect, carbon tetrachloride', 'ICD10_2010'); +INSERT INTO `icd10` (`ID_ICD10`, `Diagnosa`, `Versi_ICD10`) VALUES +('T53.1', 'Toxic effect, chloroform', 'ICD10_2010'), +('T53.2', 'Toxic effect, trichloroethylene', 'ICD10_2010'), +('T53.3', 'Toxic effect, tetrachloroethylene', 'ICD10_2010'), +('T53.4', 'Toxic effect, dichloromethane', 'ICD10_2010'), +('T53.5', 'Toxic effect, chlorofluorocarbons', 'ICD10_2010'), +('T53.6', 'Toxic effect, other halogen derivatives of aliphatic hydrocarbons', 'ICD10_2010'), +('T53.7', 'Toxic effect, other halogen derivatives of aromatic hydrocarbons', 'ICD10_2010'), +('T53.9', 'Toxic effect, halogen derivative of aliphatic and aromatic hydrocarbons', 'ICD10_2010'), +('T54', 'Toxic effect of corrosive substances', 'ICD10_2010'), +('T54.0', 'Toxic effect, phenol and phenol homologues', 'ICD10_2010'), +('T54.1', 'Toxic effect, other corrosive organic compounds', 'ICD10_2010'), +('T54.2', 'Toxic effect, corrosive acids and acid-like substances', 'ICD10_2010'), +('T54.3', 'Toxic effect, corrosive alkalis and alkali-like substances', 'ICD10_2010'), +('T54.9', 'Toxic effect, corrosive substance, unspecified', 'ICD10_2010'), +('T55', 'Toxic effect of soaps and detergents', 'ICD10_2010'), +('T56', 'Toxic effect of metals', 'ICD10_2010'), +('T56.0', 'Toxic effect, lead and its compounds', 'ICD10_2010'), +('T56.1', 'Toxic effect, mercury and its compounds', 'ICD10_2010'), +('T56.2', 'Toxic effect, chromium and its compounds', 'ICD10_2010'), +('T56.3', 'Toxic effect, cadmium and its compounds', 'ICD10_2010'), +('T56.4', 'Toxic effect, copper and its compounds', 'ICD10_2010'), +('T56.5', 'Toxic effect, zinc and its compounds', 'ICD10_2010'), +('T56.6', 'Toxic effect, tin and its compounds', 'ICD10_2010'), +('T56.7', 'Toxic effect, beryllium and its compounds', 'ICD10_2010'), +('T56.8', 'Toxic effect, other metals', 'ICD10_2010'), +('T56.9', 'Toxic effect, metal, unspecified', 'ICD10_2010'), +('T57', 'Toxic effect of other inorganic substances', 'ICD10_2010'), +('T57.0', 'Toxic effect, arsenic and its compounds', 'ICD10_2010'), +('T57.1', 'Toxic effect, phosphorus and its compounds', 'ICD10_2010'), +('T57.2', 'Toxic effect, manganese and its compounds', 'ICD10_2010'), +('T57.3', 'Toxic effect, hydrogen cyanide', 'ICD10_2010'), +('T57.8', 'Toxic effect, other specified inorganic substances', 'ICD10_2010'), +('T57.9', 'Toxic effect, inorganic substance, unspecified', 'ICD10_2010'), +('T58', 'Toxic effect of carbon monoxide', 'ICD10_2010'), +('T59', 'Toxic effect of other gases, fumes and vapours', 'ICD10_2010'), +('T59.0', 'Toxic effect, nitrogen oxides', 'ICD10_2010'), +('T59.1', 'Toxic effect, sulfur dioxide', 'ICD10_2010'), +('T59.2', 'Toxic effect, formaldehyde', 'ICD10_2010'), +('T59.3', 'Toxic effect, lacrimogenic gas', 'ICD10_2010'), +('T59.4', 'Toxic effect, chlorine gas', 'ICD10_2010'), +('T59.5', 'Toxic effect, fluorine gas and hydrogen fluoride', 'ICD10_2010'), +('T59.6', 'Toxic effect, hydrogen sulfide', 'ICD10_2010'), +('T59.7', 'Toxic effect, carbon dioxide', 'ICD10_2010'), +('T59.8', 'Toxic effect, other specified gases, fumes and vapours', 'ICD10_2010'), +('T59.9', 'Toxic effect, gases, fumes and vapours, unspecified', 'ICD10_2010'), +('T60', 'Toxic effect of pesticides', 'ICD10_2010'), +('T60.0', 'Toxic effect, organophosphate and carbamate insecticides', 'ICD10_2010'), +('T60.1', 'Toxic effect, halogenated insecticides', 'ICD10_2010'), +('T60.2', 'Toxic effect, other insecticides', 'ICD10_2010'), +('T60.3', 'Toxic effect, herbicides and fungicides', 'ICD10_2010'), +('T60.4', 'Toxic effect, rodenticides', 'ICD10_2010'), +('T60.8', 'Toxic effect, other pesticides', 'ICD10_2010'), +('T60.9', 'Toxic effect, pesticide, unspecified', 'ICD10_2010'), +('T61', 'Toxic effect of noxious substances eaten as seafood', 'ICD10_2010'), +('T61.0', 'Toxic effect, ciguatera fish poisoning', 'ICD10_2010'), +('T61.1', 'Toxic effect, scombroid fish poisoning', 'ICD10_2010'), +('T61.2', 'Toxic effect, other fish and shellfish poisoning', 'ICD10_2010'), +('T61.8', 'Toxic effect of other seafoods', 'ICD10_2010'), +('T61.9', 'Toxic effect of unspecified seafood', 'ICD10_2010'), +('T62', 'Toxic effect of other noxious substances eaten as food', 'ICD10_2010'), +('T62.0', 'Toxic effect, ingested mushrooms', 'ICD10_2010'), +('T62.1', 'Toxic effect, ingested berries', 'ICD10_2010'), +('T62.2', 'Toxic effect, other ingested (parts of) plant(s)', 'ICD10_2010'), +('T62.8', 'Toxic effect, other specified noxious substances eaten as food', 'ICD10_2010'), +('T62.9', 'Toxic effect, noxious substance eaten as food, unspecified', 'ICD10_2010'), +('T63', 'Toxic effect of contact with venomous animals', 'ICD10_2010'), +('T63.0', 'Toxic effect, snake venom', 'ICD10_2010'), +('T63.1', 'Toxic effect, venom of other reptiles', 'ICD10_2010'), +('T63.2', 'Toxic effect, venom of scorpion', 'ICD10_2010'), +('T63.3', 'Toxic effect, venom of spider', 'ICD10_2010'), +('T63.4', 'Toxic effect, venom of other arthropods', 'ICD10_2010'), +('T63.5', 'Toxic effect of contact with fish', 'ICD10_2010'), +('T63.6', 'Toxic effect of contact with other marine animals', 'ICD10_2010'), +('T63.8', 'Toxic effect of contact with other venomous animals', 'ICD10_2010'), +('T63.9', 'Toxic effect of contact with unspecified venomous animal', 'ICD10_2010'), +('T64', 'Toxic effect of aflatoxin and other mycotoxin food contams', 'ICD10_2010'), +('T65', 'Toxic effect of other and unspecified substances', 'ICD10_2010'), +('T65.0', 'Toxic effect, cyanides', 'ICD10_2010'), +('T65.1', 'Toxic effect, strychnine and its salts', 'ICD10_2010'), +('T65.2', 'Toxic effect, tobacco and nicotine', 'ICD10_2010'), +('T65.3', 'Toxic effect, nitroderivs and aminoderivs of benzene and its homologues', 'ICD10_2010'), +('T65.4', 'Toxic effect, carbon disulfide', 'ICD10_2010'), +('T65.5', 'Toxic effect, nitroglycerin and other nitric acids and esters', 'ICD10_2010'), +('T65.6', 'Toxic effect, paints and dyes, not elsewhere classified', 'ICD10_2010'), +('T65.8', 'Toxic effect of other specified substances', 'ICD10_2010'), +('T65.9', 'Toxic effect of unspecified substance', 'ICD10_2010'), +('T66', 'Unspecified effects of radiation', 'ICD10_2010'), +('T67', 'Effects of heat and light', 'ICD10_2010'), +('T67.0', 'Heatstroke and sunstroke', 'ICD10_2010'), +('T67.1', 'Heat syncope', 'ICD10_2010'), +('T67.2', 'Heat cramp', 'ICD10_2010'), +('T67.3', 'Heat exhaustion, anhydrotic', 'ICD10_2010'), +('T67.4', 'Heat exhaustion due to salt depletion', 'ICD10_2010'), +('T67.5', 'Heat exhaustion, unspecified', 'ICD10_2010'), +('T67.6', 'Heat fatigue, transient', 'ICD10_2010'), +('T67.7', 'Heat oedema', 'ICD10_2010'), +('T67.8', 'Other effects of heat and light', 'ICD10_2010'), +('T67.9', 'Effect of heat and light, unspecified', 'ICD10_2010'), +('T68', 'Hypothermia', 'ICD10_2010'), +('T69', 'Other effects of reduced temperature', 'ICD10_2010'), +('T69.0', 'Immersion hand and foot', 'ICD10_2010'), +('T69.1', 'Chilblains', 'ICD10_2010'), +('T69.8', 'Other specified effects of reduced temperature', 'ICD10_2010'), +('T69.9', 'Effect of reduced temperature, unspecified', 'ICD10_2010'), +('T70', 'Effects of air pressure and water pressure', 'ICD10_2010'), +('T70.0', 'Otitic barotrauma', 'ICD10_2010'), +('T70.1', 'Sinus barotrauma', 'ICD10_2010'), +('T70.2', 'Other and unspecified effects of high altitude', 'ICD10_2010'), +('T70.3', 'Caisson disease [decompression sickness]', 'ICD10_2010'), +('T70.4', 'Effects of high-pressure fluids', 'ICD10_2010'), +('T70.8', 'Other effects of air pressure and water pressure', 'ICD10_2010'), +('T70.9', 'Effect of air pressure and water pressure, unspecified', 'ICD10_2010'), +('T71', 'Asphyxiation', 'ICD10_2010'), +('T73', 'Effects of other deprivation', 'ICD10_2010'), +('T73.0', 'Effects of hunger', 'ICD10_2010'), +('T73.1', 'Effects of thirst', 'ICD10_2010'), +('T73.2', 'Exhaustion due to exposure', 'ICD10_2010'), +('T73.3', 'Exhaustion due to excessive exertion', 'ICD10_2010'), +('T73.8', 'Other effects of deprivation', 'ICD10_2010'), +('T73.9', 'Effect of deprivation, unspecified', 'ICD10_2010'), +('T74', 'Maltreatment syndromes', 'ICD10_2010'), +('T74.0', 'Neglect or abandonment', 'ICD10_2010'), +('T74.1', 'Physical abuse', 'ICD10_2010'), +('T74.2', 'Sexual abuse', 'ICD10_2010'), +('T74.3', 'Psychological abuse', 'ICD10_2010'), +('T74.8', 'Other maltreatment syndromes', 'ICD10_2010'), +('T74.9', 'Maltreatment syndrome, unspecified', 'ICD10_2010'), +('T75', 'Effects of other external causes', 'ICD10_2010'), +('T75.0', 'Effects of lightning', 'ICD10_2010'), +('T75.1', 'Drowning and nonfatal submersion', 'ICD10_2010'), +('T75.2', 'Effects of vibration', 'ICD10_2010'), +('T75.3', 'Motion sickness', 'ICD10_2010'), +('T75.4', 'Effects of electric current', 'ICD10_2010'), +('T75.8', 'Other specified effects of external causes', 'ICD10_2010'), +('T78', 'Adverse effects, not elsewhere classified', 'ICD10_2010'), +('T78.0', 'Anaphylactic shock due to adverse food reaction', 'ICD10_2010'), +('T78.1', 'Other adverse food reactions, not elsewhere classified', 'ICD10_2010'), +('T78.2', 'Anaphylactic shock, unspecified', 'ICD10_2010'), +('T78.3', 'Angioneurotic oedema', 'ICD10_2010'), +('T78.4', 'Allergy, unspecified', 'ICD10_2010'), +('T78.8', 'Other adverse effects, not elsewhere classified', 'ICD10_2010'), +('T78.9', 'Adverse effect, unspecified', 'ICD10_2010'), +('T79', 'Certain early complications of trauma, not elsewhere classified', 'ICD10_2010'), +('T79.0', 'Air embolism (traumatic)', 'ICD10_2010'), +('T79.1', 'Fat embolism (traumatic)', 'ICD10_2010'), +('T79.2', 'Traumatic secondary and recurrent haemorrhage', 'ICD10_2010'), +('T79.3', 'Post-traumatic wound infection, not elsewhere classified', 'ICD10_2010'), +('T79.4', 'Traumatic shock', 'ICD10_2010'), +('T79.5', 'Traumatic anuria', 'ICD10_2010'), +('T79.6', 'Traumatic ischaemia of muscle', 'ICD10_2010'), +('T79.7', 'Traumatic subcutaneous emphysema', 'ICD10_2010'), +('T79.8', 'Other early complications of trauma', 'ICD10_2010'), +('T79.9', 'Unspecified early complication of trauma', 'ICD10_2010'), +('T80', 'Complications following infusion, transfusion and therapeutic injection', 'ICD10_2010'), +('T80.0', 'Air embolism following infusion transfusion and therapeutic inject', 'ICD10_2010'), +('T80.1', 'Vasc comps following infusion transfusion and therapeutic inject', 'ICD10_2010'), +('T80.2', 'Infections following infusion transfusion and therapeutic inject', 'ICD10_2010'), +('T80.3', 'ABO incompatibility reaction', 'ICD10_2010'), +('T80.4', 'Rh incompatibility reaction', 'ICD10_2010'), +('T80.5', 'Anaphylactic shock due to serum', 'ICD10_2010'), +('T80.6', 'Other serum reactions', 'ICD10_2010'), +('T80.8', 'Other complications following infusion transfusion & therap inject', 'ICD10_2010'), +('T80.9', 'Unspecified complication following infusion transfusion and therapeutic inject', 'ICD10_2010'), +('T81', 'Complications of procedures, not elsewhere classified', 'ICD10_2010'), +('T81.0', 'Haemorrhage and haematoma complicating a procedure nec', 'ICD10_2010'), +('T81.1', 'Shock during or resulting from a procedure nec', 'ICD10_2010'), +('T81.2', 'Accidental puncture and laceration during a procedure nec', 'ICD10_2010'), +('T81.3', 'Disruption of operation wound, not elsewhere classified', 'ICD10_2010'), +('T81.4', 'Infection following a procedure, not elsewhere classified', 'ICD10_2010'), +('T81.5', 'Foreign body accidentally left in body cavity or operation wound following a procedure', 'ICD10_2010'), +('T81.6', 'Acute reaction to foreign substance accident left during a procedures', 'ICD10_2010'), +('T81.7', 'Vascular complications following a procedure', 'ICD10_2010'), +('T81.8', 'Other complications of procedures, not elsewhere classified', 'ICD10_2010'), +('T81.9', 'Unspecified complication of procedure', 'ICD10_2010'), +('T82', 'Complications of cardiac and vascular prosthetic devices, implants and grafts', 'ICD10_2010'), +('T82.0', 'Mechanical complication of heart valve prosthesis', 'ICD10_2010'), +('T82.1', 'Mechanical complication of cardiac electronic device', 'ICD10_2010'), +('T82.2', 'Mech complication of coronary artery bypass and valve grafts', 'ICD10_2010'), +('T82.3', 'Mechanical complication of other vascular grafts', 'ICD10_2010'), +('T82.4', 'Mechanical complication of vascular dialysis catheter', 'ICD10_2010'), +('T82.5', 'Mechanical complication of other cardiac and vascular devices and implants', 'ICD10_2010'), +('T82.6', 'Infection and inflammatory reaction due to cardiac valve prosthesis', 'ICD10_2010'), +('T82.7', 'Infection and inflammatory reaction due other cardiac and vascular devices, implant and grafts', 'ICD10_2010'), +('T82.8', 'Other complications of cardic and vascular prosthetic devices, implants and grafts', 'ICD10_2010'), +('T82.9', 'Unspecified complications of cardiac and vascular prosthetic devices, implants and grafts', 'ICD10_2010'), +('T83', 'Complications of genitourinary prosthetic devices, implants and grafts', 'ICD10_2010'), +('T83.0', 'Mechanical complication of urinary (indwelling) catheter', 'ICD10_2010'), +('T83.1', 'Mechanical complication of other urinary devices and implants', 'ICD10_2010'), +('T83.2', 'Mechanical complication of graft of urinary organ', 'ICD10_2010'), +('T83.3', 'Mechanical complication of intrauterine contraceptive device', 'ICD10_2010'), +('T83.4', 'Mechanical complication of other prosthetic devices, implants and grafts in genital tract', 'ICD10_2010'), +('T83.5', 'Infection and inflammatory reaction due to prosthetic devices, implant and graft urinary system', 'ICD10_2010'), +('T83.6', 'Infection inflammatory reaction due to prosthetic device, implant and graft in genital tract', 'ICD10_2010'), +('T83.8', 'Others complications of genitourinary prosthetic device, implants and grafts', 'ICD10_2010'), +('T83.9', 'Unspecified complication of genitourinary prosthetic devices, implant and graft', 'ICD10_2010'), +('T84', 'Complications of internal orthopaedic prosthetic devices, implants and grafts', 'ICD10_2010'), +('T84.0', 'Mechanical complication of internal joint prosthesis', 'ICD10_2010'), +('T84.1', 'Mechanical complication of internal fixation device of bones of limb', 'ICD10_2010'), +('T84.2', 'Mechanical complication of internal fixation device of other bones', 'ICD10_2010'), +('T84.3', 'Mechanical complication other bone devices implants and grafts', 'ICD10_2010'), +('T84.4', 'Mechanical complication of other internal orthopaedic devices, implants and grafts', 'ICD10_2010'), +('T84.5', 'Infection and inflammatory reaction due to internal joint pros', 'ICD10_2010'), +('T84.6', 'Infection and inflammatory reaction due internal fixation device [any site]', 'ICD10_2010'), +('T84.7', 'Infection and inflammatory reaction due to other internal orthopedic prosthetic devices, implants and grafts', 'ICD10_2010'), +('T84.8', 'Other complications of internal orthopaedic prosthtic devices, implants & grafts', 'ICD10_2010'), +('T84.9', 'Unspecified complication of internal othopaedic prosthetic device, implant & graft', 'ICD10_2010'), +('T85', 'Complications of other internal prosthetic devices, implants and grafts', 'ICD10_2010'), +('T85.0', 'Mechanical complication of ventricular intracranial (communicating) shunt', 'ICD10_2010'), +('T85.1', 'Mechanical complication implanted electronic stimulator of nervous system', 'ICD10_2010'), +('T85.2', 'Mechanical complication of intraocular lens', 'ICD10_2010'), +('T85.3', 'Mechanical complication of other ocular prosthetic devices, implants and grafts', 'ICD10_2010'), +('T85.4', 'Mechanical complication of breast prosthesis and implant', 'ICD10_2010'), +('T85.5', 'Mechanical complication of gastrointestinal prosthetic devices, implants and grafts', 'ICD10_2010'), +('T85.6', 'Mechanical complication of other specified internal prosthetic devices, implants and grafts', 'ICD10_2010'), +('T85.7', 'Infection inflammatory reaction due to other internal prosthetic devices, implants and grafts', 'ICD10_2010'), +('T85.8', 'Other complications of internal prosthetic devices, implants and grafts nec', 'ICD10_2010'), +('T85.9', 'Unspecified complication of internal prosthetic device, implant and graft', 'ICD10_2010'), +('T86', 'Failure and rejection of transplanted organs and tissues', 'ICD10_2010'), +('T86.0', 'Bone-marrow transplant rejection', 'ICD10_2010'), +('T86.1', 'Kidney transplant failure and rejection', 'ICD10_2010'), +('T86.2', 'Heart transplant failure and rejection', 'ICD10_2010'), +('T86.3', 'Heart-lung transplant failure and rejection', 'ICD10_2010'), +('T86.4', 'Liver transplant failure and rejection', 'ICD10_2010'), +('T86.8', 'Failure and reject of other transplanted organs and tissues', 'ICD10_2010'), +('T86.9', 'Failure and reject of unspecified transplanted organ and tissue', 'ICD10_2010'), +('T87', 'Complications peculiar to reattachment and amputation', 'ICD10_2010'), +('T87.0', 'Complications of reattached (part of) upper extremity', 'ICD10_2010'), +('T87.1', 'Complications of reattached (part of) lower extremity', 'ICD10_2010'), +('T87.2', 'Complications of other reattached body part', 'ICD10_2010'), +('T87.3', 'Neuroma of amputation stump', 'ICD10_2010'), +('T87.4', 'Infection of amputation stump', 'ICD10_2010'), +('T87.5', 'Necrosis of amputation stump', 'ICD10_2010'), +('T87.6', 'Other and unspecified complications of amputation stump', 'ICD10_2010'), +('T88', 'Other complications of surgical and medical care, not elsewhere classified', 'ICD10_2010'), +('T88.0', 'Infection following immunization', 'ICD10_2010'), +('T88.1', 'Other complications following immunization nec', 'ICD10_2010'), +('T88.2', 'Shock due to anaesthesia', 'ICD10_2010'), +('T88.3', 'Malignant hyperthermia due to anaesthesia', 'ICD10_2010'), +('T88.4', 'Failed or difficult intubation', 'ICD10_2010'), +('T88.5', 'Other complications of anaesthesia', 'ICD10_2010'), +('T88.6', 'Anaphylactic shock due adverse effect of correct drug or medicament properly administered', 'ICD10_2010'), +('T88.7', 'Unspecified adverse effect of drug or medicament', 'ICD10_2010'), +('T88.8', 'Other specified complications of surgical and medical care nec', 'ICD10_2010'), +('T88.9', 'Complication of surgical and medical care, unspecified', 'ICD10_2010'), +('T90', 'Sequelae of injuries of head', 'ICD10_2010'), +('T90.0', 'Sequelae of superficial injury of head', 'ICD10_2010'), +('T90.1', 'Sequelae of open wound of head', 'ICD10_2010'), +('T90.2', 'Sequelae of fracture of skull and facial bones', 'ICD10_2010'), +('T90.3', 'Sequelae of injury of cranial nerves', 'ICD10_2010'), +('T90.4', 'Sequelae of injury of eye and orbit', 'ICD10_2010'), +('T90.5', 'Sequelae of intracranial injury', 'ICD10_2010'), +('T90.8', 'Sequelae of other specified injuries of head', 'ICD10_2010'), +('T90.9', 'Sequelae of unspecified injury of head', 'ICD10_2010'), +('T91', 'Sequelae of injuries of neck and trunk', 'ICD10_2010'), +('T91.0', 'Sequelae of superficial injury and open wound of neck and trunk', 'ICD10_2010'), +('T91.1', 'Sequelae of fracture of spine', 'ICD10_2010'), +('T91.2', 'Sequelae of other fracture of thorax and pelvis', 'ICD10_2010'), +('T91.3', 'Sequelae of injury of spinal cord', 'ICD10_2010'), +('T91.4', 'Sequelae of injury of intrathoracic organs', 'ICD10_2010'), +('T91.5', 'Sequelae of injury of intra-abdominal and pelvic organs', 'ICD10_2010'), +('T91.8', 'Sequelae of other specified injuries of neck and trunk', 'ICD10_2010'), +('T91.9', 'Sequelae of unspecified injury of neck and trunk', 'ICD10_2010'), +('T92', 'Sequelae of injuries of upper limb', 'ICD10_2010'), +('T92.0', 'Sequelae of open wound of upper limb', 'ICD10_2010'), +('T92.1', 'Sequelae of fracture of arm', 'ICD10_2010'), +('T92.2', 'Sequelae of fracture at wrist and hand level', 'ICD10_2010'), +('T92.3', 'Sequelae of dislocation, sprain and strain of upper limb', 'ICD10_2010'), +('T92.4', 'Sequelae of injury of nerve of upper limb', 'ICD10_2010'), +('T92.5', 'Sequelae of injury of muscle and tendon of upper limb', 'ICD10_2010'), +('T92.6', 'Sequelae of crushing injury and traumatic amputation of upper limb', 'ICD10_2010'), +('T92.8', 'Sequelae of other specified injuries of upper limb', 'ICD10_2010'), +('T92.9', 'Sequelae of unspecified injury of upper limb', 'ICD10_2010'), +('T93', 'Sequelae of injuries of lower limb', 'ICD10_2010'), +('T93.0', 'Sequelae of open wound of lower limb', 'ICD10_2010'), +('T93.1', 'Sequelae of fracture of femur', 'ICD10_2010'), +('T93.2', 'Sequelae of other fractures of lower limb', 'ICD10_2010'), +('T93.3', 'Sequelae of dislocation, sprain and strain of lower limb', 'ICD10_2010'), +('T93.4', 'Sequelae of injury of nerve of lower limb', 'ICD10_2010'), +('T93.5', 'Sequelae of injury of muscle and tendon of lower limb', 'ICD10_2010'), +('T93.6', 'Sequelae of crush injury and traumatic amputation of lower limb', 'ICD10_2010'), +('T93.8', 'Sequelae of other specified injuries of lower limb', 'ICD10_2010'), +('T93.9', 'Sequelae of unspecified injury of lower limb', 'ICD10_2010'), +('T94', 'Sequelae of injuries involving multiple and unspecified body regions', 'ICD10_2010'), +('T94.0', 'Sequelae of injuries involving multiple body regions', 'ICD10_2010'), +('T94.1', 'Sequelae of injuries, not specified by body region', 'ICD10_2010'), +('T95', 'Sequelae of burns, corrosions and frostbite', 'ICD10_2010'), +('T95.0', 'Sequelae of burn, corrosion and frostbite of head and neck', 'ICD10_2010'), +('T95.1', 'Sequelae of burn, corrosion and frostbite of trunk', 'ICD10_2010'), +('T95.2', 'Sequelae of burn, corrosion and frostbite of upper limb', 'ICD10_2010'), +('T95.3', 'Sequelae of burn, corrosion and frostbite of lower limb', 'ICD10_2010'), +('T95.4', 'Seq burn and corros class only accord extent body surf involved', 'ICD10_2010'), +('T95.8', 'Sequelae of other specified burn, corrosion and frostbite', 'ICD10_2010'), +('T95.9', 'Sequelae of unspecified burn, corrosion and frostbite', 'ICD10_2010'), +('T96', 'Sequelae of poisoning by drugs medicaments and biological substances', 'ICD10_2010'), +('T97', 'Sequelae of toxic effects substances chiefly nonmedicinal as to source', 'ICD10_2010'), +('T98', 'Sequelae of other and unspecified effects of external causes', 'ICD10_2010'), +('T98.0', 'Sequelae of effects foreign body entering through natural orifice', 'ICD10_2010'), +('T98.1', 'Sequelae of other and unspecified effects of external causes', 'ICD10_2010'), +('T98.2', 'Sequelae of certain early complications of trauma', 'ICD10_2010'), +('T98.3', 'Sequelae of complications of surgical and medical care nec', 'ICD10_2010'), +('U04', 'Severe acute respiratory syndrome [SARS]', 'ICD10_2010'), +('U04.9', 'Severe acute respiratory syndrome [SARS], unspecified', 'ICD10_2010'), +('U07.1', 'COVID-19, virus identified', 'ICD10_2010'), +('U07.2', 'COVID-19, virus not identified', 'ICD10_2010'), +('U11.9', 'Need for immunization against COVID-19, unspecified', 'ICD10_2010'), +('U12.9', 'COVID-19 vacciness causing adverse effects in therapeutic use', 'ICD10_2010'), +('U80', 'Agent resistant to penicillin and related antibiotics', 'ICD10_2010'), +('U80.0', 'Penicillin resistant agent', 'ICD10_2010'), +('U80.1', 'Methicillin resistant agent', 'ICD10_2010'), +('U80.8', 'Agent resistant to other penicillin-related antibiotic', 'ICD10_2010'), +('U81', 'Agent resistant to vancomycin and related antibiotics', 'ICD10_2010'), +('U81.0', 'Vancomycin resistant agent', 'ICD10_2010'), +('U81.8', 'Agent resistant to other penicillin-related antibiotic', 'ICD10_2010'), +('U88', 'Agent resistant to multiple antibiotics', 'ICD10_2010'), +('U89', 'Agent resistant to other and unspecified antibiotics', 'ICD10_2010'), +('U89.8', 'Agent resistant to other single specified antibiotic', 'ICD10_2010'), +('U89.9', 'Agent resistant to unspecified antibiotic', 'ICD10_2010'), +('V01', 'Pedestrian injured in collision with pedal cycle', 'ICD10_2010'), +('V01.0', 'Pedestrian injured in collision with pedal cycle: Nontraffic accident', 'ICD10_2010'), +('V01.1', 'Pedestrian injured in collision with pedal cycle: Traffic accident', 'ICD10_2010'), +('V01.9', 'Pedestrian injured in collision with pedal cycle: Unspecified whether traffic or nontraffic accident', 'ICD10_2010'), +('V02', 'Pedestrian injured in collision with two- or three-wheeled motor vehicle', 'ICD10_2010'), +('V02.0', 'Pedestrian injured in collision with two- or three-wheeled motor vehicle: Nontraffic accident', 'ICD10_2010'), +('V02.1', 'Pedestrian injured in collision with two- or three-wheeled motor vehicle: Traffic accident', 'ICD10_2010'), +('V02.9', 'Pedestrian injured in collision with two- or three-wheeled motor vehicle: Unspecified whether traffic or nontraffic accident', 'ICD10_2010'), +('V03', 'Pedestrian injured in collision with car, pick-up truck or van', 'ICD10_2010'), +('V03.0', 'Pedestrian injured in collision with car, pick-up truck or van: Nontraffic accident', 'ICD10_2010'), +('V03.1', 'Pedestrian injured in collision with car, pick-up truck or van: Traffic accident', 'ICD10_2010'), +('V03.9', 'Pedestrian injured in collision with car, pick-up truck or van: Unspecified whether traffic or nontraffic accident', 'ICD10_2010'), +('V04', 'Pedestrian injured in collision with heavy transport vehicle or bus', 'ICD10_2010'), +('V04.0', 'Pedestrian injured in collision with heavy transport vehicle or bus: Nontraffic accident', 'ICD10_2010'), +('V04.1', 'Pedestrian injured in collision with heavy transport vehicle or bus: Traffic accident', 'ICD10_2010'), +('V04.9', 'Pedestrian injured in collision with heavy transport vehicle or bus: Unspecified whether traffic or nontraffic accident', 'ICD10_2010'), +('V05', 'Pedestrian injured in collision with railway train or railway vehicle', 'ICD10_2010'), +('V05.0', 'Pedestrian injured in collision with railway train or railway vehicle: Nontraffic accident', 'ICD10_2010'), +('V05.1', 'Pedestrian injured in collision with railway train or railway vehicle: Traffic accident', 'ICD10_2010'), +('V05.9', 'Pedestrian injured in collision with railway train or railway vehicle: Unspecified whether traffic or nontraffic accident', 'ICD10_2010'), +('V06', 'Pedestrian injured in collision with other nonmotor vehicle', 'ICD10_2010'), +('V06.0', 'Pedestrian injured in collision with other nonmotor vehicle: Nontraffic accident', 'ICD10_2010'), +('V06.1', 'Pedestrian injured in collision with other nonmotor vehicle: Traffic accident', 'ICD10_2010'), +('V06.9', 'Pedestrian injured in collision with other nonmotor vehicle: Unspecified whether traffic or nontraffic accident', 'ICD10_2010'), +('V09', 'Pedestrian injured in other and unspecified transport accidents', 'ICD10_2010'), +('V09.0', 'Pedestrian injured in nontraffic accident involving other and unspecified motor vehicles', 'ICD10_2010'), +('V09.1', 'Pedestrian injured in unspecified nontraffic accident', 'ICD10_2010'), +('V09.2', 'Pedestrian injured in traffic accident involving other and unspecified motor vehicles', 'ICD10_2010'), +('V09.3', 'Pedestrian injured in unspecified traffic accident', 'ICD10_2010'), +('V09.9', 'Pedestrian injured in unspecified transport accident', 'ICD10_2010'), +('V10', 'Pedal cyclist injured in collision with pedestrian or animal', 'ICD10_2010'), +('V10.0', 'Pedal cyclist injured in collision with pedestrian or animal: Driver injured in nontraffic accident', 'ICD10_2010'), +('V10.1', 'Pedal cyclist injured in collision with pedestrian or animal: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V10.2', 'Pedal cyclist injured in collision with pedestrian or animal: Unspecified pedal cyclist injured in nontraffic accident', 'ICD10_2010'), +('V10.3', 'Pedal cyclist injured in collision with pedestrian or animal: Person injured while boarding or alighting', 'ICD10_2010'), +('V10.4', 'Pedal cyclist injured in collision with pedestrian or animal: Driver injured in traffic accident', 'ICD10_2010'), +('V10.5', 'Pedal cyclist injured in collision with pedestrian or animal: Passenger injured in traffic accident', 'ICD10_2010'), +('V10.9', 'Pedal cyclist injured in collision with pedestrian or animal: Unspecified pedal cyclist injured in traffic accident', 'ICD10_2010'), +('V11', 'Pedal cyclist injured in collision with other pedal cycle', 'ICD10_2010'), +('V11.0', 'Pedal cyclist injured in collision with other pedal cycle: Driver injured in nontraffic accident', 'ICD10_2010'), +('V11.1', 'Pedal cyclist injured in collision with other pedal cycle: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V11.2', 'Pedal cyclist injured in collision with other pedal cycle: Unspecified pedal cyclist injured in nontraffic accident', 'ICD10_2010'), +('V11.3', 'Pedal cyclist injured in collision with other pedal cycle: Person injured while boarding or alighting', 'ICD10_2010'), +('V11.4', 'Pedal cyclist injured in collision with other pedal cycle: Driver injured in traffic accident', 'ICD10_2010'), +('V11.5', 'Pedal cyclist injured in collision with other pedal cycle: Passenger injured in traffic accident', 'ICD10_2010'), +('V11.9', 'Pedal cyclist injured in collision with other pedal cycle: Unspecified pedal cyclist injured in traffic accident', 'ICD10_2010'), +('V12', 'Pedal cyclist injured in collision with two- or three-wheeled motor vehicle', 'ICD10_2010'), +('V12.0', 'Pedal cyclist injured in collision with two- or three-wheeled motor vehicle: Driver injured in nontraffic accident', 'ICD10_2010'), +('V12.1', 'Pedal cyclist injured in collision with two- or three-wheeled motor vehicle: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V12.2', 'Pedal cyclist injured in collision with two- or three-wheeled motor vehicle: Unspecified pedal cyclist injured in nontraffic accident', 'ICD10_2010'), +('V12.3', 'Pedal cyclist injured in collision with two- or three-wheeled motor vehicle: Person injured while boarding or alighting', 'ICD10_2010'), +('V12.4', 'Pedal cyclist injured in collision with two- or three-wheeled motor vehicle: Driver injured in traffic accident', 'ICD10_2010'), +('V12.5', 'Pedal cyclist injured in collision with two- or three-wheeled motor vehicle: Passenger injured in traffic accident', 'ICD10_2010'), +('V12.9', 'Pedal cyclist injured in collision with two- or three-wheeled motor vehicle: Unspecified pedal cyclist injured in traffic accident', 'ICD10_2010'), +('V13', 'Pedal cyclist injured in collision with car, pick-up truck or van', 'ICD10_2010'), +('V13.0', 'Pedal cyclist injured in collision with car, pick-up truck or van: Driver injured in nontraffic accident', 'ICD10_2010'), +('V13.1', 'Pedal cyclist injured in collision with car, pick-up truck or van: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V13.2', 'Pedal cyclist injured in collision with car, pick-up truck or van: Unspecified pedal cyclist injured in nontraffic accident', 'ICD10_2010'), +('V13.3', 'Pedal cyclist injured in collision with car, pick-up truck or van: Person injured while boarding or alighting', 'ICD10_2010'), +('V13.4', 'Pedal cyclist injured in collision with car, pick-up truck or van: Driver injured in traffic accident', 'ICD10_2010'), +('V13.5', 'Pedal cyclist injured in collision with car, pick-up truck or van: Passenger injured in traffic accident', 'ICD10_2010'), +('V13.9', 'Pedal cyclist injured in collision with car, pick-up truck or van: Unspecified pedal cyclist injured in traffic accident', 'ICD10_2010'), +('V14', 'Pedal cyclist injured in collision with heavy transport vehicle or bus', 'ICD10_2010'), +('V14.0', 'Pedal cyclist injured in collision with heavy transport vehicle or bus: Driver injured in nontraffic accident', 'ICD10_2010'), +('V14.1', 'Pedal cyclist injured in collision with heavy transport vehicle or bus: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V14.2', 'Pedal cyclist injured in collision with heavy transport vehicle or bus: Unspecified pedal cyclist injured in nontraffic accident', 'ICD10_2010'), +('V14.3', 'Pedal cyclist injured in collision with heavy transport vehicle or bus: Person injured while boarding or alighting', 'ICD10_2010'), +('V14.4', 'Pedal cyclist injured in collision with heavy transport vehicle or bus: Driver injured in traffic accident', 'ICD10_2010'), +('V14.5', 'Pedal cyclist injured in collision with heavy transport vehicle or bus: Passenger injured in traffic accident', 'ICD10_2010'), +('V14.9', 'Pedal cyclist injured in collision with heavy transport vehicle or bus: Unspecified pedal cyclist injured in traffic accident', 'ICD10_2010'), +('V15', 'Pedal cyclist injured in collision with railway train or railway vehicle', 'ICD10_2010'), +('V15.0', 'Pedal cyclist injured in collision with railway train or railway vehicle: Driver injured in nontraffic accident', 'ICD10_2010'), +('V15.1', 'Pedal cyclist injured in collision with railway train or railway vehicle: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V15.2', 'Pedal cyclist injured in collision with railway train or railway vehicle: Unspecified pedal cyclist injured in nontraffic accident', 'ICD10_2010'), +('V15.3', 'Pedal cyclist injured in collision with railway train or railway vehicle: Person injured while boarding or alighting', 'ICD10_2010'), +('V15.4', 'Pedal cyclist injured in collision with railway train or railway vehicle: Driver injured in traffic accident', 'ICD10_2010'), +('V15.5', 'Pedal cyclist injured in collision with railway train or railway vehicle: Passenger injured in traffic accident', 'ICD10_2010'), +('V15.9', 'Pedal cyclist injured in collision with railway train or railway vehicle: Unspecified pedal cyclist injured in traffic accident', 'ICD10_2010'), +('V16', 'Pedal cyclist injured in collision with other nonmotor vehicle', 'ICD10_2010'), +('V16.0', 'Pedal cyclist injured in collision with other nonmotor vehicle: Driver injured in nontraffic accident', 'ICD10_2010'), +('V16.1', 'Pedal cyclist injured in collision with other nonmotor vehicle: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V16.2', 'Pedal cyclist injured in collision with other nonmotor vehicle: Unspecified pedal cyclist injured in nontraffic accident', 'ICD10_2010'), +('V16.3', 'Pedal cyclist injured in collision with other nonmotor vehicle: Person injured while boarding or alighting', 'ICD10_2010'), +('V16.4', 'Pedal cyclist injured in collision with other nonmotor vehicle: Driver injured in traffic accident', 'ICD10_2010'), +('V16.5', 'Pedal cyclist injured in collision with other nonmotor vehicle: Passenger injured in traffic accident', 'ICD10_2010'), +('V16.9', 'Pedal cyclist injured in collision with other nonmotor vehicle: Unspecified pedal cyclist injured in traffic accident', 'ICD10_2010'), +('V17', 'Pedal cyclist injured in collision with fixed or stationary object', 'ICD10_2010'), +('V17.0', 'Pedal cyclist injured in collision with fixed or stationary object: Driver injured in nontraffic accident', 'ICD10_2010'), +('V17.1', 'Pedal cyclist injured in collision with fixed or stationary object: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V17.2', 'Pedal cyclist injured in collision with fixed or stationary object: Unspecified pedal cyclist injured in nontraffic accident', 'ICD10_2010'), +('V17.3', 'Pedal cyclist injured in collision with fixed or stationary object: Person injured while boarding or alighting', 'ICD10_2010'), +('V17.4', 'Pedal cyclist injured in collision with fixed or stationary object: Driver injured in traffic accident', 'ICD10_2010'), +('V17.5', 'Pedal cyclist injured in collision with fixed or stationary object: Passenger injured in traffic accident', 'ICD10_2010'), +('V17.9', 'Pedal cyclist injured in collision with fixed or stationary object: Unspecified pedal cyclist injured in traffic accident', 'ICD10_2010'), +('V18', 'Pedal cyclist injured in noncollision transport accident', 'ICD10_2010'), +('V18.0', 'Pedal cyclist injured in noncollision transport accident: Driver injured in nontraffic accident', 'ICD10_2010'), +('V18.1', 'Pedal cyclist injured in noncollision transport accident: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V18.2', 'Pedal cyclist injured in noncollision transport accident: Unspecified pedal cyclist injured in nontraffic accident', 'ICD10_2010'), +('V18.3', 'Pedal cyclist injured in noncollision transport accident: Person injured while boarding or alighting', 'ICD10_2010'), +('V18.4', 'Pedal cyclist injured in noncollision transport accident: Driver injured in traffic accident', 'ICD10_2010'), +('V18.5', 'Pedal cyclist injured in noncollision transport accident: Passenger injured in traffic accident', 'ICD10_2010'), +('V18.9', 'Pedal cyclist injured in noncollision transport accident: Unspecified pedal cyclist injured in traffic accident', 'ICD10_2010'), +('V19', 'Pedal cyclist injured in other and unspecified transport accidents', 'ICD10_2010'), +('V19.0', 'Driver injured in collision with other and unspecified motor vehicles in nontraffic accident', 'ICD10_2010'), +('V19.1', 'Passenger injured in collision with other and unspecified motor vehicles in nontraffic accident', 'ICD10_2010'), +('V19.2', 'Unspecified pedal cyclist injured in collision with other and unspecified motor vehicles in nontraffic accident', 'ICD10_2010'), +('V19.3', 'Pedal cyclist [any] injured in unspecified nontraffic accident', 'ICD10_2010'), +('V19.4', 'Driver injured in collision with other and unspecified motor vehicles in traffic accident', 'ICD10_2010'), +('V19.5', 'Passenger injured in collision with other and unspecified motor vehicles in traffic accident', 'ICD10_2010'), +('V19.6', 'Unspecified pedal cyclist injured in collision with other and unspecified motor vehicles in traffic accident', 'ICD10_2010'), +('V19.8', 'Pedal cyclist [any] injured in other specified transport accidents', 'ICD10_2010'), +('V19.9', 'Pedal cyclist [any] injured in unspecified traffic accident', 'ICD10_2010'), +('V20', 'Motorcycle rider injured in collision with pedestrian or animal', 'ICD10_2010'), +('V20.0', 'Motorcycle rider injured in collision with pedestrian or animal: Driver injured in nontraffic accident', 'ICD10_2010'), +('V20.1', 'Motorcycle rider injured in collision with pedestrian or animal: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V20.2', 'Motorcycle rider injured in collision with pedestrian or animal: Unspecified motorcycle rider injured in nontraffic accident', 'ICD10_2010'), +('V20.3', 'Motorcycle rider injured in collision with pedestrian or animal: Person injured while boarding or alighting', 'ICD10_2010'), +('V20.4', 'Motorcycle rider injured in collision with pedestrian or animal: Driver injured in traffic accident', 'ICD10_2010'), +('V20.5', 'Motorcycle rider injured in collision with pedestrian or animal: Passenger injured in traffic accident', 'ICD10_2010'), +('V20.9', 'Motorcycle rider injured in collision with pedestrian or animal: Unspecified motorcycle rider injured in traffic accident', 'ICD10_2010'), +('V21', 'Motorcycle rider injured in collision with pedal cycle', 'ICD10_2010'), +('V21.0', 'Motorcycle rider injured in collision with pedal cycle: Driver injured in nontraffic accident', 'ICD10_2010'), +('V21.1', 'Motorcycle rider injured in collision with pedal cycle: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V21.2', 'Motorcycle rider injured in collision with pedal cycle: Unspecified motorcycle rider injured in nontraffic accident', 'ICD10_2010'), +('V21.3', 'Motorcycle rider injured in collision with pedal cycle: Person injured while boarding or alighting', 'ICD10_2010'), +('V21.4', 'Motorcycle rider injured in collision with pedal cycle: Driver injured in traffic accident', 'ICD10_2010'), +('V21.5', 'Motorcycle rider injured in collision with pedal cycle: Passenger injured in traffic accident', 'ICD10_2010'), +('V21.9', 'Motorcycle rider injured in collision with pedal cycle: Unspecified motorcycle rider injured in traffic accident', 'ICD10_2010'), +('V22', 'Motorcycle rider injured in collision with two- or three-wheeled motor vehicle', 'ICD10_2010'), +('V22.0', 'Motorcycle rider injured in collision with two- or three-wheeled motor vehicle: Driver injured in nontraffic accident', 'ICD10_2010'), +('V22.1', 'Motorcycle rider injured in collision with two- or three-wheeled motor vehicle: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V22.2', 'Motorcycle rider injured in collision with two- or three-wheeled motor vehicle: Unspecified motorcycle rider injured in nontraffic accident', 'ICD10_2010'), +('V22.3', 'Motorcycle rider injured in collision with two- or three-wheeled motor vehicle: Person injured while boarding or alighting', 'ICD10_2010'), +('V22.4', 'Motorcycle rider injured in collision with two- or three-wheeled motor vehicle: Driver injured in traffic accident', 'ICD10_2010'), +('V22.5', 'Motorcycle rider injured in collision with two- or three-wheeled motor vehicle: Passenger injured in traffic accident', 'ICD10_2010'), +('V22.9', 'Motorcycle rider injured in collision with two- or three-wheeled motor vehicle: Unspecified motorcycle rider injured in traffic accident', 'ICD10_2010'), +('V23', 'Motorcycle rider injured in collision with car, pick-up truck or van', 'ICD10_2010'), +('V23.0', 'Motorcycle rider injured in collision with car, pick-up truck or van: Driver injured in nontraffic accident', 'ICD10_2010'), +('V23.1', 'Motorcycle rider injured in collision with car, pick-up truck or van: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V23.2', 'Motorcycle rider injured in collision with car, pick-up truck or van: Unspecified motorcycle rider injured in nontraffic accident', 'ICD10_2010'), +('V23.3', 'Motorcycle rider injured in collision with car, pick-up truck or van: Person injured while boarding or alighting', 'ICD10_2010'), +('V23.4', 'Motorcycle rider injured in collision with car, pick-up truck or van: Driver injured in traffic accident', 'ICD10_2010'), +('V23.5', 'Motorcycle rider injured in collision with car, pick-up truck or van: Passenger injured in traffic accident', 'ICD10_2010'), +('V23.9', 'Motorcycle rider injured in collision with car, pick-up truck or van: Unspecified motorcycle rider injured in traffic accident', 'ICD10_2010'), +('V24', 'Motorcycle rider injured in collision with heavy transport vehicle or bus', 'ICD10_2010'), +('V24.0', 'Motorcycle rider injured in collision with heavy transport vehicle or bus: Driver injured in nontraffic accident', 'ICD10_2010'), +('V24.1', 'Motorcycle rider injured in collision with heavy transport vehicle or bus: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V24.2', 'Motorcycle rider injured in collision with heavy transport vehicle or bus: Unspecified motorcycle rider injured in nontraffic accident', 'ICD10_2010'), +('V24.3', 'Motorcycle rider injured in collision with heavy transport vehicle or bus: Person injured while boarding or alighting', 'ICD10_2010'), +('V24.4', 'Motorcycle rider injured in collision with heavy transport vehicle or bus: Driver injured in traffic accident', 'ICD10_2010'), +('V24.5', 'Motorcycle rider injured in collision with heavy transport vehicle or bus: Passenger injured in traffic accident', 'ICD10_2010'), +('V24.9', 'Motorcycle rider injured in collision with heavy transport vehicle or bus: Unspecified motorcycle rider injured in traffic accident', 'ICD10_2010'), +('V25', 'Motorcycle rider injured in collision with railway train or railway vehicle', 'ICD10_2010'), +('V25.0', 'Motorcycle rider injured in collision with railway train or railway vehicle: Driver injured in nontraffic accident', 'ICD10_2010'), +('V25.1', 'Motorcycle rider injured in collision with railway train or railway vehicle: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V25.2', 'Motorcycle rider injured in collision with railway train or railway vehicle: Unspecified motorcycle rider injured in nontraffic accident', 'ICD10_2010'), +('V25.3', 'Motorcycle rider injured in collision with railway train or railway vehicle: Person injured while boarding or alighting', 'ICD10_2010'), +('V25.4', 'Motorcycle rider injured in collision with railway train or railway vehicle: Driver injured in traffic accident', 'ICD10_2010'), +('V25.5', 'Motorcycle rider injured in collision with railway train or railway vehicle: Passenger injured in traffic accident', 'ICD10_2010'), +('V25.9', 'Motorcycle rider injured in collision with railway train or railway vehicle: Unspecified motorcycle rider injured in traffic accident', 'ICD10_2010'), +('V26', 'Motorcycle rider injured in collision with other nonmotor vehicle', 'ICD10_2010'), +('V26.0', 'Motorcycle rider injured in collision with other nonmotor vehicle: Driver injured in nontraffic accident', 'ICD10_2010'), +('V26.1', 'Motorcycle rider injured in collision with other nonmotor vehicle: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V26.2', 'Motorcycle rider injured in collision with other nonmotor vehicle: Unspecified motorcycle rider injured in nontraffic accident', 'ICD10_2010'), +('V26.3', 'Motorcycle rider injured in collision with other nonmotor vehicle: Person injured while boarding or alighting', 'ICD10_2010'), +('V26.4', 'Motorcycle rider injured in collision with other nonmotor vehicle: Driver injured in traffic accident', 'ICD10_2010'), +('V26.5', 'Motorcycle rider injured in collision with other nonmotor vehicle: Passenger injured in traffic accident', 'ICD10_2010'), +('V26.9', 'Motorcycle rider injured in collision with other nonmotor vehicle: Unspecified motorcycle rider injured in traffic accident', 'ICD10_2010'), +('V27', 'Motorcycle rider injured in collision with fixed or stationary object', 'ICD10_2010'), +('V27.0', 'Motorcycle rider injured in collision with fixed or stationary object: Driver injured in nontraffic accident', 'ICD10_2010'), +('V27.1', 'Motorcycle rider injured in collision with fixed or stationary object: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V27.2', 'Motorcycle rider injured in collision with fixed or stationary object: Unspecified motorcycle rider injured in nontraffic accident', 'ICD10_2010'), +('V27.3', 'Motorcycle rider injured in collision with fixed or stationary object: Person injured while boarding or alighting', 'ICD10_2010'), +('V27.4', 'Motorcycle rider injured in collision with fixed or stationary object: Driver injured in traffic accident', 'ICD10_2010'), +('V27.5', 'Motorcycle rider injured in collision with fixed or stationary object: Passenger injured in traffic accident', 'ICD10_2010'), +('V27.9', 'Motorcycle rider injured in collision with fixed or stationary object: Unspecified motorcycle rider injured in traffic accident', 'ICD10_2010'), +('V28', 'Motorcycle rider injured in noncollision transport accident', 'ICD10_2010'), +('V28.0', 'Motorcycle rider injured in noncollision transport accident: Driver injured in nontraffic accident', 'ICD10_2010'), +('V28.1', 'Motorcycle rider injured in noncollision transport accident: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V28.2', 'Motorcycle rider injured in noncollision transport accident: Unspecified motorcycle rider injured in nontraffic accident', 'ICD10_2010'), +('V28.3', 'Motorcycle rider injured in noncollision transport accident: Person injured while boarding or alighting', 'ICD10_2010'), +('V28.4', 'Motorcycle rider injured in noncollision transport accident: Driver injured in traffic accident', 'ICD10_2010'), +('V28.5', 'Motorcycle rider injured in noncollision transport accident: Passenger injured in traffic accident', 'ICD10_2010'), +('V28.9', 'Motorcycle rider injured in noncollision transport accident: Unspecified motorcycle rider injured in traffic accident', 'ICD10_2010'), +('V29', 'Motorcycle rider injured in other and unspecified transport accidents', 'ICD10_2010'), +('V29.0', 'Driver injured in collision with other and unspecified motor vehicles in nontraffic accident', 'ICD10_2010'), +('V29.1', 'Passenger injured in collision with other and unspecified motor vehicles in nontraffic accident', 'ICD10_2010'), +('V29.2', 'Unspecified motorcycle rider injured in collision with other and unspecified motor vehicles in nontraffic accident', 'ICD10_2010'), +('V29.3', 'Motorcycle rider [any] injured in unspecified nontraffic accident', 'ICD10_2010'), +('V29.4', 'Driver injured in collision with other and unspecified motor vehicles in traffic accident', 'ICD10_2010'), +('V29.5', 'Passenger injured in collision with other and unspecified motor vehicles in traffic accident', 'ICD10_2010'), +('V29.6', 'Unspecified motorcycle rider injured in collision with other and unspecified motor vehicles in traffic accident', 'ICD10_2010'), +('V29.8', 'Motorcycle rider [any] injured in other specified transport accidents', 'ICD10_2010'), +('V29.9', 'Motorcycle rider [any] injured in unspecified traffic accident', 'ICD10_2010'), +('V30', 'Occupant of three-wheeled motor vehicle injured in collision with pedestrian or animal', 'ICD10_2010'), +('V30.0', 'Occupant of three-wheeled motor vehicle injured in collision with pedestrian or animal: Driver injured in nontraffic accident', 'ICD10_2010'), +('V30.1', 'Occupant of three-wheeled motor vehicle injured in collision with pedestrian or animal: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V30.2', 'Occupant of three-wheeled motor vehicle injured in collision with pedestrian or animal: Person on outside of vehicle injured in nontraffic accident', 'ICD10_2010'), +('V30.3', 'Occupant of three-wheeled motor vehicle injured in collision with pedestrian or animal: Unspecified occupant of three-wheeled motor vehicle injured in', 'ICD10_2010'), +('V30.4', 'Occupant of three-wheeled motor vehicle injured in collision with pedestrian or animal: Person injured while boarding or alighting', 'ICD10_2010'), +('V30.5', 'Occupant of three-wheeled motor vehicle injured in collision with pedestrian or animal: Driver injured in traffic accident', 'ICD10_2010'), +('V30.6', 'Occupant of three-wheeled motor vehicle injured in collision with pedestrian or animal: Passenger injured in traffic accident', 'ICD10_2010'), +('V30.7', 'Occupant of three-wheeled motor vehicle injured in collision with pedestrian or animal: Person on outside of vehicle injured in traffic accident', 'ICD10_2010'), +('V30.9', 'Occupant of three-wheeled motor vehicle injured in collision with pedestrian or animal: Unspecified occupant of three-wheeled motor vehicle injured in', 'ICD10_2010'), +('V31', 'Occupant of three-wheeled motor vehicle injured in collision with pedal cycle', 'ICD10_2010'), +('V31.0', 'Occupant of three-wheeled motor vehicle injured in collision with pedal cycle: Driver injured in nontraffic accident', 'ICD10_2010'), +('V31.1', 'Occupant of three-wheeled motor vehicle injured in collision with pedal cycle: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V31.2', 'Occupant of three-wheeled motor vehicle injured in collision with pedal cycle: Person on outside of vehicle injured in nontraffic accident', 'ICD10_2010'), +('V31.3', 'Occupant of three-wheeled motor vehicle injured in collision with pedal cycle: Unspecified occupant of three-wheeled motor vehicle injured in nontraff', 'ICD10_2010'), +('V31.4', 'Occupant of three-wheeled motor vehicle injured in collision with pedal cycle: Person injured while boarding or alighting', 'ICD10_2010'), +('V31.5', 'Occupant of three-wheeled motor vehicle injured in collision with pedal cycle: Driver injured in traffic accident', 'ICD10_2010'); +INSERT INTO `icd10` (`ID_ICD10`, `Diagnosa`, `Versi_ICD10`) VALUES +('V31.6', 'Occupant of three-wheeled motor vehicle injured in collision with pedal cycle: Passenger injured in traffic accident', 'ICD10_2010'), +('V31.7', 'Occupant of three-wheeled motor vehicle injured in collision with pedal cycle: Person on outside of vehicle injured in traffic accident', 'ICD10_2010'), +('V31.9', 'Occupant of three-wheeled motor vehicle injured in collision with pedal cycle: Unspecified occupant of three-wheeled motor vehicle injured in traffic ', 'ICD10_2010'), +('V32', 'Occupant of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle', 'ICD10_2010'), +('V32.0', 'Occupant of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle: Driver injured in nontraffic accident', 'ICD10_2010'), +('V32.1', 'Occupant of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle: Passenger injured in nontraffic accident', 'ICD10_2010'), +('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 nontraf', 'ICD10_2010'), +('V32.3', 'Occupant of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle: Unspecified occupant of three-wheeled motor veh', 'ICD10_2010'), +('V32.4', 'Occupant of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle: Person injured while boarding or alighting', 'ICD10_2010'), +('V32.5', 'Occupant of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle: Driver injured in traffic accident', 'ICD10_2010'), +('V32.6', 'Occupant of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle: Passenger injured in traffic accident', 'ICD10_2010'), +('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', 'ICD10_2010'), +('V32.9', 'Occupant of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle: Unspecified occupant of three-wheeled motor veh', 'ICD10_2010'), +('V33', 'Occupant of three-wheeled motor vehicle injured in collision with car, pick-up truck or van', 'ICD10_2010'), +('V33.0', 'Occupant of three-wheeled motor vehicle injured in collision with car, pick-up truck or van: Driver injured in nontraffic accident', 'ICD10_2010'), +('V33.1', 'Occupant of three-wheeled motor vehicle injured in collision with car, pick-up truck or van: Passenger injured in nontraffic accident', 'ICD10_2010'), +('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 accide', 'ICD10_2010'), +('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 injur', 'ICD10_2010'), +('V33.4', 'Occupant of three-wheeled motor vehicle injured in collision with car, pick-up truck or van: Person injured while boarding or alighting', 'ICD10_2010'), +('V33.5', 'Occupant of three-wheeled motor vehicle injured in collision with car, pick-up truck or van: Driver injured in traffic accident', 'ICD10_2010'), +('V33.6', 'Occupant of three-wheeled motor vehicle injured in collision with car, pick-up truck or van: Passenger injured in traffic accident', 'ICD10_2010'), +('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', 'ICD10_2010'), +('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 injur', 'ICD10_2010'), +('V34', 'Occupant of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus', 'ICD10_2010'), +('V34.0', 'Occupant of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus: Driver injured in nontraffic accident', 'ICD10_2010'), +('V34.1', 'Occupant of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus: Passenger injured in nontraffic accident', 'ICD10_2010'), +('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 a', 'ICD10_2010'), +('V34.3', 'Occupant of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus: Unspecified occupant of three-wheeled motor vehicle ', 'ICD10_2010'), +('V34.4', 'Occupant of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus: Person injured while boarding or alighting', 'ICD10_2010'), +('V34.5', 'Occupant of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus: Driver injured in traffic accident', 'ICD10_2010'), +('V34.6', 'Occupant of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus: Passenger injured in traffic accident', 'ICD10_2010'), +('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 acci', 'ICD10_2010'), +('V34.9', 'Occupant of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus: Unspecified occupant of three-wheeled motor vehicle ', 'ICD10_2010'), +('V35', 'Occupant of three-wheeled motor vehicle injured in collision with railway train or railway vehicle', 'ICD10_2010'), +('V35.0', 'Occupant of three-wheeled motor vehicle injured in collision with railway train or railway vehicle: Driver injured in nontraffic accident', 'ICD10_2010'), +('V35.1', 'Occupant of three-wheeled motor vehicle injured in collision with railway train or railway vehicle: Passenger injured in nontraffic accident', 'ICD10_2010'), +('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', 'ICD10_2010'), +('V35.3', 'Occupant of three-wheeled motor vehicle injured in collision with railway train or railway vehicle: Unspecified occupant of three-wheeled motor vehicl', 'ICD10_2010'), +('V35.4', 'Occupant of three-wheeled motor vehicle injured in collision with railway train or railway vehicle: Person injured while boarding or alighting', 'ICD10_2010'), +('V35.5', 'Occupant of three-wheeled motor vehicle injured in collision with railway train or railway vehicle: Driver injured in traffic accident', 'ICD10_2010'), +('V35.6', 'Occupant of three-wheeled motor vehicle injured in collision with railway train or railway vehicle: Passenger injured in traffic accident', 'ICD10_2010'), +('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 ac', 'ICD10_2010'), +('V35.9', 'Occupant of three-wheeled motor vehicle injured in collision with railway train or railway vehicle: Unspecified occupant of three-wheeled motor vehicl', 'ICD10_2010'), +('V36', 'Occupant of three-wheeled motor vehicle injured in collision with other nonmotor vehicle', 'ICD10_2010'), +('V36.0', 'Occupant of three-wheeled motor vehicle injured in collision with other nonmotor vehicle: Driver injured in nontraffic accident', 'ICD10_2010'), +('V36.1', 'Occupant of three-wheeled motor vehicle injured in collision with other nonmotor vehicle: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V36.2', 'Occupant of three-wheeled motor vehicle injured in collision with other nonmotor vehicle: Person on outside of vehicle injured in nontraffic accident', 'ICD10_2010'), +('V36.3', 'Occupant of three-wheeled motor vehicle injured in collision with other nonmotor vehicle: Unspecified occupant of three-wheeled motor vehicle injured ', 'ICD10_2010'), +('V36.4', 'Occupant of three-wheeled motor vehicle injured in collision with other nonmotor vehicle: Person injured while boarding or alighting', 'ICD10_2010'), +('V36.5', 'Occupant of three-wheeled motor vehicle injured in collision with other nonmotor vehicle: Driver injured in traffic accident', 'ICD10_2010'), +('V36.6', 'Occupant of three-wheeled motor vehicle injured in collision with other nonmotor vehicle: Passenger injured in traffic accident', 'ICD10_2010'), +('V36.7', 'Occupant of three-wheeled motor vehicle injured in collision with other nonmotor vehicle: Person on outside of vehicle injured in traffic accident', 'ICD10_2010'), +('V36.9', 'Occupant of three-wheeled motor vehicle injured in collision with other nonmotor vehicle: Unspecified occupant of three-wheeled motor vehicle injured ', 'ICD10_2010'), +('V37', 'Occupant of three-wheeled motor vehicle injured in collision with fixed or stationary object', 'ICD10_2010'), +('V37.0', 'Occupant of three-wheeled motor vehicle injured in collision with fixed or stationary object: Driver injured in nontraffic accident', 'ICD10_2010'), +('V37.1', 'Occupant of three-wheeled motor vehicle injured in collision with fixed or stationary object: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V37.2', 'Occupant of three-wheeled motor vehicle injured in collision with fixed or stationary object: Person on outside of vehicle injured in nontraffic accid', 'ICD10_2010'), +('V37.3', 'Occupant of three-wheeled motor vehicle injured in collision with fixed or stationary object: Unspecified occupant of three-wheeled motor vehicle inju', 'ICD10_2010'), +('V37.4', 'Occupant of three-wheeled motor vehicle injured in collision with fixed or stationary object: Person injured while boarding or alighting', 'ICD10_2010'), +('V37.5', 'Occupant of three-wheeled motor vehicle injured in collision with fixed or stationary object: Driver injured in traffic accident', 'ICD10_2010'), +('V37.6', 'Occupant of three-wheeled motor vehicle injured in collision with fixed or stationary object: Passenger injured in traffic accident', 'ICD10_2010'), +('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', 'ICD10_2010'), +('V37.9', 'Occupant of three-wheeled motor vehicle injured in collision with fixed or stationary object: Unspecified occupant of three-wheeled motor vehicle inju', 'ICD10_2010'), +('V38', 'Occupant of three-wheeled motor vehicle injured in noncollision transport accident', 'ICD10_2010'), +('V38.0', 'Occupant of three-wheeled motor vehicle injured in noncollision transport accident: Driver injured in nontraffic accident', 'ICD10_2010'), +('V38.1', 'Occupant of three-wheeled motor vehicle injured in noncollision transport accident: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V38.2', 'Occupant of three-wheeled motor vehicle injured in noncollision transport accident: Person on outside of vehicle injured in nontraffic accident', 'ICD10_2010'), +('V38.3', 'Occupant of three-wheeled motor vehicle injured in noncollision transport accident: Unspecified occupant of three-wheeled motor vehicle injured in non', 'ICD10_2010'), +('V38.4', 'Occupant of three-wheeled motor vehicle injured in noncollision transport accident: Person injured while boarding or alighting', 'ICD10_2010'), +('V38.5', 'Occupant of three-wheeled motor vehicle injured in noncollision transport accident: Driver injured in traffic accident', 'ICD10_2010'), +('V38.6', 'Occupant of three-wheeled motor vehicle injured in noncollision transport accident: Passenger injured in traffic accident', 'ICD10_2010'), +('V38.7', 'Occupant of three-wheeled motor vehicle injured in noncollision transport accident: Person on outside of vehicle injured in traffic accident', 'ICD10_2010'), +('V38.9', 'Occupant of three-wheeled motor vehicle injured in noncollision transport accident: Unspecified occupant of three-wheeled motor vehicle injured in tra', 'ICD10_2010'), +('V39', 'Occupant of three-wheeled motor vehicle injured in other and unspecified transport accidents', 'ICD10_2010'), +('V39.0', 'Driver injured in collision with other and unspecified motor vehicles in nontraffic accident', 'ICD10_2010'), +('V39.1', 'Passenger injured in collision with other and unspecified motor vehicles in nontraffic accident', 'ICD10_2010'), +('V39.2', 'Unspecified occupant of three-wheeled motor vehicle injured in collision with other and unspecified motor vehicles in nontraffic accident', 'ICD10_2010'), +('V39.3', 'Occupant [any] of three-wheeled motor vehicle injured in unspecified nontraffic accident', 'ICD10_2010'), +('V39.4', 'Driver injured in collision with other and unspecified motor vehicles in traffic accident', 'ICD10_2010'), +('V39.5', 'Passenger injured in collision with other and unspecified motor vehicles in traffic accident', 'ICD10_2010'), +('V39.6', 'Unspecified occupant of three-wheeled motor vehicle injured in collision with other and unspecified motor vehicles in traffic accident', 'ICD10_2010'), +('V39.8', 'Occupant [any] of three-wheeled motor vehicle injured in other specified transport accidents', 'ICD10_2010'), +('V39.9', 'Occupant [any] of three-wheeled motor vehicle injured in unspecified traffic accident', 'ICD10_2010'), +('V40', 'Car occupant injured in collision with pedestrian or animal', 'ICD10_2010'), +('V40.0', 'Car occupant injured in collision with pedestrian or animal: Driver injured in nontraffic accident', 'ICD10_2010'), +('V40.1', 'Car occupant injured in collision with pedestrian or animal: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V40.2', 'Car occupant injured in collision with pedestrian or animal: Person on outside of vehicle injured in nontraffic accident', 'ICD10_2010'), +('V40.3', 'Car occupant injured in collision with pedestrian or animal: Unspecified car occupant injured in nontraffic accident', 'ICD10_2010'), +('V40.4', 'Car occupant injured in collision with pedestrian or animal: Person injured while boarding or alighting', 'ICD10_2010'), +('V40.5', 'Car occupant injured in collision with pedestrian or animal: Driver injured in traffic accident', 'ICD10_2010'), +('V40.6', 'Car occupant injured in collision with pedestrian or animal: Passenger injured in traffic accident', 'ICD10_2010'), +('V40.7', 'Car occupant injured in collision with pedestrian or animal: Person on outside of vehicle injured in traffic accident', 'ICD10_2010'), +('V40.9', 'Car occupant injured in collision with pedestrian or animal: Unspecified car occupant injured in traffic accident', 'ICD10_2010'), +('V41', 'Car occupant injured in collision with pedal cycle', 'ICD10_2010'), +('V41.0', 'Car occupant injured in collision with pedal cycle: Driver injured in nontraffic accident', 'ICD10_2010'), +('V41.1', 'Car occupant injured in collision with pedal cycle: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V41.2', 'Car occupant injured in collision with pedal cycle: Person on outside of vehicle injured in nontraffic accident', 'ICD10_2010'), +('V41.3', 'Car occupant injured in collision with pedal cycle: Unspecified car occupant injured in nontraffic accident', 'ICD10_2010'), +('V41.4', 'Car occupant injured in collision with pedal cycle: Person injured while boarding or alighting', 'ICD10_2010'), +('V41.5', 'Car occupant injured in collision with pedal cycle: Driver injured in traffic accident', 'ICD10_2010'), +('V41.6', 'Car occupant injured in collision with pedal cycle: Passenger injured in traffic accident', 'ICD10_2010'), +('V41.7', 'Car occupant injured in collision with pedal cycle: Person on outside of vehicle injured in traffic accident', 'ICD10_2010'), +('V41.9', 'Car occupant injured in collision with pedal cycle: Unspecified car occupant injured in traffic accident', 'ICD10_2010'), +('V42', 'Car occupant injured in collision with two- or three-wheeled motor vehicle', 'ICD10_2010'), +('V42.0', 'Car occupant injured in collision with two- or three-wheeled motor vehicle: Driver injured in nontraffic accident', 'ICD10_2010'), +('V42.1', 'Car occupant injured in collision with two- or three-wheeled motor vehicle: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V42.2', 'Car occupant injured in collision with two- or three-wheeled motor vehicle: Person on outside of vehicle injured in nontraffic accident', 'ICD10_2010'), +('V42.3', 'Car occupant injured in collision with two- or three-wheeled motor vehicle: Unspecified car occupant injured in nontraffic accident', 'ICD10_2010'), +('V42.4', 'Car occupant injured in collision with two- or three-wheeled motor vehicle: Person injured while boarding or alighting', 'ICD10_2010'), +('V42.5', 'Car occupant injured in collision with two- or three-wheeled motor vehicle: Driver injured in traffic accident', 'ICD10_2010'), +('V42.6', 'Car occupant injured in collision with two- or three-wheeled motor vehicle: Passenger injured in traffic accident', 'ICD10_2010'), +('V42.7', 'Car occupant injured in collision with two- or three-wheeled motor vehicle: Person on outside of vehicle injured in traffic accident', 'ICD10_2010'), +('V42.9', 'Car occupant injured in collision with two- or three-wheeled motor vehicle: Unspecified car occupant injured in traffic accident', 'ICD10_2010'), +('V43', 'Car occupant injured in collision with car, pick-up truck or van', 'ICD10_2010'), +('V43.0', 'Car occupant injured in collision with car, pick-up truck or van: Driver injured in nontraffic accident', 'ICD10_2010'), +('V43.1', 'Car occupant injured in collision with car, pick-up truck or van: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V43.2', 'Car occupant injured in collision with car, pick-up truck or van: Person on outside of vehicle injured in nontraffic accident', 'ICD10_2010'), +('V43.3', 'Car occupant injured in collision with car, pick-up truck or van: Unspecified car occupant injured in nontraffic accident', 'ICD10_2010'), +('V43.4', 'Car occupant injured in collision with car, pick-up truck or van: Person injured while boarding or alighting', 'ICD10_2010'), +('V43.5', 'Car occupant injured in collision with car, pick-up truck or van: Driver injured in traffic accident', 'ICD10_2010'), +('V43.6', 'Car occupant injured in collision with car, pick-up truck or van: Passenger injured in traffic accident', 'ICD10_2010'), +('V43.7', 'Car occupant injured in collision with car, pick-up truck or van: Person on outside of vehicle injured in traffic accident', 'ICD10_2010'), +('V43.9', 'Car occupant injured in collision with car, pick-up truck or van: Unspecified car occupant injured in traffic accident', 'ICD10_2010'), +('V44', 'Car occupant injured in collision with heavy transport vehicle or bus', 'ICD10_2010'), +('V44.0', 'Car occupant injured in collision with heavy transport vehicle or bus: Driver injured in nontraffic accident', 'ICD10_2010'), +('V44.1', 'Car occupant injured in collision with heavy transport vehicle or bus: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V44.2', 'Car occupant injured in collision with heavy transport vehicle or bus: Person on outside of vehicle injured in nontraffic accident', 'ICD10_2010'), +('V44.3', 'Car occupant injured in collision with heavy transport vehicle or bus: Unspecified car occupant injured in nontraffic accident', 'ICD10_2010'), +('V44.4', 'Car occupant injured in collision with heavy transport vehicle or bus: Person injured while boarding or alighting', 'ICD10_2010'), +('V44.5', 'Car occupant injured in collision with heavy transport vehicle or bus: Driver injured in traffic accident', 'ICD10_2010'), +('V44.6', 'Car occupant injured in collision with heavy transport vehicle or bus: Passenger injured in traffic accident', 'ICD10_2010'), +('V44.7', 'Car occupant injured in collision with heavy transport vehicle or bus: Person on outside of vehicle injured in traffic accident', 'ICD10_2010'), +('V44.9', 'Car occupant injured in collision with heavy transport vehicle or bus: Unspecified car occupant injured in traffic accident', 'ICD10_2010'), +('V45', 'Car occupant injured in collision with railway train or railway vehicle', 'ICD10_2010'), +('V45.0', 'Car occupant injured in collision with railway train or railway vehicle: Driver injured in nontraffic accident', 'ICD10_2010'), +('V45.1', 'Car occupant injured in collision with railway train or railway vehicle: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V45.2', 'Car occupant injured in collision with railway train or railway vehicle: Person on outside of vehicle injured in nontraffic accident', 'ICD10_2010'), +('V45.3', 'Car occupant injured in collision with railway train or railway vehicle: Unspecified car occupant injured in nontraffic accident', 'ICD10_2010'), +('V45.4', 'Car occupant injured in collision with railway train or railway vehicle: Person injured while boarding or alighting', 'ICD10_2010'), +('V45.5', 'Car occupant injured in collision with railway train or railway vehicle: Driver injured in traffic accident', 'ICD10_2010'), +('V45.6', 'Car occupant injured in collision with railway train or railway vehicle: Passenger injured in traffic accident', 'ICD10_2010'), +('V45.7', 'Car occupant injured in collision with railway train or railway vehicle: Person on outside of vehicle injured in traffic accident', 'ICD10_2010'), +('V45.9', 'Car occupant injured in collision with railway train or railway vehicle: Unspecified car occupant injured in traffic accident', 'ICD10_2010'), +('V46', 'Car occupant injured in collision with other nonmotor vehicle', 'ICD10_2010'), +('V46.0', 'Car occupant injured in collision with other nonmotor vehicle: Driver injured in nontraffic accident', 'ICD10_2010'), +('V46.1', 'Car occupant injured in collision with other nonmotor vehicle: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V46.2', 'Car occupant injured in collision with other nonmotor vehicle: Person on outside of vehicle injured in nontraffic accident', 'ICD10_2010'), +('V46.3', 'Car occupant injured in collision with other nonmotor vehicle: Unspecified car occupant injured in nontraffic accident', 'ICD10_2010'), +('V46.4', 'Car occupant injured in collision with other nonmotor vehicle: Person injured while boarding or alighting', 'ICD10_2010'), +('V46.5', 'Car occupant injured in collision with other nonmotor vehicle: Driver injured in traffic accident', 'ICD10_2010'), +('V46.6', 'Car occupant injured in collision with other nonmotor vehicle: Passenger injured in traffic accident', 'ICD10_2010'), +('V46.7', 'Car occupant injured in collision with other nonmotor vehicle: Person on outside of vehicle injured in traffic accident', 'ICD10_2010'), +('V46.9', 'Car occupant injured in collision with other nonmotor vehicle: Unspecified car occupant injured in traffic accident', 'ICD10_2010'), +('V47', 'Car occupant injured in collision with fixed or stationary object', 'ICD10_2010'), +('V47.0', 'Car occupant injured in collision with fixed or stationary object: Driver injured in nontraffic accident', 'ICD10_2010'), +('V47.1', 'Car occupant injured in collision with fixed or stationary object: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V47.2', 'Car occupant injured in collision with fixed or stationary object: Person on outside of vehicle injured in nontraffic accident', 'ICD10_2010'), +('V47.3', 'Car occupant injured in collision with fixed or stationary object: Unspecified car occupant injured in nontraffic accident', 'ICD10_2010'), +('V47.4', 'Car occupant injured in collision with fixed or stationary object: Person injured while boarding or alighting', 'ICD10_2010'), +('V47.5', 'Car occupant injured in collision with fixed or stationary object: Driver injured in traffic accident', 'ICD10_2010'), +('V47.6', 'Car occupant injured in collision with fixed or stationary object: Passenger injured in traffic accident', 'ICD10_2010'), +('V47.7', 'Car occupant injured in collision with fixed or stationary object: Person on outside of vehicle injured in traffic accident', 'ICD10_2010'), +('V47.9', 'Car occupant injured in collision with fixed or stationary object: Unspecified car occupant injured in traffic accident', 'ICD10_2010'), +('V48', 'Car occupant injured in noncollision transport accident', 'ICD10_2010'), +('V48.0', 'Car occupant injured in noncollision transport accident: Driver injured in nontraffic accident', 'ICD10_2010'), +('V48.1', 'Car occupant injured in noncollision transport accident: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V48.2', 'Car occupant injured in noncollision transport accident: Person on outside of vehicle injured in nontraffic accident', 'ICD10_2010'), +('V48.3', 'Car occupant injured in noncollision transport accident: Unspecified car occupant injured in nontraffic accident', 'ICD10_2010'), +('V48.4', 'Car occupant injured in noncollision transport accident: Person injured while boarding or alighting', 'ICD10_2010'), +('V48.5', 'Car occupant injured in noncollision transport accident: Driver injured in traffic accident', 'ICD10_2010'), +('V48.6', 'Car occupant injured in noncollision transport accident: Passenger injured in traffic accident', 'ICD10_2010'), +('V48.7', 'Car occupant injured in noncollision transport accident: Person on outside of vehicle injured in traffic accident', 'ICD10_2010'), +('V48.9', 'Car occupant injured in noncollision transport accident: Unspecified car occupant injured in traffic accident', 'ICD10_2010'), +('V49', 'Car occupant injured in other and unspecified transport accidents', 'ICD10_2010'), +('V49.0', 'Driver injured in collision with other and unspecified motor vehicles in nontraffic accident', 'ICD10_2010'), +('V49.1', 'Passenger injured in collision with other and unspecified motor vehicles in nontraffic accident', 'ICD10_2010'), +('V49.2', 'Unspecified car occupant injured in collision with other and unspecified motor vehicles in nontraffic accident', 'ICD10_2010'), +('V49.3', 'Car occupant [any] injured in unspecified nontraffic accident', 'ICD10_2010'), +('V49.4', 'Driver injured in collision with other and unspecified motor vehicles in traffic accident', 'ICD10_2010'), +('V49.5', 'Passenger injured in collision with other and unspecified motor vehicles in traffic accident', 'ICD10_2010'), +('V49.6', 'Unspecified car occupant injured in collision with other and unspecified motor vehicles in traffic accident', 'ICD10_2010'), +('V49.8', 'Car occupant [any] injured in other specified transport accidents', 'ICD10_2010'), +('V49.9', 'Car occupant [any] injured in unspecified traffic accident', 'ICD10_2010'), +('V50', 'Occupant of pick-up truck or van injured in collision with pedestrian or animal', 'ICD10_2010'), +('V50.0', 'Occupant of pick-up truck or van injured in collision with pedestrian or animal: Driver injured in nontraffic accident', 'ICD10_2010'), +('V50.1', 'Occupant of pick-up truck or van injured in collision with pedestrian or animal: Passenger injured in nontraffic accident', 'ICD10_2010'), +('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', 'ICD10_2010'), +('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 ac', 'ICD10_2010'), +('V50.4', 'Occupant of pick-up truck or van injured in collision with pedestrian or animal: Person injured while boarding or alighting', 'ICD10_2010'), +('V50.5', 'Occupant of pick-up truck or van injured in collision with pedestrian or animal: Driver injured in traffic accident', 'ICD10_2010'), +('V50.6', 'Occupant of pick-up truck or van injured in collision with pedestrian or animal: Passenger injured in traffic accident', 'ICD10_2010'), +('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', 'ICD10_2010'), +('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 accid', 'ICD10_2010'), +('V51', 'Occupant of pick-up truck or van injured in collision with pedal cycle', 'ICD10_2010'), +('V51.0', 'Occupant of pick-up truck or van injured in collision with pedal cycle: Driver injured in nontraffic accident', 'ICD10_2010'), +('V51.1', 'Occupant of pick-up truck or van injured in collision with pedal cycle: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V51.2', 'Occupant of pick-up truck or van injured in collision with pedal cycle: Person on outside of vehicle injured in nontraffic accident', 'ICD10_2010'), +('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', 'ICD10_2010'), +('V51.4', 'Occupant of pick-up truck or van injured in collision with pedal cycle: Person injured while boarding or alighting', 'ICD10_2010'), +('V51.5', 'Occupant of pick-up truck or van injured in collision with pedal cycle: Driver injured in traffic accident', 'ICD10_2010'), +('V51.6', 'Occupant of pick-up truck or van injured in collision with pedal cycle: Passenger injured in traffic accident', 'ICD10_2010'), +('V51.7', 'Occupant of pick-up truck or van injured in collision with pedal cycle: Person on outside of vehicle injured in traffic accident', 'ICD10_2010'), +('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', 'ICD10_2010'), +('V52', 'Occupant of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle', 'ICD10_2010'), +('V52.0', 'Occupant of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle: Driver injured in nontraffic accident', 'ICD10_2010'), +('V52.1', 'Occupant of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle: Passenger injured in nontraffic accident', 'ICD10_2010'), +('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 acc', 'ICD10_2010'), +('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 i', 'ICD10_2010'), +('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', 'ICD10_2010'), +('V52.5', 'Occupant of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle: Driver injured in traffic accident', 'ICD10_2010'), +('V52.6', 'Occupant of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle: Passenger injured in traffic accident', 'ICD10_2010'), +('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 accide', 'ICD10_2010'), +('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 i', 'ICD10_2010'), +('V53', 'Occupant of pick-up truck or van injured in collision with car, pick-up truck or van', 'ICD10_2010'), +('V53.0', 'Occupant of pick-up truck or van injured in collision with car, pick-up truck or van: Driver injured in nontraffic accident', 'ICD10_2010'), +('V53.1', 'Occupant of pick-up truck or van injured in collision with car, pick-up truck or van: Passenger injured in nontraffic accident', 'ICD10_2010'), +('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', 'ICD10_2010'), +('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 nontraff', 'ICD10_2010'), +('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', 'ICD10_2010'), +('V53.5', 'Occupant of pick-up truck or van injured in collision with car, pick-up truck or van: Driver injured in traffic accident', 'ICD10_2010'), +('V53.6', 'Occupant of pick-up truck or van injured in collision with car, pick-up truck or van: Passenger injured in traffic accident', 'ICD10_2010'), +('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', 'ICD10_2010'), +('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 ', 'ICD10_2010'), +('V54', 'Occupant of pick-up truck or van injured in collision with heavy transport vehicle or bus', 'ICD10_2010'), +('V54.0', 'Occupant of pick-up truck or van injured in collision with heavy transport vehicle or bus: Driver injured in nontraffic accident', 'ICD10_2010'), +('V54.1', 'Occupant of pick-up truck or van injured in collision with heavy transport vehicle or bus: Passenger injured in nontraffic accident', 'ICD10_2010'), +('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', 'ICD10_2010'), +('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 non', 'ICD10_2010'), +('V54.4', 'Occupant of pick-up truck or van injured in collision with heavy transport vehicle or bus: Person injured while boarding or alighting', 'ICD10_2010'), +('V54.5', 'Occupant of pick-up truck or van injured in collision with heavy transport vehicle or bus: Driver injured in traffic accident', 'ICD10_2010'), +('V54.6', 'Occupant of pick-up truck or van injured in collision with heavy transport vehicle or bus: Passenger injured in traffic accident', 'ICD10_2010'), +('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', 'ICD10_2010'), +('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 tra', 'ICD10_2010'), +('V55', 'Occupant of pick-up truck or van injured in collision with railway train or railway vehicle', 'ICD10_2010'), +('V55.0', 'Occupant of pick-up truck or van injured in collision with railway train or railway vehicle: Driver injured in nontraffic accident', 'ICD10_2010'), +('V55.1', 'Occupant of pick-up truck or van injured in collision with railway train or railway vehicle: Passenger injured in nontraffic accident', 'ICD10_2010'), +('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 accide', 'ICD10_2010'), +('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 n', 'ICD10_2010'), +('V55.4', 'Occupant of pick-up truck or van injured in collision with railway train or railway vehicle: Person injured while boarding or alighting', 'ICD10_2010'), +('V55.5', 'Occupant of pick-up truck or van injured in collision with railway train or railway vehicle: Driver injured in traffic accident', 'ICD10_2010'), +('V55.6', 'Occupant of pick-up truck or van injured in collision with railway train or railway vehicle: Passenger injured in traffic accident', 'ICD10_2010'), +('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', 'ICD10_2010'), +('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 t', 'ICD10_2010'), +('V56', 'Occupant of pick-up truck or van injured in collision with other nonmotor vehicle', 'ICD10_2010'), +('V56.0', 'Occupant of pick-up truck or van injured in collision with other nonmotor vehicle: Driver injured in nontraffic accident', 'ICD10_2010'), +('V56.1', 'Occupant of pick-up truck or van injured in collision with other nonmotor vehicle: Passenger injured in nontraffic accident', 'ICD10_2010'), +('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', 'ICD10_2010'), +('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 ', 'ICD10_2010'), +('V56.4', 'Occupant of pick-up truck or van injured in collision with other nonmotor vehicle: Person injured while boarding or alighting', 'ICD10_2010'), +('V56.5', 'Occupant of pick-up truck or van injured in collision with other nonmotor vehicle: Driver injured in traffic accident', 'ICD10_2010'), +('V56.6', 'Occupant of pick-up truck or van injured in collision with other nonmotor vehicle: Passenger injured in traffic accident', 'ICD10_2010'), +('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', 'ICD10_2010'), +('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 acc', 'ICD10_2010'), +('V57', 'Occupant of pick-up truck or van injured in collision with fixed or stationary object', 'ICD10_2010'), +('V57.0', 'Occupant of pick-up truck or van injured in collision with fixed or stationary object: Driver injured in nontraffic accident', 'ICD10_2010'), +('V57.1', 'Occupant of pick-up truck or van injured in collision with fixed or stationary object: Passenger injured in nontraffic accident', 'ICD10_2010'), +('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', 'ICD10_2010'), +('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 nontraf', 'ICD10_2010'), +('V57.4', 'Occupant of pick-up truck or van injured in collision with fixed or stationary object: Person injured while boarding or alighting', 'ICD10_2010'), +('V57.5', 'Occupant of pick-up truck or van injured in collision with fixed or stationary object: Driver injured in traffic accident', 'ICD10_2010'), +('V57.6', 'Occupant of pick-up truck or van injured in collision with fixed or stationary object: Passenger injured in traffic accident', 'ICD10_2010'), +('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', 'ICD10_2010'), +('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', 'ICD10_2010'), +('V58', 'Occupant of pick-up truck or van injured in noncollision transport accident', 'ICD10_2010'), +('V58.0', 'Occupant of pick-up truck or van injured in noncollision transport accident: Driver injured in nontraffic accident', 'ICD10_2010'), +('V58.1', 'Occupant of pick-up truck or van injured in noncollision transport accident: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V58.2', 'Occupant of pick-up truck or van injured in noncollision transport accident: Person on outside of vehicle injured in nontraffic accident', 'ICD10_2010'), +('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 accide', 'ICD10_2010'), +('V58.4', 'Occupant of pick-up truck or van injured in noncollision transport accident: Person injured while boarding or alighting', 'ICD10_2010'), +('V58.5', 'Occupant of pick-up truck or van injured in noncollision transport accident: Driver injured in traffic accident', 'ICD10_2010'), +('V58.6', 'Occupant of pick-up truck or van injured in noncollision transport accident: Passenger injured in traffic accident', 'ICD10_2010'), +('V58.7', 'Occupant of pick-up truck or van injured in noncollision transport accident: Person on outside of vehicle injured in traffic accident', 'ICD10_2010'), +('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', 'ICD10_2010'), +('V59', 'Occupant of pick-up truck or van injured in other and unspecified transport accidents', 'ICD10_2010'), +('V59.0', 'Driver injured in collision with other and unspecified motor vehicles in nontraffic accident', 'ICD10_2010'), +('V59.1', 'Passenger injured in collision with other and unspecified motor vehicles in nontraffic accident', 'ICD10_2010'), +('V59.2', 'Unspecified occupant of pick-up truck or van injured in collision with other and unspecified motor vehicles in nontraffic accident', 'ICD10_2010'), +('V59.3', 'Occupant [any] of pick-up truck or van injured in unspecified nontraffic accident', 'ICD10_2010'), +('V59.4', 'Driver injured in collision with other and unspecified motor vehicles in traffic accident', 'ICD10_2010'), +('V59.5', 'Passenger injured in collision with other and unspecified motor vehicles in traffic accident', 'ICD10_2010'), +('V59.6', 'Unspecified occupant of pick-up truck or van injured in collision with other and unspecified motor vehicles in traffic accident', 'ICD10_2010'), +('V59.8', 'Occupant [any] of pick-up truck or van injured in other specified transport accidents', 'ICD10_2010'), +('V59.9', 'Occupant [any] of pick-up truck or van injured in unspecified traffic accident', 'ICD10_2010'), +('V60', 'Occupant of heavy transport vehicle injured in collision with pedestrian or animal', 'ICD10_2010'), +('V60.0', 'Occupant of heavy transport vehicle injured in collision with pedestrian or animal: Driver injured in nontraffic accident', 'ICD10_2010'), +('V60.1', 'Occupant of heavy transport vehicle injured in collision with pedestrian or animal: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V60.2', 'Occupant of heavy transport vehicle injured in collision with pedestrian or animal: Person on outside of vehicle injured in nontraffic accident', 'ICD10_2010'), +('V60.3', 'Occupant of heavy transport vehicle injured in collision with pedestrian or animal: Unspecified occupant of heavy transport vehicle injured in nontraf', 'ICD10_2010'), +('V60.4', 'Occupant of heavy transport vehicle injured in collision with pedestrian or animal: Person injured while boarding or alighting', 'ICD10_2010'), +('V60.5', 'Occupant of heavy transport vehicle injured in collision with pedestrian or animal: Driver injured in traffic accident', 'ICD10_2010'), +('V60.6', 'Occupant of heavy transport vehicle injured in collision with pedestrian or animal: Passenger injured in traffic accident', 'ICD10_2010'), +('V60.7', 'Occupant of heavy transport vehicle injured in collision with pedestrian or animal: Person on outside of vehicle injured in traffic accident', 'ICD10_2010'), +('V60.9', 'Occupant of heavy transport vehicle injured in collision with pedestrian or animal: Unspecified occupant of heavy transport vehicle injured in traffic', 'ICD10_2010'), +('V61', 'Occupant of heavy transport vehicle injured in collision with pedal cycle', 'ICD10_2010'), +('V61.0', 'Occupant of heavy transport vehicle injured in collision with pedal cycle: Driver injured in nontraffic accident', 'ICD10_2010'), +('V61.1', 'Occupant of heavy transport vehicle injured in collision with pedal cycle: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V61.2', 'Occupant of heavy transport vehicle injured in collision with pedal cycle: Person on outside of vehicle injured in nontraffic accident', 'ICD10_2010'), +('V61.3', 'Occupant of heavy transport vehicle injured in collision with pedal cycle: Unspecified occupant of heavy transport vehicle injured in nontraffic accid', 'ICD10_2010'), +('V61.4', 'Occupant of heavy transport vehicle injured in collision with pedal cycle: Person injured while boarding or alighting', 'ICD10_2010'), +('V61.5', 'Occupant of heavy transport vehicle injured in collision with pedal cycle: Driver injured in traffic accident', 'ICD10_2010'), +('V61.6', 'Occupant of heavy transport vehicle injured in collision with pedal cycle: Passenger injured in traffic accident', 'ICD10_2010'), +('V61.7', 'Occupant of heavy transport vehicle injured in collision with pedal cycle: Person on outside of vehicle injured in traffic accident', 'ICD10_2010'), +('V61.9', 'Occupant of heavy transport vehicle injured in collision with pedal cycle: Unspecified occupant of heavy transport vehicle injured in traffic accident', 'ICD10_2010'), +('V62', 'Occupant of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle', 'ICD10_2010'), +('V62.0', 'Occupant of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle: Driver injured in nontraffic accident', 'ICD10_2010'), +('V62.1', 'Occupant of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle: Passenger injured in nontraffic accident', 'ICD10_2010'), +('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 ', 'ICD10_2010'), +('V62.3', 'Occupant of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle: Unspecified occupant of heavy transport vehicle inj', 'ICD10_2010'), +('V62.4', 'Occupant of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle: Person injured while boarding or alighting', 'ICD10_2010'), +('V62.5', 'Occupant of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle: Driver injured in traffic accident', 'ICD10_2010'), +('V62.6', 'Occupant of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle: Passenger injured in traffic accident', 'ICD10_2010'), +('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 acc', 'ICD10_2010'), +('V62.9', 'Occupant of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle: Unspecified occupant of heavy transport vehicle inj', 'ICD10_2010'), +('V63', 'Occupant of heavy transport vehicle injured in collision with car, pick-up truck or van', 'ICD10_2010'), +('V63.0', 'Occupant of heavy transport vehicle injured in collision with car, pick-up truck or van: Driver injured in nontraffic accident', 'ICD10_2010'), +('V63.1', 'Occupant of heavy transport vehicle injured in collision with car, pick-up truck or van: Passenger injured in nontraffic accident', 'ICD10_2010'), +('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', 'ICD10_2010'), +('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 no', 'ICD10_2010'), +('V63.4', 'Occupant of heavy transport vehicle injured in collision with car, pick-up truck or van: Person injured while boarding or alighting', 'ICD10_2010'), +('V63.5', 'Occupant of heavy transport vehicle injured in collision with car, pick-up truck or van: Driver injured in traffic accident', 'ICD10_2010'), +('V63.6', 'Occupant of heavy transport vehicle injured in collision with car, pick-up truck or van: Passenger injured in traffic accident', 'ICD10_2010'), +('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', 'ICD10_2010'), +('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 tr', 'ICD10_2010'), +('V64', 'Occupant of heavy transport vehicle injured in collision with heavy transport vehicle or bus', 'ICD10_2010'), +('V64.0', 'Occupant of heavy transport vehicle injured in collision with heavy transport vehicle or bus: Driver injured in nontraffic accident', 'ICD10_2010'), +('V64.1', 'Occupant of heavy transport vehicle injured in collision with heavy transport vehicle or bus: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V64.2', 'Occupant of heavy transport vehicle injured in collision with heavy transport vehicle or bus: Person on outside of vehicle injured in nontraffic accid', 'ICD10_2010'), +('V64.3', 'Occupant of heavy transport vehicle injured in collision with heavy transport vehicle or bus: Unspecified occupant of heavy transport vehicle injured ', 'ICD10_2010'), +('V64.4', 'Occupant of heavy transport vehicle injured in collision with heavy transport vehicle or bus: Person injured while boarding or alighting', 'ICD10_2010'), +('V64.5', 'Occupant of heavy transport vehicle injured in collision with heavy transport vehicle or bus: Driver injured in traffic accident', 'ICD10_2010'), +('V64.6', 'Occupant of heavy transport vehicle injured in collision with heavy transport vehicle or bus: Passenger injured in traffic accident', 'ICD10_2010'), +('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', 'ICD10_2010'), +('V64.9', 'Occupant of heavy transport vehicle injured in collision with heavy transport vehicle or bus: Unspecified occupant of heavy transport vehicle injured ', 'ICD10_2010'), +('V65', 'Occupant of heavy transport vehicle injured in collision with railway train or railway vehicle', 'ICD10_2010'), +('V65.0', 'Occupant of heavy transport vehicle injured in collision with railway train or railway vehicle: Driver injured in nontraffic accident', 'ICD10_2010'), +('V65.1', 'Occupant of heavy transport vehicle injured in collision with railway train or railway vehicle: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V65.2', 'Occupant of heavy transport vehicle injured in collision with railway train or railway vehicle: Person on outside of vehicle injured in nontraffic acc', 'ICD10_2010'); +INSERT INTO `icd10` (`ID_ICD10`, `Diagnosa`, `Versi_ICD10`) VALUES +('V65.3', 'Occupant of heavy transport vehicle injured in collision with railway train or railway vehicle: Unspecified occupant of heavy transport vehicle injure', 'ICD10_2010'), +('V65.4', 'Occupant of heavy transport vehicle injured in collision with railway train or railway vehicle: Person injured while boarding or alighting', 'ICD10_2010'), +('V65.5', 'Occupant of heavy transport vehicle injured in collision with railway train or railway vehicle: Driver injured in traffic accident', 'ICD10_2010'), +('V65.6', 'Occupant of heavy transport vehicle injured in collision with railway train or railway vehicle: Passenger injured in traffic accident', 'ICD10_2010'), +('V65.7', 'Occupant of heavy transport vehicle injured in collision with railway train or railway vehicle: Person on outside of vehicle injured in traffic accide', 'ICD10_2010'), +('V65.9', 'Occupant of heavy transport vehicle injured in collision with railway train or railway vehicle: Unspecified occupant of heavy transport vehicle injure', 'ICD10_2010'), +('V66', 'Occupant of heavy transport vehicle injured in collision with other nonmotor vehicle', 'ICD10_2010'), +('V66.0', 'Occupant of heavy transport vehicle injured in collision with other nonmotor vehicle: Driver injured in nontraffic accident', 'ICD10_2010'), +('V66.1', 'Occupant of heavy transport vehicle injured in collision with other nonmotor vehicle: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V66.2', 'Occupant of heavy transport vehicle injured in collision with other nonmotor vehicle: Person on outside of vehicle injured in nontraffic accident', 'ICD10_2010'), +('V66.3', 'Occupant of heavy transport vehicle injured in collision with other nonmotor vehicle: Unspecified occupant of heavy transport vehicle injured in nontr', 'ICD10_2010'), +('V66.4', 'Occupant of heavy transport vehicle injured in collision with other nonmotor vehicle: Person injured while boarding or alighting', 'ICD10_2010'), +('V66.5', 'Occupant of heavy transport vehicle injured in collision with other nonmotor vehicle: Driver injured in traffic accident', 'ICD10_2010'), +('V66.6', 'Occupant of heavy transport vehicle injured in collision with other nonmotor vehicle: Passenger injured in traffic accident', 'ICD10_2010'), +('V66.7', 'Occupant of heavy transport vehicle injured in collision with other nonmotor vehicle: Person on outside of vehicle injured in traffic accident', 'ICD10_2010'), +('V66.9', 'Occupant of heavy transport vehicle injured in collision with other nonmotor vehicle: Unspecified occupant of heavy transport vehicle injured in traff', 'ICD10_2010'), +('V67', 'Occupant of heavy transport vehicle injured in collision with fixed or stationary object', 'ICD10_2010'), +('V67.0', 'Occupant of heavy transport vehicle injured in collision with fixed or stationary object: Driver injured in nontraffic accident', 'ICD10_2010'), +('V67.1', 'Occupant of heavy transport vehicle injured in collision with fixed or stationary object: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V67.2', 'Occupant of heavy transport vehicle injured in collision with fixed or stationary object: Person on outside of vehicle injured in nontraffic accident', 'ICD10_2010'), +('V67.3', 'Occupant of heavy transport vehicle injured in collision with fixed or stationary object: Unspecified occupant of heavy transport vehicle injured in n', 'ICD10_2010'), +('V67.4', 'Occupant of heavy transport vehicle injured in collision with fixed or stationary object: Person injured while boarding or alighting', 'ICD10_2010'), +('V67.5', 'Occupant of heavy transport vehicle injured in collision with fixed or stationary object: Driver injured in traffic accident', 'ICD10_2010'), +('V67.6', 'Occupant of heavy transport vehicle injured in collision with fixed or stationary object: Passenger injured in traffic accident', 'ICD10_2010'), +('V67.7', 'Occupant of heavy transport vehicle injured in collision with fixed or stationary object: Person on outside of vehicle injured in traffic accident', 'ICD10_2010'), +('V67.9', 'Occupant of heavy transport vehicle injured in collision with fixed or stationary object: Unspecified occupant of heavy transport vehicle injured in t', 'ICD10_2010'), +('V68', 'Occupant of heavy transport vehicle injured in noncollision transport accident', 'ICD10_2010'), +('V68.0', 'Occupant of heavy transport vehicle injured in noncollision transport accident: Driver injured in nontraffic accident', 'ICD10_2010'), +('V68.1', 'Occupant of heavy transport vehicle injured in noncollision transport accident: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V68.2', 'Occupant of heavy transport vehicle injured in noncollision transport accident: Person on outside of vehicle injured in nontraffic accident', 'ICD10_2010'), +('V68.3', 'Occupant of heavy transport vehicle injured in noncollision transport accident: Unspecified occupant of heavy transport vehicle injured in nontraffic ', 'ICD10_2010'), +('V68.4', 'Occupant of heavy transport vehicle injured in noncollision transport accident: Person injured while boarding or alighting', 'ICD10_2010'), +('V68.5', 'Occupant of heavy transport vehicle injured in noncollision transport accident: Driver injured in traffic accident', 'ICD10_2010'), +('V68.6', 'Occupant of heavy transport vehicle injured in noncollision transport accident: Passenger injured in traffic accident', 'ICD10_2010'), +('V68.7', 'Occupant of heavy transport vehicle injured in noncollision transport accident: Person on outside of vehicle injured in traffic accident', 'ICD10_2010'), +('V68.9', 'Occupant of heavy transport vehicle injured in noncollision transport accident: Unspecified occupant of heavy transport vehicle injured in traffic acc', 'ICD10_2010'), +('V69', 'Occupant of heavy transport vehicle injured in other and unspecified transport accidents', 'ICD10_2010'), +('V69.0', 'Driver injured in collision with other and unspecified motor vehicles in nontraffic accident', 'ICD10_2010'), +('V69.1', 'Passenger injured in collision with other and unspecified motor vehicles in nontraffic accident', 'ICD10_2010'), +('V69.2', 'Unspecified occupant of heavy transport vehicle injured in collision with other and unspecified motor vehicles in nontraffic accident', 'ICD10_2010'), +('V69.3', 'Occupant [any] of heavy transport vehicle injured in unspecified nontraffic accident', 'ICD10_2010'), +('V69.4', 'Driver injured in collision with other and unspecified motor vehicles in traffic accident', 'ICD10_2010'), +('V69.5', 'Passenger injured in collision with other and unspecified motor vehicles in traffic accident', 'ICD10_2010'), +('V69.6', 'Unspecified occupant of heavy transport vehicle injured in collision with other and unspecified motor vehicles in traffic accident', 'ICD10_2010'), +('V69.8', 'Occupant [any] of heavy transport vehicle injured in other specified transport accidents', 'ICD10_2010'), +('V69.9', 'Occupant [any] of heavy transport vehicle injured in unspecified traffic accident', 'ICD10_2010'), +('V70', 'Bus occupant injured in collision with pedestrian or animal', 'ICD10_2010'), +('V70.0', 'Bus occupant injured in collision with pedestrian or animal: Driver injured in nontraffic accident', 'ICD10_2010'), +('V70.1', 'Bus occupant injured in collision with pedestrian or animal: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V70.2', 'Bus occupant injured in collision with pedestrian or animal: Person on outside of vehicle injured in nontraffic accident', 'ICD10_2010'), +('V70.3', 'Bus occupant injured in collision with pedestrian or animal: Unspecified bus occupant injured in nontraffic accident', 'ICD10_2010'), +('V70.4', 'Bus occupant injured in collision with pedestrian or animal: Person injured while boarding or alighting', 'ICD10_2010'), +('V70.5', 'Bus occupant injured in collision with pedestrian or animal: Driver injured in traffic accident', 'ICD10_2010'), +('V70.6', 'Bus occupant injured in collision with pedestrian or animal: Passenger injured in traffic accident', 'ICD10_2010'), +('V70.7', 'Bus occupant injured in collision with pedestrian or animal: Person on outside of vehicle injured in traffic accident', 'ICD10_2010'), +('V70.9', 'Bus occupant injured in collision with pedestrian or animal: Unspecified bus occupant injured in traffic accident', 'ICD10_2010'), +('V71', 'Bus occupant injured in collision with pedal cycle', 'ICD10_2010'), +('V71.0', 'Bus occupant injured in collision with pedal cycle: Driver injured in nontraffic accident', 'ICD10_2010'), +('V71.1', 'Bus occupant injured in collision with pedal cycle: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V71.2', 'Bus occupant injured in collision with pedal cycle: Person on outside of vehicle injured in nontraffic accident', 'ICD10_2010'), +('V71.3', 'Bus occupant injured in collision with pedal cycle: Unspecified bus occupant injured in nontraffic accident', 'ICD10_2010'), +('V71.4', 'Bus occupant injured in collision with pedal cycle: Person injured while boarding or alighting', 'ICD10_2010'), +('V71.5', 'Bus occupant injured in collision with pedal cycle: Driver injured in traffic accident', 'ICD10_2010'), +('V71.6', 'Bus occupant injured in collision with pedal cycle: Passenger injured in traffic accident', 'ICD10_2010'), +('V71.7', 'Bus occupant injured in collision with pedal cycle: Person on outside of vehicle injured in traffic accident', 'ICD10_2010'), +('V71.9', 'Bus occupant injured in collision with pedal cycle: Unspecified bus occupant injured in traffic accident', 'ICD10_2010'), +('V72', 'Bus occupant injured in collision with two- or three-wheeled motor vehicle', 'ICD10_2010'), +('V72.0', 'Bus occupant injured in collision with two- or three-wheeled motor vehicle: Driver injured in nontraffic accident', 'ICD10_2010'), +('V72.1', 'Bus occupant injured in collision with two- or three-wheeled motor vehicle: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V72.2', 'Bus occupant injured in collision with two- or three-wheeled motor vehicle: Person on outside of vehicle injured in nontraffic accident', 'ICD10_2010'), +('V72.3', 'Bus occupant injured in collision with two- or three-wheeled motor vehicle: Unspecified bus occupant injured in nontraffic accident', 'ICD10_2010'), +('V72.4', 'Bus occupant injured in collision with two- or three-wheeled motor vehicle: Person injured while boarding or alighting', 'ICD10_2010'), +('V72.5', 'Bus occupant injured in collision with two- or three-wheeled motor vehicle: Driver injured in traffic accident', 'ICD10_2010'), +('V72.6', 'Bus occupant injured in collision with two- or three-wheeled motor vehicle: Passenger injured in traffic accident', 'ICD10_2010'), +('V72.7', 'Bus occupant injured in collision with two- or three-wheeled motor vehicle: Person on outside of vehicle injured in traffic accident', 'ICD10_2010'), +('V72.9', 'Bus occupant injured in collision with two- or three-wheeled motor vehicle: Unspecified bus occupant injured in traffic accident', 'ICD10_2010'), +('V73', 'Bus occupant injured in collision with car, pick-up truck or van', 'ICD10_2010'), +('V73.0', 'Bus occupant injured in collision with car, pick-up truck or van: Driver injured in nontraffic accident', 'ICD10_2010'), +('V73.1', 'Bus occupant injured in collision with car, pick-up truck or van: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V73.2', 'Bus occupant injured in collision with car, pick-up truck or van: Person on outside of vehicle injured in nontraffic accident', 'ICD10_2010'), +('V73.3', 'Bus occupant injured in collision with car, pick-up truck or van: Unspecified bus occupant injured in nontraffic accident', 'ICD10_2010'), +('V73.4', 'Bus occupant injured in collision with car, pick-up truck or van: Person injured while boarding or alighting', 'ICD10_2010'), +('V73.5', 'Bus occupant injured in collision with car, pick-up truck or van: Driver injured in traffic accident', 'ICD10_2010'), +('V73.6', 'Bus occupant injured in collision with car, pick-up truck or van: Passenger injured in traffic accident', 'ICD10_2010'), +('V73.7', 'Bus occupant injured in collision with car, pick-up truck or van: Person on outside of vehicle injured in traffic accident', 'ICD10_2010'), +('V73.9', 'Bus occupant injured in collision with car, pick-up truck or van: Unspecified bus occupant injured in traffic accident', 'ICD10_2010'), +('V74', 'Bus occupant injured in collision with heavy transport vehicle or bus', 'ICD10_2010'), +('V74.0', 'Bus occupant injured in collision with heavy transport vehicle or bus: Driver injured in nontraffic accident', 'ICD10_2010'), +('V74.1', 'Bus occupant injured in collision with heavy transport vehicle or bus: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V74.2', 'Bus occupant injured in collision with heavy transport vehicle or bus: Person on outside of vehicle injured in nontraffic accident', 'ICD10_2010'), +('V74.3', 'Bus occupant injured in collision with heavy transport vehicle or bus: Unspecified bus occupant injured in nontraffic accident', 'ICD10_2010'), +('V74.4', 'Bus occupant injured in collision with heavy transport vehicle or bus: Person injured while boarding or alighting', 'ICD10_2010'), +('V74.5', 'Bus occupant injured in collision with heavy transport vehicle or bus: Driver injured in traffic accident', 'ICD10_2010'), +('V74.6', 'Bus occupant injured in collision with heavy transport vehicle or bus: Passenger injured in traffic accident', 'ICD10_2010'), +('V74.7', 'Bus occupant injured in collision with heavy transport vehicle or bus: Person on outside of vehicle injured in traffic accident', 'ICD10_2010'), +('V74.9', 'Bus occupant injured in collision with heavy transport vehicle or bus: Unspecified bus occupant injured in traffic accident', 'ICD10_2010'), +('V75', 'Bus occupant injured in collision with railway train or railway vehicle', 'ICD10_2010'), +('V75.0', 'Bus occupant injured in collision with railway train or railway vehicle: Driver injured in nontraffic accident', 'ICD10_2010'), +('V75.1', 'Bus occupant injured in collision with railway train or railway vehicle: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V75.2', 'Bus occupant injured in collision with railway train or railway vehicle: Person on outside of vehicle injured in nontraffic accident', 'ICD10_2010'), +('V75.3', 'Bus occupant injured in collision with railway train or railway vehicle: Unspecified bus occupant injured in nontraffic accident', 'ICD10_2010'), +('V75.4', 'Bus occupant injured in collision with railway train or railway vehicle: Person injured while boarding or alighting', 'ICD10_2010'), +('V75.5', 'Bus occupant injured in collision with railway train or railway vehicle: Driver injured in traffic accident', 'ICD10_2010'), +('V75.6', 'Bus occupant injured in collision with railway train or railway vehicle: Passenger injured in traffic accident', 'ICD10_2010'), +('V75.7', 'Bus occupant injured in collision with railway train or railway vehicle: Person on outside of vehicle injured in traffic accident', 'ICD10_2010'), +('V75.9', 'Bus occupant injured in collision with railway train or railway vehicle: Unspecified bus occupant injured in traffic accident', 'ICD10_2010'), +('V76', 'Bus occupant injured in collision with other nonmotor vehicle', 'ICD10_2010'), +('V76.0', 'Bus occupant injured in collision with other nonmotor vehicle: Driver injured in nontraffic accident', 'ICD10_2010'), +('V76.1', 'Bus occupant injured in collision with other nonmotor vehicle: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V76.2', 'Bus occupant injured in collision with other nonmotor vehicle: Person on outside of vehicle injured in nontraffic accident', 'ICD10_2010'), +('V76.3', 'Bus occupant injured in collision with other nonmotor vehicle: Unspecified bus occupant injured in nontraffic accident', 'ICD10_2010'), +('V76.4', 'Bus occupant injured in collision with other nonmotor vehicle: Person injured while boarding or alighting', 'ICD10_2010'), +('V76.5', 'Bus occupant injured in collision with other nonmotor vehicle: Driver injured in traffic accident', 'ICD10_2010'), +('V76.6', 'Bus occupant injured in collision with other nonmotor vehicle: Passenger injured in traffic accident', 'ICD10_2010'), +('V76.7', 'Bus occupant injured in collision with other nonmotor vehicle: Person on outside of vehicle injured in traffic accident', 'ICD10_2010'), +('V76.9', 'Bus occupant injured in collision with other nonmotor vehicle: Unspecified bus occupant injured in traffic accident', 'ICD10_2010'), +('V77', 'Bus occupant injured in collision with fixed or stationary object', 'ICD10_2010'), +('V77.0', 'Bus occupant injured in collision with fixed or stationary object: Driver injured in nontraffic accident', 'ICD10_2010'), +('V77.1', 'Bus occupant injured in collision with fixed or stationary object: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V77.2', 'Bus occupant injured in collision with fixed or stationary object: Person on outside of vehicle injured in nontraffic accident', 'ICD10_2010'), +('V77.3', 'Bus occupant injured in collision with fixed or stationary object: Unspecified bus occupant injured in nontraffic accident', 'ICD10_2010'), +('V77.4', 'Bus occupant injured in collision with fixed or stationary object: Person injured while boarding or alighting', 'ICD10_2010'), +('V77.5', 'Bus occupant injured in collision with fixed or stationary object: Driver injured in traffic accident', 'ICD10_2010'), +('V77.6', 'Bus occupant injured in collision with fixed or stationary object: Passenger injured in traffic accident', 'ICD10_2010'), +('V77.7', 'Bus occupant injured in collision with fixed or stationary object: Person on outside of vehicle injured in traffic accident', 'ICD10_2010'), +('V77.9', 'Bus occupant injured in collision with fixed or stationary object: Unspecified bus occupant injured in traffic accident', 'ICD10_2010'), +('V78', 'Bus occupant injured in noncollision transport accident', 'ICD10_2010'), +('V78.0', 'Bus occupant injured in noncollision transport accident: Driver injured in nontraffic accident', 'ICD10_2010'), +('V78.1', 'Bus occupant injured in noncollision transport accident: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V78.2', 'Bus occupant injured in noncollision transport accident: Person on outside of vehicle injured in nontraffic accident', 'ICD10_2010'), +('V78.3', 'Bus occupant injured in noncollision transport accident: Unspecified bus occupant injured in nontraffic accident', 'ICD10_2010'), +('V78.4', 'Bus occupant injured in noncollision transport accident: Person injured while boarding or alighting', 'ICD10_2010'), +('V78.5', 'Bus occupant injured in noncollision transport accident: Driver injured in traffic accident', 'ICD10_2010'), +('V78.6', 'Bus occupant injured in noncollision transport accident: Passenger injured in traffic accident', 'ICD10_2010'), +('V78.7', 'Bus occupant injured in noncollision transport accident: Person on outside of vehicle injured in traffic accident', 'ICD10_2010'), +('V78.9', 'Bus occupant injured in noncollision transport accident: Unspecified bus occupant injured in traffic accident', 'ICD10_2010'), +('V79', 'Bus occupant injured in other and unspecified transport accidents', 'ICD10_2010'), +('V79.0', 'Driver injured in collision with other and unspecified motor vehicles in nontraffic accident', 'ICD10_2010'), +('V79.1', 'Passenger injured in collision with other and unspecified motor vehicles in nontraffic accident', 'ICD10_2010'), +('V79.2', 'Unspecified bus occupant injured in collision with other and unspecified motor vehicles in nontraffic accident', 'ICD10_2010'), +('V79.3', 'Bus occupant [any] injured in unspecified nontraffic accident', 'ICD10_2010'), +('V79.4', 'Driver injured in collision with other and unspecified motor vehicles in traffic accident', 'ICD10_2010'), +('V79.5', 'Passenger injured in collision with other and unspecified motor vehicles in traffic accident', 'ICD10_2010'), +('V79.6', 'Unspecified bus occupant injured in collision with other and unspecified motor vehicles in traffic accident', 'ICD10_2010'), +('V79.8', 'Bus occupant [any] injured in other specified transport accidents', 'ICD10_2010'), +('V79.9', 'Bus occupant [any] injured in unspecified traffic accident', 'ICD10_2010'), +('V80', 'Animal-rider or occupant of animal-drawn vehicle injured in transport accident', 'ICD10_2010'), +('V80.0', 'Rider or occupant injured by fall from or being thrown from animal or animal-drawn vehicle in noncollision accident', 'ICD10_2010'), +('V80.1', 'Rider or occupant injured in collision with pedestrian or animal', 'ICD10_2010'), +('V80.2', 'Rider or occupant injured in collision with pedal cycle', 'ICD10_2010'), +('V80.3', 'Rider or occupant injured in collision with two- or three-wheeled motor vehicle', 'ICD10_2010'), +('V80.4', 'Rider or occupant injured in collision with car, pick-up truck, van, heavy transport vehicle or bus', 'ICD10_2010'), +('V80.5', 'Rider or occupant injured in collision with other specified motor vehicle', 'ICD10_2010'), +('V80.6', 'Rider or occupant injured in collision with railway train or railway vehicle', 'ICD10_2010'), +('V80.7', 'Rider or occupant injured in collision with other nonmotor vehicle', 'ICD10_2010'), +('V80.8', 'Rider or occupant injured in collision with fixed or stationary object', 'ICD10_2010'), +('V80.9', 'Rider or occupant injured in other and unspecified transport accidents', 'ICD10_2010'), +('V81', 'Occupant of railway train or railway vehicle injured in transport accident', 'ICD10_2010'), +('V81.0', 'Occupant of railway train or railway vehicle injured in collision with motor vehicle in nontraffic accident', 'ICD10_2010'), +('V81.1', 'Occupant of railway train or railway vehicle injured in collision with motor vehicle in traffic accident', 'ICD10_2010'), +('V81.2', 'Occupant of railway train or railway vehicle injured in collision with or hit by rolling stock', 'ICD10_2010'), +('V81.3', 'Occupant of railway train or railway vehicle injured in collision with other object', 'ICD10_2010'), +('V81.4', 'Person injured while boarding or alighting from railway train or railway vehicle', 'ICD10_2010'), +('V81.5', 'Occupant of railway train or railway vehicle injured by fall in railway train or railway vehicle', 'ICD10_2010'), +('V81.6', 'Occupant of railway train or railway vehicle injured by fall from railway train or railway vehicle', 'ICD10_2010'), +('V81.7', 'Occupant of railway train or railway vehicle injured in derailment without antecedent collision', 'ICD10_2010'), +('V81.8', 'Occupant of railway train or railway vehicle injured in other specified railway accidents', 'ICD10_2010'), +('V81.9', 'Occupant of railway train or railway vehicle injured in unspecified railway accident', 'ICD10_2010'), +('V82', 'Occupant of streetcar injured in transport accident', 'ICD10_2010'), +('V82.0', 'Occupant of streetcar injured in collision with motor vehicle in nontraffic accident', 'ICD10_2010'), +('V82.1', 'Occupant of streetcar injured in collision with motor vehicle in traffic accident', 'ICD10_2010'), +('V82.2', 'Occupant of streetcar injured in collision with or hit by rolling stock', 'ICD10_2010'), +('V82.3', 'Occupant of streetcar injured in collision with other object', 'ICD10_2010'), +('V82.4', 'Person injured while boarding or alighting from streetcar', 'ICD10_2010'), +('V82.5', 'Occupant of streetcar injured by fall in streetcar', 'ICD10_2010'), +('V82.6', 'Occupant of streetcar injured by fall from streetcar', 'ICD10_2010'), +('V82.7', 'Occupant of streetcar injured in derailment without antecedent collision', 'ICD10_2010'), +('V82.8', 'Occupant of streetcar injured in other specified transport accidents', 'ICD10_2010'), +('V82.9', 'Occupant of streetcar injured in unspecified traffic accident', 'ICD10_2010'), +('V83', 'Occupant of special vehicle mainly used on industrial premises injured in transport accident', 'ICD10_2010'), +('V83.0', 'Driver of special industrial vehicle injured in traffic accident', 'ICD10_2010'), +('V83.1', 'Passenger of special industrial vehicle injured in traffic accident', 'ICD10_2010'), +('V83.2', 'Person on outside of special industrial vehicle injured in traffic accident', 'ICD10_2010'), +('V83.3', 'Unspecified occupant of special industrial vehicle injured in traffic accident', 'ICD10_2010'), +('V83.4', 'Person injured while boarding or alighting from special industrial vehicle', 'ICD10_2010'), +('V83.5', 'Driver of special industrial vehicle injured in nontraffic accident', 'ICD10_2010'), +('V83.6', 'Passenger of special industrial vehicle injured in nontraffic accident', 'ICD10_2010'), +('V83.7', 'Person on outside of special industrial vehicle injured in nontraffic accident', 'ICD10_2010'), +('V83.9', 'Unspecified occupant of special industrial vehicle injured in nontraffic accident', 'ICD10_2010'), +('V84', 'Occupant of special vehicle mainly used in agriculture injured in transport accident', 'ICD10_2010'), +('V84.0', 'Driver of special agricultural vehicle injured in traffic accident', 'ICD10_2010'), +('V84.1', 'Passenger of special agricultural vehicle injured in traffic accident', 'ICD10_2010'), +('V84.2', 'Person on outside of special agricultural vehicle injured in traffic accident', 'ICD10_2010'), +('V84.3', 'Unspecified occupant of special agricultural vehicle injured in traffic accident', 'ICD10_2010'), +('V84.4', 'Person injured while boarding or alighting from special agricultural vehicle', 'ICD10_2010'), +('V84.5', 'Driver of special agricultural vehicle injured in nontraffic accident', 'ICD10_2010'), +('V84.6', 'Passenger of special agricultural vehicle injured in nontraffic accident', 'ICD10_2010'), +('V84.7', 'Person on outside of special agricultural vehicle injured in nontraffic accident', 'ICD10_2010'), +('V84.9', 'Unspecified occupant of special agricultural vehicle injured in nontraffic accident', 'ICD10_2010'), +('V85', 'Occupant of special construction vehicle injured in transport accident', 'ICD10_2010'), +('V85.0', 'Driver of special construction vehicle injured in traffic accident', 'ICD10_2010'), +('V85.1', 'Passenger of special construction vehicle injured in traffic accident', 'ICD10_2010'), +('V85.2', 'Person on outside of special construction vehicle injured in traffic accident', 'ICD10_2010'), +('V85.3', 'Unspecified occupant of special construction vehicle injured in traffic accident', 'ICD10_2010'), +('V85.4', 'Person injured while boarding or alighting from special construction vehicle', 'ICD10_2010'), +('V85.5', 'Driver of special construction vehicle injured in nontraffic accident', 'ICD10_2010'), +('V85.6', 'Passenger of special construction vehicle injured in nontraffic accident', 'ICD10_2010'), +('V85.7', 'Person on outside of special construction vehicle injured in nontraffic accident', 'ICD10_2010'), +('V85.9', 'Unspecified occupant of special construction vehicle injured in nontraffic accident', 'ICD10_2010'), +('V86', 'Occupant of special all-terrain or other motor vehicle designed primarily for off-road use, injured in transport accident', 'ICD10_2010'), +('V86.0', 'Driver of all-terrain or other off-road motor vehicle injured in traffic accident', 'ICD10_2010'), +('V86.1', 'Passenger of all-terrain or other off-road motor vehicle injured in traffic accident', 'ICD10_2010'), +('V86.2', 'Person on outside of all-terrain or other off-road motor vehicle injured in traffic accident', 'ICD10_2010'), +('V86.3', 'Unspecified occupant of all-terrain or other off-road motor vehicle injured in traffic accident', 'ICD10_2010'), +('V86.4', 'Person injured while boarding or alighting from all-terrain or other off-road motor vehicle', 'ICD10_2010'), +('V86.5', 'Driver of all-terrain or other off-road motor vehicle injured in nontraffic accident', 'ICD10_2010'), +('V86.6', 'Passenger of all-terrain or other off-road motor vehicle injured in nontraffic accident', 'ICD10_2010'), +('V86.7', 'Person on outside of all-terrain or other off-road motor vehicle injured in nontraffic accident', 'ICD10_2010'), +('V86.9', 'Unspecified occupant of all-terrain or other off-road motor vehicle injured in nontraffic accident', 'ICD10_2010'), +('V87', 'Traffic accident of specified type but victim\'s mode of transport unknown', 'ICD10_2010'), +('V87.0', 'Person injured in collision between car and two- or three-wheeled motor vehicle (traffic)', 'ICD10_2010'), +('V87.1', 'Person injured in collision between other motor vehicle and two- or three-wheeled motor vehicle (traffic)', 'ICD10_2010'), +('V87.2', 'Person injured in collision between car and pick-up truck or van (traffic)', 'ICD10_2010'), +('V87.3', 'Person injured in collision between car and bus (traffic)', 'ICD10_2010'), +('V87.4', 'Person injured in collision between car and heavy transport vehicle (traffic)', 'ICD10_2010'), +('V87.5', 'Person injured in collision between heavy transport vehicle and bus (traffic)', 'ICD10_2010'), +('V87.6', 'Person injured in collision between railway train or railway vehicle and car (traffic)', 'ICD10_2010'), +('V87.7', 'Person injured in collision between other specified motor vehicles (traffic)', 'ICD10_2010'), +('V87.8', 'Person injured in other specified noncollision transport accidents involving motor vehicle (traffic)', 'ICD10_2010'), +('V87.9', 'Person injured in other specified (collision)(noncollision) transport accidents involving nonmotor vehicle (traffic)', 'ICD10_2010'), +('V88', 'Nontraffic accident of specified type but victim\'s mode of transport unknown', 'ICD10_2010'), +('V88.0', 'Person injured in collision between car and two- or three-wheeled motor vehicle, nontraffic', 'ICD10_2010'), +('V88.1', 'Person injured in collision between other motor vehicle and two- or three-wheeled motor vehicle, nontraffic', 'ICD10_2010'), +('V88.2', 'Person injured in collision between car and pick-up truck or van, nontraffic', 'ICD10_2010'), +('V88.3', 'Person injured in collision between car and bus, nontraffic', 'ICD10_2010'), +('V88.4', 'Person injured in collision between car and heavy transport vehicle, nontraffic', 'ICD10_2010'), +('V88.5', 'Person injured in collision between heavy transport vehicle and bus, nontraffic', 'ICD10_2010'), +('V88.6', 'Person injured in collision between railway train or railway vehicle and car, nontraffic', 'ICD10_2010'), +('V88.7', 'Person injured in collision between other specified motor vehicles, nontraffic', 'ICD10_2010'), +('V88.8', 'Person injured in other specified noncollision transport accidents involving motor vehicle, nontraffic', 'ICD10_2010'), +('V88.9', 'Person injured in other specified (collision)(noncollision) transport accidents involving nonmotor vehicle, nontraffic', 'ICD10_2010'), +('V89', 'Motor- or nonmotor-vehicle accident, type of vehicle unspecified', 'ICD10_2010'), +('V89.0', 'Person injured in unspecified motor-vehicle accident, nontraffic', 'ICD10_2010'), +('V89.1', 'Person injured in unspecified nonmotor-vehicle accident, nontraffic', 'ICD10_2010'), +('V89.2', 'Person injured in unspecified motor-vehicle accident, traffic', 'ICD10_2010'), +('V89.3', 'Person injured in unspecified nonmotor-vehicle accident, traffic', 'ICD10_2010'), +('V89.9', 'Person injured in unspecified vehicle accident', 'ICD10_2010'), +('V90', 'Accident to watercraft causing drowning and submersion', 'ICD10_2010'), +('V90.0', 'Accident to watercraft causing drowning and submersion: Merchant ship', 'ICD10_2010'), +('V90.1', 'Accident to watercraft causing drowning and submersion: Passenger ship', 'ICD10_2010'), +('V90.2', 'Accident to watercraft causing drowning and submersion: Fishing boat', 'ICD10_2010'), +('V90.3', 'Accident to watercraft causing drowning and submersion: Other powered watercraft', 'ICD10_2010'), +('V90.4', 'Accident to watercraft causing drowning and submersion: Sailboat', 'ICD10_2010'), +('V90.5', 'Accident to watercraft causing drowning and submersion: Canoe or kayak', 'ICD10_2010'), +('V90.6', 'Accident to watercraft causing drowning and submersion: Inflatable craft (nonpowered)', 'ICD10_2010'), +('V90.7', 'Accident to watercraft causing drowning and submersion: Water-skis', 'ICD10_2010'), +('V90.8', 'Accident to watercraft causing drowning and submersion: Other unpowered watercraft', 'ICD10_2010'), +('V90.9', 'Accident to watercraft causing drowning and submersion: Unspecified watercraft', 'ICD10_2010'), +('V91', 'Accident to watercraft causing other injury', 'ICD10_2010'), +('V91.0', 'Accident to watercraft causing other injury: Merchant ship', 'ICD10_2010'), +('V91.1', 'Accident to watercraft causing other injury: Passenger ship', 'ICD10_2010'), +('V91.2', 'Accident to watercraft causing other injury: Fishing boat', 'ICD10_2010'), +('V91.3', 'Accident to watercraft causing other injury: Other powered watercraft', 'ICD10_2010'), +('V91.4', 'Accident to watercraft causing other injury: Sailboat', 'ICD10_2010'), +('V91.5', 'Accident to watercraft causing other injury: Canoe or kayak', 'ICD10_2010'), +('V91.6', 'Accident to watercraft causing other injury: Inflatable craft (nonpowered)', 'ICD10_2010'), +('V91.7', 'Accident to watercraft causing other injury: Water-skis', 'ICD10_2010'), +('V91.8', 'Accident to watercraft causing other injury: Other unpowered watercraft', 'ICD10_2010'), +('V91.9', 'Accident to watercraft causing other injury: Unspecified watercraft', 'ICD10_2010'), +('V92', 'Water-transport-related drowning and submersion without accident to watercraft', 'ICD10_2010'), +('V92.0', 'Water-transport-related drowning and submersion without accident to watercraft: Merchant ship', 'ICD10_2010'), +('V92.1', 'Water-transport-related drowning and submersion without accident to watercraft: Passenger ship', 'ICD10_2010'), +('V92.2', 'Water-transport-related drowning and submersion without accident to watercraft: Fishing boat', 'ICD10_2010'), +('V92.3', 'Water-transport-related drowning and submersion without accident to watercraft: Other powered watercraft', 'ICD10_2010'), +('V92.4', 'Water-transport-related drowning and submersion without accident to watercraft: Sailboat', 'ICD10_2010'), +('V92.5', 'Water-transport-related drowning and submersion without accident to watercraft: Canoe or kayak', 'ICD10_2010'), +('V92.6', 'Water-transport-related drowning and submersion without accident to watercraft: Inflatable craft (nonpowered)', 'ICD10_2010'), +('V92.7', 'Water-transport-related drowning and submersion without accident to watercraft: Water-skis', 'ICD10_2010'), +('V92.8', 'Water-transport-related drowning and submersion without accident to watercraft: Other unpowered watercraft', 'ICD10_2010'), +('V92.9', 'Water-transport-related drowning and submersion without accident to watercraft: Unspecified watercraft', 'ICD10_2010'), +('V93', 'Accident on board watercraft without accident to watercraft, not causing drowning and submersion', 'ICD10_2010'), +('V93.0', 'Accident on board watercraft without accident to watercraft, not causing drowning and submersion: Merchant ship', 'ICD10_2010'), +('V93.1', 'Accident on board watercraft without accident to watercraft, not causing drowning and submersion: Passenger ship', 'ICD10_2010'), +('V93.2', 'Accident on board watercraft without accident to watercraft, not causing drowning and submersion: Fishing boat', 'ICD10_2010'), +('V93.3', 'Accident on board watercraft without accident to watercraft, not causing drowning and submersion: Other powered watercraft', 'ICD10_2010'), +('V93.4', 'Accident on board watercraft without accident to watercraft, not causing drowning and submersion: Sailboat', 'ICD10_2010'), +('V93.5', 'Accident on board watercraft without accident to watercraft, not causing drowning and submersion: Canoe or kayak', 'ICD10_2010'), +('V93.6', 'Accident on board watercraft without accident to watercraft, not causing drowning and submersion: Inflatable craft (nonpowered)', 'ICD10_2010'), +('V93.7', 'Accident on board watercraft without accident to watercraft, not causing drowning and submersion: Water-skis', 'ICD10_2010'), +('V93.8', 'Accident on board watercraft without accident to watercraft, not causing drowning and submersion: Other unpowered watercraft', 'ICD10_2010'), +('V93.9', 'Accident on board watercraft without accident to watercraft, not causing drowning and submersion: Unspecified watercraft', 'ICD10_2010'), +('V94', 'Other and unspecified water transport accidents', 'ICD10_2010'), +('V94.0', 'Other and unspecified water transport accidents: Merchant ship', 'ICD10_2010'), +('V94.1', 'Other and unspecified water transport accidents: Passenger ship', 'ICD10_2010'), +('V94.2', 'Other and unspecified water transport accidents: Fishing boat', 'ICD10_2010'), +('V94.3', 'Other and unspecified water transport accidents: Other powered watercraft', 'ICD10_2010'), +('V94.4', 'Other and unspecified water transport accidents: Sailboat', 'ICD10_2010'), +('V94.5', 'Other and unspecified water transport accidents: Canoe or kayak', 'ICD10_2010'), +('V94.6', 'Other and unspecified water transport accidents: Inflatable craft (nonpowered)', 'ICD10_2010'), +('V94.7', 'Other and unspecified water transport accidents: Water-skis', 'ICD10_2010'), +('V94.8', 'Other and unspecified water transport accidents: Other unpowered watercraft', 'ICD10_2010'), +('V94.9', 'Other and unspecified water transport accidents: Unspecified watercraft', 'ICD10_2010'), +('V95', 'Accident to powered aircraft causing injury to occupant', 'ICD10_2010'), +('V95.0', 'Helicopter accident injuring occupant', 'ICD10_2010'), +('V95.1', 'Ultralight, microlight or powered-glider accident injuring occupant', 'ICD10_2010'), +('V95.2', 'Accident to other private fixed-wing aircraft, injuring occupant', 'ICD10_2010'), +('V95.3', 'Accident to commercial fixed-wing aircraft, injuring occupant', 'ICD10_2010'), +('V95.4', 'Spacecraft accident injuring occupant', 'ICD10_2010'), +('V95.8', 'Other aircraft accidents injuring occupant', 'ICD10_2010'), +('V95.9', 'Unspecified aircraft accident injuring occupant', 'ICD10_2010'), +('V96', 'Accident to nonpowered aircraft causing injury to occupant', 'ICD10_2010'), +('V96.0', 'Balloon accident injuring occupant', 'ICD10_2010'), +('V96.1', 'Hang-glider accident injuring occupant', 'ICD10_2010'), +('V96.2', 'Glider (nonpowered) accident injuring occupant', 'ICD10_2010'), +('V96.8', 'Other nonpowered-aircraft accidents injuring occupant', 'ICD10_2010'), +('V96.9', 'Unspecified nonpowered-aircraft accident injuring occupant', 'ICD10_2010'), +('V97', 'Other specified air transport accidents', 'ICD10_2010'), +('V97.0', 'Occupant of aircraft injured in other specified air transport accidents', 'ICD10_2010'), +('V97.1', 'Person injured while boarding or alighting from aircraft', 'ICD10_2010'), +('V97.2', 'Parachutist injured in air transport accident', 'ICD10_2010'), +('V97.3', 'Person on ground injured in air transport accident', 'ICD10_2010'), +('V97.8', 'Other air transport accidents, not elsewhere classified', 'ICD10_2010'), +('V98', 'Other specified transport accidents', 'ICD10_2010'), +('V99', 'Unspecified transport accident', 'ICD10_2010'), +('W00', 'Fall on same level involving ice and snow', 'ICD10_2010'), +('W00.0', 'Fall on same level involving ice and snow, Home', 'ICD10_2010'), +('W00.1', 'Fall on same level involving ice and snow, Residential Institution', 'ICD10_2010'), +('W00.2', 'Fall on same level involving ice and snow, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W00.3', 'Fall on same level involving ice and snow, Sports and Athletic Areas', 'ICD10_2010'), +('W00.4', 'Fall on same level involving ice and snow, Street and Highway', 'ICD10_2010'), +('W00.5', 'Fall on same level involving ice and snow, Trade and Service Area', 'ICD10_2010'), +('W00.6', 'Fall on same level involving ice and snow, Industrial and Construction Area', 'ICD10_2010'), +('W00.7', 'Fall on same level involving ice and snow, Farm', 'ICD10_2010'), +('W00.8', 'Fall on same level involving ice and snow, Other Specified Area', 'ICD10_2010'), +('W00.9', 'Fall on same level involving ice and snow, Unspecified Place', 'ICD10_2010'), +('W01', 'Fall on same level from slipping, tripping and stumbling', 'ICD10_2010'), +('W01.0', 'Fall on same level from slipping, tripping and stumbling, Home', 'ICD10_2010'), +('W01.1', 'Fall on same level from slipping, tripping and stumbling, Residential Institution', 'ICD10_2010'), +('W01.2', 'Fall on same level from slipping, tripping and stumbling, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W01.3', 'Fall on same level from slipping, tripping and stumbling, Sports and Athletic Areas', 'ICD10_2010'), +('W01.4', 'Fall on same level from slipping, tripping and stumbling, Street and Highway', 'ICD10_2010'), +('W01.5', 'Fall on same level from slipping, tripping and stumbling, Trade and Service Area', 'ICD10_2010'), +('W01.6', 'Fall on same level from slipping, tripping and stumbling, Industrial and Construction Area', 'ICD10_2010'), +('W01.7', 'Fall on same level from slipping, tripping and stumbling, Farm', 'ICD10_2010'), +('W01.8', 'Fall on same level from slipping, tripping and stumbling, Other Specified Area', 'ICD10_2010'), +('W01.9', 'Fall on same level from slipping, tripping and stumbling, Unspecified Place', 'ICD10_2010'), +('W02', 'Fall involving ice-skates, skis, roller-skates or skateboards', 'ICD10_2010'), +('W02.0', 'Fall involving ice-skates, skis, roller-skates or skateboards, Home', 'ICD10_2010'), +('W02.1', 'Fall involving ice-skates, skis, roller-skates or skateboards, Residential Institution', 'ICD10_2010'), +('W02.2', 'Fall involving ice-skates, skis, roller-skates or skateboards, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W02.3', 'Fall involving ice-skates, skis, roller-skates or skateboards, Sports and Athletic Areas', 'ICD10_2010'), +('W02.4', 'Fall involving ice-skates, skis, roller-skates or skateboards, Street and Highway', 'ICD10_2010'), +('W02.5', 'Fall involving ice-skates, skis, roller-skates or skateboards, Trade and Service Area', 'ICD10_2010'), +('W02.6', 'Fall involving ice-skates, skis, roller-skates or skateboards, Industrial and Construction Area', 'ICD10_2010'), +('W02.7', 'Fall involving ice-skates, skis, roller-skates or skateboards, Farm', 'ICD10_2010'), +('W02.8', 'Fall involving ice-skates, skis, roller-skates or skateboards, Other Specified Area', 'ICD10_2010'), +('W02.9', 'Fall involving ice-skates, skis, roller-skates or skateboards, Unspecified Place', 'ICD10_2010'), +('W03', 'Other fall on same level due to collision with, or pushing by, another person', 'ICD10_2010'), +('W03.0', 'Other fall on same level due to collision with, or pushing by, another person, Home', 'ICD10_2010'), +('W03.1', 'Other fall on same level due to collision with, or pushing by, another person, Residential Institution', 'ICD10_2010'), +('W03.2', 'Other fall on same level due to collision with, or pushing by, another person, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W03.3', 'Other fall on same level due to collision with, or pushing by, another person, Sports and Athletic Areas', 'ICD10_2010'), +('W03.4', 'Other fall on same level due to collision with, or pushing by, another person, Street and Highway', 'ICD10_2010'), +('W03.5', 'Other fall on same level due to collision with, or pushing by, another person, Trade and Service Area', 'ICD10_2010'), +('W03.6', 'Other fall on same level due to collision with, or pushing by, another person, Industrial and Construction Area', 'ICD10_2010'), +('W03.7', 'Other fall on same level due to collision with, or pushing by, another person, Farm', 'ICD10_2010'), +('W03.8', 'Other fall on same level due to collision with, or pushing by, another person, Other Specified Area', 'ICD10_2010'), +('W03.9', 'Other fall on same level due to collision with, or pushing by, another person, Unspecified Place', 'ICD10_2010'), +('W04', 'Fall while being carried or supported by other persons', 'ICD10_2010'), +('W04.0', 'Fall while being carried or supported by other persons, Home', 'ICD10_2010'), +('W04.1', 'Fall while being carried or supported by other persons, Residential Institution', 'ICD10_2010'), +('W04.2', 'Fall while being carried or supported by other persons, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W04.3', 'Fall while being carried or supported by other persons, Sports and Athletic Areas', 'ICD10_2010'), +('W04.4', 'Fall while being carried or supported by other persons, Street and Highway', 'ICD10_2010'), +('W04.5', 'Fall while being carried or supported by other persons, Trade and Service Area', 'ICD10_2010'), +('W04.6', 'Fall while being carried or supported by other persons, Industrial and Construction Area', 'ICD10_2010'), +('W04.7', 'Fall while being carried or supported by other persons, Farm', 'ICD10_2010'), +('W04.8', 'Fall while being carried or supported by other persons, Other Specified Area', 'ICD10_2010'), +('W04.9', 'Fall while being carried or supported by other persons, Unspecified Place', 'ICD10_2010'), +('W05', 'Fall involving wheelchair', 'ICD10_2010'), +('W05.0', 'Fall involving wheelchair, Home', 'ICD10_2010'), +('W05.1', 'Fall involving wheelchair, Residential Institution', 'ICD10_2010'), +('W05.2', 'Fall involving wheelchair, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W05.3', 'Fall involving wheelchair, Sports and Athletic Areas', 'ICD10_2010'), +('W05.4', 'Fall involving wheelchair, Street and Highway', 'ICD10_2010'), +('W05.5', 'Fall involving wheelchair, Trade and Service Area', 'ICD10_2010'), +('W05.6', 'Fall involving wheelchair, Industrial and Construction Area', 'ICD10_2010'), +('W05.7', 'Fall involving wheelchair, Farm', 'ICD10_2010'), +('W05.8', 'Fall involving wheelchair, Other Specified Area', 'ICD10_2010'), +('W05.9', 'Fall involving wheelchair, Unspecified Place', 'ICD10_2010'), +('W06', 'Fall involving bed', 'ICD10_2010'), +('W06.0', 'Fall involving bed, Home', 'ICD10_2010'), +('W06.1', 'Fall involving bed, Residential Institution', 'ICD10_2010'), +('W06.2', 'Fall involving bed, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W06.3', 'Fall involving bed, Sports and Athletic Areas', 'ICD10_2010'), +('W06.4', 'Fall involving bed, Street and Highway', 'ICD10_2010'), +('W06.5', 'Fall involving bed, Trade and Service Area', 'ICD10_2010'), +('W06.6', 'Fall involving bed, Industrial and Construction Area', 'ICD10_2010'), +('W06.7', 'Fall involving bed, Farm', 'ICD10_2010'), +('W06.8', 'Fall involving bed, Other Specified Area', 'ICD10_2010'), +('W06.9', 'Fall involving bed, Unspecified Place', 'ICD10_2010'), +('W07', 'Fall involving chair', 'ICD10_2010'), +('W07.0', 'Fall involving chair, Home', 'ICD10_2010'), +('W07.1', 'Fall involving chair, Residential Institution', 'ICD10_2010'), +('W07.2', 'Fall involving chair, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W07.3', 'Fall involving chair, Sports and Athletic Areas', 'ICD10_2010'), +('W07.4', 'Fall involving chair, Street and Highway', 'ICD10_2010'), +('W07.5', 'Fall involving chair, Trade and Service Area', 'ICD10_2010'), +('W07.6', 'Fall involving chair, Industrial and Construction Area', 'ICD10_2010'), +('W07.7', 'Fall involving chair, Farm', 'ICD10_2010'), +('W07.8', 'Fall involving chair, Other Specified Area', 'ICD10_2010'), +('W07.9', 'Fall involving chair, Unspecified Place', 'ICD10_2010'), +('W08', 'Fall involving other furniture', 'ICD10_2010'), +('W08.0', 'Fall involving other furniture, Home', 'ICD10_2010'), +('W08.1', 'Fall involving other furniture, Residential Institution', 'ICD10_2010'), +('W08.2', 'Fall involving other furniture, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W08.3', 'Fall involving other furniture, Sports and Athletic Areas', 'ICD10_2010'), +('W08.4', 'Fall involving other furniture, Street and Highway', 'ICD10_2010'), +('W08.5', 'Fall involving other furniture, Trade and Service Area', 'ICD10_2010'), +('W08.6', 'Fall involving other furniture, Industrial and Construction Area', 'ICD10_2010'), +('W08.7', 'Fall involving other furniture, Farm', 'ICD10_2010'), +('W08.8', 'Fall involving other furniture, Other Specified Area', 'ICD10_2010'), +('W08.9', 'Fall involving other furniture, Unspecified Place', 'ICD10_2010'), +('W09', 'Fall involving playground equipment', 'ICD10_2010'), +('W09.0', 'Fall involving playground equipment, Home', 'ICD10_2010'), +('W09.1', 'Fall involving playground equipment, Residential Institution', 'ICD10_2010'), +('W09.2', 'Fall involving playground equipment, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W09.3', 'Fall involving playground equipment, Sports and Athletic Areas', 'ICD10_2010'), +('W09.4', 'Fall involving playground equipment, Street and Highway', 'ICD10_2010'), +('W09.5', 'Fall involving playground equipment, Trade and Service Area', 'ICD10_2010'), +('W09.6', 'Fall involving playground equipment, Industrial and Construction Area', 'ICD10_2010'), +('W09.7', 'Fall involving playground equipment, Farm', 'ICD10_2010'), +('W09.8', 'Fall involving playground equipment, Other Specified Area', 'ICD10_2010'), +('W09.9', 'Fall involving playground equipment, Unspecified Place', 'ICD10_2010'), +('W10', 'Fall on and from stairs and steps', 'ICD10_2010'), +('W10.0', 'Fall on and from stairs and steps, Home', 'ICD10_2010'), +('W10.1', 'Fall on and from stairs and steps, Residential Institution', 'ICD10_2010'), +('W10.2', 'Fall on and from stairs and steps, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W10.3', 'Fall on and from stairs and steps, Sports and Athletic Areas', 'ICD10_2010'), +('W10.4', 'Fall on and from stairs and steps, Street and Highway', 'ICD10_2010'), +('W10.5', 'Fall on and from stairs and steps, Trade and Service Area', 'ICD10_2010'), +('W10.6', 'Fall on and from stairs and steps, Industrial and Construction Area', 'ICD10_2010'), +('W10.7', 'Fall on and from stairs and steps, Farm', 'ICD10_2010'), +('W10.8', 'Fall on and from stairs and steps, Other Specified Area', 'ICD10_2010'), +('W10.9', 'Fall on and from stairs and steps, Unspecified Place', 'ICD10_2010'), +('W11', 'Fall on and from ladder', 'ICD10_2010'), +('W11.0', 'Fall on and from ladder, Home', 'ICD10_2010'), +('W11.1', 'Fall on and from ladder, Residential Institution', 'ICD10_2010'), +('W11.2', 'Fall on and from ladder, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W11.3', 'Fall on and from ladder, Sports and Athletic Areas', 'ICD10_2010'), +('W11.4', 'Fall on and from ladder, Street and Highway', 'ICD10_2010'), +('W11.5', 'Fall on and from ladder, Trade and Service Area', 'ICD10_2010'), +('W11.6', 'Fall on and from ladder, Industrial and Construction Area', 'ICD10_2010'), +('W11.7', 'Fall on and from ladder, Farm', 'ICD10_2010'), +('W11.8', 'Fall on and from ladder, Other Specified Area', 'ICD10_2010'), +('W11.9', 'Fall on and from ladder, Unspecified Place', 'ICD10_2010'); +INSERT INTO `icd10` (`ID_ICD10`, `Diagnosa`, `Versi_ICD10`) VALUES +('W12', 'Fall on and from scaffolding', 'ICD10_2010'), +('W12.0', 'Fall on and from scaffolding, Home', 'ICD10_2010'), +('W12.1', 'Fall on and from scaffolding, Residential Institution', 'ICD10_2010'), +('W12.2', 'Fall on and from scaffolding, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W12.3', 'Fall on and from scaffolding, Sports and Athletic Areas', 'ICD10_2010'), +('W12.4', 'Fall on and from scaffolding, Street and Highway', 'ICD10_2010'), +('W12.5', 'Fall on and from scaffolding, Trade and Service Area', 'ICD10_2010'), +('W12.6', 'Fall on and from scaffolding, Industrial and Construction Area', 'ICD10_2010'), +('W12.7', 'Fall on and from scaffolding, Farm', 'ICD10_2010'), +('W12.8', 'Fall on and from scaffolding, Other Specified Area', 'ICD10_2010'), +('W12.9', 'Fall on and from scaffolding, Unspecified Place', 'ICD10_2010'), +('W13', 'Fall from, out of or through building or structure', 'ICD10_2010'), +('W13.0', 'Fall from, out of or through building or structure, Home', 'ICD10_2010'), +('W13.1', 'Fall from, out of or through building or structure, Residential Institution', 'ICD10_2010'), +('W13.2', 'Fall from, out of or through building or structure, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W13.3', 'Fall from, out of or through building or structure, Sports and Athletic Areas', 'ICD10_2010'), +('W13.4', 'Fall from, out of or through building or structure, Street and Highway', 'ICD10_2010'), +('W13.5', 'Fall from, out of or through building or structure, Trade and Service Area', 'ICD10_2010'), +('W13.6', 'Fall from, out of or through building or structure, Industrial and Construction Area', 'ICD10_2010'), +('W13.7', 'Fall from, out of or through building or structure, Farm', 'ICD10_2010'), +('W13.8', 'Fall from, out of or through building or structure, Other Specified Area', 'ICD10_2010'), +('W13.9', 'Fall from, out of or through building or structure, Unspecified Place', 'ICD10_2010'), +('W14', 'Fall from tree', 'ICD10_2010'), +('W14.0', 'Fall from tree, Home', 'ICD10_2010'), +('W14.1', 'Fall from tree, Residential Institution', 'ICD10_2010'), +('W14.2', 'Fall from tree, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W14.3', 'Fall from tree, Sports and Athletic Areas', 'ICD10_2010'), +('W14.4', 'Fall from tree, Street and Highway', 'ICD10_2010'), +('W14.5', 'Fall from tree, Trade and Service Area', 'ICD10_2010'), +('W14.6', 'Fall from tree, Industrial and Construction Area', 'ICD10_2010'), +('W14.7', 'Fall from tree, Farm', 'ICD10_2010'), +('W14.8', 'Fall from tree, Other Specified Area', 'ICD10_2010'), +('W14.9', 'Fall from tree, Unspecified Place', 'ICD10_2010'), +('W15', 'Fall from cliff', 'ICD10_2010'), +('W15.0', 'Fall from cliff, Home', 'ICD10_2010'), +('W15.1', 'Fall from cliff, Residential Institution', 'ICD10_2010'), +('W15.2', 'Fall from cliff, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W15.3', 'Fall from cliff, Sports and Athletic Areas', 'ICD10_2010'), +('W15.4', 'Fall from cliff, Street and Highway', 'ICD10_2010'), +('W15.5', 'Fall from cliff, Trade and Service Area', 'ICD10_2010'), +('W15.6', 'Fall from cliff, Industrial and Construction Area', 'ICD10_2010'), +('W15.7', 'Fall from cliff, Farm', 'ICD10_2010'), +('W15.8', 'Fall from cliff, Other Specified Area', 'ICD10_2010'), +('W15.9', 'Fall from cliff, Unspecified Place', 'ICD10_2010'), +('W16', 'Diving or jumping into water causing injury other than drowning or submersion', 'ICD10_2010'), +('W16.0', 'Diving or jumping into water causing injury other than drowning or submersion, Home', 'ICD10_2010'), +('W16.1', 'Diving or jumping into water causing injury other than drowning or submersion, Residential Institution', 'ICD10_2010'), +('W16.2', 'Diving or jumping into water causing injury other than drowning or submersion, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W16.3', 'Diving or jumping into water causing injury other than drowning or submersion, Sports and Athletic Areas', 'ICD10_2010'), +('W16.4', 'Diving or jumping into water causing injury other than drowning or submersion, Street and Highway', 'ICD10_2010'), +('W16.5', 'Diving or jumping into water causing injury other than drowning or submersion, Trade and Service Area', 'ICD10_2010'), +('W16.6', 'Diving or jumping into water causing injury other than drowning or submersion, Industrial and Construction Area', 'ICD10_2010'), +('W16.7', 'Diving or jumping into water causing injury other than drowning or submersion, Farm', 'ICD10_2010'), +('W16.8', 'Diving or jumping into water causing injury other than drowning or submersion, Other Specified Area', 'ICD10_2010'), +('W16.9', 'Diving or jumping into water causing injury other than drowning or submersion, Unspecified Place', 'ICD10_2010'), +('W17', 'Other fall from one level to another', 'ICD10_2010'), +('W17.0', 'Other fall from one level to another, Home', 'ICD10_2010'), +('W17.1', 'Other fall from one level to another, Residential Institution', 'ICD10_2010'), +('W17.2', 'Other fall from one level to another, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W17.3', 'Other fall from one level to another, Sports and Athletic Areas', 'ICD10_2010'), +('W17.4', 'Other fall from one level to another, Street and Highway', 'ICD10_2010'), +('W17.5', 'Other fall from one level to another, Trade and Service Area', 'ICD10_2010'), +('W17.6', 'Other fall from one level to another, Industrial and Construction Area', 'ICD10_2010'), +('W17.7', 'Other fall from one level to another, Farm', 'ICD10_2010'), +('W17.8', 'Other fall from one level to another, Other Specified Area', 'ICD10_2010'), +('W17.9', 'Other fall from one level to another, Unspecified Place', 'ICD10_2010'), +('W18', 'Other fall on same level', 'ICD10_2010'), +('W18.0', 'Other fall on same level, Home', 'ICD10_2010'), +('W18.1', 'Other fall on same level, Residential Institution', 'ICD10_2010'), +('W18.2', 'Other fall on same level, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W18.3', 'Other fall on same level, Sports and Athletic Areas', 'ICD10_2010'), +('W18.4', 'Other fall on same level, Street and Highway', 'ICD10_2010'), +('W18.5', 'Other fall on same level, Trade and Service Area', 'ICD10_2010'), +('W18.6', 'Other fall on same level, Industrial and Construction Area', 'ICD10_2010'), +('W18.7', 'Other fall on same level, Farm', 'ICD10_2010'), +('W18.8', 'Other fall on same level, Other Specified Area', 'ICD10_2010'), +('W18.9', 'Other fall on same level, Unspecified Place', 'ICD10_2010'), +('W19', 'Unspecified fall', 'ICD10_2010'), +('W19.0', 'Unspecified fall, Home', 'ICD10_2010'), +('W19.1', 'Unspecified fall, Residential Institution', 'ICD10_2010'), +('W19.2', 'Unspecified fall, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W19.3', 'Unspecified fall, Sports and Athletic Areas', 'ICD10_2010'), +('W19.4', 'Unspecified fall, Street and Highway', 'ICD10_2010'), +('W19.5', 'Unspecified fall, Trade and Service Area', 'ICD10_2010'), +('W19.6', 'Unspecified fall, Industrial and Construction Area', 'ICD10_2010'), +('W19.7', 'Unspecified fall, Farm', 'ICD10_2010'), +('W19.8', 'Unspecified fall, Other Specified Area', 'ICD10_2010'), +('W19.9', 'Unspecified fall, Unspecified Place', 'ICD10_2010'), +('W20', 'Struck by thrown, projected or falling object', 'ICD10_2010'), +('W20.0', 'Struck by thrown, projected or falling object, Home', 'ICD10_2010'), +('W20.1', 'Struck by thrown, projected or falling object, Residential Institution', 'ICD10_2010'), +('W20.2', 'Struck by thrown, projected or falling object, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W20.3', 'Struck by thrown, projected or falling object, Sports and Athletic Areas', 'ICD10_2010'), +('W20.4', 'Struck by thrown, projected or falling object, Street and Highway', 'ICD10_2010'), +('W20.5', 'Struck by thrown, projected or falling object, Trade and Service Area', 'ICD10_2010'), +('W20.6', 'Struck by thrown, projected or falling object, Industrial and Construction Area', 'ICD10_2010'), +('W20.7', 'Struck by thrown, projected or falling object, Farm', 'ICD10_2010'), +('W20.8', 'Struck by thrown, projected or falling object, Other Specified Area', 'ICD10_2010'), +('W20.9', 'Struck by thrown, projected or falling object, Unspecified Place', 'ICD10_2010'), +('W21', 'Striking against or struck by sports equipment', 'ICD10_2010'), +('W21.0', 'Striking against or struck by sports equipment, Home', 'ICD10_2010'), +('W21.1', 'Striking against or struck by sports equipment, Residential Institution', 'ICD10_2010'), +('W21.2', 'Striking against or struck by sports equipment, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W21.3', 'Striking against or struck by sports equipment, Sports and Athletic Areas', 'ICD10_2010'), +('W21.4', 'Striking against or struck by sports equipment, Street and Highway', 'ICD10_2010'), +('W21.5', 'Striking against or struck by sports equipment, Trade and Service Area', 'ICD10_2010'), +('W21.6', 'Striking against or struck by sports equipment, Industrial and Construction Area', 'ICD10_2010'), +('W21.7', 'Striking against or struck by sports equipment, Farm', 'ICD10_2010'), +('W21.8', 'Striking against or struck by sports equipment, Other Specified Area', 'ICD10_2010'), +('W21.9', 'Striking against or struck by sports equipment, Unspecified Place', 'ICD10_2010'), +('W22', 'Striking against or struck by other objects', 'ICD10_2010'), +('W22.0', 'Striking against or struck by other objects, Home', 'ICD10_2010'), +('W22.1', 'Striking against or struck by other objects, Residential Institution', 'ICD10_2010'), +('W22.2', 'Striking against or struck by other objects, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W22.3', 'Striking against or struck by other objects, Sports and Athletic Areas', 'ICD10_2010'), +('W22.4', 'Striking against or struck by other objects, Street and Highway', 'ICD10_2010'), +('W22.5', 'Striking against or struck by other objects, Trade and Service Area', 'ICD10_2010'), +('W22.6', 'Striking against or struck by other objects, Industrial and Construction Area', 'ICD10_2010'), +('W22.7', 'Striking against or struck by other objects, Farm', 'ICD10_2010'), +('W22.8', 'Striking against or struck by other objects, Other Specified Area', 'ICD10_2010'), +('W22.9', 'Striking against or struck by other objects, Unspecified Place', 'ICD10_2010'), +('W23', 'Caught, crushed, jammed or pinched in or between objects', 'ICD10_2010'), +('W23.0', 'Caught, crushed, jammed or pinched in or between objects, Home', 'ICD10_2010'), +('W23.1', 'Caught, crushed, jammed or pinched in or between objects, Residential Institution', 'ICD10_2010'), +('W23.2', 'Caught, crushed, jammed or pinched in or between objects, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W23.3', 'Caught, crushed, jammed or pinched in or between objects, Sports and Athletic Areas', 'ICD10_2010'), +('W23.4', 'Caught, crushed, jammed or pinched in or between objects, Street and Highway', 'ICD10_2010'), +('W23.5', 'Caught, crushed, jammed or pinched in or between objects, Trade and Service Area', 'ICD10_2010'), +('W23.6', 'Caught, crushed, jammed or pinched in or between objects, Industrial and Construction Area', 'ICD10_2010'), +('W23.7', 'Caught, crushed, jammed or pinched in or between objects, Farm', 'ICD10_2010'), +('W23.8', 'Caught, crushed, jammed or pinched in or between objects, Other Specified Area', 'ICD10_2010'), +('W23.9', 'Caught, crushed, jammed or pinched in or between objects, Unspecified Place', 'ICD10_2010'), +('W24', 'Contact with lifting and transmission devices, not elsewhere classified', 'ICD10_2010'), +('W24.0', 'Contact with lifting and transmission devices, not elsewhere classified, Home', 'ICD10_2010'), +('W24.1', 'Contact with lifting and transmission devices, not elsewhere classified, Residential Institution', 'ICD10_2010'), +('W24.2', 'Contact with lifting and transmission devices, not elsewhere classified, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W24.3', 'Contact with lifting and transmission devices, not elsewhere classified, Sports and Athletic Areas', 'ICD10_2010'), +('W24.4', 'Contact with lifting and transmission devices, not elsewhere classified, Street and Highway', 'ICD10_2010'), +('W24.5', 'Contact with lifting and transmission devices, not elsewhere classified, Trade and Service Area', 'ICD10_2010'), +('W24.6', 'Contact with lifting and transmission devices, not elsewhere classified, Industrial and Construction Area', 'ICD10_2010'), +('W24.7', 'Contact with lifting and transmission devices, not elsewhere classified, Farm', 'ICD10_2010'), +('W24.8', 'Contact with lifting and transmission devices, not elsewhere classified, Other Specified Area', 'ICD10_2010'), +('W24.9', 'Contact with lifting and transmission devices, not elsewhere classified, Unspecified Place', 'ICD10_2010'), +('W25', 'Contact with sharp glass', 'ICD10_2010'), +('W25.0', 'Contact with sharp glass, Home', 'ICD10_2010'), +('W25.1', 'Contact with sharp glass, Residential Institution', 'ICD10_2010'), +('W25.2', 'Contact with sharp glass, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W25.3', 'Contact with sharp glass, Sports and Athletic Areas', 'ICD10_2010'), +('W25.4', 'Contact with sharp glass, Street and Highway', 'ICD10_2010'), +('W25.5', 'Contact with sharp glass, Trade and Service Area', 'ICD10_2010'), +('W25.6', 'Contact with sharp glass, Industrial and Construction Area', 'ICD10_2010'), +('W25.7', 'Contact with sharp glass, Farm', 'ICD10_2010'), +('W25.8', 'Contact with sharp glass, Other Specified Area', 'ICD10_2010'), +('W25.9', 'Contact with sharp glass, Unspecified Place', 'ICD10_2010'), +('W26', 'Contact with knife, sword or dagger', 'ICD10_2010'), +('W26.0', 'Contact with knife, sword or dagger, Home', 'ICD10_2010'), +('W26.1', 'Contact with knife, sword or dagger, Residential Institution', 'ICD10_2010'), +('W26.2', 'Contact with knife, sword or dagger, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W26.3', 'Contact with knife, sword or dagger, Sports and Athletic Areas', 'ICD10_2010'), +('W26.4', 'Contact with knife, sword or dagger, Street and Highway', 'ICD10_2010'), +('W26.5', 'Contact with knife, sword or dagger, Trade and Service Area', 'ICD10_2010'), +('W26.6', 'Contact with knife, sword or dagger, Industrial and Construction Area', 'ICD10_2010'), +('W26.7', 'Contact with knife, sword or dagger, Farm', 'ICD10_2010'), +('W26.8', 'Contact with knife, sword or dagger, Other Specified Area', 'ICD10_2010'), +('W26.9', 'Contact with knife, sword or dagger, Unspecified Place', 'ICD10_2010'), +('W27', 'Contact with nonpowered hand tool', 'ICD10_2010'), +('W27.0', 'Contact with nonpowered hand tool, Home', 'ICD10_2010'), +('W27.1', 'Contact with nonpowered hand tool, Residential Institution', 'ICD10_2010'), +('W27.2', 'Contact with nonpowered hand tool, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W27.3', 'Contact with nonpowered hand tool, Sports and Athletic Areas', 'ICD10_2010'), +('W27.4', 'Contact with nonpowered hand tool, Street and Highway', 'ICD10_2010'), +('W27.5', 'Contact with nonpowered hand tool, Trade and Service Area', 'ICD10_2010'), +('W27.6', 'Contact with nonpowered hand tool, Industrial and Construction Area', 'ICD10_2010'), +('W27.7', 'Contact with nonpowered hand tool, Farm', 'ICD10_2010'), +('W27.8', 'Contact with nonpowered hand tool, Other Specified Area', 'ICD10_2010'), +('W27.9', 'Contact with nonpowered hand tool, Unspecified Place', 'ICD10_2010'), +('W28', 'Contact with powered lawnmower', 'ICD10_2010'), +('W28.0', 'Contact with powered lawnmower, Home', 'ICD10_2010'), +('W28.1', 'Contact with powered lawnmower, Residential Institution', 'ICD10_2010'), +('W28.2', 'Contact with powered lawnmower, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W28.3', 'Contact with powered lawnmower, Sports and Athletic Areas', 'ICD10_2010'), +('W28.4', 'Contact with powered lawnmower, Street and Highway', 'ICD10_2010'), +('W28.5', 'Contact with powered lawnmower, Trade and Service Area', 'ICD10_2010'), +('W28.6', 'Contact with powered lawnmower, Industrial and Construction Area', 'ICD10_2010'), +('W28.7', 'Contact with powered lawnmower, Farm', 'ICD10_2010'), +('W28.8', 'Contact with powered lawnmower, Other Specified Area', 'ICD10_2010'), +('W28.9', 'Contact with powered lawnmower, Unspecified Place', 'ICD10_2010'), +('W29', 'Contact with other powered hand tools and household machinery', 'ICD10_2010'), +('W29.0', 'Contact with other powered hand tools and household machinery, Home', 'ICD10_2010'), +('W29.1', 'Contact with other powered hand tools and household machinery, Residential Institution', 'ICD10_2010'), +('W29.2', 'Contact with other powered hand tools and household machinery, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W29.3', 'Contact with other powered hand tools and household machinery, Sports and Athletic Areas', 'ICD10_2010'), +('W29.4', 'Contact with other powered hand tools and household machinery, Street and Highway', 'ICD10_2010'), +('W29.5', 'Contact with other powered hand tools and household machinery, Trade and Service Area', 'ICD10_2010'), +('W29.6', 'Contact with other powered hand tools and household machinery, Industrial and Construction Area', 'ICD10_2010'), +('W29.7', 'Contact with other powered hand tools and household machinery, Farm', 'ICD10_2010'), +('W29.8', 'Contact with other powered hand tools and household machinery, Other Specified Area', 'ICD10_2010'), +('W29.9', 'Contact with other powered hand tools and household machinery, Unspecified Place', 'ICD10_2010'), +('W30', 'Contact with agricultural machinery', 'ICD10_2010'), +('W30.0', 'Contact with agricultural machinery, Home', 'ICD10_2010'), +('W30.1', 'Contact with agricultural machinery, Residential Institution', 'ICD10_2010'), +('W30.2', 'Contact with agricultural machinery, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W30.3', 'Contact with agricultural machinery, Sports and Athletic Areas', 'ICD10_2010'), +('W30.4', 'Contact with agricultural machinery, Street and Highway', 'ICD10_2010'), +('W30.5', 'Contact with agricultural machinery, Trade and Service Area', 'ICD10_2010'), +('W30.6', 'Contact with agricultural machinery, Industrial and Construction Area', 'ICD10_2010'), +('W30.7', 'Contact with agricultural machinery, Farm', 'ICD10_2010'), +('W30.8', 'Contact with agricultural machinery, Other Specified Area', 'ICD10_2010'), +('W30.9', 'Contact with agricultural machinery, Unspecified Place', 'ICD10_2010'), +('W31', 'Contact with other and unspecified machinery', 'ICD10_2010'), +('W31.0', 'Contact with other and unspecified machinery, Home', 'ICD10_2010'), +('W31.1', 'Contact with other and unspecified machinery, Residential Institution', 'ICD10_2010'), +('W31.2', 'Contact with other and unspecified machinery, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W31.3', 'Contact with other and unspecified machinery, Sports and Athletic Areas', 'ICD10_2010'), +('W31.4', 'Contact with other and unspecified machinery, Street and Highway', 'ICD10_2010'), +('W31.5', 'Contact with other and unspecified machinery, Trade and Service Area', 'ICD10_2010'), +('W31.6', 'Contact with other and unspecified machinery, Industrial and Construction Area', 'ICD10_2010'), +('W31.7', 'Contact with other and unspecified machinery, Farm', 'ICD10_2010'), +('W31.8', 'Contact with other and unspecified machinery, Other Specified Area', 'ICD10_2010'), +('W31.9', 'Contact with other and unspecified machinery, Unspecified Place', 'ICD10_2010'), +('W32', 'Handgun discharge', 'ICD10_2010'), +('W32.0', 'Handgun discharge, Home', 'ICD10_2010'), +('W32.1', 'Handgun discharge, Residential Institution', 'ICD10_2010'), +('W32.2', 'Handgun discharge, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W32.3', 'Handgun discharge, Sports and Athletic Areas', 'ICD10_2010'), +('W32.4', 'Handgun discharge, Street and Highway', 'ICD10_2010'), +('W32.5', 'Handgun discharge, Trade and Service Area', 'ICD10_2010'), +('W32.6', 'Handgun discharge, Industrial and Construction Area', 'ICD10_2010'), +('W32.7', 'Handgun discharge, Farm', 'ICD10_2010'), +('W32.8', 'Handgun discharge, Other Specified Area', 'ICD10_2010'), +('W32.9', 'Handgun discharge, Unspecified Place', 'ICD10_2010'), +('W33', 'Rifle, shotgun and larger firearm discharge', 'ICD10_2010'), +('W33.0', 'Rifle, shotgun and larger firearm discharge, Home', 'ICD10_2010'), +('W33.1', 'Rifle, shotgun and larger firearm discharge, Residential Institution', 'ICD10_2010'), +('W33.2', 'Rifle, shotgun and larger firearm discharge, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W33.3', 'Rifle, shotgun and larger firearm discharge, Sports and Athletic Areas', 'ICD10_2010'), +('W33.4', 'Rifle, shotgun and larger firearm discharge, Street and Highway', 'ICD10_2010'), +('W33.5', 'Rifle, shotgun and larger firearm discharge, Trade and Service Area', 'ICD10_2010'), +('W33.6', 'Rifle, shotgun and larger firearm discharge, Industrial and Construction Area', 'ICD10_2010'), +('W33.7', 'Rifle, shotgun and larger firearm discharge, Farm', 'ICD10_2010'), +('W33.8', 'Rifle, shotgun and larger firearm discharge, Other Specified Area', 'ICD10_2010'), +('W33.9', 'Rifle, shotgun and larger firearm discharge, Unspecified Place', 'ICD10_2010'), +('W34', 'Discharge from other and unspecified firearms', 'ICD10_2010'), +('W34.0', 'Discharge from other and unspecified firearms, Home', 'ICD10_2010'), +('W34.1', 'Discharge from other and unspecified firearms, Residential Institution', 'ICD10_2010'), +('W34.2', 'Discharge from other and unspecified firearms, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W34.3', 'Discharge from other and unspecified firearms, Sports and Athletic Areas', 'ICD10_2010'), +('W34.4', 'Discharge from other and unspecified firearms, Street and Highway', 'ICD10_2010'), +('W34.5', 'Discharge from other and unspecified firearms, Trade and Service Area', 'ICD10_2010'), +('W34.6', 'Discharge from other and unspecified firearms, Industrial and Construction Area', 'ICD10_2010'), +('W34.7', 'Discharge from other and unspecified firearms, Farm', 'ICD10_2010'), +('W34.8', 'Discharge from other and unspecified firearms, Other Specified Area', 'ICD10_2010'), +('W34.9', 'Discharge from other and unspecified firearms, Unspecified Place', 'ICD10_2010'), +('W35', 'Explosion and rupture of boiler', 'ICD10_2010'), +('W35.0', 'Explosion and rupture of boiler, Home', 'ICD10_2010'), +('W35.1', 'Explosion and rupture of boiler, Residential Institution', 'ICD10_2010'), +('W35.2', 'Explosion and rupture of boiler, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W35.3', 'Explosion and rupture of boiler, Sports and Athletic Areas', 'ICD10_2010'), +('W35.4', 'Explosion and rupture of boiler, Street and Highway', 'ICD10_2010'), +('W35.5', 'Explosion and rupture of boiler, Trade and Service Area', 'ICD10_2010'), +('W35.6', 'Explosion and rupture of boiler, Industrial and Construction Area', 'ICD10_2010'), +('W35.7', 'Explosion and rupture of boiler, Farm', 'ICD10_2010'), +('W35.8', 'Explosion and rupture of boiler, Other Specified Area', 'ICD10_2010'), +('W35.9', 'Explosion and rupture of boiler, Unspecified Place', 'ICD10_2010'), +('W36', 'Explosion and rupture of gas cylinder', 'ICD10_2010'), +('W36.0', 'Explosion and rupture of gas cylinder, Home', 'ICD10_2010'), +('W36.1', 'Explosion and rupture of gas cylinder, Residential Institution', 'ICD10_2010'), +('W36.2', 'Explosion and rupture of gas cylinder, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W36.3', 'Explosion and rupture of gas cylinder, Sports and Athletic Areas', 'ICD10_2010'), +('W36.4', 'Explosion and rupture of gas cylinder, Street and Highway', 'ICD10_2010'), +('W36.5', 'Explosion and rupture of gas cylinder, Trade and Service Area', 'ICD10_2010'), +('W36.6', 'Explosion and rupture of gas cylinder, Industrial and Construction Area', 'ICD10_2010'), +('W36.7', 'Explosion and rupture of gas cylinder, Farm', 'ICD10_2010'), +('W36.8', 'Explosion and rupture of gas cylinder, Other Specified Area', 'ICD10_2010'), +('W36.9', 'Explosion and rupture of gas cylinder, Unspecified Place', 'ICD10_2010'), +('W37', 'Explosion and rupture of pressurized tyre, pipe or hose', 'ICD10_2010'), +('W37.0', 'Explosion and rupture of pressurized tyre, pipe or hose, Home', 'ICD10_2010'), +('W37.1', 'Explosion and rupture of pressurized tyre, pipe or hose, Residential Institution', 'ICD10_2010'), +('W37.2', 'Explosion and rupture of pressurized tyre, pipe or hose, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W37.3', 'Explosion and rupture of pressurized tyre, pipe or hose, Sports and Athletic Areas', 'ICD10_2010'), +('W37.4', 'Explosion and rupture of pressurized tyre, pipe or hose, Street and Highway', 'ICD10_2010'), +('W37.5', 'Explosion and rupture of pressurized tyre, pipe or hose, Trade and Service Area', 'ICD10_2010'), +('W37.6', 'Explosion and rupture of pressurized tyre, pipe or hose, Industrial and Construction Area', 'ICD10_2010'), +('W37.7', 'Explosion and rupture of pressurized tyre, pipe or hose, Farm', 'ICD10_2010'), +('W37.8', 'Explosion and rupture of pressurized tyre, pipe or hose, Other Specified Area', 'ICD10_2010'), +('W37.9', 'Explosion and rupture of pressurized tyre, pipe or hose, Unspecified Place', 'ICD10_2010'), +('W38', 'Explosion and rupture of other specified pressurized devices', 'ICD10_2010'), +('W38.0', 'Explosion and rupture of other specified pressurized devices, Home', 'ICD10_2010'), +('W38.1', 'Explosion and rupture of other specified pressurized devices, Residential Institution', 'ICD10_2010'), +('W38.2', 'Explosion and rupture of other specified pressurized devices, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W38.3', 'Explosion and rupture of other specified pressurized devices, Sports and Athletic Areas', 'ICD10_2010'), +('W38.4', 'Explosion and rupture of other specified pressurized devices, Street and Highway', 'ICD10_2010'), +('W38.5', 'Explosion and rupture of other specified pressurized devices, Trade and Service Area', 'ICD10_2010'), +('W38.6', 'Explosion and rupture of other specified pressurized devices, Industrial and Construction Area', 'ICD10_2010'), +('W38.7', 'Explosion and rupture of other specified pressurized devices, Farm', 'ICD10_2010'), +('W38.8', 'Explosion and rupture of other specified pressurized devices, Other Specified Area', 'ICD10_2010'), +('W38.9', 'Explosion and rupture of other specified pressurized devices, Unspecified Place', 'ICD10_2010'), +('W39', 'Discharge of firework', 'ICD10_2010'), +('W39.0', 'Discharge of firework, Home', 'ICD10_2010'), +('W39.1', 'Discharge of firework, Residential Institution', 'ICD10_2010'), +('W39.2', 'Discharge of firework, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W39.3', 'Discharge of firework, Sports and Athletic Areas', 'ICD10_2010'), +('W39.4', 'Discharge of firework, Street and Highway', 'ICD10_2010'), +('W39.5', 'Discharge of firework, Trade and Service Area', 'ICD10_2010'), +('W39.6', 'Discharge of firework, Industrial and Construction Area', 'ICD10_2010'), +('W39.7', 'Discharge of firework, Farm', 'ICD10_2010'), +('W39.8', 'Discharge of firework, Other Specified Area', 'ICD10_2010'), +('W39.9', 'Discharge of firework, Unspecified Place', 'ICD10_2010'), +('W40', 'Explosion of other materials', 'ICD10_2010'), +('W40.0', 'Explosion of other materials, Home', 'ICD10_2010'), +('W40.1', 'Explosion of other materials, Residential Institution', 'ICD10_2010'), +('W40.2', 'Explosion of other materials, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W40.3', 'Explosion of other materials, Sports and Athletic Areas', 'ICD10_2010'), +('W40.4', 'Explosion of other materials, Street and Highway', 'ICD10_2010'), +('W40.5', 'Explosion of other materials, Trade and Service Area', 'ICD10_2010'), +('W40.6', 'Explosion of other materials, Industrial and Construction Area', 'ICD10_2010'), +('W40.7', 'Explosion of other materials, Farm', 'ICD10_2010'), +('W40.8', 'Explosion of other materials, Other Specified Area', 'ICD10_2010'), +('W40.9', 'Explosion of other materials, Unspecified Place', 'ICD10_2010'), +('W41', 'Exposure to high-pressure jet', 'ICD10_2010'), +('W41.0', 'Exposure to high-pressure jet, Home', 'ICD10_2010'), +('W41.1', 'Exposure to high-pressure jet, Residential Institution', 'ICD10_2010'), +('W41.2', 'Exposure to high-pressure jet, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W41.3', 'Exposure to high-pressure jet, Sports and Athletic Areas', 'ICD10_2010'), +('W41.4', 'Exposure to high-pressure jet, Street and Highway', 'ICD10_2010'), +('W41.5', 'Exposure to high-pressure jet, Trade and Service Area', 'ICD10_2010'), +('W41.6', 'Exposure to high-pressure jet, Industrial and Construction Area', 'ICD10_2010'), +('W41.7', 'Exposure to high-pressure jet, Farm', 'ICD10_2010'), +('W41.8', 'Exposure to high-pressure jet, Other Specified Area', 'ICD10_2010'), +('W41.9', 'Exposure to high-pressure jet, Unspecified Place', 'ICD10_2010'), +('W42', 'Exposure to noise', 'ICD10_2010'), +('W42.0', 'Exposure to noise, Home', 'ICD10_2010'), +('W42.1', 'Exposure to noise, Residential Institution', 'ICD10_2010'), +('W42.2', 'Exposure to noise, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W42.3', 'Exposure to noise, Sports and Athletic Areas', 'ICD10_2010'), +('W42.4', 'Exposure to noise, Street and Highway', 'ICD10_2010'), +('W42.5', 'Exposure to noise, Trade and Service Area', 'ICD10_2010'), +('W42.6', 'Exposure to noise, Industrial and Construction Area', 'ICD10_2010'), +('W42.7', 'Exposure to noise, Farm', 'ICD10_2010'), +('W42.8', 'Exposure to noise, Other Specified Area', 'ICD10_2010'), +('W42.9', 'Exposure to noise, Unspecified Place', 'ICD10_2010'), +('W43', 'Exposure to vibration', 'ICD10_2010'), +('W43.0', 'Exposure to vibration, Home', 'ICD10_2010'), +('W43.1', 'Exposure to vibration, Residential Institution', 'ICD10_2010'), +('W43.2', 'Exposure to vibration, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W43.3', 'Exposure to vibration, Sports and Athletic Areas', 'ICD10_2010'), +('W43.4', 'Exposure to vibration, Street and Highway', 'ICD10_2010'), +('W43.5', 'Exposure to vibration, Trade and Service Area', 'ICD10_2010'), +('W43.6', 'Exposure to vibration, Industrial and Construction Area', 'ICD10_2010'), +('W43.7', 'Exposure to vibration, Farm', 'ICD10_2010'), +('W43.8', 'Exposure to vibration, Other Specified Area', 'ICD10_2010'), +('W43.9', 'Exposure to vibration, Unspecified Place', 'ICD10_2010'), +('W44', 'Foreign body entering into or through eye or natural orifice', 'ICD10_2010'), +('W44.0', 'Foreign body entering into or through eye or natural orifice, Home', 'ICD10_2010'), +('W44.1', 'Foreign body entering into or through eye or natural orifice, Residential Institution', 'ICD10_2010'), +('W44.2', 'Foreign body entering into or through eye or natural orifice, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W44.3', 'Foreign body entering into or through eye or natural orifice, Sports and Athletic Areas', 'ICD10_2010'), +('W44.4', 'Foreign body entering into or through eye or natural orifice, Street and Highway', 'ICD10_2010'), +('W44.5', 'Foreign body entering into or through eye or natural orifice, Trade and Service Area', 'ICD10_2010'), +('W44.6', 'Foreign body entering into or through eye or natural orifice, Industrial and Construction Area', 'ICD10_2010'), +('W44.7', 'Foreign body entering into or through eye or natural orifice, Farm', 'ICD10_2010'), +('W44.8', 'Foreign body entering into or through eye or natural orifice, Other Specified Area', 'ICD10_2010'), +('W44.9', 'Foreign body entering into or through eye or natural orifice, Unspecified Place', 'ICD10_2010'), +('W45', 'Foreign body or object entering through skin', 'ICD10_2010'), +('W45.0', 'Foreign body or object entering through skin, Home', 'ICD10_2010'), +('W45.1', 'Foreign body or object entering through skin, Residential Institution', 'ICD10_2010'), +('W45.2', 'Foreign body or object entering through skin, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W45.3', 'Foreign body or object entering through skin, Sports and Athletic Areas', 'ICD10_2010'), +('W45.4', 'Foreign body or object entering through skin, Street and Highway', 'ICD10_2010'), +('W45.5', 'Foreign body or object entering through skin, Trade and Service Area', 'ICD10_2010'), +('W45.6', 'Foreign body or object entering through skin, Industrial and Construction Area', 'ICD10_2010'), +('W45.7', 'Foreign body or object entering through skin, Farm', 'ICD10_2010'), +('W45.8', 'Foreign body or object entering through skin, Other Specified Area', 'ICD10_2010'), +('W45.9', 'Foreign body or object entering through skin, Unspecified Place', 'ICD10_2010'), +('W46', 'Contact with hypodermic needle', 'ICD10_2010'), +('W46.0', 'Contact with hypodermic needle, Home', 'ICD10_2010'), +('W46.1', 'Contact with hypodermic needle, Residential Institution', 'ICD10_2010'), +('W46.2', 'Contact with hypodermic needle, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W46.3', 'Contact with hypodermic needle, Sports and Athletic Areas', 'ICD10_2010'), +('W46.4', 'Contact with hypodermic needle, Street and Highway', 'ICD10_2010'), +('W46.5', 'Contact with hypodermic needle, Trade and Service Area', 'ICD10_2010'), +('W46.6', 'Contact with hypodermic needle, Industrial and Construction Area', 'ICD10_2010'), +('W46.7', 'Contact with hypodermic needle, Farm', 'ICD10_2010'), +('W46.8', 'Contact with hypodermic needle, Other Specified Area', 'ICD10_2010'), +('W46.9', 'Contact with hypodermic needle, Unspecified Place', 'ICD10_2010'), +('W49', 'Exposure to other and unspecified inanimate mechanical forces', 'ICD10_2010'), +('W49.0', 'Exposure to other and unspecified inanimate mechanical forces, Home', 'ICD10_2010'), +('W49.1', 'Exposure to other and unspecified inanimate mechanical forces, Residential Institution', 'ICD10_2010'), +('W49.2', 'Exposure to other and unspecified inanimate mechanical forces, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W49.3', 'Exposure to other and unspecified inanimate mechanical forces, Sports and Athletic Areas', 'ICD10_2010'), +('W49.4', 'Exposure to other and unspecified inanimate mechanical forces, Street and Highway', 'ICD10_2010'), +('W49.5', 'Exposure to other and unspecified inanimate mechanical forces, Trade and Service Area', 'ICD10_2010'), +('W49.6', 'Exposure to other and unspecified inanimate mechanical forces, Industrial and Construction Area', 'ICD10_2010'), +('W49.7', 'Exposure to other and unspecified inanimate mechanical forces, Farm', 'ICD10_2010'), +('W49.8', 'Exposure to other and unspecified inanimate mechanical forces, Other Specified Area', 'ICD10_2010'), +('W49.9', 'Exposure to other and unspecified inanimate mechanical forces, Unspecified Place', 'ICD10_2010'), +('W50', 'Hit, struck, kicked, twisted, bitten or scratched by another person', 'ICD10_2010'), +('W50.0', 'Hit, struck, kicked, twisted, bitten or scratched by another person, Home', 'ICD10_2010'), +('W50.1', 'Hit, struck, kicked, twisted, bitten or scratched by another person, Residential Institution', 'ICD10_2010'), +('W50.2', 'Hit, struck, kicked, twisted, bitten or scratched by another person, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W50.3', 'Hit, struck, kicked, twisted, bitten or scratched by another person, Sports and Athletic Areas', 'ICD10_2010'), +('W50.4', 'Hit, struck, kicked, twisted, bitten or scratched by another person, Street and Highway', 'ICD10_2010'), +('W50.5', 'Hit, struck, kicked, twisted, bitten or scratched by another person, Trade and Service Area', 'ICD10_2010'), +('W50.6', 'Hit, struck, kicked, twisted, bitten or scratched by another person, Industrial and Construction Area', 'ICD10_2010'), +('W50.7', 'Hit, struck, kicked, twisted, bitten or scratched by another person, Farm', 'ICD10_2010'), +('W50.8', 'Hit, struck, kicked, twisted, bitten or scratched by another person, Other Specified Area', 'ICD10_2010'), +('W50.9', 'Hit, struck, kicked, twisted, bitten or scratched by another person, Unspecified Place', 'ICD10_2010'), +('W51', 'Striking against or bumped into by another person', 'ICD10_2010'), +('W51.0', 'Striking against or bumped into by another person, Home', 'ICD10_2010'), +('W51.1', 'Striking against or bumped into by another person, Residential Institution', 'ICD10_2010'), +('W51.2', 'Striking against or bumped into by another person, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W51.3', 'Striking against or bumped into by another person, Sports and Athletic Areas', 'ICD10_2010'), +('W51.4', 'Striking against or bumped into by another person, Street and Highway', 'ICD10_2010'), +('W51.5', 'Striking against or bumped into by another person, Trade and Service Area', 'ICD10_2010'), +('W51.6', 'Striking against or bumped into by another person, Industrial and Construction Area', 'ICD10_2010'), +('W51.7', 'Striking against or bumped into by another person, Farm', 'ICD10_2010'), +('W51.8', 'Striking against or bumped into by another person, Other Specified Area', 'ICD10_2010'), +('W51.9', 'Striking against or bumped into by another person, Unspecified Place', 'ICD10_2010'), +('W52', 'Crushed, pushed or stepped on by crowd or human stampede', 'ICD10_2010'), +('W52.0', 'Crushed, pushed or stepped on by crowd or human stampede, Home', 'ICD10_2010'), +('W52.1', 'Crushed, pushed or stepped on by crowd or human stampede, Residential Institution', 'ICD10_2010'), +('W52.2', 'Crushed, pushed or stepped on by crowd or human stampede, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W52.3', 'Crushed, pushed or stepped on by crowd or human stampede, Sports and Athletic Areas', 'ICD10_2010'), +('W52.4', 'Crushed, pushed or stepped on by crowd or human stampede, Street and Highway', 'ICD10_2010'), +('W52.5', 'Crushed, pushed or stepped on by crowd or human stampede, Trade and Service Area', 'ICD10_2010'), +('W52.6', 'Crushed, pushed or stepped on by crowd or human stampede, Industrial and Construction Area', 'ICD10_2010'), +('W52.7', 'Crushed, pushed or stepped on by crowd or human stampede, Farm', 'ICD10_2010'), +('W52.8', 'Crushed, pushed or stepped on by crowd or human stampede, Other Specified Area', 'ICD10_2010'), +('W52.9', 'Crushed, pushed or stepped on by crowd or human stampede, Unspecified Place', 'ICD10_2010'), +('W53', 'Bitten by rat', 'ICD10_2010'), +('W53.0', 'Bitten by rat, Home', 'ICD10_2010'), +('W53.1', 'Bitten by rat, Residential Institution', 'ICD10_2010'), +('W53.2', 'Bitten by rat, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W53.3', 'Bitten by rat, Sports and Athletic Areas', 'ICD10_2010'), +('W53.4', 'Bitten by rat, Street and Highway', 'ICD10_2010'), +('W53.5', 'Bitten by rat, Trade and Service Area', 'ICD10_2010'), +('W53.6', 'Bitten by rat, Industrial and Construction Area', 'ICD10_2010'), +('W53.7', 'Bitten by rat, Farm', 'ICD10_2010'), +('W53.8', 'Bitten by rat, Other Specified Area', 'ICD10_2010'), +('W53.9', 'Bitten by rat, Unspecified Place', 'ICD10_2010'), +('W54', 'Bitten or struck by dog', 'ICD10_2010'), +('W54.0', 'Bitten or struck by dog, Home', 'ICD10_2010'), +('W54.1', 'Bitten or struck by dog, Residential Institution', 'ICD10_2010'), +('W54.2', 'Bitten or struck by dog, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W54.3', 'Bitten or struck by dog, Sports and Athletic Areas', 'ICD10_2010'), +('W54.4', 'Bitten or struck by dog, Street and Highway', 'ICD10_2010'), +('W54.5', 'Bitten or struck by dog, Trade and Service Area', 'ICD10_2010'), +('W54.6', 'Bitten or struck by dog, Industrial and Construction Area', 'ICD10_2010'), +('W54.7', 'Bitten or struck by dog, Farm', 'ICD10_2010'), +('W54.8', 'Bitten or struck by dog, Other Specified Area', 'ICD10_2010'), +('W54.9', 'Bitten or struck by dog, Unspecified Place', 'ICD10_2010'), +('W55', 'Bitten or struck by other mammals', 'ICD10_2010'), +('W55.0', 'Bitten or struck by other mammals, Home', 'ICD10_2010'), +('W55.1', 'Bitten or struck by other mammals, Residential Institution', 'ICD10_2010'), +('W55.2', 'Bitten or struck by other mammals, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W55.3', 'Bitten or struck by other mammals, Sports and Athletic Areas', 'ICD10_2010'), +('W55.4', 'Bitten or struck by other mammals, Street and Highway', 'ICD10_2010'), +('W55.5', 'Bitten or struck by other mammals, Trade and Service Area', 'ICD10_2010'), +('W55.6', 'Bitten or struck by other mammals, Industrial and Construction Area', 'ICD10_2010'), +('W55.7', 'Bitten or struck by other mammals, Farm', 'ICD10_2010'), +('W55.8', 'Bitten or struck by other mammals, Other Specified Area', 'ICD10_2010'), +('W55.9', 'Bitten or struck by other mammals, Unspecified Place', 'ICD10_2010'), +('W56', 'Contact with marine animal', 'ICD10_2010'), +('W56.0', 'Contact with marine animal, Home', 'ICD10_2010'), +('W56.1', 'Contact with marine animal, Residential Institution', 'ICD10_2010'), +('W56.2', 'Contact with marine animal, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W56.3', 'Contact with marine animal, Sports and Athletic Areas', 'ICD10_2010'), +('W56.4', 'Contact with marine animal, Street and Highway', 'ICD10_2010'), +('W56.5', 'Contact with marine animal, Trade and Service Area', 'ICD10_2010'), +('W56.6', 'Contact with marine animal, Industrial and Construction Area', 'ICD10_2010'), +('W56.7', 'Contact with marine animal, Farm', 'ICD10_2010'), +('W56.8', 'Contact with marine animal, Other Specified Area', 'ICD10_2010'), +('W56.9', 'Contact with marine animal, Unspecified Place', 'ICD10_2010'), +('W57', 'Bitten or stung by nonvenomous insect and other nonvenomous arthropods', 'ICD10_2010'), +('W57.0', 'Bitten or stung by nonvenomous insect and other nonvenomous arthropods, Home', 'ICD10_2010'), +('W57.1', 'Bitten or stung by nonvenomous insect and other nonvenomous arthropods, Residential Institution', 'ICD10_2010'), +('W57.2', 'Bitten or stung by nonvenomous insect and other nonvenomous arthropods, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W57.3', 'Bitten or stung by nonvenomous insect and other nonvenomous arthropods, Sports and Athletic Areas', 'ICD10_2010'), +('W57.4', 'Bitten or stung by nonvenomous insect and other nonvenomous arthropods, Street and Highway', 'ICD10_2010'), +('W57.5', 'Bitten or stung by nonvenomous insect and other nonvenomous arthropods, Trade and Service Area', 'ICD10_2010'), +('W57.6', 'Bitten or stung by nonvenomous insect and other nonvenomous arthropods, Industrial and Construction Area', 'ICD10_2010'), +('W57.7', 'Bitten or stung by nonvenomous insect and other nonvenomous arthropods, Farm', 'ICD10_2010'), +('W57.8', 'Bitten or stung by nonvenomous insect and other nonvenomous arthropods, Other Specified Area', 'ICD10_2010'), +('W57.9', 'Bitten or stung by nonvenomous insect and other nonvenomous arthropods, Unspecified Place', 'ICD10_2010'), +('W58', 'Bitten or struck by crocodile or alligator', 'ICD10_2010'), +('W58.0', 'Bitten or struck by crocodile or alligator, Home', 'ICD10_2010'), +('W58.1', 'Bitten or struck by crocodile or alligator, Residential Institution', 'ICD10_2010'), +('W58.2', 'Bitten or struck by crocodile or alligator, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W58.3', 'Bitten or struck by crocodile or alligator, Sports and Athletic Areas', 'ICD10_2010'), +('W58.4', 'Bitten or struck by crocodile or alligator, Street and Highway', 'ICD10_2010'), +('W58.5', 'Bitten or struck by crocodile or alligator, Trade and Service Area', 'ICD10_2010'), +('W58.6', 'Bitten or struck by crocodile or alligator, Industrial and Construction Area', 'ICD10_2010'), +('W58.7', 'Bitten or struck by crocodile or alligator, Farm', 'ICD10_2010'), +('W58.8', 'Bitten or struck by crocodile or alligator, Other Specified Area', 'ICD10_2010'), +('W58.9', 'Bitten or struck by crocodile or alligator, Unspecified Place', 'ICD10_2010'), +('W59', 'Bitten or crushed by other reptiles', 'ICD10_2010'), +('W59.0', 'Bitten or crushed by other reptiles, Home', 'ICD10_2010'), +('W59.1', 'Bitten or crushed by other reptiles, Residential Institution', 'ICD10_2010'), +('W59.2', 'Bitten or crushed by other reptiles, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W59.3', 'Bitten or crushed by other reptiles, Sports and Athletic Areas', 'ICD10_2010'), +('W59.4', 'Bitten or crushed by other reptiles, Street and Highway', 'ICD10_2010'), +('W59.5', 'Bitten or crushed by other reptiles, Trade and Service Area', 'ICD10_2010'), +('W59.6', 'Bitten or crushed by other reptiles, Industrial and Construction Area', 'ICD10_2010'), +('W59.7', 'Bitten or crushed by other reptiles, Farm', 'ICD10_2010'), +('W59.8', 'Bitten or crushed by other reptiles, Other Specified Area', 'ICD10_2010'), +('W59.9', 'Bitten or crushed by other reptiles, Unspecified Place', 'ICD10_2010'), +('W60', 'Contact with plant thorns and spines and sharp leaves', 'ICD10_2010'), +('W60.0', 'Contact with plant thorns and spines and sharp leaves, Home', 'ICD10_2010'), +('W60.1', 'Contact with plant thorns and spines and sharp leaves, Residential Institution', 'ICD10_2010'), +('W60.2', 'Contact with plant thorns and spines and sharp leaves, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W60.3', 'Contact with plant thorns and spines and sharp leaves, Sports and Athletic Areas', 'ICD10_2010'), +('W60.4', 'Contact with plant thorns and spines and sharp leaves, Street and Highway', 'ICD10_2010'), +('W60.5', 'Contact with plant thorns and spines and sharp leaves, Trade and Service Area', 'ICD10_2010'), +('W60.6', 'Contact with plant thorns and spines and sharp leaves, Industrial and Construction Area', 'ICD10_2010'), +('W60.7', 'Contact with plant thorns and spines and sharp leaves, Farm', 'ICD10_2010'), +('W60.8', 'Contact with plant thorns and spines and sharp leaves, Other Specified Area', 'ICD10_2010'), +('W60.9', 'Contact with plant thorns and spines and sharp leaves, Unspecified Place', 'ICD10_2010'), +('W64', 'Exposure to other and unspecified animate mechanical forces', 'ICD10_2010'), +('W64.0', 'Exposure to other and unspecified animate mechanical forces, Home', 'ICD10_2010'), +('W64.1', 'Exposure to other and unspecified animate mechanical forces, Residential Institution', 'ICD10_2010'), +('W64.2', 'Exposure to other and unspecified animate mechanical forces, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W64.3', 'Exposure to other and unspecified animate mechanical forces, Sports and Athletic Areas', 'ICD10_2010'), +('W64.4', 'Exposure to other and unspecified animate mechanical forces, Street and Highway', 'ICD10_2010'), +('W64.5', 'Exposure to other and unspecified animate mechanical forces, Trade and Service Area', 'ICD10_2010'), +('W64.6', 'Exposure to other and unspecified animate mechanical forces, Industrial and Construction Area', 'ICD10_2010'), +('W64.7', 'Exposure to other and unspecified animate mechanical forces, Farm', 'ICD10_2010'), +('W64.8', 'Exposure to other and unspecified animate mechanical forces, Other Specified Area', 'ICD10_2010'), +('W64.9', 'Exposure to other and unspecified animate mechanical forces, Unspecified Place', 'ICD10_2010'), +('W65', 'Drowning and submersion while in bath-tub', 'ICD10_2010'), +('W65.0', 'Drowning and submersion while in bath-tub, Home', 'ICD10_2010'), +('W65.1', 'Drowning and submersion while in bath-tub, Residential Institution', 'ICD10_2010'), +('W65.2', 'Drowning and submersion while in bath-tub, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W65.3', 'Drowning and submersion while in bath-tub, Sports and Athletic Areas', 'ICD10_2010'), +('W65.4', 'Drowning and submersion while in bath-tub, Street and Highway', 'ICD10_2010'), +('W65.5', 'Drowning and submersion while in bath-tub, Trade and Service Area', 'ICD10_2010'), +('W65.6', 'Drowning and submersion while in bath-tub, Industrial and Construction Area', 'ICD10_2010'), +('W65.7', 'Drowning and submersion while in bath-tub, Farm', 'ICD10_2010'), +('W65.8', 'Drowning and submersion while in bath-tub, Other Specified Area', 'ICD10_2010'), +('W65.9', 'Drowning and submersion while in bath-tub, Unspecified Place', 'ICD10_2010'), +('W66', 'Drowning and submersion following fall into bath-tub', 'ICD10_2010'), +('W66.0', 'Drowning and submersion following fall into bath-tub, Home', 'ICD10_2010'), +('W66.1', 'Drowning and submersion following fall into bath-tub, Residential Institution', 'ICD10_2010'), +('W66.2', 'Drowning and submersion following fall into bath-tub, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W66.3', 'Drowning and submersion following fall into bath-tub, Sports and Athletic Areas', 'ICD10_2010'), +('W66.4', 'Drowning and submersion following fall into bath-tub, Street and Highway', 'ICD10_2010'), +('W66.5', 'Drowning and submersion following fall into bath-tub, Trade and Service Area', 'ICD10_2010'), +('W66.6', 'Drowning and submersion following fall into bath-tub, Industrial and Construction Area', 'ICD10_2010'), +('W66.7', 'Drowning and submersion following fall into bath-tub, Farm', 'ICD10_2010'), +('W66.8', 'Drowning and submersion following fall into bath-tub, Other Specified Area', 'ICD10_2010'), +('W66.9', 'Drowning and submersion following fall into bath-tub, Unspecified Place', 'ICD10_2010'), +('W67', 'Drowning and submersion while in swimming-pool', 'ICD10_2010'), +('W67.0', 'Drowning and submersion while in swimming-pool, Home', 'ICD10_2010'), +('W67.1', 'Drowning and submersion while in swimming-pool, Residential Institution', 'ICD10_2010'), +('W67.2', 'Drowning and submersion while in swimming-pool, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W67.3', 'Drowning and submersion while in swimming-pool, Sports and Athletic Areas', 'ICD10_2010'), +('W67.4', 'Drowning and submersion while in swimming-pool, Street and Highway', 'ICD10_2010'), +('W67.5', 'Drowning and submersion while in swimming-pool, Trade and Service Area', 'ICD10_2010'), +('W67.6', 'Drowning and submersion while in swimming-pool, Industrial and Construction Area', 'ICD10_2010'), +('W67.7', 'Drowning and submersion while in swimming-pool, Farm', 'ICD10_2010'), +('W67.8', 'Drowning and submersion while in swimming-pool, Other Specified Area', 'ICD10_2010'), +('W67.9', 'Drowning and submersion while in swimming-pool, Unspecified Place', 'ICD10_2010'); +INSERT INTO `icd10` (`ID_ICD10`, `Diagnosa`, `Versi_ICD10`) VALUES +('W68', 'Drowning and submersion following fall into swimming-pool', 'ICD10_2010'), +('W68.0', 'Drowning and submersion following fall into swimming-pool, Home', 'ICD10_2010'), +('W68.1', 'Drowning and submersion following fall into swimming-pool, Residential Institution', 'ICD10_2010'), +('W68.2', 'Drowning and submersion following fall into swimming-pool, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W68.3', 'Drowning and submersion following fall into swimming-pool, Sports and Athletic Areas', 'ICD10_2010'), +('W68.4', 'Drowning and submersion following fall into swimming-pool, Street and Highway', 'ICD10_2010'), +('W68.5', 'Drowning and submersion following fall into swimming-pool, Trade and Service Area', 'ICD10_2010'), +('W68.6', 'Drowning and submersion following fall into swimming-pool, Industrial and Construction Area', 'ICD10_2010'), +('W68.7', 'Drowning and submersion following fall into swimming-pool, Farm', 'ICD10_2010'), +('W68.8', 'Drowning and submersion following fall into swimming-pool, Other Specified Area', 'ICD10_2010'), +('W68.9', 'Drowning and submersion following fall into swimming-pool, Unspecified Place', 'ICD10_2010'), +('W69', 'Drowning and submersion while in natural water', 'ICD10_2010'), +('W69.0', 'Drowning and submersion while in natural water, Home', 'ICD10_2010'), +('W69.1', 'Drowning and submersion while in natural water, Residential Institution', 'ICD10_2010'), +('W69.2', 'Drowning and submersion while in natural water, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W69.3', 'Drowning and submersion while in natural water, Sports and Athletic Areas', 'ICD10_2010'), +('W69.4', 'Drowning and submersion while in natural water, Street and Highway', 'ICD10_2010'), +('W69.5', 'Drowning and submersion while in natural water, Trade and Service Area', 'ICD10_2010'), +('W69.6', 'Drowning and submersion while in natural water, Industrial and Construction Area', 'ICD10_2010'), +('W69.7', 'Drowning and submersion while in natural water, Farm', 'ICD10_2010'), +('W69.8', 'Drowning and submersion while in natural water, Other Specified Area', 'ICD10_2010'), +('W69.9', 'Drowning and submersion while in natural water, Unspecified Place', 'ICD10_2010'), +('W70', 'Drowning and submersion following fall into natural water', 'ICD10_2010'), +('W70.0', 'Drowning and submersion following fall into natural water, Home', 'ICD10_2010'), +('W70.1', 'Drowning and submersion following fall into natural water, Residential Institution', 'ICD10_2010'), +('W70.2', 'Drowning and submersion following fall into natural water, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W70.3', 'Drowning and submersion following fall into natural water, Sports and Athletic Areas', 'ICD10_2010'), +('W70.4', 'Drowning and submersion following fall into natural water, Street and Highway', 'ICD10_2010'), +('W70.5', 'Drowning and submersion following fall into natural water, Trade and Service Area', 'ICD10_2010'), +('W70.6', 'Drowning and submersion following fall into natural water, Industrial and Construction Area', 'ICD10_2010'), +('W70.7', 'Drowning and submersion following fall into natural water, Farm', 'ICD10_2010'), +('W70.8', 'Drowning and submersion following fall into natural water, Other Specified Area', 'ICD10_2010'), +('W70.9', 'Drowning and submersion following fall into natural water, Unspecified Place', 'ICD10_2010'), +('W73', 'Other specified drowning and submersion', 'ICD10_2010'), +('W73.0', 'Other specified drowning and submersion, Home', 'ICD10_2010'), +('W73.1', 'Other specified drowning and submersion, Residential Institution', 'ICD10_2010'), +('W73.2', 'Other specified drowning and submersion, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W73.3', 'Other specified drowning and submersion, Sports and Athletic Areas', 'ICD10_2010'), +('W73.4', 'Other specified drowning and submersion, Street and Highway', 'ICD10_2010'), +('W73.5', 'Other specified drowning and submersion, Trade and Service Area', 'ICD10_2010'), +('W73.6', 'Other specified drowning and submersion, Industrial and Construction Area', 'ICD10_2010'), +('W73.7', 'Other specified drowning and submersion, Farm', 'ICD10_2010'), +('W73.8', 'Other specified drowning and submersion, Other Specified Area', 'ICD10_2010'), +('W73.9', 'Other specified drowning and submersion, Unspecified Place', 'ICD10_2010'), +('W74', 'Unspecified drowning and submersion', 'ICD10_2010'), +('W74.0', 'Unspecified drowning and submersion, Home', 'ICD10_2010'), +('W74.1', 'Unspecified drowning and submersion, Residential Institution', 'ICD10_2010'), +('W74.2', 'Unspecified drowning and submersion, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W74.3', 'Unspecified drowning and submersion, Sports and Athletic Areas', 'ICD10_2010'), +('W74.4', 'Unspecified drowning and submersion, Street and Highway', 'ICD10_2010'), +('W74.5', 'Unspecified drowning and submersion, Trade and Service Area', 'ICD10_2010'), +('W74.6', 'Unspecified drowning and submersion, Industrial and Construction Area', 'ICD10_2010'), +('W74.7', 'Unspecified drowning and submersion, Farm', 'ICD10_2010'), +('W74.8', 'Unspecified drowning and submersion, Other Specified Area', 'ICD10_2010'), +('W74.9', 'Unspecified drowning and submersion, Unspecified Place', 'ICD10_2010'), +('W75', 'Accidental suffocation and strangulation in bed', 'ICD10_2010'), +('W75.0', 'Accidental suffocation and strangulation in bed, Home', 'ICD10_2010'), +('W75.1', 'Accidental suffocation and strangulation in bed, Residential Institution', 'ICD10_2010'), +('W75.2', 'Accidental suffocation and strangulation in bed, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W75.3', 'Accidental suffocation and strangulation in bed, Sports and Athletic Areas', 'ICD10_2010'), +('W75.4', 'Accidental suffocation and strangulation in bed, Street and Highway', 'ICD10_2010'), +('W75.5', 'Accidental suffocation and strangulation in bed, Trade and Service Area', 'ICD10_2010'), +('W75.6', 'Accidental suffocation and strangulation in bed, Industrial and Construction Area', 'ICD10_2010'), +('W75.7', 'Accidental suffocation and strangulation in bed, Farm', 'ICD10_2010'), +('W75.8', 'Accidental suffocation and strangulation in bed, Other Specified Area', 'ICD10_2010'), +('W75.9', 'Accidental suffocation and strangulation in bed, Unspecified Place', 'ICD10_2010'), +('W76', 'Other accidental hanging and strangulation', 'ICD10_2010'), +('W76.0', 'Other accidental hanging and strangulation, Home', 'ICD10_2010'), +('W76.1', 'Other accidental hanging and strangulation, Residential Institution', 'ICD10_2010'), +('W76.2', 'Other accidental hanging and strangulation, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W76.3', 'Other accidental hanging and strangulation, Sports and Athletic Areas', 'ICD10_2010'), +('W76.4', 'Other accidental hanging and strangulation, Street and Highway', 'ICD10_2010'), +('W76.5', 'Other accidental hanging and strangulation, Trade and Service Area', 'ICD10_2010'), +('W76.6', 'Other accidental hanging and strangulation, Industrial and Construction Area', 'ICD10_2010'), +('W76.7', 'Other accidental hanging and strangulation, Farm', 'ICD10_2010'), +('W76.8', 'Other accidental hanging and strangulation, Other Specified Area', 'ICD10_2010'), +('W76.9', 'Other accidental hanging and strangulation, Unspecified Place', 'ICD10_2010'), +('W77', 'Threat to breathing due to cave-in, falling earth and other substances', 'ICD10_2010'), +('W77.0', 'Threat to breathing due to cave-in, falling earth and other substances, Home', 'ICD10_2010'), +('W77.1', 'Threat to breathing due to cave-in, falling earth and other substances, Residential Institution', 'ICD10_2010'), +('W77.2', 'Threat to breathing due to cave-in, falling earth and other substances, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W77.3', 'Threat to breathing due to cave-in, falling earth and other substances, Sports and Athletic Areas', 'ICD10_2010'), +('W77.4', 'Threat to breathing due to cave-in, falling earth and other substances, Street and Highway', 'ICD10_2010'), +('W77.5', 'Threat to breathing due to cave-in, falling earth and other substances, Trade and Service Area', 'ICD10_2010'), +('W77.6', 'Threat to breathing due to cave-in, falling earth and other substances, Industrial and Construction Area', 'ICD10_2010'), +('W77.7', 'Threat to breathing due to cave-in, falling earth and other substances, Farm', 'ICD10_2010'), +('W77.8', 'Threat to breathing due to cave-in, falling earth and other substances, Other Specified Area', 'ICD10_2010'), +('W77.9', 'Threat to breathing due to cave-in, falling earth and other substances, Unspecified Place', 'ICD10_2010'), +('W78', 'Inhalation of gastric contents', 'ICD10_2010'), +('W78.0', 'Inhalation of gastric contents, Home', 'ICD10_2010'), +('W78.1', 'Inhalation of gastric contents, Residential Institution', 'ICD10_2010'), +('W78.2', 'Inhalation of gastric contents, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W78.3', 'Inhalation of gastric contents, Sports and Athletic Areas', 'ICD10_2010'), +('W78.4', 'Inhalation of gastric contents, Street and Highway', 'ICD10_2010'), +('W78.5', 'Inhalation of gastric contents, Trade and Service Area', 'ICD10_2010'), +('W78.6', 'Inhalation of gastric contents, Industrial and Construction Area', 'ICD10_2010'), +('W78.7', 'Inhalation of gastric contents, Farm', 'ICD10_2010'), +('W78.8', 'Inhalation of gastric contents, Other Specified Area', 'ICD10_2010'), +('W78.9', 'Inhalation of gastric contents, Unspecified Place', 'ICD10_2010'), +('W79', 'Inhalation and ingestion of food causing obstruction of respiratory tract', 'ICD10_2010'), +('W79.0', 'Inhalation and ingestion of food causing obstruction of respiratory tract, Home', 'ICD10_2010'), +('W79.1', 'Inhalation and ingestion of food causing obstruction of respiratory tract, Residential Institution', 'ICD10_2010'), +('W79.2', 'Inhalation and ingestion of food causing obstruction of respiratory tract, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W79.3', 'Inhalation and ingestion of food causing obstruction of respiratory tract, Sports and Athletic Areas', 'ICD10_2010'), +('W79.4', 'Inhalation and ingestion of food causing obstruction of respiratory tract, Street and Highway', 'ICD10_2010'), +('W79.5', 'Inhalation and ingestion of food causing obstruction of respiratory tract, Trade and Service Area', 'ICD10_2010'), +('W79.6', 'Inhalation and ingestion of food causing obstruction of respiratory tract, Industrial and Construction Area', 'ICD10_2010'), +('W79.7', 'Inhalation and ingestion of food causing obstruction of respiratory tract, Farm', 'ICD10_2010'), +('W79.8', 'Inhalation and ingestion of food causing obstruction of respiratory tract, Other Specified Area', 'ICD10_2010'), +('W79.9', 'Inhalation and ingestion of food causing obstruction of respiratory tract, Unspecified Place', 'ICD10_2010'), +('W80', 'Inhalation and ingestion of other objects causing obstruction of respiratory tract', 'ICD10_2010'), +('W80.0', 'Inhalation and ingestion of other objects causing obstruction of respiratory tract, Home', 'ICD10_2010'), +('W80.1', 'Inhalation and ingestion of other objects causing obstruction of respiratory tract, Residential Institution', 'ICD10_2010'), +('W80.2', 'Inhalation and ingestion of other objects causing obstruction of respiratory tract, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W80.3', 'Inhalation and ingestion of other objects causing obstruction of respiratory tract, Sports and Athletic Areas', 'ICD10_2010'), +('W80.4', 'Inhalation and ingestion of other objects causing obstruction of respiratory tract, Street and Highway', 'ICD10_2010'), +('W80.5', 'Inhalation and ingestion of other objects causing obstruction of respiratory tract, Trade and Service Area', 'ICD10_2010'), +('W80.6', 'Inhalation and ingestion of other objects causing obstruction of respiratory tract, Industrial and Construction Area', 'ICD10_2010'), +('W80.7', 'Inhalation and ingestion of other objects causing obstruction of respiratory tract, Farm', 'ICD10_2010'), +('W80.8', 'Inhalation and ingestion of other objects causing obstruction of respiratory tract, Other Specified Area', 'ICD10_2010'), +('W80.9', 'Inhalation and ingestion of other objects causing obstruction of respiratory tract, Unspecified Place', 'ICD10_2010'), +('W81', 'Confined to or trapped in a low-oxygen environment', 'ICD10_2010'), +('W81.0', 'Confined to or trapped in a low-oxygen environment, Home', 'ICD10_2010'), +('W81.1', 'Confined to or trapped in a low-oxygen environment, Residential Institution', 'ICD10_2010'), +('W81.2', 'Confined to or trapped in a low-oxygen environment, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W81.3', 'Confined to or trapped in a low-oxygen environment, Sports and Athletic Areas', 'ICD10_2010'), +('W81.4', 'Confined to or trapped in a low-oxygen environment, Street and Highway', 'ICD10_2010'), +('W81.5', 'Confined to or trapped in a low-oxygen environment, Trade and Service Area', 'ICD10_2010'), +('W81.6', 'Confined to or trapped in a low-oxygen environment, Industrial and Construction Area', 'ICD10_2010'), +('W81.7', 'Confined to or trapped in a low-oxygen environment, Farm', 'ICD10_2010'), +('W81.8', 'Confined to or trapped in a low-oxygen environment, Other Specified Area', 'ICD10_2010'), +('W81.9', 'Confined to or trapped in a low-oxygen environment, Unspecified Place', 'ICD10_2010'), +('W83', 'Other specified threats to breathing', 'ICD10_2010'), +('W83.0', 'Other specified threats to breathing, Home', 'ICD10_2010'), +('W83.1', 'Other specified threats to breathing, Residential Institution', 'ICD10_2010'), +('W83.2', 'Other specified threats to breathing, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W83.3', 'Other specified threats to breathing, Sports and Athletic Areas', 'ICD10_2010'), +('W83.4', 'Other specified threats to breathing, Street and Highway', 'ICD10_2010'), +('W83.5', 'Other specified threats to breathing, Trade and Service Area', 'ICD10_2010'), +('W83.6', 'Other specified threats to breathing, Industrial and Construction Area', 'ICD10_2010'), +('W83.7', 'Other specified threats to breathing, Farm', 'ICD10_2010'), +('W83.8', 'Other specified threats to breathing, Other Specified Area', 'ICD10_2010'), +('W83.9', 'Other specified threats to breathing, Unspecified Place', 'ICD10_2010'), +('W84', 'Unspecified threat to breathing', 'ICD10_2010'), +('W84.0', 'Unspecified threat to breathing, Home', 'ICD10_2010'), +('W84.1', 'Unspecified threat to breathing, Residential Institution', 'ICD10_2010'), +('W84.2', 'Unspecified threat to breathing, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W84.3', 'Unspecified threat to breathing, Sports and Athletic Areas', 'ICD10_2010'), +('W84.4', 'Unspecified threat to breathing, Street and Highway', 'ICD10_2010'), +('W84.5', 'Unspecified threat to breathing, Trade and Service Area', 'ICD10_2010'), +('W84.6', 'Unspecified threat to breathing, Industrial and Construction Area', 'ICD10_2010'), +('W84.7', 'Unspecified threat to breathing, Farm', 'ICD10_2010'), +('W84.8', 'Unspecified threat to breathing, Other Specified Area', 'ICD10_2010'), +('W84.9', 'Unspecified threat to breathing, Unspecified Place', 'ICD10_2010'), +('W85', 'Exposure to electric transmission lines', 'ICD10_2010'), +('W85.0', 'Exposure to electric transmission lines, Home', 'ICD10_2010'), +('W85.1', 'Exposure to electric transmission lines, Residential Institution', 'ICD10_2010'), +('W85.2', 'Exposure to electric transmission lines, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W85.3', 'Exposure to electric transmission lines, Sports and Athletic Areas', 'ICD10_2010'), +('W85.4', 'Exposure to electric transmission lines, Street and Highway', 'ICD10_2010'), +('W85.5', 'Exposure to electric transmission lines, Trade and Service Area', 'ICD10_2010'), +('W85.6', 'Exposure to electric transmission lines, Industrial and Construction Area', 'ICD10_2010'), +('W85.7', 'Exposure to electric transmission lines, Farm', 'ICD10_2010'), +('W85.8', 'Exposure to electric transmission lines, Other Specified Area', 'ICD10_2010'), +('W85.9', 'Exposure to electric transmission lines, Unspecified Place', 'ICD10_2010'), +('W86', 'Exposure to other specified electric current', 'ICD10_2010'), +('W86.0', 'Exposure to other specified electric current, Home', 'ICD10_2010'), +('W86.1', 'Exposure to other specified electric current, Residential Institution', 'ICD10_2010'), +('W86.2', 'Exposure to other specified electric current, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W86.3', 'Exposure to other specified electric current, Sports and Athletic Areas', 'ICD10_2010'), +('W86.4', 'Exposure to other specified electric current, Street and Highway', 'ICD10_2010'), +('W86.5', 'Exposure to other specified electric current, Trade and Service Area', 'ICD10_2010'), +('W86.6', 'Exposure to other specified electric current, Industrial and Construction Area', 'ICD10_2010'), +('W86.7', 'Exposure to other specified electric current, Farm', 'ICD10_2010'), +('W86.8', 'Exposure to other specified electric current, Other Specified Area', 'ICD10_2010'), +('W86.9', 'Exposure to other specified electric current, Unspecified Place', 'ICD10_2010'), +('W87', 'Exposure to unspecified electric current', 'ICD10_2010'), +('W87.0', 'Exposure to unspecified electric current, Home', 'ICD10_2010'), +('W87.1', 'Exposure to unspecified electric current, Residential Institution', 'ICD10_2010'), +('W87.2', 'Exposure to unspecified electric current, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W87.3', 'Exposure to unspecified electric current, Sports and Athletic Areas', 'ICD10_2010'), +('W87.4', 'Exposure to unspecified electric current, Street and Highway', 'ICD10_2010'), +('W87.5', 'Exposure to unspecified electric current, Trade and Service Area', 'ICD10_2010'), +('W87.6', 'Exposure to unspecified electric current, Industrial and Construction Area', 'ICD10_2010'), +('W87.7', 'Exposure to unspecified electric current, Farm', 'ICD10_2010'), +('W87.8', 'Exposure to unspecified electric current, Other Specified Area', 'ICD10_2010'), +('W87.9', 'Exposure to unspecified electric current, Unspecified Place', 'ICD10_2010'), +('W88', 'Exposure to ionizing radiation', 'ICD10_2010'), +('W88.0', 'Exposure to ionizing radiation, Home', 'ICD10_2010'), +('W88.1', 'Exposure to ionizing radiation, Residential Institution', 'ICD10_2010'), +('W88.2', 'Exposure to ionizing radiation, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W88.3', 'Exposure to ionizing radiation, Sports and Athletic Areas', 'ICD10_2010'), +('W88.4', 'Exposure to ionizing radiation, Street and Highway', 'ICD10_2010'), +('W88.5', 'Exposure to ionizing radiation, Trade and Service Area', 'ICD10_2010'), +('W88.6', 'Exposure to ionizing radiation, Industrial and Construction Area', 'ICD10_2010'), +('W88.7', 'Exposure to ionizing radiation, Farm', 'ICD10_2010'), +('W88.8', 'Exposure to ionizing radiation, Other Specified Area', 'ICD10_2010'), +('W88.9', 'Exposure to ionizing radiation, Unspecified Place', 'ICD10_2010'), +('W89', 'Exposure to man-made visible and ultraviolet light', 'ICD10_2010'), +('W89.0', 'Exposure to man-made visible and ultraviolet light, Home', 'ICD10_2010'), +('W89.1', 'Exposure to man-made visible and ultraviolet light, Residential Institution', 'ICD10_2010'), +('W89.2', 'Exposure to man-made visible and ultraviolet light, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W89.3', 'Exposure to man-made visible and ultraviolet light, Sports and Athletic Areas', 'ICD10_2010'), +('W89.4', 'Exposure to man-made visible and ultraviolet light, Street and Highway', 'ICD10_2010'), +('W89.5', 'Exposure to man-made visible and ultraviolet light, Trade and Service Area', 'ICD10_2010'), +('W89.6', 'Exposure to man-made visible and ultraviolet light, Industrial and Construction Area', 'ICD10_2010'), +('W89.7', 'Exposure to man-made visible and ultraviolet light, Farm', 'ICD10_2010'), +('W89.8', 'Exposure to man-made visible and ultraviolet light, Other Specified Area', 'ICD10_2010'), +('W89.9', 'Exposure to man-made visible and ultraviolet light, Unspecified Place', 'ICD10_2010'), +('W90', 'Exposure to other nonionizing radiation', 'ICD10_2010'), +('W90.0', 'Exposure to other nonionizing radiation, Home', 'ICD10_2010'), +('W90.1', 'Exposure to other nonionizing radiation, Residential Institution', 'ICD10_2010'), +('W90.2', 'Exposure to other nonionizing radiation, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W90.3', 'Exposure to other nonionizing radiation, Sports and Athletic Areas', 'ICD10_2010'), +('W90.4', 'Exposure to other nonionizing radiation, Street and Highway', 'ICD10_2010'), +('W90.5', 'Exposure to other nonionizing radiation, Trade and Service Area', 'ICD10_2010'), +('W90.6', 'Exposure to other nonionizing radiation, Industrial and Construction Area', 'ICD10_2010'), +('W90.7', 'Exposure to other nonionizing radiation, Farm', 'ICD10_2010'), +('W90.8', 'Exposure to other nonionizing radiation, Other Specified Area', 'ICD10_2010'), +('W90.9', 'Exposure to other nonionizing radiation, Unspecified Place', 'ICD10_2010'), +('W91', 'Exposure to unspecified type of radiation', 'ICD10_2010'), +('W91.0', 'Exposure to unspecified type of radiation, Home', 'ICD10_2010'), +('W91.1', 'Exposure to unspecified type of radiation, Residential Institution', 'ICD10_2010'), +('W91.2', 'Exposure to unspecified type of radiation, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W91.3', 'Exposure to unspecified type of radiation, Sports and Athletic Areas', 'ICD10_2010'), +('W91.4', 'Exposure to unspecified type of radiation, Street and Highway', 'ICD10_2010'), +('W91.5', 'Exposure to unspecified type of radiation, Trade and Service Area', 'ICD10_2010'), +('W91.6', 'Exposure to unspecified type of radiation, Industrial and Construction Area', 'ICD10_2010'), +('W91.7', 'Exposure to unspecified type of radiation, Farm', 'ICD10_2010'), +('W91.8', 'Exposure to unspecified type of radiation, Other Specified Area', 'ICD10_2010'), +('W91.9', 'Exposure to unspecified type of radiation, Unspecified Place', 'ICD10_2010'), +('W92', 'Exposure to excessive heat of man-made origin', 'ICD10_2010'), +('W92.0', 'Exposure to excessive heat of man-made origin, Home', 'ICD10_2010'), +('W92.1', 'Exposure to excessive heat of man-made origin, Residential Institution', 'ICD10_2010'), +('W92.2', 'Exposure to excessive heat of man-made origin, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W92.3', 'Exposure to excessive heat of man-made origin, Sports and Athletic Areas', 'ICD10_2010'), +('W92.4', 'Exposure to excessive heat of man-made origin, Street and Highway', 'ICD10_2010'), +('W92.5', 'Exposure to excessive heat of man-made origin, Trade and Service Area', 'ICD10_2010'), +('W92.6', 'Exposure to excessive heat of man-made origin, Industrial and Construction Area', 'ICD10_2010'), +('W92.7', 'Exposure to excessive heat of man-made origin, Farm', 'ICD10_2010'), +('W92.8', 'Exposure to excessive heat of man-made origin, Other Specified Area', 'ICD10_2010'), +('W92.9', 'Exposure to excessive heat of man-made origin, Unspecified Place', 'ICD10_2010'), +('W93', 'Exposure to excessive cold of man-made origin', 'ICD10_2010'), +('W93.0', 'Exposure to excessive cold of man-made origin, Home', 'ICD10_2010'), +('W93.1', 'Exposure to excessive cold of man-made origin, Residential Institution', 'ICD10_2010'), +('W93.2', 'Exposure to excessive cold of man-made origin, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W93.3', 'Exposure to excessive cold of man-made origin, Sports and Athletic Areas', 'ICD10_2010'), +('W93.4', 'Exposure to excessive cold of man-made origin, Street and Highway', 'ICD10_2010'), +('W93.5', 'Exposure to excessive cold of man-made origin, Trade and Service Area', 'ICD10_2010'), +('W93.6', 'Exposure to excessive cold of man-made origin, Industrial and Construction Area', 'ICD10_2010'), +('W93.7', 'Exposure to excessive cold of man-made origin, Farm', 'ICD10_2010'), +('W93.8', 'Exposure to excessive cold of man-made origin, Other Specified Area', 'ICD10_2010'), +('W93.9', 'Exposure to excessive cold of man-made origin, Unspecified Place', 'ICD10_2010'), +('W94', 'Exposure to high and low air pressure and changes in air pressure', 'ICD10_2010'), +('W94.0', 'Exposure to high and low air pressure and changes in air pressure, Home', 'ICD10_2010'), +('W94.1', 'Exposure to high and low air pressure and changes in air pressure, Residential Institution', 'ICD10_2010'), +('W94.2', 'Exposure to high and low air pressure and changes in air pressure, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W94.3', 'Exposure to high and low air pressure and changes in air pressure, Sports and Athletic Areas', 'ICD10_2010'), +('W94.4', 'Exposure to high and low air pressure and changes in air pressure, Street and Highway', 'ICD10_2010'), +('W94.5', 'Exposure to high and low air pressure and changes in air pressure, Trade and Service Area', 'ICD10_2010'), +('W94.6', 'Exposure to high and low air pressure and changes in air pressure, Industrial and Construction Area', 'ICD10_2010'), +('W94.7', 'Exposure to high and low air pressure and changes in air pressure, Farm', 'ICD10_2010'), +('W94.8', 'Exposure to high and low air pressure and changes in air pressure, Other Specified Area', 'ICD10_2010'), +('W94.9', 'Exposure to high and low air pressure and changes in air pressure, Unspecified Place', 'ICD10_2010'), +('W99', 'Exposure to other and unspecified man-made environmental factors', 'ICD10_2010'), +('W99.0', 'Exposure to other and unspecified man-made environmental factors, Home', 'ICD10_2010'), +('W99.1', 'Exposure to other and unspecified man-made environmental factors, Residential Institution', 'ICD10_2010'), +('W99.2', 'Exposure to other and unspecified man-made environmental factors, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W99.3', 'Exposure to other and unspecified man-made environmental factors, Sports and Athletic Areas', 'ICD10_2010'), +('W99.4', 'Exposure to other and unspecified man-made environmental factors, Street and Highway', 'ICD10_2010'), +('W99.5', 'Exposure to other and unspecified man-made environmental factors, Trade and Service Area', 'ICD10_2010'), +('W99.6', 'Exposure to other and unspecified man-made environmental factors, Industrial and Construction Area', 'ICD10_2010'), +('W99.7', 'Exposure to other and unspecified man-made environmental factors, Farm', 'ICD10_2010'), +('W99.8', 'Exposure to other and unspecified man-made environmental factors, Other Specified Area', 'ICD10_2010'), +('W99.9', 'Exposure to other and unspecified man-made environmental factors, Unspecified Place', 'ICD10_2010'), +('X00', 'Exposure to uncontrolled fire in building or structure', 'ICD10_2010'), +('X00.0', 'Exposure to uncontrolled fire in building or structure, Home', 'ICD10_2010'), +('X00.1', 'Exposure to uncontrolled fire in building or structure, Residential Institution', 'ICD10_2010'), +('X00.2', 'Exposure to uncontrolled fire in building or structure, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X00.3', 'Exposure to uncontrolled fire in building or structure, Sports and Athletic Areas', 'ICD10_2010'), +('X00.4', 'Exposure to uncontrolled fire in building or structure, Street and Highway', 'ICD10_2010'), +('X00.5', 'Exposure to uncontrolled fire in building or structure, Trade and Service Area', 'ICD10_2010'), +('X00.6', 'Exposure to uncontrolled fire in building or structure, Industrial and Construction Area', 'ICD10_2010'), +('X00.7', 'Exposure to uncontrolled fire in building or structure, Farm', 'ICD10_2010'), +('X00.8', 'Exposure to uncontrolled fire in building or structure, Other Specified Area', 'ICD10_2010'), +('X00.9', 'Exposure to uncontrolled fire in building or structure, Unspecified Place', 'ICD10_2010'), +('X01', 'Exposure to uncontrolled fire, not in building or structure', 'ICD10_2010'), +('X01.0', 'Exposure to uncontrolled fire, not in building or structure, Home', 'ICD10_2010'), +('X01.1', 'Exposure to uncontrolled fire, not in building or structure, Residential Institution', 'ICD10_2010'), +('X01.2', 'Exposure to uncontrolled fire, not in building or structure, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X01.3', 'Exposure to uncontrolled fire, not in building or structure, Sports and Athletic Areas', 'ICD10_2010'), +('X01.4', 'Exposure to uncontrolled fire, not in building or structure, Street and Highway', 'ICD10_2010'), +('X01.5', 'Exposure to uncontrolled fire, not in building or structure, Trade and Service Area', 'ICD10_2010'), +('X01.6', 'Exposure to uncontrolled fire, not in building or structure, Industrial and Construction Area', 'ICD10_2010'), +('X01.7', 'Exposure to uncontrolled fire, not in building or structure, Farm', 'ICD10_2010'), +('X01.8', 'Exposure to uncontrolled fire, not in building or structure, Other Specified Area', 'ICD10_2010'), +('X01.9', 'Exposure to uncontrolled fire, not in building or structure, Unspecified Place', 'ICD10_2010'), +('X02', 'Exposure to controlled fire in building or structure', 'ICD10_2010'), +('X02.0', 'Exposure to controlled fire in building or structure, Home', 'ICD10_2010'), +('X02.1', 'Exposure to controlled fire in building or structure, Residential Institution', 'ICD10_2010'), +('X02.2', 'Exposure to controlled fire in building or structure, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X02.3', 'Exposure to controlled fire in building or structure, Sports and Athletic Areas', 'ICD10_2010'), +('X02.4', 'Exposure to controlled fire in building or structure, Street and Highway', 'ICD10_2010'), +('X02.5', 'Exposure to controlled fire in building or structure, Trade and Service Area', 'ICD10_2010'), +('X02.6', 'Exposure to controlled fire in building or structure, Industrial and Construction Area', 'ICD10_2010'), +('X02.7', 'Exposure to controlled fire in building or structure, Farm', 'ICD10_2010'), +('X02.8', 'Exposure to controlled fire in building or structure, Other Specified Area', 'ICD10_2010'), +('X02.9', 'Exposure to controlled fire in building or structure, Unspecified Place', 'ICD10_2010'), +('X03', 'Exposure to controlled fire, not in building or structure', 'ICD10_2010'), +('X03.0', 'Exposure to controlled fire, not in building or structure, Home', 'ICD10_2010'), +('X03.1', 'Exposure to controlled fire, not in building or structure, Residential Institution', 'ICD10_2010'), +('X03.2', 'Exposure to controlled fire, not in building or structure, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X03.3', 'Exposure to controlled fire, not in building or structure, Sports and Athletic Areas', 'ICD10_2010'), +('X03.4', 'Exposure to controlled fire, not in building or structure, Street and Highway', 'ICD10_2010'), +('X03.5', 'Exposure to controlled fire, not in building or structure, Trade and Service Area', 'ICD10_2010'), +('X03.6', 'Exposure to controlled fire, not in building or structure, Industrial and Construction Area', 'ICD10_2010'), +('X03.7', 'Exposure to controlled fire, not in building or structure, Farm', 'ICD10_2010'), +('X03.8', 'Exposure to controlled fire, not in building or structure, Other Specified Area', 'ICD10_2010'), +('X03.9', 'Exposure to controlled fire, not in building or structure, Unspecified Place', 'ICD10_2010'), +('X04', 'Exposure to ignition of highly flammable material', 'ICD10_2010'), +('X04.0', 'Exposure to ignition of highly flammable material, Home', 'ICD10_2010'), +('X04.1', 'Exposure to ignition of highly flammable material, Residential Institution', 'ICD10_2010'), +('X04.2', 'Exposure to ignition of highly flammable material, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X04.3', 'Exposure to ignition of highly flammable material, Sports and Athletic Areas', 'ICD10_2010'), +('X04.4', 'Exposure to ignition of highly flammable material, Street and Highway', 'ICD10_2010'), +('X04.5', 'Exposure to ignition of highly flammable material, Trade and Service Area', 'ICD10_2010'), +('X04.6', 'Exposure to ignition of highly flammable material, Industrial and Construction Area', 'ICD10_2010'), +('X04.7', 'Exposure to ignition of highly flammable material, Farm', 'ICD10_2010'), +('X04.8', 'Exposure to ignition of highly flammable material, Other Specified Area', 'ICD10_2010'), +('X04.9', 'Exposure to ignition of highly flammable material, Unspecified Place', 'ICD10_2010'), +('X05', 'Exposure to ignition or melting of nightwear', 'ICD10_2010'), +('X05.0', 'Exposure to ignition or melting of nightwear, Home', 'ICD10_2010'), +('X05.1', 'Exposure to ignition or melting of nightwear, Residential Institution', 'ICD10_2010'), +('X05.2', 'Exposure to ignition or melting of nightwear, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X05.3', 'Exposure to ignition or melting of nightwear, Sports and Athletic Areas', 'ICD10_2010'), +('X05.4', 'Exposure to ignition or melting of nightwear, Street and Highway', 'ICD10_2010'), +('X05.5', 'Exposure to ignition or melting of nightwear, Trade and Service Area', 'ICD10_2010'), +('X05.6', 'Exposure to ignition or melting of nightwear, Industrial and Construction Area', 'ICD10_2010'), +('X05.7', 'Exposure to ignition or melting of nightwear, Farm', 'ICD10_2010'), +('X05.8', 'Exposure to ignition or melting of nightwear, Other Specified Area', 'ICD10_2010'), +('X05.9', 'Exposure to ignition or melting of nightwear, Unspecified Place', 'ICD10_2010'), +('X06', 'Exposure to ignition or melting of other clothing and apparel', 'ICD10_2010'), +('X06.0', 'Exposure to ignition or melting of other clothing and apparel, Home', 'ICD10_2010'), +('X06.1', 'Exposure to ignition or melting of other clothing and apparel, Residential Institution', 'ICD10_2010'), +('X06.2', 'Exposure to ignition or melting of other clothing and apparel, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X06.3', 'Exposure to ignition or melting of other clothing and apparel, Sports and Athletic Areas', 'ICD10_2010'), +('X06.4', 'Exposure to ignition or melting of other clothing and apparel, Street and Highway', 'ICD10_2010'), +('X06.5', 'Exposure to ignition or melting of other clothing and apparel, Trade and Service Area', 'ICD10_2010'), +('X06.6', 'Exposure to ignition or melting of other clothing and apparel, Industrial and Construction Area', 'ICD10_2010'), +('X06.7', 'Exposure to ignition or melting of other clothing and apparel, Farm', 'ICD10_2010'), +('X06.8', 'Exposure to ignition or melting of other clothing and apparel, Other Specified Area', 'ICD10_2010'), +('X06.9', 'Exposure to ignition or melting of other clothing and apparel, Unspecified Place', 'ICD10_2010'), +('X08', 'Exposure to other specified smoke, fire and flames', 'ICD10_2010'), +('X08.0', 'Exposure to other specified smoke, fire and flames, Home', 'ICD10_2010'), +('X08.1', 'Exposure to other specified smoke, fire and flames, Residential Institution', 'ICD10_2010'), +('X08.2', 'Exposure to other specified smoke, fire and flames, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X08.3', 'Exposure to other specified smoke, fire and flames, Sports and Athletic Areas', 'ICD10_2010'), +('X08.4', 'Exposure to other specified smoke, fire and flames, Street and Highway', 'ICD10_2010'), +('X08.5', 'Exposure to other specified smoke, fire and flames, Trade and Service Area', 'ICD10_2010'), +('X08.6', 'Exposure to other specified smoke, fire and flames, Industrial and Construction Area', 'ICD10_2010'), +('X08.7', 'Exposure to other specified smoke, fire and flames, Farm', 'ICD10_2010'), +('X08.8', 'Exposure to other specified smoke, fire and flames, Other Specified Area', 'ICD10_2010'), +('X08.9', 'Exposure to other specified smoke, fire and flames, Unspecified Place', 'ICD10_2010'), +('X09', 'Exposure to unspecified smoke, fire and flames', 'ICD10_2010'), +('X09.0', 'Exposure to unspecified smoke, fire and flames, Home', 'ICD10_2010'), +('X09.1', 'Exposure to unspecified smoke, fire and flames, Residential Institution', 'ICD10_2010'), +('X09.2', 'Exposure to unspecified smoke, fire and flames, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X09.3', 'Exposure to unspecified smoke, fire and flames, Sports and Athletic Areas', 'ICD10_2010'), +('X09.4', 'Exposure to unspecified smoke, fire and flames, Street and Highway', 'ICD10_2010'), +('X09.5', 'Exposure to unspecified smoke, fire and flames, Trade and Service Area', 'ICD10_2010'), +('X09.6', 'Exposure to unspecified smoke, fire and flames, Industrial and Construction Area', 'ICD10_2010'), +('X09.7', 'Exposure to unspecified smoke, fire and flames, Farm', 'ICD10_2010'), +('X09.8', 'Exposure to unspecified smoke, fire and flames, Other Specified Area', 'ICD10_2010'), +('X09.9', 'Exposure to unspecified smoke, fire and flames, Unspecified Place', 'ICD10_2010'), +('X10', 'Contact with hot drinks, food, fats and cooking oils', 'ICD10_2010'), +('X10.0', 'Contact with hot drinks, food, fats and cooking oils, Home', 'ICD10_2010'), +('X10.1', 'Contact with hot drinks, food, fats and cooking oils, Residential Institution', 'ICD10_2010'), +('X10.2', 'Contact with hot drinks, food, fats and cooking oils, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X10.3', 'Contact with hot drinks, food, fats and cooking oils, Sports and Athletic Areas', 'ICD10_2010'), +('X10.4', 'Contact with hot drinks, food, fats and cooking oils, Street and Highway', 'ICD10_2010'), +('X10.5', 'Contact with hot drinks, food, fats and cooking oils, Trade and Service Area', 'ICD10_2010'), +('X10.6', 'Contact with hot drinks, food, fats and cooking oils, Industrial and Construction Area', 'ICD10_2010'), +('X10.7', 'Contact with hot drinks, food, fats and cooking oils, Farm', 'ICD10_2010'), +('X10.8', 'Contact with hot drinks, food, fats and cooking oils, Other Specified Area', 'ICD10_2010'), +('X10.9', 'Contact with hot drinks, food, fats and cooking oils, Unspecified Place', 'ICD10_2010'), +('X11', 'Contact with hot tap-water', 'ICD10_2010'), +('X11.0', 'Contact with hot tap-water, Home', 'ICD10_2010'), +('X11.1', 'Contact with hot tap-water, Residential Institution', 'ICD10_2010'), +('X11.2', 'Contact with hot tap-water, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X11.3', 'Contact with hot tap-water, Sports and Athletic Areas', 'ICD10_2010'), +('X11.4', 'Contact with hot tap-water, Street and Highway', 'ICD10_2010'), +('X11.5', 'Contact with hot tap-water, Trade and Service Area', 'ICD10_2010'), +('X11.6', 'Contact with hot tap-water, Industrial and Construction Area', 'ICD10_2010'), +('X11.7', 'Contact with hot tap-water, Farm', 'ICD10_2010'), +('X11.8', 'Contact with hot tap-water, Other Specified Area', 'ICD10_2010'), +('X11.9', 'Contact with hot tap-water, Unspecified Place', 'ICD10_2010'), +('X12', 'Contact with other hot fluids', 'ICD10_2010'), +('X12.0', 'Contact with other hot fluids, Home', 'ICD10_2010'), +('X12.1', 'Contact with other hot fluids, Residential Institution', 'ICD10_2010'), +('X12.2', 'Contact with other hot fluids, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X12.3', 'Contact with other hot fluids, Sports and Athletic Areas', 'ICD10_2010'), +('X12.4', 'Contact with other hot fluids, Street and Highway', 'ICD10_2010'), +('X12.5', 'Contact with other hot fluids, Trade and Service Area', 'ICD10_2010'), +('X12.6', 'Contact with other hot fluids, Industrial and Construction Area', 'ICD10_2010'), +('X12.7', 'Contact with other hot fluids, Farm', 'ICD10_2010'), +('X12.8', 'Contact with other hot fluids, Other Specified Area', 'ICD10_2010'), +('X12.9', 'Contact with other hot fluids, Unspecified Place', 'ICD10_2010'), +('X13', 'Contact with steam and hot vapours', 'ICD10_2010'), +('X13.0', 'Contact with steam and hot vapours, Home', 'ICD10_2010'), +('X13.1', 'Contact with steam and hot vapours, Residential Institution', 'ICD10_2010'), +('X13.2', 'Contact with steam and hot vapours, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X13.3', 'Contact with steam and hot vapours, Sports and Athletic Areas', 'ICD10_2010'), +('X13.4', 'Contact with steam and hot vapours, Street and Highway', 'ICD10_2010'), +('X13.5', 'Contact with steam and hot vapours, Trade and Service Area', 'ICD10_2010'), +('X13.6', 'Contact with steam and hot vapours, Industrial and Construction Area', 'ICD10_2010'), +('X13.7', 'Contact with steam and hot vapours, Farm', 'ICD10_2010'), +('X13.8', 'Contact with steam and hot vapours, Other Specified Area', 'ICD10_2010'), +('X13.9', 'Contact with steam and hot vapours, Unspecified Place', 'ICD10_2010'), +('X14', 'Contact with hot air and gases', 'ICD10_2010'), +('X14.0', 'Contact with hot air and gases, Home', 'ICD10_2010'), +('X14.1', 'Contact with hot air and gases, Residential Institution', 'ICD10_2010'), +('X14.2', 'Contact with hot air and gases, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X14.3', 'Contact with hot air and gases, Sports and Athletic Areas', 'ICD10_2010'), +('X14.4', 'Contact with hot air and gases, Street and Highway', 'ICD10_2010'), +('X14.5', 'Contact with hot air and gases, Trade and Service Area', 'ICD10_2010'), +('X14.6', 'Contact with hot air and gases, Industrial and Construction Area', 'ICD10_2010'), +('X14.7', 'Contact with hot air and gases, Farm', 'ICD10_2010'), +('X14.8', 'Contact with hot air and gases, Other Specified Area', 'ICD10_2010'), +('X14.9', 'Contact with hot air and gases, Unspecified Place', 'ICD10_2010'), +('X15', 'Contact with hot household appliances', 'ICD10_2010'), +('X15.0', 'Contact with hot household appliances, Home', 'ICD10_2010'), +('X15.1', 'Contact with hot household appliances, Residential Institution', 'ICD10_2010'), +('X15.2', 'Contact with hot household appliances, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X15.3', 'Contact with hot household appliances, Sports and Athletic Areas', 'ICD10_2010'), +('X15.4', 'Contact with hot household appliances, Street and Highway', 'ICD10_2010'), +('X15.5', 'Contact with hot household appliances, Trade and Service Area', 'ICD10_2010'), +('X15.6', 'Contact with hot household appliances, Industrial and Construction Area', 'ICD10_2010'), +('X15.7', 'Contact with hot household appliances, Farm', 'ICD10_2010'), +('X15.8', 'Contact with hot household appliances, Other Specified Area', 'ICD10_2010'), +('X15.9', 'Contact with hot household appliances, Unspecified Place', 'ICD10_2010'), +('X16', 'Contact with hot heating appliances, radiators and pipes', 'ICD10_2010'), +('X16.0', 'Contact with hot heating appliances, radiators and pipes, Home', 'ICD10_2010'), +('X16.1', 'Contact with hot heating appliances, radiators and pipes, Residential Institution', 'ICD10_2010'), +('X16.2', 'Contact with hot heating appliances, radiators and pipes, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X16.3', 'Contact with hot heating appliances, radiators and pipes, Sports and Athletic Areas', 'ICD10_2010'), +('X16.4', 'Contact with hot heating appliances, radiators and pipes, Street and Highway', 'ICD10_2010'), +('X16.5', 'Contact with hot heating appliances, radiators and pipes, Trade and Service Area', 'ICD10_2010'), +('X16.6', 'Contact with hot heating appliances, radiators and pipes, Industrial and Construction Area', 'ICD10_2010'), +('X16.7', 'Contact with hot heating appliances, radiators and pipes, Farm', 'ICD10_2010'), +('X16.8', 'Contact with hot heating appliances, radiators and pipes, Other Specified Area', 'ICD10_2010'), +('X16.9', 'Contact with hot heating appliances, radiators and pipes, Unspecified Place', 'ICD10_2010'), +('X17', 'Contact with hot engines, machinery and tools', 'ICD10_2010'), +('X17.0', 'Contact with hot engines, machinery and tools, Home', 'ICD10_2010'), +('X17.1', 'Contact with hot engines, machinery and tools, Residential Institution', 'ICD10_2010'), +('X17.2', 'Contact with hot engines, machinery and tools, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X17.3', 'Contact with hot engines, machinery and tools, Sports and Athletic Areas', 'ICD10_2010'), +('X17.4', 'Contact with hot engines, machinery and tools, Street and Highway', 'ICD10_2010'), +('X17.5', 'Contact with hot engines, machinery and tools, Trade and Service Area', 'ICD10_2010'), +('X17.6', 'Contact with hot engines, machinery and tools, Industrial and Construction Area', 'ICD10_2010'), +('X17.7', 'Contact with hot engines, machinery and tools, Farm', 'ICD10_2010'), +('X17.8', 'Contact with hot engines, machinery and tools, Other Specified Area', 'ICD10_2010'), +('X17.9', 'Contact with hot engines, machinery and tools, Unspecified Place', 'ICD10_2010'), +('X18', 'Contact with other hot metals', 'ICD10_2010'), +('X18.0', 'Contact with other hot metals, Home', 'ICD10_2010'), +('X18.1', 'Contact with other hot metals, Residential Institution', 'ICD10_2010'), +('X18.2', 'Contact with other hot metals, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X18.3', 'Contact with other hot metals, Sports and Athletic Areas', 'ICD10_2010'), +('X18.4', 'Contact with other hot metals, Street and Highway', 'ICD10_2010'), +('X18.5', 'Contact with other hot metals, Trade and Service Area', 'ICD10_2010'), +('X18.6', 'Contact with other hot metals, Industrial and Construction Area', 'ICD10_2010'), +('X18.7', 'Contact with other hot metals, Farm', 'ICD10_2010'), +('X18.8', 'Contact with other hot metals, Other Specified Area', 'ICD10_2010'), +('X18.9', 'Contact with other hot metals, Unspecified Place', 'ICD10_2010'), +('X19', 'Contact with other and unspecified heat and hot substances', 'ICD10_2010'), +('X19.0', 'Contact with other and unspecified heat and hot substances, Home', 'ICD10_2010'), +('X19.1', 'Contact with other and unspecified heat and hot substances, Residential Institution', 'ICD10_2010'), +('X19.2', 'Contact with other and unspecified heat and hot substances, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X19.3', 'Contact with other and unspecified heat and hot substances, Sports and Athletic Areas', 'ICD10_2010'), +('X19.4', 'Contact with other and unspecified heat and hot substances, Street and Highway', 'ICD10_2010'), +('X19.5', 'Contact with other and unspecified heat and hot substances, Trade and Service Area', 'ICD10_2010'), +('X19.6', 'Contact with other and unspecified heat and hot substances, Industrial and Construction Area', 'ICD10_2010'), +('X19.7', 'Contact with other and unspecified heat and hot substances, Farm', 'ICD10_2010'), +('X19.8', 'Contact with other and unspecified heat and hot substances, Other Specified Area', 'ICD10_2010'), +('X19.9', 'Contact with other and unspecified heat and hot substances, Unspecified Place', 'ICD10_2010'), +('X20', 'Contact with venomous snakes and lizards', 'ICD10_2010'), +('X20.0', 'Contact with venomous snakes and lizards, Home', 'ICD10_2010'), +('X20.1', 'Contact with venomous snakes and lizards, Residential Institution', 'ICD10_2010'), +('X20.2', 'Contact with venomous snakes and lizards, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X20.3', 'Contact with venomous snakes and lizards, Sports and Athletic Areas', 'ICD10_2010'), +('X20.4', 'Contact with venomous snakes and lizards, Street and Highway', 'ICD10_2010'), +('X20.5', 'Contact with venomous snakes and lizards, Trade and Service Area', 'ICD10_2010'), +('X20.6', 'Contact with venomous snakes and lizards, Industrial and Construction Area', 'ICD10_2010'), +('X20.7', 'Contact with venomous snakes and lizards, Farm', 'ICD10_2010'), +('X20.8', 'Contact with venomous snakes and lizards, Other Specified Area', 'ICD10_2010'), +('X20.9', 'Contact with venomous snakes and lizards, Unspecified Place', 'ICD10_2010'), +('X21', 'Contact with venomous spiders', 'ICD10_2010'), +('X21.0', 'Contact with venomous spiders, Home', 'ICD10_2010'), +('X21.1', 'Contact with venomous spiders, Residential Institution', 'ICD10_2010'), +('X21.2', 'Contact with venomous spiders, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X21.3', 'Contact with venomous spiders, Sports and Athletic Areas', 'ICD10_2010'), +('X21.4', 'Contact with venomous spiders, Street and Highway', 'ICD10_2010'), +('X21.5', 'Contact with venomous spiders, Trade and Service Area', 'ICD10_2010'), +('X21.6', 'Contact with venomous spiders, Industrial and Construction Area', 'ICD10_2010'), +('X21.7', 'Contact with venomous spiders, Farm', 'ICD10_2010'), +('X21.8', 'Contact with venomous spiders, Other Specified Area', 'ICD10_2010'), +('X21.9', 'Contact with venomous spiders, Unspecified Place', 'ICD10_2010'), +('X22', 'Contact with scorpions', 'ICD10_2010'), +('X22.0', 'Contact with scorpions, Home', 'ICD10_2010'), +('X22.1', 'Contact with scorpions, Residential Institution', 'ICD10_2010'), +('X22.2', 'Contact with scorpions, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X22.3', 'Contact with scorpions, Sports and Athletic Areas', 'ICD10_2010'), +('X22.4', 'Contact with scorpions, Street and Highway', 'ICD10_2010'), +('X22.5', 'Contact with scorpions, Trade and Service Area', 'ICD10_2010'), +('X22.6', 'Contact with scorpions, Industrial and Construction Area', 'ICD10_2010'), +('X22.7', 'Contact with scorpions, Farm', 'ICD10_2010'), +('X22.8', 'Contact with scorpions, Other Specified Area', 'ICD10_2010'), +('X22.9', 'Contact with scorpions, Unspecified Place', 'ICD10_2010'), +('X23', 'Contact with hornets, wasps and bees', 'ICD10_2010'), +('X23.0', 'Contact with hornets, wasps and bees, Home', 'ICD10_2010'), +('X23.1', 'Contact with hornets, wasps and bees, Residential Institution', 'ICD10_2010'), +('X23.2', 'Contact with hornets, wasps and bees, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X23.3', 'Contact with hornets, wasps and bees, Sports and Athletic Areas', 'ICD10_2010'), +('X23.4', 'Contact with hornets, wasps and bees, Street and Highway', 'ICD10_2010'), +('X23.5', 'Contact with hornets, wasps and bees, Trade and Service Area', 'ICD10_2010'), +('X23.6', 'Contact with hornets, wasps and bees, Industrial and Construction Area', 'ICD10_2010'), +('X23.7', 'Contact with hornets, wasps and bees, Farm', 'ICD10_2010'), +('X23.8', 'Contact with hornets, wasps and bees, Other Specified Area', 'ICD10_2010'), +('X23.9', 'Contact with hornets, wasps and bees, Unspecified Place', 'ICD10_2010'), +('X24', 'Contact with centipedes and venomous millipedes (tropical)', 'ICD10_2010'); +INSERT INTO `icd10` (`ID_ICD10`, `Diagnosa`, `Versi_ICD10`) VALUES +('X24.0', 'Contact with centipedes and venomous millipedes (tropical), Home', 'ICD10_2010'), +('X24.1', 'Contact with centipedes and venomous millipedes (tropical), Residential Institution', 'ICD10_2010'), +('X24.2', 'Contact with centipedes and venomous millipedes (tropical), School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X24.3', 'Contact with centipedes and venomous millipedes (tropical), Sports and Athletic Areas', 'ICD10_2010'), +('X24.4', 'Contact with centipedes and venomous millipedes (tropical), Street and Highway', 'ICD10_2010'), +('X24.5', 'Contact with centipedes and venomous millipedes (tropical), Trade and Service Area', 'ICD10_2010'), +('X24.6', 'Contact with centipedes and venomous millipedes (tropical), Industrial and Construction Area', 'ICD10_2010'), +('X24.7', 'Contact with centipedes and venomous millipedes (tropical), Farm', 'ICD10_2010'), +('X24.8', 'Contact with centipedes and venomous millipedes (tropical), Other Specified Area', 'ICD10_2010'), +('X24.9', 'Contact with centipedes and venomous millipedes (tropical), Unspecified Place', 'ICD10_2010'), +('X25', 'Contact with other venomous arthropods', 'ICD10_2010'), +('X25.0', 'Contact with other venomous arthropods, Home', 'ICD10_2010'), +('X25.1', 'Contact with other venomous arthropods, Residential Institution', 'ICD10_2010'), +('X25.2', 'Contact with other venomous arthropods, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X25.3', 'Contact with other venomous arthropods, Sports and Athletic Areas', 'ICD10_2010'), +('X25.4', 'Contact with other venomous arthropods, Street and Highway', 'ICD10_2010'), +('X25.5', 'Contact with other venomous arthropods, Trade and Service Area', 'ICD10_2010'), +('X25.6', 'Contact with other venomous arthropods, Industrial and Construction Area', 'ICD10_2010'), +('X25.7', 'Contact with other venomous arthropods, Farm', 'ICD10_2010'), +('X25.8', 'Contact with other venomous arthropods, Other Specified Area', 'ICD10_2010'), +('X25.9', 'Contact with other venomous arthropods, Unspecified Place', 'ICD10_2010'), +('X26', 'Contact with venomous marine animals and plants', 'ICD10_2010'), +('X26.0', 'Contact with venomous marine animals and plants, Home', 'ICD10_2010'), +('X26.1', 'Contact with venomous marine animals and plants, Residential Institution', 'ICD10_2010'), +('X26.2', 'Contact with venomous marine animals and plants, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X26.3', 'Contact with venomous marine animals and plants, Sports and Athletic Areas', 'ICD10_2010'), +('X26.4', 'Contact with venomous marine animals and plants, Street and Highway', 'ICD10_2010'), +('X26.5', 'Contact with venomous marine animals and plants, Trade and Service Area', 'ICD10_2010'), +('X26.6', 'Contact with venomous marine animals and plants, Industrial and Construction Area', 'ICD10_2010'), +('X26.7', 'Contact with venomous marine animals and plants, Farm', 'ICD10_2010'), +('X26.8', 'Contact with venomous marine animals and plants, Other Specified Area', 'ICD10_2010'), +('X26.9', 'Contact with venomous marine animals and plants, Unspecified Place', 'ICD10_2010'), +('X27', 'Contact with other specified venomous animals', 'ICD10_2010'), +('X27.0', 'Contact with other specified venomous animals, Home', 'ICD10_2010'), +('X27.1', 'Contact with other specified venomous animals, Residential Institution', 'ICD10_2010'), +('X27.2', 'Contact with other specified venomous animals, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X27.3', 'Contact with other specified venomous animals, Sports and Athletic Areas', 'ICD10_2010'), +('X27.4', 'Contact with other specified venomous animals, Street and Highway', 'ICD10_2010'), +('X27.5', 'Contact with other specified venomous animals, Trade and Service Area', 'ICD10_2010'), +('X27.6', 'Contact with other specified venomous animals, Industrial and Construction Area', 'ICD10_2010'), +('X27.7', 'Contact with other specified venomous animals, Farm', 'ICD10_2010'), +('X27.8', 'Contact with other specified venomous animals, Other Specified Area', 'ICD10_2010'), +('X27.9', 'Contact with other specified venomous animals, Unspecified Place', 'ICD10_2010'), +('X28', 'Contact with other specified venomous plants', 'ICD10_2010'), +('X28.0', 'Contact with other specified venomous plants, Home', 'ICD10_2010'), +('X28.1', 'Contact with other specified venomous plants, Residential Institution', 'ICD10_2010'), +('X28.2', 'Contact with other specified venomous plants, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X28.3', 'Contact with other specified venomous plants, Sports and Athletic Areas', 'ICD10_2010'), +('X28.4', 'Contact with other specified venomous plants, Street and Highway', 'ICD10_2010'), +('X28.5', 'Contact with other specified venomous plants, Trade and Service Area', 'ICD10_2010'), +('X28.6', 'Contact with other specified venomous plants, Industrial and Construction Area', 'ICD10_2010'), +('X28.7', 'Contact with other specified venomous plants, Farm', 'ICD10_2010'), +('X28.8', 'Contact with other specified venomous plants, Other Specified Area', 'ICD10_2010'), +('X28.9', 'Contact with other specified venomous plants, Unspecified Place', 'ICD10_2010'), +('X29', 'Contact with unspecified venomous animal or plant', 'ICD10_2010'), +('X29.0', 'Contact with unspecified venomous animal or plant, Home', 'ICD10_2010'), +('X29.1', 'Contact with unspecified venomous animal or plant, Residential Institution', 'ICD10_2010'), +('X29.2', 'Contact with unspecified venomous animal or plant, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X29.3', 'Contact with unspecified venomous animal or plant, Sports and Athletic Areas', 'ICD10_2010'), +('X29.4', 'Contact with unspecified venomous animal or plant, Street and Highway', 'ICD10_2010'), +('X29.5', 'Contact with unspecified venomous animal or plant, Trade and Service Area', 'ICD10_2010'), +('X29.6', 'Contact with unspecified venomous animal or plant, Industrial and Construction Area', 'ICD10_2010'), +('X29.7', 'Contact with unspecified venomous animal or plant, Farm', 'ICD10_2010'), +('X29.8', 'Contact with unspecified venomous animal or plant, Other Specified Area', 'ICD10_2010'), +('X29.9', 'Contact with unspecified venomous animal or plant, Unspecified Place', 'ICD10_2010'), +('X30', 'Exposure to excessive natural heat', 'ICD10_2010'), +('X30.0', 'Exposure to excessive natural heat, Home', 'ICD10_2010'), +('X30.1', 'Exposure to excessive natural heat, Residential Institution', 'ICD10_2010'), +('X30.2', 'Exposure to excessive natural heat, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X30.3', 'Exposure to excessive natural heat, Sports and Athletic Areas', 'ICD10_2010'), +('X30.4', 'Exposure to excessive natural heat, Street and Highway', 'ICD10_2010'), +('X30.5', 'Exposure to excessive natural heat, Trade and Service Area', 'ICD10_2010'), +('X30.6', 'Exposure to excessive natural heat, Industrial and Construction Area', 'ICD10_2010'), +('X30.7', 'Exposure to excessive natural heat, Farm', 'ICD10_2010'), +('X30.8', 'Exposure to excessive natural heat, Other Specified Area', 'ICD10_2010'), +('X30.9', 'Exposure to excessive natural heat, Unspecified Place', 'ICD10_2010'), +('X31', 'Exposure to excessive natural cold', 'ICD10_2010'), +('X31.0', 'Exposure to excessive natural cold, Home', 'ICD10_2010'), +('X31.1', 'Exposure to excessive natural cold, Residential Institution', 'ICD10_2010'), +('X31.2', 'Exposure to excessive natural cold, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X31.3', 'Exposure to excessive natural cold, Sports and Athletic Areas', 'ICD10_2010'), +('X31.4', 'Exposure to excessive natural cold, Street and Highway', 'ICD10_2010'), +('X31.5', 'Exposure to excessive natural cold, Trade and Service Area', 'ICD10_2010'), +('X31.6', 'Exposure to excessive natural cold, Industrial and Construction Area', 'ICD10_2010'), +('X31.7', 'Exposure to excessive natural cold, Farm', 'ICD10_2010'), +('X31.8', 'Exposure to excessive natural cold, Other Specified Area', 'ICD10_2010'), +('X31.9', 'Exposure to excessive natural cold, Unspecified Place', 'ICD10_2010'), +('X32', 'Exposure to sunlight', 'ICD10_2010'), +('X32.0', 'Exposure to sunlight, Home', 'ICD10_2010'), +('X32.1', 'Exposure to sunlight, Residential Institution', 'ICD10_2010'), +('X32.2', 'Exposure to sunlight, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X32.3', 'Exposure to sunlight, Sports and Athletic Areas', 'ICD10_2010'), +('X32.4', 'Exposure to sunlight, Street and Highway', 'ICD10_2010'), +('X32.5', 'Exposure to sunlight, Trade and Service Area', 'ICD10_2010'), +('X32.6', 'Exposure to sunlight, Industrial and Construction Area', 'ICD10_2010'), +('X32.7', 'Exposure to sunlight, Farm', 'ICD10_2010'), +('X32.8', 'Exposure to sunlight, Other Specified Area', 'ICD10_2010'), +('X32.9', 'Exposure to sunlight, Unspecified Place', 'ICD10_2010'), +('X33', 'Victim of lightning', 'ICD10_2010'), +('X33.0', 'Victim of lightning, Home', 'ICD10_2010'), +('X33.1', 'Victim of lightning, Residential Institution', 'ICD10_2010'), +('X33.2', 'Victim of lightning, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X33.3', 'Victim of lightning, Sports and Athletic Areas', 'ICD10_2010'), +('X33.4', 'Victim of lightning, Street and Highway', 'ICD10_2010'), +('X33.5', 'Victim of lightning, Trade and Service Area', 'ICD10_2010'), +('X33.6', 'Victim of lightning, Industrial and Construction Area', 'ICD10_2010'), +('X33.7', 'Victim of lightning, Farm', 'ICD10_2010'), +('X33.8', 'Victim of lightning, Other Specified Area', 'ICD10_2010'), +('X33.9', 'Victim of lightning, Unspecified Place', 'ICD10_2010'), +('X34', 'Victim of earthquake', 'ICD10_2010'), +('X34.0', 'Victim of earthquake, Home', 'ICD10_2010'), +('X34.1', 'Victim of earthquake, Residential Institution', 'ICD10_2010'), +('X34.2', 'Victim of earthquake, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X34.3', 'Victim of earthquake, Sports and Athletic Areas', 'ICD10_2010'), +('X34.4', 'Victim of earthquake, Street and Highway', 'ICD10_2010'), +('X34.5', 'Victim of earthquake, Trade and Service Area', 'ICD10_2010'), +('X34.6', 'Victim of earthquake, Industrial and Construction Area', 'ICD10_2010'), +('X34.7', 'Victim of earthquake, Farm', 'ICD10_2010'), +('X34.8', 'Victim of earthquake, Other Specified Area', 'ICD10_2010'), +('X34.9', 'Victim of earthquake, Unspecified Place', 'ICD10_2010'), +('X35', 'Victim of volcanic eruption', 'ICD10_2010'), +('X35.0', 'Victim of volcanic eruption, Home', 'ICD10_2010'), +('X35.1', 'Victim of volcanic eruption, Residential Institution', 'ICD10_2010'), +('X35.2', 'Victim of volcanic eruption, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X35.3', 'Victim of volcanic eruption, Sports and Athletic Areas', 'ICD10_2010'), +('X35.4', 'Victim of volcanic eruption, Street and Highway', 'ICD10_2010'), +('X35.5', 'Victim of volcanic eruption, Trade and Service Area', 'ICD10_2010'), +('X35.6', 'Victim of volcanic eruption, Industrial and Construction Area', 'ICD10_2010'), +('X35.7', 'Victim of volcanic eruption, Farm', 'ICD10_2010'), +('X35.8', 'Victim of volcanic eruption, Other Specified Area', 'ICD10_2010'), +('X35.9', 'Victim of volcanic eruption, Unspecified Place', 'ICD10_2010'), +('X36', 'Victim of avalanche, landslide and other earth movements', 'ICD10_2010'), +('X36.0', 'Victim of avalanche, landslide and other earth movements, Home', 'ICD10_2010'), +('X36.1', 'Victim of avalanche, landslide and other earth movements, Residential Institution', 'ICD10_2010'), +('X36.2', 'Victim of avalanche, landslide and other earth movements, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X36.3', 'Victim of avalanche, landslide and other earth movements, Sports and Athletic Areas', 'ICD10_2010'), +('X36.4', 'Victim of avalanche, landslide and other earth movements, Street and Highway', 'ICD10_2010'), +('X36.5', 'Victim of avalanche, landslide and other earth movements, Trade and Service Area', 'ICD10_2010'), +('X36.6', 'Victim of avalanche, landslide and other earth movements, Industrial and Construction Area', 'ICD10_2010'), +('X36.7', 'Victim of avalanche, landslide and other earth movements, Farm', 'ICD10_2010'), +('X36.8', 'Victim of avalanche, landslide and other earth movements, Other Specified Area', 'ICD10_2010'), +('X36.9', 'Victim of avalanche, landslide and other earth movements, Unspecified Place', 'ICD10_2010'), +('X37', 'Victim of cataclysmic storm', 'ICD10_2010'), +('X37.0', 'Victim of cataclysmic storm, Home', 'ICD10_2010'), +('X37.1', 'Victim of cataclysmic storm, Residential Institution', 'ICD10_2010'), +('X37.2', 'Victim of cataclysmic storm, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X37.3', 'Victim of cataclysmic storm, Sports and Athletic Areas', 'ICD10_2010'), +('X37.4', 'Victim of cataclysmic storm, Street and Highway', 'ICD10_2010'), +('X37.5', 'Victim of cataclysmic storm, Trade and Service Area', 'ICD10_2010'), +('X37.6', 'Victim of cataclysmic storm, Industrial and Construction Area', 'ICD10_2010'), +('X37.7', 'Victim of cataclysmic storm, Farm', 'ICD10_2010'), +('X37.8', 'Victim of cataclysmic storm, Other Specified Area', 'ICD10_2010'), +('X37.9', 'Victim of cataclysmic storm, Unspecified Place', 'ICD10_2010'), +('X38', 'Victim of flood', 'ICD10_2010'), +('X38.0', 'Victim of flood, Home', 'ICD10_2010'), +('X38.1', 'Victim of flood, Residential Institution', 'ICD10_2010'), +('X38.2', 'Victim of flood, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X38.3', 'Victim of flood, Sports and Athletic Areas', 'ICD10_2010'), +('X38.4', 'Victim of flood, Street and Highway', 'ICD10_2010'), +('X38.5', 'Victim of flood, Trade and Service Area', 'ICD10_2010'), +('X38.6', 'Victim of flood, Industrial and Construction Area', 'ICD10_2010'), +('X38.7', 'Victim of flood, Farm', 'ICD10_2010'), +('X38.8', 'Victim of flood, Other Specified Area', 'ICD10_2010'), +('X38.9', 'Victim of flood, Unspecified Place', 'ICD10_2010'), +('X39', 'Exposure to other and unspecified forces of nature', 'ICD10_2010'), +('X39.0', 'Exposure to other and unspecified forces of nature, Home', 'ICD10_2010'), +('X39.1', 'Exposure to other and unspecified forces of nature, Residential Institution', 'ICD10_2010'), +('X39.2', 'Exposure to other and unspecified forces of nature, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X39.3', 'Exposure to other and unspecified forces of nature, Sports and Athletic Areas', 'ICD10_2010'), +('X39.4', 'Exposure to other and unspecified forces of nature, Street and Highway', 'ICD10_2010'), +('X39.5', 'Exposure to other and unspecified forces of nature, Trade and Service Area', 'ICD10_2010'), +('X39.6', 'Exposure to other and unspecified forces of nature, Industrial and Construction Area', 'ICD10_2010'), +('X39.7', 'Exposure to other and unspecified forces of nature, Farm', 'ICD10_2010'), +('X39.8', 'Exposure to other and unspecified forces of nature, Other Specified Area', 'ICD10_2010'), +('X39.9', 'Exposure to other and unspecified forces of nature, Unspecified Place', 'ICD10_2010'), +('X40', 'Accidental poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics', 'ICD10_2010'), +('X40.0', 'Accidental poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, Home', 'ICD10_2010'), +('X40.1', 'Accidental poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, Residential Institution', 'ICD10_2010'), +('X40.2', 'Accidental poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, School, Other Institution and Public Admimistration Are', 'ICD10_2010'), +('X40.3', 'Accidental poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, Sports and Athletic Areas', 'ICD10_2010'), +('X40.4', 'Accidental poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, Street and Highway', 'ICD10_2010'), +('X40.5', 'Accidental poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, Trade and Service Area', 'ICD10_2010'), +('X40.6', 'Accidental poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, Industrial and Construction Area', 'ICD10_2010'), +('X40.7', 'Accidental poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, Farm', 'ICD10_2010'), +('X40.8', 'Accidental poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, Other Specified Area', 'ICD10_2010'), +('X40.9', 'Accidental poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, Unspecified Place', 'ICD10_2010'), +('X41', 'Accidental poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified', 'ICD10_2010'), +('X41.0', 'Accidental poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, Home', 'ICD10_2010'), +('X41.1', 'Accidental poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, Residenti', 'ICD10_2010'), +('X41.2', 'Accidental poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, School, O', 'ICD10_2010'), +('X41.3', 'Accidental poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, Sports an', 'ICD10_2010'), +('X41.4', 'Accidental poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, Street an', 'ICD10_2010'), +('X41.5', 'Accidental poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, Trade and', 'ICD10_2010'), +('X41.6', 'Accidental poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, Industria', 'ICD10_2010'), +('X41.7', 'Accidental poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, Farm', 'ICD10_2010'), +('X41.8', 'Accidental poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, Other Spe', 'ICD10_2010'), +('X41.9', 'Accidental poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, Unspecifi', 'ICD10_2010'), +('X42', 'Accidental poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified', 'ICD10_2010'), +('X42.0', 'Accidental poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, Home', 'ICD10_2010'), +('X42.1', 'Accidental poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, Residential Institution', 'ICD10_2010'), +('X42.2', 'Accidental poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, School, Other Institution and Public', 'ICD10_2010'), +('X42.3', 'Accidental poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, Sports and Athletic Areas', 'ICD10_2010'), +('X42.4', 'Accidental poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, Street and Highway', 'ICD10_2010'), +('X42.5', 'Accidental poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, Trade and Service Area', 'ICD10_2010'), +('X42.6', 'Accidental poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, Industrial and Construction Area', 'ICD10_2010'), +('X42.7', 'Accidental poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, Farm', 'ICD10_2010'), +('X42.8', 'Accidental poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, Other Specified Area', 'ICD10_2010'), +('X42.9', 'Accidental poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, Unspecified Place', 'ICD10_2010'), +('X43', 'Accidental poisoning by and exposure to other drugs acting on the autonomic nervous system', 'ICD10_2010'), +('X43.0', 'Accidental poisoning by and exposure to other drugs acting on the autonomic nervous system, Home', 'ICD10_2010'), +('X43.1', 'Accidental poisoning by and exposure to other drugs acting on the autonomic nervous system, Residential Institution', 'ICD10_2010'), +('X43.2', 'Accidental poisoning by and exposure to other drugs acting on the autonomic nervous system, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X43.3', 'Accidental poisoning by and exposure to other drugs acting on the autonomic nervous system, Sports and Athletic Areas', 'ICD10_2010'), +('X43.4', 'Accidental poisoning by and exposure to other drugs acting on the autonomic nervous system, Street and Highway', 'ICD10_2010'), +('X43.5', 'Accidental poisoning by and exposure to other drugs acting on the autonomic nervous system, Trade and Service Area', 'ICD10_2010'), +('X43.6', 'Accidental poisoning by and exposure to other drugs acting on the autonomic nervous system, Industrial and Construction Area', 'ICD10_2010'), +('X43.7', 'Accidental poisoning by and exposure to other drugs acting on the autonomic nervous system, Farm', 'ICD10_2010'), +('X43.8', 'Accidental poisoning by and exposure to other drugs acting on the autonomic nervous system, Other Specified Area', 'ICD10_2010'), +('X43.9', 'Accidental poisoning by and exposure to other drugs acting on the autonomic nervous system, Unspecified Place', 'ICD10_2010'), +('X44', 'Accidental poisoning by and exposure to other and unspecified drugs, medicaments and biological substances', 'ICD10_2010'), +('X44.0', 'Accidental poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, Home', 'ICD10_2010'), +('X44.1', 'Accidental poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, Residential Institution', 'ICD10_2010'), +('X44.2', 'Accidental poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, School, Other Institution and Public Admim', 'ICD10_2010'), +('X44.3', 'Accidental poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, Sports and Athletic Areas', 'ICD10_2010'), +('X44.4', 'Accidental poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, Street and Highway', 'ICD10_2010'), +('X44.5', 'Accidental poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, Trade and Service Area', 'ICD10_2010'), +('X44.6', 'Accidental poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, Industrial and Construction Area', 'ICD10_2010'), +('X44.7', 'Accidental poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, Farm', 'ICD10_2010'), +('X44.8', 'Accidental poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, Other Specified Area', 'ICD10_2010'), +('X44.9', 'Accidental poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, Unspecified Place', 'ICD10_2010'), +('X45', 'Accidental poisoning by and exposure to alcohol', 'ICD10_2010'), +('X45.0', 'Accidental poisoning by and exposure to alcohol, Home', 'ICD10_2010'), +('X45.1', 'Accidental poisoning by and exposure to alcohol, Residential Institution', 'ICD10_2010'), +('X45.2', 'Accidental poisoning by and exposure to alcohol, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X45.3', 'Accidental poisoning by and exposure to alcohol, Sports and Athletic Areas', 'ICD10_2010'), +('X45.4', 'Accidental poisoning by and exposure to alcohol, Street and Highway', 'ICD10_2010'), +('X45.5', 'Accidental poisoning by and exposure to alcohol, Trade and Service Area', 'ICD10_2010'), +('X45.6', 'Accidental poisoning by and exposure to alcohol, Industrial and Construction Area', 'ICD10_2010'), +('X45.7', 'Accidental poisoning by and exposure to alcohol, Farm', 'ICD10_2010'), +('X45.8', 'Accidental poisoning by and exposure to alcohol, Other Specified Area', 'ICD10_2010'), +('X45.9', 'Accidental poisoning by and exposure to alcohol, Unspecified Place', 'ICD10_2010'), +('X46', 'Accidental poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours', 'ICD10_2010'), +('X46.0', 'Accidental poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, Home', 'ICD10_2010'), +('X46.1', 'Accidental poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, Residential Institution', 'ICD10_2010'), +('X46.2', 'Accidental poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, School, Other Institution and Public Admimist', 'ICD10_2010'), +('X46.3', 'Accidental poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, Sports and Athletic Areas', 'ICD10_2010'), +('X46.4', 'Accidental poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, Street and Highway', 'ICD10_2010'), +('X46.5', 'Accidental poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, Trade and Service Area', 'ICD10_2010'), +('X46.6', 'Accidental poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, Industrial and Construction Area', 'ICD10_2010'), +('X46.7', 'Accidental poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, Farm', 'ICD10_2010'), +('X46.8', 'Accidental poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, Other Specified Area', 'ICD10_2010'), +('X46.9', 'Accidental poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, Unspecified Place', 'ICD10_2010'), +('X47', 'Accidental poisoning by and exposure to other gases and vapours', 'ICD10_2010'), +('X47.0', 'Accidental poisoning by and exposure to other gases and vapours, Home', 'ICD10_2010'), +('X47.1', 'Accidental poisoning by and exposure to other gases and vapours, Residential Institution', 'ICD10_2010'), +('X47.2', 'Accidental poisoning by and exposure to other gases and vapours, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X47.3', 'Accidental poisoning by and exposure to other gases and vapours, Sports and Athletic Areas', 'ICD10_2010'), +('X47.4', 'Accidental poisoning by and exposure to other gases and vapours, Street and Highway', 'ICD10_2010'), +('X47.5', 'Accidental poisoning by and exposure to other gases and vapours, Trade and Service Area', 'ICD10_2010'), +('X47.6', 'Accidental poisoning by and exposure to other gases and vapours, Industrial and Construction Area', 'ICD10_2010'), +('X47.7', 'Accidental poisoning by and exposure to other gases and vapours, Farm', 'ICD10_2010'), +('X47.8', 'Accidental poisoning by and exposure to other gases and vapours, Other Specified Area', 'ICD10_2010'), +('X47.9', 'Accidental poisoning by and exposure to other gases and vapours, Unspecified Place', 'ICD10_2010'), +('X48', 'Accidental poisoning by and exposure to pesticides', 'ICD10_2010'), +('X48.0', 'Accidental poisoning by and exposure to pesticides, Home', 'ICD10_2010'), +('X48.1', 'Accidental poisoning by and exposure to pesticides, Residential Institution', 'ICD10_2010'), +('X48.2', 'Accidental poisoning by and exposure to pesticides, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X48.3', 'Accidental poisoning by and exposure to pesticides, Sports and Athletic Areas', 'ICD10_2010'), +('X48.4', 'Accidental poisoning by and exposure to pesticides, Street and Highway', 'ICD10_2010'), +('X48.5', 'Accidental poisoning by and exposure to pesticides, Trade and Service Area', 'ICD10_2010'), +('X48.6', 'Accidental poisoning by and exposure to pesticides, Industrial and Construction Area', 'ICD10_2010'), +('X48.7', 'Accidental poisoning by and exposure to pesticides, Farm', 'ICD10_2010'), +('X48.8', 'Accidental poisoning by and exposure to pesticides, Other Specified Area', 'ICD10_2010'), +('X48.9', 'Accidental poisoning by and exposure to pesticides, Unspecified Place', 'ICD10_2010'), +('X49', 'Accidental poisoning by and exposure to other and unspecified chemicals and noxious substances', 'ICD10_2010'), +('X49.0', 'Accidental poisoning by and exposure to other and unspecified chemicals and noxious substances, Home', 'ICD10_2010'), +('X49.1', 'Accidental poisoning by and exposure to other and unspecified chemicals and noxious substances, Residential Institution', 'ICD10_2010'), +('X49.2', 'Accidental poisoning by and exposure to other and unspecified chemicals and noxious substances, School, Other Institution and Public Admimistration Ar', 'ICD10_2010'), +('X49.3', 'Accidental poisoning by and exposure to other and unspecified chemicals and noxious substances, Sports and Athletic Areas', 'ICD10_2010'), +('X49.4', 'Accidental poisoning by and exposure to other and unspecified chemicals and noxious substances, Street and Highway', 'ICD10_2010'), +('X49.5', 'Accidental poisoning by and exposure to other and unspecified chemicals and noxious substances, Trade and Service Area', 'ICD10_2010'), +('X49.6', 'Accidental poisoning by and exposure to other and unspecified chemicals and noxious substances, Industrial and Construction Area', 'ICD10_2010'), +('X49.7', 'Accidental poisoning by and exposure to other and unspecified chemicals and noxious substances, Farm', 'ICD10_2010'), +('X49.8', 'Accidental poisoning by and exposure to other and unspecified chemicals and noxious substances, Other Specified Area', 'ICD10_2010'), +('X49.9', 'Accidental poisoning by and exposure to other and unspecified chemicals and noxious substances, Unspecified Place', 'ICD10_2010'), +('X50', 'Overexertion and strenuous or repetitive movements', 'ICD10_2010'), +('X50.0', 'Overexertion and strenuous or repetitive movements, Home', 'ICD10_2010'), +('X50.1', 'Overexertion and strenuous or repetitive movements, Residential Institution', 'ICD10_2010'), +('X50.2', 'Overexertion and strenuous or repetitive movements, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X50.3', 'Overexertion and strenuous or repetitive movements, Sports and Athletic Areas', 'ICD10_2010'), +('X50.4', 'Overexertion and strenuous or repetitive movements, Street and Highway', 'ICD10_2010'), +('X50.5', 'Overexertion and strenuous or repetitive movements, Trade and Service Area', 'ICD10_2010'), +('X50.6', 'Overexertion and strenuous or repetitive movements, Industrial and Construction Area', 'ICD10_2010'), +('X50.7', 'Overexertion and strenuous or repetitive movements, Farm', 'ICD10_2010'), +('X50.8', 'Overexertion and strenuous or repetitive movements, Other Specified Area', 'ICD10_2010'), +('X50.9', 'Overexertion and strenuous or repetitive movements, Unspecified Place', 'ICD10_2010'), +('X51', 'Travel and motion', 'ICD10_2010'), +('X51.0', 'Travel and motion, Home', 'ICD10_2010'), +('X51.1', 'Travel and motion, Residential Institution', 'ICD10_2010'), +('X51.2', 'Travel and motion, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X51.3', 'Travel and motion, Sports and Athletic Areas', 'ICD10_2010'), +('X51.4', 'Travel and motion, Street and Highway', 'ICD10_2010'), +('X51.5', 'Travel and motion, Trade and Service Area', 'ICD10_2010'), +('X51.6', 'Travel and motion, Industrial and Construction Area', 'ICD10_2010'), +('X51.7', 'Travel and motion, Farm', 'ICD10_2010'), +('X51.8', 'Travel and motion, Other Specified Area', 'ICD10_2010'), +('X51.9', 'Travel and motion, Unspecified Place', 'ICD10_2010'), +('X52', 'Prolonged stay in weightless environment', 'ICD10_2010'), +('X52.0', 'Prolonged stay in weightless environment, Home', 'ICD10_2010'), +('X52.1', 'Prolonged stay in weightless environment, Residential Institution', 'ICD10_2010'), +('X52.2', 'Prolonged stay in weightless environment, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X52.3', 'Prolonged stay in weightless environment, Sports and Athletic Areas', 'ICD10_2010'), +('X52.4', 'Prolonged stay in weightless environment, Street and Highway', 'ICD10_2010'), +('X52.5', 'Prolonged stay in weightless environment, Trade and Service Area', 'ICD10_2010'), +('X52.6', 'Prolonged stay in weightless environment, Industrial and Construction Area', 'ICD10_2010'), +('X52.7', 'Prolonged stay in weightless environment, Farm', 'ICD10_2010'), +('X52.8', 'Prolonged stay in weightless environment, Other Specified Area', 'ICD10_2010'), +('X52.9', 'Prolonged stay in weightless environment, Unspecified Place', 'ICD10_2010'), +('X53', 'Lack of food', 'ICD10_2010'), +('X53.0', 'Lack of food, Home', 'ICD10_2010'), +('X53.1', 'Lack of food, Residential Institution', 'ICD10_2010'), +('X53.2', 'Lack of food, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X53.3', 'Lack of food, Sports and Athletic Areas', 'ICD10_2010'), +('X53.4', 'Lack of food, Street and Highway', 'ICD10_2010'), +('X53.5', 'Lack of food, Trade and Service Area', 'ICD10_2010'), +('X53.6', 'Lack of food, Industrial and Construction Area', 'ICD10_2010'), +('X53.7', 'Lack of food, Farm', 'ICD10_2010'), +('X53.8', 'Lack of food, Other Specified Area', 'ICD10_2010'), +('X53.9', 'Lack of food, Unspecified Place', 'ICD10_2010'), +('X54', 'Lack of water', 'ICD10_2010'), +('X54.0', 'Lack of water, Home', 'ICD10_2010'), +('X54.1', 'Lack of water, Residential Institution', 'ICD10_2010'), +('X54.2', 'Lack of water, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X54.3', 'Lack of water, Sports and Athletic Areas', 'ICD10_2010'), +('X54.4', 'Lack of water, Street and Highway', 'ICD10_2010'), +('X54.5', 'Lack of water, Trade and Service Area', 'ICD10_2010'), +('X54.6', 'Lack of water, Industrial and Construction Area', 'ICD10_2010'), +('X54.7', 'Lack of water, Farm', 'ICD10_2010'), +('X54.8', 'Lack of water, Other Specified Area', 'ICD10_2010'), +('X54.9', 'Lack of water, Unspecified Place', 'ICD10_2010'), +('X57', 'Unspecified privation', 'ICD10_2010'), +('X57.0', 'Unspecified privation, Home', 'ICD10_2010'), +('X57.1', 'Unspecified privation, Residential Institution', 'ICD10_2010'), +('X57.2', 'Unspecified privation, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X57.3', 'Unspecified privation, Sports and Athletic Areas', 'ICD10_2010'), +('X57.4', 'Unspecified privation, Street and Highway', 'ICD10_2010'), +('X57.5', 'Unspecified privation, Trade and Service Area', 'ICD10_2010'), +('X57.6', 'Unspecified privation, Industrial and Construction Area', 'ICD10_2010'), +('X57.7', 'Unspecified privation, Farm', 'ICD10_2010'), +('X57.8', 'Unspecified privation, Other Specified Area', 'ICD10_2010'), +('X57.9', 'Unspecified privation, Unspecified Place', 'ICD10_2010'), +('X58', 'Exposure to other specified factors', 'ICD10_2010'), +('X58.0', 'Exposure to other specified factors, Home', 'ICD10_2010'), +('X58.1', 'Exposure to other specified factors, Residential Institution', 'ICD10_2010'), +('X58.2', 'Exposure to other specified factors, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X58.3', 'Exposure to other specified factors, Sports and Athletic Areas', 'ICD10_2010'), +('X58.4', 'Exposure to other specified factors, Street and Highway', 'ICD10_2010'), +('X58.5', 'Exposure to other specified factors, Trade and Service Area', 'ICD10_2010'), +('X58.6', 'Exposure to other specified factors, Industrial and Construction Area', 'ICD10_2010'), +('X58.7', 'Exposure to other specified factors, Farm', 'ICD10_2010'), +('X58.8', 'Exposure to other specified factors, Other Specified Area', 'ICD10_2010'), +('X58.9', 'Exposure to other specified factors, Unspecified Place', 'ICD10_2010'), +('X59', 'Exposure to unspecified factor', 'ICD10_2010'), +('X59.0', 'Exposure to unspecified factor, Home', 'ICD10_2010'), +('X59.1', 'Exposure to unspecified factor, Residential Institution', 'ICD10_2010'), +('X59.2', 'Exposure to unspecified factor, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X59.3', 'Exposure to unspecified factor, Sports and Athletic Areas', 'ICD10_2010'), +('X59.4', 'Exposure to unspecified factor, Street and Highway', 'ICD10_2010'), +('X59.5', 'Exposure to unspecified factor, Trade and Service Area', 'ICD10_2010'), +('X59.6', 'Exposure to unspecified factor, Industrial and Construction Area', 'ICD10_2010'), +('X59.7', 'Exposure to unspecified factor, Farm', 'ICD10_2010'), +('X59.8', 'Exposure to unspecified factor, Other Specified Area', 'ICD10_2010'), +('X59.9', 'Exposure to unspecified factor, Unspecified Place', 'ICD10_2010'), +('X60', 'Intentional self-poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics', 'ICD10_2010'), +('X60.0', 'Intentional self-poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, Home', 'ICD10_2010'), +('X60.1', 'Intentional self-poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, Residential Institution', 'ICD10_2010'), +('X60.2', 'Intentional self-poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, School, Other Institution and Public Admimistrati', 'ICD10_2010'), +('X60.3', 'Intentional self-poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, Sports and Athletic Areas', 'ICD10_2010'), +('X60.4', 'Intentional self-poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, Street and Highway', 'ICD10_2010'), +('X60.5', 'Intentional self-poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, Trade and Service Area', 'ICD10_2010'), +('X60.6', 'Intentional self-poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, Industrial and Construction Area', 'ICD10_2010'), +('X60.7', 'Intentional self-poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, Farm', 'ICD10_2010'), +('X60.8', 'Intentional self-poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, Other Specified Area', 'ICD10_2010'), +('X60.9', 'Intentional self-poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, Unspecified Place', 'ICD10_2010'), +('X61', 'Intentional self-poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified', 'ICD10_2010'), +('X61.0', 'Intentional self-poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, Hom', 'ICD10_2010'), +('X61.1', 'Intentional self-poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, Res', 'ICD10_2010'), +('X61.2', 'Intentional self-poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, Sch', 'ICD10_2010'), +('X61.3', 'Intentional self-poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, Spo', 'ICD10_2010'), +('X61.4', 'Intentional self-poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, Str', 'ICD10_2010'), +('X61.5', 'Intentional self-poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, Tra', 'ICD10_2010'), +('X61.6', 'Intentional self-poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, Ind', 'ICD10_2010'), +('X61.7', 'Intentional self-poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, Far', 'ICD10_2010'), +('X61.8', 'Intentional self-poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, Oth', 'ICD10_2010'), +('X61.9', 'Intentional self-poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, Uns', 'ICD10_2010'), +('X62', 'Intentional self-poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified', 'ICD10_2010'), +('X62.0', 'Intentional self-poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, Home', 'ICD10_2010'), +('X62.1', 'Intentional self-poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, Residential Institution', 'ICD10_2010'), +('X62.2', 'Intentional self-poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, School, Other Institution and ', 'ICD10_2010'), +('X62.3', 'Intentional self-poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, Sports and Athletic Areas', 'ICD10_2010'), +('X62.4', 'Intentional self-poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, Street and Highway', 'ICD10_2010'), +('X62.5', 'Intentional self-poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, Trade and Service Area', 'ICD10_2010'), +('X62.6', 'Intentional self-poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, Industrial and Construction Ar', 'ICD10_2010'), +('X62.7', 'Intentional self-poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, Farm', 'ICD10_2010'), +('X62.8', 'Intentional self-poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, Other Specified Area', 'ICD10_2010'), +('X62.9', 'Intentional self-poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, Unspecified Place', 'ICD10_2010'), +('X63', 'Intentional self-poisoning by and exposure to other drugs acting on the autonomic nervous system', 'ICD10_2010'), +('X63.0', 'Intentional self-poisoning by and exposure to other drugs acting on the autonomic nervous system, Home', 'ICD10_2010'), +('X63.1', 'Intentional self-poisoning by and exposure to other drugs acting on the autonomic nervous system, Residential Institution', 'ICD10_2010'), +('X63.2', 'Intentional self-poisoning by and exposure to other drugs acting on the autonomic nervous system, School, Other Institution and Public Admimistration ', 'ICD10_2010'), +('X63.3', 'Intentional self-poisoning by and exposure to other drugs acting on the autonomic nervous system, Sports and Athletic Areas', 'ICD10_2010'), +('X63.4', 'Intentional self-poisoning by and exposure to other drugs acting on the autonomic nervous system, Street and Highway', 'ICD10_2010'), +('X63.5', 'Intentional self-poisoning by and exposure to other drugs acting on the autonomic nervous system, Trade and Service Area', 'ICD10_2010'), +('X63.6', 'Intentional self-poisoning by and exposure to other drugs acting on the autonomic nervous system, Industrial and Construction Area', 'ICD10_2010'), +('X63.7', 'Intentional self-poisoning by and exposure to other drugs acting on the autonomic nervous system, Farm', 'ICD10_2010'), +('X63.8', 'Intentional self-poisoning by and exposure to other drugs acting on the autonomic nervous system, Other Specified Area', 'ICD10_2010'), +('X63.9', 'Intentional self-poisoning by and exposure to other drugs acting on the autonomic nervous system, Unspecified Place', 'ICD10_2010'), +('X64', 'Intentional self-poisoning by and exposure to other and unspecified drugs, medicaments and biological substances', 'ICD10_2010'), +('X64.0', 'Intentional self-poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, Home', 'ICD10_2010'), +('X64.1', 'Intentional self-poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, Residential Institution', 'ICD10_2010'), +('X64.2', 'Intentional self-poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, School, Other Institution and Public', 'ICD10_2010'), +('X64.3', 'Intentional self-poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, Sports and Athletic Areas', 'ICD10_2010'), +('X64.4', 'Intentional self-poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, Street and Highway', 'ICD10_2010'), +('X64.5', 'Intentional self-poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, Trade and Service Area', 'ICD10_2010'), +('X64.6', 'Intentional self-poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, Industrial and Construction Area', 'ICD10_2010'), +('X64.7', 'Intentional self-poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, Farm', 'ICD10_2010'), +('X64.8', 'Intentional self-poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, Other Specified Area', 'ICD10_2010'), +('X64.9', 'Intentional self-poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, Unspecified Place', 'ICD10_2010'), +('X65', 'Intentional self-poisoning by and exposure to alcohol', 'ICD10_2010'), +('X65.0', 'Intentional self-poisoning by and exposure to alcohol, Home', 'ICD10_2010'), +('X65.1', 'Intentional self-poisoning by and exposure to alcohol, Residential Institution', 'ICD10_2010'), +('X65.2', 'Intentional self-poisoning by and exposure to alcohol, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X65.3', 'Intentional self-poisoning by and exposure to alcohol, Sports and Athletic Areas', 'ICD10_2010'), +('X65.4', 'Intentional self-poisoning by and exposure to alcohol, Street and Highway', 'ICD10_2010'), +('X65.5', 'Intentional self-poisoning by and exposure to alcohol, Trade and Service Area', 'ICD10_2010'), +('X65.6', 'Intentional self-poisoning by and exposure to alcohol, Industrial and Construction Area', 'ICD10_2010'), +('X65.7', 'Intentional self-poisoning by and exposure to alcohol, Farm', 'ICD10_2010'), +('X65.8', 'Intentional self-poisoning by and exposure to alcohol, Other Specified Area', 'ICD10_2010'), +('X65.9', 'Intentional self-poisoning by and exposure to alcohol, Unspecified Place', 'ICD10_2010'), +('X66', 'Intentional self-poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours', 'ICD10_2010'), +('X66.0', 'Intentional self-poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, Home', 'ICD10_2010'), +('X66.1', 'Intentional self-poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, Residential Institution', 'ICD10_2010'), +('X66.2', 'Intentional self-poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, School, Other Institution and Public Ad', 'ICD10_2010'), +('X66.3', 'Intentional self-poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, Sports and Athletic Areas', 'ICD10_2010'), +('X66.4', 'Intentional self-poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, Street and Highway', 'ICD10_2010'), +('X66.5', 'Intentional self-poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, Trade and Service Area', 'ICD10_2010'), +('X66.6', 'Intentional self-poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, Industrial and Construction Area', 'ICD10_2010'), +('X66.7', 'Intentional self-poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, Farm', 'ICD10_2010'), +('X66.8', 'Intentional self-poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, Other Specified Area', 'ICD10_2010'), +('X66.9', 'Intentional self-poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, Unspecified Place', 'ICD10_2010'), +('X67', 'Intentional self-poisoning by and exposure to other gases and vapours', 'ICD10_2010'), +('X67.0', 'Intentional self-poisoning by and exposure to other gases and vapours, Home', 'ICD10_2010'), +('X67.1', 'Intentional self-poisoning by and exposure to other gases and vapours, Residential Institution', 'ICD10_2010'), +('X67.2', 'Intentional self-poisoning by and exposure to other gases and vapours, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X67.3', 'Intentional self-poisoning by and exposure to other gases and vapours, Sports and Athletic Areas', 'ICD10_2010'), +('X67.4', 'Intentional self-poisoning by and exposure to other gases and vapours, Street and Highway', 'ICD10_2010'), +('X67.5', 'Intentional self-poisoning by and exposure to other gases and vapours, Trade and Service Area', 'ICD10_2010'), +('X67.6', 'Intentional self-poisoning by and exposure to other gases and vapours, Industrial and Construction Area', 'ICD10_2010'), +('X67.7', 'Intentional self-poisoning by and exposure to other gases and vapours, Farm', 'ICD10_2010'), +('X67.8', 'Intentional self-poisoning by and exposure to other gases and vapours, Other Specified Area', 'ICD10_2010'), +('X67.9', 'Intentional self-poisoning by and exposure to other gases and vapours, Unspecified Place', 'ICD10_2010'), +('X68', 'Intentional self-poisoning by and exposure to pesticides', 'ICD10_2010'), +('X68.0', 'Intentional self-poisoning by and exposure to pesticides, Home', 'ICD10_2010'), +('X68.1', 'Intentional self-poisoning by and exposure to pesticides, Residential Institution', 'ICD10_2010'), +('X68.2', 'Intentional self-poisoning by and exposure to pesticides, School, Other Institution and Public Admimistration Area', 'ICD10_2010'); +INSERT INTO `icd10` (`ID_ICD10`, `Diagnosa`, `Versi_ICD10`) VALUES +('X68.3', 'Intentional self-poisoning by and exposure to pesticides, Sports and Athletic Areas', 'ICD10_2010'), +('X68.4', 'Intentional self-poisoning by and exposure to pesticides, Street and Highway', 'ICD10_2010'), +('X68.5', 'Intentional self-poisoning by and exposure to pesticides, Trade and Service Area', 'ICD10_2010'), +('X68.6', 'Intentional self-poisoning by and exposure to pesticides, Industrial and Construction Area', 'ICD10_2010'), +('X68.7', 'Intentional self-poisoning by and exposure to pesticides, Farm', 'ICD10_2010'), +('X68.8', 'Intentional self-poisoning by and exposure to pesticides, Other Specified Area', 'ICD10_2010'), +('X68.9', 'Intentional self-poisoning by and exposure to pesticides, Unspecified Place', 'ICD10_2010'), +('X69', 'Intentional self-poisoning by and exposure to other and unspecified chemicals and noxious substances', 'ICD10_2010'), +('X69.0', 'Intentional self-poisoning by and exposure to other and unspecified chemicals and noxious substances, Home', 'ICD10_2010'), +('X69.1', 'Intentional self-poisoning by and exposure to other and unspecified chemicals and noxious substances, Residential Institution', 'ICD10_2010'), +('X69.2', 'Intentional self-poisoning by and exposure to other and unspecified chemicals and noxious substances, School, Other Institution and Public Admimistrat', 'ICD10_2010'), +('X69.3', 'Intentional self-poisoning by and exposure to other and unspecified chemicals and noxious substances, Sports and Athletic Areas', 'ICD10_2010'), +('X69.4', 'Intentional self-poisoning by and exposure to other and unspecified chemicals and noxious substances, Street and Highway', 'ICD10_2010'), +('X69.5', 'Intentional self-poisoning by and exposure to other and unspecified chemicals and noxious substances, Trade and Service Area', 'ICD10_2010'), +('X69.6', 'Intentional self-poisoning by and exposure to other and unspecified chemicals and noxious substances, Industrial and Construction Area', 'ICD10_2010'), +('X69.7', 'Intentional self-poisoning by and exposure to other and unspecified chemicals and noxious substances, Farm', 'ICD10_2010'), +('X69.8', 'Intentional self-poisoning by and exposure to other and unspecified chemicals and noxious substances, Other Specified Area', 'ICD10_2010'), +('X69.9', 'Intentional self-poisoning by and exposure to other and unspecified chemicals and noxious substances, Unspecified Place', 'ICD10_2010'), +('X70', 'Intentional self-harm by hanging, strangulation and suffocation', 'ICD10_2010'), +('X70.0', 'Intentional self-harm by hanging, strangulation and suffocation, Home', 'ICD10_2010'), +('X70.1', 'Intentional self-harm by hanging, strangulation and suffocation, Residential Institution', 'ICD10_2010'), +('X70.2', 'Intentional self-harm by hanging, strangulation and suffocation, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X70.3', 'Intentional self-harm by hanging, strangulation and suffocation, Sports and Athletic Areas', 'ICD10_2010'), +('X70.4', 'Intentional self-harm by hanging, strangulation and suffocation, Street and Highway', 'ICD10_2010'), +('X70.5', 'Intentional self-harm by hanging, strangulation and suffocation, Trade and Service Area', 'ICD10_2010'), +('X70.6', 'Intentional self-harm by hanging, strangulation and suffocation, Industrial and Construction Area', 'ICD10_2010'), +('X70.7', 'Intentional self-harm by hanging, strangulation and suffocation, Farm', 'ICD10_2010'), +('X70.8', 'Intentional self-harm by hanging, strangulation and suffocation, Other Specified Area', 'ICD10_2010'), +('X70.9', 'Intentional self-harm by hanging, strangulation and suffocation, Unspecified Place', 'ICD10_2010'), +('X71', 'Intentional self-harm by drowning and submersion', 'ICD10_2010'), +('X71.0', 'Intentional self-harm by drowning and submersion, Home', 'ICD10_2010'), +('X71.1', 'Intentional self-harm by drowning and submersion, Residential Institution', 'ICD10_2010'), +('X71.2', 'Intentional self-harm by drowning and submersion, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X71.3', 'Intentional self-harm by drowning and submersion, Sports and Athletic Areas', 'ICD10_2010'), +('X71.4', 'Intentional self-harm by drowning and submersion, Street and Highway', 'ICD10_2010'), +('X71.5', 'Intentional self-harm by drowning and submersion, Trade and Service Area', 'ICD10_2010'), +('X71.6', 'Intentional self-harm by drowning and submersion, Industrial and Construction Area', 'ICD10_2010'), +('X71.7', 'Intentional self-harm by drowning and submersion, Farm', 'ICD10_2010'), +('X71.8', 'Intentional self-harm by drowning and submersion, Other Specified Area', 'ICD10_2010'), +('X71.9', 'Intentional self-harm by drowning and submersion, Unspecified Place', 'ICD10_2010'), +('X72', 'Intentional self-harm by handgun discharge', 'ICD10_2010'), +('X72.0', 'Intentional self-harm by handgun discharge, Home', 'ICD10_2010'), +('X72.1', 'Intentional self-harm by handgun discharge, Residential Institution', 'ICD10_2010'), +('X72.2', 'Intentional self-harm by handgun discharge, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X72.3', 'Intentional self-harm by handgun discharge, Sports and Athletic Areas', 'ICD10_2010'), +('X72.4', 'Intentional self-harm by handgun discharge, Street and Highway', 'ICD10_2010'), +('X72.5', 'Intentional self-harm by handgun discharge, Trade and Service Area', 'ICD10_2010'), +('X72.6', 'Intentional self-harm by handgun discharge, Industrial and Construction Area', 'ICD10_2010'), +('X72.7', 'Intentional self-harm by handgun discharge, Farm', 'ICD10_2010'), +('X72.8', 'Intentional self-harm by handgun discharge, Other Specified Area', 'ICD10_2010'), +('X72.9', 'Intentional self-harm by handgun discharge, Unspecified Place', 'ICD10_2010'), +('X73', 'Intentional self-harm by rifle, shotgun and larger firearm discharge', 'ICD10_2010'), +('X73.0', 'Intentional self-harm by rifle, shotgun and larger firearm discharge, Home', 'ICD10_2010'), +('X73.1', 'Intentional self-harm by rifle, shotgun and larger firearm discharge, Residential Institution', 'ICD10_2010'), +('X73.2', 'Intentional self-harm by rifle, shotgun and larger firearm discharge, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X73.3', 'Intentional self-harm by rifle, shotgun and larger firearm discharge, Sports and Athletic Areas', 'ICD10_2010'), +('X73.4', 'Intentional self-harm by rifle, shotgun and larger firearm discharge, Street and Highway', 'ICD10_2010'), +('X73.5', 'Intentional self-harm by rifle, shotgun and larger firearm discharge, Trade and Service Area', 'ICD10_2010'), +('X73.6', 'Intentional self-harm by rifle, shotgun and larger firearm discharge, Industrial and Construction Area', 'ICD10_2010'), +('X73.7', 'Intentional self-harm by rifle, shotgun and larger firearm discharge, Farm', 'ICD10_2010'), +('X73.8', 'Intentional self-harm by rifle, shotgun and larger firearm discharge, Other Specified Area', 'ICD10_2010'), +('X73.9', 'Intentional self-harm by rifle, shotgun and larger firearm discharge, Unspecified Place', 'ICD10_2010'), +('X74', 'Intentional self-harm by other and unspecified firearm discharge', 'ICD10_2010'), +('X74.0', 'Intentional self-harm by other and unspecified firearm discharge, Home', 'ICD10_2010'), +('X74.1', 'Intentional self-harm by other and unspecified firearm discharge, Residential Institution', 'ICD10_2010'), +('X74.2', 'Intentional self-harm by other and unspecified firearm discharge, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X74.3', 'Intentional self-harm by other and unspecified firearm discharge, Sports and Athletic Areas', 'ICD10_2010'), +('X74.4', 'Intentional self-harm by other and unspecified firearm discharge, Street and Highway', 'ICD10_2010'), +('X74.5', 'Intentional self-harm by other and unspecified firearm discharge, Trade and Service Area', 'ICD10_2010'), +('X74.6', 'Intentional self-harm by other and unspecified firearm discharge, Industrial and Construction Area', 'ICD10_2010'), +('X74.7', 'Intentional self-harm by other and unspecified firearm discharge, Farm', 'ICD10_2010'), +('X74.8', 'Intentional self-harm by other and unspecified firearm discharge, Other Specified Area', 'ICD10_2010'), +('X74.9', 'Intentional self-harm by other and unspecified firearm discharge, Unspecified Place', 'ICD10_2010'), +('X75', 'Intentional self-harm by explosive material', 'ICD10_2010'), +('X75.0', 'Intentional self-harm by explosive material, Home', 'ICD10_2010'), +('X75.1', 'Intentional self-harm by explosive material, Residential Institution', 'ICD10_2010'), +('X75.2', 'Intentional self-harm by explosive material, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X75.3', 'Intentional self-harm by explosive material, Sports and Athletic Areas', 'ICD10_2010'), +('X75.4', 'Intentional self-harm by explosive material, Street and Highway', 'ICD10_2010'), +('X75.5', 'Intentional self-harm by explosive material, Trade and Service Area', 'ICD10_2010'), +('X75.6', 'Intentional self-harm by explosive material, Industrial and Construction Area', 'ICD10_2010'), +('X75.7', 'Intentional self-harm by explosive material, Farm', 'ICD10_2010'), +('X75.8', 'Intentional self-harm by explosive material, Other Specified Area', 'ICD10_2010'), +('X75.9', 'Intentional self-harm by explosive material, Unspecified Place', 'ICD10_2010'), +('X76', 'Intentional self-harm by smoke, fire and flames', 'ICD10_2010'), +('X76.0', 'Intentional self-harm by smoke, fire and flames, Home', 'ICD10_2010'), +('X76.1', 'Intentional self-harm by smoke, fire and flames, Residential Institution', 'ICD10_2010'), +('X76.2', 'Intentional self-harm by smoke, fire and flames, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X76.3', 'Intentional self-harm by smoke, fire and flames, Sports and Athletic Areas', 'ICD10_2010'), +('X76.4', 'Intentional self-harm by smoke, fire and flames, Street and Highway', 'ICD10_2010'), +('X76.5', 'Intentional self-harm by smoke, fire and flames, Trade and Service Area', 'ICD10_2010'), +('X76.6', 'Intentional self-harm by smoke, fire and flames, Industrial and Construction Area', 'ICD10_2010'), +('X76.7', 'Intentional self-harm by smoke, fire and flames, Farm', 'ICD10_2010'), +('X76.8', 'Intentional self-harm by smoke, fire and flames, Other Specified Area', 'ICD10_2010'), +('X76.9', 'Intentional self-harm by smoke, fire and flames, Unspecified Place', 'ICD10_2010'), +('X77', 'Intentional self-harm by steam, hot vapours and hot objects', 'ICD10_2010'), +('X77.0', 'Intentional self-harm by steam, hot vapours and hot objects, Home', 'ICD10_2010'), +('X77.1', 'Intentional self-harm by steam, hot vapours and hot objects, Residential Institution', 'ICD10_2010'), +('X77.2', 'Intentional self-harm by steam, hot vapours and hot objects, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X77.3', 'Intentional self-harm by steam, hot vapours and hot objects, Sports and Athletic Areas', 'ICD10_2010'), +('X77.4', 'Intentional self-harm by steam, hot vapours and hot objects, Street and Highway', 'ICD10_2010'), +('X77.5', 'Intentional self-harm by steam, hot vapours and hot objects, Trade and Service Area', 'ICD10_2010'), +('X77.6', 'Intentional self-harm by steam, hot vapours and hot objects, Industrial and Construction Area', 'ICD10_2010'), +('X77.7', 'Intentional self-harm by steam, hot vapours and hot objects, Farm', 'ICD10_2010'), +('X77.8', 'Intentional self-harm by steam, hot vapours and hot objects, Other Specified Area', 'ICD10_2010'), +('X77.9', 'Intentional self-harm by steam, hot vapours and hot objects, Unspecified Place', 'ICD10_2010'), +('X78', 'Intentional self-harm by sharp object', 'ICD10_2010'), +('X78.0', 'Intentional self-harm by sharp object, Home', 'ICD10_2010'), +('X78.1', 'Intentional self-harm by sharp object, Residential Institution', 'ICD10_2010'), +('X78.2', 'Intentional self-harm by sharp object, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X78.3', 'Intentional self-harm by sharp object, Sports and Athletic Areas', 'ICD10_2010'), +('X78.4', 'Intentional self-harm by sharp object, Street and Highway', 'ICD10_2010'), +('X78.5', 'Intentional self-harm by sharp object, Trade and Service Area', 'ICD10_2010'), +('X78.6', 'Intentional self-harm by sharp object, Industrial and Construction Area', 'ICD10_2010'), +('X78.7', 'Intentional self-harm by sharp object, Farm', 'ICD10_2010'), +('X78.8', 'Intentional self-harm by sharp object, Other Specified Area', 'ICD10_2010'), +('X78.9', 'Intentional self-harm by sharp object, Unspecified Place', 'ICD10_2010'), +('X79', 'Intentional self-harm by blunt object', 'ICD10_2010'), +('X79.0', 'Intentional self-harm by blunt object, Home', 'ICD10_2010'), +('X79.1', 'Intentional self-harm by blunt object, Residential Institution', 'ICD10_2010'), +('X79.2', 'Intentional self-harm by blunt object, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X79.3', 'Intentional self-harm by blunt object, Sports and Athletic Areas', 'ICD10_2010'), +('X79.4', 'Intentional self-harm by blunt object, Street and Highway', 'ICD10_2010'), +('X79.5', 'Intentional self-harm by blunt object, Trade and Service Area', 'ICD10_2010'), +('X79.6', 'Intentional self-harm by blunt object, Industrial and Construction Area', 'ICD10_2010'), +('X79.7', 'Intentional self-harm by blunt object, Farm', 'ICD10_2010'), +('X79.8', 'Intentional self-harm by blunt object, Other Specified Area', 'ICD10_2010'), +('X79.9', 'Intentional self-harm by blunt object, Unspecified Place', 'ICD10_2010'), +('X80', 'Intentional self-harm by jumping from a high place', 'ICD10_2010'), +('X80.0', 'Intentional self-harm by jumping from a high place, Home', 'ICD10_2010'), +('X80.1', 'Intentional self-harm by jumping from a high place, Residential Institution', 'ICD10_2010'), +('X80.2', 'Intentional self-harm by jumping from a high place, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X80.3', 'Intentional self-harm by jumping from a high place, Sports and Athletic Areas', 'ICD10_2010'), +('X80.4', 'Intentional self-harm by jumping from a high place, Street and Highway', 'ICD10_2010'), +('X80.5', 'Intentional self-harm by jumping from a high place, Trade and Service Area', 'ICD10_2010'), +('X80.6', 'Intentional self-harm by jumping from a high place, Industrial and Construction Area', 'ICD10_2010'), +('X80.7', 'Intentional self-harm by jumping from a high place, Farm', 'ICD10_2010'), +('X80.8', 'Intentional self-harm by jumping from a high place, Other Specified Area', 'ICD10_2010'), +('X80.9', 'Intentional self-harm by jumping from a high place, Unspecified Place', 'ICD10_2010'), +('X81', 'Intentional self-harm by jumping or lying before moving object', 'ICD10_2010'), +('X81.0', 'Intentional self-harm by jumping or lying before moving object, Home', 'ICD10_2010'), +('X81.1', 'Intentional self-harm by jumping or lying before moving object, Residential Institution', 'ICD10_2010'), +('X81.2', 'Intentional self-harm by jumping or lying before moving object, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X81.3', 'Intentional self-harm by jumping or lying before moving object, Sports and Athletic Areas', 'ICD10_2010'), +('X81.4', 'Intentional self-harm by jumping or lying before moving object, Street and Highway', 'ICD10_2010'), +('X81.5', 'Intentional self-harm by jumping or lying before moving object, Trade and Service Area', 'ICD10_2010'), +('X81.6', 'Intentional self-harm by jumping or lying before moving object, Industrial and Construction Area', 'ICD10_2010'), +('X81.7', 'Intentional self-harm by jumping or lying before moving object, Farm', 'ICD10_2010'), +('X81.8', 'Intentional self-harm by jumping or lying before moving object, Other Specified Area', 'ICD10_2010'), +('X81.9', 'Intentional self-harm by jumping or lying before moving object, Unspecified Place', 'ICD10_2010'), +('X82', 'Intentional self-harm by crashing of motor vehicle', 'ICD10_2010'), +('X82.0', 'Intentional self-harm by crashing of motor vehicle, Home', 'ICD10_2010'), +('X82.1', 'Intentional self-harm by crashing of motor vehicle, Residential Institution', 'ICD10_2010'), +('X82.2', 'Intentional self-harm by crashing of motor vehicle, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X82.3', 'Intentional self-harm by crashing of motor vehicle, Sports and Athletic Areas', 'ICD10_2010'), +('X82.4', 'Intentional self-harm by crashing of motor vehicle, Street and Highway', 'ICD10_2010'), +('X82.5', 'Intentional self-harm by crashing of motor vehicle, Trade and Service Area', 'ICD10_2010'), +('X82.6', 'Intentional self-harm by crashing of motor vehicle, Industrial and Construction Area', 'ICD10_2010'), +('X82.7', 'Intentional self-harm by crashing of motor vehicle, Farm', 'ICD10_2010'), +('X82.8', 'Intentional self-harm by crashing of motor vehicle, Other Specified Area', 'ICD10_2010'), +('X82.9', 'Intentional self-harm by crashing of motor vehicle, Unspecified Place', 'ICD10_2010'), +('X83', 'Intentional self-harm by other specified means', 'ICD10_2010'), +('X83.0', 'Intentional self-harm by other specified means, Home', 'ICD10_2010'), +('X83.1', 'Intentional self-harm by other specified means, Residential Institution', 'ICD10_2010'), +('X83.2', 'Intentional self-harm by other specified means, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X83.3', 'Intentional self-harm by other specified means, Sports and Athletic Areas', 'ICD10_2010'), +('X83.4', 'Intentional self-harm by other specified means, Street and Highway', 'ICD10_2010'), +('X83.5', 'Intentional self-harm by other specified means, Trade and Service Area', 'ICD10_2010'), +('X83.6', 'Intentional self-harm by other specified means, Industrial and Construction Area', 'ICD10_2010'), +('X83.7', 'Intentional self-harm by other specified means, Farm', 'ICD10_2010'), +('X83.8', 'Intentional self-harm by other specified means, Other Specified Area', 'ICD10_2010'), +('X83.9', 'Intentional self-harm by other specified means, Unspecified Place', 'ICD10_2010'), +('X84', 'Intentional self-harm by unspecified means', 'ICD10_2010'), +('X84.0', 'Intentional self-harm by unspecified means, Home', 'ICD10_2010'), +('X84.1', 'Intentional self-harm by unspecified means, Residential Institution', 'ICD10_2010'), +('X84.2', 'Intentional self-harm by unspecified means, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X84.3', 'Intentional self-harm by unspecified means, Sports and Athletic Areas', 'ICD10_2010'), +('X84.4', 'Intentional self-harm by unspecified means, Street and Highway', 'ICD10_2010'), +('X84.5', 'Intentional self-harm by unspecified means, Trade and Service Area', 'ICD10_2010'), +('X84.6', 'Intentional self-harm by unspecified means, Industrial and Construction Area', 'ICD10_2010'), +('X84.7', 'Intentional self-harm by unspecified means, Farm', 'ICD10_2010'), +('X84.8', 'Intentional self-harm by unspecified means, Other Specified Area', 'ICD10_2010'), +('X84.9', 'Intentional self-harm by unspecified means, Unspecified Place', 'ICD10_2010'), +('X85', 'Assault by drugs, medicaments and biological substances', 'ICD10_2010'), +('X85.0', 'Assault by drugs, medicaments and biological substances, Home', 'ICD10_2010'), +('X85.1', 'Assault by drugs, medicaments and biological substances, Residential Institution', 'ICD10_2010'), +('X85.2', 'Assault by drugs, medicaments and biological substances, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X85.3', 'Assault by drugs, medicaments and biological substances, Sports and Athletic Areas', 'ICD10_2010'), +('X85.4', 'Assault by drugs, medicaments and biological substances, Street and Highway', 'ICD10_2010'), +('X85.5', 'Assault by drugs, medicaments and biological substances, Trade and Service Area', 'ICD10_2010'), +('X85.6', 'Assault by drugs, medicaments and biological substances, Industrial and Construction Area', 'ICD10_2010'), +('X85.7', 'Assault by drugs, medicaments and biological substances, Farm', 'ICD10_2010'), +('X85.8', 'Assault by drugs, medicaments and biological substances, Other Specified Area', 'ICD10_2010'), +('X85.9', 'Assault by drugs, medicaments and biological substances, Unspecified Place', 'ICD10_2010'), +('X86', 'Assault by corrosive substance', 'ICD10_2010'), +('X86.0', 'Assault by corrosive substance, Home', 'ICD10_2010'), +('X86.1', 'Assault by corrosive substance, Residential Institution', 'ICD10_2010'), +('X86.2', 'Assault by corrosive substance, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X86.3', 'Assault by corrosive substance, Sports and Athletic Areas', 'ICD10_2010'), +('X86.4', 'Assault by corrosive substance, Street and Highway', 'ICD10_2010'), +('X86.5', 'Assault by corrosive substance, Trade and Service Area', 'ICD10_2010'), +('X86.6', 'Assault by corrosive substance, Industrial and Construction Area', 'ICD10_2010'), +('X86.7', 'Assault by corrosive substance, Farm', 'ICD10_2010'), +('X86.8', 'Assault by corrosive substance, Other Specified Area', 'ICD10_2010'), +('X86.9', 'Assault by corrosive substance, Unspecified Place', 'ICD10_2010'), +('X87', 'Assault by pesticides', 'ICD10_2010'), +('X87.0', 'Assault by pesticides, Home', 'ICD10_2010'), +('X87.1', 'Assault by pesticides, Residential Institution', 'ICD10_2010'), +('X87.2', 'Assault by pesticides, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X87.3', 'Assault by pesticides, Sports and Athletic Areas', 'ICD10_2010'), +('X87.4', 'Assault by pesticides, Street and Highway', 'ICD10_2010'), +('X87.5', 'Assault by pesticides, Trade and Service Area', 'ICD10_2010'), +('X87.6', 'Assault by pesticides, Industrial and Construction Area', 'ICD10_2010'), +('X87.7', 'Assault by pesticides, Farm', 'ICD10_2010'), +('X87.8', 'Assault by pesticides, Other Specified Area', 'ICD10_2010'), +('X87.9', 'Assault by pesticides, Unspecified Place', 'ICD10_2010'), +('X88', 'Assault by gases and vapours', 'ICD10_2010'), +('X88.0', 'Assault by gases and vapours, Home', 'ICD10_2010'), +('X88.1', 'Assault by gases and vapours, Residential Institution', 'ICD10_2010'), +('X88.2', 'Assault by gases and vapours, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X88.3', 'Assault by gases and vapours, Sports and Athletic Areas', 'ICD10_2010'), +('X88.4', 'Assault by gases and vapours, Street and Highway', 'ICD10_2010'), +('X88.5', 'Assault by gases and vapours, Trade and Service Area', 'ICD10_2010'), +('X88.6', 'Assault by gases and vapours, Industrial and Construction Area', 'ICD10_2010'), +('X88.7', 'Assault by gases and vapours, Farm', 'ICD10_2010'), +('X88.8', 'Assault by gases and vapours, Other Specified Area', 'ICD10_2010'), +('X88.9', 'Assault by gases and vapours, Unspecified Place', 'ICD10_2010'), +('X89', 'Assault by other specified chemicals and noxious substances', 'ICD10_2010'), +('X89.0', 'Assault by other specified chemicals and noxious substances, Home', 'ICD10_2010'), +('X89.1', 'Assault by other specified chemicals and noxious substances, Residential Institution', 'ICD10_2010'), +('X89.2', 'Assault by other specified chemicals and noxious substances, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X89.3', 'Assault by other specified chemicals and noxious substances, Sports and Athletic Areas', 'ICD10_2010'), +('X89.4', 'Assault by other specified chemicals and noxious substances, Street and Highway', 'ICD10_2010'), +('X89.5', 'Assault by other specified chemicals and noxious substances, Trade and Service Area', 'ICD10_2010'), +('X89.6', 'Assault by other specified chemicals and noxious substances, Industrial and Construction Area', 'ICD10_2010'), +('X89.7', 'Assault by other specified chemicals and noxious substances, Farm', 'ICD10_2010'), +('X89.8', 'Assault by other specified chemicals and noxious substances, Other Specified Area', 'ICD10_2010'), +('X89.9', 'Assault by other specified chemicals and noxious substances, Unspecified Place', 'ICD10_2010'), +('X90', 'Assault by unspecified chemical or noxious substance', 'ICD10_2010'), +('X90.0', 'Assault by unspecified chemical or noxious substance, Home', 'ICD10_2010'), +('X90.1', 'Assault by unspecified chemical or noxious substance, Residential Institution', 'ICD10_2010'), +('X90.2', 'Assault by unspecified chemical or noxious substance, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X90.3', 'Assault by unspecified chemical or noxious substance, Sports and Athletic Areas', 'ICD10_2010'), +('X90.4', 'Assault by unspecified chemical or noxious substance, Street and Highway', 'ICD10_2010'), +('X90.5', 'Assault by unspecified chemical or noxious substance, Trade and Service Area', 'ICD10_2010'), +('X90.6', 'Assault by unspecified chemical or noxious substance, Industrial and Construction Area', 'ICD10_2010'), +('X90.7', 'Assault by unspecified chemical or noxious substance, Farm', 'ICD10_2010'), +('X90.8', 'Assault by unspecified chemical or noxious substance, Other Specified Area', 'ICD10_2010'), +('X90.9', 'Assault by unspecified chemical or noxious substance, Unspecified Place', 'ICD10_2010'), +('X91', 'Assault by hanging, strangulation and suffocation', 'ICD10_2010'), +('X91.0', 'Assault by hanging, strangulation and suffocation, Home', 'ICD10_2010'), +('X91.1', 'Assault by hanging, strangulation and suffocation, Residential Institution', 'ICD10_2010'), +('X91.2', 'Assault by hanging, strangulation and suffocation, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X91.3', 'Assault by hanging, strangulation and suffocation, Sports and Athletic Areas', 'ICD10_2010'), +('X91.4', 'Assault by hanging, strangulation and suffocation, Street and Highway', 'ICD10_2010'), +('X91.5', 'Assault by hanging, strangulation and suffocation, Trade and Service Area', 'ICD10_2010'), +('X91.6', 'Assault by hanging, strangulation and suffocation, Industrial and Construction Area', 'ICD10_2010'), +('X91.7', 'Assault by hanging, strangulation and suffocation, Farm', 'ICD10_2010'), +('X91.8', 'Assault by hanging, strangulation and suffocation, Other Specified Area', 'ICD10_2010'), +('X91.9', 'Assault by hanging, strangulation and suffocation, Unspecified Place', 'ICD10_2010'), +('X92', 'Assault by drowning and submersion', 'ICD10_2010'), +('X92.0', 'Assault by drowning and submersion, Home', 'ICD10_2010'), +('X92.1', 'Assault by drowning and submersion, Residential Institution', 'ICD10_2010'), +('X92.2', 'Assault by drowning and submersion, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X92.3', 'Assault by drowning and submersion, Sports and Athletic Areas', 'ICD10_2010'), +('X92.4', 'Assault by drowning and submersion, Street and Highway', 'ICD10_2010'), +('X92.5', 'Assault by drowning and submersion, Trade and Service Area', 'ICD10_2010'), +('X92.6', 'Assault by drowning and submersion, Industrial and Construction Area', 'ICD10_2010'), +('X92.7', 'Assault by drowning and submersion, Farm', 'ICD10_2010'), +('X92.8', 'Assault by drowning and submersion, Other Specified Area', 'ICD10_2010'), +('X92.9', 'Assault by drowning and submersion, Unspecified Place', 'ICD10_2010'), +('X93', 'Assault by handgun discharge', 'ICD10_2010'), +('X93.0', 'Assault by handgun discharge, Home', 'ICD10_2010'), +('X93.1', 'Assault by handgun discharge, Residential Institution', 'ICD10_2010'), +('X93.2', 'Assault by handgun discharge, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X93.3', 'Assault by handgun discharge, Sports and Athletic Areas', 'ICD10_2010'), +('X93.4', 'Assault by handgun discharge, Street and Highway', 'ICD10_2010'), +('X93.5', 'Assault by handgun discharge, Trade and Service Area', 'ICD10_2010'), +('X93.6', 'Assault by handgun discharge, Industrial and Construction Area', 'ICD10_2010'), +('X93.7', 'Assault by handgun discharge, Farm', 'ICD10_2010'), +('X93.8', 'Assault by handgun discharge, Other Specified Area', 'ICD10_2010'), +('X93.9', 'Assault by handgun discharge, Unspecified Place', 'ICD10_2010'), +('X94', 'Assault by rifle, shotgun and larger firearm discharge', 'ICD10_2010'), +('X94.0', 'Assault by rifle, shotgun and larger firearm discharge, Home', 'ICD10_2010'), +('X94.1', 'Assault by rifle, shotgun and larger firearm discharge, Residential Institution', 'ICD10_2010'), +('X94.2', 'Assault by rifle, shotgun and larger firearm discharge, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X94.3', 'Assault by rifle, shotgun and larger firearm discharge, Sports and Athletic Areas', 'ICD10_2010'), +('X94.4', 'Assault by rifle, shotgun and larger firearm discharge, Street and Highway', 'ICD10_2010'), +('X94.5', 'Assault by rifle, shotgun and larger firearm discharge, Trade and Service Area', 'ICD10_2010'), +('X94.6', 'Assault by rifle, shotgun and larger firearm discharge, Industrial and Construction Area', 'ICD10_2010'), +('X94.7', 'Assault by rifle, shotgun and larger firearm discharge, Farm', 'ICD10_2010'), +('X94.8', 'Assault by rifle, shotgun and larger firearm discharge, Other Specified Area', 'ICD10_2010'), +('X94.9', 'Assault by rifle, shotgun and larger firearm discharge, Unspecified Place', 'ICD10_2010'), +('X95', 'Assault by other and unspecified firearm discharge', 'ICD10_2010'), +('X95.0', 'Assault by other and unspecified firearm discharge, Home', 'ICD10_2010'), +('X95.1', 'Assault by other and unspecified firearm discharge, Residential Institution', 'ICD10_2010'), +('X95.2', 'Assault by other and unspecified firearm discharge, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X95.3', 'Assault by other and unspecified firearm discharge, Sports and Athletic Areas', 'ICD10_2010'), +('X95.4', 'Assault by other and unspecified firearm discharge, Street and Highway', 'ICD10_2010'), +('X95.5', 'Assault by other and unspecified firearm discharge, Trade and Service Area', 'ICD10_2010'), +('X95.6', 'Assault by other and unspecified firearm discharge, Industrial and Construction Area', 'ICD10_2010'), +('X95.7', 'Assault by other and unspecified firearm discharge, Farm', 'ICD10_2010'), +('X95.8', 'Assault by other and unspecified firearm discharge, Other Specified Area', 'ICD10_2010'), +('X95.9', 'Assault by other and unspecified firearm discharge, Unspecified Place', 'ICD10_2010'), +('X96', 'Assault by explosive material', 'ICD10_2010'), +('X96.0', 'Assault by explosive material, Home', 'ICD10_2010'), +('X96.1', 'Assault by explosive material, Residential Institution', 'ICD10_2010'), +('X96.2', 'Assault by explosive material, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X96.3', 'Assault by explosive material, Sports and Athletic Areas', 'ICD10_2010'), +('X96.4', 'Assault by explosive material, Street and Highway', 'ICD10_2010'), +('X96.5', 'Assault by explosive material, Trade and Service Area', 'ICD10_2010'), +('X96.6', 'Assault by explosive material, Industrial and Construction Area', 'ICD10_2010'), +('X96.7', 'Assault by explosive material, Farm', 'ICD10_2010'), +('X96.8', 'Assault by explosive material, Other Specified Area', 'ICD10_2010'), +('X96.9', 'Assault by explosive material, Unspecified Place', 'ICD10_2010'), +('X97', 'Assault by smoke, fire and flames', 'ICD10_2010'), +('X97.0', 'Assault by smoke, fire and flames, Home', 'ICD10_2010'), +('X97.1', 'Assault by smoke, fire and flames, Residential Institution', 'ICD10_2010'), +('X97.2', 'Assault by smoke, fire and flames, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X97.3', 'Assault by smoke, fire and flames, Sports and Athletic Areas', 'ICD10_2010'), +('X97.4', 'Assault by smoke, fire and flames, Street and Highway', 'ICD10_2010'), +('X97.5', 'Assault by smoke, fire and flames, Trade and Service Area', 'ICD10_2010'), +('X97.6', 'Assault by smoke, fire and flames, Industrial and Construction Area', 'ICD10_2010'), +('X97.7', 'Assault by smoke, fire and flames, Farm', 'ICD10_2010'), +('X97.8', 'Assault by smoke, fire and flames, Other Specified Area', 'ICD10_2010'), +('X97.9', 'Assault by smoke, fire and flames, Unspecified Place', 'ICD10_2010'), +('X98', 'Assault by steam, hot vapours and hot objects', 'ICD10_2010'), +('X98.0', 'Assault by steam, hot vapours and hot objects, Home', 'ICD10_2010'), +('X98.1', 'Assault by steam, hot vapours and hot objects, Residential Institution', 'ICD10_2010'), +('X98.2', 'Assault by steam, hot vapours and hot objects, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X98.3', 'Assault by steam, hot vapours and hot objects, Sports and Athletic Areas', 'ICD10_2010'), +('X98.4', 'Assault by steam, hot vapours and hot objects, Street and Highway', 'ICD10_2010'), +('X98.5', 'Assault by steam, hot vapours and hot objects, Trade and Service Area', 'ICD10_2010'), +('X98.6', 'Assault by steam, hot vapours and hot objects, Industrial and Construction Area', 'ICD10_2010'), +('X98.7', 'Assault by steam, hot vapours and hot objects, Farm', 'ICD10_2010'), +('X98.8', 'Assault by steam, hot vapours and hot objects, Other Specified Area', 'ICD10_2010'), +('X98.9', 'Assault by steam, hot vapours and hot objects, Unspecified Place', 'ICD10_2010'), +('X99', 'Assault by sharp object', 'ICD10_2010'), +('X99.0', 'Assault by sharp object, Home', 'ICD10_2010'), +('X99.1', 'Assault by sharp object, Residential Institution', 'ICD10_2010'), +('X99.2', 'Assault by sharp object, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X99.3', 'Assault by sharp object, Sports and Athletic Areas', 'ICD10_2010'), +('X99.4', 'Assault by sharp object, Street and Highway', 'ICD10_2010'), +('X99.5', 'Assault by sharp object, Trade and Service Area', 'ICD10_2010'), +('X99.6', 'Assault by sharp object, Industrial and Construction Area', 'ICD10_2010'), +('X99.7', 'Assault by sharp object, Farm', 'ICD10_2010'), +('X99.8', 'Assault by sharp object, Other Specified Area', 'ICD10_2010'), +('X99.9', 'Assault by sharp object, Unspecified Place', 'ICD10_2010'), +('Y00', 'Assault by blunt object', 'ICD10_2010'), +('Y00.0', 'Assault by blunt object, Home', 'ICD10_2010'), +('Y00.1', 'Assault by blunt object, Residential Institution', 'ICD10_2010'), +('Y00.2', 'Assault by blunt object, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('Y00.3', 'Assault by blunt object, Sports and Athletic Areas', 'ICD10_2010'), +('Y00.4', 'Assault by blunt object, Street and Highway', 'ICD10_2010'), +('Y00.5', 'Assault by blunt object, Trade and Service Area', 'ICD10_2010'), +('Y00.6', 'Assault by blunt object, Industrial and Construction Area', 'ICD10_2010'), +('Y00.7', 'Assault by blunt object, Farm', 'ICD10_2010'), +('Y00.8', 'Assault by blunt object, Other Specified Area', 'ICD10_2010'), +('Y00.9', 'Assault by blunt object, Unspecified Place', 'ICD10_2010'), +('Y01', 'Assault by pushing from high place', 'ICD10_2010'), +('Y01.0', 'Assault by pushing from high place, Home', 'ICD10_2010'), +('Y01.1', 'Assault by pushing from high place, Residential Institution', 'ICD10_2010'), +('Y01.2', 'Assault by pushing from high place, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('Y01.3', 'Assault by pushing from high place, Sports and Athletic Areas', 'ICD10_2010'), +('Y01.4', 'Assault by pushing from high place, Street and Highway', 'ICD10_2010'), +('Y01.5', 'Assault by pushing from high place, Trade and Service Area', 'ICD10_2010'), +('Y01.6', 'Assault by pushing from high place, Industrial and Construction Area', 'ICD10_2010'), +('Y01.7', 'Assault by pushing from high place, Farm', 'ICD10_2010'), +('Y01.8', 'Assault by pushing from high place, Other Specified Area', 'ICD10_2010'), +('Y01.9', 'Assault by pushing from high place, Unspecified Place', 'ICD10_2010'), +('Y02', 'Assault by pushing or placing victim before moving object', 'ICD10_2010'), +('Y02.0', 'Assault by pushing or placing victim before moving object, Home', 'ICD10_2010'), +('Y02.1', 'Assault by pushing or placing victim before moving object, Residential Institution', 'ICD10_2010'), +('Y02.2', 'Assault by pushing or placing victim before moving object, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('Y02.3', 'Assault by pushing or placing victim before moving object, Sports and Athletic Areas', 'ICD10_2010'), +('Y02.4', 'Assault by pushing or placing victim before moving object, Street and Highway', 'ICD10_2010'), +('Y02.5', 'Assault by pushing or placing victim before moving object, Trade and Service Area', 'ICD10_2010'), +('Y02.6', 'Assault by pushing or placing victim before moving object, Industrial and Construction Area', 'ICD10_2010'), +('Y02.7', 'Assault by pushing or placing victim before moving object, Farm', 'ICD10_2010'), +('Y02.8', 'Assault by pushing or placing victim before moving object, Other Specified Area', 'ICD10_2010'), +('Y02.9', 'Assault by pushing or placing victim before moving object, Unspecified Place', 'ICD10_2010'), +('Y03', 'Assault by crashing of motor vehicle', 'ICD10_2010'), +('Y03.0', 'Assault by crashing of motor vehicle, Home', 'ICD10_2010'), +('Y03.1', 'Assault by crashing of motor vehicle, Residential Institution', 'ICD10_2010'), +('Y03.2', 'Assault by crashing of motor vehicle, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('Y03.3', 'Assault by crashing of motor vehicle, Sports and Athletic Areas', 'ICD10_2010'), +('Y03.4', 'Assault by crashing of motor vehicle, Street and Highway', 'ICD10_2010'), +('Y03.5', 'Assault by crashing of motor vehicle, Trade and Service Area', 'ICD10_2010'), +('Y03.6', 'Assault by crashing of motor vehicle, Industrial and Construction Area', 'ICD10_2010'), +('Y03.7', 'Assault by crashing of motor vehicle, Farm', 'ICD10_2010'), +('Y03.8', 'Assault by crashing of motor vehicle, Other Specified Area', 'ICD10_2010'), +('Y03.9', 'Assault by crashing of motor vehicle, Unspecified Place', 'ICD10_2010'), +('Y04', 'Assault by bodily force', 'ICD10_2010'), +('Y04.0', 'Assault by bodily force, Home', 'ICD10_2010'), +('Y04.1', 'Assault by bodily force, Residential Institution', 'ICD10_2010'), +('Y04.2', 'Assault by bodily force, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('Y04.3', 'Assault by bodily force, Sports and Athletic Areas', 'ICD10_2010'), +('Y04.4', 'Assault by bodily force, Street and Highway', 'ICD10_2010'), +('Y04.5', 'Assault by bodily force, Trade and Service Area', 'ICD10_2010'), +('Y04.6', 'Assault by bodily force, Industrial and Construction Area', 'ICD10_2010'), +('Y04.7', 'Assault by bodily force, Farm', 'ICD10_2010'), +('Y04.8', 'Assault by bodily force, Other Specified Area', 'ICD10_2010'), +('Y04.9', 'Assault by bodily force, Unspecified Place', 'ICD10_2010'), +('Y05', 'Sexual assault by bodily force', 'ICD10_2010'), +('Y05.0', 'Sexual assault by bodily force, Home', 'ICD10_2010'), +('Y05.1', 'Sexual assault by bodily force, Residential Institution', 'ICD10_2010'), +('Y05.2', 'Sexual assault by bodily force, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('Y05.3', 'Sexual assault by bodily force, Sports and Athletic Areas', 'ICD10_2010'), +('Y05.4', 'Sexual assault by bodily force, Street and Highway', 'ICD10_2010'), +('Y05.5', 'Sexual assault by bodily force, Trade and Service Area', 'ICD10_2010'), +('Y05.6', 'Sexual assault by bodily force, Industrial and Construction Area', 'ICD10_2010'), +('Y05.7', 'Sexual assault by bodily force, Farm', 'ICD10_2010'), +('Y05.8', 'Sexual assault by bodily force, Other Specified Area', 'ICD10_2010'), +('Y05.9', 'Sexual assault by bodily force, Unspecified Place', 'ICD10_2010'), +('Y06', 'Neglect and abandonment', 'ICD10_2010'), +('Y06.0', 'By spouse or partner', 'ICD10_2010'), +('Y06.1', 'By parent', 'ICD10_2010'), +('Y06.2', 'By acquaintance or friend', 'ICD10_2010'), +('Y06.8', 'By other specified persons', 'ICD10_2010'), +('Y06.9', 'By unspecified person', 'ICD10_2010'), +('Y07', 'Other maltreatment', 'ICD10_2010'), +('Y07.0', 'By spouse or partner', 'ICD10_2010'), +('Y07.1', 'By parent', 'ICD10_2010'), +('Y07.2', 'By acquaintance or friend', 'ICD10_2010'), +('Y07.3', 'By official authorities', 'ICD10_2010'), +('Y07.8', 'By other specified persons', 'ICD10_2010'), +('Y07.9', 'By unspecified person', 'ICD10_2010'), +('Y08', 'Assault by other specified means', 'ICD10_2010'), +('Y08.0', 'Assault by other specified means, Home', 'ICD10_2010'), +('Y08.1', 'Assault by other specified means, Residential Institution', 'ICD10_2010'), +('Y08.2', 'Assault by other specified means, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('Y08.3', 'Assault by other specified means, Sports and Athletic Areas', 'ICD10_2010'), +('Y08.4', 'Assault by other specified means, Street and Highway', 'ICD10_2010'), +('Y08.5', 'Assault by other specified means, Trade and Service Area', 'ICD10_2010'), +('Y08.6', 'Assault by other specified means, Industrial and Construction Area', 'ICD10_2010'), +('Y08.7', 'Assault by other specified means, Farm', 'ICD10_2010'), +('Y08.8', 'Assault by other specified means, Other Specified Area', 'ICD10_2010'), +('Y08.9', 'Assault by other specified means, Unspecified Place', 'ICD10_2010'), +('Y09', 'Assault by unspecified means', 'ICD10_2010'), +('Y09.0', 'Assault by unspecified means, Home', 'ICD10_2010'), +('Y09.1', 'Assault by unspecified means, Residential Institution', 'ICD10_2010'), +('Y09.2', 'Assault by unspecified means, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('Y09.3', 'Assault by unspecified means, Sports and Athletic Areas', 'ICD10_2010'), +('Y09.4', 'Assault by unspecified means, Street and Highway', 'ICD10_2010'), +('Y09.5', 'Assault by unspecified means, Trade and Service Area', 'ICD10_2010'), +('Y09.6', 'Assault by unspecified means, Industrial and Construction Area', 'ICD10_2010'), +('Y09.7', 'Assault by unspecified means, Farm', 'ICD10_2010'), +('Y09.8', 'Assault by unspecified means, Other Specified Area', 'ICD10_2010'), +('Y09.9', 'Assault by unspecified means, Unspecified Place', 'ICD10_2010'), +('Y10', 'Poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, undetermined intent', 'ICD10_2010'), +('Y10.0', 'Poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, undetermined intent, Home', 'ICD10_2010'), +('Y10.1', 'Poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, undetermined intent, Residential Institution', 'ICD10_2010'), +('Y10.2', 'Poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, undetermined intent, School, Other Institution and Public Admimist', 'ICD10_2010'), +('Y10.3', 'Poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, undetermined intent, Sports and Athletic Areas', 'ICD10_2010'), +('Y10.4', 'Poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, undetermined intent, Street and Highway', 'ICD10_2010'), +('Y10.5', 'Poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, undetermined intent, Trade and Service Area', 'ICD10_2010'), +('Y10.6', 'Poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, undetermined intent, Industrial and Construction Area', 'ICD10_2010'), +('Y10.7', 'Poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, undetermined intent, Farm', 'ICD10_2010'), +('Y10.8', 'Poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, undetermined intent, Other Specified Area', 'ICD10_2010'), +('Y10.9', 'Poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, undetermined intent, Unspecified Place', 'ICD10_2010'), +('Y11', 'Poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, undetermined intent', 'ICD10_2010'), +('Y11.0', 'Poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, undetermined intent,', 'ICD10_2010'), +('Y11.1', 'Poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, undetermined intent,', 'ICD10_2010'), +('Y11.2', 'Poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, undetermined intent,', 'ICD10_2010'), +('Y11.3', 'Poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, undetermined intent,', 'ICD10_2010'), +('Y11.4', 'Poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, undetermined intent,', 'ICD10_2010'), +('Y11.5', 'Poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, undetermined intent,', 'ICD10_2010'), +('Y11.6', 'Poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, undetermined intent,', 'ICD10_2010'), +('Y11.7', 'Poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, undetermined intent,', 'ICD10_2010'), +('Y11.8', 'Poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, undetermined intent,', 'ICD10_2010'), +('Y11.9', 'Poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, undetermined intent,', 'ICD10_2010'), +('Y12', 'Poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, undetermined intent', 'ICD10_2010'), +('Y12.0', 'Poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, undetermined intent, Home', 'ICD10_2010'), +('Y12.1', 'Poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, undetermined intent, Residential Institution', 'ICD10_2010'), +('Y12.2', 'Poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, undetermined intent, School, Other Institution ', 'ICD10_2010'), +('Y12.3', 'Poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, undetermined intent, Sports and Athletic Areas', 'ICD10_2010'), +('Y12.4', 'Poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, undetermined intent, Street and Highway', 'ICD10_2010'), +('Y12.5', 'Poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, undetermined intent, Trade and Service Area', 'ICD10_2010'), +('Y12.6', 'Poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, undetermined intent, Industrial and Constructio', 'ICD10_2010'), +('Y12.7', 'Poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, undetermined intent, Farm', 'ICD10_2010'), +('Y12.8', 'Poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, undetermined intent, Other Specified Area', 'ICD10_2010'), +('Y12.9', 'Poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, undetermined intent, Unspecified Place', 'ICD10_2010'), +('Y13', 'Poisoning by and exposure to other drugs acting on the autonomic nervous system, undetermined intent', 'ICD10_2010'), +('Y13.0', 'Poisoning by and exposure to other drugs acting on the autonomic nervous system, undetermined intent, Home', 'ICD10_2010'), +('Y13.1', 'Poisoning by and exposure to other drugs acting on the autonomic nervous system, undetermined intent, Residential Institution', 'ICD10_2010'), +('Y13.2', 'Poisoning by and exposure to other drugs acting on the autonomic nervous system, undetermined intent, School, Other Institution and Public Admimistrat', 'ICD10_2010'), +('Y13.3', 'Poisoning by and exposure to other drugs acting on the autonomic nervous system, undetermined intent, Sports and Athletic Areas', 'ICD10_2010'), +('Y13.4', 'Poisoning by and exposure to other drugs acting on the autonomic nervous system, undetermined intent, Street and Highway', 'ICD10_2010'), +('Y13.5', 'Poisoning by and exposure to other drugs acting on the autonomic nervous system, undetermined intent, Trade and Service Area', 'ICD10_2010'), +('Y13.6', 'Poisoning by and exposure to other drugs acting on the autonomic nervous system, undetermined intent, Industrial and Construction Area', 'ICD10_2010'), +('Y13.7', 'Poisoning by and exposure to other drugs acting on the autonomic nervous system, undetermined intent, Farm', 'ICD10_2010'), +('Y13.8', 'Poisoning by and exposure to other drugs acting on the autonomic nervous system, undetermined intent, Other Specified Area', 'ICD10_2010'), +('Y13.9', 'Poisoning by and exposure to other drugs acting on the autonomic nervous system, undetermined intent, Unspecified Place', 'ICD10_2010'), +('Y14', 'Poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, undetermined intent', 'ICD10_2010'), +('Y14.0', 'Poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, undetermined intent, Home', 'ICD10_2010'), +('Y14.1', 'Poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, undetermined intent, Residential Institution', 'ICD10_2010'), +('Y14.2', 'Poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, undetermined intent, School, Other Institution and Pu', 'ICD10_2010'), +('Y14.3', 'Poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, undetermined intent, Sports and Athletic Areas', 'ICD10_2010'), +('Y14.4', 'Poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, undetermined intent, Street and Highway', 'ICD10_2010'), +('Y14.5', 'Poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, undetermined intent, Trade and Service Area', 'ICD10_2010'), +('Y14.6', 'Poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, undetermined intent, Industrial and Construction Area', 'ICD10_2010'), +('Y14.7', 'Poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, undetermined intent, Farm', 'ICD10_2010'), +('Y14.8', 'Poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, undetermined intent, Other Specified Area', 'ICD10_2010'), +('Y14.9', 'Poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, undetermined intent, Unspecified Place', 'ICD10_2010'); +INSERT INTO `icd10` (`ID_ICD10`, `Diagnosa`, `Versi_ICD10`) VALUES +('Y15', 'Poisoning by and exposure to alcohol, undetermined intent', 'ICD10_2010'), +('Y15.0', 'Poisoning by and exposure to alcohol, undetermined intent, Home', 'ICD10_2010'), +('Y15.1', 'Poisoning by and exposure to alcohol, undetermined intent, Residential Institution', 'ICD10_2010'), +('Y15.2', 'Poisoning by and exposure to alcohol, undetermined intent, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('Y15.3', 'Poisoning by and exposure to alcohol, undetermined intent, Sports and Athletic Areas', 'ICD10_2010'), +('Y15.4', 'Poisoning by and exposure to alcohol, undetermined intent, Street and Highway', 'ICD10_2010'), +('Y15.5', 'Poisoning by and exposure to alcohol, undetermined intent, Trade and Service Area', 'ICD10_2010'), +('Y15.6', 'Poisoning by and exposure to alcohol, undetermined intent, Industrial and Construction Area', 'ICD10_2010'), +('Y15.7', 'Poisoning by and exposure to alcohol, undetermined intent, Farm', 'ICD10_2010'), +('Y15.8', 'Poisoning by and exposure to alcohol, undetermined intent, Other Specified Area', 'ICD10_2010'), +('Y15.9', 'Poisoning by and exposure to alcohol, undetermined intent, Unspecified Place', 'ICD10_2010'), +('Y16', 'Poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, undetermined intent', 'ICD10_2010'), +('Y16.0', 'Poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, undetermined intent, Home', 'ICD10_2010'), +('Y16.1', 'Poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, undetermined intent, Residential Institution', 'ICD10_2010'), +('Y16.2', 'Poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, undetermined intent, School, Other Institution and Publi', 'ICD10_2010'), +('Y16.3', 'Poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, undetermined intent, Sports and Athletic Areas', 'ICD10_2010'), +('Y16.4', 'Poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, undetermined intent, Street and Highway', 'ICD10_2010'), +('Y16.5', 'Poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, undetermined intent, Trade and Service Area', 'ICD10_2010'), +('Y16.6', 'Poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, undetermined intent, Industrial and Construction Area', 'ICD10_2010'), +('Y16.7', 'Poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, undetermined intent, Farm', 'ICD10_2010'), +('Y16.8', 'Poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, undetermined intent, Other Specified Area', 'ICD10_2010'), +('Y16.9', 'Poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, undetermined intent, Unspecified Place', 'ICD10_2010'), +('Y17', 'Poisoning by and exposure to other gases and vapours, undetermined intent', 'ICD10_2010'), +('Y17.0', 'Poisoning by and exposure to other gases and vapours, undetermined intent, Home', 'ICD10_2010'), +('Y17.1', 'Poisoning by and exposure to other gases and vapours, undetermined intent, Residential Institution', 'ICD10_2010'), +('Y17.2', 'Poisoning by and exposure to other gases and vapours, undetermined intent, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('Y17.3', 'Poisoning by and exposure to other gases and vapours, undetermined intent, Sports and Athletic Areas', 'ICD10_2010'), +('Y17.4', 'Poisoning by and exposure to other gases and vapours, undetermined intent, Street and Highway', 'ICD10_2010'), +('Y17.5', 'Poisoning by and exposure to other gases and vapours, undetermined intent, Trade and Service Area', 'ICD10_2010'), +('Y17.6', 'Poisoning by and exposure to other gases and vapours, undetermined intent, Industrial and Construction Area', 'ICD10_2010'), +('Y17.7', 'Poisoning by and exposure to other gases and vapours, undetermined intent, Farm', 'ICD10_2010'), +('Y17.8', 'Poisoning by and exposure to other gases and vapours, undetermined intent, Other Specified Area', 'ICD10_2010'), +('Y17.9', 'Poisoning by and exposure to other gases and vapours, undetermined intent, Unspecified Place', 'ICD10_2010'), +('Y18', 'Poisoning by and exposure to pesticides, undetermined intent', 'ICD10_2010'), +('Y18.0', 'Poisoning by and exposure to pesticides, undetermined intent, Home', 'ICD10_2010'), +('Y18.1', 'Poisoning by and exposure to pesticides, undetermined intent, Residential Institution', 'ICD10_2010'), +('Y18.2', 'Poisoning by and exposure to pesticides, undetermined intent, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('Y18.3', 'Poisoning by and exposure to pesticides, undetermined intent, Sports and Athletic Areas', 'ICD10_2010'), +('Y18.4', 'Poisoning by and exposure to pesticides, undetermined intent, Street and Highway', 'ICD10_2010'), +('Y18.5', 'Poisoning by and exposure to pesticides, undetermined intent, Trade and Service Area', 'ICD10_2010'), +('Y18.6', 'Poisoning by and exposure to pesticides, undetermined intent, Industrial and Construction Area', 'ICD10_2010'), +('Y18.7', 'Poisoning by and exposure to pesticides, undetermined intent, Farm', 'ICD10_2010'), +('Y18.8', 'Poisoning by and exposure to pesticides, undetermined intent, Other Specified Area', 'ICD10_2010'), +('Y18.9', 'Poisoning by and exposure to pesticides, undetermined intent, Unspecified Place', 'ICD10_2010'), +('Y19', 'Poisoning by and exposure to other and unspecified chemicals and noxious substances, undetermined intent', 'ICD10_2010'), +('Y19.0', 'Poisoning by and exposure to other and unspecified chemicals and noxious substances, undetermined intent, Home', 'ICD10_2010'), +('Y19.1', 'Poisoning by and exposure to other and unspecified chemicals and noxious substances, undetermined intent, Residential Institution', 'ICD10_2010'), +('Y19.2', 'Poisoning by and exposure to other and unspecified chemicals and noxious substances, undetermined intent, School, Other Institution and Public Admimis', 'ICD10_2010'), +('Y19.3', 'Poisoning by and exposure to other and unspecified chemicals and noxious substances, undetermined intent, Sports and Athletic Areas', 'ICD10_2010'), +('Y19.4', 'Poisoning by and exposure to other and unspecified chemicals and noxious substances, undetermined intent, Street and Highway', 'ICD10_2010'), +('Y19.5', 'Poisoning by and exposure to other and unspecified chemicals and noxious substances, undetermined intent, Trade and Service Area', 'ICD10_2010'), +('Y19.6', 'Poisoning by and exposure to other and unspecified chemicals and noxious substances, undetermined intent, Industrial and Construction Area', 'ICD10_2010'), +('Y19.7', 'Poisoning by and exposure to other and unspecified chemicals and noxious substances, undetermined intent, Farm', 'ICD10_2010'), +('Y19.8', 'Poisoning by and exposure to other and unspecified chemicals and noxious substances, undetermined intent, Other Specified Area', 'ICD10_2010'), +('Y19.9', 'Poisoning by and exposure to other and unspecified chemicals and noxious substances, undetermined intent, Unspecified Place', 'ICD10_2010'), +('Y20', 'Hanging, strangulation and suffocation, undetermined intent', 'ICD10_2010'), +('Y20.0', 'Hanging, strangulation and suffocation, undetermined intent, Home', 'ICD10_2010'), +('Y20.1', 'Hanging, strangulation and suffocation, undetermined intent, Residential Institution', 'ICD10_2010'), +('Y20.2', 'Hanging, strangulation and suffocation, undetermined intent, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('Y20.3', 'Hanging, strangulation and suffocation, undetermined intent, Sports and Athletic Areas', 'ICD10_2010'), +('Y20.4', 'Hanging, strangulation and suffocation, undetermined intent, Street and Highway', 'ICD10_2010'), +('Y20.5', 'Hanging, strangulation and suffocation, undetermined intent, Trade and Service Area', 'ICD10_2010'), +('Y20.6', 'Hanging, strangulation and suffocation, undetermined intent, Industrial and Construction Area', 'ICD10_2010'), +('Y20.7', 'Hanging, strangulation and suffocation, undetermined intent, Farm', 'ICD10_2010'), +('Y20.8', 'Hanging, strangulation and suffocation, undetermined intent, Other Specified Area', 'ICD10_2010'), +('Y20.9', 'Hanging, strangulation and suffocation, undetermined intent, Unspecified Place', 'ICD10_2010'), +('Y21', 'Drowning and submersion, undetermined intent', 'ICD10_2010'), +('Y21.0', 'Drowning and submersion, undetermined intent, Home', 'ICD10_2010'), +('Y21.1', 'Drowning and submersion, undetermined intent, Residential Institution', 'ICD10_2010'), +('Y21.2', 'Drowning and submersion, undetermined intent, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('Y21.3', 'Drowning and submersion, undetermined intent, Sports and Athletic Areas', 'ICD10_2010'), +('Y21.4', 'Drowning and submersion, undetermined intent, Street and Highway', 'ICD10_2010'), +('Y21.5', 'Drowning and submersion, undetermined intent, Trade and Service Area', 'ICD10_2010'), +('Y21.6', 'Drowning and submersion, undetermined intent, Industrial and Construction Area', 'ICD10_2010'), +('Y21.7', 'Drowning and submersion, undetermined intent, Farm', 'ICD10_2010'), +('Y21.8', 'Drowning and submersion, undetermined intent, Other Specified Area', 'ICD10_2010'), +('Y21.9', 'Drowning and submersion, undetermined intent, Unspecified Place', 'ICD10_2010'), +('Y22', 'Handgun discharge, undetermined intent', 'ICD10_2010'), +('Y22.0', 'Handgun discharge, undetermined intent, Home', 'ICD10_2010'), +('Y22.1', 'Handgun discharge, undetermined intent, Residential Institution', 'ICD10_2010'), +('Y22.2', 'Handgun discharge, undetermined intent, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('Y22.3', 'Handgun discharge, undetermined intent, Sports and Athletic Areas', 'ICD10_2010'), +('Y22.4', 'Handgun discharge, undetermined intent, Street and Highway', 'ICD10_2010'), +('Y22.5', 'Handgun discharge, undetermined intent, Trade and Service Area', 'ICD10_2010'), +('Y22.6', 'Handgun discharge, undetermined intent, Industrial and Construction Area', 'ICD10_2010'), +('Y22.7', 'Handgun discharge, undetermined intent, Farm', 'ICD10_2010'), +('Y22.8', 'Handgun discharge, undetermined intent, Other Specified Area', 'ICD10_2010'), +('Y22.9', 'Handgun discharge, undetermined intent, Unspecified Place', 'ICD10_2010'), +('Y23', 'Rifle, shotgun and larger firearm discharge, undetermined intent', 'ICD10_2010'), +('Y23.0', 'Rifle, shotgun and larger firearm discharge, undetermined intent, Home', 'ICD10_2010'), +('Y23.1', 'Rifle, shotgun and larger firearm discharge, undetermined intent, Residential Institution', 'ICD10_2010'), +('Y23.2', 'Rifle, shotgun and larger firearm discharge, undetermined intent, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('Y23.3', 'Rifle, shotgun and larger firearm discharge, undetermined intent, Sports and Athletic Areas', 'ICD10_2010'), +('Y23.4', 'Rifle, shotgun and larger firearm discharge, undetermined intent, Street and Highway', 'ICD10_2010'), +('Y23.5', 'Rifle, shotgun and larger firearm discharge, undetermined intent, Trade and Service Area', 'ICD10_2010'), +('Y23.6', 'Rifle, shotgun and larger firearm discharge, undetermined intent, Industrial and Construction Area', 'ICD10_2010'), +('Y23.7', 'Rifle, shotgun and larger firearm discharge, undetermined intent, Farm', 'ICD10_2010'), +('Y23.8', 'Rifle, shotgun and larger firearm discharge, undetermined intent, Other Specified Area', 'ICD10_2010'), +('Y23.9', 'Rifle, shotgun and larger firearm discharge, undetermined intent, Unspecified Place', 'ICD10_2010'), +('Y24', 'Other and unspecified firearm discharge, undetermined intent', 'ICD10_2010'), +('Y24.0', 'Other and unspecified firearm discharge, undetermined intent, Home', 'ICD10_2010'), +('Y24.1', 'Other and unspecified firearm discharge, undetermined intent, Residential Institution', 'ICD10_2010'), +('Y24.2', 'Other and unspecified firearm discharge, undetermined intent, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('Y24.3', 'Other and unspecified firearm discharge, undetermined intent, Sports and Athletic Areas', 'ICD10_2010'), +('Y24.4', 'Other and unspecified firearm discharge, undetermined intent, Street and Highway', 'ICD10_2010'), +('Y24.5', 'Other and unspecified firearm discharge, undetermined intent, Trade and Service Area', 'ICD10_2010'), +('Y24.6', 'Other and unspecified firearm discharge, undetermined intent, Industrial and Construction Area', 'ICD10_2010'), +('Y24.7', 'Other and unspecified firearm discharge, undetermined intent, Farm', 'ICD10_2010'), +('Y24.8', 'Other and unspecified firearm discharge, undetermined intent, Other Specified Area', 'ICD10_2010'), +('Y24.9', 'Other and unspecified firearm discharge, undetermined intent, Unspecified Place', 'ICD10_2010'), +('Y25', 'Contact with explosive material, undetermined intent', 'ICD10_2010'), +('Y25.0', 'Contact with explosive material, undetermined intent, Home', 'ICD10_2010'), +('Y25.1', 'Contact with explosive material, undetermined intent, Residential Institution', 'ICD10_2010'), +('Y25.2', 'Contact with explosive material, undetermined intent, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('Y25.3', 'Contact with explosive material, undetermined intent, Sports and Athletic Areas', 'ICD10_2010'), +('Y25.4', 'Contact with explosive material, undetermined intent, Street and Highway', 'ICD10_2010'), +('Y25.5', 'Contact with explosive material, undetermined intent, Trade and Service Area', 'ICD10_2010'), +('Y25.6', 'Contact with explosive material, undetermined intent, Industrial and Construction Area', 'ICD10_2010'), +('Y25.7', 'Contact with explosive material, undetermined intent, Farm', 'ICD10_2010'), +('Y25.8', 'Contact with explosive material, undetermined intent, Other Specified Area', 'ICD10_2010'), +('Y25.9', 'Contact with explosive material, undetermined intent, Unspecified Place', 'ICD10_2010'), +('Y26', 'Exposure to smoke, fire and flames, undetermined intent', 'ICD10_2010'), +('Y26.0', 'Exposure to smoke, fire and flames, undetermined intent, Home', 'ICD10_2010'), +('Y26.1', 'Exposure to smoke, fire and flames, undetermined intent, Residential Institution', 'ICD10_2010'), +('Y26.2', 'Exposure to smoke, fire and flames, undetermined intent, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('Y26.3', 'Exposure to smoke, fire and flames, undetermined intent, Sports and Athletic Areas', 'ICD10_2010'), +('Y26.4', 'Exposure to smoke, fire and flames, undetermined intent, Street and Highway', 'ICD10_2010'), +('Y26.5', 'Exposure to smoke, fire and flames, undetermined intent, Trade and Service Area', 'ICD10_2010'), +('Y26.6', 'Exposure to smoke, fire and flames, undetermined intent, Industrial and Construction Area', 'ICD10_2010'), +('Y26.7', 'Exposure to smoke, fire and flames, undetermined intent, Farm', 'ICD10_2010'), +('Y26.8', 'Exposure to smoke, fire and flames, undetermined intent, Other Specified Area', 'ICD10_2010'), +('Y26.9', 'Exposure to smoke, fire and flames, undetermined intent, Unspecified Place', 'ICD10_2010'), +('Y27', 'Contact with steam, hot vapours and hot objects, undetermined intent', 'ICD10_2010'), +('Y27.0', 'Contact with steam, hot vapours and hot objects, undetermined intent, Home', 'ICD10_2010'), +('Y27.1', 'Contact with steam, hot vapours and hot objects, undetermined intent, Residential Institution', 'ICD10_2010'), +('Y27.2', 'Contact with steam, hot vapours and hot objects, undetermined intent, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('Y27.3', 'Contact with steam, hot vapours and hot objects, undetermined intent, Sports and Athletic Areas', 'ICD10_2010'), +('Y27.4', 'Contact with steam, hot vapours and hot objects, undetermined intent, Street and Highway', 'ICD10_2010'), +('Y27.5', 'Contact with steam, hot vapours and hot objects, undetermined intent, Trade and Service Area', 'ICD10_2010'), +('Y27.6', 'Contact with steam, hot vapours and hot objects, undetermined intent, Industrial and Construction Area', 'ICD10_2010'), +('Y27.7', 'Contact with steam, hot vapours and hot objects, undetermined intent, Farm', 'ICD10_2010'), +('Y27.8', 'Contact with steam, hot vapours and hot objects, undetermined intent, Other Specified Area', 'ICD10_2010'), +('Y27.9', 'Contact with steam, hot vapours and hot objects, undetermined intent, Unspecified Place', 'ICD10_2010'), +('Y28', 'Contact with sharp object, undetermined intent', 'ICD10_2010'), +('Y28.0', 'Contact with sharp object, undetermined intent, Home', 'ICD10_2010'), +('Y28.1', 'Contact with sharp object, undetermined intent, Residential Institution', 'ICD10_2010'), +('Y28.2', 'Contact with sharp object, undetermined intent, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('Y28.3', 'Contact with sharp object, undetermined intent, Sports and Athletic Areas', 'ICD10_2010'), +('Y28.4', 'Contact with sharp object, undetermined intent, Street and Highway', 'ICD10_2010'), +('Y28.5', 'Contact with sharp object, undetermined intent, Trade and Service Area', 'ICD10_2010'), +('Y28.6', 'Contact with sharp object, undetermined intent, Industrial and Construction Area', 'ICD10_2010'), +('Y28.7', 'Contact with sharp object, undetermined intent, Farm', 'ICD10_2010'), +('Y28.8', 'Contact with sharp object, undetermined intent, Other Specified Area', 'ICD10_2010'), +('Y28.9', 'Contact with sharp object, undetermined intent, Unspecified Place', 'ICD10_2010'), +('Y29', 'Contact with blunt object, undetermined intent', 'ICD10_2010'), +('Y29.0', 'Contact with blunt object, undetermined intent, Home', 'ICD10_2010'), +('Y29.1', 'Contact with blunt object, undetermined intent, Residential Institution', 'ICD10_2010'), +('Y29.2', 'Contact with blunt object, undetermined intent, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('Y29.3', 'Contact with blunt object, undetermined intent, Sports and Athletic Areas', 'ICD10_2010'), +('Y29.4', 'Contact with blunt object, undetermined intent, Street and Highway', 'ICD10_2010'), +('Y29.5', 'Contact with blunt object, undetermined intent, Trade and Service Area', 'ICD10_2010'), +('Y29.6', 'Contact with blunt object, undetermined intent, Industrial and Construction Area', 'ICD10_2010'), +('Y29.7', 'Contact with blunt object, undetermined intent, Farm', 'ICD10_2010'), +('Y29.8', 'Contact with blunt object, undetermined intent, Other Specified Area', 'ICD10_2010'), +('Y29.9', 'Contact with blunt object, undetermined intent, Unspecified Place', 'ICD10_2010'), +('Y30', 'Falling, jumping or pushed from a high place, undetermined intent', 'ICD10_2010'), +('Y30.0', 'Falling, jumping or pushed from a high place, undetermined intent, Home', 'ICD10_2010'), +('Y30.1', 'Falling, jumping or pushed from a high place, undetermined intent, Residential Institution', 'ICD10_2010'), +('Y30.2', 'Falling, jumping or pushed from a high place, undetermined intent, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('Y30.3', 'Falling, jumping or pushed from a high place, undetermined intent, Sports and Athletic Areas', 'ICD10_2010'), +('Y30.4', 'Falling, jumping or pushed from a high place, undetermined intent, Street and Highway', 'ICD10_2010'), +('Y30.5', 'Falling, jumping or pushed from a high place, undetermined intent, Trade and Service Area', 'ICD10_2010'), +('Y30.6', 'Falling, jumping or pushed from a high place, undetermined intent, Industrial and Construction Area', 'ICD10_2010'), +('Y30.7', 'Falling, jumping or pushed from a high place, undetermined intent, Farm', 'ICD10_2010'), +('Y30.8', 'Falling, jumping or pushed from a high place, undetermined intent, Other Specified Area', 'ICD10_2010'), +('Y30.9', 'Falling, jumping or pushed from a high place, undetermined intent, Unspecified Place', 'ICD10_2010'), +('Y31', 'Falling, lying or running before or into moving object, undetermined intent', 'ICD10_2010'), +('Y31.0', 'Falling, lying or running before or into moving object, undetermined intent, Home', 'ICD10_2010'), +('Y31.1', 'Falling, lying or running before or into moving object, undetermined intent, Residential Institution', 'ICD10_2010'), +('Y31.2', 'Falling, lying or running before or into moving object, undetermined intent, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('Y31.3', 'Falling, lying or running before or into moving object, undetermined intent, Sports and Athletic Areas', 'ICD10_2010'), +('Y31.4', 'Falling, lying or running before or into moving object, undetermined intent, Street and Highway', 'ICD10_2010'), +('Y31.5', 'Falling, lying or running before or into moving object, undetermined intent, Trade and Service Area', 'ICD10_2010'), +('Y31.6', 'Falling, lying or running before or into moving object, undetermined intent, Industrial and Construction Area', 'ICD10_2010'), +('Y31.7', 'Falling, lying or running before or into moving object, undetermined intent, Farm', 'ICD10_2010'), +('Y31.8', 'Falling, lying or running before or into moving object, undetermined intent, Other Specified Area', 'ICD10_2010'), +('Y31.9', 'Falling, lying or running before or into moving object, undetermined intent, Unspecified Place', 'ICD10_2010'), +('Y32', 'Crashing of motor vehicle, undetermined intent', 'ICD10_2010'), +('Y32.0', 'Crashing of motor vehicle, undetermined intent, Home', 'ICD10_2010'), +('Y32.1', 'Crashing of motor vehicle, undetermined intent, Residential Institution', 'ICD10_2010'), +('Y32.2', 'Crashing of motor vehicle, undetermined intent, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('Y32.3', 'Crashing of motor vehicle, undetermined intent, Sports and Athletic Areas', 'ICD10_2010'), +('Y32.4', 'Crashing of motor vehicle, undetermined intent, Street and Highway', 'ICD10_2010'), +('Y32.5', 'Crashing of motor vehicle, undetermined intent, Trade and Service Area', 'ICD10_2010'), +('Y32.6', 'Crashing of motor vehicle, undetermined intent, Industrial and Construction Area', 'ICD10_2010'), +('Y32.7', 'Crashing of motor vehicle, undetermined intent, Farm', 'ICD10_2010'), +('Y32.8', 'Crashing of motor vehicle, undetermined intent, Other Specified Area', 'ICD10_2010'), +('Y32.9', 'Crashing of motor vehicle, undetermined intent, Unspecified Place', 'ICD10_2010'), +('Y33', 'Other specified events, undetermined intent', 'ICD10_2010'), +('Y33.0', 'Other specified events, undetermined intent, Home', 'ICD10_2010'), +('Y33.1', 'Other specified events, undetermined intent, Residential Institution', 'ICD10_2010'), +('Y33.2', 'Other specified events, undetermined intent, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('Y33.3', 'Other specified events, undetermined intent, Sports and Athletic Areas', 'ICD10_2010'), +('Y33.4', 'Other specified events, undetermined intent, Street and Highway', 'ICD10_2010'), +('Y33.5', 'Other specified events, undetermined intent, Trade and Service Area', 'ICD10_2010'), +('Y33.6', 'Other specified events, undetermined intent, Industrial and Construction Area', 'ICD10_2010'), +('Y33.7', 'Other specified events, undetermined intent, Farm', 'ICD10_2010'), +('Y33.8', 'Other specified events, undetermined intent, Other Specified Area', 'ICD10_2010'), +('Y33.9', 'Other specified events, undetermined intent, Unspecified Place', 'ICD10_2010'), +('Y34', 'Unspecified event, undetermined intent', 'ICD10_2010'), +('Y34.0', 'Unspecified event, undetermined intent, Home', 'ICD10_2010'), +('Y34.1', 'Unspecified event, undetermined intent, Residential Institution', 'ICD10_2010'), +('Y34.2', 'Unspecified event, undetermined intent, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('Y34.3', 'Unspecified event, undetermined intent, Sports and Athletic Areas', 'ICD10_2010'), +('Y34.4', 'Unspecified event, undetermined intent, Street and Highway', 'ICD10_2010'), +('Y34.5', 'Unspecified event, undetermined intent, Trade and Service Area', 'ICD10_2010'), +('Y34.6', 'Unspecified event, undetermined intent, Industrial and Construction Area', 'ICD10_2010'), +('Y34.7', 'Unspecified event, undetermined intent, Farm', 'ICD10_2010'), +('Y34.8', 'Unspecified event, undetermined intent, Other Specified Area', 'ICD10_2010'), +('Y34.9', 'Unspecified event, undetermined intent, Unspecified Place', 'ICD10_2010'), +('Y35', 'Legal intervention', 'ICD10_2010'), +('Y35.0', 'Legal intervention involving firearm discharge', 'ICD10_2010'), +('Y35.1', 'Legal intervention involving explosives', 'ICD10_2010'), +('Y35.2', 'Legal intervention involving gas', 'ICD10_2010'), +('Y35.3', 'Legal intervention involving blunt objects', 'ICD10_2010'), +('Y35.4', 'Legal intervention involving sharp objects', 'ICD10_2010'), +('Y35.5', 'Legal execution', 'ICD10_2010'), +('Y35.6', 'Legal intervention involving other specified means', 'ICD10_2010'), +('Y35.7', 'Legal intervention, means unspecified', 'ICD10_2010'), +('Y36', 'Operations of war', 'ICD10_2010'), +('Y36.0', 'War operations involving explosion of marine weapons', 'ICD10_2010'), +('Y36.1', 'War operations involving destruction of aircraft', 'ICD10_2010'), +('Y36.2', 'War operations involving other explosions and fragments', 'ICD10_2010'), +('Y36.3', 'War operations involving fires, conflagrations and hot substances', 'ICD10_2010'), +('Y36.4', 'War operations involving firearm discharge and other forms of conventional warfare', 'ICD10_2010'), +('Y36.5', 'War operations involving nuclear weapons', 'ICD10_2010'), +('Y36.6', 'War operations involving biological weapons', 'ICD10_2010'), +('Y36.7', 'War operations involving chemical weapons and other forms of unconventional warfare', 'ICD10_2010'), +('Y36.8', 'War operations occurring after cessation of hostilities', 'ICD10_2010'), +('Y36.9', 'War operations, unspecified', 'ICD10_2010'), +('Y40', 'Systemic antibiotics', 'ICD10_2010'), +('Y40.0', 'Penicillins', 'ICD10_2010'), +('Y40.1', 'Cefalosporins and other beta-lactam antibiotics', 'ICD10_2010'), +('Y40.2', 'Chloramphenicol group', 'ICD10_2010'), +('Y40.3', 'Macrolides', 'ICD10_2010'), +('Y40.4', 'Tetracyclines', 'ICD10_2010'), +('Y40.5', 'Aminoglycosides', 'ICD10_2010'), +('Y40.6', 'Rifamycins', 'ICD10_2010'), +('Y40.7', 'Antifungal antibiotics, systemically used', 'ICD10_2010'), +('Y40.8', 'Other systemic antibiotics', 'ICD10_2010'), +('Y40.9', 'Systemic antibiotic, unspecified', 'ICD10_2010'), +('Y41', 'Other systemic anti-infectives and antiparasitics', 'ICD10_2010'), +('Y41.0', 'Sulfonamides', 'ICD10_2010'), +('Y41.1', 'Antimycobacterial drugs', 'ICD10_2010'), +('Y41.2', 'Antimalarials and drugs acting on other blood protozoa', 'ICD10_2010'), +('Y41.3', 'Other antiprotozoal drugs', 'ICD10_2010'), +('Y41.4', 'Anthelminthics', 'ICD10_2010'), +('Y41.5', 'Antiviral drugs', 'ICD10_2010'), +('Y41.8', 'Other specified systemic anti-infectives and antiparasitics', 'ICD10_2010'), +('Y41.9', 'Systemic anti-infective and antiparasitic, unspecified', 'ICD10_2010'), +('Y42', 'Hormones and their synthetic substitutes and antagonists, not elsewhere classified', 'ICD10_2010'), +('Y42.0', 'Glucocorticoids and synthetic analogues', 'ICD10_2010'), +('Y42.1', 'Thyroid hormones and substitutes', 'ICD10_2010'), +('Y42.2', 'Antithyroid drugs', 'ICD10_2010'), +('Y42.3', 'Insulin and oral hypoglycaemic [antidiabetic] drugs', 'ICD10_2010'), +('Y42.4', 'Oral contraceptives', 'ICD10_2010'), +('Y42.5', 'Other estrogens and progestogens', 'ICD10_2010'), +('Y42.6', 'Antigonadotrophins, antiestrogens, antiandrogens, not elsewhere classified', 'ICD10_2010'), +('Y42.7', 'Androgens and anabolic congeners', 'ICD10_2010'), +('Y42.8', 'Other and unspecified hormones and their synthetic substitutes', 'ICD10_2010'), +('Y42.9', 'Other and unspecified hormone antagonists', 'ICD10_2010'), +('Y43', 'Primarily systemic agents', 'ICD10_2010'), +('Y43.0', 'Antiallergic and antiemetic drugs', 'ICD10_2010'), +('Y43.1', 'Antineoplastic antimetabolites', 'ICD10_2010'), +('Y43.2', 'Antineoplastic natural products', 'ICD10_2010'), +('Y43.3', 'Other antineoplastic drugs', 'ICD10_2010'), +('Y43.4', 'Immunosuppressive agents', 'ICD10_2010'), +('Y43.5', 'Acidifying and alkalizing agents', 'ICD10_2010'), +('Y43.6', 'Enzymes, not elsewhere classified', 'ICD10_2010'), +('Y43.8', 'Other primarily systemic agents, not elsewhere classified', 'ICD10_2010'), +('Y43.9', 'Primarily systemic agent, unspecified', 'ICD10_2010'), +('Y44', 'Agents primarily affecting blood constituents', 'ICD10_2010'), +('Y44.0', 'Iron preparations and other anti-hypochromic-anaemia preparations', 'ICD10_2010'), +('Y44.1', 'Vitamin B12, folic acid and other anti-megaloblastic-anaemia preparations', 'ICD10_2010'), +('Y44.2', 'Anticoagulants', 'ICD10_2010'), +('Y44.3', 'Anticoagulant antagonists, vitamin K and other coagulants', 'ICD10_2010'), +('Y44.4', 'Antithrombotic drugs [platelet-aggregation inhibitors]', 'ICD10_2010'), +('Y44.5', 'Thrombolytic drugs', 'ICD10_2010'), +('Y44.6', 'Natural blood and blood products', 'ICD10_2010'), +('Y44.7', 'Plasma substitutes', 'ICD10_2010'), +('Y44.9', 'Other and unspecified agents affecting blood constituents', 'ICD10_2010'), +('Y45', 'Analgesics, antipyretics and anti-inflammatory drugs', 'ICD10_2010'), +('Y45.0', 'Opioids and related analgesics', 'ICD10_2010'), +('Y45.1', 'Salicylates', 'ICD10_2010'), +('Y45.2', 'Propionic acid derivatives', 'ICD10_2010'), +('Y45.3', 'Other nonsteroidal anti-inflammatory drugs [NSAID]', 'ICD10_2010'), +('Y45.4', 'Antirheumatics', 'ICD10_2010'), +('Y45.5', '4-Aminophenol derivatives', 'ICD10_2010'), +('Y45.8', 'Other analgesics and antipyretics', 'ICD10_2010'), +('Y45.9', 'Analgesic, antipyretic and anti-inflammatory drug, unspecified', 'ICD10_2010'), +('Y46', 'Antiepileptics and antiparkinsonism drugs', 'ICD10_2010'), +('Y46.0', 'Succinimides', 'ICD10_2010'), +('Y46.1', 'Oxazolidinediones', 'ICD10_2010'), +('Y46.2', 'Hydantoin derivatives', 'ICD10_2010'), +('Y46.3', 'Deoxybarbiturates', 'ICD10_2010'), +('Y46.4', 'Iminostilbenes', 'ICD10_2010'), +('Y46.5', 'Valproic acid', 'ICD10_2010'), +('Y46.6', 'Other and unspecified antiepileptics', 'ICD10_2010'), +('Y46.7', 'Antiparkinsonism drugs', 'ICD10_2010'), +('Y46.8', 'Antispasticity drugs', 'ICD10_2010'), +('Y47', 'Sedatives, hypnotics and antianxiety drugs', 'ICD10_2010'), +('Y47.0', 'Barbiturates, not elsewhere classified', 'ICD10_2010'), +('Y47.1', 'Benzodiazepines', 'ICD10_2010'), +('Y47.2', 'Cloral derivatives', 'ICD10_2010'), +('Y47.3', 'Paraldehyde', 'ICD10_2010'), +('Y47.4', 'Bromine compounds', 'ICD10_2010'), +('Y47.5', 'Mixed sedatives and hypnotics, not elsewhere classified', 'ICD10_2010'), +('Y47.8', 'Other sedatives, hypnotics and antianxiety drugs', 'ICD10_2010'), +('Y47.9', 'Sedative, hypnotic and antianxiety drug, unspecified', 'ICD10_2010'), +('Y48', 'Anaesthetics and therapeutic gases', 'ICD10_2010'), +('Y48.0', 'Inhaled anaesthetics', 'ICD10_2010'), +('Y48.1', 'Parenteral anaesthetics', 'ICD10_2010'), +('Y48.2', 'Other and unspecified general anaesthetics', 'ICD10_2010'), +('Y48.3', 'Local anaesthetics', 'ICD10_2010'), +('Y48.4', 'Anaesthetic, unspecified', 'ICD10_2010'), +('Y48.5', 'Therapeutic gases', 'ICD10_2010'), +('Y49', 'Psychotropic drugs, not elsewhere classified', 'ICD10_2010'), +('Y49.0', 'Tricyclic and tetracyclic antidepressants', 'ICD10_2010'), +('Y49.1', 'Monoamine-oxidase-inhibitor antidepressants', 'ICD10_2010'), +('Y49.2', 'Other and unspecified antidepressants', 'ICD10_2010'), +('Y49.3', 'Phenothiazine antipsychotics and neuroleptics', 'ICD10_2010'), +('Y49.4', 'Butyrophenone and thioxanthene neuroleptics', 'ICD10_2010'), +('Y49.5', 'Other antipsychotics and neuroleptics', 'ICD10_2010'), +('Y49.6', 'Psychodysleptics [hallucinogens]', 'ICD10_2010'), +('Y49.7', 'Psychostimulants with abuse potential', 'ICD10_2010'), +('Y49.8', 'Other psychotropic drugs, not elsewhere classified', 'ICD10_2010'), +('Y49.9', 'Psychotropic drug, unspecified', 'ICD10_2010'), +('Y50', 'Central nervous system stimulants, not elsewhere classified', 'ICD10_2010'), +('Y50.0', 'Analeptics', 'ICD10_2010'), +('Y50.1', 'Opioid receptor antagonists', 'ICD10_2010'), +('Y50.2', 'Methylxanthines, not elsewhere classified', 'ICD10_2010'), +('Y50.8', 'Other central nervous system stimulants', 'ICD10_2010'), +('Y50.9', 'Central nervous system stimulant, unspecified', 'ICD10_2010'), +('Y51', 'Drugs primarily affecting the autonomic nervous system', 'ICD10_2010'), +('Y51.0', 'Anticholinesterase agents', 'ICD10_2010'), +('Y51.1', 'Other parasympathomimetics [cholinergics]', 'ICD10_2010'), +('Y51.2', 'Ganglionic blocking drugs, not elsewhere classified', 'ICD10_2010'), +('Y51.3', 'Other parasympatholytics [anticholinergics and antimuscarinics] and spasmolytics, not elsewhere classified', 'ICD10_2010'), +('Y51.4', 'Predominantly alpha-adrenoreceptor agonists, not elsewhere classified', 'ICD10_2010'), +('Y51.5', 'Predominantly beta-adrenoreceptor agonists, not elsewhere classified', 'ICD10_2010'), +('Y51.6', 'Alpha-adrenoreceptor antagonists, not elsewhere classified', 'ICD10_2010'), +('Y51.7', 'Beta-adrenoreceptor antagonists, not elsewhere classified', 'ICD10_2010'), +('Y51.8', 'Centrally acting and adrenergic-neuron-blocking agents, not elsewhere classified', 'ICD10_2010'), +('Y51.9', 'Other and unspecified drugs primarily affecting the autonomic nervous system', 'ICD10_2010'), +('Y52', 'Agents primarily affecting the cardiovascular system', 'ICD10_2010'), +('Y52.0', 'Cardiac-stimulant glycosides and drugs of similar action', 'ICD10_2010'), +('Y52.1', 'Calcium-channel blockers', 'ICD10_2010'), +('Y52.2', 'Other antidysrhythmic drugs, not elsewhere classified', 'ICD10_2010'), +('Y52.3', 'Coronary vasodilators, not elsewhere classified', 'ICD10_2010'), +('Y52.4', 'Angiotensin-converting-enzyme inhibitors', 'ICD10_2010'), +('Y52.5', 'Other antihypertensive drugs, not elsewhere classified', 'ICD10_2010'), +('Y52.6', 'Antihyperlipidaemic and antiarteriosclerotic drugs', 'ICD10_2010'), +('Y52.7', 'Peripheral vasodilators', 'ICD10_2010'), +('Y52.8', 'Antivaricose drugs, including sclerosing agents', 'ICD10_2010'), +('Y52.9', 'Other and unspecified agents primarily affecting the cardiovascular system', 'ICD10_2010'), +('Y53', 'Agents primarily affecting the gastrointestinal system', 'ICD10_2010'), +('Y53.0', 'Histamine H2-receptor antagonists', 'ICD10_2010'), +('Y53.1', 'Other antacids and anti-gastric-secretion drugs', 'ICD10_2010'), +('Y53.2', 'Stimulant laxatives', 'ICD10_2010'), +('Y53.3', 'Saline and osmotic laxatives', 'ICD10_2010'), +('Y53.4', 'Other laxatives', 'ICD10_2010'), +('Y53.5', 'Digestants', 'ICD10_2010'), +('Y53.6', 'Antidiarrhoeal drugs', 'ICD10_2010'), +('Y53.7', 'Emetics', 'ICD10_2010'), +('Y53.8', 'Other agents primarily affecting the gastrointestinal system', 'ICD10_2010'), +('Y53.9', 'Agent primarily affecting the gastrointestinal system, unspecified', 'ICD10_2010'), +('Y54', 'Agents primarily affecting water-balance and mineral and uric acid metabolism', 'ICD10_2010'), +('Y54.0', 'Mineralocorticoids', 'ICD10_2010'), +('Y54.1', 'Mineralocorticoid antagonists [aldosterone antagonists]', 'ICD10_2010'), +('Y54.2', 'Carbonic-anhydrase inhibitors', 'ICD10_2010'), +('Y54.3', 'Benzothiadiazine derivatives', 'ICD10_2010'), +('Y54.4', 'Loop [high-ceiling] diuretics', 'ICD10_2010'), +('Y54.5', 'Other diuretics', 'ICD10_2010'), +('Y54.6', 'Electrolytic, caloric and water-balance agents', 'ICD10_2010'), +('Y54.7', 'Agents affecting calcification', 'ICD10_2010'), +('Y54.8', 'Agents affecting uric acid metabolism', 'ICD10_2010'), +('Y54.9', 'Mineral salts, not elsewhere classified', 'ICD10_2010'), +('Y55', 'Agents primarily acting on smooth and skeletal muscles and the respiratory system', 'ICD10_2010'), +('Y55.0', 'Oxytocic drugs', 'ICD10_2010'), +('Y55.1', 'Skeletal muscle relaxants [neuromuscular blocking agents]', 'ICD10_2010'), +('Y55.2', 'Other and unspecified agents primarily acting on muscles', 'ICD10_2010'), +('Y55.3', 'Antitussives', 'ICD10_2010'), +('Y55.4', 'Expectorants', 'ICD10_2010'), +('Y55.5', 'Anti-common-cold drugs', 'ICD10_2010'), +('Y55.6', 'Antiasthmatics, not elsewhere classified', 'ICD10_2010'), +('Y55.7', 'Other and unspecified agents primarily acting on the respiratory system', 'ICD10_2010'), +('Y56', 'Topical agents primarily affecting skin and mucous membrane and ophthalmological, otorhinolaryngological and dental drugs', 'ICD10_2010'), +('Y56.0', 'Local antifungal, anti-infective and anti-inflammatory drugs, not elsewhere classified', 'ICD10_2010'), +('Y56.1', 'Antipruritics', 'ICD10_2010'), +('Y56.2', 'Local astringents and local detergents', 'ICD10_2010'), +('Y56.3', 'Emollients, demulcents and protectants', 'ICD10_2010'), +('Y56.4', 'Keratolytics, keratoplastics and other hair treatment drugs and preparations', 'ICD10_2010'), +('Y56.5', 'Ophthalmological drugs and preparations', 'ICD10_2010'), +('Y56.6', 'Otorhinolaryngological drugs and preparations', 'ICD10_2010'), +('Y56.7', 'Dental drugs, topically applied', 'ICD10_2010'), +('Y56.8', 'Other topical agents', 'ICD10_2010'), +('Y56.9', 'Topical agent, unspecified', 'ICD10_2010'), +('Y57', 'Other and unspecified drugs and medicaments', 'ICD10_2010'), +('Y57.0', 'Appetite depressants [anorectics]', 'ICD10_2010'), +('Y57.1', 'Lipotropic drugs', 'ICD10_2010'), +('Y57.2', 'Antidotes and chelating agents, not elsewhere classified', 'ICD10_2010'), +('Y57.3', 'Alcohol deterrents', 'ICD10_2010'), +('Y57.4', 'Pharmaceutical excipients', 'ICD10_2010'), +('Y57.5', 'X-ray contrast media', 'ICD10_2010'), +('Y57.6', 'Other diagnostic agents', 'ICD10_2010'), +('Y57.7', 'Vitamins, not elsewhere classified', 'ICD10_2010'), +('Y57.8', 'Other drugs and medicaments', 'ICD10_2010'), +('Y57.9', 'Drug or medicament, unspecified', 'ICD10_2010'), +('Y58', 'Bacterial vaccines', 'ICD10_2010'), +('Y58.0', 'BCG vaccine', 'ICD10_2010'), +('Y58.1', 'Typhoid and paratyphoid vaccine', 'ICD10_2010'), +('Y58.2', 'Cholera vaccine', 'ICD10_2010'), +('Y58.3', 'Plague vaccine', 'ICD10_2010'), +('Y58.4', 'Tetanus vaccine', 'ICD10_2010'), +('Y58.5', 'Diphtheria vaccine', 'ICD10_2010'), +('Y58.6', 'Pertussis vaccine, including combinations with a pertussis component', 'ICD10_2010'), +('Y58.8', 'Mixed bacterial vaccines, except combinations with a pertussis component', 'ICD10_2010'), +('Y58.9', 'Other and unspecified bacterial vaccines', 'ICD10_2010'), +('Y59', 'Other and unspecified vaccines and biological substances', 'ICD10_2010'), +('Y59.0', 'Viral vaccines', 'ICD10_2010'), +('Y59.1', 'Rickettsial vaccines', 'ICD10_2010'), +('Y59.2', 'Protozoal vaccines', 'ICD10_2010'), +('Y59.3', 'Immunoglobulin', 'ICD10_2010'), +('Y59.8', 'Other specified vaccines and biological substances', 'ICD10_2010'), +('Y59.9', 'Vaccine or biological substance, unspecified', 'ICD10_2010'), +('Y60', 'Unintentional cut, puncture, perforation or haemorrhage during surgical and medical care', 'ICD10_2010'), +('Y60.0', 'During surgical operation', 'ICD10_2010'), +('Y60.1', 'During infusion or transfusion', 'ICD10_2010'), +('Y60.2', 'During kidney dialysis or other perfusion', 'ICD10_2010'), +('Y60.3', 'During injection or immunization', 'ICD10_2010'), +('Y60.4', 'During endoscopic examination', 'ICD10_2010'), +('Y60.5', 'During heart catheterization', 'ICD10_2010'), +('Y60.6', 'During aspiration, puncture and other catheterization', 'ICD10_2010'), +('Y60.7', 'During administration of enema', 'ICD10_2010'), +('Y60.8', 'During other surgical and medical care', 'ICD10_2010'), +('Y60.9', 'During unspecified surgical and medical care', 'ICD10_2010'), +('Y61', 'Foreign object accidentally left in body during surgical and medical care', 'ICD10_2010'), +('Y61.0', 'During surgical operation', 'ICD10_2010'), +('Y61.1', 'During infusion or transfusion', 'ICD10_2010'), +('Y61.2', 'During kidney dialysis or other perfusion', 'ICD10_2010'), +('Y61.3', 'During injection or immunization', 'ICD10_2010'), +('Y61.4', 'During endoscopic examination', 'ICD10_2010'), +('Y61.5', 'During heart catheterization', 'ICD10_2010'), +('Y61.6', 'During aspiration, puncture and other catheterization', 'ICD10_2010'), +('Y61.7', 'During removal of catheter or packing', 'ICD10_2010'), +('Y61.8', 'During other surgical and medical care', 'ICD10_2010'), +('Y61.9', 'During unspecified surgical and medical care', 'ICD10_2010'), +('Y62', 'Failure of sterile precautions during surgical and medical care', 'ICD10_2010'), +('Y62.0', 'During surgical operation', 'ICD10_2010'), +('Y62.1', 'During infusion or transfusion', 'ICD10_2010'), +('Y62.2', 'During kidney dialysis or other perfusion', 'ICD10_2010'), +('Y62.3', 'During injection or immunization', 'ICD10_2010'), +('Y62.4', 'During endoscopic examination', 'ICD10_2010'), +('Y62.5', 'During heart catheterization', 'ICD10_2010'), +('Y62.6', 'During aspiration, puncture and other catheterization', 'ICD10_2010'), +('Y62.8', 'During other surgical and medical care', 'ICD10_2010'), +('Y62.9', 'During unspecified surgical and medical care', 'ICD10_2010'), +('Y63', 'Failure in dosage during surgical and medical care', 'ICD10_2010'), +('Y63.0', 'Excessive amount of blood or other fluid given during transfusion or infusion', 'ICD10_2010'), +('Y63.1', 'Incorrect dilution of fluid used during infusion', 'ICD10_2010'), +('Y63.2', 'Overdose of radiation given during therapy', 'ICD10_2010'), +('Y63.3', 'Inadvertent exposure of patient to radiation during medical care', 'ICD10_2010'), +('Y63.4', 'Failure in dosage in electroshock or insulin-shock therapy', 'ICD10_2010'), +('Y63.5', 'Inappropriate temperature in local application and packing', 'ICD10_2010'), +('Y63.6', 'Nonadministration of necessary drug, medicament or biological substance', 'ICD10_2010'), +('Y63.8', 'Failure in dosage during other surgical and medical care', 'ICD10_2010'), +('Y63.9', 'Failure in dosage during unspecified surgical and medical care', 'ICD10_2010'), +('Y64', 'Contaminated medical or biological substances', 'ICD10_2010'), +('Y64.0', 'Contaminated medical or biological substance, transfused or infused', 'ICD10_2010'), +('Y64.1', 'Contaminated medical or biological substance, injected or used for immunization', 'ICD10_2010'), +('Y64.8', 'Contaminated medical or biological substance administered by other means', 'ICD10_2010'), +('Y64.9', 'Contaminated medical or biological substance administered by unspecified means', 'ICD10_2010'), +('Y65', 'Other misadventures during surgical and medical care', 'ICD10_2010'), +('Y65.0', 'Mismatched blood used in transfusion', 'ICD10_2010'), +('Y65.1', 'Wrong fluid used in infusion', 'ICD10_2010'), +('Y65.2', 'Failure in suture or ligature during surgical operation', 'ICD10_2010'), +('Y65.3', 'Endotracheal tube wrongly placed during anaesthetic procedure', 'ICD10_2010'), +('Y65.4', 'Failure to introduce or to remove other tube or instrument', 'ICD10_2010'), +('Y65.5', 'Performance of inappropriate operation', 'ICD10_2010'), +('Y65.8', 'Other specified misadventures during surgical and medical care', 'ICD10_2010'), +('Y66', 'Nonadministration of surgical and medical care', 'ICD10_2010'), +('Y69', 'Unspecified misadventure during surgical and medical care', 'ICD10_2010'), +('Y70', 'Anaesthesiology devices associated with adverse incidents', 'ICD10_2010'), +('Y70.0', 'Anaesthesiology devices associated with adverse incidents: Diagnostic and monitoring devices', 'ICD10_2010'), +('Y70.1', 'Anaesthesiology devices associated with adverse incidents: Therapeutic (nonsurgical) and rehabilitative devices', 'ICD10_2010'), +('Y70.2', 'Anaesthesiology devices associated with adverse incidents: Prosthetic and other implants, materials and accessory devices', 'ICD10_2010'), +('Y70.3', 'Anaesthesiology devices associated with adverse incidents: Surgical instruments, materials and devices (including sutures)', 'ICD10_2010'), +('Y70.8', 'Anaesthesiology devices associated with adverse incidents: Miscellaneous devices, not elsewhere classified', 'ICD10_2010'), +('Y71', 'Cardiovascular devices associated with adverse incidents', 'ICD10_2010'), +('Y71.0', 'Cardiovascular devices associated with adverse incidents: Diagnostic and monitoring devices', 'ICD10_2010'), +('Y71.1', 'Cardiovascular devices associated with adverse incidents: Therapeutic (nonsurgical) and rehabilitative devices', 'ICD10_2010'), +('Y71.2', 'Cardiovascular devices associated with adverse incidents: Prosthetic and other implants, materials and accessory devices', 'ICD10_2010'), +('Y71.3', 'Cardiovascular devices associated with adverse incidents: Surgical instruments, materials and devices (including sutures)', 'ICD10_2010'), +('Y71.8', 'Cardiovascular devices associated with adverse incidents: Miscellaneous devices, not elsewhere classified', 'ICD10_2010'), +('Y72', 'Otorhinolaryngological devices associated with adverse incidents', 'ICD10_2010'), +('Y72.0', 'Otorhinolaryngological devices associated with adverse incidents: Diagnostic and monitoring devices', 'ICD10_2010'), +('Y72.1', 'Otorhinolaryngological devices associated with adverse incidents: Therapeutic (nonsurgical) and rehabilitative devices', 'ICD10_2010'), +('Y72.2', 'Otorhinolaryngological devices associated with adverse incidents: Prosthetic and other implants, materials and accessory devices', 'ICD10_2010'), +('Y72.3', 'Otorhinolaryngological devices associated with adverse incidents: Surgical instruments, materials and devices (including sutures)', 'ICD10_2010'), +('Y72.8', 'Otorhinolaryngological devices associated with adverse incidents: Miscellaneous devices, not elsewhere classified', 'ICD10_2010'), +('Y73', 'Gastroenterology and urology devices associated with adverse incidents', 'ICD10_2010'), +('Y73.0', 'Gastroenterology and urology devices associated with adverse incidents: Diagnostic and monitoring devices', 'ICD10_2010'), +('Y73.1', 'Gastroenterology and urology devices associated with adverse incidents: Therapeutic (nonsurgical) and rehabilitative devices', 'ICD10_2010'), +('Y73.2', 'Gastroenterology and urology devices associated with adverse incidents: Prosthetic and other implants, materials and accessory devices', 'ICD10_2010'), +('Y73.3', 'Gastroenterology and urology devices associated with adverse incidents: Surgical instruments, materials and devices (including sutures)', 'ICD10_2010'), +('Y73.8', 'Gastroenterology and urology devices associated with adverse incidents: Miscellaneous devices, not elsewhere classified', 'ICD10_2010'), +('Y74', 'General hospital and personal-use devices associated with adverse incidents', 'ICD10_2010'), +('Y74.0', 'General hospital and personal-use devices associated with adverse incidents: Diagnostic and monitoring devices', 'ICD10_2010'), +('Y74.1', 'General hospital and personal-use devices associated with adverse incidents: Therapeutic (nonsurgical) and rehabilitative devices', 'ICD10_2010'), +('Y74.2', 'General hospital and personal-use devices associated with adverse incidents: Prosthetic and other implants, materials and accessory devices', 'ICD10_2010'), +('Y74.3', 'General hospital and personal-use devices associated with adverse incidents: Surgical instruments, materials and devices (including sutures)', 'ICD10_2010'), +('Y74.8', 'General hospital and personal-use devices associated with adverse incidents: Miscellaneous devices, not elsewhere classified', 'ICD10_2010'), +('Y75', 'Neurological devices associated with adverse incidents', 'ICD10_2010'), +('Y75.0', 'Neurological devices associated with adverse incidents: Diagnostic and monitoring devices', 'ICD10_2010'), +('Y75.1', 'Neurological devices associated with adverse incidents: Therapeutic (nonsurgical) and rehabilitative devices', 'ICD10_2010'), +('Y75.2', 'Neurological devices associated with adverse incidents: Prosthetic and other implants, materials and accessory devices', 'ICD10_2010'), +('Y75.3', 'Neurological devices associated with adverse incidents: Surgical instruments, materials and devices (including sutures)', 'ICD10_2010'), +('Y75.8', 'Neurological devices associated with adverse incidents: Miscellaneous devices, not elsewhere classified', 'ICD10_2010'), +('Y76', 'Obstetric and gynaecological devices associated with adverse incidents', 'ICD10_2010'), +('Y76.0', 'Obstetric and gynaecological devices associated with adverse incidents: Diagnostic and monitoring devices', 'ICD10_2010'), +('Y76.1', 'Obstetric and gynaecological devices associated with adverse incidents: Therapeutic (nonsurgical) and rehabilitative devices', 'ICD10_2010'), +('Y76.2', 'Obstetric and gynaecological devices associated with adverse incidents: Prosthetic and other implants, materials and accessory devices', 'ICD10_2010'), +('Y76.3', 'Obstetric and gynaecological devices associated with adverse incidents: Surgical instruments, materials and devices (including sutures)', 'ICD10_2010'), +('Y76.8', 'Obstetric and gynaecological devices associated with adverse incidents: Miscellaneous devices, not elsewhere classified', 'ICD10_2010'), +('Y77', 'Ophthalmic devices associated with adverse incidents', 'ICD10_2010'), +('Y77.0', 'Ophthalmic devices associated with adverse incidents: Diagnostic and monitoring devices', 'ICD10_2010'), +('Y77.1', 'Ophthalmic devices associated with adverse incidents: Therapeutic (nonsurgical) and rehabilitative devices', 'ICD10_2010'), +('Y77.2', 'Ophthalmic devices associated with adverse incidents: Prosthetic and other implants, materials and accessory devices', 'ICD10_2010'), +('Y77.3', 'Ophthalmic devices associated with adverse incidents: Surgical instruments, materials and devices (including sutures)', 'ICD10_2010'), +('Y77.8', 'Ophthalmic devices associated with adverse incidents: Miscellaneous devices, not elsewhere classified', 'ICD10_2010'), +('Y78', 'Radiological devices associated with adverse incidents', 'ICD10_2010'), +('Y78.0', 'Radiological devices associated with adverse incidents: Diagnostic and monitoring devices', 'ICD10_2010'), +('Y78.1', 'Radiological devices associated with adverse incidents: Therapeutic (nonsurgical) and rehabilitative devices', 'ICD10_2010'), +('Y78.2', 'Radiological devices associated with adverse incidents: Prosthetic and other implants, materials and accessory devices', 'ICD10_2010'), +('Y78.3', 'Radiological devices associated with adverse incidents: Surgical instruments, materials and devices (including sutures)', 'ICD10_2010'), +('Y78.8', 'Radiological devices associated with adverse incidents: Miscellaneous devices, not elsewhere classified', 'ICD10_2010'), +('Y79', 'Orthopaedic devices associated with adverse incidents', 'ICD10_2010'), +('Y79.0', 'Orthopaedic devices associated with adverse incidents: Diagnostic and monitoring devices', 'ICD10_2010'), +('Y79.1', 'Orthopaedic devices associated with adverse incidents: Therapeutic (nonsurgical) and rehabilitative devices', 'ICD10_2010'), +('Y79.2', 'Orthopaedic devices associated with adverse incidents: Prosthetic and other implants, materials and accessory devices', 'ICD10_2010'), +('Y79.3', 'Orthopaedic devices associated with adverse incidents: Surgical instruments, materials and devices (including sutures)', 'ICD10_2010'), +('Y79.8', 'Orthopaedic devices associated with adverse incidents: Miscellaneous devices, not elsewhere classified', 'ICD10_2010'), +('Y80', 'Physical medicine devices associated with adverse incidents', 'ICD10_2010'); +INSERT INTO `icd10` (`ID_ICD10`, `Diagnosa`, `Versi_ICD10`) VALUES +('Y80.0', 'Physical medicine devices associated with adverse incidents: Diagnostic and monitoring devices', 'ICD10_2010'), +('Y80.1', 'Physical medicine devices associated with adverse incidents: Therapeutic (nonsurgical) and rehabilitative devices', 'ICD10_2010'), +('Y80.2', 'Physical medicine devices associated with adverse incidents: Prosthetic and other implants, materials and accessory devices', 'ICD10_2010'), +('Y80.3', 'Physical medicine devices associated with adverse incidents: Surgical instruments, materials and devices (including sutures)', 'ICD10_2010'), +('Y80.8', 'Physical medicine devices associated with adverse incidents: Miscellaneous devices, not elsewhere classified', 'ICD10_2010'), +('Y81', 'General- and plastic-surgery devices associated with adverse incidents', 'ICD10_2010'), +('Y81.0', 'General- and plastic-surgery devices associated with adverse incidents: Diagnostic and monitoring devices', 'ICD10_2010'), +('Y81.1', 'General- and plastic-surgery devices associated with adverse incidents: Therapeutic (nonsurgical) and rehabilitative devices', 'ICD10_2010'), +('Y81.2', 'General- and plastic-surgery devices associated with adverse incidents: Prosthetic and other implants, materials and accessory devices', 'ICD10_2010'), +('Y81.3', 'General- and plastic-surgery devices associated with adverse incidents: Surgical instruments, materials and devices (including sutures)', 'ICD10_2010'), +('Y81.8', 'General- and plastic-surgery devices associated with adverse incidents: Miscellaneous devices, not elsewhere classified', 'ICD10_2010'), +('Y82', 'Other and unspecified medical devices associated with adverse incidents', 'ICD10_2010'), +('Y82.0', 'Other and unspecified medical devices associated with adverse incidents: Diagnostic and monitoring devices', 'ICD10_2010'), +('Y82.1', 'Other and unspecified medical devices associated with adverse incidents: Therapeutic (nonsurgical) and rehabilitative devices', 'ICD10_2010'), +('Y82.2', 'Other and unspecified medical devices associated with adverse incidents: Prosthetic and other implants, materials and accessory devices', 'ICD10_2010'), +('Y82.3', 'Other and unspecified medical devices associated with adverse incidents: Surgical instruments, materials and devices (including sutures)', 'ICD10_2010'), +('Y82.8', 'Other and unspecified medical devices associated with adverse incidents: Miscellaneous devices, not elsewhere classified', 'ICD10_2010'), +('Y83', 'Surgical operation and other surgical procedures as the cause of abnormal reaction of the patient, or of later complication, without mention of misadv', 'ICD10_2010'), +('Y83.0', 'Surgical operation with transplant of whole organ', 'ICD10_2010'), +('Y83.1', 'Surgical operation with implant of artificial internal device', 'ICD10_2010'), +('Y83.2', 'Surgical operation with anastomosis, bypass or graft', 'ICD10_2010'), +('Y83.3', 'Surgical operation with formation of external stoma', 'ICD10_2010'), +('Y83.4', 'Other reconstructive surgery', 'ICD10_2010'), +('Y83.5', 'Amputation of limb(s)', 'ICD10_2010'), +('Y83.6', 'Removal of other organ (partial) (total)', 'ICD10_2010'), +('Y83.8', 'Other surgical procedures', 'ICD10_2010'), +('Y83.9', 'Surgical procedure, unspecified', 'ICD10_2010'), +('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 th', 'ICD10_2010'), +('Y84.0', 'Cardiac catheterization', 'ICD10_2010'), +('Y84.1', 'Kidney dialysis', 'ICD10_2010'), +('Y84.2', 'Radiological procedure and radiotherapy', 'ICD10_2010'), +('Y84.3', 'Shock therapy', 'ICD10_2010'), +('Y84.4', 'Aspiration of fluid', 'ICD10_2010'), +('Y84.5', 'Insertion of gastric or duodenal sound', 'ICD10_2010'), +('Y84.6', 'Urinary catheterization', 'ICD10_2010'), +('Y84.7', 'Blood-sampling', 'ICD10_2010'), +('Y84.8', 'Other medical procedures', 'ICD10_2010'), +('Y84.9', 'Medical procedure, unspecified', 'ICD10_2010'), +('Y85', 'Sequelae of transport accidents', 'ICD10_2010'), +('Y85.0', 'Sequelae of motor-vehicle accident', 'ICD10_2010'), +('Y85.9', 'Sequelae of other and unspecified transport accidents', 'ICD10_2010'), +('Y86', 'Sequelae of other accidents', 'ICD10_2010'), +('Y87', 'Sequelae of intentional self-harm, assault and events of undetermined intent', 'ICD10_2010'), +('Y87.0', 'Sequelae of intentional self-harm', 'ICD10_2010'), +('Y87.1', 'Sequelae of assault', 'ICD10_2010'), +('Y87.2', 'Sequelae of events of undetermined intent', 'ICD10_2010'), +('Y88', 'Sequelae with surgical and medical care as external cause', 'ICD10_2010'), +('Y88.0', 'Sequelae of adverse effects caused by drugs, medicaments and biological substances in therapeutic use', 'ICD10_2010'), +('Y88.1', 'Sequelae of misadventures to patients during surgical and medical procedures', 'ICD10_2010'), +('Y88.2', 'Sequelae of adverse incidents associated with medical devices in diagnostic and therapeutic use', 'ICD10_2010'), +('Y88.3', 'Sequelae of surgical and medical procedures as the cause of abnormal reaction of the patient, or of later complication, without mention of misadventur', 'ICD10_2010'), +('Y89', 'Sequelae of other external causes', 'ICD10_2010'), +('Y89.0', 'Sequelae of legal intervention', 'ICD10_2010'), +('Y89.1', 'Sequelae of war operations', 'ICD10_2010'), +('Y89.9', 'Sequelae of unspecified external cause', 'ICD10_2010'), +('Y90', 'Evidence of alcohol involvement determined by blood alcohol level', 'ICD10_2010'), +('Y90.0', 'Blood alcohol level of less than 20 mg/100 ml', 'ICD10_2010'), +('Y90.1', 'Blood alcohol level of 20-39 mg/100 ml', 'ICD10_2010'), +('Y90.2', 'Blood alcohol level of 40-59 mg/100 ml', 'ICD10_2010'), +('Y90.3', 'Blood alcohol level of 60-79 mg/100 ml', 'ICD10_2010'), +('Y90.4', 'Blood alcohol level of 80-99 mg/100 ml', 'ICD10_2010'), +('Y90.5', 'Blood alcohol level of 100-119 mg/100 ml', 'ICD10_2010'), +('Y90.6', 'Blood alcohol level of 120-199 mg/100 ml', 'ICD10_2010'), +('Y90.7', 'Blood alcohol level of 200-239 mg/100 ml', 'ICD10_2010'), +('Y90.8', 'Blood alcohol level of 240 mg/100 ml or more', 'ICD10_2010'), +('Y90.9', 'Presence of alcohol in blood, level not specified', 'ICD10_2010'), +('Y91', 'Evidence of alcohol involvement determined by level of intoxication', 'ICD10_2010'), +('Y91.0', 'Mild alcohol intoxication', 'ICD10_2010'), +('Y91.1', 'Moderate alcohol intoxication', 'ICD10_2010'), +('Y91.2', 'Severe alcohol intoxication', 'ICD10_2010'), +('Y91.3', 'Very severe alcohol intoxication', 'ICD10_2010'), +('Y91.9', 'Alcohol involvement, not otherwise specified', 'ICD10_2010'), +('Y95', 'Nosocomial condition', 'ICD10_2010'), +('Y96', 'Work-related condition', 'ICD10_2010'), +('Y97', 'Environmental-pollution-related condition', 'ICD10_2010'), +('Y98', 'Lifestyle-related condition', 'ICD10_2010'), +('Z00', 'General examination and investigation of persons without complaint and reported diagnosis', 'ICD10_2010'), +('Z00.0', 'General medical examination', 'ICD10_2010'), +('Z00.1', 'Routine child health examination', 'ICD10_2010'), +('Z00.2', 'Examination for period of rapid growth in childhood', 'ICD10_2010'), +('Z00.3', 'Examination for adolescent development state', 'ICD10_2010'), +('Z00.4', 'General psychiatric examination, nec', 'ICD10_2010'), +('Z00.5', 'Examination of potential donor of organ and tissue', 'ICD10_2010'), +('Z00.6', 'Exam normal comparison and control in clin research program', 'ICD10_2010'), +('Z00.8', 'Other general examinations', 'ICD10_2010'), +('Z01', 'Other special examinations and investigations of persons without complaint or reported diagnosis', 'ICD10_2010'), +('Z01.0', 'Examination of eyes and vision', 'ICD10_2010'), +('Z01.1', 'Examination of ears and hearing', 'ICD10_2010'), +('Z01.2', 'Dental examination', 'ICD10_2010'), +('Z01.3', 'Examination of blood pressure', 'ICD10_2010'), +('Z01.4', 'Gynaecological examination (general)(routine)', 'ICD10_2010'), +('Z01.5', 'Diagnostic skin and sensitization tests', 'ICD10_2010'), +('Z01.6', 'Radiological examination, nec', 'ICD10_2010'), +('Z01.7', 'Laboratory examination', 'ICD10_2010'), +('Z01.8', 'Other specified special examinations', 'ICD10_2010'), +('Z01.9', 'Special examination, unspecified', 'ICD10_2010'), +('Z02', 'Examination and encounter for administrative purposes', 'ICD10_2010'), +('Z02.0', 'Examination for admission to educational institution', 'ICD10_2010'), +('Z02.1', 'Pre-employment examination', 'ICD10_2010'), +('Z02.2', 'Examination for admission to residential institutions', 'ICD10_2010'), +('Z02.3', 'Examination for recruitment to armed forces', 'ICD10_2010'), +('Z02.4', 'Examination for driving licence', 'ICD10_2010'), +('Z02.5', 'Examination for participation in sport', 'ICD10_2010'), +('Z02.6', 'Examination for insurance purposes', 'ICD10_2010'), +('Z02.7', 'Issue of medical certificate', 'ICD10_2010'), +('Z02.8', 'Other examinations for administrative purposes', 'ICD10_2010'), +('Z02.9', 'Examination for administrative purposes, unspecified', 'ICD10_2010'), +('Z03', 'Medical observation and evaluation for suspected diseases and conditions', 'ICD10_2010'), +('Z03.0', 'Observation for suspected tuberculosis', 'ICD10_2010'), +('Z03.1', 'Observation for suspected malignant neoplasm', 'ICD10_2010'), +('Z03.2', 'Observation for suspected mental and behavioural disorders', 'ICD10_2010'), +('Z03.3', 'Observation for suspected nervous system disorder', 'ICD10_2010'), +('Z03.4', 'Observation for suspected myocardial infarction', 'ICD10_2010'), +('Z03.5', 'Observation for other suspected cardiovascular diseases', 'ICD10_2010'), +('Z03.6', 'Observation for suspected toxic effect from ingested substances', 'ICD10_2010'), +('Z03.8', 'Observation for other suspected diseases and conditions', 'ICD10_2010'), +('Z03.9', 'Observation for suspected disease or condition, unspecified', 'ICD10_2010'), +('Z04', 'Examination and observation for other reasons', 'ICD10_2010'), +('Z04.0', 'Blood-alcohol and blood-drug test', 'ICD10_2010'), +('Z04.1', 'Examination and observation following transport accident', 'ICD10_2010'), +('Z04.2', 'Examination and observation following work accident', 'ICD10_2010'), +('Z04.3', 'Examination and observation following other accident', 'ICD10_2010'), +('Z04.4', 'Exam and observation following alleged rape and seduction', 'ICD10_2010'), +('Z04.5', 'Examination and observation following other inflicted injury', 'ICD10_2010'), +('Z04.6', 'General psychiatric examination, requested by authority', 'ICD10_2010'), +('Z04.8', 'Examination and observation for other specified reasons', 'ICD10_2010'), +('Z04.9', 'Examination and observation for unspecified reason', 'ICD10_2010'), +('Z08', 'Follow-up examination after treatment for malignant neoplasms', 'ICD10_2010'), +('Z08.0', 'Follow-up examination after surgery for malignant neoplasm', 'ICD10_2010'), +('Z08.1', 'Follow-up examination after radiotherapy for malignant neoplasm', 'ICD10_2010'), +('Z08.2', 'Follow-up examination after chemotherapy for malignant neoplasm', 'ICD10_2010'), +('Z08.7', 'Follow-up examination after combined treatment for malig neoplasm', 'ICD10_2010'), +('Z08.8', 'Follow-up examination after other treatment for malignant neoplasm', 'ICD10_2010'), +('Z08.9', 'Follow-up examination after unspecified treatment for malignant neoplasm', 'ICD10_2010'), +('Z09', 'Follow-up examination after treatment for conditions other than malignant neoplasms', 'ICD10_2010'), +('Z09.0', 'Follow-up examination after surgery for other conditions', 'ICD10_2010'), +('Z09.1', 'Follow-up examination after radiotherapy for oth conditions', 'ICD10_2010'), +('Z09.2', 'Follow-up examination after chemotherapy for oth conditions', 'ICD10_2010'), +('Z09.3', 'Follow-up examination after psychotherapy', 'ICD10_2010'), +('Z09.4', 'Follow-up examination after treatment of fracture', 'ICD10_2010'), +('Z09.7', 'Follow-up exam after combined treatment for other conditions', 'ICD10_2010'), +('Z09.8', 'Follow-up exam after other treatment for other conditions', 'ICD10_2010'), +('Z09.9', 'Follow-up exam after unspecified treatment for other conditions', 'ICD10_2010'), +('Z10', 'Routine general health check-up of defined subpopulation', 'ICD10_2010'), +('Z10.0', 'Occupational health examination', 'ICD10_2010'), +('Z10.1', 'Routine gen health check-up of inhabitants of institutions', 'ICD10_2010'), +('Z10.2', 'Routine general health check-up of armed forces', 'ICD10_2010'), +('Z10.3', 'Routine general health check-up of sports teams', 'ICD10_2010'), +('Z10.8', 'Routine general health check-up of other defined subpopulations', 'ICD10_2010'), +('Z11', 'Special screening examination for infectious and parasitic diseases', 'ICD10_2010'), +('Z11.0', 'Special screening examination for intestinal infectious diseases', 'ICD10_2010'), +('Z11.1', 'Special screening examination for respiratory tuberculosis', 'ICD10_2010'), +('Z11.2', 'Special screening examination for other bacterial diseases', 'ICD10_2010'), +('Z11.3', 'Special screening examination infection with predominantly sexual mode transmis', 'ICD10_2010'), +('Z11.4', 'Special screening examination for human immunodeficiency virus [hiv]', 'ICD10_2010'), +('Z11.5', 'Special screening examination for other viral diseases', 'ICD10_2010'), +('Z11.6', 'Special screening examination for oth protozoal dis and helminthiases', 'ICD10_2010'), +('Z11.8', 'Special screening examination for other infectious and parasitic diseases', 'ICD10_2010'), +('Z11.9', 'Special screening examination for infectious and parasitic disease unspecified', 'ICD10_2010'), +('Z12', 'Special screening examination for neoplasms', 'ICD10_2010'), +('Z12.0', 'Special screening examination for neoplasm of stomach', 'ICD10_2010'), +('Z12.1', 'Special screening examination for neoplasm of intestinal tract', 'ICD10_2010'), +('Z12.2', 'Special screening examination for neoplasm of respiratory organs', 'ICD10_2010'), +('Z12.3', 'Special screening examination for neoplasm of breast', 'ICD10_2010'), +('Z12.4', 'Special screening examination for neoplasm of cervix', 'ICD10_2010'), +('Z12.5', 'Special screening examination for neoplasm of prostate', 'ICD10_2010'), +('Z12.6', 'Special screening examination for neoplasm of bladder', 'ICD10_2010'), +('Z12.8', 'Special screening examination for neoplasms of other sites', 'ICD10_2010'), +('Z12.9', 'Special screening examination for neoplasm, unspecified', 'ICD10_2010'), +('Z13', 'Special screening examination for other diseases and disorders', 'ICD10_2010'), +('Z13.0', 'Special screening examination disease blood and blood forming organs and certain disoders involving the immune mechanism', 'ICD10_2010'), +('Z13.1', 'Special screening examination for diabetes mellitus', 'ICD10_2010'), +('Z13.2', 'Special screening examination for nutritional disorders', 'ICD10_2010'), +('Z13.3', 'Special screening examination for mental and behavioural disorders', 'ICD10_2010'), +('Z13.4', 'Special screening examination certain development disorders in childhood', 'ICD10_2010'), +('Z13.5', 'Special screening examination for eye and ear disorders', 'ICD10_2010'), +('Z13.6', 'Special screening examination for cardiovascular disorders', 'ICD10_2010'), +('Z13.7', 'Special screening examination for congenital malformations, deformations and chromosomal abnormalities', 'ICD10_2010'), +('Z13.8', 'Special screening examination for other specified diseases and disorders', 'ICD10_2010'), +('Z13.9', 'Special screening examination, unspecified', 'ICD10_2010'), +('Z20', 'Contact with and exposure to communicable diseases', 'ICD10_2010'), +('Z20.0', 'Contact with and exposure to intestinal infectious diseases', 'ICD10_2010'), +('Z20.1', 'Contact with and exposure to tuberculosis', 'ICD10_2010'), +('Z20.2', 'Contact with and exposure infection with a predominantly sex mode transmission', 'ICD10_2010'), +('Z20.3', 'Contact with and exposure to rabies', 'ICD10_2010'), +('Z20.4', 'Contact with and exposure to rubella', 'ICD10_2010'), +('Z20.5', 'Contact with and exposure to viral hepatitis', 'ICD10_2010'), +('Z20.6', 'Contact with and exposure to human immunodefic virus [HIV]', 'ICD10_2010'), +('Z20.7', 'Contact with and exposure pediculosis acariasis and other infestations', 'ICD10_2010'), +('Z20.8', 'Contact with and exposure to other communicable diseases', 'ICD10_2010'), +('Z20.9', 'Contact with and exposure to unspecified communicable disease', 'ICD10_2010'), +('Z21', 'Asymptomatic human immunodefic virus [hiv] infect status', 'ICD10_2010'), +('Z22', 'Carrier of infectious disease', 'ICD10_2010'), +('Z22.0', 'Carrier of typhoid', 'ICD10_2010'), +('Z22.1', 'Carrier of other intestinal infectious diseases', 'ICD10_2010'), +('Z22.2', 'Carrier of diphtheria', 'ICD10_2010'), +('Z22.3', 'Carrier of other specified bacterial diseases', 'ICD10_2010'), +('Z22.4', 'Carrier of infections with a predom sexual mode of transmission', 'ICD10_2010'), +('Z22.5', 'Carrier of viral hepatitis', 'ICD10_2010'), +('Z22.6', 'Carrier of human T-lymphotropic virus type-1 [HTLV-1] infection', 'ICD10_2010'), +('Z22.8', 'Carrier of other infectious diseases', 'ICD10_2010'), +('Z22.9', 'Carrier of infectious disease, unspecified', 'ICD10_2010'), +('Z23', 'Need for immunization against single bacterial diseases', 'ICD10_2010'), +('Z23.0', 'Need for immunization against cholera alone', 'ICD10_2010'), +('Z23.1', 'Need for immuniz against typhoid-paratyphoid alone [TAB]', 'ICD10_2010'), +('Z23.2', 'Need for immunization against tuberculosis [BCG]', 'ICD10_2010'), +('Z23.3', 'Need for immunization against plague', 'ICD10_2010'), +('Z23.4', 'Need for immunization against tularaemia', 'ICD10_2010'), +('Z23.5', 'Need for immunization against tetanus alone', 'ICD10_2010'), +('Z23.6', 'Need for immunization against diphtheria alone', 'ICD10_2010'), +('Z23.7', 'Need for immunization against pertussis alone', 'ICD10_2010'), +('Z23.8', 'Need for immunization against other single bacterial diseases', 'ICD10_2010'), +('Z24', 'Need for immunization against certain single viral diseases', 'ICD10_2010'), +('Z24.0', 'Need for immunization against poliomyelitis', 'ICD10_2010'), +('Z24.1', 'Need for immunization against arthropod-borne viral encephalitis', 'ICD10_2010'), +('Z24.2', 'Need for immunization against rabies', 'ICD10_2010'), +('Z24.3', 'Need for immunization against yellow fever', 'ICD10_2010'), +('Z24.4', 'Need for immunization against measles alone', 'ICD10_2010'), +('Z24.5', 'Need for immunization against rubella alone', 'ICD10_2010'), +('Z24.6', 'Need for immunization against viral hepatitis', 'ICD10_2010'), +('Z25', 'Need for immunization against other single viral diseases', 'ICD10_2010'), +('Z25.0', 'Need for immunization against mumps alone', 'ICD10_2010'), +('Z25.1', 'Need for immunization against influenza', 'ICD10_2010'), +('Z25.8', 'Need for immunization against oth specified single viral diseases', 'ICD10_2010'), +('Z26', 'Need for immunization against other single infectious diseases', 'ICD10_2010'), +('Z26.0', 'Need for immunization against leishmaniasis', 'ICD10_2010'), +('Z26.8', 'Need for immunization against other specified single infectious diseases', 'ICD10_2010'), +('Z26.9', 'Need for immunization against unspecified infectious disease', 'ICD10_2010'), +('Z27', 'Need for immunization against combinations of infectious diseases', 'ICD10_2010'), +('Z27.0', 'Need for immunization against cholera with typhoid-paratyphoid [cholera + TAB]', 'ICD10_2010'), +('Z27.1', 'Need for immunization against diphtheria-tetanus-pertussis combined [DTP]', 'ICD10_2010'), +('Z27.2', 'Need for immunization against diphtheria-tetanus-pertussis with typhoid-paratyph [DTP + TAB]', 'ICD10_2010'), +('Z27.3', 'Need for immunization against diphtheria-tetanus-pertussis with poliomyelitis [DTP + polio]', 'ICD10_2010'), +('Z27.4', 'Need for immunization against measles-mumps-rubella [MMR]', 'ICD10_2010'), +('Z27.8', 'Need for immunization against other combinations of infectious diseases', 'ICD10_2010'), +('Z27.9', 'Need for immunization against unspec combs of infectious diseases', 'ICD10_2010'), +('Z28', 'Immunization not carried out', 'ICD10_2010'), +('Z28.0', 'Immunization not carried out because of contraindication', 'ICD10_2010'), +('Z28.1', 'Immunization not carried out because of patient\'s decision for reason of belief or group pressure', 'ICD10_2010'), +('Z28.2', 'Immunization not carried out because patient\'s decision for other unspecified reasons', 'ICD10_2010'), +('Z28.8', 'Immunization not carried out for other reasons', 'ICD10_2010'), +('Z28.9', 'Immunization not carried out for unspecified reason', 'ICD10_2010'), +('Z29', 'Need for other prophylactic measures', 'ICD10_2010'), +('Z29.0', 'Isolation', 'ICD10_2010'), +('Z29.1', 'Prophylactic immunotherapy', 'ICD10_2010'), +('Z29.2', 'Other prophylactic chemotherapy', 'ICD10_2010'), +('Z29.8', 'Other specified prophylactic measures', 'ICD10_2010'), +('Z29.9', 'Prophylactic measure, unspecified', 'ICD10_2010'), +('Z30', 'Contraceptive management', 'ICD10_2010'), +('Z30.0', 'General counselling and advice on contraception', 'ICD10_2010'), +('Z30.1', 'Insertion of (intrauterine) contraceptive device', 'ICD10_2010'), +('Z30.2', 'Sterilization', 'ICD10_2010'), +('Z30.3', 'Menstrual extraction', 'ICD10_2010'), +('Z30.4', 'Surveillance of contraceptive drugs', 'ICD10_2010'), +('Z30.5', 'Surveillance of (intrauterine) contraceptive device', 'ICD10_2010'), +('Z30.8', 'Other contraceptive management', 'ICD10_2010'), +('Z30.9', 'Contraceptive management, unspecified', 'ICD10_2010'), +('Z31', 'Procreative management', 'ICD10_2010'), +('Z31.0', 'Tuboplasty or vasoplasty after previous sterilization', 'ICD10_2010'), +('Z31.1', 'Artificial insemination', 'ICD10_2010'), +('Z31.2', 'In vitro fertilization', 'ICD10_2010'), +('Z31.3', 'Other assisted fertilization methods', 'ICD10_2010'), +('Z31.4', 'Procreative investigation and testing', 'ICD10_2010'), +('Z31.5', 'Genetic counselling', 'ICD10_2010'), +('Z31.6', 'General counselling and advice on procreation', 'ICD10_2010'), +('Z31.8', 'Other procreative management', 'ICD10_2010'), +('Z31.9', 'Procreative management, unspecified', 'ICD10_2010'), +('Z32', 'Pregnancy examination and test', 'ICD10_2010'), +('Z32.0', 'Pregnancy, not (yet) confirmed', 'ICD10_2010'), +('Z32.1', 'Pregnancy confirmed', 'ICD10_2010'), +('Z33', 'Pregnant state, incidental', 'ICD10_2010'), +('Z34', 'Supervision of normal pregnancy', 'ICD10_2010'), +('Z34.0', 'Supervision of normal first pregnancy', 'ICD10_2010'), +('Z34.8', 'Supervision of other normal pregnancy', 'ICD10_2010'), +('Z34.9', 'Supervision of normal pregnancy, unspecified', 'ICD10_2010'), +('Z35', 'Supervision of high-risk pregnancy', 'ICD10_2010'), +('Z35.0', 'Supervision of pregnancy with history of infertility', 'ICD10_2010'), +('Z35.1', 'Supervision of pregnancy with history of abortive outcome', 'ICD10_2010'), +('Z35.2', 'Supervision of pregnancy with other poor reproductive or obstetric history', 'ICD10_2010'), +('Z35.3', 'Supervision of pregnancy with history insufficient antenatal care', 'ICD10_2010'), +('Z35.4', 'Supervision of pregnancy with grand multiparity', 'ICD10_2010'), +('Z35.5', 'Supervision of elderly primigravida', 'ICD10_2010'), +('Z35.6', 'Supervision of very young primigravida', 'ICD10_2010'), +('Z35.7', 'Supervision of high-risk pregnancy due to social problems', 'ICD10_2010'), +('Z35.8', 'Supervision of other high-risk pregnancies', 'ICD10_2010'), +('Z35.9', 'Supervision of high-risk pregnancy, unspecified', 'ICD10_2010'), +('Z36', 'Antenatal screening', 'ICD10_2010'), +('Z36.0', 'Antenatal screening for chromosomal anomalies', 'ICD10_2010'), +('Z36.1', 'Antenatal screening for raised alphafetoprotein level', 'ICD10_2010'), +('Z36.2', 'Other antenatal screening based on amniocentesis', 'ICD10_2010'), +('Z36.3', 'Antenatal screening malformation using ultrasound and other physical methods', 'ICD10_2010'), +('Z36.4', 'Antenatal screening fetal growth retardation using ultrasound oth physical methods', 'ICD10_2010'), +('Z36.5', 'Antenatal screening for isoimmunization', 'ICD10_2010'), +('Z36.8', 'Other antenatal screening', 'ICD10_2010'), +('Z36.9', 'Antenatal screening, unspecified', 'ICD10_2010'), +('Z37', 'Outcome of delivery', 'ICD10_2010'), +('Z37.0', 'Single live birth', 'ICD10_2010'), +('Z37.1', 'Single stillbirth', 'ICD10_2010'), +('Z37.2', 'Twins, both liveborn', 'ICD10_2010'), +('Z37.3', 'Twins, one liveborn and one stillborn', 'ICD10_2010'), +('Z37.4', 'Twins, both stillborn', 'ICD10_2010'), +('Z37.5', 'Other multiple births, all liveborn', 'ICD10_2010'), +('Z37.6', 'Other multiple births, some liveborn', 'ICD10_2010'), +('Z37.7', 'Other multiple births, all stillborn', 'ICD10_2010'), +('Z37.9', 'Outcome of delivery, unspecified', 'ICD10_2010'), +('Z38', 'Liveborn infants according to place of birth', 'ICD10_2010'), +('Z38.0', 'Singleton, born in hospital', 'ICD10_2010'), +('Z38.1', 'Singleton, born outside hospital', 'ICD10_2010'), +('Z38.2', 'Singleton, unspecified as to place of birth', 'ICD10_2010'), +('Z38.3', 'Twin, born in hospital', 'ICD10_2010'), +('Z38.4', 'Twin, born outside hospital', 'ICD10_2010'), +('Z38.5', 'Twin, unspecified as to place of birth', 'ICD10_2010'), +('Z38.6', 'Other multiple, born in hospital', 'ICD10_2010'), +('Z38.7', 'Other multiple, born outside hospital', 'ICD10_2010'), +('Z38.8', 'Other multiple, unspecified as to place of birth', 'ICD10_2010'), +('Z39', 'Postpartum care and examination', 'ICD10_2010'), +('Z39.0', 'Care and examination immediately after delivery', 'ICD10_2010'), +('Z39.1', 'Care and examination of lactating mother', 'ICD10_2010'), +('Z39.2', 'Routine postpartum follow-up', 'ICD10_2010'), +('Z40', 'Prophylactic surgery', 'ICD10_2010'), +('Z40.0', 'Prophyl surgery for risk-factors related to mal neoplasms', 'ICD10_2010'), +('Z40.8', 'Other prophylactic surgery', 'ICD10_2010'), +('Z40.9', 'Prophylactic surgery, unspecified', 'ICD10_2010'), +('Z41', 'Procedures for purposes other than remedying health state', 'ICD10_2010'), +('Z41.0', 'Hair transplant', 'ICD10_2010'), +('Z41.1', 'Other plastic surgery for unacceptable cosmetic appearance', 'ICD10_2010'), +('Z41.2', 'Routine and ritual circumcision', 'ICD10_2010'), +('Z41.3', 'Ear piercing', 'ICD10_2010'), +('Z41.8', 'Other procedures for purposes other than remedying health state', 'ICD10_2010'), +('Z41.9', 'Procedures for purposes other than remedying health state, unspecified', 'ICD10_2010'), +('Z42', 'Follow-up care involving plastic surgery', 'ICD10_2010'), +('Z42.0', 'Follow-up care involving plastic surgery of head and neck', 'ICD10_2010'), +('Z42.1', 'Follow-up care involving plastic surgery of breast', 'ICD10_2010'), +('Z42.2', 'Follow-up care involving plastic surgery of ther parts of trunk', 'ICD10_2010'), +('Z42.3', 'Follow-up care involving plastic surgery of upper extremity', 'ICD10_2010'), +('Z42.4', 'Follow-up care involving plastic surgery of lower extremity', 'ICD10_2010'), +('Z42.8', 'Follow-up care involving plastic surgery of other body part', 'ICD10_2010'), +('Z42.9', 'Follow-up care involving plastic surgery, unspecified', 'ICD10_2010'), +('Z43', 'Attention to artificial openings', 'ICD10_2010'), +('Z43.0', 'Attention to tracheostomy', 'ICD10_2010'), +('Z43.1', 'Attention to gastrostomy', 'ICD10_2010'), +('Z43.2', 'Attention to ileostomy', 'ICD10_2010'), +('Z43.3', 'Attention to colostomy', 'ICD10_2010'), +('Z43.4', 'Attention to other artificial openings of digestive tract', 'ICD10_2010'), +('Z43.5', 'Attention to cystostomy', 'ICD10_2010'), +('Z43.6', 'Attention to other artificial openings of urinary tract', 'ICD10_2010'), +('Z43.7', 'Attention to artificial vagina', 'ICD10_2010'), +('Z43.8', 'Attention to other artificial openings', 'ICD10_2010'), +('Z43.9', 'Attention to unspecified artificial opening', 'ICD10_2010'), +('Z44', 'Fitting and adjustment of external prosthetic device', 'ICD10_2010'), +('Z44.0', 'Fitting and adjustment of artificial arm (complete)(partial)', 'ICD10_2010'), +('Z44.1', 'Fitting and adjustment of artificial leg (complete)(partial)', 'ICD10_2010'), +('Z44.2', 'Fitting and adjustment of artificial eye', 'ICD10_2010'), +('Z44.3', 'Fitting and adjustment of external breast prosthesis', 'ICD10_2010'), +('Z44.8', 'Fitting and adjustment of other external prosthetic devices', 'ICD10_2010'), +('Z44.9', 'Fitting and adjustment of unspecified external prosthetic device', 'ICD10_2010'), +('Z45', 'Adjustment and management of implanted device', 'ICD10_2010'), +('Z45.0', 'Adjustment and management of cardiac pacemaker', 'ICD10_2010'), +('Z45.1', 'Adjustment and management of infusion pump', 'ICD10_2010'), +('Z45.2', 'Adjustment and management of vascular access device', 'ICD10_2010'), +('Z45.3', 'Adjustment and management of implanted hearing device', 'ICD10_2010'), +('Z45.8', 'Adjustment and management of other implanted devices', 'ICD10_2010'), +('Z45.9', 'Adjustment and management of unspecified implanted device', 'ICD10_2010'), +('Z46', 'Fitting and adjustment of other devices', 'ICD10_2010'), +('Z46.0', 'Fitting and adjustment of spectacles and contact lenses', 'ICD10_2010'), +('Z46.1', 'Fitting and adjustment of hearing aid', 'ICD10_2010'), +('Z46.2', 'Fitting and adjustment of other devicess related to nervous system and special senses', 'ICD10_2010'), +('Z46.3', 'Fitting and adjustment of dental prosthetic device', 'ICD10_2010'), +('Z46.4', 'Fitting and adjustment of orthodontic device', 'ICD10_2010'), +('Z46.5', 'Fitting and adjustment of ileostomy and oth intestinal appliances', 'ICD10_2010'), +('Z46.6', 'Fitting and adjustment of urinary device', 'ICD10_2010'), +('Z46.7', 'Fitting and adjustment of orthopaedic device', 'ICD10_2010'), +('Z46.8', 'Fitting and adjustment of other specified devices', 'ICD10_2010'), +('Z46.9', 'Fitting and adjustment of unspecified device', 'ICD10_2010'), +('Z47', 'Other orthopaedic follow-up care', 'ICD10_2010'), +('Z47.0', 'Follow-up care involving removal of fracture plate and other internal fixation device', 'ICD10_2010'), +('Z47.8', 'Other specified orthopaedic follow-up care', 'ICD10_2010'), +('Z47.9', 'Orthopaedic follow-up care, unspecified', 'ICD10_2010'), +('Z48', 'Other surgical follow-up care', 'ICD10_2010'), +('Z48.0', 'Attention to surgical dressings and sutures', 'ICD10_2010'), +('Z48.8', 'Other specified surgical follow-up care', 'ICD10_2010'), +('Z48.9', 'Surgical follow-up care, unspecified', 'ICD10_2010'), +('Z49', 'Care involving dialysis', 'ICD10_2010'), +('Z49.0', 'Preparatory care for dialysis', 'ICD10_2010'), +('Z49.1', 'Extracorporeal dialysis', 'ICD10_2010'), +('Z49.2', 'Other dialysis', 'ICD10_2010'), +('Z50', 'Care involving use of rehabilitation procedures', 'ICD10_2010'), +('Z50.0', 'Cardiac rehabilitation', 'ICD10_2010'), +('Z50.1', 'Other physical therapy', 'ICD10_2010'), +('Z50.2', 'Alcohol rehabilitation', 'ICD10_2010'), +('Z50.3', 'Drug rehabilitation', 'ICD10_2010'), +('Z50.4', 'Psychotherapy, nec', 'ICD10_2010'), +('Z50.5', 'Speech therapy', 'ICD10_2010'), +('Z50.6', 'Orthoptic training', 'ICD10_2010'), +('Z50.7', 'Occupational therapy and vocational rehabilitation nec', 'ICD10_2010'), +('Z50.8', 'Care involving use of other rehabilitation procedures', 'ICD10_2010'), +('Z50.9', 'Care involving use of rehabilitation procedure, unspecified', 'ICD10_2010'), +('Z51', 'Other medical care', 'ICD10_2010'), +('Z51.0', 'Radiotherapy session', 'ICD10_2010'), +('Z51.1', 'Chemotherapy session for neoplasm', 'ICD10_2010'), +('Z51.2', 'Other chemotherapy', 'ICD10_2010'), +('Z51.3', 'Blood transfusion without reported diagnosis', 'ICD10_2010'), +('Z51.4', 'Preparatory care for subsequent treatment nec', 'ICD10_2010'), +('Z51.5', 'Palliative care', 'ICD10_2010'), +('Z51.6', 'Desensitization to allergens', 'ICD10_2010'), +('Z51.8', 'Other specified medical care', 'ICD10_2010'), +('Z51.9', 'Medical care, unspecified', 'ICD10_2010'), +('Z52', 'Donors of organs and tissues', 'ICD10_2010'), +('Z52.0', 'Blood donor', 'ICD10_2010'), +('Z52.1', 'Skin donor', 'ICD10_2010'), +('Z52.2', 'Bone donor', 'ICD10_2010'), +('Z52.3', 'Bone marrow donor', 'ICD10_2010'), +('Z52.4', 'Kidney donor', 'ICD10_2010'), +('Z52.5', 'Cornea donor', 'ICD10_2010'), +('Z52.6', 'Liver donor', 'ICD10_2010'), +('Z52.7', 'Heart donor', 'ICD10_2010'), +('Z52.8', 'Donor of other organs and tissues', 'ICD10_2010'), +('Z52.9', 'Donor of unspecified organ or tissue', 'ICD10_2010'), +('Z53', 'Persons encountering health services for specific procedures, not carried out', 'ICD10_2010'), +('Z53.0', 'Procedure not carried out because of contraindication', 'ICD10_2010'), +('Z53.1', 'Procedure not carried out bacause patient\'s decision reasons belief and group pressure', 'ICD10_2010'), +('Z53.2', 'Procedure not carried out because patient\'s decision for other unspecified reasons', 'ICD10_2010'), +('Z53.8', 'Procedure not carried out for other reasons', 'ICD10_2010'), +('Z53.9', 'Procedure not carried out, unspecified reason', 'ICD10_2010'), +('Z54', 'Convalescence', 'ICD10_2010'), +('Z54.0', 'Convalescence following surgery', 'ICD10_2010'), +('Z54.1', 'Convalescence following radiotherapy', 'ICD10_2010'), +('Z54.2', 'Convalescence following chemotherapy', 'ICD10_2010'), +('Z54.3', 'Convalescence following psychotherapy', 'ICD10_2010'), +('Z54.4', 'Convalescence following treatment of fracture', 'ICD10_2010'), +('Z54.7', 'Convalescence following combined treatment', 'ICD10_2010'), +('Z54.8', 'Convalescence following other treatment', 'ICD10_2010'), +('Z54.9', 'Convalescence following unspecified treatment', 'ICD10_2010'), +('Z55', 'Problems related to education and literacy', 'ICD10_2010'), +('Z55.0', 'Illiteracy and low-level literacy', 'ICD10_2010'), +('Z55.1', 'Schooling unavailable and unattainable', 'ICD10_2010'), +('Z55.2', 'Failed examinations', 'ICD10_2010'), +('Z55.3', 'Underachievement in school', 'ICD10_2010'), +('Z55.4', 'Education maladjustment and discord with teachers and classmates', 'ICD10_2010'), +('Z55.8', 'Other problems related to education and literacy', 'ICD10_2010'), +('Z55.9', 'Problem related to education and literacy, unspecified', 'ICD10_2010'), +('Z56', 'Problems related to employment and unemployment', 'ICD10_2010'), +('Z56.0', 'Unemployment, unspecified', 'ICD10_2010'), +('Z56.1', 'Change of job', 'ICD10_2010'), +('Z56.2', 'Threat of job loss', 'ICD10_2010'), +('Z56.3', 'Stressful work schedule', 'ICD10_2010'), +('Z56.4', 'Discord with boss and workmates', 'ICD10_2010'), +('Z56.5', 'Uncongenial work', 'ICD10_2010'), +('Z56.6', 'Other physical and mental strain related to work', 'ICD10_2010'), +('Z56.7', 'Other and unspecified problems related to employment', 'ICD10_2010'), +('Z57', 'Occupational exposure to risk-factors', 'ICD10_2010'), +('Z57.0', 'Occupational exposure to noise', 'ICD10_2010'), +('Z57.1', 'Occupational exposure to radiation', 'ICD10_2010'), +('Z57.2', 'Occupational exposure to dust', 'ICD10_2010'), +('Z57.3', 'Occupational exposure to other air contaminants', 'ICD10_2010'), +('Z57.4', 'Occupational exposure to toxic agents in agriculture', 'ICD10_2010'), +('Z57.5', 'Occupational exposure to toxic agents in other industries', 'ICD10_2010'), +('Z57.6', 'Occupational exposure to extreme temperature', 'ICD10_2010'), +('Z57.7', 'Occupational exposure to vibration', 'ICD10_2010'), +('Z57.8', 'Occupational exposure to other risk-factors', 'ICD10_2010'), +('Z57.9', 'Occupational exposure to unspecified risk-factor', 'ICD10_2010'), +('Z58', 'Problems related to physical environment', 'ICD10_2010'), +('Z58.0', 'Exposure to noise', 'ICD10_2010'), +('Z58.1', 'Exposure to air pollution', 'ICD10_2010'), +('Z58.2', 'Exposure to water pollution', 'ICD10_2010'), +('Z58.3', 'Exposure to soil pollution', 'ICD10_2010'), +('Z58.4', 'Exposure to radiation', 'ICD10_2010'), +('Z58.5', 'Exposure to other pollution', 'ICD10_2010'), +('Z58.6', 'Inadequate drinking-water supply', 'ICD10_2010'), +('Z58.7', 'Exposure to tobacco smoke', 'ICD10_2010'), +('Z58.8', 'Other problems related to physical environment', 'ICD10_2010'), +('Z58.9', 'Problem related to physical environment, unspecified', 'ICD10_2010'), +('Z59', 'Problems related to housing and economic circumstances', 'ICD10_2010'), +('Z59.0', 'Homelessness', 'ICD10_2010'), +('Z59.1', 'Inadequate housing', 'ICD10_2010'), +('Z59.2', 'Discord with neighbours, lodgers and landlord', 'ICD10_2010'), +('Z59.3', 'Problems related to living in residential institution', 'ICD10_2010'), +('Z59.4', 'Lack of adequate food', 'ICD10_2010'), +('Z59.5', 'Extreme poverty', 'ICD10_2010'), +('Z59.6', 'Low income', 'ICD10_2010'), +('Z59.7', 'Insufficient social insurance and welfare support', 'ICD10_2010'), +('Z59.8', 'Other problems related to housing and economic circumstances', 'ICD10_2010'), +('Z59.9', 'Problem related to housing and economic circumstances, unspecified', 'ICD10_2010'), +('Z60', 'Problems related to social environment', 'ICD10_2010'), +('Z60.0', 'Problems of adjustment to life-cycle transitions', 'ICD10_2010'), +('Z60.1', 'Atypical parenting situation', 'ICD10_2010'), +('Z60.2', 'Living alone', 'ICD10_2010'), +('Z60.3', 'Acculturation difficulty', 'ICD10_2010'), +('Z60.4', 'Social exclusion and rejection', 'ICD10_2010'), +('Z60.5', 'Target of perceived adverse discrimination and persecution', 'ICD10_2010'), +('Z60.8', 'Other problems related to social environment', 'ICD10_2010'), +('Z60.9', 'Problem related to social environment, unspecified', 'ICD10_2010'), +('Z61', 'Problems related to negative life events in childhood', 'ICD10_2010'), +('Z61.0', 'Loss of love relationship in childhood', 'ICD10_2010'), +('Z61.1', 'Removal from home in childhood', 'ICD10_2010'), +('Z61.2', 'Altered pattern of family relationships in childhood', 'ICD10_2010'), +('Z61.3', 'Events resulting in loss of self-esteem in childhood', 'ICD10_2010'), +('Z61.4', 'Problems related to alleged sexual abuse of child by person within primary support group', 'ICD10_2010'), +('Z61.5', 'Problems related to alleged sexual abuse of child by person out primary support group', 'ICD10_2010'), +('Z61.6', 'Problems related to alleged physical abuse of child', 'ICD10_2010'), +('Z61.7', 'Personal frightening experience in childhood', 'ICD10_2010'), +('Z61.8', 'Other negative life events in childhood', 'ICD10_2010'), +('Z61.9', 'Negative life event in childhood, unspecified', 'ICD10_2010'), +('Z62', 'Other problems related to upbringing', 'ICD10_2010'), +('Z62.0', 'Inadequate parental supervision and control', 'ICD10_2010'), +('Z62.1', 'Parental overprotection', 'ICD10_2010'), +('Z62.2', 'Institutional upbringing', 'ICD10_2010'), +('Z62.3', 'Hostility towards and scapegoating of child', 'ICD10_2010'), +('Z62.4', 'Emotional neglect of child', 'ICD10_2010'), +('Z62.5', 'Other problems related to neglect in upbringing', 'ICD10_2010'), +('Z62.6', 'Inappropriate parental pressure and other abnormal qualities of upbringing', 'ICD10_2010'), +('Z62.8', 'Other specified problems related to upbringing', 'ICD10_2010'), +('Z62.9', 'Problem related to upbringing, unspecified', 'ICD10_2010'), +('Z63', 'Other problems related to primary support group, including family circumstances', 'ICD10_2010'), +('Z63.0', 'Problems in relationship with spouse or partner', 'ICD10_2010'), +('Z63.1', 'Problems in relationship with parents and in-laws', 'ICD10_2010'), +('Z63.2', 'Inadequate family support', 'ICD10_2010'), +('Z63.3', 'Absence of family member', 'ICD10_2010'), +('Z63.4', 'Disappearance and death of family member', 'ICD10_2010'), +('Z63.5', 'Disruption of family by separation and divorce', 'ICD10_2010'), +('Z63.6', 'Dependent relative needing care at home', 'ICD10_2010'), +('Z63.7', 'Other stressful life events affecting family and household', 'ICD10_2010'), +('Z63.8', 'Other specified problems related to primary support group', 'ICD10_2010'), +('Z63.9', 'Problem related to primary support group, unspecified', 'ICD10_2010'), +('Z64', 'Problems related to certain psychosocial circumstances', 'ICD10_2010'), +('Z64.0', 'Problems related to unwanted pregnancy', 'ICD10_2010'), +('Z64.1', 'Problems related to multiparity', 'ICD10_2010'), +('Z64.2', 'Seeking and accepting physical, nutritional and chemical intervention known to be hazardous harmful', 'ICD10_2010'), +('Z64.3', 'Seeking and accepting behavioural and psychological intervention known hazard and harmful', 'ICD10_2010'), +('Z64.4', 'Discord with counsellors', 'ICD10_2010'), +('Z65', 'Problems related to other psychosocial circumstances', 'ICD10_2010'), +('Z65.0', 'Conviction in civil and criminal proceedings without imprisonment', 'ICD10_2010'), +('Z65.1', 'Imprisonment and other incarceration', 'ICD10_2010'), +('Z65.2', 'Problems related to release from prison', 'ICD10_2010'), +('Z65.3', 'Problems related to other legal circumstances', 'ICD10_2010'), +('Z65.4', 'Victim of crime and terrorism', 'ICD10_2010'), +('Z65.5', 'Exposure to disaster, war and other hostilities', 'ICD10_2010'), +('Z65.8', 'Other specif problems related to psychosocial circumstances', 'ICD10_2010'), +('Z65.9', 'Problem related to unspecified psychosocial circumstances', 'ICD10_2010'), +('Z70', 'Counselling related to sexual attitude, behaviour and orientation', 'ICD10_2010'), +('Z70.0', 'Counselling related to sexual attitude', 'ICD10_2010'), +('Z70.1', 'Counselling related to patient\'s sexual behavior and orientation', 'ICD10_2010'), +('Z70.2', 'Counselling related to patient\'s sexual behavior and orientation of third party', 'ICD10_2010'), +('Z70.3', 'Counselling related to combined concerns regarding sexual attitude, behaviour and orientation', 'ICD10_2010'), +('Z70.8', 'Other sex counselling', 'ICD10_2010'), +('Z70.9', 'Sex counselling, unspecified', 'ICD10_2010'), +('Z71', 'Persons encountering health services for other counselling and medical advice, not elsewhere classified', 'ICD10_2010'), +('Z71.0', 'Person consulting on behalf of another person', 'ICD10_2010'), +('Z71.1', 'Person with feared complaint in whom no diagnosis is made', 'ICD10_2010'), +('Z71.2', 'Person consulting for explanation of investigation findings', 'ICD10_2010'), +('Z71.3', 'Dietary counselling and surveillance', 'ICD10_2010'), +('Z71.4', 'Alcohol abuse counselling and surveillance', 'ICD10_2010'), +('Z71.5', 'Drug abuse counselling and surveillance', 'ICD10_2010'), +('Z71.6', 'Tobacco abuse counselling', 'ICD10_2010'), +('Z71.7', 'Human immunodeficiency virus [HIV] counselling', 'ICD10_2010'), +('Z71.8', 'Other specified counselling', 'ICD10_2010'), +('Z71.9', 'Counselling, unspecified', 'ICD10_2010'), +('Z72', 'Problems related to lifestyle', 'ICD10_2010'), +('Z72.0', 'Tobacco use', 'ICD10_2010'), +('Z72.1', 'Alcohol use', 'ICD10_2010'), +('Z72.2', 'Drug use', 'ICD10_2010'), +('Z72.3', 'Lack of physical exercise', 'ICD10_2010'), +('Z72.4', 'Inappropriate diet and eating habits', 'ICD10_2010'), +('Z72.5', 'High-risk sexual behaviour', 'ICD10_2010'), +('Z72.6', 'Gambling and betting', 'ICD10_2010'), +('Z72.8', 'Other problems related to lifestyle', 'ICD10_2010'), +('Z72.9', 'Problem related to lifestyle, unspecified', 'ICD10_2010'), +('Z73', 'Problems related to life-management difficulty', 'ICD10_2010'), +('Z73.0', 'Burn-out', 'ICD10_2010'), +('Z73.1', 'Accentuation of personality traits', 'ICD10_2010'), +('Z73.2', 'Lack of relaxation and leisure act', 'ICD10_2010'), +('Z73.3', 'Stress, nec', 'ICD10_2010'), +('Z73.4', 'Inadequate social skills, nec', 'ICD10_2010'), +('Z73.5', 'Social role conflict, nec', 'ICD10_2010'), +('Z73.6', 'Limitation of activities due to disability', 'ICD10_2010'), +('Z73.8', 'Other problems related to life-management difficulty', 'ICD10_2010'), +('Z73.9', 'Problem related to life-management difficulty, unspecified', 'ICD10_2010'), +('Z74', 'Problems related to care-provider dependency', 'ICD10_2010'), +('Z74.0', 'Reduced mobility', 'ICD10_2010'), +('Z74.1', 'Need for assistance with personal care', 'ICD10_2010'), +('Z74.2', 'Need for assistance at home and no other household member able render care', 'ICD10_2010'), +('Z74.3', 'Need for continuous supervision', 'ICD10_2010'), +('Z74.8', 'Other problems related to care-provider dependency', 'ICD10_2010'), +('Z74.9', 'Problem related to care-provider dependency, unspecified', 'ICD10_2010'), +('Z75', 'Problems related to medical facilities and other health care', 'ICD10_2010'), +('Z75.0', 'Medical services not available in home', 'ICD10_2010'), +('Z75.1', 'Person awaiting admission to adequate facility elsewhere', 'ICD10_2010'), +('Z75.2', 'Other waiting period for investigation and treatment', 'ICD10_2010'), +('Z75.3', 'Unavailability and inaccessibility of health-care facilities', 'ICD10_2010'), +('Z75.4', 'Unavailability and inaccessibility of other helping agencies', 'ICD10_2010'), +('Z75.5', 'Holiday relief care', 'ICD10_2010'), +('Z75.8', 'Other problems related to medical facilities and other health care', 'ICD10_2010'), +('Z75.9', 'Unspecified problem related to medical facilities and other health care', 'ICD10_2010'), +('Z76', 'Persons encountering health services in other circumstances', 'ICD10_2010'), +('Z76.0', 'Issue of repeat prescription', 'ICD10_2010'), +('Z76.1', 'Health supervision and care of foundling', 'ICD10_2010'), +('Z76.2', 'Health supervision and care of other healthy infant and child', 'ICD10_2010'), +('Z76.3', 'Healthy person accompanying sick person', 'ICD10_2010'), +('Z76.4', 'Other boarder in health-care facility', 'ICD10_2010'), +('Z76.5', 'Malingerer [conscious simulation]', 'ICD10_2010'), +('Z76.8', 'Persons encountering health services in other specified circumstances', 'ICD10_2010'), +('Z76.9', 'Person encountering health services in unspecified circumstances', 'ICD10_2010'), +('Z80', 'Family history of malignant neoplasm', 'ICD10_2010'), +('Z80.0', 'Family history of malignant neoplasm of digestive organs', 'ICD10_2010'), +('Z80.1', 'Family history of malignant neoplasm of trachea, bronchus and lung', 'ICD10_2010'), +('Z80.2', 'Family history of malignant neoplasm of other respiratory and intrathoracic orgs', 'ICD10_2010'), +('Z80.3', 'Family history of malignant neoplasm of breast', 'ICD10_2010'), +('Z80.4', 'Family history of malignant neoplasm of genital organs', 'ICD10_2010'), +('Z80.5', 'Family history of malignant neoplasm of urinary tract', 'ICD10_2010'), +('Z80.6', 'Family history of leukaemia', 'ICD10_2010'), +('Z80.7', 'Famly history of other malignant neoplasms of lymphoid, heematopoietic and and related tissues', 'ICD10_2010'), +('Z80.8', 'Family history of malignant neoplasm of other organs or systems', 'ICD10_2010'), +('Z80.9', 'Family history of malignant neoplasm, unspecified', 'ICD10_2010'), +('Z81', 'Family history of mental and behavioural disorders', 'ICD10_2010'), +('Z81.0', 'Family history of mental retardation', 'ICD10_2010'), +('Z81.1', 'Family history of alcohol abuse', 'ICD10_2010'), +('Z81.2', 'Family history of tobacco abuse', 'ICD10_2010'), +('Z81.3', 'Family history of other psychoactive substance abuse', 'ICD10_2010'), +('Z81.4', 'Family history of other substance abuse', 'ICD10_2010'), +('Z81.8', 'Family history of other mental and behavioural disorders', 'ICD10_2010'), +('Z82', 'Family history of certain disabilities and chronic diseases leading to disablement', 'ICD10_2010'), +('Z82.0', 'Family history of epilepsy and other dis of the nervous sys', 'ICD10_2010'), +('Z82.1', 'Family history of blindness and visual loss', 'ICD10_2010'), +('Z82.2', 'Family history of deafness and hearing loss', 'ICD10_2010'), +('Z82.3', 'Family history of stroke', 'ICD10_2010'), +('Z82.4', 'Family history ischaemic heart disease and other disease of the circulatory system', 'ICD10_2010'), +('Z82.5', 'Family history of asthma and other chronic lower respiratory disease', 'ICD10_2010'), +('Z82.6', 'Family history of arthritis and other disease musculoskeletal system and connective tissue', 'ICD10_2010'), +('Z82.7', 'Family history of congenital malformations, deformation and chromosomal abnorms', 'ICD10_2010'), +('Z82.8', 'Family history of other disabilities and chronic disease leading disablement nec', 'ICD10_2010'), +('Z83', 'Family history of other specific disorders', 'ICD10_2010'), +('Z83.0', 'Family history of human immunodeficiency virus [HIV] disease', 'ICD10_2010'), +('Z83.1', 'Family history of other infectious and parasitic diseases', 'ICD10_2010'), +('Z83.2', 'Family history of disease of the blood and blood forming organs and certain disorder involving immune mechanism', 'ICD10_2010'), +('Z83.3', 'Family history of diabetes mellitus', 'ICD10_2010'), +('Z83.4', 'Fam hist of other endocrine, nutritional and metabolic diseases', 'ICD10_2010'), +('Z83.5', 'Family history of eye and ear disorders', 'ICD10_2010'), +('Z83.6', 'Family history of diseases of the respiratory system', 'ICD10_2010'), +('Z83.7', 'Family history of diseases of the digestive system', 'ICD10_2010'), +('Z84', 'Family history of other conditions', 'ICD10_2010'), +('Z84.0', 'Family history of diseases of the skin and subcutaneous tissue', 'ICD10_2010'), +('Z84.1', 'Family history of disorders of kidney and ureter', 'ICD10_2010'), +('Z84.2', 'Family history of other diseases of the genitourinary system', 'ICD10_2010'), +('Z84.3', 'Family history of consanguinity', 'ICD10_2010'), +('Z84.8', 'Family history of other specified conditions', 'ICD10_2010'), +('Z85', 'Personal history of malignant neoplasm', 'ICD10_2010'), +('Z85.0', 'Personal history of malignant neoplasm of digestive organs', 'ICD10_2010'), +('Z85.1', 'Personal history of malignant neoplasm of trachea, bronchus and lung', 'ICD10_2010'), +('Z85.2', 'Personal history malignant neoplasm of other respiratory and intrathoracic organs', 'ICD10_2010'), +('Z85.3', 'Personal history of malignant neoplasm of breast', 'ICD10_2010'), +('Z85.4', 'Personal history of malignant neoplasm of genital organs', 'ICD10_2010'), +('Z85.5', 'Personal history of malignant neoplasm of urinary tract', 'ICD10_2010'), +('Z85.6', 'Personal history of leukaemia', 'ICD10_2010'), +('Z85.7', 'Personal history of other malignant neoplasms of lymphoid haematopoietic and related tissue', 'ICD10_2010'), +('Z85.8', 'Personal history of malignant neoplasms of other organs and system', 'ICD10_2010'), +('Z85.9', 'Personal history of malignant neoplasm, unspecified', 'ICD10_2010'), +('Z86', 'Personal history of certain other diseases', 'ICD10_2010'), +('Z86.0', 'Personal history of other neoplasms', 'ICD10_2010'), +('Z86.1', 'Personal history of infectious and parasitic diseases', 'ICD10_2010'), +('Z86.2', 'Personal history of disease of the blood and blood-forming organs and certain disorders involving the immune mechanism', 'ICD10_2010'), +('Z86.3', 'Personal history of endocrine, nutritional and metabolic diseases', 'ICD10_2010'), +('Z86.4', 'Personal history of psychoactive substance abuse', 'ICD10_2010'), +('Z86.5', 'Personal history of other mental and behavioural disorders', 'ICD10_2010'), +('Z86.6', 'Personal history of disease of the nervous system and sense organs', 'ICD10_2010'), +('Z86.7', 'Personal history of diseases of the circulatory system', 'ICD10_2010'), +('Z87', 'Personal history of other diseases and conditions', 'ICD10_2010'), +('Z87.0', 'Personal history of diseases of the respiratory system', 'ICD10_2010'), +('Z87.1', 'Personal history of diseases of the digestive system', 'ICD10_2010'), +('Z87.2', 'Personal history of disease of the skin and subcutaneous tissue', 'ICD10_2010'), +('Z87.3', 'Personal history of disease of the musculoskeletal system and connective tissue', 'ICD10_2010'), +('Z87.4', 'Personal history of diseases of the genitourinary system', 'ICD10_2010'), +('Z87.5', 'Personal history complications of pregnancy, childbirth and the puerperium', 'ICD10_2010'), +('Z87.6', 'Personal history of certain conditions arising in perinatal period', 'ICD10_2010'), +('Z87.7', 'Personal history of congenital malformations, deformations and chromosomal abnomalities', 'ICD10_2010'); +INSERT INTO `icd10` (`ID_ICD10`, `Diagnosa`, `Versi_ICD10`) VALUES +('Z87.8', 'Personal history of other specified conditions', 'ICD10_2010'), +('Z88', 'Personal history of allergy to drugs, medicaments and biological substances', 'ICD10_2010'), +('Z88.0', 'Personal history of allergy to penicillin', 'ICD10_2010'), +('Z88.1', 'Personal history of allergy to other antibiotic agents', 'ICD10_2010'), +('Z88.2', 'Personal history of allergy to sulfonamides', 'ICD10_2010'), +('Z88.3', 'Personal history of allergy to other anti-infective agents', 'ICD10_2010'), +('Z88.4', 'Personal history of allergy to anaesthetic agent', 'ICD10_2010'), +('Z88.5', 'Personal history of allergy to narcotic agent', 'ICD10_2010'), +('Z88.6', 'Personal history of allergy to analgesic agent', 'ICD10_2010'), +('Z88.7', 'Personal history of allergy to serum and vaccine', 'ICD10_2010'), +('Z88.8', 'Personal history of allergy to other drugs, medicaments and biological substances', 'ICD10_2010'), +('Z88.9', 'Personal history of allergy to unspecified drugs, medicaments and biological substances', 'ICD10_2010'), +('Z89', 'Acquired absence of limb', 'ICD10_2010'), +('Z89.0', 'Acquired absence of finger(s) [including thumb], unilateral', 'ICD10_2010'), +('Z89.1', 'Acquired absence of hand and wrist', 'ICD10_2010'), +('Z89.2', 'Acquired absence of upper limb above wrist', 'ICD10_2010'), +('Z89.3', 'Acquired absence of both upper limbs [any level]', 'ICD10_2010'), +('Z89.4', 'Acquired absence of foot and ankle', 'ICD10_2010'), +('Z89.5', 'Acquired absence of leg at or below knee', 'ICD10_2010'), +('Z89.6', 'Acquired absence of leg above knee', 'ICD10_2010'), +('Z89.7', 'Acquired absence of both lower limbs [any level, except toes alone]', 'ICD10_2010'), +('Z89.8', 'Acquired absence of upper and lower limbs [any level]', 'ICD10_2010'), +('Z89.9', 'Acquired absence of limb, unspecified', 'ICD10_2010'), +('Z90', 'Acquired absence of organs, not elsewhere classified', 'ICD10_2010'), +('Z90.0', 'Acquired absence of part of head and neck', 'ICD10_2010'), +('Z90.1', 'Acquired absence of breast(s)', 'ICD10_2010'), +('Z90.2', 'Acquired absence of lung [part of]', 'ICD10_2010'), +('Z90.3', 'Acquired absence of part of stomach', 'ICD10_2010'), +('Z90.4', 'Acquired absence of other parts of digestive tract', 'ICD10_2010'), +('Z90.5', 'Acquired absence of kidney', 'ICD10_2010'), +('Z90.6', 'Acquired absence of other organs of urinary tract', 'ICD10_2010'), +('Z90.7', 'Acquired absence of genital organ(s)', 'ICD10_2010'), +('Z90.8', 'Acquired absence of other organs', 'ICD10_2010'), +('Z91', 'Personal history of risk-factors, not elsewhere classified', 'ICD10_2010'), +('Z91.0', 'Personal hist of allergy oth than to drugs and biol subs', 'ICD10_2010'), +('Z91.1', 'Personal hist noncompliance with med treatment and regimen', 'ICD10_2010'), +('Z91.2', 'Personal history of poor personal hygiene', 'ICD10_2010'), +('Z91.3', 'Personal history of unhealthy sleep-wake schedule', 'ICD10_2010'), +('Z91.4', 'Personal history of psychological trauma nec', 'ICD10_2010'), +('Z91.5', 'Personal history of self-harm', 'ICD10_2010'), +('Z91.6', 'Personal history of other physical trauma', 'ICD10_2010'), +('Z91.8', 'Personal history of other specified risk-factors nec', 'ICD10_2010'), +('Z92', 'Personal history of medical treatment', 'ICD10_2010'), +('Z92.0', 'Personal history of contraception', 'ICD10_2010'), +('Z92.1', 'Personal history long -term (current) use of anticoagulants', 'ICD10_2010'), +('Z92.2', 'Personal history of long-term use of other medicaments', 'ICD10_2010'), +('Z92.3', 'Personal history of irradiation', 'ICD10_2010'), +('Z92.4', 'Personal history of major surgery, nec', 'ICD10_2010'), +('Z92.5', 'Personal history of rehabilitation measures', 'ICD10_2010'), +('Z92.6', 'Personal history of chemotheraphy for neoplastic disease', 'ICD10_2010'), +('Z92.8', 'Personal history of other medical treatment', 'ICD10_2010'), +('Z92.9', 'Personal history of medical treatment, unspecified', 'ICD10_2010'), +('Z93', 'Artificial opening status', 'ICD10_2010'), +('Z93.0', 'Tracheostomy status', 'ICD10_2010'), +('Z93.1', 'Gastrostomy status', 'ICD10_2010'), +('Z93.2', 'Ileostomy status', 'ICD10_2010'), +('Z93.3', 'Colostomy status', 'ICD10_2010'), +('Z93.4', 'Other artificial openings of gastrointestinal tract status', 'ICD10_2010'), +('Z93.5', 'Cystostomy status', 'ICD10_2010'), +('Z93.6', 'Other artificial openings of urinary tract status', 'ICD10_2010'), +('Z93.8', 'Other artificial opening status', 'ICD10_2010'), +('Z93.9', 'Artificial opening status, unspecified', 'ICD10_2010'), +('Z94', 'Transplanted organ and tissue status', 'ICD10_2010'), +('Z94.0', 'Kidney transplant status', 'ICD10_2010'), +('Z94.1', 'Heart transplant status', 'ICD10_2010'), +('Z94.2', 'Lung transplant status', 'ICD10_2010'), +('Z94.3', 'Heart and lungs transplant status', 'ICD10_2010'), +('Z94.4', 'Liver transplant status', 'ICD10_2010'), +('Z94.5', 'Skin transplant status', 'ICD10_2010'), +('Z94.6', 'Bone transplant status', 'ICD10_2010'), +('Z94.7', 'Corneal transplant status', 'ICD10_2010'), +('Z94.8', 'Other transplanted organ and tissue status', 'ICD10_2010'), +('Z94.9', 'Transplanted organ and tissue status, unspecified', 'ICD10_2010'), +('Z95', 'Presence of cardiac and vascular implants and grafts', 'ICD10_2010'), +('Z95.0', 'Presence of cardiac pacemaker', 'ICD10_2010'), +('Z95.1', 'Presence of aortocoronary bypass graft', 'ICD10_2010'), +('Z95.2', 'Presence of prosthetic heart valve', 'ICD10_2010'), +('Z95.3', 'Presence of xenogenic heart valve', 'ICD10_2010'), +('Z95.4', 'Presence of other heart-valve replacement', 'ICD10_2010'), +('Z95.5', 'Presence of coronary angioplasty implant and graft', 'ICD10_2010'), +('Z95.8', 'Presence of other cardiac and vascular implants and grafts', 'ICD10_2010'), +('Z95.9', 'Presence of cardiac and vascular implant and graft unspec act', 'ICD10_2010'), +('Z96', 'Presence of other functional implants', 'ICD10_2010'), +('Z96.0', 'Presence of urogenital implants', 'ICD10_2010'), +('Z96.1', 'Presence of intraocular lens', 'ICD10_2010'), +('Z96.2', 'Presence of otological and audiological implants', 'ICD10_2010'), +('Z96.3', 'Presence of artificial larynx', 'ICD10_2010'), +('Z96.4', 'Presence of endocrine implants', 'ICD10_2010'), +('Z96.5', 'Presence of tooth-root and mandibular implants', 'ICD10_2010'), +('Z96.6', 'Presence of orthopaedic joint implants', 'ICD10_2010'), +('Z96.7', 'Presence of other bone and tendon implants', 'ICD10_2010'), +('Z96.8', 'Presence of other specified functional implants', 'ICD10_2010'), +('Z96.9', 'Presence of functional implant, unspecified', 'ICD10_2010'), +('Z97', 'Presence of other devices', 'ICD10_2010'), +('Z97.0', 'Presence of artificial eye', 'ICD10_2010'), +('Z97.1', 'Presence of artificial limb (complete)(partial)', 'ICD10_2010'), +('Z97.2', 'Presence of dental prosthetic device (complete)(partial)', 'ICD10_2010'), +('Z97.3', 'Presence of spectacles and contact lenses', 'ICD10_2010'), +('Z97.4', 'Presence of external hearing-aid', 'ICD10_2010'), +('Z97.5', 'Presence of (intrauterine) contraceptive device', 'ICD10_2010'), +('Z97.8', 'Presence of other specified devices', 'ICD10_2010'), +('Z98', 'Other postsurgical states', 'ICD10_2010'), +('Z98.0', 'Intestinal bypass and anastomosis status', 'ICD10_2010'), +('Z98.1', 'Arthrodesis status', 'ICD10_2010'), +('Z98.2', 'Presence of cerebrospinal fluid drainage device', 'ICD10_2010'), +('Z98.8', 'Other specified postsurgical states', 'ICD10_2010'), +('Z99', 'Dependence on enabling machines and devices, not elsewhere classified', 'ICD10_2010'), +('Z99.0', 'Dependence on aspirator', 'ICD10_2010'), +('Z99.1', 'Dependence on respirator', 'ICD10_2010'), +('Z99.2', 'Dependence on renal dialysis', 'ICD10_2010'), +('Z99.3', 'Dependence on wheelchair', 'ICD10_2010'), +('Z99.8', 'Dependence on other enabling machines and devices', 'ICD10_2010'), +('Z99.9', 'Dependence on unspecified enabling machine and device', 'ICD10_2010'); + +-- -------------------------------------------------------- + +-- +-- Struktur dari tabel `ina_cbg_rawatinap` +-- + +CREATE TABLE `ina_cbg_rawatinap` ( + `ID_INACBG_RI` varchar(20) NOT NULL, + `Tindakan_RI` varchar(150) DEFAULT NULL, + `Tarif_Kelas_1` decimal(15,2) DEFAULT NULL, + `Tarif_Kelas_2` decimal(15,2) DEFAULT NULL, + `Tarif_Kelas_3` decimal(15,2) DEFAULT NULL +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; + +-- +-- Dumping data untuk tabel `ina_cbg_rawatinap` +-- + +INSERT INTO `ina_cbg_rawatinap` (`ID_INACBG_RI`, `Tindakan_RI`, `Tarif_Kelas_1`, `Tarif_Kelas_2`, `Tarif_Kelas_3`) VALUES +('A-4-10-I', 'SEPTIKEMIA (RINGAN)', 3702300.00, 4313200.00, 4924100.00), +('A-4-10-II', 'SEPTIKEMIA (SEDANG)', 6323900.00, 7367300.00, 8410800.00), +('A-4-10-III', 'SEPTIKEMIA (BERAT)', 8526600.00, 9933500.00, 11340400.00), +('A-4-11-I', 'INFEKSI SESUDAH OPERASI & TRAUMA (RINGAN)', 4917700.00, 5729100.00, 6540500.00), +('A-4-11-II', 'INFEKSI SESUDAH OPERASI & TRAUMA (SEDANG)', 6465700.00, 7532500.00, 8599300.00), +('A-4-11-III', 'INFEKSI SESUDAH OPERASI & TRAUMA (BERAT)', 8841500.00, 10300300.00, 11759200.00), +('A-4-12-I', 'DEMAM YANG TIDAK DITENTUKAN (RINGAN)', 2927100.00, 3410100.00, 3893100.00), +('A-4-12-II', 'DEMAM YANG TIDAK DITENTUKAN (SEDANG)', 5052600.00, 5886300.00, 6720000.00), +('A-4-12-III', 'DEMAM YANG TIDAK DITENTUKAN (BERAT)', 7279900.00, 8481100.00, 9682300.00), +('A-4-13-I', 'INFEKSI VIRAL & NON-BAKTERIAL LAIN (RINGAN)', 2178600.00, 2538100.00, 2897600.00), +('A-4-13-II', 'INFEKSI VIRAL & NON-BAKTERIAL LAIN (SEDANG)', 3850100.00, 4485400.00, 5120700.00), +('A-4-13-III', 'INFEKSI VIRAL & NON-BAKTERIAL LAIN (BERAT)', 4620100.00, 5382400.00, 6144800.00), +('A-4-14-I', 'PENYAKIT INFEKSI BAKTERI DAN PARASIT LAIN-LAIN (RINGAN)', 2449100.00, 2853200.00, 3257300.00), +('A-4-14-II', 'PENYAKIT INFEKSI BAKTERI DAN PARASIT LAIN-LAIN (SEDANG)', 4106400.00, 4784000.00, 5461500.00), +('A-4-14-III', 'PENYAKIT INFEKSI BAKTERI DAN PARASIT LAIN-LAIN (BERAT)', 4927700.00, 5740800.00, 6553800.00), +('A-4-15-I', 'INFEKSI HIV (RINGAN)', 19053700.00, 22197500.00, 25341300.00), +('A-4-15-II', 'INFEKSI HIV (SEDANG)', 23728100.00, 27643200.00, 31558300.00), +('A-4-15-III', 'INFEKSI HIV (BERAT)', 26806100.00, 31229100.00, 35652100.00), +('B-1-01-I', 'PENCANGKOKAN HATI (RINGAN)', 300709600.00, 350326600.00, 399943700.00), +('B-1-01-II', 'PENCANGKOKAN HATI (SEDANG)', 303348900.00, 353401500.00, 403454000.00), +('B-1-01-III', 'PENCANGKOKAN HATI (BERAT)', 306473400.00, 357041500.00, 407609600.00), +('B-1-10-I', 'PROSEDUR HATI DAN PANKREAS (RINGAN)', 13222300.00, 15404000.00, 17585700.00), +('B-1-10-II', 'PROSEDUR HATI DAN PANKREAS (SEDANG)', 20950400.00, 24407200.00, 27864000.00), +('B-1-10-III', 'PROSEDUR HATI DAN PANKREAS (BERAT)', 37209400.00, 43348900.00, 49488500.00), +('B-1-11-I', 'PROSEDUR SALURAN EMPEDU KOMPLEK (RINGAN)', 33886600.00, 39477900.00, 45069200.00), +('B-1-11-II', 'PROSEDUR SALURAN EMPEDU KOMPLEK (SEDANG)', 40377600.00, 47039900.00, 53702300.00), +('B-1-11-III', 'PROSEDUR SALURAN EMPEDU KOMPLEK (BERAT)', 62394800.00, 72689900.00, 82985100.00), +('B-1-12-I', 'CHOLESISTEKTOMI TANPA LAPAROSKOPIK (RINGAN)', 9971600.00, 11616900.00, 13262300.00), +('B-1-12-II', 'CHOLESISTEKTOMI TANPA LAPAROSKOPIK (SEDANG)', 11090300.00, 12920200.00, 14750100.00), +('B-1-12-III', 'CHOLESISTEKTOMI TANPA LAPAROSKOPIK (BERAT)', 17349400.00, 20212100.00, 23074800.00), +('B-1-13-I', 'PROSEDUR PANKREAS DAN HEPATOBILLIARI LAIN-LAIN (RINGAN)', 9781900.00, 11395900.00, 13009900.00), +('B-1-13-II', 'PROSEDUR PANKREAS DAN HEPATOBILLIARI LAIN-LAIN (SEDANG)', 13771600.00, 16043900.00, 18316100.00), +('B-1-13-III', 'PROSEDUR PANKREAS DAN HEPATOBILLIARI LAIN-LAIN (BERAT)', 20430100.00, 23801000.00, 27172000.00), +('B-1-14-I', 'CHOLESISTEKTOMI DENGAN LAPAROSKOPIK (RINGAN)', 20809300.00, 24242800.00, 27676400.00), +('B-1-14-II', 'CHOLESISTEKTOMI DENGAN LAPAROSKOPIK (SEDANG)', 21855600.00, 25461800.00, 29068000.00), +('B-1-14-III', 'CHOLESISTEKTOMI DENGAN LAPAROSKOPIK (BERAT)', 38688200.00, 45071800.00, 51455400.00), +('B-4-10-I', 'SIROSIS HATI DAN HEPATITIS ALKOHOLIK (RINGAN)', 4394400.00, 5119500.00, 5844500.00), +('B-4-10-II', 'SIROSIS HATI DAN HEPATITIS ALKOHOLIK (SEDANG)', 5729800.00, 6675200.00, 7620700.00), +('B-4-10-III', 'SIROSIS HATI DAN HEPATITIS ALKOHOLIK (BERAT)', 8692500.00, 10126700.00, 11561000.00), +('B-4-11-I', 'TUMOR SISTEM HEPATOBILLIARI DAN PANCREAS (RINGAN)', 7119100.00, 8293800.00, 9468500.00), +('B-4-11-II', 'TUMOR SISTEM HEPATOBILLIARI DAN PANCREAS (SEDANG)', 9966900.00, 11611400.00, 13256000.00), +('B-4-11-III', 'TUMOR SISTEM HEPATOBILLIARI DAN PANCREAS (BERAT)', 12074700.00, 14067000.00, 16059400.00), +('B-4-12-I', 'GANGGUAN PANKREAS SELAIN TUMOR (RINGAN)', 6935700.00, 8080100.00, 9224500.00), +('B-4-12-II', 'GANGGUAN PANKREAS SELAIN TUMOR (SEDANG)', 10075800.00, 11738300.00, 13400800.00), +('B-4-12-III', 'GANGGUAN PANKREAS SELAIN TUMOR (BERAT)', 13636000.00, 15885900.00, 18135900.00), +('B-4-13-I', 'GANGGUAN HATI LAIN-LAIN (RINGAN)', 6139900.00, 7153000.00, 8166100.00), +('B-4-13-II', 'GANGGUAN HATI LAIN-LAIN (SEDANG)', 7152800.00, 8333000.00, 9513200.00), +('B-4-13-III', 'GANGGUAN HATI LAIN-LAIN (BERAT)', 9853500.00, 11479300.00, 13105200.00), +('B-4-14-I', 'GANGGUAN SALURAN EMPEDU LAIN-LAIN (RINGAN)', 6133400.00, 7145400.00, 8157400.00), +('B-4-14-II', 'GANGGUAN SALURAN EMPEDU LAIN-LAIN (SEDANG)', 7155300.00, 8335900.00, 9516600.00), +('B-4-14-III', 'GANGGUAN SALURAN EMPEDU LAIN-LAIN (BERAT)', 9584700.00, 11166200.00, 12747700.00), +('C-4-10-I', 'LEUKEMIA AKUT (RINGAN)', 12422400.00, 14472100.00, 16521800.00), +('C-4-10-II', 'LEUKEMIA AKUT (SEDANG)', 19978600.00, 23275100.00, 26571600.00), +('C-4-10-III', 'LEUKEMIA AKUT (BERAT)', 37433400.00, 43609900.00, 49786400.00), +('C-4-11-I', 'LIMFOMA & LEUKEMIA NON AKUT (RINGAN)', 6466300.00, 7533200.00, 8600200.00), +('C-4-11-II', 'LIMFOMA & LEUKEMIA NON AKUT (SEDANG)', 8652800.00, 10080500.00, 11508300.00), +('C-4-11-III', 'LIMFOMA & LEUKEMIA NON AKUT (BERAT)', 13303800.00, 15498900.00, 17694100.00), +('C-4-12-I', 'RADIOTERAPI (RINGAN)', 7256600.00, 8453900.00, 9651200.00), +('C-4-12-II', 'RADIOTERAPI (SEDANG)', 13001300.00, 15146400.00, 17291600.00), +('C-4-12-III', 'RADIOTERAPI (BERAT)', 21779100.00, 25372600.00, 28966200.00), +('C-4-13-I', 'KEMOTERAPI (RINGAN)', 3236800.00, 3770900.00, 4305000.00), +('C-4-13-II', 'KEMOTERAPI (SEDANG)', 6091700.00, 7096800.00, 8102000.00), +('C-4-13-III', 'KEMOTERAPI (BERAT)', 8246100.00, 9606700.00, 10967400.00), +('C-4-14-I', 'TUMOR MYELOPROLIFERATIF LAIN-LAIN (RINGAN)', 5719900.00, 6663600.00, 7607400.00), +('C-4-14-II', 'TUMOR MYELOPROLIFERATIF LAIN-LAIN (SEDANG)', 7604800.00, 8859600.00, 10114400.00), +('C-4-14-III', 'TUMOR MYELOPROLIFERATIF LAIN-LAIN (BERAT)', 11241000.00, 13095800.00, 14950600.00), +('D-1-10-I', 'PENCANGKOKAN SUMSUM TULANG (RINGAN)', 32492900.00, 37854200.00, 43215600.00), +('D-1-10-II', 'PENCANGKOKAN SUMSUM TULANG (SEDANG)', 49488900.00, 57654600.00, 65820300.00), +('D-1-10-III', 'PENCANGKOKAN SUMSUM TULANG (BERAT)', 70923000.00, 82625300.00, 94327600.00), +('D-1-11-I', 'PROSEDUR LIMPA (RINGAN)', 11289200.00, 13151900.00, 15014600.00), +('D-1-11-II', 'PROSEDUR LIMPA (SEDANG)', 22214300.00, 25879700.00, 29545000.00), +('D-1-11-III', 'PROSEDUR LIMPA (BERAT)', 28868400.00, 33631700.00, 38395000.00), +('D-1-20-I', 'PROSEDUR PADA DARAH DAN ORGAN PEMBENTUK DARAH LAIN-LAIN (RINGAN)', 7541600.00, 8786000.00, 10030400.00), +('D-1-20-II', 'PROSEDUR PADA DARAH DAN ORGAN PEMBENTUK DARAH LAIN-LAIN (SEDANG)', 20783600.00, 24212900.00, 27642200.00), +('D-1-20-III', 'PROSEDUR PADA DARAH DAN ORGAN PEMBENTUK DARAH LAIN-LAIN (BERAT)', 32968800.00, 38408600.00, 43848500.00), +('D-4-10-I', 'AGRANULOSITOSIS (RINGAN)', 3290400.00, 3833300.00, 4376200.00), +('D-4-10-II', 'AGRANULOSITOSIS (SEDANG)', 5185200.00, 6040700.00, 6896300.00), +('D-4-10-III', 'AGRANULOSITOSIS (BERAT)', 7981500.00, 9298400.00, 10615400.00), +('D-4-11-I', 'GANGGUAN PEMBEKUAN DARAH (RINGAN)', 5904100.00, 6878300.00, 7852500.00), +('D-4-11-II', 'GANGGUAN PEMBEKUAN DARAH (SEDANG)', 10609400.00, 12359900.00, 14110500.00), +('D-4-11-III', 'GANGGUAN PEMBEKUAN DARAH (BERAT)', 14574600.00, 16979400.00, 19384300.00), +('D-4-12-I', 'KRISIS ANEMIA SEL SICKLE (RINGAN)', 5264500.00, 6133100.00, 7001700.00), +('D-4-12-II', 'KRISIS ANEMIA SEL SICKLE (SEDANG)', 7301900.00, 8506700.00, 9711600.00), +('D-4-12-III', 'KRISIS ANEMIA SEL SICKLE (BERAT)', 10841100.00, 12629900.00, 14418700.00), +('D-4-13-I', 'GANGGUAN SEL DARAH MERAH SELAIN KRISIS ANEMIA SEL SICKLE (RINGAN)', 4362200.00, 5081900.00, 5801700.00), +('D-4-13-II', 'GANGGUAN SEL DARAH MERAH SELAIN KRISIS ANEMIA SEL SICKLE (SEDANG)', 6173900.00, 7192600.00, 8211300.00), +('D-4-13-III', 'GANGGUAN SEL DARAH MERAH SELAIN KRISIS ANEMIA SEL SICKLE (BERAT)', 7896600.00, 9199500.00, 10502500.00), +('D-4-14-I', 'GANGGUAN PADA DARAH & ORGAN PEMBENTUK DARAH LAIN-LAIN (RINGAN)', 4678500.00, 5450500.00, 6222500.00), +('D-4-14-II', 'GANGGUAN PADA DARAH & ORGAN PEMBENTUK DARAH LAIN-LAIN (SEDANG)', 7660000.00, 8923900.00, 10187800.00), +('D-4-14-III', 'GANGGUAN PADA DARAH & ORGAN PEMBENTUK DARAH LAIN-LAIN (BERAT)', 9368900.00, 10914800.00, 12460700.00), +('E-1-01-I', 'PROSEDUR KELENJAR PITUITARI DAN PINEAL (RINGAN)', 18442100.00, 21485100.00, 24528000.00), +('E-1-01-II', 'PROSEDUR KELENJAR PITUITARI DAN PINEAL (SEDANG)', 21095200.00, 24575900.00, 28056600.00), +('E-1-01-III', 'PROSEDUR KELENJAR PITUITARI DAN PINEAL (BERAT)', 36392700.00, 42397500.00, 48402300.00), +('E-1-10-I', 'PROSEDUR KELENJAR ADRENAL (RINGAN)', 13969800.00, 16274800.00, 18579800.00), +('E-1-10-II', 'PROSEDUR KELENJAR ADRENAL (SEDANG)', 18368700.00, 21399500.00, 24430400.00), +('E-1-10-III', 'PROSEDUR KELENJAR ADRENAL (BERAT)', 32880000.00, 38305200.00, 43730400.00), +('E-1-20-I', 'PROSEDUR PADA TIROID, PARATIROID DAN SALURAN TIROGLOSAL (RINGAN)', 10976800.00, 12788000.00, 14599200.00), +('E-1-20-II', 'PROSEDUR PADA TIROID, PARATIROID DAN SALURAN TIROGLOSAL (SEDANG)', 14774500.00, 17212300.00, 19650100.00), +('E-1-20-III', 'PROSEDUR PADA TIROID, PARATIROID DAN SALURAN TIROGLOSAL (BERAT)', 20362200.00, 23722000.00, 27081800.00), +('E-4-10-I', 'PENYAKIT KENCING MANIS & GANGGUAN NUTRISI/ METABOLIK (RINGAN)', 3884700.00, 4525700.00, 5166700.00), +('E-4-10-II', 'PENYAKIT KENCING MANIS & GANGGUAN NUTRISI/ METABOLIK (SEDANG)', 7524000.00, 8765400.00, 10006900.00), +('E-4-10-III', 'PENYAKIT KENCING MANIS & GANGGUAN NUTRISI/ METABOLIK (BERAT)', 12607200.00, 14687400.00, 16767600.00), +('E-4-11-I', 'HIPOVOLEMIA & GANGGUAN ELEKROLIT (RINGAN)', 4315200.00, 5027200.00, 5739300.00), +('E-4-11-II', 'HIPOVOLEMIA & GANGGUAN ELEKROLIT (SEDANG)', 6578900.00, 7664400.00, 8750000.00), +('E-4-11-III', 'HIPOVOLEMIA & GANGGUAN ELEKROLIT (BERAT)', 8914900.00, 10385800.00, 11856800.00), +('E-4-12-I', 'GANGGUAN METABOLIK BAWAAN (RINGAN)', 4958100.00, 5776200.00, 6594300.00), +('E-4-12-II', 'GANGGUAN METABOLIK BAWAAN (SEDANG)', 8586200.00, 10002900.00, 11419700.00), +('E-4-12-III', 'GANGGUAN METABOLIK BAWAAN (BERAT)', 10177800.00, 11857100.00, 13536500.00), +('E-4-13-I', 'GANGGUAN KELENJAR ENDOKRIN LAIN-LAIN (RINGAN)', 5399200.00, 6290100.00, 7181000.00), +('E-4-13-II', 'GANGGUAN KELENJAR ENDOKRIN LAIN-LAIN (SEDANG)', 7908800.00, 9213800.00, 10518800.00), +('E-4-13-III', 'GANGGUAN KELENJAR ENDOKRIN LAIN-LAIN (BERAT)', 10338500.00, 12044300.00, 13750200.00), +('F-4-10-I', 'SCHIZOFRENIA (RINGAN)', 5748200.00, 6696600.00, 7645100.00), +('F-4-10-II', 'SCHIZOFRENIA (SEDANG)', 6606300.00, 7696300.00, 8786400.00), +('F-4-10-III', 'SCHIZOFRENIA (BERAT)', 7927600.00, 9235600.00, 10543700.00), +('F-4-11-I', 'DEPRESI MAYOR (RINGAN)', 6309700.00, 7350800.00, 8391900.00), +('F-4-11-II', 'DEPRESI MAYOR (SEDANG)', 6477300.00, 7546000.00, 8614800.00), +('F-4-11-III', 'DEPRESI MAYOR (BERAT)', 8306200.00, 9676700.00, 11047300.00), +('F-4-12-I', 'GANGGUAN PERSONALITI & KONTROL IMPULSE (RINGAN)', 3679400.00, 4286500.00, 4893600.00), +('F-4-12-II', 'GANGGUAN PERSONALITI & KONTROL IMPULSE (SEDANG)', 5410900.00, 6303600.00, 7196400.00), +('F-4-12-III', 'GANGGUAN PERSONALITI & KONTROL IMPULSE (BERAT)', 10826100.00, 12612400.00, 14398700.00), +('F-4-13-I', 'GANGGUAN BIPOLAR (RINGAN)', 4478200.00, 5217100.00, 5956100.00), +('F-4-13-II', 'GANGGUAN BIPOLAR (SEDANG)', 7285300.00, 8487300.00, 9689400.00), +('F-4-13-III', 'GANGGUAN BIPOLAR (BERAT)', 9298600.00, 10832800.00, 12367100.00), +('F-4-14-I', 'DEPRESI (RINGAN)', 2555100.00, 2976700.00, 3398300.00), +('F-4-14-II', 'DEPRESI (SEDANG)', 3277200.00, 3817900.00, 4358700.00), +('F-4-14-III', 'DEPRESI (BERAT)', 5117700.00, 5962100.00, 6806500.00), +('F-4-15-I', 'FOBIA,ANXIETAS DAN NEUROSIS LAIN-LAIN (RINGAN)', 4069100.00, 4740500.00, 5411900.00), +('F-4-15-II', 'FOBIA,ANXIETAS DAN NEUROSIS LAIN-LAIN (SEDANG)', 6063400.00, 7063900.00, 8064400.00), +('F-4-15-III', 'FOBIA,ANXIETAS DAN NEUROSIS LAIN-LAIN (BERAT)', 8005600.00, 9326500.00, 10647500.00), +('F-4-16-I', 'GANGGUAN ORGANIK LAIN-LAIN TERMASUK KETERBELAKANGAN MENTAL (RINGAN)', 8006100.00, 9327100.00, 10648100.00), +('F-4-16-II', 'GANGGUAN ORGANIK LAIN-LAIN TERMASUK KETERBELAKANGAN MENTAL (SEDANG)', 9308300.00, 10844200.00, 12380100.00), +('F-4-16-III', 'GANGGUAN ORGANIK LAIN-LAIN TERMASUK KETERBELAKANGAN MENTAL (BERAT)', 12425000.00, 14475100.00, 16525300.00), +('F-4-17-I', 'GANGGUAN MENTAL PADA KANAK-KANAK (RINGAN)', 2551000.00, 2971900.00, 3392800.00), +('F-4-17-II', 'GANGGUAN MENTAL PADA KANAK-KANAK (SEDANG)', 6706600.00, 7813200.00, 8919800.00), +('F-4-17-III', 'GANGGUAN MENTAL PADA KANAK-KANAK (BERAT)', 7201300.00, 8389500.00, 9577800.00), +('F-4-18-I', 'GANGGUAN NUTRISI KOMPULSIF (RINGAN)', 6956700.00, 8104500.00, 9252400.00), +('F-4-18-II', 'GANGGUAN NUTRISI KOMPULSIF (SEDANG)', 8702300.00, 10138100.00, 11574000.00), +('F-4-18-III', 'GANGGUAN NUTRISI KOMPULSIF (BERAT)', 13490400.00, 15716300.00, 17942200.00), +('F-4-19-I', 'GANGGUAN MENTAL LAIN-LAIN (RINGAN)', 5982700.00, 6969900.00, 7957000.00), +('F-4-19-II', 'GANGGUAN MENTAL LAIN-LAIN (SEDANG)', 6808100.00, 7931400.00, 9054800.00), +('F-4-19-III', 'GANGGUAN MENTAL LAIN-LAIN (BERAT)', 8476000.00, 9874500.00, 11273100.00), +('G-1-01-I', 'PROSEDUR PADA PEMBULUH DARAH INTRA KRANIAL (RINGAN)', 32973800.00, 38414400.00, 43855100.00), +('G-1-01-II', 'PROSEDUR PADA PEMBULUH DARAH INTRA KRANIAL (SEDANG)', 38138900.00, 44431800.00, 50724700.00), +('G-1-01-III', 'PROSEDUR PADA PEMBULUH DARAH INTRA KRANIAL (BERAT)', 60188500.00, 70119600.00, 80050600.00), +('G-1-10-I', 'KRANIOTOMI (RINGAN)', 35066200.00, 40852100.00, 46638000.00), +('G-1-10-II', 'KRANIOTOMI (SEDANG)', 42947300.00, 50033600.00, 57119900.00), +('G-1-10-III', 'KRANIOTOMI (BERAT)', 52776400.00, 61484500.00, 70192600.00), +('G-1-11-I', 'PROSEDUR VENTRICULAR SHUNT (RINGAN)', 17260000.00, 20107900.00, 22955800.00), +('G-1-11-II', 'PROSEDUR VENTRICULAR SHUNT (SEDANG)', 31555200.00, 36761800.00, 41968400.00), +('G-1-11-III', 'PROSEDUR VENTRICULAR SHUNT (BERAT)', 50707800.00, 59074600.00, 67441400.00), +('G-1-12-I', 'PROSEDUR PEMBULUH DARAH EXTRA KRANIAL (RINGAN)', 7463000.00, 8694400.00, 9925800.00), +('G-1-12-II', 'PROSEDUR PEMBULUH DARAH EXTRA KRANIAL (SEDANG)', 13509100.00, 15738100.00, 17967200.00), +('G-1-12-III', 'PROSEDUR PEMBULUH DARAH EXTRA KRANIAL (BERAT)', 18410400.00, 21448100.00, 24485800.00), +('G-1-13-I', 'PROSEDUR CARPAL TUNNEL RELEASE (RINGAN)', 3781100.00, 4405000.00, 5028800.00), +('G-1-13-II', 'PROSEDUR CARPAL TUNNEL RELEASE (SEDANG)', 6212200.00, 7237200.00, 8262200.00), +('G-1-13-III', 'PROSEDUR CARPAL TUNNEL RELEASE (BERAT)', 13174000.00, 15347700.00, 17521400.00), +('G-1-20-I', 'PROSEDUR SARAF KRANIAL DAN PERIFER (RINGAN)', 12204900.00, 14218700.00, 16232500.00), +('G-1-20-II', 'PROSEDUR SARAF KRANIAL DAN PERIFER (SEDANG)', 19456300.00, 22666600.00, 25876900.00), +('G-1-20-III', 'PROSEDUR SARAF KRANIAL DAN PERIFER (BERAT)', 31491000.00, 36687000.00, 41883100.00), +('G-1-30-I', 'PROSEDUR TULANG BELAKANG (RINGAN)', 30405500.00, 35422400.00, 40439300.00), +('G-1-30-II', 'PROSEDUR TULANG BELAKANG (SEDANG)', 40994000.00, 47758000.00, 54522000.00), +('G-1-30-III', 'PROSEDUR TULANG BELAKANG (BERAT)', 61559500.00, 71716800.00, 81874200.00), +('G-4-10-I', 'KECEDERAAN & GANGGUAN TULANG BELAKANG (RINGAN)', 6186100.00, 7206800.00, 8227600.00), +('G-4-10-II', 'KECEDERAAN & GANGGUAN TULANG BELAKANG (SEDANG)', 7561600.00, 8809200.00, 10056900.00), +('G-4-10-III', 'KECEDERAAN & GANGGUAN TULANG BELAKANG (BERAT)', 10375700.00, 12087700.00, 13799700.00), +('G-4-11-I', 'TUMOR SISTEM PERSARAFAN & GANGGUAN DEGENERATIF (RINGAN)', 6475900.00, 7544400.00, 8613000.00), +('G-4-11-II', 'TUMOR SISTEM PERSARAFAN & GANGGUAN DEGENERATIF (SEDANG)', 8602500.00, 10021900.00, 11441300.00), +('G-4-11-III', 'TUMOR SISTEM PERSARAFAN & GANGGUAN DEGENERATIF (BERAT)', 12639900.00, 14725500.00, 16811100.00), +('G-4-12-I', 'SKLEROSIS MULTIPLE & ATAXIA CEREBELAR (RINGAN)', 7184300.00, 8369700.00, 9555100.00), +('G-4-12-II', 'SKLEROSIS MULTIPLE & ATAXIA CEREBELAR (SEDANG)', 9364800.00, 10910000.00, 12455200.00), +('G-4-12-III', 'SKLEROSIS MULTIPLE & ATAXIA CEREBELAR (BERAT)', 15118400.00, 17612900.00, 20107500.00), +('G-4-13-I', 'PERDARAHAN INTRA KRANIAL BUKAN TRAUMATIK (RINGAN)', 5115400.00, 5959400.00, 6803400.00), +('G-4-13-II', 'PERDARAHAN INTRA KRANIAL BUKAN TRAUMATIK (SEDANG)', 7525800.00, 8767500.00, 10009200.00), +('G-4-13-III', 'PERDARAHAN INTRA KRANIAL BUKAN TRAUMATIK (BERAT)', 10230000.00, 11917900.00, 13605800.00), +('G-4-14-I', 'KECEDERAAN PEMBULUH DARAH OTAK DENGAN INFARK (RINGAN)', 7321100.00, 8529100.00, 9737100.00), +('G-4-14-II', 'KECEDERAAN PEMBULUH DARAH OTAK DENGAN INFARK (SEDANG)', 9787700.00, 11402700.00, 13017700.00), +('G-4-14-III', 'KECEDERAAN PEMBULUH DARAH OTAK DENGAN INFARK (BERAT)', 12284700.00, 14311700.00, 16338700.00), +('G-4-15-I', 'KECEDERAAN PEMBULUH DARAH OTAK NON SPESIFIK & PENYUMBATAN PRE-CEREBRAL TANPA INFARK (RINGAN)', 5982100.00, 6969100.00, 7956100.00), +('G-4-15-II', 'KECEDERAAN PEMBULUH DARAH OTAK NON SPESIFIK & PENYUMBATAN PRE-CEREBRAL TANPA INFARK (SEDANG)', 7139200.00, 8317200.00, 9495100.00), +('G-4-15-III', 'KECEDERAAN PEMBULUH DARAH OTAK NON SPESIFIK & PENYUMBATAN PRE-CEREBRAL TANPA INFARK (BERAT)', 10076400.00, 11739000.00, 13401500.00), +('G-4-16-I', 'ISKEMIK TRANSIENT (RINGAN)', 4931300.00, 5745000.00, 6558700.00), +('G-4-16-II', 'ISKEMIK TRANSIENT (SEDANG)', 6547000.00, 7627200.00, 8707500.00), +('G-4-16-III', 'ISKEMIK TRANSIENT (BERAT)', 9323400.00, 10861800.00, 12400200.00), +('G-4-17-I', 'GANGUAN PERSARAFAN KRANIAL DAN PERIFER (RINGAN)', 6568200.00, 7651900.00, 8735700.00), +('G-4-17-II', 'GANGUAN PERSARAFAN KRANIAL DAN PERIFER (SEDANG)', 8612300.00, 10033300.00, 11454400.00), +('G-4-17-III', 'GANGUAN PERSARAFAN KRANIAL DAN PERIFER (BERAT)', 10821800.00, 12607400.00, 14393000.00), +('G-4-18-I', 'INFEKSI BAKTERI SISTEM PERSARAFAN (RINGAN)', 6472500.00, 7540400.00, 8608400.00), +('G-4-18-II', 'INFEKSI BAKTERI SISTEM PERSARAFAN (SEDANG)', 8967600.00, 10447300.00, 11926900.00), +('G-4-18-III', 'INFEKSI BAKTERI SISTEM PERSARAFAN (BERAT)', 9935000.00, 11574300.00, 13213600.00), +('G-4-19-I', 'INFEKSI NON BAKTERI SISTEM PERSARAFAN (TIDAK TERMASUK MENINGITIS VIRUS) (RINGAN)', 5397000.00, 6287500.00, 7178000.00), +('G-4-19-II', 'INFEKSI NON BAKTERI SISTEM PERSARAFAN (TIDAK TERMASUK MENINGITIS VIRUS) (SEDANG)', 9122100.00, 10627200.00, 12132400.00), +('G-4-19-III', 'INFEKSI NON BAKTERI SISTEM PERSARAFAN (TIDAK TERMASUK MENINGITIS VIRUS) (BERAT)', 11976900.00, 13953100.00, 15929300.00), +('G-4-20-I', 'MENINGITIS VIRUS (RINGAN)', 4354700.00, 5073200.00, 5791700.00), +('G-4-20-II', 'MENINGITIS VIRUS (SEDANG)', 6395600.00, 7450800.00, 8506100.00), +('G-4-20-III', 'MENINGITIS VIRUS (BERAT)', 9987700.00, 11635700.00, 13283600.00), +('G-4-21-I', 'KOMA & STUPOR NON TRAUMA (RINGAN)', 4306200.00, 5016700.00, 5727200.00), +('G-4-21-II', 'KOMA & STUPOR NON TRAUMA (SEDANG)', 6654100.00, 7752000.00, 8850000.00), +('G-4-21-III', 'KOMA & STUPOR NON TRAUMA (BERAT)', 7820100.00, 9110400.00, 10400800.00), +('G-4-22-I', 'SERANGAN KEJANG (RINGAN)', 3251900.00, 3788400.00, 4325000.00), +('G-4-22-II', 'SERANGAN KEJANG (SEDANG)', 5216400.00, 6077100.00, 6937900.00), +('G-4-22-III', 'SERANGAN KEJANG (BERAT)', 8228500.00, 9586200.00, 10943900.00), +('G-4-23-I', 'MIGREN DAN SAKIT KEPALA LAIN (RINGAN)', 3870200.00, 4508800.00, 5147400.00), +('G-4-23-II', 'MIGREN DAN SAKIT KEPALA LAIN ((SEDANG)', 4855800.00, 5657000.00, 6458200.00), +('G-4-23-III', 'MIGREN DAN SAKIT KEPALA LAIN (BERAT)', 6913400.00, 8054100.00, 9194900.00), +('G-4-24-I', 'TRAUMA KEPALA (RINGAN)', 4310800.00, 5022100.00, 5733400.00), +('G-4-24-II', 'TRAUMA KEPALA (SEDANG)', 5553800.00, 6470200.00, 7386600.00), +('G-4-24-III', 'TRAUMA KEPALA (BERAT)', 8972500.00, 10452900.00, 11933400.00), +('G-4-25-I', 'GEGAR OTAK (RINGAN)', 3683500.00, 4291300.00, 4899100.00), +('G-4-25-II', 'GEGAR OTAK (SEDANG)', 4658200.00, 5426800.00, 6195500.00), +('G-4-25-III', 'GEGAR OTAK (BERAT)', 6173100.00, 7191600.00, 8210200.00), +('G-4-26-I', 'GANGGUAN - PENYAKIT SISTEM PERSARAFAN LAIN-LAIN (RINGAN)', 4199500.00, 4892400.00, 5585400.00), +('G-4-26-II', 'GANGGUAN - PENYAKIT SISTEM PERSARAFAN LAIN-LAIN (SEDANG)', 4885300.00, 5691400.00, 6497500.00), +('G-4-26-III', 'GANGGUAN - PENYAKIT SISTEM PERSARAFAN LAIN-LAIN (BERAT)', 7305000.00, 8510300.00, 9715700.00), +('H-1-20-I', 'PROSEDUR EKSTRAOKULER DAN ORBITA (RINGAN)', 12422200.00, 14471800.00, 16521400.00), +('H-1-20-II', 'PROSEDUR EKSTRAOKULER DAN ORBITA (SEDANG)', 13728400.00, 15993600.00, 18258700.00), +('H-1-20-III', 'PROSEDUR EKSTRAOKULER DAN ORBITA (BERAT)', 18669800.00, 21750300.00, 24830800.00), +('H-1-30-I', 'PROSEDUR LENSA DAN INTRA OKULER (RINGAN)', 8464600.00, 9861300.00, 11258000.00), +('H-1-30-II', 'PROSEDUR LENSA DAN INTRA OKULER (SEDANG)', 10516400.00, 12251600.00, 13986900.00), +('H-1-30-III', 'PROSEDUR LENSA DAN INTRA OKULER (BERAT)', 14729800.00, 17160200.00, 19590700.00), +('H-4-10-I', 'INFEKSI MATA AKUT MAYOR (RINGAN)', 4530100.00, 5277500.00, 6025000.00), +('H-4-10-II', 'INFEKSI MATA AKUT MAYOR (SEDANG)', 6089400.00, 7094200.00, 8099000.00), +('H-4-10-III', 'INFEKSI MATA AKUT MAYOR (BERAT)', 11969100.00, 13944000.00, 15918900.00), +('H-4-11-I', 'GANGGUAN PERSARAFAN MATA (RINGAN)', 4303700.00, 5013800.00, 5723900.00), +('H-4-11-II', 'GANGGUAN PERSARAFAN MATA (SEDANG)', 4909100.00, 5719100.00, 6529200.00), +('H-4-11-III', 'GANGGUAN PERSARAFAN MATA (BERAT)', 7029600.00, 8189500.00, 9349400.00), +('H-4-12-I', 'GANGGUAN MATA LAIN-LAIN (RINGAN)', 5074100.00, 5911300.00, 6748600.00), +('H-4-12-II', 'GANGGUAN MATA LAIN-LAIN (SEDANG)', 6062500.00, 7062800.00, 8063200.00), +('H-4-12-III', 'GANGGUAN MATA LAIN-LAIN (BERAT)', 10159700.00, 11836100.00, 13512500.00), +('I-1-01-I', 'TRANPLANTASI PARU ATAU/DAN JANTUNG (RINGAN)', 301625300.00, 351393400.00, 401161600.00), +('I-1-01-II', 'TRANPLANTASI PARU ATAU/DAN JANTUNG (SEDANG)', 308979700.00, 359961300.00, 410942900.00), +('I-1-01-III', 'TRANPLANTASI PARU ATAU/DAN JANTUNG (BERAT)', 315528400.00, 367590600.00, 419652800.00), +('I-1-02-I', 'PROSEDUR KATUP JANTUNG DENGAN KATETERISASI (RINGAN)', 72665800.00, 84655700.00, 96645500.00), +('I-1-02-II', 'PROSEDUR KATUP JANTUNG DENGAN KATETERISASI (SEDANG)', 90540100.00, 105479300.00, 120418400.00), +('I-1-02-III', 'PROSEDUR KATUP JANTUNG DENGAN KATETERISASI (BERAT)', 136616100.00, 159157700.00, 181699400.00), +('I-1-03-I', 'OPERASI KARDIOTORASIK KOMPLEKS PADA JANTUNG ANOMALI (RINGAN)', 47918300.00, 55824800.00, 63731300.00), +('I-1-03-II', 'OPERASI KARDIOTORASIK KOMPLEKS PADA JANTUNG ANOMALI (SEDANG)', 66424600.00, 77384700.00, 88344800.00), +('I-1-03-III', 'OPERASI KARDIOTORASIK KOMPLEKS PADA JANTUNG ANOMALI (BERAT)', 82896100.00, 96573900.00, 110251800.00), +('I-1-04-I', 'PROSEDUR KATUP JANTUNG TANPA KATETERISASI JANTUNG (RINGAN)', 71944100.00, 83814800.00, 95685600.00), +('I-1-04-II', 'PROSEDUR KATUP JANTUNG TANPA KATETERISASI JANTUNG (SEDANG)', 89776200.00, 104589300.00, 119402300.00), +('I-1-04-III', 'PROSEDUR KATUP JANTUNG TANPA KATETERISASI JANTUNG (BERAT)', 135487100.00, 157842500.00, 180197900.00), +('I-1-05-I', 'PEMBEDAHAN BYPASS PEMBULUH KORONER DENGAN KATETERISASI JANTUNG (RINGAN)', 89014800.00, 103702200.00, 118389700.00), +('I-1-05-II', 'PEMBEDAHAN BYPASS PEMBULUH KORONER DENGAN KATETERISASI JANTUNG (SEDANG)', 108795800.00, 126747100.00, 144698500.00), +('I-1-05-III', 'PEMBEDAHAN BYPASS PEMBULUH KORONER DENGAN KATETERISASI JANTUNG (BERAT)', 149841500.00, 174565400.00, 199289200.00), +('I-1-06-I', 'PROSEDUR KARDIOTORASIK LAIN (RINGAN)', 50834000.00, 59221600.00, 67609200.00), +('I-1-06-II', 'PROSEDUR KARDIOTORASIK LAIN (SEDANG)', 73637100.00, 85787200.00, 97937400.00), +('I-1-06-III', 'PROSEDUR KARDIOTORASIK LAIN (BERAT)', 87862700.00, 102360000.00, 116857400.00), +('I-1-07-I', 'PROSEDUR BYPASS KORONER TANPA KATETERISASI JANTUNG (RINGAN)', 79304100.00, 92389300.00, 105474400.00), +('I-1-07-II', 'PROSEDUR BYPASS KORONER TANPA KATETERISASI JANTUNG (SEDANG)', 98905300.00, 115224700.00, 131544100.00), +('I-1-07-III', 'PROSEDUR BYPASS KORONER TANPA KATETERISASI JANTUNG (BERAT)', 148357900.00, 172837000.00, 197316100.00), +('I-1-11-I', 'DEFIBRILATOR JANTUNG DAN PEMASANGAN SISTEM BANTUAN JANTUNG (RINGAN)', 5925200.00, 6902800.00, 7880500.00), +('I-1-11-II', 'DEFIBRILATOR JANTUNG DAN PEMASANGAN SISTEM BANTUAN JANTUNG (SEDANG)', 6619200.00, 7711300.00, 8803500.00), +('I-1-11-III', 'DEFIBRILATOR JANTUNG DAN PEMASANGAN SISTEM BANTUAN JANTUNG (BERAT)', 8766800.00, 10213300.00, 11659900.00), +('I-1-12-I', 'PROSEDUR PEMBULUH DARAH TORASIK KOMPLEKS (RINGAN)', 17055400.00, 19869500.00, 22683700.00), +('I-1-12-II', 'PROSEDUR PEMBULUH DARAH TORASIK KOMPLEKS (SEDANG)', 27854800.00, 32450800.00, 37046900.00), +('I-1-12-III', 'PROSEDUR PEMBULUH DARAH TORASIK KOMPLEKS (BERAT)', 36647200.00, 42694000.00, 48740800.00), +('I-1-13-I', 'PROSEDUR PEMBULUH DARAH ABDOMINAL KOMPLEK (RINGAN)', 16543400.00, 19273100.00, 22002800.00), +('I-1-13-II', 'PROSEDUR PEMBULUH DARAH ABDOMINAL KOMPLEK (SEDANG)', 22451900.00, 26156400.00, 29861000.00), +('I-1-13-III', 'PROSEDUR PEMBULUH DARAH ABDOMINAL KOMPLEK (BERAT)', 27478900.00, 32012900.00, 36546900.00), +('I-1-14-I', 'PEMASANGAN PACEMAKER JANTUNG PERMANEN (RINGAN)', 33860400.00, 39447300.00, 45034300.00), +('I-1-14-II', 'PEMASANGAN PACEMAKER JANTUNG PERMANEN (SEDANG)', 42083400.00, 49027200.00, 55971000.00), +('I-1-14-III', 'PEMASANGAN PACEMAKER JANTUNG PERMANEN (BERAT)', 55143800.00, 64242500.00, 73341300.00), +('I-1-15-I', 'KATETERISASI JANTUNG (RINGAN)', 7075800.00, 8243300.00, 9410800.00), +('I-1-15-II', 'KATETERISASI JANTUNG (SEDANG)', 8982900.00, 10465100.00, 11947200.00), +('I-1-15-III', 'KATETERISASI JANTUNG (BERAT)', 17297400.00, 20151500.00, 23005500.00), +('I-1-16-I', 'REVISI DEFIBRILATOR & PACEMAKER JANTUNG TIDAK TERMASUK PENGGANTIAN ALAT (RINGAN)', 16675400.00, 19426800.00, 22178300.00), +('I-1-16-II', 'REVISI DEFIBRILATOR & PACEMAKER JANTUNG TIDAK TERMASUK PENGGANTIAN ALAT (SEDANG)', 37729600.00, 43955000.00, 50180400.00), +('I-1-16-III', 'REVISI DEFIBRILATOR & PACEMAKER JANTUNG TIDAK TERMASUK PENGGANTIAN ALAT (BERAT)', 43520500.00, 50701400.00, 57882300.00), +('I-1-17-I', 'LIGASI DAN STRIPPING PEMBULUH DARAH VENA (RINGAN)', 19308500.00, 22494400.00, 25680300.00), +('I-1-17-II', 'LIGASI DAN STRIPPING PEMBULUH DARAH VENA (SEDANG)', 24176100.00, 28165100.00, 32154200.00), +('I-1-17-III', 'LIGASI DAN STRIPPING PEMBULUH DARAH VENA (BERAT)', 29905400.00, 34839800.00, 39774200.00), +('I-1-20-I', 'PROSEDUR SISTIM PEREDARAN DARAH LAIN-LAIN (RINGAN)', 21764000.00, 25355000.00, 28946100.00), +('I-1-20-II', 'PROSEDUR SISTIM PEREDARAN DARAH LAIN-LAIN (SEDANG)', 27189200.00, 31675400.00, 36161700.00), +('I-1-20-III', 'PROSEDUR SISTIM PEREDARAN DARAH LAIN-LAIN (BERAT)', 32022200.00, 37305900.00, 42589600.00), +('I-1-30-I', 'PENGGANTIAN ALAT DEFIBRILATOR DAN PACEMAKER JANTUNG (RINGAN)', 26861900.00, 31294100.00, 35726300.00), +('I-1-30-II', 'PENGGANTIAN ALAT DEFIBRILATOR DAN PACEMAKER JANTUNG (SEDANG)', 35549300.00, 41415000.00, 47280600.00), +('I-1-30-III', 'PENGGANTIAN ALAT DEFIBRILATOR DAN PACEMAKER JANTUNG (BERAT)', 53070700.00, 61827400.00, 70584100.00), +('I-1-40-I', 'PROSEDUR KARDIOVASKULAR PERKUTAN (RINGAN)', 17668500.00, 20583800.00, 23499100.00), +('I-1-40-II', 'PROSEDUR KARDIOVASKULAR PERKUTAN (SEDANG)', 37561600.00, 43759300.00, 49957000.00), +('I-1-40-III', 'PROSEDUR KARDIOVASKULAR PERKUTAN (BERAT)', 50169600.00, 58447600.00, 66725600.00), +('I-4-10-I', 'INFARK MYOKARD AKUT (RINGAN)', 6013500.00, 7005800.00, 7998000.00), +('I-4-10-II', 'INFARK MYOKARD AKUT (SEDANG)', 10226500.00, 11913900.00, 13601200.00), +('I-4-10-III', 'INFARK MYOKARD AKUT (BERAT)', 14735000.00, 17166300.00, 19597500.00), +('I-4-11-I', 'ENDOKARDITIS AKUT DAN SUBAKUT (RINGAN)', 8811300.00, 10265100.00, 11719000.00), +('I-4-11-II', 'ENDOKARDITIS AKUT DAN SUBAKUT (SEDANG)', 10904000.00, 12703100.00, 14502300.00), +('I-4-11-III', 'ENDOKARDITIS AKUT DAN SUBAKUT (BERAT)', 20171100.00, 23499300.00, 26827600.00), +('I-4-12-I', 'KEGAGALAN JANTUNG (RINGAN)', 5120700.00, 5965600.00, 6810500.00), +('I-4-12-II', 'KEGAGALAN JANTUNG (SEDANG)', 5871300.00, 6840100.00, 7808900.00), +('I-4-12-III', 'KEGAGALAN JANTUNG (BERAT)', 7045500.00, 8208000.00, 9370600.00), +('I-4-13-I', 'THROMBOPHLEBITIS PADA PEMBULUH DARAH VENA (RINGAN)', 5154500.00, 6005000.00, 6855500.00), +('I-4-13-II', 'THROMBOPHLEBITIS PADA PEMBULUH DARAH VENA (SEDANG)', 9203900.00, 10722500.00, 12241200.00), +('I-4-13-III', 'THROMBOPHLEBITIS PADA PEMBULUH DARAH VENA (BERAT)', 13261500.00, 15449600.00, 17637800.00), +('I-4-14-I', 'CARDIAC ARREST DAN LAIN-LAIN (RINGAN)', 4867500.00, 5670600.00, 6473800.00), +('I-4-14-II', 'CARDIAC ARREST DAN LAIN-LAIN (SEDANG)', 5179400.00, 6034000.00, 6888600.00), +('I-4-14-III', 'CARDIAC ARREST DAN LAIN-LAIN (BERAT)', 8826400.00, 10282700.00, 11739100.00), +('I-4-15-I', 'PENYAKIT PEMBULUH DARAH DAN LAIN-LAIN (RINGAN)', 4971200.00, 5791400.00, 6611600.00), +('I-4-15-II', 'PENYAKIT PEMBULUH DARAH DAN LAIN-LAIN (SEDANG)', 9374000.00, 10920700.00, 12467400.00), +('I-4-15-III', 'PENYAKIT PEMBULUH DARAH DAN LAIN-LAIN (BERAT)', 11248800.00, 13104900.00, 14960900.00), +('I-4-16-I', 'ATHEROSKLEROSIS (RINGAN)', 3225800.00, 3758000.00, 4290200.00), +('I-4-16-II', 'ATHEROSKLEROSIS (SEDANG)', 4933100.00, 5747000.00, 6560900.00), +('I-4-16-III', 'ATHEROSKLEROSIS (BERAT)', 5919700.00, 6896400.00, 7873100.00), +('I-4-17-I', 'HIPERTENSI (RINGAN)', 2153700.00, 2509100.00, 2864400.00), +('I-4-17-II', 'HIPERTENSI (SEDANG)', 3310000.00, 3856100.00, 4402200.00), +('I-4-17-III', 'HIPERTENSI (BERAT)', 4633900.00, 5398500.00, 6163000.00), +('I-4-18-I', 'PENYAKIT JANTUNG KONGENITAL DAN KATUP JANTUNG (RINGAN)', 5972300.00, 6957700.00, 7943100.00), +('I-4-18-II', 'PENYAKIT JANTUNG KONGENITAL DAN KATUP JANTUNG (SEDANG)', 9022200.00, 10510900.00, 11999600.00), +('I-4-18-III', 'PENYAKIT JANTUNG KONGENITAL DAN KATUP JANTUNG (BERAT)', 12249100.00, 14270200.00, 16291400.00), +('I-4-19-I', 'GANGGUAN KONDUKSI & ARITMIA JANTUNG (RINGAN)', 5717200.00, 6660500.00, 7603900.00), +('I-4-19-II', 'GANGGUAN KONDUKSI & ARITMIA JANTUNG (SEDANG)', 8924900.00, 10397500.00, 11870100.00), +('I-4-19-III', 'GANGGUAN KONDUKSI & ARITMIA JANTUNG (BERAT)', 10654600.00, 12412600.00, 14170600.00), +('I-4-20-I', 'ANGINA PEKTORIS DAN NYERI DADA (RINGAN)', 5953400.00, 6935700.00, 7917900.00), +('I-4-20-II', 'ANGINA PEKTORIS DAN NYERI DADA (SEDANG)', 6876100.00, 8010600.00, 9145100.00), +('I-4-20-III', 'ANGINA PEKTORIS DAN NYERI DADA (BERAT)', 10281100.00, 11977500.00, 13673800.00), +('I-4-21-I', 'SYNCOPE & COLLAPSE (RINGAN)', 4009400.00, 4670900.00, 5332500.00), +('I-4-21-II', 'SYNCOPE & COLLAPSE (SEDANG)', 5079900.00, 5918100.00, 6756300.00), +('I-4-21-III', 'SYNCOPE & COLLAPSE (BERAT)', 7332200.00, 8542000.00, 9751900.00), +('I-4-22-I', 'KARDIOMIOPATHI (RINGAN)', 3869400.00, 4507800.00, 5146300.00), +('I-4-22-II', 'KARDIOMIOPATHI (SEDANG)', 4546800.00, 5297000.00, 6047300.00), +('I-4-22-III', 'KARDIOMIOPATHI (BERAT)', 6706800.00, 7813400.00, 8920000.00), +('I-4-23-I', 'MALFUNGSI, REAKSI DAN KOMPLIKASI DARI ALAT ATAU PROSEDUR KARDIOVASKULER (RINGAN)', 4886800.00, 5693100.00, 6499500.00), +('I-4-23-II', 'MALFUNGSI, REAKSI DAN KOMPLIKASI DARI ALAT ATAU PROSEDUR KARDIOVASKULER (SEDANG)', 6867900.00, 8001100.00, 9134400.00), +('I-4-23-III', 'MALFUNGSI, REAKSI DAN KOMPLIKASI DARI ALAT ATAU PROSEDUR KARDIOVASKULER (BERAT)', 11722800.00, 13657100.00, 15591400.00), +('I-4-24-I', 'GANGGUAN SISTEM PEMBULUH DARAH LAIN-LAIN (RINGAN)', 3364700.00, 3919800.00, 4475000.00), +('I-4-24-II', 'GANGGUAN SISTEM PEMBULUH DARAH LAIN-LAIN (SEDANG)', 7480400.00, 8714600.00, 9948900.00), +('I-4-24-III', 'GANGGUAN SISTEM PEMBULUH DARAH LAIN-LAIN (BERAT)', 9376600.00, 10923700.00, 12470900.00), +('J-1-01-I', 'VENTILASI MEKANIKAL LONG TERM DENGAN TRAKEOSTOMI (RINGAN)', 100590700.00, 117188200.00, 133785700.00), +('J-1-01-II', 'VENTILASI MEKANIKAL LONG TERM DENGAN TRAKEOSTOMI (SEDANG)', 113837100.00, 132620200.00, 151403400.00), +('J-1-01-III', 'VENTILASI MEKANIKAL LONG TERM DENGAN TRAKEOSTOMI (BERAT)', 156147200.00, 181911500.00, 207675800.00), +('J-1-02-I', 'VENTILASI MEKANIKAL LONG TERM TANPA TRAKEOSTOMI (RINGAN)', 62014000.00, 72246300.00, 82478600.00), +('J-1-02-II', 'VENTILASI MEKANIKAL LONG TERM TANPA TRAKEOSTOMI (SEDANG)', 78249600.00, 91160800.00, 104072000.00), +('J-1-02-III', 'VENTILASI MEKANIKAL LONG TERM TANPA TRAKEOSTOMI (BERAT)', 91540900.00, 106645200.00, 121749400.00), +('J-1-10-I', 'PROSEDUR SISTEM PERNAFASAN SANGAT KOMPLEKS (RINGAN)', 35651800.00, 41534400.00, 47416900.00), +('J-1-10-II', 'PROSEDUR SISTEM PERNAFASAN SANGAT KOMPLEKS (SEDANG)', 39314400.00, 45801300.00, 52288200.00), +('J-1-10-III', 'PROSEDUR SISTEM PERNAFASAN SANGAT KOMPLEKS (BERAT)', 46983600.00, 54735800.00, 62488100.00), +('J-1-20-I', 'PROSEDUR SISTEM PERNAFASAN NON-KOMPLEKS (RINGAN)', 35243900.00, 41059100.00, 46874400.00), +('J-1-20-II', 'PROSEDUR SISTEM PERNAFASAN NON-KOMPLEKS (SEDANG)', 36905100.00, 42994400.00, 49083800.00), +('J-1-20-III', 'PROSEDUR SISTEM PERNAFASAN NON-KOMPLEKS (BERAT)', 46515700.00, 54190700.00, 61865800.00), +('J-1-30-I', 'PROSEDUR SISTEM PERNAFASAN KOMPLEKS (RINGAN)', 10676600.00, 12438200.00, 14199900.00), +('J-1-30-II', 'PROSEDUR SISTEM PERNAFASAN KOMPLEKS (SEDANG)', 23742000.00, 27659500.00, 31576900.00), +('J-1-30-III', 'PROSEDUR SISTEM PERNAFASAN KOMPLEKS (BERAT)', 44660300.00, 52029300.00, 59398200.00), +('J-4-10-I', 'KISTA FIBROSIS (RINGAN)', 5851900.00, 6817400.00, 7783000.00), +('J-4-10-II', 'KISTA FIBROSIS (SEDANG)', 8443800.00, 9837000.00, 11230200.00), +('J-4-10-III', 'KISTA FIBROSIS (BERAT)', 10286800.00, 11984100.00, 13681500.00), +('J-4-11-I', 'KEGAGALAN PERNAFASAN (RINGAN)', 4121100.00, 4801000.00, 5481000.00), +('J-4-11-II', 'KEGAGALAN PERNAFASAN (SEDANG)', 5946400.00, 6927500.00, 7908600.00), +('J-4-11-III', 'KEGAGALAN PERNAFASAN (BERAT)', 7269300.00, 8468700.00, 9668200.00), +('J-4-12-I', 'EMBOLI PARU (RINGAN)', 6613500.00, 7704700.00, 8796000.00), +('J-4-12-II', 'EMBOLI PARU (SEDANG)', 7659300.00, 8923100.00, 10186900.00), +('J-4-12-III', 'EMBOLI PARU (BERAT)', 10754500.00, 12529000.00, 14303500.00), +('J-4-13-I', 'TRAUMA DADA (RINGAN)', 5847500.00, 6812300.00, 7777200.00), +('J-4-13-II', 'TRAUMA DADA (SEDANG)', 8139500.00, 9482500.00, 10825600.00), +('J-4-13-III', 'TRAUMA DADA (BERAT)', 15185600.00, 17691200.00, 20196900.00), +('J-4-14-I', 'TUMOR PARU (RINGAN)', 6447000.00, 7510700.00, 8574400.00), +('J-4-14-II', 'TUMOR PARU (SEDANG)', 10491100.00, 12222100.00, 13953100.00), +('J-4-14-III', 'TUMOR PARU (BERAT)', 12412000.00, 14460000.00, 16507900.00), +('J-4-15-I', 'PERADANGAN DAN INFEKSI PERNAFASAN (RINGAN)', 4665100.00, 5434800.00, 6204600.00), +('J-4-15-II', 'PERADANGAN DAN INFEKSI PERNAFASAN (SEDANG)', 7725400.00, 9000100.00, 10274800.00), +('J-4-15-III', 'PERADANGAN DAN INFEKSI PERNAFASAN (BERAT)', 14031600.00, 16346800.00, 18662000.00), +('J-4-16-I', 'SIMPLE PNEUMONIA & WHOOPING COUGH (RINGAN)', 3887000.00, 4528400.00, 5169800.00), +('J-4-16-II', 'SIMPLE PNEUMONIA & WHOOPING COUGH (SEDANG)', 7571200.00, 8820400.00, 10069700.00), +('J-4-16-III', 'SIMPLE PNEUMONIA & WHOOPING COUGH (BERAT)', 12923000.00, 15055300.00, 17187600.00), +('J-4-17-I', 'PENYAKIT PARU OBSTRUKTIF KRONIS (RINGAN)', 5387100.00, 6276000.00, 7164800.00), +('J-4-17-II', 'PENYAKIT PARU OBSTRUKTIF KRONIS (SEDANG)', 6451200.00, 7515600.00, 8580000.00), +('J-4-17-III', 'PENYAKIT PARU OBSTRUKTIF KRONIS (BERAT)', 8465800.00, 9862700.00, 11259500.00), +('J-4-18-I', 'ASTHMA & BRONKIOLITIS (RINGAN)', 2394600.00, 2789700.00, 3184800.00), +('J-4-18-II', 'ASTHMA & BRONKIOLITIS (SEDANG)', 4565100.00, 5318300.00, 6071600.00), +('J-4-18-III', 'ASTHMA & BRONKIOLITIS (BERAT)', 6487300.00, 7557700.00, 8628100.00), +('J-4-19-I', 'PENYAKIT PARU INTERSTITIAL (RINGAN)', 6829100.00, 7955900.00, 9082700.00), +('J-4-19-II', 'PENYAKIT PARU INTERSTITIAL (SEDANG)', 7744600.00, 9022400.00, 10300300.00), +('J-4-19-III', 'PENYAKIT PARU INTERSTITIAL (BERAT)', 8552900.00, 9964100.00, 11375400.00), +('J-4-20-I', 'PLEURAL EFUSI DAN PNEUMOTORAK (RINGAN)', 5640300.00, 6570900.00, 7501500.00), +('J-4-20-II', 'PLEURAL EFUSI DAN PNEUMOTORAK (SEDANG)', 7985100.00, 9302600.00, 10620100.00), +('J-4-20-III', 'PLEURAL EFUSI DAN PNEUMOTORAK (BERAT)', 8946000.00, 10422100.00, 11898100.00), +('J-4-21-I', 'GEJALA, TANDA DAN DIAGNOSIS SISTEM PERNAFASAN LAIN-LAIN (RINGAN)', 3103700.00, 3615800.00, 4127900.00), +('J-4-21-II', 'GEJALA, TANDA DAN DIAGNOSIS SISTEM PERNAFASAN LAIN-LAIN (SEDANG)', 6930400.00, 8073900.00, 9217500.00), +('J-4-21-III', 'GEJALA, TANDA DAN DIAGNOSIS SISTEM PERNAFASAN LAIN-LAIN (BERAT)', 13055600.00, 15209800.00, 17364000.00), +('K-1-10-I', 'PROSEDUR NON KOMPLEKS USUS HALUS & USUS BESAR (RINGAN)', 11598200.00, 13511900.00, 15425600.00), +('K-1-10-II', 'PROSEDUR NON KOMPLEKS USUS HALUS & USUS BESAR (SEDANG)', 14985300.00, 17457800.00, 19930400.00), +('K-1-10-III', 'PROSEDUR NON KOMPLEKS USUS HALUS & USUS BESAR (BERAT)', 17375100.00, 20241900.00, 23108800.00), +('K-1-11-I', 'ADHESIOLISIS PERITONEAL (RINGAN)', 10892100.00, 12689300.00, 14486500.00), +('K-1-11-II', 'ADHESIOLISIS PERITONEAL (SEDANG)', 14300000.00, 16659500.00, 19019000.00), +('K-1-11-III', 'ADHESIOLISIS PERITONEAL (BERAT)', 28265200.00, 32928900.00, 37592700.00), +('K-1-12-I', 'PROSEDUR HERNIA TIDAK TERMASUK INGUINAL & FEMORAL (RINGAN)', 6945300.00, 8091300.00, 9237200.00), +('K-1-12-II', 'PROSEDUR HERNIA TIDAK TERMASUK INGUINAL & FEMORAL (SEDANG)', 8436900.00, 9829000.00, 11221100.00), +('K-1-12-III', 'PROSEDUR HERNIA TIDAK TERMASUK INGUINAL & FEMORAL (BERAT)', 15851200.00, 18466700.00, 21082100.00), +('K-1-13-I', 'PROSEDUR APPENDIK (RINGAN)', 5891300.00, 6863300.00, 7835300.00), +('K-1-13-II', 'PROSEDUR APPENDIK (SEDANG)', 7014800.00, 8172200.00, 9329600.00), +('K-1-13-III', 'PROSEDUR APPENDIK (BERAT)', 9648800.00, 11240800.00, 12832800.00), +('K-1-14-I', 'PROSEDUR HERNIA INGUINAL DAN FEMORAL (RINGAN)', 8016000.00, 9338600.00, 10661300.00), +('K-1-14-II', 'PROSEDUR HERNIA INGUINAL DAN FEMORAL (SEDANG)', 9394500.00, 10944600.00, 12494700.00), +('K-1-14-III', 'PROSEDUR HERNIA INGUINAL DAN FEMORAL (BERAT)', 16400100.00, 19106100.00, 21812100.00), +('K-1-20-I', 'PROSEDUR INTESTINAL KOMPLEKS (RINGAN)', 17246000.00, 20091600.00, 22937200.00), +('K-1-20-II', 'PROSEDUR INTESTINAL KOMPLEKS (SEDANG)', 24088800.00, 28063400.00, 32038100.00), +('K-1-20-III', 'PROSEDUR INTESTINAL KOMPLEKS (BERAT)', 35172200.00, 40975600.00, 46779000.00), +('K-1-30-I', 'PROSEDUR DUODENUM, ESOFAGUS & LAMBUNG NON KOMPLEKS (RINGAN)', 11089400.00, 12919100.00, 14748900.00), +('K-1-30-II', 'PROSEDUR DUODENUM, ESOFAGUS & LAMBUNG NON KOMPLEKS (SEDANG)', 18113500.00, 21102200.00, 24091000.00), +('K-1-30-III', 'PROSEDUR DUODENUM, ESOFAGUS & LAMBUNG NON KOMPLEKS (BERAT)', 24924400.00, 29036900.00, 33149500.00), +('K-1-40-I', 'PROSEDUR SISTEM PENCERNAAN LAIN-LAIN (RINGAN)', 11379900.00, 13257600.00, 15135300.00), +('K-1-40-II', 'PROSEDUR SISTEM PENCERNAAN LAIN-LAIN (SEDANG)', 12546700.00, 14616900.00, 16687200.00), +('K-1-40-III', 'PROSEDUR SISTEM PENCERNAAN LAIN-LAIN (BERAT)', 21262200.00, 24770500.00, 28278800.00), +('K-1-50-I', 'PROSEDUR ANAL (RINGAN)', 8695500.00, 10130200.00, 11564900.00), +('K-1-50-II', 'PROSEDUR ANAL (SEDANG)', 11292200.00, 13155400.00, 15018500.00), +('K-1-50-III', 'PROSEDUR ANAL (BERAT)', 15957800.00, 18590800.00, 21223800.00), +('K-4-10-I', 'TUMOR PENCERNAAN (RINGAN)', 7178500.00, 8363000.00, 9547500.00), +('K-4-10-II', 'TUMOR PENCERNAAN (SEDANG)', 10314500.00, 12016400.00, 13718300.00), +('K-4-10-III', 'TUMOR PENCERNAAN (BERAT)', 15723800.00, 18318200.00, 20912700.00), +('K-4-11-I', 'GASTRITIS & ULKUS PEPTIKUM (RINGAN)', 3397500.00, 3958000.00, 4518600.00), +('K-4-11-II', 'GASTRITIS & ULKUS PEPTIKUM (SEDANG)', 5902600.00, 6876600.00, 7850500.00), +('K-4-11-III', 'GASTRITIS & ULKUS PEPTIKUM (BERAT)', 6994500.00, 8148600.00, 9302600.00), +('K-4-12-I', 'GANGGUAN ESOFAGUS (RINGAN)', 4315200.00, 5027200.00, 5739300.00), +('K-4-12-II', 'GANGGUAN ESOFAGUS (SEDANG)', 5807000.00, 6765100.00, 7723300.00), +('K-4-12-III', 'GANGGUAN ESOFAGUS (BERAT)', 9606600.00, 11191700.00, 12776800.00), +('K-4-13-I', 'DIVERTIKULITIS, DIVERTIKULOSIS DAN PENYAKIT PERADANGAN USUS BESAR (RINGAN)', 5856300.00, 6822600.00, 7788900.00), +('K-4-13-II', 'DIVERTIKULITIS, DIVERTIKULOSIS DAN PENYAKIT PERADANGAN USUS BESAR (SEDANG)', 8450000.00, 9844300.00, 11238500.00), +('K-4-13-III', 'DIVERTIKULITIS, DIVERTIKULOSIS DAN PENYAKIT PERADANGAN USUS BESAR (BERAT)', 11800500.00, 13747600.00, 15694600.00), +('K-4-14-I', 'GANGGUAN PEMBULUH DARAH GASTROINTERTINAL (RINGAN)', 3319400.00, 3867100.00, 4414800.00), +('K-4-14-II', 'GANGGUAN PEMBULUH DARAH GASTROINTERTINAL (SEDANG)', 4455600.00, 5190800.00, 5926000.00), +('K-4-14-III', 'GANGGUAN PEMBULUH DARAH GASTROINTERTINAL (BERAT)', 7149500.00, 8329200.00, 9508900.00), +('K-4-15-I', 'OBSTRUKSI SALURAN GASTROINTESTINAL (RINGAN)', 4731300.00, 5512000.00, 6292700.00), +('K-4-15-II', 'OBSTRUKSI SALURAN GASTROINTESTINAL (SEDANG)', 7286700.00, 8489000.00, 9691300.00), +('K-4-15-III', 'OBSTRUKSI SALURAN GASTROINTESTINAL (BERAT)', 10371600.00, 12082900.00, 13794300.00), +('K-4-16-I', 'INFEKSI-INFEKSI GASTROINTESTINAL (RINGAN)', 4407600.00, 5134900.00, 5862100.00), +('K-4-16-II', 'INFEKSI-INFEKSI GASTROINTESTINAL (SEDANG)', 5754600.00, 6704100.00, 7653600.00), +('K-4-16-III', 'INFEKSI-INFEKSI GASTROINTESTINAL (BERAT)', 8194100.00, 9546100.00, 10898100.00), +('K-4-17-I', 'NYERI ABDOMEN & GASTROENTERITIS LAIN-LAIN (RINGAN)', 2101900.00, 2448700.00, 2795400.00), +('K-4-17-II', 'NYERI ABDOMEN & GASTROENTERITIS LAIN-LAIN (SEDANG)', 2588400.00, 3015500.00, 3442500.00), +('K-4-17-III', 'NYERI ABDOMEN & GASTROENTERITIS LAIN-LAIN (BERAT)', 3128400.00, 3644600.00, 4160700.00), +('K-4-18-I', 'GANGGUAN SISTEM PENCERNAAN LAIN-LAIN (RINGAN)', 1905800.00, 2220200.00, 2534700.00), +('K-4-18-II', 'GANGGUAN SISTEM PENCERNAAN LAIN-LAIN (SEDANG)', 3125500.00, 3641200.00, 4157000.00), +('K-4-18-III', 'GANGGUAN SISTEM PENCERNAAN LAIN-LAIN (BERAT)', 3750600.00, 4369400.00, 4988300.00), +('L-1-20-I', 'PEMINDAHAN KULIT PADA LUKA BAKAR (RINGAN)', 27496600.00, 32033500.00, 36570500.00), +('L-1-20-II', 'PEMINDAHAN KULIT PADA LUKA BAKAR (SEDANG)', 41505400.00, 48353800.00, 55202200.00), +('L-1-20-III', 'PEMINDAHAN KULIT PADA LUKA BAKAR (BERAT)', 59373200.00, 69169800.00, 78966400.00), +('L-1-30-I', 'PEMINDAHAN KULIT TANPA LUKA BAKAR (RINGAN)', 12973200.00, 15113800.00, 17254400.00), +('L-1-30-II', 'PEMINDAHAN KULIT TANPA LUKA BAKAR (SEDANG)', 22261100.00, 25934200.00, 29607300.00), +('L-1-30-III', 'PEMINDAHAN KULIT TANPA LUKA BAKAR (BERAT)', 27637500.00, 32197700.00, 36757900.00), +('L-1-40-I', 'PROSEDUR PADA KULIT, JARINGAN) BAWAH KULIT (RINGAN)', 7270600.00, 8470200.00, 9669800.00), +('L-1-40-II', 'PROSEDUR PADA KULIT, JARINGAN) BAWAH KULIT (SEDANG)', 12533300.00, 14601300.00, 16669200.00), +('L-1-40-III', 'PROSEDUR PADA KULIT, JARINGAN) BAWAH KULIT (BERAT)', 20585100.00, 23981600.00, 27378100.00), +('L-1-50-I', 'PROSEDUR PADA PAYUDARA (RINGAN)', 9544700.00, 11119600.00, 12694500.00), +('L-1-50-II', 'PROSEDUR PADA PAYUDARA (SEDANG)', 15361100.00, 17895700.00, 20430300.00), +('L-1-50-III', 'PROSEDUR PADA PAYUDARA (BERAT)', 21972500.00, 25598000.00, 29223500.00), +('L-4-10-I', 'PENYAKIT KULIT MAYOR (RINGAN)', 2754100.00, 3208500.00, 3662900.00), +('L-4-10-II', 'PENYAKIT KULIT MAYOR (SEDANG)', 3424400.00, 3989400.00, 4554500.00), +('L-4-10-III', 'PENYAKIT KULIT MAYOR (BERAT)', 3922200.00, 4569300.00, 5216500.00), +('L-4-11-I', 'TUMOR PAYUDARA (RINGAN)', 5228000.00, 6090600.00, 6953300.00), +('L-4-11-II', 'TUMOR PAYUDARA (SEDANG)', 7185400.00, 8371000.00, 9556600.00), +('L-4-11-III', 'TUMOR PAYUDARA (BERAT)', 16327400.00, 19021400.00, 21715500.00), +('L-4-12-I', 'PERADANGAN KULIT/CELLULITIS (RINGAN)', 2821600.00, 3287100.00, 3752600.00), +('L-4-12-II', 'PERADANGAN KULIT/CELLULITIS (SEDANG)', 3940700.00, 4590900.00, 5241000.00), +('L-4-12-III', 'PERADANGAN KULIT/CELLULITIS (BERAT)', 10858500.00, 12650100.00, 14441700.00), +('L-4-13-I', 'TRAUMA PADA KULIT, JA(RINGAN) BAWAH KULIT DAN PAYUDARA (RINGAN)', 3560200.00, 4147600.00, 4735100.00), +('L-4-13-II', 'TRAUMA PADA KULIT, JA(RINGAN) BAWAH KULIT DAN PAYUDARA (SEDANG)', 4789000.00, 5579200.00, 6369400.00), +('L-4-13-III', 'TRAUMA PADA KULIT, JA(RINGAN) BAWAH KULIT DAN PAYUDARA (BERAT)', 8555500.00, 9967200.00, 11378900.00), +('L-4-14-I', 'GANGGUAN PADA KULIT & PAYUDARA LAIN-LAIN (RINGAN)', 4299400.00, 5008800.00, 5718200.00), +('L-4-14-II', 'GANGGUAN PADA KULIT & PAYUDARA LAIN-LAIN (SEDANG)', 6457800.00, 7523300.00, 8588900.00), +('L-4-14-III', 'GANGGUAN PADA KULIT & PAYUDARA LAIN-LAIN (BERAT)', 9103100.00, 10605100.00, 12107100.00), +('M-1-01-I', 'PROSEDUR BILATERAL DAN MULTIPLE PADA SENDI TUNGKAI BAWAH (RINGAN)', 15197800.00, 17705400.00, 20213100.00), +('M-1-01-II', 'PROSEDUR BILATERAL DAN MULTIPLE PADA SENDI TUNGKAI BAWAH (SEDANG)', 21813200.00, 25412300.00, 29011500.00), +('M-1-01-III', 'PROSEDUR BILATERAL DAN MULTIPLE PADA SENDI TUNGKAI BAWAH (BERAT)', 35374200.00, 41211000.00, 47047700.00), +('M-1-02-I', 'AMPUTASI (RINGAN)', 13470100.00, 15692600.00, 17915200.00), +('M-1-02-II', 'AMPUTASI (SEDANG)', 22097000.00, 25743000.00, 29389100.00), +('M-1-02-III', 'AMPUTASI (BERAT)', 37542300.00, 43736800.00, 49931300.00), +('M-1-03-I', 'PROSEDUR FUSI TULANG BELAKANG PADA LENGKUNGAN TULANG BELAKANG (RINGAN)', 53844600.00, 62728900.00, 71613200.00), +('M-1-03-II', 'PROSEDUR FUSI TULANG BELAKANG PADA LENGKUNGAN TULANG BELAKANG (SEDANG)', 62979000.00, 73370500.00, 83762000.00), +('M-1-03-III', 'PROSEDUR FUSI TULANG BELAKANG PADA LENGKUNGAN TULANG BELAKANG (BERAT)', 77947000.00, 90808300.00, 103669500.00), +('M-1-04-I', 'PROSEDUR PADA SENDI TUNGKAI BAWAH (RINGAN)', 31713400.00, 36946100.00, 42178700.00), +('M-1-04-II', 'PROSEDUR PADA SENDI TUNGKAI BAWAH (SEDANG)', 38971000.00, 45401200.00, 51831400.00), +('M-1-04-III', 'PROSEDUR PADA SENDI TUNGKAI BAWAH (BERAT)', 46205800.00, 53829800.00, 61453700.00), +('M-1-05-I', 'PROSEDUR PADA SENDI TUNGKAI ATAS (RINGAN)', 16970900.00, 19771000.00, 22571200.00), +('M-1-05-II', 'PROSEDUR PADA SENDI TUNGKAI ATAS (SEDANG)', 21554700.00, 25111200.00, 28667700.00), +('M-1-05-III', 'PROSEDUR PADA SENDI TUNGKAI ATAS (BERAT)', 25632200.00, 29861500.00, 34090800.00), +('M-1-07-I', 'PROSEDUR FUSI TULANG BELAKANG SELAIN LENGKUNGAN TULANG BELAKANG (RINGAN)', 27367500.00, 31883100.00, 36398700.00), +('M-1-07-II', 'PROSEDUR FUSI TULANG BELAKANG SELAIN LENGKUNGAN TULANG BELAKANG (SEDANG)', 32349500.00, 37687200.00, 43024800.00), +('M-1-07-III', 'PROSEDUR FUSI TULANG BELAKANG SELAIN LENGKUNGAN TULANG BELAKANG (BERAT)', 41077100.00, 47854800.00, 54632500.00), +('M-1-10-I', 'PROSEDUR KRANIAL DAN REKONSTRUKSI TULANG WAJAH (RINGAN)', 23703800.00, 27614900.00, 31526000.00), +('M-1-10-II', 'PROSEDUR KRANIAL DAN REKONSTRUKSI TULANG WAJAH (SEDANG)', 55375100.00, 64512000.00, 73648900.00), +('M-1-10-III', 'PROSEDUR KRANIAL DAN REKONSTRUKSI TULANG WAJAH (BERAT)', 119438900.00, 139146300.00, 158853800.00), +('M-1-20-I', 'PROSEDUR PADA PAHA DAN SENDI PANGGUL (RINGAN)', 18047500.00, 21025300.00, 24003200.00), +('M-1-20-II', 'PROSEDUR PADA PAHA DAN SENDI PANGGUL (SEDANG)', 23061000.00, 26866100.00, 30671200.00), +('M-1-20-III', 'PROSEDUR PADA PAHA DAN SENDI PANGGUL (BERAT)', 57406100.00, 66878100.00, 76350100.00), +('M-1-30-I', 'PROSEDUR KAKI (RINGAN)', 12381000.00, 14423900.00, 16466800.00), +('M-1-30-II', 'PROSEDUR KAKI (SEDANG)', 20062300.00, 23372600.00, 26682900.00), +('M-1-30-III', 'PROSEDUR KAKI (BERAT)', 28687300.00, 33420700.00, 38154200.00), +('M-1-40-I', 'EKSISI LOKAL DAN PENGANGKATAN ALAT FIKSASI INTERNAL (RINGAN)', 7562900.00, 8810800.00, 10058700.00), +('M-1-40-II', 'EKSISI LOKAL DAN PENGANGKATAN ALAT FIKSASI INTERNAL (SEDANG)', 11177100.00, 13021300.00, 14865600.00), +('M-1-40-III', 'EKSISI LOKAL DAN PENGANGKATAN ALAT FIKSASI INTERNAL (BERAT)', 16521300.00, 19247300.00, 21973300.00), +('M-1-50-I', 'PROSEDUR JARINGAN LUNAK (RINGAN)', 7552600.00, 8798800.00, 10044900.00), +('M-1-50-II', 'PROSEDUR JARINGAN LUNAK (SEDANG)', 13786600.00, 16061400.00, 18336200.00), +('M-1-50-III', 'PROSEDUR JARINGAN LUNAK (BERAT)', 22643600.00, 26379800.00, 30116000.00), +('M-1-60-I', 'PROSEDUR SISTEM MUSKULOSKLETAL & JARINGAN PENGHUBUNG LAIN-LAIN (RINGAN)', 11664200.00, 13588800.00, 15513400.00), +('M-1-60-II', 'PROSEDUR SISTEM MUSKULOSKLETAL & JARINGAN PENGHUBUNG LAIN-LAIN (SEDANG)', 14664600.00, 17084200.00, 19503900.00), +('M-1-60-III', 'PROSEDUR SISTEM MUSKULOSKLETAL & JARINGAN PENGHUBUNG LAIN-LAIN (BERAT)', 22152600.00, 25807800.00, 29463000.00), +('M-1-70-I', 'PROSEDUR LUTUT DAN TUNGKAI BAWAH SELAIN KAKI (RINGAN)', 21610100.00, 25175700.00, 28741400.00), +('M-1-70-II', 'PROSEDUR LUTUT DAN TUNGKAI BAWAH SELAIN KAKI (SEDANG)', 23771000.00, 27693200.00, 31615500.00), +('M-1-70-III', 'PROSEDUR LUTUT DAN TUNGKAI BAWAH SELAIN KAKI (BERAT)', 27214600.00, 31705000.00, 36195500.00), +('M-1-80-I', 'PROSEDUR ANGGOTA TUBUH ATAS (RINGAN)', 12284500.00, 14311400.00, 16338300.00), +('M-1-80-II', 'PROSEDUR ANGGOTA TUBUH ATAS (SEDANG)', 14588900.00, 16996100.00, 19403200.00), +('M-1-80-III', 'PROSEDUR ANGGOTA TUBUH ATAS (BERAT)', 29552700.00, 34428900.00, 39305100.00), +('M-4-10-I', 'FRAKTUR FEMUR (RINGAN)', 4327300.00, 5041300.00, 5755400.00), +('M-4-10-II', 'FRAKTUR FEMUR (SEDANG)', 6886700.00, 8023000.00, 9159300.00), +('M-4-10-III', 'FRAKTUR FEMUR (BERAT)', 13390300.00, 15599700.00, 17809000.00), +('M-4-11-I', 'FRAKTUR PELVIS ATAU DISLOKASI SENDI PANGGUL (RINGAN)', 5903500.00, 6877500.00, 7851600.00), +('M-4-11-II', 'FRAKTUR PELVIS ATAU DISLOKASI SENDI PANGGUL (SEDANG)', 11822300.00, 13773000.00, 15723700.00), +('M-4-11-III', 'FRAKTUR PELVIS ATAU DISLOKASI SENDI PANGGUL (BERAT)', 17093100.00, 19913400.00, 22733800.00), +('M-4-12-I', 'FRAKTUR/DISLOKASI SELAIN FEMUR DAN PELVIS (RINGAN)', 4304300.00, 5014500.00, 5724700.00), +('M-4-12-II', 'FRAKTUR/DISLOKASI SELAIN FEMUR DAN PELVIS (SEDANG)', 7159100.00, 8340400.00, 9521700.00), +('M-4-12-III', 'FRAKTUR/DISLOKASI SELAIN FEMUR DAN PELVIS (BERAT)', 9576100.00, 11156200.00, 12736300.00), +('M-4-13-I', 'TUMOR MUSKULOSKLETAL,JARINGAN KONEKTIF DAN FRAKTUR PATOLOGIS (RINGAN)', 7167000.00, 8349600.00, 9532200.00), +('M-4-13-II', 'TUMOR MUSKULOSKLETAL,JARINGAN KONEKTIF DAN FRAKTUR PATOLOGIS (SEDANG)', 10768100.00, 12544800.00, 14321600.00), +('M-4-13-III', 'TUMOR MUSKULOSKLETAL,JARINGAN KONEKTIF DAN FRAKTUR PATOLOGIS (BERAT)', 21008300.00, 24474700.00, 27941100.00), +('M-4-14-I', 'OSTEOMIELITIS (RINGAN)', 8387500.00, 9771400.00, 11155300.00), +('M-4-14-II', 'OSTEOMIELITIS (SEDANG)', 10081100.00, 11744500.00, 13407900.00), +('M-4-14-III', 'OSTEOMIELITIS (BERAT)', 15148900.00, 17648500.00, 20148100.00), +('M-4-15-I', 'ARTRITIS SEPSIS (RINGAN)', 5227400.00, 6089900.00, 6952400.00), +('M-4-15-II', 'ARTRITIS SEPSIS (SEDANG)', 7392400.00, 8612100.00, 9831900.00), +('M-4-15-III', 'ARTRITIS SEPSIS (BERAT)', 14660600.00, 17079600.00, 19498600.00); +INSERT INTO `ina_cbg_rawatinap` (`ID_INACBG_RI`, `Tindakan_RI`, `Tarif_Kelas_1`, `Tarif_Kelas_2`, `Tarif_Kelas_3`) VALUES +('M-4-16-I', 'GANGGUAN JARINGAN KONEKTIF (RINGAN)', 4149700.00, 4834400.00, 5519000.00), +('M-4-16-II', 'GANGGUAN JARINGAN KONEKTIF (SEDANG)', 6645200.00, 7741600.00, 8838000.00), +('M-4-16-III', 'GANGGUAN JARINGAN KONEKTIF (BERAT)', 11721500.00, 13655500.00, 15589500.00), +('M-4-17-I', 'MASALAH BAGIAN PUNGGUNG/PINGGANG BELAKANG (RINGAN)', 4847000.00, 5646800.00, 6446600.00), +('M-4-17-II', 'MASALAH BAGIAN PUNGGUNG/PINGGANG BELAKANG (SEDANG)', 6779100.00, 7897700.00, 9016300.00), +('M-4-17-III', 'MASALAH BAGIAN PUNGGUNG/PINGGANG BELAKANG (BERAT)', 9466600.00, 11028600.00, 12590600.00), +('M-4-18-I', 'PENYAKIT TULANG DAN SENDI LAIN-LAIN (RINGAN)', 4070700.00, 4742400.00, 5414100.00), +('M-4-18-II', 'PENYAKIT TULANG DAN SENDI LAIN-LAIN (SEDANG)', 6134700.00, 7146900.00, 8159200.00), +('M-4-18-III', 'PENYAKIT TULANG DAN SENDI LAIN-LAIN (BERAT)', 7386400.00, 8605200.00, 9824000.00), +('M-4-19-I', 'MALFUNGSI, REAKSI ATAU KOMPLIKASI DARI PROSEDUR ATAU PEMASANGAN ALAT ORTOPEDIK (RINGAN)', 6345700.00, 7392800.00, 8439800.00), +('M-4-19-II', 'MALFUNGSI, REAKSI ATAU KOMPLIKASI DARI PROSEDUR ATAU PEMASANGAN ALAT ORTOPEDIK (SEDANG)', 11036200.00, 12857200.00, 14678100.00), +('M-4-19-III', 'MALFUNGSI, REAKSI ATAU KOMPLIKASI DARI PROSEDUR ATAU PEMASANGAN ALAT ORTOPEDIK (BERAT)', 13965000.00, 16269200.00, 18573500.00), +('M-4-20-I', 'TANDA, GEJALA & PERADANGAN MUSKULOSKELETAL (RINGAN)', 3854000.00, 4489900.00, 5125800.00), +('M-4-20-II', 'TANDA, GEJALA & PERADANGAN MUSKULOSKELETAL (SEDANG)', 5643400.00, 6574500.00, 7505700.00), +('M-4-20-III', 'TANDA, GEJALA & PERADANGAN MUSKULOSKELETAL (BERAT)', 6466300.00, 7533300.00, 8600200.00), +('M-4-21-I', 'GANGGUAN SISTEM MUSKULOSKELETAL & JA(RINGAN) PENYAMBUNG LAIN-LAIN (RINGAN)', 5043700.00, 5875900.00, 6708000.00), +('M-4-21-II', 'GANGGUAN SISTEM MUSKULOSKELETAL & JA(RINGAN) PENYAMBUNG LAIN-LAIN (SEDANG)', 6150000.00, 7164700.00, 8179400.00), +('M-4-21-III', 'GANGGUAN SISTEM MUSKULOSKELETAL & JA(RINGAN) PENYAMBUNG LAIN-LAIN (BERAT)', 10881500.00, 12676900.00, 14472300.00), +('N-1-01-I', 'TRANSPLANTASI GINJAL (RINGAN)', 298446200.00, 347689800.00, 396933500.00), +('N-1-01-II', 'TRANSPLANTASI GINJAL (SEDANG)', 299938400.00, 349428300.00, 398918100.00), +('N-1-01-III', 'TRANSPLANTASI GINJAL (BERAT)', 300973400.00, 350634000.00, 400294600.00), +('N-1-11-I', 'PROSEDUR KANDUNG KEMIH KOMPLEK (RINGAN)', 12437100.00, 14489200.00, 16541400.00), +('N-1-11-II', 'PROSEDUR KANDUNG KEMIH KOMPLEK (SEDANG)', 19666100.00, 22911000.00, 26156000.00), +('N-1-11-III', 'PROSEDUR KANDUNG KEMIH KOMPLEK (BERAT)', 30659400.00, 35718200.00, 40777100.00), +('N-1-12-I', 'MEMBUAT BARU, MEREVISI DAN MEMINDAHKAN ALAT DIALISIS (RINGAN)', 8495400.00, 9897100.00, 11298800.00), +('N-1-12-II', 'MEMBUAT BARU, MEREVISI DAN MEMINDAHKAN ALAT DIALISIS (SEDANG)', 13530700.00, 15763300.00, 17995800.00), +('N-1-12-III', 'MEMBUAT BARU, MEREVISI DAN MEMINDAHKAN ALAT DIALISIS (BERAT)', 27385600.00, 31904200.00, 36422800.00), +('N-1-20-I', 'PROSEDUR SALURAN URIN ATAS (RINGAN)', 13859000.00, 16145700.00, 18432500.00), +('N-1-20-II', 'PROSEDUR SALURAN URIN ATAS (SEDANG)', 19394900.00, 22595100.00, 25795300.00), +('N-1-20-III', 'PROSEDUR SALURAN URIN ATAS (BERAT)', 27140800.00, 31619000.00, 36097300.00), +('N-1-30-I', 'PROSEDUR KANDUNG KEMIH DAN SALURAN URIN BAWAH (RINGAN)', 12683400.00, 14776200.00, 16869000.00), +('N-1-30-II', 'PROSEDUR KANDUNG KEMIH DAN SALURAN URIN BAWAH (SEDANG)', 19187500.00, 22353400.00, 25519400.00), +('N-1-30-III', 'PROSEDUR KANDUNG KEMIH DAN SALURAN URIN BAWAH (BERAT)', 22083000.00, 25726700.00, 29370400.00), +('N-1-40-I', 'PROSEDUR PADA URETRA DAN TRANSURETRA (RINGAN)', 11390700.00, 13270200.00, 15149600.00), +('N-1-40-II', 'PROSEDUR PADA URETRA DAN TRANSURETRA (SEDANG)', 15468200.00, 18020500.00, 20572700.00), +('N-1-40-III', 'PROSEDUR PADA URETRA DAN TRANSURETRA (BERAT)', 18003100.00, 20973600.00, 23944000.00), +('N-4-10-I', 'TUMOR GINJAL & SALURAN URIN & GAGAL GINJAL (RINGAN)', 4839500.00, 5638000.00, 6436500.00), +('N-4-10-II', 'TUMOR GINJAL & SALURAN URIN & GAGAL GINJAL (SEDANG)', 5853500.00, 6819300.00, 7785100.00), +('N-4-10-III', 'TUMOR GINJAL & SALURAN URIN & GAGAL GINJAL (BERAT)', 8609500.00, 10030100.00, 11450600.00), +('N-4-11-I', 'PERADANGAN GINJAL (RINGAN)', 3715100.00, 4328100.00, 4941100.00), +('N-4-11-II', 'PERADANGAN GINJAL (SEDANG)', 6490700.00, 7561600.00, 8632600.00), +('N-4-11-III', 'PERADANGAN GINJAL (BERAT)', 8075800.00, 9408300.00, 10740800.00), +('N-4-12-I', 'INFEKSI GINJAL DAN SALURAN URIN (RINGAN)', 2801100.00, 3263300.00, 3725400.00), +('N-4-12-II', 'INFEKSI GINJAL DAN SALURAN URIN (SEDANG)', 6620000.00, 7712300.00, 8804500.00), +('N-4-12-III', 'INFEKSI GINJAL DAN SALURAN URIN (BERAT)', 9455800.00, 11016000.00, 12576100.00), +('N-4-13-I', 'BATU URIN (RINGAN)', 3790400.00, 4415800.00, 5041100.00), +('N-4-13-II', 'BATU URIN (SEDANG)', 6336600.00, 7382100.00, 8427600.00), +('N-4-13-III', 'BATU URIN (BERAT)', 13109000.00, 15272000.00, 17434900.00), +('N-4-14-I', 'MALFUNGSI, REAKSI ATAU KOMPLIKASI DARI PEMASANGAN ALAT SALURAN URIN, PEMINDAHAN KULIT ATAU\nPENCAKOKAN (RINGAN)', 4814800.00, 5609200.00, 6403700.00), +('N-4-14-II', 'MALFUNGSI, REAKSI ATAU KOMPLIKASI DARI PEMASANGAN ALAT SALURAN URIN, PEMINDAHAN KULIT ATAU\nPENCAKOKAN (SEDANG)', 7494300.00, 8730800.00, 9967400.00), +('N-4-14-III', 'MALFUNGSI, REAKSI ATAU KOMPLIKASI DARI PEMASANGAN ALAT SALURAN URIN, PEMINDAHAN KULIT ATAU\nPENCAKOKAN (BERAT)', 9951400.00, 11593400.00, 13235400.00), +('N-4-15-I', 'GEJALA, TANDA-TANDA PADA GINJAL DAN SALURAN URIN (RINGAN)', 4407900.00, 5135200.00, 5862500.00), +('N-4-15-II', 'GEJALA, TANDA-TANDA PADA GINJAL DAN SALURAN URIN (SEDANG)', 5469400.00, 6371800.00, 7274300.00), +('N-4-15-III', 'GEJALA, TANDA-TANDA PADA GINJAL DAN SALURAN URIN (BERAT)', 6241500.00, 7271300.00, 8301200.00), +('N-4-16-I', 'PENYAKIT GINJAL DAN SALURAN URIN LAIN-LAIN (RINGAN)', 5397400.00, 6288000.00, 7178600.00), +('N-4-16-II', 'PENYAKIT GINJAL DAN SALURAN URIN LAIN-LAIN (SEDANG)', 7703800.00, 8974900.00, 10246100.00), +('N-4-16-III', 'PENYAKIT GINJAL DAN SALURAN URIN LAIN-LAIN (BERAT)', 10254300.00, 11946300.00, 13638300.00), +('O-6-10-I', 'OPERASI PEMBEDAHAN CAESAR (RINGAN)', 5532400.00, 6445200.00, 7358100.00), +('O-6-10-II', 'OPERASI PEMBEDAHAN CAESAR (SEDANG)', 7121000.00, 8296000.00, 9470900.00), +('O-6-10-III', 'OPERASI PEMBEDAHAN CAESAR (BERAT)', 11225100.00, 13077200.00, 14929400.00), +('O-6-11-I', 'PERSALINAN VAGINAL DENGAN STERILISASI &/ DILATASI & KURET (RINGAN)', 5121500.00, 5966500.00, 6811500.00), +('O-6-11-II', 'PERSALINAN VAGINAL DENGAN STERILISASI &/ DILATASI & KURET (SEDANG)', 5738800.00, 6685700.00, 7632600.00), +('O-6-11-III', 'PERSALINAN VAGINAL DENGAN STERILISASI &/ DILATASI & KURET (BERAT)', 7502700.00, 8740600.00, 9978500.00), +('O-6-12-I', 'PERSALINAN VAGINAL DENGAN PROSEDUR SELAIN STERILISASI &/ DILATASI &KURET (RINGAN)', 3668800.00, 4274200.00, 4879500.00), +('O-6-12-II', 'PERSALINAN VAGINAL DENGAN PROSEDUR SELAIN STERILISASI &/ DILATASI & KURET (SEDANG)', 4426100.00, 5156400.00, 5886700.00), +('O-6-12-III', 'PERSALINAN VAGINAL DENGAN PROSEDUR SELAIN STERILISASI &/ DILATASI & KURET (BERAT)', 7211700.00, 8401600.00, 9591500.00), +('O-6-13-I', 'PERSALINAN VAGINAL (RINGAN)', 2613500.00, 3044700.00, 3475900.00), +('O-6-13-II', 'PERSALINAN VAGINAL (SEDANG)', 3343300.00, 3894900.00, 4446500.00), +('O-6-13-III', 'PERSALINAN VAGINAL (BERAT)', 4186800.00, 4877600.00, 5568400.00), +('P-8-01-I', 'NEONATAL DENGAN PENCANGKOKAN ORGAN ATAU OKSIGENASI SELAPUT EKSTRAKORPORAL (RINGAN)', 79373700.00, 92470400.00, 105567100.00), +('P-8-01-II', 'NEONATAL DENGAN PENCANGKOKAN ORGAN ATAU OKSIGENASI SELAPUT EKSTRAKORPORAL (SEDANG)', 98213100.00, 114418300.00, 130623500.00), +('P-8-01-III', 'NEONATAL DENGAN PENCANGKOKAN ORGAN ATAU OKSIGENASI SELAPUT EKSTRAKORPORAL (BERAT)', 115274600.00, 134294900.00, 153315200.00), +('P-8-02-I', 'NEONATAL, BERAT BADAN LAHIR GROUP-1 DENGAN PROSEDUR MAYOR (RINGAN)', 108341400.00, 126217700.00, 144094100.00), +('P-8-02-II', 'NEONATAL, BERAT BADAN LAHIR GROUP-1 DENGAN PROSEDUR MAYOR (SEDANG)', 124278500.00, 144784400.00, 165290400.00), +('P-8-02-III', 'NEONATAL, BERAT BADAN LAHIR GROUP-1 DENGAN PROSEDUR MAYOR (BERAT)', 141997000.00, 165426500.00, 188856000.00), +('P-8-03-I', 'NEONATAL, BERAT BADAN LAHIR GROUP-1 TANPA PROSEDUR MAYOR (RINGAN)', 16251100.00, 18932500.00, 21614000.00), +('P-8-03-II', 'NEONATAL, BERAT BADAN LAHIR GROUP-1 TANPA PROSEDUR MAYOR (SEDANG)', 21510600.00, 25059800.00, 28609100.00), +('P-8-03-III', 'NEONATAL, BERAT BADAN LAHIR GROUP-1 TANPA PROSEDUR MAYOR (BERAT)', 32580600.00, 37956400.00, 43332200.00), +('P-8-04-I', 'NEONATAL, BERAT BADAN LAHIR GROUP-2 DENGAN PROSEDUR MAYOR (RINGAN)', 52369900.00, 61010900.00, 69652000.00), +('P-8-04-II', 'NEONATAL, BERAT BADAN LAHIR GROUP-2 DENGAN PROSEDUR MAYOR (SEDANG)', 67964800.00, 79179000.00, 90393200.00), +('P-8-04-III', 'NEONATAL, BERAT BADAN LAHIR GROUP-2 DENGAN PROSEDUR MAYOR (BERAT)', 97444400.00, 113522700.00, 129601100.00), +('P-8-05-I', 'NEONATAL, BERAT BADAN LAHIR GROUP-3 DENGAN PROSEDUR MAYOR (RINGAN)', 28477100.00, 33175800.00, 37874600.00), +('P-8-05-II', 'NEONATAL, BERAT BADAN LAHIR GROUP-3 DENGAN PROSEDUR MAYOR (SEDANG)', 43930900.00, 51179500.00, 58428100.00), +('P-8-05-III', 'NEONATAL, BERAT BADAN LAHIR GROUP-3 DENGAN PROSEDUR MAYOR (BERAT)', 59468500.00, 69280800.00, 79093100.00), +('P-8-06-I', 'NEONATAL, BERAT BADAN LAHIR GROUP-4 DENGAN PROSEDUR MAYOR (RINGAN)', 14270900.00, 16625600.00, 18980300.00), +('P-8-06-II', 'NEONATAL, BERAT BADAN LAHIR GROUP-4 DENGAN PROSEDUR MAYOR (SEDANG)', 28411600.00, 33099600.00, 37787500.00), +('P-8-06-III', 'NEONATAL, BERAT BADAN LAHIR GROUP-4 DENGAN PROSEDUR MAYOR (BERAT)', 38767600.00, 45164200.00, 51560900.00), +('P-8-07-I', 'NEONATAL, BERAT BADAN LAHIR GROUP-5 DENGAN PROSEDUR MAYOR (RINGAN)', 12610400.00, 14691100.00, 16771800.00), +('P-8-07-II', 'NEONATAL, BERAT BADAN LAHIR GROUP-5 DENGAN PROSEDUR MAYOR (SEDANG)', 25795500.00, 30051800.00, 34308100.00), +('P-8-07-III', 'NEONATAL, BERAT BADAN LAHIR GROUP-5 DENGAN PROSEDUR MAYOR (BERAT)', 38674600.00, 45056000.00, 51437300.00), +('P-8-08-I', 'NEONATAL, BERAT BADAN LAHIR GROUP-5 DENGAN SINDROMA DISTRES PERNAFASAN (RINGAN)', 5276500.00, 6147100.00, 7017700.00), +('P-8-08-II', 'NEONATAL, BERAT BADAN LAHIR GROUP-5 DENGAN SINDROMA DISTRES PERNAFASAN (SEDANG)', 7472500.00, 8705400.00, 9938300.00), +('P-8-08-III', 'NEONATAL, BERAT BADAN LAHIR GROUP-5 DENGAN SINDROMA DISTRES PERNAFASAN (BERAT)', 14536800.00, 16935400.00, 19333900.00), +('P-8-11-I', 'NEONATAL, BBL 1000 - 1499 GR TANPA PROSEDUR MAYOR (RINGAN)', 13542600.00, 15777100.00, 18011700.00), +('P-8-11-II', 'NEONATAL, BBL 1000 - 1499 GR TANPA PROSEDUR MAYOR (SEDANG)', 20597100.00, 23995600.00, 27394100.00), +('P-8-11-III', 'NEONATAL, BBL 1000 - 1499 GR TANPA PROSEDUR MAYOR (BERAT)', 27821900.00, 32412500.00, 37003100.00), +('P-8-12-I', 'NEONATAL, BBL 1500 - 1999 GR TANPA PROSEDUR MAYOR (RINGAN)', 12311600.00, 14343000.00, 16374300.00), +('P-8-12-II', 'NEONATAL, BBL 1500 - 1999 GR TANPA PROSEDUR MAYOR (SEDANG)', 15044100.00, 17526400.00, 20008600.00), +('P-8-12-III', 'NEONATAL, BBL 1500 - 1999 GR TANPA PROSEDUR MAYOR (BERAT)', 21916700.00, 25532900.00, 29149100.00), +('P-8-13-I', 'NEONATAL, BBL 2000 - 2499 GR TANPA PROSEDUR MAYOR (RINGAN)', 6839700.00, 7968300.00, 9096900.00), +('P-8-13-II', 'NEONATAL, BBL 2000 - 2499 GR TANPA PROSEDUR MAYOR (SEDANG)', 10670000.00, 12430500.00, 14191100.00), +('P-8-13-III', 'NEONATAL, BBL 2000 - 2499 GR TANPA PROSEDUR MAYOR (BERAT)', 16858900.00, 19640600.00, 22422400.00), +('P-8-14-I', 'NEONATAL, BBL > 2499 GR DENGAN ANOMALI MAYOR ATAU KONDISI HEREDITER (RINGAN)', 7851700.00, 9147300.00, 10442800.00), +('P-8-14-II', 'NEONATAL, BBL > 2499 GR DENGAN ANOMALI MAYOR ATAU KONDISI HEREDITER (SEDANG)', 15881500.00, 18501900.00, 21122400.00), +('P-8-14-III', 'NEONATAL, BBL > 2499 GR DENGAN ANOMALI MAYOR ATAU KONDISI HEREDITER (BERAT)', 41206600.00, 48005700.00, 54804800.00), +('P-8-15-I', 'NEONATAL, BBL > 2499 GR DENGAN SINDROMA ASPIRASI (RINGAN)', 3883000.00, 4523700.00, 5164400.00), +('P-8-15-II', 'NEONATAL, BBL > 2499 GR DENGAN SINDROMA ASPIRASI (SEDANG)', 7795400.00, 9081600.00, 10367900.00), +('P-8-15-III', 'NEONATAL, BBL > 2499 GR DENGAN SINDROMA ASPIRASI (BERAT)', 9123400.00, 10628800.00, 12134200.00), +('P-8-16-I', 'NEONATAL, BBL > 2499 GR DENGAN KONGENITAL/INFEKSI PERINATAL (RINGAN)', 3514200.00, 4094000.00, 4673800.00), +('P-8-16-II', 'NEONATAL, BBL > 2499 GR DENGAN KONGENITAL/INFEKSI PERINATAL (SEDANG)', 6753000.00, 7867200.00, 8981400.00), +('P-8-16-III', 'NEONATAL, BBL > 2499 GR DENGAN KONGENITAL/INFEKSI PERINATAL (BERAT)', 15836700.00, 18449700.00, 21062700.00), +('P-8-17-I', 'NEONATAL, BBL > 2499 GR TANPA PROSEDUR MAYOR (RINGAN)', 4559800.00, 5312200.00, 6064600.00), +('P-8-17-II', 'NEONATAL, BBL > 2499 GR TANPA PROSEDUR MAYOR (SEDANG)', 8207600.00, 9561900.00, 10916200.00), +('P-8-17-III', 'NEONATAL, BBL > 2499 GR TANPA PROSEDUR MAYOR (BERAT)', 14049100.00, 16367200.00, 18685300.00), +('S-4-10-I', 'KECEDERAAN PADA TEMPAT YANG TAK SPESIFIK ATAU BANYAK TEMPAT (RINGAN)', 3962200.00, 4615900.00, 5269700.00), +('S-4-10-II', 'KECEDERAAN PADA TEMPAT YANG TAK SPESIFIK ATAU BANYAK TEMPAT (SEDANG)', 4910200.00, 5720400.00, 6530600.00), +('S-4-10-III', 'KECEDERAAN PADA TEMPAT YANG TAK SPESIFIK ATAU BANYAK TEMPAT (BERAT)', 6682800.00, 7785500.00, 8888200.00), +('S-4-11-I', 'REAKSI ALLERGI (RINGAN)', 2296000.00, 2674800.00, 3053700.00), +('S-4-11-II', 'REAKSI ALLERGI (SEDANG)', 3701000.00, 4311600.00, 4922300.00), +('S-4-11-III', 'REAKSI ALLERGI (BERAT)', 8539100.00, 9948100.00, 11357100.00), +('S-4-12-I', 'EFEK TOKSIK DAN KERACUNAN OBAT (RINGAN)', 2913000.00, 3393600.00, 3874300.00), +('S-4-12-II', 'EFEK TOKSIK DAN KERACUNAN OBAT (SEDANG)', 3877000.00, 4516700.00, 5156500.00), +('S-4-12-III', 'EFEK TOKSIK DAN KERACUNAN OBAT (BERAT)', 6720900.00, 7829800.00, 8938800.00), +('S-4-13-I', 'KOMPLIKASI DARI PENATALAKSANAAN PASIEN (RINGAN)', 4643200.00, 5409300.00, 6175400.00), +('S-4-13-II', 'KOMPLIKASI DARI PENATALAKSANAAN PASIEN (SEDANG)', 7631500.00, 8890700.00, 10149900.00), +('S-4-13-III', 'KOMPLIKASI DARI PENATALAKSANAAN PASIEN (BERAT)', 12386700.00, 14430500.00, 16474400.00), +('S-4-14-I', 'SINDROMA MALTREATMENT PADA DEWASA ATAU KANAK-KANAK (RINGAN)', 2177000.00, 2536200.00, 2895400.00), +('S-4-14-II', 'SINDROMA MALTREATMENT PADA DEWASA ATAU KANAK-KANAK (SEDANG)', 4624000.00, 5386900.00, 6149900.00), +('S-4-14-III', 'SINDROMA MALTREATMENT PADA DEWASA ATAU KANAK-KANAK (BERAT)', 8768700.00, 10215500.00, 11662400.00), +('S-4-15-I', 'LUKA BAKAR, DIRUJUK KE FASILITAS PERAWATAN AKUT YANG LAIN (RINGAN)', 1457400.00, 1697900.00, 1938400.00), +('S-4-15-II', 'LUKA BAKAR, DIRUJUK KE FASILITAS PERAWATAN AKUT YANG LAIN (SEDANG)', 2750400.00, 3204200.00, 3658000.00), +('S-4-15-III', 'LUKA BAKAR, DIRUJUK KE FASILITAS PERAWATAN AKUT YANG LAIN (BERAT)', 3562300.00, 4150000.00, 4737800.00), +('S-4-16-I', 'LUKA BAKAR (RINGAN)', 7555800.00, 8802500.00, 10049200.00), +('S-4-16-II', 'LUKA BAKAR (SEDANG)', 10126900.00, 11797800.00, 13468700.00), +('S-4-16-III', 'LUKA BAKAR (BERAT)', 14635800.00, 17050700.00, 19465600.00), +('S-4-17-I', 'DIAGNOSIS KECEDERAAN, KERACUNAN DAN EFEK TOKSIK LAIN-LAIN (RINGAN)', 3661200.00, 4265300.00, 4869400.00), +('S-4-17-II', 'DIAGNOSIS KECEDERAAN, KERACUNAN DAN EFEK TOKSIK LAIN-LAIN (SEDANG)', 5392900.00, 6282700.00, 7172600.00), +('S-4-17-III', 'DIAGNOSIS KECEDERAAN, KERACUNAN DAN EFEK TOKSIK LAIN-LAIN (BERAT)', 6486100.00, 7556300.00, 8626600.00), +('T-1-10-I', 'TERAPI REHABILITASI &/ DETOKSIKASI ALKOHOL & OBAT (RINGAN)', 2431300.00, 2832500.00, 3233700.00), +('T-1-10-II', 'TERAPI REHABILITASI &/ DETOKSIKASI ALKOHOL & OBAT (SEDANG)', 3265500.00, 3804300.00, 4343200.00), +('T-1-10-III', 'TERAPI REHABILITASI &/ DETOKSIKASI ALKOHOL & OBAT (BERAT)', 5940400.00, 6920600.00, 7900800.00), +('T-4-10-I', 'PENYALAHGUNAAN & KETERGANTUNGAN OBAT DAN ALKOHOL, MENOLAK NASEHAT DOKTER (RINGAN)', 1331300.00, 1551000.00, 1770700.00), +('T-4-10-II', 'PENYALAHGUNAAN & KETERGANTUNGAN OBAT DAN ALKOHOL, MENOLAK NASEHAT DOKTER (SEDANG)', 2536700.00, 2955300.00, 3373900.00), +('T-4-10-III', 'PENYALAHGUNAAN & KETERGANTUNGAN OBAT DAN ALKOHOL, MENOLAK NASEHAT DOKTER (BERAT)', 3687200.00, 4295600.00, 4904000.00), +('T-4-11-I', 'PENYALAHGUNAAN & KETERGANTUNGAN ALKOHOL,OPIUM DAN KOKAIN (RINGAN)', 1285700.00, 1497800.00, 1710000.00), +('T-4-11-II', 'PENYALAHGUNAAN & KETERGANTUNGAN ALKOHOL,OPIUM DAN KOKAIN (SEDANG)', 2023400.00, 2357200.00, 2691100.00), +('T-4-11-III', 'PENYALAHGUNAAN & KETERGANTUNGAN ALKOHOL,OPIUM DAN KOKAIN (BERAT)', 3259000.00, 3796700.00, 4334500.00), +('T-4-12-I', 'PENYALAHGUNAAN & KETERGANTUNGAN OBAT LAIN-LAIN (RINGAN)', 3012500.00, 3509500.00, 4006600.00), +('T-4-12-II', 'PENYALAHGUNAAN & KETERGANTUNGAN OBAT LAIN-LAIN (SEDANG)', 4547600.00, 5298000.00, 6048400.00), +('T-4-12-III', 'PENYALAHGUNAAN & KETERGANTUNGAN OBAT LAIN-LAIN (BERAT)', 7039000.00, 8200400.00, 9361900.00), +('U-1-10-I', 'PROSEDUR KOMPLEKS LARING (RINGAN)', 14162500.00, 16499300.00, 18836100.00), +('U-1-10-II', 'PROSEDUR KOMPLEKS LARING (SEDANG)', 22918700.00, 26700300.00, 30481900.00), +('U-1-10-III', 'PROSEDUR KOMPLEKS LARING (BERAT)', 36030300.00, 41975300.00, 47920300.00), +('U-1-11-I', 'PROSEDUR KOMPLEK LEHER DAN KEPALA LAIN-LAIN (RINGAN)', 12665900.00, 14755800.00, 16845700.00), +('U-1-11-II', 'PROSEDUR KOMPLEK LEHER DAN KEPALA LAIN-LAIN (SEDANG)', 18911900.00, 22032400.00, 25152900.00), +('U-1-11-III', 'PROSEDUR KOMPLEK LEHER DAN KEPALA LAIN-LAIN (BERAT)', 25240300.00, 29404900.00, 33569500.00), +('U-1-12-I', 'PROSEDUR MASTOID DAN SINUS (RINGAN)', 9604400.00, 11189100.00, 12773900.00), +('U-1-12-II', 'PROSEDUR MASTOID DAN SINUS (SEDANG)', 14727800.00, 17157900.00, 19588000.00), +('U-1-12-III', 'PROSEDUR MASTOID DAN SINUS (BERAT)', 21632000.00, 25201300.00, 28770600.00), +('U-1-13-I', 'PROSEDUR KELENJAR LUDAH (RINGAN)', 9611000.00, 11196800.00, 12782700.00), +('U-1-13-II', 'PROSEDUR KELENJAR LUDAH (SEDANG)', 11198300.00, 13046000.00, 14893800.00), +('U-1-13-III', 'PROSEDUR KELENJAR LUDAH (BERAT)', 18563300.00, 21626200.00, 24689200.00), +('U-1-14-I', 'OPERASI BIBIR SUMBING & LANGIT-LANGIT MULUT (RINGAN)', 6484500.00, 7554400.00, 8624300.00), +('U-1-14-II', 'OPERASI BIBIR SUMBING & LANGIT-LANGIT MULUT (SEDANG)', 9271000.00, 10800700.00, 12330400.00), +('U-1-14-III', 'OPERASI BIBIR SUMBING & LANGIT-LANGIT MULUT (BERAT)', 10888100.00, 12684700.00, 14481200.00), +('U-1-15-I', 'PROSEDUR TONSIL & ADENOID (RINGAN)', 4953900.00, 5771300.00, 6588700.00), +('U-1-15-II', 'PROSEDUR TONSIL & ADENOID (SEDANG)', 6427100.00, 7487600.00, 8548100.00), +('U-1-15-III', 'PROSEDUR TONSIL & ADENOID (BERAT)', 9790500.00, 11405900.00, 13021400.00), +('U-1-20-I', 'PROSEDUR TENGGOROKAN, MULUT, HIDUNG DAN TELINGA LAIN-LAIN (RINGAN)', 9169300.00, 10682200.00, 12195100.00), +('U-1-20-II', 'PROSEDUR TENGGOROKAN, MULUT, HIDUNG DAN TELINGA LAIN-LAIN (SEDANG)', 14398800.00, 16774600.00, 19150300.00), +('U-1-20-III', 'PROSEDUR TENGGOROKAN, MULUT, HIDUNG DAN TELINGA LAIN-LAIN (BERAT)', 26800200.00, 31222300.00, 35644300.00), +('U-1-30-I', 'PROSEDUR MULUT (RINGAN)', 7519700.00, 8760400.00, 10001200.00), +('U-1-30-II', 'PROSEDUR MULUT (SEDANG)', 10196300.00, 11878700.00, 13561100.00), +('U-1-30-III', 'PROSEDUR MULUT (BERAT)', 19939200.00, 23229200.00, 26519200.00), +('U-4-10-I', 'NEOPLASMA TELIGA, HIDUNG, MULUT DAN TENGGOROKAN (RINGAN)', 5411500.00, 6304400.00, 7197300.00), +('U-4-10-II', 'NEOPLASMA TELIGA, HIDUNG, MULUT DAN TENGGOROKAN (SEDANG)', 12388400.00, 14432500.00, 16476600.00), +('U-4-10-III', 'NEOPLASMA TELIGA, HIDUNG, MULUT DAN TENGGOROKAN (BERAT)', 19020100.00, 22158400.00, 25296700.00), +('U-4-11-I', 'DYSEQUILIBRIUM (RINGAN)', 2009400.00, 2341000.00, 2672500.00), +('U-4-11-II', 'DYSEQUILIBRIUM (SEDANG)', 3005100.00, 3500900.00, 3996800.00), +('U-4-11-III', 'DYSEQUILIBRIUM (BERAT)', 3294900.00, 3838500.00, 4382100.00), +('U-4-12-I', 'EPISTAKSIS/PERDARAHAN HIDUNG (RINGAN)', 3116900.00, 3631100.00, 4145400.00), +('U-4-12-II', 'EPISTAKSIS/PERDARAHAN HIDUNG (SEDANG)', 4531900.00, 5279700.00, 6027500.00), +('U-4-12-III', 'EPISTAKSIS/PERDARAHAN HIDUNG (BERAT)', 7936700.00, 9246300.00, 10555900.00), +('U-4-13-I', 'PERADANGAN EPIGLOTIS, TELINGA TENGAH, ISPA DAN LARINGOTRAKEITIS (RINGAN)', 2130300.00, 2481800.00, 2833200.00), +('U-4-13-II', 'PERADANGAN EPIGLOTIS, TELINGA TENGAH, ISPA DAN LARINGOTRAKEITIS (SEDANG)', 3481000.00, 4055300.00, 4629600.00), +('U-4-13-III', 'PERADANGAN EPIGLOTIS, TELINGA TENGAH, ISPA DAN LARINGOTRAKEITIS (BERAT)', 5620600.00, 6548000.00, 7475300.00), +('U-4-14-I', 'PENYAKIT MULUT DAN GIGI (RINGAN)', 5879400.00, 6849500.00, 7819500.00), +('U-4-14-II', 'PENYAKIT MULUT DAN GIGI (SEDANG)', 7830800.00, 9122900.00, 10414900.00), +('U-4-14-III', 'PENYAKIT MULUT DAN GIGI (BERAT)', 10831300.00, 12618500.00, 14405600.00), +('U-4-15-I', 'PENYAKIT TELINGA, HIDUNG, MULUT DAN TENGGOROKAN LAIN-LAIN (RINGAN)', 4689600.00, 5463400.00, 6237200.00), +('U-4-15-II', 'PENYAKIT TELINGA, HIDUNG, MULUT DAN TENGGOROKAN LAIN-LAIN (SEDANG)', 5393500.00, 6283500.00, 7173400.00), +('U-4-15-III', 'PENYAKIT TELINGA, HIDUNG, MULUT DAN TENGGOROKAN LAIN-LAIN (BERAT)', 7541100.00, 8785400.00, 10029700.00), +('V-1-10-I', 'PROSEDUR PENGANGKATAN PROSTAT KOMPLEK (RINGAN)', 9256700.00, 10784000.00, 12311400.00), +('V-1-10-II', 'PROSEDUR PENGANGKATAN PROSTAT KOMPLEK (SEDANG)', 14531700.00, 16929400.00, 19327200.00), +('V-1-10-III', 'PROSEDUR PENGANGKATAN PROSTAT KOMPLEK (BERAT)', 17821100.00, 20761600.00, 23702100.00), +('V-1-11-I', 'PROSEDUR PADA PENIS (RINGAN)', 13420700.00, 15635100.00, 17849500.00), +('V-1-11-II', 'PROSEDUR PADA PENIS (SEDANG)', 15324700.00, 17853300.00, 20381900.00), +('V-1-11-III', 'PROSEDUR PADA PENIS (BERAT)', 23999100.00, 27959000.00, 31918900.00), +('V-1-12-I', 'PROSEDUR PADA SKROTUM DAN PROSTAT KOMPLEK-MODERAT (RINGAN)', 12617900.00, 14699900.00, 16781900.00), +('V-1-12-II', 'PROSEDUR PADA SKROTUM DAN PROSTAT KOMPLEK-MODERAT (SEDANG)', 17230800.00, 20073900.00, 22917000.00), +('V-1-12-III', 'PROSEDUR PADA SKROTUM DAN PROSTAT KOMPLEK-MODERAT (BERAT)', 21840300.00, 25443900.00, 29047600.00), +('V-1-13-I', 'PROSEDUR PADA SKROTUM DAN PROSTAT NON KOMPLEK (RINGAN)', 6581700.00, 7667700.00, 8753700.00), +('V-1-13-II', 'PROSEDUR PADA SKROTUM DAN PROSTAT NON KOMPLEK (SEDANG)', 12575500.00, 14650400.00, 16725400.00), +('V-1-13-III', 'PROSEDUR PADA SKROTUM DAN PROSTAT NON KOMPLEK (BERAT)', 19729300.00, 22984600.00, 26240000.00), +('V-1-14-I', 'PENGANGKATAN PROSTAT MELALUI URETRA (RINGAN)', 12906700.00, 15036300.00, 17165900.00), +('V-1-14-II', 'PENGANGKATAN PROSTAT MELALUI URETRA (SEDANG)', 18753000.00, 21847200.00, 24941500.00), +('V-1-14-III', 'PENGANGKATAN PROSTAT MELALUI URETRA (BERAT)', 23416400.00, 27280100.00, 31143900.00), +('V-1-15-I', 'SIRKUMSISI (RINGAN)', 2078700.00, 2421700.00, 2764700.00), +('V-1-15-II', 'SIRKUMSISI (SEDANG)', 2514400.00, 2929300.00, 3344200.00), +('V-1-15-III', 'SIRKUMSISI (BERAT)', 3078400.00, 3586400.00, 4094300.00), +('V-4-10-I', 'TUMOR PADA SISTEM REPRODUKSI LAKI-LAKI (RINGAN)', 5617300.00, 6544200.00, 7471100.00), +('V-4-10-II', 'TUMOR PADA SISTEM REPRODUKSI LAKI-LAKI (SEDANG)', 9330700.00, 10870200.00, 12409800.00), +('V-4-10-III', 'TUMOR PADA SISTEM REPRODUKSI LAKI-LAKI (BERAT)', 15382900.00, 17921100.00, 20459300.00), +('V-4-11-I', 'PENYAKIT SISTEM REPRODUKSI LAKI-LAKI SELAIN TUMOR (RINGAN)', 5393000.00, 6282800.00, 7172700.00), +('V-4-11-II', 'PENYAKIT SISTEM REPRODUKSI LAKI-LAKI SELAIN TUMOR (SEDANG)', 7236000.00, 8429900.00, 9623900.00), +('V-4-11-III', 'PENYAKIT SISTEM REPRODUKSI LAKI-LAKI SELAIN TUMOR (BERAT)', 9692700.00, 11292000.00, 12891300.00), +('W-1-01-I', 'OPERASI PENGANGKATAN RAHIM DAN VULVA RADIKAL & EVISCERASI (RINGAN)', 14699400.00, 17124800.00, 19550200.00), +('W-1-01-II', 'OPERASI PENGANGKATAN RAHIM DAN VULVA RADIKAL & EVISCERASI (SEDANG)', 17852000.00, 20797600.00, 23743200.00), +('W-1-01-III', 'OPERASI PENGANGKATAN RAHIM DAN VULVA RADIKAL & EVISCERASI (BERAT)', 25140700.00, 29288900.00, 33437100.00), +('W-1-10-I', 'PROSEDUR ABORSI (RINGAN)', 3284600.00, 3826500.00, 4368400.00), +('W-1-10-II', 'PROSEDUR ABORSI (SEDANG)', 5723500.00, 6667900.00, 7612200.00), +('W-1-10-III', 'PROSEDUR ABORSI (BERAT)', 5925500.00, 6903200.00, 7880800.00), +('W-1-11-I', 'PROSEDUR DILATASI, KURET, INTRAUTERIN & SERVIK (RINGAN)', 3259100.00, 3796800.00, 4334500.00), +('W-1-11-II', 'PROSEDUR DILATASI, KURET, INTRAUTERIN & SERVIK (SEDANG)', 5347600.00, 6229900.00, 7112200.00), +('W-1-11-III', 'PROSEDUR DILATASI, KURET, INTRAUTERIN & SERVIK (BERAT)', 5843600.00, 6807800.00, 7771900.00), +('W-1-12-I', 'PROSEDUR PADAA TUBA FALOPII (RINGAN)', 4528700.00, 5275900.00, 6023100.00), +('W-1-12-II', 'PROSEDUR PADAA TUBA FALOPII (SEDANG)', 6687100.00, 7790500.00, 8893900.00), +('W-1-12-III', 'PROSEDUR PADAA TUBA FALOPII (BERAT)', 9351400.00, 10894400.00, 12437400.00), +('W-1-13-I', 'INTERUPSI TUBA DENGAN ENDOSKOP (RINGAN)', 3603900.00, 4198500.00, 4793200.00), +('W-1-13-II', 'INTERUPSI TUBA DENGAN ENDOSKOP (SEDANG)', 3912600.00, 4558200.00, 5203800.00), +('W-1-13-III', 'INTERUPSI TUBA DENGAN ENDOSKOP (BERAT)', 5255600.00, 6122800.00, 6990000.00), +('W-1-20-I', 'PROSEDUR PADA RAHIM & ADNEKSA (RINGAN)', 12068900.00, 14060300.00, 16051700.00), +('W-1-20-II', 'PROSEDUR PADA RAHIM & ADNEKSA (SEDANG)', 15080200.00, 17568400.00, 20056700.00), +('W-1-20-III', 'PROSEDUR PADA RAHIM & ADNEKSA (BERAT)', 17481800.00, 20366300.00, 23250800.00), +('W-1-30-I', 'PROSEDUR PADA VAGINA, SERVIK & VULVA (RINGAN)', 6813100.00, 7937200.00, 9061400.00), +('W-1-30-II', 'PROSEDUR PADA VAGINA, SERVIK & VULVA (SEDANG)', 10866800.00, 12659800.00, 14452900.00), +('W-1-30-III', 'PROSEDUR PADA VAGINA, SERVIK & VULVA (BERAT)', 26662200.00, 31061500.00, 35460800.00), +('W-4-10-I', 'TUMOR SISTEM REPRODUKSI WANITA (RINGAN)', 5076400.00, 5914000.00, 6751700.00), +('W-4-10-II', 'TUMOR SISTEM REPRODUKSI WANITA (SEDANG)', 7525600.00, 8767300.00, 10009100.00), +('W-4-10-III', 'TUMOR SISTEM REPRODUKSI WANITA (BERAT)', 14872100.00, 17326000.00, 19779900.00), +('W-4-11-I', 'INFEKSI SISTEM REPRODUKSI WANITA (RINGAN)', 4155000.00, 4840600.00, 5526200.00), +('W-4-11-II', 'INFEKSI SISTEM REPRODUKSI WANITA (SEDANG)', 6307900.00, 7348700.00, 8389600.00), +('W-4-11-III', 'INFEKSI SISTEM REPRODUKSI WANITA (BERAT)', 7677900.00, 8944800.00, 10211700.00), +('W-4-12-I', 'GANGGUAN MENSTRUASI & SISTEM REPRODUKSI WANITA LAIN-LAIN (RINGAN)', 3115700.00, 3629800.00, 4143900.00), +('W-4-12-II', 'GANGGUAN MENSTRUASI & SISTEM REPRODUKSI WANITA LAIN-LAIN (SEDANG)', 5929200.00, 6907500.00, 7885900.00), +('W-4-12-III', 'GANGGUAN MENSTRUASI & SISTEM REPRODUKSI WANITA LAIN-LAIN (BERAT)', 8725200.00, 10164900.00, 11604600.00), +('W-4-13-I', 'ABORTUS (RINGAN)', 1816400.00, 2116100.00, 2415900.00), +('W-4-13-II', 'ABORTUS (SEDANG)', 2742200.00, 3194700.00, 3647100.00), +('W-4-13-III', 'ABORTUS (BERAT)', 3133500.00, 3650500.00, 4167500.00), +('W-4-14-I', 'ABORTUS MENGANCAM (RINGAN)', 2427500.00, 2828000.00, 3228500.00), +('W-4-14-II', 'ABORTUS MENGANCAM (SEDANG)', 2889400.00, 3366100.00, 3842800.00), +('W-4-14-III', 'ABORTUS MENGANCAM (BERAT)', 4428800.00, 5159500.00, 5890200.00), +('W-4-15-I', 'PERSALINAN FALSE LABOR (RINGAN)', 2198300.00, 2561000.00, 2923700.00), +('W-4-15-II', 'PERSALINAN FALSE LABOR (SEDANG)', 2904200.00, 3383300.00, 3862500.00), +('W-4-15-III', 'PERSALINAN FALSE LABOR (BERAT)', 5044300.00, 5876600.00, 6708900.00), +('W-4-16-I', 'GANGGUAN ANTEPARTUM (RINGAN)', 2332700.00, 2717600.00, 3102400.00), +('W-4-16-II', 'GANGGUAN ANTEPARTUM (SEDANG)', 4323700.00, 5037100.00, 5750400.00), +('W-4-16-III', 'GANGGUAN ANTEPARTUM (BERAT)', 7910800.00, 9216100.00, 10521300.00), +('W-4-17-I', 'GANGGUAN POSTPARTUM (RINGAN)', 2320900.00, 2703900.00, 3086800.00), +('W-4-17-II', 'GANGGUAN POSTPARTUM (SEDANG)', 4307500.00, 5018200.00, 5729000.00), +('W-4-17-III', 'GANGGUAN POSTPARTUM (BERAT)', 8597500.00, 10016100.00, 11434700.00), +('Z-4-10-I', 'REHABILITASI (RINGAN)', 5119200.00, 5963900.00, 6808600.00), +('Z-4-10-II', 'REHABILITASI (SEDANG)', 6794600.00, 7915700.00, 9036800.00), +('Z-4-10-III', 'REHABILITASI (BERAT)', 9652900.00, 11245600.00, 12838400.00), +('Z-4-11-I', 'GEJALA-GEJALA DAN TANDA-TANDA (RINGAN)', 3332600.00, 3882500.00, 4432400.00), +('Z-4-11-II', 'GEJALA-GEJALA DAN TANDA-TANDA (SEDANG)', 4002600.00, 4663000.00, 5323500.00), +('Z-4-11-III', 'GEJALA-GEJALA DAN TANDA-TANDA (BERAT)', 5501900.00, 6409700.00, 7317500.00), +('Z-4-12-I', 'FAKTOR-FAKTOR YANG MEMPENGARUHI STATUS KESEHATAN LAIN-LAIN (RINGAN)', 2480100.00, 2889300.00, 3298500.00), +('Z-4-12-II', 'FAKTOR-FAKTOR YANG MEMPENGARUHI STATUS KESEHATAN LAIN-LAIN (SEDANG)', 4444500.00, 5177800.00, 5911100.00), +('Z-4-12-III', 'FAKTOR-FAKTOR YANG MEMPENGARUHI STATUS KESEHATAN LAIN-LAIN (BERAT)', 9330700.00, 10870300.00, 12409800.00); + +-- -------------------------------------------------------- + +-- +-- Struktur dari tabel `ina_cbg_rawatjalan` +-- + +CREATE TABLE `ina_cbg_rawatjalan` ( + `ID_INACBG_RJ` varchar(20) NOT NULL, + `Tindakan_RJ` varchar(150) DEFAULT NULL, + `Tarif_RJ` decimal(15,2) DEFAULT NULL +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; + +-- +-- Dumping data untuk tabel `ina_cbg_rawatjalan` +-- + +INSERT INTO `ina_cbg_rawatjalan` (`ID_INACBG_RJ`, `Tindakan_RJ`, `Tarif_RJ`) VALUES +('B-2-10-0', 'RUMAH SAKIT KELAS A PEMERINTAH', 1390000.00), +('B-2-11-0', 'RAWAT JALAN', 1803000.00), +('B-2-12-0', 'PROSEDUR KOLESISTEKTOMI TANPA LAPAROSKOPI', 3352900.00), +('B-2-13-0', 'PROSEDUR LAIN-LAIN PADA HEPATOBILIARI & PANKREAS', 3463500.00), +('B-2-14-0', 'PROSEDUR KOLESISTEKTOMI DENGAN LAPAROSKOPI', 3705500.00), +('B-3-10-0', 'PROSEDUR PADA PERKUTAN HATI & SALURAN EMPEDU', 1290400.00), +('B-3-11-0', 'PROSEDUR ENDOSKOPI SALURAN EMPEDU', 1677500.00), +('B-3-12-0', 'PROSEDUR LAIN-LAIN PADA SISTEM HEPATOBILIARI DAN PANKREAS', 517900.00), +('C-3-10-0', 'PROSEDUR RADIOTERAPI', 1144400.00), +('C-3-11-0', 'KEMOTERAPI PADA TUMOR PARU & KANDUNG KEMIH', 1036000.00), +('C-3-12-0', 'KEMOTERAPI PADA TUMOR KOLON', 1128300.00), +('C-3-13-0', 'KEMOTERAPI PADA TUMOR PAYUDARA ATAU OVARIUM', 1674900.00), +('C-3-14-0', 'KEMOTERAPI PADA TUMOR GASTROINTESTINAL', 2284500.00), +('C-3-15-0', 'KEMOTERAPI PADA TUMOR MELANOMA, GINJAL ATAU PROSTAT', 2093800.00), +('C-3-16-0', 'KEMOTERAPI PADA TUMOR OTAK', 786800.00), +('C-3-17-0', 'KEMOTERAPI PADA TUMOR KEPALA ATAU LEHER', 1598500.00), +('C-3-18-0', 'KEMOTERAPI PADA LEUKEMIA AKUT', 731400.00), +('C-3-19-0', 'KEMOTERAPI PADA TUMOR LIMFOMA, MYELOMA ATAU TESTIS', 1325200.00), +('C-3-20-0', 'KEMOTERAPI PADA TUMOR KULIT', 2969800.00), +('C-3-21-0', 'KEMOTERAPI PADA TUMOR GINEKOLOGI', 1416500.00), +('C-3-22-0', 'KEMOTERAPI PADA TUMOR METASTASE', 2511700.00), +('C-3-23-0', 'KEMOTERAPI PADA TUMOR LAIN-LAIN', 612800.00), +('D-2-10-0', 'PROSEDUR PENCANGKOKAN SUMSUM TULANG', 1787000.00), +('D-2-11-0', 'PROSEDUR LIMPA', 2558500.00), +('D-2-21-0', 'PROSEDUR BESAR PADA NODUL LIMPA DAN TYMUS', 2556500.00), +('D-2-22-0', 'PROSEDUR KECIL PADA NODUL LIMPA DAN TYMUS', 628400.00), +('D-3-10-0', 'PROSEDUR TRANSFUSI & TERAPI SUMSUM TULANG', 1509000.00), +('D-3-11-0', 'PROSEDUR DIAGNOSTIK DARAH DAN ORGAN PEMBENTUK DARAH', 1234000.00), +('E-2-10-0', 'PROSEDUR PADA KELENJAR ADRENAL', 741500.00), +('E-2-21-0', 'PROSEDUR BESAR PADA KELENJAR TIROID DAN PARATIROID', 927600.00), +('E-2-22-0', 'PROSEDUR KECIL PADA KELENJAR TIROID,PARATIROID DAN SALURAN THYROGLOSSAL', 722400.00), +('E-3-10-0', 'PROSEDUR DIAGNOSTIK PADA KELENJAR ENDOKRIN', 634200.00), +('F-3-10-0', 'TERAPI SHOCK', 690800.00), +('F-5-10-0', 'PELAYANAN KESEHATAN MENTAL EKSTENSIF', 471500.00), +('F-5-11-0', 'TERAPI KELOMPOK', 512600.00), +('F-5-12-0', 'PROSEDUR TES DIAGNOSTIK KESEHATAN JIWA', 418100.00), +('F-5-13-0', 'PSIKOTERAPI INDIVIDU DEWASA AKUT', 683700.00), +('F-5-14-0', 'PSIKOTHERAPI INDIVIDU DEWASA BUKAN AKUT', 354400.00), +('F-5-15-0', 'PENGOBATAN INDIVIDU KETERBELAKANGAN MENTAL', 351700.00), +('F-5-16-0', 'PSIKOTHERAPI INDIVIDU PADA KANAK-KANAK MASALAH KESEHATAN MENTAL', 372500.00), +('G-2-10-0', 'PROSEDUR KRANIOTOMI', 8183600.00), +('G-2-11-0', 'PROSEDUR SHUNT VENTRIKEL', 3942200.00), +('G-2-12-0', 'PROSEDUR PADA PEMBULUH DARAH EKSTRAKRANIAL', 3281600.00), +('G-2-13-0', 'PROSEDUR CARPAL TUNNEL RELEASE', 1141900.00), +('G-2-21-0', 'PROSEDUR BESAR PADA SARAF PERIFER', 2581400.00), +('G-2-22-0', 'PROSEDUR KECIL PADA SARAF PERIFER', 1447300.00), +('G-2-31-0', 'PROSEDUR BESAR PADA TULANG BELAKANG', 2584000.00), +('G-2-32-0', 'PROSEDUR KECIL PADA TULANG BELAKANG', 1756200.00), +('G-3-10-0', 'PROSEDUR TAP & INJEKSI PADA SPINAL', 794000.00), +('G-3-11-0', 'PROSEDUR INJEKSI PADA SARAF PERIFER', 574500.00), +('G-3-12-0', 'PROSEDUR PEMERIKSAAN NEUROLOGIS LAIN', 786100.00), +('G-3-13-0', 'PROSEDUR ELEKROENSEFALOGRAFI (EEG)', 596500.00), +('G-5-17-0', 'PENYAKIT SARAF KRANIAL DAN SARAF PERIFER LAIN-LAIN', 371500.00), +('H-2-21-0', 'PROSEDUR BESAR PADA MATA', 3623600.00), +('H-2-22-0', 'PROSEDUR SEDANG PADA MATA', 1791600.00), +('H-2-23-0', 'PROSEDUR KECIL PADA MATA', 966300.00), +('H-2-31-0', 'PROSEDUR BESAR PADA SEGMEN ANTERIOR MATA', 4036200.00), +('H-2-32-0', 'PROSEDUR SEDANG PADA SEGMEN ANTERIOR MATA', 2731800.00), +('H-2-33-0', 'PROSEDUR KECIL PADA SEGMEN ANTERIOR MATA', 509900.00), +('H-2-34-0', 'PROSEDUR BESAR PADA SEGMEN POSTERIOR MATA', 4086400.00), +('H-2-35-0', 'PROSEDUR KECIL PADA SEGMEN POSTERIOR MATA', 3081700.00), +('H-2-36-0', 'PROSEDUR OPERASI KATARAK', 4410000.00), +('H-2-37-0', 'PROSEDUR PHOTOKOAGULASI DAN KRIOTHERAPI PADA RETINA', 1662000.00), +('H-3-10-0', 'PROSEDUR LASER SEDANG PADA MATA', 1007200.00), +('H-3-11-0', 'PROSEDUR KECIL PADA EKTRAOKULER', 424100.00), +('H-3-12-0', 'PROSEDUR LAIN-LAIN PADA MATA', 384800.00), +('H-3-13-0', 'PROSEDUR DIAGNOSTIK & IMAGING PADA MATA', 401900.00), +('I-2-11-0', 'PEMASANGAN/PENYISIPAN DEFIBRILATOR JANTUNG & SISTEM BANTU JANTUNG', 5570300.00), +('I-2-12-0', 'PROSEDUR BESAR PADA PEMBULUH DARAH TORASIK', 3125100.00), +('I-2-13-0', 'PROSEDUR BESAR PADA PEMBULUH DARAH ABDOMEN', 3446100.00), +('I-2-14-0', 'PROSEDUR PEMASANGAN/PENYISIPAN ALAT PACU PERMANEN PADA JANTUNG', 7046700.00), +('I-2-15-0', 'PROSEDUR KATETERISASI JANTUNG', 6479700.00), +('I-2-16-0', 'PROSEDUR REVISI DEFIBRILATOR DAN ALAT PACU JANTUNG TIDAK TERMASUK PENGGANTIAN ALAT', 3852100.00), +('I-2-17-0', 'PROSEDUR LIGASI DAN STRIPPING PEMBULUH DARAH VENA', 1274400.00), +('I-2-21-0', 'ANGIOGRAFI ARTERI BUKAN JANTUNG', 4287500.00), +('I-2-22-0', 'PROSEDUR SEDANG PADA PEMBULUH DARAH', 2799500.00), +('I-2-23-0', 'PROSEDUR KECIL PADA PEMBULUH DARAH', 751800.00), +('I-2-31-0', 'PEMASANGAN ATAU PENGGANTIAN ALAT DEFIBRILATOR JANTUNG', 7437500.00), +('I-2-32-0', 'PEMASANGAN ATAU PENGGANTIAN ALAT PACU JANTUNG', 6733000.00), +('I-2-41-0', 'PROSEDUR ELEKTROFISIOLOGIK', 4514500.00), +('I-2-42-0', 'PROSEDUR ANGIOPLASTI PEMBULUH DARAH KORONER DAN KARDIOVASKULAR PERKUTAN LAIN', 4303800.00), +('I-3-10-0', 'PROSEDUR RESUSITASI', 1030700.00), +('I-3-11-0', 'PROSEDUR KARDIOVERSI', 935000.00), +('I-3-12-0', 'PROSEDUR KECIL LAIN-LAIN PADA JANTUNG', 1768900.00), +('I-3-13-0', 'PROSEDUR EKOKARDIOGRAFI', 515800.00), +('I-3-14-0', 'PROSEDUR STRESS TESTING', 475100.00), +('I-3-15-0', 'PROSEDUR PENGAWASAN FUNGSI KARDIOVASKULAR', 476000.00), +('J-2-10-0', 'PROSEDUR BESAR PADA SISTEM SALURAN PERNAFASAN', 2394000.00), +('J-2-21-0', 'PROSEDUR VENTILASI MEKANIKAL JANGKA PENDEK', 2477100.00), +('J-2-22-0', 'PROSEDUR PADA LARING DAN TRAKEA', 1949400.00), +('J-2-31-0', 'PROSEDUR THORAKOSKOPI/MEDIASTINOSKOPI', 2182900.00), +('J-2-32-0', 'PROSEDUR DADA INTERMEDIATE', 1303300.00), +('J-3-10-0', 'PROSEDUR PADA DINDING DADA', 883700.00), +('J-3-11-0', 'PROSEDUR PEMASANGAN/PENYISIPAN TUBE PADA DADA', 1150500.00), +('J-3-12-0', 'PROSEDUR THORACENTESIS', 792100.00), +('J-3-13-0', 'PROSEDUR TERAPI SALURAN PERNAFASAN', 473300.00), +('J-3-14-0', 'PROSEDUR BIOPSI PERKUTAN DAN ASPIRASI', 762100.00), +('J-3-15-0', 'PROSEDUR BRONKOSKOPI', 586500.00), +('J-3-16-0', 'PROSEDUR UJI FUNGSI PARU', 667700.00), +('J-3-17-0', 'PROSEDUR LAIN-LAIN PADA SISTEM SALURAN PERNAFASAN', 391400.00), +('K-2-10-0', 'PROSEDUR KECIL PADA USUS BESAR DAN KECIL', 1123400.00), +('K-2-11-0', 'PROSEDUR ADHESIOLYSIS PADA PERITONEUM', 2110000.00), +('K-2-12-0', 'PROSEDUR PADA HERNIA TIDAK TERMASUK HERNIA INGUINALIS DAN FEMORALIS', 1571600.00), +('K-2-13-0', 'PROSEDUR PADA USUS BUNTU', 3694800.00), +('K-2-14-0', 'PROSEDUR PADA HERNIA INGUINALIS DAN FEMORALIS', 804700.00), +('K-2-21-0', 'PROSEDUR BESAR PADA USUS HALUS DAN USUS BESAR', 932700.00), +('K-2-22-0', 'PROSEDUR BESAR PADA GASTROINTESTINAL ATAS', 4267700.00), +('K-2-31-0', 'PROSEDUR SEDANG PADA GASTROINTESTINAL ATAS', 1985300.00), +('K-2-32-0', 'PROSEDUR LAIN-LAIN PADA GASTROINTESTINAL ATAS', 688900.00), +('K-2-41-0', 'PROSEDUR LAPAROSKOPI', 2132900.00), +('K-2-42-0', 'PROSEDUR LAPAROTOMI & GASTROINTESTINAL LAINNYA', 4576800.00), +('K-2-51-0', 'PROSEDUR UNTUK WASIR', 1050800.00), +('K-2-52-0', 'PROSEDUR SEDANG PADA ANUS & REKTUM', 1157000.00), +('K-2-53-0', 'PROSEDUR KECIL PADA ANUS & REKTUM', 444600.00), +('K-3-10-0', 'PROSEDUR KECIL LAIN-LAIN PADA GASTROINTESTINAL', 366000.00), +('K-3-11-0', 'PROSEDUR KECIL PADA ANUS & REKTUM', 549000.00), +('K-3-12-0', 'PROSEDUR SIGMOIDOSKOPI DAN ANOSKOPI', 1049200.00), +('K-3-13-0', 'PROSEDUR KOLONOSKOPI', 2678200.00), +('K-3-14-0', 'PROSEDUR ENDOSKOPI BESAR PADA GASTROINTESTINAL ATAS', 2177800.00), +('K-3-15-0', 'PROSEDUR ENDOSKOPI KECIL PADA GASTROINTESTINAL ATAS', 1679000.00), +('K-3-16-0', 'PROSEDUR LAIN-LAIN PADA GASTROINTESTINAL', 675000.00), +('K-5-18-0', 'PENYAKIT SISTEM PENCERNAAN LAIN-LAIN', 371500.00), +('L-2-21-0', 'PROSEDUR BESAR PEMINDAHAN KULIT PADA LUKA BAKAR', 2243700.00), +('L-2-22-0', 'PROSEDUR KECIL PEMINDAHAN KULIT PADA LUKA BAKAR', 1438300.00), +('L-2-31-0', 'PROSEDUR BESAR PEMINDAHAN KULIT TANPA LUKA BAKAR', 1026900.00), +('L-2-32-0', 'PROSEDUR KECIL PEMINDAHAN KULIT TANPA LUKA BAKAR', 844100.00), +('L-2-41-0', 'PROSEDUR BEDAH PLASTIK', 2011400.00), +('L-2-42-0', 'PROSEDUR LAIN-LAIN PADA KULIT DAN JARINGAN BAWAH KULIT', 619800.00), +('L-2-51-0', 'PROSEDUR PENGANGKATAN PAYUDARA', 2615200.00), +('L-2-52-0', 'PROSEDUR BESAR PADA PAYUDARA TANPA PENGANGKATAN PAYUDARA', 1965200.00), +('L-2-53-0', 'PROSEDUR KECIL PADA PAYUDARA TANPA PENGANGKATAN PAYUDARA', 1007900.00), +('L-3-10-0', 'PROSEDUR KECIL LAIN-LAIN PADA PAYUDARA', 696400.00), +('L-3-11-0', 'PROSEDUR BESAR PADA KULIT', 570100.00), +('L-3-12-0', 'PROSEDUR KECIL PADA KULIT', 442400.00), +('M-2-10-0', 'PROSEDUR REKONTRUKSI TULANG KRANIAL DAN WAJAH', 2141200.00), +('M-2-21-0', 'PROSEDUR BESAR PADA SENDI PANGGUL DAN PAHA', 2353500.00), +('M-2-22-0', 'PROSEDUR KECIL PADA SENDI PANGGUL DAN PAHA', 501800.00), +('M-2-31-0', 'PROSEDUR BUNION', 1429500.00), +('M-2-32-0', 'PROSEDUR LAIN-LAIN PADA KAKI', 566200.00), +('M-2-41-0', 'PROSEDUR EKSISI, INSISI DAN ARTHROTOMI TULANG', 798600.00), +('M-2-42-0', 'PROSEDUR PEMINDAHAN ALAT IMPLAN', 557300.00), +('M-2-51-0', 'PROSEDUR BESAR PADA JARINGAN LUNAK', 1199900.00), +('M-2-52-0', 'PROSEDUR KECIL PADA JARINGAN LUNAK', 921000.00), +('M-2-61-0', 'PROSEDUR ARTROSKOPI', 1632700.00), +('M-2-62-0', 'PROSEDUR LAIN-LAIN PADA SENDI & TULANG', 560700.00), +('M-2-63-0', 'PROSEDUR INSISI, BIOPSI DAN GRAFT PADA TULANG', 1478700.00), +('M-2-64-0', 'PROSEDUR BESAR PADA TULANG KEPALA & WAJAH', 2238700.00), +('M-2-65-0', 'PROSEDUR KECIL PADA TULANG KEPALA & WAJAH', 477900.00), +('M-2-71-0', 'PROSEDUR BESAR PADA LUTUT & TUNGKAI BAWAH', 2387300.00), +('M-2-72-0', 'PROSEDUR KECIL PADA LUTUT & TUNGKAI BAWAH', 1293700.00), +('M-2-81-0', 'PROSEDUR BESAR PADA LENGAN, SIKU & BAHU', 2795700.00), +('M-2-82-0', 'PROSEDUR KECIL PADA LENGAN, SIKU & BAHU', 1411300.00), +('M-2-83-0', 'PROSEDUR BESAR PADA TANGAN & PERGELANGAN TANGAN', 1074700.00), +('M-2-84-0', 'PROSEDUR KECIL PADA TANGAN & PERGELANGAN TANGAN', 699900.00), +('M-3-10-0', 'PROSEDUR MANIPULATIVE OSTEOPATHIC', 165700.00), +('M-3-11-0', 'PROSEDUR DIAGNOSTIK DAN TERAPEUTIK MUSKULOSKELETAL', 621400.00), +('M-3-12-0', 'PROSEDUR BIOPSI SENDI DAN TRAKSI SKELETAL', 1404100.00), +('M-3-13-0', 'PROSEDUR REDUKSI FRAKTUR TERTUTUP', 728000.00), +('M-3-14-0', 'PROSEDUR REDUKSI FRAKTUR WAJAH TERTUTUP', 739100.00), +('M-3-15-0', 'PROSEDUR APLIKASI CASTS DAN SPLINTS', 485600.00), +('M-3-16-0', 'PROSEDUR THERAPI FISIK DAN PROSEDUR KECIL MUSKULOSKLETAL', 201000.00), +('M-3-17-0', 'PROSEDUR PEMASANGAN ALAT PROSTETIK', 426800.00), +('N-2-11-0', 'PROSEDUR BESAR PADA KANDUNG KEMIH', 6356400.00), +('N-2-12-0', 'PROSEDUR MEMBUAT BARU, MEREVISI DAN MEMINDAHKAN ALAT DIALISIS', 4483300.00), +('N-2-21-0', 'EXTRACORPOREAL SHOCKWAVE LITHOTRIPSY (ESWL) PADA SALURAN KEMIH', 6211300.00), +('N-2-22-0', 'PROSEDUR BESAR PADA GINJAL DAN URETER', 2378000.00), +('N-2-23-0', 'PROSEDUR SEDANG PADA GINJAL DAN URETER', 1540900.00), +('N-2-24-0', 'PROSEDUR KECIL PADA GINJAL DAN URETER', 1089800.00), +('N-2-31-0', 'PROSEDUR BESAR PADA KANDUNG KEMIH DAN URETHRA', 1365300.00), +('N-2-32-0', 'PROSEDUR KECIL PADA KANDUNG KEMIH DAN URETHRA', 815600.00), +('N-2-41-0', 'PROSEDUR BESAR PADA URETHRA DAN TRANSURETHRA', 1612800.00), +('N-2-42-0', 'PROSEDUR KECIL PADA URETHRA DAN TRANSURETHRA', 957600.00), +('N-3-10-0', 'PROSEDUR PADA GINJAL DAN URETER', 524700.00), +('N-3-11-0', 'PROSEDUR DIAGNOSTIK LAIN PADA STUDI SALURAN KEMIH', 783300.00), +('N-3-12-0', 'PROSEDUR CYSTOSCOPI & PROSEDUR KECIL ENDOSKOPI SALURAN KEMIH', 1085200.00), +('N-3-13-0', 'PROSEDUR BESAR ENDOSKOPI PADA SALURAN KEMIH', 1245400.00), +('N-3-14-0', 'PROSEDUR KECIL ENDOSKOPI PADA SALURAN KEMIH', 522800.00), +('N-3-15-0', 'PROSEDUR DIALISIS', 992300.00), +('O-7-10-0', 'PROSEDUR PERSALINAN DENGAN BEDAH CAESAR', 2665200.00), +('O-7-11-0', 'PERSALINAN VAGINAL DENGAN STERILISASI DAN ATAU PELEBARAN DAN KURETASE', 2388300.00), +('O-7-12-0', 'PROSEDUR PERSALINAN VAGINAL DENGAN PROSEDUR SELAIN STERILISASI DAN ATAU PELEBARAN DAN KURETASE', 2110400.00), +('O-7-13-0', 'PROSEDUR PERSALINAN MELALUI VAGINAL/JALAN LAHIR', 1601400.00), +('P-9-11-0', 'NEONATAL, BBL GROUP-2', 515900.00), +('P-9-12-0', 'NEONATAL, BBL GROUP-3', 499900.00), +('P-9-13-0', 'NEONATAL, BBL GROUP-4', 453200.00), +('P-9-14-0', 'NEONATAL, BBL GROUP-5 DENGAN ANOMALI MAYOR ATAU KONDISI HEREDITER', 432300.00), +('P-9-15-0', 'NEONATAL, BBL GROUP-5 DENGAN SINDROM ASPIRASI', 372400.00), +('P-9-16-0', 'NEONATAL, BBL GROUP-5 DENGAN KONGENITAL/INFEKSI PERINATAL', 423200.00), +('P-9-17-0', 'NEONATAL, BBL GROUP-5', 451300.00), +('Q-5-10-0', 'PENYALAHGUNAAN ZAT KIMIA AKUT', 488100.00), +('Q-5-11-0', 'PENYALAHGUNAAN ZAT KIMIA BUKAN AKUT', 359500.00), +('Q-5-12-0', 'GIGI', 318400.00), +('Q-5-13-0', 'MEDICAL CHECK-UP', 149400.00), +('Q-5-14-0', 'RONGENT (PLAIN FILM)', 197400.00), +('Q-5-15-0', 'ELEKTROKARDIOGRAM (ECG)', 100500.00), +('Q-5-16-0', 'VAKSINASI', 114800.00), +('Q-5-17-0', 'PASANG INFUS', 112600.00), +('Q-5-18-0', 'KONSULTASI ATAU PEMERIKSAAN LAIN-LAIN', 369200.00), +('Q-5-19-0', 'KONTAK PELAYANAN KESEHATAN LAIN-LAIN', 195000.00), +('Q-5-20-0', 'ABORSI MENGANCAM', 252200.00), +('Q-5-21-0', 'ABORSI', 276800.00), +('Q-5-22-0', 'PERSALINAN YANG SUKAR (FALSE LABOR)', 167200.00), +('Q-5-23-0', 'PEMERIKSAAN ANTEPARTUM', 178800.00), +('Q-5-24-0', 'PEMERIKSAAN POSTPARTUM', 113700.00), +('Q-5-25-0', 'GASTROINTESTINAL AKUT', 182200.00), +('Q-5-26-0', 'BRONKIAL AKUT', 231400.00), +('Q-5-27-0', 'SISTEM PERSARAFAN PUSAT AKUT', 173800.00), +('Q-5-28-0', 'KECEDERAAN SISTEM PERSARAFAN PUSAT', 282900.00), +('Q-5-29-0', 'GAGAL JANTUNG KONGESTIF DAN KONDISI JANTUNG LAIN-LAIN', 799600.00), +('Q-5-30-0', 'INFARK MIOKARD AKUT DAN ARITMIA', 927000.00), +('Q-5-31-0', 'FRAKTUR', 220600.00), +('Q-5-32-0', 'SALURAN KEMIH AKUT', 384800.00), +('Q-5-33-0', 'HEMATOLOGI AKUT', 218300.00), +('Q-5-34-0', 'INFEKSI VIRUS HIV', 263100.00), +('Q-5-35-0', 'INFEKSI AKUT', 647300.00), +('Q-5-36-0', 'KEKACAUAN METABOLIK AKUT', 554100.00), +('Q-5-37-0', 'CARDIAC ARREST, RESPIRATORY ARREST & SHOCK', 447400.00), +('Q-5-38-0', 'PARU AKUT', 377200.00), +('Q-5-39-0', 'KECEDERAAN BESAR PADA JARINGAN LUNAK', 207600.00), +('Q-5-40-0', 'INFEKSI SALURAN KEMIH AKUT', 176800.00), +('Q-5-41-0', 'PENYAKIT AKUT BESAR LAIN-LAIN', 444100.00), +('Q-5-42-0', 'PENYAKIT AKUT KECIL LAIN-LAIN', 332900.00), +('Q-5-43-0', 'PENYAKIT KRONIS BESAR LAIN-LAIN', 477500.00), +('Q-5-44-0', 'PENYAKIT KRONIS KECIL LAIN-LAIN', 377100.00), +('T-2-10-0', 'PEMULIHAN ALKOHOL, OBAT DAN ATAU TERAPI DETOKSIKASI', 217800.00), +('U-2-10-0', 'PROSEDUR BESAR PADA LARING', 3492100.00), +('U-2-11-0', 'PROSEDUR BESAR LAIN-LAIN PADA KEPALA & LEHER', 2873600.00), +('U-2-12-0', 'PROSEDUR PADA SINUS & MASTOID', 612400.00), +('U-2-13-0', 'PROSEDUR KELENJAR LUDAH', 821200.00), +('U-2-14-0', 'PROSEDUR OPERASI BIBIR SUMBING & LANGIT-LANGIT MULUT', 1614900.00), +('U-2-15-0', 'PROSEDUR OPERASI TONSIL & AMANDEL', 1561800.00), +('U-2-21-0', 'PROSEDUR BESAR PADA TELINGA, HIDUNG, MULUT DAN TENGGOROKAN', 1157600.00), +('U-2-22-0', 'PROSEDUR SEDANG PADA TELINGA, HIDUNG, MULUT DAN TENGGOROKAN', 598000.00), +('U-2-23-0', 'PROSEDUR PERBAIKAN HIDUNG (RHINOPLASTY)', 1863500.00), +('U-2-24-0', 'PROSEDUR KECIL PADA HIDUNG', 330600.00), +('U-2-25-0', 'PROSEDUR PADA TELINGA TENGAH', 486000.00), +('U-2-31-0', 'PROSEDUR BESAR PADA MULUT DAN LIDAH', 782500.00), +('U-2-32-0', 'PROSEDUR KECIL PADA MULUT DAN LIDAH', 488200.00), +('U-3-10-0', 'PROSEDUR SEDANG LAIN-LAIN PADA TELINGA, HIDUNG, MULUT DAN TENGGOROKAN', 493100.00), +('U-3-11-0', 'PROSEDUR KECIL LAIN-LAIN PADA TELINGA, HIDUNG, MULUT DAN TENGGOROKAN', 466700.00), +('U-3-12-0', 'PROSEDUR KAUTERISASI & PACKING PADA RONGGA HIDUNG', 276000.00), +('U-3-13-0', 'PROSEDUR DIAGNOSTIK LAIN-LAIN PADA TELINGA, HIDUNG, MULUT DAN TENGGOROKAN', 480300.00), +('U-3-14-0', 'PROSEDUR TES FUNGSI PADA TELINGA, HIDUNG, MULUT DAN TENGGOROKAN', 434800.00), +('U-3-15-0', 'PROSEDUR LAIN-LAIN PADA TELINGA, HIDUNG, MULUT DAN TENGGOROKAN', 385100.00), +('U-3-16-0', 'PROSEDUR PADA GIGI', 446500.00), +('V-2-10-0', 'PROSEDUR BESAR PADA PENGANGKATAN PROSTAT', 3605600.00), +('V-2-11-0', 'PROSEDUR PADA PENIS', 625700.00), +('V-2-12-0', 'PROSEDUR SEDANG PADA PROSTAT DAN SKROTUM', 1297600.00), +('V-2-13-0', 'PROSEDUR KECIL PADA PROSTAT DAN SKROTUM', 472000.00), +('V-2-14-0', 'PENGANGKATAN PROSTAT MELALUI TRANSURETHRAL', 834700.00), +('V-2-15-0', 'SIRKUMSISI/SUNAT', 543500.00), +('V-3-10-0', 'PROSEDUR STERILISASI PADA LAKI-LAKI', 478200.00), +('V-3-11-0', 'PROSEDUR DIAGNOSTIK DAN TERAPEUTIK PADA ALAT GENITAL LAKI-LAKI', 1165500.00), +('V-3-12-0', 'PROSEDUR LAIN PADA ALAT GENITAL LAKI-LAKI', 1154000.00), +('W-2-10-0', 'PROSEDUR ABORSI', 1583700.00), +('W-2-11-0', 'PROSEDUR PELEBARAN, KURETASE DALAM RAHIM & LEHER RAHIM', 1412900.00), +('W-2-12-0', 'PROSEDUR MEMBUKA TUBA YANG TERHALANG/TERGANGGU', 1586700.00), +('W-2-13-0', 'PROSEDUR ENDOSKOPI TUBA YANG TERHALANG/TERGANGGU', 1139900.00), +('W-2-21-0', 'PROSEDUR BESAR PADA FRAKTUR RONGGA PANGGUL TERBUKA', 2782800.00), +('W-2-22-0', 'PROSEDUR KECIL PADA FRAKTUR RONGGA PANGGUL TERBUKA', 671800.00), +('W-2-23-0', 'PROSEDUR LAPAROSKOPI GINEKOLOGI', 1501000.00), +('W-2-31-0', 'PROSEDUR PEMBUANGAN RAHIM MELALUI JALAN LAHIR', 3205800.00), +('W-2-32-0', 'PROSEDUR PERBAIKAN CYSTOCELE DAN VULVOVAGINAL INTERMEDIATE', 2965400.00), +('W-2-33-0', 'PROSEDUR KECIL VULVOVAGINAL', 1306400.00), +('W-2-34-0', 'PROSEDUR GINEKOLOGI LAIN-LAIN', 551700.00), +('W-3-10-0', 'PROSEDUR KECIL GINEKOLOGI & ENDOSKOPI', 1102000.00), +('W-3-11-0', 'PROSEDUR SEDANG GINEKOLOGI', 912000.00), +('W-3-12-0', 'PROSEDUR KECIL GINEKOLOGI', 422700.00), +('Z-3-10-0', 'PROSEDUR RADIOSURGICAL', 3313100.00), +('Z-3-11-0', 'EXTRACORPOREAL SHOCKWAVE LITHOTRIPSY (ESWL) SELAIN URINARI DAN SALURAN EMPEDU', 3205400.00), +('Z-3-12-0', 'PROSEDUR REHABILITASI', 241200.00), +('Z-3-13-0', 'PROSEDUR KECIL PELAYANAN PENUNJANG LAIN-LAIN', 207200.00), +('Z-3-14-0', 'DIAGNOSTIK TIDUR', 501400.00), +('Z-3-15-0', 'IMAGING NUKLIR JANTUNG', 615700.00), +('Z-3-16-0', 'PROSEDUR MAGNETIC RESONANCE IMAGING (MRI)', 1436700.00), +('Z-3-17-0', 'PENGOBATAN NUKLIR', 1646300.00), +('Z-3-18-0', 'CT-SCAN KEPALA', 1405100.00), +('Z-3-19-0', 'CT SCAN LAIN-LAIN', 1703300.00), +('Z-3-20-0', 'IMAGING KONTRAS SALURAN URINARI', 852100.00), +('Z-3-21-0', 'IMAGING KONTRAS PEMBULUH DARAH', 1264500.00), +('Z-3-22-0', 'IMAGING KONTRAS LAIN-LAIN', 819100.00), +('Z-3-23-0', 'PROSEDUR ULTRASOUND LAIN-LAIN', 655700.00), +('Z-3-24-0', 'PROSEDUR ULTRASOUND PEMBULUH DARAH', 790600.00), +('Z-3-25-0', 'PROSEDUR ULTRASOUND GINEKOLOGIK', 454900.00), +('Z-3-26-0', 'PROSEDUR BESAR RADIOGRAFI', 1075400.00), +('Z-3-27-0', 'PERAWATAN LUKA', 222200.00), +('Z-3-28-0', 'IMAGING PAYUDARA', 851100.00), +('Z-3-29-0', 'IMAGING LAIN-LAIN', 1810900.00), +('Z-3-30-0', 'FOTOTERAPI', 122700.00); + +-- -------------------------------------------------------- + +-- +-- Struktur dari tabel `pasien` +-- + +CREATE TABLE `pasien` ( + `ID_Pasien` int(11) NOT NULL, + `Nama_Pasien` varchar(100) NOT NULL, + `Jenis_Kelamin` enum('Laki-laki','Perempuan') NOT NULL, + `Usia` int(11) DEFAULT NULL, + `Ruangan` varchar(100) DEFAULT NULL, + `Kelas` enum('1','2','3') DEFAULT NULL +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; + +-- -------------------------------------------------------- + +-- +-- Struktur dari tabel `ruangan` +-- + +CREATE TABLE `ruangan` ( + `ID_Ruangan` int(11) NOT NULL, + `Jenis_Ruangan` varchar(100) DEFAULT NULL, + `Nama_Ruangan` varchar(100) DEFAULT NULL, + `keterangan` varchar(100) DEFAULT NULL, + `kategori_ruangan` varchar(100) DEFAULT NULL +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; + +-- +-- Dumping data untuk tabel `ruangan` +-- + +INSERT INTO `ruangan` (`ID_Ruangan`, `Jenis_Ruangan`, `Nama_Ruangan`, `keterangan`, `kategori_ruangan`) VALUES +(2, 'Rawat Inap Kelas I', 'R. Gili Trawangan', 'Pasien psikiatri', 'IRNA 1Rawat Inap I (Penyakit Dalam)'), +(3, 'Rawat Inap Kelas I', 'R. Nusa Dua', 'Ruang perawatan L/P raber', 'IRNA 1Rawat Inap I (Penyakit Dalam)'), +(4, 'Rawat Inap Kelas II', 'R. Gili Trawangan', 'Pasien psikiatri', 'IRNA 1Rawat Inap I (Penyakit Dalam)'), +(5, 'Rawat Inap Kelas II', 'R. Bunaken & R. Jimbaran', 'Ruang perawatan L/P raber', 'IRNA 1Rawat Inap I (Penyakit Dalam)'), +(6, 'Rawat Inap Kelas II', 'R. HCU Mahakam', 'Pasien Stroke', 'IRNA 1Rawat Inap I (Penyakit Dalam)'), +(7, 'Rawat Inap Kelas II', 'R. HCU Ciliwung', 'Pasien HCU (IPD) infeksi & non infeksi, medical bedah.', 'IRNA 1Rawat Inap I (Penyakit Dalam)'), +(8, 'Rawat Inap Kelas II', 'R. HCU Brantas', 'Pasien HCU (Paru) TB dan Non TB', 'IRNA 1Rawat Inap I (Penyakit Dalam)'), +(9, 'Rawat Inap Kelas II', 'R. HCU Cisadane', 'HCU Bedah L/P', 'IRNA 1Rawat Inap I (Penyakit Dalam)'), +(10, 'Rawat Inap Kelas III', 'R. Bunaken & R. Losari', 'Ruang perawatan L/P raber', 'IRNA 1Rawat Inap I (Penyakit Dalam)'), +(11, 'Rawat Inap Kelas III', 'R. Parangtritis', 'Pasien Perempuan raber', 'IRNA 1Rawat Inap I (Penyakit Dalam)'), +(12, 'Rawat Inap Kelas III', 'R. Pangandaran', 'Pasien Laki-laki raber', 'IRNA 1Rawat Inap I (Penyakit Dalam)'), +(13, 'Rawat Inap Kelas III', 'R. Gili Trawangan', 'Psikiatri (L/P) & medical bedah', 'IRNA 1Rawat Inap I (Penyakit Dalam)'), +(14, 'Tindakan', 'R. Apharesis', 'R. Apharesis', 'IRNA 1Rawat Inap I (Penyakit Dalam)'), +(15, 'Tindakan', 'R. FOB (OK Paru)', 'R. FOB (OK Paru)', 'IRNA 1Rawat Inap I (Penyakit Dalam)'), +(16, 'R. Endoscopy', 'R. Endoscopy', 'Endoscopy Diagnostik dan Endoscopy Therapy dengan GA.', 'IRNA 1Rawat Inap I (Penyakit Dalam)'), +(17, 'Tindakan', 'R. Neuro diagnostic', 'Ruang EEG, EMG, PSG, TCD', 'IRNA 1Rawat Inap I (Penyakit Dalam)'), +(18, 'Tindakan', 'R. Tindakan Non Bedah', 'Pasien yang membutuhkan USG', 'IRNA 1Rawat Inap I (Penyakit Dalam)'), +(19, 'Ruang Rawat Inap Barito', 'Ruang Rawat Inap Barito', '17 tempat tidur', 'Ruang Pelayanan IPJVT'), +(20, 'Ruang Rawat Inap Bengawan Solo', 'Ruang Rawat Inap Bengawan Solo', '10 tempat tidur', 'Ruang Pelayanan IPJVT'), +(21, 'Ruang VIP', 'Ruang VIP', '4 tempat tidur', 'Ruang Pelayanan IPJVT'), +(22, 'Ruang Cardiovascular Care Unit (CVCU)', 'Ruang Cardiovascular Care Unit (CVCU)', '13 tempat tidur', 'Ruang Pelayanan IPJVT'), +(23, 'Ruang Non Invasif (echocardiografi, holter, tilt table test, dupplex- vascular, dan plathysmogr', 'Ruang Non Invasif (echocardiografi, holter, tilt table test, dupplex- vascular, dan plathysmogr', 'Ruang Tindakan', 'Ruang Pelayanan IPJVT'), +(24, 'Ruang Rehabilitasi Jantung', 'Ruang Rehabilitasi Jantung', 'Ruang Tindakan', 'Ruang Pelayanan IPJVT'), +(25, 'Ruang Kateterisasi Jantung', 'Ruang Kateterisasi Jantung', 'Ruang Tindakan', 'Ruang Pelayanan IPJVT'), +(26, 'Ruang Rinjani', 'Ruang Rinjani', 'Ruang perawatan bedah anak laki-laki dan perempuan (Kelas I,II dan III)', 'IRNA 2-Instalasi Rawat Inap II (Bedah)'), +(27, 'Ruang Bromo', 'Ruang Bromo', 'Ruang perawatan Bedah lakiโ€“laki dan perempuan', 'IRNA 2-Instalasi Rawat Inap II (Bedah)'), +(28, 'Ruang HCU Kawi', 'Ruang HCU Kawi', 'Ruang perawatan HCU luka bakar (Combustio)', 'IRNA 2-Instalasi Rawat Inap II (Bedah)'), +(29, 'Ruang Kerinci', 'Ruang Kerinci', 'Ruang perawatan lakiโ€“laki dan perempuan', 'IRNA 2-Instalasi Rawat Inap II (Bedah)'), +(30, 'Ruang Galunggung', 'Ruang Galunggung', 'Ruang perawatan lakiโ€“laki dan perempuan', 'IRNA 2-Instalasi Rawat Inap II (Bedah)'), +(31, 'Ruang Semeru', 'Ruang Semeru', 'Ruang perawatan kemoterapi terpadu kelas III lakiโ€“laki dan perempuan.', 'IRNA 2-Instalasi Rawat Inap II (Bedah)'), +(32, 'Ruang Tindakan', 'Ruang Tindakan', '๏‚ง Ruang Tindakan THT, ruang tindakan lokal anestesi. ๏‚ง Ruang tindakan Mata. ๏‚ง Ruang tindakan E', 'IRNA 2-Instalasi Rawat Inap II (Bedah)'), +(33, 'Tindakan', 'Tindakan', 'Ruang tindakan untuk persalinan', 'IRNA 3-Instalasi Rawat Inap III (Obgyn)'), +(34, 'Kelas VIP, I, II, II', 'Kelas VIP, I, II, II', 'Untuk pelayanan onstetri, ginekologi, onkologi, dan rawat gabungan', 'IRNA 3-Instalasi Rawat Inap III (Obgyn)'), +(35, 'Kelas II', 'Kelas II', 'Untuk pelayanan onstetri, ginekologi, onkologi, dan rawat gabungan', 'IRNA 3-Instalasi Rawat Inap III (Obgyn)'), +(36, 'Kelas III', 'Kelas III', 'Spesifikasi pelayanan pasien kanker kandungan dan ginekologi', 'IRNA 3-Instalasi Rawat Inap III (Obgyn)'), +(37, 'Ruang Kelimutu', 'Ruang Kelimutu', 'Ruang perawatan anak dan kemoterapi', 'IRNA 4-Instalasi Rawat Inap IV (Anak)'), +(38, 'Ruang HCU Sarangan', 'Ruang HCU Sarangan', 'Ruang High Care Unit (HCU) Anak', 'IRNA 4-Instalasi Rawat Inap IV (Anak)'), +(39, 'Ruang Tondano', 'Ruang Tondano', 'Ruang perawatan anak dan kemoterapi', 'IRNA 4-Instalasi Rawat Inap IV (Anak)'), +(40, 'Ruang HCU Ranu Pani', 'Ruang HCU Ranu Pani', 'Ruang High Care Unit (HCU) perawatan neonatal', 'IRNA 4-Instalasi Rawat Inap IV (Anak)'), +(41, 'Ruang NICU Maninjau', 'Ruang NICU Maninjau', 'Ruang Intensif Care Unit (NICU) untuk Neonatal', 'IRNA 4-Instalasi Rawat Inap IV (Anak)'), +(42, 'Rawat Inap Kelas VIP/VVIP', 'Rawat Inap Kelas VIP/VVIP', 'Rawat Inap Kelas VIP/VVIP', 'Rawat Inap Gran Paviliun'), +(43, 'Rawat Inap Kelas Utama', 'Rawat Inap Kelas Utama', 'Rawat Inap Kelas Utama', 'Rawat Inap Gran Paviliun'), +(44, 'Ruang Bougenvill', 'Ruang Bougenvill', 'ruang rawat inap khusus airbone bertekanan negatif', 'Rawat inap Instalasi Pelayanan Infeksi Terpadu'), +(45, 'Ruang Dahlia', 'Ruang Dahlia', 'ruang rawat inap infeksi non airbone maupun non infeksi', 'Rawat inap Instalasi Pelayanan Infeksi Terpadu'), +(46, 'Ruang Mawar', 'Ruang Mawar', 'ruang rawat inap infeksi non airbone maupun non infeksi', 'Rawat inap Instalasi Pelayanan Infeksi Terpadu'); + +-- -------------------------------------------------------- + +-- +-- Struktur dari tabel `tarif_rs` +-- + +CREATE TABLE `tarif_rs` ( + `ID_Tarif_RS` varchar(20) NOT NULL, + `Tindakan_RS` varchar(255) DEFAULT NULL, + `Tarif_RS` int(11) DEFAULT NULL, + `Kategori_RS` varchar(255) DEFAULT NULL +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; + +-- +-- Dumping data untuk tabel `tarif_rs` +-- + +INSERT INTO `tarif_rs` (`ID_Tarif_RS`, `Tindakan_RS`, `Tarif_RS`, `Kategori_RS`) VALUES +('DAR.001', 'PEMERIKSAAN', 80000, 'RAWAT DARURAT'), +('DAR.002', 'KONSULTASI', 70000, 'RAWAT DARURAT'), +('KFM.001', 'AMPHETHAMINE', 77000, 'PEMULASARAAN JENAZAH'), +('KFM.002', 'BARBITURATE', 77000, 'PEMULASARAAN JENAZAH'), +('KFM.003', 'BENZODIAZEPANES', 77000, 'PEMULASARAAN JENAZAH'), +('KFM.004', 'BERCAK DARAH BASAH', 139000, 'PEMULASARAAN JENAZAH'), +('KFM.005', 'BERCAK DARAH KERING', 139000, 'PEMULASARAAN JENAZAH'), +('KFM.006', 'BERCAK DARAH PAKAIAN', 139000, 'PEMULASARAAN JENAZAH'), +('KFM.007', 'BERCAK DARAH TEST BENZIDINE', 139000, 'PEMULASARAAN JENAZAH'), +('KFM.008', 'BERCAK DARAH TEST LMG ALDRIEN', 139000, 'PEMULASARAAN JENAZAH'), +('KFM.009', 'BERCAK DARAH TEST LUMINOL', 139000, 'PEMULASARAAN JENAZAH'), +('KFM.010', 'BERCAK DARAH TEST PADA KERTAS', 139000, 'PEMULASARAAN JENAZAH'), +('KFM.011', 'BERCAK DARAH TEST PADA BATU', 139000, 'PEMULASARAAN JENAZAH'), +('KFM.012', 'BERCAK DARAH TEST PADA KAPAS', 139000, 'PEMULASARAAN JENAZAH'), +('KFM.013', 'BERCAK DARAH TEST PADA KAYU', 139000, 'PEMULASARAAN JENAZAH'), +('KFM.014', 'BERCAK DARAH TEST PADA PAKAIAN / KAIN', 139000, 'PEMULASARAAN JENAZAH'), +('KFM.015', 'BERCAK DARAH TEST PADA SENJATA TAJAM', 139000, 'PEMULASARAAN JENAZAH'), +('KFM.016', 'BERCAK DARAH TEST PADA SENJATA TUMPUL (PALU)', 139000, 'PEMULASARAAN JENAZAH'), +('KFM.017', 'BERCAK DARAH TEST PADA TISSUE', 139000, 'PEMULASARAAN JENAZAH'), +('KFM.018', 'BERCAK DARAH TEST PHENOLPHITHALIN', 139000, 'PEMULASARAAN JENAZAH'), +('KFM.019', 'BERCAK DARAH TEST TAKAYAMA', 139000, 'PEMULASARAAN JENAZAH'), +('KFM.020', 'BERCAK DARAH TEST TEICHMANN', 139000, 'PEMULASARAAN JENAZAH'), +('KFM.021', 'COCAINE', 77000, 'PEMULASARAAN JENAZAH'), +('KFM.022', 'IDENTIFIKASI RAMBUT MIKROSKOPIS', 139000, 'PEMULASARAAN JENAZAH'), +('KFM.023', 'IDENTIFIKASI SISIK RAMBUT', 139000, 'PEMULASARAAN JENAZAH'), +('KFM.024', 'KETERANGAN BAP', 660000, 'PEMULASARAAN JENAZAH'), +('KFM.025', 'KONSERVASI JENAZAH ( PENGAWETAN JENAZAH )', 3466000, 'PEMULASARAAN JENAZAH'), +('KFM.026', 'KONSULTASI MEDIK', 264000, 'PEMULASARAAN JENAZAH'), +('KFM.027', 'METHAMPHETAMINE', 77000, 'PEMULASARAAN JENAZAH'), +('KFM.028', 'OPIUM / MORPHINE / MOP', 77000, 'PEMULASARAAN JENAZAH'), +('KFM.029', 'OTOPSI JENAZAH LUAR NEGERI', 1452000, 'PEMULASARAAN JENAZAH'), +('KFM.030', 'OTOPSI REPOT JENAZAH LUAR NEGERI', 1386000, 'PEMULASARAAN JENAZAH'), +('KFM.031', 'PEMERIKSAAN BARBITURATE', 35000, 'PEMULASARAAN JENAZAH'), +('KFM.032', 'PEMERIKSAAN FORENSIK KLINIK DAN PEMBUATAN VISUM ET REPERTUM', 462000, 'PEMULASARAAN JENAZAH'), +('KFM.033', 'PEMERIKSAAN JENAZAH DAN PEMBUATAN VISUM ET REPERTUM', 1003000, 'PEMULASARAAN JENAZAH'), +('KFM.034', 'PEMERIKSAAN NARKOBA TOKSIKOLOGI (5 ITEM)', 277000, 'PEMULASARAAN JENAZAH'), +('KFM.035', 'PEMERIKSAAN RACUN ALKOHOL SECARA KUALITATIF', 42000, 'PEMULASARAAN JENAZAH'), +('KFM.036', 'PEMERIKSAAN RACUN ALKOHOL SECARA KUANTITATIF', 55000, 'PEMULASARAAN JENAZAH'), +('KFM.037', 'PEMERIKSAAN RACUN ARSENIKUM', 35000, 'PEMULASARAAN JENAZAH'), +('KFM.038', 'PEMERIKSAAN RACUN CREOLIN', 35000, 'PEMULASARAAN JENAZAH'), +('KFM.039', 'PEMERIKSAAN RACUN CYANIDA', 42000, 'PEMULASARAAN JENAZAH'), +('KFM.040', 'PEMERIKSAAN RACUN FENOL', 35000, 'PEMULASARAAN JENAZAH'), +('KFM.041', 'PEMERIKSAAN RACUN IKAN TONGKOL', 42000, 'PEMULASARAAN JENAZAH'), +('KFM.042', 'PEMERIKSAAN RACUN INSEKTISIDA', 70000, 'PEMULASARAAN JENAZAH'), +('KFM.043', 'PEMERIKSAAN RACUN KARBONDIOKSIDA', 28000, 'PEMULASARAAN JENAZAH'), +('KFM.044', 'PEMERIKSAAN RACUN KARBONMONOKSIDA', 28000, 'PEMULASARAAN JENAZAH'), +('KFM.045', 'PEMERIKSAAN RACUN LOGAM BERAT', 35000, 'PEMULASARAAN JENAZAH'), +('KFM.046', 'PEMERIKSAAN RACUN MAKANAN', 42000, 'PEMULASARAAN JENAZAH'), +('KFM.047', 'PEMERIKSAAN RACUN MINYAK TANAH', 70000, 'PEMULASARAAN JENAZAH'), +('KFM.048', 'PEMERIKSAAN RACUN OBAT SALISILAT', 35000, 'PEMULASARAAN JENAZAH'), +('KFM.049', 'PEMERIKSAAN RACUN SINGKONG ATAU UBI-UBIAN', 42000, 'PEMULASARAAN JENAZAH'), +('KFM.050', 'PEMERIKSAAN TOKSIKOLOGI LAINNYA', 139000, 'PEMULASARAAN JENAZAH'), +('KFM.051', 'PENGAWETAN JENAZAH FORMULA', 6930000, 'PEMULASARAAN JENAZAH'), +('KFM.052', 'PENGAWETAN JENAZAH LUAR NEGERI', 4158000, 'PEMULASARAAN JENAZAH'), +('KFM.053', 'PENGAWETAN JENAZAH MENULAR', 6930000, 'PEMULASARAAN JENAZAH'), +('KFM.054', 'PENGGALIAN JENAZAH', 6930000, 'PEMULASARAAN JENAZAH'), +('KFM.055', 'PERAWATAN JENAZAH HIV / AIDS', 1016000, 'PEMULASARAAN JENAZAH'), +('KFM.056', 'PERAWATAN JENAZAH LUAR NEGERI', 218000, 'PEMULASARAAN JENAZAH'), +('KFM.057', 'PERAWATAN JENAZAH MENULAR DAN MENGKAFANI JENAZAH', 1320000, 'PEMULASARAAN JENAZAH'), +('KFM.058', 'PERAWATAN JENAZAH MENULAR, MENGKAFANI DENGAN PETI', 3168000, 'PEMULASARAAN JENAZAH'), +('KFM.059', 'PERAWATAN JENAZAH TIDAK MENULAR', 396000, 'PEMULASARAAN JENAZAH'), +('KFM.060', 'PERAWATAN JENAZAH TIDAK MENULAR DAN MENGKAFANI JENAZAH', 541000, 'PEMULASARAAN JENAZAH'), +('KFM.061', 'PENGAWETAN JENAZAH DENGAN KAMAR PENDINGIN', 88000, 'PEMULASARAAN JENAZAH'), +('KFM.062', 'TEST DNA', 6930000, 'PEMULASARAAN JENAZAH'), +('KFM.063', 'TEST APUNG DIATOMEA', 139000, 'PEMULASARAAN JENAZAH'), +('KFM.064', 'TEST APUNG GETAH PARU', 139000, 'PEMULASARAAN JENAZAH'), +('KFM.065', 'TEST CAIRAN ANALISA SWAB ANUS', 209000, 'PEMULASARAAN JENAZAH'), +('KFM.066', 'TEST CAIRAN ANALISA SPERMA BAHAN BERCAK PAKAIAN', 209000, 'PEMULASARAAN JENAZAH'), +('KFM.067', 'TEST CAIRAN ANALISA SPERMA BAHAN CAIRAN VAGINA', 209000, 'PEMULASARAAN JENAZAH'), +('KFM.068', 'TEST CAIRAN ANALISA SPERMA BAHAN RAMBUT', 209000, 'PEMULASARAAN JENAZAH'), +('KFM.069', 'TEST CAIRAN ANALISA SPERMA BAHAN RAMBUT', 209000, 'PEMULASARAAN JENAZAH'), +('KFM.070', 'TEST CAIRAN ANALISA SWAB VAGINA', 209000, 'PEMULASARAAN JENAZAH'), +('KFM.071', 'TEST GOLONGAN DARAH BAHAN BERCAK PAKAIAN', 139000, 'PEMULASARAAN JENAZAH'), +('KFM.072', 'TEST GOLONGAN DARAH BAHAN DARAH KERING', 139000, 'PEMULASARAAN JENAZAH'), +('KFM.073', 'TEST GOLONGAN DARAH BAHAN DARAH RUSAK', 139000, 'PEMULASARAAN JENAZAH'), +('KFM.074', 'TEST GOLONGAN DARAH BAHAN GIGI', 209000, 'PEMULASARAAN JENAZAH'), +('KFM.075', 'TEST GOLONGAN DARAH BAHAN KERINGAT', 209000, 'PEMULASARAAN JENAZAH'), +('KFM.076', 'TEST GOLONGAN DARAH BAHAN KUKU', 139000, 'PEMULASARAAN JENAZAH'), +('KFM.077', 'TEST GOLONGAN DARAH BAHAN RAMBUT', 139000, 'PEMULASARAAN JENAZAH'), +('KFM.078', 'TEST GOLONGAN DARAH BAHAN RAMBUT & KULIT KEPALA BAYI', 209000, 'PEMULASARAAN JENAZAH'), +('KFM.079', 'TEST GOLONGAN DARAH BAHAN SALIVA', 209000, 'PEMULASARAAN JENAZAH'), +('KFM.080', 'TEST GOLONGAN DARAH BAHAN SPERMATOZOA', 209000, 'PEMULASARAAN JENAZAH'), +('KFM.081', 'TEST GOLONGAN DARAH BAHAN TULANG DADA', 139000, 'PEMULASARAAN JENAZAH'), +('KFM.082', 'TEST GOLONGAN DARAH BAHAN TULANG IGA', 139000, 'PEMULASARAAN JENAZAH'), +('KFM.083', 'TEST GOLONGAN DARAH BAHAN TULANG KERANGKA', 139000, 'PEMULASARAAN JENAZAH'), +('KFM.084', 'TEST GOLONGAN DARAH BAHAN TULANG SELANGKA', 139000, 'PEMULASARAAN JENAZAH'), +('KFM.085', 'TEST GOLONGAN DARAH ABO', 12000, 'PEMULASARAAN JENAZAH'), +('KFM.086', 'TEST GOLONGAN DARAH RHESUS', 12000, 'PEMULASARAAN JENAZAH'), +('KFM.087', 'TEST MIKROBIOLOGI (DAHAK)', 139000, 'PEMULASARAAN JENAZAH'), +('KFM.088', 'TEST MIKROBIOLOGI (LAINNYA)', 139000, 'PEMULASARAAN JENAZAH'), +('KFM.089', 'TEST MIKROBIOLOGI (SWAB VAGINA) / ANALISA SPERMATOZOA', 139000, 'PEMULASARAAN JENAZAH'), +('KFM.090', 'TEST PARASITOLOGI (TELUR, LARVA, LALAT FILARIA TEST)', 174000, 'PEMULASARAAN JENAZAH'), +('KFM.091', 'TEST PRESIPITAN', 173000, 'PEMULASARAAN JENAZAH'), +('KFM.092', 'THC / CANNABINOID', 77000, 'PEMULASARAAN JENAZAH'), +('KFM.093', 'PENGAWETAN ORGAN DENGAN KAMAR PENDINGIN', 42000, 'PEMULASARAAN JENAZAH'), +('KODE', 'URAIAN', 0, 'TINDAKAN OPERATIF'), +('R.AKO.001', 'JASA AKOMODASI - KELAS 3', 150000, 'RAWAT INAP'), +('R.AKO.002', 'JASA AKOMODASI - KELAS 2', 200000, 'RAWAT INAP'), +('R.AKO.003', 'JASA AKOMODASI - KELAS 1', 250000, 'RAWAT INAP'), +('R.AKO.004', 'JASA AKOMODASI BAYI - KELAS 3 (RAWAT GABUNG)', 75000, 'RAWAT INAP'), +('R.AKO.005', 'JASA AKOMODASI BAYI - KELAS 2 (RAWAT GABUNG)', 100000, 'RAWAT INAP'), +('R.AKO.006', 'JASA AKOMODASI BAYI - KELAS 1 (RAWAT GABUNG)', 125000, 'RAWAT INAP'), +('R.DRH.001', 'BLOOD TAP (PHLEBOTOMI)', 95000, 'PELAYANAN DARAH'), +('R.DRH.002', 'DIREK COOBS TEST', 86000, 'PELAYANAN DARAH'), +('R.DRH.003', 'GOLONGAN DARAH ABO', 23000, 'PELAYANAN DARAH'), +('R.DRH.004', 'GOLONGAN DARAH NEWBORN', 167000, 'PELAYANAN DARAH'), +('R.DRH.005', 'GOLONGAN DARAH RHESUS', 23000, 'PELAYANAN DARAH'), +('R.DRH.006', 'IDENTIFIKASI ANTIBODI GOLONGAN DARAH', 661000, 'PELAYANAN DARAH'), +('R.DRH.007', 'IMMEDIATE SPIN', 14000, 'PELAYANAN DARAH'), +('R.DRH.008', 'KOMPONEN DARAH', 436000, 'PELAYANAN DARAH'), +('R.DRH.009', 'KOMPONEN DARAH AFERESES', 4140000, 'PELAYANAN DARAH'), +('R.DRH.010', 'KOMPONEN DARAH PRC LEUKOREDUCED', 802000, 'PELAYANAN DARAH'), +('R.DRH.011', 'KOMPONEN DARAH PRC LEUKOREDUCED PEDIATRI', 403000, 'PELAYANAN DARAH'), +('R.DRH.012', 'PEMERIKSAAN PRA TRANSFUSI', 205000, 'PELAYANAN DARAH'), +('R.DRH.013', 'PRC LEUKODEPLETED', 926000, 'PELAYANAN DARAH'), +('R.DRH.014', 'SKRINING ANTIBODI GOLONGAN DARAH PASIEN', 159000, 'PELAYANAN DARAH'), +('R.DRH.015', 'TES UJI SILANG SERASI', 98000, 'PELAYANAN DARAH'), +('R.DRH.016', 'WASHED ERYTHROCYTE 250 CC', 1484000, 'PELAYANAN DARAH'), +('R.DRH.017', 'JASA KONSULTASI', 100000, 'PELAYANAN DARAH'), +('R.FAR.0001', 'ASUHAN KEFARMASIAN SELAMA PERAWATAN - RAWAT INAP', 150000, 'PELAYANAN FARMASI'), +('R.FAR.0002', 'KONSELING FARMASI - RAWAT JALAN', 35000, 'PELAYANAN FARMASI'), +('R.FAR.0003', 'PRODUKSI STERIL DAN NON STERIL', 250000, 'PELAYANAN FARMASI'), +('R.FAR.0004', 'REKONSTITUSI SITOSTATIKA', 25000, 'PELAYANAN FARMASI'), +('R.FAR.0005', 'REPACKING (KEMAS ULANG) SEDIAAN INJEKSI', 160000, 'PELAYANAN FARMASI'), +('R.GZ.0001', 'ASUHAN GIZI SELAMA PERAWATAN - RAWAT INAP', 150000, 'PELAYANAN GIZI'), +('R.GZ.0002', 'KONSELING GIZI - RAWAT JALAN', 35000, 'PELAYANAN GIZI'), +('R.JAL.001', 'PEMERIKSAAN', 50000, 'RAWAT JALAN'), +('R.JAL.002', 'KONSULTASI', 40000, 'RAWAT JALAN'), +('R.KSL.001', 'JASA KONSULTASI - REGULER', 100000, 'RAWAT INAP'), +('R.LMK.001', 'BIAKAN AEROB + UJI KEPEKAAN (AUTOMATIC)', 362000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.002', 'BIAKAN AEROB SPECIMEN CAIRAN TUBUH (SELAIN DARAH)', 362000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.003', 'BIAKAN AEROB SPECIMEN DARAH (PAKET 2 BACTEC) + IDE', 478000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.004', 'BIAKAN AEROB SPECIMEN FECES + UJI KEPEKAAN (OTOMATIS)', 315000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.005', 'BIAKAN AEROB SPECIMEN PUS + UJI KEPEKAAN (OTOMATIS)', 362000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.006', 'BIAKAN AEROB SPECIMEN SPUTUM NON SPESIFIK + UJI KE', 362000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.007', 'BIAKAN AEROB SPECIMEN SWAB + UJI KEPEKAAN (OTOMATIS)', 362000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.008', 'BIAKAN AEROB SPECIMEN URINE + UJI KEPEKAAN (OTOMATIS)', 362000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.009', 'BIAKAN KHUSUS C DIPHTERIAE', 137000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.010', 'BIAKAN KHUSUS H.INFLUENZAE', 274000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.011', 'BIAKAN KHUSUS H.PYLORI', 315000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.012', 'BIAKAN KHUSUS JAMUR', 137000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.013', 'BIAKAN KHUSUS LEPTOSPIRA', 137000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.014', 'BIAKAN KHUSUS MYCOBACTERIUM + UJI KEPEKAAN (KONVEN', 274000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.015', 'BIAKAN KHUSUS MYCOBACTERIUM + UJI KEPEKAAN (MGIT)', 315000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.016', 'BIAKAN KHUSUS N. GO', 274000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.017', 'BIOMOLEKULER CHLAMYDIA', 274000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.018', 'BIOMOLEKULER CYTOMEGALOVIRUS', 1045000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.019', 'BIOMOLEKULER HCV (GENOTYPING)', 1045000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.020', 'BIOMOLEKULER HCV (KUALITATIF)', 660000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.021', 'BIOMOLEKULER HCV (KUANTITATIF)', 1463000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.022', 'BIOMOLEKULER HIV KUANTITATIF', 1045000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.023', 'BIOMOLEKULER HUMAN PAPILOMAVIRUS (KUALITATIF)', 660000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.024', 'BIOMOLEKULER HUMAN PAPILOMAVIRUS (KUANTITATIF)', 1463000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.025', 'BIOMOLEKULER M. TBC', 362000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.026', 'BIOMOLEKULER MOTT (MYCOBACTERIUM OTHER THAN TUBERC', 315000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.027', 'BTA CAIRAN ASCITES', 219000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.028', 'BTA CAIRAN CAPD', 219000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.029', 'BTA CAIRAN DRAIN', 219000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.030', 'BTA CAIRAN PERICARD', 219000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.031', 'BTA CAIRAN PERITONEUM', 219000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.032', 'BTA CAIRAN PLEURA', 219000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.033', 'BTA CAIRAN SENDI', 219000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.034', 'BTA FECES', 219000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.035', 'BTA PUS', 219000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.036', 'CCI', 219000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.037', 'KULTUR ANAEROB', 792000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.038', 'Kultur anaerob +AST', 792000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.039', 'KULTUR BTA TANPA UJI RESISTENSI', 274000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.040', 'KULTUR CAIRAN CAPD', 416000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.041', 'KULTUR CAIRAN CAPD +AST', 416000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.042', 'KULTUR CAIRAN DRAIN', 416000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.043', 'KULTUR CAIRAN OTAK & UJI KEPEKAAN AB', 416000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.044', 'KULTUR CAIRAN PERICARDIUM & UJI KEPEKAAN AB', 416000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.045', 'KULTUR CAIRAN PERITONEUM & UJI KEPEKAAN AB', 416000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.046', 'KULTUR CAIRAN PLEURA & UJI KEPEKAAN AB', 416000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.047', 'KULTUR CAIRAN SENDI & UJI KEPEKAAN AB', 416000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.048', 'KULTUR CAIRAN STERIL LAIN', 416000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.049', 'KULTUR DARAH AEROB & UJI KEPEKAAN AB', 550000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.050', 'Kultur Darah Anaerob', 550000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.051', 'Kultur Darah Jamur', 550000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.052', 'KULTUR DIFTERI TANPA UJI RESISTENSI', 219000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.053', 'KULTUR FESES AEROB & UJI KEPEKAAN AB', 416000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.054', 'Kultur Helicobacter pylori + AST', 416000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.055', 'KULTUR IDENTIFIKASI TANPA TES SENSITIFITAS ANTIBIOTIK', 871000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.056', 'KULTUR JAMUR CAIRAN ASCITES', 478000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.057', 'KULTUR JAMUR CAIRAN DRAIN', 478000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.058', 'KULTUR JAMUR CAIRAN OTAK', 478000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.059', 'KULTUR JAMUR CAIRAN PERITONEUM', 478000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.060', 'KULTUR JAMUR CAIRAN PLEURA', 478000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.061', 'KULTUR JAMUR CAIRAN SENDI', 478000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.062', 'KULTUR JAMUR CAPD', 478000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.063', 'KULTUR JAMUR PUS', 478000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.064', 'KULTUR JAMUR SPUTUM', 478000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.065', 'KULTUR JAMUR SWAB', 478000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.066', 'KULTUR JAMUR URINE', 478000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.067', 'KULTUR JAMUR YEAST DAN UJI SENSITIVITAS ANTI JAMUR', 478000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.068', 'KULTUR Neisseria gonorrhoeae + AST', 416000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.069', 'KULTUR PUS AEROB & UJI KEPEKAAN AB', 416000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.070', 'KULTUR SPUTUM AEROB NON SPESIFIK & UJI KEPEKAAN AB', 416000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.071', 'KULTUR SWAB HIDUNG & UJI KEPEKAAN AB', 416000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.072', 'KULTUR SWAB MATA & UJI KEPEKAAN AB', 416000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.073', 'KULTUR SWAB TELINGA & UJI KEPEKAAN AB', 416000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.074', 'KULTUR SWAB TENGGOROK & UJI KEPEKAAN AB', 416000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.075', 'KULTUR SWAB VAGINA & UJI KEPEKAAN AB', 416000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.076', 'KULTUR TB DENGAN METODE MGIT TANPA ADA UJI KEPEKAAN', 550000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.077', 'KULTUR URINE AEROB & UJI KEPEKAAN AB', 416000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.078', 'Negative staining', 478000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.079', 'PEMERIKSAAN BTA CAIRAN OTAK', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.080', 'PEMERIKSAAN BTA CAIRAN TUBUH', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.081', 'PEMERIKSAAN BTA LEPRA HIDUNG', 137000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.082', 'PEMERIKSAAN BTA LEPRA KEROKAN KULIT', 137000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.083', 'PEMERIKSAAN BTA REITZ SERUM LEPRA TELINGA', 137000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.084', 'PEMERIKSAAN BTA SPS', 72000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.085', 'PEMERIKSAAN BTA SPUTUM', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.086', 'PEMERIKSAAN BTA URINE', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.087', 'PEMERIKSAAN CHLAMYDIA TRACHOMATIS Ag', 274000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.088', 'PEMERIKSAAN CRYPTOCOCCUS Ag', 315000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.089', 'PEMERIKSAAN DIFTERI NEISSER', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.090', 'PEMERIKSAAN GENE EXPERT', 871000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.091', 'PEMERIKSAAN INFLUENZA A & B VIRUS Ag', 478000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.092', 'PEMERIKSAAN JAMUR CAIRAN OTAK', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.093', 'PEMERIKSAAN JAMUR CAIRAN PERICADIUM', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.094', 'PEMERIKSAAN JAMUR CAIRAN PERITONEUM', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.095', 'PEMERIKSAAN JAMUR CAIRAN PLEURA', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.096', 'PEMERIKSAAN JAMUR CAIRAN SENDI', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.097', 'PEMERIKSAAN JAMUR DARAH', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.098', 'PEMERIKSAAN JAMUR KEROKAN KULIT', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.099', 'PEMERIKSAAN JAMUR PUS', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.100', 'PEMERIKSAAN JAMUR SPUTUM', 72000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.101', 'PEMERIKSAAN LEGIONELLA Ig G', 274000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.102', 'PEMERIKSAAN LEGIONELLA Ig M', 274000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.103', 'PEMERIKSAAN LEPTOSPIRA Ig G', 219000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.104', 'PEMERIKSAAN LEPTOSPIRA Ig M', 219000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.105', 'PEMERIKSAAN MIKROSKOP FLUORESCENT CHLAMYDIA TRACHO', 416000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.106', 'PEMERIKSAAN MIKROSKOP FLUORESCENT CMV', 550000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.107', 'PEMERIKSAAN MIKROSKOP FLUORESCENT H.PYLOR', 362000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.108', 'PEMERIKSAAN MIKROSKOP FLUORESCENT LEGIONELA', 416000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.109', 'PEMERIKSAAN MIKROSKOP FLUORESCENT STREPTOCOCCUS PN', 550000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.110', 'PEMERIKSAAN ROTAVIRUS Ag', 315000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.111', 'PEMERIKSAAN VAGINOSIS BAKTERIALIS (CLUE CELLS)', 72000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.112', 'PEMERIKSAAN VIRAL LOAD HIV', 478000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.113', 'PENGAMBILAN DARAH VENA', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.114', 'PENGAMBILAN SAMPEL USAP NASOFARING', 137000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.115', 'PENGAMBILAN SAMPEL USAP OROFARING', 137000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.116', 'PETA KUMAN >30 - 50 ISOLAT', 660000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.117', 'PETA KUMAN >50 ISOLAT', 792000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.118', 'PETA KUMAN 1 - 30 ISOLAT', 660000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.119', 'PEWARNAAN DLM GRAM', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.120', 'PEWARNAAN GIEMSA', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.121', 'PEWARNAAN GRAM CAIRAN ASCITES', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.122', 'PEWARNAAN GRAM CAIRAN CAPD', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.123', 'PEWARNAAN GRAM CAIRAN DRAIN', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.124', 'PEWARNAAN GRAM CAIRAN OTAK', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.125', 'PEWARNAAN GRAM CAIRAN PERICARD', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.126', 'PEWARNAAN GRAM CAIRAN PERITONEUM', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.127', 'PEWARNAAN GRAM CAIRAN SENDI', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.128', 'PEWARNAAN GRAM CAIRAN STERIL LAIN', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.129', 'PEWARNAAN GRAM DARAH', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.130', 'PEWARNAAN GRAM PUS', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.131', 'PEWARNAAN GRAM SPUTUM', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.132', 'PEWARNAAN GRAM SWAB HIDUNG', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.133', 'PEWARNAAN GRAM SWAB MATA', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.134', 'PEWARNAAN GRAM SWAB TELINGA', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.135', 'PEWARNAAN GRAM SWAB TENGGOROK', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.136', 'PEWARNAAN GRAM SWAB VAGINA', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.137', 'PEWARNAAN GRAM URINE', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.138', 'PEWARNAAN KOH', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.139', 'PEWARNAAN KOH CAIRAN DRAIN', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.140', 'PEWARNAAN KOH CAIRAN LAIN', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.141', 'PEWARNAAN KOH CAIRAN OTAK', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.142', 'PEWARNAAN KOH CAIRAN PERITONEUM', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.143', 'PEWARNAAN KOH CAIRAN PLEURA', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.144', 'PEWARNAAN KOH CAIRAN SENDI', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.145', 'PEWARNAAN KOH CAPD', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.146', 'PEWARNAAN KOH DARAH', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.147', 'PEWARNAAN KOH PUS', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.148', 'PEWARNAAN KOH SPUTUM', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.149', 'PEWARNAAN KOH SWAB', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.150', 'PEWARNAAN KOH URINE', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.151', 'PEWARNAAN NEISSER', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.152', 'pewarnaan PAS', 219000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.153', 'PEWARNAAN SPORA', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.154', 'PEWARNAAN ZN', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.155', 'Rapid urease Test Helicobacter pylori', 219000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.156', 'SKRINING MRSA', 219000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.157', 'TCM CLAMYDIA TRACHOMATIS DAN MEISSERIA GONORRAE BHP', 1045000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.158', 'TCM HBV NON PROGRAM', 792000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.159', 'TCM HBV VIRAL LOAD', 792000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.160', 'TCM HBV VL', 792000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.161', 'TCM HCV VIRAL LOAD NON PROGRAM', 871000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.162', 'TCM HCV VIRAL LOAD PROGRAM', 871000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.163', 'TCM HIV VIRAL LOAD PROGRAM', 871000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.164', 'TCM HIV VL non program', 871000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.165', 'TCM HPV (HUMAN PAPILLOMA VIRUS)', 871000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.166', 'TCM Sarscov2 + Influenza AB + RSV', 871000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.167', 'TCM TB PROGRAM', 871000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.168', 'UJI MIKROBIOLOGI RUANG OPERASI PER METER PER SEGI', 478000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.169', 'UJI POTENSI DESINFEKTAN / ANTISEPTIK PER SAMPEL', 478000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.170', 'JASA KONSULTASI', 100000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.171', 'TCM HCV VIRAL LOAD PROGRAM', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.172', 'TCM HIV VIRAL LOAD PROGRAM', 25000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.173', 'TCM TB PROGRAM', 25000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LPA.001', 'C1q-FITC ANTIBODY', 967000, 'TINDAKAN/PEMERIKSAAN PATOLOGI ANATOMI'), +('R.LPA.002', 'C3c-FITC ANTIBODY', 967000, 'TINDAKAN/PEMERIKSAAN PATOLOGI ANATOMI'), +('R.LPA.003', 'C4c-FITC ANTIBODY', 967000, 'TINDAKAN/PEMERIKSAAN PATOLOGI ANATOMI'), +('R.LPA.004', 'C4d-FITC ANTIBODY', 967000, 'TINDAKAN/PEMERIKSAAN PATOLOGI ANATOMI'), +('R.LPA.005', 'FIBRINOGEN', 967000, 'TINDAKAN/PEMERIKSAAN PATOLOGI ANATOMI'), +('R.LPA.006', 'IgA', 967000, 'TINDAKAN/PEMERIKSAAN PATOLOGI ANATOMI'), +('R.LPA.007', 'IgG', 967000, 'TINDAKAN/PEMERIKSAAN PATOLOGI ANATOMI'), +('R.LPA.008', 'IgM', 967000, 'TINDAKAN/PEMERIKSAAN PATOLOGI ANATOMI'), +('R.LPA.009', 'KAPPA LIGHT CHAIN', 967000, 'TINDAKAN/PEMERIKSAAN PATOLOGI ANATOMI'), +('R.LPA.010', 'KONSUL DISERTAI PEMBUATAN SLIDE', 170000, 'TINDAKAN/PEMERIKSAAN PATOLOGI ANATOMI'), +('R.LPA.011', 'LAMBDA LIGHT CHAIN', 967000, 'TINDAKAN/PEMERIKSAAN PATOLOGI ANATOMI'), +('R.LPA.012', 'SITOLOGI FNAB KIRIMAN SLIDE', 272000, 'TINDAKAN/PEMERIKSAAN PATOLOGI ANATOMI'), +('R.LPA.013', 'KONSULTASI / SECOND OPINION', 100000, 'TINDAKAN/PEMERIKSAAN PATOLOGI ANATOMI'), +('R.LPA.014', 'PEMERIKSAAN HISTOPATOLOGI', 900000, 'TINDAKAN/PEMERIKSAAN PATOLOGI ANATOMI'), +('R.LPA.015', 'PEMERIKSAAN SITOLOGI', 450000, 'TINDAKAN/PEMERIKSAAN PATOLOGI ANATOMI'), +('R.LPA.016', 'PEMERIKSAAN FNAB TANPA TUNTUNAN', 800000, 'TINDAKAN/PEMERIKSAAN PATOLOGI ANATOMI'), +('R.LPA.017', 'PEMERIKSAAN FNAB DENGAN TUNTUNAN (USG / CT SCAN)', 1000000, 'TINDAKAN/PEMERIKSAAN PATOLOGI ANATOMI'), +('R.LPA.018', 'PEMERIKSAAN FROZEN SECTION (VC) NON RADIKALITAS', 1000000, 'TINDAKAN/PEMERIKSAAN PATOLOGI ANATOMI'), +('R.LPA.019', 'HISTOKIMIA 1 REAGEN', 500000, 'TINDAKAN/PEMERIKSAAN PATOLOGI ANATOMI'), +('R.LPA.020', 'HISTOKIMIA 2 REAGEN', 1000000, 'TINDAKAN/PEMERIKSAAN PATOLOGI ANATOMI'), +('R.LPA.021', 'HISTOKIMIA 3 REAGEN', 1500000, 'TINDAKAN/PEMERIKSAAN PATOLOGI ANATOMI'), +('R.LPA.022', 'PEMERIKSAAN IMMUNOHISTOKIMIA 1 ANTIBODI', 750000, 'TINDAKAN/PEMERIKSAAN PATOLOGI ANATOMI'), +('R.LPA.023', 'PEMERIKSAAN IMMUNOHISTOKIMIA 2 ANTIBODI', 1500000, 'TINDAKAN/PEMERIKSAAN PATOLOGI ANATOMI'), +('R.LPA.024', 'PEMERIKSAAN IMMUNOHISTOKIMIA 3 ANTIBODI', 2250000, 'TINDAKAN/PEMERIKSAAN PATOLOGI ANATOMI'), +('R.LPA.025', 'PEMERIKSAAN IMMUNOHISTOKIMIA 4 ANTIBODI', 3000000, 'TINDAKAN/PEMERIKSAAN PATOLOGI ANATOMI'), +('R.LPA.026', 'PEMERIKSAAN IMMUNOHISTOKIMIA 5 ANTIBODI', 3750000, 'TINDAKAN/PEMERIKSAAN PATOLOGI ANATOMI'), +('R.LPA.027', 'PEMERIKSAAN EGFR', 1500000, 'TINDAKAN/PEMERIKSAAN PATOLOGI ANATOMI'), +('R.LPA.028', 'JASA KONSULTASI', 100000, 'TINDAKAN/PEMERIKSAAN PATOLOGI ANATOMI'), +('R.LPK.001', 'ACTIVATED CLOTING TIME (ACT)', 413000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.002', 'AFP', 197000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.003', 'ALBUMIN DARAH', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.004', 'ALKALI FOSFATASE', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.005', 'Amilase Pankreatik', 114000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.006', 'ANA TES ELISA', 359000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.007', 'ANALISA BATU', 137000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.008', 'ANALISA CAIRAN CAPD', 164000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.009', 'ANALISA CAIRAN PERITONEUM', 164000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.010', 'Analisa Cairan XT 4000 i', 79000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.011', 'ANALISA SPERMA', 628000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.012', 'ANALISIS CACING', 271000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.013', 'ANALISIS LARVA', 271000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.014', 'Anti Cardiolipin IgG', 359000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.015', 'Anti Cardiolipin IgM', 359000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.016', 'Anti CCP 3', 628000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.017', 'Anti DS DNA', 359000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.018', 'Anti HAV IgM Elecsys', 312000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.019', 'Anti HBc Elecsys', 312000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.020', 'ANTI HBC IgM', 546000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.022', 'Anti HCV', 312000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.023', 'Anti HCV Elecsys', 312000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.024', 'Anti HSV-1 IgG', 359000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.025', 'Anti HSV-1 IgM', 359000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.026', 'Anti HSV-2 IgG', 359000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.027', 'Anti HSV-2 IgM', 359000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.028', 'Anti MCV', 359000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.029', 'Anti SARS CoV-2 Kuantitatif (Post Vaksin)', 359000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.030', 'APTT', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.031', 'APTT CS 2100', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.032', 'Asam Laktat', 475000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.033', 'ASAM URAT', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.034', 'ASTO', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.035', 'bcr - ABL Quantitatif', 1836000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.036', 'BCR ABL Kualitatif', 1412000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.037', 'BENCE JONES PROTEIN URINE', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.038', 'BGA LACTAD', 236000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.039', 'BGA NOVA', 164000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.040', 'B-HCG', 197000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.041', 'BILIRUBIN DIREK', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.042', 'BILIRUBIN TOTAL', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.043', 'Billirubin Cairan Empedu', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.044', 'BJ PLASMA / SERUM', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.045', 'BMP', 546000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.046', 'C.K. NAC', 79000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.047', 'C.K.M.B.', 95000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.048', 'C3', 475000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.049', 'CA 125', 413000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.050', 'CA 125 Elecsys', 413000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.051', 'CA 15-3', 413000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.052', 'CA 15-3 Elecsys', 413000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.053', 'CA 19-9', 413000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.055', 'Cairan Asites', 197000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.056', 'Cairan L.C.S', 164000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.057', 'Cairan Perikardium', 197000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.058', 'Cairan Peritoneum', 197000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.059', 'Cairan Pleura', 197000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.060', 'Cairan Sendi', 197000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.061', 'Calcium Urine', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.062', 'CALSIUM SERUM', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.063', 'CALSIUM URINE', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.064', 'CAPD', 197000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.065', 'CBC 5 diff 4 EHD', 79000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.066', 'CBC Diff (EHD) XN', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.067', 'CBC XN', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.068', 'CCT', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.069', 'CD - 4', 359000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.070', 'CDC Cross Match (Limfosit T/B)', 2754000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.071', 'CDC CROSSMATCH', 1086000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.072', 'CEA', 197000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.073', 'CEA Elecsys', 236000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.074', 'CHOLESTEROL HDL DIREK', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.075', 'CHOLESTEROL TOTAL', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.076', 'CMV Ig G', 197000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.077', 'CMV Ig M', 197000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.078', 'CMV IgG Elecsys', 236000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.079', 'CMV IgM Elecsys', 236000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.080', 'COLLUM CHROMATO Hb A2', 475000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.081', 'Complement C4', 475000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.082', 'COOMB?S TEST', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.083', 'Cortisol', 271000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.084', 'C-peptide', 271000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.085', 'CREATININE DARAH', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.086', 'CREATININE URINE', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.087', 'CRP KUANTITATIF', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.088', 'D\'dimer', 546000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.089', 'Ds DNA IGG', 359000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.090', 'Ds DNA IGM', 359000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.091', 'Ds DNA Total', 359000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.092', 'EHD AEROSPRAY', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.093', 'Ekatraksi DNA', 475000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.094', 'Ekstraksi DNA & QPCR premix', 628000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.095', 'ELEKTROFORESE Hb', 475000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.096', 'ELEKTROFORESE PROTEIN', 312000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.097', 'ESBACH', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.098', 'Estradiol ( E2 )', 312000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.099', 'EVALUASI HAPUSAN DARAH', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.100', 'FAECES LENGKAP/ TINJA LENGKAP', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.101', 'Ferritin Elecsys', 197000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.102', 'Fibrinogen CS 2100', 197000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.103', 'FILARIA', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.104', 'Filaria Filter', 312000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.105', 'FOBT', 137000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.106', 'FOSFOR SERUM', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.107', 'Free PSA', 312000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.108', 'Free PSA Elecsys', 312000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.109', 'FREE T4 (MEIA)', 197000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.110', 'Fruktosamin', 95000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.111', 'FSH', 271000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.112', 'GAMMA-GT', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.113', 'Glocosa POCT', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.114', 'GLUKOSA URINE', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.115', 'GOL DARAH A, B, O', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.116', 'GULA DARAH', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.117', 'GULA DARAH 2', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.118', 'Gula Darah Sewaktu', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.119', 'Hb Cairan', 79000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.120', 'HbA 1 C', 236000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.121', 'Hbe Ag Elecsys', 312000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.122', 'HBe ANTIBODI (MEIA)', 312000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.123', 'HBe ANTIGEN (MEIA)', 312000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.124', 'HBs Ag Elecsys', 164000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.125', 'HBs ANTIBODI (MEIA)', 137000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.126', 'HBs ANTIGEN (MEIA)', 114000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.127', 'HBV DNA Kuantitatif', 1836000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.128', 'HCV RNA Kuantitatif', 2754000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.129', 'HIV DETERMINE', 114000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.130', 'HIV VIRAL LOAD', 754000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.131', 'HLA ANTIBODI', 10465000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.132', 'HLA ANTIBODI POST TRANSPLANT', 10465000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.133', 'HLA TYPING', 10465000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.134', 'IgA', 271000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.135', 'IgE', 164000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.136', 'Igm anti HAV', 312000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.137', 'IgM Salmonella', 312000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.138', 'IL - 6', 312000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.139', 'Inclusion Body', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.140', 'insulin', 197000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.141', 'IT rasio', 114000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.142', 'K+ Na+ Cl+ ION (ELEKTROLIT)', 114000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.143', 'KETON POCT', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.144', 'Kolesterol LDL Plus Vers 2', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.145', 'Kontrol PCR', 359000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.146', 'Kreatinin Cairan Drain', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.147', 'LAJU ENDAP DARAH (LED)', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.148', 'LDH', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.149', 'LE-CELL', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.150', 'LED Alifax', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.151', 'Leptospira', 114000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.152', 'LH', 236000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.153', 'Lipase', 137000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.154', 'Magnesium', 114000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.155', 'Malaria Hapusan ( tetes tipis )', 114000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.156', 'MALARIA ICT', 312000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.157', 'MALARIA TETES TEBAL', 114000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.158', 'MASA PEMBEKUAN', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.159', 'MASA PERDARAHAN', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.160', 'Mikroskopik Urine', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.161', 'MIRNA + EKSTRAKSI DNA PER SAMPEL PER PAKET 50', 2754000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.162', 'MIRNA PER MARKER PER PAKET 50', 1836000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.163', 'MIRNA PER MARKER PER SAMPEL', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.164', 'N S E', 754000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.165', 'NONNE', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.166', 'NS-1', 312000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.167', 'OCCULT BLOOD TEST/ BENZIDIN', 114000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.168', 'PANDY', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.169', 'Panel Auto Antobodi ANA', 1086000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.170', 'PANEL FLOWCYTOMETRI LEUKEMIA AKUT PAKET EGIL-MPAL', 1836000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.171', 'PANEL FLOWCYTOMETRI LEUKEMIA AKUT PAKET MYELOID', 1412000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.172', 'PANEL FLOWCYTOMETRI LEUKIMIA AKUT PAKET LIMFOID', 1412000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.173', 'PANEL HLA TYPING LOKUS SPESIFIK', 1836000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.174', 'PANEL LEUKIMIA AKUT FLOWCYTOMETRI', 1836000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.175', 'PANEL TES ALERGI', 1412000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.176', 'PCR KONVENSIONAL + EKSTRAKSI DNA PER MARKER PER\nPAKET 50', 2754000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.177', 'PCR KONVENSIONAL PER MARKER PER PAKET 50', 1086000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.178', 'PCR KONVENSIONAL PER MARKER PER SAMPEL', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.179', 'PCR REAL TIME + EKSTRAKSI DNA PER MARKER PER PAKET 50', 2754000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.180', 'PCR REAL TIME PER MARKER PER PAKET 50', 905000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.181', 'PCR REAL TIME PER MARKER PER SAMPEL', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.182', 'PCR SARS Cov-2 MANDIRI', 546000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.183', 'PEMERIKSAAN ELISA PER MARKER PER PAKET 48', 413000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.184', 'PEMERIKSAAN ELISA PER MARKER PER PAKET 96', 905000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.185', 'PEMERIKSAAN ELISA PER SAMPEL', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.186', 'PEMERIKSAAN HUMAN LEUCOCYTE ANTIBODY TYPING', 10465000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.187', 'PEMERIKSAAN PAKET SKRINNING TRANSPLANTASI GINJAL', 21977000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.188', 'PEMERIKSAAN PANEL REACTIVE ANTIBODY', 10465000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.189', 'PEMR. NARKOBA COCAINE', 114000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.190', 'PEMR. NARKOBA MARIYUANA', 114000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.191', 'PEMR. NARKOBA METAMPHETAMINE', 114000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.192', 'PEMR. NARKOBA MORPHINE', 114000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.193', 'Pemr.NARKOBA THC', 114000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.194', 'PENELITIAN DATA SEKUNDER PADA LIS PER PASIEN', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.195', 'PENGECATAN BESI', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.196', 'PENGECATAN GRAM', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.197', 'PENGECATAN WRIGHT', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.198', 'PENGECATATAN VVP', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.199', 'PENYIMPANAN SAMPEL BOX BESAR MAKS. UK. 30x30x10 CM\nPER BULAN', 164000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.200', 'PENYIMPANAN SAMPEL BOX KECIL MAKS. UK. 20x20x5 CM\nPER BULAN', 114000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.201', 'PHLEBOTOMI', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.202', 'Platelete Rich Plasma ( PRP )', 114000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.203', 'PLTF XN + CBC Diff (EHD) XN', 95000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.204', 'PPT CS 2100', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.205', 'Prealbumin', 271000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.206', 'PREPARASI SAMPEL (SERUM / PLASMA) PER SAMPEL', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.207', 'Pro BNP', 754000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.208', 'Procalcitonin', 754000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.209', 'Progesteron', 236000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.210', 'Prolaktin', 236000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.211', 'PRP', 79000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.212', 'PSA', 312000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.213', 'PSA Elecsys', 312000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.214', 'Q-PCR premix', 359000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.215', 'RA FAKTOR', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.216', 'RAPID ANTIGEN SARS Cov-2', 164000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.217', 'Rasio protein urine dan kreatinin urine', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.218', 'RETIKULOSIT', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.219', 'Retikulosit + CBC Diff (EHD) XN', 79000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.220', 'RETIKULOSIT XT', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.221', 'RHESUS', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.222', 'Rheumatoid Factor IgG', 359000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.223', 'Rheumatoid Factor IgM', 359000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.224', 'Rubella Ig G', 312000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.225', 'Rubella Ig M', 312000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.226', 'Rubella IgG Elecsys', 312000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.227', 'Rubella IgM Elecsys', 312000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.228', 'RUMATAN METHADON', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.229', 'S 100 B', 754000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.230', 'S.I.', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.231', 'SAAG', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.232', 'SCRENING TRANSPLANTASI GINJAL', 21977000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.233', 'SEDIMEN URINE', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.234', 'Sel sezary', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.235', 'Serum Elektrolit Urine', 114000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.236', 'Serum Mata', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.237', 'SGOT', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.238', 'SGPT', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.239', 'T.I.B.C.', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.240', 'T3 TOTAL (MEIA)', 164000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.241', 'TACROLIMUS', 905000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.242', 'TB IGRA', 905000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.243', 'TB-DOT', 236000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.244', 'Tes Alergi', 1086000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.245', 'TES KEHAMILAN', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.246', 'TES KEHAMILAN TITRASI', 95000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.247', 'TES SEROLOGI ANT1BODI SARS CoV-2 ECLIA', 164000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.248', 'Test ANA (Cytobead IF)', 754000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.249', 'Testosteron', 236000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.250', 'THROMBOELASTOGRAFI (TEG) TABUNG HEPARIN', 905000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.251', 'THROMBOELASTOGRAFI (TEG) TABUNG PLAIN', 754000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.252', 'TINJA LENGKAP (FL)', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.253', 'TOTAL PROTEIN', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.254', 'TOXOPLASMA IgG (MEIA)', 197000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.255', 'TOXOPLASMA IgM (MEIA)', 197000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.256', 'TPHA', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.257', 'TRIGLISERIDA', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.258', 'TROPONIN I', 413000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'); +INSERT INTO `tarif_rs` (`ID_Tarif_RS`, `Tindakan_RS`, `Tarif_RS`, `Kategori_RS`) VALUES +('R.LPK.259', 'TSH (MEIA)', 164000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.260', 'UACR KUANTITATIF', 236000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.261', 'UACR SEMI KUANTITATIF', 164000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.262', 'UJI KONFIRMATIF HIV', 312000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.263', 'UJI PERFORMA ALAT BESAR UKURAN WATT > 1000 VA', 905000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.264', 'UJI PERFORMA ALAT KECIL UKURAN WATT < 1000 VA', 905000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.265', 'UREUM DARAH', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.266', 'UREUM URINE', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.267', 'URINE LENGKAP', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.268', 'Urine Lengkap Clinitex Adventus', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.269', 'Urine Lengkap UX2000', 95000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.270', 'VDRL', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.271', 'vitamin D', 413000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.272', 'WIDAL', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.273', 'WPC + CBC Diff (EHD) XN', 95000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.274', 'ANALISA KROMOSOM', 2754000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.275', 'PCR URIN', 1836000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.276', '17-OHP', 1412000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.277', 'FAKTOR VIII', 1412000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.278', 'FAKTOR IX', 1412000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.279', 'ALDOSTERON', 2754000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.280', 'IGRA', 1412000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.281', 'ASAM AMINO', 2754000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.282', 'GAD 65', 2754000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.283', 'FENITOIN', 1412000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.284', 'FENOBARBITAL', 2754000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.285', 'PTH INTACT', 1086000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.286', 'LUPUS ANTIKOAGULAN', 905000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.287', 'GROWTH HORMON', 2754000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.288', 'G6PD', 475000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.289', 'TRAb', 905000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.290', 'Anti TPO', 1412000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.291', 'NMDAR', 4600000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.292', 'IMUNOHISTOTYPING', 1836000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.293', 'JAK 2 MUTATION', 1086000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.294', 'Vitamin B12', 1412000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.295', 'Vitamin B1', 905000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.296', 'Cd8', 413000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.297', 'Anca', 754000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.298', 'Igg', 905000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.299', 'Igm', 905000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.300', 'Kadar digoxin darah', 1836000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.301', 'VMA Urin', 197000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.302', 'AMH', 1086000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.303', 'SRY', 1836000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.304', 'JASA KONSULTASI', 100000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.305', 'ALBUMIN DARAH', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.306', 'Anti CCP 3', 546000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.307', 'Anti DS DNA', 312000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.308', 'ANTI HBC IgM', 475000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.309', 'Anti HBc IgM', 546000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.310', 'Anti HCV', 271000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.311', 'Anti HCV Elecsys', 271000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.312', 'Anti HSV-1 IgG', 312000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.313', 'Anti HSV-1 IgM', 312000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.314', 'Anti HSV-2 IgG', 312000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.315', 'Anti HSV-2 IgM', 312000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.316', 'ASAM URAT', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.317', 'BGA LACTAD', 359000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.318', 'BILIRUBIN DIREK', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.319', 'BILIRUBIN TOTAL', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.320', 'Billirubin Cairan Empedu', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.321', 'BMP', 1836000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.322', 'CA 125', 359000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.323', 'CA 125 Elecsys', 359000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.324', 'CA 15-3', 359000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.325', 'CA 15-3 Elecsys', 359000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.326', 'CA 19-9', 359000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.327', 'CA 19-9', 413000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.328', 'CBC 5 diff 4 EHD', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.329', 'CBC Diff (EHD) XN', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.330', 'CBC XN', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.331', 'CD - 4', 312000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.332', 'CEA Elecsys', 197000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.333', 'CHOLESTEROL HDL DIREK', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.334', 'CHOLESTEROL TOTAL', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.335', 'CMV IgG Elecsys', 197000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.336', 'CMV IgM Elecsys', 197000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.337', 'CREATININE DARAH', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.338', 'CREATININE URINE', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.339', 'D\'dimer', 475000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.340', 'Ds DNA IGG', 312000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.341', 'Ds DNA IGM', 312000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.342', 'Ds DNA Total', 312000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.343', 'ELEKTROFORESE Hb', 413000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.344', 'ELEKTROFORESE PROTEIN', 271000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.345', 'Estradiol ( E2 )', 271000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.346', 'EVALUASI HAPUSAN DARAH', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.347', 'Fibrinogen CS 2100', 164000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.348', 'FREE T4 (MEIA)', 164000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.349', 'FSH', 236000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.350', 'Glocosa POCT', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.351', 'GLUKOSA URINE', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.352', 'GOL DARAH A, B, O', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.353', 'GULA DARAH', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.354', 'GULA DARAH 2', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.355', 'Gula Darah Sewaktu', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.356', 'HbA 1 C', 197000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.357', 'Hbe Ag Elecsys', 271000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.358', 'HBe ANTIBODI (MEIA)', 271000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.359', 'HBe ANTIGEN (MEIA)', 271000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.360', 'IgA', 754000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.361', 'Igm anti HAV', 271000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.362', 'IgM Salmonella', 271000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.363', 'KETON POCT', 79000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.364', 'Kolesterol LDL Plus Vers 2', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.365', 'Kreatinin Cairan Drain', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.366', 'MALARIA ICT', 271000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.367', 'NS-1', 271000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.368', 'PCR SARS Cov-2 MANDIRI', 312000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.369', 'PEMERIKSAAN ELISA PER MARKER PER PAKET 48', 359000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.370', 'PEMERIKSAAN ELISA PER MARKER PER PAKET 96', 754000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.371', 'PEMR. NARKOBA COCAINE', 95000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.372', 'PEMR. NARKOBA MARIYUANA', 95000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.373', 'PEMR. NARKOBA METAMPHETAMINE', 95000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.374', 'PEMR. NARKOBA MORPHINE', 95000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.375', 'Pemr.NARKOBA THC', 95000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.376', 'PHLEBOTOMI', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.377', 'PLTF XN + CBC Diff (EHD) XN', 79000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.378', 'Pro BNP', 628000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.379', 'Procalcitonin', 628000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.380', 'PRP', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.381', 'PSA Elecsys', 271000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.382', 'RAPID ANTIGEN SARS Cov-2', 95000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.383', 'RHESUS', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.384', 'Rubella Ig G', 271000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.385', 'Rubella Ig M', 271000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.386', 'Rubella IgG Elecsys', 271000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.387', 'Rubella IgM Elecsys', 271000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.388', 'SGOT', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.389', 'SGPT', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.390', 'T3 TOTAL (MEIA)', 137000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.391', 'Test ANA (Cytobead IF)', 1086000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.392', 'TOTAL PROTEIN', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.393', 'TRIGLISERIDA', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.394', 'TROPONIN I', 359000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.395', 'TSH (MEIA)', 137000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.396', 'UREUM DARAH', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.397', 'UREUM URINE', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.398', 'URINE LENGKAP', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.399', 'VDRL', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.400', 'vitamin D', 359000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.401', 'ANALISA KROMOSOM', 3663000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.402', 'FENITOIN', 1836000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.403', 'G6PD', 546000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.404', 'NMDAR', 5359000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.405', 'IgM & Anti Dengue', 236000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.406', 'IgG Anti Dengue', 236000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.407', 'Magnesium Urin', 114000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.408', 'Syphilis', 197000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.409', 'Anti Tyroglubulin', 754000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.410', 'B2 Microglobulin', 1412000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.411', 'Renin Activity Plasma', 1836000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.412', 'Inhibator Faktor VIII', 1412000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.413', 'Faktor VII', 1836000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.414', 'Panel POCT', 905000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.415', 'BGA POCT iStat', 475000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.416', 'Amonia (NH3)', 1086000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.417', 'Tyroglobulin', 905000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.PAT.0001', 'PELAYANAN ADVOKASI DONOR TRANSPLANTASI', 8500000, 'TINDAKAN NON OPERATIF'), +('R.RDL.001', 'ABDOMEN 1', 85000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.002', 'ABDOMEN 2', 85000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.003', 'ABDOMEN 3 POSISI 1', 205000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.004', 'ABDOMEN 3 POSISI 2', 128000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.005', 'ANTEBRACHI 1 AP/LAT', 205000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.006', 'ANTEBRACHI 2 AP/LAT', 205000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.007', 'ARTERIOGRAFI PERIPER', 1021000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.008', 'ARTHROGRAFI', 1021000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.009', 'BACA ULANG FOTO CT SCAN ABDOMEN', 503000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.010', 'BACA ULANG FOTO CT SCAN KEPALA', 359000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.011', 'BACA ULANG FOTO CT SCAN THORAX', 359000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.012', 'BACA ULANG FOTO THORAX', 65000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.013', 'BACA ULANG MRI ABDOMEN', 503000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.014', 'BACA ULANG MRI KEPALA', 359000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.015', 'BASIS CRANI', 65000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.016', 'BONE MINERAL DENSITOMETRI (BMD)', 1021000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.017', 'BRAIN TUMOR SCREENING (MINI MRI)', 503000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.018', 'C-ARM < 3 JAM', 359000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.019', 'C-ARM > 3 JAM', 503000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.020', 'CAUDOGRAFI', 1429000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.021', 'CERVICAL 1 4 X', 128000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.022', 'CERVICAL 2 4 X', 128000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.023', 'CERVICAL AP/LAT 1', 128000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.024', 'CERVICAL AP/LAT 2', 85000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.025', 'CETAK ULANG FOTO', 65000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.026', 'CETAK ULANG FOTO CT SCAN ABDOMEN', 359000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.027', 'CETAK ULANG FOTO CT SCAN KEPALA', 128000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.028', 'CETAK ULANG FOTO CT SCAN THORAX', 205000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.029', 'CETAK ULANG FOTO MRI ABDOMEN DENGAN KONTRAS', 654000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.030', 'CETAK ULANG FOTO MRI DENGAN KONTRAS', 503000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.031', 'CETAK ULANG FOTO MRI KEPALA', 359000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.032', 'CHOLECYSTOGRAFI', 1021000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.033', 'CLAVICULA 1', 85000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.034', 'CLAVICULA 2', 65000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.035', 'COLON INLOOP 1', 1021000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.036', 'COLON INLOOP 2', 654000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.037', 'COR ANALYSE', 785000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.038', 'CRURIS 1 AP/LAT', 205000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.039', 'CRURIS 2 AP/LAT', 205000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.040', 'CT SCAN ABDOMEN', 1858000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.041', 'CT SCAN ABDOMEN 2 FASE DENGAN KONTRAS', 3055000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.042', 'CT SCAN ABDOMEN 3 FASE DENGAN KONTRAS', 3697000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.043', 'CT SCAN AGIOGRAFI DENGAN KONTRAS', 3361000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.044', 'CT SCAN CA SCORING', 1429000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.045', 'CT SCAN EXTREMITAS', 1429000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.046', 'CT SCAN EXTREMITAS DENGAN KONTRAS', 1858000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.047', 'CT SCAN EXTREMITAS DENGAN REKONSTRUKSI', 2415000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.048', 'CT SCAN EXTREMITAS DENGAN REKONSTRUKSI + C', 2777000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.049', 'CT SCAN FNAB', 1021000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.050', 'CT SCAN JANTUNG DENGAN KONTRAS', 4474000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.051', 'CT SCAN KEPALA', 1021000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.052', 'CT SCAN KEPALA DENGAN KONTRAS', 1429000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.053', 'CT SCAN MASTOID', 1429000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.054', 'CT SCAN MASTOID DENGAN KONTRAS', 1858000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.055', 'CT SCAN NASOPHARING', 1429000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.056', 'CT SCAN NASOPHARING DENGAN KONTRAS', 1858000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.057', 'CT SCAN ORBITA DENGAN KONTRAS', 1858000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.058', 'CT SCAN PLANNING', 1021000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.059', 'CT SCAN PLANNING DENGAN KONTRAS', 1429000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.060', 'CT SCAN THORAX', 1858000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.061', 'CT SCAN THORAX DENGAN KONTRAS', 3055000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.062', 'CT SCAN TYROID', 1429000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.063', 'CT SCAN TYROID DENGAN KONTRAS', 1858000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.064', 'CT SCAN UROLOGI DENGAN KONTRAS', 3361000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.065', 'CT SCAN VERTEBRA', 1429000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.066', 'CT SCAN VERTEBRA DENGAN KONTRAS', 1858000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.067', 'CT SCAN VERTEBRA DENGAN REKONSTRUKSI', 2415000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.068', 'CT SCAN VERTEBRA DENGAN REKONSTRUKSI + C', 2777000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.069', 'CT. SCAN ORBITA', 1429000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.070', 'CT.SCAN KEPALA 3 D', 1429000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.071', 'CT.SCAN TELINGA', 1021000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.072', 'CT.SCAN TELINGA - DENGAN KONTRAS', 1858000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.073', 'CT.SCAN THORACAL / LUMBAL SPINE', 1429000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.074', 'CT.SCAN THORACAL / LUMBAL SPINE DG KONTRAS', 1858000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.075', 'CT.SCAN THYROID DGN.KONTRAS', 1858000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.076', 'CYSTOOGRAFI', 1021000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.077', 'DACRIOCYSTOGRAFI', 785000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.078', 'FEMUR 1 AP/LAT', 205000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.079', 'FEMUR 2 AP/LAT', 205000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.080', 'FISTULOGRAFI', 654000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.081', 'GENU 1 AP/LAT', 205000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.082', 'GENU 2 AP/LAT', 205000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.083', 'H S G', 654000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.084', 'HUMERIS 1', 85000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.085', 'HUMERIS 2', 65000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.086', 'I V P 1', 1021000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.087', 'I V P 2', 1021000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.088', 'I V P INFUSION', 2415000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.089', 'KEPALA AP/LAT 1', 128000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.090', 'KEPALA AP/LAT 2', 85000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.091', 'KEPALA AP/LAT.IRD', 205000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.092', 'KONSULTASI RADIOLOGI', 128000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.093', 'LOPOGRAFI', 785000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.094', 'LUMBO SACRAL 1', 128000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.095', 'LUMBO SACRAL 2', 128000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.096', 'LYMPHOGRAFI', 1021000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.097', 'MAAG FOTO / UGI 1', 785000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.098', 'MAMOGRAPHY', 359000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.099', 'MR NAVIGASI NON CONTRAST (GK)', 2415000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.100', 'MR NAVIGASI CONTRAST (GK)', 2415000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.101', 'MRA 3T ABDOMINALIS CONTRAST ENHANCED', 4067000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.102', 'MRA 3T CONTRAST', 3697000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.103', 'MRA 3T EXTREMITAS ATAS (HUMERUS/ANTEBRATA)', 4067000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.104', 'MRA 3T EXTREMITAS BAWAH (FEMUR/CRURIS)', 4067000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.105', 'MRA 3T NON CONTRAST', 2777000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.106', 'MRA 3T RUN OFF EXTREMITAS BAWAH', 4067000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.107', 'MRA 3T THORACALIS CONTRAST ENHANCED', 4067000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.108', 'MRA TOTAL BODY IMAGING CONTRAST', 6688000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.109', 'MRI 3T + MRA 3T HEAD CONTRAST', 4067000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.110', 'MRI 3T + MRA 3T HEAD NON CONTRAST', 3361000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.111', 'MRI 3T ANKLE JOINT CONTRAST', 3361000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.112', 'MRI 3T ANKLE JOINT NON CONTRAST', 2777000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.113', 'MRI 3T BREAST CONTRAST', 3361000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.114', 'MRI 3T BREAST NON CONTRAST', 2777000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.115', 'MRI 3T CARDIAC CORONARY NON CONTRAST', 4474000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.116', 'MRI 3T CARDIAC FUNCTION CONTRAST', 4474000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.117', 'MRI 3T CARDIAC PERFUSION CONTRAST', 4474000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.118', 'MRI 3T CAROTIS CONTRAST ENHANCED', 3361000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.119', 'MRI 3T CAROTIS NON CONTRAST', 2777000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.120', 'MRI 3T CAROTIS-CIRCULUS WILLISI CONTRAST', 4067000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.121', 'MRI 3T CAROTIS-CIRCULUS WILLISI NON CONTRAST', 2777000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.122', 'MRI 3T CERVICAL CONTRAST', 3361000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.123', 'MRI 3T CERVICAL NON CONTRAST', 2777000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.124', 'MRI 3T CONTRAST', 3697000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.125', 'MRI 3T ELBOW CONTRAST', 3361000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.126', 'MRI 3T ELBOW NON CONTRAST', 2777000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.127', 'MRI 3T EXREMITAS NON CONTRAST', 2777000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.128', 'MRI 3T EXREMITAS CONTRAST', 4067000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.129', 'MRI 3T EXREMITAS PERFUSION', 3361000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.130', 'MRI 3T HEAD + BOLD (BRAIN OXYGEN)', 2415000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.131', 'MRI 3T HEAD + DTI/FIBRE TRACT/TRACTOGRA', 2415000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.132', 'MRI 3T HEAD + PERFUSION', 3361000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.133', 'MRI 3T HEAD + SPECTROSCOPY', 3697000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.134', 'MRI 3T HEAD + VESTIBULOCOHCLEAR CONTRAST', 3055000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.135', 'MRI 3T HEAD + VESTIBULOCOHCLEAR NON CONTRAST', 2415000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.136', 'MRI 3T HEAD CONTRAST', 3361000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.137', 'MRI 3T HEAD CONTRAST ENHANCED', 3361000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.138', 'MRI 3T HEAD EARLY STROKE PACKAGE (SPECIAL)', 2415000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.139', 'MRI 3T HEAD NON CONTRAST', 2777000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.140', 'MRI 3T HEAD SCREENING STROKE PACKAGE', 2415000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.141', 'MRI 3T HIP JOINT CONTRAST', 3361000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.142', 'MRI 3T HIP JOINT NON CONTRAST', 2777000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.143', 'MRI 3T KNEE JOINT CONTRAST', 3361000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.144', 'MRI 3T KNEE JOINT NON CONTRAST', 2777000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.145', 'MRI 3T LARYNX CONTRAST', 3361000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.146', 'MRI 3T LARYNX NON CONTRAST', 2777000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.147', 'MRI 3T LIVER CONTRAST', 6688000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.148', 'MRI 3T LIVER NON CONTRAST', 2415000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.149', 'MRI 3T LUMBAL CONTRAST', 3361000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.150', 'MRI 3T LUMBAL NON CONTRAST', 2777000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.151', 'MRI 3T MASTOID CONTRAST', 3361000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.152', 'MRI 3T MASTOID NON CONTRAST', 2777000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.153', 'MRI 3T MRCP (CHOLANGIO PANREATOGRAPHY)', 2777000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.154', 'MRI 3T MRCP (CHOLANGIO PANREATOGRAPHY) CONTRAST', 3361000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.155', 'MRI 3T NASOPHARYNK CONTRAST', 3361000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.156', 'MRI 3T NASOPHARYNK NON CONTRAST', 2777000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.157', 'MRI 3T NAVIGASI CONTRAST', 3361000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.158', 'MRI 3T NAVIGASI NON CONTRAST', 2777000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.159', 'MRI 3T NECK ANTERIOR CONTRAST', 3361000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.160', 'MRI 3T NECK ANTERIOR NON CONTRAST', 2415000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.161', 'MRI 3T NON CONTRAST', 2777000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.162', 'MRI 3T ORBITA CONTRAST', 3361000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.163', 'MRI 3T ORBITA NON CONTRAST', 2777000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.164', 'MRI 3T PEDIS CONTRAST', 3361000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.165', 'MRI 3T PEDIS NON CONTRAST', 2777000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.166', 'MRI 3T PELVIS CONTRAST', 4067000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.167', 'MRI 3T PELVIS NON CONTRAST', 2777000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.168', 'MRI 3T PLANNING ABDOMEN DENGAN KONTRAS', 4474000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.169', 'MRI 3T PLANNING ABDOMEN NON KONTRAS', 2777000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.170', 'MRI 3T PLANNING CERVICAL DENGAN KONTRAS', 3697000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.171', 'MRI 3T PLANNING CERVICAL NON KONTRAS', 2777000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.172', 'MRI 3T PLANNING EKSTRIMITAS DENGAN KONTRAS', 4474000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.173', 'MRI 3T PLANNING EKSTRIMITAS NON KONTRAS', 2777000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.174', 'MRI 3T PLANNING HEAD DENGAN KONTRAS', 3697000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.175', 'MRI 3T PLANNING HEAD NON KONTRAS', 2777000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.176', 'MRI 3T PLANNING PELVIS DENGAN KONTRAS', 4474000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.177', 'MRI 3T PLANNING PELVIS NON KONTRAS', 2777000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.178', 'MRI 3T PLANNING THORAX DENGAN KONTRAS', 4067000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.179', 'MRI 3T PLANNING THORAX NON KONTRAS', 2777000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.180', 'MRI 3T RUN OFF EXTREMITAS BAWAH', 4067000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.181', 'MRI 3T SHOULDER CONTRAST', 3361000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.182', 'MRI 3T SHOULDER NON CONTRAST', 2777000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.183', 'MRI 3T SINUS PARANASALIS CONTRAST', 3361000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.184', 'MRI 3T SINUS PARANASALIS NON CONTRAST', 2415000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.185', 'MRI 3T THORACAL CONTRAST', 4067000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.186', 'MRI 3T THORACAL NON CONTRAST', 3055000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.187', 'MRI 3T THORAX CONTRAST', 3361000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.188', 'MRI 3T THORAX NON CONTRAST', 2777000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.189', 'MRI 3T TOTAL SPINE CONTRAST', 5816000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.190', 'MRI 3T TOTAL SPINE NON CONTRAST', 4474000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.191', 'MRI 3T UPPER ABDOMEN + PELVIS CONTRAST', 4474000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.192', 'MRI 3T UPPER ABDOMEN + PELVIS NON CONTRAST', 4067000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.193', 'MRI 3T UPPER ABDOMEN CONTRAST', 4067000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.194', 'MRI 3T UPPER ABDOMEN NON CONTRAST', 2777000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.195', 'MRI 3T WRIST JOIN CONTRAST', 3361000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.196', 'MRI 3T WRIST JOIN NON CONTRAST', 2777000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.197', 'MRI TOTAL BODY IMAGING CONTRAST', 9363000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.198', 'MRI TOTAL BODY IMAGING NON CONTRAST', 5816000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.199', 'MYLOGRAFI', 1429000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.200', 'OESOPHAGUS', 503000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.201', 'PANAROMIC', 65000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.202', 'PEDIS 1 AP/LAT', 205000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.203', 'PEDIS 2 AP/LAT', 128000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.204', 'PELVIS 1 AP/LAT', 205000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.205', 'PELVIS 2 AP/LAT', 205000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.206', 'PHLEBOGRAFI', 1021000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.207', 'R P G / A P G', 1021000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.208', 'RONTGEN FOTO INTRA ORAL (PER GIGI)', 65000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.209', 'SIALOGRAFI', 1021000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.210', 'T.TUBE CHOLEDOCHOGRAFI', 785000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.211', 'TANGEN 1 AP/LAT', 205000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.212', 'TANGEN 2 AP/LAT', 128000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.213', 'THORACO LUMBAL 1', 128000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.214', 'THORACO LUMBAL 2', 128000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.215', 'THORAX 1', 85000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.216', 'THORAX 2', 85000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.217', 'THORAX 3', 85000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.218', 'THORAX AP/LAT 1', 205000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.219', 'THORAX AP/LAT 2', 128000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.220', 'THORAX AP/LAT 3', 85000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.221', 'U G I 2', 785000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.222', 'URETHROGRAFI', 654000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.223', 'USG', 205000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.225', 'USG.COLOR DOPPLER ( PER ORGAN)', 654000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.226', 'WATERS / SINUS', 85000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.227', 'JASA KONSULTASI', 100000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.228', 'CEPHALOMETRI', 65000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.229', 'ANKLE AP LAT', 205000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.230', 'WRIST AP LAT', 85000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.231', 'MANUS AP LAT', 85000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.232', 'ELBOW AP LAT', 205000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.233', 'SHOULDER', 85000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.234', 'SCHULLER', 128000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.235', 'TMJ (TEMPORO MANDIBULA JOINT)', 128000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.236', 'CUBITI', 205000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.237', 'BONE AGE', 85000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.238', 'THORACOABDOMINAL', 128000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.239', 'TIBIA', 205000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.240', 'MORTIS VIEW', 205000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.241', 'CALCANEUS', 205000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.242', 'GLENO HUMERAL JOINT', 85000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.243', 'DYNAMIC VIEW', 128000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.244', 'BARIUM ESOFAGUSGRAM', 503000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.245', 'APPENDICOGRAM', 654000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.246', 'REFLUX STUDY', 654000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.247', 'BVCUG (BIPOLAR VOIDING CYSTOURETROGRAFI)', 1021000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.248', 'BARIUM INTAKE', 785000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.249', 'GENITOGRAFI', 654000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.250', 'SPLINTOGRAFI', 1021000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.251', 'GENU SUNRISE VIEW', 205000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.252', 'BABY GRAM', 85000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.253', 'COXAE', 205000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.254', 'ABDOMEN 2 POSISI', 85000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.255', 'BONE SURVEY', 785000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.256', 'SCANOGRAM', 654000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.257', 'SCOLIOSIS SERIES', 503000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.258', 'WHOLESPINE', 503000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.259', 'VCUG (VOIDING CYSTOURETROGRAFI)', 1021000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RHM.001', 'AUDIO VISUAL TACTILE STIMULATION', 535000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.002', 'B M D TEST', 113000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.003', 'BIO FEED BACK TRAINER (MYOMED)', 446000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.004', 'CHEST PHYSICAL THERAPHY', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.005', 'COGNITIVE TRAINING', 446000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.006', 'CONTINUOUS PASSIVE MOVEMENT', 94000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.007', 'EMG BIOFEEDBACK', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.008', 'ERGOCYCLE', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.009', 'HOTPACK', 49000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.010', 'ICING/CRYOJET', 49000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.011', 'INFRARED', 49000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.012', 'INJEKSI EKSTRAARTIKULAR', 124000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.013', 'INJEKSI INTRAARTIKULAR', 124000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.014', 'INJEKSI PROLOTERAPI', 124000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.015', 'INJEKSI SOFT TISSUE', 124000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.016', 'INJEKSI STEROID', 124000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.017', 'IVES', 124000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.018', 'KINETIZER', 103000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.019', 'LASER THERAPY UNIT', 94000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.020', 'LATIHAN A D L', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.021', 'LATIHAN AMBULASI', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.022', 'LATIHAN ARTIKULASI', 49000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.023', 'LATIHAN BAHASA', 64000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.024', 'LATIHAN CEREBRAL PALSY', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.025', 'LATIHAN ENDURANCE', 85000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.026', 'LATIHAN FEEDING/ORAL STIMULASI', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.027', 'LATIHAN FUNGSI TANGAN', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.028', 'LATIHAN KESEIMBANGAN', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.029', 'LATIHAN KETANGKASAN/AGILITY', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.030', 'LATIHAN KOORDINASI', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.031', 'LATIHAN LBP (WILLIAM FLEXION)', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.032', 'LATIHAN LUAS GERAK SENDI', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.033', 'LATIHAN NECK CALLIET', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.034', 'LATIHAN OSTEOPOROSIS', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.035', 'LATIHAN PADA BAYI', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.036', 'LATIHAN PARKINSON', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.037', 'LATIHAN PENGUATAN', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.038', 'LATIHAN PEREGANGAN', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.039', 'LATIHAN SCI (SPINAL CORD INJURY)', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.040', 'LATIHAN SENSORY INTEGRASI', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.041', 'LATIHAN SKOLIOSIS', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.042', 'LATIHAN STROKE', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.043', 'LATIHAN SUARA', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.044', 'LATIHAN VERTIGO', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.045', 'LATIHAN VOKASIONAL', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.046', 'LOTCA', 1027000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.047', 'LYMPHASTIM', 1027000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.048', 'M W D', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.049', 'MAGNETO THERAPY UNIT', 103000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.050', 'MANUAL MANIPULASI', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.051', 'MANUAL MUSCLE TEST', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.052', 'MASAGE', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.053', 'NEBULIZER ULTRASONIC MOBILE', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.054', 'OVERHEAD PULLEY', 64000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.055', 'PARAFINE BATH', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.056', 'PEAK FLOW METER', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.057', 'PEMASANGAN NEUROMUSCULAR TAPPING', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.058', 'PEMERIKSAAN EVALUASI ORTESA', 223000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.059', 'PEMERIKSAAN EVALUASI PROTESA', 223000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.060', 'PEMERIKSAAN UJI FUNGSI KARDIORESPIRASI', 223000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.061', 'PEMERIKSAAN UJI KEKUATAN OTOT', 223000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.062', 'PEMERIKSAAN UJI KEMAMPUAN FUNGSIONAL DAN PERAWATAN', 223000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.063', 'PEMERIKSAAN / SKRINING MASALAH SOSIAL', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.064', 'POSTURAL DRAINAGE', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.065', 'PRESSO/COMPRESSI EXTREMITER', 103000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.066', 'QUADRICEP EXERCISE', 64000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.067', 'REHAB JANTUNG', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.068', 'REHAB PARU', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.069', 'REHABILITASI STROKE', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.070', 'S W D', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.071', 'SENAM ASMA', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.072', 'SENAM BEDAH CAESAR', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.073', 'SENAM HAMIL', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.074', 'SENAM NIFAS', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.075', 'SENSORY RESENSITIZATION', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.076', 'SNOOZELLEN ROOM THERAPHY', 113000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.077', 'STEP LADDER', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.078', 'TENS/ES/FARADISASI', 56000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.079', 'TERAPI CBT (COGNITIVE BEHAVIOR THERAPY)', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.080', 'TERAPI CTS', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.081', 'TERAPI MEMORI', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.082', 'TERAPI OKUPASI', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.083', 'TERAPI PERILAKU', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.084', 'TERAPI VOCASTIM', 446000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.085', 'TERAPI WICARA', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.086', 'TEST KECERDASAN/PERILAKU', 94000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.087', 'THUMP SPLINT', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.088', 'TILT TABLE', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.089', 'TRAKSI CERVICAL LISTRIK', 103000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.090', 'TRAKSI PELVIS LISTRIK', 103000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.091', 'TREADMILL W./ STRESS TEST ECG', 136000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.092', 'U S D', 94000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.093', 'WHIRL POLL', 94000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.094', 'WHOLEBODY TRAINING', 94000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.095', 'PEMERIKSAAN ORTOTIK PROSTETIK', 223000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.096', 'PENGUKURAN ALAT ORTOSIS', 223000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.097', 'PENGUKURAN ALAT PROSTESIS', 223000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.098', 'PEMASANGAN DAN LATIHAN PENGGUNAAN ORTOSIS', 446000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.099', 'PEMASANGAN DAN LATIHAN PENGGUNAAN PROSTESIS', 446000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.100', 'EVALUASI PEMAKAIAN ORTOSIS', 535000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.101', 'EVALUASI PEMAKAIAN PROSTESIS', 535000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.102', 'JASA KONSULTASI', 100000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.103', 'INJEKSI PROLOTERAPI II', 223000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.104', 'INJEKSI PROLOTERAPI III', 446000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.105', 'TERAPI TRAKSI CERVICAL', 49000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.106', 'TERAPI LUMBAL', 49000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.107', 'TERAPI SPINAL DECOMPRESSION', 124000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.108', 'TERAPI HIGH INTENSITY LASER', 446000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.109', 'TERAPI LOW INTENSITY LASER', 49000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.110', 'TERAPI PNEUMATIC COMPRESSION', 124000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.111', 'TERAPI VITALSTIM', 124000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.112', 'TERAPI EMSELA', 1027000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RTP.001', 'ALAT BANTU LAIN / BOLUS / WAX', 390000, 'TINDAKAN/PEMERIKSAAN RADIOTERAPI'), +('R.RTP.002', 'ALAT BANTU MOULDING BLOK INDIVIDUAL', 1676000, 'TINDAKAN/PEMERIKSAAN RADIOTERAPI'), +('R.RTP.003', 'ALAT BANTU MOULDING KONTUR', 449000, 'TINDAKAN/PEMERIKSAAN RADIOTERAPI'), +('R.RTP.004', 'ALAT BANTU MOULDING MASKER BESAR', 1676000, 'TINDAKAN/PEMERIKSAAN RADIOTERAPI'), +('R.RTP.005', 'ALAT BANTU MOULDING MASKER KECIL', 1214000, 'TINDAKAN/PEMERIKSAAN RADIOTERAPI'), +('R.RTP.006', 'C-ARM BRACHY TERAPI < 3 JAM', 390000, 'TINDAKAN/PEMERIKSAAN RADIOTERAPI'), +('R.RTP.007', 'C-ARM BRACHY TERAPI > 3 JAM', 449000, 'TINDAKAN/PEMERIKSAAN RADIOTERAPI'), +('R.RTP.008', 'CT SIMULATOR DENGAN KONTRAS', 1457000, 'TINDAKAN/PEMERIKSAAN RADIOTERAPI'), +('R.RTP.009', 'CT SIMULATOR TANPA KONTRAS', 1214000, 'TINDAKAN/PEMERIKSAAN RADIOTERAPI'), +('R.RTP.010', 'EKSTERNAL RADIASI COBALT - 60', 674000, 'TINDAKAN/PEMERIKSAAN RADIOTERAPI'), +('R.RTP.011', 'EKSTERNAL RADIASI COBALT - 60 PALIATIF', 809000, 'TINDAKAN/PEMERIKSAAN RADIOTERAPI'), +('R.RTP.012', 'EKSTERNAL RADIASI LINAC', 1214000, 'TINDAKAN/PEMERIKSAAN RADIOTERAPI'), +('R.RTP.013', 'PEMASANGAN APLIKASI LENGKAP', 2849000, 'TINDAKAN/PEMERIKSAAN RADIOTERAPI'), +('R.RTP.014', 'PEMASANGAN APLIKASI TIDAK LENGKAP', 1457000, 'TINDAKAN/PEMERIKSAAN RADIOTERAPI'), +('R.RTP.015', 'RADIOAKTIF IRIDIUM - 192', 674000, 'TINDAKAN/PEMERIKSAAN RADIOTERAPI'), +('R.RTP.016', 'RADIOTERAPI RINGAN', 2849000, 'TINDAKAN/PEMERIKSAAN RADIOTERAPI'), +('R.RTP.017', 'RAWAT LUKA SINAR', 130000, 'TINDAKAN/PEMERIKSAAN RADIOTERAPI'), +('R.RTP.018', 'SIMULATOR DENGAN KONTRAS', 809000, 'TINDAKAN/PEMERIKSAAN RADIOTERAPI'), +('R.RTP.019', 'SIMULATOR TANPA KONTRAS', 674000, 'TINDAKAN/PEMERIKSAAN RADIOTERAPI'), +('R.RTP.020', 'TPS ( TREATMENT PLANNING SYTEM ) 2D', 390000, 'TINDAKAN/PEMERIKSAAN RADIOTERAPI'), +('R.RTP.021', 'TPS ( TREATMENT PLANNING SYTEM ) 3D', 674000, 'TINDAKAN/PEMERIKSAAN RADIOTERAPI'), +('R.RTP.022', 'TPS ( TREATMENT PLANNING SYTEM ) KONFORMAL', 809000, 'TINDAKAN/PEMERIKSAAN RADIOTERAPI'), +('R.RTP.023', 'TREATMENT PLANNING SYSTEM (TPS) IMRT', 1457000, 'TINDAKAN/PEMERIKSAAN RADIOTERAPI'), +('R.RTP.024', 'JASA KONSULTASI', 100000, 'TINDAKAN/PEMERIKSAAN RADIOTERAPI'), +('R.TDE.001', 'AMBULATORY CARDIAC MONITORING', 372000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.002', 'AUTOREFRAKTOMETRI', 103000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.003', 'CARDIAC MONITOR - PER HARI', 124000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.004', 'COLOR VISION STUDY - 9506', 179000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.005', 'COMPREHENSIVE EYE EXAMINATION - 9502', 179000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.006', 'CONTINUOUS POSITIVE AIRWAY PRESSURE (CIPAP) - 93.90', 535000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.007', 'CYCLOPLEGI', 310000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.008', 'DARK ADAPTATION STUDY - 9507', 179000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.009', 'DISPENSING OF OTHER LOW VISION AIDS - 9533', 642000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.010', 'DRY EYE EXAMINATION', 179000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.011', 'E E C P', 1916000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.012', 'ECHOCARDIOGRAFI', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.013', 'ECHOCARDIOGRAFI BUBBLE TEST', 642000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.014', 'ECHOCARDIOGRAFI DOPPLER VASCULER', 642000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.015', 'EEG (ELECTROENCEFALOGRAFI)', 924000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.016', 'EKG', 86000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.017', 'ELECTROCARDIOGRAM', 149000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.018', 'ELECTROMYOGRAM OF EYE [EMG] - 9525', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.019', 'ELECTRONYSTAGMOGRAM [ENG] - 9524', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.020', 'ELECTRO-OCULOGRAM [EOG] - 9522', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.021', 'ELECTRORETINOGRAM [ERG] - 9521', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.022', 'EMG ) ELECTROMYOGRAFI > 6 OTOT', 1109000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.023', 'EMG 1 - 6 OTOT + TIDAKAN LAIN', 1109000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.024', 'EMG ELECTROMYOGRAFI 1 - 6 OTOT', 924000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.025', 'EMG LEBIH 6 OTOT + TIDAKAN LAIN', 1109000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'); +INSERT INTO `tarif_rs` (`ID_Tarif_RS`, `Tindakan_RS`, `Tarif_RS`, `Kategori_RS`) VALUES +('R.TDE.026', 'EXTENDED OPHTHALMOLOGIC WORK-UP - 9503', 215000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.027', 'EYE EXAMINATION UNDER ANESTHESIA - 9504', 1109000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.028', 'EYE EXAMINATION, NOT OTHERWISE SPECIFIED - 9509', 215000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.029', 'FITTING AND DISPENSING OF SPECTACLES - 9531', 310000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.030', 'FLUORESCEIN ANGIOGRAPHY OR ANGIOSCOPY OF EYE - 9512', 1109000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.031', 'FUNDUS PHOTOGRAPHY - 9511', 310000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.032', 'INFANT WARMER - PER HARI', 50000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.033', 'INFUSION PUMP ANAK - PER HARI', 50000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.034', 'INFUSION PUMP DEWASA - PER HARI', 50000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.035', 'KERATOMETRI', 103000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.036', 'LENSOMETRI', 103000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.037', 'LIMITED EYE EXAMINATION - 9501', 103000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.038', 'MANTOUX TEST - ANAK', 50000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.039', 'MONITORING SaO2 (OXYMETRI)', 86000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.040', 'MONITORING TTV ATAU CARDIAC - PER HARI', 50000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.041', 'OCT POSTERIOR', 535000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.042', 'OCULAR MOTILITY STUDY - 9515', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.043', 'OCULAR PROSTHETICS - 9534', 535000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.044', 'OPHTHALMOLOGIC COUNSELING AND INSTRUCTION - 9536', 535000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.045', 'ORTHOPTIC TRAINING - 9535', 642000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.046', 'P32 AND OTHER TRACER STUDIES OF EYE - 9516', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.047', 'PEMAKAIAN ANUSKOPI', 50000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.048', 'PEMAKAIAN INFUSION PUMP - PER HARI', 149000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.049', 'PEMAKAIAN INKUBATOR', 50000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.050', 'PEMAKAIAN MONITOR TINDAKAN - PER HARI', 86000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.051', 'PEMAKAIAN PEAK FLOW', 50000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.052', 'PEMAKAIAN VENTILATOR MEKANIK - PER HARI', 906000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.053', 'PEMAKAIAN WARM FLUID', 50000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.054', 'PEMANTAUAN VITAL SIGN - HARI', 86000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.055', 'PEMASANGAN BANDAGE PELVIS', 60000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.056', 'PEMASANGAN BANDAGE WOUND', 60000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.057', 'PRESCRIPTION, FITTING, AND DISPENSING OF CONT - 9532', 642000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.058', 'RETINOMETRI', 103000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.059', 'STREAK RETINOSKOPI', 310000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.060', 'SYNOPTOPHORE', 310000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.061', 'SYRINGE PUMP - PER HARI', 50000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.062', 'SYRINGE PUMP ANAK - PER HARI', 50000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.063', 'SYRINGE PUMP DEWASA - PER HARI', 50000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.064', 'ULTRASOUND STUDY OF EYE - 9513', 215000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.066', 'USG 4 D', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.068', 'VISUAL EVOKED POTENTIAL [VEP] - 9523', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.069', 'VISUAL FIELD STUDY - 9505', 310000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.070', 'ABLB (AUDIOMETRY) - 95.41', 372000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.071', 'ACROMIO-CLAVICULAR JOINT USG', 258000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.072', 'AIDED ASSR (OTHER AUDITORY AND VESTIBULAR FUNCTION\nTESTS) - 95.46', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.073', 'AIDED AUDIOMETRY (OTHER AUDITORY AND VESTIBULAR\nFUNCTION TESTS) - 95.46', 215000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.074', 'ASSR (OTHER AUDITORY AND VESTIBULAR FUNCTION TESTS) -\n95.46', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.075', 'AUDIOMETRI NADA MURNI / AUDIOMETRY - 95.41', 215000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.076', 'AUDIOMETRI TES GLISEROL / AUDIOMETRY (WITH GLISEROL) -\n95.41', 215000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.077', 'AUDIOMETRI TUTUR (SPEECH AUDIOMETRY) - 95.41', 258000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.078', 'AUDIOMETRI TUTUR DALAM BISING (AUDIOMETRY OF SPEECH\nIN NOISE) - 95.41', 372000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.079', 'AUDITORY CORTICAL TESTING (OTHER AUDITORY AND\nVESTIBULAR FUNCTION TESTS) - 95.46', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.080', 'BAKER?S CYST USG', 258000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.081', 'BALLON TEST OCCLUSION', 3311000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.082', 'BEHAVIORAL OBSERVATION AUDIOMETRY (OTHER AUDITORY\nAND VESTIBULAR FUNCTION TESTS) - 95.46', 215000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.083', 'BERA (OTHER AUDITORY AND VESTIBULAR FUNCTION TESTS) -\n95.46', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.084', 'BLINK REFLEX.', 310000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.085', 'BRAINSTEM AUDITORY EVOKED POTENTIAL (BAEP).', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.086', 'BRONKODILATOR TES - 89,383', 72000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.087', 'CAROTID DOPLER', 3311000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.088', 'CARPAL TUNNEL SYNDROME USG', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.089', 'CENTRAL MOTOR CONDUCTION TIME (CMCT)', 103000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.090', 'CONDITIONED ORIENTATION REFLEX (OTHER AUDITORY AND\nVESTIBULAR FUNCTION TESTS) - 95.46', 215000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.091', 'CONDITIONED PLAY AUDIOMETRY (OTHER AUDITORY AND\nVESTIBULAR FUNCTION TESTS) - 95.46', 372000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.092', 'CRITICAL CARE ULTRASOUND - 88.72', 1109000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.093', 'DE QUERVAIN SYNDROME USG', 258000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.094', 'DERMOSCOPY - 86.19', 103000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.095', 'DESENSITIZATION - 99.12', 179000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.096', 'DOPPLER VERTEBRALIS', 3311000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.097', 'DUPPLEX PERIFER', 3311000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.098', 'EABR (OTHER AUDITORY AND VESTIBULAR FUNCTION TESTS) -\n95.46', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.099', 'ECG - 89.52', 124000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.100', 'EEG (ICU/HCU)', 179000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.101', 'EEG CHALLENGE DIAZEPAM', 179000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.102', 'EEG INTRACORTICAL (ELECTRO CORTICO GRAPHY)', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.103', 'EEG INTRACRANIAL (LONG TERM)', 215000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.104', 'EEG MOBILE', 1331000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.105', 'EEG PREMEDIKASI', 1331000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.106', 'EEG RUTIN', 1331000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.107', 'EEG SLEEP DEPRIVASI', 124000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.108', 'EEG WADA TEST', 179000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.109', 'EKOKARDIOGRAFI TRANSESOFAGEAL (TEE) DENGAN ANESTESI\nUMUM - 88.72', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.110', 'EKOKARDIOGRAFI TRANSESOFAGEAL (TEE) LANJUT - 88.72', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.111', 'EKOKARDIOGRAFI TRANSESOFAGEAL (TEE) LANJUT + BUBBLE\nTEST - 88.72', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.112', 'EKOKARDIOGRAFI TRANSESOFAGEAL (TEE) PADA PROSEDUR\nBEDAH/NON BEDAH - 88.72', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.113', 'EKOKARDIOGRAFI TRANSESOFAGUS (TEE) DENGAN ANESTESI\nUMUM - 88.72', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.114', 'EKOKARDIOGRAFI TRANSESOFAGUS (TEE) LANJUT - 88.72', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.115', 'EKOKARDIOGRAFI TRANSESOFAGUS (TEE) LANJUT + BUBBLE -\n88.72', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.116', 'EKOKARDIOGRAFI TRANSESOFAGUS (TEE) PADA PROSEDUR\nINTERVENSI BEDAH/NON BEDAH - 88.72', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.117', 'EKOKARDIOGRAFI TRANSTORAKAL (TTE) DENGAN BUBBLE TEST -\n88.72', 924000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.118', 'EKOKARDIOGRAFI TRANSTORAKAL (TTE) DENGAN KONTRAS\n(NON-BUBBLE) - 88.72', 924000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.119', 'EKOKARDIOGRAFI TRANSTORAKAL (TTE) DENGAN KONTRAS\n(NON-BUBBLE) - 88.72', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.120', 'EKOKARDIOGRAFI TRANSTORAKAL (TTE) LANJUT (STRAIN / 3D/\nEVALUASI RV) - 88.72', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.121', 'EKOKARDIOGRAFI TRANSTORAKAL (TTE) LANJUT (STRAIN / 3D/\nEVALUASI RV) - 88.72', 924000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.122', 'EKOKARDIOGRAFI TRANSTORAKAL (TTE) PADA PROSEDUR\nINTERVENSI BEDAH/NON BEDAH - 88.72', 924000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.123', 'EKOKARDIOGRAFI TRANSTORAKAL (TTE) PADA PROSEDUR\nINTERVENSI NON BEDAH - 88.72', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.124', 'ELECTROCOCHLEOGRAPHY - 20.31', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.125', 'ELECTROMYOGRAPHY (EMG) 1 EKSTREMITAS DENGAN NEEDLE.', 86000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.126', 'ELECTROMYOGRAPHY (EMG) 2 EKSTREMITAS DENGAN NEEDLE.', 86000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.127', 'ELECTROMYOGRAPHY (EMG) 3 EKSTREMITAS DENGAN NEEDLE.', 103000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.128', 'ELECTROMYOGRAPHY (EMG) BULBAR DENGAN NEEDLE.', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.129', 'ELECTROMYOGRAPHY (EMG) DIAFRAGMA DENGAN NEEDLE.', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.130', 'ELECTROMYOGRAPHY (EMG) FASIALIS DENGAN NEEDLE.', 103000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.131', 'ELECTROMYOGRAPHY (EMG) RECTUM DENGAN NEEDLE.', 103000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.132', 'ELECTROMYOGRAPHY (EMG) TRUNKAL DENGAN NEEDLE.', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.133', 'ELECTRONEUROGRAPHY (ENOG) FASIALIS.', 310000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.134', 'ELECTRONYSTAGMOGRAM [ENG] - 95.24', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.135', 'EUSTACHIAN TUBE FUCTION TEST (AUDIOMETRY) - 95.41', 215000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.136', 'EXERCISE ABI - 89.44', 372000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.137', 'EXERCISE STRESS ECHOCARDIOGRAPHY DENGAN TREADMILL -\n88.72', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.138', 'FASCITIS PLANTARIS USG', 258000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.139', 'FEMORAL ENTRAPMENT USG', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.140', 'FITTING OF HEARING AID - 95.48', 372000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.141', 'FUNCTIONAL TCD', 86000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.142', 'GASTRIC LAVAGE - 96.33', 72000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.143', 'GENE EXPERT - 011.14', 124000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.144', 'GENERAL PHYSICAL EXAMINATION - 89.70', 86000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.145', 'GLENO-HUMERAL USG', 258000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.146', 'GOLFER ELBOW USG', 258000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.147', 'GUYON SYNDROME USG', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.148', 'HOLTER MONITORING - 89.5', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.149', 'H-REFLEX.', 103000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.150', 'ICP CATHETER INSERTION - 01.19', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.151', 'IMPINGEMENT USG', 258000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.152', 'INDUKSI SPUTUM - 786.4', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.153', 'INFUSION PUMP PADA PASIEN KRITIS - 86.06', 103000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.154', 'INTERVIEW AND EVALUATION, DESCRIBED AS COMPREHENSIVE\n- 89.03', 72000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.155', 'INTRA CARDIAC ECHOCARDIOGRAPHY - 37.28', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.156', 'INTRAARTIKULER 1 USG', 258000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.157', 'INTRAARTIKULER 2 USG', 258000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.158', 'INTRADERMAL SKIN TEST - 99.1', 179000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.159', 'JAW REFLEX.', 310000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.160', 'KECEPATAN HANTAR SARAF (KHS) 1 EKSTREMITAS DAN LATE\nRESPONSE.', 535000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.161', 'KECEPATAN HANTAR SARAF (KHS) 1 EKSTREMITAS.', 535000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.162', 'KECEPATAN HANTAR SARAF (KHS) 2 EKSTREMITAS DAN LATE\nRESPONSE.', 179000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.163', 'KECEPATAN HANTAR SARAF (KHS) 2 EKSTREMITAS.', 60000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.164', 'KECEPATAN HANTAR SARAF (KHS) 3 EKSTREMITAS DAN LATE\nRESPONSE.', 103000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.165', 'KECEPATAN HANTAR SARAF (KHS) 3 EKSTREMITAS.', 103000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.166', 'KECEPATAN HANTAR SARAF (KHS) FASIALIS.', 103000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.167', 'KECEPATAN HANTAR SARAF (KHS) FRENIKUS/ DIAFRAGMA.', 372000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.168', 'LATE RESPONSE F-WAVE.', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.169', 'LONG EXERCISE TEST ELECTROMYOGRAPHY.', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.170', 'LONG TERM MONITORING EEG', 1331000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.171', 'LUMBAL PUNKSI', 86000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.172', 'LUMBAL PUNKSI USG GUIDED', 103000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.173', 'LUMBAR DRAINAGE CATHETER INSERTION - 01.19', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.174', 'LUMBAR FACET JOINT INJECTION USG', 372000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.175', 'LUMBAR INTERLAMINAR INJECTION USG', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.176', 'LUMBAR MEDIAN BRANCH INJECTION USG', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.177', 'LUMBAR SYMPATHETIC INJECTION USG', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.178', 'LUMBAR TRANSFORAMINAL INJECTION USG', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.179', 'MAPPING COCHLEAR IMPLAN (OTHER NONOPERATIVE\nPROCEDURES RELATED TO HEARING) - 95.49', 372000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.180', 'MASSETER INHIBITORY REFLEX.', 310000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.181', 'MEXAMETER EXAMINATION - 86.19', 103000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.182', 'MONITORING BRAIN FISIOLOGI INVASIF - 01.19', 3311000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.183', 'MONITORING BRAIN FISIOLOGI NON INVASIF - 01.19', 2299000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.184', 'MONITORING EMBOLIC DETECTION - TCD', 3311000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.185', 'MOTOR EVOKED POTENTIAL (MEP) DENGAN TRANSCRANIAL\nMAGNETIC STIMULATION (TMS) EKSTREMITAS ATAS DAN BAWAH.', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.186', 'MOTOR EVOKED POTENTIAL (MEP) DENGAN TRANSCRANIAL MAGNETIC STIMULATION (TMS) EKSTREMITAS ATAS.', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.187', 'MOTOR EVOKED POTENTIAL (MEP) DENGAN TRANSCRANIAL MAGNETIC STIMULATION (TMS) EKSTREMITAS BAWAH.', 103000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.188', 'NASAL FUNCTION STUDY RHINOMANOMETRY - 89.12', 215000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.189', 'NEBULIZER PADA PASIEN KRITIS - 93.94', 103000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.190', 'NEURAL RESPON THRESHOLD (OTHER AUDITORY AND\nVESTIBULAR FUNCTION TESTS) - 95.46', 372000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.191', 'NMES (NEUROMUSCULAR ELECTRICAL STIMULATION)', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.192', 'NO - FOTO FUNDUS', 258000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.193', 'NO - FUNDUSKOPI', 86000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.194', 'NO - NEUROOPHTALMOLOGY', 103000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.195', 'NO- KAMPIMETRI', 179000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.196', 'OPTIMALISASI CRT GUIDED EKG - V53.31', 372000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.197', 'OSCILOMETRI - 89,382', 535000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.198', 'OTO-ACOUSTIC EMISSION (OTHER AUDITORY AND VESTIBULAR\nFUNCTION TESTS) - 95.46', 215000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.199', 'P300 (OTHER AUDITORY AND VESTIBULAR FUNCTION TESTS) -\n95.46', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.200', 'P300 EVOKED RESPONSE POTENTIAL.', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.201', 'PAIRED-PULSE H-REFLEX.', 310000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.202', 'PEAK FLOW METER (PEF) - 89,382', 72000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.203', 'PEMERIKSAAN AUSPITZ - 91.61', 50000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.204', 'PEMERIKSAAN BASAH - 91.44', 50000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.205', 'PEMERIKSAAN HAPUSAN KULIT - 70.01', 50000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.206', 'PEMERIKSAAN KAARSVLEK - 91.61', 50000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.207', 'PEMERIKSAAN MONOFILAMEN - 92.26', 50000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.208', 'PEMERIKSAAN NO + KAMPIMETRI + FOTO FUNDUS', 179000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.209', 'PENGAMBILAN DAHAK UTK GENE EXPERT - 96.53', 60000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.210', 'PENILAIAN FUNGSI SISTEM SARAF OTONOM (HRV) - 94.08', 50000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.211', 'PERONEAL ENTRAPMENT USG', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.212', 'PHARMACOLOGIC STRESS ECHOCARDIOGRAPHY :\nDOBUTAMIN/ADENOSINE/DIPIRIDAMOLE STRESS ECHOCARDIOGRAPHY - 88.72', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.213', 'PIRIFORMIS SYNDROME USG', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.214', 'PLETHYSMOGRAFI/ABI/TBI - 89.58', 372000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.215', 'POCUS ALIRAN ARTERI DAN VENA ORGAN-ORGAN\nABDOMEN/SPLANCHNIK PADA PASIEN KRITIS - 88.77', 642000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.216', 'POCUS JANTUNG TEE NEONATUS - ANAK PADA PASIEN KRITIS -\n88.72', 642000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.217', 'POCUS JANTUNG TEE 2D DEWASA PADA PASIEN KRITIS - 88.72', 642000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.218', 'POCUS JANTUNG TEE 2D DIAGNOSTIK PASIEN KRITIS - 88.72', 642000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.219', 'POCUS JANTUNG TEE 3D ECHO INTRAPROSEDURAL INTERVENSI\nPADA PASIEN KRITIS - 88.72', 642000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.220', 'POCUS NERVUS OPTICUS - 88.71', 642000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.221', 'POCUS RETROPERITONEAL (RENAL, AORTA, KGB), B-SCAN\nDAN/ATAU REAL TIME PADA PASIEN KRITIS - 88.76', 642000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.222', 'POCUS TRANSCRANIAL DOPPLER (TCD) - 88.71', 642000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.223', 'POPLITEAL ENTRAPMENT USG', 258000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.224', 'PRPP INJECTION USG', 258000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.225', 'PUDENDAL REFLEX SURFACE.', 310000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.226', 'PUDENDAL REFLEX WITH NEEDLE.', 310000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.227', 'RADIOFREKUENS ILUMBOSACRAL USG', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.228', 'RADIOFREKWENSI SERVIKAL USG', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.229', 'REFLEKS STAPEDIUS IPSILATERAL / KONTRALATERAL\n(AUDIOMETRY) - 95.41', 215000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.230', 'REHABILITASI JANTUNG /KALI - 93.36', 215000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.231', 'REPETITIVE NERVE STIMULATION (RNS).', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.232', 'REPROGRAM ICD/CRT - 89.49', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.233', 'REPROGRAM PACEMAKER - 89.46', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.234', 'SACRAL EPIDURAL INJECTION USG', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.235', 'SACRAL TRANSFORAMINAL INJECTION USG', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.236', 'SACROILIAC JOINT DYSFUNCTION USG', 372000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.237', 'SEBUMETER EXAMINATION - 86.19', 103000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.238', 'SEDIAAN BASAH - 91.44', 50000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.239', 'SEDIAAN GIEMSA - 91.65', 50000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.240', 'SEDIAAN GRAM - 91.61', 50000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.241', 'SEDIAAN SCRAPPING ECTOPARASIT - 91.64', 50000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.242', 'SERVIKAL FACET JOINT INJECTION USG', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.243', 'SERVIKAL INTERLAMINAR INJECTION USG', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.244', 'SERVIKAL MEDIAN BRANCH INJECTION USG', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.245', 'SERVIKAL SYMPATHETIC INJECTION USG', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.246', 'SHORT EXERCISE TEST ELECTROMYOGRAPHY.', 103000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.247', 'SHORT LATENCY AFFERENT INHIBITION', 103000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.248', 'SINGLE FIBER ELECTROMYOGRAPHY (SF-EMG) DENGAN\nNEEDLE.', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.249', 'SISI (AUDIOMETRY) - 95.41', 372000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.250', 'SJVO2 CATHETER INSERTION DENGAN USG - 01.19', 642000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.251', 'SJVO2 CATHETER INSERTION TANPA USG - 01.19', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.252', 'SKIN PROVOCATION TEST - 86.19', 179000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.253', 'SMWT DENGAN TELEMETRI - 89.44', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.254', 'SOMATO-SENSORY EVOKED POTENTIAL (SSEP) EKSTREMITAS\nATAS DAN BAWAH.', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.255', 'SOMATO-SENSORY EVOKED POTENTIAL (SSEP) EKSTREMITAS\nATAS.', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.256', 'SOMATO-SENSORY EVOKED POTENTIAL (SSEP) EKSTREMITAS\nBAWAH.', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.257', 'SOMATO-SENSORY EVOKED POTENTIAL (SSEP) PUDENDAL.', 103000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.258', 'STRESS MRI JANTUNG - 88.72', 2759000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.259', 'SUPRA SCAPULAR USG', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.260', 'SURFACE ELECTROMYOGRAPHY 1 CHANNEL.', 535000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.261', 'SURFACE ELECTROMYOGRAPHY 2 CHANNEL.', 179000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.262', 'SURFACE ELECTROMYOGRAPHY 3 CHANNEL.', 103000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.263', 'SYMPATHETIC SKIN RESPONSE', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.264', 'SYRINGE PUMP PADA PASIEN KRITIS - 86.06', 103000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.265', 'TARSAL TUNNEL SYNDROME USG', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.266', 'TCD (TRANSCRANIAL DOPPLER)', 86000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.267', 'TCD (TRANSCRANIAL DOPPLER)', 3311000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.268', 'TCD BUBBLE CONTRAST', 3311000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.269', 'TCD BUBLE CONTRAST', 103000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.270', 'TEE PJB KOMPLEKS DENGAN SEDASI - 88.72', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.271', 'TEE PJB SIMPEL (ASD, VSD, PDA, POST DEVICE CLOSURE)\nDENGAN ANESTESI - 88.72', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.272', 'TEE PJB SIMPEL (ASD, VSD, PDA, POST DEVICE CLOSURE)\nDENGAN SEDASI - 88.72', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.273', 'TEE PJB SIMPEL (ASD, VSD, PDA, POST DEVICE CLOSURE) TANPA\nSEDASI - 88.72', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.274', 'TENDINITIS BICIPITALIS USG', 258000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.275', 'TENDINITIS PATELLA USG', 258000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.276', 'TENNIS ELBOW USG', 258000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.277', 'TERAPI HYPEROSMOLAR - 01.19', 372000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.278', 'TERES MAYOR USG', 258000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.279', 'TEST PROVOKASI BRONCHIAL - 89.390', 535000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.280', 'TEWAMETER EXAMINATION - 86.19', 103000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.281', 'TIBIAL ENTRAPMENT USG', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.282', 'TILT TABLE TEST - 89.59', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.283', 'TILT TABLE TEST WITH STRESS TEST - 89.44', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.284', 'TIMPANOMETRI (AUDIOMETRY) - 95.41', 215000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.285', 'TONE DECAY (AUDIOMETRY) - 95.41', 372000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.286', 'TRANSESOPHAGEAL ECHOCARDIOGRAPHY (TEE) INTRAPROCEDURE INTERVENTION PERKUTAN /BEDAH - 88.73', 3311000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.287', 'TRANSTHORACAL ECHOCARDIOGRAPHY PEDIATRIK KOMPLEK -\n88.72', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.288', 'TRANSTHORACAL ECHOCARDIOGRAPHY PEDIATRIK SIMPLE -\n88.72', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.289', 'TRANSTORAKAL EKOKARDIOGRAFI (TTE) DENGAN BUBBLE TEST -\n88.72', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.290', 'TRANSVENOUS PACEMAKER INSERTION PASIEN KRITIS - 37.78', 924000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.291', 'TRIGGER FINGER USG', 258000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.292', 'TRIGGER POINT USG', 103000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.293', 'TTE PJB ADVANCE (3D, 4D, STRAIN) DENGAN SEDASI - 88.72', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.294', 'TTE PJB KOMPLEKS DENGAN ANESTESI - 88.72', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.295', 'TTE PJB KOMPLEKS DENGAN SEDASI - 88.72', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.296', 'TTE PJB KOMPLEKS TANPA SEDASI - 88.72', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.297', 'TTE PJB SIMPEL (ASD, VSD, PDA, POST DEVICE CLOSURE)\nDENGAN ANESTESI - 88.72', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.298', 'TTE PJB SIMPEL (ASD, VSD, PDA, POST DEVICE CLOSURE)\nDENGAN SEDASI - 88.72', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.299', 'TTE PJB SIMPEL (ASD, VSD, PDA, POST DEVICE CLOSURE) TANPA\nSEDASI - 88.72', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.300', 'ULTRASOUND GUIDING COMPRESSION THERAPY - 0.03', 1331000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.301', 'USG GUIDE INJEKSI INTRAARTIKULER - 88.79', 535000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.302', 'USG GUIDE INJEKSI STRUKTUR PERIARTIKULER - 88.79', 535000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.303', 'USG PEMBULUH DARAH', 3311000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.304', 'USG TIROID - 88.71', 310000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.305', 'USG TIROID - 88.71', 310000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.306', 'VENTILASI MEKANIK AMBULATOAR - 96.70', 2299000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.307', 'VESTIBULAR EVOKED MYOGENIC POTENSIAL (OTHER AUDITORY\nAND VESTIBULAR FUNCTION TESTS) - 95.46', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.308', 'VESTIBULAR EVOKED MYOGENIC POTENTIAL (VEMP).', 103000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.309', 'VIDEO HEAD IMPULSE TEST (OTHER AUDITORY AND\nVESTIBULAR FUNCTION TESTS) - 95.46', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.310', 'VISUAL EVOKED POTENTIAL (VEP)', 103000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.311', 'VISUAL REINFORCEMENT AUDIOMETRY (OTHER AUDITORY AND\nVESTIBULAR FUNCTION TESTS) - 95.46', 372000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.312', 'TREADMILL', 770000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TNO.0001', 'DIRECT PULP CAPPING PASIEN HANDCAPPED CHILDREN (PER\nGIGI)', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0002', 'EKSTRAKSI GIGI SULUNG DGN INFILTRASI ANASTESI (PER GIGI)', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0003', 'FISSURE SEALANT PASIEN HANDCAPPED CHILDREN (PER GIGI)', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0004', 'PERITONEAL EQUILIBRIUM TEST ( PET )', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0005', 'PULPECTOMI GIGI SULUNG POSTERIOR (PER GIGI) PASIEN', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0006', 'REPOSISI DISLOKASI MANDUBULA SECARA MANUAL', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0007', '[ENDOSCOPIC] POLYPECTOMY OF RECTUM', 6598000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0008', '04.81 BLOK DIAGNOSTIK PADA SARAF PERIFER', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0009', '6 MINUTES WALK TEST', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0011', '83.94 ASPIRASI CAIRAN BURSA', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0015', '9401 ADMINISTRATION OF INTELLIGENCE TEST', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0016', '9402 ADMINISTRATION OF PSYCHOLOGIC TEST', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0017', '9403 CHARACTER ANALYSIS', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0018', '9408 OTHER PSYCHOLOGIC EVALUATION AND TESTING', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0019', '9409 PSYCHOLOGIC MENTAL STATUS DETERMINATION, NOS', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0020', '9411 PSYCHIATRIC MENTAL STATUS DETERMINATION', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0021', '9423 NEUROLEPTIC THERAPY', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0022', '9425 OTHERPSYCHIATRIC DRUG THERAPY', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0023', '9426 SUBCONVULSIVE ELECTROSHOCKTHERAPY', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0024', '9427 OTHER ELECTROSHOCK THERAPY', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0025', '9429 OTHER PSYCHIATRIC SOMATOTHERAPY', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0026', '9432 HYPNOTHERAPY', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0027', '9433 BEHAVIOR THERAPY', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0028', '9436 PLAY PSYCHOTHERAPY', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0029', '9437 EXPLORATORY VERBAL PSYCHOTHERAPY', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0030', '9438 SUPPORTIVE VERBAL PSYCHOTHERAPY', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0031', '9439 OTHER INDIVIDUAL PSYCHOTHERAPY', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0032', '9441 GROUP THERAPY FOR PSYCHOSEXUAL DYSFUNCTION', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0033', '9442 FAMILY THERAPY', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0034', '9443 PSYCHODRAMA', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0035', '9444 OTHER GROUP THERAPY', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0036', 'ABOVE ELBOW CAST', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0037', 'ABR SWT', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0038', 'ABR UM', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0039', 'ABSES DOUGLAS - PUNKSI, DRAIN, LA', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0040', 'ACUPUNCTURE FOR ANESTHESIA', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0041', 'ACUTE PAIN SERVICE', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0042', 'AFF DRAIN / WSD / CVC', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0043', 'AFF DRAIN ORBITA', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0044', 'AFF JAHITAN', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0045', 'AFF JAHITAN KORNEO SKLERA', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0046', 'AFF JAHITAN ORBITA', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0047', 'AFF JAHITAN PALPEBRA', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0048', 'ALERGI SKIN TEST', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0049', 'ALVEOLEKTOMI (PER REGIO)', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0050', 'AMALGAM KLAS I (PER GIGI)', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0051', 'AMALGAM KLAS I PADA PASIEN HANDCAPPED CHILDREN', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0052', 'AMALGAM KLAS II DO/MO (PER GIGI)', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0053', 'AMALGAM KLAS II DO/MO PADA PASIEN HANDCAPPED\nCHILDREN', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0054', 'AMALGAM KLS II MOD (PER GIGI)', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0055', 'AMALGAM KLS II MOD PADA PASIEN HANDCAPPED CHILDREN', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0056', 'AMBIL DARAH VENA PD ANAK-ANAK', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0057', 'ANAL FISTULECTOMY', 3818000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0058', 'ANAL FISTULOTOMY', 3818000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0059', 'ANEL', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0060', 'ANESTESI LUAR OK PROSEDUR DIAGNOSTIK RESIKO BESAR', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0061', 'ANESTESI LUAR OK PROSEDUR DIAGNOSTIK RESIKO KECIL', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0062', 'ANESTESI LUAR OK PROSEDUR DIAGNOSTIK RESIKO SEDANG', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0063', 'ANESTESI LUAR OK PROSEDUR INTERVENSIONAL KHUSUS', 2652000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0064', 'ANESTESI LUAR OK PROSEDUR INTERVENSIONAL RESIKO\nBESAR', 2210000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0065', 'ANESTESI LUAR OK PROSEDUR INTERVENSIONAL RESIKO KECIL', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0066', 'ANESTESI LUAR OK PROSEDUR INTERVENSIONAL RESIKO\nSEDANG', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0067', 'ANGIOGRAFI ARTERI/VENA PERIFER', 3818000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0068', 'ANGIOPLASTI ARTERI/VENA PERIFER', 4582000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0069', 'ANGIOPLASTY DAN STENTING PADA AV SHUNT STENOSIS', 7918000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0070', 'ANGKAT ARCH BARR', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0071', 'ANGKAT DRAIN', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0072', 'ANGKAT DRAIN DI WAJAH', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0073', 'ANGKAT DRAIN DILUARWAJAH', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0074', 'ANGKAT DRAIN ORBITA', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0075', 'ANGKAT IMF', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0076', 'ANGKAT INTER DENTAL WIRING (IDW) (PER RAHANG)', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0077', 'ANGKAT INTER OSEUS WIRING (IOW) (PER RAHANG)', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0078', 'ANGKAT JAHITAN : >20 JAHITAN', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0079', 'ANGKAT JAHITAN : 01 - 05 JAHITAN', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0080', 'ANGKAT JAHITAN : 01 - 10 JAHITAN', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0081', 'ANGKAT JAHITAN : 01 - 20 JAHITAN', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0082', 'ANGKAT JAHITAN BOLA MATA', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0083', 'ANGKAT JAHITAN CONJUNTIVA / CORNEA', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0084', 'ANGKAT JAHITAN DILUAR WAJAH : > 20 JAHITAN', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0085', 'ANGKAT JAHITAN DILUAR WAJAH : 01 - 05 JAHITAN', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0086', 'ANGKAT JAHITAN DILUAR WAJAH : 01 - 10 JAHITAN', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0087', 'ANGKAT JAHITAN DILUAR WAJAH : 01 - 20 JAHITAN', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0088', 'ANGKAT JAHITAN PALPEBRA', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0089', 'ANGKAT JAHITAN POST OPERASI (PER RAHANG)', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0090', 'ANGKAT JAHITAN STSG : > 20 JAHITAN', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0091', 'ANGKAT JAHITAN STSG : 01 - 05 JAHITAN', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0092', 'ANGKAT JAHITAN STSG : 01 - 10 JAHITAN', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0093', 'ANGKAT JAHITAN STSG : 01 - 20 JAHITAN', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0094', 'ANGKAT JAHITAN WAJAH : > 20 JAHITAN', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0095', 'ANGKAT JAHITAN WAJAH : 01 - 05 JAHITAN', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0096', 'ANGKAT JAHITAN WAJAH : 01 - 10 JAHITAN', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0097', 'ANGKAT JAHITAN WAJAH : 01 - 20 JAHITAN', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0098', 'ANGKAT PERIODONTAL PACK', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0099', 'ANGKAT TAMPON HIDUNG', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0100', 'ANGKAT WIRE', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0101', 'ANOSCOPY', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0102', 'ANTENATAL CARE', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0103', 'ANUSKOPI/PROKTOSKOPI RIGID', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0104', 'APEK RESEKSI (PER GIGI)', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0105', 'APEKSIFIKASI (PER GIGI)', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0106', 'APEKSIFIKASI PADA PASIEN HANDCAPPED CHILDREN (PER\nGIGI)', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0107', 'APIKOEKTOMI (PER GIGI)', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0108', 'APT.DOWNEY TEST', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0109', 'ARTERIOGRAFI', 5498000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0110', 'ASPIRASI ABSES HATI', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0111', 'ASPIRATION OF THYROID FIELD', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0112', 'ASSESMEN DAN PENYUSUNAN RENCANA TERAPI', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0113', 'ASSESMENT NEUROBEHAVIOR', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0114', 'ASSESMENT PSIKOGERIATRI', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0115', 'ASSESSMENT BEDAH KOSMETIK', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0116', 'ASSESSMENT GERIATRI KOMPREHENSIF', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0117', 'ASSESSMENT KAKI DIABETIK', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0118', 'ATROPINISASI', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0119', 'AUDIOMETRI DNG / TANPA PEM. TAMBAHAN', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0120', 'AUDITORY STEADY STATE RESPONSE (ASSR)', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0121', 'BACK SLAB', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0122', 'BED SITE MONITOR SELAMA PERAWATAN', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0123', 'BEDAH LASER SEDERHANA BESAR', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0124', 'BEDAH LASER SEDERHANA KECIL', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0125', 'BEDAH LASER SEDERHANA SEDANG', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0126', 'BELLOQUE TAMPON', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0127', 'BELOW ELBOW CAST', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0128', 'BELOW KNEE (ANAK)', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0129', 'BELOW KNEE (DEWASA)', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0130', 'BELOW KNEE CAST', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0131', 'BGA', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0132', 'BIER\'S BLOCK', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0133', 'BILASAN BRONKUS', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0134', 'BIOMATIKLIPOMETRI', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0135', 'BIOMETRI + KERATOMETRI', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0136', 'BIOPSI BESAR', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0137', 'BIOPSI EXSISI', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0138', 'BIOPSI GASTER COLON', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0139', 'BIOPSI GINJAL ANAK', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0140', 'BIOPSI GINJAL DEWASA', 2210000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0141', 'BIOPSI HATI / FUNGSI ABSES HATI', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0142', 'BIOPSI KECIL', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0143', 'BIOPSI KULIT', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0144', 'BIOPSI LIVER', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0145', 'BIOPSI PARU', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0146', 'BIOPSI REKTUM', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0147', 'BIOPSI SEDANG', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0148', 'BIOPSI SERVIKS', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0149', 'BIOPSY OF ABDOMINAL WALL OR UMBILICUS', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0150', 'BIOPSY OF ANUS', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0151', 'BIOPSY OF PERIANAL TISSUE', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0152', 'BIOPSY OF PERIRECTAL TISSUE', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0153', 'BLANKET ROLL PENDINGIN / PEMANAS - PER HARI', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0154', 'BLEACING EKTERNAL', 3818000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0155', 'BLEACING INTERNAL', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0156', 'BOA, VIRA, TYMPAND', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0157', 'BODY JACKET - ANAK', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0158', 'BODY JACKET - DEWASA', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0159', 'BODYPLETHYSMOGRAPHY', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0160', 'BONE MARROW ASPIRATION (BMA)', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0161', 'BONE MARROW PUNCTURE (BMP)', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0162', 'BONGKAR DENTURE (GTC) (PER RAHANG)', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0163', 'BONGKAR RESTORASI (PER GIGI)', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0164', 'BONGKAR RESTORASI PASIEN HANDCAPPED CHILDREN (PER\nGIGI)', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0165', 'BREAST SIZING', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0166', 'BRONCHIAL TOILET - PER HARI', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0167', 'BRONCHOSCOPY', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0168', 'BRONKODILATOR TES', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0169', 'BUKA GIPS - ANAK', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0170', 'BUKA GIPS - DEWASA', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0171', 'BUSINASI ANUS / REKTUM', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0172', 'BUSINASI HURST', 3818000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0174', 'BWCK DIGITAL', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0175', 'CARDIOPULMONARY RESUSCITATION ( TERMASUK INTUBASI)', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0176', 'CATHETER UMBLICALIS', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0177', 'CEMENTING (CROWN & BRIDGE & PIN & RESTORASI YANG\nLEPAS)', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0178', 'CEPHALOMETRY ASSESSMENT', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0179', 'CETAK (SINGLE IPRESSION)', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0180', 'CETAK HIDUNG', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0181', 'CHARACTER ANALYSIS - 9403', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0182', 'CHEMICAL CAUTER KULIT (TCA)', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0183', 'CHEMICAL PEELING (AHA)', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0184', 'CHEMICAL RESURFASING (TCA)', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0187', 'CHEST FISIOTERAPI', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0188', 'CHEST TUBE INSERTION', 2210000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0190', 'CHLORETHYL SPRY', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0191', 'CIRCUMSISI ANAK', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0192', 'CIRCUMSISI DEWASA', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0193', 'CISTOTOMY', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0194', 'CLOSED (PERCUTANEOUS) [NEEDLE] BIOPSY OF LIVER', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0195', 'CLOSED [ENDOSCOPIC] BIOPSY OF ESOPHAGUS', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0196', 'CLOSED [ENDOSCOPIC] BIOPSY OF LARGE INTESTINE', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0197', 'CLOSED [ENDOSCOPIC] BIOPSY OF RECTUM', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0198', 'CLOSED [ENDOSCOPIC] BIOPSY OF SMALL INTESTINE', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0199', 'CLOSED [ENDOSCOPIC] BIOPSY OF STOMACH', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0200', 'CLOSED PERCUTANEUS NEEDLE BIOPSY OF THYROID GLAND', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0201', 'CO ANALYZER', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0202', 'COLAR & CUP', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0203', 'COLONOSCOPI', 4582000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0204', 'CONTOURING PER RAHANG', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0205', 'CONTRAST SENSITIVITY', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0206', 'COOLING TERAPHY SELAMA PERAWATAN', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0207', 'CORSET - ANAK', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0208', 'CORSET - DEWASA', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0209', 'COUTERISASI KOMPLEK', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0210', 'COUTERISASI SEDERHANA', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0211', 'CPR - PER 30 MENIT', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0212', 'CPX', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0213', 'CRANIAL PUNKSI', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0214', 'CROSS INSISI', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0215', 'CRYO COLPOSCOPY', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0216', 'CRYO SURGERY', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0217', 'CUKUR CILIA', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0218', 'DARK FIELD MOCROKOP', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0219', 'DC SHOCK - CARDIOVERSI', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0220', 'DEFIBRILASI', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0221', 'DEKTOSIFIKASI LAMBUNG / KULIT', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0222', 'DERMABRASI', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0223', 'DESENSITISASI', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0224', 'DEVITAL PULPOTOMI / MUMIFIKASI (PER GIGI)', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0225', 'DEVITAL PULPOTOMI / MUMIFIKASI PASIEN HANDCAPPED\nCHILDREN', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0226', 'DIAGNOSTIC ULTRASOUND OF ABDOMEN AND\nRETROPERITONE', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0227', 'DIGITAL EXAMINATION OF ENTEROSTOMY STOMA', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0228', 'DIGITAL EXAMINATION OF RECTUM', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0229', 'DILATACT PHYMOHSIS', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0230', 'DILATASI', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0231', 'DILATION OF ANAL SPHINCTER', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0232', 'DILATION OF ESOPHAGUS', 3182000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0233', 'DILATION OF RECTUM', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0234', 'DIRECT PULP CAPPING (PER GIGI)', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0235', 'DIRECT PULP CAPPING PASIEN HANDCAPPED CHILDREN (PER\nGIGI)', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0236', 'DORSUMSISI ANAK', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0237', 'DORSUMSISI DEWASA', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0238', 'DOUBLE LUMEN TUBE INSERTION', 2652000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0239', 'DRAINAGE ABSES HATI', 2652000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0240', 'DRAINASE', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0241', 'DRAINASE SEROMA SKIN GRAFTING', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0242', 'DUNLOP TRAKSI', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0243', 'E C T ( 1 PAKET )', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0244', 'EAR PIERCING PASCALOBULOPLASTY', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0245', 'ECG (MDR TB)', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0246', 'EGD DENGAN POLIPEKTOMI KECIL', 5498000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0247', 'EGD DENGAN POLIPEKTOMI SEDANG', 6598000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0248', 'EKSISI / EKSTERPASI BESAR', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0249', 'EKSISI / EKSTERPASI KECIL', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0250', 'EKSISI / EKSTERPASI SEDANG', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0251', 'EKSISI OPERKULUM / OPERKULEKTOMI (PER GIGI)', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0252', 'EKSISIONAL BIOPSI', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0253', 'EKSTERPASI - KULIT', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0254', 'EKSTERPASI CORPUS ALIENUM CONJUNCTIVA / CORNEA', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0255', 'EKSTERPASI LITHIASIS / GRANULOMA', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0256', 'EKSTERPASI POLIP', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0257', 'EKSTIRPASI CORPUS ALIENUM', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0258', 'EKSTIRPASI EPULIS (PER REGIO)', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0259', 'EKSTIRPASI FIBROMA (PER REGIO)', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0260', 'EKSTIRPASI KISTA RADIKULARIS (PER GIGI)', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0261', 'EKSTIRPASI MUKOKEL (PER MUKOKEL)', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0262', 'EKSTIRPASI ODONTOMA/OSTEOMA/TORUS (PER REGIO)', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0263', 'EKSTRAKSI CORPUS HIDUNG', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0264', 'EKSTRAKSI CORPUS MATA', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0265', 'EKSTRAKSI CORPUS PADA OTOT/JARINGAN', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0266', 'EKSTRAKSI GIGI PERMANEN DENGAN PENYULIT (PER GIGI)', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0267', 'EKSTRAKSI GIGI PERMANEN TANPA PENYULIT (PER GIGI)', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0268', 'EKSTRAKSI GIGI SULUNG DGN INFILTRASI ANASTESI (PER GIGI)', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0269', 'EKSTRAKSI GIGI SULUNG DGN TOPIKAL ANASTESI (PER GIGI)', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0270', 'EKSTRAKSI KORPUS ALIENUM THT DERAJAT 1', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0271', 'EKSTRAKSI KORPUS ALIENUM THT DERAJAT 2', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0272', 'EKSTRAKSI KUKU (ROSERPLASTY)', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0273', 'EKSTRAKSI PREMATUR GIGI SULUNG (DIRUANG BAYI) (PER\nGIGI)', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0274', 'EKSTUBASI ENDOTRAKEA', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0275', 'ELASTIC BANDAGE', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0276', 'ELIMINASI RACUN PADA INTOKSIKASI', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0277', 'ENDO INTRAKANAL ANTERIOR (PER GIGI)', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0278', 'ENDO INTRAKANAL ANTERIOR PASIEN HANDCAPPED\nCHILDREN', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0279', 'ENDO INTRAKANAL POSTERIOR (PER GIGI)', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0280', 'ENDO INTRAKANAL POSTERIOR PASIEN HANDCAPPED\nCHILDREN', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0281', 'ENDOSCOPIC CONTROL OF GASTRIC OR DUODENAL BLEEDING', 6598000, 'TINDAKAN NON OPERATIF'); +INSERT INTO `tarif_rs` (`ID_Tarif_RS`, `Tindakan_RS`, `Tarif_RS`, `Kategori_RS`) VALUES +('R.TNO.0282', 'ENDOSCOPIC POLYPECTOMY OF LARGE INTESTINE', 7918000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0283', 'ENDOSCOPIC RETROGRADE CHOLANGIOGRAPHY [ERC]', 9502000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0284', 'ENDOSCOPY OF SMALL INTESTINE THROUGH ARTIFICIAL ST', 3818000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0285', 'ENDOSKOPI', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0286', 'ENDOSKOPI ESOPHAGUS GASTRODUODENOUSCOPY', 3818000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0287', 'ENUKLEASI KISTA RAHANG (PER REGIO)', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0288', 'EPILASI', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0289', 'ERCP DIAGNOSTIK', 9502000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0290', 'ERCP TERAPEUTIK', 9502000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0291', 'ERGOCYCLE / EXCUSICE TEST', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0292', 'ERYTHROCYTAFARESIS', 6598000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0293', 'ESOPHAGEAL MANOMETRY', 5498000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0294', 'ESOPHAGOGASTRODUODENOSCOPY [EGD] WITH CLOSED\nBIOPSI', 3818000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0295', 'EVACUATION OF THROMBOSED HEMORRHOIDS', 2652000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0296', 'EVAKUASI CAIRAN PLEURA (THORACO CENCIS)', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0297', 'EVAKUASI MANUAL SKIBALA/FEKALIT', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0298', 'EVAKUASI PLEURA EFUSI', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0299', 'EVAKUASI-DRAINASE HEMATOM', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0300', 'EVALUASI GRAFT', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0301', 'EVISERASI', 2210000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0302', 'EXCHANGE TRANSFUSION', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0303', 'EXCISION OF HEMORRHOIDS', 2652000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0304', 'EXCOCHLEASI BESAR', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0305', 'EXCOCHLEASI KECIL', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0306', 'EXCOCHLEASI SEDANG', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0307', 'EXPLORASI', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0308', 'EXTUBASI ETT', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0309', 'EYCOCHEASI', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0310', 'F O B', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0311', 'F.N.A.B.', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0312', 'FAAL PARU', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0313', 'FFA', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0314', 'FIBEROPTIK BRONKOSKOPI', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0315', 'FIBROSCAN', 2652000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0316', 'FIKSASI JARI', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0317', 'FIKSASI LUAR HIDUNG', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0318', 'FISIOTERAPI DADA ANAK SELAMA PERAWATAN', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0319', 'FISIOTERAPI DADA PER EPISODE', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0320', 'FISSURE SEALANT (PER GIGI)', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0321', 'FISSURE SEALANT PASIEN HANDCAPPED CHILDREN (PER GIGI)', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0322', 'FITTING LENSA KONTAK', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0323', 'FIXASI FRAKTUR COSTAE', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0324', 'FLEXIBLE SIGMOIDOSCOPY', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0325', 'FLOURESCEIN TEST', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0326', 'FLUROSKOPI', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0327', 'FORCE SLAB', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0328', 'FORCEPS EXTERPASI / VACUM', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0329', 'FOTO FUNDUS', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0330', 'FOTO TERAPI / NB UVB', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0331', 'FOTO TERAPI BESAR - PER HARI', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0332', 'FOTO TERAPI KECIL - PER HARI', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0333', 'FOTO TERAPI SEDANG - PER HARI', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0334', 'FRAKTUR PROS.DENTOALV. DENGAN IDW (PER RAHANG)', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0335', 'FRAKTUR RAHANG REDUKSI TERBUKA +IOW+IDW (PER\nRAHANG)', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0336', 'FRAKTUR RAHANG REDUKSI TERBUKA +IOW+IDW+IMW(RA &\nRB)', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0337', 'FRAKTUR RAHANG REDUKSI TERTUTUP +IDW+IMW (PER\nRAHANG)', 2652000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0338', 'FRAKTUR RAHANG REDUKSI TERTUTUP +IMW (PER RAHANG)', 2210000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0339', 'FRAKTUR SENDI REDUKSI TERTUTUP +IMW+PESAWAT\nMONOBLOK', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0340', 'FRENECTOMY', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0341', 'FULGURASI', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0342', 'FULL CAST CROWN (PER GIGI)', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0343', 'FULL CAST CROWN (PER GIGI) PASIEN HANDCAPPED CHILD', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0344', 'FULL DENTURE 1 RAHANG RA & RB', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0345', 'FULL DENTURE 2 RAHANG RA & RB', 3818000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0346', 'FULL DENTURE,MUKOSA FLABBY/RIDGE DATAR', 5498000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0347', 'FUNDUSKOPI', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0348', 'FUNGSI ASITES', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0349', 'FUNGSI GENU ( SENDI )', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0350', 'GALVANIC IONTOPHORESIS', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0351', 'GANTI DRAIN POST PERAWATAN ABSES', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0352', 'GANTI HAS POST EKTIRPASI KISTA/TUMOR', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0353', 'GANTI KARET ARCH BARR', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0354', 'GANTI TAMPON HIDUNG', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0355', 'GASTRIC COOLING', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0356', 'GASTRIC FREEZING', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0357', 'GASTRIC LAVAGE', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0358', 'GEMELLI SPONTAN, SPONTAN', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0359', 'GEMELLI SPONTAN, TINDAKAN PARABDOMINAL', 2210000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0360', 'GEMELLI SPONTAN, TINDAKAN PERVAGINA', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0361', 'GIGI TIRUAN BERIKUTNYA', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0362', 'GIGI TIRUAN CEKAT PORSELEN (FUSE MENTAL) PER GIGI', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0363', 'GIGI TIRUAN CEKAT PORSELEN ALL CERAMIC (ANTERIOR)', 3818000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0364', 'GIGI TIRUAN CEKAT PORSELEN ALL CERAMIC (POSTERIOR)', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0365', 'GIGI TIRUAN VALPLAST PLUS 1 GIGI', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0366', 'GINGIVAL TIRUAN PER REGIO', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0367', 'GINGIVEKTOMI (PER REGIO)', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0368', 'GINGIVOPLASTI (PER REGIO)', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0369', 'GIPS JARI TANGAN', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0370', 'GIPS SEPATU - ANAK', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0371', 'GIPS SEPATU - DEWASA', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0372', 'GIPS SEPATU / WALKING CAST', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0373', 'GLASS IONOMER CEMENT KLS I', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0374', 'GLASS IONOMER CEMENT KLS I PASIEN HANDCAPPED\nCHILDREN', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0375', 'GLASS IONOMER CEMENT KLS II MESIAL/DISTAL', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0376', 'GLASS IONOMER CEMENT KLS III MESIAL/DISTAL', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0377', 'GLASS IONOMER CEMENT KLS IV MESIAL/DISTAL', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0378', 'GLASS IONOMER CEMENT KLS V\nBUKAL/PALATAL/LINGUAL/LABIAL/SERVIKAL', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0379', 'GLISON TRAKSI', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0380', 'GONIOSCOPY / THREE MIRROR LENS', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0381', 'GRAM + BASAH', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0382', 'GROSS DECONTAMINATION', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0383', 'GTSL GIGI BERIKUTNYA (PER GIGI)', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0384', 'GTSL 1 GIGI PERTAMA', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0385', 'GTSL 1 GIGI PERTAMA AKRILIK', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0386', 'GTSL DGN RIDGE ALVEOLAR DATAR/MUKOSA FLABBY (GIGI)', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0387', 'GTSL FRAME METAL (4 GIGI PERTAMA) VALPLAST', 3818000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0388', 'GTSL FRAME METAL 1 GIGI PERTAMA', 2652000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0389', 'GTSL FRAME METAL DGN RIDGE ALVEOLAR DATAR/MUKOSA\nFLABBY', 2210000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0390', 'GTSL FRAME METAL GIGI BERIKUTNYA (PER GIGI) AKRILI', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0391', 'GTSL FRAME METAL GIGI BERIKUTNYA (PER GIGI) VALPLA', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0392', 'HEATHING PERINEUM', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0393', 'HEATING SEKUNDER', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0394', 'HEATING TENDON', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0395', 'HECHTING : > 20 JAHITAN', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0396', 'HECHTING : 01 - 05 JAHITAN', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0397', 'HECHTING : 01 - 10 JAHITAN', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0398', 'HECHTING : 01 - 20 JAHITAN', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0399', 'HECTING - KOSMETIC : > 15 JAHITAN', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0400', 'HECTING - KOSMETIC : 01 - 05 JAHITAN', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0401', 'HECTING - KOSMETIC : 01 - 10 JAHITAN', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0402', 'HECTING - KOSMETIC : 01 - 15 JAHITAN', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0403', 'HELMET REMOVAL', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0404', 'HEMI SPICA - ANAK', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0405', 'HEMI SPICA - DEWASA', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0406', 'HEMISEKSI DENTAL (PER GIGI)', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0407', 'HEMODIAFILTRASI', 2652000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0409', 'HEPARINISASI (LMWH)', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0410', 'HEPARINISASI (UNFRACTIONATED HEPARIN)', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0411', 'HOLDER / BP.MONITOR', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0412', 'HYDROTUBASI, LA', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0413', 'HYPNOTHERAPY', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0414', 'IABP - INSERTION AND REMOVAL', 4582000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0415', 'IMMEDIATE DENTURE', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0416', 'IMMEDIATE OVER DENTURE', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0417', 'IMMUNISASI / VAKSINASI', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0418', 'IMMUNOFENOTYPING SUMSUM TULANG/DARAH TEPI/KGB', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0419', 'IMMUNOSUPRESIVE PULSE', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0420', 'IMUNISASI (DEWASA)', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0421', 'IMUNISASI BCG', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0422', 'IMUNISASI CAMPAK', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0423', 'IMUNISASI DPT COMBO', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0424', 'IMUNISASI DT', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0425', 'IMUNISASI HB', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0426', 'IMUNISASI TD', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0427', 'IMUNISASI TT / Ca CERVIX', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0428', 'IMUNOTERAPY', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0429', 'INCLINE BITE PLANE : PELEPASAN INCLINE BITE PLANE', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0430', 'INCLINE BITE PLANE : PEMASANGAN INCLINE BITE PLANE', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0431', 'INCUBASI ENDOTRACHEAL', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0432', 'INCUBATOR - PER HARI', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0433', 'INDDIRECT PULP CAPPING (PER GIGI)', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0434', 'INDDIRECT PULP CAPPING (PER GIGI) PASIEN HANDCAPPED', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0435', 'INDIRECT OPHTHALMOSCOPY', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0436', 'INFULTRASI ANASTHESI', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0437', 'INFUS STEROID MEGADOSE', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0438', 'INFUS+ DRIP+ TRANFUSI', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0439', 'INJECTIE (MDR TB)', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0440', 'INJECTION OF HEMORRHOIDS', 2652000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0441', 'INJECTION OF INSULIN (CONTINUOUS INSULIN TREATMENT)', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0442', 'INJEKSI', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0443', 'INJEKSI ANTIBIOTIKA SUB ESCHAR (KLISIS)', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0444', 'INJEKSI BOTOX BESAR', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0445', 'INJEKSI BOTOX KECIL', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0446', 'INJEKSI BOTOX SEDANG', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0447', 'INJEKSI EPO SUBCUTAN', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0448', 'INJEKSI ETHANOL INTRATHYROID DGN TUNTUNAN USG', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0449', 'INJEKSI FERUS SULFAT', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0450', 'INJEKSI IMUNOLOGI', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0451', 'INJEKSI INTRA ARTIKULER', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0452', 'INJEKSI INTRALESI BESAR', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0453', 'INJEKSI INTRALESI KECIL', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0454', 'INJEKSI INTRALESI SEDANG', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0455', 'INJEKSI KASUS NYERI SEDERHANA', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0456', 'INJEKSI KEMOTERAPI INTRATEKAL', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0457', 'INJEKSI KHUSUS KASUS NEUROLOGI', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0458', 'INJEKSI KORTIKOSTEROID STRUKTUR PERIARTIKULAR', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0459', 'INJEKSI PRAMEDIKASI', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0460', 'INJEKSI SCLEROTHERAPY', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0461', 'INJEKSI SITOSTATIKA', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0462', 'INJEKSI SLEROTING AGENT', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0463', 'INJEKSI TESTOSTERON', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0464', 'INJEKSI TRIAMCINOLONE', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0465', 'INLAY KOMPOSIT DO/MO (PER GIGI)', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0466', 'INLAY KOMPOSIT DO/MO (PER GIGI) PASIEN HANDCAPPED', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0467', 'INLAY KOMPOSIT MOD (PER GIGI)', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0468', 'INLAY KOMPOSIT MOD (PER GIGI) PASIEN HANDCAPPED\nCHILDREN', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0469', 'INLAY LOGAM DO/MO (PER GIGI PASIEN HANDCAPPED\nCHILDREN', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0470', 'INLAY LOGAM DO/MO (PER GIGI)', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0471', 'INLAY LOGAM MOD (PER GIGI)', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0472', 'INLAY LOGAM MOD (PER GIGI) PASIEN HANDCAPPED\nCHILDREN', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0473', 'INLAY PORCELAIN DO/MO (PER GIGI)', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0474', 'INLAY PORCELAIN DO/MO (PER GIGI) PASIEN HANDCAPPED', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0475', 'INLAY PORCELAIN MOD (PER GIGI)', 3182000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0476', 'INLAY PORCELAIN MOD (PER GIGI) PASIEN HANDCAPPED\nCHILDREN', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0477', 'INSERI CVP', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0478', 'INSERSI KATETER VENA SENTRAL DENGAN USG', 2210000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0479', 'INSERSI KATETER VENA SENTRAL TANPA USG', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0480', 'INSERSI KATETER VENA SENTRAL UNTUK HEMODIALISA', 2652000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0481', 'INSERSI NASOGASTRIC TUBE DENGAN PENYULIT', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0482', 'INSERSI NASOGASTRIC TUBE DENGAN SEDASI', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0483', 'INSERSI NASOGASTRIC TUBE TANPA PENYULIT', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0484', 'INSERSI PICC CAVAVIX', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0485', 'INSERTI / EKSTRAKSI IUD', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0486', 'INSERTI EKSTRAKSI NORPLANT', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0487', 'INSERTION OF (NASO-)INTESTINAL TUBE', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0488', 'INSERTION OF OTHER (NASO-)GASTRIC TUBE', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0489', 'INSERTION OF RECTAL TUBE', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0490', 'INSERTION OF SENGSTAKEN TUBE', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0491', 'INSISI ABSCES', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0492', 'INSISI ABSES BARTHOLINI', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0493', 'INSISI ABSES BESAR', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0494', 'INSISI ABSES EKTRA / INTRA ORAL', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0495', 'INSISI ABSES KECIL', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0496', 'INSISI ABSES KOMPLEKS', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0497', 'INSISI ABSES SEDANG', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0498', 'INSISI BARTOLINI', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0499', 'INSISI BESAR', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0500', 'INSISI CHALAZION / HORDEOLUM / MILIA', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0501', 'INSISI KECIL', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0502', 'INSISI KOMPLEKS', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0503', 'INSISI SEDANG', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0504', 'INSISI THT', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0505', 'INSISI/EKSISI BIOPSI INTRA/EXTRA ORAL', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0506', 'INSISIONAL BIOPSY', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0507', 'INSPECULO', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0508', 'INTERCOSTAL NERVE BLOCK', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0509', 'INTERVENSI KATUP (PTMC, BVP, DLL)', 9502000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0510', 'INTERVENSI KONGINETAL (ADO, ASO, DLL)', 9502000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0511', 'INTERVENSI PERIFER (PTA, PTRA )', 9502000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0512', 'INTESTINAL BIOPSY, SITE UNSPECIFIED', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0513', 'INTRA AORTIC BALLOON PUMP', 6598000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0514', 'INTRA OSSEUS', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0515', 'INTRA-ARTERIAL LINE INSERTION', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0516', 'INTRACRANIAL PRESSURE MONITOR INSERTION', 6598000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0517', 'INTRATECAL SITOSTATIKA - PER HARI', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0518', 'INTUBASI (PASANG ETT)', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0519', 'INTUBASI DAN EKSTUBASI ETT', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0520', 'INTUBASI DAN EKSTUBASI PIPA ENDOTRAKEAL', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0521', 'INTUBASI ENDOTRACHEAL', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0522', 'INTUBASI ENDOTRAKHEAL DENGAN PENYULIT', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0523', 'INTUBASI ENDOTRAKHEAL TANPA PENYULIT', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0524', 'INTUBASI NASOTRAKEA', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0525', 'IRIGASI MATA', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0526', 'IRIGASI TELINGA', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0527', 'IRIGASI TRAUMA KIMIA', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0528', 'IRRIGATION OF GASTROSTOMY OR ENTEROSTOMY', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0529', 'IV A, DETEKSI DINI KANKER', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0530', 'JAHIT LUKA SEKUNDER', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0531', 'KATERISASI DIAGNOSTIK KONGINETAL', 5498000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0532', 'KATERISASI INVASIF MONITOR - PER HARI', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0533', 'KATERISASI JANTUNG ANGIOGRAFI KORONER', 9502000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0534', 'KATERISASI JANTUNG ANGIOPLASTI KORONER', 9502000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0535', 'KATERISASI JANTUNG BMV', 9502000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0536', 'KATERISASI JANTUNG DIAGNOSTIK NON KORONER', 5498000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0537', 'KATETERISASI PENUTUPAN ASD/VSD/PDA', 4582000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0538', 'KATETERISASI RET. URINE', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0539', 'KATETERISASI/ANGIOGRAFI KORONER /DIAGNOSTIK', 5498000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0540', 'KAUSTIK KONKA', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0541', 'KAUTER ELEKTRIK (ELECTRIC CAUTER) BESAR', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0542', 'KAUTER ELEKTRIK (ELECTRIC CAUTER) KECIL', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0543', 'KAUTER ELEKTRIK (ELECTRIC CAUTER) SEDANG', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0544', 'KAUTERISASI CHEMIS (CHEMOCAUTER)', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0545', 'KEGAWATAN PSIKIATRI', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0546', 'KEMOTERAPI', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0547', 'KENACORT -A. ID ( OBAT BELI SENDIRI )', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0548', 'KOCHER - ANAK', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0549', 'KOCHER CAST', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0550', 'KOCHER - DEWASA', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0551', 'KOLPOSKOPI', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0552', 'KOMPLIKASI EKTRAKSI GIGI DGN OBAT-OBATAN (PER GIGI)', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0553', 'KOMPLIKASI EKTRAKSI GIGI DGN TINDAKAN BEDAH (PER GIGI)', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0554', 'KOMPOSIT LC KLS I (PER GIGI)', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0555', 'KOMPOSIT LC KLS I (PER GIGI) PASIEN HANDCAPPED\nCHILDREN', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0556', 'KOMPOSIT LC KLS II DO/MO (PER GIGI)', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0557', 'KOMPOSIT LC KLS II DO/MO (PER GIGI) PASIEN HANDCAPPED', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0558', 'KOMPOSIT LC KLS II MOD (PER GIGI)', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0559', 'KOMPOSIT LC KLS II MOD (PER GIGI) PASIEN HANDCAPPED', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0560', 'KOMPOSIT LC KLS III DISTAL/MESIAL (PER GIGI)', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0561', 'KOMPOSIT LC KLS III DISTAL/MESIAL (PER GIGI)', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0562', 'KOMPOSIT LC KLS IV DISTAL/MESIAL (PER GIGI)', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0563', 'KOMPOSIT LC KLS IV DISTAL/MESIAL (PER GIGI) PASIEN', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0564', 'KOMPOSIT LC KLS V BUKAL/LABIAL/LINGUAL/PALATAL (PER\nGIGI)', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0565', 'KOMPOSIT LC KLS VI (PER GIGI)', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0566', 'KOMPOSIT LC KLS VI (PER GIGI) PASIEN HANDCAPPED\nCHILDREN', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0567', 'KOMPRES HANGAT / DINGIN', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0568', 'KOMPRESI BIMANUIL', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0569', 'KONSELING DASAR ADIKSI NAPZA', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0570', 'KONSELING HIV', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0571', 'KONSELING POLI VCT (PER KALI)', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0572', 'KONSULTASI DAN PENDAMPINGAN TINDAKAN OPERASI\nREGUL', 2210000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0573', 'KONTROL GRINDING', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0574', 'KONTROL IUD', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0575', 'KUMBAH LAMBUNG PER EPISODE', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0576', 'KURETASE PER REGIO', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0577', 'KURETASE PERIODONTAL >1/4 s/d 1/2 RAHANG', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0578', 'KURETASE PERIODONTAL < 1/4 RAHANG', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0579', 'KURETASE PERIODONTAL > 1/2 RAHANG', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0580', 'LABIAL VENEER/KOMPOSIT (PER GIGI)', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0581', 'LABIAL VENEER/KOMPOSIT (PER GIGI) PASIEN HANDCAPPED', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0582', 'LARVA MIGRAN CRYOTHERAPI', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0583', 'LASER', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0584', 'LASER CO 2 ABLASI', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0585', 'LASER CO 2 RESURFASING', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0586', 'LATIHAN VERTIGO', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0587', 'LAVEMENT / STERILISASI USUS', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0588', 'LAVEMENT ANAK', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0589', 'LEEP', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0590', 'LEKOPHARESIS', 3818000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0591', 'LEPAS IUD', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0592', 'LEPAS PESSARIUM', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0593', 'LEPAS SUSUK', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0594', 'LEUCOREDUCTION (LEUCOFARESIS)', 6598000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0595', 'LIGASI VARICES ESOPHAGUS', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0596', 'LIGATION OF ESOPHAGEAL VARICES', 5498000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0597', 'LIGATION OF GASTRIC VARICES', 6598000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0598', 'LIGATION OF HEMORRHOIDS', 2652000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0599', 'LOADING DOSE PHENYTOIN', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0600', 'LOBULOPLASTI', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0601', 'LOCAL EXCISION OF RECTAL LESION OR TISSUE', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0602', 'LONG ARM CAST', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0603', 'LONG LEG CAST ANAK', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0604', 'LONG LEG CAST DEWASA', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0605', 'LOUSET MAURESEAU', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0606', 'LOW VISION (VISUS + STREAK + KONTRAS + KONFRONTASI)', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0607', 'LUMBAL PUNKSI - ANAK', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0608', 'LUMBAL PUNKSI - DEWASA', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0609', 'MAHKOTA AKRILIK 1 GIGI', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0610', 'MAHKOTA AKRILIK 1 GIGI PASIEN HANDCAPPED CHILDREN', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0611', 'MAHKOTA LOGAM 1 GIGI', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0612', 'MAHKOTA LOGAM 1 GIGI PASIEN HANDCAPPED CHILDREN', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0613', 'MAHKOTA PIGURA 1 GIGI', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0614', 'MAHKOTA PIGURA 1 GIGI PASIEN HANDCAPPED CHILDREN', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0615', 'MAHKOTA PORSELEN (FUSE MENTAL) PER GIGI', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0616', 'MAHKOTA PORSELEN ALL CERAMIC (POSTERIOR)', 2210000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0617', 'MAHKOTA SEMENTARA 1 GIGI', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0618', 'MAHKOTA SEMENTARA 1 GIGI PASIEN HANDCAPPED\nCHILDREN', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0619', 'MAJELIS PENGUJI KESEHATAN JIWA (MPK) DAN VISUM ET', 2210000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0620', 'MANDIBULAR BANDAGE', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0621', 'MANTOUX TEST - DEWASA', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0622', 'MANTOUXT TEST', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0623', 'MANUAL PLACENTA', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0624', 'MANUAL REDUCTION OF ENTEROSTOMY PROLAPSE', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0625', 'MANUAL REDUCTION OF RECTAL PROLAPSE', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0626', 'MARSUPIALISASI', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0627', 'MARSUPIALISASI KISTA/RANULA (WINDOW) (PER GIGI)', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0628', 'MATRAS ANTI DECUBITUS - PER HARI', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0629', 'MAXILLOMANDIBULAR RELATIONSHIP', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0630', 'MELAKUKAN BAGGING SELAMA PERAWATAN', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0631', 'MELAKUKAN DEFIBRILASI/CARDIOVERSI', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0632', 'MELAKUKAN INJEKSI IM/IV/SC/IC', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0633', 'MELEPAS ICP', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0634', 'MELEPAS ARTERIAL LINE', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0635', 'MELEPAS CVP', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0636', 'MELEPAS DOWER KATETER', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0637', 'MELEPAS FOWLEY KATETER', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0638', 'MELEPAS INFUS/IV LINE', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0639', 'MELEPAS KATETER URETRA', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0640', 'MELEPAS KATETER URETROPLASTY', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0641', 'MELEPAS NGT', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0642', 'MELEPAS SKIN TRAKSI', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0643', 'MELEPAS SPLINT DNL', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0644', 'MELEPAS TAMPON', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0645', 'MELEPAS TRACHEOSTOMI', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0646', 'MELEPAS WSD', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0647', 'MEMASANG DARMBUIS', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0648', 'MEMASANG DOLLES VERBAND', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0649', 'MEMASANG DOWER KATETER', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0650', 'MEMASANG FOWLEY KATETER', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0651', 'MEMASANG GIPS NASLE', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0652', 'MEMASANG GIPS PALK', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0653', 'MEMASANG GLISON TAKSI', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0654', 'MEMASANG INFUS ANAK - PER HARI', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0655', 'MEMASANG KATETER ANAK', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0656', 'MEMASANG MATRAS ANTIDECUBITUS - PER EPISODE', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0657', 'MEMASANG NGT', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0658', 'MEMASANG OROFARINGEAL / NASOFARINGEAL TUBE', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0659', 'MEMASANG PELVIS SLING', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0660', 'MEMASANG PLUG', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0661', 'MEMASANG RANSEL VERBAND', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0662', 'MEMASANG SKELETAL TRAKSI', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0663', 'MEMASANG SKIN TRAKSI', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0664', 'MEMASANG TAMPON', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0665', 'MEMASANG THORAKS DRAIN', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0666', 'MEMASANG THORAKS FIXATION', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0667', 'MEMASANG U-SLAB', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0668', 'MEMASANG VELLPEAU VERBAND', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0669', 'MEMASUKKAN OBAT SITOSTATIKA - PER 1 PROGRAM', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0670', 'MEMASUKKAN OBAT STREPTOKINASE', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0671', 'MEMBERIKAN NEBULIZER LEWAT VENTILATOR - PER EPISODE', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0672', 'MEMBERIKAN TRANSFUSI DARAH', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0673', 'MEMBUAT GIPS PALK', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0674', 'MEMOTONG COLOSTOMI', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0675', 'MEMPERTAHANKAN SUHU TUBUH', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0676', 'MENCABUT CYSTOTOMI', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0677', 'MENCABUT WSD', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0678', 'MENDAMPINGI PASIEN KRITIS UNTUK TINDAKAN DIAGNOSTIK', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0679', 'MENGAMBIL SPESIMEN DARAH/URINE/SPUTUM/PUS/\nCAIRAN', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0680', 'MENGAMBIL SPESIMEN SPUTUM MELALUI ETT', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0681', 'MENGAMBIL SPESIMEN DARAH / URINE / SPUTUM PER HARI', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0682', 'MENGHITUNG KEBUTUHAN KALORI PER EPISODE', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0683', 'MENGHITUNG OSMOLARITAS PLASMA PER EPISODE', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0684', 'MENGUKUR CVP - PER EPISODE', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0685', 'MENIMBANG BERAT BADAN DENGAN PASIEN DIATAS TEMPAT', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0686', 'MENOMETRORAGHIA', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0687', 'MENYELENGGARAKAN FAMILY MEETING', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0688', 'MENYUNTIK KELOID', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0689', 'MERAWAT ARTERIAL LINE', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0690', 'MERAWAT COLOSTOMY/BOGOTA BAG - PER EPISODE', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0691', 'MERAWAT DEKUBITUS - PER HARI', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0692', 'MERAWAT ICP', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0693', 'MERAWAT JENAZAH', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0694', 'MERAWAT LUKA TANPA HECHTING', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0695', 'MERAWAT POTONG POST COLOSTOMY', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0696', 'MEREKAM DAN INTEPRETASI ECG', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0697', 'METHYLPREDNISOLONE MEGA DOSE IV', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0698', 'METODE KANGGURU', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0699', 'MICRONEEDLE BESAR', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0700', 'MICRONEEDLE KECIL', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0701', 'MICRONEEDLE SEDANG', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0702', 'MIKRO DERMABRASI DIAMOND', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0703', 'MIKRO DERMABRASI KRISTAL', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0704', 'MIKRO DERMOBRASI DIAMOND', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0705', 'MIKRO DERMOBRASI KRISTAL', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0706', 'MIKROSKOP TELINGA', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0707', 'MINERVA ANAK', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0708', 'MINERVA DEWASA', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0709', 'MONITORING INVASIF BLOOD PRESSURE PER EPISODE', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0710', 'MONITORING ANESTESIA CARE DENGAN PENYULIT', 2210000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0711', 'MONITORING ANESTESIA CARE TANPA PENYULIT', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0712', 'MONITORING PASIEN CPAP PER EPISODE', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0713', 'MONITORING PASIEN SELAMA PEMAKAIAN CRRT PER EPISODE', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0714', 'MORFOLOGI DARAH TEPI', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0715', 'MULTIPLE INCISI', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0716', 'NASOENDOSKOPI', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0717', 'NCT (NON CONTACT TONOMETRI)', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0719', 'NEBULIZER - PER HARI', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0720', 'NEEDLE DECOMPRESSION', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0721', 'NEKROTOMI', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0722', 'NIGHT GUARD PER RAHANG', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0723', 'NON INVASIVE VENTILATION (EPANFAREOLIS)', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0724', 'NON INVASIVE VENTILATION W/PEEP (ASCICTED) / JAM', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0725', 'NST / AT', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0726', 'OAE SWT', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0727', 'OAE UM', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0728', 'OBSERVASI 12 JAM', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0729', 'OBSERVASI 24 JAM', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0730', 'OBSERVASI HIS, DJJ - PER HARI', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0731', 'OBSEVASI PASIEN - PER 2 JAM', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0732', 'OBTURATOR BAYI (AKRILIK)', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0733', 'OBTURATOR BAYI (SILIKON)', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0734', 'OBTURATOR TANPA GIGI', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0735', 'OCCLUSAL ADJUSMENT', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0736', 'OCT ANTERIOR', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0737', 'ODONTEKTOMI BERAT DGN ANAESTESI LOKAL (PER GIGI)', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0738', 'ODONTEKTOMI RINGAN DGN ANAESTESI LOKAL (PER GIGI)', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0739', 'ODONTEKTOMI SEDANG DGN ANAESTESI LOKAL (PER GIGI)', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0740', 'OKLUSAI ADJUSTMENT RAHANG ATAS DAN RAHANG BAWAH', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0741', 'ONE VISIT ENDODONTIK ANTERIOR (PER GIGI)', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0742', 'ONE VISIT ENDODONTIK ANTERIOR (PER GIGI) PASIEN\nHANDCAPPED', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0743', 'ONE VISIT ENDODONTIK POSTERIOR (PER GIGI)', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0744', 'ONLAY/UPLAY (PER GIGI)', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0745', 'ONLAY/UPLAY (PER GIGI) PASIEN HANDCAPPED CHILDREN', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0746', 'ORAL HYGIENE PASIEN TOTAL CARE', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0747', 'ORTODONTIK : PAKET ORTODONTIK LEPASAN (PER RAHANG)', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0748', 'ORTODONTIK : PAKET ORTODONTIK REMOFIX (PER RAHANG)', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0749', 'ORTODONTIK : KONTROL ORTODONTIK CEKAT', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0750', 'ORTODONTIK : KONTROL ORTODONTIK LEPASAN', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0751', 'ORTODONTIK : KONTROL ORTODONTIK REMOFIX', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0752', 'ORTODONTIK : PASANG BREKET GIGI IMPAKSI (PER RAHANG', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0753', 'ORTODONTIK : PASANG MINISCREW (PER RAHANG)', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0754', 'ORTODONTIK : PASANG WAFER (PER RAHANG)', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0755', 'ORTODONTIK : PELEPASAN ALAT ORTODONTIK CEKAT (PER\nRAHANG)', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0756', 'ORTODONTIK : PELEPASAN ALAT ORTODONTIK REMOFIX (PER\nRAHANG)', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0757', 'ORTODONTIK : PEMBUATAN ALAT ORTODONTIK LEPASAN\n(PER RAHANG)', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0758', 'ORTODONTIK : REPARASI ALAT ORTODONTIK LEPASAN (PER\nRAHANG)', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0759', 'OTHER DIAGNOSTIC PROCEDURES ON LARGE INTESTINE', 2652000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0760', 'OTHER ENDOSCOPY OF SMALL INTESTINE', 4582000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0761', 'OTHER INJECTION OF THERAPEUTIC SUBSTANCE INTO LIVE', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0762', 'OTHER IRRIGATION OF (NASO-)GASTRIC TUBE', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0763', 'OTHER PROCEDURES ON HEMORRHOIDS', 2652000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0764', 'OTHER PSYCHOLOGIC EVALUATION AND TESTING - 9408', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0765', 'OTHER TRANSANAL ENEMA (LAVEMEN)', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0766', 'OVER DENTURE DGN MAGNET', 3182000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0767', 'OXYMETRI', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0768', 'PACE MAKER TEMPORER', 3818000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0769', 'PACU JANTUNG PERMANENT', 6598000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0770', 'PAKET PILKADA (FIT & PROPER TEST)', 2210000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0771', 'PAP SMEAR', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0772', 'PARASENTESE', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0773', 'PARASINTESIS BANYAK (2000 S/D 4000 CC)', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0774', 'PARASINTESIS SEDIKIT (<2000 CC)', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0775', 'PARASINTESIS TOTAL (LARGE PARACYNTESIS)', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0776', 'PARTUS NORMAL', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0777', 'PARTUS NORMAL DENGAN DRIP', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0778', 'PARTUS PRESIPILATUS', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0779', 'PARTUS SPONTAN', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0780', 'PASAK RICHMOND(MAHKOTA PORSELEN)', 2210000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0781', 'PASAK TUANG LOGAM', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0782', 'PASAK TUANG LOGAM GANDA', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0783', 'PASAK/POST GANDA (FABRICATED)', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0784', 'PASAK/POST TUNGGAL (FABRICATED)', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0785', 'PASANG GIPS KECIL DEWASA', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0786', 'PASANG COLAR AND CUFF', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0787', 'PASANG COLAR IN CUP', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0788', 'PASANG GIPS BESAR ANAK', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0789', 'PASANG GIPS BESAR DEWASA', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0790', 'PASANG GIPS KECIL ANAK', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0791', 'PASANG GIPS KECIL DEWASA', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0792', 'PASANG GIPS SEDANG ANAK', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0793', 'PASANG GIPS SEDANG DEWASA', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0794', 'PASANG IUD', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0795', 'PASANG NOSTRIL RETAINER', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0796', 'PASANG PACU JANTUNG PERMANEN', 9502000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0797', 'PASANG PACU JANTUNG TEMPORER', 5498000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0798', 'PASANG PESSARIUM', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0799', 'PASANG PIG TAIL KATHETER THORAK', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0800', 'PASANG RANSEL VERBAN', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0801', 'PASANG SLING/ BANDAGE', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0802', 'PASANG SUSUK', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0803', 'PASANG VELPEAU VERBAN', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0804', 'PEAK FLOW METER (PEF)', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0805', 'PELEPASAN ORTODONTI CEKAT PADA JENAZAH', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0806', 'PELVIC SLING', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0808', 'PEMAKAIAN SYRING PUMP - PER HARI', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0809', 'PEMAKAIAN C-ARM', 3182000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0810', 'PEMAKAIAN INFANT WARMER - PER HARI', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0811', 'PEMAKAIAN MATRAS DEKUBITUS - PER HARI', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0813', 'PEMANTAUAN PEMBERIAN VASOPRESSIN / INOTROPIC\n(INFUS)', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0814', 'PEMANTAUAN VITAL SIGN/SPO2/LEVEL NYERI - PER EPISODE', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0815', 'PEMASANGAN BIDAI', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0816', 'PEMASANGAN CATHETER UMBLICALIS', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0817', 'PEMASANGAN CVP', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0818', 'PEMASANGAN ETT', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0819', 'PEMASANGAN FLOW-CARE SECARA ENDOSKOPIK', 4582000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0820', 'PEMASANGAN GIPS SPALK', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0821', 'PEMASANGAN IABP', 6598000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0822', 'PEMASANGAN INFUS', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0823', 'PEMASANGAN IV PLUG', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0824', 'PEMASANGAN KATETER INTRAVENA (IV LINE)', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0825', 'PEMASANGAN KATETER SEMI PERMANEN UTK HEMODIALISIS', 6598000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0826', 'PEMASANGAN KATETER VENA SENTRAL (CVC)', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0827', 'PEMASANGAN LMA', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0828', 'PEMASANGAN LONG LINE / VENA SEKSI', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0829', 'PEMASANGAN MAYO', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0831', 'PEMASANGAN NUTRICATH', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0832', 'PEMASANGAN PICC', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0833', 'PEMASANGAN PIPA NASOFARING OROFARING', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0834', 'PEMASANGAN PIPA NASOGASTRIK', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0836', 'PEMASANGAN RANCEL VERBAND', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0837', 'PEMASANGAN SB TUBE', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0838', 'PEMASANGAN SCEW IMPLANT (PER GIGI)', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0839', 'PEMASANGAN SELANG REKTUM (RECTAL TUBE)', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0840', 'PEMASANGAN SWAN GANZ KATETER', 6598000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0841', 'PEMASANGAN TAMPON NASAL', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0842', 'PEMASANGAN TENCHKOFF CATHETER UNTUK PERITONEAL\nDIALISIS', 9502000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0843', 'PEMASANGAN TENCHKOFF UTK CAPD DGN TEKNIK SELDINGER', 7918000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0844', 'PEMASANGAN TRACHEOSTOMY', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0845', 'PEMASANGAN U-SLAP', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0846', 'PEMASANGAN WSD', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0847', 'PEMBERIAN ANTIDOTUM', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0848', 'PEMBERIAN ATROPINIRASI', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0849', 'PEMBERIAN CHARCOAL', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0850', 'PEMBERIAN IVIG', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0852', 'PEMBERIAN OBAT RECTAL', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0853', 'PEMBERIAN OBAT SEDASI', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0854', 'PEMBUATAN BASE PLATE PER RAHANG', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0855', 'PEMBUATAN WINDOW ERUPSI', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0856', 'PEMERIKSAAN DARAH STIK', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0857', 'PEMERIKSAAN FAAL PARU (SPIROMETRI)', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0858', 'PEMERIKSAAN FITTING CONTCT LENS', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0859', 'PEMERIKSAAN FLUORESCINE (FL)', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0860', 'PEMERIKSAAN FUNDOSKOPI (F)', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0861', 'PEMERIKSAAN MIDRIATIK SIKLOPLEGIA (M)', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0862', 'PEMERIKSAAN PAKET FL + SL', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0863', 'PEMERIKSAAN PAKET T + M + F', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0864', 'PEMERIKSAAN PAKET V+R+AR+T+F+SL+M (PAKET\nPEMERIKSAAN MATA DASAR)', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0865', 'PEMERIKSAAN PAKET V+R+AR+T+F+SL+M+BW (PAKET\nPEMERIKSAAN KIR MATA)', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0866', 'PEMERIKSAAN REFRAKSI (R)', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0867', 'PEMERIKSAAN SLITLAMP (SL)', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0868', 'PEMERIKSAAN AIR MATA', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0869', 'PEMERIKSAAN AUTOPERIMETRI', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0870', 'PEMERIKSAAN AUTOREFRAKSI (AR)', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0871', 'PEMERIKSAAN BMD', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0872', 'PEMERIKSAAN BTA', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0873', 'PEMERIKSAAN BUTA WARNA (BW)', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0874', 'PEMERIKSAAN DARKFIELD MICROSCOPE', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0875', 'PEMERIKSAAN DIRECT SWAB', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0876', 'PEMERIKSAAN DOPPLER VASCULAR', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0877', 'PEMERIKSAAN FITTING PROSTHESIS', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0878', 'PEMERIKSAAN FUNDUSKOPI', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0879', 'PEMERIKSAAN GDA STICK', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0880', 'PEMERIKSAAN GENITALIA WANITA', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0881', 'PEMERIKSAAN GIEMSA', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0882', 'PEMERIKSAAN GRAM', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0883', 'PEMERIKSAAN H PYLORI DGN BIOPSI', 2652000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0884', 'PEMERIKSAAN KOH', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0885', 'PEMERIKSAAN LENGKAP DEMENSIA', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0886', 'PEMERIKSAAN PASIEN SESUDAH PROSES PENYAPIHAN - PER\nEPISODE', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0887', 'PEMERIKSAAN SKRINING DEMENSIA', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0888', 'PEMERIKSAAN TONOMETRI (T)', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0889', 'PEMERIKSAAN URINE ALISIS OPIAT ( 3 JENIS )', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0890', 'PEMERIKSAAN VISUS (V)', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0891', 'PENANGANAN GANGGUAN CAIRAN DAN ELEKTROLIT', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0892', 'PENANGANAN KEDARURATAN DELIRIUM/ACUTE\nCONFUSIONAL', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0893', 'PENCABUTAN DOUBLE LUMEN KATETER SEMI PERMANEN', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0894', 'PENCABUTAN DOUBLE LUMEN KATETER TEMPORER HD', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0895', 'PENCABUTAN DRAIN\nINTRA/RETROPERITONEAL/EKSTRAPERITONEAL', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0896', 'PENCABUTAN KATETER TENCHKOFF CAPD', 2652000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0897', 'PENCETAKAN DOUBLE IMPRESSION PER RAHANG', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0898', 'PENCETAKAN POLYVINYL SILOXANE MONOPHASE PER\nRAHANG', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0899', 'PENDAMPINGAN TINDAKAN BRACHI TERAPI', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0900', 'PENDAMPINGAN TINDAKAN KEMOTERAPI', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0901', 'PENDAMPINGAN TINDAKAN OPERASI CYTO', 3182000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0902', 'PENDAMPINGAN TINDAKAN RADIOTERAPI', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0903', 'PENDAMPINGAN TINDAKAN REHABILITASI', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0904', 'PENDAMPINGAN TINDAKAN STRESS TESTING', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0905', 'PENDAMPINGAN TRANSPORTASI ANTAR KOTA PER JAM', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0906', 'PENDAMPINGAN TRANSPORTASI DALAM KOTA PER JAM', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0907', 'PENDAMPINGAN TRANSPORTASI LUAR NEGERI PER HARI', 4582000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0908', 'PENGAMBILAN BAHAN PAP-SMEAR (VVP)', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0909', 'PENGAMBILAN BAHAN POST-COITAL', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0910', 'PENGAMBILAN BAHAN SITOHORMONAL', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0911', 'PENGAMBILAN DARAH / BGA', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0912', 'PENGAMBILAN DARAH ARTERI', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0913', 'PENGAMBILAN SEDIAAN FNAB', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0914', 'PENGAWASAN MINUM OBAT (MDR TB)', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0915', 'PENGERATAN CUTTING SETON', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0916', 'PENGGANTIAN KATETER SISTOSTOMI', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0917', 'PENGGANTIAN KATETER URETRA', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0918', 'PENGGANTIAN KATETER/TUBE ENTEROSTOMI', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0919', 'PENILAIAN RESIKO JATUH', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0920', 'PENILAIAN RESIKO TROMBOSIS', 101000, 'TINDAKAN NON OPERATIF'); +INSERT INTO `tarif_rs` (`ID_Tarif_RS`, `Tindakan_RS`, `Tarif_RS`, `Kategori_RS`) VALUES +('R.TNO.0921', 'PENILAIAN STATUS FUNGSIONAL', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0922', 'PENILAIAN STATUS GIZI', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0923', 'PENILAIAN STATUS KOGNITIF', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0925', 'PENUTUPAN PERFORASI SINUS MAKSILARIS;FISTULA OROAN', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0926', 'PENUTUPAN PERFORASI SINUS MAKSILARIS;FISTULA\nOROANTRAL', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0927', 'PERAWATAN DIAHPERAS', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0928', 'PERAWATAN ETT', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0929', 'PERAWATAN TRACHEO CANULE', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0930', 'PERAWATAN ARCHBARR (GANTIKARET)', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0931', 'PERAWATAN CATETER UMBILICAL PER EPISODE', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0932', 'PERAWATAN CATHETER TEMPORER / CAPD', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0933', 'PERAWATAN CHEST TUBE', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0934', 'PERAWATAN COVIS PER HARI', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0935', 'PERAWATAN CVP', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0936', 'PERAWATAN DECUBITES', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0937', 'PERAWATAN GANGGREN', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0938', 'PERAWATAN GIGI HIPERSENSITIF PER REGIO', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0939', 'PERAWATAN GLANULOMA', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0940', 'PERAWATAN ICP MONITOR', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0941', 'PERAWATAN INFUS', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0942', 'PERAWATAN INKUBATOR', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0943', 'PERAWATAN JENAZAH', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0944', 'PERAWATAN KAKI DIABETES BESAR', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0945', 'PERAWATAN KAKI DIABETES KECIL', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0946', 'PERAWATAN KAKI DIABETES SEDANG', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0947', 'PERAWATAN KATETER URETROPLASTY', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0948', 'PERAWATAN LUKA GANGREN', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0949', 'PERAWATAN LUKA MENINGOPLASTY', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0950', 'PERAWATAN LUKA NON DEKUBITUS / NON DIABET', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0951', 'PERAWATAN LUKA POST INSISI ABSES', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0952', 'PERAWATAN LUKA TRAKEOSTOMY', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0953', 'PERAWATAN LUKA TRAUMA JAR.LUNAK DEBRIDEMEN DGN\nJAHIT', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0954', 'PERAWATAN LUKA TRAUMA JAR.LUNAK DEBRIDEMEN TANPA\nJAR. LUNAK DEBRIDEMEN TANPA JAHIT', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0955', 'PERAWATAN MATA - PER EPISODE', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0956', 'PERAWATAN MIKROGRAFTING', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0957', 'PERAWATAN MOUNIALIASIS', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0958', 'PERAWATAN NEONATUS', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0959', 'PERAWATAN ORTO CEKAT (PER PAKET)', 2652000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0960', 'PERAWATAN ORTO CEKAT (PER TINDAKAN)', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0961', 'PERAWATAN PERDARAHAN DGN MEDIKAMENTOSA', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0962', 'PERAWATAN PERDARAHAN DGN TINDAKAN BEDAH (PER\nREGIO)', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0963', 'PERAWATAN TALI PUSAT', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0964', 'PERAWATAN TRACHEOSTOMI - PER HARI', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0965', 'PERAWATAN TRISMUS DENGAN RETRAKSI', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0966', 'PERAWATAN TRISMUS DENGAN SOLUKS', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0967', 'PERAWATAN WSD - PER HARI', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0968', 'PERCUTANEOUS (ENDOSCOPIC) JEJUNOSTOMY [PEJ]', 9502000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0969', 'PERCUTANEOUS [ENDOSCOPIC] GASTROJEJUNOSTOMY', 9502000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0970', 'PERCUTANEOUS [ENDOSCOPIC] GASTROSTOMY [PEG]', 9502000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0971', 'PERCUTANEOUS ABLATION OF LIVER LESION OR TISSUE', 5498000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0972', 'PERCUTANEOUS ASPIRATION OF GALLBLADDER', 5498000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0973', 'PERCUTANEOUS ASPIRATION OF LIVER', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0974', 'PERCUTANEUS TRACHEOSTOMI', 3182000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0975', 'PERFORASI + CRANIOCLASI/ CUNAM MUZEAUX, LA', 4582000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0976', 'PERICARDIOCENTESIS', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0977', 'PERITONEAL EQUILIBRIUM TEST ( PET )', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0978', 'PERITONIAL DIALISA', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0979', 'PERSPIRASI TEST', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0980', 'PFR', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0981', 'PH METRI', 4582000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0982', 'PHLEBOTOMI', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0983', 'PHONOCARDIOGRAFI', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0984', 'PIN RETAINED', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0985', 'PIN RETAINED PASIEN HANDCAPPED CHILDREN', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0986', 'PLASMAPHARESIS', 5498000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0987', 'PLEURODESIS', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0988', 'POLYSOMNOGRAFI', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0989', 'PREMEDIKASI PRO KEMO', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0990', 'PROCTOSCOPY', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0991', 'PROCTOSIGMOIDOSCOPY THROUGH ARTIFICIAL STOMA', 3818000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0992', 'PROEF PUNCTI', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0993', 'PROOF ABSES/KISTA HATI', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0994', 'PROOF PUNKSI', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0995', 'PROS.DENTOALV. KOMPLEK DENGAN IDW (PER RAHANG)', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0996', 'PROSTIGMIN/TENSILON TEST', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0997', 'PSIKO TEST PER-ITEM : M M P I', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0998', 'PSIKOTERAPI - PER TERAPI', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1000', 'PSIKOTEST ADVANCE', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1002', 'PSIKOTEST BASIC', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1003', 'PSIKOTEST INTERMEDIET', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1004', 'PSIKOTEST MMPI-2', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1005', 'PSIKOTEST RUTIN', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1006', 'PSYCHIATRIC MENTAL STATUS DETERMINATION - 9411', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1007', 'PSYCOLOGIC MENTAL STATUS DETERMINATION, NOS - 9409', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1008', 'PTB CAST / SARMENTO CAST', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1009', 'PULPECTOMI ANTERIOR (PER GIGI)', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1010', 'PULPECTOMI ANTERIOR (PER GIGI) PASIEN HANDCAPPED\nCHILDREN', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1011', 'PULPECTOMI GIGI SULUNG ANTERIOR (PER GIGI)', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1012', 'PULPECTOMI GIGI SULUNG POSTERIOR (PER GIGI)', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1013', 'PULPECTOMI POSTERIOR (PER GIGI)', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1014', 'PULPECTOMI POSTERIOR (PER GIGI) PASIEN HANDCAPPED', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1015', 'PULSE IMMUNOSUPPRESIVE', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1016', 'PUNKSI ABSES HATI (DENGAN TUNTUNAN USG)', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1017', 'PUNKSI ASCITES', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1018', 'PUNKSI PERICARD', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1019', 'PUNKSI PLEURA', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1020', 'PUNKSI SENDI BESAR', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1021', 'PUNKSI SENDI KECIL', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1022', 'PUNKSI SEROMA', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1024', 'PUNKSI THORAX', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1025', 'PUNKSI VENA - PER HARI', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1026', 'RANSEL VERBAN', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1027', 'RAWAT ABSCES', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1028', 'RAWAT KOLOSTOMI', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1029', 'RAWAT LUKA (PASIEN UMUM)', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1030', 'RAWAT LUKA BAKAR / RENDAM BERAT', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1031', 'RAWAT LUKA BAKAR / RENDAM KECIL', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1032', 'RAWAT LUKA BAKAR / RENDAM SEDANG', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1033', 'RAWAT LUKA BAKAR RAW SURFACE <10 %', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1034', 'RAWAT LUKA BAKAR RAW SURFACE 10-15%', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1035', 'RAWAT LUKA BESAR', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1036', 'RAWAT LUKA BOLA MATA', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1037', 'RAWAT LUKA DENGAN MODERN DRESSING', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1038', 'RAWAT LUKA KANKER PAYUDARA', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1039', 'RAWAT LUKA KECIL', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1040', 'RAWAT LUKA KOMPLEKS', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1041', 'RAWAT LUKA SEDANG', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1042', 'RAWAT LUKA SOCKET', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1043', 'RAWAT LUKA SOCKET ANOPHTHALMIA', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1044', 'RAWAT STOMA', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1045', 'RAWAT TRACHEOSTOMI', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1046', 'RAWAT URETHROPLASTY', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1047', 'REBASING ACRILIC', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1048', 'REBASING FULL DENTURE', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1049', 'REBASING SOFT LINER', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1050', 'RECTAL MASSAGE (FOR LEVATOR SPASM)', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1051', 'RECTAL TOUCHER', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1052', 'RECTOSCOPY', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1053', 'REHAB MENTAL SELAMA PERAWATAN', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1054', 'REHABILITASI LOW VISION (NEAR READING + FAR READING\nTEST)', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1055', 'REHABILITASI PASIF', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1056', 'REHIDRASI', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1057', 'REINSERTEN BRACKET ORTODONTIK', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1058', 'REINSERTEN MOLAR TUBE ORTODONTIK', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1059', 'REINSERTEN WIRE ORTO', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1060', 'REKTOSKOPI', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1061', 'RELIEF OF PAIN', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1062', 'RELINING', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1063', 'REMOVAL OF IMPACTED FECES', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1064', 'REMOVAL OF INTRALUMINAL FOREIGN BODY FROM\nESOPHAGUS', 5498000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1065', 'REMOVAL SUB UNGUAL HEMATOMA', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1066', 'REPAIR GIPS STUWING', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1067', 'REPAIR PERINEUM', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1069', 'REPAIR POST CIRCUMCICI', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1070', 'REPAIR STUMB', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1071', 'REPARASI GELIGI TIRUAN', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1072', 'REPLACEMENT OF (NASO-)GASTRIC OR ESOPHAGOSTOMY\nTUBE', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1073', 'REPLACEMENT OF CENTAL VENOUS CATHETER', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1074', 'REPLACEMENT OF GASTROSTOMY TUBE', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1075', 'REPLACEMENT OF TUBE OR ENTEROSTOMY DEVICE OF LARGE', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1076', 'REPLACEMENT OF TUBE OR ENTEROSTOMY DEVICE OF SMALL', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1077', 'REPOSISI DISLOKASI DGN INJEKSI ANAESTESI INTRA KONPILAR', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1078', 'REPOSISI DISLOKASI MANDUBULA SECARA MANUAL', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1079', 'REPOSISI DISLOKASI TMJ HABITUAL', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1080', 'REPOSISI THORAK KATHETER', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1081', 'RESUSITASI', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1082', 'RESUSITASI CAIRAN / REHIDRASI CEPAT', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1083', 'RESUSITASI CAIRAN ANAK SELAMA PERAWATAN', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1084', 'RETREATMENT GIGI ANTERIOR (PER GIGI)', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1085', 'RETREATMENT GIGI POSTERIOR (PER GIGI)', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1086', 'RING HEMOROID', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1087', 'RING PEMOVAL', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1088', 'RONTGEN FOTO INTRA ORAL (PER GIGI)', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1089', 'ROUZERPLASTY', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1090', 'RUMATAN METADON', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1091', 'S T E', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1092', 'SADDLE', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1093', 'SALUT POSISI', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1094', 'SCALING PER RAHANG', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1095', 'SCRAPPING ECTOPARASIT', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1096', 'SCRATCH TEST', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1097', 'SCUREN GENITAL', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1098', 'SCUREN KEPALA', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1099', 'SEDIAAN BTA', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1100', 'SEDIAAN KOH', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1101', 'SEDIMEN + GRAM', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1102', 'SEP ( SENSORY EVOKED POTENSIAL )', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1103', 'SERIAL CAST', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1104', 'SETING MESIN CPAP', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1105', 'SHAKE TEST', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1106', 'SIKATAN BRONKUS', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1107', 'SIMPATEKTOMI ARTERI RENALIS', 7918000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1108', 'SITOGENETIKA SUMSUM TULANG/DARAH TEPI', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1109', 'SITOKIMIA SUMSUM TULANG', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1110', 'SITOLOGI SUMSUM TULANG', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1111', 'SITOSTATIKA - PER 1 KALI', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1112', 'SITOSTATIKA DRIP AMBULATOR', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1113', 'SIX MINUTE WALKING TEST', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1114', 'SKELETAL TRAKSI', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1115', 'SKIN PRICK TEST', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1116', 'SKIN TEST - PER 1 KALI', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1117', 'SKIREN KEPALA', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1118', 'SKLEROTERAPI HEMOROID INTERNAL', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1119', 'SKLEROTERAPI VARISES ESOFAGUS', 5498000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1120', 'SLEM / PNEUMO SUCTION - PER HARI', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1121', 'SLEM SUCTION', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1122', 'SLIM ZUIKKER SELAMA PERAWATAN', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1123', 'SLIMING & FIRMING', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1124', 'SLING / BANDAGE', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1125', 'SONOTROMBOLISIS', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1126', 'SPACE MAINTAINER CEKAT', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1127', 'SPACE MAINTAINER LEPASAN', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1128', 'SPACE MAINTAINER LEPASAN FUNCTIONAL GIGI BERIKUTNYA', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1129', 'SPACE MAINTAINER LEPASAN FUNCTIONAL GIGI PERTAMA', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1130', 'SPACE REGAINER CEKAT', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1131', 'SPACE REGAINER LEPASAN', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1132', 'SPALK HIDUNG', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1133', 'SPEECH TERAPI', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1134', 'SPILNTING FRAKTUR', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1135', 'SPIROMETRI', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1137', 'SPIROMETRI + DLCO', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1138', 'SPLINTING FIBER PER REGIO', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1139', 'SPLINTING HIDUNG', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1140', 'SPLINTING NASAL', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1141', 'SPOELING PIG TAIL', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1142', 'SPONDILOTOMI', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1143', 'SPONTAN BRACHT', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1144', 'SPOOLING CHATETER POST TUR/B/P', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1145', 'SPOOLING KATETER - PER EPISODE', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1146', 'SPOOLING KATHETER', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1147', 'SPT BRACHT', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1148', 'SPT GEMELLI', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1149', 'SPULING ANUS', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1150', 'SRAPPING BIOPSI', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1151', 'STREAK RETINOSCOPY', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1152', 'SUCTION PUMP - PER HARI', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1153', 'SUNTIK OBAT UMUM ( OBAT DARI RS)', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1154', 'SURFACE COOLING', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1155', 'TAMPON BELOG', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1156', 'TAMPON HIDUNG ANTERIOR', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1157', 'TAMPON TELINGA LUAR', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1158', 'TARSORAPPHY', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1159', 'TELEMENTRI', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1160', 'TENSI OCULI,VISUS SENTRALIS', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1161', 'TENSI OKULI', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1162', 'TENSILON TEST', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1163', 'TERAPI ADIKSI - PER TERAPI', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1164', 'TERAPI AKTIFITAS KELOMPOK - PER TERAPI', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1165', 'TERAPI BERMAIN (PLAY TERAPI)', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1166', 'TERAPI GESTALT - PER TERAPI', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1167', 'TERAPI KELUARGA - PER TERAPI', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1168', 'TERAPI KERJA - PER TERAPI', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1169', 'TERAPI MARITAL - PER TERAPI', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1170', 'TERAPI MEDIKA', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1171', 'TERAPI NUTRISI', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1172', 'TERAPI OKUPASIONAL - PER TERAPI', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1173', 'TERAPI PSICHOSEXUAL DYSFUNCTION - PER TERAPI', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1174', 'TERAPI SIMTOMATIK', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1175', 'TERAPI SUPPORTIVE - PER TERAPI', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1176', 'TERAPI SURFAKTAN SELAMA PERAWATAN', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1177', 'TERAPI VOKASIONAL - PER TERAPI', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1178', 'TES ALERGI - ANAK', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1179', 'TES ALERGI - DEWASA', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1180', 'TES ALERGI PARU', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1181', 'TES ALLERGI / SKIN TEST', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1182', 'TES AUDIOVISUAL RUANGAN', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1183', 'TES MENELAN', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1184', 'TES NEUROLOGI ANAK LENGKAP AWAL', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1185', 'TES NEUROLOGI ANAK LENGKAP LANJUTAN', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1186', 'TES NEUROREHABILITASI', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1187', 'TES PATEN SINEOURETRA', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1188', 'TES PATENSI VELOFARINGEAL', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1189', 'TES PERSPIRASI', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1190', 'TES PERTUMBUHAN AWAL', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1191', 'TES PERTUMBUHAN LANJUTAN', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1192', 'TES SUARA HIPERNASAL', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1193', 'TES SUPRESI DEKSAMETASONE', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1194', 'TES TOLERANSI GLUKOSA ORAL', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1195', 'TEST ALERGI ( PATCH TEST)', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1196', 'TEST ALERGI ( PRICK TEST)', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1197', 'TEST BENDER GESTALT', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1198', 'TEST BISIK', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1199', 'TEST CPM', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1201', 'TEST EPPS', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1202', 'TEST FLUOROSENT', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1203', 'TEST GRAFIS', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1204', 'TEST IST', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1206', 'TEST KEPRIBADIAN', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1207', 'TEST KESEIMBANGAN', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1209', 'TEST KREAPLIN', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1210', 'TEST PAULI', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1211', 'TEST PROVOKASI BRONCHIAL', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1212', 'TEST RORCHSACH', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1213', 'TEST SKRINING PERKEMBANGAN AWAL', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1214', 'TEST SKRINING PERKEMBANGAN LANJUTAN', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1215', 'TEST SKRINING PERKEMBANGAN REMAJA (GANGGUAN TIDUR)', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1216', 'TEST WAIS', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1217', 'TEST WARTEGG', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1218', 'TEST WISC', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1219', 'THORACENTESIS', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1220', 'THORACENTESIS GUIDING USG', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1221', 'THORACOCINTESIS', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1222', 'THROMBOPARESIS', 3818000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1223', 'THROMBOREDUCTION (THROMBOFARESIS)', 6598000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1224', 'TIMPANOMETRI', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1225', 'TINDAKAN KEGAWATAN PSIKIATRI', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1226', 'TINDAKAN PARABDOMINAL', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1227', 'TINDAKAN PERVAG.+TIND. PER.ABDOMINAL', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1228', 'TINDAKAN PERVAG.+TINDAKAN PERVAGINAL', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1229', 'TINDAKAN PTCA DENGAN STENT', 9502000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1230', 'TINDAKAN PTCA TANPA STENT', 9502000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1231', 'TINDIK', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1232', 'TONOMETRI APPLANASI', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1233', 'TOPIKAL ANTIBIOTIK PER REGIO', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1234', 'TRAKEOSTOMI', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1235', 'TRANCUTANEUS PACING', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1236', 'TRANFUSI', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1237', 'TRANSBRONKIAL BIOPSI', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1238', 'TRANSCRANIAL DOPLER (TCD) DIAGNOSTIK', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1239', 'TRANSCRANIAL DOPLER (TCD) EVALUASI EMBOLIK', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1240', 'TRANSESOFAGEAL ECHOCARDIOGRAFI', 2652000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1241', 'TRANSVENOUS PACING WIRE INSERTION', 6598000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1242', 'TREADMILL', 2210000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1243', 'TUBE THORACOSTOMY', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1244', 'TUMPATAN SEMENTARA', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1245', 'U - SLEB', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1246', 'URODINAMIK', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1247', 'UROFLOWMETRI', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1248', 'USCOM', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1251', 'USG MUSKULOSKELETAL', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1255', 'VAC TERAPI', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1256', 'VACUM EKSTRAKSI', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1257', 'VAGAL MANUVER', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1258', 'VAGINAL TOUCHER', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1259', 'VAKSINASI DEWASA', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1260', 'VELPEU VERBAN', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1261', 'VENA PUNCTURE (MDR TB)', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1262', 'VENA PUNKSI - PER HARI', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1263', 'VENA SEKSI', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1264', 'VENEER PORCELAIN', 2652000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1265', 'VENIPUNCTURE', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1266', 'VEP (VISUAL EVOKED POT\'AL )', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1267', 'VEXATIE JARI', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1268', 'VIRGIN ASSESSMENT', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1269', 'VISUM PERKOSAAN', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1270', 'VISUM, KLL', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1271', 'VISUS EVALUASI', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1272', 'WARMER TRANFUSION', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1273', 'WATER DEPRIVATION TEST', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1274', 'WEDGING ANAK', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1275', 'WEDGING DEWASA', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1276', 'WOOD LAMP', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1277', 'WOOD LAMP + KOH (DERMATOMI KOSIR)', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1278', 'WORTH FOUR DOT TEST', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1279', 'WOUND TOILET', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1280', 'MANAJEMEN CENTRAL VENOUS MONITORING - PER EPISODE', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1281', 'MANAJEMEN TOTAL PARENTERAL NUTRITION (TPN)', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1282', 'MANAJEMEN INTRAVASCULAR ARTERIAL PRESSURE\nMONITORING', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1283', 'MANAJEMEN SWANZ GANZ MONITORING PER EPISODE', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1284', 'MANAJEMEN TOTAL PARENTERAL NUTRITION ( TPN ) PER\nEPISODE', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1285', 'TATALAKSANA DAN MONITORING CONTINOUS\nINTRAARTERIAL BLOOD GAS (CIABG)', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1286', 'TATALAKSANA DAN MONITORING PULMUNARY ARTERIAL\nWEDGE PRESSURE (PAP) SWANZ GANZ', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1287', 'MANAJEMEN PASIEN KRITIS DENGAN POTENSI GAGAL ORGAN', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1288', 'MANAJEMEN PASIEN KRITIS DENGAN 1 ATAU 2 GAGAL ORGAN', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1289', 'MANAJEMEN INTRACRANIAL PRESSURE MONITORING - PER\nEPISODE', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1290', 'MANAJEMEN INOTROPES', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1291', 'TATALAKSANA DAN MONITORING PASIEN KRITIS DENGAN\nATAU LEBIH 3 GAGAL ORGAN', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1292', 'MANAJEMEN SEDATION / PARALYSIS / ANALGESIA - PER\nEPISODE', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1293', 'INTRA-AORTIC BALLOON PUMP ( IABP ) ? PER EPISODE', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1294', 'TATALAKSANA DAN MONITORING CONTINOUS REPLACEMENT\nRENAL THERAPY (CRRT)', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1295', 'TATALAKSANA INOTOPIC / CARDIAC OUTPUT PROBLEM', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1296', 'INJECTION OF STEROID', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1297', 'INJEKSI KASUS NYERI SEDANG (INTRARTIKULER ATAU\nEKSTRATIKULER)', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1298', 'REDUCTION OF INTUSSUSCEPTION OF ALIMENTARY TRACT', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1299', 'REPLACEMENT OF STENT (TUBE) IN BILIARY OR PANCREAT', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1300', 'CLOSED [PERCUTANEOUS] [NEEDLE] BIOPSY OF INTRA-ABD', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1301', 'REPLACEMENT OF CENTAL VENOUS CATHETER FOR HEMODIAL', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1302', 'SKIN FLAP SEDERHANA', 2210000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1303', 'CENTRAL VENOUS PRESSURE / DIALYSIS CATHETER INSERT', 2652000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1304', 'ENDOSCOPY OF LARGE INTESTINE THROUGH ARTIFICIAL ST', 3182000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1305', 'PULMONARY ARTERY CATHETER INSERTION / PICCO CATHET', 4582000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1306', 'PEMASANGAN KATHETER TEMPORER UNTUK DIALYSIS PADA V', 5498000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1307', 'REMOVAL OF INTRALUMINAL FOREIGN BODY FROM LARGE IN', 6598000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1308', 'REMOVAL OF INTRALUMINAL FOREIGN BODY FROM RECTUM\nA', 6598000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1309', 'ANGIOPLASTY DAN STENTING PADA RAS', 7918000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1310', '3 STEP TEST', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1311', 'ACUTE PERITONEAL DIALYSIS - 54.98', 7918000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1312', 'AFF BEBAT PENIS', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1313', 'AKSES INTRAOSSEUS -', 5498000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1314', 'ALAT RETENSI CLEAR PER RAHANG', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1315', 'ALAT RETENSI HAWLEY PER RAHANG', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1316', 'ANGKAT PERIODONTAL PACK', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1317', 'ANGKAT TAMPON HIDUNG ANTERIOR UNILATERAL /\nREMOVAL OF NASAL PACKING (2 SIDE) - 97.32', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1318', 'ANTROPOMETRI ( BB, PB, LK, LL) - 89.07', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1319', 'APUS HIDUNG / OTHER DIAGNOSTIC PROCEDURES ON NOSE\n(NASAL SWAB) - 21.29', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1320', 'APUS TELINGA / OTHER DIAGNOSTIC PROCEDURES ON\nEXTERNAL EAR (EAR SWAB) - 18.19', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1321', 'APUS TENGGOROK / OTHER DIAGNOSTIC PROCEDURES ON\nPHARYNX (FARING SWAB) - 29.19', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1322', 'ASPIRASI ABSES - 86.01', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1323', 'ASPIRASI SEROMA - 86.01', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1324', 'ASSESSMENT OF: OTHER PERIPHERAL VESSELS VESSELS OF\nARM(S) VESSELS OF LEG(S)', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1325', 'ASUHAN KEPERAWATAN MINIMAL CARE PER HARI', 100000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1326', 'ASUHAN KEPERAWATAN PARTIAL CARE PER HARI', 125000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1327', 'ASUHAN KEPERAWATAN TOTAL CARE PER HARI', 150000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1328', 'ASUHAN NUTRISI PEDIATRI DENGAN PENYAKIT TERTENTU -', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1329', 'BAKER?S CYST MANUAL (TANPA PANDUAN)', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1330', 'BIOPSI PLEURA - 34.24', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1331', 'BODY MEASUREMENT - 93.07', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1332', 'BOTULINUM TOXIN INJECTION ( 26 - 50 IU)', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1333', 'BOTULINUM TOXIN INJECTION ( 51 ? 100 IU)', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1334', 'BOTULINUM TOXIN INJECTION (< 10 IU)', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1335', 'BOTULINUM TOXIN INJECTION 10 ? 25 IU', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1336', 'BOTULINUM TOXIN INJECTION GUIDED EMG', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1337', 'BOTULINUM TOXIN INJECTION GUIDED USG', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1338', 'BRAIN AUDITORY STIMULATION', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1339', 'BRAIN COGNITIVE STIMULATION', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1340', 'BRAIN DYNAMIC MIND CONDITIONING (HYPNOTHERAPY)', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1341', 'BRAINWAVE MODULATION (AUDITORI, VISUAL)', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1342', 'BRONCHOSCOPY DAN TOILETING TRAKEOSTOMI PADA PASIEN\nKRITIS - 33.22;96.55', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1343', 'CANALITH REPOSITIONAL THERAPY (CRT) / REHABILITATION,\nNOT ELSEWHERE CLASSIFIED - 93.89', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1344', 'CARDIAC OUTPUT STUDY NON INVASIVE AND MANAGEMENT\n(TERMASUK USCOM, ICON, DSB) - 88.72', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1345', 'CARDIOPULMONARY RESUSCITATION (TERMASUK INTUBASI) DAN ADVANCED LIFE SUPPORT PASIEN KRITIS - 99.60;96.04', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1346', 'CARPAL TUNNEL SYNDROME MANUAL (TANPA PANDUAN)', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1347', 'CAUDAL BLOCK - 03.91', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1348', 'CAUDAL BLOCK CONTINUOUS - 03.90', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1349', 'CENTRAL VENOUS DIALYSIS CATHETER INSERTION TANPA\nUSG PADA PASIEN KRITIS - 38.95', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1350', 'CENTRAL VENOUS INSERTION WITH USG PADA PASIEN KRITIS\n38.90', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1351', 'CENTRAL VENOUS CATHETER INSERTION TANPA USG PADA\nPASIEN KRITIS - 38.93', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1352', 'CENTRAL VENOUS DYALISIS CATHETER INSERTION WITH USG\nPADA PASIEN KRITIS - 38.90', 2210000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1353', 'CENTRAL VENOUS PRESSURE MONITORING - 89.62', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1354', 'CETAK PADA PASIEN DENGAN FRAKTUR / HANDICAPPED PER\nRAHANG', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1355', 'CHORDOTOMY - 03.21', 7918000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1356', 'CIC/EDUKASI CIC', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1357', 'CIMT (CONSTRAINT MOVEMENT THERAPY)', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1358', 'CLOSED REDUCTION OF TEMPOROMANDIBULAR DISLOCATION\n- 76.93', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1359', 'CONSULTATION, DESCRIBED AS COMPREHENSIVE - 89.07', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1360', 'CONTINOUS RENAL REPLACEMENT THERAPY (CRRT) PASIEN\nKRITIS (PER PRESKRIPSI) - 39.95', 7918000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1361', 'CORE BIOPSI PARU - 33.26', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1362', 'CPR - 99.6', 2210000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1363', 'CRANIAL NERVE RADIOFREQUENCY (RF) - 04.2', 4582000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1364', 'CRANIAL NERVE REGENERATIVE PAIN THERAPY - 04.81;03.91', 3182000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1365', 'CRANIAL NERVE TEST BLOCK - 04.81;03.91', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1366', 'CRYO SURGERY BESAR - 86.3', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1367', 'CRYO SURGERY KECIL - 86.3', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1368', 'CRYO SURGERY SEDANG - 86.3', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1369', 'CUCI KANUL TRAKEOSTOMI PADA MUCOUS PLUG / OTHER IRRIGATION OF WOUND (TRACHEA) - 96.59', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1370', 'CUCI LUKA (OPERASI HIDUNG / TELINGA) / OTHER IRRIGATION OF WOUND (HEAD AND NECK) - 96.59', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1371', 'DE QUERVAIN SYNDROME MANUAL (TANPA PANDUAN)', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1372', 'DEBRIDEMANT LUKA PASCA PDT - 96.56;33.22', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1373', 'DEEP BRAIN STIMULATION PROGRAMMING', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1374', 'DEKANULASI PASCA PDT - 96.57;33.22', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1375', 'DESENSITIZATION - 99.12', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1376', 'DESENSITIZATION - 99.12', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1377', 'DESENSITIZATION ADS (BESREDKA ADS) - 99.12', 7918000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1378', 'DESENSITIZATION ATS (BESREDEKA ATS) - 99.12', 7918000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1379', 'DILATASI URETRA', 2210000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1380', 'DIRECT VIDEOLARYNGOSCOPE - 96.04', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1381', 'DOUBLE LUMEN TUBE INTUBATION PADA PASIEN KRITIS -\n96.05', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1382', 'DRY NEEDLING (PAKET 1)', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1383', 'DRY NEEDLING (PAKET 2)', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1384', 'DRY NEEDLING (PAKET 3)', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1385', 'EKSTRAKSI / IRIGASI SERUMEN BILATERAL / IRRIGATION OF\nEAR (BILATERAL) - 96.52', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1386', 'EKSTRAKSI / IRIGASI SERUMEN DENGAN PENYULIT BILATERAL\n/ IRRIGATION OF EAR (COMPLICATED BILATERAL) - 96.52', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1387', 'EKSTRAKSI / IRIGASI SERUMEN DENGAN PENYULIT UNILATERAL / IRRIGATION OF EAR (COMPLICATED\nUNILATERAL) - 96.52', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1388', 'EKSTRAKSI / IRIGASI SERUMEN UNILATERAL / IRRIGATION OF\nEAR (UNILATERAL) - 96.52', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1389', 'EKSTRAKSI BENDA ASING FARING DENGAN ENDOSKOPI / REMOVAL OF INTRALUMINAL FOREIGN BODY FROM PHARYNX\nWITHOUT INCISION (WITH ENDOSCOPY) - 98.13', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1390', 'EKSTRAKSI BENDA ASING HIDUNG /REMOVAL OF INTRALUMINAL FOREIGN BODY FROM NOSE WITHOUT\nINCISION - 98.12', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1391', 'EKSTRAKSI BENDA ASING MULUT /REMOVAL OF INTRALUMINAL FOREIGN BODY FROM MOUTH WITHOUT\nINCISION - 98.01', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1392', 'EKSTRAKSI BENDA ASING TELINGA / REMOVAL OF INTRALUMINAL FOREIGN BODY FROM EAR WITHOUT INCISION\n(COMPLICATED) - 98.11', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1393', 'EKSTRAKSI BENDA ASING TELINGA DENGAN PENYULIT / REMOVAL OF INTRALUMINAL FOREIGN BODY FROM EAR\nWITHOUT INCISION - 98.11', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1394', 'EKSTRAKSI BENDA ASING TONSIL-FARING / REMOVAL OF INTRALUMINAL FOREIGN BODY FROM PHARYNX WITHOUT\nINCISION - 98.13', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1395', 'EKSTRAKSI DENGAN FLAP', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1396', 'EKSTUBASI PIPA ENDOTRAKEAL PASIEN KRITIS - 96.04', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1397', 'ENDOKSOPI TELINGA / OTHER DIAGNOSTIC PROCEDURES ON\nEXTERNAL EAR (ENDOSCOPE) - 18.19', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1398', 'ENTERAL INFUSION OF CONCENTRATED NUTRITIONAL\nSUBSTANCES - 99.6', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1399', 'EPIDURAL BLOCK - 03.91', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1400', 'EPIDURAL BLOCK CONTINUOUS - 03.90', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1401', 'ESWL', 9502000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1402', 'EUS-FNA', 2210000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1403', 'EXCHANGE TRANSFUSION PADA PASIEN KRITIS - 99.01', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1404', 'FASCITIS PLANTARIS MANUAL (TANPA PANDUAN)', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1405', 'FEMORAL ENTRAPMENT MANUAL (TANPA PANDUAN)', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1406', 'FIBER POST', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1407', 'FISIOTERAPI DADA - 93.18', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1408', 'FIT AND PROPER TEST', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1409', 'FIXED LINGUAL RETAINER PER RAHANG', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1410', 'FLEXIBLE ENDOSCOPIC EVALUATION OF SWALLOWING / OTHER DIAGNOSTIC PROCEDURES ON PHARYNX (FEES) - 29.19', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1411', 'FLEXIBLE VIDEOLARYNGOBRONCOSCOPY - 96.05', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1412', 'FORCED DUCTION TEST, ACTIVE FORCE GENERATION &\nSACCADIC', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1413', 'FRENEKTOMI LABIAL', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1414', 'FRENEKTOMI LINGUL', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1415', 'FUNGSI LUHUR BEDSIDE', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1416', 'FUNGSI LUHUR DIAGNOSTIC', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1417', 'FUNGSI LUHUR GLOBAL (MMSE, MOCA, VCAT)', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1418', 'FUNGSI LUHUR GLOBAL + CERAD', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1419', 'FUNGSI LUHUR LEGAL', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1420', 'FUNGSI LUHUR OKUPASIONAL', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1421', 'FUNGSI LUHUR TERAPEUTIK', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1422', 'GANTI NGT / REPLACEMENT NASOGRASTIC TUBE - 97.01', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1423', 'GANTI VERBAN / REPLACEMENT OF WOUND PACKING OR\nDRAIN - 97.16', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1424', 'GLENO-HUMERAL C ARM (DI RUANG OPERASI)', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1425', 'GOLFER ELBOW MANUAL (TANPA PANDUAN)', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1426', 'GREAT OCCIPITAL NERVE BLOCKADE (GONB)', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1427', 'GUYON SYNDROME MANUAL (TANPA PANDUAN)', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1428', 'HESS SCREEN TEST', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1429', 'HIFEM', 6598000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1430', 'HIPODERMOKLISIS / TERAPI SUBKUTAN - 99.29', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1431', 'IMUNISASI PCV - 99.55', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1432', 'IMUNISASI POLIO (IPV, OPV) - 99.41', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1433', 'IMUNISASI ROTAVIRUS - 99.55', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1434', 'IMUNOTERAPI / IMMUNIZATION FOR ALLERGY - 99.12', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1435', 'INCISI EKSTRA ORAL', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1436', 'INCISI INTRA ORAL', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1437', 'INFUSION OF VASOPRESSOR AGENT - 00.17', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1438', 'INJECTION OF THERAPEUTIC SUBSTANCE INTO\nTEMPOROMANDIBULAR JOINT.', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1439', 'INJECTION SYMPATHETIC NERVE/ GANGLION', 7918000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1440', 'INJEKSI AGEN BIOLOGIS - 99.28', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1441', 'INJEKSI AGEN PRP/PRF - 86.02', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1442', 'INJEKSI ANTIDOTUM PADA KERACUNAN - 99.16', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1443', 'INJEKSI HISTOAKRIL', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1444', 'INJEKSI IMUNOTERAPI - 99.12', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1445', 'INJEKSI INTRALESI - 83.98', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1446', 'INJEKSI IVIG', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1447', 'INJEKSI OBAT ANTI HEMOFILIA (TRANSFUSION OF\nCOAGULATION FACTORS) - 99.06', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1448', 'INJEKSI OBAT KHUSUS GCSF (TRANSFUSSION OF\nGRANULOCYTES) - 99.09', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1449', 'INJEKSI/KOREKSI INFUS ELEKTROLIT - 99.18', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1450', 'INSERT GASTRIC TUBE (DECOMPRESION) - 96.07', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1451', 'INSERT RECTAL TUBE - 96.09', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1452', 'INSISI DENGAN DRAINASE - 86.04', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1453', 'INTER PROXIMAL REDUCTION', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1454', 'INTERFASCIA NERVE BLOCK - 04.81', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1455', 'INTERFASCIA NERVE BLOCK CONTINUOUS - 03.90', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1456', 'INTRAARTIKULER 1 MANUAL (TANPA PANDUAN)', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1457', 'INTRAARTIKULER 2 MANUAL (TANPA PANDUAN)', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1458', 'INTRACOMPARTEMENT NERVE BLOCK - 04.81', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1459', 'INTRACOMPARTEMENT NERVE BLOCK CONTINUOUS - 03.90', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1460', 'INTRACRANIAL OXYGEN MONITORING (NIRS) PER 24 JAM -\n01.16', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1461', 'INTRACRANIAL PRESSURE MONITOR PASIEN KRITIS (PER HARI)\n- 01.19', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1462', 'INTRADERMAL SKIN TEST - 99.1', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1463', 'INTRAOPERATIVE MONITORING DENGAN ALAT - 794.02', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1464', 'INTRAOSSEUS ACCESS PADA PASIEN KRITIS - 99.18', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1465', 'INTRAVENOUS TROMBOLITIK - 99.1', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1466', 'INTUBASI PIPA ENDOTRAKEAL PASIEN KRITIS - 96.04', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1467', 'IOM HNP LUMBAL SAKRAL', 5498000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1468', 'IOM HNP SERVIKAL', 5498000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1469', 'IOM PLEKSUS BRACHIALIS/N. FASIALIS', 5498000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1470', 'IOM SKOLIOSIS', 5498000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1471', 'IOM TUMOR FOSA ANTERIOR KORTIKAL MAPPING', 5498000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1472', 'IOM TUMOR FOSA POSTERIOR', 5498000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1473', 'IOM TUMOR MEDULA SPINALIS', 5498000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1474', 'IRIGASI / CUCI HIDUNG / LAVAGE OF NOSE - 96.53', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1475', 'IVES', 2652000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1476', 'KARDIOVERSI PADA PASIEN KRITIS - 99.62', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1477', 'KAUSTIK FARING / OTHER EXCISION OR DESTRUCTION OF LESION OR TISSUE OF PHARYNX (LARYNX CAUSTIC) - 29.39', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1478', 'KAUSTIK HIDUNG EPISTAXIS / CONTROL OF EPISTAXIS BY\nCAUTERIZATION (AND PACKING) - 21.03', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1479', 'KONSELING ( SECARA UMUM ) MEDIKOLEGAL - 65.40', 2652000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1480', 'KONSELING KEHAMILAN DENGAN IMS - 65.45', 2652000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1481', 'LANG TEST', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1482', 'LARYNGOSCOPY AND OTHER TRACHEOSCOPY - 31.42', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1483', 'LASER BEAM - 86.3', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1484', 'LASER EXCIMER BESAR - 99.82', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1485', 'LASER EXCIMER BESAR - 99.82', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1486', 'LASER EXCIMER KECIL - 99.82', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1487', 'LASER EXCIMER KECIL - 99.82', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1488', 'LASER EXCIMER SEDANG - 99.82', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1489', 'LASER EXCIMER SEDANG - 99.82', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1490', 'LASER FOTONA (ND:YAG - ER:YAG) - BESAR - 86.3', 2210000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1491', 'LASER FOTONA (ND:YAG - ER:YAG) - KECIL - 86.3', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1492', 'LASER FOTONA (ND:YAG - ER:YAG) - SEDANG - 86.3', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1493', 'LASER HAIR REMOVAL - BESAR - 86.3', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1494', 'LASER HAIR REMOVAL - KECIL - 86.3', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1495', 'LASER HAIR REMOVAL - SEDANG - 86.3', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1496', 'LASER IPL - BESAR - 86.3', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1497', 'LASER IPL - KECIL - 86.3', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1498', 'LASER IPL - SEDANG - 86.3', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1499', 'LASER ND-YAG LONG PULSE - BESAR - 86.3', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1500', 'LASER ND-YAG LONG PULSE - KECIL - 86.3', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1501', 'LASER ND-YAG LONG PULSE - SEDANG - 86.3', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1502', 'LASER ND-YAG Q-SWITCHED - BESAR - 86.3', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1503', 'LASER ND-YAG Q-SWITCHED - KECIL - 86.3', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1504', 'LASER ND-YAG Q-SWITCHED - SEDANG - 86.3', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1505', 'LEPAS CHEST TUBE - WSD - 97.41', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1506', 'LEVODOPA CHALLENGE TEST', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1507', 'LUMBAL PUNKSI DIAKDOSTIK', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1508', 'LUMBAL PUNKSI TERAPETIK', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1509', 'LUMBAR FACET JOINT INJECTION C ARM (DI RUANG OPERASI)', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1510', 'LUMBAR INTERLAMINAR INJECTION C ARM (DI RUANG\nOPERASI)', 3182000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1511', 'LUMBAR MEDIAN BRANCH INJECTION C ARM (DI RUANG\nOPERASI)', 3182000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1512', 'LUMBAR SYMPATHETIC INJECTION C ARM (DI RUANG\nOPERASI)', 7918000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1513', 'LUMBAR TRANSFORAMINAL INJECTION C ARM (DI RUANG\nOPERASI)', 7918000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1514', 'MAHKOTA PORCELAINE EMAX', 3818000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1515', 'MAHKOTA PORCELAINE ZIRCONIA', 4582000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1516', 'MANAJEMEN PERIOPERATIF PADA PASIEN GERIATRI', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1517', 'MANAJEMEN PREOPERATIF - 72.84', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1518', 'MANAJEMEN TOTAL PARENTERAL NUTRITION (TPN) - 99.15', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1519', 'MASSIVE TRANFUSION - 99.0', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1520', 'MEDIKAMEN DENGAN PERIODONTAL PACK', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1521', 'MIKROSKOP TELINGA LUAR BIILATERAL / OTHER DIAGNOSTIC PROCEDURES ON EXTERNAL EAR (BILATERAL) - 18.19', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1522', 'MIKROSKOP TELINGA LUAR UNILATERAL / OTHER DIAGNOSTIC PROCEDURES ON EXTERNAL EAR (UNILATERAL) - 18.19', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1523', 'MIKROSKOP TELINGA TENGAH BIILATERAL / OTHER\nDIAGNOSTIC PROCEDURES ON MIDDLE AND INNER EAR (BILATERAL) - 20.39', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1524', 'MIKROSKOP TELINGA TENGAH UNILATERAL / OTHER\nDIAGNOSTIC PROCEDURES ON MIDDLE AND INNER EAR (UNILATERAL) - 20.39', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1525', 'MIRROR TERAPI', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1526', 'MULLER MANUVER / OTHER DIAGNOSTIC PROCEDURES ON\nPHARYNX (MULLER MANUVER) - 29.19', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1527', 'MUSCULOSCELETAL (BURSA, TENDON, JARINGAN LUNAK,\nSENDI, OTOT, LIGAMENT) INJECTION LOCAL ANAESTHESIA + SUBSTANCE - 81.92;83.98;83.97', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1528', 'MUSCULOSKELETAL PERIFERAL NERVE INJECTION OF LOCAL\nANAESTHESIA + SUBSTANCE - 04.81;03.91', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1529', 'MUSCULOSKELETAL PERIFERAL NERVE PULSE\nRADIOFREQUENCY (PRF) - 04.2', 5498000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1530', 'MUSCULOSKELETAL PERIFERAL NERVE REGENERATIVE PAIN\nTHERAPY - 81.92;83.98', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1531', 'MUSCULOSKELETAL PERIFERAL NERVE TEST BLOCK -\n04.81;03.91', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1532', 'NASOENDOSCOPY / OTHER DIAGNOSTIC PROCEDURES ON\nNASAL SINUSES - 22.19', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1533', 'NASOENDOSKOPI FLEKSIBEL / OTHER DIAGNOSTIC\nPROCEDURES ON NASAL SINUSES (FLEXIBLE NASOENDOSCOPY) - 22.19', 287000, 'TINDAKAN NON OPERATIF'); +INSERT INTO `tarif_rs` (`ID_Tarif_RS`, `Tindakan_RS`, `Tarif_RS`, `Kategori_RS`) VALUES +('R.TNO.1534', 'NASOOROGRASTRIC CATHERTER INSERTION - 96.6', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1535', 'ND YAG LASER PADA PASIEN ANAK', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1536', 'NEEDLE THORACOCENTESIS - 96.72', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1537', 'NEURAXIAL ANALGESIA TERMASUK ILA, DLL - 03.91', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1538', 'NEUROAKSIAL CERVICAL NEUROLYSIS - 05.32', 3818000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1539', 'NEUROAKSIAL CERVICAL RADIOFREQUENCY - 04.2', 5498000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1540', 'NEUROAKSIAL CERVICAL REGENERATIVE PAIN THERAPY -\n81.92;83.98', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1541', 'NEUROAKSIAL CERVICAL TEST BLOCK - 04.81;03.91', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1542', 'NEUROAKSIAL LUMBAL NEUROLYSIS - 05.32', 3818000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1543', 'NEUROAKSIAL LUMBAL RADIOFREQUENCY - 04.2', 5498000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1544', 'NEUROAKSIAL LUMBAL REGENERATIVE PAIN THERAPY -\n81.92;83.98', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1545', 'NEUROAKSIAL LUMBAL TEST BLOCK - 04.81;03.91', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1546', 'NEUROAKSIAL SACROCOXIGEAL NEUROLYSIS - 05.32', 3818000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1547', 'NEUROAKSIAL SACROCOXIGEAL RADIOFREQUENCY - 04.2', 5498000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1548', 'NEUROAKSIAL SACROCOXIGEAL REGENERATIVE PAIN THERAPY\n- 81.92;83.98', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1549', 'NEUROAKSIAL SACROCOXIGEAL TEST BLOCK - 04.81;03.91', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1550', 'NEUROAKSIAL THORACAL NEUROLYSIS - 05.32', 3818000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1551', 'NEUROAKSIAL THORACAL RADIOFREQUENCY - 04.2', 5498000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1552', 'NEUROAKSIAL THORACAL REGENERATIVE PAIN THERAPY -\n81.92;83.98', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1553', 'NEUROAKSIAL THORACAL TEST BLOCK - 04.81;03.91', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1554', 'NEUROLOGY MUSIC THERAPY', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1555', 'NEUROMUSCULAR TAPPING (<2.5 M)', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1556', 'NEUROMUSCULAR TAPPING (> 2.5 M)', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1557', 'NEURORESTORASI (DIAGNOSTIK)', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1558', 'NEURORESTORASI ROBOTIK', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1559', 'NIGHT GUARD', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1560', 'NON INVASIVE MECH VENT (CPAP, NIPPV, NEOPUFF) 24 JAM -\n93.90', 4582000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1561', 'NON MECHAN RESUSCITATION (NEONATUS RESUSCITATION) -\n93.93', 4582000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1562', 'NON-INVASIVE MECHANICAL VENTILATION - 93.90', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1563', 'NOT - PEMERIKSAAN VERTIGO', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1564', 'NOT - TERAPI REHABILITATIVE VESTIBULAR', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1565', 'NOT ? TERAPI REPOSISI OTOLITH', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1566', 'OCCLUSAL ADJUSMENT RA RB', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1567', 'OPEN THORACOCENTESIS - 96.72', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1568', 'OTHER PHOTOTHERAPY - 99.83', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1569', 'PASANG ENDOSKOPI DENGAN ENDOSKOPI / INSERTION OF OTHER (NASO-)GASTRIC TUBE (WITH ENDOSCOPY) - 96.07', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1570', 'PASANG GUEDEL OPA/NPA PADA PASIEN KRITIS - 96.02', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1571', 'PASANG TAMPON ANTERIOR HIDUNG BILATERAL / CONTROL\nOF EPISTAXIS BY ANTERIOR NASAL PACKING (BILATERAL) - 21.01', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1572', 'PASANG TAMPON ANTERIOR HIDUNG UNILATERAL / CONTROL\nOF EPISTAXIS BY ANTERIOR NASAL PACKING (UNILATERAL) - 21.01', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1573', 'PASANG TAMPON POSTERIOR HIDUNG / CONTROL OF EPISTAXIS BY POSTERIOR (AND ANTERIOR) PACKING - 21.02', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1574', 'PASANG TAMPON TELINGA BILATERAL / PACKING OF\nEXTERNAL AUDITORY CANAL (BILATERAL) - 96.11', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1575', 'PASANG TAMPON TELINGA UNILATERAL / PACKING OF\nEXTERNAL AUDITORY CANAL (UNILATERAL) - 96.11', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1576', 'PATCH TEST TELINGA BILATERAL / OTHER DIAGNOSTIC\nPROCEDURES ON EXTERNAL EAR (PATCH TEST BILATERAL) - 18.19', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1577', 'PATCH TEST TELINGA UNILATERAL / OTHER DIAGNOSTIC\nPROCEDURES ON EXTERNAL EAR (PATCH TEST UNILATERAL) - 18.19', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1578', 'PEMAKAIAN OKSIGEN VIA ETT PER HARI', 200000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1579', 'PEMAKAIAN OKSIGEN VIA NASAL CANULE PER HARI', 25000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1580', 'PEMAKAIAN OKSIGEN VIA NRBM PER HARI', 50000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1581', 'PEMAKAIAN OKSIGEN VIA SIMPLE MASK PER HARI', 50000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1582', 'PEMASANGAN BLANKET PADA PASIEN KRITIS - 93.35', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1583', 'PEMASANGAN CATHETER DOUBLE LUMEN (CDL) UNTUK\nDIALISI, PLASMAFERESIS DENGAN USG -', 5498000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1584', 'PEMASANGAN CATHETER DOUBLE LUMEN (CDL) UNTUK\nDIALYSIS, PLASMAFERESIS -', 5498000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1585', 'PEMASANGAN CVC - 38.97', 2210000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1586', 'PEMASANGAN EXTRA CORPOREAL MEMBRAN OXYGEN\n(ECMO)/FILTER PADA PASIEN KRITIS - 39.65', 9502000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1587', 'PEMASANGAN KATETER URIN PADA PASIEN KRITIS - 59.8', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1588', 'PEMASANGAN MONITORING INVASIF KONTINYU (PICCO)/24\nJAM PADA PASIEN KRITIS - 89.68', 4582000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1589', 'PEMASANGAN NGT PADA PASIEN KRITIS - 96.07', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1590', 'PEMASANGAN PICC - 38.93', 5498000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1591', 'PEMASANGAN PICC DENGAN GUIDE USG -', 5498000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1592', 'PEMASANGAN PULMONARI ARTERI CATHETER (SWAN-GANS)\nPADA PASIEN KRITIS - 89.63', 3818000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1593', 'PEMBERIAN IMUNOTERAPI (NON STEROID)', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1594', 'PEMBERIAN NUTRISI ENTERAL/SONDE VIA NGT PADA PASIEN\nKRITIS - 96.60', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1595', 'PEMBERIAN STEROID PULSE DOSES', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1596', 'PEMBERIAN TERAPI BISFOSFONAT DAN OBAT RESORPTIF\nLAINNYA - 93.37', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1597', 'PEMBERIAN TERAPI DMARD BIOLOGIK (SUBKUTAN) - 00.18', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1598', 'PEMBERIAN TERAPI INTRAVENA DMARD BIOLOGIK - 00.18', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1599', 'PEMERIKSAAN BASAH - 91.44', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1600', 'PEMERIKSAAN DAN PENCEGAHAN KOMPLIKASI IMOBILITAS', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1601', 'PEMERIKSAAN DAN TALAKSANA PALIATIF GERIATRI', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1602', 'PEMERIKSAAN DUKUNGAN BAGI CAREGIVER', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1603', 'PEMERIKSAAN DUKUNGAN SOSIAL', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1604', 'PEMERIKSAAN ELDER MISTREATMENT', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1605', 'PEMERIKSAAN FRAILITY (STATUS KERENTANAN)', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1606', 'PEMERIKSAAN GERIATRIC KOMPREHENSIF', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1607', 'PEMERIKSAAN HAPUSAN KULIT - 70.01', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1608', 'PEMERIKSAAN IADL-ADL', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1609', 'PEMERIKSAAN INKONTINENSIA URIN', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1610', 'PEMERIKSAAN INKONTINESIA ALVI', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1611', 'PEMERIKSAAN KLINIS NEUROLOGI UMUM', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1612', 'PEMERIKSAAN KUALITAS HIDUP', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1613', 'PEMERIKSAAN MONOFILAMEN - 92.26', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1614', 'PEMERIKSAAN NYERI', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1615', 'PEMERIKSAAN PACHYMETRY', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1616', 'PEMERIKSAAN PERAWATAN PATENSI PASCA PDT -\n96.55;33.22', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1617', 'PEMERIKSAAN POSISI BOLA MATA (COVER, UNCOVER,\nKRIMSKY, HIRSCHBERG, ACT, PCT)', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1618', 'PEMERIKSAAN SARKOPENIA', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1619', 'PEMERIKSAAN SINDROMA DELIRIUM AKUT', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1620', 'PENANGANAN KEDARURATAN DELIRIUM / ACITE CONFUSION', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1621', 'PENDAMPINGAN AKHIR HAYAT', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1622', 'PENDAMPINGAN/MONITORING KARIOVASKULAR DAN/ATAU PEMBACAAN HASIL PEMERIKSAAN NUKLIR JANTUNG - 88.72', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1623', 'PENDAMPINGAN/MONITORING KARIOVASKULAR DAN/ATAU PEMBACAAN HASIL PEMERIKSAAN RADIOLOGI ( CT SCAN ANGIOGRAFI KORONER DAN CT SCAN JANTUNG) - 88.72', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1624', 'PENDAMPINGAN/MONITORING KARIOVASKULAR DAN/ATAU\nPEMBACAAN HASIL PEMERIKSAAN RADIOLOGI ( MRI JANTUNG) - 88.72', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1625', 'PENGANGKATAN KATETER SALURAN EMPEDU - 51.95', 2210000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1626', 'PENGANGKATAN TUBE DRAINAGE INTRAABDOMEN - 54.91', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1627', 'PENGELUPASAN KIMIAWI BHA (SA) - 86.24', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1628', 'PENGELUPASAN KIMIAWI BIBIR - 86.24', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1629', 'PENGELUPASAN KIMIAWI DADA - 86.24', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1630', 'PENGELUPASAN KIMIAWI KELOPAK MATA ATAS - 86.24', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1631', 'PENGELUPASAN KIMIAWI KELOPAK MATA BAWAH - 86.24', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1632', 'PENGELUPASAN KIMIAWI KETIAK - 86.24', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1633', 'PENGELUPASAN KIMIAWI LEHER - 86.24', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1634', 'PENGELUPASAN KIMIAWI PUNGGUNG - 86.24', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1635', 'PENGELUPASAN KIMIAWI PUNGGUNG KAKI - 86.24', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1636', 'PENGELUPASAN KIMIAWI PUNGGUNG TANGAN - 86.24', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1637', 'PENGELUPASAN KIMIAWI SELANGKANGAN - 86.24', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1638', 'PENGELUPASAN KIMIAWI TUNGKAI ATAS - 86.24', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1639', 'PENGELUPASAN KIMIAWI TUNGKAI BAWAH - 86.24', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1640', 'PENGGANTIAN BRACKET / BUCCAL TUBE BARU', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1641', 'PENGGANTIAN KATETER NEFROSTOMY', 2210000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1642', 'PENGGANTIAN KATETER SALURAN EMPEDU - 51.95', 3818000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1643', 'PENGGANTIAN KATETER UCS (URETEROKUTANEOSTOMI)', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1644', 'PENGGANTIAN MOLAR BAND BARU', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1645', 'PENILAIAN PSIKOMETRIK UNTUK AXIETAS, DEPRESI, GANGGUAN PSIKOSOMATIK, KUALITAS HIDUP (HADS, BDI,\nDASS, SCL 90, HRS DLL) - 94.09', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1646', 'PENILAIAN STATUS ANTROPOMETRI ANAK - 93.07', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1647', 'PENINGGIAN GIGIT', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1648', 'PENUTUPANSTROMA TRAKEOSTOMI / CLOSURE OF EXTERNAL\nFISTULA OF TRACHEA - 31.72', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1649', 'PERAWATAN DENTIN HIPERSENSITIF PER REGIO', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1650', 'PERCUTANEUS DENERVATION OF FACET - 03.96', 3182000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1651', 'PERCUTANEUS DILATATION TRACHEOSTOMY (PDT) PADA\nPASIEN KRITIS - 31.1', 3182000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1652', 'PERIBULBAR BLOCK - 04.81', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1653', 'PERIFERAL NERVE BLOCK - 04.81', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1654', 'PERIFERAL NERVE BLOCK CONTINUOUS - 04.81', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1655', 'PERIFERAL NERVE HYDRODESECTION - 03.6', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1656', 'PERIFERAL NERVE NEUROLYSIS - 04.2', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1657', 'PERIOPERATIVE AUTOLOGOUS TRANSFUSION OF WHOLE BLOOD OR BLOOD COMPONENTS; INTRAOPERATIVE BLOOD COLLECTION; POSTOPERATIVE BLOOD COLLECTION; SALVAGE -\n99.00', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1658', 'PERIPHERAL MAGNETIC STIMULATION', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1659', 'PERONEAL ENTRAPMENT MANUAL (TANPA PANDUAN)', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1660', 'PERSIAPAN TERAPI KANKER USIA LANJUT', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1661', 'PHOTOTHERAPY - BLUE LIGHT - 99.82', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1662', 'PHOTOTHERAPY - RED LIGHT - 99.82', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1663', 'PICC INSERTION TANPA/WITH USG PADA PASIEN KRITIS -\n39.90', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1664', 'PIRIFORMIS SYNDROME C ARM (DI RUANG OPERASI)', 2652000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1665', 'PLDD (PERCUTANEOUS LASER DISC DECOMPRESSION) - 80.59', 7918000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1666', 'POCUS DIAGNOSTIK JANTUNG PADA PASIEN KRITIS - 88.72', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1667', 'POCUS GINJAL PADA PASIEN KRITIS - 88.75', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1668', 'POCUS ABDOMEN PADA PASIEN KRITIS - 88.76', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1669', 'POCUS THORAKS DAN PARU PADA PASIEN KRITIS - 88.73', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1670', 'POPLITEAL ENTRAPMENT MANUAL (TANPA PANDUAN)', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1671', 'PRONE MECHANICAL VENTILATION - 96.70', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1672', 'PROSEDUR INTERVENSI NYERI NEUROMUSCULOSCELETAL\nDENGAN USG - 81.92;83.98;83.97', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1673', 'PROSEDUR INTERVENSI NYERI NEUROMUSCULOSCELETAL\nTANPA USG - 81.92;83.98;83.97', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1674', 'PROSEDUR RELEASE PERIFERAL NERVE INTRAPMENT -\n81.92;83.98', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1675', 'PROSEDUR TRIGGER POINT PAIN INJECTION -\n81.92;83.98;83.99', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1676', 'PRPP INJECTION C ARM (DI RUANG OPERASI)', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1677', 'PRPP INJECTION MANUAL (TANPA PANDUAN)', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1678', 'PSIKOTERAPI INDIVIDU PADA ANAK-ANAK MASALAH\nKESEHATAN MENTAL - 94.3', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1679', 'PUNGSI SENDI - 81.91', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1680', 'RADIOFREKUENSI LUMBOSACRAL C ARM (DI RUANG OPERASI)', 7918000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1681', 'RADIOFREKWENSI SERVIKAL C ARM (DI RUANG OPERASI)', 7918000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1682', 'RECRUITMENT MANUEVER - 96.72', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1683', 'REIMPLANTASI GIGI DENGAN BRACKET ANTERIOR', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1684', 'REINSERSI BRACKET LEPAS', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1685', 'REPETITIVE TRANSCRANIAL MAGNETIC STIMULATION\n(TERAPEUTIK)', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1686', 'REPETITIVE TRANSCRANIAL MAGNETIC STIMULATION\n(TERAPEUTIK) DENGAN ROBOTIK', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1687', 'RESEMENTASI BAND ORTO PER RAHANG', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1688', 'RESUSITASI PASIEN KRITIS DENGAN 1 ATAU 2 GAGAL ORGAN\n(SOFA SCORE 6 - 15 (PER HARI) - 93.93', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1689', 'RESUSITASI PASIEN KRITIS DENGAN 3 ATAU LEBIH GAGAL\nORGAN (SOFA SCORE > 15 (PER HARI) - 93.93', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1690', 'RESUSITASI PASIEN KRITIS DENGAN POTENSI GAGAL ORGAN\n(SOFA SCORE < 6 (PER HARI) - 93.93', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1691', 'RIGID VIDEOLARYNGOSCOPY - 96.04', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1692', 'SACRAL EPIDURAL INJECTION C ARM (DI RUANG OPERASI)', 7918000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1693', 'SACRAL TRANSFORAMINAL INJECTION C ARM (DI RUANG\nOPERASI)', 7918000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1694', 'SACROILIAC JOINT DYSFUNCTION C ARM (DI RUANG OPERASI)', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1695', 'SAKARIN TES', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1696', 'SCALLING PER RAHANG', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1697', 'SCALP BLOCK DENGAN USG - 04.81', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1698', 'SCALP BLOCK TANPA USG - 04.81', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1699', 'SCREENING RETINOPATHY OF PREMATURITY', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1700', 'SEDASI DILUAR KAMAR OPERASI - 89.50', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1701', 'SEDATION, PARALYSIS, ANALGESIA PASIEN PERAWATAN KRITIS\n- 99.21', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1702', 'SEDATION/ PARALYSIS/ ANALGESIA PADA PASIEN KRITIS (PER\nHARI) - 99.26;04.81', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1703', 'SEDIAAN BASAH - 91.44', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1704', 'SEDIAAN GIEMSA - 91.65', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1705', 'SEDIAAN GRAM - 91.61', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1706', 'SEDIAAN SCRAPPING ECTOPARASIT - 91.64', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1707', 'SERVIKAL FACET JOINT INJECTION C ARM (DI RUANG OPERASI)', 7918000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1708', 'SERVIKAL INTERLAMINAR INJECTION C ARM (DI RUANG\nOPERASI)', 7918000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1709', 'SERVIKAL MEDIAN BRANCH INJECTION C ARM (DI RUANG\nOPERASI)', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1710', 'SERVIKAL SYMPATHETIC INJECTION C ARM (DI RUANG\nOPERASI)', 7918000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1711', 'SINGLE PULSE TRANSCRANIAL MAGNETIC STIMULATION\n(DIAGNOSTIK)', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1712', 'SKIN AUGMENTATION - FILLER HA - BESAR - 86.93', 5498000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1713', 'SKIN AUGMENTATION - FILLER HA - KECIL - 86.93', 3818000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1714', 'SKIN AUGMENTATION - FILLER HA - SEDANG - 86.93', 4582000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1715', 'SKIN AUGMENTATION - FILLER PRF - BESAR - 86.93', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1716', 'SKIN AUGMENTATION - FILLER PRF - KECIL - 86.93', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1717', 'SKIN AUGMENTATION - FILLER PRF - SEDANG - 86.93', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1718', 'SKIN AUGMENTATION - FILLER PRP - BESAR - 86.93', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1719', 'SKIN AUGMENTATION - FILLER PRP - KECIL - 86.93', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1720', 'SKIN AUGMENTATION - FILLER PRP - SEDANG - 86.93', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1721', 'SKIN PRICK TEST / OTHER DIAGNOSTIC PROCEDURES ON SKIN\nAND SUBCUTANEOUS TISSUE - 86.19', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1722', 'SKIN PROVOCATION TEST - 86.19', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1723', 'SMELL TEST (TES AMBANG ALKOHOL) / OTHER DIAGNOSTIC\nPROCEDURES ON NOSE (SMELL TEST) - 21.29', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1724', 'SNIFFIN STICK TEST', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1725', 'SPINAL BLOOD PATCH - 03.95', 3182000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1726', 'SPINAL CORD STIMULATION - 03.93', 7918000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1727', 'SPLINTING FIBER PER GIGI', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1728', 'STEREOSKOPIS DENGAN BUTTERFLY', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1729', 'STEREOSKOPIS DENGAN TNO', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1730', 'SUB ARACHNOID BLOCK - 03.91', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1731', 'SUB ARACHNOID BLOCK CONTINUOUS - 03.90', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1732', 'SUBTENON BLOCK - 04.81', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1733', 'SYMPATHETIC NERVE NEUROLYSIS - 05.31;05.32', 5498000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1734', 'TAPPING/ PHLEBOTOMI (TERAPEUTIK DAN DIAGNOSTIK) -\n38.99', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1735', 'TARSAL TUNNEL SYNDROME MANUAL (TANPA PANDUAN)', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1736', 'TBS (INTERMITTENT THETA BURST STIMULATION)', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1737', 'TENDINITIS BICIPITALIS MANUAL (TANPA PANDUAN)', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1738', 'TENDINITIS PATELLA MANUAL (TANPA PANDUAN)', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1739', 'TENNIS ELBOW MANUAL (TANPA PANDUAN)', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1740', 'TERAPI PLASMAPHERESIS PASIEN KRITIS (PER HARI) - 99.7', 7918000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1741', 'TERAPI ANTIANGIOGENIK BEVACIZUMAB IV', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1742', 'TERAPI BISPHOSPHONATE IV', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1743', 'TERAPI FISIK NEURORESTORASI (NEUROFASILITASI)', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1744', 'TERAPI HYPOTHERMIA - 99.21', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1745', 'TERAPI OKUPASI NEURORESTORASI (NEUROFASILITASI)', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1746', 'TERAPI SURFAKTAN - 93.94', 6598000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1747', 'TERAPI WICARA NEURORESTORASI (NEUROFASILITASI)', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1748', 'TERES MAYOR MANUAL (TANPA PANDUAN)', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1749', 'TES ALERGI (SKINPRCK TES) - 86.12', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1750', 'TES BISIK / CLINICAL TEST OF HEARING - 95.42', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1751', 'TES BUCKNER', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1752', 'TES DIX HALLPIKE DENGAN FRENZEL / OTHER AUDITORY AND\nVESTIBULAR FUNCTION TESTS (DIX HALLPIKE) - 95.46', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1753', 'TES FUNGSI N VII / OTHER NONOPERATIVE NEUROLOGIC\nFUNCTION TESTS (N. VII TEST) - 89.15', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1754', 'TES GARPUTALA / CLINICAL TEST OF HEARING (TUNING FORK) -\n95.42', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1755', 'TES KALORI / VESTIBULER KLINIS / CLINICAL VESTIBULAR\nFUNCTION TESTS (CALORY TEST) - 95.44', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1756', 'TES KESEIMBANGAN SEDERHANA / CLINICAL VESTIBULAR\nFUNCTION TEST - 95.44', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1757', 'TES TOPOGNOSTIK SARAF FACIALIS / CLINICAL VESTIBULAR\nFUNCTION TESTS - 95.44', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1758', 'TEST SKREENING PERKEMBANGAN ANAK AWAL - 94.1', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1759', 'TEST SKREENING PERKEMBANGAN ANAK LANJUTAN - 94.19', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1760', 'TIBIAL ENTRAPMENT MANUAL (TANPA PANDUAN)', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1761', 'TINDAKAN KOREKSI ALBUMIN INTRAVENA PADA PASIEN\nKRITIS - 99.15', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1762', 'TINDAKAN KOREKSI ASAM BASA PADA PASIEN KRITIS -\n99.18;99.15', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1763', 'TINDAKAN KOREKSI ELEKTROLIT PADA PASIEN KRITIS - 99.18', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1764', 'TINDAKAN SUCTION TRAKEA/ORAL PADA PASIEN KRITIS -\n96.56', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1765', 'TINDAKAN THERAPEUTIC PLASMA EXCHANGE ( TPE ) PADA\nPASIEN KRITIS - 99.71', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1766', 'TOPIKAL ANTIBIOTIK PER REGIO', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1767', 'TOPIKAL HYALURONIC ACID GEL', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1768', 'TOTAL PARENTERAL NUTRITION (TPN) PASIEN KRITIS (PER\nHARI) - 99.15', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1769', 'TRAKEOSKOPI FLEKSIBEL / TRACHEOSCOPY THROUGH\nARTIFICIAL STOMA - 31.41', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1770', 'TRANCRANIAL MAGNETIC STIMULATION CENTRAL', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1771', 'TRANS NASAL ESOFAGOSKOPI FLEKSIBEL / OTHER DIAGNOSTIC\nPROCEDURES ON PHARYNX (TRANS NASAL FLEXIBLE ENDOSCOPY) - 29.19', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1772', 'TRANSCRANIAL DIRECT CURRENT STIMULATION (TDCS)', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1773', 'TRANSCRANIAL PULSE STIMULATION', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1774', 'TRANSFUSION OF OTHER SERUM/PLASMA - 99.07', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1775', 'TRANSFUSION OF PACKED CELLS - 99.04', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1776', 'TRANSFUSION OF PLATELETS - 99.05', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1777', 'TRANSFUSION OF PREVIOUSLY COLLECTED AUTOLOGOUS\nBLOOD - 99.02', 7918000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1778', 'TRIGGER FINGER MANUAL (TANPA PANDUAN)', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1779', 'TRIGGER POINT MANUAL (TANPA PANDUAN)', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1780', 'UMBILICAL VEIN CATHETER - 38.92', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1781', 'VESTIBULER REHABILITATION THERAPY - 93.89', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1782', 'VRT (VIRTUAL REALITY THERAPY)', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1783', 'WOUND TOILET/RAWAT LUKA', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1784', 'LASER MATA', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1785', 'HEMODIALISA', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1786', 'AKUPUNKTUR RINGAN', 30000, 'TINDAKAN KOMPLEMENTER'), +('R.TNO.1787', 'AKUPUNKTUR SEDANG', 40000, 'TINDAKAN KOMPLEMENTER'), +('R.TNO.1788', 'AKUPUNKTUR BERAT', 60000, 'TINDAKAN KOMPLEMENTER'), +('R.TNO.1789', 'LASERPUNKTUR RINGAN', 40000, 'TINDAKAN KOMPLEMENTER'), +('R.TNO.1790', 'LASERPUNKTUR SEDANG', 60000, 'TINDAKAN KOMPLEMENTER'), +('R.TNO.1791', 'LASERPUNKTUR BERAT', 80000, 'TINDAKAN KOMPLEMENTER'), +('R.TNO.1792', 'TENS', 60000, 'TINDAKAN KOMPLEMENTER'), +('R.TNO.1793', 'TDP', 60000, 'TINDAKAN KOMPLEMENTER'), +('R.TNO.1794', 'AKUPRESSURE RINGAN', 40000, 'TINDAKAN KOMPLEMENTER'), +('R.TNO.1795', 'AKUPRESSURE SEDANG', 50000, 'TINDAKAN KOMPLEMENTER'), +('R.TNO.1796', 'AKUPRESSURE BERAT', 60000, 'TINDAKAN KOMPLEMENTER'), +('R.TNO.1797', 'MEDICAL CHECK UP BEBAS KETUNAAN', 200000, 'MEDICAL CHECK UP'), +('R.TNO.1798', 'MEDICAL CHECK UP BEBAS KETUNAAN DENGAN AUDIOMETRI', 301000, 'MEDICAL CHECK UP'), +('R.TNO.1799', 'MEDICAL CHECK UP BEBAS KETUNAAN DAN BEBAS TB PARU', 200000, 'MEDICAL CHECK UP'), +('R.TNO.1800', 'MEDICAL CHECK UP PELAJAR', 200000, 'MEDICAL CHECK UP'), +('R.TNO.1801', 'MEDICAL CHECK UP CALON MAHASISWA BARU', 200000, 'MEDICAL CHECK UP'), +('R.TNO.1802', 'MEDICAL CHECK UP CALON KARYAWAN', 326000, 'MEDICAL CHECK UP'), +('R.TNO.1803', 'MEDICAL CHECK UP SEKOLAH KEDINASAN', 326000, 'MEDICAL CHECK UP'), +('R.TNO.1804', 'MEDICAL CHECK UP CALON JEMAAH HAJI KHUSUS LAKI - LAKI DAN JEMAAH HAJI KHUSUS PEREMPUAN USIA > 60 TAHUN', 624000, 'MEDICAL CHECK UP'), +('R.TNO.1805', 'MEDICAL CHECK UP CALON JEMAAH HAJI KHUSUS PEREMPUAN\nUSIA < 60 TAHUN', 624000, 'MEDICAL CHECK UP'), +('R.TNO.1806', 'MEDICAL CHECK UP KELAYAKAN TUGAS PNS / KARYAWAN NON\nPNS', 326000, 'MEDICAL CHECK UP'), +('R.TNO.1807', 'MEDICAL CHECK UP PERSYARATAN STUDI KE LUAR NEGERI', 427000, 'MEDICAL CHECK UP'), +('R.TNO.1808', 'MEDICAL CHECK UP PERSYARATAN SELEKSI JABATAN', 2778000, 'MEDICAL CHECK UP'), +('R.TNO.1809', 'MEDICAL CHECK UP PERSYARATAN BEKERJA KE LUAR NEGERI', 568000, 'MEDICAL CHECK UP'), +('R.TNO.1810', 'MEDICAL CHECK UP SELEKSI PPDS', 326000, 'MEDICAL CHECK UP'), +('R.TNO.1811', 'MEDICAL CHECK UP SELEKSI PPDS PRODI JANTUNG DAN PEMBULUH DARAH', 427000, 'MEDICAL CHECK UP'), +('R.TNO.1812', 'MEDICAL CHECK UP UNTUK USIA > 18 TAHUN', 126000, 'MEDICAL CHECK UP'), +('R.TNO.1813', 'MEDICAL CHECK UP PENGANGKATAN PNS', 587000, 'MEDICAL CHECK UP'), +('R.TNO.1814', 'MEDICAL CHECK UP JASMANI DAN ROHANI UMUM', 221000, 'MEDICAL CHECK UP'), +('R.TNO.1815', 'MEDICAL CHECK UP JASMANI DAN ROHANI KHUSUS', 442000, 'MEDICAL CHECK UP'), +('R.TNO.1816', 'MEDICAL CHECK UP JASMANI DAN ROHANI LENGKAP', 574000, 'MEDICAL CHECK UP'), +('R.TNO.1817', 'MEDICAL CHECK UP JASMANI DAN ROHANI UNTUK ADOPSI DAN HAK ASUH ANAK', 663000, 'MEDICAL CHECK UP'), +('R.TNO.1818', 'MEDICAL CHECK UP JASMANI DAN ROHANI UMUM DAN BEBAS NAPZA', 221000, 'MEDICAL CHECK UP'), +('R.TNO.1819', 'MEDICAL CHECK UP JASMANI DAN ROHANI UNTUK CALON PPDS ATAU STAF BARU BIDANG MEDIS', 858000, 'MEDICAL CHECK UP'), +('R.TNO.1820', 'MEDICAL CHECK UP JASMANI DAN ROHANI KHUSUS DAN BEBAS NAPZA', 442000, 'MEDICAL CHECK UP'), +('R.TNO.1821', 'MEDICAL CHECK UP JASMANI DAN ROHANI LENGKAP DAN BEBAS NAPZA', 574000, 'MEDICAL CHECK UP'), +('R.TNO.1822', 'MEDICAL CHECK UP JASMANI DAN ROHANI UNTUK CALON PPDS ATAU STAF BARU BIDANG MEDIS DAN BEBAS NAPZA', 858000, 'MEDICAL CHECK UP'), +('R.TNO.1823', 'MEDICAL CHECK UP JASMANI & ROHANI UNTUK SELEKSI JABATAN', 1851000, 'MEDICAL CHECK UP'), +('R.TNO.1824', 'MEDICAL CHECK UP JASMANI DAN ROHANI UNTUK KASUS HUKUM / LEGAL', 1630000, 'MEDICAL CHECK UP'), +('R.TNO.1825', 'MEDICAL CHECK UP JASMANI DAN ROHANI UNTUK SELEKSI JABATAN DAN BEBAS NAPZA', 1851000, 'MEDICAL CHECK UP'), +('R.TO.0001', 'ABDOMEN, LAPAROTOMY, TRAUMA REOPERATION', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0002', 'ABDOMEN, LAPAROTOMY, TRAUMA, DAMAGE CONTROL,\nHAEMOSTASIS, PACKING', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0003', 'ABDOMEN, MAJOR/MULTIPLE ORGAN REPAIR (TRAUMA)', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0004', 'ABDOMEN, PERITONEAL CAVITY, ASCITES/FLUID/ABSCESS COLLECTION, IMAGING GUIDED PERCUTANEOUS ASPIRATION/DIAGNOSTIC\nTAP/CATHETER', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0005', 'ABDOMEN, RETROPERITONEUM, ABSCESS, DRAINAGE\nWITH/WITHOUT LAPAROTOMY', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0006', 'ABDOMEN, RETROPERITONEUM, TUMOR, REMOVAL', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0007', 'ABDOMEN/PELVIS, CATHETER BLOCKAGE, IMAGING GUIDED CATHETER CHANGE/CATHETER\nADJUSTMENT/CHECK TUBE', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.0008', 'ABDOMEN/PELVIS, VARIOUS LESIONS, IMAGING GUIDED\nPERCUTANEOUS BIOPSY', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.0009', 'ABDOMEN/PELVIS, VARIOUS LESIONS, INSERTION OF\nPERITONEAL DIALYSIS CATHETER', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.0010', 'ABDOMEN/PELVIS, VARIOUS LESIONS, REMOVAL OF\nPERITONEAL DIALYSIS CATHETER', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.0011', 'ABDOMINAL CAVITY, ADHESIONS (EXTENSIVE), LYSIS AS PRIMARY PROCEDURE, EXTENSIVE WITH OR WITHOUT BOWEL RESECTION (MIS/OPEN) WHERE TIME TAKEN IS\nMORE THAN 2HOURS', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0012', 'ABDOMINAL CAVITY, ADHESIONS (LIMITED), LYSIS AS PRIMARY PROCEDURE (MIS/OPEN) WHERE TIME TAKEN IS LESS THAN\n2HOURS', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0013', 'ABDOMINAL CAVITY, LYMPHOMA,FOR GRADING LYMPHOMA WITH SPLENECTOMY/LIVER/LYMPH NODE BIOPSY (MIS/OPEN)', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0014', 'ABDOMINAL CAVITY, MULTIPLE RUPTURES, MAJOR\nREPAIR/REMOVAL', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0015', 'ABDOMINAL CAVITY, NEONATAL ALIMENTARY OBSTRUCTION,\nLAPAROTOMY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0016', 'ABDOMINAL CAVITY, RECURRENT ABDOMINAL TUMOR, RESECTION WITH COMPLETE ABDOMINOPELVIC PERITONECTOMY AND HYPERTHERMIC INTRAOPERATIVE\nCHEMOTHERAPY', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.0017', 'ABDOMINAL CAVITY, RUPTURED VISCUS, SIMPLE REPAIR', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0018', 'ABDOMINAL CAVITY, SUBPHRENIC ABSCESS, DRAINAGE', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0019', 'ABDOMINAL CAVITY, VARIOUS LESIONS, EXPLORATORY\nLAPAROTOMY (MIS/OPEN)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0020', 'ABDOMINAL CAVITY, VARIOUS LESIONS, INCLUDING\nCOLOSTOMY/ENTEROSTOMY/GASTROSTOMY (MIS/OPEN)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0021', 'ABDOMINAL CAVITY, VARIOUS LESIONS, NOT CLASSIFIED\nELSEWHERE (MIS/OPEN)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0022', 'ABDOMINAL WALL, BURST ABDOMEN, REPAIR', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0023', 'ABDOMINAL WALL, EPIGASTRIC/UMBILICAL HERNIA, REPAIR\n(MIS/OPEN)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0024', 'ABDOMINAL WALL, EXOMPHALOS/GASTROSCHISIS, OPERATING\nBY PLASTIC FLAP', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.0025', 'ABDOMINAL WALL, EXOMPHALOS/GASTROSCHISIS, REPAIR', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0026', 'ABDOMINAL WALL, INGUINAL HERNIA (INFANTS & CHILDREN),\nHERNIOTOMY (BILATERAL)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0027', 'ABDOMINAL WALL, INGUINAL HERNIA (INFANTS & CHILDREN),\nHERNIOTOMY (UNILATERAL)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0028', 'ABDOMINAL WALL, INGUINAL HERNIA (NEONATES),\nHERNIOTOMY (BILATERAL)', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.0029', 'ABDOMINAL WALL, INGUINAL HERNIA (NEONATES),\nHERNIOTOMY (UNILATERAL)', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0030', 'ABDOMINAL WALL, INGUINAL/FEMORAL HERNIA, BILATERAL\nHERNIORRHAPHY (MIS/OPEN)', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.0031', 'ABDOMINAL WALL, INGUINAL/FEMORAL HERNIA, UNILATERAL\nHERNIORRHAPHY (MIS/OPEN)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0032', 'ABDOMINAL WALL, STRANGULATED/OBSTRUCTED HERNIA,\nREPAIR WITH BOWEL RESECTION', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.0033', 'ABDOMINAL WALL, STRANGULATED/OBSTRUCTED HERNIA,\nREPAIR WITHOUT BOWEL RESECTION', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0034', 'ABDOMINAL WALL, VENTRAL/INCISIONAL/RECURRENT HERNIA,\nREPAIR (MIS/OPEN)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0035', 'ABDOMINAL/RETROPERITONEAL TUMOUR, RECURRENT RESECTION WITH OR WITHOUT VASCULAR INVOLVEMENT AND\nVASCULAR REPAIR', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0036', 'ADENOIDS, VARIOUS LESIONS, REMOVAL', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0037', 'ADRENAL, VARIOUS LESIONS, ADRENAL VENOUS SAMPLING', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0038', 'ADRENALS, VARIOUS LESIONS, BIOPSY/EXCISION (OPEN OR LAP)', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0039', 'ANAL INCONTINENCE, ARTIFICIAL BOWEL SPHINCTER INSERTION', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0040', 'ANAL INCONTINENCE, COMPLEX PROCEDURES INCLUDING\nMUSCLE TRANSPOSITION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0041', 'ANAL SPHINCTER BULKING INJECTION WITH OR WITHOUT\nRECTAL ULTRASOUND GUIDANCE', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0042', 'ANGIOEMBOLISATION FOR TRAUMA', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0043', 'ANKLE, ANKLE FRACTURE, BIMALLEOLAR, ORIF', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0044', 'ANKLE, ANKLE FRACTURE, UNIMALLEOLAR, ORIF', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0045', 'ANKLE, COMMINUTED PLAFOND FRACTURE ORIF', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0046', 'ANKLE, DISLOCATION, OPEN REDUCTION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0047', 'ANKLE, LIGAMENTOUS INSTABILITY, RECONSTRUCTION OF\nLIGAMENTS (EG. BOSTROM, CHRISMAN-SNOOK)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0048', 'ANKLE, THERAPEUTIC ARTHROSCOPY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0049', 'ANKLE, VARIOUS LESIONS, ARTHRODESIS (SURGICAL FUSION)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0050', 'ANKLE, VARIOUS LESIONS, OPEN EXCISION/INTERPOSITION\nARTHROPLASTY, WITH OR WITHOUT RESURFACING', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.0051', 'ANKLE, VARIOUS LESIONS, PRIMARY TOTAL JOINT\nREPLACEMENT WITH AUGMENTATION, REQUIRING EXTRA IMPLANTS OR BONE GRAFTS, OPEN/MIS/NAVIGATED', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0052', 'ANKLE, VARIOUS LESIONS, PRIMARY TOTAL JOINT\nREPLACEMENT, OPEN/MIS/NAVIGATED', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.0053', 'ANKLE, VARIOUS LESIONS, REPAIR OF LIGAMENTS', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0054', 'ANKLE, VARIOUS LESIONS, REVISION TOTAL JOINT\nREPLACEMENT, OPEN/MIS/NAVIGATED', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.0055', 'ANKLE, VARIOUS LESIONS, SYNOVECTOMIES', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0056', 'ANTERIOR CHAMBER PARACENTESIS, IRRIGATION OR\nREFORMATION', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0057', 'ANTERIOR CHAMBER, VARIOUS LESIONS, VITREOUS REMOVAL', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0058', 'ANUS, ANO-RECTAL MALFORMATION\n(CLOACA/ABDOMINOPERINEAL)', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.0059', 'ANUS, ANO-RECTAL MALFORMATION, ANOPLASTY', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0060', 'ANUS, ANO-RECTAL MALFORMATION, ANORECTOPLASTY (MIS)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0061', 'ANUS, ANO-RECTAL MALFORMATION, LIMITED POSTERIOR\nSAGITTAL ANORECTOPLASTY (PSARP)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0062', 'ANUS, ANO-RECTAL MALFORMATION, POSTERIOR SAGITTAL\nANORECTOPLASTY (PSARP)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0063', 'ANUS, ANO-RECTAL PROLAPSE, CIRCUMANAL SUTURE', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.0064', 'ANUS, ANO-RECTAL PROLAPSE, INJECTION', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.0065', 'ANUS, ANO-RECTAL PROLAPSE, RADICAL OPERATION WITH\nRESECTION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0066', 'ANUS, ANO-RECTAL PROLAPSE, RADICAL OPERATION WITHOUT\nRESECTION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0067', 'ANUS, FISSURE, EXCISION/LATERAL SPHINCTEROTOMY', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.0068', 'ANUS, FISTULA-IN-ANO (HIGH), COMPLEX AND RECURRENT\nFISTULECTOMY', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0069', 'ANUS, FISTULA-IN-ANO, EXCISION/ FISTULECTOMY', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.0070', 'ANUS, FISTULA-IN-ANO, INSERTION OF SETON', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.0071', 'ANUS, HEMORRHOIDS, CRYOSURGERY', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.0072', 'ANUS, HEMORRHOIDS, HEMORRHOIDECTOMY WITH OR\nWITHOUT SIGMOIDOSCOPY', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0073', 'ANUS, HEMORRHOIDS, REMOVAL OF EXTERNAL ANAL TAGS', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0074', 'ANUS, HEMORRHOIDS, TRANSANAL HAEMORRHOIDAL\nDEARTERIALIZATION (THD)', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0075', 'ANUS, HEMORRHOIDS,STAPLED HAEMORRHOIDECTOMY', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0076', 'ANUS, INCONTINENCE, OPERATION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0077', 'ANUS, ISCHIORECTAL ABSCESS, SAUCERISATION', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0078', 'ANUS, PERINEAL ABSCESS, SAUCERISATION/DRAINAGE', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0079', 'ANUS, SPHINCTEROPLASTY FOR ANAL INCONTINENCE', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0080', 'ANUS, STRICTURE, DILATATION', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0081', 'ANUS, STRICTURE, REPAIR', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0082', 'ANUS, TUMOR, ABDOMINO-PERINEAL RESECTION (OPEN OR\nLAP)', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0083', 'ANUS, VARIOUS LESIONS, BIOPSY OF MUSCLE/MUCOSA', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0084', 'AORTA, ABDOMINAL AORTIC ANEURYSM, ENDOVASCULAR\nANEURYSM REPAIR (EVAR)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0085', 'AORTA, ABDOMINAL AORTIC ANEURYSM, EXCISION AND\nINSERTION OF GRAFT', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0086', 'AORTA, ANEURYSM, JUXTARENAL TYPE', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0087', 'AORTA, COARCTATION, ENDOVASCULAR STENT PLACEMENT', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.0088', 'AORTA, DESCENDING AORTIC ANEURYSM, EXCISION AND\nINSERTION OF GRAFT', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.0089', 'AORTA, RUPTURED ABDOMINAL AORTIC ANEURYSM, EXCISION\nAND INSERTION OF GRAFT', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0090', 'AORTA, RUPTURED AORTIC ANEURYSM (THORACIC OR\nABDOMINAL), ENDO-VASCULAR AORTIC REPAIR (EVAR)', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.0091', 'AORTA, THORACIC AORTIC ANEURYSM, THORACIC\nENDOVASCULAR ANEURYSM REPAIR (TEVAR)', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.0092', 'AORTA, THORACO-ABDOMINAL ANEURYSM, EXCISION AND\nINSERTION OF GRAFT', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.0093', 'AORTA, THORACOABDOMINAL AORTIC ANEURYSM,\nENDOVASCULAR ANEURYSM REPAIR (EVAR)', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.0094', 'AORTA, TOTAL ARCH REPLACEMENT', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.0095', 'AORTA, VARIOUS LESIONS, INSERTION/REMOVAL OF INTRA\nAORTIC BALLOON', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0096', 'AORTIC DISSECTION, ENDOVASCULAR FENESTRATION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0097', 'AORTIC DISSECTION, ENDOVASCULAR STENT GRAFT REPAIR', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0098', 'APPENDIX, ABSCESS, DRAINAGE ONLY', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0099', 'APPENDIX, TUMOR, RIGHT HEMICOLECTOMY WITH/WITHOUT\nADHESIOLYSIS (OPEN OR LAP)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0100', 'APPENDIX, VARIOUS LESIONS, APPENDICECTOMY WITHOUT\nDRAINAGE, MIS/OPEN', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0101', 'APPENDIX, VARIOUS LESIONS/ABSCESS, APPENDICECTOMY\nWITH DRAINAGE (MIS/OPEN)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0102', 'ARRHYTHMIA SURGERY MAZE (INCLUDES THE MINI- MAZE\nPROCEDURE WITH RADIOFREQUENCY CLAM)', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0103', 'ARTERIOVENOUS FISTULA GRAFT, THROMBECTOMY', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0104', 'ARTERIOVENOUS FISTULA, ANGIOGRAM', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.0105', 'ARTERIOVENOUS FISTULA, ANGIOPLASTY WITH/WITHOUT\nSTENTING', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0106', 'ARTERIOVENOUS FISTULA, LIGATION OF SIDE BRANCH', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.0107', 'ARTERIOVENOUS FISTULA, SYNTHETIC GRAFT', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0108', 'ARTERY (DISTAL EXTREMITY/DIGIT), VARIOUS LESIONS,\nMICROVASCULAR REPAIR', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0109', 'ARTERY (EXTREMITY), THROMBOSIS, ENDARTERECTOMY', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.0110', 'ARTERY (FEMORAL/ILIAC), THROMBOSIS, ENDARTERECTOMY', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.0111', 'ARTERY (LARGE), VARIOUS LESIONS, LIGATION', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0112', 'ARTERY (MAJOR), ANEURYSM, EXCISION AND INSERTION OF\nGRAFT', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0113', 'ARTERY (MAJOR), TRAUMA, REPAIR', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0114', 'ARTERY (NECK AND EXTREMITIES), EMBOLISM, EMBOLECTOMY', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0115', 'ARTERY (OTHERS), THROMBOSIS, ENDARTERECTOMY', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.0116', 'ARTERY (TEMPORAL), VARIOUS LESIONS, BIOPSY', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.0117', 'ARTERY (TRUNK), EMBOLISM, EMBOLECTOMY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0118', 'ARTERY, ARTERIO-VENOUS FISTULA (LARGE), EXCISION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0119', 'ARTERY, ARTERIO-VENOUS FISTULA (SMALL), EXCISION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0120', 'ARTERY, ARTERIO-VENOUS FISTULA, DISSECTION AND REPAIR\nWITH RESTORATION OF CONTINUITY', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0121', 'ARTERY, ARTERIO-VENOUS FISTULA, LIGATION', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.0122', 'ARTERY, BYPASS, ABOVE/BELOW-KNEE WITH VEIN', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0123', 'ARTERY, BYPASS, DISTAL LEG/PEDAL WITH VEIN', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0124', 'ARTERY, BYPASS, VISCERAL, MULTIPLE', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.0125', 'ARTERY, BYPASS, VISCERAL, SINGLE', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0126', 'ARTERY, CAROTICO-CAVERNOUS FISTULA, EMBOLISATION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0127', 'ARTERY, DEFECT, ARTERIAL PATCH GRAFT', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0128', 'ARTERY, EXTRACRANIAL, VARIOUS LESIONS, BALLOON TEST\nOCCLUSION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0129', 'ARTERY, EXTRACRANIAL, VARIOUS LESIONS, DIAGNOSTIC\nEXTRACRANIAL ANGIOGRAPHY', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0130', 'ARTERY, EXTRACRANIAL, VARIOUS LESIONS, INFUSION', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0131', 'ARTERY, EXTRACRANIAL, VARIOUS LESIONS, PERCUTANEOUS\nTRANSCATHETER EMBOLIZATION', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0132', 'ARTERY, EXTRACRANIAL, VARIOUS LESIONS, PERCUTANEOUS\nTRANSLUMINAL ANGIOPLASTY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0133', 'ARTERY, EXTRACRANIAL, VARIOUS LESIONS, STENTING', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0134', 'ARTERY, INTRACRANIAL, ANEURYSM/ARTERIO-VENOUS\nMALFORMATION, EMBOLISATION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0135', 'ARTERY, INTRACRANIAL, THROMBOSIS, PERCUTANEOUS\nCATHETER DIRECTED THROMBOLYSIS/THROMBECTOMY', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0136', 'ARTERY, INTRACRANIAL, TUMOUR, PERCUTANEOUS\nTRANSCATHETER EMBOLIZATION', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0137', 'ARTERY, INTRACRANIAL, VARIOUS LESIONS, DIAGNOSTIC\nCEREBRAL ANGIOGRAPHY', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0138', 'ARTERY, INTRACRANIAL, VARIOUS LESIONS, PERCUTANEOUS\nTRANSLUMINAL ANGIOPLASTY', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.0139', 'ARTERY, INTRACRANIAL, VARIOUS LESIONS, STENTING', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0140', 'ARTERY, PULMONARY, ENDOVASCULAR STENT PLACEMENT', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0141', 'ARTERY, SMALL, INJURY, REPAIR (SINGLE)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0142', 'ARTERY, SPINAL, ANEURYSM/ARTERIO-VENOUS\nMALFORMATION, EMBOLISATION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0143', 'ARTERY, SPINAL, TUMOUR, PERCUTANEOUS TRANSCATHETER\nEMBOLIZATION', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0144', 'ARTERY, SPINAL, VARIOUS LESIONS, DIAGNOSTIC ANGIOGRAPHY', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0145', 'ARTERY, STENOSIS/OCCLUSION (E.G. PULMONARY, COARCTATION, SUBINTIMAL, BELOW KNEE),\nPERCUTANEOUS ANGIOPLASTY (PTA), DIFFICULT', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0146', 'ARTERY, STENOSIS/OCCLUSION, PERCUTANEOUS\nATHERECTOMY (MECHANICAL OR LASER)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0147', 'ARTERY, STENOSIS/OCCLUSION, PERCUTANEOUS\nTRANSLUMINAL ANGIOPLASTY (PTA), SIMPLE', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0148', 'ARTERY, THROMBOSIS, PERCUTANEOUS CATHETER DIRECTED THROMBOLYSIS, WITH OR WITHOUT ANGIOPLASTY/STENTING', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0149', 'ARTERY, TRAUMA/RESECTION, ARTERIAL ANASTOMOSIS', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0150', 'ARTERY, TRAUMA/RESECTION, MICRO-VASCULAR GRAFT', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0151', 'ARTERY, TUMOUR, TRANS-ARTERIAL CHEMO- EMBOLIZATION\n(TACE)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0152', 'ARTERY, TUMOUR, TRANS-ARTERIAL RADIO NUCLIDE INFUSION', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0153', 'ARTERY, VARIOUS LESIONS, ARTERIO-VENUOUS FISTULA\nCREATION', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0154', 'ARTERY, VARIOUS LESIONS, ARTERIO-VENUOUS FISTULA,\nCORRECTION AT ORIGINAL SITE', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0155', 'ARTERY, VARIOUS LESIONS, AXILLARY- FEMORAL/SUBCLAVIAN-\nFEMORAL BY-PASS', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0156', 'ARTERY, VARIOUS LESIONS, BY-PASS/GRAFT', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0157', 'ARTERY, VARIOUS LESIONS, DIAGNOSTIC ANGIOGRAM OF\nMULTIPLE VESSELS', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0158', 'ARTERY, VARIOUS LESIONS, DIAGNOSTIC ANGIOGRAM USING MICROCATHETER, WITH OR WITHOUT INTRAVASCULAR\nIMAGING', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0159', 'ARTERY, VARIOUS LESIONS, ENDOVASCULAR STENT GRAFT /\nCOVERED STENT PLACEMENT', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0160', 'ARTERY, VARIOUS LESIONS, ENDOVASCULAR STENT PLACEMENT', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0161', 'ARTERY, VARIOUS LESIONS, FLUSH AORTOGRAM OR SINGLE\nVESSEL DIAGNOSTIC ANGIOGRAM', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0162', 'ARTERY, VARIOUS LESIONS, INTRA-ARTERIAL INFUSION', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0163', 'ARTERY, VARIOUS LESIONS, LIGATION (INCLUDE REPAIR OF\nARTIFICIAL ARTERIO-VENOUS FISTULA)', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.0164', 'ARTERY, VARIOUS LESIONS, PERCUTANEOUS TRANSCATHETER\nEMBOLISATION OF 1 TO 2 VESSELS', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0165', 'ARTERY, VARIOUS LESIONS, PERCUTANEOUS TRANSCATHETER EMBOLISATION OF MORE THAN 2\nVESSELS', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0166', 'ARTERY, VARIOUS LESIONS, TRANSLUMINAL ARTERIOPLASTY', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0167', 'ARTERY,LARGE, INJURY, REPAIR WITH GRAFTING', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0168', 'ARTERY,SMALL, INJURY, REPAIR (MULTIPLE)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0169', 'ARTERY-CAROTID, ANEURYSM-REPAIR/GRAFTING', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.0170', 'ARTERY-CAROTID, ARTERIO-OCCLUSIVE LESIONS, EXTERNAL\nCAROTID INTERNAL CAROTID BYPASS, COMPLEX', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.0171', 'ARTERY-CAROTID, ARTERIO-OCCLUSIVE LESIONS, EXTERNAL CAROTID INTERNAL CAROTID BYPASS,\nSIMPLE', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0172', 'ARTERY-CAROTID, ATHEROSCLEROSIS, CAROTID\nENDARTERECTOMY', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0173', 'ARTERY-CAROTID, CAROTID BODY TUMOR, EXCISION', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.0174', 'ARTERY-CAROTID, THROMBOSIS, ENDARTERECTOMY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0175', 'ARTERY-PROFUNDA FEMORIS, STENOSIS, PROFUNDOPLASTY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0176', 'ARTERY-PSEUDOANEURYSM, EXCISION AND LIGATION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0177', 'ARTERY-PSEUDOANEURYSM, EXCISION AND PATCH REPAIR', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0178', 'ARTERY-PSEUDOANEURYSM, THROMBIN INJECTION', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.0179', 'ARTERY-PULMONARY, PULMONARY EMBOLISM, PULMONARY EMBOLECTOMY USING CARDIOPULMONARY BYPASS', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.0180', 'ARTERY-VISCERAL, STENOSIS, ANGIOPLASTY OF VISCERAL\nARTERY', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0181', 'ARTERY-VISCERAL, STENOSIS, STENTING', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0182', 'ASPIRATION, DEEP MUSCULOSKELETAL TISSUES, UNDER\nRADIOLOGICAL GUIDANCE', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.0183', 'AUTOFLUORESCENCE/ NARROW BAND IMAGING (NBI)\nBRONCHOSCOPY', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0184', 'BILE DUCT, BILIARY ATRESIA, PORTO-ENTEROSTOMY', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0185', 'BILE DUCT, ENDOSCOPIC RETROGRADE\nCHOLANGIOPANCREATOGRAPHY (ERCP)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0186', 'BILE DUCT, VARIOUS LESIONS, CHOLEDOCHO-\nDUODENOSTOMY/CHOLEDOCHO-GASTROSTOMY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0187', 'BILE DUCT, VARIOUS LESIONS, CHOLEDOCHO- JEJUNOSTOMY', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.0188', 'BILE DUCT, VARIOUS LESIONS, CHOLEDOCHOTOMY\n(EXPLORATION COMMON BILE DUCT ONLY)', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.0189', 'BILE DUCT, VARIOUS LESIONS, HEPATICOJEJUNOSTOMY INVOLVING ANASTOMOSIS TO HEPATIC DUCTS BUT WITHOUT\nLIVER RESECTION', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.0190', 'BILE DUCT, VARIOUS LESIONS, OPERATIVE CHOLEDOCHOSCOPY', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0191', 'BILE DUCT, VARIOUS LESIONS, REVISION HIGH BILIARY\nSTRICTURE/ RADICAL RESECTION', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.0192', 'BILE DUCT, VARIOUS LESIONS, TRANSDUODENAL\nSPHINCTEROPLASTY/ SPHINCTEROTOMY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0193', 'BILE DUCT, VARIOUS LESIONS. EXCISION OF LOWER 1/3 OF COMMON BILE DUCT BUT WITH PRESERVATION OF\nPANCREATIC HEAD', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.0194', 'BILE DUCT, VARIOUS LESIONS. HEPATICOJEJUNOSTOMY UP TO BUT NOT INCLUDING THE CONFLUENCE OF THE\nHEPATIC DUCTS', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0195', 'BILE DUCT/GALL BLADDER, ENDOSCOPIC DILATION OF BILIARY\nSTRICTURE', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0196', 'BILE DUCT/GALL BLADDER, ENDOSCOPIC RETROGRADE CHOLANGIOPANCREATOGRAPHY (ERCP) WITH INSERTION OF\nNASOBILIARY DRAIN', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0197', 'BILE DUCT/GALL BLADDER, ENDOSCOPY, ENDOSCOPIC\nSPHINCTEROTOMY +/- EXTRACTION OF STONE', 10268000, 'TINDAKAN OPERATIF'); +INSERT INTO `tarif_rs` (`ID_Tarif_RS`, `Tindakan_RS`, `Tarif_RS`, `Kategori_RS`) VALUES +('R.TO.0198', 'BILE DUCTS, CATHETER BLOCKAGE, IMAGING GUIDED CATHETER CHANGE / CATHETER ADJUSTMENT / CHECK\nCHOLANGIOGRAM', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.0199', 'BILE DUCTS, STONES, PERCUTANEOUS TRANSHEPATIC BILIARY\nSTONES REMOVAL', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0200', 'BILE DUCTS, STRICTURE, PERCUTANEOUS TRANSHEPATIC\nBALLOON DILATATION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0201', 'BILE DUCTS, STRICTURE, PERCUTANEOUS TRANSHEPATIC\nBILIARY STENT PLACEMENT', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0202', 'BILE DUCTS, VARIOUS LESIONS, CHECK CHOLANGIOGRAM', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.0203', 'BILE DUCTS, VARIOUS LESIONS, PERCUTANEOUS TRANSHEPATIC\nCHOLANGIOGRAPHY (PTC)', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0204', 'BILE DUCTS, VARIOUS LESIONS, PERCUTANEOUS TRANSHEPATIC CHOLANGIOGRAPHY AND DRAINAGE\nCATHETER INSERTION (PTC AND DRAINAGE)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0205', 'BIOPSY: CORNEAL, LIMBAL, ORAL, CONJUNCTIVA', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0206', 'BLADDER, BLADDER NECK CONTRACTURE,\n(ACQUIRED/CONGENITAL), WEDGE EXCISION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0207', 'BLADDER, CALCULUS, VESICOLITHOTOMY/LITHOLAPAXY/ULTRASONIC LITHOTRIPSY', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0208', 'BLADDER, CUTANEOUS FISTULA, CLOSURE', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0209', 'BLADDER, CYSTOSCOPIC INTRADETRUSOR INJECTION OF\nBOTULINUM', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0210', 'BLADDER, CYSTOSCOPY, EXTERNAL SPHINCTEROTOMY FOR\nNEUROGENIC BLADDER NECK OBSTRUCTION', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0211', 'BLADDER, CYSTOSCOPY, REMOVAL OF FOREIGN\nBODY/URETERIC STENT', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.0212', 'BLADDER, CYSTOSCOPY, WITH CONTROLLED HYDRODILATATION\nOF THE BLADDER', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0213', 'BLADDER, CYSTOSCOPY, WITH ENDOSCOPIC\nREMOVAL/MANIPULATION OF URETERIC CALCULUS', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0214', 'BLADDER, CYSTOSCOPY, WITH ENDOSCOPIC\nRESECTION/INCISION OF BLADDER NECK', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0215', 'BLADDER, CYSTOSCOPY, WITH OR WITHOUT BIOPSY', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0216', 'BLADDER, CYSTOSCOPY, WITH URETERIC MEATOTOMY/WITH\nRESECTION OF URETEROCELE', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0217', 'BLADDER, DIVERTICULUM, MIS EXCISION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0218', 'BLADDER, DIVERTICULUM, OPEN EXCISION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0219', 'BLADDER, ECTOPIA VESICAE/ECTOPIA CLOACAE WITH CONGENITAL INCONTINENCE, SPHINCTER\nRECONSTRUCTION', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.0220', 'BLADDER, INCONTINENCE, CORRECTION, ABDOMINAL\nAPPROACH', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0221', 'BLADDER, MILD STRESS INCONTINENCE, CYCTOSCOPIC\nINJECTION OF COLLAGEN', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0222', 'BLADDER, RETENTION OF URINE, SUPRAPUBIC CYSTOSTOMY', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0223', 'BLADDER, STANDARD URODYNAMICS STUDY, COMPLEX (WITH\nVIDEO)', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.0224', 'BLADDER, STANDARD URODYNAMICS STUDY, SIMPLE\n(WITHOUT VIDEO)', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.0225', 'BLADDER, TUMOR, ANTERIOR EXENTERATION (FEMALE)', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0226', 'BLADDER, URACHAL FISTULA, MIS EXCISION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0227', 'BLADDER, URACHAL FISTULA, OPEN EXCISION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0228', 'BLADDER, VARIOUS LESIONS, ENLARGEMENT CYSTOPLASTY\nWITH BOWEL', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0229', 'BLADDER, VARIOUS LESIONS, IMAGE GUIDED SUPRAPUBIC\nCYSTOSTOMY', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.0230', 'BLADDER, VARIOUS LESIONS, MIS PARTIAL EXCISION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0231', 'BLADDER, VARIOUS LESIONS, OPEN PARTIAL EXCISION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0232', 'BLADDER, VARIOUS LESIONS, TOTAL CYSTECTOMY WITH ILEAL\nCONDUIT', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0233', 'BLADDER, VARIOUS LESIONS, TOTAL RADICAL CYSTECTOMY,\nFOR MALIGNANCY + CREATION OF ILEAL NEOBLADDER', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.0234', 'BLADDER, VESICO-INTESTINAL FISTULA, CLOSURE', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0235', 'BLADDER, VESICOSTOMY', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0236', 'BLADDER, VESICO-VAGINAL FISTULA, CLOSURE BY ABDOMINAL\nROUTE', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0237', 'BLADDER, VESICO-VAGINAL FISTULA, CORRECTION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0238', 'BLADDER/URETER, CYSTOSCOPY, WITH URETERIC\nCATHETERISATION', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.0239', 'BLADDER/URETER, LYMPHOLYSIS FOR CHYLURIA, MIS', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0240', 'BLADDER/URETHRA, CYSTOSCOPY, WITH URETHRAL\nDILATATION', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.0241', 'BLADDER/URETHRA, TRANSURETHRAL RESECTION OF BLADDER\nTUMOUR (<3CM)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0242', 'BLADDER/URETHRA, TRANSURETHRAL RESECTION OF BLADDER\nTUMOUR (>3CM)', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0243', 'BLOOD VESSELS (LARGE), DISRUPTION/OBSTRUCTION, REPAIR\nWITH AUTOGENOUS VEIN GRAFTING', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0244', 'BLOOD VESSELS, DEFECT, MAJOR GRAFTS (MULTIPLE)', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0245', 'BLOOD VESSELS, HICKMAN LINE INSERTION', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.0246', 'BLOOD VESSELS, PULMONARY EMBOLECTOMY', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0247', 'BLOOD VESSELS, RENAL ANGIOGRAPHY', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0248', 'BLOOD VESSELS, SAPHENOUS VEIN, HARVEST, MINIMALLY\nINVASIVE ENDOSCOPIC', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0249', 'BLOOD VESSELS, SUBCUTANEOUS IMPLANTED VASCULAR PORT,\nINSERTION', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0250', 'BLOOD VESSELS, SUBCUTANEOUS IMPLANTED VASCULAR PORT,\nREMOVAL', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0251', 'BLOOD VESSELS, VASCULAR INTERVENTION, RADIOLOGY,\nINTRAVASCULAR FOREIGN BODY RETRIEVAL', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0252', 'BONE (LOWER LIMB), DEFECT/NON UNION, IMPLANTATION OF\nBONE STIMULATOR', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0253', 'BONE (LOWER LIMB), DEFORMITIES, CORRECTIVE SURGERY WITH INTERNAL FIXATION WITH OR WITHOUT\nFLUOROSCOPY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0254', 'BONE (LOWER LIMB), DEFORMITIES, CORRECTIVE SURGERY\nWITH OSTEOTOMY ALONE', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0255', 'BONE (LOWER LIMB), FRACTURE/DISLOCATION, MANIPULATION\nAND KIRSCHNER WIRE FIXATION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0256', 'BONE (LOWER LIMB), GRADE 1 AND 2 OPEN FRACTURES/OPEN DISLOCATION OR OPEN FRACTURE-\nDISLOCATION WOUND DEBRIDEMENT', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.0257', 'BONE (LOWER LIMB), OSTEOMYELITIS, DRAINAGE WITH\nCURETTAGE AND IRRIGATION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0258', 'BONE (LOWER LIMB), OSTEOMYELITIS, SIMPLE DRAINAGE', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.0259', 'BONE (LOWER LIMB), TUMOR (BENIGN), <3 CM WITH BONE GRAFTING +/- RECONSTRUCTION/INTERNAL\nFIXATION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0260', 'BONE (LOWER LIMB), TUMOR (BENIGN), >3 CM WITH BONE GRAFTING +/- RECONSTRUCTION/INTERNAL\nFIXATION', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0261', 'BONE (LOWER LIMB), TUMOR (MALIGNANT), RADICAL EXCISION (<6CM) WITH RECONSTRUCTION AND BONE GRAFTING', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0262', 'BONE (LOWER LIMB), TUMOR (MALIGNANT), RADICAL EXCISION\n>6CM WITH RECONSTRUCTION AND BONE GRAFT', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.0263', 'BONE (LOWER LIMB), VARIOUS LESIONS, EPIPHYSIOLYSIS\nWITH/WITHOUT MICROSURGERY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0264', 'BONE (SKULL), TUMOR (LARGE>3CM) EXCISION WITH\nCRANIOPLASTY', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0265', 'BONE (SKULL), TUMOR (LARGE>3CM), EXCISION AND EXTENSIVE\nRECONSTRUCTION (DURA, SKULL, SKIN)', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.0266', 'BONE (SKULL), TUMOR (MALIGNANT), WIDE EXCISION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0267', 'BONE (SKULL), TUMOR (SMALL<3CM) EXCISION WITH\nCRANIOPLASTY', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.0268', 'BONE (UPPER LIMB), DEFORMITIES, CORRECTIVE SURGERY', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0269', 'BONE (UPPER LIMB), GRADE 1 AND 2 OPEN FRACTURES/OPEN DISLOCATION OR OPEN FRACTURE- DISLOCATION, WOUND\nDEBRIDEMENT', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.0270', 'BONE (UPPER LIMB), OSTEOMYELITIS SIMPLE DRAINAGE', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.0271', 'BONE (UPPER LIMB), OSTEOMYELITIS, EXTENSIVE\nCURETTAGE/DEBRIDEMENT AND IRRIGATION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0272', 'BONE (UPPER LIMB), TUMOR (BENIGN), MAJOR EXCISION\n<3 CM WITH BONE GRAFTING +/- RECONSTRUCTION/INTERNAL FIXATION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0273', 'BONE (UPPER LIMB), TUMOR (BENIGN), MAJOR EXCISION\n>3 CM WITH BONE GRAFTING +/- RECONSTRUCTION/INTERNAL FIXATION', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0274', 'BONE (UPPER LIMB), TUMOR (MALIGNANT), RADICAL EXCISION\nWITH RECONSTRUCTION/INTERNAL FIXATION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0275', 'BONE (UPPER LIMB), TUMOUR (MALIGNANT), WIDE EXCISION\nWITH RECONSTRUCTION/INTERNAL FIXATION', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0276', 'BONE (UPPER LIMB/LOWER LIMB), VARIOUS LESIONS,\nVASCULARISED BONE TRANSFER', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.0277', 'BONE (UPPER/LOWER LIMB), BONE LOSS/NONUNION, BONE\nGRAFTING', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0278', 'BONE (UPPER/LOWER LIMB), EXOSTOSIS, EXCISION BIOPSY\n(MORE THAN1/ BILATERAL)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0279', 'BONE (UPPER/LOWER LIMB), EXOSTOSIS, EXCISION BIOPSY\n(SINGLE)', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0280', 'BONE (UPPER/LOWER LIMB), VARIOUS LESIONS, BONE LOSS,\nBONE TRANSFER', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.0281', 'BONE AND JOINTS (LOWER LIMB), PLATES AND SCREWS/NAILS,\nREMOVAL', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.0282', 'BONE AND JOINTS (LOWER LIMB), REMOVAL OF SIMPLE IMPLANTS (E.G. RUSH RODS/WIRES/K- WIRES/PINS/SCREWS)', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.0283', 'BONE AND JOINTS (UPPER LIMB), DEFORMITIES, OSTEOTOMIES AND FIXATION WITH OR WITHOUT\nFLUOROSCOPY/BONE GRAFT', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0284', 'BONE AND JOINTS (UPPER LIMB), PLATES AND SCREWS,\nREMOVAL', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.0285', 'BONE AND JOINTS (UPPER LIMB), REMOVAL OF SIMPLE IMPLANTS (E.G. RUSH RODS/WIRES/K- WIRES/PINS/SCREWS)', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.0286', 'BONE, CYST/TUMOUR BENIGN/BENIGN AGGRESSIVE,\nCURRETTAGE/BURRING/BONE GRAFTING/CEMENTING', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0287', 'BONE, TUMOR (MALIGNANT), AROUND JOINTS WITH LIMB\nRECONSTRUCTION AND JOINT REPLACEMENT', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.0288', 'BONE, TUMOR (MALIGNANT), WIDE/MAJOR RESECTION AND\nRECONSTRUCTION (NON VASCULARISED BONE GRAFT)', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0289', 'BONE, TUMOUR (MALIGNANT), WIDE/MAJOR RESECTION AND\nRECONSTRUCTION (VASCULARISED BONE GRAFT)', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.0290', 'BONE, TUMOUR, IMAGING GUIDED PERCUTANEOUS LOCAL\nABLATION (RADIOFREQUENCY, CRYOTHERAPY, MICROWAVE, LASER, ALCOHOL,ETC) , SINGLE LESION', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0291', 'BONE, TUMOUR, IMAGING GUIDED PERCUTANEOUS LOCAL\nABLATION, COMPLEX, > 1 LESION (RADIOFREQUENCY, CRYOTHERAPY, MICROWAVE, LASER, ALCOHOL, ETC)', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0292', 'BONE, TUMOUR, IMAGING GUIDED PERCUTANEOUS LOCAL\nABLATION, SIMPLE, > 1 LESION (RADIOFREQUENCY, CRYOTHERAPY, MICROWAVE, LASER, ALCOHOL, ETC)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0293', 'BONE, VARIOUS LESIONS, BIOPSY', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0294', 'BONE, VARIOUS LESIONS, OPEN BIOPSY, CEMENTING/PLATE\nFIXATION', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0295', 'BONE/ SOFT TISSUE, VARIOUS LESIONS, IMAGING GUIDED\nPERCUTANEOUS BIOPSY', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.0296', 'BONE/JOINTS (LOWER LIMB), MAJOR CRUSH INJURIES, WOUND\nDEBRIDEMENT', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0297', 'BONE/SOFT TISSUE, VARIOUS LESIONS, TRUCUT BIOPSY', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0298', 'BOWEL (ESOPHAGUS, STOMACH, DUODENUM, COLON, RECTUM), STRICTURE, IMAGING GUIDED BALLOON\nDILATATION', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0299', 'BOWEL (ESOPHAGUS, STOMACH, DUODENUM, COLON,\nRECTUM), STRICTURE, IMAGING GUIDED STENT PLACEMENT', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0300', 'BOWELS, ENDOSCOPIC ULTRASOUND WITH COELIAC AXIS\nNEUROLYSIS', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0301', 'BOWELS, ENDOSCOPIC ULTRASOUND WITH FINE NEEDLE\nASPIRATION', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0302', 'BOWELS, ENDOSCOPIC ULTRASOUND WITH PSEUDOCYST\nDRAINAGE', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0303', 'BOWELS, ENDOSCOPIC ULTRASOUND WITH STENT INSERTION', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0304', 'BOWELS, ENDOSCOPIC ULTRASOUND WITHOUT FINE NEEDLE\nASPIRATION', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0305', 'BOWELS, SINGLE/DOUBLE BALLOON ENTEROSCOPY,\nDIAGNOSTIC', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0306', 'BOWELS, SINGLE/DOUBLE BALLOON ENTEROSCOPY,\nTHERAPEUTIC', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0307', 'BRACHIAL PLEXUS, BLOCK, CATHETER', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.0308', 'BRACHIAL PLEXUS, BLOCK, NO CATHETER', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0309', 'BRACHIAL PLEXUS, EXPLORATION AND NEUROLYSIS', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.0310', 'BRACHIAL PLEXUS, EXPLORATION AND/OR NEUROTISATION AND/OR MULTIPLE NERVE\nGRAFTING/CROSSED NERVE TRANSFERS', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0311', 'BRAIN AND SPINE, ARACHNOIDAL CYST, OPERATION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0312', 'BRAIN, ACOUSTIC TUMOR/CEREBELLO-PONTINE ANGLE TUMOR,\nEXCISION, COMPLEX', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.0313', 'BRAIN, ACOUSTIC TUMOR/CEREBELLO-PONTINE ANGLE TUMOR,\nEXCISION, SIMPLE', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.0314', 'BRAIN, ANEURYSM/ARTERIO-VENOUS MALFORMATION,\nCLIPPING/EXCISION, COMPLEX', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.0315', 'BRAIN, ANEURYSM/ARTERIO-VENOUS MALFORMATION,\nCLIPPING/EXCISION, SIMPLE', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.0316', 'BRAIN, CAROTICO-CAVERNOUS FISTULA, EXTRACRANIAL AND\nINTRACRANIAL TRAPPING', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.0317', 'BRAIN, CORTICAL STIMULATION/MAPPING FOR FUNCTIONAL\nNEUROSURGERY', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.0318', 'BRAIN, DEEP BRAIN STIMULATION, BILATERAL', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.0319', 'BRAIN, DEEP BRAIN STIMULATION, UNILATERAL', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.0320', 'BRAIN, EPILEPSY, CRANIOTOMY, COMPLEX (AWAKE\nCRANIOTOMY)', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.0321', 'BRAIN, EPILEPSY, CRANIOTOMY, SIMPLE', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0322', 'BRAIN, HYDROCEPHALUS AND OTHER LESIONS,\nVENTRICULOATRIAL/VENTRICULOPERITONEAL SHUNT', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0323', 'BRAIN, HYDROCEPHALUS AND OTHER LESIONS,\nVENTRICULOATRIAL/VENTRICULOPERITONEAL SHUNT, BILATERAL', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.0324', 'BRAIN, HYDROCEPHALUS, EXTERNAL VENTRICULAR DRAINAGE,\nBILATERAL', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0325', 'BRAIN, HYDROCEPHALUS, EXTERNAL VENTRICULAR DRAINAGE,\nUNILATERAL', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0326', 'BRAIN, HYDROCEPHALUS, REVISION/REMOVAL OF SHUNT', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0327', 'BRAIN, HYDROCEPHALUS, SPINO-PERITONEAL SHUNT', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0328', 'BRAIN, HYDROCEPHALUS, THIRD VENTRICULOSTOMY', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.0329', 'BRAIN, INTRACEREBRAL TUMOR, BIOPSY AND/OR\nDECOMPRESSION/REMOVAL VIA CRANIOTOMY, COMPLEX', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.0330', 'BRAIN, INTRACEREBRAL TUMOR, BIOPSY AND/OR\nDECOMPRESSION/REMOVAL VIA CRANIOTOMY, SIMPLE', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0331', 'BRAIN, INTRACRANIAL ABSCESS, CRANIECTOMY AND DRAINAGE', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.0332', 'BRAIN, INTRACRANIAL ABSCESS, DRAINAGE VIA BURR- HOLE', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0333', 'BRAIN, INTRACRANIAL ABSCESS, EXCISION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0334', 'BRAIN, INTRACRANIAL EXTRACEREBRAL TUMOR, CRANIOTOMY\n& REMOVAL, COMPLEX', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.0335', 'BRAIN, INTRACRANIAL EXTRACEREBRAL TUMOR, CRANIOTOMY\n& REMOVAL, SIMPLE', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0336', 'BRAIN, INTRACRANIAL EXTRACEREBRAL TUMOR,\nCRANIOTOMY/HEMISPHERECTOMY', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0337', 'BRAIN, INTRACRANIAL TUMOR/INTRACRANIAL CYST,\nBIOPSY/DRAINAGE VIA BURR-HOLE', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0338', 'BRAIN, TUMOR, VENTRICULAR PUNCTURE THROUGH BURR-\nHOLE', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.0339', 'BRAIN, VARIOUS LESIONS, INSERTION OF OMMAYA RESERVOIR', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0340', 'BRAIN, VARIOUS LESIONS, PALLIDOTOMY/THALAMOTOMY/OTHER STEREOTACTIC\nPROCEDURE - BILATERAL', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.0341', 'BRAIN, VARIOUS LESIONS,\nPALLIDOTOMY/THALAMOTOMY/OTHER STEREOTACTIC PROCEDURE - UNILATERAL', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.0342', 'BRAIN/SPINE ENDOSCOPIC CSF (CEREBROSPINAL FLUID LEAK)\nLEAK REPAIR', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0343', 'BREAST (NIPPLE), VARIOUS LESIONS, GRAFT AND/OR FLAP\nRECONSTRUCTION (BILATERAL)', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0344', 'BREAST (NIPPLE), VARIOUS LESIONS, GRAFT AND/OR FLAP\nRECONSTRUCTION (UNILATERAL)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0345', 'BREAST, DIFFUSE HYPERTROPHY, REDUCTION >250G\n(UNILATERAL)', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0346', 'BREAST, DIFFUSE HYPERTROPHY, REDUCTION MAMMOPLASTY\n>500G (BILATERAL)', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.0347', 'BREAST, DROOPING, MASTOPEXY/REDUCTION (BILATERAL)', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.0348', 'BREAST, DROOPING, MASTOPEXY/REDUCTION (UNILATERAL)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0349', 'BREAST, DUCTAL LESIONS, MICRODOCHECTOMY (BILATERAL)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0350', 'BREAST, DUCTAL LESIONS, MICRODOCHECTOMY (UNILATERAL)', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0351', 'BREAST, GYNECOMASTIA, REDUCTION (BILATERAL)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0352', 'BREAST, GYNECOMASTIA, REDUCTION (UNILATERAL)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0353', 'BREAST, HYPOPLASIA, AUGMENTATION MAMMOPLASTY\n(PROSTHETIC AND BILATERAL)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0354', 'BREAST, HYPOPLASIA, AUGMENTATION MAMMOPLASTY\n(PROSTHETIC AND UNILATERAL)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0355', 'BREAST, INVERTED NIPPLE, SURGICAL EVERSION (UNILATERAL)', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0356', 'BREAST, INVERTED NIPPLES, SURGICAL EVERSION (BILATERAL)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0357', 'BREAST, LUMP (REMOVAL) WITH PARENCHYMAL FLAP CLOSURE\n(UNILATERAL/BILATERAL)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0358', 'BREAST, LUMP (SINGLE), EXCISION BIOPSY', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0359', 'BREAST, LUMPS (MULTIPLE/BILATERAL), EXCISION BIOPSY', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0360', 'BREAST, LUMPS, IMAGING GUIDED VACUUM ASSISTED BIOPSY,\n> 1 LESIONS', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0361', 'BREAST, LUMPS, IMAGING GUIDED VACUUM ASSISTED BIOPSY,\nSINGLE LESION', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.0362', 'BREAST, POST MASTECTOMY, IMPLANT/EXPANDER\nRECONSTRUCTION (BILATERAL)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0363', 'BREAST, POST MASTECTOMY, IMPLANT/EXPANDER\nRECONSTRUCTION (UNILATERAL)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0364', 'BREAST, POST MASTECTOMY, LATISSMUS DORSI PEDICLED FLAP WITH OR WITHOUT IMPLANT RECONSTRUCTION (BILATERAL)', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.0365', 'BREAST, POST MASTECTOMY, LATISSMUS DORSI PEDICLED FLAP WITH OR WITHOUT IMPLANT RECONSTRUCTION (UNILATERAL)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0366', 'BREAST, POST MASTECTOMY, RECONSTRUCTION USING FREE\nFLAP (UNILATERAL)', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.0367', 'BREAST, POST MASTECTOMY, RECONSTRUCTION USING PEDICLED TRANSVERSE RECTUS ABDOMINIS\nMUSCULOCUTANEOUS FLAP (UNILATERAL)', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.0368', 'BREAST, POST MASTECTOMY, RECONSTRUCTION USING\nPEDICLED TRANSVERSE RECTUS ABDOMINIS MUSCULOCUTANEOUS FLAP (BILATERAL)', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.0369', 'BREAST, POST PROSTHETIC CONTRACTION, CAPSULOTOMY\n(BILATERAL)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0370', 'BREAST, POST PROSTHETIC CONTRACTION, CAPSULOTOMY\n(UNILATERAL)', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0371', 'BREAST, TUMOR (MALIGNANT), NIPPLE/SKIN SPARING\nMASTECTOMY', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.0372', 'BREAST, TUMOR (MALIGNANT), NIPPLE/SKIN SPARING\nMASTECTOMY WITH AXILIARY CLEARANCE, WITH/WITHOUT SENTINEL NODE BIOPSY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0373', 'BREAST, TUMOR (MALIGNANT), NIPPLE/SKIN SPARING\nMASTECTOMY WITH SENTINEL NODE BIOPSY/AXILIARY NODE SAMPLING', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0374', 'BREAST, TUMOR (MALIGNANT), RADICAL MASTECTOMY\nWITH/WITHOUT AXILIARY CLEARANCE', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0375', 'BREAST, TUMOR (MALIGNANT), SIMPLE MASTECTOMY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0376', 'BREAST, TUMOR (MALIGNANT), SIMPLE MASTECTOMY WITH AXILIARY CLEARANCE, WITH/WITHOUT SENTINEL\nNODE BIOPSY', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0377', 'BREAST, TUMOR (MALIGNANT), SIMPLE MASTECTOMY WITH\nSENTINEL NODE BIOPSY/ AXILIARY NODE SAMPLING', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.0378', 'BREAST, TUMOR (MALIGNANT), WIDE EXCISION/ LUMPECTOMY/SEGMENTAL MASTECTOMY/ PARTIAL MASTECTOMY, WITH AXILIARY CLEARANCE, WITH/WITHOUT\nSENTINEL NODE BIOPSY', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.0379', 'BREAST, TUMOR (MALIGNANT), WIDE EXCISION/ LUMPECTOMY/SEGMENTAL MASTECTOMY/ PARTIAL\nMASTECTOMY', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0380', 'BREAST, TUMOR (MALIGNANT), WIDE EXCISION/ LUMPECTOMY/SEGMENTAL MASTECTOMY/ PARTIAL MASTECTOMY, WITH SENTINEL NODE BIOPSY/ AXILIARY NODE\nSAMPLING', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0381', 'BREAST, VARIOUS LESIONS, SUBCUTANEOUS MASTECTOMY\nBILATERAL, EXCLUDING GYNAECOMASTIA', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0382', 'BREAST, VARIOUS LESIONS, SUBCUTANEOUS MASTECTOMY UNILATERAL, EXCLUDING\nGYNAECOMASTIA', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0383', 'BREAST, VARIOUS LESIONS, TRUCUT BIOPSY', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.0384', 'BREAST, VARIOUS LESIONS, TRUCUT BIOPSY, ULTRASOUND\nGUIDED OR STEREOTACTIC (MULTIPLE)', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.0385', 'BREAST, VARIOUS LESIONS, TRUCUT BIOPSY, ULTRASOUND\nGUIDED OR STEREOTACTIC (SINGLE)', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0386', 'BREAST, VARIOUS LESIONS, WIRE LOCALISATION, EXCISION\n(MULTIPLE)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0387', 'BREAST, VARIOUS LESIONS, WIRE LOCALISATION, EXCISION\n(SINGLE)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0388', 'BRONCHUS, FOREIGN BODY, REMOVAL VIA BRONCHOTOMY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0389', 'BRONCHUS, VARIOUS LESIONS, BRONCHIAL\nTHERMOPLASTY/BRONCHUS RADIOFREQUENCY ABLATION', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0390', 'BRONCHUS, VARIOUS LESIONS, BRONCHOPLASTIC PROCEDURE', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0391', 'BRONCHUS/LUNG, BRONCHOSCOPY WITH BIOPSY,\nBRONCHOALVEOLAR LAVAGE', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.0392', 'BRONCHUS/LUNG, BRONCHOSCOPY WITH/WITHOUT BIOPSY', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0393', 'BRONCHUS/LUNG, BRONCHOSCOPY, BLIND TRANSBRONCHIAL\nLUNG BIOPSY FOR DIFFUSE DISEASE', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.0394', 'BRONCHUS/LUNG, BRONCHOSCOPY, TARGETED\nTRANSBRONCHIAL LUNG BIOPSY FOR FOCAL LESIONS (IMAGING- GUIDED)', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0395', 'BRONCHUS/LUNG, BRONCHOSCOPY, WITH DILATATION OF\nTRACHEAL AND BRONCHIAL STRICTURE', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0396', 'BRONCHUS/LUNG, TRANSBRONCHIAL NEEDLE ASPIRATION OF\nMEDIASTINAL LYMPH NODES, WITH OR WITHOUT ENDOBRONCHIAL ULTRASOUND (EBUS)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0397', 'BRONCHUS/TRACHEA, VARIOUS LESIONS, LASER APPLICATION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0398', 'BROW, BROWLIFT, ENDOSCOPIC, BILATERAL', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0399', 'BROW, BROWLIFT, ENDOSCOPIC, BILATERAL WITH MID- FACE\nLIFT', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0400', 'BROW, BROWLIFT, ENDOSCOPIC, UNILATERAL', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0401', 'BROW, DIRECT BROWPLASTY, BILATERAL', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0402', 'BROW, DIRECT BROWPLASTY, UNILATERAL', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0403', 'BURSA, BURSITIS, EXCISION BIOPSY (MORE THAN\n1/BILATERAL)', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0404', 'BURSA, BURSITIS, EXCISION BIOPSY (SINGLE)', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.0405', 'CALCANEUM FRACTURE EXTRA-ARTICULAR OPEN REDUCTION\nINTERNAL FIXATION', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0406', 'CAPSULE ENDOSCOPY', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0407', 'CARPUS, DELAYED/NON UNION, RECONSTRUCTION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0408', 'CARPUS, FRACTURE/DISLOCATION, OPEN REDUCTION AND\nINTERNAL FIXATION', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0409', 'CERVICAL SPINE, APPLICATION OF HALO DEVICE WITHOUT\nOTHER PROCEDURES', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.0410', 'CERVICAL SPINE, CLOSED REDUCTION WITH APPLICATION OF\nSKULL DEVICES BUT WITHOUT OTHER PROCEDURES', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.0411', 'CERVICAL SPINE, EXCISION OF CERVICAL RIB', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.0412', 'CERVICAL SPINE, VARIOUS LESIONS - ANTERIOR\nDECOMPRESSION AND FUSION OR DISC REPLACEMENT (1 SEGMENT)', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.0413', 'CERVICAL SPINE, VARIOUS LESIONS - ANTERIOR DECOMPRESSION AND FUSION OR DISC REPLACEMENT (2\nSEGMENTS)', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0414', 'CERVICAL SPINE, VARIOUS LESIONS, LAMINOPLASTY (WITHOUT\nINSTRUMENTATION)', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0415', 'CERVICAL SPINE, VARIOUS LESIONS,ANTERIOR DECOMPRESSION AND FUSION OR DISC REPLACEMENT\n(3 OR MORE SEGMENTS)', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.0416', 'CERVIX, CANCER, RADICAL TRACHELECTOMY WITH/WITHOUT\nLYMPHADENECTOMY', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.0417', 'CERVIX, CERVICAL INCOMPETENCE, CERCLAGE', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.0418', 'CERVIX, CERVICAL INCOMPETENCE, REMOVAL OF SUTURE', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.0419', 'CERVIX, CERVICAL INTRAEPITHELIAL NEOPLASIA, CONE BIOPSY\nWITH/WITHOUT LASER', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0420', 'CERVIX, ECTROPION, AMPUTATION/REPAIR OF CERVIX\n(TRACHELORRHAPHY)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0421', 'CERVIX, POLYP, EXCISION/EROSION (COMPLICATED) INCLUDES\nD&C WITH BIOPSY', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.0422', 'CERVIX, POLYP, EXCISION/EROSION (SIMPLE) WITH BIOPSY', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0423', 'CERVIX, POLYP/EROSION, LASER THERAPY WITHOUT\nCOLPOSCOPY', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0424', 'CERVIX, STENOSIS, DILATATION', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0425', 'CERVIX, TEAR, REPAIR UNDER ANESTHESIA', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.0426', 'CERVIX, TRANSCERVICAL RESECTION (TCR) MYOMA (<3CM),\nHYSTEROSCOPIC', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0427', 'CERVIX, TRANSCERVICAL RESECTION (TCR) MYOMA (>3CM),\nHYSTEREOSCOPIC', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0428', 'CERVIX, TRANSCERVICAL RESECTION (TCR) POLYP (<2CM),\nHYSTEROSCOPIC', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.0429', 'CERVIX, TRANSCERVICAL RESECTION (TCR) POLYP (>2CM),\nHYSTEROSCOPIC', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0430', 'CERVIX, TRANSCERVICAL RESECTION (TCR) SEPTUM,\nHYSTEROSCOPIC', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0431', 'CERVIX, VARIOUS LESIONS, COLPOSCOPY AND BIOPSY', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.0432', 'CERVIX, VARIOUS LESIONS, COLPOSCOPY, ABLATIONAL AND/OR EXCISIONAL TREATMENT (E.G. LASER VAPOURISATION/LOOP ELECTROSURGICAL EXCISION PROCEDURE/LASER EXCISION OF TRANSFORMATION ZONE WITH BIOPSY)', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.0433', 'CERVIX, VARIOUS LESIONS, PUNCH BIOPSY', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.0434', 'CLAVICLE, CLAVICLE FRACTURE, COMMINUTED PLATING WITH\nOR WITHOUT BONE GRAFTING', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0435', 'CLAVICLE, CLAVICLE FRACTURE, DELAYED UNION/REVISION AND\nORIF WITH/WITHOUT BONE GRAFTING', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0436', 'CLAVICLE, CLAVICLE FRACTURE, SIMPLE', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0437', 'CLITORIS, CLITOROMEGALY, AMPUTATION', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0438', 'COCCYX, VARIOUS LESIONS, EXCISION', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0439', 'COELIAC PLEXUS, BLOCK, ANAESTHETIC', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.0440', 'COELIAC PLEXUS, BLOCK, NEUROLYTIC', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.0441', 'COLON, ANTERIOR RESECTION (OPEN/MIS)', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.0442', 'COLON, COLONOSCOPY (SCREENING), FIBREOPTIC WITH REMOVAL OF POLYP (SINGLE OR MULTIPLE LESS THAN\n1CM)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0443', 'COLON, COLONOSCOPY (SCREENING), FIBREOPTIC WITH\nREMOVAL OF POLYPS (MULTIPLE MORE THAN 1CM)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0444', 'COLON, COLONOSCOPY (SCREENING), FIBREOPTIC\nWITH/WITHOUT BIOPSY', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0445', 'COLON, COLONOSCOPY WITH ENDOSCOPIC MUCOSAL\nRESECTION (EMR) OF LARGE POLYPS (>3CM)', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0446', 'COLON, COLONOSCOPY WITH ENDOSCOPIC SUBMUCOSAL\nDISSECTION (ESD) OF LARGE POLYPS (>3CM)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0447', 'COLON, COLONOSCOPY, FIBREOPTIC WITH REMOVAL OF POLYP\n(SINGLE OR MULTIPLE LESS THAN 1CM)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0448', 'COLON, COLONOSCOPY, FIBREOPTIC WITH REMOVAL OF POLYPS\n(MULTIPLE MORE THAN 1CM)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0449', 'COLON, COLONOSCOPY, FIBREOPTIC WITH/WITHOUT\nBIOPSY', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0450', 'COLON, COLOSTOMY, CLOSURE WITHOUT RESECTION OF\nBOWEL', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0451', 'COLON, HIRSCHSPRUNG?S DISEASE, ENDORECTAL\nPULLTHROUGH (MIS)', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.0452', 'COLON, HIRSCHSPRUNG\'S DISEASE, PULLTHROUGH FOR LONG\nSEGMENT DISEASE (MIS/OPEN)', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.0453', 'COLON, SIGMOID, SIGMOIDOSCOPY (FLEXIBLE), FIBREOPTIC\nWITH/WITHOUT BIOPSY', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0454', 'COLON, SIGMOID, SIGMOIDOSCOPY WITH POLYPECTOMY WITH\nBIOPSY', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.0455', 'COLON, TOTAL COLECTOMY / SUBTOTAL COLECTOMY', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.0456', 'COLON, TOTAL PROCTOCOLECTOMY & ILEO-ANAL POUCH\nRECONSTRUCTION', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.0457', 'COLON, VARIOUS LESIONS, COLOSTOMY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0458', 'COLON, VARIOUS LESIONS, RIGHT/LEFT HEMICOLECTOMY\n(MIS/OPEN)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0459', 'COLON, VARIOUS LESIONS, TOTAL COLECTOMY WITH\nILEORECTAL ANASTOMOSIS/ILEOSTOMY', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.0460', 'COLON, VARIOUS LESIONS, TOTAL PROCTO-COLECTOMY AND\nILEOSTOMY', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0461', 'COLON, VARIOUS LESIONS, TRANVERSE/SIGMOID COLECTOMY\n(MIS/OPEN)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0462', 'CONJUNCTIVA, EXCISION OF PTERYGIUM, BARE SCLERA', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.0463', 'CONJUNCTIVA, LIMBIC TUMOR, REMOVAL', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0464', 'CONJUNCTIVA, NAEVUS, REMOVAL', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0465', 'CONJUNCTIVA, PINGUECULA, REMOVAL', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0466', 'CONJUNCTIVA, PTERYGIUM, REMOVAL WITH CONJUNCTIVAL\nGRAFT', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0467', 'CONJUNCTIVA, PTERYGIUM, REMOVAL, COMPLEX (RECURRENT,\nDOUBLE, SYMBLEPHARON), WITH OR WITHOUT AMNIOTIC MEMBRANE TRANSPLANT', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0468', 'CONTRALATERAL MASTOPEXY/REDUCTION FOLLOWING BREAST, TUMOUR (MALIGNANT) WIDE EXCISION/LUMPECTOMY/SEGMENTAL OR PARTIAL MASTECTOMY, WITH OR WITHOUT SENTINEL NODE BIOPSY\nAND/OR AXILLARY CLEARANCE', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0469', 'CORNEA, ASTIGMATIC KERATOTOMY (WITH OR WITHOUT LIMBAL RELAXING INCISIONS / GRAFT REFRACTIVE\nSURGERY)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0470', 'CORNEA, BAND KERATOPATHY, REMOVAL WITH ETHYLENE\nDIAMINE TETRA-ACETIC ACID', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.0471', 'CORNEA, DESCEMET\'S MEMBRANE ENDOTHELIAL\nKERATOPLASTY (DMEK)', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0472', 'CORNEA, LACERATION, CONJUNCTIVAL GRAFT OVER CORNEA', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0473', 'CORNEA, LACERATION, CONJUNCTIVAL PERITOMY/REPAIR BY\nCONJUNCTIVAL FLAP', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0474', 'CORNEA, MYOPIA, PHOTOTHERAPEUTIC KERATECTOMY/LASER\nIN-SITU KERATOMILEUSIS', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0475', 'CORNEA, RIBOFLAVIN-UVA INDUCED COLLAGEN CROSSLINKING TREATMENT FOR CORNEAL ECTASIA (CXL-CROSSLINKING LASER/POST LASIK KERATECTOMY/KERATITIS)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0476', 'CORNEA, SUPERFICIAL KERATECTOMY', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.0477', 'CORNEA, VARIOUS LESIONS, KERATOPLASTY, COMPLEX\n(TECTONIC, THERAPEUTIC, LAMELLAR, DESCEMET STRIPPING AUTOMATED ENDOTHELIAL KERATOPLASTY)', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.0478', 'CORNEA, VARIOUS LESIONS, TRANSPLANTATION\n(SUPERFICIAL/LAMELLAR/FULL THICKNESS)', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.0479', 'CORNEA, VARIOUS LESIONS, TRANSPLANTATION WITH\nCATARACT EXTRACTION AND INTRA-OCULAR LENS IMPLANTATION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0480', 'CORNEA/CONJUNCTIVA, GUNDERSON FLAP', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0481', 'CORNEAL/OCULAR SURFACE, OSTEO-ODONTO-\nKERATOPROSTHESIS STAGE 1', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.0482', 'CORNEAL/OCULAR SURFACE, OSTEO-ODONTO-\nKERATOPROSTHESIS STAGE 2', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0483', 'DIAPHRAGM, DIAPHRAGMATIC/HIATUS HERNIA, REPAIR\n(MIS/OPEN)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0484', 'DIAPHRAGM, TUMOR, EXCISION', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0485', 'DIAPHRAGM, TUMOR, EXCISION WITH WEDGE RESECTION OF\nLUNG', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0486', 'DIGIT(S), NAIL BED, DEFORMITY/DEFECT, RECONSTRUCTION', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0487', 'DIGIT(S), NAILBED LACERATION, NAILBED GRAFTING', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0488', 'DIGIT(S), SOFT TISSUE DEFECT, COMPLEX SMALL SKIN FLAPS,\nMULTIPLE FLAPS', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0489', 'DIGIT(S), SOFT TISSUE DEFECT, LARGE COMPLEX PEDICLED\nFLAPS', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0490', 'DIGIT(S), SOFT TISSUE DEFECT, SIMPLE SKIN FLAP', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0491', 'DUODENUM, TRAUMA, BYPASS OPERATION', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0492', 'DUODENUM, TUMOR, PANCREATICO-DUODENECTOMY', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.0493', 'DUODENUM, TUMOUR, PANCREAS PRESERVING\nDUODENECTOMY WITH RECONSTRUCTION OF AMPULLA', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.0494', 'DUODENUM, ULCER, PARTIAL GASTRECTOMY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0495', 'DUODENUM, ULCER, VAGOTOMY - ALL TYPES', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0496', 'DUODENUM, VARIOUS LESIONS,\nGASTROENTEROSTOMY/GASTRODUODENOSTOMY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0497', 'EAR (MIDDLE), ABSCESS/INFLAMMATION, OPERATION', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0498', 'EAR (MIDDLE), COCHLEAR IMPLANT', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.0499', 'EAR (MIDDLE), MIDDLE EAR IMPLANT SURGERY', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.0500', 'EAR (MIDDLE), ROUND WINDOW PERFORATION, REPAIR', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0501', 'EAR (MIDDLE), VARIOUS LESIONS (BENIGN CONDITION),\nEXCISION BIOPSY', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.0502', 'EAR (MIDDLE), VARIOUS LESIONS, EXPLORATION AND\nTYMPANOTOMY', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0503', 'EAR (MIDDLE), VARIOUS LESIONS, STAPEDECTOMY', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0504', 'EAR, AUDITORY MEATUS (INTERNAL), TUMOR, TRANSMASTOID REMOVAL WITH EXTENDED\nMASTOIDECTOMY', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0505', 'EAR, BILATERAL PREAURICULAR SINUS EXCISION', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0506', 'EAR, CAULIFLOWER EAR, CORRECTION', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0507', 'EAR, CONGENITAL ATRESIA, RECONSTRUCTION OF EXTERNAL\nAUDITORY CANAL AND MIDDLE EAR', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0508', 'EAR, DEFORMITY, COMPOSITE GRAFT', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0509', 'EAR, DEFORMITY, CORRECTION (BILATERAL)', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0510', 'EAR, DEFORMITY, CORRECTION (UNILATERAL)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0511', 'EAR, DEFORMITY, LOBULE RECONSTRUCTION (BILATERAL)', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0512', 'EAR, DEFORMITY, LOBULE RECONSTRUCTION (UNILATERAL)', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.0513', 'EAR, EUSTACHIAN TUBE, VARIOUS LESIONS,\nCATHETERISATION/INFLATION', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.0514', 'EAR, EXCISION PSEUDOCYST PINNA', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.0515', 'EAR, EXOSTOSIS OBTURANS, EXCISION BIOPSY', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0516', 'EAR, FOREIGN BODY, COMPLEX REMOVAL/EXCISION\n(EMBEDDED/LARGE)', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0517', 'EAR, HEMATOMA/SEROMA, EVACUATION/INCISION &\nDRAINAGE', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0518', 'EAR, IMPLANTATION OF BONE-ANCHORED HEARING AID', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0519', 'EAR, KERATOSIS OBTURANS MODERATE/SEVERE, EXCISION\nBIOPSY UNDER GA', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.0520', 'EAR, LACERATION (FULL THICKNESS), REPAIR > 3CM', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0521', 'EAR, MICROTIA, CREATION OF POST-AURICULAR SULCUS WITH\nSKIN GRAFT', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0522', 'EAR, MICROTIA, INSERTION OF CARTILAGE/SILASTIC\nFRAMEWORK', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0523', 'EAR, MICROTIA, REPOSITIONING OF LOBULE', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.0524', 'EAR, PARTIAL AMPUTATION, RECONSTRUCTION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0525', 'EAR, POLYP, REMOVAL', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0526', 'EAR, SEBACEOUS CYST, EXCISION', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0527', 'EAR, TOTAL AMPUTATION, MICROVASCULAR RECONSTRUCTION', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.0528', 'EAR, TOTAL AMPUTATION, STAGED RECONSTRUCTION (EACH\nSTAGE)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0529', 'EAR, TYMPANIC MEMBRANE, BILATERAL MYRINGOTOMY WITH\nTUBE', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.0530', 'EAR, TYMPANIC MEMBRANE, BILATERAL MYRINGOTOMY\nWITHOUT TUBE', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.0531', 'EAR, TYMPANIC MEMBRANE, PERFORATION,\nCAUTERISATION/DIATHERMY', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0532', 'EAR, TYMPANIC MEMBRANE, PERFORATION, ROUND WINDOW\nREPAIR', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0533', 'EAR, TYMPANIC MEMBRANE, UNILATERAL MYRINGOTOMY\nWITH TUBE', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.0534', 'EAR, TYMPANIC MEMBRANE, UNILATERAL, TRANSTYMPANIC PERFUSION OF DRUGS, WITH INJECTIONS/MYRINGOTOMY INCLUDING REPEAT\nPROCEDURES DURING A 90-DAY PERIOD IN THE SAME EAR', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.0535', 'EAR, TYMPANIC MEMBRANE, UNILATERAL,MYRINGOTOMY\nWITHOUT TUBE', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0536', 'EAR, UNILATERAL PRE AURICULAR SINUS EXCISION', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.0537', 'EAR, VARIOUS LESIONS, MEATOPLASTY/CANALPLASTY WITH /\nWITHOUT SPLIT SKIN GRAFT', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0538', 'EAR, VARIOUS LESIONS, MIDDLE FOSSA EXTRA-DURAL APPROACH TO TEMPORAL BONE WITH/WITHOUT\nTRANSMASTOID APPROACH COMBINED ACCESS', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0539', 'EAR, VARIOUS LESIONS, MYRINGOPLASTY (LATERAL GRAFT/ONLAY GRAFT TECHNIQUE) WITH/WITHOUT\nCANALPLASTY', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0540', 'EAR, VARIOUS LESIONS, MYRINGOPLASTY (POST-\nAURAL/ENDAURAL APPROACH)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0541', 'EAR, VARIOUS LESIONS, MYRINGOPLASTY (SIMPLE)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0542', 'EAR, VARIOUS LESIONS, OSSICULAR CHAIN RECONSTRUCTION\nWITH/WITHOUT MYRINGOPLASTY', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0543', 'EAR, VARIOUS LESIONS, VARIOUS GRAFT TO FENESTRATION\nCAVITY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0544', 'ELBOW (MEDIAL EPICONDYLE), FRACTURE, EXCISION BONY\nFRAGMENT', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.0545', 'ELBOW, CONDYLE/RADIAL HEAD FRACTURE, RADIAL HEAD\nEXCISION/CONDYLE/ARTHROPLASTY', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0546', 'ELBOW, CORONOID FRACTURE, ORIF', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0547', 'ELBOW, DISLOCATION , LIGAMENT REPAIR (COMPLEX,\nWITH/WITHOUT IMPLANT)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0548', 'ELBOW, DISLOCATION , LIGAMENT REPAIR (SINGLE)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0549', 'ELBOW, FRACTURE/ DISLOCATION, REPAIR OF LIGAMENTS/ ORIF', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0550', 'ELBOW, FRACTURE/DISLOCATION, OPEN REDUCTION AND\nINTERNAL FIXATION (ORIF)', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0551', 'ELBOW, SUPRACONDYLAR FRACTURE, M&R, PERCUTANEOUS\nPINNING', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0552', 'ELBOW, TENNIS ELBOW, RELEASE', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.0553', 'ELBOW, VARIOUS LESIONS, PRIMARY TOTAL JOINT ARTHROPLASTY WITH AUGMENTATION, REQUIRING EXTRA\nIMPLANTS OR BONE GRAFTS, OPEN/MIS/NAVIGATED', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0554', 'ELBOW, VARIOUS LESIONS, PRIMARY TOTAL JOINT\nARTHROPLASTY, OPEN/MIS/NAVIGATED', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.0555', 'ELBOW, VARIOUS LESIONS, RECONSTRUCTION WITH OR\nWITHOUT SYNOVECTOMY', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0556', 'ELBOW, VARIOUS LESIONS, REVISION TOTAL JOINT\nARTHROPLASTY, OPEN/MIS/NAVIGATED', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.0557', 'ELBOW,THERAPEUTIC ARTHROSCOPY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0558', 'ENDOLYMPHATIC SAC, VARIOUS LESIONS, TRANSMASTOID\nSHUNT PROCEDURE', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0559', 'ENDOSCOPIC RETROGRADE CHOLANGIOPANCREATOGRAPHY (ERCP) WITH\nSPHINCTEROTOMY/REMOVAL OF STONE/INSERTION OF\nBILIARY STENT', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0560', 'ESOPHAGUS, ACHALASIA, CARDIOMYOTOMY (OPEN/MIS)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0561', 'ESOPHAGUS, ATRESIA, REPAIR AND ANASTOMOSIS', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0562', 'ESOPHAGUS, BENIGN TUMOUR, RESECTION (MIS/OPEN)', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.0563', 'ESOPHAGUS, DIVERTICULUM, EXCISION (MIS/OPEN)', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.0564', 'ESOPHAGUS, MOTILITY DISORDER, LONG MYOTOMY\n(MIS/OPEN)', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0565', 'ESOPHAGUS, STRICTURE, DILATATION (ENDOSCOPIC)', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.0566', 'ESOPHAGUS, TUMOR, ALLISON/IVOR-LEWIS OPERATION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0567', 'ESOPHAGUS, TUMOR, BYPASS WITH STOMACH/INTESTINE\n(MIS/OPEN)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0568', 'ESOPHAGUS, TUMOR, CERVICAL/LARYNGOPHARYNGECTOMY WITH\nTRACHEOSTOMY WITH/WITHOUT PLASTIC\nRECONSTRUCTION', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.0569', 'ESOPHAGUS, TUMOR, TOTAL ESOPHAGECTOMY', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.0570', 'ESOPHAGUS, VARICES, ESOPHAGEAL/TRANSECTION WITH\nSPLENECTOMY', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0571', 'ESOPHAGUS, VARICES, GASTRO ESOPHAGEAL\nDEVASCULARISATION WITH ESOPHAGEAL TRANSECTION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0572', 'ESOPHAGUS, VARIOUS LESIONS, CERVICAL ESOPHAGOSTOMY', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0573', 'ESOPHAGUS/INTESTINE/STOMACH, UPPER GI ENDOSCOPY WITH COMPLICATED POLYPECTOMY (E.G.\nLARGE POLYP REQUIRING MULTIPLE PIECEMEAL RESECTIONS, MULTIPLE POLYPS >2, OR POLYPS WITH COMPLICATIONS SUCH AS BLEEDING) OR ENDOSCOPIC\nMUCOSAL RESECTION', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0574', 'ESOPHAGUS/INTESTINE/STOMACH, UPPER GI ENDOSCOPY\nWITH ENDOSCOPIC SUBMUCOSAL DISSECTION', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0575', 'ESOPHAGUS/INTESTINE/STOMACH, UPPER GL ENDOSCOPY\nWITH INSERTION OF PROSTHESIS', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0576', 'ESOPHAGUS/STOMACH, GASTROSCOPY AND DILATATION', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0577', 'ESOPHAGUS/STOMACH, GASTROSCOPY WITH THERAPY EG. APC-\nFULGARISATION OF TUMOR', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0578', 'ESOPHAGUS/STOMACH/COLON, GASTROINTESTINAL\nENDOSCOPY, ABLATIVE TREATMENT', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0579', 'EXAMINATION UNDER ANAESTHESIA (GENERAL OR REGIONAL)\nWITHOUT OTHER SURGICAL PROCEDURES', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.0580', 'EYE, EXOPHTHALMOS DUE TO THYROTOXICOSIS, RETRACTOR\nRECESSIONS (BILATERAL)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0581', 'EYE, EXOPHTHALMOS DUE TO THYROTOXICOSIS, RETRACTOR\nRECESSIONS (UNILATERAL)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0582', 'EYE, GLAUCOMA DRAINAGE IMPLANTS EG. AHMED VALVE\nIMPLANT, MOLTENO IMPLANT , BAERVELDT TUBE SHUNT', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0583', 'EYE, GLAUCOMA, CYCLODESTRUCTIVE PROCEDURES', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0584', 'EYE, GLAUCOMA, FILTERING AND ALLIED OPERATIONS\n(INCLUDING TRABECULECTOMY / SCLERECTOMY)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0585', 'EYE, GLAUCOMA, FILTERING AND ALLIED OPERATIONS\n(INCLUDING TRABECULECTOMY / SCLERECTOMY) WITH ANTI-METABOLITES', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0586', 'EYE, GLAUCOMA, FILTERING AND ALLIED OPERATIONS AND\nCATARACT SURGERY, WITH OR WITHOUT INTRAOCULAR LENS IMPLANT', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0587', 'EYE, GLAUCOMA, GONIOSYNECHIOLYSIS', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0588', 'EYE, GLAUCOMA, GONIOTOMY/TRABECULOTOMY (BILATERAL)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0589', 'EYE, GLAUCOMA, GONIOTOMY/TRABECULOTOMY (BILATERAL) -\nPAEDIATRIC', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0590', 'EYE, GLAUCOMA, GONIOTOMY/TRABECULOTOMY\n(UNILATERAL)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0591', 'EYE, GLAUCOMA, GONIOTOMY/TRABECULOTOMY\n(UNILATERAL) - PAEDIATRIC', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0592', 'EYE, GLAUCOMA, SELECTIVE LASER TRABECULOPLASTY\n(BILATERAL)', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0593', 'EYE, GLAUCOMA, SELECTIVE LASER TRABECULOPLASTY\n(UNILATERAL)', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.0594', 'EYE, INTRAOCULAR FOREIGN BODY, REMOVAL FROM ANTERIOR\nSEGMENT', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0595', 'EYE, INTRAOCULAR FOREIGN BODY, REMOVAL FROM\nPOSTERIOR SEGMENT', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0596', 'EYE, MEDIAL CANTHAL RECONSTRUCTION, BILATERAL', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0597', 'EYE, MEDIAL CANTHAL RECONSTRUCTION, UNILATERAL', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0598', 'EYE, NEEDLING OF BLEBS WITH ANTI-METABOLITES', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.0599', 'EYE, PERFORATING WOUND (NOT INVOLVING INTRAOCULAR\nSTRUCTURES), REPAIR', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0600', 'EYE, PERFORATING WOUND (WITH INCARCERATION/PROLAPSE OF UVEAL TISSUE/LENS/VITREOUS), REPAIR', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0601', 'EYE, SOCKET, COMPLEX ANOPHTHALMIC SOCKET\nRECONSTRUCTION', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0602', 'EYE, SQUINT, COMPLEX STRABISMUS SURGERY (4 OR MORE\nMUSCLES, TRANSPOSITION, MUSCLE SPLITTING)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0603', 'EYE, SQUINT, COMPLEX STRABISMUS SURGERY (VESSEL SPARING SX, PARALYTIC AND RESTRICTIVE STRABISMUS,\nHORIZONTAL COMBINED WITH OBLIQUE/VERTICAL', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.0604', 'EYE, SQUINT, OPERATION (ONE/BOTH EYES - 2 MUSCLES)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0605', 'EYE, SQUINT, OPERATION (ONE/BOTH EYES - 3 MUSCLES OR\nMORE)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0606', 'EYE, SQUINT, OPERATION (ONE/BOTH EYES - ADJUSTABLE\nSUTURES)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0607', 'EYE, SQUINT, OPERATION (ONE/BOTH EYES - TRANSPOSITION)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0608', 'EYE, THERMAL PHOTOCOAGULATION OF CHOROIDAL\nNEOVASCULARIZATION AND ALLIED CONDITIONS', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0609', 'EYE, VARIOUS LESIONS, ENUCLEATION WITHOUT IMPLANT', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0610', 'EYE, VARIOUS LESIONS, EVISCERATION', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0611', 'EYE, VARIOUS LESIONS, RESUTURING OF WOUND FOLLOWING\nINTRAOCULAR PROCEDURES', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.0612', 'EYEBALL, ENUCLEATION WITH ACRYLIC & SCLERAL BALL\nIMPLANT', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.0613', 'EYELID LOWERING (GOLD WEIGHT IMPLANT), BILATERAL', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0614', 'EYELID LOWERING (GOLD WEIGHT IMPLANT), UNILATERAL', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0615', 'EYELID, INVOLUTIONAL ENTROPION / ECTROPION CORRECTION\n(UNILATERAL)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0616', 'EYELID, PTOSIS, CONJUNCTIVAL MULLERECTOMY (BILATERAL)', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0617', 'EYELID, PTOSIS, CONJUNCTIVAL MULLERECTOMY (UNILATERAL)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0618', 'EYELIDS, BOTOX INJECTIONS FOR BLEPHAROSPASM &\nHEMIFACIAL SPASM', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.0619', 'EYELIDS, CHALAZION OR STYE EXCISION UNDER GENERAL\nANAESTHESIA', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.0620', 'EYELIDS, EXPOSURE, TARSORRHAPHY (PERMANENT)', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0621', 'EYELIDS, EXPOSURE, TARSORRHAPHY (TEMPORARY)', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.0622', 'EYELIDS, FULL THICKNESS LACERATION, REPAIR', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0623', 'EYELIDS, HEMANGIOMA, INTRA-LESION INJECTIONS (FULL\nCOURSE)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0624', 'EYELIDS, INVOLUTIONAL ECTROPION/ ENTROPION CORRECTION\n(BILATERAL)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0625', 'EYELIDS, NON-INVOLUTIONAL ECTROPION/ ENTROPION,\nCORRECTION (BILATERAL)', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0626', 'EYELIDS, NON-INVOLUTIONAL ENTROPION/ ECTROPION\nCORRECTION (UNILATERAL)', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0627', 'EYELIDS, PTOSIS, CORRECTION FASANELLA (BILATERAL)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0628', 'EYELIDS, PTOSIS, CORRECTION FASANELLA (UNILATERAL)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0629', 'EYELIDS, PTOSIS, CORRECTION LEVATOR PALPEBRAE SUPERIORIS\nRESECTION (BILATERAL)', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.0630', 'EYELIDS, PTOSIS, CORRECTION LEVATOR PALPEBRAE SUPERIORIS\nRESECTION (UNILATERAL)', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0631', 'EYELIDS, PTOSIS, CORRECTION WITH FASCIA LATA GRAFT\n(BILATERAL)', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.0632', 'EYELIDS, PTOSIS, CORRECTION WITH FASCIA LATA GRAFT\n(UNILATERAL)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0633', 'EYELIDS, SIMPLE LACERATION, REPAIR', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0634', 'EYELIDS, TRICHIASIS, CRYOTHERAPY', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0635', 'EYELIDS, TUMOR, EXCISION AND REPAIR WITH FULL THICKNESS\nSKIN GRAFTING', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0636', 'EYELIDS, TUMOR, EXCISION AND REPAIR WITH LOCAL FLAP', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0637', 'EYELIDS, TUMOR, SHAVING EXCISION', 2600000, 'TINDAKAN OPERATIF'); +INSERT INTO `tarif_rs` (`ID_Tarif_RS`, `Tindakan_RS`, `Tarif_RS`, `Kategori_RS`) VALUES +('R.TO.0638', 'EYELIDS, VARIOUS LESIONS, CANTHOPLASTY (MEDIAL/LATERAL)', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.0639', 'EYELIDS, VARIOUS LESIONS, COMPOSITE GRAFT (CHONDRO-\nCUTANEOUS/CHONDRO-MUCOSAL)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0640', 'EYELIDS, VARIOUS LESIONS, FULL THICKNESS WEDGE RESECTION\nWITH REPAIR', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0641', 'EYELIDS, VARIOUS LESIONS, MAJOR RECONSTRUCTION, INVOLVING ANTERIOR AND POSTERIOR LAMELLA AND MORE\nTHAN 1/3 LID', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.0642', 'EYELIDS, VARIOUS LESIONS, MULTIPLE PLASTIC LID PROCEDURES', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.0643', 'EYELIDS, VARIOUS LESIONS, RECONSTRUCTION USING FULL\nTHICKNESS FLAP', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0644', 'EYELIDS, VARIOUS LESIONS, UPPER BLEPHAROPLASTY,\nBILATERAL', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0645', 'EYELIDS, VARIOUS LESIONS, UPPER BLEPHAROPLASTY,\nUNILATERAL', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0646', 'EYELIDS, VARIOUS LESIONS, WHOLE THICKNESS\nRECONSTRUCTION (OTHER THAN DIRECT SUTURE ONLY)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0647', 'FACE, CONTOUR DEFECT, RECONSTRUCTION / INSERTION OF\nIMPLANT(S)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0648', 'FACE, DEFECT / DEFORMITY, RECONSTRUCTION / INSERTION OF\nIMPLANT', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0649', 'FACE, FRACTURE, ENDOSCOPIC REDUCTION AND FIXATION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0650', 'FACE, FRACTURES (MORE THAN 2), OPEN REDUCTION AND\nINTERNAL FIXATION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0651', 'FACE, FRACTURES (PANFACIAL), OPEN REDUCTION AND\nINTERNAL FIXATION', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.0652', 'FACE, INFECTION / OSTEOMYELITIS, MAJOR\nDRAINAGE/SEQUESTRECTOMY', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0653', 'FACE, INFECTION / OSTEOMYELITIS, SIMPLE DRAINAGE\n/SEQUESTRECTOMY', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0654', 'FACE, INTRAOSSEOUS TUMOR (LARGE), EXCISION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0655', 'FACE, INTRAOSSEOUS TUMOR (SMALL), EXCISION', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0656', 'FACIAL, TRIGEMINAL GANGLION BLOCK, ANAESTHETIC', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0657', 'FACIAL, TRIGEMINAL GANGLION BLOCK, NEUROLYTIC', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0658', 'FACIAL, TRIGEMINAL NERVE BLOCK, ANAESTHETIC', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0659', 'FACIAL, TRIGEMINAL NERVE BLOCK, NEUROLYTIC', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.0660', 'FALLOPIAN TUBE, BLOCKED TUBE, FLUOROSCOPIC TRANSCERVICAL FALLOPIAN TUBAL RECANALISATION\n(FTR)', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0661', 'FALLOPIAN TUBE, BLOCKED TUBES, CORNUAL REANASTOMOSIS\n(MICROSURGERY/MIS)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0662', 'FALLOPIAN TUBE, BLOCKED TUBES, PLASTIC REPAIR\n(MICROSURGERY/MIS)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0663', 'FALLOPIAN TUBE, BLOCKED TUBES, PLASTIC REPAIR /\nSALPINGOSTOMY (MACROSURGERY)', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.0664', 'FALLOPIAN TUBE, BLOCKED TUBES, TUBAL REANASTOMOSIS,\nMIS', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0665', 'FALLOPIAN TUBE, BLOCKED TUBES, TUBOPLASTY,\nRECANALISATION, HYSTEROSCOPIC', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0666', 'FALLOPIAN TUBE, COMPLETED FAMILY, DIVISION/LIGATION', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.0667', 'FALLOPIAN TUBE, FALLOPOSCOPY', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.0668', 'FALLOPIAN TUBE, PERITUBAL ADHESIONS, SALPINGOLYSIS\n(MICROSURGERY/MIS)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0669', 'FALLOPIAN TUBE, PERITUBAL ADHESIONS,\nSALPINGOLYSIS (MACROSURGERY)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0670', 'FALLOPIAN TUBE, REMOVAL OF ECTOPIC GESTATION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0671', 'FALLOPIAN TUBE, STERILIZATION, HYSTEROSCOPIC', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.0672', 'FALLOPIAN TUBE, STERILIZATION, MIS', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.0673', 'FALLOPIAN TUBE, TUBAL PATHOLOGY OTHER THAN ECTOPIC,\nSALPINGECTOMY/ SALPINGOSTOMY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0674', 'FALLOPIAN TUBE, TUBAL PATHOLOGY, SALPINGECTOMY, MIS', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0675', 'FALLOPIAN TUBE, TUBO-OVARIAN ABSCESS,\nDRAINAGE(TRANSABDOMINAL)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0676', 'FALLOPIAN TUBE/UTERUS/OVARY, LAPAROSCOPY, DIAGNOSTIC,\nWITH HYDROTUBATION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0677', 'FALLOPIAN TUBE/UTERUS/OVARY, LAPAROSCOPY,\nTHERAPEUTIC', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0678', 'FASCIA (DEEP), RUPTURE WITH HERNIATED MUSCLE, REPAIR', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0679', 'FASCIA PALMAR, DUPUYTREN\'S CONTRACTURE, FASCIECTOMY\n(MULTIPLE)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0680', 'FASCIA PALMAR, DUPUYTREN\'S CONTRACTURE, FASCIECTOMY\n(SINGLE)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0681', 'FAT TRANSFER, CORRECTION OF CONTOURS/CONGENITAL DEFORMITIES, RECONSTRUCTION POST ABLATIVE SURGERY/TRAUMA,\n<=50CC', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.0682', 'FAT TRANSFER, CORRECTION OF CONTOURS/CONGENITAL DEFORMITIES,\nRECONSTRUCTION POST ABLATIVE SURGERY/TRAUMA,\n>= 100CC', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0683', 'FAT TRANSFER, CORRECTION OF CONTOURS/CONGENITAL DEFORMITIES,\nRECONSTRUCTION POST ABLATIVE SURGERY/TRAUMA,\n50 - 100CC', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0684', 'FEMALE GENITALIA, TRANSSEXUALISM (TRANSVESTISM), SEX\nREASSIGNMENT (FEMALE TO MALE)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0685', 'FEMALE GENITALIA, TRANSSEXUALISM (TRANSVESTISM), SEX REASSIGNMENT WITH MASTECTOMY (FEMALE TO\nMALE)', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0686', 'FEMUR, DELAYED/NON UNION, WITH BONE GRATING', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0687', 'FEMUR, DELAYED/NON UNION, WITH RE-INTERNAL FIXATION\nAND BONE GRAFTING', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0688', 'FEMUR, FRACTURE (COMPLEX INTRA-ARTICULAR), OPEN\nREDUCTION AND INTERNAL FIXATION (ORIF) WITH PLATE AND SCREWS', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0689', 'FEMUR, FRACTURE (FEMUR SHAFT), INTRAMEDULLARY\nNAILING/ROD (WITH OR WITHOUT LOCKING)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0690', 'FEMUR, FRACTURE (INTERCONDYLAR), OPEN REDUCTION AND\nINTERNAL FIXATION (ORIF)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0691', 'FEMUR, FRACTURE (MULTIFRAGMENTARY), INTRAMEDULLARY\nNAILING (WITH OR WITHOUT LOCKING)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0692', 'FEMUR, FRACTURE (PAEDIATRIC SHAFT), INTRAMEDULLARY\nFLEXIBLE NAILING', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0693', 'FEMUR, FRACTURE (SINGLE CONDYLAR), OPEN REDUCTION AND\nINTERNAL FIXATION (ORIF)', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0694', 'FEMUR, FRACTURE, OPEN REDUCTION AND INTERNAL FIXATION\nWITH PLATE AND SCREWS', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0695', 'FEMUR, NECK OF FEMUR FRACTURE (PAEDIATRIC), PIN\nFIXATION', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0696', 'FEMUR, SLIPPED CAPITAL FEMORAL EPIPHYSIS (SCFE), SCREW\nFIXATION', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0697', 'FINGER, DEFECT/CONTRACTURE (MULTIPLE), RECONSTRUCTION', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.0698', 'FINGER, DEFECT/CONTRACTURE (SINGLE), RECONSTRUCTION', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0699', 'FINGER, DEFORMITIES, CORRECTION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0700', 'FINGER, INJURY, DEBRIDEMENT', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0701', 'FINGER, MACRODACTYLY, SURGICAL REDUCTION OF ENLARGED\nELEMENTS, MULTIPLE DIGITS', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0702', 'FINGER, MACRODACTYLY, SURGICAL REDUCTION OF ENLARGED\nELEMENTS, SINGLE DIGIT', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0703', 'FINGER, RING CONSTRICTION (MULTIPLE), CORRECTION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0704', 'FINGER, RING CONSTRICTION (SINGLE), CORRECTION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0705', 'FINGER, SWAN NECK/BOUTONNIERE DEFORMITY (SINGLE),\nCORRECTION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0706', 'FINGER, SYNDACTYLY (MULTIPLE), SEPARATION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0707', 'FINGER, SYNDACTYLY (SINGLE), CORRECTION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0708', 'FINGER, TRAUMA, REPLANTATION (MULTIPLE)', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.0709', 'FINGER, TRAUMA, REPLANTATION/TRANSPLANTATION (SINGLE)', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0710', 'FINGER, TRAUMA, TERMINALISATION (MULTIPLE)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0711', 'FINGER, TRAUMA, TERMINALISATION (SINGLE)', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0712', 'FINGER, VARIOUS LESIONS, AMPUTATION (MULTIPLE)', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0713', 'FINGER, VARIOUS LESIONS, AMPUTATION (SINGLE)', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.0714', 'FINGER, VARIOUS LESIONS, RAY AMPUTATION (MULTIPLE)', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0715', 'FINGER, VARIOUS LESIONS, RAY AMPUTATION (SINGLE)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0716', 'FINGER, VARIOUS LESIONS, SYNOVECTOMY WITH SOFT TISSUE\nRECONSTRUCTION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0717', 'FOOT, ACHILLES TENDON RECONSTRUCTION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0718', 'FOOT, CONGENITAL TALIPES EQUINOVARUS (CTEV), BILATERAL\nRELEASE', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.0719', 'FOOT, CONGENITAL TALIPES EQUINOVARUS (CTEV), MEDIAL\nRELEASE', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0720', 'FOOT, CONGENITAL TALIPES EQUINOVARUS (CTEV), POST\nMEDIAL RELEASE', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.0721', 'FOOT, CONGENITAL TALIPES EQUINOVARUS (CTEV), POST\nRELEASE', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0722', 'FOOT, CONGENITAL TALIPES EQUINOVARUS (CTEV), POSTERIOR\nMEDIAL RELEASE WITH REVISION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0723', 'FOOT, CRUSH INJURIES (COMPLEX), WOUND DEBRIDEMENT', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0724', 'FOOT, CRUSH INJURIES (SIMPLE), WOUND DEBRIDEMENT', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0725', 'FOOT, FRACTURES, COMPLEX, MULTIPLE, INCLUDING TALUS AND CALCANEUM, OPEN REDUCTION AND INTERNAL FIXATION', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0726', 'FOOT, FRACTURES, SIMPLE, SINGLE', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0727', 'FOOT, HAGLUND\'S DEFORMITY, OSTEOTOMY', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0728', 'FOOT, HALLUX VALGUS/HAMMER TOE, PROXIMAL OSTEOTOMY, WITH OR WITHOUT SOFT TISSUE\nRECONSTRUCTION', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0729', 'FOOT, HALLUX VALGUS/HAMMER TOE, SOFT TISSUE\nRECONSTRUCTION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0730', 'FOOT, MULTIPLE FOOT OSTEOTOMIES', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0731', 'FOOT, ONE BONE OSTEOTOMY WITH SOFT TISSUE\nRELEASE, CUBOID', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0732', 'FOOT, ONE BONE OSTEOTOMY WITH SOFT TISSUE\nRELEASE, DWYER?S (CALCANEAL)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0733', 'FOOT, POLYDACTYLY, EXCISION', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.0734', 'FOOT, POLYDACTYLY, EXCISION WITH RECONSTRUCTION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0735', 'FOOT, POSTERIOR TIBIAL TENDON DYSFUNCTION (PTTD),\nPOSTERIOR TIBIALIS RECONSTRUCTION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0736', 'FOOT, TENDON TRANSFERS, SPLIT TIBIALIS ANTERIOR TENDON\nTRANSFER (SPLATT)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0737', 'FOOT, TENDON TRANSFERS, SPLIT TIBIALIS POSTERIOR TENDON\nTRANSFER (SPLOTT)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0738', 'FOOT, TENDON TRANSFERS, TIBIA ANTERIOR TRANSFER', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0739', 'FOOT, VARIOUS LESIONS, MORE THAN ONE JOINT,\nARTHRODESIS', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0740', 'FOOT, VARIOUS LESIONS, OSTEOTOMY, WITH OR WITHOUT\nTENDON RECONSTRUCTION', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0741', 'FOREARM, RADIAL HEAD FRACTURE, OPEN REDUCTION OF\nRADIAL HEAD FOR MISSED MONTEGGIA', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0742', 'FOREARM, RADIUS/ULNA SHAFT FRACTURE, INTRAMEDULLARY\nROD', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0743', 'GALLBLADDER (ACUTE/COMPLICATED), OPEN OR\nLAPARASCOPIC CHOLECYESTECTOMY', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.0744', 'GALLBLADDER, CHOLECYSTITIS, IMAGING GUIDED\nPERCUTANEOUS CHOLECYSTOSTOMY', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0745', 'GALLBLADDER, TUMOUR, RADICAL CHOLECYSTECTOMY WITH SEGMENT 4B AND 5 LIVER RESECTION AND\nRADICAL LYMPHADENECTOMY', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.0746', 'GALLBLADDER, TUMOUR, RADICAL CHOLECYSTECTOMY WITH SEGMENT 4B AND 5 LIVER RESECTION AND\nRADICAL LYMPHADENECTOMY AND CHOLEDOCHECTOMY WITH\nHEPATICO-ENTERIC ANASTOMOSIS', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.0747', 'GALLBLADDER, VARIOUS LESIONS, CHOLECYSTECTOMY (OPEN\nOR LAP)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0748', 'GALLBLADDER, VARIOUS LESIONS, CHOLECYSTECTOMY AND\nCHOLEDOCHO- JEJUNOSTOMY/DUODENOSTOMY/GASTROSTOMY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0749', 'GALLBLADDER, VARIOUS LESIONS, CHOLECYSTECTOMY AND\nREPAIR OF CHOLECYSTO-ENTERIC/ CHOLECYSTO- CHOLEDOCHAL FISTULA (OPEN OR LAP)', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.0750', 'GALLBLADDER, VARIOUS LESIONS, CHOLECYSTECTOMY WITH\nINTRAOPERATIVE CHOLANGIOGRAM (OPEN OR LAP)', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0751', 'GALLBLADDER, VARIOUS LESIONS, CHOLECYSTECTOMY,\nCHOLEDOCHOTOMY, COMMON BILE DUCT EXPLORATION WITH CHOLEDOCHO-DUODENOSTOMY (OPEN OR LAP)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0752', 'GALLBLADDER, VARIOUS LESIONS, CHOLECYSTO-\nDUODENOSTOMY/CHOLECYSTO- GASTRECTOMY/CHOLECYSTO-JEJUNOSTOMY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0753', 'GALLBLADDER, VARIOUS LESIONS, CHOLECYSTOSTOMY\n(PARTIAL, OPEN)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0754', 'GALLBLADDER, VARIOUS LESIONS, MIS/OPEN\nCHOLECYSTECTOMY AND TRANSCYSTIC COMMON BILE DUCT EXPLORATION', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0755', 'GENITAL TRACT, CANCER, STAGING UNDER GENERAL ANESTHESIA (INCLUDES CYSTOSCOPY/DILATATION &\nCURETTAGE/BIOPSY)', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.0756', 'GENITAL TRACT, PELVIC CYST, ULTRASOUND GUIDED\nPROCEDURE-ASPIRATION', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0757', 'HAND AND WRIST, RHEUMATOID HAND RECONSTRUCTION\nINCLUDING MULTIPLE JOINT SYNOVECTOMY, BONE/JOINT PROCEDURES WITH ARTHROPLASTY (MULTIPLE) AND SOFT TISSUE PROCEDURES', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.0758', 'HAND AND WRIST, RHEUMATOID HAND RECONSTRUCTION\nINCLUDING SYNOVECTOMY,\nBONE/JOINT PROCEDURES WITH/WITHOUT REPLACEMENT ARTHROPLASTY, AND SOFT TISSUE PROCEDURES', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0759', 'HAND, AMPUTATED DIGIT(S), TOE TO HAND TRANSFER', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.0760', 'HAND, BURNS (MAJOR), EXCISION AND SPLIT SKIN GRAFT', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0761', 'HAND, CLOSED FRACTURE, ORIF (MULTIPLE), JOINT', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0762', 'HAND, CLOSED FRACTURE, ORIF (MULTIPLE), NON-JOINT', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0763', 'HAND, CLOSED FRACTURE, ORIF WITH K- WIRE/CERCLAGE WIRE\nFIXATION', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0764', 'HAND, CLOSED FRACTURE, ORIF/PLATE AND SCREWS (SINGLE),\nJOINT/NON-JOINT', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0765', 'HAND, CLOSED FRACTURE/DISLOCATION, OPEN REDUCTION\nAND FIXATION (SINGLE)', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0766', 'HAND, COMPLEX INJURIES, DEBRIDEMENT WITH\nREPAIR/RECONSTRUCTION (1-2 TENDONS INVOLVED OR 1-2 FRACTURES)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0767', 'HAND, COMPLEX INJURIES, DEBRIDEMENT WITH\nREPAIR/RECONSTRUCTION (MORE THAN 2 TENDONS INVOLVED OR MORE THAN 2 FRACTURES)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0768', 'HAND, COMPLEX INJURIES, MICROSURGICAL\nREPAIR/RECONSTRUCTION, >1 DIGIT', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0769', 'HAND, COMPLEX INJURIES, MICROSURGICAL\nREPAIR/RECONSTRUCTION, SINGLE DIGIT', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0770', 'HAND, CRUSH INJURIES (COMPLEX), WOUND DEBRIDEMENT', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0771', 'HAND, CRUSH INJURIES (SIMPLE), WOUND DEBRIDEMENT', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.0772', 'HAND, DEEP INFECTION, DRAINAGE', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0773', 'HAND, DEFORMITIES, MAJOR RECONSTRUCTIVE PROCEDURES', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0774', 'HAND, DEFORMITIES, OSTEOTOMY', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0775', 'HAND, DEFORMITY, INTRINSIC MUSCLE\nRELEASE/TRANSFER/EXTENSOR RELOCATION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0776', 'HAND, EXTRA DIGIT, AMPUTATION/STUMP REVISION', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.0777', 'HAND, FLEXOR TENDON INJURIES, INSERTION OF SILASTIC\nROD(S)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0778', 'HAND, FLEXOR TENDON, PULLEY RECONSTRUCTION', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0779', 'HAND, FLEXOR TENDON, TRIGGER FINGER (MULTIPLE), RELEASE', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0780', 'HAND, FLEXOR TENDON, TRIGGER FINGER (SINGLE), RELEASE', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.0781', 'HAND, FOREIGN BODY (DEEP), REMOVAL WITH MOBILISATION\nOF NEUROVASCULAR BUNDLE', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0782', 'HAND, FOREIGN BODY (SUPERFICIAL), REMOVAL WITH\nMOBILISATION OF NEUROVASCULAR BUNDLE', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.0783', 'HAND, FRACTURE OF FINGERS/METACARPALS, EXTERNAL\nFIXATION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0784', 'HAND, FRACTURE OF FINGERS/METACARPALS, NON- UNION,\nBONE-GRAFTING AND FIXATION (MULTIPLE)', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.0785', 'HAND, FRACTURE OF FINGERS/METACARPALS, NON- UNION,\nBONE-GRAFTING AND FIXATION (SINGLE)', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0786', 'HAND, FRACTURES/DISLOCATION, OPEN REDUCTION AND\nINTERNAL FIXATION (MULTIPLE)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0787', 'HAND, FREE TOE PULP TRANSFER', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.0788', 'HAND, OPEN FRACTURE, DEBRIDEMENT AND ORIF (MULTIPLE),\nJOINT', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.0789', 'HAND, OPEN FRACTURE, DEBRIDEMENT AND ORIF (MULTIPLE),\nNON-JOINT', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.0790', 'HAND, OPEN FRACTURE, DEBRIDEMENT AND ORIF (SINGLE),\nJOINT', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0791', 'HAND, OPEN FRACTURE, DEBRIDEMENT AND ORIF (SINGLE),\nNON-JOINT', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0792', 'HAND, POLYDACTYLY, AMPUTATION WITH RECONSTRUCTION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0793', 'HAND, SCAR, REVISION', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0794', 'HAND, SOFT TISSUE TUMOR, EXCISION <1.5CM', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.0795', 'HAND, SOFT TISSUE TUMOR, EXCISION >1.5CM SIZE', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0796', 'HAND, SUPERFICIAL INFECTION, DRAINAGE', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.0797', 'HAND, TUMORS, EXCISION WITH DISSECTION OF\nNEUROVASCULAR BUNDLE', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0798', 'HAND, WART/CORN/NAEVUS, EXCISION', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0799', 'HEAD, VARIOUS LESIONS, CRANIOFACIAL RESECTION AND\nRECONSTRUCTION', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.0800', 'HEAD-FACE, SOFT TISSUE TUMORS (SMALL), EXCISION', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0801', 'HEAD-FACE, TRAUMA, CRANIOFACIAL APPROACH REDUCTION\nAND FIXATION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0802', 'HEAD-FACE, TRAUMA, CRANIOFACIAL APPROACH REDUCTION\nAND FIXATION WITH BONE GRAFT', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.0803', 'HEAD-FACE, VARIOUS LESIONS, MAJOR CORRECTIVE SURGERY', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.0804', 'HEART (GREAT VESSELS), VARIOUS LESIONS, INTRATHORACIC\nOPERATION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0805', 'HEART, AORTIC/MITRAL VALVE LESIONS, BALLOON\nVALVULOPLASTY', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0806', 'HEART, ARRHYTHMIA, IMPLANTABLE CARDIOVERTER\nDEFIBRILLATOR (ICD) IMPLANTATION', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.0807', 'HEART, AUTOMATIC IMPLANTABLE CARDIOVERTER\nDEFIBRILLATOR (AICD)/PACEMAKER LEAD EXTRACTION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0808', 'HEART, AUTOMATIC IMPLANTABLE CARDIOVERTER\nDEFRIBRILLATOR DUAL CHAMBER (INCLUSIVE OF DEFIBRILLATION THRESHOLD TESTING (DFT))', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.0809', 'HEART, AUTOMATIC IMPLANTABLE CARDIOVERTER\nDEFRIBRILLATOR SINGLE CHAMBER (INCLUSIVE OF DFT)', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0810', 'HEART, BIVENT AUTOMATIC IMPLANTABLE CARDIOVERTER\nDEFRIBRILLATOR (INCLUSIVE OF DFT)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0811', 'HEART, BIVENTRICULAR PACING', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0812', 'HEART, CARDIAC CATHETERISATION (LEFT & RIGHT), INVOLVING\nPRESSURE OR SATURATION MEASUREMENT (WITH LEFT AND/OR RIGHT VENTRICULOGRAPHY)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0813', 'HEART, CARDIAC CATHETERISATION (LEFT) AND INTRACORONARY PHYSIOLOGICAL ASSESSMENT (INCLUSIVE OF PRESSURE WIRE) WITHOUT PERCUTANEOUS\nTRANSLUMINAL CORONARY ANGIOPLASTY (PTCA)', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0814', 'HEART, CAROTID ANGIOPLASTY AND STENTING (WITH EMBOLIC\nPROTECTION)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0815', 'HEART, CONGENITAL HEART DISEASE (COMPLEX), OPEN HEART\nSURGERY', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.0816', 'HEART, CONGENITAL HEART DISEASE, BLALOCK- TAUSSIG\nOPERATION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0817', 'HEART, CONGENITAL HEART DISEASE, OPEN HEART SURGERY', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.0818', 'HEART, CORONARY ANGIOGRAPHY', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0819', 'HEART, CORONARY ARTERY BYPASS GRAFT AND VALVE\nSURGERY', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.0820', 'HEART, CORONARY ARTERY DISEASE, CARDIAC CATHERISATION\nAND CORONARY ANGIOGRAM WITH/WITHOUT CORONARY GRAFT ANGIOGRAPHY', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0821', 'HEART, CORONARY DISEASE, CORONARY ANGIOPLASTY\n(TRANSLUMINAL), WITH/WITHOUT ANGIOCARDIOGRAPHY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0822', 'HEART, CORONARY DISEASE, CORONARY ARTERY BYPASS GRAFT\n(OPEN/MIS/OFF PUMP)', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.0823', 'HEART, CORONARY GRAFT ANGIOGRAPHY WITH/WITHOUT\nANGIOGRAPHY OF NATIVE CORONARY ARTERIES', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0824', 'HEART, ELECTROPHYSIOLOGY STUDY WITHOUT ABLATION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0825', 'HEART, HEART BLOCK, REPLACEMENT OF TRANSVENOUS\nELECTRODE', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0826', 'HEART, HEART BLOCK/ARRHYTHMIA, INSERTION OF DUAL\nCHAMBER PACEMAKER (PERMANENT)', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0827', 'HEART, HEART BLOCK/ARRHYTHMIA, INSERTION OF SINGLE\nCHAMBER PACEMAKER (PERMANENT)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0828', 'HEART, IMPLANT OF EPICARDIAL LEADS FOR PERMANENT\nPACEMAKERS', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0829', 'HEART, IMPLANTATION OF MECHANICAL HEART DEVICE (LEFT\nVENTRICULAR ASSIST DEVICE IMPLANT)', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.0830', 'HEART, INSERTABLE LOOP RECORDER', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0831', 'HEART, INVASIVE INTRAVASCULAR IMAGING/VISUALIZATION, INCLUSIVE OF IV U/S AND OCT, WITHOUT PERCUTAENOUS TRANSLUMINAL CORONARY\nANGIOPLASTY (PTCA)', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0832', 'HEART, LEFT ATRIAL APPENDAGE CLOSURE WITH/WITHOUT\nWATCHMAN DEVICE IMPLANTATION', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0833', 'HEART, LEFT VENTRICULAR ANEURYSM, RESECTION WITHOUT\nCORONARY ARTERY BYPASS', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.0834', 'HEART, LUNG, EXTRA CORPOREAL MEMBRANE OXYGENATION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0835', 'HEART, MAPPING AND PERCUTANEOUS ABLATION OF VENTRICULAR ARRHYTHMIA CIRCUITS OR FOCI, INCLUDING ALL ASSOCIATED ELECTROPHYSIOLOGICAL\nSTUDIES PERFORMED ON THE SAME DAY', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0836', 'HEART, PATENT DUCTUS ARTERIOSUS, LIGATION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0837', 'HEART, PERCUTANEOUS ABLATION OF ARRHYTHMIA CIRCUIT OR FOCUS OR ISOLATION PROCEDURE\nINVOLVING 1 ATRIAL CHAMBER', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0838', 'HEART, PERCUTANEOUS ABLATION OF ARRHYTHMIA CIRCUITS OR FOCI, OR ISOLATION PROCEDURE\nINVOLVING BOTH ATRIAL CHAMBERS AND INCLUDING CURATIVE PROCEDURES FOR ATRIAL FIBRILLATION AND/OR ALL ASSOCIATED ELECTROPHYSIOLOGICAL STUDIES PERFORMED ON\nTHE SAME DAY', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.0839', 'HEART, PERCUTANEOUS CLOSURE OF CONGENITAL HEART\nDEFECT', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0840', 'HEART, PERCUTANEOUS TRANSLUMINAL CORONARY\nANGIOPLASTY (PTCA) + ARTERECTOMY (E.G ROTABLATION)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0841', 'HEART, PERCUTANEOUS TRANSLUMINAL CORONARY ANGIOPLASTY (PTCA) + STENTING (1 VESSEL), COMPLEX (E.G. RETROGRADE CTO INTERVENTION, COMPLEX BIFURCATION/TRIFURCATION, IABP, IMPELLA, LVAD), WITH/WITHOUT IVUS/FFR OR OTHER PHYSIOLOGICAL STUDIES2', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0842', 'HEART, PERCUTANEOUS TRANSLUMINAL CORONARY ANGIOPLASTY (PTCA) + STENTING (MORE THAN 1\nVESSEL), WITH/WITHOUT IVUS/FFR OR OTHER PHYSIOLOGICAL\nSTUDIES', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0843', 'HEART, PERICARDIAL DISEASE, PERICARDIECTOMY', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0844', 'HEART, PERICARDIAL EFFUSION, PARACENTESIS', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.0845', 'HEART, PERICARDIAL EFFUSION, TRANSTHORACIC DRAINAGE', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0846', 'HEART, PLACEMENT OF EPICARDIAL PACING WIRES (OPEN AND\nVIDEO-ASSISTED THORACIC SURGERY (VATS))', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0847', 'HEART, PRIMARY PERCUTANEOUS TRANSLUMINAL CORONARY ANGIOPLASTY FOR ST-ELEVATION MYOCARDIAL INFARCTION', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0848', 'HEART, PROXIMAL AORTIC ANEURYSM, AORTIC ROOT\nREPLACEMENT WITH CORONARY ARTERY REIMPLANTATION', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.0849', 'HEART, PULMONARY INCOMPETENCE, PULMONARY ARTERY\nBANDING', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0850', 'HEART, PULMONARY VALVE LESIONS, BALLOON\nVALVULOPLASTY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0851', 'HEART, REPLACEMENT OF PACEMAKER', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.0852', 'HEART, SEPTAL DEFECTS (ATRIAL/VENTRICULAR)/PATENT FORAMEN OVALE (PFO)\nDEFECT CLOSURE', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0853', 'HEART, SIMPLE CONGENITAL OPEN-HEART SURGERY (ATRIAL SEPTAL DEFECT & VENTRICULAR SEPTAL\nDEFECT)', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0854', 'HEART, SYNCHRONISED CARDIOVERSION', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.0855', 'HEART, TRANS-CATHETAR PERCUTANEOUS PATENT DUCTUS\nARTERIOSUS (PDA) OCCLUSION', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0856', 'HEART, TRANS-MYOCARDIAL REVASCULARISATION (TMR) AS A\nSOLE PROCEDURE', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0857', 'HEART, TRANS-MYOCARDIAL REVASCULARISATION (TMR) AS AN\nADJUNCT PROCEDURE', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0858', 'HEART, VALVE (REPAIR / REPLACEMENT), 1 VALVE', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.0859', 'HEART, VALVE (REPAIR / REPLACEMENT), MORE THAN 1\nVALVE', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.0860', 'HEART, VARIOUS LESIONS, ANEURYSMECTOMY AND/OR COMBINED VALVE REPLACEMENT AND/OR REPAIR AND\nCORONARY BYPASS GRAFTING', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.0861', 'HEART, VARIOUS LESIONS, BALLOON ATRIAL SEPTOSTOMY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0862', 'HEART, VARIOUS LESIONS, CARDIAC BIOPSY', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.0863', 'HEART, VARIOUS LESIONS, HEART TRANSPLANTATION', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.0864', 'HEART, VARIOUS LESIONS, OPEN HEART SURGERY (ONE\nPROCEDURE)', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.0865', 'HEART, VARIOUS LESIONS, OPEN HEART SURGERY ON COMBINED SURGERY, TWO PROCEDURES AT ONE\nSITTING', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.0866', 'HEART, VARIOUS LESIONS, RIGHT HEART CATHETERISATION WITH LEFT HEART\nCATHETERISATION (INDIRECT)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0867', 'HEART, VARIOUS LESIONS, RIGHT/LEFT HEART\nCATHETERIZATION', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0868', 'HEART/LUNG, VARIOUS LESIONS, CARDIOPULMONARY\nPERFUSION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0869', 'HEART/LUNG, VARIOUS LESIONS, HEART AND LUNG\nTRANSPLANTATION', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.0870', 'HEART-ATRIUM, ARRHYTHMIA, ARRHYTHMIA SURGERY', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0871', 'HEART-VENTRICLE, ARRHYTHMIA, ARRHYTHMIA SURGERY', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.0872', 'HIP, ACETABULUM, FRACTURE, DOUBLE COLUMN FIXATION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0873', 'HIP, ACETABULUM, FRACTURE, SINGLE COLUMN FIXATION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0874', 'HIP, AVASCULAR NECROSIS, CORE DECOMPRESSION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0875', 'HIP, AVASCULAR NECROSIS, CORE DECOMPRESSION WITH\nGRAFTING/BONE SUBSTITUTE/BONE CEMENT', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0876', 'HIP, CONGENITAL DISLOCATION, OPEN REDUCTION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0877', 'HIP, CONGENITAL DISLOCATION, OPEN REDUCTION INCLUDING\nRECONSTRUCTION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0878', 'HIP, DISLOCATION, MANIPULATION AND REDUCTION', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0879', 'HIP, DISLOCATION, OPEN REDUCTION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0880', 'HIP, OPEN REDUCTION WITH ACETABULAR OR FEMORAL\nOSTEOTOMIES', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.0881', 'HIP, SNAPPING SYNDROME, RELEASE', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0882', 'HIP, SOFT TISSUE RELEASE AND OPEN REDUCTION ONLY', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.0883', 'HIP, VARIOUS LESIONS, APPLICATION OF HIP SPICAS', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0884', 'HIP, VARIOUS LESIONS, ARTHRODESIS', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0885', 'HIP, VARIOUS LESIONS, ARTHROTOMY', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0886', 'HIP, VARIOUS LESIONS, ARTHROTOMY AND SYNOVECTOMY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0887', 'HIP, VARIOUS LESIONS, EXCISION/INTERPOSITION\nARTHROPLASTY', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0888', 'HIP, VARIOUS LESIONS, HEMI-ARTHROPLASTY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0889', 'HIP, VARIOUS LESIONS, PRIMARY TOTAL JOINT REPLACEMENT WITH AUGMENTATION, REQUIRING\nEXTRA IMPLANTS OR BONE GRAFTS, OPEN/MIS/NAVIGATED', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0890', 'HIP, VARIOUS LESIONS, PRIMARY TOTAL JOINT REPLACEMENT,\nOPEN/MIS/NAVIGATED', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.0891', 'HIP, VARIOUS LESIONS, REVISION TOTAL JOINT REPLACEMENT,\nOPEN/MIS/NAVIGATED', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.0892', 'HIP/KNEE, REMOVAL OF PROSTHESES WITH OR\nWITHOUT SPACER', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0893', 'HIP/KNEE, THERAPEUTIC ARTHROSCOPY, WITH/WITHOUT SYNOVECTOMY/ LABRAL REPAIR /FAI RESECTION FOR\nHIP', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0894', 'HUMERUS SUPRACONDYLAR AND INTERCONDYLAR FRACTURE', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0895', 'HUMERUS, CUBITUS VARUS, CORRECTIVE OSTEOTOMY WITH\nCAST OR PINNING', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0896', 'HUMERUS, CUBITUS VARUS, CORRECTIVE OSTEOTOMY WITH\nPLATING', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0897', 'HUMERUS, DELAYED/NON-UNION, RECONSTRUCTION WITH\nBONE GRAFTING WITHOUT INTERNAL FIXATION', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0898', 'HUMERUS, DELAYED/NON-UNION, RECONSTRUCTION WITH\nINTERNAL FIXATION AND BONE GRAFTING', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.0899', 'HUMERUS, HUMERUS SHAFT FRACTURE, CLOSED\nINTERLOCKING INTRAMEDULLARY NAIL', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0900', 'HUMERUS, HUMERUS SHAFT FRACTURE, COMPLEX MULTI-\nFRAGMENTARY INTRAMEDULLARY NAIL', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.0901', 'HUMERUS, PROXIMAL HUMERUS OR SUPRACONDYLAR\nFRACTURE, ORIF', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0902', 'INFERIOR TURBINATE REDUCTION (SUBMUCOUS\nDIATHERMY/RADIOFREQUENCY)', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.0903', 'INTERCOSTAL NERVE, BLOCK, ANAESTHETIC (MORE THAN 3\nLEVELS)', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.0904', 'INTERCOSTAL NERVE, BLOCK, ANAESTHETIC (UP TO 3\nLEVELS)', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0905', 'INTERCOSTAL NERVE, BLOCK, NEUROLYTIC (MORE THAN\n3 LEVELS)', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0906', 'INTERCOSTAL NERVE, BLOCK, NEUROLYTIC (UP TO 3\nLEVELS)', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.0907', 'INTERPLEURAL SPACE, BLOCK, CATHETER', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.0908', 'INTERPLEURAL SPACE, BLOCK, NO CATHETER', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0909', 'INTESTINE, BLEEDING GIT, MESENTERIC ARTERY EMBOLISATION', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0910', 'INTESTINE, ENTEROSTOMY, CLOSURE', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0911', 'INTESTINE, INTUSSUSCEPTION, REDUCTION (OPEN/MIS)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0912', 'INTESTINE, INTUSSUSCEPTION, REDUCTION BY FLUID', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.0913', 'INTESTINE, INTUSSUSCEPTION, RESECTION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0914', 'INTESTINE, MECKEL\'S DIVERTICULUM, VARIOUS LESIONS,\nRESECTION (LAP/OPEN)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0915', 'INTESTINE, SMALL BOWEL, ILEOSTOMY STENOSIS, REVISION', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0916', 'INTESTINE, SMALL BOWEL, VARIOUS LESIONS, ENTEROSTOMY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0917', 'INTESTINE, SMALL BOWEL, VARIOUS LESIONS, EXTENSIVE\nRESECTION WITH ANASTOMOSES, WITH OR WITHOUT STOMA (MIS/OPEN)', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.0918', 'INTESTINE, SMALL BOWEL, VARIOUS LESIONS, INTUBATION\nWITH/WITHOUT BIOPSY', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0919', 'INTESTINE, SMALL BOWEL, VARIOUS LESIONS, SIMPLE RESECTION WITH ANASTOMOSES, WITH OR WITHOUT\nSTOMA (MIS/OPEN)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0920', 'INTESTINE, SMALL BOWEL, VITELLO-INTESTINAL FISTULA,\nEXCISION', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0921', 'INTESTINE, TOTAL AGANGLIONOSIS, RECONSTRUCTION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0922', 'INTESTINE/STOMACH, UPPER GI ENDOSCOPY WITH POLYPECTOMY/REMOVAL OF FOREIGN BODY/DIATHERMY OF BLEEDING LESIONS/INJECTION OF\nVARICES/REMOVAL OF SINGLE POLYP3', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0923', 'INTESTINE/STOMACH, UPPER GI ENDOSCOPY WITH/WITHOUT\nBIOPSY4', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0924', 'IPSILATERAL MASTOPEXY/REDUCTION FOLLOWING BREAST, TUMOUR (MALIGNANT) WIDE EXCISION/LUMPECTOMY/SEGMENTAL OR PARTIAL MASTECTOMY, WITH OR WITHOUT SENTINEL NODE BIOPSY\nAND/OR AXILLARY CLEARANCE', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0925', 'IRIS RECONSTRUCTION / PUPILLOPLASTY', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0926', 'IRIS, TUMOR, EXCISION', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0927', 'IRIS, VARIOUS LESIONS, IRIDECTOMY/IRIDOTOMY', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0928', 'JOINT, VARIOUS LESIONS, JOINT\nASPIRATION/ARTHROCENTESIS/INJECTION', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.0929', 'JOINTS (FINGER), CONTRACTURE,\nCAPSULECTOMY/CAPSULOTOMY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0930', 'JOINTS (FINGER), VARIOUS LESIONS, ARTHRODESIS', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0931', 'JOINTS (FINGER), VARIOUS LESIONS, EXCISION ARTHROPLASTY', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0932', 'JOINTS (FINGER), VARIOUS LESIONS, REPLACEMENT\nARTHROPLASTY', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.0933', 'JOINTS (FINGER, INTERPHALANGEAL JOINTS, METACARPOPHALANGEAL JOINTS), SYNOVITIS, SYNOVECTOMY', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0934', 'JOINTS (FOOT EXCLUDING ANKLE), SYNOVITIS, SYNOVECTOMY', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0935', 'JOINTS (LOWER LIMB), DEFORMITIES, CORRECTIVE SURGERY\nWITH OSTEOTOMY ALONE', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0936', 'JOINTS (LOWER LIMB), DEFORMITIES, CORRECTIVE SURGERY\nWITH PLATE FIXATION AND FLUOROSCOPY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0937', 'JOINTS (LOWER LIMB), DISLOCATIONS, MANIPULATION AND\nKIRSCHNER WIRE FIXATION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0938', 'JOINTS (LOWER LIMB), DISLOCATIONS, WOUND DEBRIDEMENT', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.0939', 'JOINTS (LOWER LIMB), LOOSE BODIES, REMOVAL', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0940', 'JOINTS (LOWER LIMB), SMALL, VARIOUS LESIONS,\nARTHROPLASTY', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0941', 'JOINTS (LOWER LIMB), VARIOUS LESIONS, EPIPHYSIOLYSIS\nWITH/WITHOUT MICROSURGERY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0942', 'JOINTS (LOWER LIMB, EXCEPT HIP), SEPTIC ARTHRITIS,\nDRAINAGE WITH CURETTAGE AND DEBRIDEMENT', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0943', 'JOINTS (LOWER LIMB, EXCEPT HIP), SEPTIC ARTHRITIS, SIMPLE\nDRAINAGE', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.0944', 'JOINTS (LOWER LIMB, HIP), SEPTIC ARTHRITIS,\nCURETTAGE/DEBRIDEMENT AND IRRIGATION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0945', 'JOINTS (LOWER LIMB, HIP), SEPTIC ARTHRITIS, SIMPLE\nDRAINAGE', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0946', 'JOINTS (OTHER THAN FINGER), VARIOUS LESIONS, TOTAL JOINT\nREPLACEMENT', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.0947', 'JOINTS (OTHER THAN HAND AND WRIST), VARIOUS LESIONS,\nARTHRODESIS', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0948', 'JOINTS (SHOULDER), VARIOUS LESIONS, IMPINGEMENT\nSYNDROME', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0949', 'JOINTS (TEMPORO-MANDIBULAR), DISLOCATION,\nREDUCTION UNDER GENERAL ANAESTHESIA', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.0950', 'JOINTS (TEMPOROMANDIBULAR), VARIOUS LESIONS,\nARTHROCENTESIS (BILATERAL)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0951', 'JOINTS (TEMPOROMANDIBULAR), VARIOUS LESIONS,\nARTHROCENTESIS (UNILATERAL)', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.0952', 'JOINTS (TEMPOROMANDIBULAR), VARIOUS LESIONS,\nARTHROSCOPY (BILATERAL)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0953', 'JOINTS (TEMPOROMANDIBULAR), VARIOUS LESIONS,\nARTHROSCOPY (UNILATERAL)', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0954', 'JOINTS (TEMPORO-MANDIBULAR), VARIOUS LESIONS,\nCONDYLECTOMY WITH RECONSTRUCTION (BILATERAL)', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.0955', 'JOINTS (TEMPORO-MANDIBULAR), VARIOUS LESIONS,\nCONDYLECTOMY WITH RECONSTRUCTION (UNILATERAL)', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0956', 'JOINTS (TEMPORO-MANDIBULAR), VARIOUS LESIONS,\nCONDYLECTOMY/CORONOIDECTOMY/MENISECTOMY', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0957', 'JOINTS (TEMPORO-MANDIBULAR), VARIOUS LESIONS,\nCONDYLOTOMY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0958', 'JOINTS (TEMPORO-MANDIBULAR), VARIOUS LESIONS,\nPLICATION OF DISC', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0959', 'JOINTS (TEMPORO-MANDIBULAR), VARIOUS LESIONS,\nRECONSTRUCTION (BILATERAL)', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.0960', 'JOINTS (TEMPORO-MANDIBULAR), VARIOUS LESIONS,\nRECONSTRUCTION (UNILATERAL)', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0961', 'JOINTS (UPPER LIMB), CONTRACTURE,\nCAPSULECTOMY/CAPSULOTOMY (MULTIPLE)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0962', 'JOINTS (UPPER LIMB), DEFORMITIES/CONTRACTURE,\nCORRECTIVE SURGERY', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0963', 'JOINTS (UPPER LIMB), VARIOUS LESIONS, VASCULARISED JOINT\nTRANSFER', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.0964', 'JOINTS (UPPER LIMB), VASCULAR INJURY, MAJOR VASCULAR\nRECONSTRUCTION/ANASTOMOSIS/GRAFT', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0965', 'JOINTS (UPPER LIMB, EXCEPT SHOULDER), SEPTIC ARTHRITIS, DRAINAGE WITH CURRETAGE AND DEBRIDEMENT', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0966', 'JOINTS (UPPER LIMB, EXCEPT SHOULDER), SEPTIC ARTHRITIS,\nSIMPLE DRAINAGE', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.0967', 'JOINTS (UPPER LIMB, SHOULDER), SEPTIC ARTHRITIS/EFFUSION, CURETTAGE/DEBRIDEMENT AND IRRIGATION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0968', 'JOINTS (UPPER LIMB, SHOULDER), SEPTIC ARTHRITIS/EFFUSION,\nSIMPLE DRAINAGE', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0969', 'JOINTS (WRIST), VARIOUS LESIONS, ARTHRODESIS', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0970', 'JOINTS (WRIST, DISTAL RADIOULNAR JOINT), SYNOVITIS,\nSYNOVECTOMY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0971', 'JOINTS, ARTHROSCOPY, DIAGNOSTIC', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0972', 'JOINTS, MAJOR INTRA-ARTICULAR FRACTURE WITH DISCONTINUITY OR BONE LOSS, RECONSTRUCTION (FOR\nLOWER LIMB)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0973', 'JOINTS, MAJOR INTRA-ARTICULAR FRACTURE WITH DISCONTINUITY OR BONE LOSS, RECONSTRUCTION (FOR\nUPPER LIMB)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0974', 'JOINTS, VARIOUS LESIONS, PRIMARY TOTAL JOINT REPLACEMENT WITH AUGMENTATION, REQUIRING EXTRA\nIMPLANTS OR BONE GRAFTS, OPEN/MIS/NAVIGATED', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0975', 'JOINTS, VARIOUS LESIONS, REVISION TOTAL JOINT\nREPLACEMENT, OPEN/MIS/NAVIGATED', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.0976', 'KIDNEY AND URETER, VARIOUS LESIONS,\nNEPHROURETERECTOMY OPEN', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0977', 'KIDNEY AND URETER, VARIOUS LESIONS,\nNEPHROURETERECTOMY, MIS', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.0978', 'KIDNEY TRANSPLANT, DONATION (CADAVERIC DONOR)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0979', 'KIDNEY TRANSPLANT, DONATION (LIVE DONOR), OPEN/MIS', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0980', 'KIDNEY TRANSPLANT, RECIPIENT', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.0981', 'KIDNEY TRANSPLANT, RECIPIENT, DUAL KIDNEY TRANSPLANT\n(MARGINAL DONOR)', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.0982', 'KIDNEY, BLOCKED NEPHROSTOMY TUBE, CHANGE', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.0983', 'KIDNEY, CALCULUS, EXTRA CORPOREAL SHOCKWAVE\nLITHOTRIPSY (ESWL)', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0984', 'KIDNEY, CALCULUS, NEPHROLITHOTOMY/PYELOLITHOTOMY', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0985', 'KIDNEY, CALCULUS, PERCUTANEOUS NEPHROLITHOTOMY OR\nPERCUTANEOUS NEPHROSTOLITHOTOMY (PCNL)', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.0986', 'KIDNEY, CATHETER BLOCKAGE, IMAGING GUIDED NEPHROSTOMY CATHETER CHANGE/CATHETER\nADJUSTMENT', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.0987', 'KIDNEY, CYST, EXCISION', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0988', 'KIDNEY, CYST, IMAGING GUIDED PERCUTANEOUS ALCOHOL\nABLATION', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.0989', 'KIDNEY, CYST, IMAGING GUIDED PERCUTANEOUS ASPIRATION', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.0990', 'KIDNEY, CYST, MARSUPIALISATION, MIS', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0991', 'KIDNEY, HYDRONEPHROSIS, PERCUTANEOUS NEPHROSTOMY AND DRAINAGE CATHETER INSERTION\n(PCN AND DRAINAGE)', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.0992', 'KIDNEY, INJURY, REPAIR', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0993', 'KIDNEY, NEPHROPTOSIS, NEPHROPEXY', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0994', 'KIDNEY, PELVI-URETERIC JUNCTION OBSTRUCTION, OPEN\nPYELOPLASTY/URETEROCALYCOSTOMY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0995', 'KIDNEY, PERINEPHRIC ABSCESS, DRAINAGE (OPEN)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0996', 'KIDNEY, PYONEPHROSIS, DRAINAGE (OPEN)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0997', 'KIDNEY, PYONEPHROSIS, NEPHROSTOMY/PYELOSTOMY (OPEN)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0998', 'KIDNEY, RENAL ABSCESS/PERINEPHRIC ABSCESS, IMAGING\nGUIDED PERCUTANEOUS ASPIRATION', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.0999', 'KIDNEY, RENAL ABSCESS/PERINEPHRIC ABSCESS, IMAGING\nGUIDED PERCUTANEOUS DRAINAGE', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1000', 'KIDNEY, STAGHORN CALCULUS, NEPHROLITHOTOMY OR\nPERCUTANEOUS NEPHROSTOLITHOTOMY (PCNL)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1001', 'KIDNEY, STONES, IMAGING GUIDED PERCUTANEOUS RENAL\nSTONES REMOVAL', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1002', 'KIDNEY, TUMOUR, IMAGING GUIDED PERCUTANEOUS LOCAL ABLATION, SIMPLE (RADIOFREQUENCY,\nMICROWAVE, ETHANOL)', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1003', 'KIDNEY, TUMOUR, MIS GUIDED PERCUTANEOUS LOCAL\nABLATION (RADIOFREQUENCY, CRYOTHERAPY ETC)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1004', 'KIDNEY, VARIOUS LESIONS, BIOPSY (CLOSED)', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1005', 'KIDNEY, VARIOUS LESIONS, BIOPSY (OPEN)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1006', 'KIDNEY, VARIOUS LESIONS, CHECK NEPHROSTOGRAM', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.1007', 'KIDNEY, VARIOUS LESIONS, EXPLORATION', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1008', 'KIDNEY, VARIOUS LESIONS, IMAGING GUIDED PERCUTANEOUS\nBIOPSY (FOCAL LESIONS, TARGETED)', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1009', 'KIDNEY, VARIOUS LESIONS, IMAGING GUIDED PERCUTANEOUS BIOPSY (RENAL PARENCHYMA, NON DIRECTED)', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.1010', 'KIDNEY, VARIOUS LESIONS, PARTIAL NEPHRECTOMY,\nLAPARASCOPIC', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.1011', 'KIDNEY, VARIOUS LESIONS, PARTIAL NEPHRECTOMY, OPEN', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1012', 'KIDNEY, VARIOUS LESIONS, PERCUTANEOUS ANTEGRADE\nNEPHROSTOGRAPHY (PCN)', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.1013', 'KIDNEY, VARIOUS LESIONS, RADICAL NEPHRECTOMY\n(OPEN/MIS) WITH/WITHOUT IVC THROMBECTOMY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1014', 'KIDNEY, VARIOUS LESIONS, SIMPLE NEPHRECTOMY,\nLAPROSCOPIC', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.1015', 'KIDNEY, VARIOUS LESIONS, SIMPLE NEPHRECTOMY, OPEN', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1016', 'KIDNEY/URETER, ENDOPYELOTOMY (PERCUTANEOUS)', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1017', 'KIDNEY/URETER, PYELOPLASTY, UNILATERAL MIS/OPEN', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1018', 'KIDNEY/URETER, RETROGRADE INTRARENAL SURGERY OR RIRS\nUSING FLEXIBLE URETEROSCOPY (DIAGNOSTIC)', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1019', 'KIDNEY/URETER, RETROGRADE INTRARENAL SURGERY OR RIRS USING FLEXIBLE URETEROSCOPY (THERAPEUTIC - E.G.\nLITHOTRIPSY AND/OR BASKET EXTRACTION OF STONES)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1020', 'KNEE LIGAMENTS, DISRUPTION, RECONSTRUCTION AND REPAIR', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1021', 'KNEE, ARTHROSCOPY, KNEE LIGAMENT RECONSTRUCTION (1 OR\nMORE)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1022', 'KNEE, DISLOCATION, OPEN REDUCTION WITH REPAIR OF\nLIGAMENTS', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1023', 'KNEE, HEMARTHROSIS, ASPIRATION UNDER GENERAL\nANESTHESIA', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.1024', 'KNEE, LIGAMENTS/MENISCUS/CARTILAGE/BONE COMBINED,\nAUTOLOGOUS CHONDROCYTE IMPLANTATION WITH OSTEOTOMY', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.1025', 'KNEE, LIGAMENTS/MENISCUS/CARTILAGE/BONE COMBINED,\nMIS ACL OR PCL RECONSTRUCTION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1026', 'KNEE, LIGAMENTS/MENISCUS/CARTILAGE/BONE COMBINED, MIS LIGAMENT RECONSTRUCTION WITH MENISCAL REPAIR', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1027', 'KNEE, LIGAMENTS/MENISCUS/CARTILAGE/BONE COMBINED, MIS LIGAMENT RECONSTRUCTION WITH\nMENISCECTOMY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1028', 'KNEE, LIGAMENTS/MENISCUS/CARTILAGE/BONE COMBINED, MIS LIGAMENT RECONSTRUCTION WITH\nMICROFRACTURE', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1029', 'KNEE, LIGAMENTS/MENISCUS/CARTILAGE/BONE COMBINED, MIS PRIMARY DOUBLE BUNDLE ACL OR PCL RECONSTRUCTION', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.1030', 'KNEE, LIGAMENTS/MENISCUS/CARTILAGE/BONE COMBINED,\nMIS REVISION ACL RECONSTRUCTION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1031', 'KNEE, LIGAMENTS/MENISCUS/CARTILAGE/BONE COMBINED,\nMIS REVISION PCL RECONSTRUCTION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1032', 'KNEE, LIGAMENTS/MENISCUS/CARTILAGE/BONE COMBINED,\nMOSAICPLASTY OR OSTEOARTICULAR TRANSFER SYSTEM (OATS) WITH OSTEOTOMY', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.1033', 'KNEE, LIGAMENTS/MENISCUS/CARTILAGE/BONE COMBINED, MULTI-LIGAMENTED KNEE\nRECONSTRUCTION (3 OR MORE LIGAMENTS)', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.1034', 'KNEE, MENISCUS/CARTILAGE (SMALL DEFECTS), MIS/OPEN\nMOSAICPLASTY OR OATS', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1035', 'KNEE, MENISCUS/CARTILAGE, MIS ASSISTED ALLOGRAFT\nMENISCAL TRANSPLANTATION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1036', 'KNEE, MENISCUS/CARTILAGE, MIS CARTILAGE HARVESTING', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1037', 'KNEE, MENISCUS/CARTILAGE, MIS MENISCAL REPAIR', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1038', 'KNEE, VARIOUS LESIONS, ARTHRODESIS', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1039', 'KNEE, VARIOUS LESIONS, ARTHROTOMY', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1040', 'KNEE, VARIOUS LESIONS, ARTHROTOMY AND SYNOVECTOMY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1041', 'KNEE, VARIOUS LESIONS, EXCISION/INTERPOSITION\nARTHROPLASTY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1042', 'KNEE, VARIOUS LESIONS, MENISCECTOMY WITH/WITHOUT\nARTHROSCOPY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1043', 'KNEE, VARIOUS LESIONS, PRIMARY TOTAL JOINT REPLACEMENT (UNILATERAL) WITH AUGMENTATION,\nREQUIRING EXTRA IMPLANTS OR BONE GRAFTS,\nOPEN/MIS/NAVIGATED', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1044', 'KNEE, VARIOUS LESIONS, PRIMARY TOTAL JOINT REPLACEMENT\n(UNILATERAL), OPEN/MIS/NAVIGATED', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.1045', 'KNEE, VARIOUS LESIONS, REVISION TOTAL JOINT REPLACEMENT,\nOPEN/MIS/NAVIGATED', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.1046', 'KNEE, VARIOUS LESIONS, TOTAL JOINT REPLACEMENT\n(BILATERAL)', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.1047', 'LABYRINTH, VARIOUS LESIONS,\nDESTRUCTION/LABYRINTHOTOMY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1048', 'LACRIMAL CANALICULUS REPAIR, VARIOUS LESIONS,\nIMMEDIATE REPAIR', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1049', 'LACRIMAL GLAND (LACRIMAL SAC), VARIOUS LESIONS, EXCISION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1050', 'LACRIMAL GLAND (PUNCTUM), VARIOUS LESIONS, SNIP\nOPERATION', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1051', 'LACRIMAL GLAND, OBSTRUCTION, PROBING ONE/BOTH DUCTS', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1052', 'LACRIMAL GLAND/DUCT, VARIOUS LESIONS,\nDACROCYSTORHINOSTOMY (ENDOSCOPIC/NON- ENDOSCOPIC) OR CONJUNCTIVAL-DCR (LESTER JONES TUBE)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1053', 'LAPAROSCOPY, THERAPEUTIC, EXCEPT FOR RETRIEVAL AND\nPLACEMENT OF GAMETES AND PLACEMENT OF EMBRYOS', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1054', 'LAPAROTOMY DEBULKING (ADVANCED DISEASE,\nPRIMARY/RECURRENT)', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.1055', 'LARYNGOSCOPY WITH REMOVAL OF TUMOUR/LESIONS', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1056', 'LARYNX AND ESOPHAGUS, TUMOR, ESOPHAGECTOMY (TOTAL)/\nLARYNGOPHARYNGECTOMY WITH RESTORATION OF ALIMENTARY CONTINUITY', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.1057', 'LARYNX AND PHARYNX, VARIOUS LESIONS, LASER APPLICATION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1058', 'LARYNX AND TRACHEA, VARIOUS LESIONS, MAJOR\nMICROSURGERY WITHOUT RECONSTRUCTION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1059', 'LARYNX AND TRACHEA, VARIOUS LESIONS, MAJOR PLASTIC\nOPERATION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1060', 'LARYNX, FRACTURES, OPERATION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1061', 'LARYNX, LARYNGECTOMY WITH BILATERAL NECK DISSECTION', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.1062', 'LARYNX, LARYNGECTOMY WITH UNILATERAL NECK DISSECTION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1063', 'LARYNX, LARYNOGOFISSURE, EXTERNAL OPERATION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1064', 'LARYNX, TRANSCUTANEOUS INJECTION OF LARYNX', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.1065', 'LARYNX, TUMOR, LARYNGECTOMY (TOTAL)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1066', 'LARYNX, TUMOR, PARTIAL LARYNGECTOMY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1067', 'LARYNX, TUMOR, PARTIAL LARYNGECTOMY WITH BLOCK NECK\nDISSECTION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1068', 'LARYNX, VARIOUS DISORDERS, LARYNGEAL FRAMEWORK\nSURGERY, THYROPLASTY TYPES I-IV INCLUDING OPEN MEDIALISATION', 13579000, 'TINDAKAN OPERATIF'); +INSERT INTO `tarif_rs` (`ID_Tarif_RS`, `Tindakan_RS`, `Tarif_RS`, `Kategori_RS`) VALUES +('R.TO.1069', 'LARYNX, VARIOUS LESIONS, DIRECT LARYNGOSCOPE\nEXAMINATION WITH/WITHOUT BIOPSY', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1070', 'LARYNX, VARIOUS LESIONS, HEMI/PARTIAL LARYNGECTOMY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1071', 'LARYNX, VARIOUS LESIONS, HEMI/PARTIAL LARYNGECTOMY\nWITH RADICAL NECK DISSECTION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1072', 'LENS, CATARACT (JUVENILE), REMOVAL AND NEEDLINGS', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1073', 'LENS, CATARACT (PAEDIATRIC), EXTRACTION WITH ANTERIOR\nVITRECTOMY', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1074', 'LENS, CATARACT (PAEDIATRIC), EXTRACTION WITH ANTERIOR\nVITRECTOMY - BILATERAL', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1075', 'LENS, CATARACT (PAEDIATRIC), EXTRACTION WITH ANTERIOR VITRECTOMY AND INTRAOCULAR LENS IMPLANTATION', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.1076', 'LENS, CATARACT (PAEDIATRIC), EXTRACTION WITH ANTERIOR VITRECTOMY AND INTRAOCULAR LENS\nIMPLANTATION - BILATERAL', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.1077', 'LENS, CATARACT, EXTRACTION WITH INTRA-OCULAR LENS\nIMPLANT (BILATERAL)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1078', 'LENS, CATARACT, EXTRACTION WITH INTRA-OCULAR LENS\nIMPLANT (UNILATERAL LEFT)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1079', 'LENS, CATARACT, EXTRACTION WITH INTRA-OCULAR LENS\nIMPLANT (UNILATERAL RIGHT)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1080', 'LENS, CATARACT, EXTRACTION WITH INTRA-OCULAR LENS\nIMPLANT AND TRABECULECTOMY WITH/WITHOUT ANTIMETABOLITES', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1081', 'LENS, CATARACT, EXTRACTION WITH TRABECULECTOMY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1082', 'LENS, COMBINED GLAUCOMA IMPLANTS WITH CATARACT EXTRACTION (WITH OR WITHOUT INTRAOCULAR LENS\nIMPLANTATION)', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.1083', 'LENS, COMPLICATED CATARACT EXTRACTION WITH INTRAOCULAR LENS IMPLANT (CAPSULAR TENSION\nRING/CAPSULAR TENSION SEGMENT/)', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.1084', 'LENS, IMPLANTATION OF POSTERIOR SEGMENT DRUG DELIVERY\nDEVICE', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1085', 'LENS, SECONDARY SCLERAL FIXATED INTRAOCULAR LENS\nIMPLANTATION', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1086', 'LENS, SECTORIAL LASER PHOTOCOAGULATION', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1087', 'LENS, VARIOUS LESIONS, EXTRACTION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1088', 'LENS, VARIOUS LESIONS, REMOVAL OF INTRA-OCULAR\nARTIFICIAL LENS', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1089', 'LENS, VARIOUS LESIONS, SECONDARY ANTERIOR CHAMBER INTRA-OCULAR LENS IMPLANTATION WITHOUT\nVITRECTOMY9', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1090', 'LENS, VARIOUS LESIONS, YAG LASER CAPSULOTOMY', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.1091', 'LIP, MUCOUS CYST/MUCOCELE, REMOVAL', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1092', 'LIP, VARIOUS LESIONS, FULL THICKNESS WEDGE EXCISION WITH\nREPAIR', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1093', 'LIP, VARIOUS LESIONS, RECONSTRUCTION USING FULL\nTHICKNESS FLAP', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1094', 'LIP, VARIOUS LESIONS, VERMILIONECTOMY', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1095', 'LIVER TRANSPLANT, DONATION (CADAVERIC DONOR)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1096', 'LIVER TRANSPLANT, DONATION (LIVE DONOR)', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1097', 'LIVER TRANSPLANT, RECIPIENT', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.1098', 'LIVER, ABSCESS, IMAGING GUIDED PERCUTANEOUS ASPIRATION', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1099', 'LIVER, ABSCESS, IMAGING GUIDED PERCUTANEOUS DRAINAGE\nCATHETER INSERTION', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1100', 'LIVER, ABSCESS, TRANS-ABDOMINAL DRAINAGE (OPEN OR LAP)', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1101', 'LIVER, HYDATID CYST, TRANS-ABDOMINAL DRAINAGE\n(PERCUTANEOUS)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1102', 'LIVER, OBSTRUCTIVE JAUNDICE, LONGMIRE\nOPERATION/CHLODEDOCHO JEJUNOSTOMY', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.1103', 'LIVER, PORTAL HYPERTENSION, TRANSJULAR INTRAHEPATIC PORTO-SYSTEMIC SHUNT CREATION\n(TIPSS)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1104', 'LIVER, TRAUMA, MAJOR REPAIR LACERATION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1105', 'LIVER, TRAUMA, MINOR REPAIR LACERATION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1106', 'LIVER, TRAUMA/TUMOR, EXTENDED LOBECTOMY (5\nSEGMENTS/MORE)', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.1107', 'LIVER, TRAUMA/TUMOR, HEPATIC ARTERY LIGATION', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1108', 'LIVER, TRAUMA/TUMOR, LIVER TRANSPLANT', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.1109', 'LIVER, TUMOUR, IMAGING GUIDED PERCUTANEOUS LOCAL\nABLATION, COMPLEX (RADIOFREQUENCY, CRYOTHERAPY, MICROWAVE, LASER, ALCOHOL, ETC)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1110', 'LIVER, TUMOUR, IMAGING GUIDED PERCUTANEOUS LOCAL\nABLATION, SIMPLE (RADIOFREQUENCY, CRYOTHERAPY, MICROWAVE, LASER, ALCOHOL, ETC)', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1111', 'LIVER, TUMOUR, TRANS-ARTERIAL CHEMO- EMBOLIZATION\n(TACE)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1112', 'LIVER, TUMOUR, TRANS-ARTERIAL RADIO NUCLIDE INFUSION', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1113', 'LIVER, VARIOUS LESIONS, IMAGING GUIDED PERCUTANEOUS\nBIOPSY (FOCAL LESIONS, TARGETED)', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1114', 'LIVER, VARIOUS LESIONS, IMAGING GUIDED PERCUTANEOUS BIOPSY (LIVER PARENCHYMA, NON\nDIRECTED)', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.1115', 'LIVER, VARIOUS LESIONS, LOBECTOMY (3 - 4 SEGMENTS), OPEN\nOR LAP', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1116', 'LIVER, VARIOUS LESIONS, MIS ULTRASOUND AND LOCAL\nABLATION INCLUDING RADIO-FREQUENCY ABLATION', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1117', 'LIVER, VARIOUS LESIONS, PARTIAL LOBECTOMY/SEGMENTAL\nRESECTION (OPEN OR LAP)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1118', 'LIVER, VARIOUS LESIONS, TRANSJUGULAR LIVER BIOPSY', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1119', 'LIVER, VARIOUS LESIONS, WEDGE/LOCAL EXCISION (OPEN OR\nLAP)', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.1120', 'LOWER LIMB, CRUSH INJURIES (EXTENSIVE), DEBRIDEMENT\nWITH REPAIR OF BONE AND SOFT TISSUES', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1121', 'LOWER LIMB, CRUSH INJURIES (LIMITED), DEBRIDEMENT WITH\nREPAIR OF BONE AND SOFT TISSUES', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1122', 'LOWER LIMB, DEFORMITIES, EPIPHYSIODESIS', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1123', 'LOWER LIMB, FRACTURES, OPEN REDUCTION AND FIXATION\nWITH REPAIR OF ARTERIAL INJURIES', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1124', 'LOWER LIMB, FRACTURES/DISLOCATION, MANIPULATION AND\nREDUCTION WITH/WITHOUT APPLICATION OF CAST', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1125', 'LOWER LIMB, ISCHEMIA, FASCIOTOMY', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1126', 'LOWER LIMB, LENGTH DISCREPANCIES, LENGTHENING\nPROCEDURES', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1127', 'LOWER LIMB, LENGTH DISCREPANCIES, SHORTENING\nPROCEDURES', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1128', 'LOWER LIMB, MUSCLE (QUADRICEPS)/TENDON (INCLUDING PATELLAR TENDON), DISRUPTION, REPAIR OR\nRECONSTRUCTION', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1129', 'LOWER LIMB, OPEN TENDON RELEASE (INCLUDING OPEN SOFT\nTISSUE RELEASES E.G. GASTROCNEMIUS RECESSION)', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1130', 'LOWER LIMB, OPEN TENDON RELEASES AND CAST\nAPPLICATION, HAMSTRING RELEASES', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1131', 'LOWER LIMB, PERCUTANEOUS TENOTOMY AND CAST\nAPPLICATION, ADDUCTOR TENOTOMY', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1132', 'LOWER LIMB, PERCUTANEOUS TENOTOMY AND CAST\nAPPLICATION, TA TENOTOMY', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1133', 'LOWER LIMB, TRAUMATIC AMPUTATION, MAJOR\nREPLANTATION', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.1134', 'LOWER LIMB, VARIOUS LESIONS, AMPUTATION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1135', 'LOWER LIMB, VARIOUS LESIONS, HINDQUARTER AMPUTATION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1136', 'LOWER LIMB, VARIOUS LESIONS, HIP DISARTICULATION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1137', 'LUMBAR PLEXUS, BLOCK, CATHETER', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.1138', 'LUMBAR PLEXUS, BLOCK, NO CATHETER', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1139', 'LUNG, BRONCHOSCOPY, INSERTION OF PROSTHESIS', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1140', 'LUNG, MASSIVE HEMOPTYSIS, BRONCHIAL ARTERY\nEMBOLISATION', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1141', 'LUNG, PULMONARY ENDARTERECTOMY WITH\nCARDIOPULMONARY BYPASS', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.1142', 'LUNG, TUMOUR, IMAGING GUIDED PERCUTANEOUS LOCAL\nABLATION, COMPLEX (RADIOFREQUENCY, CRYOTHERAPY, MICROWAVE, LASER, ALCOHOL, ETC)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1143', 'LUNG, TUMOUR, IMAGING GUIDED PERCUTANEOUS LOCAL\nABLATION, SIMPLE (RADIOFREQUENCY, CRYOTHERAPY, MICROWAVE, LASER, ALCOHOL, ETC)', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1144', 'LUNG, VARIOUS LESIONS, LUNG RESECTION WITH MEDIASTINAL\nRESECTION, ANY APPROACH', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.1145', 'LUNG, VARIOUS LESIONS,\nPNEUMONECTOMY/LOBECTOMY/SEGMENTAL RESECTION', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.1146', 'LUNG, VARIOUS LESIONS, REPEAT/MULTIPLE/COMPLEX\nRESECTIONS', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1147', 'LUNG, VARIOUS LESIONS, WEDGE RESECTION', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1148', 'LYMPH NODE (AXILLARY), VARIOUS LESIONS, LIMITED\nEXCISION/BIOPSY', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1149', 'LYMPH NODE (AXILLARY), VARIOUS LESIONS, RADICAL EXCISION/CLEARANCE WITH OR WITHOUT SENTINEL\nLYMPH NODE BIOPSY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1150', 'LYMPH NODE (AXILLARY), VARIOUS LESIONS, SENTINEL LN\nBIOPSY ONLY', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1151', 'LYMPH NODE (CERVICAL), DEEP, VARIOUS LESIONS, BIOPSY', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1152', 'LYMPH NODE (CERVICAL), RADICAL WITH FLAP\nRECONSTRUCTION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1153', 'LYMPH NODE (CERVICAL), SUPERFICIAL, VARIOUS LESIONS,\nBIOPSY', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1154', 'LYMPH NODE (CERVICAL), VARIOUS LESIONS, NECK DISSECTION\nBILATERAL 3 OR LESS LEVELS', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1155', 'LYMPH NODE (CERVICAL), VARIOUS LESIONS, NECK DISSECTION BILATERAL AT LEAST WITH ONE SIDE 4 TO 5\nLEVELS', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.1156', 'LYMPH NODE (CERVICAL), VARIOUS LESIONS, NECK DISSECTION\nUNILATERAL 1-3 LEVELS', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1157', 'LYMPH NODE (CERVICAL), VARIOUS LESIONS, NECK DISSECTION\nUNILATERAL 4-5 LEVELS', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1158', 'LYMPH NODE (CERVICAL), VARIOUS LESIONS, RADICAL NECK\nDISSECTION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1159', 'LYMPH NODE (INGUINAL), VARIOUS LESIONS, LIMITED EXCISION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1160', 'LYMPH NODE (INGUINAL), VARIOUS LESIONS, RADICAL EXCISION', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1161', 'LYMPH NODE (PELVIC) DISSECTION, MIS/OPEN', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1162', 'LYMPH NODE (RETROPERITONEAL), VARIOUS LESIONS, LIMITED\nEXCISION', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1163', 'LYMPH NODE (RETROPHARYNGEAL), NECK DISSECTION\n(OPEN/TRANSORAL)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1164', 'LYMPH NODE (SINGLE), VARIOUS LESIONS, EXCISION BIOPSY', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.1165', 'LYMPH NODE (SINGLE), VARIOUS LESIONS, EXCISION BIOPSY\n(MIS)', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.1166', 'LYMPH NODE EXCISION FOR MYCOBACTERIUM AVIARE\nINTRACELLULARE SCROPHYLLORIUM', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1167', 'LYMPH NODE, VARIOUS LESIONS, BIOPSY', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1168', 'LYMPH NODE, VARIOUS LESIONS, IMAGING GUIDED PERCUTANEOUS BIOPSY, DEEP\n(INTRATHORACIC/ABDOMINAL/PELVIC, RETROPERITONEAL)', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1169', 'LYMPH NODE, VARIOUS LESIONS, IMAGING GUIDED\nPERCUTANEOUS BIOPSY, SUPERFICIAL', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1170', 'LYMPHATICS (FACE & NECK), CYSTIC HYGROMA, EXCISION\n(LARGE)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1171', 'LYMPHATICS (FACE & NECK), CYSTIC HYGROMA, EXCISION\n(MODERATE)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1172', 'LYMPHATICS (FACE & NECK), CYSTIC HYGROMA, EXCISION\n(SMALL)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1173', 'LYMPHATICS (UPPER LIMB), LYMPHANGIOMA, EXCISION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1174', 'LYMPHATICS AND SUBCUTANEOUS TISSUE, LYMPHEDEMA,\nMAJOR EXCISION AND GRAFTING', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1175', 'LYMPHATICS, CYSTIC HYGROMA, EXCISION (EXTENSIVE)\nWITH/WITHOUT THORACOTOMY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1176', 'LYMPHATICS, LYMPHANGIECTASIS, LIMITED EXCISION', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1177', 'LYMPHATICS, LYMPHANGIECTASIS, RADICAL EXCISION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1178', 'LYMPHATICS, LYMPHEDEMA, EXCISION (EXTENSIVE AND\nCOMPLEX)', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.1179', 'LYMPHATICS, LYMPHEDEMA, EXCISION (LARGE & DEEP SEATED)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1180', 'LYMPHATICS, LYMPHEDEMA, EXCISION (LARGE)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1181', 'LYMPHATICS, LYMPHEDEMA, EXCISION (MODERATE)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1182', 'LYMPHATICS, LYMPHEDEMA, EXCISION (SMALL)', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1183', 'LYMPHATICS, LYMPHEDEMA, LYMPHO- VENOUS/LYMPHATICO- VENULAR ANASTOMOSES,\nUNILATERAL(MICROSURGERY)', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.1184', 'LYMPHATICS, LYMPHEDEMA, MAJOR EXCISION & GRAFTING', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1185', 'LYMPHATICS, LYMPHEDEMA, THOMSON\'S PROCEDURE', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1186', 'MALE GENITALIA, ELECTROEJECULATION', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.1187', 'MALE GENITALIA, TRANSSEXUALISM (TRANSVESTISM), SEX\nREASSIGNMENT (MALE TO FEMALE)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1188', 'MALE GENITALIA, TRANSSEXUALISM (TRANSVESTISM), SEX\nREASSIGNMENT WITH MAMMOPLASTY (MALE TO FEMALE)', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1189', 'MANDIBLE (EXCLUDING ALVEOLAR MARGINS), VARIOUS\nLESIONS, COMPLEX OSTEOTOMY/OSTECTOMY', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1190', 'MANDIBLE AND MAXILLA, OLD FRACTURES/OSTEOTOMY,\nREMOVAL OF PLATES OR WIRES', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1191', 'MANDIBLE AND MAXILLA, VARIOUS LESIONS, OSTEOTOMY AND INSERTION OF DEVICE FOR\nDISTRACTION OSTEOGENESIS', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.1192', 'MANDIBLE AND MAXILLA, VARIOUS LESIONS, OSTEOTOMY INCLUDING SEGMENTAL OSTEOTOMY\nWITH/WITHOUT GRAFTING', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.1193', 'MANDIBLE AND/OR MAXILLA, VARIOUS LESIONS, INSERTION OF TRANSMANDIBULAR IMPLANT/ SUBPERIOSTEAL IMPLANT/\nZYGOMATICUS IMPLANT', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1194', 'MANDIBLE OR MAXILLA, ALVEOLAR DEFECT/DEFORMITY, COMPLEX ALVEOLOPLASTY/UNILATERAL (LATERAL WINDOW) SINUS LIFT/RIDGE AUGMENTATION WITH GRAFTING', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1195', 'MANDIBLE OR MAXILLA, ALVEOLAR DEFECT/DEFORMITY,\nSIMPLE ALVEOLOPLASTY/BONE REGENERATIVE PROCEDURE', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1196', 'MANDIBLE OR MAXILLA, BONY PROTUBERANCE, EXCISION', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1197', 'MANDIBLE OR MAXILLA, DENTAL IMPLANT(S), OSSEOINTEGRATED, TREPHINE REMOVAL (X NUMBER OF\nIMPLANTS REMOVED)', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.1198', 'MANDIBLE OR MAXILLA, ODONTOGENIC CYST (10MM OR\nSMALLER), ENUCLEATION', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1199', 'MANDIBLE OR MAXILLA, ODONTOGENIC CYST (11- 20MM),\nENUCLEATION', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1200', 'MANDIBLE OR MAXILLA, ODONTOGENIC CYST (20MM OR\nLARGER OR MULTIPLE CYSTS), ENUCLEATION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1201', 'MANDIBLE OR MAXILLA, ODONTOGENIC CYST,\nMARSUPIALIZATION', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1202', 'MANDIBLE OR MAXILLA, OLD FRACTURES / OSTEOTOMY,\nREMOVAL OF PLATES OR WIRES', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1203', 'MANDIBLE OR MAXILLA, TUMOR, MARGINAL RESECTION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1204', 'MANDIBLE OR MAXILLA, TUMOR, MARGINAL RESECTION WITH\nBONE GRAFT', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1205', 'MANDIBLE OR MAXILLA, VARIOUS LESIONS, ALVEOLOPLASTY WITH EPITHELIAL GRAFT OR\nBILATERAL SINUS-LIFT PROCEDURE OR RIDGE AUGMENTATION\n(MULTIPLE QUADRANTS) WITH GRAFTING', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1206', 'MANDIBLE OR MAXILLA, VARIOUS LESIONS, DENTOALVEOLAR OSTEOTOMY AND INSERTION OF DEVICE FOR DISTRACTION\nOSTEOGENESIS', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1207', 'MANDIBLE OR MAXILLA, VARIOUS LESIONS, INSERTION OF ENDOSSEOUS DENTAL IMPLANT (SINGLE)(FOR\nMULTIPLE PLACEMENT OF IMPLANTS, NUMBER OF\nCLAIMS = NUMBER OF IMPLANTS PLACED )', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1208', 'MANDIBLE OR MAXILLA, VARIOUS LESIONS, SEGMENTAL OSTEOTOMY AND INSERTION OF DEVICE FOR\nDISTRACTION OSTEOGENESIS AND BONE TRANSPORT', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.1209', 'MANDIBLE OR MAXILLA, VARIOUS LESIONS, VESTIBULOPLASTY,\nCOMPLEX', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1210', 'MANDIBLE OR MAXILLA, VARIOUS LESIONS, VESTIBULOPLASTY,\nSIMPLE', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1211', 'MANDIBLE, ATROPHY, LATERALISATION OF INFERIOR DENTAL NERVE WITH IMPLANT FIXTURES PLACEMENT,\nBILATERAL.', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1212', 'MANDIBLE, ATROPHY, LATERALISATION OF INFERIOR DENTAL NERVE WITH IMPLANT FIXTURES PLACEMENT,\nUNILATERAL', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1213', 'MANDIBLE, FRACTURE (COMMINUTED), OPEN REDUCTION AND\nFIXATION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1214', 'MANDIBLE, FRACTURE, CLOSED REDUCTION AND FIXATION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1215', 'MANDIBLE, FRACTURE, OPEN REDUCTION AND FIXATION', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1216', 'MANDIBLE, VARIOUS LESIONS, ALVEOLECTOMY (PER\nQUADRANT)', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1217', 'MANDIBLE, VARIOUS LESIONS, BODY OR RAMUS OSTEOTOMY WITH INSERTION OF DISTRACTION\nOSTEOGENESIS DEVICE', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1218', 'MANDIBLE, VARIOUS LESIONS, GENIOPLASTY (COMPLEX\n- NOT AS A COMBINED PROCEDURE)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1219', 'MANDIBLE, VARIOUS LESIONS, GENIOPLASTY (SIMPLE - NOT AS\nA COMBINED PROCEDURE)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1220', 'MANDIBLE, VARIOUS LESIONS, MANDIBULAR RAMUS/BODY OSTECTOMY/OSTEOTOMY WITH\nSEGMENTAL OSTEOTOMY', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1221', 'MANDIBLE, VARIOUS LESIONS, MANDIBULAR RAMUS/BODY OSTECTOMY/OSTEOTOMY WITHOUT SEGMENTAL OSTEOTOMY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1222', 'MANDIBLE, VARIOUS LESIONS, RECONSTRUCTION WITH BONE', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1223', 'MANDIBLE, VARIOUS LESIONS, SEGMENTAL\nOSTECTOMY/OSTEOTOMY (ONE SEGMENT ONLY)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1224', 'MANDIBLE, VARIOUS LESIONS, SEGMENTAL RESECTION WITH\nBONE GRAFT', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1225', 'MARROW, FOR VARIOUS LESIONS, HARVESTING & GRAFTING', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1226', 'MARROW, VARIOUS LESIONS, DIAGNOSTIC ASPIRATION', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.1227', 'MASTOID, VARIOUS LESIONS, MASTOIDECTOMY (CORTICAL)', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1228', 'MASTOID, VARIOUS LESIONS, MASTOIDECTOMY (RADICAL/MODIFIED RADICAL) WITH MYRINGOPLASTY\nAND OSSICULAR CHAIN RECONSTRUCTION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1229', 'MASTOID, VARIOUS LESIONS, MASTOIDECTOMY\n(RADICAL/MODIFIED)', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1230', 'MASTOID, VARIOUS LESIONS, MASTOIDECTOMY\n(RADICAL/MODIFIED) WITH MYRINGOPLASTY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1231', 'MASTOID, VARIOUS LESIONS, OBLITERATION / REDUCTION OF\nCAVITY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1232', 'MASTOID, VARIOUS LESIONS, REVISION MASTOIDECTOMY', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1233', 'MAXILLA (EXCLUDING ALVEOLAR MARGINS) AND/OR ZYGOMA, VARIOUS LESIONS, COMPLEX\nOSTECTOMY/OSTEOTOMY', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1234', 'MAXILLA DEFORMITY, LE FORT II OSTEOTOMY AND INSERTION\nOF DISTRACTION OSTEOGENESIS DEVICE', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1235', 'MAXILLA DEFORMITY, LE FORT III OSTEOTOMY AND INSERTION\nOF DISTRACTION OSTEOGENESIS DEVICE', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.1236', 'MAXILLA, ALVEOLAR CLEFT (BILATERAL COMPLETE), BONE\nGRAFT AND CLOSURE OF NASO BUCCAL FISTULA', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1237', 'MAXILLA, ALVEOLAR CLEFT (UNILATERAL COMPLETE), BONE\nGRAFT AND CLOSURE OF NASO BUCCAL FISTULA', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.1238', 'MAXILLA, ALVEOLAR CLEFT (UNILATERAL INCOMPLETE), BONE\nGRAFT', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1239', 'MAXILLA, BILATERAL INCOMPLETE ALVEOLAR CLEFT, BONE\nGRAFT', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.1240', 'MAXILLA, DEFORMITY - LEFORT I, OSTEOTOMY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1241', 'MAXILLA, DEFORMITY - LEFORT II, OSTEOTOMY', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1242', 'MAXILLA, DEFORMITY - LEFORT III, OSTEOTOMY', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.1243', 'MAXILLA, DEFORMITY, LE FORT I OSTEOTOMY AND INSERTION\nOF DISTRACTION OSTEOGENESIS DEVICE', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1244', 'MAXILLA, FRACTURE - LEFORT I, CLOSED REDUCTION AND\nFIXATION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1245', 'MAXILLA, FRACTURE - LEFORT I, OPEN REDUCTION AND\nFIXATION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1246', 'MAXILLA, FRACTURE - LEFORT II (COMPLEX), OPEN REDUCTION\nAND FIXATION.', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1247', 'MAXILLA, FRACTURE - LEFORT II / III, CLOSED REDUCTION AND\nFIXATION.', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1248', 'MAXILLA, FRACTURE - LEFORT III, OPEN REDUCTION AND\nFIXATION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1249', 'MAXILLA, FRACTURE - LEFORT III, OPEN REDUCTION AND\nFIXATION USING CRANIOFACIAL APPROACH', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.1250', 'MAXILLA, SINUSES, SINOSCOPY', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1251', 'MAXILLA, VARIOUS LESIONS, OSTECTOMY/OSTEOTOMY (MORE\nTHAN 1 SEGMENT)', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1252', 'MAXILLA, VARIOUS LESIONS, OSTECTOMY/OSTEOTOMY (ONE\nSEGMENT ONLY)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1253', 'MAXILLA, VARIOUS LESIONS, RESECTION WITH\nRECONSTRUCTION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1254', 'MAXILLA, VARIOUS LESIONS, RESECTION/HEMIMAXILLECTOMY (OPEN OR ENDOSCOPIC METHOD)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1255', 'MENINGES, MYELOMENINGOCELE, EXCISION OF SAC', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.1256', 'MENINGES, MYELOMENINGOCELE, EXTENSIVE REPAIR WITH\nSKIN FLAPS/Z-PLASTY', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1257', 'MIS REPAIR OF ESOPHAGEAL FISTULA AND ESOPHAGEAL\nATRESIA', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1258', 'MOUTH, ABSCESS (DEEP), DRAINAGE (INCLUDES SUBMASSETERIC, SUBMANDIBULAR, TEMPORAL, AND\nPTERYGOMANDIBULAR SPACES)', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1259', 'MOUTH, ABSCESS, (SUPERFICIAL), DRAINAGE', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.1260', 'MOUTH, ANGULAR CLEFT WITH MACROSTOMIA (BILATERAL)\nREPAIR', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.1261', 'MOUTH, ANGULAR CLEFT WITH MACROSTOMIA (UNILATERAL)\nREPAIR', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.1262', 'MOUTH, CAUTERY OF SOFT PALATE /TONGUE BASE', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1263', 'MOUTH, CLEFT LIP, BILATERAL PRIMARY REPAIR', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.1264', 'MOUTH, CLEFT LIP, SECONDARY CORRECTION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1265', 'MOUTH, CLEFT LIP, SECONDARY CORRECTION (ABBE FLAP)', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.1266', 'MOUTH, CLEFT LIP, SECONDARY CORRECTION OF\nNOSTRIL/NASAL TIP', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1267', 'MOUTH, CLEFT LIP, UNILATERAL PRIMARY REPAIR', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.1268', 'MOUTH, DEFECT, MUCOUS MEMBRANE/CONNECTIVE TISSUE\nGRAFT', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1269', 'MOUTH, DISLOCATED TEETH/DENTO-ALVEOLAR FRACTURE,\nREDUCTION AND IMMOBILISATION', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1270', 'MOUTH, FRENAL ATTACHMENT, RELEASE', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1271', 'MOUTH, INTRA ORAL TUMOUR RADICAL EXCISION WITH RESECTION OF MANDIBLE AND BILATERAL NECK\nDISSECTION', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.1272', 'MOUTH, INTRA ORAL TUMOUR RADICAL EXCISION WITH RESECTION OF MANDIBLE AND UNILATERAL NECK DISSECTION', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.1273', 'MOUTH, LEUKOPLAKIA, LIMITED EXCISION', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1274', 'MOUTH, LEUKOPLAKIA, WIDE EXCISION AND SKIN GRAFTING', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1275', 'MOUTH, MACROCHEILIA AND MACROGLOSSIA,\nRECONSTRUCTION', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1276', 'MOUTH, MALIGNANT TUMOR, WIDE EXCISION AND MAJOR\nRECONSTRUCTION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1277', 'MOUTH, MUCOUS CYST/RANULA OF FLOOR OF MOUTH,\nEXCISION WITH/WITHOUT BIOPSY', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1278', 'MOUTH, MUCOUS CYST/RANULA OF FLOOR OF MOUTH,\nMARSUPIALIZATION /BIOPSY', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1279', 'MOUTH, NASOLABIAL CYST, EXCISION BIOPSY', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1280', 'MOUTH, ORO-ANTRAL FISTULA, REMOVAL OF TOOTH/ROOTS IN\nANTRUM AND CLOSURE', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1281', 'MOUTH, PERIODONTIUM (WITHIN 1 QUADRANT),\nPERIODONTITIS, OPEN FLAP DEBRIDEMENT', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1282', 'MOUTH, PERIODONTIUM (WITHIN 1 QUADRANT), SOFT TISSUE\nDEFECT/DEFORMITY, GINGIVOPLASTY', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1283', 'MOUTH, PERIODONTIUM (WITHIN 1 QUADRANT), SOFT TISSUE\nDEFECT/DEFORMITY, GINGIVOPLASTY WITH AUTOGENOUS SOFT/HARD TISSUE GRAFT', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1284', 'MOUTH, PERIODONTIUM (WITHIN 2 QUADRANTS),\nPERIODONTITIS, OPEN FLAP DEBRIDEMENT', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1285', 'MOUTH, PERIODONTIUM (WITHIN 2 QUADRANTS), SOFT TISSUE\nDEFECT/DEFORMITY, GINGIVOPLASTY', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1286', 'MOUTH, PERIODONTIUM (WITHIN 2 QUADRANTS), SOFT TISSUE\nDEFECT/DEFORMITY, GINGIVOPLASTY WITH AUTOGENOUS SOFT/HARD TISSUE GRAFT', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1287', 'MOUTH, PERIODONTIUM, BONE DEFECT/DEFORMITY,\nAUGMENTATION (AUTOGENOUS) /REGENERATION', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1288', 'MOUTH, PERIODONTIUM, BONE DEFECT/DEFORMITY,\nAUGMENTATION (NON-AUTOGENOUS) /REGENERATION', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1289', 'MOUTH, SMALL SOFT TISSUE TUMOR, EXCISION BIOPSY <\n3CM', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1290', 'MOUTH, SUBLINGUAL GLAND, TUMOR, EXCISION BIOPSY', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1291', 'MOUTH, SUBMANDIBULAR GLAND, CALCULUS (DEEP),\nREMOVAL BIOPSY', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1292', 'MOUTH, SUBMANDIBULAR GLAND, CALCULUS, REMOVAL WITH\nBIOPSY', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.1293', 'MOUTH, SUBMANDIBULAR GLAND, VARIOUS LESIONS,\nEXCISION WITH BIOPSY', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1294', 'MOUTH, SUBMUCOSAL RESECTION, ENDOSCOPIC EXCISION\nWITH BIOPSY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1295', 'MOUTH, TUMOR, RADICAL EXCISION BIOPSY WITH RESECTION OF MANDIBLE AND LYMPH NODES AND RECONSTRUCTION', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.1296', 'MOUTH, VARIOUS LESIONS OF ORAL MUCOSA (LARGE/MULTIPLE), CRYOSURGICAL/LASER APPLICATION\nWITH BIOPSY', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1297', 'MOUTH, VARIOUS LESIONS, LASER APPLICATION', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1298', 'MOUTH, VARIOUS LESIONS, PHARYNGOTOMY (LATERAL) WITH\nEXCISION OF TONGUE', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1299', 'MOUTH, VARIOUS LESIONS, UVULOTOMY', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1300', 'MOUTH, VARIOUS/PATHOLOGIC LESIONS OF ORAL MUCOSA, CRYOSURGICAL/LASER APPLICATION WITH BIOPSY', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1301', 'MOUTH, VARIOUS/PATHOLOGIC LESIONS OF ORAL MUCOSA,\nLASER APPLICATION', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1302', 'MUCOUS MEMBRANE (EAR/NOSE/EYELID) AVULSION/COMPLEX\nLACERATION, FULL THICKNESS REPAIR', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1303', 'MUCOUS MEMBRANE, DEEP LACERATION/MULTIPLE\nLACERATIONS, REPAIR', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1304', 'MUCOUS MEMBRANE, SUPERFICIAL LACERATION EQUAL/LESS\nTHAN 7CM, REPAIR', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1305', 'MUCOUS MEMBRANE, SUPERFICIAL LACERATION(S) MORE\nTHAN 7 CM, REPAIR', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1306', 'MUCOUS MEMBRANE, TUMOR/CYST/ULCER/SCAR, EXCISION', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1307', 'MUSCLE (LOWER LIMB), DEEP ABSCESS, DRAINAGE', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1308', 'MUSCLE (LOWER LIMB), RUPTURE, REPAIR', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1309', 'MUSCLE (LOWER LIMB), VARIOUS LESIONS, MARGINAL\nEXCISION', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1310', 'MUSCLE (LOWER LIMB), VARIOUS LESIONS, WIDE EXCISION', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1311', 'MUSCLE (UPPER LIMB), DEEP ABSCESS, INCISION AND\nDRAINAGE', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1312', 'MUSCLE (UPPER LIMB), RUPTURE, REPAIR', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1313', 'MUSCLE (UPPER LIMB), VARIOUS LESIONS, MARGINAL EXCISION', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1314', 'MUSCLE (UPPER LIMB), VARIOUS LESIONS, WIDE EXCISION', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1315', 'MUSCLE AND DEEP TISSUE, FOREIGN BODY, REMOVAL', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1316', 'MUSCULOSKELETAL SYSTEM, VARIOUS LESIONS, FREE\nCOMPOSITE TISSUE GRAFT', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.1317', 'NAIL BED, LACERATION, REPAIR (MULTIPLE)', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1318', 'NAIL BED, LACERATION, REPAIR (SINGLE)', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.1319', 'NAIL, INFECTION/INJURY, AVULSION', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.1320', 'NECK, BRANCHIAL CYST, REMOVAL WITH BIOPSY', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1321', 'NECK, BRANCHIAL FISTULA, REMOVAL', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1322', 'NECK, TORTICOLLIS, CORRECTION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1323', 'NERVE (LOWER LIMB), DISRUPTION, MAJOR RECONSTRUCTION WITH REPAIR AND/OR\nNEUROVASCULAR TRANSFER', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1324', 'NERVE (LOWER LIMB), DISRUPTION, MAJOR REPAIR (SINGLE)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1325', 'NERVE (LOWER LIMB), ENTRAPMENT SYNDROME,\nDECOMPRESSION', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1326', 'NERVE (OROFACIAL), DEFECT, GRAFT (MULTIPLE) USING\nMICROSURGICAL TECHNIQUES (INCLUDE HARVESTING)', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.1327', 'NERVE (OROFACIAL), DEFECT, GRAFT (SINGLE)/NERVE SHARE, USING MICROSURGICAL TECHNIQUES (INCLUDE HARVESTING)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1328', 'NERVE (OROFACIAL), INJURY, DECOMPRESSION\n(MULTIPLE/SINGLE INTRAOSSEOUS)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1329', 'NERVE (OROFACIAL), INJURY, DECOMPRESSION (SINGLE)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1330', 'NERVE (OROFACIAL), INJURY, MICROSURGICAL REPAIR\n(MULTIPLE/ SINGLE INTRAOSSEOUS)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1331', 'NERVE (OROFACIAL), INJURY, MICROSURGICAL REPAIR (SINGLE)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1332', 'NERVE (UPPER LIMB), CARPAL TUNNEL SYNDROME, RELEASE,\nBILATERAL, (WITH ENDONEUROLYSIS)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1333', 'NERVE (UPPER LIMB), CARPAL TUNNEL SYNDROME, RELEASE,\nUNILATERAL, (WITH ENDONEUROLYSIS)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1334', 'NERVE (UPPER LIMB), DEFECT, GRAFT (SINGLE) USING\nMICROSURGICAL TECHNIQUES', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1335', 'NERVE (UPPER LIMB), DEFECT, GRAFTING/INTERFASCICULAR REPAIR/NEUROVASCULAR TRANSFER', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1336', 'NERVE (UPPER LIMB), ENTRAPMENT SYNDROME (OTHERS),\nDECOMPRESSION (BILATERAL)', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1337', 'NERVE (UPPER LIMB), ENTRAPMENT SYNDROME (OTHERS),\nDECOMPRESSION (UNILATERAL)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1338', 'NERVE (UPPER LIMB), GUYON\'S TUNNEL SYNDROME, RELEASE\n(BILATERAL WITH ENDONEUROLYSIS)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1339', 'NERVE (UPPER LIMB), GUYON\'S TUNNEL SYNDROME, RELEASE\n(UNILATERAL)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1340', 'NERVE (UPPER LIMB)-MAJOR, INJURY, MICROSURGICAL REPAIR\n(MULTIPLE)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1341', 'NERVE (UPPER LIMB)-MAJOR, INJURY, MICROSURGICAL REPAIR\n(SINGLE)', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1342', 'NERVE DEFECT, PERIPHERAL GRAFT (MICROSURGERY)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1343', 'NERVE ROOT, BLOCK (INJECTION OF ANAESTHETIC,\nTHERAPEUTIC SUBSTANCE) - CERVICAL, > 1 LEVEL', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1344', 'NERVE ROOT, BLOCK (INJECTION OF ANAESTHETIC,\nTHERAPEUTIC SUBSTANCE) - CERVICAL, 1 LEVEL', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1345', 'NERVE ROOT, BLOCK (INJECTION OF ANAESTHETIC, THERAPEUTIC SUBSTANCE), LUMBAR/THORACIC, 1\nLEVEL', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.1346', 'NERVE ROOT, BLOCK (INJECTION OF ANAESTHETIC,\nTHERAPEUTIC SUBSTANCE), LUMBAR/THORACIC, > 1 LEVEL', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1347', 'NERVE ROOTS, DORSAL ROOT GANGLION, ANAESTHETIC, MORE\nTHAN TWO', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1348', 'NERVE ROOTS, DORSAL ROOT GANGLION, ANAESTHETIC, ONE\nTO TWO', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1349', 'NERVE ROOTS, DORSAL ROOT GANGLION, RADIOFREQUENCY,\nNEUROLYTIC, MORE THAN TWO', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.1350', 'NERVE ROOTS, DORSAL ROOT GANGLION, RADIOFREQUENCY,\nNEUROLYTIC, ONE TO TWO', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1351', 'NERVE, FAECAL INCONTINENCE OR OTHER, PERCUTANEOUS\nTIBIAL NERVE STIMULATION', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.1352', 'NERVE, ULNAR, ENTRAPMENT, TRANSPOSITION', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1353', 'NERVE, VAGUS NERVE STIMULATOR', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.1354', 'NERVE, VARIOUS LESIONS, BIOPSY', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1355', 'NERVE, VARIOUS LESIONS, PRIMARY/SECONDARY SUTURE', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1356', 'NERVE-CRANIAL, VARIOUS LESIONS, MICROVASCULAR\nDECOMPRESSION/NEURECTOMY', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1357', 'NERVE-CUTANEOUS, INJURY, PRIMARY SUTURE', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1358', 'NERVE-DIGITAL, INJURY, MICROSURGICAL REPAIR (MULTIPLE)', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1359', 'NERVE-DIGITAL, INJURY, MICROSURGICAL REPAIR (SINGLE)', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1360', 'NERVE-DIGITAL, INJURY, PRIMARY REPAIR', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1361', 'NERVE-FACIAL (MASTOID PORTION), ENTRAPMENT,\nDECOMPRESSION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1362', 'NERVE-FACIAL PARALYSIS, FREE FASCIA AND/OR NERVE GRAFT\n(MICROSURGICAL ? STAGE 1)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1363', 'NERVE-FACIAL PARALYSIS, FREE FASCIA SLING/GRAFT\n(SINGLE/UNILATERAL)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1364', 'NERVE-FACIAL PARALYSIS, FREE MUSCLE FLAP (MICROSURGICAL\n? STAGE 2)', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.1365', 'NERVE-FACIAL PARALYSIS, LOCAL MUSCLE TRANSFER', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1366', 'NERVE-FACIAL, VARIOUS LESIONS, COMBINED MIDDLE FOSA AND TRANSMASTOID FACIAL NERVE DECOMPRESSION', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.1367', 'NERVE-PERIPHERAL (DEEP), TUMOR, EXCISION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1368', 'NERVE-PERIPHERAL (SUPERFICIAL), TUMOR, EXCISION', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1369', 'NERVE-SYMPATHETIC, VARIOUS LESIONS, SYMPATHECTOMY, WITH/WITHOUT VIDEO-ASSISTANCE, BILATERAL', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1370', 'NERVE-SYMPATHETIC, VARIOUS LESIONS, SYMPATHECTOMY, WITH/WITHOUT VIDEO-ASSISTANCE,\nUNILATERAL', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1371', 'NERVE-TRIGEMINAL (GANGLION), NEUROLAGIA, INJECTION WITH ALCOHOL/RADIOFREQUENCY\nGANGLIONOTOMY, IMAGING GUIDED', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1372', 'NEUROSTIMULATOR, INSERTION OF INTERNAL PULSE GENERATOR, INVOLVES OPENING OF WOUND, TUNNELING, OPENING OF POUCH FOR IPG & TESTING OF\nSYSTEM', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1373', 'NEUROSTIMULATOR, REVISION/REPLACEMENT OF\nIMPLANTABLE PULSE GENERATOR (DOES NOT INVOLVE TUNNELING)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1374', 'NOSE, CHOANAL ATRESIA, PLASTIC REPAIR', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1375', 'NOSE, CHOANAL ATRESIA, REPAIR BY PUNCTURE AND\nDILATATION', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1376', 'NOSE, HEMATOMA/ABSCESS, EVACUATION/INCISION &\nDRAINAGE', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.1377', 'NOSE, HEMORRHAGE, HEMOSTASIS (PACKING)/CRYOTHERAPY)', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1378', 'NOSE, LACERATION FULL THICKNESS, REPAIR >3CM', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1379', 'NOSE, NASOENDOSCOPY/NASOPHARYNGOLARYNGOSCOPY (SINGLE OR REPEAT EXAMINATIONS, DURING A 90 DAY GLOBAL\nPERIOD)', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.1380', 'NOSE, POLYPI (COMPLEX), NASOENDOSCOPY WITH EXCISION\nBIOPSY, MORE THAN 2', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1381', 'NOSE, POLYPI (SIMPLE), NASOENDOSCOPY WITH EXCISION\nBIOPSY, 1 TO 2', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1382', 'NOSE, POST-NASAL SPACE, LASER APPLICATION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1383', 'NOSE, RHINOPHYMA, EXCISION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1384', 'NOSE, RHINOPHYMA, TOTAL CONSTRUCTION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1385', 'NOSE, RHINOPLASTY, CORRECTION OF LATERAL/ALAR CARTILAGE AND/OR SEPTAL STRUT (INCLUDING ALL GRAFTS, EXTRACORPOREAL SEPTOPLASTY), RECONSTRUCTION OF NASAL VALVE(S), AND/OR EXTRANASAL CARTILAGE HARVEST', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.1386', 'NOSE, SIMPLE FRACTURE, MANIPULATION', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1387', 'NOSE, VARIOUS LESIONS (POSTNASAL SPACE), DIRECT\nEXAMINATION WITH BIOPSY AND NASENDOSCOPY', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1388', 'NOSE, VARIOUS LESIONS (TURBINATES), TURBINECTOMY/TURBINOPLASTY/SUBMUCOUS RESECTION\n(WITH OR WITHOUT ENDOSCOPES)', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1389', 'NOSE, VARIOUS LESIONS, CAUTERISATION/DIATHERMY', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.1390', 'NOSE, VARIOUS LESIONS, COMPOSITE GRAFT (CHONDRO-\nCUTANEOUS/CHONDRO-MUCOSAL)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1391', 'NOSE, VARIOUS LESIONS, RHINOPLASTY (AUGMENTATION\nEXCLUDING COST OF IMPLANTS)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1392', 'NOSE, VARIOUS LESIONS, RHINOPLASTY (CORRECTION OF BONY\nVAULT ONLY)', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.1393', 'NOSE, VARIOUS LESIONS, RHINOPLASTY (RESTORATION OF THE FACE INVOLVING AUTOGENOUS BONE OR\nCOSTAL CARTILAGE GRAFT)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1394', 'NOSE, VARIOUS LESIONS, RHINOPLASTY (SECONDARY REVISION)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1395', 'NOSE, VARIOUS LESIONS, RHINOPLASTY (TOTAL) INCLUDING CORRECTION OF ALL BONY AND CARTILAGINOUS ELEMENTS', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1396', 'NOSE, VARIOUS LESIONS, SEPTOPLASTY/SUBMUCOUS\nRESECTION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1397', 'OCULAR SURFACE PROCEDURE INCLUDING AMNIOTIC\nMEMBRANE TRANSPLANT (COMPLEX, CULTURED GRAFTS/EXTENSIVE RECONSTRUCTION)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1398', 'OPTIC NERVE SHEATH FENESTRATION', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1399', 'ORAL CAVITY AND PHARYNX, FOREIGN BODY, REMOVAL', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1400', 'ORBIT, CONTRACTURE, RECONSTRUCTION INCLUDING MUCOUS\nMEMBRANE GRAFTING AND STENT MOULD', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1401', 'ORBIT, RECONSTRUCTION, EXTENSIVE FLOOR/MEDIAL WALL\nFRACTURE', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1402', 'ORBIT, TUMOR, EXENTERATION/FLAP RECONSTRUCTION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1403', 'ORBIT, TUMOUR, EXENTERATION WITH ORBITECTOMY &\nPRIMARY RECONSTRUCTION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1404', 'ORBIT, VARIOUS LESIONS OF MID TO POSTERIOR ORBIT,\nEXCISION', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.1405', 'ORBIT, VARIOUS LESIONS, ANTERIOR ORBITOTOMY', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1406', 'ORBIT, VARIOUS LESIONS, ANTERIOR ORBITOTOMY (EXTENSIVE)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1407', 'ORBIT, VARIOUS LESIONS, DECOMPRESSION (BILATERAL)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1408', 'ORBIT, VARIOUS LESIONS, DECOMPRESSION (UNILATERAL)', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1409', 'ORBIT, VARIOUS LESIONS, EXTENDED LATERAL\nORBITOTOMY', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.1410', 'ORBIT, VARIOUS LESIONS, LATERAL ORBITOTOMY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1411', 'ORBIT, VARIOUS LESIONS, OPTIC NERVE DECOMPRESSION\n(BILATERAL)', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.1412', 'ORBIT, VARIOUS LESIONS, OPTIC NERVE DECOMPRESSION\n(UNILATERAL)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1413', 'ORBIT, VARIOUS LESIONS, RECONSTRUCTION INCLUDING ORBITAL SHIFT AND SOFT TISSUE (CRANIOFACIAL APPROACH)', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.1414', 'ORBIT, VARIOUS LESIONS, RECONSTRUCTION OF FLOOR/ROOF\nWITH ALLOPLASTIC MATERIAL', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1415', 'ORBIT, VARIOUS LESIONS, RECONSTRUCTION OF FLOOR/ROOF\nWITH BONE GRAFT', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1416', 'ORBIT, VARIOUS LESIONS/TUMOURS, EXENTERATION/REMOVAL\nVIA CRANIOTOMY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1417', 'ORBITAL, ENUCLEATION WITH INTEGRATED ORBITAL IMPLANT', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1418', 'ORBITAL/SCLERAL, EVISCERATION WITH IMPLANT & SCLERAL\nBALL', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1419', 'ORGAN PROCUREMENT COSTS: CORNEA11', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1420', 'ORGAN PROCUREMENT COSTS: HEART', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1421', 'ORGAN PROCUREMENT COSTS: LUNG', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1422', 'OTHERS, AUTOLOGOUS CHONDROCYTE IMPLANTATION', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1423', 'OVARIAN VEINS, PELVIC CONGESTION SYNDROME, OVARIAN\nVEIN EMBOLISATION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1424', 'OVARY, MALIGNANT TUMOR/CYST, STAGING LAPAROTOMY, AS\nTHE ONLY PROCEDURE', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1425', 'OVARY, MALIGNANT TUMOR/CYST, TOTAL HYSTERECTOMY BILATERAL SALPINGO-OOPHORECTOMY WITH OMENTECTOMY, SURGICAL STAGING\nWITH/WITHOUT LYMPHADENECTOMY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1426', 'OVARY, TUMOR/CYST, ASPIRATION EXCEPT FOR OVUM\nRETRIEVAL', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1427', 'OVARY, TUMOR/CYST, CYSTECTOMY (COMPLICATED,\n>5CM)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1428', 'OVARY, TUMOR/CYST, CYSTECTOMY (SIMPLE, <5CM)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1429', 'OVARY, TUMOR/CYST, OOPHORECTOMY/SALPINGO-\nOOPHORECTOMY (COMPLICATED)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1430', 'OVARY, TUMOR/CYST, OOPHORECTOMY/SALPINGO-\nOOPHORECTOMY (SIMPLE)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1431', 'OVARY, VARIOUS LESIONS, BIOPSY', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1432', 'OVARY, VARIOUS LESIONS, OVARIOPEXY', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1433', 'OVARY, VARIOUS LESIONS, OVARIOPLASTY, LAPAROTOMY/MIS (USING MICROSURGICAL\nTECHNIQUES)', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1434', 'OVARY, VARIOUS LESIONS, WEDGE RESECTION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1435', 'PALATE, CLEFT (COMPLETE), PRIMARY REPAIR', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1436', 'PALATE, CLEFT (PARTIAL), PRIMARY REPAIR', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1437', 'PALATE, CLEFT, SECONDARY REPAIR (CLOSURE OF FISTULA)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1438', 'PALATE, CLEFT, UVULOPHARYNGOPLASTY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1439', 'PALATE, SECONDARY REPAIR (LENGTHENING PROCEDURE)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1440', 'PANCREAS, CYST/PSEUDOCYST, MIS/OPEN DRAINAGE AND\nANASTOMOSIS TO INTESTINE/STOMACH', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1441', 'PANCREAS, PSEUDOCYST/ABSCESS, IMAGING GUIDED\nPERCUTANEOUS DRAINAGE CATHETER INSERTION', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1442', 'PANCREAS, TRANSPLANT (DONATION - CADAVERIC DONOR)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1443', 'PANCREAS, TRANSPLANT (RECIPIENT)', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.1444', 'PANCREAS, TUMOUR, TRIPLE BYPASS', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1445', 'PANCREAS, VARIOUS LESIONS, DISTAL\nPANCREATECTOMY/ANASTOMOSIS OF PANCREATIC DUCT', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1446', 'PANCREAS, VARIOUS LESIONS, DUODENUM PRESERVING PANCREATIC HEAD RESECTION WITH LONGITUDINAL\nPANCREATICO-ENTERIC ANASTOMOSIS (FREY\'S OPERATION)', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.1447', 'PANCREAS, VARIOUS LESIONS, DUODENUM PRESERVING\nPANCREATIC HEAD RESECTION (BEGER\'S OPERATION)', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.1448', 'PANCREAS, VARIOUS LESIONS, ENUCLEATION OF LESIONS (1 TO\n2)', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.1449', 'PANCREAS, VARIOUS LESIONS, ENUCLEATION OF LESIONS (3 OR\nMORE)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1450', 'PANCREAS, VARIOUS LESIONS, EXTERNAL DRAINAGE (OPEN)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1451', 'PANCREAS, VARIOUS LESIONS, IMAGING GUIDED\nPERCUTANEOUS BIOPSY', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1452', 'PANCREAS, VARIOUS LESIONS, MIS/OPEN DISTAL\nPANCREATECTOMY AND SPLENECTOMY', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.1453', 'PANCREAS, VARIOUS LESIONS, MIS/OPEN SPLEEN- PRESERVING\nDISTAL PANCREATECTOMY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1454', 'PANCREAS, VARIOUS LESIONS, MIS/OPEN SUBTOTAL PANCREATECTOMY (EXTENDING TO THE NECK) AND\nSPLENECTOMY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1455', 'PANCREAS, VARIOUS LESIONS, PORTAL VENOUS SAMPLING', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1456', 'PANCREAS, VARIOUS LESIONS, SEGMENTAL PANCREATECTOMY WITH PANCREATICO-ENTERIC\nANASTOMOSIS', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1457', 'PANCREAS, VARIOUS LESIONS, WHIPPLE OPERATION/TOTAL\nPANCREATECTOMY', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.1458', 'PARATHYROID, VARIOUS LESIONS, EXCISION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1459', 'PARATHYROID, VARIOUS LESIONS, RE EXPLORATION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1460', 'PARAVERTEBRAL REGION, BLOCK, ANAESTHETIC (MORE THAN 2\nLEVELS)', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1461', 'PARAVERTEBRAL REGION, BLOCK, ANAESTHETIC (UP TO\n2 LEVELS)', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1462', 'PAROTID, CALCULUS (DEEP), REMOVAL', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1463', 'PAROTID, CALCULUS (SUPERFICIAL), REMOVAL', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.1464', 'PAROTID, FISTULA, REPAIR', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1465', 'PAROTID, TOTAL PAROTIDECTOMY WITH NECK DISSECTION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1466', 'PAROTID, TOTAL PAROTIDECTOMY, WITH/WITHOUT\nPRESERVATION OF FACIAL NERVE', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.1467', 'PAROTID, TUMOR, SUPERFICIAL PAROTIDECTOMY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1468', 'PAROTID, TUMOR, TOTAL PAROTIDECTOMY WITH\nPARAPHARYNGEAL SPACE RESECTION AND FLAP RECONSTRUCTION', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.1469', 'PAROTID, TUMOR, TOTAL PAROTIDECTOMY WITH RADICAL\nNECK DISSECTION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1470', 'PAROTID, TUMOUR, TOTAL PAROTIDECTOMY WITH\nRECONSTRUCTION FACIAL NERVE', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1471', 'PATELLA, FRACTURE, OPEN REDUCTION AND INTERNAL\nFIXATION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1472', 'PATELLA, HABITUAL DISLOCATION- LATERAL RELEASE, MEDIAL\nPLICATION', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1473', 'PATELLA, RECURRENT DISLOCATION/CHONDROMALACIA,\nRECONSTRUCTION', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1474', 'PATELLA, VARIOUS LESIONS, PATELLECTOMY', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1475', 'PELVIC FLOOR RECONSTRUCTION, MIS', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.1476', 'PELVIS, ARTERY/VEIN, LIGATION / OCCLUSION', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1477', 'PELVIS, FRACTURE (DOUBLE COLUMNS), OPEN REDUCTION AND\nINTERNAL FIXATION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1478', 'PELVIS, FRACTURE, FIXATION OF ANTERIOR AND POSTERIOR\nRING', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1479', 'PELVIS, FRACTURE, OPEN REDUCTION AND INTERNAL FIXATION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1480', 'PELVIS, FRACTURE, PLATE/SCREW FIXATION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1481', 'PELVIS, FROZEN/DENSE PELVIC ADHESIONS, CONSERVATIVE RECONSTRUCTION OF OVARIES, TUBES, UTERUS, PELVIC FLOOR', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1482', 'PELVIS, MALIGNANT, SECOND LOOK LAPAROTOMY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1483', 'PENIS, EPISPADIAS, REPAIR INVOLVING BLADDER NECK CLOSURE', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.1484', 'PENIS, EPISPADIAS, REPAIR NOT INVOLVING SPHINCTER (EACH\nSTAGE)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1485', 'PENIS, GLANULAR HYPOSPADIAS, MEATOPLASTY AND\nCIRCUMCISION', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1486', 'PENIS, HYPOSPADIAS, CORRECTION OF CHORDEE', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1487', 'PENIS, HYPOSPADIAS, CORRECTION OF CHORDEE WITH\nTRANSPLANTATION OF PREPUCE', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1488', 'PENIS, HYPOSPADIAS, MEATOTOMY & HEMICIRCUMCISION', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1489', 'PENIS, HYPOSPADIAS, SECONDARY CORRECTION', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1490', 'PENIS, HYPOSPADIAS, URETHRAL RECONSTRUCTION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1491', 'PENIS, HYPOSPADIAS, URETHRAL RECONSTRUCTION &\nCORRECTION OF CHORDEE', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1492', 'PENIS, PARAPHIMOSIS/PHIMOSIS/REDUCTION PREPUCE,\nCIRCUMCISION', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1493', 'PENIS, PENILE WARTS, LASER VAPORISATION', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1494', 'PENIS, PEYRONIE\'S DISEASE, INCISION AND GRAFTING', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1495', 'PENIS, PEYRONIE\'S DISEASE, OPERATION', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1496', 'PENIS, PRIAPISM, DECOMPRESSION (SHUNT OP)', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1497', 'PENIS, PRIAPISM, DECOMPRESSION (SINGLE)', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1498', 'PENIS, REMOVAL OF \"PENILE\" IMPLANT', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1499', 'PENIS, SEX REASSIGNMENT (FEMALE TO MALE), IMPLANTATION\nOF PENILE PROSTHESIS', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1500', 'PENIS, TRAUMA (AMPUTATION), MICROVASCULAR\nREATTACHMENT', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.1501', 'PENIS, TRAUMA, RECONSTRUCTION (1ST STAGE)', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1502', 'PENIS, TRAUMA, RECONSTRUCTION (2ND STAGE)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1503', 'PENIS, TRAUMA, REPAIR OF AVULSION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1504', 'PENIS, TRAUMA, REPAIR OF LACERATION/FRACTURE INVOLVING\nCAVERNOUS TISSUE', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1505', 'PENIS, TUMOR, AMPUTATION (PARTIAL) + BILATERAL RADICAL\nLN DISSECTION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1506', 'PENIS, TUMOR, AMPUTATION (TOTAL)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1507', 'PENIS, TUMOR, AMPUTATION (TOTAL) WITH BLOCK DISSECTION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1508', 'PENIS, TUMOUR, AMPUTATION (PARTIAL)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1509', 'PENIS, VARIOUS LESIONS, EXCISION', 3120000, 'TINDAKAN OPERATIF'); +INSERT INTO `tarif_rs` (`ID_Tarif_RS`, `Tindakan_RS`, `Tarif_RS`, `Kategori_RS`) VALUES +('R.TO.1510', 'PENIS, VARIOUS LESIONS, INSERTION OF PENILE PROSTHESIS', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1511', 'PERIPHERAL NERVE, BLOCK, ANAESTHETIC (MORE THAN\n2 NERVES)', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.1512', 'PERIPHERAL NERVE, BLOCK, ANAESTHETIC (UP TO 2\nNERVES)', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.1513', 'PERIPHERAL NERVE, BLOCK, NEUROLYTIC (MORE THAN 2\nNERVES)', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1514', 'PERIPHERAL NERVE, BLOCK, NEUROLYTIC (UP TO 2\nNERVES)', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1515', 'PHARYNX, ADHESIONS, DIVISION', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1516', 'PHARYNX, CYSTS/VALLECULAR, REMOVAL', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1517', 'PHARYNX, POUCH, REMOVAL', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1518', 'PHARYNX, TONGUE BASE, FOR OSA, EXCISION OF LINGUAL\nTONSILS', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1519', 'PHARYNX, TUMOR, PARTIAL PHARYNGECTOMY AND RADICAL\nNECK DISSECTION WITH FLAP', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.1520', 'PHARYNX, VARIOUS LESIONS, FLAP/PHARYNGOPLASTY', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1521', 'PHARYNX, VARIOUS LESIONS, PARTIAL\nPHARYNGECTOMY WITH PRIMARY CLOSURE', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1522', 'PHARYNX, VARIOUS LESIONS, PHARYNGOTOMY (LATERAL) WITH\nEXCISION OF TONGUE AND RECONSTRUCTION', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.1523', 'PHARYNX/LARYNX, PARAPHARYNGEAL SPACE TUMOR EXCISION', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.1524', 'PHOTODYNAMIC THERAPY', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1525', 'PHOTOREFRACTIVE KERATECTOMY/PHOTOTHERAPEUTIC KERATECTOMY\n(FOR DISEASED EYE)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1526', 'PITUITARY, VARIOUS LESIONS, TRANSPHENOIDAL/TRANSEPTAL EXCISION WITH/WITHOUT GRAFTING (OPEN/MIS)', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1527', 'PROSTATE GLAND, ABSCESS, RETROPUBIC/ENDOSCOPIC\nDRAINAGE', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1528', 'PROSTATE GLAND, HYPERTROPHY, INSERTION OF PROSTATIC\nSTENT', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1529', 'PROSTATE GLAND, LASER VAPORISATION OF PROSTATE', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1530', 'PROSTATE GLAND, PROSTATE IMRT (INTENSITY MODULATED\nRADIATION THERAPY) GOLD SEEDS INSERTION', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1531', 'PROSTATE GLAND, PROSTATE, BENIGN HYPERPLASIA,\nMINIMALLY INVASIVE ABLATION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1532', 'PROSTATE GLAND, SIMPLE PROSTATECTOMY (MIS/OPEN)', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1533', 'PROSTATE GLAND, VARIOUS LESIONS, RADICAL\nPROSTATECTOMY (MIS/OPEN)', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.1534', 'PROSTATE GLAND, VARIOUS LESIONS, SATURATION PROSTATE\nBIOPSY', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1535', 'PROSTATE GLAND, VARIOUS LESIONS, TRANS-RECTAL\nULTRASOUND (TRUS)', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.1536', 'PROSTATE GLAND, VARIOUS LESIONS, TRANS-RECTAL\nULTRASOUND (TRUS) GUIDED BIOPSY', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1537', 'PROSTATE GLAND, VARIOUS LESIONS, TRANSURETHRAL\nRESECTION OF PROSTATE (TURP) (LESS THAN 30 GM)', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1538', 'PROSTATE GLAND, VARIOUS LESIONS, TRANSURETHRAL\nRESECTION OF PROSTATE (TURP) (MORE THAN 30 GM)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1539', 'RADICAL CHOLEDOCHECTOMY WITH LIVER RESECTION (LESS\nTHAN 4 SEGMENTS)', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.1540', 'RADICAL CHOLEDOCHECTOMY WITH LIVER RESECTIONS (4 OR\nMORE SEGMENTS) OR WITH MULTIPLE HEPATICOENTERIC ANASTOMOSIS', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.1541', 'RADIOTHERAPY, ENDOLUMINAL BRACHYTHERAPY: OESOPHAGUS, NASOPHARYNGEAL CARCINOMA (NPC),\nHEPATOBILIARY, CARDIAC, LUNG, OTHERS', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1542', 'RADIOTHERAPY, INTERSTITIAL BRACHYTHERAPY\n(WITH/WITHOUT OPEN SURGERY)', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1543', 'RADIOTHERAPY, INTERSTITIAL BRACHYTHERAPY (WITHOUT\nOPEN SURGERY): PROSTATE', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1544', 'RADIOTHERAPY, INTRACAVITARY BRACHYTHERAPY (MULTI-\nCHANNEL): CERVIX, OTHERS', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1545', 'RADIOTHERAPY, INTRACAVITARY BRACHYTHERAPY (SINGLE\nCHANNEL): ENDOMETRIUM, OTHERS', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1546', 'RADIOTHERAPY, INTRA-OPERATIVE RADIOTHERAPY (ELECTRONS\nOR KILOVOLTAGE): BREAST, SARCOMA, UPPER GI, LOWER GI, OTHER SITES', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1547', 'RADIUS (HEAD), VARIOUS LESIONS, EXCISION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1548', 'RADIUS AND ULNA, FRACTURE/DISLOCATION, NON\nUNION/DELAYED UNION BONE GRAFTING AND RE- FIXATION', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1549', 'RADIUS AND ULNA, FRACTURE/DISLOCATION, NON\nUNION/DELAYED UNION BONE GRAFTING ONLY', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1550', 'RADIUS AND ULNA, FRACTURE/DISLOCATION, OPEN REDUCTION AND INTERNAL FIXATION WITH OR WITHOUT BONE GRAFTING', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1551', 'RECTUM, HIRSCHSPRUNG\'S DISEASE, ANAL SPHINCTEROTOMY', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1552', 'RECTUM, HIRSCHSPRUNG\'S DISEASE, RECTAL MYECTOMY', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1553', 'RECTUM, HIRSCHSPRUNG\'S DISEASE, RECTO- SIGMOIDECTOMY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1554', 'RECTUM, PERINEAL RECTOSIGMOIDECTOMY FOR RECTAL\nPROLAPSE', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1555', 'RECTUM, RESECTION - RECTOPEXY FOR RECTAL PROLAPSE\n(OPEN/MIS)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1556', 'RECTUM, STARR - STAPLED HEMORROIDECTOMY', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1557', 'RECTUM, STRICTURE, LASER TREATMENT', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.1558', 'RECTUM, TUMOR, ANTERIOR RESECTION/ABDOMINO- PERINEAL RESECTION WITH SALPINGO-OOPHORECTOMY AND\nTOTAL HYSTERECTOMY', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.1559', 'RECTUM, TUMOR, LASER VAPORISATION/ENDOSCOPIC\nFULGURATION', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1560', 'RECTUM, ULTRA-LOW ANTERIOR RESECTION (TOTAL\nMESORECTAL EXCISION) WITH/WITHOUT PLND', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.1561', 'RECTUM, VARIOUS LESIONS, ABDOMINO-PERINEAL PULL\nTHROUGH RESECTION WITH COLO-ANAL ANASTOMOSIS', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1562', 'RECTUM, VARIOUS LESIONS, HARTMANN\'S PROCEDURE', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1563', 'RECTUM, VARIOUS LESIONS, TRANSANAL REMOVAL WITH\nBIOPSY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1564', 'RETINA, DETACHMENT (COMPLEX), OPERATION (MORE THAN\nONE PLOMB/ENCIRCLAGE)10', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1565', 'RETINA, DETACHMENT, REMOVAL OF ENCIRCLING SILICONE\nBAND', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1566', 'RETINA, DETACHMENT, RESECTION/BUCKLING\nOPERATION/REVISION OPERATION WITH SINGLE PLOMB', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1567', 'RETINA, LASER RETINOPEXY, COMPLEX (SUBRETINAL FLUID,\nVITREOUS HAEMORRHAGE, MULTIPLE TEARS)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1568', 'RETINA, PAN RETINAL PHOTOCOAGULATION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1569', 'RETINA, PNEUMATIC RETINOPEXY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1570', 'RETINA, ROP (RETINOPATHY OF PREMATURITY) LASER\nPHOTOCOAGULATION', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1571', 'RETINA, TEARS, CRYOTHERAPY OR PHOTOCOAGULATION\n(LASER) (BILATERAL)', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1572', 'RETINA, TEARS, DIATHERMY/CRYOTHERAPY (UNILATERAL)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1573', 'RETINA, TEARS, PHOTOCOAGULATION (LASER) (UNILATERAL)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1574', 'RETINA, TRANS PARS PLANA POSTERIOR CAPSULECTOMY', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1575', 'RETINA/MACULA, GRID AND FOCAL LASER\nPHOTOCOAGULATION', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1576', 'SACRAL NERVE STIMULATION', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1577', 'SACRAL ROOT BLOCK, NEUROLYTIC, RADIOFREQUENCY,\nIMAGING GUIDED, MORE THAN 2', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1578', 'SACRAL ROOT BLOCK, NEUROLYTIC, RADIOFREQUENCY,\nIMAGING GUIDED, UP TO 2', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1579', 'SACRO-ILIAC JOINT, RADIOFREQUENCY, BILATERAL', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1580', 'SACRO-ILIAC JOINT, RADIOFREQUENCY, UNILATERAL', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1581', 'SACRO-ILIAC JOINT, SACROILIAC JOINT BLOCK (INJECTION OF\nANAESTHETIC, THERAPEUTIC SUBSTANCE), BILATERAL', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1582', 'SACRO-ILIAC JOINT, SACROILIAC JOINT BLOCK (INJECTION OF ANAESTHETIC, THERAPEUTIC\nSUBSTANCE), UNILATERAL', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1583', 'SACRUM & COCCYX, PILONIDAL SINUS/CYST, EXCISION WITH\nBIOPSY', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1584', 'SACRUM & COCCYX, TUMOR, EXCISION WITH BIOPSY', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1585', 'SACRUM, FRACTURE, OPEN REDUCTION AND INTERNAL\nFIXATION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1586', 'SACRUM, GANGLION IMPAR, BLOCK, ANAESTHETIC', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1587', 'SACRUM, GANGLION IMPAR, BLOCK, RADIOFREQUENCY,\nNEUROLYTIC', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1588', 'SCAPULA, COMPLEX SCAPULAR FRACTURE (WITH/WITHOUT GLENOHUMERAL JOINT INVOLVEMENT),\nOPEN REDUCTION AND INTERNAL FIXATION (ORIF)', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.1589', 'SCAPULA, SCAPULAR FRACTURE, OPEN REDUCTION AND\nINTERNAL FIXATION (ORIF) WITH PLATING', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1590', 'SCIATIC NERVE, BLOCK', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.1591', 'SCROTUM, EXPLORATION, DETORSION OF TESTIS AND\nBILATERAL TESTES FIXATION', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1592', 'SCROTUM, HYDROCELE/VARICOCELE (BILATERAL), EXCISION', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1593', 'SCROTUM, HYDROCELE/VARICOCELE (UNILATERAL), EXCISION', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1594', 'SHOULDER FRACTURE/DISLOCATION, OPEN REDUCTION AND\nINTERNAL FIXATION (2 PART FRACTURE)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1595', 'SHOULDER FRACTURE/DISLOCATION, OPEN REDUCTION AND\nINTERNAL FIXATION (3 OR MORE PART FRACTURE)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1596', 'SHOULDER, ACROMIOCLAVICULAR JOINT\nSTABILISATION/RECONSTRUCTION', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.1597', 'SHOULDER, DEFORMITIES, CORRECTIVE SURGERY, OSTEOTOMY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1598', 'SHOULDER, SHOULDER SOFT TISSUE INJURY, MIS/OPEN BANKART OR SUPERIOR LABRUM FROM ANTERIOR TO\nPOSTERIOR (SLAP) REPAIR', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1599', 'SHOULDER, SHOULDER SOFT TISSUE INJURY, MIS/OPEN BANKART REPAIR WITH SUPERIOR LABRUM FROM ANTERIOR TO POSTERIOR (SLAP) REPAIR/ROTATOR\nCUFF REPAIR', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.1600', 'SHOULDER, SHOULDER SOFT TISSUE INJURY, MIS/OPEN\nDECOMPRESSION ALONE', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1601', 'SHOULDER, SHOULDER SOFT TISSUE INJURY, MIS/OPEN\nDECOMPRESSION WITH CUFF REPAIR', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.1602', 'SHOULDER, SHOULDER SOFT TISSUE INJURY, MIS/OPEN\nDECOMPRESSION WITH CUFF REPAIR & EXCISION OF DISTAL CLAVICLE', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1603', 'SHOULDER, SHOULDER SOFT TISSUE INJURY, MIS/OPEN\nDECOMPRESSION WITH EXCISION OF DISTAL CLAVICLE', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1604', 'SHOULDER, SHOULDER SOFT TISSUE INJURY, SHOULDER RECONSTRUCTION (EG, BRISTOW/LATARJET\nPROCEDURE)', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.1605', 'SHOULDER, THERAPEUTIC ARTHROSCOPY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1606', 'SHOULDER, VARIOUS LESIONS, HEMIARTHROPLASTY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1607', 'SHOULDER, VARIOUS LESIONS, PRIMARY TOTAL JOINT REPLACEMENT WITH AUGMENTATION, REQUIRING EXTRA\nIMPLANTS OR BONE GRAFTS, OPEN/MIS/NAVIGATED', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1608', 'SHOULDER, VARIOUS LESIONS, PRIMARY TOTAL JOINT\nREPLACEMENT, OPEN/MIS/NAVIGATED', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.1609', 'SHOULDER, VARIOUS LESIONS, REVISION TOTAL JOINT\nREPLACEMENT,OPEN/MIS/NAVIGATED', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.1610', 'SINAL-NASAL, ENDOSCOPIC HEMOSTASIS (COMPLEX, UNDER\nGENERAL ANAESTHESIA)', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1611', 'SINUSES FRONTAL, VARIOUS LESIONS, CATHETERISATION', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.1612', 'SINUSES FRONTAL, VARIOUS LESIONS, RADICAL OBLITERATION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1613', 'SINUSES FRONTAL, VARIOUS LESIONS, TREPHINE', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1614', 'SINUSES, ETHMOIDAL, VARIOUS LESIONS, EXTERNAL\nOPERATION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1615', 'SINUSES, NASAL, FOREIGN BODY/OTHER LESIONS, INTRANASAL\nOPERATION/REMOVAL OF FOREIGN BODY', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1616', 'SINUSES, NASAL, HEMATOMA/ABSCESS, ANTRAL DRAINAGE', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1617', 'SINUSES, NASAL, INFECTION, FUNCTIONAL SINUSCOPIC\nDRAINAGE OF ETHMOIDAL/ MAXILLARY SINUSES', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1618', 'SINUSES, NASAL, INFECTION, FUNCTIONAL SINUSCOPIC\nETHMOIDECTOMY (BILATERAL)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1619', 'SINUSES, NASAL, INFECTION, FUNCTIONAL SINUSCOPIC\nETHMOIDECTOMY (UNILATERAL)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1620', 'SINUSES, NASAL, ORO-ANTRAL FISTULA, CLOSURE', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1621', 'SINUSES, NASAL, VARIOUS LESIONS OF ANTRUM, PROOF\nPUNCTURE AND/OR LAVAGE', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1622', 'SINUSES, NASAL, VARIOUS LESIONS, ANTROSTOMY (RADICAL)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1623', 'SINUSES, NASAL, VARIOUS LESIONS, FRONTO-\nETHMOIDECTOMY (RADICAL) WITH OSTEOPLASTIC FLAP', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1624', 'SINUSES, NASAL, VARIOUS LESIONS, FRONTO-NASAL\nETHMOIDECTOMY WITH/WITHOUT SPHENOIDOTOMY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1625', 'SINUSES, NASAL, VARIOUS LESIONS, INTRANASAL OPERATION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1626', 'SINUSES, SPHENOIDAL, VARIOUS LESIONS, INTRANASAL\nOPERATION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1627', 'SKIN & SUBCUTANEOUS, PRE-SEPTAL/PERI-ORBITAL\nDERMOID/LESION, EXCISION', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1628', 'SKIN & SUBCUTANEOUS, SCAR REVISION, FACE & NECK (< 3CM)', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.1629', 'SKIN (UPPER LIMB), OPEN WOUND, MAJOR DESLOUGHING', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1630', 'SKIN AND MUCOUS MEMBRANE, VARIOUS LESIONS, EXCISION\nBIOPSY', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.1631', 'SKIN AND SUBCUTANEOUS TISSUE (EAR/NOSE/EYELID/FACE),\nCOMPLEX LACERATIONS, REPAIR', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1632', 'SKIN AND SUBCUTANEOUS TISSUE (FACE AND NECK), SCAR OF\nMORE THAN 3CM, REVISION', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1633', 'SKIN AND SUBCUTANEOUS TISSUE, ARTEIOVENOUS MALFORMATION/HEMANGIOMA/LYMPHANGIOMA (LARGE AND DEEP-SEATED), EXCISION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1634', 'SKIN AND SUBCUTANEOUS TISSUE, ARTERIOVENOUS\nMALFORMATION/HEMANGIOMA/LYMPHANGIOMA (EXTENSIVE AND COMPLEX), EXCISION', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.1635', 'SKIN AND SUBCUTANEOUS TISSUE, ARTERIOVENOUS\nMALFORMATION/HEMANGIOMA/LYMPHANGIOMA <3CM EXCLUDING FACE, HANDS, GENITALIA, EXCISION', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1636', 'SKIN AND SUBCUTANEOUS TISSUE, ARTERIOVENOUS\nMALFORMATION/HEMANGIOMA/LYMPHANGIOMA >3CM EXCLUDING FACE, HANDS, GENITALIA, EXCISION', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1637', 'SKIN AND SUBCUTANEOUS TISSUE, ARTERIOVENOUS\nMALFORMATION/HEMANGIOMA/LYMPHANGIOMA ON FACE, HANDS, GENITALIA, EXCISION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1638', 'SKIN AND SUBCUTANEOUS TISSUE, BURNS, ESCHAROTOMY\n(EXTENSIVE)', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1639', 'SKIN AND SUBCUTANEOUS TISSUE, BURNS, ESCHAROTOMY\n(LIMITED)', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.1640', 'SKIN AND SUBCUTANEOUS TISSUE, BURNS, EXCISION AND\nMAJOR FLAP REPAIR', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1641', 'SKIN AND SUBCUTANEOUS TISSUE, BURNS, EXCISION AND\nMAJOR FULL THICKNESS GRAFT', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1642', 'SKIN AND SUBCUTANEOUS TISSUE, BURNS, EXCISION AND\nSMALL FULL THICKNESS GRAFT', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1643', 'SKIN AND SUBCUTANEOUS TISSUE, DEEP>3CM/EXTENSIVE CONTAMINATED WOUND,\nDEBRIDEMENT', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1644', 'SKIN AND SUBCUTANEOUS TISSUE, DEFECT (DEEP), DERMOFAT/FASCIA GRAFT (INCLUDING\nTRANSPLANT/MUSCLE FLAP)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1645', 'SKIN AND SUBCUTANEOUS TISSUE, DEFECT (DEEP), DIRECT FLAP (CROSS ARM/RADIAL FORE ARM/ABDOMINAL/SIMILAR)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1646', 'SKIN AND SUBCUTANEOUS TISSUE, DEFECT (DEEP), DIRECT FLAP\nREPAIR (CROSS LEG)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1647', 'SKIN AND SUBCUTANEOUS TISSUE, DEFECT (DEEP), FREE FLAPS', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.1648', 'SKIN AND SUBCUTANEOUS TISSUE, DEFECT (DEEP), FREE GRAFT (SPLIT SKIN GRAFT - EXTENSIVE/INLAY GRAFT USING A MOULD)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1649', 'SKIN AND SUBCUTANEOUS TISSUE, DEFECT (DEEP), STAGED\nDISTANT FLAP (DIVISION)', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1650', 'SKIN AND SUBCUTANEOUS TISSUE, DEFECT (MULTIPLE DIGITS),\nFREE FULL THICKNESS GRAFT', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1651', 'SKIN AND SUBCUTANEOUS TISSUE, DEFECT (MULTIPLE DIGITS),\nSTAGED LOCAL FLAP (DIVISION)', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1652', 'SKIN AND SUBCUTANEOUS TISSUE, DEFECT (SINGLE DIGIT), FREE\nFULL THICKNESS GRAFT', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1653', 'SKIN AND SUBCUTANEOUS TISSUE, DEFECT, DIRECT FLAP\n(CROSS FINGER/SIMILAR FLAPS)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1654', 'SKIN AND SUBCUTANEOUS TISSUE, DEFECT, FREE GRAFT (SPLIT\nSKIN GRAFT/PINCH GRAFTS UNDER 1/2%)', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1655', 'SKIN AND SUBCUTANEOUS TISSUE, DEFECT, FREE GRAFTS (SPLIT\nSKIN GRAFT 1/2 TO LESS THAN 2%)', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1656', 'SKIN AND SUBCUTANEOUS TISSUE, DEFECT, FREE GRAFTS (SPLIT\nSKIN GRAFT 2 TO LESS THAN 5%)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1657', 'SKIN AND SUBCUTANEOUS TISSUE, DEFECT, FREE GRAFTS (SPLIT\nSKIN GRAFT 5 TO 10%)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1658', 'SKIN AND SUBCUTANEOUS TISSUE, DEFECT, FREE GRAFTS (SPLIT\nSKIN GRAFT MORE THAN 10%)', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.1659', 'SKIN AND SUBCUTANEOUS TISSUE, DEFECT, LOCAL FLAP TO MULTIPLE DIGITS (CROSS\nFINGER/THENAR/FLAG/ROTATION FLAP)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1660', 'SKIN AND SUBCUTANEOUS TISSUE, DEFECT, SINGLE STAGE\nLOCAL FLAP (COMPLICATED/LARGE)', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.1661', 'SKIN AND SUBCUTANEOUS TISSUE, DEFECT, SINGLE STAGE\nLOCAL FLAP (SIMPLE/SMALL)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1662', 'SKIN AND SUBCUTANEOUS TISSUE, DEFECT, STAGED LOCAL\nFLAP(DIVISION)', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1663', 'SKIN AND SUBCUTANEOUS TISSUE, FOREIGN BODY\n(SUBCUTANEOUS), REMOVAL', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.1664', 'SKIN AND SUBCUTANEOUS TISSUE, HEMATOMA\n/CARBUNCLE CELLULITIS/SIMILAR LESION>3CM, SAUCERISATION/INCISION WITH DRAINAGE', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1665', 'SKIN AND SUBCUTANEOUS TISSUE, HEMATOMA,\nABSCESS/CELLULITIS/SIMILAR LESION<3CM, SAUCERISATION/INCISION & DRAINAGE', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.1666', 'SKIN AND SUBCUTANEOUS TISSUE, LACERATION (SUPERFICIAL)\nOF LESS THAN 7CM, REPAIR', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1667', 'SKIN AND SUBCUTANEOUS TISSUE, LACERATION (SUPERFICIAL)\nOF MORE THAN 7CM, REPAIR', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1668', 'SKIN AND SUBCUTANEOUS TISSUE, LACERATIONS (DEEP\n>3CM/MULTIPLE) LACERATIONS, REPAIR/TOILET & SUTURE, WITH/WITHOUT DEBRIDEMENT', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1669', 'SKIN AND SUBCUTANEOUS TISSUE, NEUROFIBROMATOSIS OF\nFACE AND NECK, EXCISION (LARGE)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1670', 'SKIN AND SUBCUTANEOUS TISSUE, NEUROFIBROMATOSIS OF\nFACE AND NECK, EXCISION (MODERATE)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1671', 'SKIN AND SUBCUTANEOUS TISSUE, NEUROFIBROMATOSIS OF FACE AND NECK, EXCISION\n(LARGE >3CM AND COMPLICATED/MULTIPLE)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1672', 'SKIN AND SUBCUTANEOUS TISSUE, NEUROFIBROMATOSIS OF FACE AND NECK, EXCISION\n(SMALL<3CM)', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1673', 'SKIN AND SUBCUTANEOUS TISSUE, SINUS (DEEP>3CM),\nEXCISION WITH/WITHOUT BIOPSY', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1674', 'SKIN AND SUBCUTANEOUS TISSUE, SINUS (SHALLOW<3CM),\nEXCISION WITH/WITHOUT BIOPSY', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1675', 'SKIN AND SUBCUTANEOUS TISSUE, TUMOR/CYST/ULCER/ SCAR, EXCISION/PUNCH/SHAVE BIOPSY, LESION SIZE UP\nTO AND INCLUDING 15MM IN DIAMETER', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.1676', 'SKIN AND SUBCUTANEOUS TISSUE, TUMOR/CYST/ULCER/SCAR, EXCISION BIOPSY, LESION SIZE MORE THAN 15MM IN DIAMETER', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1677', 'SKIN AND SUBCUTANEOUS TISSUE, TUMOR/CYST/ULCER/SCAR, EXCISION BIOPSY, REMOVAL\nOF 2 OR MORE OR RECURRENT OR COMPLICATED\n(ADHERENT), EXCISION', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1678', 'SKIN AND SUBCUTANEOUS TISSUE, TUMOUR (MALIGNANT), WIDE EXCISION AND RECONSTRUCTION\nAND LOCAL FLAP/SKIN GRAFT', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1679', 'SKIN AND SUBCUTANEOUS TISSUE, TUMOUR (MALIGNANT), WIDE EXCISION WITH IMMEDIATE BLOCK DISSECTION', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1680', 'SKIN AND SUBCUTANEOUS TISSUE, WOUND (LARGE>3CM),\nSECONDARY SUTURE', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1681', 'SKIN AND SUBCUTANEOUS TISSUE, WOUND, DEBRIDEMENT\n<3CM', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.1682', 'SKIN CANCER, MOHS MICROGRAPHIC SURGERY WITH\nRECONSTRUCTION/GRAFT/FLAP ( 5 TISSUE BLOCKS)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1684', 'SKIN CANCER, MOHS MICROGRAPHIC SURGERY WITHOUT\nRECONSTRUCTION', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1685', 'SKIN, ANGIOMA, CAUTERISATION/INJECTION', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.1686', 'SKIN, BURNS (2% TO 5%), EXCISION', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1687', 'SKIN, BURNS (LESS THAN 2%), EXCISION', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1688', 'SKIN, BURNS (MORE THAN 10%), DRESSING', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1689', 'SKIN, BURNS (MORE THAN 10%), EXCISION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1690', 'SKIN, BURNS (MORE THAN 5% TO 10%) EXCISION', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1691', 'SKIN, DEFECT, DISTANT SKIN FLAPS', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1692', 'SKIN, DEFECT, NEUROVASCULAR ISLAND FLAP', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1693', 'SKIN, KERATOSES/WARTS/TAGS/SIMILAR LESIONS, EXCISION (6 -\n10 LESIONS)', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1694', 'SKIN, KERATOSES/WARTS/TAGS/SIMILAR LESIONS, EXCISION\n(MORE THAN10 LESIONS)', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1695', 'SKIN, KERATOSES/WARTS/TAGS/SIMILAR LESIONS, EXCISION\n(NOT MORE THAN 5 LESIONS)', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.1696', 'SKIN, NEUROMAS/HEMANGIOMAS, EXCISION/VAPORISATION BY LASER AND OTHER\nABLATIVE MODALITIES, THERAPEUTIC', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.1697', 'SKIN, PLANTAR WART, EXCISION OR VAPORISATION BY LASER', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.1698', 'SKIN, PLANTAR WARTS (MULTIPLE), EXCISION', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1699', 'SKIN, PRE-MALIGNANT LESIONS, EXCISION/VAPORISATION BY LASER AND OTHER\nABLATIVE MODALITIES, THERAPEUTIC, UP TO 4 SESSIONS IN 12 MONTHS*\n*TO PROVIDE HISTOPATHOLOGY REPORT IF AUDITED', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1700', 'SKIN, SCAR (EXTENSIVE), REVISION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1701', 'SKIN, SCAR, REVISION WITH Z-PLASTY', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1702', 'SKIN, SCAR/VARIOUS LESION (SINGLE), REMOVAL OF TISSUE\nEXPANDER/PROSTHESIS AND REVISION OF SCAR', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1703', 'SKIN, SCARS/LESIONS (MULTIPLE), REMOVAL OF TISSUE\nEXPANDER/PROSTHESIS AND REVISION/EXCISION OF SCARS', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1704', 'SKIN, SUPERFICIAL NASAL DERMOID, EXCISION', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1705', 'SKIN, SURGICAL TREATMENT FOR VITILIGO (INVOLVING NON-\nCULTURED CELLULAR GRAFTING) (<20 SQ CM)', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1706', 'SKIN, SURGICAL TREATMENT FOR VITILIGO (INVOLVING NON-\nCULTURED CELLULAR GRAFTING) (>40 SQ CM)', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1707', 'SKIN, SURGICAL TREATMENT FOR VITILIGO (INVOLVING NON-\nCULTURED CELLULAR GRAFTING) (20-40 SQ CM)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1708', 'SKIN, TATTOO (1% TO 2%), LASER EXCISION', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1709', 'SKIN, TATTOO (LESS THAN 1%), LASER EXCISION', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.1710', 'SKIN, TATTOO (MULTIPLE/MORE THAN 2%), LASER EXCISION', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1711', 'SKIN, TATTOO, REPEAT LASER EXCISION', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.1712', 'SKIN, VARIOUS LESIONS OF FACE (2 TO 3), EXCISION\nBIOPSY', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1713', 'SKIN, VARIOUS LESIONS OF FACE (4 AND ABOVE), EXCISION\nBIOPSY', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1714', 'SKIN, VARIOUS LESIONS OF FACE (SINGLE), EXCISION/PUNCH/\nSHAVE BIOPSY', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.1715', 'SKIN, VARIOUS LESIONS, ABRASIVE THERAPY (EXTENSIVE)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1716', 'SKIN, VARIOUS LESIONS, ABRASIVE THERAPY (LIMITED)', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1717', 'SKIN, VARIOUS LESIONS, INSERTION OF TISSUE EXPANDER\n(MULTIPLE)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1718', 'SKIN, VARIOUS LESIONS, INSERTION OF TISSUE EXPANDER\n(SINGLE)', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1719', 'SKIN, VARIOUS LESIONS, TRIAL DERMABRASION', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.1720', 'SKIN, WRINKLES, PARTIAL RHYTIDECTOMY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1721', 'SKIN, WRINKLES, TOTAL RHYTIDECTOMY', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1722', 'SKULL, BASE, ENDOSCOPIC OR OPEN RESECTION OF SKULL BASE SOFT TISSUE TUMOURS WITH NO BONE\nINVOLVEMENT', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1723', 'SKULL, BASE, ENDOSCOPIC OR OPEN RESECTION OF SKULL BASE SOFT TISSUE TUMOURS WITH RESECTION OF BONE AND DURA (INTRADURAL, INCLUDING CLIVUS,\nPARASELLAR AREA OR CAVERNOUS SINUS) WITH SKULL\nBASE RECONSTRUCTION', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.1724', 'SKULL, BASE, ENDOSCOPIC OR OPEN RESECTION OF SKULL BASE SOFT TISSUE TUMOURS, (INCLUDING NASOPHARYNGECTOMY) WITH RESECTION OF BONE AND PRESERVATION OF DURA\n(EXTRADURAL)', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.1725', 'SKULL, BURR HOLE, INSERTION OF INTRACRANIAL PRESSURE\n(ICP) MONITOR', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1726', 'SKULL, CHIARI MALFORMATION/SYRINGOMYELIA, POSTERIOR\nFOSSA DECOMPRESSION WITH DURAPLASTY', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.1727', 'SKULL, COMPOUND FRACTURE WITH DURAL PENETRATION AND\nBRAIN DAMAGE, OPERATION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1728', 'SKULL, COMPOUND FRACTURE WITHOUT DURAL PENETRATION,\nOPERATION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1729', 'SKULL, CRANIOSTENOSIS (MULTIPLE SUTURE), OPERATION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1730', 'SKULL, CRANIOSTENOSIS (SINGLE SUTURE), OPERATION', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.1731', 'SKULL, CRANIOSTENOSIS, OPERATION, CRANIOFACIAL\nRECONSTRUCTION', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.1732', 'SKULL, DEFECT, CRANIOPLASTY (LARGE)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1733', 'SKULL, DEFECT, CRANIOPLASTY (SMALL)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1734', 'SKULL, DEPRESSED/COMMINUTED FRACTURE, ELEVATION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1735', 'SKULL, FRACTURE WITH RHINORRHOEA/OTORRHOEA,\nCRANIOPLASTY AND REPAIR', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1736', 'SKULL, INTRACRANIAL HEMORRHAGE, BURR-HOLE\nCRANIOTOMY, (UNILATERAL)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1737', 'SKULL, INTRACRANIAL HEMORRHAGE, BURR-HOLE\nCRANIOTOMY, BILATERAL', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1738', 'SKULL, INTRACRANIAL HEMORRHAGE, OSTEOPLASTIC\nCRANIOTOMY/EXTENSIVE CRANIECTOMY, BILATERAL', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.1739', 'SKULL, INTRACRANIAL HEMORRHAGE, OSTEOPLASTIC\nCRANIOTOMY/EXTENSIVE CRANIECTOMY, UNILATERAL', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1740', 'SKULL, OSTEOMYELITIS, CRANIECTOMY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1741', 'SKULL/FACE, MALIGNANT TUMOUR/TRAUMA, CRANIOFACIAL\nRESECTION', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.1742', 'SOFT TISSUE (LOWER LIMB), CONTRACTURE, MAJOR RELEASE', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1743', 'SOFT TISSUE (LOWER LIMB), CONTRACTURE, MINOR RELEASE', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1744', 'SOFT TISSUE (LOWER LIMB), OPEN WOUND/INFECTION, MAJOR\nDESLOUGHING', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1745', 'SOFT TISSUE (LOWER LIMB), SMALL TUMORS (BENIGN),\nEXCISION BIOPSY UNDER GENERAL ANESTHESIA', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1746', 'SOFT TISSUE (LOWER LIMB), TUMOR/TUMOR-LIKE LESIONS,\nMARGINAL EXCISION', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1747', 'SOFT TISSUE (LOWER LIMB), TUMORS (BENIGN), WIDE EXCISION\nBIOPSY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1748', 'SOFT TISSUE (LOWER LIMB), TUMORS (MALIGNANT), RADICAL\nEXCISION BIOPSY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1749', 'SOFT TISSUE (LOWER LIMB), VARIOUS LESIONS, MAJOR RELEASE', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1750', 'SOFT TISSUE (LOWER LIMB), VARIOUS LESIONS, MINOR RELEASE', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1751', 'SOFT TISSUE (PALMAR SPACE), ABSCESS, DRAINAGE', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1752', 'SOFT TISSUE (UPPER LIMB), TUMORS (BENIGN), MAJOR\nEXCISION BIOPSY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1753', 'SOFT TISSUE (UPPER LIMB), TUMORS (MALIGNANT), RADICAL\nEXCISION BIOPSY', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1754', 'SOFT TISSUE (UPPER LIMB), TUMORS (MALIGNANT), WIDE\nEXCISION BIOPSY', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1755', 'SOFT TISSUE, TUMOR (MALIGNANT), MAJOR RESECTION AND\nRECONSTRUCTION (MICROSURGICAL)', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.1756', 'SOFT TISSUE, TUMOR (MALIGNANT), RADICAL EXCISION BIOPSY\n>7CM OTHER THAN UPPER/LOWER LIMBS', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1757', 'SOFT TISSUE, TUMOR (MALIGNANT), WIDE EXCISION BIOPSY\n<7CM OTHER THAN UPPER/LOWER LIMBS', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1758', 'SPERMATIC CORD, SPERMATOCELE/EPIDIDYMAL CYST, EXCISION', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1759', 'SPERMATIC CORD, VARIOUS LESIONS, EPIDIDYMECTOMY', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1760', 'SPHENOPALATINE GANGLION - BLOCK, NEUROLYTIC', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1761', 'SPHENOPALATINE GANGLION, BLOCK, ANAESTHETIC', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1762', 'SPINAL CORD, ANEURYSM/ARTERIO-VENOUS MALFORMATION\nCLIPPING/ EXCISION', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.1763', 'SPINAL CORD, STIMULATION/MODULATION,\nOPEN/CLOSED/PERCUTANEOUS', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1764', 'SPINAL CORD, TUMOURS, LAMINECTOMY AND EXCISION\n(EXTRADURAL)', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1765', 'SPINAL CORD, TUMOURS, LAMINECTOMY AND EXCISION\n(INTRADURAL EXTRAMEDULLARY)', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.1766', 'SPINAL CORD, TUMOURS, LAMINECTOMY AND EXCISION\n(INTRADURAL INTRAMEDULLARY)', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.1767', 'SPINAL- IMPLANT OF ELECTRICAL PUMP DEVICE', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1768', 'SPINAL/EPIDURAL REMOVAL, REVISION OF IMPLANTED\nRESERVOIR DEVICE (E.G. PAR)', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1769', 'SPINAL/EPIDURAL, EPIDUROSCOPY', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1770', 'SPINE (EXCLUDING CERVICAL SPINE), VARIOUS LESIONS, ANTERIOR CORPECTOMY AND FUSION WITH/WITHOUT\nINSTRUMENTATION (SINGLE VERTEBRAE)', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.1771', 'SPINE (EXCLUDING CERVICAL SPINE), VARIOUS LESIONS, ANTERIOR CORPECTOMY AND FUSION WITH/WITHOUT\nINSTRUMENTATION (TWO OR MORE VERTEBRA)', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.1772', 'SPINE (EXCLUDING CERVICAL SPINE), VARIOUS LESIONS, INTERBODY FUSION (MULTIPLE SEGMENTS) WITH\nANTERIOR/POSTERIOR INSTRUMENTATION', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.1773', 'SPINE (EXCLUDING CERVICAL SPINE), VARIOUS LESIONS, INTERBODY FUSION (MULTIPLE SEGMENTS) WITHOUT\nANTERIOR/POSTERIOR INSTRUMENTATION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1774', 'SPINE (EXCLUDING CERVICAL SPINE), VARIOUS LESIONS, INTERBODY FUSION (SINGLE SEGMENT) WITH\nANTERIOR/POSTERIOR INSTRUMENTATION', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.1775', 'SPINE (EXCLUDING CERVICAL SPINE), VARIOUS LESIONS, INTERBODY FUSION (SINGLE SEGMENT) WITHOUT\nANTERIOR/POSTERIOR INSTRUMENTATION', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.1776', 'SPINE (EXCLUDING CERVICAL SPINE), VARIOUS LESIONS, POSTERIOR DECOMPRESSION AND/OR DISCECTOMY WITH INSERTION OF INTERSPINOUS DEVICE (1\nSEGMENT) WITHOUT INSTRUMENTED FUSION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1777', 'SPINE (EXCLUDING CERVICAL SPINE), VARIOUS LESIONS, POSTERIOR DECOMPRESSION AND/OR DISCECTOMY WITH INSERTION OF INTERSPINOUS DEVICE (2 OR MORE SEGMENTS)\nWITHOUT INSTRUMENTED FUSION', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.1778', 'SPINE (EXCLUDING CERVICAL SPINE), VARIOUS LESIONS, POSTERIOR DECOMPRESSION AND/OR DISCECTOMY WITHOUT INSERTION OF INTERSPINOUS DEVICE (1\nSEGMENT) WITHOUT INSTRUMENTED FUSION', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.1779', 'SPINE (EXCLUDING CERVICAL SPINE), VARIOUS LESIONS, POSTERIOR DECOMPRESSION AND/OR DISCECTOMY WITHOUT INSERTION OF INTERSPINOUS DEVICE (2 OR MORE SEGMENTS)\nWITHOUT INSTRUMENTED FUSION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1780', 'SPINE, CERVICAL, EPIDURAL ADHESIOLYSIS, MULTIPLE CATHETER', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.1781', 'SPINE, CERVICAL, EPIDURAL ADHESIOLYSIS, SINGLE CATHETER', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1782', 'SPINE, CERVICAL/THORACIC, INJECTION, EPIDURAL, WITHOUT\nOTHER PROCEDURES', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.1783', 'SPINE, CERVICAL/THORACIC, INJECTION, INTRATHECAL\nWITHOUT OTHER PROCEDURES', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1784', 'SPINE, DEFORMITIES, THREE-COLUMN OSTEOTOMY (SUCH AS PSO, VCR, TOTAL SPONDYLECTOMY OR THEIR EQUIVALENT)', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.1785', 'SPINE, DISCOGRAM (1 TO 2 LEVELS)', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1786', 'SPINE, DISCOGRAM (MORE THAN 2 LEVELS)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1787', 'SPINE, FACET JOINT BLOCK (INJECTION OF ANAESTHETIC OR\nTHERAPEUTIC SUBSTANCE), MORE THAN 3 JOINTS', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1788', 'SPINE, FACET JOINT BLOCK (INJECTION OF ANAESTHETIC OR THERAPEUTIC SUBSTANCE), UP TO 3\nJOINTS', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1789', 'SPINE, FACET JOINT, RADIOFREQUENCY, MORE THAN 3\nJOINTS', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1790', 'SPINE, FACET JOINT, RADIOFREQUENCY, UP TO 3 JOINTS', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1791', 'SPINE, FRACTURE-DISLOCATION, OPEN REDUCTION AND\nSTABILISATION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1792', 'SPINE, IMPLANTATION OF PORT E.G. PORT-A-CATH', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1793', 'SPINE, INFECTION, ANTERIOR DRAINAGE AND DEBRIDEMENT\nWITHOUT FUSION OR OTHER PROCEDURES', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1794', 'SPINE, INFECTION, ANTERIOR DRAINAGE, DEBRIDEMENT AND REMOVAL OF IMPLANTS WITHOUT FUSION OR\nOTHER PROCEDURES', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.1795', 'SPINE, INFECTION, POSTERIOR DRAINAGE AND DEBRIDEMENT WITHOUT FUSION OR OTHER\nPROCEDURES', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1796', 'SPINE, INFECTION, POSTERIOR DRAINAGE, DEBRIDEMENT AND REMOVAL OF IMPLANTS, WITHOUT FUSION OR OTHER\nPROCEDURES', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1797', 'SPINE, LUMBAR/SACRAL/CAUDAL, INJECTION, EPIDURAL,\nWITHOUT OTHER PROCEDURES', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.1798', 'SPINE, LUMBAR/SACRAL/CAUDAL, INJECTION, INTRATHECAL\nWITHOUT OTHER PROCEDURES', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1799', 'SPINE, PERCUTANEOUS DISC ABLATION, 2 OR MORE LEVELS (EG. IDET - INTRADISCAL ELECTROTHERMAL ANNULOPLASTY)', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.1800', 'SPINE, PERCUTANEOUS DISC ABLATION, SINGLE LEVEL (EG IDET -\nINTRADISCAL ELECTROTHERMAL ANNULOPLASTY)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1801', 'SPINE, PERCUTANEOUS IMPLANT OF SPINAL CORD\nSTIMULATOR, (TRIAL), DOUBLE LEADS', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1802', 'SPINE, PERCUTANEOUS IMPLANT OF SPINAL CORD\nSTIMULATOR, (TRIAL), SINGLE LEAD', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1803', 'SPINE, PROLAPSED DISC, NUCLEOPLASTY', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1804', 'SPINE, REMOVAL OF SPINAL CORD STIMULATOR ELECTRICAL\nGENERATOR', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1805', 'SPINE, REMOVAL OF SPINE IMPLANTS WITHOUT OTHER\nPROCEDURES (ANTERIOR APPROACH)', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1806', 'SPINE, REMOVAL OF SPINE IMPLANTS WITHOUT OTHER\nPROCEDURES (POSTERIOR APPROACH)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1807', 'SPINE, REPLACEMENT OF COMPUTERIZED RESERVOIR DEVICE\n(E.G. SYNCHROMED)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1808', 'SPINE, REPLACEMENT OF SPINAL CORD STIMULATOR,\nELECTRICAL GENERATOR', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1809', 'SPINE, SYRINGOMYELIA, LAMINECTOMY AND DRAINAGE', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1810', 'SPINE, THORACIC/LUMBAR, EPIDURAL ADHESIOLYSIS, MULTIPLE\nCATHETER', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1811', 'SPINE, THORACIC/LUMBAR, EPIDURAL ADHESIOLYSIS, SINGLE\nCATHETER', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1812', 'SPINE, VARIOUS LESIONS, ANTERIOR DECOMPRESSION,\nCORPECTOMY, DEBRIDEMENT, BIOPSY STABILISATION WITHOUT INSTRUMENTATION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1813', 'SPINE, VARIOUS LESIONS, POSTERIOR INSTRUMENTATION (1 SEGMENT) WITH/WITHOUT\nDECOMPRESSION AND WITHOUT INTERBODY FUSION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1814', 'SPINE, VARIOUS LESIONS, POSTERIOR INSTRUMENTATION (2 SEGMENTS) WITH/WITHOUT DECOMPRESSION AND WITHOUT\nINTERBODY FUSION', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.1815', 'SPINE, VARIOUS LESIONS, POSTERIOR INSTRUMENTATION (3 OR MORE SEGMENTS) WITH/WITHOUT DECOMPRESSION AND WITHOUT\nINTERBODY FUSION', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.1816', 'SPINE, VARIOUS LESIONS, REVISION SURGERY, DECOMPRESSION AND/OR DISCECTOMY, WITH REVISION\nOF INSTRUMENTATION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1817', 'SPINE, VARIOUS LESIONS, REVISION SURGERY, DECOMPRESSION AND/OR DISCECTOMY, WITHOUT\nINSTRUMENTATION', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.1818', 'SPINE, VARIOUS LESIONS, SPINAL RHIZOLYSIS INVOLVING\nEXPOSURE OF SPINAL NERVE ROOTS', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1819', 'SPINE, VARIOUS LESIONS, SYRINGO-\nARACHNOID/PLEURAL/PERITONEAL SHUNT', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.1820', 'SPINE, VERTEBROPLASTY OR KYPHOPLASTY (MULTIPLE LEVELS)', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.1821', 'SPINE, VERTEBROPLASTY OR KYPHOPLASTY (SINGLE LEVEL)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1822', 'SPLANCHNIC NERVES, BLOCK, ANAESTHETIC', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1823', 'SPLANCHNIC NERVES, BLOCK, NEUROLYTIC', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1824', 'SPLEEN, HYPERSPLENISM/MASSIVE ENLARGEMENT,\nSPLENECTOMY (MIS/OPEN)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1825', 'SPLEEN, TRAUMA, CONSERVATION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1826', 'SPLEEN, TRAUMA, SPLENECTOMY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1827', 'SPLEEN, VARIOUS NON-TRAUMATIC LESIONS, SPLENECTOMY\n(MIS/OPEN)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1828', 'STELLATE GANGLION, BLOCK, ANAESTHETIC', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1829', 'STELLATE GANGLION, BLOCK, NEUROLYTIC', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1830', 'STOMACH, GASTROESOPHAGEAL REFLUX, FUNDOPLICATION, MIS/OPEN, WITH/WITHOUT GASTROTOMY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1831', 'STOMACH, MORBID OBESITY, BYPASS ONLY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1832', 'STOMACH, MORBID OBESITY, REDUCTION AND BYPASS\n(MIS/OPEN)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1833', 'STOMACH, OBESITY, BILIOPANCREATIC DIVERSION\nWITH/WITHOUT DUODENAL SWITCH', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1834', 'STOMACH, OBESITY, GASTRIC BANDING (MIS)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1835', 'STOMACH, OBESITY, SLEEVE GASTRECTOMY (MIS/OPEN)', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.1836', 'STOMACH, PARTIAL/SUBTOTAL GASTRECTOMY FOR BENIGN\nGASTRIC DISEASES', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1837', 'STOMACH, PYLORIC STENOSIS, PYLOROPLASTY', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1838', 'STOMACH, PYLORIC TUMOR (INFANT),\nPYLOROPLASTY/PYLOROMYOTOMY', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1839', 'STOMACH, PYLOROMYOTOMY, MIS', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1840', 'STOMACH, TOTAL/PROXIMAL GASTRECTOMY FOR BENIGN\nGASTRIC DISEASES', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1841', 'STOMACH, TUMOR OF CARDIA, ENDOSCOPIC YAG LASER\nSURGERY/VAPORISATION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1842', 'STOMACH, TUMOR/ULCER, GASTROJEJUNOSTOMY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1843', 'STOMACH, TUMOUR, SUBTOTAL GASTRECTOMY AND RADICAL\nLYMPHADENECTOMY', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1844', 'STOMACH, TUMOUR, TOTAL GASTRECTOMY AND RADICAL\nLYMPHADENECTOMY', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1845', 'STOMACH, ULCERS, VAGOTOMY - ALL TYPES (MIS/OPEN)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1846', 'STOMACH, VARIOUS LESIONS, IMAGING GUIDED INSERTION OF\nNASO-GASTRIC TUBE/NASO-JEJUNAL TUBE', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.1847', 'STOMACH, VARIOUS LESIONS, PARTIAL/SUBTOTAL\nGASTRECTOMY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1848', 'STOMACH, VARIOUS LESIONS, PERCUTANEOUS\nGASTROSTOMY/JEJUNOSTOMY (WITH OR WITHOUT IMAGE GUIDANCE)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1849', 'STOMACH, VARIOUS LESIONS, TOTAL/PROXIMAL\nGASTRECTOMY WITH/WITHOUT SPLENECTOMY', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1850', 'STOMACH, VARIOUS LESIONS, WEDGE RESECTION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1851', 'STOMACH, VARIOUS LESIONS/POST-GASTRECTOMY\nCOMPLICATIONS, REVISION GASTRECTOMY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1852', 'STOMACH, WEDGE RESECTION/STOMACH FOR BENIGN GASTRIC\nDISEASES', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1853', 'STOMACH/DUODENUM, PERFORATED ULCER, REPAIR (MIS OR\nOPEN)', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1854', 'SUBCUTANEOUS TISSUE (ABDOMEN), OBESITY, LIPOSUCTION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1855', 'SUBCUTANEOUS TISSUE (BUTTOCKS), OBESITY, LIPOSUCTION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1856', 'SUBCUTANEOUS TISSUE (FACE), OBESITY, LIPOSUCTION', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1857', 'SUBCUTANEOUS TISSUE (THIGH), OBESITY, LIPOSUCTION', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1858', 'SUBCUTANEOUS TISSUE (UPPER LIMBS), OBESITY, LIPOSUCTION', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1859', 'SUBCUTANEOUS TISSUE, OBESITY, EXCISION/LIPECTOMY, LIMBS (UNILATERAL/BILATERAL) FOLLOWING WEIGHT LOSS SURGERY\n(SF702S/SF703S/SF713S/SF803S/SF804S)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1860', 'SUBCUTANEOUS TISSUE, OBESITY, EXCISION/LIPECTOMY, THORAX/BACK/BUTTOCKS,\nFOLLOWING WEIGHT LOSS SURGERY\n(SF702S/SF703S/SF713S/SF803S/SF804S)', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1861', 'SUBCUTANEOUS TISSUE, OBESITY, LIPECTOMY, EXCISION WITH UNDERMINING OF SKIN EDGES AND STRENGTHENING OF ABDOMINAL WALL/RADICAL ABDOMINOPLASTY WITH REPAIR OF ABDOMINAL WALL\nAND TRANSPOSITION OF UMBILICUS FOLLOWING WEIGHT\nLOSS SURGERY (SF702S/SF703S/SF713S/SF', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1862', 'SUBCUTANEOUS TISSUE, OBESITY, LIPECTOMY, TRANSVERSE WEDGE EXCISION OF ABDOMINAL APRON/LIPECTOMY WITH EXCISION OF SKIN, FOLLOWING\nWEIGHT LOSS SURGERY\n(SF702S/SF703S/SF713S/SF803S/SF804S)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1863', 'SUPERIOR HYPOGASTRIC PLEXUS, VARIOUS LESIONS, IMAGING\nGUIDED INJECTION OF ANAESTHETIC', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1864', 'SUPERIOR HYPOGASTRIC PLEXUS, VARIOUS LESIONS, IMAGING GUIDED INJECTION OF NEUROLYTIC, RADIOFREQUENCY', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1865', 'SURFACE LESIONS, ANGIOSARCOMA, WITH BIOPSY', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1866', 'SWEAT GLAND, AXILLARY HYPERHIDROSIS, WEDGE EXCISION\n(BILATERAL)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1867', 'SWEAT GLAND, AXILLARY HYPERHIDROSIS, WEDGE EXCISION\n(UNILATERAL)', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1868', 'SYMPATHETIC NERVES, BLOCK, ANAESTHETIC\n(UNILATERAL/BILATERAL)', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1869', 'SYMPATHETIC NERVES, BLOCK, CATHETER\n(UNILATERAL/BILATERAL)', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1870', 'SYMPATHETIC NERVES, BLOCK, NEUROLYTIC\n(UNILATERAL/BILATERAL)', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1871', 'TEETH (2 OR MORE) UNERUPTED/PARTIALLY\nERUPTED/IMPACTED, SURGICAL EXPOSURE', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1872', 'TEETH (2 TO 3), IMPACTED, EXCISION WITH REMOVAL OF BONE\n(WITHOUT TOOTH DIVISION)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1873', 'TEETH (2 TO 3), IMPACTED, EXCISION WITH REMOVAL OF BONE\nAND TOOTH DIVISION', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1874', 'TEETH (2 TO 3), UNERUPTED/PARTIALLY ERUPTED/IMPACTED,\nSURGICAL EXPOSURE AND BONDING FOR TRACTION AND ASSISTED ERUPTION', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1875', 'TEETH (4 OR MORE) UNERUPTED/ PARTIALLY ERUPTED/\nIMPACTED, SURGICAL EXPOSURE AND BONDING FOR TRACTION AND ASSISTED ERUPTION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1876', 'TEETH (4 OR MORE), IMPACTED, EXCISION WITH REMOVAL OF\nBONE (WITHOUT TOOTH DIVISION)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1877', 'TEETH (4 OR MORE), IMPACTED, EXCISION WITH REMOVAL OF\nBONE AND TOOTH DIVISION', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1878', 'TEMPORAL ARTERY BIOPSY', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1879', 'TENDON (PERONEAL), SUBLUXATION, RECONSTRUCTION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1880', 'TENDON (UPPER LIMB), BOWSTRINGING/ENTRAPMENT, PULLEY\nRECONSTRUCTION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1881', 'TENDON (UPPER LIMB), CONTRACTURE, TENOTOMY', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1882', 'TENDON (UPPER LIMB), VARIOUS LESIONS, TENDON TRANSFER\n(MULTIPLE)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1883', 'TENDON (UPPER LIMB), VARIOUS LESIONS, TENDON TRANSFER\n(SINGLE)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1884', 'TENDON SHEATH (UPPER LIMB), DE QUERVAIN\'S (BILATERAL),\nRELEASE', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1885', 'TENDON SHEATH (UPPER LIMB), DE QUERVAIN\'S (UNILATERAL),\nRELEASE', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1886', 'TENDON SHEATH (UPPER LIMB), GANGLION/VILLO- NODULAR\nSYNOVITIS, EXCISION', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1887', 'TENDON SHEATH (UPPER LIMB), TENOSYNOVITIS (MULTIPLE),\nDRAINAGE', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1888', 'TENDON SHEATH (UPPER LIMB), TENOSYNOVITIS (SINGLE),\nDRAINAGE', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1889', 'TENDON SHEATH AND SUBCUTANEOUS TISSUE,\nGANGLION/LARGE BURSA, (>3CM) EXCISION BIOPSY', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1890', 'TENDON SHEATH AND SUBCUTANEOUS TISSUE,\nGANGLION/SMALL BURSA, (<3CM) EXCISION BIOPSY', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.1891', 'TENDON, EXTENSOR (UPPER LIMB), DEFECT, GRAFTING\n(MULTIPLE)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1892', 'TENDON, EXTENSOR (UPPER LIMB), DEFECT, GRAFTING (SINGLE)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1893', 'TENDON-ACHILLES (LOWER LIMB), DISRUPTION, REPAIR', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1894', 'TENDON-EXTENSOR (UPPER LIMB), ADHESION, TENOLYSIS\n(MULTIPLE)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1895', 'TENDON-EXTENSOR (UPPER LIMB), ADHESION, TENOLYSIS\n(SINGLE)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1896', 'TENDON-EXTENSOR (UPPER LIMB), INJURY, REPAIR (MULTIPLE)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1897', 'TENDON-EXTENSOR (UPPER LIMB), INJURY, REPAIR (SINGLE)', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1898', 'TENDON-FLEXOR (LOWER LIMB), DISRUPTION, REPAIR (SINGLE)', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1899', 'TENDON-FLEXOR (UPPER LIMB), ADHESION, TENOLYSIS\n(MULTIPLE)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1900', 'TENDON-FLEXOR (UPPER LIMB), ADHESION, TENOLYSIS (SINGLE)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1901', 'TENDON-FLEXOR (UPPER LIMB), DEFECT, GRAFTING (MULTIPLE)', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1902', 'TENDON-FLEXOR (UPPER LIMB), DEFECT, GRAFTING (SINGLE)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1903', 'TENDON-FLEXOR (UPPER LIMB), INJURY, REPAIR (MULTIPLE)', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1904', 'TENDON-FLEXOR (UPPER LIMB), INJURY, REPAIR (SINGLE)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1905', 'TENDON-FLEXOR (UPPER LIMB), INJURY, TENDON GRAFT', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.1906', 'TENDONS-FLEXOR (LOWER LIMB), DISRUPTION, REPAIR\n(MULTIPLE)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1907', 'TESTIS, TORSION TESTIS, ORCHIDECTOMY DONE WITH FIXATION\nOF CONTRALATERAL TESTIS', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1908', 'TESTIS, TUMOR, RETROPERITONEAL LYMPH NODE DISSECTION\nFOLLOWING ORCHIDECTOMY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1909', 'TESTIS, UNDESCENDED/ECTOPIC (BILATERAL),\nORCHIDOPEXY/TRANSPLANTATION WITH HERNIA REPAIR', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1910', 'TESTIS, UNDESCENDED/ECTOPIC (UNILATERAL),\nORCHIDOPEXY/TRANSPLANTATION WITH HERNIA REPAIR', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1911', 'TESTIS, UNDESCENDED/ECTOPIC, ORCHIDOPEXY WITH\nMICROVASCULAR ANASTOMOSIS', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1912', 'TESTIS, VARIOCOELE, SPERMATIC VEIN EMBOLISATION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1913', 'TESTIS, VARIOUS LESIONS, BIOPSY OR ASPIRATION', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.1914', 'TESTIS, VARIOUS LESIONS, EXPLORATION/REPAIR', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.1915', 'TESTIS, VARIOUS LESIONS, INSERTION OF TESTICULAR\nPROSTHESIS', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1916', 'TESTIS, VARIOUS LESIONS, ORCHIDECTOMY (SIMPLE)', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1917', 'TESTIS, VARIOUS LESIONS, ORCHIDECTOMY (SIMPLE)\n(MIS)', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1918', 'TESTIS, VARIOUS LESIONS, ORCHIDECTOMY WITH COMPLETE\nEXCISION OF SPERMATIC CORD', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1919', 'TESTIS, VARIOUS LESIONS, ORCHIDOPLASTY', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.1920', 'THORAX, CATHETER BLOCKAGE, IMAGING GUIDED CATHETER\nCHANGE/CATHETER ADJUSTMENT/CHECK TUBE', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.1921', 'THORAX, COASTAL CARTILAGE, HARVEST AND CREATION OF EAR\nCARTILAGE FRAMEWORK', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1922', 'THORAX, EFFUSION/FLUID/ABSCESS COLLECTION, IMAGING\nGUIDED PERCUTANEOUS DRAINAGE CATHETER INSERTION', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.1923', 'THORAX, EFFUSION/FLUID/ABSCESS COLLECTION, IMAGING GUIDED PERCUTANEOUS\nASPIRATION/DIAGNOSTIC TAP', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.1924', 'THORAX, EMPYEMA, RESECTION OF RIB AND OPEN DRAINAGE', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1925', 'THORAX, EVACUATION OF RETAINED HAEMOTHORAX (OPEN\nAND THORASCOPIC)', 11808000, 'TINDAKAN OPERATIF'); +INSERT INTO `tarif_rs` (`ID_Tarif_RS`, `Tindakan_RS`, `Tarif_RS`, `Kategori_RS`) VALUES +('R.TO.1926', 'THORAX, MEDIASTINAL LESIONS, CERVICAL EXPLORATION\nWITH/WITHOUT BIOPSY', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.1927', 'THORAX, MEDIASTINUM, MEDIASTINOSCOPY WITH/WITHOUT\nBIOPSY', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1928', 'THORAX, MIS DECORTICATION', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.1929', 'THORAX, MIS PLEURODESIS BILATERAL', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1930', 'THORAX, MIS THYMECTOMY', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1931', 'THORAX, PECTUS EXCAVATUM/PECTUS CARINATUM, RADICAL\nCORRECTION', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1932', 'THORAX, PERICARDIAL WINDOW CREATION', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1933', 'THORAX, PLEURAL EFFUSION, ASPIRATION', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.1934', 'THORAX, PLEURAL EFFUSION, BIOPSY', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.1935', 'THORAX, RESUSCITATIVE TRAUMA THORACOTOMY\n(HAEMOSTASIS, DAMAGE CONTROL, ORGAN REPAIR)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1936', 'THORAX, RIBS, OPEN FIXATION OF RIB FRACTURES (>3\nRIBS)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1937', 'THORAX, RIBS, OPEN FIXATION OF RIB FRACTURES (1 - 3\nRIBS)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1938', 'THORAX, THORACOSCOPY FOR PLEURODESIS', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1939', 'THORAX, THORACOSCOPY, WITH/WITHOUT DIVISION OF\nPLEURAL ADHESIONS', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1940', 'THORAX, TRAUMA RELOOK THORACOTOMY (INCLUDES\nHAEMOSTASIS, REMOVAL OF PACKS)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1941', 'THORAX, TUMOR (MEDIASTINAL), COMPLEX RESECTION', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.1942', 'THORAX, TUMOR (MEDIASTINAL), RESECTION', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1943', 'THORAX, VARIOUS LESIONS, CHEST WALL RESECTION AND\nMAJOR RECONSTRUCTION', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.1944', 'THORAX, VARIOUS LESIONS, CHEST WALL RESECTION AND\nMINOR RECONSTRUCTION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1945', 'THORAX, VARIOUS LESIONS, IMAGING GUIDED PERCUTANEOUS\nBIOPSY', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1946', 'THORAX, VARIOUS LESIONS, INTERCOSTAL DRAIN (INSERTION\nWITHOUT RESECTION OF RIB)', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.1947', 'THORAX, VARIOUS LESIONS, INTRATHORACIC OPERATION ON\nLUNGS/BRONCHIAL TREE/MEDIASTINUM', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1948', 'THORAX, VARIOUS LESIONS, THORACOPLASTY (COMPLETE)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1949', 'THORAX, VARIOUS LESIONS, THORACOPLASTY (IN STAGES) -\nEACH STAGE', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1950', 'THORAX, VARIOUS LESIONS, THORACOTOMY (EXPLORATION)\nWITH/WITHOUT BIOPSY', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1951', 'THORAX, VARIOUS LESIONS, THORACOTOMY FOR PLEURECTOMY/PLEURODESIS/ ENUCLEATION HYDATID CYSTS', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1952', 'THORAX, VARIOUS LESIONS, THORACOTOMY WITH\nPULMONARY DECORTICATION, WITH OR WITHOUT THORACOPLASTY AND/OR MYOPLASTY', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1953', 'THROAT, HYOID SUSPENSION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1954', 'THROAT, PALATOPLASTY WITH/WITHOUT UVULOPLASTY, USING\nLASER OR OTHER MODALITIES', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1955', 'THROAT, UVULOPALATOPHARYNGOPLASTY (U3P)', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1956', 'THUMB, DEFORMITIES, CORRECTION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1957', 'THUMB, PARALYSIS, OPPONENS PLASTY', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1958', 'THUMB, VARIOUS LESIONS, POLLICISATION OR MICROSURGICAL\nRECONSTRUCTION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1959', 'THYROGLOSSAL CYST, SISTRUNK OPERATION WITH HYOID BONE\nREMOVAL', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1960', 'THYROGLOSSAL DUCT, CYST FISTULA, EXCISION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1961', 'THYROID, TUMOR, EXCISION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1962', 'THYROID, VARIOUS LESIONS, HEMITHYROIDECTOMY/PARTIAL\nTHYROIDECTOMY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1963', 'THYROID, VARIOUS LESIONS, IMAGING GUIDED PERCUTANEOUS\nASPIRATION/BIOPSY', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1964', 'THYROID, VARIOUS LESIONS, TOTAL THYROIDECTOMY,\nCOMPLEX (RECURRENCE), WITH/WITHOUT STERNAL SPLIT', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.1965', 'THYROID, VARIOUS LESIONS, TOTAL/SUBTOTAL\nTHYROIDECTOMY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1966', 'THYROID, VARIOUS LESIONS, TOTAL/SUBTOTAL\nTHYROIDECTOMY WITH NECK DISSECTION (BILATERAL)', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.1967', 'THYROID, VARIOUS LESIONS, TOTAL/SUBTOTAL\nTHYROIDECTOMY WITH NECK DISSECTION (UNILATERAL)', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.1968', 'TIBIA, DELAYED/NON-UNION, RECONSTRUCTION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1969', 'TIBIA, FRACTURE(S), OPEN REDUCTION AND INTERNAL FIXATION\nWITH INTRAMEDULLARY ROD', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1970', 'TIBIA, FRACTURE, OPEN REDUCTION AND INTERNAL FIXATION\nWITH PLATES AND SCREWS, COMMINUTED', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1971', 'TIBIA, FRACTURE, OPEN REDUCTION AND INTERNAL FIXATION\nWITH PLATES AND SCREWS, SIMPLE', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1972', 'TIBIA, TIBIAL PLATEAU, COMMINUTED BICONDYLAR, ORIF', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.1973', 'TIBIA, TIBIAL PLATEAU, UNICONDYLAR COMMINUTED/SIMPLE\nBICONDYLAR, ORIF', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1974', 'TIBIA, TIBIAL PLATEAU, UNICONDYLAR, ORIF', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1975', 'TIBIA, TIBIAL SHAFT FRACTURE, INTRAMEDULLARY NAILING\n(LOCKED/UNLOCKED)', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1976', 'TOES, TOE DEFORMITY', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.1977', 'TOES, TOE DEFORMITY, MULTIPLE/COMPLEX', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1978', 'TOES, VARIOUS LESIONS, ARTHRODESIS', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1979', 'TOES, VARIOUS LESIONS, RAY AMPUTATION (SINGLE)', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.1980', 'TOES, VARIOUS LESIONS, RAY AMPUTATION (TWO TO FOUR\nRAYS)', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1981', 'TOES, VARIOUS LESIONS, TOE AMPUTATION (SINGLE)', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.1982', 'TOES, VARIOUS LESIONS, TOE AMPUTATION (TWO TO FOUR\nTOES)', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1983', 'TONGUE SUSPENSION', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1984', 'TONGUE, TONGUE TIE, RELEASE', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.1985', 'TONGUE, TONGUE TIE, REVISION', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1986', 'TONGUE, TRANSORAL RESECTION OF TONGUE BASE MUSCLE\nWITH OR WITHOUT LINGUAL TONSIL EXCISION', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.1987', 'TONGUE, TUMOR, GLOSSECTOMY WITH RADICAL NECK\nDISSECTION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1988', 'TONGUE, TUMOR, HEMI-GLOSSECTOMY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1989', 'TONGUE, TUMOR, TOTAL GLOSSECTOMY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1990', 'TONGUE, VARIOUS LESIONS (BENIGN CONDITION), EXCISION\nBIOPSY <3CM', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1991', 'TONGUE, VARIOUS LESIONS, PARTIAL EXCISION', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1992', 'TONSILS, ABSCESS, DRAINAGE', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.1993', 'TONSILS, HEMORRHAGE, HEMOSTASIS', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1994', 'TONSILS, VARIOUS LESIONS, REMOVAL WITH/WITHOUT\nADENOIDECTOMY', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1995', 'TOOTH (DEEP, I.E. COMPLETELY BURIED IN BONE), EXCISION\nWITH REMOVAL OF BONE AND TOOTH DIVISION', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1996', 'TOOTH (MULTIPLE-ROOTED OR MORE THAN 1 TOOTH),\nVARIOUS LESIONS, PERI-RADICULAR SURGERY', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1997', 'TOOTH (SINGLE-ROOTED), VARIOUS LESIONS, PERI- RADICULAR\nSURGERY', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1998', 'TOOTH (SUPERFICIAL), UNERUPTED/PARTIALLY ERUPTED/IMPACTED, EXCISION WITH REMOVAL OF BONE\n(WITHOUT TOOTH DIVISION)', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1999', 'TOOTH (SUPERFICIAL), UNERUPTED/PARTIALLY ERUPTED/IMPACTED, EXCISION WITH REMOVAL OF BONE\nAND TOOTH DIVISION', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2000', 'TOOTH, DISLOCATION, REIMPLANTATION AND\nTRANSPLANTATION', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.2001', 'TOOTH, SIMPLE UNERUPTED/PARTIALLY ERUPTED/IMPACTED/FRACTURED, REMOVAL OF MULTIPLE\nROOTS', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2002', 'TOOTH, UNERUPTED/PARTIALLY ERUPTED/IMPACTED, EXCISION\nWITH RELEASE OF NEUROVASCULAR BUNDLE', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2003', 'TOOTH, UNERUPTED/PARTIALLY ERUPTED/IMPACTED,\nSURGICAL EXPOSURE', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.2004', 'TOOTH, UNERUPTED/PARTIALLY ERUPTED/IMPACTED, SURGICAL EXPOSURE AND BONDING FOR TRACTION AND\nASSISTED ERUPTION', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2005', 'TRACHEA, FOREIGN BODY, REMOVAL', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.2006', 'TRACHEA, TRACHEO-ESOPHAGEAL FISTULA, LIGATION AND\nDIVISION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2007', 'TRACHEA, TRACHEOSTOMY, REVISION AND REINSERTION', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2008', 'TRACHEA, VARIOUS LESIONS, TRACHEA RECONSTRUCTION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2009', 'TRACHEA, VARIOUS LESIONS, TRACHEOSTOMY', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2010', 'TRACHEA/BRONCHUS, STRICTURE, IMAGING GUIDED BALLOON\nDILATATION', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2011', 'TRACHEA/BRONCHUS, STRICTURE, IMAGING GUIDED STENT\nPLACEMENT', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.2012', 'TRANSCATHETER VALVE OR CLIP IMPLANTATION WITH/WITHOUT TEE GUIDANCE (ENDOVASCULAR APPROACH)', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2013', 'UPPER LIMB, CONGENITAL DEFORMITY, MAJOR\nRECONSTRUCTION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2014', 'UPPER LIMB, DEFORMITY, BONY AND SOFT TISSUE\nRECONSTRUCTION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2015', 'UPPER LIMB, FRACTURE/DISLOCATION, MANIPULATION AND\nREDUCTION', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.2016', 'UPPER LIMB, ISCHEMIA, FASCIOTOMY', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.2017', 'UPPER LIMB, TRAUMA, MAJOR REPLANTATION', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2018', 'UPPER LIMB, VARIOUS LESIONS, AMPUTATION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2019', 'UPPER LIMB, VARIOUS LESIONS, FOREQUARTER AMPUTATION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2020', 'UPPER LIMB, VARIOUS LESIONS, VASCULARISED FREE MUSCLE\nTRANSFER', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2021', 'UPPER LIMB/LOWER LIMB, CLOSED FRACTURES, EXTERNAL\nFIXATION WITHOUT DEBRIDEMENT OR OTHER PROCEDURES', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2022', 'UPPER LIMB/LOWER LIMB, FRACTURE, EXTERNAL FIXATION,\nMULTIPLE PLANES', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2023', 'UPPER LIMB/LOWER LIMB, MAJOR SOFT TISSUE DEFECTS, FREE\nFLAP', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.2024', 'UPPER LIMB/LOWER LIMB, MAJOR SOFT TISSUE DEFECTS,\nPEDICLED FLAP', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2025', 'UPPER LIMB/LOWER LIMB, MALIGNANT TUMOUR, SOFT TISSUE,\nRADICAL EXCISION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2026', 'UPPER LIMB/LOWER LIMB, OPEN FRACTURES WITH\nDEBRIDEMENT AND EXTERNAL FIXATION', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2027', 'UPPER LIMB/LOWER LIMB, UPPER LIMB FRACTURES,\nMINIMALLY INVASIVE FIXATION', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2028', 'URETER, CALCULUS, URETEROLITHOTOMY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2029', 'URETER, CALCULUS, URETEROLITHOTOMY (MIS)', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2030', 'URETER, CALCULUS, URETEROSCOPY AND LITHOTRIPSY\nWITH/WITHOUT ULTRASOUND', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2031', 'URETER, CUTANEOUS URETEROSTOMY, CLOSURE', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2032', 'URETER, CYSTOSCOPY AND INSERTION OF DOUBLE J STENT', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2033', 'URETER, EXTRA CORPOREAL SHOCKWAVE LITHOTRIPSY (ESWL)\nFOR URETERIC STONE', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2034', 'URETER, PREVIOUS DIVERSION, REVISION', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2035', 'URETER, STRICTURE, PERCUTANEOUS ANTEGRADE BALLOON\nDILATATION', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.2036', 'URETER, URETEROSCOPY', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2037', 'URETER, VARIOUS LESIONS, BOARI FLAP REIMPLANTATION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2038', 'URETER, VARIOUS LESIONS, INTESTINAL CONDUIT', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2039', 'URETER, VARIOUS LESIONS, PERCUTANEOUS ANTEGRADE\nINSERTION OF DOUBLE J STENT', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2040', 'URETER, VARIOUS LESIONS, REDUCTION URETEROPLASTY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2041', 'URETER, VARIOUS LESIONS, REIMPLANTATION, BILATERAL', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2042', 'URETER, VARIOUS LESIONS, REIMPLANTATION, UNILATERAL', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2043', 'URETER, VARIOUS LESIONS, REPAIR', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2044', 'URETER, VARIOUS LESIONS, REPLACEMENT BY BOWEL', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2045', 'URETER, VARIOUS LESIONS, URETEROCALYCOSTOMY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2046', 'URETER, VARIOUS LESIONS, URETEROSTOMY', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2047', 'URETER, VARIOUS LESIONS, URETEROTOMY/INSERTION OF\nDOUBLE J STENT', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2048', 'URETER, VARIOUS LESIONS, URETEROURETEROSTOMY', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2049', 'URETHRA , EXCISION OF URETHRAL DIVERTICULUM', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2050', 'URETHRA, CARUNCLE/POLYP, EXCISION/LASER VAPORISATION', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.2051', 'URETHRA, EXCISION OF URETHRAL DIVERTICULUM', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2052', 'URETHRA, FISTULA, CLOSURE', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2053', 'URETHRA, INJURY, REPAIR/URETHROPLASTY OF ANTERIOR\nURETHRA', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2054', 'URETHRA, MEATAL STENOSIS, MEATOTOMY', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.2055', 'URETHRA, MID-URETHRAL SLINGS', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.2056', 'URETHRA, PROLAPSE, EXCISION', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.2057', 'URETHRA, STENOSIS, DILATATION', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.2058', 'URETHRA, STRICTURE, URETHRAL WALL STENTING', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2059', 'URETHRA, STRICTURE, URETHROTOMY', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2060', 'URETHRA, SUBSTITUTION URETHROPLASTY, FLAP OR GRAFT', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2061', 'URETHRA, URETHRO-RECTAL FISTULA, CLOSURE', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2062', 'URETHRA, URETHROSCOPY, WITH RELATED PROCEDURES', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.2063', 'URETHRA, VALVES/MEMBRANE, RESECTION (ENDOSCOPIC)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2064', 'URETHRA, VALVES/MEMBRANE, RESECTION (OPEN)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2065', 'URETHRA, VARIOUS LESIONS, ANTERIOR URETHROPLASTY', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2066', 'URETHRA, VARIOUS LESIONS, EXCISION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2067', 'URETHRA, VARIOUS LESIONS, POSTERIOR URETHROPLASTY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2068', 'URETHRA, VARIOUS LESIONS, STAGED URETHROPLASTY (EACH\nSTAGE)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2069', 'URETHRA, VARIOUS LESIONS, TRANSPUBIC URETHROPLASTY', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2070', 'URETHRA, VARIOUS LESIONS, URETHROPEXY', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.2071', 'URETHRA, VARIOUS LESIONS, URETHROTOMY', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2072', 'UTERUS, BENIGN CONDITIONS, TOTAL ABDOMINAL HYSTERECTOMY WITH/WITHOUT SALPINGO- OOPHORECTOMY AND PELVIC FLOOR REPAIR (COMBINED OPERATION)', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2073', 'UTERUS, BROAD LIGAMENT TUMOR, HYSTERECTOMY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2074', 'UTERUS, CONGENITAL ORGAN ABNORMALITY, PLASTIC REPAIR\nINCLUDING METROPLASTY', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2075', 'UTERUS, DISPLACED INTRAUTERINE CONTRACEPTIVE DEVICE,\nREMOVAL UNDER GENERAL ANESTHESIA', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.2076', 'UTERUS, ELONGATED CERVIX, CYSTOCOELE, RECTOCOELE, AMPUTATION OF CERVIX + ANTERIOR REPAIR + POSTERIOR\nREPAIR', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2077', 'UTERUS, ENDOMETRIAL ABLATION (BALLOON)', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.2078', 'UTERUS, ENDOMETRIAL ABLATION (HYSTEROSCOPIC)', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2079', 'UTERUS, ENDOMETRIOSIS, HYSTERECTOMY WITH/WITHOUT\nSALPINGO-OOPHORECTOMY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2080', 'UTERUS, FETAL DISORDER, ULTRASOUND GUIDED FETAL BLOOD\nSAMPLING/CORDOCENTESIS', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2081', 'UTERUS, FETAL DISORDER, ULTRASOUND GUIDED FETAL\nTHERAPY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2082', 'UTERUS, FETAL SURGERY', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2083', 'UTERUS, FIBROIDS, MYOMECTOMY (COMPLICATED E.G.\n>5CM, MULTIPLE >2, CHALLENGING LOCATION)6', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2084', 'UTERUS, FIBROIDS, MYOMECTOMY (SIMPLE, <5CM)5', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2085', 'UTERUS, FIBROIDS, UTERINE ARTERY EMBOLIZATION', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2086', 'UTERUS, FOETOSCOPY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2087', 'UTERUS, GENETIC ABNORMALITY, ULTRASOUND GUIDED\nCHORIONIC BIOPSY', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.2088', 'UTERUS, GENETIC ABNORMALITY/FETAL MATURITY,\nWITH/WITHOUT ULTRASOUND GUIDED AMNIOCENTESIS', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.2089', 'UTERUS, GRAVID, EVACUATION (COMPLICATED)', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.2090', 'UTERUS, GRAVID, EVACUATION (COMPLICATED)', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.2091', 'UTERUS, GRAVID, EVACUATION (SIMPLE)', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.2092', 'UTERUS, GRAVID, EVACUATION (SIMPLE)', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.2093', 'UTERUS, GRAVID, HYSTERECTOMY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2094', 'UTERUS, GRAVID, HYSTEROTOMY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2095', 'UTERUS, HYSTERECTOMY, FROZEN PELVIS', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2096', 'UTERUS, INVERSION, REPOSITIONING', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2097', 'UTERUS, LYSIS OF ASHERMAN\'S (COMPLICATED),\nHYSTEROSCOPIC', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.2098', 'UTERUS, LYSIS OF ASHERMAN\'S (SIMPLE), HYSTEROSCOPIC', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2099', 'UTERUS, MALIGNANT CONDITION, ANTERIOR PELVIC\nEXENTERATION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2100', 'UTERUS, MALIGNANT CONDITION, POSTERIOR PELVIC\nEXENTERATION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2101', 'UTERUS, MALIGNANT CONDITION, RADICAL HYSTERECTOMY\nWITH/WITHOUT LYMPHADENECTOMY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2102', 'UTERUS, MALIGNANT CONDITION, TOTAL HYSTERECTOMY WITH/WITHOUT SALPINGO-\nOOPHORECTOMY, WITH/WITHOUT LYMPH NODE DISSECTION,\nMIS/OPEN', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2103', 'UTERUS, MALIGNANT CONDITIONS, TOTAL PELVIC\nEXENTERATION', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.2104', 'UTERUS, MALIGNANT CONDITIONS, WERTHEIM\'S OPERATION\nINCLUDING PELVIC LYMPHADENECTOMY', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2105', 'UTERUS, MIS ABLATION OF ENDOMETRIOSIS (SIMPLE) (AS\nSINGLE PROCEDURE, NOT INVOLVING RECTUM, URETER)', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2106', 'UTERUS, PERFORATION, REPAIR', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2107', 'UTERUS, PREGNANCY AND MULTIPARITY, COMPLICATED CAESAREAN SECTION AND TUBAL LIGATION (SEE FOOTNOTE\nFOR DEFINITION OF \'COMPLICATED\')', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2108', 'UTERUS, PREGNANCY AND MULTIPARITY, COMPLICATED CAESAREAN SECTION AND TUBAL LIGATION (SEE FOOTNOTE\nFOR DEFINITION OF \'COMPLICATED\')', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2109', 'UTERUS, PREGNANCY AND MULTIPARITY, UNCOMPLICATED\nCAESAREAN SECTION AND TUBAL LIGATION', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2110', 'UTERUS, PREGNANCY AND MULTIPARITY, UNCOMPLICATED CAESAREAN SECTION AND TUBAL\nLIGATION', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2111', 'UTERUS, PREGNANCY, CAESAREAN SECTION WITH\nHYSTERECTOMY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2112', 'UTERUS, PREGNANCY, CAESAREAN SECTION WITH\nHYSTERECTOMY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2113', 'UTERUS, PREGNANCY, COMPLICATED CAESAREAN SECTION (SEE FOOTNOTE FOR DEFINITION OF\n\'COMPLICATED\'7)', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2114', 'UTERUS, PREGNANCY, COMPLICATED CAESAREAN SECTION (SEE FOOTNOTE FOR DEFINITION OF\n\'COMPLICATED\'8)', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2115', 'UTERUS, PREGNANCY, COMPLICATED VAGINAL DELIVERY (E.G. TWINS, BREECH, INSTRUMENTAL\nDELIVERY)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.2116', 'UTERUS, PREGNANCY, COMPLICATED VAGINAL DELIVERY (E.G. TWINS, BREECH, INSTRUMENTAL\nDELIVERY)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.2117', 'UTERUS, PREGNANCY, UNCOMPLICATED CAESAREAN SECTION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2118', 'UTERUS, PREGNANCY, UNCOMPLICATED CAESAREAN SECTION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2119', 'UTERUS, PREGNANCY, VAGINAL DELIVERY (WITH OR WITHOUT\nEPISIOTOMY REPAIR)', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.2120', 'UTERUS, PREGNANCY, VAGINAL DELIVERY (WITH OR WITHOUT\nEPISIOTOMY REPAIR)', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.2121', 'UTERUS, PROLAPSE, CYSTOCOELE, RECTOCOELE, AMPUTATION OF CERVIX + VAGINAL SACROSPINOUS LIGAMENT HYSTEROPEXY\n+ ANTEIOR REPAIR + POSTERIOR REPAIR', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2122', 'UTERUS, PROLAPSE, CYSTOCOELE, RECTOCOELE,\nTRANSOBTURATOR MESH + TRANSSACROSPINOUS LIGAMENT MESH', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2123', 'UTERUS, PROLAPSE, CYSTOCOELE, RECTOCOELE, VAGINAL\nHYSTERECTOMY + ANTERIOR REPAIR + BILATERAL SALPINGO- OOPHORECTOMY ? POSTERIOR REPAIR', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2124', 'UTERUS, PROLAPSE, CYSTOCOELE, RECTOCOELE, VAGINAL\nSACROSPINOUS LIGAMENT HYSTEROPEXY + ANTERIOR REPAIR + POSTERIOR REPAIR', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2125', 'UTERUS, PROLAPSE, VAGINAL HYSTERECTOMY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2126', 'UTERUS, PROLAPSE, VAGINAL HYSTERECTOMY + BILATERAL\nSALPINGO-OOPHORECTOMY', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2127', 'UTERUS, RETAINED PLACENTA, MANUAL REMOVAL IN OT/GA', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.2128', 'UTERUS, RETROVERSION, VENTROSUSPENSION', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.2129', 'UTERUS, RUPTURED, REPAIR (COMPLICATED)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2130', 'UTERUS, RUPTURED, REPAIR (SIMPLE)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2131', 'UTERUS, SUB-TOTAL/TOTAL HYSTERECTOMY (<12\nWEEKS), WITH/WITHOUT SALPINGO-OOPHORECTOMY', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2132', 'UTERUS, SUB-TOTAL/TOTAL HYSTERECTOMY (?12\nWEEKS), WITH/WITHOUT SALPINGO-OOPHORECTOMY', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2133', 'UTERUS, VARIOUS LESIONS, CURETTAGE WITH\nCOLPOSCOPY/BIOPSY/DIATHERMY/ CRYOSURGERY/LASER THERAPY OF CERVIX', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2134', 'UTERUS, VARIOUS LESIONS, CURETTAGE WITH/WITHOUT\nDILATATION', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.2135', 'UTERUS/CERVIX, HYSTEROSCOPIC CANNULATION', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.2136', 'UTERUS/CERVIX, HYSTEROSCOPY, DIAGNOSTIC (WITH GENERAL\nANESTHESIA)', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.2137', 'UTERUS/CERVIX, HYSTEROSCOPY, DIAGNOSTIC (WITHOUT\nANAESTHESIA)', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.2138', 'UTERUS/CERVIX, HYSTEROSCOPY, DIAGNOSTIC, D&C', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.2139', 'UTERUS/VAGINA, MIS ASSISTED VAGINAL HYSTERECTOMY\n(LAVH) WITH/WITHOUT PELVIC FLOOR REPAIR (PFR)', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2140', 'UTERUS/VAGINA, MIS RECONSTRUCTION OF FROZEN PELVIS/LATERAL PELVIC WALL DISSECTION; EXTIRPATION OF\nRECTOVAGINAL ENDOMETRIOSIS', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2141', 'VAGINA, ATRESIA, VAGINOPLASTY', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2142', 'VAGINA, ATRESIA/STENOSIS, DILATATION', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.2143', 'VAGINA, CYSTOCOELE, ANTERIOR REPAIR/KELLY\'S OPERATION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2144', 'VAGINA, CYSTOCOELE, PARAVAGINAL DEFECT REPAIR\n(ABDOMINAL) / BURCH COLPOSUSPENSION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2145', 'VAGINA, CYSTOCOELE, RECTOCOELE, ANTERIOR REPAIR/KELLY\'S\nOPERATION + POSTERIOR REPAIR', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2146', 'VAGINA, CYSTOCOELE, TRANSOBTURATOR MESH', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2147', 'VAGINA, ENTEROCOELE, CYSTOCOELE, RECTOCOELE,\nABDOMINAL SACROCOLPOPEXY + PARAVAGINAL DEFECT REPAIR/BURCH COLPOSUSPENSION + POSTERIOR REPAIR', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2148', 'VAGINA, ENTEROCOELE, CYSTOCOELE, RECTOCOELE, VAGINAL\nSACROSPINOUS LIGAMENT/ILIOCOCCYGEUS FIXATION + ANTERIOR REPAIR + POSTERIOR REPAIR', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2149', 'VAGINA, ENTEROCOELE, REPAIR/VAGINAL VAULT SUSPENSION\n(ABDOMINAL)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2150', 'VAGINA, FISTULA, REPAIR (COMPLICATED/MULTIPLE)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2151', 'VAGINA, FISTULA, REPAIR (SIMPLE)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2152', 'VAGINA, FOREIGN BODY, REMOVAL', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.2153', 'VAGINA, INCARCERATED PESSARY, REMOVAL', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.2154', 'VAGINA, INTRA-EPITHELIAL NEOPLASIA COMPLETE/UPPER\nVAGINECTOMY', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2155', 'VAGINA, INTRA-EPITHELIAL NEOPLASIA VAGINECTOMY\n(PARTIAL)', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2156', 'VAGINA, LACERATIONS (COMPLEX AND INVOLVING ANAL\nSPHINCTER) AND DEBRIDEMENT/SUTURE UNDER GENERAL ANAESTHESIA', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2157', 'VAGINA, LACERATIONS (SIMPLE), DEBRIDEMENT/SUTURE\n(EXCLUDES EPISIOTOMY)', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.2158', 'VAGINA, MALIGNANT CONDITION, VAGINECTOMY', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2159', 'VAGINA, PELVIC ABSCESS, COLPOTOMY AND DRAINAGE', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2160', 'VAGINA, PROLAPSE, COLPORRHAPHY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2161', 'VAGINA, PROLAPSE, OBLITERATION (COLPOCLEISIS)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2162', 'VAGINA, RECTOCOELE, POSTERIOR REPAIR', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2163', 'VAGINA, SIMPLE TUMOR/GARTNER\'S CYST, REMOVAL WITH\nBIOPSY', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.2164', 'VAGINA, STRESS INCONTINENCE, ABDOMINAL\n/COMBINED ABDOMINOVAGINAL SLING OPERATIONS ( EG. WATKINS INTERPOSITION, ALDRIDGE SLING AND OTHER PUBOVAGINAL SLING OPERATIONS) +/- CYSTOSCOPY', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2165', 'VAGINA, STRESS INCONTINENCE, CYSTOCOELE, RECTOCOELE, MID-URETHRAL TAPE/SLING (?\nCYSTOSCOPY) + ANTERIOR REPAIR + POSTERIOR\nREPAIR', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2166', 'VAGINA, STRESS INCONTINENCE, KELLY\'S OPERATION +/-\nANTERIOR REPAIR.', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2167', 'VAGINA, TENSION FREE VAGINAL TAPE (TVT/TVTO)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2168', 'VAGINA, VARIOUS LESIONS, BIOPSY', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.2169', 'VAGINA/RECTUM, RECTO VAGINAL FISTULA, COMPLEX\nRECTAL/TRANSPERINEAL APPROACH WITH COLOSTOMY', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2170', 'VAGINA/RECTUM, RECTO VAGINAL FISTULA, COMPLEX RECTAL/TRANSPERINEAL APPROACH WITHOUT COLOSTOMY', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2171', 'VAGINAL HYSTERECTOMY + ANTERIOR REPAIR +/- POSTERIOR\nREPAIR', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2172', 'VAGINAL SEPTUM, EXCISION', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.2173', 'VAS DEFERENS, VARIOUS LESIONS, EXPLORATION\n(MICROSURGICAL) AND TESTICULAR BIOPSY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2174', 'VAS DEFERENS, VARIOUS LESIONS, REANASTOMOSIS\n(MICROSURGICAL)', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2175', 'VAS DEFERENS, VARIOUS LESIONS, VARICOCELECTOMY\n(MICROSURGICAL)', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2176', 'VAS DEFERENS, VARIOUS LESIONS, VASECTOMY', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.2177', 'VAS DEFERENS, VARIOUS LESIONS, VASOEPIDIDYMOGRAPHY &\nVASOVESICULOGRAPHY', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.2178', 'VAS DEFERENS, VARIOUS LESIONS, VASOEPIDIDYMOSTOMY\n(MICROSURGICAL)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2179', 'VEIN (DISTAL EXTREMITY/DIGIT), VARIOUS LESIONS,\nMICROVASCULAR REPAIR', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2180', 'VEIN (LARGE), VARIOUS LESIONS, LIGATION', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.2181', 'VEIN (MAJOR), TRAUMA, REPAIR', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2182', 'VEIN (SMALL), INJURY, REPAIR (SINGLE)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2183', 'VEIN, ARTERIO-VENOUS FISTULA, DISSECTION AND LIGATION', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.2184', 'VEIN, BLEEDING VARICOSITIES/VASCULAR MALFORMATION, IMAGE GUIDED SCLEROTHERAPY INJECTION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2185', 'VEIN, CATHETER BLOCKAGE, FIBRINSHEATH STRIPPING OR\nDISRUPTION', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.2186', 'VEIN, CATHETER BLOCKAGE, IMAGING GUIDED CATHETER\nCHANGE/CATHETER ADJUSTMENT', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.2187', 'VEIN, CENTRAL VEINS (SUPERIOR VENA CAVA, BRACHIOCEPHALIC VEINS, INFERIOR VENA CAVA, ILIAC VEINS)\nVARIOUS LESIONS, DIAGNOSTIC VENOGRAPHY', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.2188', 'VEIN, HEPATIC, PORTAL HYPERTENSION, DIAGNOSTIC HEPATIC VENOGRAPHY WITH OR WITHOUT PRESSURE MEASUREMENTS', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.2189', 'VEIN, INTRACRANIAL, VENOUS SAMPLING', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2190', 'VEIN, INTRAVENOUS SYMPATHETIC, BIER?S BLOCK', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.2191', 'VEIN, PERIPHERAL VEINS (UPPER/LOWER LIMBS/DIALYSIS ARTERIOVENUS\nFISTULA/ARTERIOVENUS GRAFT FISTULA), VARIOUS LESIONS,\nDIAGNOSTIC VENOGRAPHY', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.2192', 'VEIN, STENOSIS/OCCLUSION, PERCUTANEOUS TRANSLUMINAL\nANGIOPLASTY (PTA), DIFFICULT', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2193', 'VEIN, STENOSIS/OCCLUSION, PERCUTANEOUS TRANSLUMINAL\nANGIOPLASTY (PTA), SIMPLE', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.2194', 'VEIN, THROMBOSIS, PERCUTANEOUS CATHETER DIRECTED THROMBOLYSIS, WITH OR WITHOUT ANGIOPLASTY/STENTING', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2195', 'VEIN, VARICOSE VEINS, IMAGING GUIDED ENDOVENOUS LASER\nTREATMENT, 1 LEG', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2196', 'VEIN, VARICOSE VEINS, IMAGING GUIDED ENDOVENOUS LASER\nTREATMENT, 2 LEGS', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2197', 'VEIN, VARICOSITIES (RECURRENT) SURGERY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2198', 'VEIN, VARICOSITIES, ENDOVASCULAR LASER TREATMENT (1\nLEG)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2199', 'VEIN, VARICOSITY, BILATERAL STRIPPING/EXCISION/MULTIPLE\nLIGATIONS', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2200', 'VEIN, VARICOSITY, HIGH LIGATION AND COMPLETE\nSTRIPPING/EXCISION OF LONG/LONG & SHORT SAPHENOUS VEIN (ENDOSCOPIC)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2201', 'VEIN, VARICOSITY, HIGH LIGATION AND COMPLETE STRIPPING/EXCISION OF LONG/LONG AND SHORT SAPHENOUS\nVEIN', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2202', 'VEIN, VARICOSITY, HIGH LIGATION AND COMPLETE\nSTRIPPING/EXCISION OF SHORT SAPHENOUS VEIN', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2203', 'VEIN, VARICOSITY, HIGH LIGATION OF SHORT SAPHENOUS VEIN\nAT SAPHENO-POPLITEAL JUNCTION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2204', 'VEIN, VARICOSITY, MULTIPLE LIGATIONS WITH/WITHOUT LOCAL\nSTRIPPING/EXCISION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2205', 'VEIN, VARICOSITY, SUB-FASCIAL LIGATION OF MULTIPLE\nPERFORATOR (ENDOSCOPIC)', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2206', 'VEIN, VARICOSITY, SUB-FASCIAL LIGATION OF SINGLE DEEP\nPERFORATOR', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.2207', 'VEIN, VARICOSITY, SUB-FASCIAL LIGATION OF SINGLE DEEP\nPERFORATOR (ENDOSCOPIC)', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.2208', 'VEIN, VARIOUS LESIONS, BYPASS/GRAFT', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2209', 'VEIN, VARIOUS LESIONS, ENDOVASCULAR STENT GRAFT/STENT\nPLACEMENT', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2210', 'VEIN, VARIOUS LESIONS, IMAGING GUIDED INSERTION OF NON\nTUNNELLED CENTRAL VENOUS CATHETER', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.2211', 'VEIN, VARIOUS LESIONS, IMAGING GUIDED INSERTION OF\nTUNNELLED CENTRAL VENOUS CATHETER', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.2212', 'VEIN, VARIOUS LESIONS, IMAGING GUIDED PERIPHERAL\nINSERTION OF CENTRAL CATHETER (PICC)', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.2213', 'VEIN, VARIOUS LESIONS, IMAGING GUIDED VENOUS PORT\nINSERTION', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2214', 'VEIN, VARIOUS LESIONS, INSERTION OF CENTRAL VENOUS LINE', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.2215', 'VEIN, VARIOUS LESIONS, INSERTION OF INFERIOR VENA CAVAL\nFILTER', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2216', 'VEIN, VARIOUS LESIONS, INTRA-ARTERIAL INFUSION OF\nARTERIES OF NECK/THORAX/ABDOMEN', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.2217', 'VEIN, VARIOUS LESIONS, LIGATION (INCLUDE REPAIR OF\nARTIFICIAL ARTERIO-VENOUS FISTULA)', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.2218', 'VEIN, VARIOUS LESIONS, PERCUTANEOUS TRANSCATHETER EMBOLISATION OF MORE THAN 2\nVESSELS', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2219', 'VEIN, VARIOUS LESIONS, PERCUTANEOUS TRANSCATHETER\nEMBOLIZATION OF 1 TO 2 VESSELS', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2220', 'VEIN, VARIOUS LESIONS, RETRIEVAL OF INFERIOR VENA CAVAL\nFILTER', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.2221', 'VEIN, VARIOUS LESIONS, SAPHENOL FEMORAL/ACCELO\nFEMORAL BYPASS GRAFT', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2222', 'VEIN-PORTAL, PORTAL HYPERTENSION, BYPASS', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2223', 'VENA CAVA INFERIOR, VARIOUS LESIONS, PLICATION/LIGATION', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2224', 'VITREOUS, INTRAVITREAL INJECTIONS', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.2225', 'VITREOUS, VARIOUS LESIONS, COMPLEX POSTERIOR\nVITRECTOMY (PVR, GRT, TRAUMA)', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2226', 'VITREOUS, VARIOUS LESIONS, POSTERIOR VITRECTOMY (PARS PLANA/ SCLEROTOMY/ LENSECTOMY-EXTRACTION\nWITH INTRA-OCULAR LENS IMPLANT/ ENDOLASER/ MEMBRANE\nPEELS)', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2227', 'VITREOUS, VARIOUS LESIONS, SIMPLE VITRECTOMY (PARS\nPLANA OR VITREOUS WASHOUT)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2228', 'VITREOUS, VARIOUS LESIONS, VITRECTOMY (PARS\nPLANA/REMOVAL OF SILICONE OIL)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2229', 'VULVA, ABSCESS, INCISION', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.2230', 'VULVA, ATRESIA/ABSENCE, DETACHMENT OF SKIN PEDICLE\nAFTER VAGINOPLASTY', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.2231', 'VULVA, BARTHOLIN CYST, EXCISION WITH/WITHOUT USE OF\nLASER', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.2232', 'VULVA, BARTHOLIN CYST, INCISION/MARSUPIALIZATION WITH\nOR WITHOUT USE OF LASER', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.2233', 'VULVA, HEMATOMA, EVACUATION <5CM (SIMPLE)', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.2234', 'VULVA, HEMATOMA, EVACUATION > 5CM\n(COMPLICATED/MORE THAN 1)', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.2235', 'VULVA, IMPERFORATE HYMEN, HYMENECTOMY', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.2236', 'VULVA, LABIAL ABNORMALITY, HYMENOPLASTY', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.2237', 'VULVA, LABIAL ABNORMALITY, LABIOPLASTY', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.2238', 'VULVA, LACERATION, DEBRIDEMENT/SUTURE >5CM\n(COMPLICATED/ MORE THAN 1)', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.2239', 'VULVA, MALIGNANT CONDITION WIDE LOCAL EXCISION WITH\nSKIN FLAP CLOSURE', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2240', 'VULVA, MALIGNANT CONDITION, RADICAL VULVECTOMY +\nGROIN + PELVIC NODE DISSECTION', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2241', 'VULVA, MALIGNANT CONDITION, RADICAL VULVECTOMY WITH GROIN DISSECTION AND WITH OR WITHOUT SKIN\nFLAP CLOSURE', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2242', 'VULVA, MALIGNANT CONDITION, SIMPLE VULVECTOMY +\nGROIN DISSECTION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2243', 'VULVA, MALIGNANT CONDITION, SIMPLE VULVECTOMY WITH\nSKIN FLAP CLOSURE', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2244', 'VULVA, MALIGNANT CONDITION, WIDE LOCAL EXCISION', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2245', 'VULVA, TIGHT INTROITUS, FENTON\'S OPERATION', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.2246', 'VULVA, WARTS, LASER VAPORISATION', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.2247', 'VULVA/VAGINA, VARIOUS LESIONS, COLPOSCOPY AND LASER\nVAPORISATION', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.2248', 'WEDGE RESECTION OF TOE NAIL (MULTIPLE TOES), MEDIAL\nAND/OR LATERAL, SIMPLE OR COMPLEX', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.2249', 'WEDGE RESECTION OF TOE NAIL (SINGLE TOE), MEDIAL AND/OR\nLATERAL, SIMPLE OR COMPLEX', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.2250', 'WRIST, AVASCULAR NECROSIS, RADIAL RECESSION/ULNAR\nLENGTHENING,', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2251', 'WRIST, DISTAL OR RADIAL ULNAR JOINT (DRUJ) INSTABILITY,\nCOMPLEX LIGAMENT RECONSTRUCTION', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2252', 'WRIST, DISTAL OR RADIAL ULNAR JOINT (DRUJ) INSTABILITY,\nDARRACH OR SIMILAR PROCEDURE', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.2253', 'WRIST, DISTAL RADIUS FRACTURE, M&R, PERCUTANEOUS\nPINNING', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2254', 'WRIST, DISTAL RADIUS FRACTURE, OPEN REDUCTION AND INTERNAL FIXATION (ORIF) (COMPLEX, WITH AUTOLOGOUS\nBONE GRAFT)', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2255', 'WRIST, DISTAL RADIUS FRACTURE, OPEN REDUCTION AND INTERNAL FIXATION (ORIF) (SIMPLE OPEN\nREDUCTION AND PINNING)', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2256', 'WRIST, DISTAL RADIUS FRACTURE, OPEN REDUCTION AND INTERNAL FIXATION (ORIF) (WITH ULNAR HEAD/STYLOID\nFIXATION/TFCC REPAIR)', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2257', 'WRIST, JOINT, VARIOUS LESIONS, PROXIMAL ROW\nCARPECTOMY OR 4 CORNER FUSION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2258', 'WRIST, LUNATE DISLOCATION/PERILUNATE DISLOCATION/COMPLEX LIGAMENT INJURY, RECONSTRUCTION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2259', 'WRIST, SCAPHOID FRACTURE, OPEN REDUCTION AND INTERNAL\nFIXATION (ORIF) WITH BONE GRAFTING', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2260', 'WRIST, SCAPHOID OR CARPUS, VASCULARISED BONE GRAFT', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2261', 'WRIST, THERAPEUTIC ARTHROSCOPY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2262', 'WRIST, ULNAR HEAD/STYLOID FRACTURE, PERCUTANEOUS\nPINNING/FIXATION', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.2263', 'WRIST, VARIOUS LESIONS, PRIMARY TOTAL JOINT\nARTHROPLASTY WITH AUGMENTATION, REQUIRING EXTRA IMPLANTS OR BONE GRAFTS, OPEN/MIS/NAVIGATED', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2264', 'WRIST, VARIOUS LESIONS, PRIMARY TOTAL JOINT\nARTHROPLASTY, OPEN/MIS/NAVIGATED', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2265', 'WRIST, VARIOUS LESIONS, REVISION TOTAL JOINT\nARTHROPLASTY, OPEN/MIS/NAVIGATED', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2266', 'ZYGOMA, DOWN FRACTURE, OSTECTOMY/ARTICULAR\nEMINECTOMY/AUGMENTATION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2267', 'ZYGOMA, FRACTURE, ELEVATION', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2268', 'TINDAKAN ANESTESI ASA 1', 899000, 'TINDAKAN OPERATIF'), +('R.TO.2269', 'TINDAKAN ANESTESI ASA 2', 2716000, 'TINDAKAN OPERATIF'), +('R.TO.2270', 'TINDAKAN ANESTESI ASA 3', 6047000, 'TINDAKAN OPERATIF'), +('R.TO.2271', 'AMPUTATION OF PENIS - 64.3', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2272', 'ARTHROSCOPIC ANKLE & FOOT PROCEDURE', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2273', 'AUGMENTATION GENIOPLASTY - 76.68', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2274', 'BURSECTOMY OF HAND - 82.31', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2275', 'CLOSED REDUCTION OF MALAR AND ZYGOMATIC FRACTURE -\n76.71', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2276', 'CLOSED REDUCTION OF MANDIBULAR FRACTURE - 76.75', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2277', 'CLOSED REDUCTION OF MAXILLARY FRACTURE - 76.73', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2278', 'CONSTRUCTION OF PENIS - 64.43', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2279', 'DORSAL OR LATERAL SLIT OF PREPUCE - 64.91', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2280', 'EXCISION OR DESTRUCTION OF LESION OR TISSUE OF SCROTUM\n- 61.3', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2281', 'FITTING OF EXTERNAL PROSTHESIS OF PENIS - 64.94', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2282', 'HYMENOTOMY - 70.11', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2283', 'INCISION AND DRAINAGE OF SCROTUM AND TUNICA\nVAGINALIS - 61.0', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2284', 'INSERTION OF TESTICULAR PROSTHESIS - 62.7', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2285', 'INSERTION OR REPLACEMENT OF INFLATABLE PENILE\nPROSTHESIS - 64.97', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2286', 'INSERTION OR REPLACEMENT OF NON-INFLATABLE PENILE\nPROSTHESIS - 64.95', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2287', 'LOCAL EXCISION OR DESTRUCTION OF LESION OF FACIAL BONE -\n76.2', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2288', 'LOCAL EXCISION OR DESTRUCTION OF LESION OF PENIS - 64.2', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2289', 'MARSUPIALIZATION OF BARTHOLIN\'S GLAND (CYST) - 71.23', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2290', 'OBLITERATION AND TOTAL EXCISION OF VAGINA - 70.4', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2291', 'OPEN OSTEOPLASTY [OSTEOTOMY] OF MANDIBULAR RAMUS -\n76.62', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2292', 'OPEN REDUCTION OF MANDIBULAR FRACTURE - 76.76', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2293', 'OPEN REDUCTION OF MAXILLARY FRACTURE - 76.74', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2294', 'OPERATIONS FOR SEX TRANSFORMATION, NOT ELSEWHERE\nCLASSIFIED - 64.5', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2295', 'OPERATIONS ON CLITORIS - 71.4', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2296', 'OSTEOPLASTY [OSTEOTOMY] OF BODY OF MANDIBLE - 76.63', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2297', 'OTHER FACIAL BONE REPAIR - 76.69', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2298', 'OTHER OPEN REDUCTION OF FACIAL FRACTURE (OPEN\nREDUCTION OF ORBIT RIM OR WALL) - 76.79', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2299', 'OTHER OPERATIONS ON PENIS - 64.98', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2300', 'OTHER RECONSTRUCTION OF MANDIBLE - 76.43', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2301', 'OTHER RECONSTRUCTION OF OTHER FACIAL BONE - 76.46', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2302', 'OTHER REPAIR OF PENIS - 64.49', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2303', 'OTHER REPAIR OF URETHRA - 58.49', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2304', 'OTHER REPAIR OR PLASTIC OPERATIONS ON BONE - 78.4', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2305', 'OTHER TOTAL MANDIBULECTOMY - 76.42', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2306', 'PARTIAL MANDIBULECTOMY - 76.31', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2307', 'REANASTOMOSIS OF URETHRA - 58.44', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2308', 'REDUCTION GENIOPLASTY - 76.67', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2309', 'RELEASE OF CHORDEE - 64.42', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2310', 'REMOVAL OF INTERNAL PROSTHESIS OF PENIS - 64.96', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2311', 'REPAIR OF COLOVAGINAL FISTULA - 70.72', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2312', 'REPAIR OF FISTULA OF VULVA OR PERINEUM - 71.72', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2313', 'REPAIR OF HYPOSPADIAS OR EPISPADIAS - 58.45', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2314', 'REPAIR OF OTHER VAGINOENTERIC FISTULA - 70.74', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2315', 'REPAIR OF RECTOVAGINAL FISTULA - 70.73', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2316', 'REPLANTATION OF PENIS - 64.45', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2317', 'SEGMENTAL OSTEOPLASTY [OSTEOTOMY] OF MAXILLA - 76.65', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2318', 'SUTURE OF LACERATION OF PENIS - 64.41', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2319', 'SUTURE OF LACERATION OF SCROTUM AND TUNICA VAGINALIS\n- 61.41', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2320', 'SUTURE OF LACERATION OF TESTIS - 62.61', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2321', 'SUTURE OF LACERATION OF URETHRA - 58.41', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2322', 'SUTURE OF LACERATION OF VULVA OR PERINEUM - 71.71', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2323', 'TOTAL OSTECTOMY OF OTHER FACIAL BONE WITH\nSYNCHRONOUS RECONSTRUCTION - 76.44', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2324', 'TOTAL OSTEOPLASTY [OSTEOTOMY] OF MAXILLA - 76.66', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2325', 'URETHRAL MEATOTOMY - 58.1', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2326', 'VAGINAL CONSTRUCTION - 70.61', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2327', 'VAGINAL CONSTRUCTION WITH GRAFT OR PROSTHESIS - 70.63', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2328', 'VAGINAL SUSPENSION AND FIXATION - 70.77', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2329', '(AORTO)CORONARY BYPASS OF FOUR OR MORE CORONARY\nARTERIES - 36.14', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.2330', '(AORTO)CORONARY BYPASS OF ONE CORONARY ARTERY - 36.11', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.2331', '(AORTO)CORONARY BYPASS OF THREE CORONARY ARTERIES -\n36.13', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.2332', '(AORTO)CORONARY BYPASS OF TWO CORONARY ARTERIES -\n36.12', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.2333', 'ABDOMINAL DRAINAGE, GA - 54.25', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.2334', 'ABDOMINAL-CORONARY ARTERY BYPASS - 36.17', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.2335', 'ABDOMINOCENTESIS, LA - 54.91', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.2336', 'ABDOMINOPERINEAL PULL THROUGH ( MALFORMASI\nANORECTAL), GA - 54.11, 45.95', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.2337', 'ADENOIDEKTOMI - 28.6', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.2338', 'ADO DISERTAI DENGAN TEE 2D INTRAOPERATIF NON BEDAH -\n39.79', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2339', 'ADVANCEMENT OF TENDON - 83.71', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2340', 'ADVANCEMENT OF TENDON OF HAND - 82.51', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2341', 'ALCOHOL SEPTAL ABLATION - 37.34', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2342', 'AMPUTATION ABOVE KNEE - 84.17', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2343', 'AMPUTATION AND DISARTICULATION OF FINGER - 84.01', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2344', 'AMPUTATION AND DISARTICULATION OF THUMB - 84.02', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2345', 'AMPUTATION OF ANKLE THROUGH MALLEOLI OF TIBIA AND\nFIBULA - 84.14', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2346', 'AMPUTATION OF TOE - 84.11', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2347', 'AMPUTATION THROUGH FOOT - 84.12', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2348', 'AMPUTATION THROUGH FOREARM - 84.05', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2349', 'AMPUTATION THROUGH HAND - 84.03', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2350', 'AMPUTATION THROUGH HUMERUS - 84.07', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2351', 'AMPUTATION, NOT OTHERWISE SPECIFIED - 84.91', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2352', 'AMVO - 35.55', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.2353', 'ANAL FISTULA/SINUS OPERATION -', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2354', 'ANALISIS HEADACHE DIARY', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2355', 'ANASTOMOSIS SARAF ASESORIUS-FASIALIS - 04.72', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2356', 'ANASTOMOSIS SARAF ASESORIUS-HIPOGLOSUS - 04.73', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2357', 'ANASTOMOSIS SARAF HIPOGLOSUS-FASIALIS - 04.71', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2358', 'ANGIO & STENTING A. VERTEBRALIS', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2359', 'ANGIOGRAFI - SPINAL', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2360', 'ANGIOGRAFI - SPINAL DENGAN ANESTESI', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2361', 'ANGIOGRAFI 4 VESSEL - CRANIOCERVICAL', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2362', 'ANGIOGRAFI 4 VESSEL - CRANIOCERVICAL DENGAN ANESTESI', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2363', 'ANGIOGRAFI 6 VESSEL - CRANIOCERVICAL', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2364', 'ANGIOGRAFI 6 VESSEL - CRANIOCERVICAL DENGAN ANESTESI', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2365', 'ANGIOGRAFI SUPERSELEKTIF', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2366', 'ANGIOPLASTI + STENTING CAROTIS', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2367', 'ANGIOPLASTI + STENTING INTRAKRANIAL', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2368', 'ANGIOPLASTI A. VERTEBRALIS', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2369', 'ANGIOPLASTI CAROTIS', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2370', 'ANGIOPLASTI INTRAKRANIAL', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2371', 'ANGIOPLASTY OF OTHER NON-CORONARY VESSEL(S) - 39.50', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2372', 'ANKLE & FOOT DEFORMITY RECONSTRUCTION (HALLUX VALGUS, MAL UNION, VARUS VALGUS ANKLE DEFORMITY, DLL)', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2373', 'ANNULOPLASTY - 35.33', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.2374', 'ANOPLASTY - 49.99', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2375', 'ANTERIOR CHAMBER, HYPOPION ASPIRATION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2376', 'ANTERIOR CHAMBER, INTRACAMERAL INJECTION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2377', 'ANTESTERNAL ESOPHAGEAL ANASTOMOSIS WITH\nINTERPOSITION OF COLON - 42.65', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2378', 'ANTESTERNAL ESOPHAGEAL ANASTOMOSIS WITH\nINTERPOSITION OF SMALL BOWEL - 42.63', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2379', 'ANTESTERNAL ESOPHAGOESOPHAGOSTOMY - 42.61', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2380', 'ANTESTERNAL ESOPHAGOGASTROSTOMY - 42.62', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2381', 'ANTROTOMI INTRANASAL (FESS) - 22.2', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2382', 'AORTA-ILIAC-FEMORAL BYPASS - 39.25', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2383', 'AORTA-RENAL BYPASS - 39.24', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2384', 'AORTA-SUBCLAVIAN-CAROTID BYPASS - 39.22', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2385', 'AORTOCORONARY BYPASS FOR HEART REVASCULARIZATION,\nNOT OTHERWISE SPECIFIED - 36.10', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.2386', 'APPENDEKTOMI + PENYULIT PER-LAPAROSKOPIK, GA - 54.21,\n54.51, 47.01', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2387', 'APPENDEKTOMI DGN KOMPLIKASI, GA - 54.11, 54.59, 47.09', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2388', 'APPENDEKTOMI ELEKTIF / TANPA KOMPLIKASI, GA - 47.09', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2389', 'APPENDEKTOMI LAPAROSKOPIK, GA - 47.01', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2390', 'APPENDEKTOMI, GA - 47.09', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2391', 'ARITENOIDEKTOMI - 30.29', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2392', 'ARTERIAL CATHETERIZATION - 38.91', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2393', 'ARTERIAL OCCLUSION - SACRIFICE', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2394', 'ARTERIOVENOSTOMY FOR RENAL DIALYSIS - 39.27', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2395', 'ARTHROPLASTY OF CARPOCARPAL OR CARPOMETACARPAL\nJOINT WITH IMPLANT - 81.74', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2396', 'ARTHROPLASTY OF CARPOCARPAL OR CARPOMETACARPAL\nJOINT WITHOUT IMPLANT - 81.75', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2397', 'ARTHROPLASTY OF METACARPOPHALANGEAL AND\nINTERPHALANGEAL JOINT WITH IMPLANT - 81.71', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2398', 'ARTHROPLASTY OF METACARPOPHALANGEAL AND\nINTERPHALANGEAL JOINT WITHOUT IMPLANT - 81.72', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2399', 'ARTIFICIAL PNEUMOTHORAX FOR COLLAPSE OF LUNG - 33.32', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2400', 'ASO - 35.53', 33261000, 'TINDAKAN OPERATIF'); +INSERT INTO `tarif_rs` (`ID_Tarif_RS`, `Tindakan_RS`, `Tarif_RS`, `Kategori_RS`) VALUES +('R.TO.2401', 'ASO DISERTAI DENGAN TEE 2D INTRA OPERATIF NON BEDAH -\n35. 5', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2402', 'ASPIRATION OF BURSA OF HAND - 82.92', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2403', 'ASPIRATION OF OTHER SOFT TISSUE OF HAND - 82.93', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2404', 'ATIKOTOMI - 20.23', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2405', 'ATTICOANTROSTOMI / MASTOIDEKTOMI MODIFIKASI - 20.49', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2406', 'AVULSI KUKU - 86.23', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.2407', 'BALLON AORTA VULVULOPLASTY (BAV) - 35.96', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2408', 'BALLON ATRIAL SEPTOSTOMY (BAS) - 35.41', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2409', 'BALLON PULMONAL VULVULOPLASTY -', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2410', 'BALLON TEST OCCLUSION', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2411', 'BALLOON ATRIAL SEPTOSTOMY (BAS) (BEDSIDE) - 35.41', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2412', 'BALLOON DILATATION, ESOPHAGEAL STRICTURE - 45.13 & 42.92', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2413', 'BAS (DI CATHLAB) + ANESTESI - 35.41', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2414', 'BEDAH FLAP PERIODONTAL', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.2415', 'BILATERAL LUNG TRANSPLANTATION - 33.52', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2416', 'BILLROTH I & II/ RESEKSI GASTER PARSIAL - 43.6 / 43.7', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2417', 'BIOPSI EKSISI RONGGA MULUT - 29.29', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2418', 'BIOPSI GINJAL ANAK', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2419', 'BIOPSI GINJAL DEWASA', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2420', 'BIOPSI JANTUNG - 37.53', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.2421', 'BIOPSI KELENJAR HIPOFISIS TRANSSFENOID - 07.14', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2422', 'BIOPSI KELENJAR LIUR - 26.12', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2423', 'BIOPSI KELENJAR PARATIROID - 06.13', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2424', 'BIOPSI LESI JINAK SINONASAL DENGAN ENDOSKOPI - 22.11', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2425', 'BIOPSI LIANG TELINGA - 18.12', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.2426', 'BIOPSI NEOPLASMA BASIS LIDAH - 27.24', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2427', 'BIOPSI NEOPLASMA BIBIR - 27.23', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2428', 'BIOPSI NEOPLASMA BRONKUS DENGAN ENDOSKOPI - 33.24', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2429', 'BIOPSI NEOPLASMA CAVUM NASI - 21.22', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2430', 'BIOPSI NEOPLASMA ESOFAGUS DENGAN ENDOSKOPI FLEKSIBEL -\n42.24', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2431', 'BIOPSI NEOPLASMA ESOFAGUS DENGAN ENDOSKOPI RIGID -\n42.24', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2432', 'BIOPSI NEOPLASMA HIPOFARING - 29.12', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.2433', 'BIOPSI NEOPLASMA LARING DENGAN ENDOSKOPI - 31.44', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2434', 'BIOPSI NEOPLASMA LIDAH - 25.02', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2435', 'BIOPSI NEOPLASMA NASOFARING - 29.12', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2436', 'BIOPSI NEOPLASMA PALATUM DURUM - 27.21', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2437', 'BIOPSI NEOPLASMA RONGGA MULUT - 27.24', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2438', 'BIOPSI NEOPLASMA SINONASAL APP BUCOGINGIVAL - 22.61', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2439', 'BIOPSI NEOPLASMA SINONASAL DENGAN ENDOSKOPI - 22.11', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2440', 'BIOPSI NEOPLASMA TRAKEA DENGAN ENDOSKOPI - 31.44', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2441', 'BIOPSI NEOPLASMA UVULA DAN PALATUM MOLE - 27.22', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2442', 'BIOPSI PER-LAPAROTOMI - 54.11 & 54.4', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2443', 'BIOPSI PROSTAT TRANSPERINEAL', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2444', 'BIOPSI PROSTAT TRANSRECTAL', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2445', 'BIOPSI REKTUM, GA - 48.25', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2446', 'BIOPSI TELINGA TENGAH DAN DALAM - 20.32', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2447', 'BIOPSI TERBUKA LARING ATAU TRAKEA - 31.45', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2448', 'BIOPSI TONSIL DAN ADENOID - 28.11', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2449', 'BIOPSY OF BLOOD VESSEL - 38.21', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2450', 'BIOPSY OF CHEST WALL - 34.23', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2451', 'BIOPSY OF DIAPHRAGM - 34.27', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2452', 'BIOPSY OF HEART - 37.25', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2453', 'BIOPSY OF LYMPHATIC STRUCTURE - 40.11', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2454', 'BIOPSY OF PERICARDIUM - 37.24', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2455', 'BLADDER DISTROPHY WITH PELVIC DIASTASIS, OPEN\nREDUCTION + RING EXTERNAL FIXATION', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2456', 'B-LYNCH - 69.99', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2457', 'BONE / SOF TISSUE MARGINAL EXCISION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2458', 'BONE GRAFT TO FACIAL BONE - 76.80', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2459', 'BONY BLOCK FOR JOINT INSTABILITY UPPER LIMB', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2460', 'BRANCHIAL CYST, EXCISION - 29.2', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2461', 'BRONKOSKOPI - 33.23', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2462', 'BRONKOSKOPI EBUS - TBNA - 33.27', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.2463', 'BRONKOSKOPI FIBER OPTIK - 33.22', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2464', 'BRONKOSKOPI MELALUI STOMA - 33.21', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2465', 'BUNIONECTOMY WITH SOFT TISSUE CORRECTION AND\nARTHRODESIS - 77.52', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2466', 'BUNIONECTOMY WITH SOFT TISSUE CORRECTION AND\nOSTEOTOMY OF THE FIRST METATARSAL - 77.51', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2467', 'BURSECTOMY - 83.5', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2468', 'BURSOTOMY OF HAND - 82.03', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2469', 'BUSINASI ANUS, GA - 48.99', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.2470', 'CALDWELL LUC - 22.61', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.2471', 'CANNULATION OF THORACIC DUCT - 40.61', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2472', 'CARDIOPLEGIA - 39.63', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2473', 'CARDIOTOMY - 37.11', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2474', 'CAROTID/VERTEBRAL ARTERI STENTING', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2475', 'CAROTID/VERTEBRAL ARTERI STENTING DENGAN ANESTESI', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2476', 'CAVAL-PULMONARY ARTERY ANASTOMOSIS - 39.21 BCPS /\nGLENN SHUNT', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2477', 'CENTRAL VENOUS CATHETER PLACEMENT WITH GUIDANCE -\n38.97', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2478', 'CENTRAL VENOUS LINE CARDIOVASCULAR CARE UNIT - 89.62', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.2479', 'CENTRALIZATION RADIAL CLUB HAND', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2480', 'CEREBRAL PALSY, SINGLE EVENT MULTILEVEL SURGERY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2481', 'CHOLANGIOSCOPY IN HEPATO PANCREATICO BILIARY\nPROCEDUR (MIS/OPEN) (OTHER DIAGNOSTIC PROCEDURES ON BILIARY TRACT) - 51.19', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2482', 'CHOLECYSTECTOMY, LAPAROSCOPY - 51.23', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2483', 'CHOLECYSTECTOMY, OPEN - 51.22', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2484', 'CIRCUMCISI, GA - 64.0', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.2485', 'CLIPPING OF ANEURYSM - 39.51', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2486', 'CLOACOSCOPY - 70.21, 57.32, 48.23', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.2487', 'CLOSED OSTEOPLASTY [OSTEOTOMY] OF MANDIBULAR RAMUS -\n76.61', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2488', 'CLOSED REDUCTION OF DISLOCATION OF HAND AND FINGER -\n79.74', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2489', 'CLOSED REDUCTION OF TEMPOROMANDIBULAR DISLOCATION -\n76.82', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2490', 'CLOSURE OF BRONCHIAL FISTULA - 33.42', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2491', 'CLOSURE OF EXTERNAL FISTULA OF TRACHEA - 31.72', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2492', 'CLOSURE OF FISTULA OF DIAPHRAGM - 34.83', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2493', 'CLOSURE OF FISTULA OF LARYNX - 31.62', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2494', 'CLOSURE OF FISTULA OF THORACIC DUCT - 40.63', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2495', 'CLOSURE OF LACERATION OF LUNG - 33.43', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2496', 'CLOSURE OF OTHER FISTULA OF THORAX - 34.73', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2497', 'CLOSURE OF OTHER FISTULA OF TRACHEA - 31.73', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2498', 'CLOSURE OF OTHER FISTULA OF URETHRA - 58.43', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2499', 'CLOSURE OF THORACOSTOMY - 34.72', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2500', 'CLOSURE OF URETHROSTOMY - 58.42', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2501', 'CO ARCTATIO BALLON + STENTING - 35.96', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2502', 'COARCTATIO AORTA STENTING TRANSKATETER + ANESTESI -\n36.06', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2503', 'COILING ANEURISMA (STENT-ASSISTED ATAU BALLOON-\nASISTED)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2504', 'COILING ANEURISMA KOMPLEKS', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2505', 'COILING ANEURISMA MULTIPLE', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2506', 'COILING ANEURISMA SIMPEL', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2507', 'COLLING ANEURISMA INTRAKRANIAL', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2508', 'COMBINED HEART-LUNG TRANSPLANTATION - 33.6', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2509', 'COMPLETE SUBSTERNAL THYROIDECTOMY - 06.52', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2510', 'CONDUIT STENTING PERKUTAN + ANESTESI - 35.9', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2511', 'CONGENITAL PSEUDOARTHROSIS OF TIBIA, PALEY CROSSUNION\nPROCEDURE', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2512', 'CONJUNCTIVA, CONJUNCTIVAL RESECTION', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2513', 'CONJUNCTIVA, POSTERIOR SUBTENON INJECTION', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.2514', 'CONTROL OF HEMORRHAGE FOLLOWING VASCULAR SURGERY -\n39.41', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2515', 'CONTROL OF HEMORRHAGE, NOT OTHERWISE SPECIFIED - 39.98', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2516', 'CORECTIVE OSTEOTOMY MALUNION MULTIPLE UPOER LIMB', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2517', 'CORECTIVE OSTEOTOMY MALUNION SINGLE UPPER LIMB', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2518', 'CORNEA, AMNIOTIC MEMBRANE TRANSPLANTATION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2519', 'CORNEA, ANTERIOR STROMAL PUNCTURE', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.2520', 'CORNEA, INTRAL STROMAL INJECTION', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.2521', 'CREATION OF CONDUIT BETWEEN ATRIUM AND PULMONARY\nARTERY - 35.94', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.2522', 'CREATION OF CONDUIT BETWEEN LEFT VENTRICLE AND AORTA -\n35.93', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.2523', 'CREATION OF CONDUIT BETWEEN RIGHT VENTRICLE AND\nPULMONARY ARTERY - 35.92', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.2524', 'CREATION OF PLEUROPERITONEAL SHUNT - 34.05', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2525', 'CREATION OF SEPTAL DEFECT IN HEART - 35.42', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.2526', 'CROWN LENGHTENING DENGAN ASTEOKTOMI', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.2527', 'CROWN LENGHTENING TANPA OSTEOKTOMI', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.2528', 'CRYPTECTOMY / FISTULECTOMY, GA - 49.12', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.2529', 'CUCI TRAKEA DAN BRONKUS - 96.56', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2530', 'CYSTOJEJENOSTOMI, ROUX EN Y, PSEUDOKISTA PANKREAS -\n52.4, 45.91', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2531', 'DAKRIOSISTORINOSTOMI (DCR) - 04.42', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2532', 'DAWO / SAWO - 22.01', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.2533', 'DECOMPRESSION ENDOLYMPATIC SAC EXPOSURE - 20.93', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2534', 'DECORTICATION OF LUNG - 34.51', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2535', 'DEKOMPRESI SARAF FASIALIS - 04.42', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2536', 'DEKOMPRESI SARAF OPTIKUS - 04.42', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2537', 'DELAYED SUTURE OF FLEXOR TENDON OF HAND - 82.42', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2538', 'DELAYED SUTURE OF OTHER TENDON OF HAND - 82.43', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2539', 'DELAYED SUTURE OF TENDON - 83.62', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2540', 'DETORSI TESTIS, GA - 62.99', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.2541', 'DEVASCULARISATION OPERATION - 44.99', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2542', 'DEVELOPMENTAL DYSLPASIA OF HIP OSTEOTOMY OF HIP', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2543', 'DEVELOPMENTAL DYSLPASIA OF HIP OSTEOTOMY OF PROXIMAL\nFEMUR', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2544', 'DEVELOPMENTAL DYSLPASIA OF HIP, CLOSED REDUCTION +\nCAST', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2545', 'DEVELOPMENTAL DYSLPASIA OF HIP, OPEN REDUCTION + CAST', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2546', 'DILATASI DUKTUS FRONTONASAL - 96.21', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2547', 'DILATASI ESOFAGUS - 42.92', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2548', 'DILATASI KATUP AORTA (BALON AORTIC VALVULOTOMY /\nVALVULOPLASTY) DENGAN ANESTESI - 35.01', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2549', 'DILATASI KATUP MITRAL (BALON MITRAL VALVULOTOMY /\nVALVULOPLASTY) DENGAN TRANS ESOFAGEAL EKOKARDIOGRAFI (TEE) GUIDING DAN ANESTESI - 35.02', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2550', 'DILATASI KATUP PULMONAL (BALON PULMONAL VALVOTOMY) PADA CRITICAL PULMONARY STENOSIS + ANESTESI - 35.03', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2551', 'DILATASI KATUP PULMONAL (BALON PULMONAL VALVULOTOMY / VALVULOPLASTY) DENGAN ANESTESI - 35.03', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2552', 'DISARTICULATION OF ANKLE - 84.13', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2553', 'DISARTICULATION OF ELBOW - 84.06', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2554', 'DISARTICULATION OF KNEE - 84.16', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2555', 'DISARTICULATION OF WRIST - 84.04', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2556', 'DISEKSI LEHER RADIKAL - 40.42', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2557', 'DISEKSI LEHER RADIKAL MODIFIKASI - 40.41', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2558', 'DISEKSI LEHER SELEKTIF - 40.3', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2559', 'DIVERTIKULEKTOMI FARING - 29.32', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2560', 'DIVISION OF LARYNGEAL NERVE - 31.91', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2561', 'DIVISION OF MUSCLE OF HAND - 82.19', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2562', 'DIVISION OF PENILE ADHESIONS - 64.93', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2563', 'DORSUMSISI ANAK', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2564', 'DORSUMSISI DEWASA', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2565', 'DOUBLE INTERNAL MAMMARY-CORONARY ARTERY BYPASS -\n36.16', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.2566', 'DRAINAGE EKSTERNA KASUS BILIARIS, GA - 51.04', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2567', 'DRAINAGE EKSTERNA KISTA PANKREAS TERINFEKSI / IMMATURE\n- 52.01', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2568', 'DRAINAGE INTERNA KASUS BILIARIS, GA - 51.36', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2569', 'DSA KRANIOSERVIKAL', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2570', 'DSA SPINAL', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2571', 'DUODENODUODENOSTOMY, DUODENAL OBSTRUCTION - 45.90', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2572', 'DUODENOJEJUNOSTOMY, DUODENAL OBSTRUCTION - 45.90', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2573', 'EKSISI BAKER CYST, GA - 83.31', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2574', 'EKSISI DIVERTIKULUM ESOFAGUS - 42.31', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2575', 'EKSISI DUKTUS TIROGLOSUS - 06.7', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2576', 'EKSISI FISTEL / ABSES PREAURICULAR - 18.21', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.2577', 'EKSISI GANGLION, UPPER LIMB, GA - 83.31', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2578', 'EKSISI GRANULOMA UMBILICALIS - 54.3', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2579', 'EKSISI HEMANGIOMA BESAR/ MULTIPLE, GA - 86.4', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2580', 'EKSISI HEMANGIOMA DENGAN SKIN GRAFT STSG/FTSG, GA -\n86.4, 86.69', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2581', 'EKSISI HEMANGIOMA KECIL, GA - 86.3', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2582', 'EKSISI KISTA DUKTUS KOLEDOKUS + ROUX EN Y - 51.63, 51.37', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2583', 'EKSISI KULIT LUAS - 86.4', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2584', 'EKSISI LESI DI FARING - 29.39', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2585', 'EKSISI LESI DI TONSIL DAN ADENOID - 28.92', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2586', 'EKSISI LESI HIDUNG - 21.30', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.2587', 'EKSISI LESI LARING (PAPILOMA, NODUL) - 30.09', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2588', 'EKSISI LESI LIANG TELINGA - 18.29', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.2589', 'EKSISI LESI NEOPLASMA PALATUM DURUM - 27.31', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2590', 'EKSISI LESI TELINGA TENGAH - 20.51', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2591', 'EKSISI LESI TRAKEA - 31.5', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2592', 'EKSISI LUAS LIANG TELINGA - 18.31', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2593', 'EKSISI LUAS NEOPLASMA PALATUM DURUM - 27.32', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2594', 'EKSISI NEOPLASMA LARING DENGAN LASER - 31.69', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2595', 'EKSISI NEOPLASMA TELINGA - 18.12', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2596', 'EKSISI NEUROMA AKUSTIK - 04.01', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2597', 'EKSISI PARSIAL KELENJAR HIPOFISIS TRANSSFENOID - 07.62', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2598', 'EKSISI POLIP REKTI, GA - 48.35', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2599', 'EKSISI PSEUDOKISTA PANKREAS - 52.5', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2600', 'EKSISI TAG TONSIL - 28.4', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2601', 'EKSISI TERATOMA RETROPERITONEAL - 59.00', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2602', 'EKSISI TIROID LINGUAL - 06.6', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2603', 'EKSISI TONSIL LINGUAL - 28.3', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2604', 'EKSISI TOTAL KELENJAR HIPOFISIS TRANSSFENOID - 07.65', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2605', 'EKSISI UVULA - 27.72', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2606', 'EKSISI, GA - 83.39', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2607', 'EKSISI, LIGASI, KAUTERISASAI POLIP PER-KOLONOSKOPI - 48.36', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2608', 'EKSPLORASI ABSES MULTIPEL - 28.0', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2609', 'EKSPLORASI DAN REPARASI TRAUMA SARAF KRANIAL/PERIFER -\n04.76', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2610', 'EKSPLORASI LAPARATOMI - 54.11', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2611', 'EKSTIRPASI / EKSISI +/- STRIPPING, GA - 86.4', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2612', 'EKSTIRPASI / EKSISI, GA - 83.39', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2613', 'EKSTIRPASI ANGIOFIBROMA NASOFARING - 29.39', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2614', 'EKSTIRPASI KELENJAR SUBLINGUAL PARSIAL - 26.31', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2615', 'EKSTIRPASI KELENJAR SUBLINGUAL TOTAL - 26.32', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2616', 'EKSTIRPASI KELENJAR SUBMANDIBULA PARSIAL - 26.31', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2617', 'EKSTIRPASI KELENJAR SUBMANDIBULA TOTAL - 26.32', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2618', 'EKSTIRPASI KISTA BRAKIAL - 29.2', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2619', 'EKSTIRPASI MASSA SINONASAL DENGAN PENDEKATAN\nENDOSKOPI - 21.32', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2620', 'EKSTRAKSI BENDA ASING BRONKUS - 98.15', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2621', 'EKSTRAKSI BENDA ASING ESOFAGUS - 98.02', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2622', 'EKSTRAKSI BENDA ASING FARING - 98.13', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.2623', 'EKSTRAKSI BENDA ASING HIDUNG - 98.12', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.2624', 'EKSTRAKSI BENDA ASING LARING - 98.14', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2625', 'EKSTRAKSI BENDA ASING MULUT - 98.01', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.2626', 'EKSTRAKSI BENDA ASING TELINGA - 98.11', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.2627', 'EKSTRAKSI BENDA ASING TONSIL / ADENOID DENGAN INSISI -\n28.91', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2628', 'EKSTRAKSI BENDA ASING TRAKEA - 98.15', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2629', 'ELECTROPHYSIOLOGY STUDY / EPSL - 37.26', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2630', 'ELECTROPHYSIOLOGY STUDY / EPSL - 37.27', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2631', 'EMBOLISASI AVF KOMPLEKS', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2632', 'EMBOLISASI AVF SIMPLE', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2633', 'EMBOLISASI BALLON', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2634', 'EMBOLISASI BRAIN AVM KOMPLEKS KOMBINASI\nTRANSARTERIAL-TRANSVENA', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2635', 'EMBOLISASI BRAIN AVM KOMPLEKS TRANSARTERIAL', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2636', 'EMBOLISASI BRAIN AVM SIMPEL', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2637', 'EMBOLISASI CCF KOMPLEKS - BALLONING / COIL', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2638', 'EMBOLISASI CCF SIMPLE - BALLLOONING', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2639', 'EMBOLISASI CEREBRAL-GLUE', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2640', 'EMBOLISASI GLUE', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2641', 'EMBOLISASI KASUS TRAUMA NEUROVASKULAR', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2642', 'EMBOLISASI KASUS TUMOR OTAK HIPERVASKULER', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2643', 'EMBOLISASI ONYX', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2644', 'EMBOLISASI PERIOPERATIF', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2645', 'EMBOLISASI SPINAL AVM/AVF', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2646', 'EMBOLISASI SPINAL KOMPLEKS', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2647', 'EMBOLISASI SPINAL SIMPEL', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2648', 'EMBOLISASI TUMOR KOMPLEKS', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2649', 'EMBOLISASI TUMOR SIMPLE', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2650', 'EMBOLISASI/COILING FISTULA - 39.79', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2651', 'ENDARTERECTOMY, ABDOMINAL ARTERIES - 38.16', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2652', 'ENDARTERECTOMY, AORTA - 38.14', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2653', 'ENDARTERECTOMY, LOWER LIMB ARTERIES - 38.18', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2654', 'ENDARTERECTOMY, OTHER THORACIC VESSELS - 38.15', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2655', 'ENDARTERECTOMY, OTHER VESSELS OF HEAD AND NECK - 38.12', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2656', 'ENDARTERECTOMY, UNSPECIFIED SITE - 38.10', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2657', 'ENDARTERECTOMY, UPPER LIMB VESSELS - 38.13', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2658', 'ENDORECTAL PULL THROUGH (SOAVE- BOLLEY PROCEDURE) -\n48.41', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2659', 'ENDOSKOPI NASOFARINGEKTOMI - 29.39', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2660', 'ENDOVASCULAR (TOTAL) EMBOLIZATION OR OCCLUSION OF\nHEAD AND NECK VESSELS - 39.72', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2661', 'ENDOVASCULAR EMBOLIZATION OR OCCLUSION OF VESSEL(S)\nOF HEAD OR NECK USING BARE COILS - 39.75', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2662', 'ENDOVASCULAR EMBOLIZATION OR OCCLUSION OF VESSEL(S) OF HEAD OR NECK USING BIOACTIVE COILS - 39.76', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2663', 'ENDOVASCULAR IMPLANTATION OF BRANCHING OR\nFENESTRATED GRAFT(S) IN AORTA - 39.78', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2664', 'ENDOVASCULAR IMPLANTATION OF GRAFT IN THORACIC AORTA\n- 39.73', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2665', 'ENDOVASCULAR IMPLANTATION OF OTHER GRAFT IN\nABDOMINAL AORTA - 39.71', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2666', 'ENDOVASCULAR REMOVAL OF OBSTRUCTION FROM HEAD AND\nNECK VESSEL(S) - 39.74', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2667', 'ENLARGEMENT OF EXISTING ATRIAL SEPTAL DEFECT - 35.41', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.2668', 'EPIDURAL STEROID INJECTION (>1 LEVEL)', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.2669', 'EPIDURAL STEROID INJECTION (SINGLE LEVEL)', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.2670', 'EPIGLOTIKTOMI - 30.21', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2671', 'ESOFAGEAL MANOMETRI - 89.32', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2672', 'ESOFAGOSKOPI - 42.23', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2673', 'ESOFAGOSTOMI - 42.10', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2674', 'ESOFAGOSTOMI SERVIKAL - 42.11', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2675', 'ESOFAGOTOMI 1/3 PROKSIMAL - 42.0', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2676', 'ESOPHAGEAL REPLACEMENT PROCEDURE, ESOPHAGEAL\nATRESIA, COLONIC TRANSPOSITION - 42.55', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.2677', 'ESOPHAGEAL REPLACEMENT PROCEDURE, ESOPHAGEAL\nATRESIA, GASTRIC PULL-UP - 42.52 / 42.62', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2678', 'ESOPHAGECTOMY, NOT OTHERWISE SPECIFIED - 42.40', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2679', 'ESOPHAGOMYOTOMY (HELLER), GA - 42.7', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2680', 'ESOPHAGOSTOMY + GASTROSTOMY, ESOPHAGEAL ATRESIA, GA\n- 42.11 & 43.19', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2681', 'ESOPHAGOSTOMY + GASTROSTOMY, ESOPHAGEAL ATRESIA, LA -\n42.11 & 43.19', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2682', 'ESOPHAGOSTOMY, ESOPHAGEAL ATRESIA, GA - 42.11', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2683', 'ESOPHAGOSTOMY, ESOPHAGEAL ATRESIA, LA - 42.11', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2684', 'ETMOIDEKTOMI (FESS) - 22.63', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2685', 'ETMOIDEKTOMI EKSTERNAL - 22.51', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2686', 'EVAKUASI CAIRAN PERICARD - 37.0', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.2687', 'EVAR + PROSTHESIS - 39.71', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2688', 'EVENTRASIO DIAFRAGMA, PLIKASI - 53.81', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2689', 'EXCISION OF ANEURYSM OF HEART - 37.32', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.2690', 'EXCISION OF BONE FOR GRAFT - 77.7', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2691', 'EXCISION OF LESION OF MUSCLE - 83.32', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2692', 'EXCISION OF LESION OF MUSCLE OF HAND - 82.22', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2693', 'EXCISION OF LESION OF OTHER SOFT TISSUE - 83.39', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2694', 'EXCISION OF LESION OF TENDON SHEATH - 83.31', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2695', 'EXCISION OF LESION OF TENDON SHEATH OF HAND - 82.21', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2696', 'EXCISION OF LESION OR TISSUE OF DIAPHRAGM - 34.81', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2697', 'EXCISION OF MUSCLE OR FASCIA FOR GRAFT - 83.43', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2698', 'EXCISION OF MUSCLE OR FASCIA OF HAND FOR GRAFT - 82.34', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2699', 'EXCISION OF OTHER LESION OF SOFT TISSUE OF HAND - 82.23', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2700', 'EXCISION OF TENDON FOR GRAFT - 83.41', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2701', 'EXCISION OF TENDON OF HAND FOR GRAFT - 82.32', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2702', 'EXCISION OR CORRECTION OF BUNIONETTE - 77.54', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2703', 'EXCISION OR DESTRUCTION OF LESION OF CHEST WALL - 34.4', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2704', 'EXCISION OR DESTRUCTION OF LESION OR TISSUE OF\nMEDIASTINUM - 34.3', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2705', 'EXCISION OR DESTRUCTION OF LESION OR TISSUE OF URETHRA -\n58.3', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2706', 'EXCISION OR DESTRUCTION OF OTHER LESION OR TISSUE OF\nHEART, ENDOVASCULAR APPROACH - 37.34', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.2707', 'EXCISION OR DESTRUCTION OF OTHER LESION OR TISSUE OF\nHEART, OPEN APPROACH - 37.33', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.2708', 'EXCISION OR DESTRUCTION OF OTHER LESION OR TISSUE OF\nHEART, THORACOSCOPIC APPROACH - 37.37', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.2709', 'EXCISION OR OTHER DESTRUCTION OF BARTHOLIN\'S GLAND\n(CYST) - 71.24', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2710', 'EXCISION, DESTRUCTION, OR EXCLUSION OF LEFT ATRIAL\nAPPENDAGE (LAA) - 37.36', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.2711', 'EXPLORATION OF TENDON SHEATH OF HAND - 82.01', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2712', 'EXPLORATION OF THYMUS FIELD - 07.91', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2713', 'EXPLORATORY THORACOTOMY - 34.02', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2714', 'EXTRACORPOREAL CIRCULATION AUXILIARY TO OPEN HEART\nSURGERY - 39.61', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2715', 'EXTRACORPOREAL MEMBRANE OXYGENATION - ECMO - 39.65', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2716', 'EXTRACRANIAL-INTRACRANIAL (EC-IC) VASCULAR BYPASS -\n39.28', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2717', 'EYE, GLAUCOMA, GLAUCOMA DRAINAGE DEVICE / TUBE\nIMPLAN GLAUCOMA', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2718', 'EYE, GLAUKOMA, LASER INDOTOMY', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2719', 'FARINGEKTOMI - 29.33', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2720', 'FARINGOTOMI - 29.0', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2721', 'FASCIOTOMY - 83.14', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2722', 'FASCIOTOMY OF HAND - 82,12', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2723', 'FENESTRASI TELINGA DALAM - 20.61', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2724', 'FIBER-OPTIC BRONCHOSCOPY - 33.22', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2725', 'FISTULASASI TRAKEOESOFAGUS - 31.95', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2726', 'FISTULEKTOMI PERIANAL FISTEL, GA - 49.12', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.2727', 'FISTULIZATION OF THORACIC DUCT - 40.62', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2728', 'FLOW DIVERTER INTRAKRANIAL', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2729', 'FLOW DIVERTER STENT', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2730', 'FREE FUNCTIONAL MUSCLE TRANSFER FOR BRACHIAL PLEXUS\nINJURY', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2731', 'FREEING OF VESSEL - 39.91', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2732', 'FRENEKTOMI LINGUAL - 25.92', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.2733', 'FRONTAL SINUSOTOMI - 22.41', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2734', 'FRONTOETMOIDEKTOMI EKSTERNAL - 22.63', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2735', 'FUNDOPLIKASI GASTER - 44.66', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2736', 'GANGLION IMPAR BLOCK', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.2737', 'GANGLIONEKTOMI SFENOPALATINA - 05.21', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2738', 'GASTRIC REPAIR, GASTRIC PERFORATION - 44.41', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2739', 'GASTROPEXY, GASTRIC MALROTATION - 44.64', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2740', 'GASTROTOMY ANAK, GA - 43.19', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2741', 'GASTROTOMY ANAK, LA - 43.19', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2742', 'GASTROTOMY NEONATES, GA - 43.19', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2743', 'GASTROTOMY NEONATES, LA - 43.19', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2744', 'GENIOGLOSSUS ADVANCEMENT - 76.68', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2745', 'GENITOPLASTY (CLITOROPLASTY,VAGINOPLASTY,PHALIOPLASTY), GA - 71.4,\n70.61', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2746', 'GINGIVAL ABLASI', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.2747', 'GINGIVECTOMY / GINGIVOPLASTY', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.2748', 'GLOSEKTOMI PARSIAL / HEMIGLOSEKTOMI - 25.2', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2749', 'GLOSEKTOMI RADIKAL - 25.4', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2750', 'GLOSEKTOMI TOTAL - 25.3', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2751', 'GRAFT OF MUSCLE OR FASCIA - 83.82', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2752', 'GRAFT SARAF KRANIAL / PERIFER - 04.5', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2753', 'HAIR TRANSPLANT BESAR - 86.64', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2754', 'HAIR TRANSPLANT KECIL - 86.64', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2755', 'HAIR TRANSPLANT SEDANG - 86.64', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2756', 'HEART REVASCULARIZATION BY ARTERIAL IMPLANT - 36.2', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.2757', 'HEART TRANSPLANTATION - 37.51', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.2758', 'HECTING KELENJAR TIROID - 06.93', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2759', 'HECTING LASERASI FARING - 29.51', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.2760', 'HECTING LASERASI KELENJAR LIUR - 26.41', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.2761', 'HECTING LASERASI LARING - 27.53', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2762', 'HECTING LASERASI LIDAH - 25.51', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.2763', 'HECTING LASERASI PALATUM - 27.61', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.2764', 'HECTING LASERASI TELINGA LUAR - 18.4', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.2765', 'HEMIKOLEKTOMI DEKSTRA - EXTENDED, GA - 45.79', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2766', 'HEMIKOLEKTOMI DEKSTRA, GA - 45.73', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2767', 'HEMIKOLEKTOMI SINISTRA, GA - 45.75', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2768', 'HEMIKORDEKTOMI - 30.29', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2769', 'HEMILARINGEKTOMI - 30.1', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2770', 'HERNIA DIAFRAGMATIKA, REPAIR HERNIA - 53.72', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2771', 'HYMENORRHAPHY - 70.76', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2772', 'HYPOTHERMIA (SYSTEMIC) INCIDENTAL TO OPEN HEART\nSURGERY - 39.62', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2773', 'IMPLAN KOKLEA - 20.96', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2774', 'IMPLANT OF PULSATION BALLOON - 37.61', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2775', 'IMPLANT OF SINGLE VENTRICULAR (EXTRACORPOREAL)\nEXTERNAL HEART ASSIST SYSTEM - 37.65', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2776', 'IMPLANTASI PACU JANTUNG PERMANEN DUA CHAMBER - 00.50', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2777', 'IMPLANTASI PACU JANTUNG PERMANEN DUA CHAMBER (PPM\nDUAL CHAMBER) - 37.72', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.2778', 'IMPLANTASI PACU JANTUNG PERMANEN SATU CHAMBER -\n00.50', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2779', 'IMPLANTASI PACU JANTUNG PERMANEN SATU CHAMBER (PPM\nSINGLE CHAMBER) - 37.71', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.2780', 'IMPLANTASI PACU JANTUNG SEMENTARA - 00.50', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2781', 'IMPLANTASI PACU JANTUNG SEMENTARA (TPM) - 37.78', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2782', 'IMPLANTATION OF AUTOMATIC CARDIOVERTER/DEFIBRILLATOR\nLEAD(S) ONLY - 37.95', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2783', 'IMPLANTATION OF AUTOMATIC CARDIOVERTER/DEFIBRILLATOR PULSE GENERATOR ONLY - 37.96', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2784', 'IMPLANTATION OF CARDIOMYOSTIMULATION SYSTEM - 37.67', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2785', 'IMPLANTATION OF DIAPHRAGMATIC PACEMAKER - 34.85', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2786', 'IMPLANTATION OF PROSTHETIC CARDIAC SUPPORT DEVICE\nAROUND THE HEART - 37.41', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2787', 'IMPLANTATION OF TOTAL INTERNAL BIVENTRICULAR HEART\nREPLACEMENT SYSTEM - 37.52', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.2788', 'IMPLANTATION OR INSERTION OF BIVENTRICULAR EXTERNAL\nHEART ASSIST SYSTEM - 37.60', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2789', 'IMPLANTATION OR REPLACEMENT OF AUTOMATIC CARDIOVERTER/DEFIBRILLATOR, TOTAL SYSTEM - AICD - 37.94', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2790', 'IMPLANTATION OR REPLACEMENT OF CAROTID SINUS\nSTIMULATION DEVICE, TOTAL SYSTEM - 39.81', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2791', 'IMPLANTATION OR REPLACEMENT OF CAROTID SINUS\nSTIMULATION LEAD(S) ONLY - 39.82', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2792', 'IMPLANTATION OR REPLACEMENT OF CAROTID SINUS\nSTIMULATION PULSE GENERATOR ONLY - 39.83', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2793', 'INCISION AND DRAINAGE OF PALMAR OR THENAR SPACE - 82.04', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2794', 'INCISION OF BRONCHUS - 33.0', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2795', 'INCISION OF CHEST WALL - 34.01', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2796', 'INCISION OF HEART, NOT OTHERWISE SPECIFIED - 37.10', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2797', 'INCISION OF LUNG - 33.1', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2798', 'INCISION OF LYMPHATIC STRUCTURES - 40.0', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2799', 'INCISION OF MEDIASTINUM - 34.1', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2800', 'INCISION OF VESSEL, ABDOMINAL ARTERIES - 38.06', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2801', 'INCISION OF VESSEL, ABDOMINAL VEINS - 38.07', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2802', 'INCISION OF VESSEL, AORTA - 38.04', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2803', 'INCISION OF VESSEL, LOWER LIMB ARTERIES - 38.08', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2804', 'INCISION OF VESSEL, LOWER LIMB VEINS - 38.09', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2805', 'INCISION OF VESSEL, OTHER THORACIC VESSELS - 38.05', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2806', 'INCISION OF VESSEL, OTHER VESSELS OF HEAD AND NECK -\n38.02', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2807', 'INCISION OF VESSEL, UNSPECIFIED SITE - 38.00', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2808', 'INCISION OF VESSEL, UPPER LIMB VESSELS - 38.03', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2809', 'INDUKSI PROSTAGLANDIN ( INDUKSI PERSALINAN DENGAN\nMEDIKAMENTOSA) - 73.4', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.2810', 'INFUNDIBULECTOMY - 35.34', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.2811', 'INITIAL INSERTION OF DUAL-CHAMBER DEVICE - 37.83', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2812', 'INITIAL INSERTION OF SINGLE-CHAMBER DEVICE, NOT SPECIFIED\nAS RATE RESPONSIVE - 37.81', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2813', 'INITIAL INSERTION OF SINGLE-CHAMBER DEVICE, RATE\nRESPONSIVE - 37.82', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2814', 'INJECTION OF SCLEROSING AGENT INTO VEIN - 39.92', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2815', 'INJECTION OF THERAPEUTIC SUBSTANCE INTO BURSA OF HAND -\n82.94', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2816', 'INJECTION OF THERAPEUTIC SUBSTANCE INTO HEART - 37.92', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2817', 'INJECTION OF THERAPEUTIC SUBSTANCE INTO PERICARDIUM -\n37.93', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2818', 'INJECTION OF THERAPEUTIC SUBSTANCE INTO\nTEMPOROMANDIBULAR JOINT - 76.85', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2819', 'INJECTION OF THERAPEUTIC SUBSTANCE INTO TENDON OF\nHAND - 82.95', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2820', 'INJECTION OR INFUSION OF THROMBOLYTIC AGENT (RTPA)', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2821', 'INJEKSI LARING - 31.0', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2822', 'INJEKSI OBAT TEURAPETIK KE TRAKEA - 31.94', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2823', 'INJEKSI TELINGA DALAM - 20.72', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2824', 'INSERTION OF IMPLANTABLE HEART ASSIST SYSTEM - 37.66', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2825', 'INSERTION OF IMPLANTABLE PRESSURE SENSOR WITHOUT LEAD FOR INTRACARDIAC OR GREAT VESSEL HEMODYNAMIC\nMONITORING - 38.26', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2826', 'INSERTION OF INTERCOSTAL CATHETER FOR DRAINAGE - 34.04', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2827', 'INSERTION OF INTERCOSTAL CATHETER FOR DRAINAGE - 34.04', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2828', 'INSERTION OF LEFT ATRIAL APPENDAGE DEVICE - 37.90', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2829', 'INSERTION OF NON-DRUG-ELUTING PERIPHERAL (NON-\nCORONARY) VESSEL STENT(S) - 39.90', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2830', 'INSERTION OF PERMANENT PACEMAKER, INITIAL OR\nREPLACEMENT, TYPE OF DEVICE NOT SPECIFIED - 37.80', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2831', 'INSERTION OF SYNTHETIC IMPLANT IN FACIAL BONE - 76.81', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2832', 'INSERTION OF TEMPORARY NON-IMPLANTABLE\nEXTRACORPOREAL CIRCULATORY ASSIST DEVICE - 37.62', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2833', 'INSERTION OF TEMPORARY TRANSVENOUS PACEMAKER\nSYSTEM - 37.78', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2834', 'INSERTION OF VESSEL-TO-VESSEL CANNULA - 39.93', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2835', 'INSERTION OR REPLACEMENT OF EPICARDIAL LEAD -\nELECTRODE INTO EPICARDIUM - 37.74', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2836', 'INSISI ABSES HIDUNG / SEPTUM - 21.1', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.2837', 'INSISI ABSES PERIANAL, GA - 49.01', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.2838', 'INSISI DAN DRAINAGE ABSES PREAURIKULAR - 18.21', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.2839', 'INSISI DAN KOMPRESI PSEUDOKISTA / HEMATOMA AURIKULA -\n18.09', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2840', 'INSISI DRAINASE ABSES RETROAURIKULAR / MASTOID - 20.21', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2841', 'INSISI DRAINASE ABSES\nTONSIL/PERITONSIL/PARAFARING/RETROFARING - 28.0', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2842', 'INSISI DRAINASE ABSES WAJAH / SUBMANDIBULA / ANGINA\nLUDOVICI - 27.0', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2843', 'INSISI DRAINASE KELENJAR LIUR - 26.0', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.2844', 'INSISI DRAINASE LIANG TELINGA - 18.02', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.2845', 'INSISI DRAINASE/ DEBRIDEMENT ABSES, GA - 86.04', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.2846', 'INSISI PALATUM - 27.1', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2847', 'INSISI UVULA - 27.71', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2848', 'INSISI WEB ESOFAGUS - 42.01', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2849', 'INTERATRIAL STENTING PERKUTAN + ANESTESI - 36.06', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2850', 'INTERATRIAL TRANSPOSITION OF VENOUS RETURN - 35.91', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.2851', 'INTERRUPTION OF THE VENA CAVA - 38.7', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2852', 'INTRA ARTERIAL CEREBRAL STEM CELL', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2853', 'INTRA-ABDOMINAL VENOUS SHUNT - 39.1', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2854', 'INTRAARTERY CEREBRAL STEM CELL', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2855', 'INTRALESIONAL BIOPSY WITH VRIESCOUPE', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2856', 'INTRALESIONAL EXCISION TUMOR', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2857', 'INTRAOPERATIVE CARDIAC PACEMAKER - 39.64', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2858', 'INTRATHORACIC ESOPHAGEAL ANASTOMOSIS WITH\nINTERPOSITION OF COLON - 42.55', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2859', 'INTRATHORACIC ESOPHAGEAL ANASTOMOSIS WITH\nINTERPOSITION OF SMALL BOWEL - 42.53', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2860', 'INTRATHORACIC ESOPHAGEAL ANASTOMOSIS WITH OTHER\nINTERPOSITION - 42.58', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2861', 'INTRATHORACIC ESOPHAGOESOPHAGOSTOMY - 42.51', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2862', 'INTRATHORACIC ESOPHAGOGASTROSTOMY - 42.52', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2863', 'INTRAVASCULAR SPECTROSCOPY - 38.23', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2864', 'INTUBASI DENGAN BRONKOSKOPI FLEKSIBEL - 96.04', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2865', 'IRIGASI SINUS - 22.00', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.2866', 'IRIGASI SINUS DARI OSTIUM ALAMIAH - 22.02', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.2867', 'ISTHMUSEKTOMI - 06.31', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2868', 'IVA (INSPEKSI VISUAL ASETAT) PEMERIKSAAN CERVIX LAINNYA (\nIVA , PAP SMEAR) - 67.19', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.2869', 'JARI SYNDACTYLY (MULTIPLE), EKSISI, GA - 86.85', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2870', 'JARI, POLYDACTYLY, AMPUTASI WITH REKONTRUKSI, GA - 84.01', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2871', 'JARI, SYNDACTYLY (SINGLE), EKSISI, GA - 86.85', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2872', 'JEJUNOSTOMY FEEDING, GA - 46.01', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2873', 'KANALOPLASTI/MEATOPLASTY - 18.6', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2874', 'KATETERISASI ARTERI/VENA PERIFER DILANJUTKAN PIAT - 99.10', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2875', 'KATETERISASI ARTERI/VENA PERIFER DILANJUTKAN\nTROMBOSUCTION - 39.74', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2876', 'KATETERISASI DIAGNOSTIK KORONER - 88.55', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2877', 'KATETERISASI DIAGNOSTIK PEMBULUH DARAH ARTERI /VENA\nPERIFER - 88.40', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2878', 'KATETERISASI DIAGNOSTIK PEMBULUH DARAH ARTERI /VENA\nPERIFER DENGAN IVUS - 88.40', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2879', 'KIMURA PROCEDURE, DUODENAL OBSTRUCTION - 45.90', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2880', 'KISTOGASTROSTOMI, PSEUDOKISTA PANKREAS, LAPAROSKOPI -\n51.39', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2881', 'KISTOGASTROSTOMI, PSEUDOKISTA PANKREAS, OPEN - 52.4', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2882', 'KLITOROPLASTI, GA - 71.4', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2883', 'KOILING EMBOLISASI ARTERI/VENA PERIFER - 39.79', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2884', 'KOLOSTOMI ANAK - 46.11', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2885', 'KOLOSTOMI NEONATUS - 46.11', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2886', 'KOMPRESI BIMANUAL INTERNA/EKSTRNA', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.2887', 'KONKOTOMI - 21.62', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.2888', 'KONTROL EPISTAKSIS DENGAN EKSISI MUKOSA HIDUNG DAN\nGRAFT KULIT KE', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2889', 'KONTROL EPISTAKSIS DENGAN KAUTERISASI DAN TAMPON -\n21.03', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2890', 'KONTROL EPISTAKSIS DENGAN LIGASI ARTERI ETMOID /\nSFENOPALATINA - 21.04', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2891', 'KONTROL EPISTAKSIS DENGAN LIGASI ARTERI MAKSILARIS\nTRANSANTRAL - 21.05', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2892', 'KONTROL EPISTAKSIS DENGAN TAMPON ANTERIOR - 21.01', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.2893', 'KONTROL EPISTAKSIS DENGAN TAMPON POSTERIOR - 21.02', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.2894', 'KONTROL PERDARAHAN PASCA TONSILEKTOMI &\nADENOIDEKTOMI - 28.7', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.2895', 'KORDEKTOMI - 30.22', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2896', 'KOREKSI SCOLIOSIS >90 DERAJAT', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2897', 'KOREKSI SCOLIOSIS 50-90 DERAJAT', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2898', 'KURETASE JARINGAN GRANULASI CAE - 18.02', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2899', 'KURETASE PERIODONTAL PER REGIO', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.2900', 'LABIRINTECTOMY TRANSMASTOID - 20.79', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2901', 'LADD\'S PROCEDURE, MIDGUT MALROTATION - 54.11, 54.59,\n47.19, 46.62', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2902', 'LAPARATOMI APPENDEKTOMI, GA - 54.11, 47.09', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2903', 'LAPARATOMI EXPLORASI / DIAGNOSTIK - 54.11', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2904', 'LAPAROSCOPIC REPAIR OF DIAPHRAGMATIC HERNIA, WITH\nTHORACIC APPROACH - 53.83', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2905', 'LAPAROSKOPI ABLASI ENDOMETRIOSIS - 68.23', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2906', 'LAPAROSKOPI ADHESIOLISIS PADA OVARIUM DAN TUBA - 65.81', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2907', 'LAPAROSKOPI BILATERAL SALPHINGOOVOREKTOMI - 65.63', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2908', 'LAPAROSKOPI DIAGNOSTIK - 54.21', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2909', 'LAPAROSKOPI DIAGNOSTIK - 54.21', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2910', 'LAPAROSKOPI KISTEKTOMI - 65.25', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2911', 'LAPAROSKOPI LHCT - 66.18', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2912', 'LAPAROSKOPI MIEKTOMI - 68.29', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2913', 'LAPAROSKOPI OSHADA - 68.29', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2914', 'LAPAROSKOPI OVARIAN DRILLING - 65.99', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2915', 'LAPAROSKOPI PERITONEUM - 54.51', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2916', 'LAPAROSKOPI RH - 68.61', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2917', 'LAPAROSKOPI TAH-BSO - 68.41', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2918', 'LAPAROSKOPI TUBECTOMY - 66.29', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2919', 'LAPAROSKOPI UNILATERAL SALPHINGOOVOREKTOMI - 65.41', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2920', 'LAPAROSKOPIK DIAGNOSTIK - 54.21', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2921', 'LAPAROTOMI ABDOMINAL PREGNANCY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2922', 'LAPAROTOMI ADHESIOLISIS - 54 11 & 54.59', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2923', 'LAPAROTOMI ADHESIOLISIS + RESEKSI + ANASTOMOSIS - 54.11\n& 54.59 & 45.62 & 45.91', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2924', 'LAPAROTOMI ADHESIOLISIS + RESEKSI + ANASTOMOSIS,\nNEONATUS - 54.11 & 54.59 & 45.62 & 45.91', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.2925', 'LAPAROTOMI ADHESIOLISIS + RESEKSI + STOMA - 54.11 & 54.59\n& 45.62 & 46.20', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2926', 'LAPAROTOMI ADHESIOLISIS + RESEKSI + STOMA, NEONATUS -\n54.11 & 54.59 & 45.62 & 46.20', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2927', 'LAPAROTOMI ADHESIOLISIS, NEONATUS - 54 11 & 54.59', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2928', 'LAPAROTOMI ASSISTED SWENSON TRANSANAL - 48.50', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2929', 'LAPAROTOMI, AFF PACKING HEPAR, TRAUMA - 50.99', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2930', 'LAPAROTOMI, PACKING HEPAR, TRAUMA - 54.11, 50.69', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2931', 'LARINGEKTOMI PARSIAL - 30.29', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2932', 'LARINGEKTOMI RADIKAL - 30.4', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2933', 'LARINGEKTOMI TOTAL - 30.3', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2934', 'LARINGOFISURE . 31.6', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2935', 'LARINGOSKOPI DIRECT - 31.42', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.2936', 'LASER ENDOVENOUSE VEIN - 39.79', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2937', 'LASER HEMORRHOIDOPLASTY (CONTROL OF HAEMORRHAGE\nFOLLOWING VASCULAR SURGERY) - 39.41', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2938', 'LASER HEMORRHOIDOPLASTY (OTHER PROCEDURES ON\nHEMORRHOIDS) - 49.49', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2939', 'LASER IN ANAL FISTULA - 48.33', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2940', 'LASER LARYNGEAL SURGERY - 31.98', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2941', 'LEPAS TAMPON VAGINA - 97.75', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.2942', 'LIGAMENT TRANSFER FOR JOINT INSTABILITY MUKTIPLE UPPER\nLIMB', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2943', 'LIGAMENT TRANSFER FOR JOINT INSTABILITY UPPER LIMB', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2944', 'LIGASI ARTERI KAROTIS EKSTERNA - 21.06', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2945', 'LIGASI PEMBULUH DARAH TIROID - 06.92', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2946', 'LIGASI TINGGI, HYDROCELE - 61.2', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2947', 'LIGATION AND STRIPPING OF VARICOSE VEINS, ABDOMINAL\nVEINS - 38.57', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2948', 'LIGATION AND STRIPPING OF VARICOSE VEINS, LOWER LIMB\nVEINS - 38.59', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2949', 'LIGATION AND STRIPPING OF VARICOSE VEINS, OTHER\nTHORACIC VESSELS - 38.55', 30237000, 'TINDAKAN OPERATIF'); +INSERT INTO `tarif_rs` (`ID_Tarif_RS`, `Tindakan_RS`, `Tarif_RS`, `Kategori_RS`) VALUES +('R.TO.2950', 'LIGATION AND STRIPPING OF VARICOSE VEINS, OTHER VESSELS\nOF HEAD AND NECK - 38.52', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2951', 'LIGATION AND STRIPPING OF VARICOSE VEINS, UNSPECIFIED\nSITE - 38.50', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2952', 'LIGATION AND STRIPPING OF VARICOSE VEINS, UPPER LIMB\nVESSELS - 38.53', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2953', 'LIGATION OF BRONCHUS - 33.92', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2954', 'LIGATION OF THORACIC DUCT - 40.64', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2955', 'LIP TIE INCISION, GA - 27.91', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.2956', 'LIPOMA, ATHEROMA, EXCISI/EXTIRPASI, LA - 86.3', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.2957', 'LIPOSUCTION BESAR - 86.63', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2958', 'LIPOSUCTION KECIL - 86.63', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.2959', 'LIPOSUCTION SEDANG - 86.63', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2960', 'LISIS PENYEMPITAN TRAKEA / LARING - 31.92', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2961', 'LOBEKTOMI - 06.39', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2962', 'LOBEKTOMI / SEGMENTEKTOMI HEPAR - 50.3', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.2963', 'LOWER BLEPHAROPLASTY - 08.7', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2964', 'LOWER LIMB AMPUTATION, NOT OTHERWISE SPECIFIED - 84.10', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2965', 'LUMBAR SYMPATHECTOMY - 05.23', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2966', 'LUNG TRANSPLANTATION, NOT OTHERWISE SPECIFIED - 33.50', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2967', 'LUNG VOLUME REDUCTION SURGERY - 32.22', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2968', 'LYMPH NODE (AXILLARY), VARIOUS LESIONS, EXCISION - 40.51', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2969', 'LYMPHATICS (AXILLARY), DEBULKING - 83.39', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2970', 'LYMPHATICS (AXILLARY), EXCISION - 86.4', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2971', 'LYMPHATICS (AXILLARY), SCLEROTHERAPY, WITH USG - 39.92', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2972', 'LYMPHATICS (FACE & NECK), CYSTIC HYGROMA, BIOPSY - 40.19', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.2973', 'LYMPHATICS (FACE & NECK), CYSTIC HYGROMA, DEBULKING -\n83.39', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2974', 'LYMPHATICS (FACE & NECK), CYSTIC HYGROMA,\nSCLEROTHERAPY, WITH USG - 39.92', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2975', 'LYSIS OF ADHESIONS OF HAND - 82.91', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2976', 'LYSIS OF ADHESIONS OF MUSCLE, TENDON, FASCIA, AND BURSA\n- 83.91', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2977', 'LYSIS OF ADHESIONS OF TRACHEA OR LARYNX - 31.92', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2978', 'MACRODACTYLY RAY AMPUTATION', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2979', 'MAKSILEKTOMI MEDIAL - 22.31', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2980', 'MAKSILEKTOMI PARSIAL - 76.39', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2981', 'MAKSILEKTOMI RADIKAL - 76.39', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2982', 'MAKSILEKTOMI TERBATAS - 76.39', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2983', 'MAKSILEKTOMI TOTAL - 76.39', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2984', 'MANDIBULEKTOMI PARSIAL - 76.31', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2985', 'MANDIBULEKTOMI TOTAL - 76.41', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2986', 'MAPCA STENTING TRANSKATETER + ANESTESI - 36.06', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2987', 'MARSUPIALISASI BARTOLIN - 71.23', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.2988', 'MARSUPIALISASI KISTA KELENJAR LIUR - 26.21', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2989', 'MARSUPIALISASI KISTA LARING - 30.01', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2990', 'MARSUPIALISASI KISTA OVARIUM - 64.21', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.2991', 'MASTOIDEKTOMI RADIKAL - 20.42', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2992', 'MASTOIDEKTOMI REVISI - 20.92', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2993', 'MASTOIDEKTOMI SEDERHANA - 20.41', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2994', 'MEDIAL BRACNH BLOCK', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.2995', 'MEDIASTINOSCOPY - 34.22', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2996', 'MIDFASIAL DEGLOVING - 22.62', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2997', 'MILES PROCEDURE, GA - 49.6', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2998', 'MINI FACELIFT - 86.82', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2999', 'MINIMAL/ LIMITED PSARP - 45.95', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3000', 'MIOTOMI KRIKOFARING - 29.31', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.3001', 'MIRINGOTOMI - 20.09', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.3002', 'MODIFIKASI BOGOTA BAG/SILO BAG, GA - 54.99', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.3003', 'MODIFIKASI BOGOTA BAG/SILO BAG, LA - 54.99', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.3004', 'MOHS MICROGRAPHIC SURGERY BESAR - 86.4', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.3005', 'MOHS MICROGRAPHIC SURGERY KECIL - 86.4', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.3006', 'MOHS MICROGRAPHIC SURGERY SEDANG - 86.4', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.3007', 'MONITORING THROMBOLISIS INTRAVENA', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.3008', 'MUCOCELE/RANULA, EXTIRPATION - 26.29', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.3009', 'MUSCLE TRANSFER OR TRANSPLANTATION - 83.77', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3010', 'MUSCULAR DISTROPHY, OPEN BIOPSY', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3011', 'MYOTOMY OF HAND - 82.02', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3012', 'NASOFARINGEKTOMI - 29.39', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.3013', 'NEKROTOMI, GA - 86.22', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.3014', 'NERVE TRANSFER PROCEDURE FOR NERVE INJURY', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3015', 'NEUREKTOMI POSTERIOR - 05.25', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.3016', 'OBLITERASI MASTOID/PENUTUPAN FISTEL MASTOID - 19.9', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.3017', 'OBTURATOR INTERIN RESIK AKRILIK MODIFIKASI SILIKON\nDENGAN HOLLOW BULP', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.3018', 'OKLUSI ASD DENGAN AMPLATZER - 35.52', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3019', 'OKLUSI PDA DENGAN AMPLATZER, COIL, PFM, ADO2, GA - 39.79', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3020', 'OKLUSI VSD DENGANAMPLATZER, NIT, LIFETECH, - 35.55', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3021', 'OKLUSI VSD DENGANAMPLATZER, NIT, LIFETECH, - 35.55', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3022', 'OPEN ABLATION OF LUNG LESION OR TISSUE - 32.23', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3023', 'OPEN AND OTHER REPLACEMENT OF AORTIC VALVE - 35.22', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3024', 'OPEN AND OTHER REPLACEMENT OF AORTIC VALVE WITH\nTISSUE GRAFT - 35.21', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3025', 'OPEN AND OTHER REPLACEMENT OF MITRAL VALVE - 35.24', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3026', 'OPEN AND OTHER REPLACEMENT OF MITRAL VALVE WITH\nTISSUE GRAFT - 35.23', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3027', 'OPEN AND OTHER REPLACEMENT OF PULMONARY VALVE -\n35.26', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3028', 'OPEN AND OTHER REPLACEMENT OF PULMONARY VALVE WITH\nTISSUE GRAFT - 35.25', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3029', 'OPEN AND OTHER REPLACEMENT OF TRICUSPID VALVE - 35.28', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3030', 'OPEN AND OTHER REPLACEMENT OF TRICUSPID VALVE WITH\nTISSUE GRAFT - 35.27', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3031', 'OPEN AND OTHER REPLACEMENT OF UNSPECIFIED HEART\nVALVE - 35.20', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3032', 'OPEN BIOPSY OF BRONCHUS - 33.25', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3033', 'OPEN BIOPSY OF LUNG - 33.28', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3034', 'OPEN CHEST CARDIAC MASSAGE - 37.91', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3035', 'OPEN CHEST CORONARY ARTERY ANGIOPLASTY - 36.03', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3036', 'OPEN CHEST TRANSMYOCARDIAL REVASCULARIZATION - 36.31', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3037', 'OPEN HEART VALVULOPLASTY OF AORTIC VALVE WITHOUT\nREPLACEMENT - 35.11', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3038', 'OPEN HEART VALVULOPLASTY OF MITRAL VALVE WITHOUT\nREPLACEMENT - 35.12', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3039', 'OPEN HEART VALVULOPLASTY OF PULMONARY VALVE\nWITHOUT REPLACEMENT - 35.13', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3040', 'OPEN HEART VALVULOPLASTY OF TRICUSPID VALVE WITHOUT\nREPLACEMENT - 35.14', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3041', 'OPEN HEART VALVULOPLASTY WITHOUT REPLACEMENT,\nUNSPECIFIED VALVE - 35.10', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3042', 'OPEN MEDIASTINAL BIOPSY - 34.26', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3043', 'OPEN REDUCTION OF ALVEOLAR FRACTURE - 76.77', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3044', 'OPEN REDUCTION OF DISLOCATION OF HAND AND FINGER -\n79.84', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3045', 'OPEN REDUCTION OF FRACTURE WITH INTERNAL FIXATION,\nOTHER SPECIFIED BONE - 79.39', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3046', 'OPEN REDUCTION OF MALAR AND ZYGOMATIC FRACTURE -\n76.72', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3047', 'OPEN REDUCTION OF TEMPOROMANDIBULAR DISLOCATION -\n76.83', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3048', 'OPERASI STOMA YANG LAIN, ANAK - 46.21', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3049', 'OPERASI STOMA YANG LAIN, NEONATUS - 46.21', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3050', 'OPERASI TUBA EUSTACHIUS - 20.8', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.3051', 'OPERATIONS ON CHORDAE TENDINEAE - 35.32', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3052', 'OPERATIONS ON OTHER STRUCTURES ADJACENT TO VALVES OF\nHEART - 35.39', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3053', 'OPERATIONS ON PAPILLARY MUSCLE - 35.31', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3054', 'OPERATIONS ON TRABECULAE CARNEAE CORDIS - 35.35', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3055', 'ORCHIOPEXY - 62.5', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3056', 'ORCHYDECTOMY, GA - 62.3', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.3057', 'ORCHYDOPEXY ASSISTED LAPAROSKOPI, GA - 54.21, 62.5', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3058', 'ORCHYDOPEXY TANPA EKSPLORASI, GA - 62.5', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.3059', 'OSSICULOPLASTY - 19.0', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.3060', 'OSSICULOPLASTY TAHAP II - 19.3', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.3061', 'OSTEOGENESIS IMPREFECTA, MULTIPLE OSTEOTOMY +\nINTERNAL FIXATION', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3062', 'OTHER (PERIPHERAL) VASCULAR SHUNT OR BYPASS - 39.29', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3063', 'OTHER AMPUTATION BELOW KNEE - 84.15', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3064', 'OTHER AND OPEN REPAIR OF DIAPHRAGMATIC HERNIA, WITH\nTHORACIC APPROACH - 53.84', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3065', 'OTHER AND UNSPECIFIED PNEUMONECTOMY - 32.59', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3066', 'OTHER AND UNSPECIFIED REPAIR OF ATRIAL SEPTAL DEFECT -\n35.71', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3067', 'OTHER AND UNSPECIFIED REPAIR OF ENDOCARDIAL CUSHION\nDEFECT - 35.73', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3068', 'OTHER AND UNSPECIFIED REPAIR OF UNSPECIFIED SEPTAL\nDEFECT OF HEART - 35.70', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3069', 'OTHER AND UNSPECIFIED REPAIR OF VENTRICULAR SEPTAL\nDEFECT - 35.72', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3070', 'OTHER AND UNSPECIFIED SEGMENTAL RESECTION OF LUNG -\n32.39', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3071', 'OTHER AND UNSPECIFIED THORACOSCOPIC OPERATIONS ON\nTHYMUS - 07.98', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3072', 'OTHER ANTESTERNAL ANASTOMOSIS OF ESOPHAGUS - 42.69', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3073', 'OTHER ANTESTERNAL ESOPHAGEAL ANASTOMOSIS WITH\nINTERPOSITION - 42.68', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3074', 'OTHER ANTESTERNAL ESOPHAGOCOLOSTOMY - 42.66', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3075', 'OTHER ANTESTERNAL ESOPHAGOENTEROSTOMY - 42.64', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3076', 'OTHER BRONCHOSCOPY - 33.23', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3077', 'OTHER BUNIONECTOMY - 77.58', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3078', 'OTHER BUNIONECTOMY WITH SOFT TISSUE CORRECTION -\n77.53', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3079', 'OTHER BYPASS ANASTOMOSIS FOR HEART REVASCULARIZATION\n- 36.19', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3080', 'OTHER CHANGE IN HAND MUSCLE OR TENDON LENGTH - 82.55', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3081', 'OTHER CHANGE IN MUSCLE OR TENDON LENGTH - 83.85', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3082', 'OTHER CLOSED REDUCTION OF FACIAL FRACTURE ((CLOSED\nREDUCTION OF ORBITAL FRACTURE) - 76.78', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3083', 'OTHER DIAGNOSTIC PROCEDURES ON BLOOD VESSELS - 38.29', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3084', 'OTHER DIAGNOSTIC PROCEDURES ON CHEST WALL, PLEURA,\nAND DIAPHRAGM - 34.28', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3085', 'OTHER DIAGNOSTIC PROCEDURES ON LUNG OR BRONCHUS -\n33.29', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3086', 'OTHER DIAGNOSTIC PROCEDURES ON LYMPHATIC STRUCTURES -\n40.19', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3087', 'OTHER DIAGNOSTIC PROCEDURES ON MEDIASTINUM - 34.29', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3088', 'OTHER ENDOVASCULAR PROCEDURES ON OTHER VESSELS -\n39.79', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3089', 'OTHER EXCISION OF LUNG - 32.9', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3090', 'OTHER EXCISION OF PLEURA - 34.59', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3091', 'OTHER EXCISION OF SOFT TISSUE - 83.49', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3092', 'OTHER EXCISION OF SOFT TISSUE OF HAND - 82.39', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3093', 'OTHER EXCISION OF VESSELS, ABDOMINAL ARTERIES - 38.66', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3094', 'OTHER EXCISION OF VESSELS, ABDOMINAL VEINS - 38.67', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3095', 'OTHER EXCISION OF VESSELS, AORTA, ABDOMINAL - 38.64', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3096', 'OTHER EXCISION OF VESSELS, LOWER LIMB ARTERIES - 38.68', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3097', 'OTHER EXCISION OF VESSELS, LOWER LIMB VEINS - 38.69', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3098', 'OTHER EXCISION OF VESSELS, OTHER VESSELS OF HEAD AND\nNECK - 38.62', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3099', 'OTHER EXCISION OF VESSELS, THORACIC VESSELS - 38.65', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3100', 'OTHER EXCISION OF VESSELS, UNSPECIFIED SITE - 38.60', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3101', 'OTHER EXCISION OF VESSELS, UPPER LIMB VESSELS - 38.63', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3102', 'OTHER EXCISION, FUSION AND REPAIR OF TOES - 77.57', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3103', 'OTHER FASCIECTOMY - 83.44', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3104', 'OTHER FASCIECTOMY OF HAND - 82.35', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3105', 'OTHER HAND MUSCLE TRANSFER OR TRANSPLANTATION - 82.58', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3106', 'OTHER HAND MUSCLE TRANSPOSITION - 82.59', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3107', 'OTHER HAND TENDON TRANSFER OR TRANSPLANTATION -\n82.56', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3108', 'OTHER HAND TENDON TRANSPOSITION - 82.57', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3109', 'OTHER HEART REVASCULARIZATION - 36.39', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3110', 'OTHER INCISION OF PLEURA - 34.09', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3111', 'OTHER INCISION OF SOFT TISSUE OF HAND - 82.09', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3112', 'OTHER INJECTION OF LOCALLY-ACTING THERAPEUTIC\nSUBSTANCE INTO SOFT TISSUE OF HAND - 82.96', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3113', 'OTHER INTRA-ABDOMINAL VASCULAR SHUNT OR BYPASS -\n39.26', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3114', 'OTHER INTRATHORACIC ANASTOMOSIS OF ESOPHAGUS - 42.59', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3115', 'OTHER INTRATHORACIC ESOPHAGOCOLOSTOMY - 42.56', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3116', 'OTHER INTRATHORACIC ESOPHAGOENTEROSTOMY - 42.54', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3117', 'OTHER INTRATHORACIC VASCULAR SHUNT OR BYPASS - 39.23', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3118', 'OTHER LOBECTOMY OF LUNG - 32.49', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3119', 'OTHER MANIPULATION OF TEMPOROMANDIBULAR JOINT -\n76.84', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3120', 'OTHER MUSCLE TRANSPOSITION - 83.79', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3121', 'OTHER MYECTOMY - 83.45', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3122', 'OTHER MYECTOMY OF HAND - 82.36', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3123', 'OTHER OPERATIONS ON BRONCHUS - 33.98', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3124', 'OTHER OPERATIONS ON CAROTID BODY, CAROTID SINUS AND\nOTHER VASCULAR BODIES - 39.89', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3125', 'OTHER OPERATIONS ON DIAPHRAGM - 34.89', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3126', 'OTHER OPERATIONS ON HEART AND PERICARDIUM - 37.99', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3127', 'OTHER OPERATIONS ON LARYNX - 31.98', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3128', 'OTHER OPERATIONS ON LUNG - 33.99', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3129', 'OTHER OPERATIONS ON LYMPHATIC STRUCTURES - 40.9', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3130', 'OTHER OPERATIONS ON MUSCLE, TENDON, AND FASCIA OF\nHAND - 82.99', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3131', 'OTHER OPERATIONS ON SEPTA OF HEART - 35.98', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3132', 'OTHER OPERATIONS ON THORACIC DUCT - 40.69', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3133', 'OTHER OPERATIONS ON THORAX - 34.99', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3134', 'OTHER OPERATIONS ON TRACHEA - 31.99', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3135', 'OTHER OPERATIONS ON VALVES OF HEART - 35.99', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3136', 'OTHER OPERATIONS ON VESSELS - 39.99', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3137', 'OTHER OPERATIONS ON VESSELS OF HEART - 36.99', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3138', 'OTHER ORTHOGNATHIC SURGERY ON MANDIBLE - 76.64', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3139', 'OTHER PARTIAL EXCISION OF THYMUS - 07.81', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3140', 'OTHER PARTIAL OSTECTOMY - 77.8', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3141', 'OTHER PERFUSION - 39.97', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3142', 'OTHER PLASTIC OPERATIONS ON FASCIA - 83.89', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3143', 'OTHER PLASTIC OPERATIONS ON HAND - 82.89', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3144', 'OTHER PLASTIC OPERATIONS ON MUSCLE - 83.87', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3145', 'OTHER PLASTIC OPERATIONS ON TENDON - 83.88', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3146', 'OTHER PLEURAL BIOPSY - 34.24', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3147', 'OTHER PUNCTURE OF ARTERY - 38.98', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3148', 'OTHER PUNCTURE OF VEIN - 38.99', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3149', 'OTHER RECONSTRUCTION OF THUMB - 82.69', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3150', 'OTHER RECONSTRUCTION OF URETHRA - 58.46', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3151', 'OTHER REPAIR AND PLASTIC OPERATIONS ON BRONCHUS -\n33.48', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3152', 'OTHER REPAIR AND PLASTIC OPERATIONS ON LUNG - 33.49', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3153', 'OTHER REPAIR AND PLASTIC OPERATIONS ON TRACHEA - 31.79', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3154', 'OTHER REPAIR OF ANEURYSM - 39.52', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3155', 'OTHER REPAIR OF CHEST WALL - 34.79', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3156', 'OTHER REPAIR OF DIAPHRAGM - 34.84', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3157', 'OTHER REPAIR OF HAND, FINGERS AND WRIST - 81.79', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3158', 'OTHER REPAIR OF HEART AND PERICARDIUM - 37.49', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3159', 'OTHER REPAIR OF LARYNX - 31.69', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3160', 'OTHER REPAIR OF SCROTUM AND TUNICA VAGINALIS - 61.49', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3161', 'OTHER REPAIR OF TESTIS - 62.69', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3162', 'OTHER REPAIR OF VESSEL - 39.59', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3163', 'OTHER REVISION OF VASCULAR PROCEDURE - 39.49', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3164', 'OTHER SURGICAL COLLAPSE OF LUNG - 33.39', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3165', 'OTHER SURGICAL OCCLUSION OF VESSELS, ABDOMINAL\nARTERIES - 38.86', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3166', 'OTHER SURGICAL OCCLUSION OF VESSELS, ABDOMINAL VEINS -\n38.87', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3167', 'OTHER SURGICAL OCCLUSION OF VESSELS, AORTA, ABDOMINAL -\n38.84', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3168', 'OTHER SURGICAL OCCLUSION OF VESSELS, LOWER LIMB\nARTERIES - 38.88', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3169', 'OTHER SURGICAL OCCLUSION OF VESSELS, LOWER LIMB VEINS -\n38.89', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3170', 'OTHER SURGICAL OCCLUSION OF VESSELS, OTHER VESSELS OF\nHEAD AND NECK - 38.82', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3171', 'OTHER SURGICAL OCCLUSION OF VESSELS, THORACIC VESSELS -\n38.85', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3172', 'OTHER SURGICAL OCCLUSION OF VESSELS, UNSPECIFIED SITE -\n38.80', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3173', 'OTHER SURGICAL OCCLUSION OF VESSELS, UPPER LIMB VESSELS\n- 38.83', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3174', 'OTHER SUTURE OF FLEXOR TENDON OF HAND - 82.44', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3175', 'OTHER SUTURE OF MUSCLE OR FASCIA - 83.65', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.3176', 'OTHER SUTURE OF OTHER TENDON OF HAND - 82.45', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3177', 'OTHER SYMPATHECTOMY AND GANGLIONECTOMY - 05.29', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3178', 'OTHER TENDON TRANSPOSITION - 83.76', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3179', 'OTHER TENODESIS OF HAND - 82.85', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3180', 'OTHER TENONECTOMY - 83.42', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3181', 'OTHER TENONECTOMY OF HAND - 82.33', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3182', 'OTHER TENOPLASTY OF HAND - 82.86', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3183', 'OTHER TOTAL EXCISION OF THYMUS - 07.82', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3184', 'OTHER TOTAL OSTECTOMY OF OTHER FACIAL BONE - 76.45', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3185', 'OTHER TRANSMYOCARDIAL REVASCULARIZATION - 36.32', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3186', 'OTHER VAGINOTOMY - 70.14', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3187', 'PARASTOMAL HERNIA REPAIR - 53.82', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3188', 'PARATIROIDEKTOMI TOTAL - 06.81', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.3189', 'PAROTIDEKTOMI PARSIAL - 26.31', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.3190', 'PAROTIDEKTOMI SUPERFISIAL - 26.31', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.3191', 'PARTIAL ESOPHAGECTOMY - 42.41', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3192', 'PARTIAL OSTECTOMY OF OTHER FACIAL BONE - 76.39', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3193', 'PARTIAL SUBSTERNAL THYROIDECTOMY - 06.51', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3194', 'PARTIAL VENTRICULECTOMY - 37.35', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3195', 'PCI DENGAN IVUS /OCT/FFR - 00.66', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3196', 'PCI DENGAN THROMBOLYTIC AGENT - 00.66', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3197', 'PCI DENGAN THROMBOSUCTION - 00.66', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3198', 'PCI WITH STENT DES - 36.07', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3199', 'PCI WITHOUT STENT ( PTCA) - 00.66', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3200', 'PDA STENTING / BT SHUNT STENTING + ANESTESI - 36.06', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3201', 'PDA STENTING / BT SHUNT STENTING ADVANCED + ANESTESI -\n36.06', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3202', 'PELEPASAN GROMMET - 20.1', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.3203', 'PEMASANGAN BANTUAN EKSTRAKORPORAL - 37.62', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3204', 'PEMASANGAN BONE ANCHORED HEARING AID (BAHA) - 20.95', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.3205', 'PEMASANGAN CVP DENGAN BANTUAN USG - 38.97', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.3206', 'PEMASANGAN CVVH - 39.95', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.3207', 'PEMASANGAN DOUBLE LUMEN KATETER DENGAN LOCAL\nANASTESI, GA - 38.95', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.3208', 'PEMASANGAN DOUBLE LUMEN KATETER DENGAN LOCAL\nANASTESI, LA - 38.95', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.3209', 'PEMASANGAN GROMMET - 20.1', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.3210', 'PEMASANGAN IABP - 37.61', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3211', 'PEMASANGAN SWAN GANZ - 89.65', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.3212', 'PEMASANGAN T-TUBE / GANTI T STENT - 31.93', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.3213', 'PEMASSANGAN LONG LINE IV, GA - 38.93', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.3214', 'PEMBERSIHAN KANUL TRAKEOSTOMI - 96.55', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.3215', 'PENDEKATAN SUBLABIAL - 22.61', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.3216', 'PENGANGKATAN KANUL TRAKEOSTOMI - 97.37', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.3217', 'PENGANGKATAN TAMPON HIDUNG - 97.32', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.3218', 'PENGGANTIAN GENERATOR PACU JANTUNG DOUBLE CHAMBER\n- 37.87', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3219', 'PENGGANTIAN GENERATOR PACU JANTUNG SINGLE CHAMBER -\n37.85', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3220', 'PENGGANTIAN KANUL TRAKEOSTOMI - 97.23', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.3221', 'PENGGANTIAN NASOGASTRIC TUBE (NGT) - 97.01', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.3222', 'PENGGANTIAN STENT LARING / TRAKEA - 31.93', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.3223', 'PENGGANTIAN TAMPON HIDUNG - 97.21', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.3224', 'PENJAHITAN VULVA ATAU PERINEUM LAMA - 71.79', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.3225', 'PENUTUPAN AP WINDOW DENGAN DEVICE (IMPLANTASI\nOCCLUDER) DENGAN ANESTESI - 39.59', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3226', 'PENUTUPAN ARTERIOVENOUS MALFORMATION PULMONER\nDENGAN ANESTESI UMUM - 39.53', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3227', 'PENUTUPAN ASD DENGAN PH TRANSKATETER DENGAN DEVICE (IMPLANTASI OCCLUDER) DENGAN ANESTESI - 35.96', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3228', 'PENUTUPAN ASD TRANSKATETER DENGAN DEVICE (IMPLANTASI\nOCCLUDER) DENGAN ANESTESI - 35.96', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3229', 'PENUTUPAN AV MALFORMASI TRANSKATETER DENGAN DEVICE\n+ ANESTESI - 36.99', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3230', 'PENUTUPAN BT SHUNT TRANSKATETER DENGAN DEVICE\n(IMPLANTASI OCCLUDER) DENGAN ANESTESI - 35.96', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3231', 'PENUTUPAN FISTEL CELAH BRAKIAL - 29.52', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.3232', 'PENUTUPAN FISTEL FARING - 29.53', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.3233', 'PENUTUPAN FISTEL HIDUNG - 21.82', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.3234', 'PENUTUPAN FISTEL LARING - 31.62', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.3235', 'PENUTUPAN FISTEL MULUT - 27.53', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.3236', 'PENUTUPAN FISTEL SINUS - 22.71', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.3237', 'PENUTUPAN FISTEL TRAKEA - 31.72', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.3238', 'PENUTUPAN FISTULA KORONER DENGAN DEVICE (IMPLANTASI\nOCCLUDER) DENGAN ANESTESI - 36.99', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3239', 'PENUTUPAN PARAVALVULAR LEAKAGE DENGAN DEVICE\n(IMPLANTASI OCCLUDER) DENGAN ANESTESI - 35.70', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3240', 'PENUTUPAN PDA DENGAN PH TRANSKATETER DENGAN DEVICE (IMPLANTASI OCCLUDER) DENGAN ANESTESI - 35.96', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3241', 'PENUTUPAN PDA TRANSKATETER DENGAN DEVICE (IMPLANTASI\nOCCLUDER) DENGAN ANESTESI - 35.96', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3242', 'PENUTUPAN PFO TRANSKATETER DENGAN DEVICE (IMPLANTASI\nOCCLUDER) DENGAN ANESTESI DENGAN TRANSEPTAL PUNCTURE - 35.71', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3243', 'PENUTUPAN PFO TRANSKATETER DENGAN DEVICE (IMPLANTASI\nOCCLUDER) DENGAN ANESTESI TANPA TRANSEPTAL PUNCTURE - 35.71', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3244', 'PENUTUPAN SINUS VALSAVA RUPTURE DENGAN ANESTESI -\n35.39', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3245', 'PENUTUPAN SINUS VALSAVA RUPTURE DENGAN ANESTESI -\n35.39', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3246', 'PENUTUPAN SINUS VENOSUS DEFECT DENGAN DEVICE\n(IMPLANTASI COVERED STENT) DENGAN ANESTESI - 35.70', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3247', 'PENUTUPAN VSD DENGAN PH TRANSKATETER DENGAN DEVICE (IMPLANTASI OCCLUDER) DENGAN ANESTESI - 35.96', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3248', 'PENUTUPAN VSD TRANSKATETER DENGAN DEVICE (IMPLANTASI\nOCCLUDER) DENGAN ANESTESI - 35.96', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3249', 'PENYADAPAN KOMPLEKS (NEONATUS, VENTILATOR, CITO, BIUS\nUMUM, PJB KOMPLEKS) - 37.23', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.3250', 'PENYADAPAN SEDERHANA - 37.23', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.3251', 'PENYADAPAN SEMI KOMPLEKS (ON VENTILATOR PRO O2 TEST) -\n37.23', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.3252', 'PERCUTANEOUS ABLATION OF LUNG LESION OR TISSUE - 32.24', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3253', 'PERCUTANEOUS ANGIOSCOPY - 38.22', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3254', 'PERCUTANEOUS CARDIOPULMONARY BYPASS - 39.66', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3255', 'PERCUTANEUS INSTRUMENTATION (FLUOROSCOPY OR\nNAVIGATION)', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3256', 'PERCUTANEUS PULMONARY ANGIOPLASTY (PULMONARY PTA) PADA STENOSIS PERIFER PULMONAL + ANESTESI - 39.50', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3257', 'PERCUTANEUS PULMONARY INTERVENSI DENGAN STENT (PULMONARY PTA DENGAN STENT) PADA STENOSIS PERIFER\nPULMONAL + ANESTESI - 39.50', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3258', 'PERICARDIECTOMY - 37.31', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3259', 'PERICARDIOTOMY - 37.12', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3260', 'PETROSECTOMY - 20.59', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3261', 'PLASENTA ACCRETA WITH CONSERVATIVE SURGERY - 68.29', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3262', 'PLASENTA ACCRETA WITH HYSTERECTOMY ( SVH ) - 68.39', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3263', 'PLASENTA ACCRETA WITH HYSTERECTOMY ( TAH ) - 68.49', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3264', 'PLASTIC OPERATION ON HAND WITH GRAFT OF MUSCLE OR\nFASCIA - 82.72', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3265', 'PLASTIC OPERATION ON HAND WITH OTHER GRAFT OR\nIMPLANT - 82.79', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3266', 'PLICATION OF EMPHYSEMATOUS BLEB - 32.21', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3267', 'PLICATION OF THE DIAPHRAGM - 53.81', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3268', 'PNEUMOPERITONEUM FOR COLLAPSE OF LUNG - 33.33', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3269', 'POLIPEKTOMI NASAL - 21.31', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.3270', 'POLISIZATION FINGER TO THUMB TRANSFER', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3271', 'POLLICIZATION OPERATION CARRYING OVER NERVES AND\nBLOOD SUPPLY - 82.61', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3272', 'POSTERO SAGITAL ANORECTOVAGINOURETHROPLASTY/\nPSARVUP, GA - 45.95, 58.99, 70.62', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3273', 'POSTERO SAGITAL ANOREKTOPLASTI (PSARP) - 45.95', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3274', 'POTONG STUMP +/- PASANGN STAPPLER, GA - 48.69, 48.74', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.3275', 'PRIMARY CLOSURE GASTROSCHISIS, GA - 54.71', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3276', 'PRIMARY CLOSURE GASTROSCHISIS, LA - 54.71', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.3277', 'PROBING SALURAN LIUR - 26.91', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.3278', 'PROSEDUR 1 TAHAP KOREKSI HIPOSPADIA, GA - 58.46', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.3279', 'PROSEDUR DE LA TORRE PROLAPS RECTI / ALTEMEIER\nPROCEDURE - 48.69, 48.74', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.3280', 'PROSEDUR DEFINITIF HIRSCHSPRUNG ASSISTED LAPAROSKOPI -\n48.51', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3281', 'PROSEDUR DEFINITIF OMPHALOCELE, GA - 54.72', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3282', 'PROSEDUR DEFINITIF PENYAKIT HIRSCHSPRUNG (DUHAMEL) -\n48.65', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3283', 'PROSEDUR DEFINITIF PENYAKIT HIRSCHSPRUNG (TRANSANAL\nSWENSON) - 48.49', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3284', 'PROSEDUR DEFINITIF UDT, GA - 62.5', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.3285', 'PROSEDUR DEVASKULARISASI HIPERTENSI PORTAL, GA - 38.87', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3286', 'PROSEDUR KASAI + KOLANGIOGRAFI INTRAOPERATIF - 51.69,\n51.39, 87.53', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3287', 'PROSEDUR THIERSCH PADA PROLAP REKTI, GA - 49.72', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.3288', 'PROTESIS SUARA - 31.95', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.3289', 'PSARP + LAPAROTOMI, GA - 54.11, 45.95', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3290', 'PSARP + TUM - 45.95, 58.99, 70.62', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3291', 'PTA (ARTERI/ VENA PERIFER) - 39.50', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3292', 'PTA+STENTING (ARTERI /VENA PERIFER) - 39.90', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3293', 'PULMONARY VALVE REPLACEMENT PERKUTAN - 35.96', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3294', 'PUNCH GRAFTING BESAR - 86.63', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.3295', 'PUNCH GRAFTING KECIL - 86.63', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.3296', 'PUNCH GRAFTING SEDANG - 86.63', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.3297', 'PUNCTURE OF LUNG - 33.93', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3298', 'PYELOPLASTY, GA - 55.87', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3299', 'PYOLOROMYOTOMY (OPERASI FREDET RAMSTEDT),\nLAPAROSCOPIC - 54.21, 43.3', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.3300', 'PYOLOROMYOTOMY (OPERASI FREDET RAMSTEDT), OPEN - 43.3', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.3301', 'RADICAL DISSECTION OF THORACIC STRUCTURES - 32.6', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3302', 'RADIOFREKUENSI DASAR LIDAH - 27.99', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.3303', 'RADIOFREQUENCY ABLATION 2D - 37.34', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3304', 'RADIOFREQUENCY ABLATION 3D - 37.26', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3305', 'RADIOFREQUENCY ABLATION 3D ATRIAL FIBRILLASI - 35.42', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3306', 'REATTACHMENT OF MUSCLE - 83.74', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3307', 'REATTACHMENT OF MUSCLE OF HAND - 82.54', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3308', 'REATTACHMENT OF TENDON - 83.73', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3309', 'REATTACHMENT OF TENDON OF HAND - 82.53', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3310', 'RECESSION OF TENDON - 83.72', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3311', 'RECESSION OF TENDON OF HAND - 82.52', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3312', 'RECONSTRUCTION OF PENIS - 64.44', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3313', 'RECONSTRUCTION OF TRACHEA AND CONSTRUCTION OF\nARTIFICIAL LARYNX - 31.75', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3314', 'RECTOSCOPY, GA - 48.23', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.3315', 'REDUCTION OF FACIAL FRACTURE, NOT OTHERWISE SPECIFIED -\n76.70', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3316', 'REDUKSI FRAKTUR NASAL TERTUTUP - 22.71', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.3317', 'REDUKSI KONKA DENGAN KAUTER / RDF - 21.61', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.3318', 'RE-ENTRY OPERATION (AORTA) - 39.54', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3319', 'REIMPLANTATION OF ABERRANT RENAL VESSEL - 39.55', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3320', 'REKONSTRUKSI TRAKEA DAN KONSTRUKSI LARING - 31.75', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.3321', 'REKONSTRUKSI TRAUMA LEHER - 31.7', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.3322', 'RELEASE CHORDE, GA - 64.42', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3323', 'RELEASE SINEKIA VULVA, GA - 71.01', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.3324', 'REMOVAL OF ARTERIOVENOUS SHUNT FOR RENAL DIALYSIS -\n39.43', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3325', 'REMOVAL OF CAROTID SINUS STIMULATION DEVICE, TOTAL\nSYSTEM - 39.86', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3326', 'REMOVAL OF CAROTID SINUS STIMULATION LEAD(S) ONLY -\n39.87', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3327', 'REMOVAL OF CAROTID SINUS STIMULATION PULSE GENERATOR\nONLY - 39.88', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3328', 'REMOVAL OF EXTERNAL HEART ASSIST SYSTEM(S) OR DEVICE(S) -\n37.64', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3329', 'REMOVAL OF IMPLANTED DEVICES FROM BONE - 78.6', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3330', 'REMOVAL OF INTERNAL BIVENTRICULAR HEART REPLACEMENT\nSYSTEM - 37.55', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3331', 'REMOVAL OF INTERNAL FIXATION DEVICE FROM FACIAL BONE -\n76.86', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3332', 'REMOVAL OF LEAD(S) - ELECTRODE WITHOUT REPLACEMENT -\n37.77', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3333', 'REMOVAL OF MEDIASTINAL DRAIN - 97.42', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3334', 'REMOVAL OF OTHER DEVICE FROM THORAX - 97.49', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3335', 'REMOVAL OF SUTURES FROM THORAX - 97.43', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3336', 'REMOVAL OF THORACOTOMY TUBE OR PLEURAL CAVITY DRAIN -\n97.41', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3337', 'REMOVAL OF TRACHEOSTOMY TUBE - 97.37', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3338', 'RENAL DENERVASI - 05.25', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3339', 'REOPENING OF RECENT THORACOTOMY SITE - 34.03', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3340', 'REPAIR ATRESIA KOANA - 21.89', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.3341', 'REPAIR BLADDER EXTROPHY, GA - 57.86', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3342', 'REPAIR CLOACAL EXTROPHY, GA - 57.86, 45.52, 46.11', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3343', 'REPAIR DUKTUS URAKUS PERSISTEN - 57.51', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.3344', 'REPAIR FISTEL RECTOVAGINAL, GA - 70.73', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.3345', 'REPAIR HERNIA + LAPAROTOMY+ RESEKSI + STOMA - 53.02 &\n54.11 & 45.62 & 46.20', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3346', 'REPAIR HERNIA + LAPAROTOMY+ RESEKSI+ ANASTOMOSIS -\n53.02 & 54.11 & 45.62 & 45.91', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3347', 'REPAIR HERNIA INGUINAL BILATERAL - 53.12', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.3348', 'REPAIR HERNIA INGUINAL, LAPAROSKOPI - 17.12', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.3349', 'REPAIR HERNIA INGUINAL, UNILATERAL - 53.02', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.3350', 'REPAIR HERNIA RESIDIF - 53.02', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.3351', 'REPAIR HERNIA STRANGULATA - 53.02', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.3352', 'REPAIR HERNIA UMBILIKALIS - 53.49', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.3353', 'REPAIR OF ANEURYSM OF CORONARY VESSEL - 36.91', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3354', 'REPAIR OF ARTERIOVENOUS FISTULA - 39.53', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3355', 'REPAIR OF ATRIAL SEPTAL DEFECT WITH PROSTHESIS, OPEN\nTECHNIQUE - 35.51', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3356', 'REPAIR OF ATRIAL SEPTAL DEFECT WITH TISSUE GRAFT - 35.61', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3357', 'REPAIR OF BLOOD VESSEL WITH SYNTHETIC PATCH GRAFT -\n39.57', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3358', 'REPAIR OF BLOOD VESSEL WITH TISSUE PATCH GRAFT - 39.56', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3359', 'REPAIR OF BLOOD VESSEL WITH UNSPECIFIED TYPE OF PATCH\nGRAFT - 39.58', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3360', 'REPAIR OF CLAW TOE - 77.56', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3361', 'REPAIR OF CLEFT HAND - 82.82', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3362', 'REPAIR OF DIAPHRAGMATIC HERNIA WITH THORACIC\nAPPROACH, NOT OTHERWISE SPECIFIED - 53.80', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3363', 'REPAIR OF DIAPHRAGMATIC HERNIA, ABDOMINAL APPROACH,\nNOT OTHERWISE SPECIFIED - 53.75', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3364', 'REPAIR OF ENDOCARDIAL CUSHION DEFECT WITH PROSTHESIS -\n35.54', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3365', 'REPAIR OF ENDOCARDIAL CUSHION DEFECT WITH TISSUE GRAFT\n- 35.63', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3366', 'REPAIR OF HAMMER TOE - 77.55', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3367', 'REPAIR OF HEART ASSIST SYSTEM - 37.63', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3368', 'REPAIR OF LARYNGEAL FRACTURE - 31.64', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3369', 'REPAIR OF MACRODACTYLY - 82.83', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3370', 'REPAIR OF MALLET FINGER - 82.84', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3371', 'REPAIR OF OTHER FISTULA OF VAGINA - 70.75', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3372', 'REPAIR OF PARASTERNAL HERNIA - 53.82', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3373', 'REPAIR OF PECTUS DEFORMITY - 34.74', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3374', 'REPAIR OF PLEURA - 34.93', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3375', 'REPAIR OF SCROTAL FISTULA - 61.42', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3376', 'REPAIR OF UNSPECIFIED SEPTAL DEFECT OF HEART WITH\nPROSTHESIS - 35.50', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3377', 'REPAIR OF UNSPECIFIED SEPTAL DEFECT OF HEART WITH TISSUE\nGRAFT - 35.60', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3378', 'REPAIR OF URETHROCUTANEOUS FISTULE - 58.43', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.3379', 'REPAIR OF VENTRICULAR SEPTAL DEFECT WITH PROSTHESIS,\nOPEN TECHNIQUE - 35.53', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3380', 'REPAIR OF VENTRICULAR SEPTAL DEFECT WITH TISSUE GRAFT -\n35.62', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3381', 'REPAIR RUPTURE PERINEUM LAMA, GA - 71.71', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.3382', 'REPAIR STENOSIS SUBGLOTIS/TRAKEA - 31.98', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.3383', 'REPAIR UMBILICAL CORD HERNIA - 53.59', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3384', 'REPAIR VESIKA URINARIA, GA - 57.81', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.3385', 'REPARASI FISTEL ESOFAGUS - 42.84', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.3386', 'REPARASI FISTEL KEBOCORAN LCS - 02.12', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3387', 'REPARASI FRAKTUR LARING - 31.64', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.3388', 'REPARASI KEBOCORAN LCS DENGAN GRAFT ABDOMEN - 02.12', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3389', 'REPARASI OVAL/ROUND WINDOW - 20.93', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.3390', 'REPARASI STRIKTUR ESOFAGUS - 42.85', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.3391', 'REPLACEMENT OF ANY TYPE OF PACEMAKER DEVICE WITH\nSINGLE-CHAMBER DEVICE, RATE RESPONSIVE - 37.86', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3392', 'REPLACEMENT OF ANY TYPE PACEMAKER DEVICE WITH DUAL-\nCHAMBER DEVICE - 37.87', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3393', 'REPLACEMENT OF ANY TYPE PACEMAKER DEVICE WITH SINGLE- CHAMBER DEVICE, NOT SPECIFIED AS RATE RESPONSIVE - 37.85', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3394', 'REPLACEMENT OF AUTOMATIC CARDIOVERTER/DEFIBRILLATOR\nLEAD(S) ONLY - 37.97', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3395', 'REPLACEMENT OF AUTOMATIC CARDIOVERTER/DEFIBRILLATOR PULSE GENERATOR ONLY - 37.98', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3396', 'REPLACEMENT OF LARYNGEAL OR TRACHEAL STENT - 31.93', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3397', 'REPLACEMENT OF TRACHEOSTOMY TUBE - 97.23', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3398', 'REPLACEMENT OF TRANSVENOUS ATRIAL AND/OR\nVENTRICULAR LEAD(S) - ELECTRODE - 37.76', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3399', 'REPLACEMENT OF VESSEL-TO-VESSEL CANNULA - 39.94', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3400', 'REPLACEMENT OR REPAIR OF OTHER IMPLANTABLE COMPONENT OF (TOTAL) REPLACEMENT HEART SYSTEM - 37.54', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3401', 'REPLACEMENT OR REPAIR OF THORACIC UNIT OF (TOTAL)\nREPLACEMENT HEART SYSTEM - 37.53', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3402', 'RESECTION OF VESSEL WITH ANASTOMOSIS, ABDOMINAL\nARTERIES - 38.36', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3403', 'RESECTION OF VESSEL WITH ANASTOMOSIS, ABDOMINAL VEINS\n- 38.37', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3404', 'RESECTION OF VESSEL WITH ANASTOMOSIS, AORTA - 38.34', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3405', 'RESECTION OF VESSEL WITH ANASTOMOSIS, LOWER LIMB\nARTERIES - 38.38', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3406', 'RESECTION OF VESSEL WITH ANASTOMOSIS, LOWER LIMB VEINS\n- 38.39', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3407', 'RESECTION OF VESSEL WITH ANASTOMOSIS, OTHER THORACIC\nVESSELS - 38.35', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3408', 'RESECTION OF VESSEL WITH ANASTOMOSIS, OTHER VESSELS OF\nHEAD AND NECK - 38.32', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3409', 'RESECTION OF VESSEL WITH ANASTOMOSIS, UNSPECIFIED SITE -\n38.30', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3410', 'RESECTION OF VESSEL WITH ANASTOMOSIS, UPPER LIMB\nVESSELS - 38.33', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3411', 'RESECTION OF VESSEL WITH REPLACEMENT, ABDOMINAL\nARTERIES - 38.46', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3412', 'RESECTION OF VESSEL WITH REPLACEMENT, ABDOMINAL VEINS\n38.47', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3413', 'RESECTION OF VESSEL WITH REPLACEMENT, AORTA,\nABDOMINAL - 38.44', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3414', 'RESECTION OF VESSEL WITH REPLACEMENT, INTRACRANIAL\nVESSELS - 38.41', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3415', 'RESECTION OF VESSEL WITH REPLACEMENT, LOWER LIMB\nARTERIES - 38.48', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3416', 'RESECTION OF VESSEL WITH REPLACEMENT, LOWER LIMB VEINS\n- 38.49', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3417', 'RESECTION OF VESSEL WITH REPLACEMENT, OTHER VESSELS OF\nHEAD AND NECK - 38.42', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3418', 'RESECTION OF VESSEL WITH REPLACEMENT, THORACIC VESSELS\n38.45', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3419', 'RESECTION OF VESSEL WITH REPLACEMENT, UNSPECIFIED SITE -\n38.40', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3420', 'RESECTION OF VESSEL WITH REPLACEMENT, UPPER LIMB\nVESSELS - 38.43', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3421', 'RESEKSI ANASTOMOSIS, JEJUNOILEAL OBSTRUCTION,\nDUPLICATION. - 54.11, 45.62, 45.91', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3422', 'RESEKSI DENGAN STOMA, JEJUNOILEAL OBSTRUCTION,\nDUPLICATION. - 54.11, 45.62, 46.21', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3423', 'RESEKSI ESOFAGUS - 42.40', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.3424', 'RESEKSI HEPAR (TRAUMA, TUMOR) - 50.22', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3425', 'RESEKSI LOW ANTERIOR, GA - 48.62', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3426', 'RESEKSI NEUROBLASTOMA, GA - 07.22', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3427', 'RESEKSI SIGMOID, GA - 45.76', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.3428', 'RESEKSI TUMOR ABDOMEN, LAPAROTOMI - 54.11 & 54.4', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3429', 'RESEKSI TUMOR SACROCOCCYGEAL, GA - 80.99, 83.39', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3430', 'RESEKSI TUMOR WILM, GA - 55.51', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3431', 'REVISI FENESTRASI TELINGA DALAM - 20.62', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.3432', 'REVISI LARINGOSTOMI / REPAIR STOMA - 31.63', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.3433', 'REVISI OPERASI SARAF KRANIAL / PERIFER - 04.75', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.3434', 'REVISI POCKET / LEAD PACU JANTUNG PERMANEN TANPA\nPENGGANTIAN ALAT - 37.89', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.3435', 'REVISI SINEKIA HIDUNG - 21.91', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.3436', 'REVISI TRAKEOSTOMI - 31.74', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.3437', 'REVISION OF AMPUTATION STUMP - 84.3', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3438', 'REVISION OF ARTERIOVENOUS SHUNT FOR RENAL DIALYSIS -\n39.42', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3439', 'REVISION OF CAROTID SINUS STIMULATION LEAD(S) ONLY -\n39.84', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3440', 'REVISION OF CAROTID SINUS STIMULATION PULSE GENERATOR -\n39.85', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3441', 'REVISION OF CORRECTIVE PROCEDURE ON HEART - 35.95', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3442', 'REVISION OF LARYNGOSTOMY - 31.63', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3443', 'REVISION OF LEAD - ELECTRODE - 37.75', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3444', 'REVISION OF TRACHEOSTOMY - 31.74', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3445', 'REVISION OR RELOCATION OF CARDIAC DEVICE POCKET - 37.79', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3446', 'REVISION OR REMOVAL OF PACEMAKER DEVICE - 37.89', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3447', 'RHABDOMYOSARCOMA, SOFT TISSUE, EXTREMITY - 83.49', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3448', 'RHINOTOMI LATERAL - 21.30', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.3449', 'RVOT STENTING PERKUTAN + ANESTESI - 38.05', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3450', 'SACRECTOMY', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3451', 'SACRO-ILIAC JOINT BLOCK', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.3452', 'SALPINGO OOPHOREKTOMI BILATERAL, GA - 65.64', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3453', 'SALPINGO OOPHOREKTOMI BILATERAL, LAPAROSKOPI,GA -\n65.63', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3454', 'SALPINGO OOPHOREKTOMI UNILATERAL, GA - 65.49', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3455', 'SALPINGO OOPHOREKTOMI UNILATERAL, LAPAROSKOPI, GA -\n65.41', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3456', 'SCARIFICATION OF PLEURA - 34.6', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3457', 'SCLEROTHERAPY - 39.92', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3458', 'SEPTOPLASTI DENGAN ENDOSKOPI - 21.88', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.3459', 'SEPTUM & DINDING LATERAL HIDUNG - 21.07', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.3460', 'SFENOIDEKTOMI (FESS) - 22.64', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.3461', 'SFENOIDEKTOMI EKSTERNAL - 22.52', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.3462', 'SHUNT ENDOLIMFATIK - 20.71', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.3463', 'SIALENDOSKOPI DIAGNOSTIK - 26.19', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.3464', 'SIALENDOSKOPI DIAGNOSTIK DAN DILATASI - 26.91', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.3465', 'SIALENDOSKOPI DIAGNOSTIK DAN TERAPEUTIK - 26.99', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.3466', 'SIALOLITHEKTOMI - 26.29', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.3467', 'SINGLE INTERNAL MAMMARY-CORONARY ARTERY BYPASS -\n36.15', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3468', 'SINUSEKTOMI SINUS FRONTAL (FESS) - 22.42', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.3469', 'SIRKUMSISI ANAK', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.3470', 'SIRKUMSISI DEWASA', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.3471', 'SISTOSTOMI, GA - 57.17 / 57.18', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.3472', 'SLEEP ENDOSCOPY - 89.19', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.3473', 'SPINAL ENDOCOPIC DECOMPRESSION (>1 LEVEL)', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3474', 'SPINAL ENDOCOPIC DECOMPRESSION (SINGLE LEVEL)', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3475', 'SPINAL TUMOR EXCISION, EXTRA/INTRADURAL', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3476', 'SPINAL TUMOR EXCISION, EXTRADURA', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3477', 'SPINALCORD STIMULATION', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3478', 'SPLENEKTOMI PARSIEL / TOTAL, GA - 41.43 / 41.5', 30237000, 'TINDAKAN OPERATIF'); +INSERT INTO `tarif_rs` (`ID_Tarif_RS`, `Tindakan_RS`, `Tarif_RS`, `Kategori_RS`) VALUES +('R.TO.3479', 'STAPEDEKTOMI - 19.1', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.3480', 'STAPEDEKTOMI REVISI - 19.21', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.3481', 'STENTING PDA/ A. PULMONALIS - 39.90', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3482', 'STENTING SINUS VENA INTRAKRANIAL', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3483', 'STOMACH, MORBID OBESITY, CAPSULE/BALOONING\n(ENDOSCOPIC CONTROL OF GASTRIC OR DUODENAL BLEEDING) - 44.43', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3484', 'STOMACH, MORBID OBESSITY, GASNOPLASTY/SUTURE - 43.41', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3485', 'SUBCISION BESAR - 86.89', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.3486', 'SUBCISION KECIL - 86.89', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.3487', 'SUBCISION SEDANG - 86.89', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.3488', 'SUBMANDIBULAR MASS, EXCISION, BIOPSY - 26.12', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.3489', 'SUBSTERNAL THYROIDECTOMY, NOT OTHERWISE SPECIFIED -\n06.50', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3490', 'SUCTION RECTAL BIOPSY - 48.29', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.3491', 'SUPRACONDYLAR FRACTURE OF HUMERUS IN CHILDREN,\nCLOSED REDUCTION + CAST', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.3492', 'SUPRACONDYLAR FRACTURE OF HUMERUS IN CHILDREN, OPEN\nREDUCTION + INTERNAL FIXATION', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3493', 'SUPRAGLOTOPLASTY - 30.29', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.3494', 'SUTURE OF ARTERY - 39.31', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3495', 'SUTURE OF LACERATION OF BRONCHUS - 33.41', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3496', 'SUTURE OF LACERATION OF CHEST WALL - 34.71', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3497', 'SUTURE OF LACERATION OF DIAPHRAGM - 34.82', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3498', 'SUTURE OF LACERATION OF LARYNX - 31.61', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3499', 'SUTURE OF LACERATION OF TRACHEA - 31.71', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3500', 'SUTURE OF LACERATION OF VAGINA - 70.71', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3501', 'SUTURE OF MUSCLE OR FASCIA OF HAND - 82.46', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.3502', 'SUTURE OF TENDON SHEATH - 83.61', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.3503', 'SUTURE OF TENDON SHEATH OF HAND - 82.41', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.3504', 'SUTURE OF UNSPECIFIED BLOOD VESSEL - 39.30', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3505', 'SUTURE OF VEIN - 39.32', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3506', 'SYNDACTYLY RELEASE', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3507', 'SYSTEMIC TO PULMONARY ARTERY SHUNT - 39.0 BT SHUNT', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3508', 'TAMPON VAGINA - 96.14', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.3509', 'TEMPORARY (PARTIAL) THERAPEUTIC ENDOVASCULAR\nOCCLUSION OF VESSEL - 39.77', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3510', 'TEMPORARY TRACHEOSTOMY - 31.1', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3511', 'TEMPOROMANDIBULAR ARTHROPLASTY - 76.5', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3512', 'TENCKHOFF CATHETER INSERTION, LAPAROSCOPIC - 54.984', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3513', 'TENCKHOFF CATHETER INSERTION, OPEN - 54.981', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3514', 'TENDON GRAFT - 83.81', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3515', 'TENDON PULLEY RECONSTRUCTION - 82.71', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3516', 'TENDON PULLEY RECONSTRUCTION - 83.83', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3517', 'TENDON TRANSFER MULTIPLE', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3518', 'TENDON TRANSFER OR TRANSPLANTATION - 83.75', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3519', 'TENDON TRANSFER SINGLE', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3520', 'TENOTOMY OF HAND - 82.11', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3521', 'TEVAR + PROSTHESIS - 39.73', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3522', 'THORACENTESIS - 34.91', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3523', 'THORACENTESIS GUIDING USG - 88.73', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3524', 'THORACOPLASTY - 33.34', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3525', 'THORACOSCOPIC ABLATION OF LUNG LESION OR TISSUE - 32.25', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3526', 'THORACOSCOPIC DECORTICATION OF LUNG - 34.52', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3527', 'THORACOSCOPIC DRAINAGE OF PLEURAL CAVITY - 34.06', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3528', 'THORACOSCOPIC INCISION OF THYMUS - 07.95', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3529', 'THORACOSCOPIC LOBECTOMY OF LUNG - 32.41', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3530', 'THORACOSCOPIC LUNG BIOPSY - 33.20', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3531', 'THORACOSCOPIC PARTIAL EXCISION OF THYMUS - 07.83', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3532', 'THORACOSCOPIC PLEURAL BIOPSY - 34.20', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3533', 'THORACOSCOPIC PNEUMONECTOMY - 32.50', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3534', 'THORACOSCOPIC SEGMENTAL RESECTION OF LUNG - 32.30', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3535', 'THORACOSCOPIC TOTAL EXCISION OF THYMUS - 07.84', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3536', 'THORACOSCOPY, LIGASI FISTULA, ANASTOMOSIS ESOFAGUS,\nESOPHAGEAL ATRESIA - 34.21 & 42.51', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3537', 'THORACOTOMY, LIGASI FISTULA, ANASTOMOSIS ESOFAGUS,\nESOPHAGEAL ATRESIA - 42.51', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3538', 'THREAD LIFT - BESAR - 86.09', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.3539', 'THREAD LIFT - KECIL - 86.09', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.3540', 'THREAD LIFT - SEDANG - 86.09', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.3541', 'THYMECTOMY, NOT OTHERWISE SPECIFIED - 07.80', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3542', 'TIMPANOPLASTI REVISI - 19.6', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.3543', 'TIMPANOPLASTI TIPE I/MIRINGOPLASTI - 19.4', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.3544', 'TIMPANOPLASTI TIPE II - 19.52', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.3545', 'TIMPANOPLASTI TIPE III - 19.53', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.3546', 'TIMPANOPLASTI TIPE IV - 19.54', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.3547', 'TIMPANOPLASTI TIPE V - 19.55', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.3548', 'TINDAKAN DIAGNOSTIK PER-KOLONOSKOPI, GA - 45.23', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.3549', 'TINDAKAN ESOFAGUS KOMPLEKS (EKSISI, VARISES) - 42.33', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.3550', 'TINDAKAN FOB (SEDANG)/ BILASAN PARU (MEMBEBASKAN\nSUMBATAN)/SIKATAN BRONKUS - 33.22', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.3551', 'TINDIK TELINGA - 18.01', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.3552', 'TIROIDEKTOMI TOTAL - 06.4', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.3553', 'TONGUE TIE INCISION, GA - 25.91', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.3554', 'TONSILEKTOMI - 28.2', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.3555', 'TONSILEKTOMI DENGAN ADENOIDEKTOMI - 28.3', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.3556', 'TORAKOSKOPI - 34.21', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.3557', 'TOTAL BODY PERFUSION - 39.96', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3558', 'TOTAL CORRECTION OF TRANSPOSITION OF GREAT VESSELS,\nNOT ELSEWHERE CLASSIFIED - 35.84', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3559', 'TOTAL ESOPHAGECTOMY - 42.42', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3560', 'TOTAL GASTREKTOMI DAN REKONSTRUKSI - 43.91', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3561', 'TOTAL MANDIBULECTOMY WITH SYNCHRONOUS\nRECONSTRUCTION - 76.41', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3562', 'TOTAL OSTECTOMY - 77.9', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3563', 'TOTAL REPAIR OF TETRALOGY OF FALLOT - 35.81', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3564', 'TOTAL REPAIR OF TOTAL ANOMALOUS PULMONARY VENOUS\nCONNECTION - 35.82', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3565', 'TOTAL REPAIR OF TRUNCUS ARTERIOSUS - 35.83', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3566', 'TRACHEOESOPHAGEAL FISTULIZATION - 31.95', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3567', 'TRAKEOSKOPI MELALUI STOMA TRAKEA - 31.41', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.3568', 'TRAKEOSTOMI DENGAN PENYULIT - 31.1', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.3569', 'TRAKEOSTOMI PERMANEN - 31.29', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.3570', 'TRAKEOSTOMI TEMPORER - 31.1', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.3571', 'TRANSABDOMINAL CIRCLAGE - 67.51', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.3572', 'TRANSANAL MUCOSECTOMY, TEPT - 48.49', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3573', 'TRANSFER OF FINGER, EXCEPT THUMB - 82.81', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3574', 'TRANSPLEURAL THORACOSCOPY - 34.21', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3575', 'TRANSPOSISI SARAF KRANIAL / PERIFER - 04.6', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.3576', 'TREPANASI SINUS FRONTALIS - 31.63', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.3577', 'TROMBEKTOMI', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3578', 'TROMBEKTOMI INTRASINUS/VENA', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3579', 'TROMBEKTOMI STROKE', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3580', 'TROMBOLISIS INTRAARTERI', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3581', 'TROMBOLISIS INTRASINUS', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3582', 'TUTUP STOMA USUS, GA - 46.52 / 46.51', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3583', 'UMBILICAL VEIN CATHETERIZATION - 38.92', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3584', 'UNILATERAL LUNG TRANSPLANTATION - 33.51', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3585', 'UPPER BLEPHAROPLASTY - 08.3', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.3586', 'UPPER GI ENDOSCOPY, BIOPSY, GA - 45.16', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.3587', 'UPPER GI ENDOSCOPY, DIAGNOSTIC - 45.13', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.3588', 'UPPER GI ENDOSCOPY, FOREIGN BODY RETRIEVAL - 45.13 &\n98.03', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.3589', 'UPPER GI ENDOSCOPY, POLYPEKTOMY, GA - 45.14', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.3590', 'UPPER LIMB AMPUTATION, NOT OTHERWISE SPECIFIED - 84.00', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3591', 'URETERO NEOSISTOSTOMI, GA - 56.74', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3592', 'URETHRAL MEATOPLASTY - 58.47', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3593', 'URETHROPLASTY, GA - 58.45', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.3594', 'VAGINAL RECONSTRUCTION - 70.62', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3595', 'VAGINAL RECONSTRUCTION WITH GRAFT OR PROSTHESIS -\n70.64', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3596', 'VAGINAL SUSPENSION AND FIXATION WITH GRAFT OR\nPROSTHESIS - 70.78', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3597', 'VENA SEKSI DAN PASANG AKSES VASKULER, GA - 38.94', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.3598', 'VENA SEKSI DAN PASANG AKSES VASKULER, LA - 38.94', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.3599', 'VENOUS CATHETERIZATION FOR RENAL DIALYSIS - 38.95\nDOUBLE LUMEN INSERTION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3600', 'VENOUS CATHETERIZATION, NOT ELSEWHERE CLASSIFIED -\n38.93', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3601', 'VENOUS CUTDOWN - 38.94', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3602', 'VIDEO ASSIST FISTULOSCOPY -', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3603', 'VVP - 70.29', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.3604', 'WOUND DEHISCENCE, REPAIR - 86.59', 10268000, 'TINDAKAN OPERATIF'), +('R.TOKH.001', 'TRANSPLANTASI GINJAL - KELAS 3', 283524000, 'TRANSPLANTASI GINJAL'), +('R.TOKH.002', 'TRANSPLANTASI GINJAL - KELAS 2', 340259000, 'TRANSPLANTASI GINJAL'), +('R.TOKH.003', 'TRANSPLANTASI GINJAL - KELAS 1', 396933000, 'TRANSPLANTASI GINJAL'), +('R.TOKH.004', 'PROSEDUR SALURAN URINE ATAS - KELAS 3', 13166000, 'TRANSPLANTASI GINJAL'), +('R.TOKH.005', 'PROSEDUR SALURAN URINE ATAS - KELAS 2', 15799000, 'TRANSPLANTASI GINJAL'), +('R.TOKH.006', 'PROSEDUR SALURAN URINE ATAS - KELAS 1', 18432000, 'TRANSPLANTASI GINJAL'), +('R.VST.001', 'JASA VISITE - REGULER', 100000, 'RAWAT INAP'); + +-- +-- Indexes for dumped tables +-- + +-- +-- Indeks untuk tabel `admin_ruangan` +-- +ALTER TABLE `admin_ruangan` + ADD PRIMARY KEY (`ID_Admin`), + ADD KEY `ID_Ruangan` (`ID_Ruangan`); + +-- +-- Indeks untuk tabel `billing_icd9` +-- +ALTER TABLE `billing_icd9` + ADD KEY `ID_Billing` (`ID_Billing`), + ADD KEY `ID_ICD9` (`ID_ICD9`); + +-- +-- Indeks untuk tabel `billing_icd10` +-- +ALTER TABLE `billing_icd10` + ADD KEY `ID_Billing` (`ID_Billing`), + ADD KEY `ID_ICD10` (`ID_ICD10`); + +-- +-- Indeks untuk tabel `billing_inacbg_ri` +-- +ALTER TABLE `billing_inacbg_ri` + ADD KEY `ID_Billing` (`ID_Billing`), + ADD KEY `ID_INACBG_RI` (`ID_INACBG_RI`); + +-- +-- Indeks untuk tabel `billing_inacbg_rj` +-- +ALTER TABLE `billing_inacbg_rj` + ADD KEY `ID_Billing` (`ID_Billing`), + ADD KEY `ID_INACBG_RJ` (`ID_INACBG_RJ`); + +-- +-- Indeks untuk tabel `billing_pasien` +-- +ALTER TABLE `billing_pasien` + ADD PRIMARY KEY (`ID_Billing`), + ADD KEY `ID_Pasien` (`ID_Pasien`), + ADD KEY `ID_Dokter` (`ID_Dokter`); + +-- +-- Indeks untuk tabel `billing_tindakan` +-- +ALTER TABLE `billing_tindakan` + ADD KEY `ID_Billing` (`ID_Billing`), + ADD KEY `ID_Tarif_RS` (`ID_Tarif_RS`); + +-- +-- Indeks untuk tabel `dokter` +-- +ALTER TABLE `dokter` + ADD PRIMARY KEY (`ID_Dokter`); + +-- +-- Indeks untuk tabel `icd9` +-- +ALTER TABLE `icd9` + ADD PRIMARY KEY (`ID_ICD9`); + +-- +-- Indeks untuk tabel `icd10` +-- +ALTER TABLE `icd10` + ADD PRIMARY KEY (`ID_ICD10`); + +-- +-- Indeks untuk tabel `ina_cbg_rawatinap` +-- +ALTER TABLE `ina_cbg_rawatinap` + ADD PRIMARY KEY (`ID_INACBG_RI`); + +-- +-- Indeks untuk tabel `ina_cbg_rawatjalan` +-- +ALTER TABLE `ina_cbg_rawatjalan` + ADD PRIMARY KEY (`ID_INACBG_RJ`); + +-- +-- Indeks untuk tabel `pasien` +-- +ALTER TABLE `pasien` + ADD PRIMARY KEY (`ID_Pasien`); + +-- +-- Indeks untuk tabel `ruangan` +-- +ALTER TABLE `ruangan` + ADD PRIMARY KEY (`ID_Ruangan`); + +-- +-- Indeks untuk tabel `tarif_rs` +-- +ALTER TABLE `tarif_rs` + ADD PRIMARY KEY (`ID_Tarif_RS`); + +-- +-- AUTO_INCREMENT untuk tabel yang dibuang +-- + +-- +-- AUTO_INCREMENT untuk tabel `admin_ruangan` +-- +ALTER TABLE `admin_ruangan` + MODIFY `ID_Admin` int(11) NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT untuk tabel `billing_pasien` +-- +ALTER TABLE `billing_pasien` + MODIFY `ID_Billing` int(11) NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT untuk tabel `dokter` +-- +ALTER TABLE `dokter` + MODIFY `ID_Dokter` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=1156; + +-- +-- AUTO_INCREMENT untuk tabel `pasien` +-- +ALTER TABLE `pasien` + MODIFY `ID_Pasien` int(11) NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT untuk tabel `ruangan` +-- +ALTER TABLE `ruangan` + MODIFY `ID_Ruangan` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=47; + +-- +-- Ketidakleluasaan untuk tabel pelimpahan (Dumped Tables) +-- + +-- +-- Ketidakleluasaan untuk tabel `billing_icd9` +-- +ALTER TABLE `billing_icd9` + ADD CONSTRAINT `billing_icd9_ibfk_1` FOREIGN KEY (`ID_Billing`) REFERENCES `billing_pasien` (`ID_Billing`), + ADD CONSTRAINT `billing_icd9_ibfk_2` FOREIGN KEY (`ID_ICD9`) REFERENCES `icd9` (`ID_ICD9`); + +-- +-- Ketidakleluasaan untuk tabel `billing_icd10` +-- +ALTER TABLE `billing_icd10` + ADD CONSTRAINT `billing_icd10_ibfk_1` FOREIGN KEY (`ID_Billing`) REFERENCES `billing_pasien` (`ID_Billing`), + ADD CONSTRAINT `billing_icd10_ibfk_2` FOREIGN KEY (`ID_ICD10`) REFERENCES `icd10` (`ID_ICD10`); + +-- +-- Ketidakleluasaan untuk tabel `billing_inacbg_ri` +-- +ALTER TABLE `billing_inacbg_ri` + ADD CONSTRAINT `billing_inacbg_ri_ibfk_1` FOREIGN KEY (`ID_Billing`) REFERENCES `billing_pasien` (`ID_Billing`), + ADD CONSTRAINT `billing_inacbg_ri_ibfk_2` FOREIGN KEY (`ID_INACBG_RI`) REFERENCES `ina_cbg_rawatinap` (`ID_INACBG_RI`); + +-- +-- Ketidakleluasaan untuk tabel `billing_inacbg_rj` +-- +ALTER TABLE `billing_inacbg_rj` + ADD CONSTRAINT `billing_inacbg_rj_ibfk_1` FOREIGN KEY (`ID_Billing`) REFERENCES `billing_pasien` (`ID_Billing`), + ADD CONSTRAINT `billing_inacbg_rj_ibfk_2` FOREIGN KEY (`ID_INACBG_RJ`) REFERENCES `ina_cbg_rawatjalan` (`ID_INACBG_RJ`); + +-- +-- Ketidakleluasaan untuk tabel `billing_pasien` +-- +ALTER TABLE `billing_pasien` + ADD CONSTRAINT `billing_pasien_ibfk_1` FOREIGN KEY (`ID_Pasien`) REFERENCES `pasien` (`ID_Pasien`), + ADD CONSTRAINT `billing_pasien_ibfk_2` FOREIGN KEY (`ID_Dokter`) REFERENCES `dokter` (`ID_Dokter`); + +-- +-- Ketidakleluasaan untuk tabel `billing_tindakan` +-- +ALTER TABLE `billing_tindakan` + ADD CONSTRAINT `billing_tindakan_ibfk_1` FOREIGN KEY (`ID_Billing`) REFERENCES `billing_pasien` (`ID_Billing`), + ADD CONSTRAINT `billing_tindakan_ibfk_2` FOREIGN KEY (`ID_Tarif_RS`) REFERENCES `tarif_rs` (`ID_Tarif_RS`); +COMMIT; + +/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; +/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; +/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; diff --git a/backendcareit_v4/sql/care_it_database.sql b/backendcareit_v4/sql/care_it_database.sql new file mode 100644 index 0000000..d8f1fa8 --- /dev/null +++ b/backendcareit_v4/sql/care_it_database.sql @@ -0,0 +1,33516 @@ +-- phpMyAdmin SQL Dump +-- version 5.2.1 +-- https://www.phpmyadmin.net/ +-- +-- Host: 127.0.0.1 +-- Generation Time: Dec 16, 2025 at 06:32 PM +-- Server version: 10.4.32-MariaDB +-- PHP Version: 8.2.12 + +SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; +START TRANSACTION; +SET time_zone = "+00:00"; + + +/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; +/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; +/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; +/*!40101 SET NAMES utf8mb4 */; + +-- +-- Database: `care_it_data` +-- + +-- -------------------------------------------------------- + +-- +-- Table structure for table `admin_ruangan` +-- + +CREATE TABLE `admin_ruangan` ( + `ID_Admin` int(11) NOT NULL, + `Nama_Admin` varchar(100) NOT NULL, + `Password` varchar(255) NOT NULL, + `ID_Ruangan` int(11) DEFAULT NULL +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; + +-- +-- Dumping data for table `admin_ruangan` +-- + +INSERT INTO `admin_ruangan` (`ID_Admin`, `Nama_Admin`, `Password`, `ID_Ruangan`) VALUES +(1, 'admin', 'admin123', 1); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `billing_dokter` +-- + +CREATE TABLE `billing_dokter` ( + `ID_Dokter` int(11) NOT NULL, + `ID_Billing` int(11) NOT NULL, + `tanggal` date DEFAULT NULL +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; + +-- +-- Dumping data for table `billing_dokter` +-- + +INSERT INTO `billing_dokter` (`ID_Dokter`, `ID_Billing`, `tanggal`) VALUES +(2, 9, '2025-12-08'), +(5, 9, '2025-12-08'), +(12, 9, '2025-12-09'), +(1155, 10, '2025-12-11'), +(2, 11, '2025-12-11'), +(3, 12, '2025-12-11'), +(3, 13, '2025-12-11'), +(3, 14, '2025-12-11'), +(3, 15, '2025-12-11'), +(2, 14, '2025-12-11'), +(2, 15, '2025-12-11'), +(20, 16, '2025-12-11'), +(1155, 16, '2025-12-11'), +(2, 17, '2025-12-11'), +(2, 18, '2025-12-11'), +(2, 19, '2025-12-11'), +(2, 20, '2025-12-11'), +(2, 21, '2025-12-11'), +(2, 22, '2025-12-11'), +(124, 23, '2025-12-12'), +(321, 24, '2025-12-12'), +(1155, 23, '2025-12-12'), +(1155, 23, '2025-12-13'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `billing_icd9` +-- + +CREATE TABLE `billing_icd9` ( + `ID_Billing` int(11) NOT NULL, + `ID_ICD9` varchar(20) NOT NULL +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; + +-- +-- Dumping data for table `billing_icd9` +-- + +INSERT INTO `billing_icd9` (`ID_Billing`, `ID_ICD9`) VALUES +(1, '00.0'), +(1, '00'), +(2, '00'), +(2, '00.0'), +(2, '00.01'), +(3, '00'), +(4, '00.1'), +(4, '17.7'), +(4, '17.70'), +(5, '00.22'), +(5, '00.21'), +(6, '00'), +(6, '00.0'), +(7, '00.03'), +(7, '00.09'), +(8, '89.07'), +(8, '00.09'), +(8, '00.02'), +(8, '00.03'), +(8, '00.02'), +(9, '00.0'), +(9, '00'), +(9, '00.13'), +(9, '00.12'), +(9, '00.03'), +(9, '00.02'), +(10, '00.0'), +(11, '00.02'), +(12, '00'), +(13, '00.42'), +(14, '00.0'), +(15, '00.14'), +(14, '55'), +(14, '00'), +(14, '00'), +(14, '00'), +(15, '00.14'), +(15, '00.14'), +(15, '00.14'), +(15, '00.2'), +(15, '00.14'), +(15, '00.14'), +(15, '00.14'), +(15, '00.14'), +(15, '00.2'), +(15, '00.01'), +(15, '00.14'), +(15, '00.14'), +(15, '00.14'), +(15, '00.14'), +(15, '00.2'), +(15, '00.14'), +(15, '00.14'), +(15, '00.14'), +(15, '00.14'), +(15, '00.2'), +(15, '00.01'), +(15, '00.40'), +(15, '00.14'), +(15, '00.14'), +(15, '00.14'), +(15, '00.14'), +(15, '00.2'), +(15, '00.14'), +(15, '00.14'), +(15, '00.14'), +(15, '00.14'), +(15, '00.2'), +(15, '00.01'), +(15, '00.14'), +(15, '00.14'), +(15, '00.14'), +(15, '00.14'), +(15, '00.2'), +(15, '00.14'), +(15, '00.14'), +(15, '00.14'), +(15, '00.14'), +(15, '00.2'), +(15, '00.01'), +(15, '00.40'), +(15, '34.23'), +(15, '00.14'), +(15, '00.14'), +(15, '00.14'), +(15, '00.14'), +(15, '00.2'), +(15, '00.14'), +(15, '00.14'), +(15, '00.14'), +(15, '00.14'), +(15, '00.2'), +(15, '00.01'), +(15, '00.14'), +(15, '00.14'), +(15, '00.14'), +(15, '00.14'), +(15, '00.2'), +(15, '00.14'), +(15, '00.14'), +(15, '00.14'), +(15, '00.14'), +(15, '00.2'), +(15, '00.01'), +(15, '00.40'), +(15, '00.14'), +(15, '00.14'), +(15, '00.14'), +(15, '00.14'), +(15, '00.2'), +(15, '00.14'), +(15, '00.14'), +(15, '00.14'), +(15, '00.14'), +(15, '00.2'), +(15, '00.01'), +(15, '00.14'), +(15, '00.14'), +(15, '00.14'), +(15, '00.14'), +(15, '00.2'), +(15, '00.14'), +(15, '00.14'), +(15, '00.14'), +(15, '00.14'), +(15, '00.2'), +(15, '00.01'), +(15, '00.40'), +(15, '34.23'), +(15, '53'), +(16, '41.43'), +(16, '41.43'), +(16, '00.34'), +(17, '00.17'), +(19, '00'), +(19, '00'), +(19, '00'), +(19, '00'), +(21, '00.01'), +(21, '01.19'), +(21, '01.18'), +(23, '86.24'), +(24, '00.1'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `billing_icd10` +-- + +CREATE TABLE `billing_icd10` ( + `ID_Billing` int(11) NOT NULL, + `ID_ICD10` varchar(20) NOT NULL +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; + +-- +-- Dumping data for table `billing_icd10` +-- + +INSERT INTO `billing_icd10` (`ID_Billing`, `ID_ICD10`) VALUES +(1, 'A00'), +(1, 'A00.0'), +(2, 'A00'), +(2, 'A00.0'), +(2, 'A00.1'), +(3, 'A00'), +(4, 'A00'), +(4, 'A00.0'), +(4, 'A00.1'), +(5, 'A01.1'), +(5, 'A01.2'), +(6, 'A00'), +(6, 'A00.0'), +(7, 'A00.0'), +(7, 'A00.1'), +(8, 'A00.0'), +(8, 'A01.0'), +(8, 'A02.1'), +(8, 'A01'), +(8, 'A00.9'), +(9, 'A00'), +(9, 'A00.0'), +(9, 'A01'), +(9, 'A00.9'), +(9, 'A00.0'), +(9, 'A00'), +(10, 'A00.0'), +(11, 'A16.2'), +(12, 'A00'), +(13, 'A06.9'), +(14, 'A01.3'), +(15, 'A06.6'), +(14, 'C64'), +(14, 'A00'), +(14, 'A00'), +(14, 'A00'), +(15, 'A06.6'), +(15, 'A06.6'), +(15, 'A06.6'), +(15, 'A03.0'), +(15, 'A06.6'), +(15, 'A06.6'), +(15, 'A06.6'), +(15, 'A06.6'), +(15, 'A03.0'), +(15, 'A08.3'), +(15, 'A06.6'), +(15, 'A06.6'), +(15, 'A06.6'), +(15, 'A06.6'), +(15, 'A03.0'), +(15, 'A06.6'), +(15, 'A06.6'), +(15, 'A06.6'), +(15, 'A06.6'), +(15, 'A03.0'), +(15, 'A08.3'), +(15, 'A06.5'), +(15, 'A06.6'), +(15, 'A06.6'), +(15, 'A06.6'), +(15, 'A06.6'), +(15, 'A03.0'), +(15, 'A06.6'), +(15, 'A06.6'), +(15, 'A06.6'), +(15, 'A06.6'), +(15, 'A03.0'), +(15, 'A08.3'), +(15, 'A06.6'), +(15, 'A06.6'), +(15, 'A06.6'), +(15, 'A06.6'), +(15, 'A03.0'), +(15, 'A06.6'), +(15, 'A06.6'), +(15, 'A06.6'), +(15, 'A06.6'), +(15, 'A03.0'), +(15, 'A08.3'), +(15, 'A06.5'), +(15, 'M43.66'), +(15, 'A06.6'), +(15, 'A06.6'), +(15, 'A06.6'), +(15, 'A06.6'), +(15, 'A03.0'), +(15, 'A06.6'), +(15, 'A06.6'), +(15, 'A06.6'), +(15, 'A06.6'), +(15, 'A03.0'), +(15, 'A08.3'), +(15, 'A06.6'), +(15, 'A06.6'), +(15, 'A06.6'), +(15, 'A06.6'), +(15, 'A03.0'), +(15, 'A06.6'), +(15, 'A06.6'), +(15, 'A06.6'), +(15, 'A06.6'), +(15, 'A03.0'), +(15, 'A08.3'), +(15, 'A06.5'), +(15, 'A06.6'), +(15, 'A06.6'), +(15, 'A06.6'), +(15, 'A06.6'), +(15, 'A03.0'), +(15, 'A06.6'), +(15, 'A06.6'), +(15, 'A06.6'), +(15, 'A06.6'), +(15, 'A03.0'), +(15, 'A08.3'), +(15, 'A06.6'), +(15, 'A06.6'), +(15, 'A06.6'), +(15, 'A06.6'), +(15, 'A03.0'), +(15, 'A06.6'), +(15, 'A06.6'), +(15, 'A06.6'), +(15, 'A06.6'), +(15, 'A03.0'), +(15, 'A08.3'), +(15, 'A06.5'), +(15, 'M43.66'), +(15, 'M72.04'), +(16, 'I82'), +(16, 'I82'), +(16, 'A06.4'), +(17, 'A90'), +(17, 'A91'), +(18, 'A01.3'), +(18, 'A01.3'), +(18, 'A01.3'), +(18, 'A01.3'), +(19, 'A00'), +(20, 'A00'), +(19, 'A00'), +(19, 'A00'), +(19, 'A00'), +(19, 'A00'), +(19, 'A00'), +(19, 'A00'), +(19, 'A00'), +(21, 'A00.0'), +(21, 'A00.0'), +(21, 'A00.0'), +(21, 'A00.0'), +(22, 'A02.8'), +(21, 'A00.9'), +(21, 'A05.3'), +(23, 'C43.9'), +(23, 'C44'), +(24, 'A07.8'), +(23, 'A00'), +(23, 'A00'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `billing_inacbg_ri` +-- + +CREATE TABLE `billing_inacbg_ri` ( + `ID_Billing` int(11) NOT NULL, + `ID_INACBG_RI` varchar(20) NOT NULL +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; + +-- +-- Dumping data for table `billing_inacbg_ri` +-- + +INSERT INTO `billing_inacbg_ri` (`ID_Billing`, `ID_INACBG_RI`) VALUES +(5, 'A-4-15-I'), +(8, 'A-4-13-I'), +(8, 'A-4-13-II'), +(8, 'A-4-15-I'), +(8, 'A-4-13-I'), +(8, 'A-4-12-III'), +(8, 'A-4-14-I'), +(8, 'A-4-14-III'), +(8, 'A-4-14-II'), +(9, 'A-4-10-III'), +(14, 'A-4-10-III'), +(14, 'A-4-15-I'), +(14, 'A-4-10-III'), +(9, 'A-4-10-I'), +(9, 'A-4-15-I'), +(14, 'A-4-10-III'), +(9, 'A-4-10-I'), +(9, 'A-4-10-I'), +(4, 'C-4-10-III'), +(9, 'A-4-10-II'), +(1, 'C-4-13-II'), +(14, 'A-4-10-III'), +(14, 'D-1-11-III'), +(14, 'A-4-10-II'), +(14, 'A-4-10-III'), +(14, 'A-4-10-III'), +(14, 'A-4-15-III'), +(14, 'A-4-10-III'), +(14, 'B-1-13-III'), +(14, 'C-4-13-III'), +(1, 'A-4-10-III'), +(14, 'B-1-12-II'), +(14, 'A-4-10-III'), +(14, 'F-4-15-III'), +(15, 'A-4-11-III'), +(14, 'A-4-10-III'), +(14, 'A-4-15-III'), +(14, 'B-1-01-III'), +(14, 'L-1-30-III'), +(15, 'A-4-10-II'), +(15, 'A-4-15-II'), +(15, 'C-4-10-III'), +(15, 'K-4-10-III'), +(15, 'A-4-10-II'), +(15, 'E-1-01-II'), +(16, 'G-4-12-I'), +(16, 'D-4-11-I'), +(17, 'A-4-12-III'), +(23, 'A-4-10-I'), +(23, 'L-4-12-I'), +(24, 'F-4-19-I'), +(20, 'A-4-11-I'), +(22, 'S-4-12-I'), +(19, 'A-4-13-I'), +(21, 'A-4-10-I'), +(23, 'A-4-10-I'), +(23, 'A-4-10-I'), +(23, 'A-4-10-I'), +(2, 'A-4-10-I'), +(4, 'A-4-10-I'), +(6, 'A-4-10-I'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `billing_inacbg_rj` +-- + +CREATE TABLE `billing_inacbg_rj` ( + `ID_Billing` int(11) NOT NULL, + `ID_INACBG_RJ` varchar(20) NOT NULL +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; + +-- +-- Dumping data for table `billing_inacbg_rj` +-- + +INSERT INTO `billing_inacbg_rj` (`ID_Billing`, `ID_INACBG_RJ`) VALUES +(4, 'B-3-12-0'), +(3, 'D-2-11-0'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `billing_pasien` +-- + +CREATE TABLE `billing_pasien` ( + `ID_Billing` int(11) NOT NULL, + `ID_Pasien` int(11) NOT NULL, + `Cara_Bayar` enum('BPJS','Umum') DEFAULT NULL, + `Tanggal_Masuk` date DEFAULT NULL, + `Tanggal_Keluar` date DEFAULT NULL, + `Total_Tarif_RS` decimal(15,2) DEFAULT NULL, + `Total_Klaim` decimal(15,2) DEFAULT NULL, + `Billing_Sign` enum('Hijau','Kuning','Merah') DEFAULT 'Hijau' +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; + +-- +-- Dumping data for table `billing_pasien` +-- + +INSERT INTO `billing_pasien` (`ID_Billing`, `ID_Pasien`, `Cara_Bayar`, `Tanggal_Masuk`, `Tanggal_Keluar`, `Total_Tarif_RS`, `Total_Klaim`, `Billing_Sign`) VALUES +(1, 1, 'BPJS', '2025-12-01', '2025-12-11', 150000.00, 14618300.00, 'Hijau'), +(2, 2, 'BPJS', '2025-12-01', '2025-12-13', 227000.00, 3702300.00, 'Hijau'), +(3, 3, 'BPJS', '2025-12-01', '2025-12-15', 227000.00, 2558500.00, 'Hijau'), +(4, 4, 'BPJS', '2025-12-01', '2025-12-13', 417000.00, 41653600.00, 'Hijau'), +(5, 4, 'BPJS', '2025-12-02', '2025-12-05', 278000.00, 25341300.00, 'Hijau'), +(6, 4, 'BPJS', '2025-12-02', '2025-12-13', 150000.00, 3702300.00, 'Hijau'), +(7, 3, 'BPJS', '2025-12-02', '2025-12-02', 293000.00, 0.00, ''), +(8, 5, 'BPJS', '2025-12-02', NULL, 478000.00, 9034100.00, 'Hijau'), +(9, 6, 'BPJS', '2025-12-08', '2025-12-11', 451000.00, 36484500.00, ''), +(10, 7, 'BPJS', '2025-12-11', NULL, 70000.00, 0.00, ''), +(11, 8, 'BPJS', '2025-12-11', NULL, 478000.00, 0.00, ''), +(12, 9, 'BPJS', '2025-12-11', NULL, 80000.00, 0.00, ''), +(13, 10, 'BPJS', '2025-12-11', NULL, 42000.00, 0.00, ''), +(14, 11, 'BPJS', '2025-12-11', '2025-12-11', 296236000.00, 566480600.00, 'Merah'), +(15, 12, 'BPJS', '2025-12-11', '2025-12-11', 193278000.00, 119469800.00, 'Merah'), +(16, 13, 'BPJS', '2025-12-11', '2025-12-11', 3120000.00, 13088400.00, 'Kuning'), +(17, 14, 'BPJS', '2025-12-11', '2025-12-11', 297000.00, 7279900.00, 'Hijau'), +(18, 15, 'BPJS', '2025-12-11', NULL, 308000.00, 0.00, ''), +(19, 16, 'BPJS', '2025-12-11', '2025-12-12', 640000.00, 2897600.00, 'Kuning'), +(20, 17, 'BPJS', '2025-12-11', '2025-12-12', 80000.00, 6540500.00, 'Hijau'), +(21, 18, 'BPJS', '2025-12-11', '2025-12-12', 402000.00, 3702300.00, 'Hijau'), +(22, 19, 'BPJS', '2025-12-11', '2025-12-12', 139000.00, 2913000.00, 'Hijau'), +(23, 20, 'BPJS', '2025-12-12', '2025-12-13', 2820000.00, 17630800.00, 'Merah'), +(24, 21, 'BPJS', '2025-12-12', '2025-12-12', 231000.00, 5982700.00, 'Hijau'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `billing_tindakan` +-- + +CREATE TABLE `billing_tindakan` ( + `ID_Billing` int(11) NOT NULL, + `ID_Tarif_RS` varchar(20) NOT NULL +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; + +-- +-- Dumping data for table `billing_tindakan` +-- + +INSERT INTO `billing_tindakan` (`ID_Billing`, `ID_Tarif_RS`) VALUES +(1, 'DAR.001'), +(1, 'DAR.002'), +(2, 'DAR.001'), +(2, 'DAR.002'), +(2, 'KFM.001'), +(3, 'DAR.001'), +(3, 'DAR.002'), +(3, 'KFM.001'), +(4, 'KFM.006'), +(4, 'KFM.005'), +(4, 'KFM.004'), +(5, 'KFM.015'), +(5, 'KFM.014'), +(6, 'DAR.001'), +(6, 'DAR.002'), +(7, 'KFM.002'), +(7, 'KFM.003'), +(7, 'KFM.004'), +(8, 'DAR.001'), +(8, 'DAR.002'), +(8, 'KFM.003'), +(8, 'KFM.013'), +(8, 'KFM.042'), +(8, 'KFM.041'), +(9, 'DAR.002'), +(9, 'DAR.001'), +(9, 'KFM.002'), +(9, 'KFM.003'), +(9, 'DAR.002'), +(9, 'KFM.001'), +(10, 'DAR.002'), +(11, 'R.LMK.003'), +(12, 'DAR.001'), +(13, 'KFM.093'), +(14, 'DAR.002'), +(15, 'KFM.016'), +(14, 'DAR.002'), +(14, 'KFM.002'), +(14, 'KFM.032'), +(14, 'R.AKO.004'), +(14, 'R.TOKH.001'), +(14, 'DAR.002'), +(14, 'DAR.001'), +(14, 'R.TO.0893'), +(15, 'KFM.016'), +(15, 'KFM.031'), +(15, 'KFM.016'), +(15, 'KFM.016'), +(15, 'KFM.031'), +(15, 'KFM.017'), +(15, 'KFM.016'), +(15, 'KFM.016'), +(15, 'KFM.031'), +(15, 'KFM.016'), +(15, 'KFM.016'), +(15, 'KFM.031'), +(15, 'KFM.017'), +(15, 'KFM.045'), +(15, 'KFM.016'), +(15, 'KFM.016'), +(15, 'KFM.031'), +(15, 'KFM.016'), +(15, 'KFM.016'), +(15, 'KFM.031'), +(15, 'KFM.017'), +(15, 'KFM.016'), +(15, 'KFM.016'), +(15, 'KFM.031'), +(15, 'KFM.016'), +(15, 'KFM.016'), +(15, 'KFM.031'), +(15, 'KFM.017'), +(15, 'KFM.045'), +(15, 'KFM.063'), +(15, 'KFM.016'), +(15, 'KFM.016'), +(15, 'KFM.031'), +(15, 'KFM.016'), +(15, 'KFM.016'), +(15, 'KFM.031'), +(15, 'KFM.017'), +(15, 'KFM.016'), +(15, 'KFM.016'), +(15, 'KFM.031'), +(15, 'KFM.016'), +(15, 'KFM.016'), +(15, 'KFM.031'), +(15, 'KFM.017'), +(15, 'KFM.045'), +(15, 'KFM.016'), +(15, 'KFM.016'), +(15, 'KFM.031'), +(15, 'KFM.016'), +(15, 'KFM.016'), +(15, 'KFM.031'), +(15, 'KFM.017'), +(15, 'KFM.016'), +(15, 'KFM.016'), +(15, 'KFM.031'), +(15, 'KFM.016'), +(15, 'KFM.016'), +(15, 'KFM.031'), +(15, 'KFM.017'), +(15, 'KFM.045'), +(15, 'KFM.063'), +(15, 'KFM.053'), +(15, 'KFM.071'), +(15, 'R.TO.2289'), +(15, 'R.TO.0923'), +(15, 'R.TO.3316'), +(15, 'R.TO.0859'), +(15, 'KFM.016'), +(15, 'KFM.016'), +(15, 'KFM.031'), +(15, 'KFM.016'), +(15, 'KFM.016'), +(15, 'KFM.031'), +(15, 'KFM.017'), +(15, 'KFM.016'), +(15, 'KFM.016'), +(15, 'KFM.031'), +(15, 'KFM.016'), +(15, 'KFM.016'), +(15, 'KFM.031'), +(15, 'KFM.017'), +(15, 'KFM.045'), +(15, 'KFM.016'), +(15, 'KFM.016'), +(15, 'KFM.031'), +(15, 'KFM.016'), +(15, 'KFM.016'), +(15, 'KFM.031'), +(15, 'KFM.017'), +(15, 'KFM.016'), +(15, 'KFM.016'), +(15, 'KFM.031'), +(15, 'KFM.016'), +(15, 'KFM.016'), +(15, 'KFM.031'), +(15, 'KFM.017'), +(15, 'KFM.045'), +(15, 'KFM.063'), +(15, 'KFM.016'), +(15, 'KFM.016'), +(15, 'KFM.031'), +(15, 'KFM.016'), +(15, 'KFM.016'), +(15, 'KFM.031'), +(15, 'KFM.017'), +(15, 'KFM.016'), +(15, 'KFM.016'), +(15, 'KFM.031'), +(15, 'KFM.016'), +(15, 'KFM.016'), +(15, 'KFM.031'), +(15, 'KFM.017'), +(15, 'KFM.045'), +(15, 'KFM.016'), +(15, 'KFM.016'), +(15, 'KFM.031'), +(15, 'KFM.016'), +(15, 'KFM.016'), +(15, 'KFM.031'), +(15, 'KFM.017'), +(15, 'KFM.016'), +(15, 'KFM.016'), +(15, 'KFM.031'), +(15, 'KFM.016'), +(15, 'KFM.016'), +(15, 'KFM.031'), +(15, 'KFM.017'), +(15, 'KFM.045'), +(15, 'KFM.063'), +(15, 'KFM.053'), +(15, 'KFM.071'), +(15, 'R.TO.2289'), +(15, 'R.TO.0923'), +(15, 'R.TO.3316'), +(15, 'R.TO.0859'), +(15, 'R.TO.0471'), +(16, 'R.TNO.1747'), +(16, 'R.TNO.1747'), +(16, 'R.TDE.049'), +(17, 'DAR.001'), +(17, 'R.RDL.215'), +(17, 'R.LPK.118'), +(17, 'R.LPK.265'), +(18, 'KFM.003'), +(18, 'KFM.003'), +(18, 'KFM.003'), +(18, 'KFM.003'), +(19, 'DAR.001'), +(20, 'DAR.001'), +(19, 'DAR.001'), +(19, 'DAR.001'), +(19, 'DAR.001'), +(19, 'DAR.001'), +(19, 'DAR.001'), +(19, 'DAR.001'), +(19, 'DAR.001'), +(21, 'DAR.002'), +(21, 'DAR.002'), +(21, 'DAR.002'), +(21, 'DAR.002'), +(22, 'KFM.004'), +(21, 'DAR.001'), +(21, 'KFM.039'), +(23, 'R.TO.2414'), +(23, 'DAR.002'), +(24, 'DAR.001'), +(24, 'KFM.015'), +(24, 'KFM.085'), +(23, 'DAR.001'), +(23, 'DAR.002'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `dokter` +-- + +CREATE TABLE `dokter` ( + `ID_Dokter` int(11) NOT NULL, + `Nama_Dokter` varchar(100) NOT NULL, + `Status` enum('DPJP','PPDS') NOT NULL, + `KSM` varchar(100) DEFAULT NULL, + `Email_UB` varchar(100) DEFAULT NULL, + `Email_Pribadi` varchar(100) DEFAULT NULL +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; + +-- +-- Dumping data for table `dokter` +-- + +INSERT INTO `dokter` (`ID_Dokter`, `Nama_Dokter`, `Status`, `KSM`, `Email_UB`, `Email_Pribadi`) VALUES +(2, 'dr. Hajeng Wulandari, Sp.A, Mbiomed', 'DPJP', 'Anak', 'hajengwulandari.fk@ub.ac.id', 'hajeng.wulandari@gmail.com'), +(3, 'dr. Irfan Agus Salim, Sp.A, Mbiomed ', 'DPJP', 'Anak', 'irfanagus.fk@ub.ac.id', 'salim.dr87@gmail.com'), +(4, 'dr. Fadilah Muttaqin, Spp.A,MBiomed', 'DPJP', 'Anak', '-', 'fadilahmutaqin25888@gmail.com'), +(5, 'dr. Ery Olivianto, Sp. A (K)', 'DPJP', 'Anak', 'ery15.fk@ub.ac.id', 'ery_agustin@yahoo.com'), +(6, 'Dr.dr. Krisni Soebandijah, Sp.A(K)', 'DPJP', 'Anak', 'krisni19.fk@ub.ac.id', 'krisdika2002@yahoo.com'), +(7, 'dr. Astrid Kristina Kardani, Sp. A, MBiomed', 'DPJP', 'Anak', 'astridkardani.fk@ub.ac.id', '-'), +(8, 'dr. Nugroho Danu Tri Subroto, Sp.A(K)', 'DPJP', 'Anak', 'danu.dr@ub.ac.id', '-'), +(9, 'dr. Irene Ratridewi, Sp.A(K), M.Kes', 'DPJP', 'Anak', 'irene24.fk@ub.ac.id', 'irtridewi@yahoo.com'), +(10, 'dr.Savitri Laksmi Winaputri, Sp.A', 'DPJP', 'Anak', '-', 'wina.savitri@yahoo.com'), +(11, 'Dr.dr. Wisnu Barlianto, Sp.A(K), Msi.Med', 'DPJP', 'Anak', 'wisnu_barlian@ub.ac.id', '-'), +(12, 'dr. Desy Wulandari, Sp.A, M.Biomed', 'DPJP', 'Anak', 'desywulandari@ub.ac.id', 'deardesy@yahoo.com'), +(13, 'dr. Satrio Wibowo, Sp.A(K), Msi.Medย ', 'DPJP', 'Anak', 'satrio_wibowo@ub.ac.id', '-'), +(14, 'dr. Muhammad Irawan, Sp.A, MBiomed', 'DPJP', 'Anak', 'muhammadirawan.fk@ub.ac.id', 'muhammadirawan86@gmail.com'), +(15, 'dr. A. Susanto Nugroho, Sp.A(K)ย ', 'DPJP', 'Anak', 'susanto04.fk@ub.ac.id', 'susantonugroho.ns@gmail.com'), +(16, 'dr. Sonny Wicaksono, Sp. A, M.Kes', 'DPJP', 'Anak', '-', 'sonyfk@gmail.com'), +(17, 'dr. Brigitta Ida RVC, Sp.A(K), M.Kes', 'DPJP', 'Anak', 'briggita_vebi@ub.ac.id', 'brigitta_vebi@yahoo.com'), +(18, 'dr. Eko Sulistijono, Sp.A', 'DPJP', 'Anak', 'eko25.fk@ub.ac.id', 'ekosulistijono@yahoo.com'), +(19, 'Dr. dr. Ariani, M.Kes, Sp.A(K)', 'DPJP', 'Anak', 'arianidr@ub.ac.id', '-'), +(20, 'dr. Prasetya Ismail Permadi, Sp.A(K), M.Biomed', 'DPJP', 'Anak', 'prasetyapermadi@ub.ac.id', '-'), +(21, 'dr. Saptadi Yuliarto, M.Kes, Sp.A(K)', 'DPJP', 'Anak', 'saptadiy@ub.ac.id', '-'), +(22, 'Dr. dr. Harjoedi Adji Tjahjono, Sp.A(K)', 'DPJP', 'Anak', 'haryudi_aji2000@ub.ac.id', 'haryudi_aji2000@yahoo.com'), +(23, 'dr. Dyahris Koentartiwi, Sp.A(K)', 'DPJP', 'Anak', 'dyahris08.fk@ub.ac.id', 'risty.kuntartiwi@gmail.com'), +(24, 'dr. Muchammad Fahrul Udin, M.Kes, Sp.A, Subsp. Resp(K)', 'DPJP', 'Anak', 'udin24.fk@ub.ac.id', 'fahruludin@yahoo.com'), +(25, 'dr. Kurniawan Taufiq Kadafi, M.Biomed, Sp.A(K)', 'DPJP', 'Anak', 'kadafi12.fk@ub.ac.id', 'kurniawankadafi@gmail.com'), +(26, 'dr. Laurentia Ima Monica, Sp.A., M.Biomed.', 'DPJP', 'Anak', 'monicasutatnto@ub.ac.id', ''), +(27, 'dr. Setya Mithra Hartiastuti, MSi.Med, Sp.A(K)', 'DPJP', 'Anak', '-', 'setyamithra@gmail.com'), +(28, 'dr. Melany Farrahdilla, Sp.A, M.Kes', 'DPJP', 'Anak', '-', 'melany.f@gmail.com'), +(29, 'dr. Melinda, Sp.A, M.Biomed', 'DPJP', 'Anak', '-', 'melindarakhmat@gmail.com'), +(30, 'dr. Mochamad Chabibi, Sp.A, M.Biomed', 'DPJP', 'Anak', '-', 'putrablitar999@yahoo.com'), +(31, 'dr. Hidayati Utami Dewi, Sp.A', 'DPJP', 'Anak', '-', 'utami3dewi@gmail.com'), +(32, 'dr. Ardhanis Ramadhanti, Sp.A', 'DPJP', 'Anak', '-', 'ardhanis9@gmail.com'), +(33, 'dr. Emi Yulianti, Sp.A', 'DPJP', 'Anak', '-', 'meme_yulianti@yahoo.com; emi230576yulianti@gmail.com'), +(34, 'dr. Herlin Kristanti, Sp.A', 'DPJP', 'Anak', '-', 'herlinkristanti@yahoo.co.id'), +(35, 'dr. Zuhrotul Aini, Sp.A', 'DPJP', 'Anak', '-', 'ainizuhri74@gmail.com'), +(36, 'dr. Novi Efridayanti, Sp.A., M.Biomed', 'DPJP', 'Anak', '-', 'novi.evridayanti@gmail.com'), +(37, 'dr. Astri Proborini, Sp.A., M.Kes', 'DPJP', 'Anak', '-', 'astriporini@gmail.com'), +(38, 'dr. Charity Monica, Sp.A', 'DPJP', 'Anak', '-', '-'), +(39, 'dr.Dewangga Primananda Susanto, MMRS., Sp. A', 'DPJP', 'Anak', '-', '-'), +(40, 'dr. Tulus Sampurno, Sp.A', 'DPJP', 'Anak', '-', '-'), +(41, 'Ervan Aditya Putra Chafid', 'PPDS', 'Anak', 'ervanaditya5@student.ub.ac.id', '-'), +(42, 'RAYI IJQI ASASAIN', 'PPDS', 'Anak', 'rayi_ijqi@student.ub.ac.id', '-'), +(43, 'Prastiti Rahmanita', 'PPDS', 'Anak', 'prastitirhm@student.ub.ac.id', '-'), +(44, 'Tazkiyatul Firdaus', 'PPDS', 'Anak', 'tazkiya@student.ub.ac.id', '-'), +(45, 'Najwa Amalia', 'PPDS', 'Anak', 'najwaamalia@student.ub.ac.id', '-'), +(46, 'Erlisa Devi Saptirina Putri', 'PPDS', 'Anak', 'erlisadevi@student.ub.ac.id', '-'), +(47, 'Astika Jr Said', 'PPDS', 'Anak', 'astikajrsaid@student.ub.ac.id', '-'), +(48, 'Galing Chandika Putra', 'PPDS', 'Anak', 'galingchandika@student.ub.ac.id', '-'), +(49, 'Hernita Taurustya', 'PPDS', 'Anak', 'hernita_ika33@student.ub.ac.id', '-'), +(50, 'Sintya Dyliza', 'PPDS', 'Anak', 'sintyadyliza@student.ub.ac.id', '-'), +(51, 'SARAH ZORAYA MIRZA', 'PPDS', 'Anak', 'sarahmirza@student.ub.ac.id', '-'), +(52, 'dr. La Ode Purna Alam Firdaus', 'PPDS', 'Anak', 'alammaasara32@student.ub.ac.id', '-'), +(53, 'dr. Christian Nopiandi', 'PPDS', 'Anak', 'tian601184@student.ub.ac.id', '-'), +(54, 'dr. Fania Dora Aslamy', 'PPDS', 'Anak', 'faniadora@student.ub.ac.id', '-'), +(55, 'dr. Hardian Rakhmawardana', 'PPDS', 'Anak', 'hardian128@student.ub.ac.id', '-'), +(56, 'dr. Athira Fitriah', 'PPDS', 'Anak', 'fitriahathira27@student.ub.ac.id', '-'), +(57, 'dr. Nia Sahra Labetubun', 'PPDS', 'Anak', 'nialabetubun@student.ub.ac.id', '-'), +(58, 'dr. Meytrisna Ajeng Zwastica', 'PPDS', 'Anak', 'meytrisnaaz17@student.ub.ac.id', '-'), +(59, 'Stephanie Hellen Hartoyo', 'PPDS', 'Anak', 'drstephy89@student.ub.ac.id', '-'), +(60, 'Deddy Christian Aritonang', 'PPDS', 'Anak', 'deddyaritonang@student.ub.ac.id', '-'), +(61, 'Raden Rara Shinta Chandra Permata', 'PPDS', 'Anak', 'rrshintacp@student.ub.ac.id', '-'), +(62, 'Rima Nur Rahmawati', 'PPDS', 'Anak', 'rimanr@student.ub.ac.id', '-'), +(63, 'Angela Permera Tubuq', 'PPDS', 'Anak', 'permeradr@student.ub.ac.id', '-'), +(64, 'AULYA FARRA RAHMADANY', 'PPDS', 'Anak', 'aulyafr@student.ub.ac.id', '-'), +(65, 'Fitria Ummu Habibah', 'PPDS', 'Anak', 'fitriaummu@student.ub.ac.id', '-'), +(66, 'Yasmin Eka Aziza', 'PPDS', 'Anak', 'yasminekaaziza@student.ub.ac.id', '-'), +(67, 'Firmandiyara Angkasa', 'PPDS', 'Anak', 'diarakasa@student.ub.ac.id', '-'), +(68, 'Rifqi Syarif Rinanto', 'PPDS', 'Anak', 'rifqippds@student.ub.ac.id', '-'), +(69, 'Kienan Agni Dewanty', 'PPDS', 'Anak', 'kienanagnid@student.ub.ac.id', '-'), +(70, 'rayza swan awanti', 'PPDS', 'Anak', 'rayzaswan@student.ub.ac.id', '-'), +(71, 'Emiliana Susanti Foris', 'PPDS', 'Anak', 'emilianaforis@student.ub.ac.id', '-'), +(72, 'Victor Julius Imoek', 'PPDS', 'Anak', 'victorjulius@student.ub.ac.id', '-'), +(73, 'Gindy Aulia Mustikasari', 'PPDS', 'Anak', 'gindyaulia@student.ub.ac.id', '-'), +(74, 'Izdihar Rahmadinda', 'PPDS', 'Anak', 'izdiharr@student.ub.ac.id', '-'), +(75, 'Vennia Riskia Tristianti', 'PPDS', 'Anak', 'venniariskia@student.ub.ac.id', '-'), +(76, 'Nova Lestarina Ayu Aisyah', 'PPDS', 'Anak', 'novalestarina@student.ub.ac.id', '-'), +(77, 'Raymundus Florentino Mariano Pareira', 'PPDS', 'Anak', 'tanmundo@student.ub.ac.id', '-'), +(78, 'GALIH CAKRAYUDA THOHARI', 'PPDS', 'Anak', 'galihcakrayuda@student.ub.ac.id', '-'), +(79, 'Merisa Purnama Sari', 'PPDS', 'Anak', 'merisapurnama@student.ub.ac.id', '-'), +(80, 'Retna Gumilang', 'PPDS', 'Anak', 'retnagumilang@student.ub.ac.id', '-'), +(81, 'Hanum Afdhilla Lubis', 'PPDS', 'Anak', 'hanumafdhilla@student.ub.ac.id', '-'), +(82, 'Natashya Phillipa Nanda Ngasu', 'PPDS', 'Anak', 'natashyangasu17@student.ub.ac.id', '-'), +(83, 'Ari Viandri Wismananda', 'PPDS', 'Anak', 'ariviandri@student.ub.ac.id', '-'), +(84, 'Safira Nur Alita Putri', 'PPDS', 'Anak', 'safiranur@student.ub.ac.id', '-'), +(85, 'Annisa Setyautami', 'PPDS', 'Anak', 'asetyautami@student.ub.ac.id', '-'), +(86, 'Anindita Gatiningrum', 'PPDS', 'Anak', 'aninditagt96@student.ub.ac.id', '-'), +(87, 'Fakhri Abid Abdulhadi', 'PPDS', 'Anak', 'fakhriabid@student.ub.ac.id', '-'), +(88, 'Hashfi Mafazi', 'PPDS', 'Anak', 'hashfimafazi@student.ub.ac.id', '-'), +(89, 'Krist Nathania Benita', 'PPDS', 'Anak', 'drnathan@student.ub.ac.id', '-'), +(90, 'Desi Nur Anggraini', 'PPDS', 'Anak', 'desinanggraini@student.ub.ac.id', '-'), +(91, 'Adelia Listiana Dewi', 'PPDS', 'Anak', 'dewiadelinald@student.ub.ac.id', '-'), +(92, 'Bayu Satyawida Purwanto', 'PPDS', 'Anak', 'satyawida354@student.ub.ac.id', '-'), +(93, 'Della Wachdatul Angela Nurwakhid', 'PPDS', 'Anak', 'dellaangela@student.ub.ac.id', '-'), +(94, 'Gabriela Nativity', 'PPDS', 'Anak', 'gabrielanat@student.ub.ac.id', '-'), +(95, 'MUMTAZA NOOR ASHILA', 'PPDS', 'Anak', 'mumtazanoora@student.ub.ac.id', '-'), +(96, 'Arum Sulistyarini', 'PPDS', 'Anak', 'arumsulis7@student.ub.ac.id', '-'), +(97, 'Luisa Vinadiya', 'PPDS', 'Anak', 'luisavinadiya@student.ub.ac.id', '-'), +(98, 'Ikmalun Natiq', 'PPDS', 'Anak', 'ikmalun_natiq@student.ub.ac.id', '-'), +(99, 'Delfian Oktatugara Rayes', 'PPDS', 'Anak', 'delfianrayes@student.ub.ac.id', '-'), +(100, 'Almira Pramadhani', 'PPDS', 'Anak', 'almiraprama@student.ub.ac.id', '-'), +(101, 'Hardin Bin Baharuddin', 'PPDS', 'Anak', 'ardinneo19@student.ub.ac.id', '-'), +(102, 'dr. Artono Isharanto, Sp B,. Sp BTKV', 'DPJP', 'Bedah TKV', 'a.isharanto@ub.ac.id', 'a.isharanto@gmail.com'), +(103, 'dr. Koernia Kusuma Wardhana, Sp.BTKV(K)-VE', 'DPJP', 'Bedah TKV', 'masbobby1984@ub.ac.id', ''), +(104, 'dr Imam Suseno, Sp BTKV', 'DPJP', 'Bedah TKV', 'bayu_romanisti@ub.ac.id', '-'), +(105, 'dr.Gracelia Ruth Elisabeth D,Sp.B.TKV, M.Med.', 'DPJP', 'Bedah TKV', 'graceliadamanik@ub.ac.id', '-'), +(106, 'dr. Chaidar Muttaqin, Sp.B.T.K.V', 'DPJP', 'Bedah TKV', '-', 'chaidarmuttaqin@gmail.com'), +(107, 'Dr. dr. Farhad Baliatif, Sp BS (K)', 'DPJP', 'Bedah Syaraf Pediatri', '-', '-'), +(108, 'dr. Doni Wisnu Wardhana, Sp BS', 'DPJP', 'Bedah Syaraf Onkologi', '-', '-'), +(109, 'Dr. med. dr. Tommy Alfandy Nazwar, Sp.BS(K)', 'DPJP', 'Bedah Syaraf Spine', 'tommy@ub.ac.id', 'tommyns1311@yahoo.com\nbedahsarafmalang@yahoo.com'), +(110, 'Dr. dr. Farhad Bal\'Afif, Sp.BS', 'DPJP', 'Bedah Syaraf', 'farblf@ub.ac.id', 'farblf@rocketmail.com\nbedahsarafmalang@yahoo.com'), +(111, 'dr. Mohammad Zakaria Shahab, Sp.BS', 'DPJP', 'Bedah Syaraf', '-', 'dr.zakariaashahab2@gmail.com'), +(112, 'dr. Setyo Sugiharto, Sp. B-KBDย ', 'DPJP', 'Bedah Digestive', 'setyosugiarto@ub.ac.id', 'setyo.sugiharto77@gmail.com\ndigestif.malang@gmail.com'), +(113, 'Dr. dr. Aries Budianto, Sp.B-KBD', 'DPJP', 'Bedah Digestive', 'ariesb.bdmlg@ub.ac.id', 'ariesb.bdmlg@gmail.com\ndigestif.malang@gmail.com'), +(114, 'dr. Heru Sulistyo, Sp. B-KBD', 'DPJP', 'Bedah Digestive', 'herusulistyo70@ub.ac.id', 'herusulistyo70@gmail.com'), +(115, 'dr. M. S. Niam, M.Kes, Sp.B-KBD', 'DPJP', 'Bedah Digestive', 'm2sniam@ub.ac.id', 'm2sniam@yahoo.com'), +(116, 'dr. Dwicha Rahmawansa Siswardana, Sp.B-KBD', 'DPJP', 'Bedah Digestive', 'dwicha2783.fk@ub.ac.id', 'dwicha@yahoo.com'), +(117, 'dr. Wahyu Harisanyoto, Sp.B.KBD', 'DPJP', 'Bedah Digestive', '-', 'wahyu.harisanyoto@gmail.com'), +(118, 'dr. Herman Josep Limpat, Sp BP ย– RE', 'DPJP', 'Bedah Plastik', 'wihastyoko@ub.ac.id', 'wihastyoko@yahoo.com'), +(119, 'dr. Arviansyah, Sp BP, RE', 'DPJP', 'Bedah Plastik', 'arvianbedahplas@ub.ac.id', '-'), +(120, 'dr. Wilma Agustina, Sp.B.P.R.E', 'DPJP', 'Bedah Plastik', 'wilmaagustina@ub.ac.id', '-'), +(121, 'dr. Yudi Siswanto, MSc, M.Ked.Klin., Sp.B.P.R.Eย ', 'DPJP', 'Bedah Plastik', 'yudi.siswanto@ub.ac.id', '-'), +(122, 'dr. Elisabeth Prajanti Sintaningrum, Sp.B.P.R.E', 'DPJP', 'Bedah Plastik', 'sintaningrum@ub.ac.id', 'sintaningrum@yahoo.com'), +(123, 'dr. Santi Devina, Sp.BP-RE', 'DPJP', 'Bedah Plastik', '-', 'Devina.santi.dr@gmail.com'), +(124, 'dr. Robertus Arian Datusanantyo, MPH, MKed, Klin., SpBPRE, Subsp.K.M.(K)', 'DPJP', 'Bedah Plastik', 'arian@lec.ub.ac.id', '-'), +(125, 'dr. Lulik Inggarwati, Sp B,. Sp BA Anakย ', 'DPJP', 'Bedah Anak', 'matahari63@ub.ac.id', 'ell_ing@yahoo.co.id\nbedahanak_fkub@yahoo.com'), +(126, 'dr. Widanto, Sp B,. Sp BA', 'DPJP', 'Bedah Anak', 'widanto@ub.ac.id', 'widanto@ymail.com'), +(127, 'dr. Sinung Wikanandi, Sp. BA', 'DPJP', 'Bedah Anak', 'sinung.wikanadi@ub.ac.id', 'sinung.wikanadi@gmail.com'), +(128, 'dr. Ririd Tri Pitaka, Sp.BA', 'DPJP', 'Bedah Anak', '-', 'riridtripitaka@gmail.com'), +(129, 'Dr. dr. Mochamad Bachtiar Budianto, Sp.B(K)Onk', 'DPJP', 'Bedah Onkologi', 'bachtiarb@ub.ac.id', 'bachtiarbudianto@yahoo.com'), +(130, 'dr. Hery Susilo, Sp.B(K)Onk', 'DPJP', 'Bedah Onkologi', 'herysusilo@ub.ac.id', 'herysusilo_surgeon@yahoo.com'), +(131, 'dr. Sidho Hantoko, Sp.B(K)Onk', 'DPJP', 'Bedah Onkologi', 'sidhohantoko@ub.ac.id', 'sidhohantoko@yahoo.co.id'), +(132, 'dr. Dian Pratiwi, Sp.B., Subsp.Onk.(K)', 'DPJP', 'Bedah Onkologi', 'depe_1104@ub.ac.id', '-'), +(133, 'dr. Feri Nugroho, Sp.B(K)Onk', 'DPJP', 'Bedah Onkologi', '-', 'Ferinugrohobedah@gmail.com'), +(134, 'dr. Aditya Rachmat Febrianto, Sp.B.', 'DPJP', 'Bedah', 'adityaeref19@ub.ac.id', '-'), +(135, 'dr. Nurudin Syahadat, Sp.B', 'DPJP', 'Bedah', '-', 'nsyahadat@gmail.com'), +(136, 'dr. Hananta Sudibyoko, Sp.B', 'DPJP', 'Bedah', '-', 'hanantasudibyoko@yahoo.com'), +(137, 'dr. Rizki Hanifan Nugraha, Sp.B', 'DPJP', 'Bedah', '-', 'hanifansurgeon@gmail.com'), +(138, 'dr. Andreas Rendra, Sp.B', 'DPJP', 'Bedah', '-', 'andredoctor707707@gmail.com'), +(139, 'dr. Primana Setya Nugraha, MPH., Sp.B.', 'DPJP', 'Bedah', '-', 'dr.primana@gmail.com'), +(140, 'dr. Damian Dwi Rahadi, Sp.B.,M.Ked.Klin', 'DPJP', 'Bedah', '-', 'damian2rahadi@gmail.com'), +(141, 'dr. Albert Linardy, Sp.B', 'DPJP', 'Bedah', '-', 'docal291081@gmail.com'), +(142, 'dr. Zaki Yamani, Sp.B', 'DPJP', 'Bedah', '-', 'zakionesl1@gmail.com'), +(143, 'Rr. Theodora Ratih Labdagati Iswara', 'PPDS', 'Bedah Plastik Rekonstruksi dan Estetik', 'theodoraratih@student.ub.ac.id', '-'), +(144, 'Kinanti Ken Larasati', 'PPDS', 'Bedah Plastik Rekonstruksi dan Estetik', 'kenlarasati@student.ub.ac.id', '-'), +(145, 'Maria Karina Jaya Suwana', 'PPDS', 'Bedah Plastik Rekonstruksi dan Estetik', 'mariakarinajs@student.ub.ac.id', '-'), +(146, 'Mutiara Aprilia Senolinggi', 'PPDS', 'Bedah Plastik Rekonstruksi dan Estetik', 'mutiaraprilias@student.ub.ac.id', '-'), +(147, 'Angela Djunaedi', 'PPDS', 'Bedah Plastik Rekonstruksi dan Estetik', 'angeladjunaedi@student.ub.ac.id', '-'), +(148, 'Fitria Trisna Putri', 'PPDS', 'Bedah Plastik Rekonstruksi dan Estetik', 'fitriatrisnap@student.ub.ac.id', '-'), +(149, 'Michele Gondokesumo', 'PPDS', 'Bedah Plastik Rekonstruksi dan Estetik', 'michelegondo05@student.ub.ac.id', '-'), +(150, 'Wening Hapsari', 'PPDS', 'Bedah Plastik Rekonstruksi dan Estetik', 'weninghapsari@student.ub.ac.id', '-'), +(151, 'riestya arum pemata', 'PPDS', 'Bedah Plastik Rekonstruksi dan Estetik', 'riestyaarump@student.ub.ac.id', '-'), +(152, 'Marina Tandarto', 'PPDS', 'Bedah Plastik Rekonstruksi dan Estetik', 'rinatandarto@student.ub.ac.id', '-'), +(153, 'Farida Dwi Irnawati', 'PPDS', 'Ilmu Bedah', 'farida310792@student.ub.ac.id', '-'), +(154, 'Amrina Rosyada', 'PPDS', 'Ilmu Bedah', 'rosyadamrina@student.ub.ac.id', '-'), +(155, 'Dr. Etna Irianti Putri', 'PPDS', 'Ilmu Bedah', 'etnairianti@student.ub.ac.id', '-'), +(156, 'Kevin Horas', 'PPDS', 'Ilmu Bedah', 'kevinhoras@student.ub.ac.id', '-'), +(157, 'ERIC YAYANG SUHANDA', 'PPDS', 'Ilmu Bedah', 'ericyayang@student.ub.ac.id', '-'), +(158, 'Nan Bareno Chairus', 'PPDS', 'Ilmu Bedah', 'barenbareno@student.ub.ac.id', '-'), +(159, 'Akhmad Ferro Avisena', 'PPDS', 'Ilmu Bedah', 'ferroavisena@student.ub.ac.id', '-'), +(160, 'Sabrinadia H. Hantoko', 'PPDS', 'Ilmu Bedah', 'sabrinahanareta@student.ub.ac.id', '-'), +(161, 'IBRAHIM YUSUF NASUTION', 'PPDS', 'Ilmu Bedah', 'baimyusuf@student.ub.ac.id', '-'), +(162, 'dr. Polce Dicky Sampelimbong', 'PPDS', 'Ilmu Bedah', 'polcedicky@student.ub.ac.id', '-'), +(163, 'Faizal Makharim', 'PPDS', 'Ilmu Bedah', 'faizal93@student.ub.ac.id', '-'), +(164, 'Avan Guntur Satriawan', 'PPDS', 'Ilmu Bedah', 'avanguntur@student.ub.ac.id', '-'), +(165, 'Aprianda Saputra', 'PPDS', 'Ilmu Bedah', 'aprianda@student.ub.ac.id', '-'), +(166, 'Hari Sudrajat', 'PPDS', 'Ilmu Bedah', 'harisudrajat116@student.ub.ac.id', '-'), +(167, 'Fazlur Risyad Laochi', 'PPDS', 'Ilmu Bedah', 'risyadlaochi@student.ub.ac.id', '-'), +(168, 'Satria Candra Kusuma', 'PPDS', 'Ilmu Bedah', 'satriadiva2022@student.ub.ac.id', '-'), +(169, 'SOVIANA MAHDIYAKSA', 'PPDS', 'Ilmu Bedah', 'soviana89@student.ub.ac.id', '-'), +(170, 'Wahju Sigit Tjahjono Putro', 'PPDS', 'Ilmu Bedah', 'wahjusigit@student.ub.ac.id', '-'), +(171, 'Hanif Yusroni', 'PPDS', 'Ilmu Bedah', 'hanifyusroni@student.ub.ac.id', '-'), +(172, 'Kevin Octavian', 'PPDS', 'Ilmu Bedah', 'kevinocta08@student.ub.ac.id', '-'), +(173, 'Arief Suhadi', 'PPDS', 'Ilmu Bedah', 'ariefsuhadi@student.ub.ac.id', '-'), +(174, 'Andri Markhoni Permana', 'PPDS', 'Ilmu Bedah', 'andrimp@student.ub.ac.id', '-'), +(175, 'ARIF PRIANGGARA', 'PPDS', 'Ilmu Bedah', 'arifprianggara@student.ub.ac.id', '-'), +(176, 'Danar Fahmi Sudarsono', 'PPDS', 'Ilmu Bedah', 'danarfs@student.ub.ac.id', '-'), +(177, 'bramantya andyatma', 'PPDS', 'Ilmu Bedah', 'bramayu542019@student.ub.ac.id', '-'), +(178, 'M Arif Kurniawan', 'PPDS', 'Ilmu Bedah', 'marifkurniawan@student.ub.ac.id', '-'), +(179, 'Nugroho Sondrio Harsono', 'PPDS', 'Ilmu Bedah', 'sondrio@student.ub.ac.id', '-'), +(180, 'Kresna Ardinugraha Widayat', 'PPDS', 'Ilmu Bedah', 'kresna_widayat@student.ub.ac.id', '-'), +(181, 'Mohammad Rizki', 'PPDS', 'Ilmu Bedah', 'tigorrizky@student.ub.ac.id', '-'), +(182, 'Teuku Harmawansyah', 'PPDS', 'Ilmu Bedah', 'teukuh1992@student.ub.ac.id', '-'), +(183, 'Jessy Teressa Yang', 'PPDS', 'Ilmu Bedah', 'jessyteressa@student.ub.ac.id', '-'), +(184, 'Noerdian Syah', 'PPDS', 'Ilmu Bedah', 'noerdian@student.ub.ac.id', '-'), +(185, 'Jonathan Hartanto', 'PPDS', 'Ilmu Bedah', 'jonathan89@student.ub.ac.id', '-'), +(186, 'Koernia Hezkia Yonathan', 'PPDS', 'Ilmu Bedah', 'koerniahezkia@student.ub.ac.id', '-'), +(187, 'Muh. Kafabillah', 'PPDS', 'Ilmu Bedah', 'mkafabillah@student.ub.ac.id', '-'), +(188, 'Riz\'q Threevisca Chriswantara', 'PPDS', 'Ilmu Bedah', 'rizqtchris@student.ub.ac.id', '-'), +(189, 'Sebastian Ahmad', 'PPDS', 'Ilmu Bedah', 'sebastianahmad@student.ub.ac.id', '-'), +(190, 'Goustaf Pandy Hatta', 'PPDS', 'Ilmu Bedah', 'goustafpandy@student.ub.ac.id', '-'), +(191, 'muhammad hilman bimadi', 'PPDS', 'Ilmu Bedah', 'mhilmanbimadi@student.ub.ac.id', '-'), +(192, 'Dwi Cahya Ramadhan Pranoto', 'PPDS', 'Ilmu Bedah', 'yayanramadhan@student.ub.ac.id', '-'), +(193, 'Darmandaru Nugroho', 'PPDS', 'Ilmu Bedah', 'darmandarudr@student.ub.ac.id', '-'), +(194, 'Alvin Rifqy', 'PPDS', 'Ilmu Bedah', 'alvinrifqymd@student.ub.ac.id', '-'), +(195, 'Cindy Alverina', 'PPDS', 'Ilmu Bedah', 'cindyalv@student.ub.ac.id', '-'), +(196, 'Chelsea Gabriella Gunawan', 'PPDS', 'Ilmu Bedah', 'chelseagunawan@student.ub.ac.id', '-'), +(197, 'Tea Karina Sudharso', 'PPDS', 'Ilmu Bedah', 'tkarinas@student.ub.ac.id', '-'), +(198, 'Sely Maks', 'PPDS', 'Ilmu Bedah', 'selymaks@student.ub.ac.id', '-'), +(199, 'Amaro Yudho Wibowo', 'PPDS', 'Ilmu Bedah', 'amaroyudho@student.ub.ac.id', '-'), +(200, 'Aditya Arifudin Bachtiar', 'PPDS', 'Ilmu Bedah', 'aditya_ab@student.ub.ac.id', '-'), +(201, 'Shafri Nahdi', 'PPDS', 'Ilmu Bedah', 'shafrinahdi@student.ub.ac.id', '-'), +(202, 'Mudzakkir Taufiqur Rahman', 'PPDS', 'Ilmu Bedah', 'taufiqsurgeon@student.ub.ac.id', '-'), +(203, 'Putri Lissanawidya', 'PPDS', 'Ilmu Bedah', 'putrilissa@student.ub.ac.id', '-'), +(204, 'Geovan Hananto', 'PPDS', 'Ilmu Bedah', 'geohanantosurg@student.ub.ac.id', '-'), +(205, 'Imam Faiq Habibur Rohman', 'PPDS', 'Ilmu Bedah', 'faiqhr@student.ub.ac.id', '-'), +(206, 'Dr. dr. Arif Widiatmoko, Sp.KK(K)', 'DPJP', 'Dermatologi', 'arif_fk@ub.ac.id', '-'), +(207, 'Dr. dr. Sinta Murlistyarini, Sp.KK(K)', 'DPJP', 'Dermatologi', 'sintamur@ub.ac.id', '-'), +(208, 'dr. Dhany Prafita Ekasari, Sp.KK', 'DPJP', 'Dermatologi', 'dhany_prafita@ub.ac.id', 'dhanyprafita@yahoo.com'), +(209, 'dr. Herwinda Brahmanti, Sp.KK(K), M.Sc', 'DPJP', 'Dermatologi', 'dr_herwinda@ub.ac.id', '-'), +(210, 'dr. Anggun Putri Yuniaswan, Sp.KK', 'DPJP', 'Dermatologi', 'anggun@ub.ac.id', '-'), +(211, 'Dr. dr. Dhelya Widasmara, Sp.KK(K)', 'DPJP', 'Dermatologi', 'dhelyawidasmara@ub.ac.id', 'dhelyawidasmara@gmail.com'), +(212, 'Dr. dr. Boedhy Setyanto, Sp.KK', 'DPJP', 'Dermatologi', 'boedhysetyanto@ub.ac.id', 'dearenzy@yahoo.com'), +(213, 'dr. Intan Wasaputri Donoseputro, Sp.D.V.', 'DPJP', 'Dermatologi', 'intanwasap@ub.ac.id', ''), +(214, 'dr. Lita Setyowatie, Sp.KK(K)', 'DPJP', 'Dermatologi', 'lita84dv@ub.ac.id', 'lita_centik@yahoo.com'), +(215, 'dr. Suci Prawitasari, Sp.KK(K)', 'DPJP', 'Dermatologi', 'suci_prawitasari@ub.ac.id', 'dr.suci.p@gmail.com'), +(216, 'dr. Santosa Basuki, Sp.KK(K)', 'DPJP', 'Dermatologi', '-', 'sant911@yahoo.com'), +(217, 'dr. Sekar Puspita Lilasari, Sp.KK', 'DPJP', 'Dermatologi', '-', 'drsekarpuspita@gmail.com'), +(218, 'dr. Marta Dwi Rifka, Sp.KK', 'DPJP', 'Dermatologi', '-', 'dwirifkamarta@gmail.com'), +(219, 'dr. Adinda Amalia Dani, Sp.DV', 'DPJP', 'Dermatologi', '-', 'adinda.amaliadani@gmail.com'), +(220, 'dr. Aunur Rofiq, Sp.D.V.E., Subsp. D.A.I., FINSDV, FAADV', 'DPJP', 'Dermatologi', 'aunurrofiq.fk@ub.ac.id', 'aunurrofiq.fk@ub.ac.id\nqiphor@yahoo.com'), +(221, 'Dyah Ayu Sakinah', 'PPDS', 'Dermatologi', 'dyahayusakinah@student.ub.ac.id', '-'), +(222, 'Thalia Virgina Putri Suharli', 'PPDS', 'Dermatologi', 'thaliasuharli@student.ub.ac.id', '-'), +(223, 'Deriel Elka Hidayat', 'PPDS', 'Dermatologi', 'derielelka@student.ub.ac.id', '-'), +(224, 'Nadia Aprilia Fitriana', 'PPDS', 'Dermatologi', 'nadiaaprilia92@student.ub.ac.id', '-'), +(225, 'SEPTINA YOSEPHINE', 'PPDS', 'Dermatologi', 'josesamosir89@student.ub.ac.id', '-'), +(226, 'Mugi Restiana Utami', 'PPDS', 'Dermatologi', 'mugirestiana@student.ub.ac.id', '-'), +(227, 'Epifania Fitriana Adna', 'PPDS', 'Dermatologi', 'epifania@student.ub.ac.id', '-'), +(228, 'Arika Latashia Adelia', 'PPDS', 'Dermatologi', 'arikalatashia@student.ub.ac.id', '-'), +(229, 'Purna Dwi Saputra', 'PPDS', 'Dermatologi', 'purnasaputra@student.ub.ac.id', '-'), +(230, 'Rhea Tiara Dinata', 'PPDS', 'Dermatologi', 'drheatiara@student.ub.ac.id', '-'), +(231, 'M. Edel Dwiputra Prawira', 'PPDS', 'Dermatologi', 'edeldwiputra10@student.ub.ac.id', '-'), +(232, 'Fitriani Widhiastuti', 'PPDS', 'Dermatologi', 'fitrianiw150588@student.ub.ac.id', '-'), +(233, 'RASINTA AYUDYA DELTANIA, dr.', 'PPDS', 'Dermatologi', 'rasintadeltania@student.ub.ac.id', '-'), +(234, 'Pradissa Avia Emeralda', 'PPDS', 'Dermatologi', 'emeralda@student.ub.ac.id', '-'), +(235, 'Astrid Amanda Wahyu Putri', 'PPDS', 'Dermatologi', 'astridamandawp@student.ub.ac.id', '-'), +(236, 'Mita Permatasari Araminta', 'PPDS', 'Dermatologi', 'mita_pa97@student.ub.ac.id', '-'), +(237, 'Puspita Sari', 'PPDS', 'Dermatologi', 'puspitasari@student.ub.ac.id', '-'), +(238, 'Paul Michael Enrico Tansir', 'PPDS', 'Dermatologi', 'pauldvejan25@student.ub.ac.id', '-'), +(239, 'Alvina Ulfah Rusmayuni', 'PPDS', 'Dermatologi', 'alvinarusmayuni@student.ub.ac.id', '-'), +(240, 'Dedy Budi Kurniawan', 'PPDS', 'Dermatologi', 'dedybudik@student.ub.ac.id', '-'), +(241, 'TAVIA YULIASTUTI PRASTIKA', 'PPDS', 'Dermatologi', 'taviayp@student.ub.ac.id', '-'), +(242, 'Taneya Putri Zahra', 'PPDS', 'Dermatologi', 'taneyazahra@student.ub.ac.id', '-'), +(243, 'Detris Visiadina', 'PPDS', 'Dermatologi', 'detris@student.ub.ac.id', '-'), +(244, 'Safira Firdaus', 'PPDS', 'Dermatologi', 'safirafirdaus@student.ub.ac.id', '-'), +(245, 'Viga Resfikasari', 'PPDS', 'Dermatologi', 'resfika@student.ub.ac.id', '-'), +(246, 'Desty Permataningtyas', 'PPDS', 'Dermatologi', 'desty121290@student.ub.ac.id', '-'), +(247, 'Marshandyar Aisha Dwitarahma', 'PPDS', 'Dermatologi', 'marshandyarad26@student.ub.ac.id', '-'), +(248, 'Dr.dr. Tatit Nurseta, Sp.OG (K)ย ', '', 'Obsgyn', 'tns_obg.fk@ub.ac.id', ''), +(249, 'dr. Yahya Irwanto, Sp.OG (K)', '', 'Obsgyn', 'yahyairwanto50@ub.ac.id', ''), +(250, 'Dr.dr. I Wayan Arsana Wiyasa, Sp.OG (K)ย ', '', 'Obsgyn', 'arSp.OG.fk@ub.ac.id', ''), +(251, 'dr. Pande Made Dwi Jayasa, Sp.OG (K)ย ', '', 'Obsgyn', 'pmd_obg.fk@ub.ac.id', ''), +(252, 'dr. Sutrisno, Sp.OG (K)', '', 'Obsgyn', 'snoSp.OG.fk@ub.ac.id', ''), +(253, 'dr. Hermawan Wibisono, Sp.OG (K)PhD', '', 'Obsgyn', 'sonspog.fk@ub.ac.id', ''), +(254, 'Dr. dr. Bambang Rahardjo, Sp.OG (K)', '', 'Obsgyn', 'bar_obg.fk@ub.ac.id', ''), +(255, 'Dr. dr. Nugrahanti Prasetyorini, Sp.OG (K)ย ', '', 'Obsgyn', 'nuke_obg.fk@ub.ac.id', ''), +(256, 'dr. Mukhamad Nooryanto, Sp.OG (K)', '', 'Obsgyn', 'mor_feto.fk@ub.ac.id', ''), +(257, 'dr. Suheni Ninik Hariyati, Sp.OG', '', 'Obsgyn', 'suheni.fk@ub.ac.id', ''), +(258, 'dr. Anggia Prameswari, Sp. OG', '', 'Obsgyn', '-', ''), +(259, 'Dr. dr. Edi Mustofa, Sp.OG (K)', '', 'Obsgyn', '-', ''), +(260, 'DR. dr. Rahajeng, Sp. OG (K)ย ', '', 'Obsgyn', 'rahajeng.fk@ub.ac.id', ''), +(261, 'dr. Rudi Priyo Utomo, Sp.OG', '', 'Obsgyn', '-', ''), +(262, 'Dr. dr. I Wayan Agung Indrawan, Sp.OG(K)', '', 'Obsgyn', 'dr_iwa.fk@ub.ac.id', ''), +(263, 'dr. Adityo Prabowo, Sp.OG, M.Ked.Klin', '', 'Obsgyn', 'adityoprabowo@ub.ac.id', ''), +(264, 'dr. Arghya Wicaksana, Sp.OG.', '', 'Obsgyn', 'arghya@ub.ac.id', ''), +(265, 'dr. Cholid Rohman Riskianto, Sp.OG', '', 'Obsgyn', '-', ''), +(266, 'dr. Irfani Baihaqi, Sp.OG', '', 'Obsgyn', '-', ''), +(267, 'dr. Eka Nasrur Maulana, Sp.OG', '', 'Obsgyn', '-', ''), +(268, 'dr. Fatmasari Perdana Menur, Sp.OG', '', 'Obsgyn', '-', ''), +(269, 'dr. Nirmala Gina Prabawati, Sp.OG', '', 'Obsgyn', '-', ''), +(270, 'dr. Onni Dwi Arianto, Sp.OG', '', 'Obsgyn', '-', ''), +(271, 'dr. Puspita Handayani, Sp.OG(K)', '', 'Obsgyn', '-', ''), +(272, 'dr. Roni Subrata, Sp.OG', '', 'Obsgyn', '-', ''), +(273, 'dr. Teguh Wiyono, Sp.OG', '', 'Obsgyn', '-', ''), +(274, 'dr. Handi Firmansyah, Sp.OG, M.Ked.Klin', '', 'Obsgyn', '-', ''), +(275, 'dr. Dhian Eka Putri Harnandari, Sp.OG', '', 'Obsgyn', '-', ''), +(276, 'dr. Aditya Fendi Uji Pamungkas, Sp.OG', '', 'Obsgyn', '-', ''), +(277, 'dr. Mulyo Hadi Wibowo, Sp.OG', '', 'Obsgyn', '-', ''), +(278, 'dr. Adin Yan Permana, Sp.OG', '', 'Obsgyn', '-', ''), +(279, 'dr. Mochamad Putro Argo, Sp.OG', '', 'Obsgyn', '-', ''), +(280, 'dr. Margaretha Claudhya Febryanna, Sp.OG, M.Ked.Klin', '', 'Obsgyn', '-', ''), +(281, 'dr. Sasmojo Widito, SpJP (K)', '', 'Jantung', 'sasmojowidito@ub.ac.id', ''), +(282, 'dr. Valerinna Yogibuana Swastika Putri, SpJP(K)', '', 'Jantung', 'valerinnaysp@ub.ac.id', ''), +(283, 'Prof. dr. M. Saifur Rohman, SpJP (K), PhDย ', '', 'Jantung', 'ippoenk@ub.ac.id', ''), +(284, 'dr. Ardian Rizal, SpJP (K)', '', 'Jantung', 'drardianrizal@ub.ac.id', ''), +(285, 'dr. Anna Fuji Rahimah, SpJP (K)', '', 'Jantung', 'drannafuji@ub.ac.id', ''), +(286, 'dr. Cholid Tri Tjahjono, M.Kes, SpJP (K)', '', 'Jantung', 'cholidtri@ub.ac.id', ''), +(287, 'dr. Heny Martini, SpJP (K)ย ', '', 'Jantung', 'henymartini@ub.ac.id', ''), +(288, 'dr. Budi Satrijo, SpJP (K)', '', 'Jantung', 'budisatrijo@ub.ac.id', ''), +(289, 'dr. Novi Kurnianingsih, SpJP (K)ย ', '', 'Jantung', 'novikur@ub.ac.id', ''), +(290, 'dr. Indra Prasetya, SpJP (K)', '', 'Jantung', 'indraprasetya@ub.ac.id', ''), +(291, 'dr. Veny Mayangsari, SpJP', '', 'Jantung', '-', ''), +(292, 'dr. Setyasih Anjarwani, SpJP (K)', '', 'Jantung', 'setyasih@ub.ac.id', ''), +(293, 'dr. Adhika Prastya Wikananda, SpJPย ', '', 'Jantung', '-', ''), +(294, 'dr. Wella Karolina, SpJP (K)', '', 'Jantung', 'wella.karolina@ub.ac.id', ''), +(295, 'dr. Yoga Waranugraha, Sp.JP, Subp.Ar.(K)', '', 'Jantung', 'mr.waranugraha@ub.ac.id', ''), +(296, 'Prof. Dr. dr. Djanggan Sargowo, Sp.PD, Sp.JP(K)', '', 'Jantung', 'djanggan@ub.ac.id', ''), +(297, 'Dr. dr. Saskia Dyah Handari, Sp.JP(K)', '', 'Jantung', '-', ''), +(298, 'dr. Arief Wibisono, Sp.JP', '', 'Jantung', '-', ''), +(299, 'dr. Evit Ruspiono, Sp.JP', '', 'Jantung', '-', ''), +(300, 'dr. Tri Astiawaty, Sp.JP', '', 'Jantung', 'triastiawati@ub.ac.id', ''), +(301, 'dr. Adriyawan Widya Nugraha, Sp.JP(K)', '', 'Jantung', '-', ''), +(302, 'dr. Andi Wahjono Adi, Sp.JP(K)', '', 'Jantung', '-', ''), +(303, 'dr. Fitranti Suciati Laitupa, Sp.JP(K)', '', 'Jantung', '-', ''), +(304, 'dr. Dea Arie Kurniawan, Sp.JP', '', 'Jantung', 'dea.kurniawanlec.ub.ac.id', ''), +(305, 'Dr. dr. Susanthy Dj, Sp.P (K)ย ', '', 'Paru', 'susanthy@ub.ac.id', ''), +(306, 'dr. Aditya Sp.P', '', 'Paru', '-', ''), +(307, 'dr. Ungky Agus Setyawan, Sp.P (K)ย ', '', 'Paru', 'dr_ungky_paru@ub.ac.id', ''), +(308, 'dr. Suryanti Dwi Pratiwi, Sp.P (K)', '', 'Paru', 'suryanti@ub.ac.id', ''), +(309, 'dr. Ngakan Putu P Putra, Sp.P (K)', '', 'Paru', 'ngakanputu@ub.ac.id', ''), +(310, 'dr. Rezki Tantular, Sp.P (K)', '', 'Paru', '-', ''), +(311, 'dr. Triwahju Astuti, M.Kes, Sp.P (K)', '', 'Paru', 'astuti@ub.ac.id', ''), +(312, 'dr. Iin Noor Chozin, Sp.P', '', 'Paru', 'iin@ub.ac.id', ''), +(313, 'dr. Sastia Rakhma, Sp.P', '', 'Paru', 'sastiarakhma@ub.ac.id', ''), +(314, 'dr. Fitri Indah Sari, Sp.P', '', 'Paru', 'fitrindahs1705@ub.ac.id', ''), +(315, 'dr. Aditya Sri Listyoko, Sp.P(K)', '', 'Paru', 'adityalistyoko@ub.ac.id', ''), +(316, 'Dr. dr. Jani Jane Rosihaningsih Sugiri, Sp.P(K)', '', 'Paru', 'jani@ub.ac.id', ''), +(317, 'dr. Deden Permana, Sp.P', '', 'Paru', '-', ''), +(318, 'dr. Yunita Eka Wati, Sp.P', '', 'Paru', '-', ''), +(319, 'dr. Christian Surya Eka Putra, Sp.P', '', 'Paru', '-', ''), +(320, 'dr. Muhamad Yusuf Musthafa, Sp.P', '', 'Paru', '-', ''), +(321, 'dr. Didi Candradikusuma, Sp.P.D,K-PTIย ', '', 'IPD', 'didi_candradikusuma.fk@ub.ac.id', ''), +(322, 'Dr.dr. Cesarius Singgih Wahono, Sp.P.D,K-Rย ', '', 'IPD', 'singgih_wahono.fk@ub.ac.id', ''), +(323, 'Dr. dr. Sri Soenarti, Sp.P.D., K-Ger', '', 'IPD', 'sri_sunarti.fk@ub.ac.id', ''), +(324, 'dr. Laksmi Sasiarini, Sp.P.D., K-EMD', '', 'IPD', 'laksmi_sasiarini@ub.ac.id', ''), +(325, 'dr. Herwindo Pudjo Brahmantyo, Sp.P.D., K-HOMย ', '', 'IPD', 'herwindopudjo.ipd@ub.ac.id', ''), +(326, 'dr. Rulli Rosandi, Sp.P.D., K-EMD', '', 'IPD', 'rulliendokrin@ub.ac.id', ''), +(327, 'dr. Bagus Putu Putra Suryana, Sp.PD,K-R', '', 'IPD', 'putra_suryana@ub.ac.id', ''), +(328, 'dr. Syifa Mustika, Sp.P.D, K-GEH', '', 'IPD', 'drtika_78@ub.ac.id', ''), +(329, 'Dr. dr. Atma Gunawan, Sp.P.D., K-GHย ', '', 'IPD', 'atma_gunawan.fk@ub.ac.id', ''), +(330, 'Dr. dr. Supriono, Sp.P.D,K-GEH', '', 'IPD', 'supriono_ipd.fk@ub.ac.id', ''), +(331, 'dr. Siti Fatma Prehatiningsih, Sp.P.D.', '', 'IPD', '-', ''), +(332, 'dr. Heri Sutanto, Sp.P.D', '', 'IPD', 'herisutanto.ipd@ub.ac.id', ''), +(333, 'dr. Perdana Aditya Rahman, Sp.P.D., K-R', '', 'IPD', 'perdana.aditya@ub.ac.id', ''), +(334, 'dr. Eden Suryoiman Winoto, Sp.P.D', '', 'IPD', 'dreden86.ipd@ub.ac.id', ''), +(335, 'dr. Bogi Pratomo W., Sp.P.D. K-GEH', '', 'IPD', 'bogi_pratomo.fk@ub.ac.id', ''), +(336, 'Dr. dr. Shinta Oktya Wardhani, Sp.P.D., K-HOMย ', '', 'IPD', 'shinta_oktya.fk@ub.ac.id', ''), +(337, 'Dr. Achmad Rifai, Sp.P.D., K-GH', '', 'IPD', 'achmad_rifai.fk@ub.ac.id', ''), +(338, 'Dr. dr. Nur Samsu, Sp.P.D., K-GH', '', 'IPD', 'nur_samsu.fk@ub.ac.id', ''), +(339, 'dr. Nina Nurarifah, Sp.PD, K-HOM', '', 'IPD', 'ninanur@ub.ac.id', ''), +(340, 'dr. Muhammad Anshory, Sp.PD', '', 'IPD', 'muhammadanshory@ub.ac.id', ''), +(341, 'dr. Dewi Indiastari, Sp.PD., K-PTI.', '', 'IPD', 'indiastari@ub.ac.id', ''), +(342, 'dr. Nyoman Satvika Dharma Yudha, Sp.PD., KEMD', '', 'IPD', 'nyomansatvika27@ub.ac.id', ''), +(343, 'dr. Milanitalia Gadys Rosandy, Sp.PD', '', 'IPD', 'milanitalia@ub.ac.id', ''), +(344, 'dr. Mirza Zaka Pratama, M.Biomed, Sp.PD', '', 'IPD', 'mirzapratama@ub.ac.id', ''), +(345, 'dr. Djoko Heri Hermanto, Sp.PD, K-HOM', '', 'IPD', 'djoko_heri.fk@ub.ac.id', ''), +(346, 'Dr. dr. Niniek Budiarti, Sp.PD, K-PTI', '', 'IPD', 'niniek_budiarti.fk@ub.ac.id', ''), +(347, 'dr. Fajar Hadi Wijayanto, Sp.PD', '', 'IPD', 'fajarhadiw@ub.ac.id', ''), +(348, 'Prof. Dr. dr. Achmad Rudijanto, Sp.PD.KEMD', '', 'IPD', 'achmad_rudijanto.fk@ub.ac.id', ''), +(349, 'dr. Erdilian Jodi Putra Pratama, Sp.PD.', '', 'IPD', 'erdilianjodi90@ub.ac.id', ''), +(350, 'dr. Chrisandi Yusuf Rizqiansyah, Sp.PD.', '', 'IPD', 'chrisandi150824@ub.ac.id', ''), +(351, 'dr. Jonny Karunia Fajar, Sp.PD.', '', 'IPD', 'jonnykf@ub.ac.id', ''), +(352, 'dr. Rinadhi Reza Bramantya, Sp.PD, K-EMD', '', 'IPD', 'rezabramantya@ub.ac.id', ''), +(353, 'dr. Putu Moda Arsana, Sp.PD, K-EMD', '', 'IPD', 'putu_moda.fk@ub.ac.id', ''), +(354, 'dr. Mohamad Jasin Jachja, Sp.PD', '', 'IPD', '-', ''), +(355, 'dr. Nuraida Wisudani, Sp.PD', '', 'IPD', '-', ''), +(356, 'dr. Mochamad Fachrureza, Sp.PD', '', 'IPD', '-', ''), +(357, 'dr. Hesti Purwanti, Sp.PD', '', 'IPD', '-', ''), +(358, 'dr. Muhammad Hamdan Yuwaafi, Sp.PD', '', 'IPD', '-', ''), +(359, 'Prof. Dr. dr. Handono Kalim, Sp.PD, K-R', '', 'IPD', '-', ''), +(360, 'dr. Dewi Sri Wulandari, Sp.PD.', '', 'IPD', '-', ''), +(361, 'dr. Rezdy Tofan Bhaskara, Sp.PD.', '', 'IPD', '-', ''), +(362, 'dr. Surya Abadi Kristyoadi, Sp.PD', '', 'IPD', '-', ''), +(363, 'dr. Affa Kysa Waafi, Sp.PD', '', 'IPD', '-', ''), +(364, 'dr. Artono Isharanto, Sp B,. Sp BTKV', '', 'Bedah TKV', 'a.isharanto@ub.ac.id', ''), +(365, 'dr. Koernia Kusuma Wardhana, Sp.BTKV(K)-VE', '', 'Bedah TKV', 'masbobby1984@ub.ac.id', ''), +(366, 'dr Imam Suseno, Sp BTKV', '', 'Bedah TKV', 'bayu_romanisti@ub.ac.id', ''), +(367, 'dr.Gracelia Ruth Elisabeth D,Sp.B.TKV, M.Med.', '', 'Bedah TKV', 'graceliadamanik@ub.ac.id', ''), +(368, 'dr. Chaidar Muttaqin, Sp.B.T.K.V', '', 'Bedah TKV', '-', ''), +(369, 'Dr. dr. Farhad Baliatif, Sp BS (K)', '', 'Bedah Syaraf Pediatri', '-', ''), +(370, 'dr. Doni Wisnu Wardhana, Sp BS', '', 'Bedah Syaraf Onkologi', '-', ''), +(371, 'Dr. med. dr. Tommy Alfandy Nazwar, Sp.BS(K)', '', 'Bedah Syaraf Spine', 'tommy@ub.ac.id', ''), +(372, 'Dr. dr. Farhad Bal\'Afif, Sp.BS', '', 'Bedah Syaraf', 'farblf@ub.ac.id', ''), +(373, 'dr. Mohammad Zakaria Shahab, Sp.BS', '', 'Bedah Syaraf', '-', ''), +(374, 'dr. Setyo Sugiharto, Sp. B-KBDย ', '', 'Bedah Digestive', 'setyosugiarto@ub.ac.id', ''), +(375, 'Dr. dr. Aries Budianto, Sp.B-KBD', '', 'Bedah Digestive', 'ariesb.bdmlg@ub.ac.id', ''), +(376, 'dr. Heru Sulistyo, Sp. B-KBD', '', 'Bedah Digestive', 'herusulistyo70@ub.ac.id', ''), +(377, 'dr. M. S. Niam, M.Kes, Sp.B-KBD', '', 'Bedah Digestive', 'm2sniam@ub.ac.id', ''), +(378, 'dr. Dwicha Rahmawansa Siswardana, Sp.B-KBD', '', 'Bedah Digestive', 'dwicha2783.fk@ub.ac.id', ''), +(379, 'dr. Wahyu Harisanyoto, Sp.B.KBD', '', 'Bedah Digestive', '-', ''), +(380, 'dr. Herman Josep Limpat, Sp BP ย– RE', '', 'Bedah Plastik', 'wihastyoko@ub.ac.id', ''), +(381, 'dr. Arviansyah, Sp BP, RE', '', 'Bedah Plastik', 'arvianbedahplas@ub.ac.id', ''), +(382, 'dr. Wilma Agustina, Sp.B.P.R.E', '', 'Bedah Plastik', 'wilmaagustina@ub.ac.id', ''), +(383, 'dr. Yudi Siswanto, MSc, M.Ked.Klin., Sp.B.P.R.Eย ', '', 'Bedah Plastik', 'yudi.siswanto@ub.ac.id', ''), +(384, 'dr. Elisabeth Prajanti Sintaningrum, Sp.B.P.R.E', '', 'Bedah Plastik', 'sintaningrum@ub.ac.id', ''), +(385, 'dr. Santi Devina, Sp.BP-RE', '', 'Bedah Plastik', '-', ''), +(386, 'dr. Robertus Arian Datusanantyo, MPH, MKed, Klin., SpBPRE, Subsp.K.M.(K)', '', 'Bedah Plastik', 'arian@lec.ub.ac.id', ''), +(387, 'dr. Lulik Inggarwati, Sp B,. Sp BA Anakย ', '', 'Bedah Anak', 'matahari63@ub.ac.id', ''), +(388, 'dr. Widanto, Sp B,. Sp BA', '', 'Bedah Anak', 'widanto@ub.ac.id', ''), +(389, 'dr. Sinung Wikanandi, Sp. BA', '', 'Bedah Anak', 'sinung.wikanadi@ub.ac.id', ''), +(390, 'dr. Ririd Tri Pitaka, Sp.BA', '', 'Bedah Anak', '-', ''), +(391, 'Dr. dr. Mochamad Bachtiar Budianto, Sp.B(K)Onk', '', 'Bedah Onkologi', 'bachtiarb@ub.ac.id', ''), +(392, 'dr. Hery Susilo, Sp.B(K)Onk', '', 'Bedah Onkologi', 'herysusilo@ub.ac.id', ''), +(393, 'dr. Sidho Hantoko, Sp.B(K)Onk', '', 'Bedah Onkologi', 'sidhohantoko@ub.ac.id', ''), +(394, 'dr. Dian Pratiwi, Sp.B., Subsp.Onk.(K)', '', 'Bedah Onkologi', 'depe_1104@ub.ac.id', ''), +(395, 'dr. Feri Nugroho, Sp.B(K)Onk', '', 'Bedah Onkologi', '-', ''), +(396, 'dr. Aditya Rachmat Febrianto, Sp.B.', '', 'Bedah', 'adityaeref19@ub.ac.id', ''), +(397, 'dr. Nurudin Syahadat, Sp.B', '', 'Bedah', '-', ''), +(398, 'dr. Hananta Sudibyoko, Sp.B', '', 'Bedah', '-', ''), +(399, 'dr. Rizki Hanifan Nugraha, Sp.B', '', 'Bedah', '-', ''), +(400, 'dr. Andreas Rendra, Sp.B', '', 'Bedah', '-', ''), +(401, 'dr. Primana Setya Nugraha, MPH., Sp.B.', '', 'Bedah', '-', ''), +(402, 'dr. Damian Dwi Rahadi, Sp.B.,M.Ked.Klin', '', 'Bedah', '-', ''), +(403, 'dr. Albert Linardy, Sp.B', '', 'Bedah', '-', ''), +(404, 'dr. Zaki Yamani, Sp.B', '', 'Bedah', '-', ''), +(405, 'dr.Thomas Erwin CJ Huwae, Sp.OT (K)', '', 'Orthopedi', 'huwaethomas@ub.ac.id', ''), +(406, 'dr.Agung Riyanto Budi Santoso, Sp.OT (K)', '', 'Orthopedi', 'agung_riyanto@ub.ac.id', ''), +(407, 'dr.Istan Irmansyah Irsan, Sp.OT (K)ย ', '', 'Orthopedi', 'istan_irmansyah@ub.ac.id', ''), +(408, 'dr.Satria Pandu Persada Isma, Sp.OT (K)', '', 'Orthopedi', 'percyisma@ub.ac.id', ''), +(409, 'dr.Syaifullah Asmiragani, Sp.OT (K)ย ', '', 'Orthopedi', 'syaifullahag@ub.ac.id', ''), +(410, 'dr.Andhika Yudistira, Sp.OT (K)', '', 'Orthopedi', 'andhika.yudhistira@ub.ac.id', ''), +(411, 'dr. Ery Satriawan, Sp. OT', '', 'Orthopedi', '-', ''), +(412, 'Dr.dr.Edi Mustamsir, Sp.OT (K)ย ', '', 'Orthopedi', 'edimustamsir@ub.ac.id', ''), +(413, 'dr.Krisna Yuarno Patama, Sp.OT (K)', '', 'Orthopedi', 'krisnayuarno@ub.ac.id', ''), +(414, 'dr.Ananto Satya Pradana Drajat, Sp.OT', '', 'Orthopedi', 'satyapradana88@ub.ac.id', ''), +(415, 'Prof.Dr.dr.Respati S. Dradjat, Sp.OT (K)ย ', '', 'Orthopedi', 'respatisdradjat@ub.ac.id', ''), +(416, 'dr.Panji Sananta, M.Ked, Sp.OT (K)', '', 'Orthopedi', 'panjisananta@ub.ac.id', ''), +(417, 'dr. Domy Pradana Putra, Sp.OT', '', 'Orthopedi', 'domy_pradana@ub.ac.id', ''), +(418, 'dr. Adhi Satriyo Utomo, Sp.OT.', '', 'Orthopedi', 'sam.ortho@ub.ac.id', ''), +(419, 'dr. Rakhmad Aditya Hernawan, Sp.OT.', '', 'Orthopedi', 'aditflea@ub.ac.id', ''), +(420, 'dr. Indo Rizki Pramulia, Sp.OT', '', 'Orthopedi', '-', ''), +(421, 'dr. Arianto Prabowo, Sp.OT', '', 'Orthopedi', '-', ''), +(422, 'dr. Brian Dhananjaya, Sp.OT', '', 'Orthopedi', '-', ''), +(423, 'dr. Broto Suwadji, Sp.OT', '', 'Orthopedi', '-', ''), +(424, 'dr. Hamzah, Sp.OT', '', 'Orthopedi', '-', ''), +(425, 'dr. Johan Bastian, Sp.OT', '', 'Orthopedi', '-', ''), +(426, 'dr. Mujiyono, Sp.OT(K)', '', 'Orthopedi', '-', ''), +(427, 'dr. R. Satriyo Aji, Sp.OT(K)', '', 'Orthopedi', '-', ''), +(428, 'dr. Rangga Arieza Fachlevi, M.Kes, Sp.OT', '', 'Orthopedi', '-', ''), +(429, 'Prof. Dr. dr. Mohamad Hidajat, Sp.B, Sp.OT(K)', '', 'Orthopedi', '-', ''), +(430, 'dr. Donny Noerhadiono C., Sp.OT(K) Spine', '', 'Orthopedi', '-', ''), +(431, 'dr. Dandy Drestanto Adiwignyo, SpOT', '', 'Orthopedi', '-', ''), +(432, 'dr. Anindita Eka Pramana Wijaya, SpOT', '', 'Orthopedi', '-', ''), +(433, 'dr. Besut Daryanto, SpB, Sp.U (K)ย ', '', 'Urologi', 'urobes.fk@ub.ac.id', ''), +(434, 'dr. Pradana Nurhadi, Sp.U', '', 'Urologi', 'dan_uro.fk@ub.ac.id', ''), +(435, 'dr. Kurnia Penta Seputra, Sp.U (K)ย ', '', 'Urologi', 'uropnt.fk@ub.ac.id', ''), +(436, 'dr. Taufiq Nur Budaya, Sp.U', '', 'Urologi', 'taufiq_uro.fk@ub.ac.id', ''), +(437, 'dr. Paksi Satyagraha, M.Kes, Sp.Uย ', '', 'Urologi', 'uropas.fk@ub.ac.id', ''), +(438, 'dr. Edy Wibowo, Sp.U', '', 'Urologi', '-', ''), +(439, 'dr. Medianto, Sp.U', '', 'Urologi', '-', ''), +(440, 'dr. Andri Kustono, Sp.U', '', 'Urologi', 'kustono_andri.fk@ub.ac.id', ''), +(441, 'dr. Athaya Febriantyo Purnomo, Sp.U.', '', 'Urologi', 'athayafp@ub.ac.id', ''), +(442, 'dr. Martha Hendry, Sp.U(K), MARS', '', 'Urologi', '-', ''), +(443, 'dr. Andrie Rhomdhon Kurniawan, Sp.U', '', 'Urologi', '-', ''), +(444, 'dr. Anton Hermawan, Sp.U', '', 'Urologi', '-', ''), +(445, 'dr. Yudi Y. Ambeng, Sp.U', '', 'Urologi', '-', ''), +(446, 'dr. Deddy Rasyidan Yulizar, Sp.U', '', 'Urologi', '-', ''), +(447, 'dr. Neila Raisa, Sp. S (K)', '', 'Neurologi', 'neilaraisa@ub.ac.id', ''), +(448, 'dr. Eko Arisetijono, Sp. S (K)', '', 'Neurologi', 'drekoarisetijono.fk@ub.ac.id', ''), +(449, 'dr. Rodhiyan Rakhmatiar, Sp.S (K) M. Biomed', '', 'Neurologi', 'odhy_neuro@ub.ac.id', ''), +(450, 'dr. Zamroni A, Sp. S (K)', '', 'Neurologi', 'dr_zamroniafif@ub.ac.id', ''), +(451, 'dr. Machlusil Husna, Sp. S (K)ย ', '', 'Neurologi', 'machlusilhusna.fk@ub.ac.id', ''), +(452, 'dr. Sri Budhi Rianawati, Sp. S (K)', '', 'Neurologi', 'rien62.fk@ub.ac.id', ''), +(453, 'Dr. dr. Shahdevi Nandar K, Sp. S (K)', '', 'Neurologi', 'shahdevinandar@ub.ac.id', ''), +(454, 'dr. Catur Arisetianto, Sp. S (K)', '', 'Neurologi', 'catur-ari@ub.ac.id', ''), +(455, 'dr. Widodo Mardi Santoso, Sp. S (K)', '', 'Neurologi', 'widodotita.fk@ub.ac.id', ''), +(456, 'dr. Badrul Munir, Sp. S (K)', '', 'Neurologi', 'badroel2007@ub.ac.id', ''), +(457, 'dr. Dessika Rahmawati, Sp. S (K)', '', 'Neurologi', 'dessikasps@ub.ac.id', ''), +(458, 'dr. Ria Damayanti, M.Biomed, Sp.S(K)', '', 'Neurologi', 'dr.riadamayanti@ub.ac.id', ''), +(459, 'dr. Adecya Amaryllis Risa Putri, Sp.N', '', 'Neurologi', '-', ''), +(460, 'Dr. dr. Rini Andriani, Sp.S(K)', '', 'Neurologi', '-', ''), +(461, 'dr. Hajeng Wulandari, Sp.A, Mbiomed', '', 'Anak', 'hajengwulandari.fk@ub.ac.id', ''), +(462, 'dr. Irfan Agus Salim, Sp.A, Mbiomed ', '', 'Anak', 'irfanagus.fk@ub.ac.id', ''), +(463, 'dr. Fadilah Muttaqin, Spp.A,MBiomed', '', 'Anak', '-', ''), +(464, 'dr. Ery Olivianto, Sp. A (K)', '', 'Anak', 'ery15.fk@ub.ac.id', ''), +(465, 'Dr.dr. Krisni Soebandijah, Sp.A(K)', '', 'Anak', 'krisni19.fk@ub.ac.id', ''), +(466, 'dr. Astrid Kristina Kardani, Sp. A, MBiomed', '', 'Anak', 'astridkardani.fk@ub.ac.id', ''), +(467, 'dr. Nugroho Danu Tri Subroto, Sp.A(K)', '', 'Anak', 'danu.dr@ub.ac.id', ''), +(468, 'dr. Irene Ratridewi, Sp.A(K), M.Kes', '', 'Anak', 'irene24.fk@ub.ac.id', ''), +(469, 'dr.Savitri Laksmi Winaputri, Sp.A', '', 'Anak', '-', ''), +(470, 'Dr.dr. Wisnu Barlianto, Sp.A(K), Msi.Med', '', 'Anak', 'wisnu_barlian@ub.ac.id', ''), +(471, 'dr. Desy Wulandari, Sp.A, M.Biomed', '', 'Anak', 'desywulandari@ub.ac.id', ''), +(472, 'dr. Satrio Wibowo, Sp.A(K), Msi.Medย ', '', 'Anak', 'satrio_wibowo@ub.ac.id', ''), +(473, 'dr. Muhammad Irawan, Sp.A, MBiomed', '', 'Anak', 'muhammadirawan.fk@ub.ac.id', ''), +(474, 'dr. A. Susanto Nugroho, Sp.A(K)ย ', '', 'Anak', 'susanto04.fk@ub.ac.id', ''), +(475, 'dr. Sonny Wicaksono, Sp. A, M.Kes', '', 'Anak', '-', ''), +(476, 'dr. Brigitta Ida RVC, Sp.A(K), M.Kes', '', 'Anak', 'briggita_vebi@ub.ac.id', ''), +(477, 'dr. Eko Sulistijono, Sp.A', '', 'Anak', 'eko25.fk@ub.ac.id', ''), +(478, 'Dr. dr. Ariani, M.Kes, Sp.A(K)', '', 'Anak', 'arianidr@ub.ac.id', ''), +(479, 'dr. Prasetya Ismail Permadi, Sp.A(K), M.Biomed', '', 'Anak', 'prasetyapermadi@ub.ac.id', ''), +(480, 'dr. Saptadi Yuliarto, M.Kes, Sp.A(K)', '', 'Anak', 'saptadiy@ub.ac.id', ''), +(481, 'Dr. dr. Harjoedi Adji Tjahjono, Sp.A(K)', '', 'Anak', 'haryudi_aji2000@ub.ac.id', ''), +(482, 'dr. Dyahris Koentartiwi, Sp.A(K)', '', 'Anak', 'dyahris08.fk@ub.ac.id', ''), +(483, 'dr. Muchammad Fahrul Udin, M.Kes, Sp.A, Subsp. Resp(K)', '', 'Anak', 'udin24.fk@ub.ac.id', ''), +(484, 'dr. Kurniawan Taufiq Kadafi, M.Biomed, Sp.A(K)', '', 'Anak', 'kadafi12.fk@ub.ac.id', ''), +(485, 'dr. Laurentia Ima Monica, Sp.A., M.Biomed.', '', 'Anak', 'monicasutatnto@ub.ac.id', ''), +(486, 'dr. Setya Mithra Hartiastuti, MSi.Med, Sp.A(K)', '', 'Anak', '-', ''), +(487, 'dr. Melany Farrahdilla, Sp.A, M.Kes', '', 'Anak', '-', ''), +(488, 'dr. Melinda, Sp.A, M.Biomed', '', 'Anak', '-', ''), +(489, 'dr. Mochamad Chabibi, Sp.A, M.Biomed', '', 'Anak', '-', ''), +(490, 'dr. Hidayati Utami Dewi, Sp.A', '', 'Anak', '-', ''), +(491, 'dr. Ardhanis Ramadhanti, Sp.A', '', 'Anak', '-', ''), +(492, 'dr. Emi Yulianti, Sp.A', '', 'Anak', '-', ''), +(493, 'dr. Herlin Kristanti, Sp.A', '', 'Anak', '-', ''), +(494, 'dr. Zuhrotul Aini, Sp.A', '', 'Anak', '-', ''), +(495, 'dr. Novi Efridayanti, Sp.A., M.Biomed', '', 'Anak', '-', ''), +(496, 'dr. Astri Proborini, Sp.A., M.Kes', '', 'Anak', '-', ''), +(497, 'dr. Charity Monica, Sp.A', '', 'Anak', '-', ''), +(498, 'dr.Dewangga Primananda Susanto, MMRS., Sp. A', '', 'Anak', '-', ''), +(499, 'dr. Tulus Sampurno, Sp.A', '', 'Anak', '-', ''), +(500, 'Dr. dr. Arif Widiatmoko, Sp.KK(K)', '', 'Dermatologi', 'arif_fk@ub.ac.id', ''), +(501, 'Dr. dr. Sinta Murlistyarini, Sp.KK(K)', '', 'Dermatologi', 'sintamur@ub.ac.id', ''), +(502, 'dr. Dhany Prafita Ekasari, Sp.KK', '', 'Dermatologi', 'dhany_prafita@ub.ac.id', ''), +(503, 'dr. Herwinda Brahmanti, Sp.KK(K), M.Sc', '', 'Dermatologi', 'dr_herwinda@ub.ac.id', ''), +(504, 'dr. Anggun Putri Yuniaswan, Sp.KK', '', 'Dermatologi', 'anggun@ub.ac.id', ''), +(505, 'Dr. dr. Dhelya Widasmara, Sp.KK(K)', '', 'Dermatologi', 'dhelyawidasmara@ub.ac.id', ''), +(506, 'Dr. dr. Boedhy Setyanto, Sp.KK', '', 'Dermatologi', 'boedhysetyanto@ub.ac.id', ''), +(507, 'dr. Intan Wasaputri Donoseputro, Sp.D.V.', '', 'Dermatologi', 'intanwasap@ub.ac.id', ''), +(508, 'dr. Lita Setyowatie, Sp.KK(K)', '', 'Dermatologi', 'lita84dv@ub.ac.id', ''), +(509, 'dr. Suci Prawitasari, Sp.KK(K)', '', 'Dermatologi', 'suci_prawitasari@ub.ac.id', ''), +(510, 'dr. Santosa Basuki, Sp.KK(K)', '', 'Dermatologi', '-', ''), +(511, 'dr. Sekar Puspita Lilasari, Sp.KK', '', 'Dermatologi', '-', ''), +(512, 'dr. Marta Dwi Rifka, Sp.KK', '', 'Dermatologi', '-', ''), +(513, 'dr. Adinda Amalia Dani, Sp.DV', '', 'Dermatologi', '-', ''), +(514, 'dr. Aunur Rofiq, Sp.D.V.E., Subsp. D.A.I., FINSDV, FAADV', '', 'Dermatologi', 'aunurrofiq.fk@ub.ac.id', ''), +(515, 'dr. Ahmad Dian Wahyudiono, Sp.THT-KL(K)', '', 'THT', 'dian_w.fk@ub.ac.id', ''), +(516, 'dr. Iriana Maharani, Sp.THT-KL(K)', '', 'THT', 'iriana_maharani@ub.ac.id', ''), +(517, 'Dr. dr. Edi Handoko, Sp.THT-KL(K)', '', 'THT', 'dr.edihandoko@ub.ac.id', ''), +(518, 'Dr. dr. Soehartono, Sp.THT-KL(K)', '', 'THT', 'hartonotht@ub.ac.id', ''), +(519, 'dr. Hendradi Surjotomo, Sp.THT-KL(K)', '', 'THT', 'hendraditht@ub.ac.id', ''), +(520, 'dr. Mohammad Dwijo Murdiyo, Sp.THT-KL(K)', '', 'THT', 'mamaddwi3105@ub.ac.id', ''), +(521, 'dr. Meyrna Heryaning Putri, Sp.THT-KL', '', 'THT', 'meyrnaheryaningputri@ub.ac.id', ''), +(522, 'dr. Moch Mundir Arif, Sp.THT-KL', '', 'THT', '-', ''), +(523, 'dr. Rizki Eka Putra Handoko, Sp.THT-KL', '', 'THT', '-', ''), +(524, 'dr. Siti Umi Hanik, Sp.THT-KL', '', 'THT', '-', ''), +(525, 'dr. Ayunita Tri Wirattami, Sp.THT-KL', '', 'THT', '-', ''), +(526, 'Dr. dr. Aulia Abdul Hamid Abdullah, M.Biomed.Sc, Sp.M(K)', '', 'Mata', 'aulia.fk@ub.ac.id', ''), +(527, 'Dr. dr. Nadia Artha Dewi, Sp.M(K)', '', 'Mata', 'nadia_dewi@ub.ac.id', ''), +(528, 'Dr. dr. Seskoati Prayitnaningsih, Sp.M(K)', '', 'Mata', 'seskoatip@ub.ac.id', ''), +(529, 'Dr. dr. Hera Dwi Novita, Sp.M(K)', '', 'Mata', 'hera_spm@ub.ac.id', ''), +(530, 'dr. Hidayat Sujuti, Sp.M(K), Ph.D', '', 'Mata', 'hidayatsujuti.fk@ub.ac.id', ''), +(531, 'dr. Lely Retno Wulandari, Sp.M(K)', '', 'Mata', 'lely_wulandari@ub.ac.id', ''), +(532, 'Dr. dr. Nina Handayani, Sp.M(K)', '', 'Mata', 'nina_handayani@ub.ac.id', ''), +(533, 'dr. Wino Vrieda Vierlia, Sp.M(K)', '', 'Mata', 'vrieda_v@ub.ac.id', ''), +(534, 'dr. Zendy Sagita, Sp.M', '', 'Mata', 'zendysagita@ub.ac.id', ''), +(535, 'Dr. dr. Nanda Wahyu Anandita, Sp.M(K)', '', 'Mata', 'nan_anandita@ub.ac.id', ''), +(536, 'Dr. dr. Ovi Sofia, Sp.M(K)', '', 'Mata', 'dr.ovisofia@ub.ac.id', ''), +(537, 'Dr. dr. Debby Shintiya Dewi, Sp.M(K)', '', 'Mata', 'Debbyshintiya73@ub.ac.id', ''), +(538, 'Dr. dr. Rosy Aldina, Sp.M(K)', '', 'Mata', 'rosyaldina@ub.ac.id', ''), +(539, 'dr. Anny Sulistiyowati, Sp.M(K)', '', 'Mata', '-', ''), +(540, 'dr. Herwindo Dicky Putranto, Sp.M(K)', '', 'Mata', '-', ''), +(541, 'dr. Titok Hariyanto, Sp.M', '', 'Mata', '-', ''), +(542, 'dr. Triana Budi Sulistya, Sp.M(K)', '', 'Mata', '-', ''), +(543, 'dr. Fariz Nufiarwan, Sp.M', '', 'Mata', '-', ''), +(544, 'dr. Vatien Rahmawati, Sp.M', '', 'Mata', '-', ''), +(545, 'dr. Chairunisa Ferdiana, Sp.M, M.Si', '', 'Mata', '-', ''), +(546, 'dr. Cinthya Hapsari, Sp.M', '', 'Mata', '-', ''), +(547, 'dr. Raden Budi Santoso, Sp.M', '', 'Mata', '-', ''), +(548, 'dr. Sigit Wibisono, Sp.M', '', 'Mata', '-', ''), +(549, 'dr. Tutuk Wibowo Chamidy, Sp.M', '', 'Mata', '-', ''), +(550, 'dr. Ahmad Thohir, Sp.M', '', 'Mata', 'ahmad.thohir@ub.ac.id', ''), +(551, 'dr. Agung Pambudi Setyowibowo, Sp.M', '', 'Mata', '-', ''), +(552, 'dr. Didi Candradikusuma, Sp.P.D,K-PTIย ', 'DPJP', 'IPD', 'didi_candradikusuma.fk@ub.ac.id', 'didi1312@gmail.com'), +(553, 'Dr.dr. Cesarius Singgih Wahono, Sp.P.D,K-Rย ', 'DPJP', 'IPD', 'singgih_wahono.fk@ub.ac.id', 'singgih_wahono@yahoo.com'), +(554, 'Dr. dr. Sri Soenarti, Sp.P.D., K-Ger', 'DPJP', 'IPD', 'sri_sunarti.fk@ub.ac.id', 'sinartitan@rocketmail.com'), +(555, 'dr. Laksmi Sasiarini, Sp.P.D., K-EMD', 'DPJP', 'IPD', 'laksmi_sasiarini@ub.ac.id', 'keenarku@yahoo.com'), +(556, 'dr. Herwindo Pudjo Brahmantyo, Sp.P.D., K-HOMย ', 'DPJP', 'IPD', 'herwindopudjo.ipd@ub.ac.id', 'herwindopudjo@yahoo.com'), +(557, 'dr. Rulli Rosandi, Sp.P.D., K-EMD', 'DPJP', 'IPD', 'rulliendokrin@ub.ac.id', 'email_rulli@yahoo.com'), +(558, 'dr. Bagus Putu Putra Suryana, Sp.PD,K-R', 'DPJP', 'IPD', 'putra_suryana@ub.ac.id', 'putra_suryana@hotmail.com\nreumato.rssa@yahoo.co.id'), +(559, 'dr. Syifa Mustika, Sp.P.D, K-GEH', 'DPJP', 'IPD', 'drtika_78@ub.ac.id', 'drtika_78@yahoo.com'), +(560, 'Dr. dr. Atma Gunawan, Sp.P.D., K-GHย ', 'DPJP', 'IPD', 'atma_gunawan.fk@ub.ac.id', 'atmagunawan2010@yahoo.com'), +(561, 'Dr. dr. Supriono, Sp.P.D,K-GEH', 'DPJP', 'IPD', 'supriono_ipd.fk@ub.ac.id', 'sprint.mlg@gmail.com'), +(562, 'dr. Siti Fatma Prehatiningsih, Sp.P.D.', 'DPJP', 'IPD', '-', '-'), +(563, 'dr. Heri Sutanto, Sp.P.D', 'DPJP', 'IPD', 'herisutanto.ipd@ub.ac.id', '-'), +(564, 'dr. Perdana Aditya Rahman, Sp.P.D., K-R', 'DPJP', 'IPD', 'perdana.aditya@ub.ac.id', 'perdana_aditya_md@yahoo.com'), +(565, 'dr. Eden Suryoiman Winoto, Sp.P.D', 'DPJP', 'IPD', 'dreden86.ipd@ub.ac.id', 'dreden86@gmail.com'), +(566, 'dr. Bogi Pratomo W., Sp.P.D. K-GEH', 'DPJP', 'IPD', 'bogi_pratomo.fk@ub.ac.id', 'bogipratomo@gmail.com'), +(567, 'Dr. dr. Shinta Oktya Wardhani, Sp.P.D., K-HOMย ', 'DPJP', 'IPD', 'shinta_oktya.fk@ub.ac.id', 'shinta_ow@yahoo.com'), +(568, 'Dr. Achmad Rifai, Sp.P.D., K-GH', 'DPJP', 'IPD', 'achmad_rifai.fk@ub.ac.id', ''), +(569, 'Dr. dr. Nur Samsu, Sp.P.D., K-GH', 'DPJP', 'IPD', 'nur_samsu.fk@ub.ac.id', 'samsu_nrs@yahoo.com'), +(570, 'dr. Nina Nurarifah, Sp.PD, K-HOM', 'DPJP', 'IPD', 'ninanur@ub.ac.id', 'ninanurarifah@gmail.com'), +(571, 'dr. Muhammad Anshory, Sp.PD', 'DPJP', 'IPD', 'muhammadanshory@ub.ac.id', 'muhammadanshory@yahoo.com'), +(572, 'dr. Dewi Indiastari, Sp.PD., K-PTI.', 'DPJP', 'IPD', 'indiastari@ub.ac.id', 'indiastari83@gmail.com'), +(573, 'dr. Nyoman Satvika Dharma Yudha, Sp.PD., KEMD', 'DPJP', 'IPD', 'nyomansatvika27@ub.ac.id', '-'), +(574, 'dr. Milanitalia Gadys Rosandy, Sp.PD', 'DPJP', 'IPD', 'milanitalia@ub.ac.id', '-'), +(575, 'dr. Mirza Zaka Pratama, M.Biomed, Sp.PD', 'DPJP', 'IPD', 'mirzapratama@ub.ac.id', '-'), +(576, 'dr. Djoko Heri Hermanto, Sp.PD, K-HOM', 'DPJP', 'IPD', 'djoko_heri.fk@ub.ac.id', 'djokoheri@gmail.com'), +(577, 'Dr. dr. Niniek Budiarti, Sp.PD, K-PTI', 'DPJP', 'IPD', 'niniek_budiarti.fk@ub.ac.id', 'niniek_burhan@yahoo.com'), +(578, 'dr. Fajar Hadi Wijayanto, Sp.PD', 'DPJP', 'IPD', 'fajarhadiw@ub.ac.id', 'fajarhadiwijayanto@gmail.com'), +(579, 'Prof. Dr. dr. Achmad Rudijanto, Sp.PD.KEMD', 'DPJP', 'IPD', 'achmad_rudijanto.fk@ub.ac.id', 'achmadrudijanto@yahoo.co.id'), +(580, 'dr. Erdilian Jodi Putra Pratama, Sp.PD.', 'DPJP', 'IPD', 'erdilianjodi90@ub.ac.id', '-'), +(581, 'dr. Chrisandi Yusuf Rizqiansyah, Sp.PD.', 'DPJP', 'IPD', 'chrisandi150824@ub.ac.id', '-'), +(582, 'dr. Jonny Karunia Fajar, Sp.PD.', 'DPJP', 'IPD', 'jonnykf@ub.ac.id', '-'), +(583, 'dr. Rinadhi Reza Bramantya, Sp.PD, K-EMD', 'DPJP', 'IPD', 'rezabramantya@ub.ac.id', 'bramantyareza@gmail.com'); +INSERT INTO `dokter` (`ID_Dokter`, `Nama_Dokter`, `Status`, `KSM`, `Email_UB`, `Email_Pribadi`) VALUES +(584, 'dr. Putu Moda Arsana, Sp.PD, K-EMD', 'DPJP', 'IPD', 'putu_moda.fk@ub.ac.id', 'putumodaarsana49@gmail.com'), +(585, 'dr. Mohamad Jasin Jachja, Sp.PD', 'DPJP', 'IPD', '-', 'drmjasinjachja@gmail.com'), +(586, 'dr. Nuraida Wisudani, Sp.PD', 'DPJP', 'IPD', '-', 'nuraida.wisudani@gmail.com'), +(587, 'dr. Mochamad Fachrureza, Sp.PD', 'DPJP', 'IPD', '-', 'dr.edja84@gmail.com'), +(588, 'dr. Hesti Purwanti, Sp.PD', 'DPJP', 'IPD', '-', 'hestiwisnuwr@gmail.com'), +(589, 'dr. Muhammad Hamdan Yuwaafi, Sp.PD', 'DPJP', 'IPD', '-', 'M.h.yuwaafii@gmail.com'), +(590, 'Prof. Dr. dr. Handono Kalim, Sp.PD, K-R', 'DPJP', 'IPD', '-', 'hkalim333@gmail.com'), +(591, 'dr. Dewi Sri Wulandari, Sp.PD.', 'DPJP', 'IPD', '-', '-'), +(592, 'dr. Rezdy Tofan Bhaskara, Sp.PD.', 'DPJP', 'IPD', '-', '-'), +(593, 'dr. Surya Abadi Kristyoadi, Sp.PD', 'DPJP', 'IPD', '-', '-'), +(594, 'dr. Affa Kysa Waafi, Sp.PD', 'DPJP', 'IPD', '-', '-'), +(595, 'Verina Setyabudhi', 'PPDS', 'IPD', 'veronicaverina@student.ub.ac.id', '-'), +(596, 'Patricia Charisma Octavianus', 'PPDS', 'IPD', 'patriciaoctav@student.ub.ac.id', '-'), +(597, 'Rahmatan Lil Alamin', 'PPDS', 'IPD', 'rahmatanla2021@student.ub.ac.id', '-'), +(598, 'Heri Supriyanto', 'PPDS', 'IPD', 'herisupriyanto@student.ub.ac.id', '-'), +(599, 'Fajar Maulana Raharjo', 'PPDS', 'IPD', 'fajarmaulanar@student.ub.ac.id', '-'), +(600, 'Putri Fitri Alfiantya', 'PPDS', 'IPD', 'putrialfiantya@student.ub.ac.id', '-'), +(601, 'christina widosari', 'PPDS', 'IPD', 'christinaw87@student.ub.ac.id', '-'), +(602, 'Muchammad Kamal Hadi', 'PPDS', 'IPD', 'mkamalhadi@student.ub.ac.id', '-'), +(603, 'Liku Vianty', 'PPDS', 'IPD', 'likuvianty@student.ub.ac.id', '-'), +(604, 'Nadia Alfiani Jauza', 'PPDS', 'IPD', 'nadialfiani06@student.ub.ac.id', '-'), +(605, 'Patan Ahmad Setiabudi', 'PPDS', 'IPD', 'patan_94@student.ub.ac.id', '-'), +(606, 'Al Imroatus Sholihah', 'PPDS', 'IPD', 'anisaraischika@student.ub.ac.id', '-'), +(607, 'Galih Hayyu Salim Prasetyawan', 'PPDS', 'IPD', 'galihhayyu_ipd@student.ub.ac.id', '-'), +(608, 'Amalia Nurul Hatinah', 'PPDS', 'IPD', 'amalianurul07@student.ub.ac.id', '-'), +(609, 'VINCENT SURIAWINATA', 'PPDS', 'IPD', 'vincentsur@student.ub.ac.id', '-'), +(610, 'Muhammad Bilal Saifulhaq', 'PPDS', 'IPD', 'mbilal@student.ub.ac.id', '-'), +(611, 'dr. Tommi Faruq Nahdi', 'PPDS', 'IPD', 'tommi_elfath@student.ub.ac.id', '-'), +(612, 'Naya Adi Dharmesta', 'PPDS', 'IPD', 'naya_ipd@student.ub.ac.id', '-'), +(613, 'Afina Fitra Firdaus', 'PPDS', 'IPD', 'afinaff27@student.ub.ac.id', '-'), +(614, 'Muhammad Reyhan', 'PPDS', 'IPD', 'rey_dean@student.ub.ac.id', '-'), +(615, 'Ni Made Windari Anggreni', 'PPDS', 'IPD', 'windarianggreni@student.ub.ac.id', '-'), +(616, 'dr. Krisna Debora', 'PPDS', 'IPD', 'debora09@student.ub.ac.id', '-'), +(617, 'dr. Sofia Nuri', 'PPDS', 'IPD', 'sofianuri89@student.ub.ac.id', '-'), +(618, 'Tohari', 'PPDS', 'IPD', 'tohariamin@student.ub.ac.id', '-'), +(619, 'Novi davitsen', 'PPDS', 'IPD', 'davdavidsun@student.ub.ac.id', '-'), +(620, 'Arlentina Bentivolia Simamora', 'PPDS', 'IPD', 'bentivolia89@student.ub.ac.id', '-'), +(621, 'Nikolas Raphon Sidabalok', 'PPDS', 'IPD', 'papa_vinaboa@student.ub.ac.id', '-'), +(622, 'Adisti Yuliandini', 'PPDS', 'IPD', 'adisti@student.ub.ac.id', '-'), +(623, 'Meiriyan Susanto', 'PPDS', 'IPD', 'meiriyans93dr@student.ub.ac.id', '-'), +(624, 'Rama Tiar Nugroho', 'PPDS', 'IPD', 'ramatayer93@student.ub.ac.id', '-'), +(625, 'Atika Bashirati Ilman', 'PPDS', 'IPD', 'atikailman@student.ub.ac.id', '-'), +(626, 'Ria Sherliana', 'PPDS', 'IPD', 'riasherliana123@student.ub.ac.id', '-'), +(627, 'Rahmad Arifin Hsb', 'PPDS', 'IPD', 'arifinhsb20@student.ub.ac.id', '-'), +(628, 'Natalia Rasta Malem', 'PPDS', 'IPD', 'nataliarastamb@student.ub.ac.id', '-'), +(629, 'Asihanti Rosita Ferdiana', 'PPDS', 'IPD', 'asihantirosita@student.ub.ac.id', '-'), +(630, 'Gema Akbar Wakhidana', 'PPDS', 'IPD', 'gemaakbarw@student.ub.ac.id', '-'), +(631, 'Anugrah Abdurrohman', 'PPDS', 'IPD', 'ranirumaizadr@student.ub.ac.id', '-'), +(632, 'yusia mega relita', 'PPDS', 'IPD', 'yusiamegarelita@student.ub.ac.id', '-'), +(633, 'Sri Lestari Fajerin', 'PPDS', 'IPD', 'srilestarif@student.ub.ac.id', '-'), +(634, 'Tia Rahmi Priyanto', 'PPDS', 'IPD', 'tiarapriyanto@student.ub.ac.id', '-'), +(635, 'Renno Firaldy', 'PPDS', 'IPD', 'firaldyrenno@student.ub.ac.id', '-'), +(636, 'Partogi Andres Marpaung', 'PPDS', 'IPD', 'partogi@student.ub.ac.id', '-'), +(637, 'Dinda Amalia Eka Putri', 'PPDS', 'IPD', 'dndamalia@student.ub.ac.id', '-'), +(638, 'Kamelia Sitorus', 'PPDS', 'IPD', 'kamelias271@student.ub.ac.id', '-'), +(639, 'Iis Novianti Rosyida', 'PPDS', 'IPD', 'iisnovianti@student.ub.ac.id', '-'), +(640, 'Vidia Purnama Sari', 'PPDS', 'IPD', 'vidiapurnama@student.ub.ac.id', '-'), +(641, 'dr. Yuni Adriani', 'PPDS', 'IPD', 'adrianiyuni24@student.ub.ac.id', '-'), +(642, 'Stefan Bram Kanigia', 'PPDS', 'IPD', 'bramkanigia@student.ub.ac.id', '-'), +(643, 'Kadek Dwi Sujaya', 'PPDS', 'IPD', 'kadekdwi@student.ub.ac.id', '-'), +(644, 'Hafidh Alyza Rachman', 'PPDS', 'IPD', 'hafidhar@student.ub.ac.id', '-'), +(645, 'Alfi Kamalia', 'PPDS', 'IPD', 'alfikamalia@student.ub.ac.id', '-'), +(646, 'Rizza Febri Diantoro', 'PPDS', 'IPD', 'rizzafebri_ipd@student.ub.ac.id', '-'), +(647, 'Amandha Rizky Taufika', 'PPDS', 'IPD', 'amandharizky@student.ub.ac.id', '-'), +(648, 'Maiova Nur Annisa', 'PPDS', 'IPD', 'maiovanurannisa@student.ub.ac.id', '-'), +(649, 'Helena Tridasari Nendraningrum', 'PPDS', 'IPD', 'helenaningrum21@student.ub.ac.id', '-'), +(650, 'Made Dwi Pratiwi', 'PPDS', 'IPD', 'madedwipratiwi@student.ub.ac.id', '-'), +(651, 'Maruli Setiawan', 'PPDS', 'IPD', 'marulisetiawan@student.ub.ac.id', '-'), +(652, 'Dennis Koresy', 'PPDS', 'IPD', 'dennkoresy@student.ub.ac.id', '-'), +(653, 'Reza Fanani', 'PPDS', 'IPD', 'rezfan@student.ub.ac.id', '-'), +(654, 'Andini Bakti Putri', 'PPDS', 'IPD', 'andinibakti@student.ub.ac.id', '-'), +(655, 'Laswan Sahat Maruli Siallagan', 'PPDS', 'IPD', 'laswansiallagan@student.ub.ac.id', '-'), +(656, 'Adib Danurdipta', 'PPDS', 'IPD', 'adibdanurdipta@student.ub.ac.id', '-'), +(657, 'dr. Anggun Anggraini Wibisana', 'PPDS', 'IPD', 'anggunwibisana@student.ub.ac.id', '-'), +(658, 'Andani Putri Budi Arti', 'PPDS', 'IPD', 'andaniputri@student.ub.ac.id', '-'), +(659, 'Andre Eka Putra Prakosa', 'PPDS', 'IPD', 'andre_dre@student.ub.ac.id', '-'), +(660, 'JAMILAH AULIA HAIKHAH', 'PPDS', 'IPD', 'jemsjamilah@student.ub.ac.id', '-'), +(661, 'Cynthia Maria Wijaya', 'PPDS', 'IPD', 'cynthiawijaya@student.ub.ac.id', '-'), +(662, 'Thoha Muhajir Albaar', 'PPDS', 'IPD', 'tmalbaar54@student.ub.ac.id', '-'), +(663, 'Leony Anatasia Maranatha', 'PPDS', 'IPD', 'leonyanatasia@student.ub.ac.id', '-'), +(664, 'Ersyad Kholid', 'PPDS', 'IPD', 'ersyadkholid09@student.ub.ac.id', '-'), +(665, 'Aulia Sita Hapsari', 'PPDS', 'IPD', 'auliasita98@student.ub.ac.id', '-'), +(666, 'Primayuni Dhia Hasanah', 'PPDS', 'IPD', 'primayunidhia@student.ub.ac.id', '-'), +(667, 'Albert William Hotomo', 'PPDS', 'IPD', 'dokterhotomo@student.ub.ac.id', '-'), +(668, 'Claudio Ian Ferara', 'PPDS', 'IPD', 'claudioianf@student.ub.ac.id', '-'), +(669, 'Thomas Erickson', 'PPDS', 'IPD', 'thomaserickson@student.ub.ac.id', '-'), +(670, 'Maria Sarche Kuna', 'PPDS', 'IPD', 'sarche@student.ub.ac.id', '-'), +(671, 'Tonny Aldo Aprillino', 'PPDS', 'IPD', 'tonnyaldo@student.ub.ac.id', '-'), +(672, 'Lia Dia Farida', 'PPDS', 'IPD', 'faridaliadia@student.ub.ac.id', '-'), +(673, 'Janette Golda Meir Putri', 'PPDS', 'IPD', 'goldameirjanet@student.ub.ac.id', '-'), +(674, 'Annisa Putri Astuti', 'PPDS', 'IPD', 'annisaputriast@student.ub.ac.id', '-'), +(675, 'oktaviyani poulus', 'PPDS', 'IPD', 'oktaviyaniipd56@student.ub.ac.id', '-'), +(676, 'Freddy Chandra Nainggolan', 'PPDS', 'IPD', 'freddychandran@student.ub.ac.id', '-'), +(677, 'Indri Aswari', 'PPDS', 'IPD', 'indriaswari@student.ub.ac.id', '-'), +(678, 'Intan Ayu Islami', 'PPDS', 'IPD', 'intanayuislami@student.ub.ac.id', '-'), +(679, 'Chikita Rizqi Hanifati', 'PPDS', 'IPD', 'chikitarh@student.ub.ac.id', '-'), +(680, 'Levrita Nindya Poetri', 'PPDS', 'IPD', 'levritalnp@student.ub.ac.id', '-'), +(681, 'Putu Ijiya Danta Awatara', 'PPDS', 'IPD', 'ijiyadanta_19@student.ub.ac.id', '-'), +(682, 'Izzah Wahidiah Rochmah', 'PPDS', 'IPD', 'izzahwr@student.ub.ac.id', '-'), +(683, 'Martharika Karinda Wibowo', 'PPDS', 'IPD', 'martharika@student.ub.ac.id', '-'), +(684, 'Agustinus Alfred Gunawan', 'PPDS', 'IPD', 'alfredgun91@student.ub.ac.id', '-'), +(685, 'Gilang Sukma Muhamad', 'PPDS', 'IPD', 'gilangsukmam@student.ub.ac.id', '-'), +(686, 'Muhamad Haitsam', 'PPDS', 'IPD', 'muhamadhaitsam9@student.ub.ac.id', '-'), +(687, 'Edo Aditya Dwi Susanto', 'PPDS', 'IPD', 'edoadsusanto@student.ub.ac.id', '-'), +(688, 'Septha Rully Dwi Pradipto', 'PPDS', 'IPD', 'septharully@student.ub.ac.id', '-'), +(689, 'Marisa Perucana Sinambela', 'PPDS', 'IPD', 'marisasinambela@student.ub.ac.id', '-'), +(690, 'Atina Nabilah', 'PPDS', 'IPD', 'nabilabee13@student.ub.ac.id', '-'), +(691, 'Hadiyoga Pratama Putra', 'PPDS', 'IPD', 'hadiyogapq@student.ub.ac.id', '-'), +(692, 'Andika Agus Budiarto', 'PPDS', 'IPD', 'andikagusb@student.ub.ac.id', '-'), +(693, 'dr. Sasmojo Widito, SpJP (K)', 'DPJP', 'Jantung', 'sasmojowidito@ub.ac.id', 'sasmojowidito@yahoo.com'), +(694, 'dr. Valerinna Yogibuana Swastika Putri, SpJP(K)', 'DPJP', 'Jantung', 'valerinnaysp@ub.ac.id', '-'), +(695, 'Prof. dr. M. Saifur Rohman, SpJP (K), PhDย ', 'DPJP', 'Jantung', 'ippoenk@ub.ac.id', 'ippoenk@yahoo.com'), +(696, 'dr. Ardian Rizal, SpJP (K)', 'DPJP', 'Jantung', 'drardianrizal@ub.ac.id', 'drardianrizal@gmail.com'), +(697, 'dr. Anna Fuji Rahimah, SpJP (K)', 'DPJP', 'Jantung', 'drannafuji@ub.ac.id', '-'), +(698, 'dr. Cholid Tri Tjahjono, M.Kes, SpJP (K)', 'DPJP', 'Jantung', 'cholidtri@ub.ac.id', 'cholidtt@gmail.com'), +(699, 'dr. Heny Martini, SpJP (K)ย ', 'DPJP', 'Jantung', 'henymartini@ub.ac.id', 'henymartini@ub.ac.id'), +(700, 'dr. Budi Satrijo, SpJP (K)', 'DPJP', 'Jantung', 'budisatrijo@ub.ac.id', 'bsatriyo11@yahoo.com'), +(701, 'dr. Novi Kurnianingsih, SpJP (K)ย ', 'DPJP', 'Jantung', 'novikur@ub.ac.id', 'n0v1_kur@yahoo.co.id'), +(702, 'dr. Indra Prasetya, SpJP (K)', 'DPJP', 'Jantung', 'indraprasetya@ub.ac.id', '-'), +(703, 'dr. Veny Mayangsari, SpJP', 'DPJP', 'Jantung', '-', 'veny0203@gmail.com'), +(704, 'dr. Setyasih Anjarwani, SpJP (K)', 'DPJP', 'Jantung', 'setyasih@ub.ac.id', 'setyasihanjarwani@yahoo.com'), +(705, 'dr. Adhika Prastya Wikananda, SpJPย ', 'DPJP', 'Jantung', '-', 'adhikapw@gmail.com'), +(706, 'dr. Wella Karolina, SpJP (K)', 'DPJP', 'Jantung', 'wella.karolina@ub.ac.id', '-'), +(707, 'dr. Yoga Waranugraha, Sp.JP, Subp.Ar.(K)', 'DPJP', 'Jantung', 'mr.waranugraha@ub.ac.id', 'mr.waranugraha@gmail.com'), +(708, 'Prof. Dr. dr. Djanggan Sargowo, Sp.PD, Sp.JP(K)', 'DPJP', 'Jantung', 'djanggan@ub.ac.id', '-'), +(709, 'Dr. dr. Saskia Dyah Handari, Sp.JP(K)', 'DPJP', 'Jantung', '-', 'saskiahandari@gmail.com'), +(710, 'dr. Arief Wibisono, Sp.JP', 'DPJP', 'Jantung', '-', 'arief.spjp@gmail.com'), +(711, 'dr. Evit Ruspiono, Sp.JP', 'DPJP', 'Jantung', '-', 'evitruspiono@gmail.com'), +(712, 'dr. Tri Astiawaty, Sp.JP', 'DPJP', 'Jantung', 'triastiawati@ub.ac.id', 'triastia_dr@yahoo.com'), +(713, 'dr. Adriyawan Widya Nugraha, Sp.JP(K)', 'DPJP', 'Jantung', '-', 'adriyawan.wn@gmail.com'), +(714, 'dr. Andi Wahjono Adi, Sp.JP(K)', 'DPJP', 'Jantung', '-', 'andiwahjono@ymail.com'), +(715, 'dr. Fitranti Suciati Laitupa, Sp.JP(K)', 'DPJP', 'Jantung', '-', 'fitriantilatupawijaya@gmail.com'), +(716, 'dr. Dea Arie Kurniawan, Sp.JP', 'DPJP', 'Jantung', 'dea.kurniawanlec.ub.ac.id', 'dea.arie.kurniawan@gmail.com'), +(717, 'Muhammad Azhar Rosyidi', 'PPDS', 'Jantung', 'azharr@student.ub.ac.id', '-'), +(718, 'Shalahuddin Suryo Baskoro', 'PPDS', 'Jantung', 'suryobaskoro@student.ub.ac.id', '-'), +(719, 'Merlita Herbani', 'PPDS', 'Jantung', 'merlitaherbani@student.ub.ac.id', '-'), +(720, 'Catur Rizky Kurniawan', 'PPDS', 'Jantung', 'caturrizky@student.ub.ac.id', '-'), +(721, 'Savitri Sirait', 'PPDS', 'Jantung', 'savitrisirait91@student.ub.ac.id', '-'), +(722, 'Yuke Fawziah Kemala', 'PPDS', 'Jantung', 'yuke_fawziah@student.ub.ac.id', '-'), +(723, 'dr. Anastasia Christine', 'PPDS', 'Jantung', 'wchanastasia@student.ub.ac.id', '-'), +(724, 'Fikri Taufiq', 'PPDS', 'Jantung', 'fikri_taufiq@student.ub.ac.id', '-'), +(725, 'Mokhamad Aswin Bahar', 'PPDS', 'Jantung', 'draswinbahar@student.ub.ac.id', '-'), +(726, 'Fitri Febrianti Ramadhan', 'PPDS', 'Jantung', 'kardio26fitri@student.ub.ac.id', '-'), +(727, 'Calysta Citra Sekarsari', 'PPDS', 'Jantung', 'calystacitra94@student.ub.ac.id', '-'), +(728, 'Sahlan Abadi', 'PPDS', 'Jantung', 'alanabadi7@student.ub.ac.id', '-'), +(729, 'Malombassi Dharmawan Hadiwidjojo Hutomo', 'PPDS', 'Jantung', 'dharmawanhutomo@student.ub.ac.id', '-'), +(730, 'Ayu Pramitha Wulandari', 'PPDS', 'Jantung', 'ayupramitha@student.ub.ac.id', '-'), +(731, 'Yunita fadhila sandy', 'PPDS', 'Jantung', 'sandyjpd@student.ub.ac.id', '-'), +(732, 'Nicodemus Novian Triatmojo', 'PPDS', 'Jantung', 'nicotriatmojo@student.ub.ac.id', '-'), +(733, 'Hanim Isyfi Fahmi', 'PPDS', 'Jantung', 'hanimisyfi@student.ub.ac.id', '-'), +(734, 'Novi Rahmawati', 'PPDS', 'Jantung', 'novirahmawati@student.ub.ac.id', '-'), +(735, 'Andre Tegar Widhianto', 'PPDS', 'Jantung', 'andretegar@student.ub.ac.id', '-'), +(736, 'Zhafran Veliawan', 'PPDS', 'Jantung', 'zhafranveliawan@student.ub.ac.id', '-'), +(737, 'Nisa Amnifolia Niazta', 'PPDS', 'Jantung', 'amnifolianiazta@student.ub.ac.id', '-'), +(738, 'Yosafat Hasiholan Marthin Gultom', 'PPDS', 'Jantung', 'gultomyosafathm@student.ub.ac.id', '-'), +(739, 'dr. Gebryel Dennis Saerang', 'PPDS', 'Jantung', 'gebryelsmd@student.ub.ac.id', '-'), +(740, 'Mokhammad Afifuddin', 'PPDS', 'Jantung', 'dr_afif_cardio@student.ub.ac.id', '-'), +(741, 'Vemmy Lian Saputri', 'PPDS', 'Jantung', 'vemmylian@student.ub.ac.id', '-'), +(742, 'MASDA KAMARULLAH', 'PPDS', 'Jantung', 'masdakamarullah@student.ub.ac.id', '-'), +(743, 'Irzal Rakhmadhani', 'PPDS', 'Jantung', 'irzalr@student.ub.ac.id', '-'), +(744, 'Daniel Erikson Tambunan', 'PPDS', 'Jantung', 'danielerikson@student.ub.ac.id', '-'), +(745, 'Faruq Yufarriqu Mufaza', 'PPDS', 'Jantung', 'faruqym@student.ub.ac.id', '-'), +(746, 'Laras Gaby Catelya', 'PPDS', 'Jantung', 'lcatelya@student.ub.ac.id', '-'), +(747, 'Bima Utama', 'PPDS', 'Jantung', 'bimautama@student.ub.ac.id', '-'), +(748, 'dr. Kartika', 'PPDS', 'Jantung', 'kartika85@student.ub.ac.id', '-'), +(749, 'Gleopatra Dorothy Molle', 'PPDS', 'Jantung', 'gledhylle119@student.ub.ac.id', '-'), +(750, 'Yola Newary', 'PPDS', 'Jantung', 'drynewary@student.ub.ac.id', '-'), +(751, 'Marco Filano', 'PPDS', 'Jantung', 'marcofilano35@student.ub.ac.id', '-'), +(752, 'Akbar Fadilah', 'PPDS', 'Jantung', 'sultanakb98@student.ub.ac.id', '-'), +(753, 'Bunga Bella Pratiwi', 'PPDS', 'Jantung', 'bungabellap6@student.ub.ac.id', '-'), +(754, 'Sutanti Lara Dewi', 'PPDS', 'Jantung', 'tantiadewi@student.ub.ac.id', '-'), +(755, 'Muhtar Ady Kusuma', 'PPDS', 'Jantung', 'muhtarady07@student.ub.ac.id', '-'), +(756, 'Akhmad Noval Denny Irawan', 'PPDS', 'Jantung', 'noval88@student.ub.ac.id', '-'), +(757, 'Avinda Miyana Putri', 'PPDS', 'Jantung', 'avindamiyana@student.ub.ac.id', '-'), +(758, 'Agustinus Siswanto', 'PPDS', 'Jantung', 'agustinus_s98@student.ub.ac.id', '-'), +(759, 'GALUH IMAN NIRWANA', 'PPDS', 'Jantung', 'galuhnirwana@student.ub.ac.id', '-'), +(760, 'Mochamad Ali Rosadi', 'PPDS', 'Jantung', 'alirosadi@student.ub.ac.id', '-'), +(761, 'Muhammad Rizky Putra Adri', 'PPDS', 'Jantung', 'mrizkypa21@student.ub.ac.id', '-'), +(762, 'ALFIAN REDDY SAGALA', 'PPDS', 'Jantung', 'mypupuu@student.ub.ac.id', '-'), +(763, 'Reviandy Achmad Armandani', 'PPDS', 'Jantung', 'andykardiologi@student.ub.ac.id', '-'), +(764, 'Cornellius Dharwindo', 'PPDS', 'Jantung', 'dinokardio@student.ub.ac.id', '-'), +(765, 'Anindia Reina Yolanda', 'PPDS', 'Jantung', 'anindiareina@student.ub.ac.id', '-'), +(766, 'amalia nurjanah', 'PPDS', 'Jantung', 'amaliamansyur@student.ub.ac.id', '-'), +(767, 'Muhammad Aji Muharrom', 'PPDS', 'Jantung', 'ajimuharrom@student.ub.ac.id', '-'), +(768, 'Suryaningtyas Prabowo', 'PPDS', 'Jantung', 'pacebobs@student.ub.ac.id', '-'), +(769, 'septian christy nugroho', 'PPDS', 'Jantung', 'septiancn08@student.ub.ac.id', '-'), +(770, 'andreago', 'PPDS', 'Jantung', 'andreago@student.ub.ac.id', '-'), +(771, 'Muhammad Haris Firdaus', 'PPDS', 'Jantung', 'mharisfirdaus94@student.ub.ac.id', '-'), +(772, 'Mariana Marpaung', 'PPDS', 'Jantung', 'mariana88@student.ub.ac.id', '-'), +(773, 'Annisya Handini', 'PPDS', 'Jantung', 'annisyahandini8@student.ub.ac.id', '-'), +(774, 'Dr. dr. Aulia Abdul Hamid Abdullah, M.Biomed.Sc, Sp.M(K)', 'DPJP', 'Mata', 'aulia.fk@ub.ac.id', '-'), +(775, 'Dr. dr. Nadia Artha Dewi, Sp.M(K)', 'DPJP', 'Mata', 'nadia_dewi@ub.ac.id', '-'), +(776, 'Dr. dr. Seskoati Prayitnaningsih, Sp.M(K)', 'DPJP', 'Mata', 'seskoatip@ub.ac.id', '-'), +(777, 'Dr. dr. Hera Dwi Novita, Sp.M(K)', 'DPJP', 'Mata', 'hera_spm@ub.ac.id', 'heradw@gmail.com'), +(778, 'dr. Hidayat Sujuti, Sp.M(K), Ph.D', 'DPJP', 'Mata', 'hidayatsujuti.fk@ub.ac.id', '-'), +(779, 'dr. Lely Retno Wulandari, Sp.M(K)', 'DPJP', 'Mata', 'lely_wulandari@ub.ac.id', '-'), +(780, 'Dr. dr. Nina Handayani, Sp.M(K)', 'DPJP', 'Mata', 'nina_handayani@ub.ac.id', 'ninahdyn@gmail.com'), +(781, 'dr. Wino Vrieda Vierlia, Sp.M(K)', 'DPJP', 'Mata', 'vrieda_v@ub.ac.id', 'vrieda_v@yahoo.com'), +(782, 'dr. Zendy Sagita, Sp.M', 'DPJP', 'Mata', 'zendysagita@ub.ac.id', 'zendysagita@gmail.com'), +(783, 'Dr. dr. Nanda Wahyu Anandita, Sp.M(K)', 'DPJP', 'Mata', 'nan_anandita@ub.ac.id', 'nan_anandita@yahoo.com'), +(784, 'Dr. dr. Ovi Sofia, Sp.M(K)', 'DPJP', 'Mata', 'dr.ovisofia@ub.ac.id', 'ovisofia@yahoo.com'), +(785, 'Dr. dr. Debby Shintiya Dewi, Sp.M(K)', 'DPJP', 'Mata', 'Debbyshintiya73@ub.ac.id', 'shindeby@gmail.com'), +(786, 'Dr. dr. Rosy Aldina, Sp.M(K)', 'DPJP', 'Mata', 'rosyaldina@ub.ac.id', 'rosyaldina@yahoo.com'), +(787, 'dr. Anny Sulistiyowati, Sp.M(K)', 'DPJP', 'Mata', '-', 'anny_vision@yahoo.com'), +(788, 'dr. Herwindo Dicky Putranto, Sp.M(K)', 'DPJP', 'Mata', '-', 'nan_anandita@yahoo.com'), +(789, 'dr. Titok Hariyanto, Sp.M', 'DPJP', 'Mata', '-', 'titok19@yahoo.com'), +(790, 'dr. Triana Budi Sulistya, Sp.M(K)', 'DPJP', 'Mata', '-', 'budi.sulistya@yahoo.com'), +(791, 'dr. Fariz Nufiarwan, Sp.M', 'DPJP', 'Mata', '-', 'dr. Fareast@gmail.com'), +(792, 'dr. Vatien Rahmawati, Sp.M', 'DPJP', 'Mata', '-', 'vatien21@gmail.com'), +(793, 'dr. Chairunisa Ferdiana, Sp.M, M.Si', 'DPJP', 'Mata', '-', 'neesa_joe@yahoo.com'), +(794, 'dr. Cinthya Hapsari, Sp.M', 'DPJP', 'Mata', '-', 'chintya.hapsari@gmail.com'), +(795, 'dr. Raden Budi Santoso, Sp.M', 'DPJP', 'Mata', '-', 'radenbudisantoso.rbs@gmail.com'), +(796, 'dr. Sigit Wibisono, Sp.M', 'DPJP', 'Mata', '-', 'sigitwibisono74@gmail.com'), +(797, 'dr. Tutuk Wibowo Chamidy, Sp.M', 'DPJP', 'Mata', '-', 'ctutukwibowo@gmail.com'), +(798, 'dr. Ahmad Thohir, Sp.M', 'DPJP', 'Mata', 'ahmad.thohir@ub.ac.id', 'drhirspm@gmail.com'), +(799, 'dr. Agung Pambudi Setyowibowo, Sp.M', 'DPJP', 'Mata', '-', '-'), +(800, 'Ramona Intan Permatasari', 'PPDS', 'Mata', 'ramona22@student.ub.ac.id', '-'), +(801, 'dr. Pranandito Trunogati', 'PPDS', 'Mata', 'pranandito@student.ub.ac.id', '-'), +(802, 'Heavin Rakhmat Saintika', 'PPDS', 'Mata', 'heavinrs@student.ub.ac.id', '-'), +(803, 'Arsita Keumaladewi', 'PPDS', 'Mata', 'arsita19@student.ub.ac.id', '-'), +(804, 'Edwin Damar Prabowo', 'PPDS', 'Mata', 'damaredwin@student.ub.ac.id', '-'), +(805, 'Ariyoga Kun Laksono', 'PPDS', 'Mata', 'ariyogakun@student.ub.ac.id', '-'), +(806, 'Aditya Rachman', 'PPDS', 'Mata', 'rachaditya@student.ub.ac.id', '-'), +(807, 'Rofiqi Rofiq', 'PPDS', 'Mata', 'rofiqirofiq@student.ub.ac.id', '-'), +(808, 'Rizal', 'PPDS', 'Mata', 'rizalmz@student.ub.ac.id', '-'), +(809, 'Arya Putra Syuhada', 'PPDS', 'Mata', 'aryaaryaarya@student.ub.ac.id', '-'), +(810, 'Hilda Adina Eriawan', 'PPDS', 'Mata', 'hildaadina@student.ub.ac.id', '-'), +(811, 'Aisha Andriana', 'PPDS', 'Mata', 'aishaandrn@student.ub.ac.id', '-'), +(812, 'prasaundra triantoni putra', 'PPDS', 'Mata', 'prasaundra@student.ub.ac.id', '-'), +(813, 'Lanisa Hapsari', 'PPDS', 'Mata', 'lanisahapsari@student.ub.ac.id', '-'), +(814, 'Erna Yulida', 'PPDS', 'Mata', 'ernayulida@student.ub.ac.id', '-'), +(815, 'Dessy Vinoricka Andriyana', 'PPDS', 'Mata', 'dessyvinoppds@student.ub.ac.id', '-'), +(816, 'A\'ifatin Fenisya', 'PPDS', 'Mata', 'aifatinvenysya@student.ub.ac.id', '-'), +(817, 'Rastha Sasmaka', 'PPDS', 'Mata', 'sasmaka_rastha@student.ub.ac.id', '-'), +(818, 'Dyah Anisa Aprilani', 'PPDS', 'Mata', 'dyah_anisa@student.ub.ac.id', '-'), +(819, 'Ghea Ananta', 'PPDS', 'Mata', 'dokterghea@student.ub.ac.id', '-'), +(820, 'Othe Ahmad Syarifuddin', 'PPDS', 'Mata', 'otheas@student.ub.ac.id', '-'), +(821, 'Winalisa Eka Hardiyanti', 'PPDS', 'Mata', 'winalisaeka@student.ub.ac.id', '-'), +(822, 'Muhammad Ferdiansyah', 'PPDS', 'Mata', 'ferdiansanir@student.ub.ac.id', '-'), +(823, 'Muhammad Fachri Ridha Herlan', 'PPDS', 'Mata', 'fachriridha@student.ub.ac.id', '-'), +(824, 'Farisa Shauma Fachir', 'PPDS', 'Mata', 'farisafachir@student.ub.ac.id', '-'), +(825, 'Muhammad Aulia', 'PPDS', 'Mata', 'mhdaulia@student.ub.ac.id', '-'), +(826, 'Santi Febrianti', 'PPDS', 'Mata', 'santifebrianti@student.ub.ac.id', '-'), +(827, 'Muhammad Fathan Rasyid Al Faruqi', 'PPDS', 'Mata', 'fathannisa2112@student.ub.ac.id', '-'), +(828, 'Ifada Hariani Kusuma', 'PPDS', 'Mata', 'ifadahariani@student.ub.ac.id', '-'), +(829, 'Eka apriani lubis', 'PPDS', 'Mata', 'ekalubis04@student.ub.ac.id', '-'), +(830, 'Mohammad Alif Azizi', 'PPDS', 'Mata', 'm_alif@student.ub.ac.id', '-'), +(831, 'Putry Adenia Bahar', 'PPDS', 'Mata', 'adeniabahar@student.ub.ac.id', '-'), +(832, 'Fatina Qonita', 'PPDS', 'Mata', 'fatinaqonita@student.ub.ac.id', '-'), +(833, 'Yudha Kusuma Dwiatmaja', 'PPDS', 'Mata', 'yudhadwiatmaja@student.ub.ac.id', '-'), +(834, 'Nadia Dessi Quartantri', 'PPDS', 'Mata', 'nadiaquartantri@student.ub.ac.id', '-'), +(835, 'Hanifah Arani', 'PPDS', 'Mata', 'aranihanifah@student.ub.ac.id', '-'), +(836, 'Dina Aqmarina Dalilati', 'PPDS', 'Mata', 'dinaqmarinad@student.ub.ac.id', '-'), +(837, 'Dwi Arif Wahyu Wibowo', 'PPDS', 'Mata', 'dwiarifww@student.ub.ac.id', '-'), +(838, 'Gusti Rajendra Yoga Pratama', 'PPDS', 'Mata', 'rajendragusti97@student.ub.ac.id', '-'), +(839, 'Fauzi Abdillah', 'PPDS', 'Mata', 'fauziabdillah@student.ub.ac.id', '-'), +(840, 'Baskoro Hariadi', 'PPDS', 'Mata', 'baskoromata@student.ub.ac.id', '-'), +(841, 'Shofia Medina Samara', 'PPDS', 'Mata', 'shofiamedina@student.ub.ac.id', '-'), +(842, 'Gustavita Maria Bandong', 'PPDS', 'Mata', 'gustavita@student.ub.ac.id', '-'), +(843, 'Mahda Faisal Waber', 'PPDS', 'Mata', 'mahdafw@student.ub.ac.id', '-'), +(844, 'NABILA FAUZIAH', 'PPDS', 'Mata', 'nabilafzh@student.ub.ac.id', '-'), +(845, 'Nisrina Amalia Rohimah', 'PPDS', 'Mata', 'nisrinamaliar@student.ub.ac.id', '-'), +(846, 'Noorivana Melina Amanda', 'PPDS', 'Mata', 'noorivanamanda@student.ub.ac.id', '-'), +(847, 'Azkiya Zahra', 'PPDS', 'Mata', 'azkiya_zahra@student.ub.ac.id', '-'), +(848, 'Laksmi Muliawati', 'PPDS', 'Mata', 'drlaksmimuliaw@student.ub.ac.id', '-'), +(849, 'Denny Indra Maulana', 'PPDS', 'Mata', 'dennyindramln@student.ub.ac.id', '-'), +(850, 'Ainun Nadziroh', 'PPDS', 'Mata', 'andzrh@student.ub.ac.id', '-'), +(851, 'Fathia Azzahra', 'PPDS', 'Mata', 'fathiazzahra@student.ub.ac.id', '-'), +(852, 'Nabila Ulfayani Hanifah', 'PPDS', 'Mata', 'nblulfayani@student.ub.ac.id', '-'), +(853, 'Ego Frendy Damara', 'PPDS', 'Mata', 'egodamara@student.ub.ac.id', '-'), +(854, 'Dwi Wening Anggarini', 'PPDS', 'Mata', 'dwwening@student.ub.ac.id', '-'), +(855, 'Imam Godly Alam', 'PPDS', 'Mata', 'imamgodlyalam@student.ub.ac.id', '-'), +(856, 'Santi Dwi Cahyani', 'PPDS', 'Mata', 'santidwchyn@student.ub.ac.id', '-'), +(857, 'Nabila Astri Nur Kuntari', 'PPDS', 'Mata', 'nabilaastri01@student.ub.ac.id', '-'), +(858, 'Agus Saifudin', 'PPDS', 'Mata', 'agussaifudin@student.ub.ac.id', '-'), +(859, 'Ambhari Paramastrya Putri', 'PPDS', 'Mata', 'tryaaputri@student.ub.ac.id', '-'), +(860, 'Indra Firismanda Dermawan', 'PPDS', 'Mata', 'indrafirismanda@student.ub.ac.id', '-'), +(861, 'Yuda Pradana', 'PPDS', 'Mata', 'pradanayuda19@student.ub.ac.id', '-'), +(862, 'Naura Hasna Salsabila', 'PPDS', 'Mata', 'naurahasal@student.ub.ac.id', '-'), +(863, 'dr. Neila Raisa, Sp. S (K)', 'DPJP', 'Neurologi', 'neilaraisa@ub.ac.id', 'neilaraisa@gmail.com'), +(864, 'dr. Eko Arisetijono, Sp. S (K)', 'DPJP', 'Neurologi', 'drekoarisetijono.fk@ub.ac.id', '-'), +(865, 'dr. Rodhiyan Rakhmatiar, Sp.S (K) M. Biomed', 'DPJP', 'Neurologi', 'odhy_neuro@ub.ac.id', 'odhy.fkub03@gmail.com'), +(866, 'dr. Zamroni A, Sp. S (K)', 'DPJP', 'Neurologi', 'dr_zamroniafif@ub.ac.id', 'drzamroniafif98@gmail.com'), +(867, 'dr. Machlusil Husna, Sp. S (K)ย ', 'DPJP', 'Neurologi', 'machlusilhusna.fk@ub.ac.id', 'machlusilhusna@yahoo.com'), +(868, 'dr. Sri Budhi Rianawati, Sp. S (K)', 'DPJP', 'Neurologi', 'rien62.fk@ub.ac.id', '-'), +(869, 'Dr. dr. Shahdevi Nandar K, Sp. S (K)', 'DPJP', 'Neurologi', 'shahdevinandar@ub.ac.id', 'shahdevinandar@gmail.com'), +(870, 'dr. Catur Arisetianto, Sp. S (K)', 'DPJP', 'Neurologi', 'catur-ari@ub.ac.id', 'drcaturarisetianto@gmail.com'), +(871, 'dr. Widodo Mardi Santoso, Sp. S (K)', 'DPJP', 'Neurologi', 'widodotita.fk@ub.ac.id', '-'), +(872, 'dr. Badrul Munir, Sp. S (K)', 'DPJP', 'Neurologi', 'badroel2007@ub.ac.id', 'badroel2007@yahoo.com'), +(873, 'dr. Dessika Rahmawati, Sp. S (K)', 'DPJP', 'Neurologi', 'dessikasps@ub.ac.id', 'Dessika_dr@yahoo.com'), +(874, 'dr. Ria Damayanti, M.Biomed, Sp.S(K)', 'DPJP', 'Neurologi', 'dr.riadamayanti@ub.ac.id', 'dr.riadamayanti@yahoo.com'), +(875, 'dr. Adecya Amaryllis Risa Putri, Sp.N', 'DPJP', 'Neurologi', '-', 'adecyaamaryllis@gmail.com'), +(876, 'Dr. dr. Rini Andriani, Sp.S(K)', 'DPJP', 'Neurologi', '-', 'andrianirini13@yahoo.com'), +(877, 'dr. Wahyuni Ramadhani Suaib', 'PPDS', 'Neurologi', 'wandasuaib@student.ub.ac.id', '-'), +(878, 'Bisma Dewanto Ari Prabowo', 'PPDS', 'Neurologi', 'bismadewanto@student.ub.ac.id', '-'), +(879, 'Ausi Mutiara Dwi Atri', 'PPDS', 'Neurologi', 'ausidwiatri2021@student.ub.ac.id', '-'), +(880, 'Adeliza Firzarosany Insanitaqwa', 'PPDS', 'Neurologi', 'adeliza@student.ub.ac.id', '-'), +(881, 'Angga Pratama', 'PPDS', 'Neurologi', 'anggapfkub07@student.ub.ac.id', '-'), +(882, 'Wa Ode Nur Intan Octina', 'PPDS', 'Neurologi', 'wdnurintanoct@student.ub.ac.id', '-'), +(883, 'dr. Fatma Rahmalia Izzati', 'PPDS', 'Neurologi', 'fatmaneuro@student.ub.ac.id', '-'), +(884, 'Miranthi Ayu Irnanda', 'PPDS', 'Neurologi', 'miranthiayui@student.ub.ac.id', '-'), +(885, 'AISYIYAH ALVIANA AGUSTIN', 'PPDS', 'Neurologi', 'aisyiyahalviana@student.ub.ac.id', '-'), +(886, 'Ahmad Abdul Hadiy Az-zakiy', 'PPDS', 'Neurologi', 'hadhyaz@student.ub.ac.id', '-'), +(887, 'Enggar Gumelar', 'PPDS', 'Neurologi', 'enggargumelar@student.ub.ac.id', '-'), +(888, 'dr.M.Effendy Nugraha Hasibuan', 'PPDS', 'Neurologi', 'fendy19991@student.ub.ac.id', '-'), +(889, 'Ananto Suar Bhakti Ibrahim', 'PPDS', 'Neurologi', 'anantosbi@student.ub.ac.id', '-'), +(890, 'Dody Riandono', 'PPDS', 'Neurologi', 'dodyriandono@student.ub.ac.id', '-'), +(891, 'Shelby Amrus Ernanda', 'PPDS', 'Neurologi', 'shelbyernanda@student.ub.ac.id', '-'), +(892, 'Merika Soraya', 'PPDS', 'Neurologi', 'merikasoraya@student.ub.ac.id', '-'), +(893, 'Annisa Rahma', 'PPDS', 'Neurologi', 'nisaxrahma@student.ub.ac.id', '-'), +(894, 'Ditaris Galih Iman', 'PPDS', 'Neurologi', 'ditaris@student.ub.ac.id', '-'), +(895, 'Nada Yuliandha', 'PPDS', 'Neurologi', 'yuliandhanay@student.ub.ac.id', '-'), +(896, 'Setia Budi Tjendra', 'PPDS', 'Neurologi', 'setiabudi@student.ub.ac.id', '-'), +(897, 'WAHYU DWIRIMA KARTIKA SARI', 'PPDS', 'Neurologi', 'wahyudwirimaks@student.ub.ac.id', '-'), +(898, 'Nur Amalia Permatasari', 'PPDS', 'Neurologi', 'permatamalia14@student.ub.ac.id', '-'), +(899, 'Ahmad Maulana Puta', 'PPDS', 'Neurologi', 'maulanaputa@student.ub.ac.id', '-'), +(900, 'Lalu Muhammad Nuh', 'PPDS', 'Neurologi', 'mrgenooeh3@student.ub.ac.id', '-'), +(901, 'Dyah Ayu Kurniasari', 'PPDS', 'Neurologi', 'd_ayukurniasari@student.ub.ac.id', '-'), +(902, 'SETIYAWAN NURBIANTARA', 'PPDS', 'Neurologi', 'nurbiataralife@student.ub.ac.id', '-'), +(903, 'Wayan Agus Candra Swastika', 'PPDS', 'Neurologi', 'candraswas@student.ub.ac.id', '-'), +(904, 'Senoadji Pratama', 'PPDS', 'Neurologi', 'senoadjipratama@student.ub.ac.id', '-'), +(905, 'Sari Dianita Purnama', 'PPDS', 'Neurologi', 'purnamasari@student.ub.ac.id', '-'), +(906, 'Galang Mahasin Muhammad', 'PPDS', 'Neurologi', 'galangmuhammad@student.ub.ac.id', '-'), +(907, 'Febrina Friscilia', 'PPDS', 'Neurologi', 'febrina1@student.ub.ac.id', '-'), +(908, 'Firda Aunidiah Putri', 'PPDS', 'Neurologi', 'firdaaunidiah20@student.ub.ac.id', '-'), +(909, 'allyssa rahmaditta', 'PPDS', 'Neurologi', 'allyssarahma@student.ub.ac.id', '-'), +(910, 'Arvidareyna Panca Aprilianingtyas', 'PPDS', 'Neurologi', 'arvidareyna@student.ub.ac.id', '-'), +(911, 'Bima Perwirayuda', 'PPDS', 'Neurologi', 'bimaperwirayuda@student.ub.ac.id', '-'), +(912, 'KANIA AVIANDI SAVITRI', 'PPDS', 'Neurologi', 'kania_aviandis@student.ub.ac.id', '-'), +(913, 'Masyalia Hasna Taqiyyah', 'PPDS', 'Neurologi', 'masyaliahasna@student.ub.ac.id', '-'), +(914, 'Rahma Lutfiana Yaktiani', 'PPDS', 'Neurologi', 'rahmayaktiani@student.ub.ac.id', '-'), +(915, 'dr. Alfiani Rosyida Arisanti', 'PPDS', 'Neurologi', 'alfiani1212@student.ub.ac.id', '-'), +(916, 'Vany Matasak', 'PPDS', 'Neurologi', 'vanymatasak@student.ub.ac.id', '-'), +(917, 'Muhammad Dhiya Rahadian', 'PPDS', 'Neurologi', 'm_dhiyarahadian@student.ub.ac.id', '-'), +(918, 'Yosefin Joenadi', 'PPDS', 'Neurologi', 'yosefin_joenadi@student.ub.ac.id', '-'), +(919, 'Elsye Margareth Pattiasina', 'PPDS', 'Neurologi', 'elsyemargareth@student.ub.ac.id', '-'), +(920, 'Muhammad Rifqy Romadhoni', 'PPDS', 'Neurologi', 'mrifqyromadhoni@student.ub.ac.id', '-'), +(921, 'Muhammad Unzila Rafsi Zulfikri', 'PPDS', 'Neurologi', 'unzila_rafsi@student.ub.ac.id', '-'), +(922, 'Rangsang Bagus Prabowo', 'PPDS', 'Neurologi', 'rangsangbagus@student.ub.ac.id', '-'), +(923, 'Rosmala Lamaira', 'PPDS', 'Neurologi', 'rosmalalamaira@student.ub.ac.id', '-'), +(924, 'Nadya Marsella BR Simanungkalit', 'PPDS', 'Neurologi', 'nadya_kalit@student.ub.ac.id', '-'), +(925, 'Dr.dr. Tatit Nurseta, Sp.OG (K)ย ', 'DPJP', 'Obsgyn', 'tns_obg.fk@ub.ac.id', 'tatitnurseta@gmail.com'), +(926, 'dr. Yahya Irwanto, Sp.OG (K)', 'DPJP', 'Obsgyn', 'yahyairwanto50@ub.ac.id', 'yahyairwanto50@gmail.com'), +(927, 'Dr.dr. I Wayan Arsana Wiyasa, Sp.OG (K)ย ', 'DPJP', 'Obsgyn', 'arSp.OG.fk@ub.ac.id', 'arsanawiyasa@gmail.com'), +(928, 'dr. Pande Made Dwi Jayasa, Sp.OG (K)ย ', 'DPJP', 'Obsgyn', 'pmd_obg.fk@ub.ac.id', 'dr.pandemlg@yahoo.com'), +(929, 'dr. Sutrisno, Sp.OG (K)', 'DPJP', 'Obsgyn', 'snoSp.OG.fk@ub.ac.id', 'snoSp.OGk@gmail.com'), +(930, 'dr. Hermawan Wibisono, Sp.OG (K)PhD', 'DPJP', 'Obsgyn', 'sonspog.fk@ub.ac.id', '-'), +(931, 'Dr. dr. Bambang Rahardjo, Sp.OG (K)', 'DPJP', 'Obsgyn', 'bar_obg.fk@ub.ac.id', 'bar_feto@yahoo.com'), +(932, 'Dr. dr. Nugrahanti Prasetyorini, Sp.OG (K)ย ', 'DPJP', 'Obsgyn', 'nuke_obg.fk@ub.ac.id', 'nuke_obg@yahoo.com'), +(933, 'dr. Mukhamad Nooryanto, Sp.OG (K)', 'DPJP', 'Obsgyn', 'mor_feto.fk@ub.ac.id', 'morSp.OG@gmail.com'), +(934, 'dr. Suheni Ninik Hariyati, Sp.OG', 'DPJP', 'Obsgyn', 'suheni.fk@ub.ac.id', '-'), +(935, 'dr. Anggia Prameswari, Sp. OG', 'DPJP', 'Obsgyn', '-', 'anggiaprameswari910@gmail.com'), +(936, 'Dr. dr. Edi Mustofa, Sp.OG (K)', 'DPJP', 'Obsgyn', '-', 'edy.mustofa.obgynsos@gmail.com'), +(937, 'DR. dr. Rahajeng, Sp. OG (K)ย ', 'DPJP', 'Obsgyn', 'rahajeng.fk@ub.ac.id', 'jen_urogyn@yahoo.co.id'), +(938, 'dr. Rudi Priyo Utomo, Sp.OG', 'DPJP', 'Obsgyn', '-', 'rugia84@gmail.com'), +(939, 'Dr. dr. I Wayan Agung Indrawan, Sp.OG(K)', 'DPJP', 'Obsgyn', 'dr_iwa.fk@ub.ac.id', 'wayanagung.wa@gmail.com'), +(940, 'dr. Adityo Prabowo, Sp.OG, M.Ked.Klin', 'DPJP', 'Obsgyn', 'adityoprabowo@ub.ac.id', '-'), +(941, 'dr. Arghya Wicaksana, Sp.OG.', 'DPJP', 'Obsgyn', 'arghya@ub.ac.id', '-'), +(942, 'dr. Cholid Rohman Riskianto, Sp.OG', 'DPJP', 'Obsgyn', '-', 'cholidrochman@gmail.com'), +(943, 'dr. Irfani Baihaqi, Sp.OG', 'DPJP', 'Obsgyn', '-', 'irfanibaihaqiSp.OG@gmail.com'), +(944, 'dr. Eka Nasrur Maulana, Sp.OG', 'DPJP', 'Obsgyn', '-', 'rur.obgyn@gmail.com'), +(945, 'dr. Fatmasari Perdana Menur, Sp.OG', 'DPJP', 'Obsgyn', '-', 'doc.pm84@gmail.com'), +(946, 'dr. Nirmala Gina Prabawati, Sp.OG', 'DPJP', 'Obsgyn', '-', 'prabawati.gina@gmail.com'), +(947, 'dr. Onni Dwi Arianto, Sp.OG', 'DPJP', 'Obsgyn', '-', 'onnidwiarianto@gmail.com'), +(948, 'dr. Puspita Handayani, Sp.OG(K)', 'DPJP', 'Obsgyn', '-', 'puspitaobg26@gmail.com'), +(949, 'dr. Roni Subrata, Sp.OG', 'DPJP', 'Obsgyn', '-', 'dr.ronisubrata03@gmail.com'), +(950, 'dr. Teguh Wiyono, Sp.OG', 'DPJP', 'Obsgyn', '-', 'teguhwiyonobgyn@gmail.com'), +(951, 'dr. Handi Firmansyah, Sp.OG, M.Ked.Klin', 'DPJP', 'Obsgyn', '-', 'handifirmansyah83@gmail.com'), +(952, 'dr. Dhian Eka Putri Harnandari, Sp.OG', 'DPJP', 'Obsgyn', '-', 'dhianeka.dr@gmail.com'), +(953, 'dr. Aditya Fendi Uji Pamungkas, Sp.OG', 'DPJP', 'Obsgyn', '-', 'aremaniadoctor@gmail.com'), +(954, 'dr. Mulyo Hadi Wibowo, Sp.OG', 'DPJP', 'Obsgyn', '-', 'mulyohadiwibowo@gmail.com'), +(955, 'dr. Adin Yan Permana, Sp.OG', 'DPJP', 'Obsgyn', '-', '13adinyanpermana@gmail.com'), +(956, 'dr. Mochamad Putro Argo, Sp.OG', 'DPJP', 'Obsgyn', '-', 'dr.putraargo@gmail.com'), +(957, 'dr. Margaretha Claudhya Febryanna, Sp.OG, M.Ked.Klin', 'DPJP', 'Obsgyn', '-', 'dr.mcfebryanna@gmail.com'), +(958, 'dr. Faiza Fardha Auliya', 'PPDS', 'Obsgyn', 'faizafardha@student.ub.ac.id', '-'), +(959, 'Tendri Ayu Putri Kahar', 'PPDS', 'Obsgyn', 'tendriayu@student.ub.ac.id', '-'), +(960, 'Geneung Patridina', 'PPDS', 'Obsgyn', 'gpatridina@student.ub.ac.id', '-'), +(961, 'Heristanto', 'PPDS', 'Obsgyn', 'heristanto@student.ub.ac.id', '-'), +(962, 'Yohanes Adam Elsoin', 'PPDS', 'Obsgyn', 'elsoinyohanes@student.ub.ac.id', '-'), +(963, 'Harry Dwi Pratama', 'PPDS', 'Obsgyn', 'harryoct91@student.ub.ac.id', '-'), +(964, 'Atika Sugiarto', 'PPDS', 'Obsgyn', 'atikasugiarto@student.ub.ac.id', '-'), +(965, 'Annisa Adhania Rusfandi', 'PPDS', 'Obsgyn', 'annisarusfandi@student.ub.ac.id', '-'), +(966, 'Rivi Darmawan', 'PPDS', 'Obsgyn', 'rividarm3896@student.ub.ac.id', '-'), +(967, 'Chynthea Paramitha Dewi', 'PPDS', 'Obsgyn', 'chyntheapd@student.ub.ac.id', '-'), +(968, 'Fathi Nabila Alim', 'PPDS', 'Obsgyn', 'fathinabila@student.ub.ac.id', '-'), +(969, 'Febie Putra Suwana', 'PPDS', 'Obsgyn', 'febieputra@student.ub.ac.id', '-'), +(970, 'setio leksono', 'PPDS', 'Obsgyn', 'setioleksonotyo@student.ub.ac.id', '-'), +(971, 'Ripandi Yuspa', 'PPDS', 'Obsgyn', 'ripandiyuspa@student.ub.ac.id', '-'), +(972, 'dr. UMAR GUNARSA SUKANDAR', 'PPDS', 'Obsgyn', 'gunarsaunibraw@student.ub.ac.id', '-'), +(973, 'Rizki Wahyuni', 'PPDS', 'Obsgyn', 'kikiwahyuni91@student.ub.ac.id', '-'), +(974, 'Rosalia Purbandari', 'PPDS', 'Obsgyn', 'rosapurbandari@student.ub.ac.id', '-'), +(975, 'dr. Wulandari', 'PPDS', 'Obsgyn', 'wulanobg@student.ub.ac.id', '-'), +(976, 'Sakinah', 'PPDS', 'Obsgyn', 'sasawandira@student.ub.ac.id', '-'), +(977, 'Qonita Prasta Agustia', 'PPDS', 'Obsgyn', 'qonitaprasta@student.ub.ac.id', '-'), +(978, 'LIDYA DANIATI', 'PPDS', 'Obsgyn', 'lidyaniljuli22@student.ub.ac.id', '-'), +(979, 'Leny Silviana Farida', 'PPDS', 'Obsgyn', 'lenysfarida@student.ub.ac.id', '-'), +(980, 'Ferdinand Umbu Pati', 'PPDS', 'Obsgyn', 'ferdinandumbu@student.ub.ac.id', '-'), +(981, 'Angga Dominius', 'PPDS', 'Obsgyn', 'anggadominius@student.ub.ac.id', '-'), +(982, 'Yuli Ayu Diani', 'PPDS', 'Obsgyn', 'yuliayudiani@student.ub.ac.id', '-'), +(983, 'Theresia Citra Mila Mesa', 'PPDS', 'Obsgyn', 'theresiacitra@student.ub.ac.id', '-'), +(984, 'Wredi Angganingrum', 'PPDS', 'Obsgyn', 'wredianingrum@student.ub.ac.id', '-'), +(985, 'Wenny Yolanda', 'PPDS', 'Obsgyn', 'wennyyolanda@student.ub.ac.id', '-'), +(986, 'raizsa rusmiathie noor', 'PPDS', 'Obsgyn', 'raizsarum94@student.ub.ac.id', '-'), +(987, 'Yohanes Rico Nurhaeni', 'PPDS', 'Obsgyn', 'yoohanesricoo@student.ub.ac.id', '-'), +(988, 'Rahmawati Abdul Hakim', 'PPDS', 'Obsgyn', 'rahmatya@student.ub.ac.id', '-'), +(989, 'Aulia Astari', 'PPDS', 'Obsgyn', 'astariaulia@student.ub.ac.id', '-'), +(990, 'Muhammad Aris Indrawan', 'PPDS', 'Obsgyn', 'arisindrawan@student.ub.ac.id', '-'), +(991, 'ANDREAS TEDI SURYANTA KARO - KARO', 'PPDS', 'Obsgyn', 'andreastedi@student.ub.ac.id', '-'), +(992, 'Rony Sibuea', 'PPDS', 'Obsgyn', 'drronysibuea@student.ub.ac.id', '-'), +(993, 'Maria Grace Tania', 'PPDS', 'Obsgyn', 'mariagtania@student.ub.ac.id', '-'), +(994, 'Maria Kurniati Susan Endang Dangur', 'PPDS', 'Obsgyn', 'mariappdsog@student.ub.ac.id', '-'), +(995, 'Yustia Ika Wardhani', 'PPDS', 'Obsgyn', 'yustiaikaw@student.ub.ac.id', '-'), +(996, 'Siti Meiliza', 'PPDS', 'Obsgyn', 'sitimeiliza@student.ub.ac.id', '-'), +(997, 'Deo Apringga Ayu Nanta', 'PPDS', 'Obsgyn', 'dapringga@student.ub.ac.id', '-'), +(998, 'USWAH HASANAH', 'PPDS', 'Obsgyn', 'uswahasanaah@student.ub.ac.id', '-'), +(999, 'Gorby Arvin Lillo', 'PPDS', 'Obsgyn', 'gorbyppdsog@student.ub.ac.id', '-'), +(1000, 'Fania Rachmadani', 'PPDS', 'Obsgyn', 'faniappdsog@student.ub.ac.id', '-'), +(1001, 'Malaura Elfrida Simarmata', 'PPDS', 'Obsgyn', 'malaura@student.ub.ac.id', '-'), +(1002, 'Elviara Martha Tinova Suprapto', 'PPDS', 'Obsgyn', 'elviaratinova@student.ub.ac.id', '-'), +(1003, 'Ngakan Gde Arya Ratmaja putra', 'PPDS', 'Obsgyn', 'aryakrp30@student.ub.ac.id', '-'), +(1004, 'Giovanny Azalia Gunawan', 'PPDS', 'Obsgyn', 'giogunawan@student.ub.ac.id', '-'), +(1005, 'Latania Naufa Arinugraha', 'PPDS', 'Obsgyn', 'latanianaufaa@student.ub.ac.id', '-'), +(1006, 'Siluh Putu Chinintya Vania Saraswati', 'PPDS', 'Obsgyn', 'vaniasaraswati1@student.ub.ac.id', '-'), +(1007, 'MUJI SUTRISNO', 'PPDS', 'Obsgyn', 'mujisutrisno@student.ub.ac.id', '-'), +(1008, 'Lucky Riadi', 'PPDS', 'Obsgyn', 'luckyriadi@student.ub.ac.id', '-'), +(1009, 'Ellenora Resti Mustikaningrat', 'PPDS', 'Obsgyn', 'ellenoresti@student.ub.ac.id', '-'), +(1010, 'Febrinda Esti Syafitri', 'PPDS', 'Obsgyn', 'ben_resog25@student.ub.ac.id', '-'), +(1011, 'Azmiyah Febri Pramawardani', 'PPDS', 'Obsgyn', 'faz_resog25@student.ub.ac.id', '-'), +(1012, 'Rizal Adhi Kurniawan', 'PPDS', 'Obsgyn', 'ran_resog25@student.ub.ac.id', '-'), +(1013, 'ZAKIYAH ZULFA', 'PPDS', 'Obsgyn', 'haz_resog25@student.ub.ac.id', '-'), +(1014, 'Dhea Sofiana Mellazulfa', 'PPDS', 'Obsgyn', 'dif_resog25@student.ub.ac.id', '-'), +(1015, 'dr.Thomas Erwin CJ Huwae, Sp.OT (K)', 'DPJP', 'Orthopaedi', 'huwaethomas@ub.ac.id', 'huwaethomas@yahoo.com\nthomashuwae89@yahoo.com'), +(1016, 'dr.Agung Riyanto Budi Santoso, Sp.OT (K)', 'DPJP', 'Orthopaedi', 'agung_riyanto@ub.ac.id', 'choisiee@yahoo.com'), +(1017, 'dr.Istan Irmansyah Irsan, Sp.OT (K)ย ', 'DPJP', 'Orthopaedi', 'istan_irmansyah@ub.ac.id', 'istan_irmansyah@yahoo.com'), +(1018, 'dr.Satria Pandu Persada Isma, Sp.OT (K)', 'DPJP', 'Orthopaedi', 'percyisma@ub.ac.id', 'percyisma@yahoo.com'), +(1019, 'dr.Syaifullah Asmiragani, Sp.OT (K)ย ', 'DPJP', 'Orthopaedi', 'syaifullahag@ub.ac.id', 'syaifullahag@yahoo.com'), +(1020, 'dr.Andhika Yudistira, Sp.OT (K)', 'DPJP', 'Orthopaedi', 'andhika.yudhistira@ub.ac.id', 'andhika.yudistira@ymail.com'), +(1021, 'dr. Ery Satriawan, Sp. OT', 'DPJP', 'Orthopaedi', '-', 'ery.satriawan8487@gmail.com'), +(1022, 'Dr.dr.Edi Mustamsir, Sp.OT (K)ย ', 'DPJP', 'Orthopaedi', 'edimustamsir@ub.ac.id', 'edimustamsir@yahoo.co.id'), +(1023, 'dr.Krisna Yuarno Patama, Sp.OT (K)', 'DPJP', 'Orthopaedi', 'krisnayuarno@ub.ac.id', 'krisnayuarno@gmail.com'), +(1024, 'dr.Ananto Satya Pradana Drajat, Sp.OT', 'DPJP', 'Orthopaedi', 'satyapradana88@ub.ac.id', 'satyapradana88@gmail.com'), +(1025, 'Prof.Dr.dr.Respati S. Dradjat, Sp.OT (K)ย ', 'DPJP', 'Orthopaedi', 'respatisdradjat@ub.ac.id', 'respatisdradjat@yahoo.com'), +(1026, 'dr.Panji Sananta, M.Ked, Sp.OT (K)', 'DPJP', 'Orthopaedi', 'panjisananta@ub.ac.id', 'panjipst@gmail.com\np_sananta@yahoo.com'), +(1027, 'dr. Domy Pradana Putra, Sp.OT', 'DPJP', 'Orthopaedi', 'domy_pradana@ub.ac.id', '-'), +(1028, 'dr. Adhi Satriyo Utomo, Sp.OT.', 'DPJP', 'Orthopaedi', 'sam.ortho@ub.ac.id', '-'), +(1029, 'dr. Rakhmad Aditya Hernawan, Sp.OT.', 'DPJP', 'Orthopaedi', 'aditflea@ub.ac.id', '-'), +(1030, 'dr. Indo Rizki Pramulia, Sp.OT', 'DPJP', 'Orthopaedi', '-', 'indorizki27@gmail.com dan dr.indorizki@yahoo.com'), +(1031, 'dr. Arianto Prabowo, Sp.OT', 'DPJP', 'Orthopaedi', '-', 'dr_hernandez82@yahoo.com'), +(1032, 'dr. Brian Dhananjaya, Sp.OT', 'DPJP', 'Orthopaedi', '-', 'briandhananjaya@gmail.com'), +(1033, 'dr. Broto Suwadji, Sp.OT', 'DPJP', 'Orthopaedi', '-', 'dokterbroto@yahoo.com'), +(1034, 'dr. Hamzah, Sp.OT', 'DPJP', 'Orthopaedi', '-', 'hmz.jfr33@gmail.com'), +(1035, 'dr. Johan Bastian, Sp.OT', 'DPJP', 'Orthopaedi', '-', 'joerafrizal@yahoo.co.id'), +(1036, 'dr. Mujiyono, Sp.OT(K)', 'DPJP', 'Orthopaedi', '-', 'iyon9882@gmail.com'), +(1037, 'dr. R. Satriyo Aji, Sp.OT(K)', 'DPJP', 'Orthopaedi', '-', 'satriyo.ortho73@gmail.com'), +(1038, 'dr. Rangga Arieza Fachlevi, M.Kes, Sp.OT', 'DPJP', 'Orthopaedi', '-', 'ranggaarieza@gmail.com'), +(1039, 'Prof. Dr. dr. Mohamad Hidajat, Sp.B, Sp.OT(K)', 'DPJP', 'Orthopaedi', '-', 'm_hidayat@ub.ac.id'), +(1040, 'dr. Donny Noerhadiono C., Sp.OT(K) Spine', 'DPJP', 'Orthopaedi', '-', 'donnynoerhadiono@gmail.com'), +(1041, 'dr. Dandy Drestanto Adiwignyo, SpOT', 'DPJP', 'Orthopaedi', '-', '-'), +(1042, 'dr. Anindita Eka Pramana Wijaya, SpOT', 'DPJP', 'Orthopaedi', '-', '-'), +(1043, 'Faiz Alam Rasyid', 'PPDS', 'Orthopaedi', 'faizalamrasyid@student.ub.ac.id', '-'), +(1044, 'MUCHAMMAD BAGUS ALI HASMI', 'PPDS', 'Orthopaedi', 'mbagusalihasmi@student.ub.ac.id', '-'), +(1045, 'William Putera Sukmajaya', 'PPDS', 'Orthopaedi', 'williampsky@student.ub.ac.id', '-'), +(1046, 'Ade Churie Tanjaya', 'PPDS', 'Orthopaedi', 'adechurie90@student.ub.ac.id', '-'), +(1047, 'Teddy Arga Saputro', 'PPDS', 'Orthopaedi', 'teddyarga@student.ub.ac.id', '-'), +(1048, 'Ray Asaf Hexa Pandiangan', 'PPDS', 'Orthopaedi', 'asafortho@student.ub.ac.id', '-'), +(1049, 'Surya Iman Muhammad', 'PPDS', 'Orthopaedi', 'suryaiman@student.ub.ac.id', '-'), +(1050, 'Muhammad Alif Rio Yudhatama', 'PPDS', 'Orthopaedi', 'rioalif30@student.ub.ac.id', '-'), +(1051, 'Andryan Hanafi Bakri', 'PPDS', 'Orthopaedi', 'andryanh07@student.ub.ac.id', '-'), +(1052, 'Felix Cendikiawan', 'PPDS', 'Orthopaedi', 'felixc@student.ub.ac.id', '-'), +(1053, 'Andika Ghifari', 'PPDS', 'Orthopaedi', 'andikaghifari@student.ub.ac.id', '-'), +(1054, 'Mochamad Febryan Kevien Fadrijanto', 'PPDS', 'Orthopaedi', 'febryankevienn@student.ub.ac.id', '-'), +(1055, 'Belinda Azhari Siswanto', 'PPDS', 'Orthopaedi', 'belindasiswanto@student.ub.ac.id', '-'), +(1056, 'Muhammad Alwy Sugiarto', 'PPDS', 'Orthopaedi', 'alwysugiarto@student.ub.ac.id', '-'), +(1057, 'Darmawan Darkim', 'PPDS', 'Orthopaedi', 'darmawandarkim@student.ub.ac.id', '-'), +(1058, 'Annas Abdurrahman Asmiragani', 'PPDS', 'Orthopaedi', 'annasasmiragani@student.ub.ac.id', '-'), +(1059, 'Ahmad Muhsinin', 'PPDS', 'Orthopaedi', 'ahmadmuhsinin@student.ub.ac.id', '-'), +(1060, 'Muhammad Abduh', 'PPDS', 'Orthopaedi', 'muhammadabduh@student.ub.ac.id', '-'), +(1061, 'Lasa Dhakka Siahaan', 'PPDS', 'Orthopaedi', 'lasasiahaan@student.ub.ac.id', '-'), +(1062, 'Yudha Anantha Khaerul Putra', 'PPDS', 'Orthopaedi', 'yudhaananthakp@student.ub.ac.id', '-'), +(1063, 'Abraham Emes', 'PPDS', 'Orthopaedi', 'abrahamemes@student.ub.ac.id', '-'), +(1064, 'Albert Renard Soedianto', 'PPDS', 'Orthopaedi', 'renardsudianto@student.ub.ac.id', '-'), +(1065, 'dr. Milda Agniasari', 'PPDS', 'Orthopaedi', 'mildaagniasari@student.ub.ac.id', '-'), +(1066, 'DAYLAN OSCAR HERMAWAN', 'PPDS', 'Orthopaedi', 'daylanoscar@student.ub.ac.id', '-'), +(1067, 'Raymond Pangestu Halim', 'PPDS', 'Orthopaedi', 'raymondphalim@student.ub.ac.id', '-'), +(1068, 'Dwilan Achmad Fauzan', 'PPDS', 'Orthopaedi', 'dwilanachmad@student.ub.ac.id', '-'), +(1069, 'Rizaldi Mahardika Rachman', 'PPDS', 'Orthopaedi', 'aldimahardika@student.ub.ac.id', '-'), +(1070, 'Septabian Iskandar', 'PPDS', 'Orthopaedi', 'septabian@student.ub.ac.id', '-'), +(1071, 'Dani Pratama Febrianto', 'PPDS', 'Orthopaedi', 'danipratama4@student.ub.ac.id', '-'), +(1072, 'Aulia Pandu Aji', 'PPDS', 'Orthopaedi', 'panduaji@student.ub.ac.id', '-'), +(1073, 'Firman Emir Faizal Gani', 'PPDS', 'Orthopaedi', 'firmvn@student.ub.ac.id', '-'), +(1074, 'Christopher Daniel Halomoan', 'PPDS', 'Orthopaedi', 'tanjungchris@student.ub.ac.id', '-'), +(1075, 'Ali Rifqi Alkaff', 'PPDS', 'Orthopaedi', 'alirifqia@student.ub.ac.id', '-'), +(1076, 'Andri Arieska Wicaksana', 'PPDS', 'Orthopaedi', 'adrasna@student.ub.ac.id', '-'), +(1077, 'Fandy Setiawan', 'PPDS', 'Orthopaedi', 'fandyortho@student.ub.ac.id', '-'), +(1078, 'Mardlathillah Muhammad Asyhuri', 'PPDS', 'Orthopaedi', 'mardlathillah@student.ub.ac.id', '-'), +(1079, 'Erwin Alexander Pasaribu', 'PPDS', 'Orthopaedi', 'erwinap11ot@student.ub.ac.id', '-'), +(1080, 'Bima Mahardhika Aji', 'PPDS', 'Orthopaedi', 'bimaortho@student.ub.ac.id', '-'), +(1081, 'Wintang Dayinta Tanaya Hutami', 'PPDS', 'Orthopaedi', 'hutamiwintang@student.ub.ac.id', '-'), +(1082, 'Djati Herlambang', 'PPDS', 'Orthopaedi', 'djatiherlambang@student.ub.ac.id', '-'), +(1083, 'Felix Giovanni Hartono', 'PPDS', 'Orthopaedi', 'felixgiovahart@student.ub.ac.id', '-'), +(1084, 'Abdillah Budi Ksatria', 'PPDS', 'Orthopaedi', 'abdillahksatria@student.ub.ac.id', '-'), +(1085, 'Made Widhia Laksamana Putra', 'PPDS', 'Orthopaedi', 'madewidhiamd@student.ub.ac.id', '-'), +(1086, 'dr. Moh. Rifqi fathoni', 'PPDS', 'Orthopaedi', 'rifqifathoni@student.ub.ac.id', '-'), +(1087, 'ROBBY LAUREN.K', 'PPDS', 'Orthopaedi', 'robbylk97@student.ub.ac.id', '-'), +(1088, 'Alexander Fernando', 'PPDS', 'Orthopaedi', 'alxfrndortho@student.ub.ac.id', '-'), +(1089, 'Barnard M. Syaifudin', 'PPDS', 'Orthopaedi', 'barnardmi6@student.ub.ac.id', '-'), +(1090, 'Dr. dr. Susanthy Dj, Sp.P (K)ย ', 'DPJP', 'Paru', 'susanthy@ub.ac.id', 'susanthydj@gmail.com\nbimodj@yahoo.com'), +(1091, 'dr. Aditya Sp.P', 'DPJP', 'Paru', '-', '-'), +(1092, 'dr. Ungky Agus Setyawan, Sp.P (K)ย ', 'DPJP', 'Paru', 'dr_ungky_paru@ub.ac.id', 'uncret_ukuk@yahoo.co.id'), +(1093, 'dr. Suryanti Dwi Pratiwi, Sp.P (K)', 'DPJP', 'Paru', 'suryanti@ub.ac.id', 'wiwinarief1975@yahoo.co.id'), +(1094, 'dr. Ngakan Putu P Putra, Sp.P (K)', 'DPJP', 'Paru', 'ngakanputu@ub.ac.id', 'putu_paru@yahoo.com'), +(1095, 'dr. Rezki Tantular, Sp.P (K)', 'DPJP', 'Paru', '-', 'tantular@gmail.com'), +(1096, 'dr. Triwahju Astuti, M.Kes, Sp.P (K)', 'DPJP', 'Paru', 'astuti@ub.ac.id', 'astutidrparu@yahoo.co.id'), +(1097, 'dr. Iin Noor Chozin, Sp.P', 'DPJP', 'Paru', 'iin@ub.ac.id', 'iinfkub@gmail.com'), +(1098, 'dr. Sastia Rakhma, Sp.P', 'DPJP', 'Paru', 'sastiarakhma@ub.ac.id', 'sastyo@gmail.com'), +(1099, 'dr. Fitri Indah Sari, Sp.P', 'DPJP', 'Paru', 'fitrindahs1705@ub.ac.id', '-'), +(1100, 'dr. Aditya Sri Listyoko, Sp.P(K)', 'DPJP', 'Paru', 'adityalistyoko@ub.ac.id', '-'), +(1101, 'Dr. dr. Jani Jane Rosihaningsih Sugiri, Sp.P(K)', 'DPJP', 'Paru', 'jani@ub.ac.id', 'yjsugiri@gmail.com'), +(1102, 'dr. Deden Permana, Sp.P', 'DPJP', 'Paru', '-', 'dr.deden80@gmail.com'), +(1103, 'dr. Yunita Eka Wati, Sp.P', 'DPJP', 'Paru', '-', 'yunitaekawati@yahoo.co.id'), +(1104, 'dr. Christian Surya Eka Putra, Sp.P', 'DPJP', 'Paru', '-', 'christsurya10@gmail.com'), +(1105, 'dr. Muhamad Yusuf Musthafa, Sp.P', 'DPJP', 'Paru', '-', 'yusuf.musthafa.ym@gmail.com'), +(1106, 'Ari Irawan', 'PPDS', 'Paru', 'ariirawan@student.ub.ac.id', '-'), +(1107, 'Andriana Adolf Nggay', 'PPDS', 'Paru', 'andriana0706@student.ub.ac.id', '-'), +(1108, 'dr. Lia Susanti', 'PPDS', 'Paru', 'liasusanti0803@student.ub.ac.id', '-'), +(1109, 'Hustorio Aliongko Simamora', 'PPDS', 'Paru', 'hustorio@student.ub.ac.id', '-'), +(1110, 'Fibrianti Ratnasari', 'PPDS', 'Paru', 'pulmofibrianti@student.ub.ac.id', '-'), +(1111, 'Rahma djamaludin', 'PPDS', 'Paru', 'rahmadjamaludin@student.ub.ac.id', '-'), +(1112, 'Fahnida Nazliah', 'PPDS', 'Paru', 'fahnidanazliah@student.ub.ac.id', '-'), +(1113, 'Abdul Malik Fajri', 'PPDS', 'Paru', 'abdulmalikfajri@student.ub.ac.id', '-'), +(1114, 'Albert Lyono', 'PPDS', 'Paru', 'albertlyono8@student.ub.ac.id', '-'), +(1115, 'Satya Setiadi', 'PPDS', 'Paru', 'satyasetiadi6@student.ub.ac.id', '-'), +(1116, 'Harini Rahadiyanti', 'PPDS', 'Paru', 'raha07dynt@student.ub.ac.id', '-'), +(1117, 'Peter Krisdiyanto', 'PPDS', 'Paru', 'peterkris@student.ub.ac.id', '-'), +(1118, 'Hendro Suryadi', 'PPDS', 'Paru', 'hendrosuryadi@student.ub.ac.id', '-'), +(1119, 'Martha Fitri Alextina Tatodi', 'PPDS', 'Paru', 'marthafitri86@student.ub.ac.id', '-'), +(1120, 'Rifka Wikamto', 'PPDS', 'Paru', 'rifkawikamto@student.ub.ac.id', '-'), +(1121, 'I Made Suardana', 'PPDS', 'Paru', 'imadesuardana@student.ub.ac.id', '-'), +(1122, 'Anggita Efipania Silambi\'', 'PPDS', 'Paru', 'anggitasilambi@student.ub.ac.id', '-'), +(1123, 'Rizky Tania Fadillah', 'PPDS', 'Paru', 'rizkytaniaf@student.ub.ac.id', '-'), +(1124, 'Dian Ayu Murti Dewi', 'PPDS', 'Paru', 'dianayumd93@student.ub.ac.id', '-'), +(1125, 'Muchammad Zamroni', 'PPDS', 'Paru', 'muchzamroni@student.ub.ac.id', '-'), +(1126, 'Nuansa Firgie Paramita', 'PPDS', 'Paru', 'nfparamitha@student.ub.ac.id', '-'), +(1127, 'Ria Christin Lumpiach', 'PPDS', 'Paru', 'riachristinn@student.ub.ac.id', '-'), +(1128, 'Gregorio Satrio Pinunggul', 'PPDS', 'Paru', 'gregoriosatrio@student.ub.ac.id', '-'), +(1129, 'Dwiroza Delfianto', 'PPDS', 'Paru', 'delfiantodwi@student.ub.ac.id', '-'), +(1130, 'Naila Ekasari', 'PPDS', 'Paru', 'nailaekasari@student.ub.ac.id', '-'), +(1131, 'Eko Dian Syafithra', 'PPDS', 'Paru', 'ekodians@student.ub.ac.id', '-'), +(1132, 'Nisa Aprilen', 'PPDS', 'Paru', 'nisaaprilen@student.ub.ac.id', '-'), +(1133, 'Achmad Amir Solichudin', 'PPDS', 'Paru', 'achmadamirs18@student.ub.ac.id', '-'), +(1134, 'NATALIA YOBEANTO', 'PPDS', 'Paru', 'nataliayobeanto@student.ub.ac.id', '-'), +(1135, 'Fransiska Nooril Firdhausi P H', 'PPDS', 'Paru', 'fransiskanooril@student.ub.ac.id', '-'), +(1136, 'Manurung Chandra Hasonangan', 'PPDS', 'Paru', 'manurungchandra@student.ub.ac.id', '-'), +(1137, 'Aditya Josua Elvon', 'PPDS', 'Paru', 'adityajosua@student.ub.ac.id', '-'), +(1138, 'As\'ad Pratama Putra', 'PPDS', 'Paru', 'asadpratamap@student.ub.ac.id', '-'), +(1139, 'Toni Alie Ngena Pinem', 'PPDS', 'Paru', 'tonipinem@student.ub.ac.id', '-'), +(1140, 'DHIMAS HANDOKO WIBISONO', 'PPDS', 'Paru', 'dhwpulmo@student.ub.ac.id', '-'), +(1141, 'Malisa Sherly Theresia Nahak', 'PPDS', 'Paru', 'malisasherly@student.ub.ac.id', '-'), +(1142, 'Annisa Ayu Asmiragani', 'PPDS', 'Paru', 'icasmiragani@student.ub.ac.id', '-'), +(1143, 'Geraldi Kusuma Wijaya', 'PPDS', 'Paru', 'geraldikusuma@student.ub.ac.id', '-'), +(1144, 'GRACE DUMA MAWARNI HUTAHAEAN', 'PPDS', 'Paru', 'gracedumamawar@student.ub.ac.id', '-'), +(1145, 'Krisdianto Putra Lainy', 'PPDS', 'Paru', 'krisdiantolainy@student.ub.ac.id', '-'), +(1146, 'Hardy Wibowo Soenarto', 'PPDS', 'Paru', 'hardywibowo@student.ub.ac.id', '-'), +(1147, 'Anthoni Rahardi Kusuma', 'PPDS', 'Paru', 'kuspulmo47@student.ub.ac.id', '-'), +(1148, 'Inda Yohana', 'PPDS', 'Paru', 'indayohanakalit@student.ub.ac.id', '-'), +(1149, 'Bobby Novian', 'PPDS', 'Paru', 'bobbynovian96@student.ub.ac.id', '-'), +(1150, 'Chaifung Carolline', 'PPDS', 'Paru', 'ccarolline@student.ub.ac.id', '-'), +(1151, 'Meike Elvana Derianty', 'PPDS', 'Paru', 'meikeelvana@student.ub.ac.id', '-'), +(1152, 'Damaris Adi Purwanti', 'PPDS', 'Paru', 'adidamaris@student.ub.ac.id', '-'); +INSERT INTO `dokter` (`ID_Dokter`, `Nama_Dokter`, `Status`, `KSM`, `Email_UB`, `Email_Pribadi`) VALUES +(1153, 'Adma Febri Mudyandono', 'PPDS', 'Paru', 'admafebri91@student.ub.ac.id', '-'), +(1154, 'Endar Wahyu Setiawan', 'PPDS', 'Paru', 'endarws@student.ub.ac.id', '-'), +(1155, 'Julisman Hasiholan Situmorang', 'PPDS', 'Paru', 'julissitumorang@student.ub.ac.id', '-'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `icd9` +-- + +CREATE TABLE `icd9` ( + `ID_ICD9` varchar(20) NOT NULL, + `Prosedur` varchar(150) DEFAULT NULL, + `Versi_ICD9` varchar(20) DEFAULT NULL +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; + +-- +-- Dumping data for table `icd9` +-- + +INSERT INTO `icd9` (`ID_ICD9`, `Prosedur`, `Versi_ICD9`) VALUES +('00', 'Procedures and interventions, Not Elsewhere Classified', 'ICD9CM_2010'), +('00.0', 'Therapeutic ultrasound', 'ICD9CM_2010'), +('00.01', 'Therapeutic ultrasound of vessels of head and neck', 'ICD9CM_2010'), +('00.02', 'Therapeutic ultrasound of heart', 'ICD9CM_2010'), +('00.03', 'Therapeutic ultrasound of peripheral vascular vessels', 'ICD9CM_2010'), +('00.09', 'Other therapeutic ultrasound', 'ICD9CM_2010'), +('00.1', 'Pharmaceuticals', 'ICD9CM_2010'), +('00.10', 'Implantation of chemotherapeutic agent', 'ICD9CM_2010'), +('00.11', 'Infusion of drotrecogin alfa (activated)', 'ICD9CM_2010'), +('00.12', 'Administration of inhaled nitric oxide', 'ICD9CM_2010'), +('00.13', 'Injection or infusion of nesiritide', 'ICD9CM_2010'), +('00.14', 'Injection or infusion of oxazolidinone class of antibiotics', 'ICD9CM_2010'), +('00.15', 'High-dose infusion interleukin-2(il-2)', 'ICD9CM_2010'), +('00.16', 'Pressurized treatment of venous bypass graft (conduit) with pharmaceutical substance', 'ICD9CM_2010'), +('00.17', 'Infusion of vasopressor agent', 'ICD9CM_2010'), +('00.18', 'Infusion of immunosuppressive antibody therapy during induction phase of solid organ transplantation', 'ICD9CM_2010'), +('00.19', 'Disruption of blood brain barrier via infusion (bbbd)', 'ICD9CM_2010'), +('00.2', 'Intravascular imaging of blood vessels', 'ICD9CM_2010'), +('00.21', 'Intravascular imaging of extracranial cerebral vessels', 'ICD9CM_2010'), +('00.22', 'Intravascular imaging of intrathoracic vessels', 'ICD9CM_2010'), +('00.23', 'Intravascular imaging of peripheral vessels', 'ICD9CM_2010'), +('00.24', 'Intravascular imaging of coronary vessels', 'ICD9CM_2010'), +('00.25', 'Intravascular imaging of renal vessels', 'ICD9CM_2010'), +('00.28', 'Intravascular imaging of other specified vessels', 'ICD9CM_2010'), +('00.29', 'Intravascular imaging, unspecified vessel(s)', 'ICD9CM_2010'), +('00.3', 'Computer assisted surgery [CAS]', 'ICD9CM_2010'), +('00.31', 'Computer assisted surgery with CT/CTA', 'ICD9CM_2010'), +('00.32', 'Computer assisted surgery with MR/MRA', 'ICD9CM_2010'), +('00.33', 'Computer assisted surgery with fluoroscopy', 'ICD9CM_2010'), +('00.34', 'Imageless computer assisted surgery', 'ICD9CM_2010'), +('00.35', 'Computer assisted surgery with multiple datasets', 'ICD9CM_2010'), +('00.39', 'Other Computer assisted surgery', 'ICD9CM_2010'), +('00.4', 'Adjunct Vascular System Procedures', 'ICD9CM_2010'), +('00.40', 'Adjunct vascular system procedures,Procedure on single vessel', 'ICD9CM_2010'), +('00.41', 'Adjunct vascular system procedures, procedure on two vessels', 'ICD9CM_2010'), +('00.42', 'Adjunct vascular system procedures,Prosedure on three vessels', 'ICD9CM_2010'), +('00.43', 'Adjunct vascular system procedures,Procedure on four or more vessels', 'ICD9CM_2010'), +('00.44', 'Adjunct vascular system procedures,Procedure on vessel bifurcation', 'ICD9CM_2010'), +('00.45', 'Adjunct vascular system procedures,Insertion of one vascular stent', 'ICD9CM_2010'), +('00.46', 'Adjunct vascular system procedures,Insertion of two vascular stents', 'ICD9CM_2010'), +('00.47', 'Adjunct vascular system procedures,Insertion of three vascular stents', 'ICD9CM_2010'), +('00.48', 'Adjunct vascular system procedures,Insertion of four or more vascular stents', 'ICD9CM_2010'), +('00.49', 'SuperSaturated oxygen therapy', 'ICD9CM_2010'), +('00.5', 'Other cardiovascular procedures', 'ICD9CM_2010'), +('00.50', 'Implantation of cardiac resynchronization pacemaker without mention of defibrillation, total system (CRT-P)', 'ICD9CM_2010'), +('00.51', 'Implantation of cardiac resynchronization defibrillation, total system (CRT-D)', 'ICD9CM_2010'), +('00.52', 'Implantation or replacement of transvenous lead (electrode) into left ventricular coronary venous system', 'ICD9CM_2010'), +('00.53', 'Implantation or replacement of cardiac resynchronization pacemaker pulse generator only (CRT-P)', 'ICD9CM_2010'), +('00.54', 'Implantation or replacement of cardiac resynchronization defibrillation pulse generator device only (CRT-D)', 'ICD9CM_2010'), +('00.55', 'Insertion of drug-eluting peripheral vessels stent(s)', 'ICD9CM_2010'), +('00.56', 'Insertion or replacement of implantable pressure sensor (lead) for intracardiac hemodynamic monitoring', 'ICD9CM_2010'), +('00.57', 'Implantation or replacement of subcutaneous device for intracardiac hemodynamic monitoring', 'ICD9CM_2010'), +('00.58', 'Insertion of intra-aneurysm sac pressure monitoring device (intraoperative)', 'ICD9CM_2010'), +('00.59', 'Intravascular pressure measurement o coronary arteries', 'ICD9CM_2010'), +('00.6', 'Procedures on blood vessels', 'ICD9CM_2010'), +('00.60', 'Insertion of drug-eluting stent(s) of superficial femoral artery', 'ICD9CM_2010'), +('00.61', 'Percutaneous angioplasty or atherectomy of precerebral(extracranial)vessel(s)', 'ICD9CM_2010'), +('00.62', 'Percutaneous angioplasty or atherectomy intracranial vessel', 'ICD9CM_2010'), +('00.63', 'Percutaneous insertion of carotid artery stent(s)', 'ICD9CM_2010'), +('00.64', 'Percutaneous insertion of other precerebral(extracranial)artery stent(s)', 'ICD9CM_2010'), +('00.65', 'Percutaneous insertion of intracranial vascular stent(s)', 'ICD9CM_2010'), +('00.66', 'Parcutaneous transluminal coronary angioplasty (PTCA) or coronary atherectomy', 'ICD9CM_2010'), +('00.67', 'Intravascular pressure measurement of intrathoracic arteries', 'ICD9CM_2010'), +('00.68', 'Intravascular pressure measurement of peripheral arteries', 'ICD9CM_2010'), +('00.69', 'Intravascular pressure measurement of other specified and unspecified vessels', 'ICD9CM_2010'), +('00.7', 'Other hip procedures', 'ICD9CM_2010'), +('00.70', 'Revision of hip replacement, both acetabular and femoral components', 'ICD9CM_2010'), +('00.71', 'Revision of hip replacement, acetabular component', 'ICD9CM_2010'), +('00.72', 'Revision of hip replacement,femoral component', 'ICD9CM_2010'), +('00.73', 'Revision of hip replacement, acetabular liner and/or femoral head only', 'ICD9CM_2010'), +('00.74', 'Hip bearing surface, metal on polyethylene', 'ICD9CM_2010'), +('00.75', 'Hip bearing surface, metal-on-metal', 'ICD9CM_2010'), +('00.76', 'Hip bearing surface, ceramic-on-ceramic', 'ICD9CM_2010'), +('00.77', 'Hip bearing surface, ceramic on polyethylene', 'ICD9CM_2010'), +('00.8', 'Other knee and hip procedures', 'ICD9CM_2010'), +('00.80', 'Revision of knee replacement, total (all components)', 'ICD9CM_2010'), +('00.81', 'Revision of knee replacement, tibial component', 'ICD9CM_2010'), +('00.82', 'Revision of knee replacement, femoral component', 'ICD9CM_2010'), +('00.83', 'Revision of knee replacement,patellar component', 'ICD9CM_2010'), +('00.84', 'Revision of total knee replacement, tibial insertion (liner)', 'ICD9CM_2010'), +('00.85', 'Resurfacing hip, total, acetabulum and femoral head', 'ICD9CM_2010'), +('00.86', 'Resurfacing hip, partial, femoral head', 'ICD9CM_2010'), +('00.87', 'Resurfacing hip,partial, acetabulum', 'ICD9CM_2010'), +('00.9', 'Other procedures and interventions', 'ICD9CM_2010'), +('00.91', 'Transplant from live related donor', 'ICD9CM_2010'), +('00.92', 'Transplant from live non-related donor', 'ICD9CM_2010'), +('00.93', 'Transplant fron cadaver', 'ICD9CM_2010'), +('00.94', 'Intra-operative neurophysiologic monitoring', 'ICD9CM_2010'), +('01', 'Incision and excision of skull, brain, and cerebral meninges', 'ICD9CM_2010'), +('01.0', 'Cranial puncture', 'ICD9CM_2010'), +('01.01', 'Cisternal puncture', 'ICD9CM_2010'), +('01.02', 'Ventriculopuncture through previously implanted catheter', 'ICD9CM_2010'), +('01.09', 'Other cranial puncture', 'ICD9CM_2010'), +('01.1', 'Diagnostic procedures on skull, brain, and cerebral meninges', 'ICD9CM_2010'), +('01.10', 'Intracranial pressure monitoring', 'ICD9CM_2010'), +('01.11', 'Closed (percutaneous) (needle) biopsy of cerebral meninges', 'ICD9CM_2010'), +('01.12', 'Open biopsy of cerebral meninges', 'ICD9CM_2010'), +('01.13', 'Closed (percutaneous) (needle) biopsy of brain', 'ICD9CM_2010'), +('01.14', 'Open biopsy of brain', 'ICD9CM_2010'), +('01.15', 'Biopsy of skull', 'ICD9CM_2010'), +('01.16', 'Intracranial oxygen monitoring', 'ICD9CM_2010'), +('01.17', 'Brain temperature monitoring', 'ICD9CM_2010'), +('01.18', 'Other diagnostic procedures on brain and cerebral meninges', 'ICD9CM_2010'), +('01.19', 'Other diagnostic procedures on skull', 'ICD9CM_2010'), +('01.2', 'Craniotomy and craniectomy', 'ICD9CM_2010'), +('01.20', 'Cranial implantation or replacement of neurostimulator pulse generator', 'ICD9CM_2010'), +('01.21', 'Incision and drainage of cranial sinus', 'ICD9CM_2010'), +('01.22', 'Removal of intracranial neurostimulator', 'ICD9CM_2010'), +('01.23', 'Reopening of craniotomy site', 'ICD9CM_2010'), +('01.24', 'Other craniotomy', 'ICD9CM_2010'), +('01.25', 'Other craniectomy', 'ICD9CM_2010'), +('01.26', 'Insertion of catheter(s)into cranial cavity or tissue', 'ICD9CM_2010'), +('01.27', 'Removal of catheter(s) from cranial cavity or tissue', 'ICD9CM_2010'), +('01.28', 'Placement of intracerebelar catheter(s) via burr hole(s)', 'ICD9CM_2010'), +('01.29', 'Removal of cranial neurostimulator pulse generator', 'ICD9CM_2010'), +('01.3', 'Incision of brain and cerebral meninges', 'ICD9CM_2010'), +('01.31', 'Incision of cerebral meninges', 'ICD9CM_2010'), +('01.32', 'Lobotomy and tractotomy', 'ICD9CM_2010'), +('01.39', 'Other incision of brain', 'ICD9CM_2010'), +('01.4', 'Operations on thalamus and globus pallidus', 'ICD9CM_2010'), +('01.41', 'Operations on thalamus', 'ICD9CM_2010'), +('01.42', 'Operations on globus pallidus', 'ICD9CM_2010'), +('01.5', 'Other excision or destruction of brain and meninges', 'ICD9CM_2010'), +('01.51', 'Excision of lesion or tissue of cerebral meninges', 'ICD9CM_2010'), +('01.52', 'Hemispherectomy', 'ICD9CM_2010'), +('01.53', 'Lobectomy of brain', 'ICD9CM_2010'), +('01.59', 'Other excision or destruction of lesion or tissue of brain', 'ICD9CM_2010'), +('01.6', 'Excision of lesion of skull', 'ICD9CM_2010'), +('02', 'Other operations on skull, brain, and cerebral meninges', 'ICD9CM_2010'), +('02.0', 'Cranioplasty', 'ICD9CM_2010'), +('02.01', 'Opening of cranial suture', 'ICD9CM_2010'), +('02.02', 'Elevation of skull fracture fragments', 'ICD9CM_2010'), +('02.03', 'Formation of cranial bone flap', 'ICD9CM_2010'), +('02.04', 'Bone graft to skull', 'ICD9CM_2010'), +('02.05', 'Insertion of skull plate', 'ICD9CM_2010'), +('02.06', 'Other cranial osteoplasty', 'ICD9CM_2010'), +('02.07', 'Removal of skull plate', 'ICD9CM_2010'), +('02.1', 'Repair of cerebral meninges', 'ICD9CM_2010'), +('02.11', 'Simple suture of dura mater of brain', 'ICD9CM_2010'), +('02.12', 'Other repair of cerebral meninges', 'ICD9CM_2010'), +('02.13', 'Ligation of meningeal vessel', 'ICD9CM_2010'), +('02.14', 'Choroid plexectomy', 'ICD9CM_2010'), +('02.2', 'Ventriculostomy', 'ICD9CM_2010'), +('02.3', 'Extracranial ventricular shunt', 'ICD9CM_2010'), +('02.31', 'Ventricular shunt to structure in head and neck', 'ICD9CM_2010'), +('02.32', 'Ventricular shunt to circulatory system', 'ICD9CM_2010'), +('02.33', 'Ventricular shunt to thoracic cavity', 'ICD9CM_2010'), +('02.34', 'Ventricular shunt to abdominal cavity and organs', 'ICD9CM_2010'), +('02.35', 'Ventricular shunt to urinary system', 'ICD9CM_2010'), +('02.39', 'Other operations to establish drainage of ventricle', 'ICD9CM_2010'), +('02.4', 'Revision, removal, and irrigation of ventricular shunt', 'ICD9CM_2010'), +('02.41', 'Irrigation of ventricular shunt', 'ICD9CM_2010'), +('02.42', 'Replacement of ventricular shunt', 'ICD9CM_2010'), +('02.43', 'Removal of ventricular shunt', 'ICD9CM_2010'), +('02.9', 'Other operations on skull, brain, and cerebral meninges', 'ICD9CM_2010'), +('02.91', 'Lysis of cortical adhesions', 'ICD9CM_2010'), +('02.92', 'Repair of brain', 'ICD9CM_2010'), +('02.93', 'Implantation of intracranial neurostimulator', 'ICD9CM_2010'), +('02.94', 'Insertion or replacement of skull tongs or halo traction device', 'ICD9CM_2010'), +('02.95', 'Removal of skull tongs or halo traction device', 'ICD9CM_2010'), +('02.96', 'Insertion of sphenoid electrodes', 'ICD9CM_2010'), +('02.99', 'Other operations on skull, brain, and cerebral meninges', 'ICD9CM_2010'), +('03', 'Operations on spinal cord and spinal canal structures', 'ICD9CM_2010'), +('03.0', 'Exploration and decompression of spinal canal structures', 'ICD9CM_2010'), +('03.01', 'Removal of foreign body from spinal canal', 'ICD9CM_2010'), +('03.02', 'Reopening of laminectomy site', 'ICD9CM_2010'), +('03.09', 'Other exploration and decompression of spinal canal', 'ICD9CM_2010'), +('03.1', 'Division of intraspinal nerve root', 'ICD9CM_2010'), +('03.2', 'Chordotomy', 'ICD9CM_2010'), +('03.21', 'Percutaneous chordotomy', 'ICD9CM_2010'), +('03.29', 'Other chordotomy', 'ICD9CM_2010'), +('03.3', 'Diagnostic procedures on spinal cord and spinal canal structures', 'ICD9CM_2010'), +('03.31', 'Spinal tap', 'ICD9CM_2010'), +('03.32', 'Biopsy of spinal cord or spinal meninges', 'ICD9CM_2010'), +('03.39', 'Other diagnostic procedures on spinal cord and spinal canal structur', 'ICD9CM_2010'), +('03.4', 'Excision or destruction of lesion of spinal cord or spinal meninges', 'ICD9CM_2010'), +('03.5', 'Plastic operations on spinal cord structures', 'ICD9CM_2010'), +('03.51', 'Repair of spinal meningocele', 'ICD9CM_2010'), +('03.52', 'Repair of spinal myelomeningocele', 'ICD9CM_2010'), +('03.53', 'Repair of vertebral fracture', 'ICD9CM_2010'), +('03.59', 'Other repair and plastic operations on spinal cord structures', 'ICD9CM_2010'), +('03.6', 'Lysis of adhesions of spinal cord and nerve roots', 'ICD9CM_2010'), +('03.7', 'Shunt of spinal theca', 'ICD9CM_2010'), +('03.71', 'Spinal subarachnoid-peritoneal shunt', 'ICD9CM_2010'), +('03.72', 'Spinal subarachnoid-ureteral shunt', 'ICD9CM_2010'), +('03.79', 'Other shunt of spinal theca', 'ICD9CM_2010'), +('03.8', 'Injection of destructive agent into spinal canal', 'ICD9CM_2010'), +('03.9', 'Other operations on spinal cord and spinal canal structures', 'ICD9CM_2010'), +('03.90', 'Insertion of catheter into spinal canal for infusion of therapeutic', 'ICD9CM_2010'), +('03.91', 'Injection of anesthetic into spinal canal for analgesia', 'ICD9CM_2010'), +('03.92', 'Injection of other agent into spinal canal', 'ICD9CM_2010'), +('03.93', 'Implantation or replacement of spinal neurostimulator lead(s)', 'ICD9CM_2010'), +('03.94', 'Removal of spinal neurostimulator lead(s)', 'ICD9CM_2010'), +('03.95', 'Spinal blood patch', 'ICD9CM_2010'), +('03.96', 'Percutaneous denervation of facet', 'ICD9CM_2010'), +('03.97', 'Revision of spinal thecal shunt', 'ICD9CM_2010'), +('03.98', 'Removal of spinal thecal shunt', 'ICD9CM_2010'), +('03.99', 'Other operations on spinal cord and spinal canal structures', 'ICD9CM_2010'), +('04', 'Operations on cranial and peripheral nerves', 'ICD9CM_2010'), +('04.0', 'Incision, division, and excision of cranial and peripheral nerves', 'ICD9CM_2010'), +('04.01', 'Excision of acoustic neuroma', 'ICD9CM_2010'), +('04.02', 'Division of trigeminal nerve', 'ICD9CM_2010'), +('04.03', 'Division or crushing of other cranial and peripheral nerves', 'ICD9CM_2010'), +('04.04', 'Other incision of cranial and peripheral nerves', 'ICD9CM_2010'), +('04.05', 'Gasserian ganglionectomy', 'ICD9CM_2010'), +('04.06', 'Other cranial or peripheral ganglionectomy', 'ICD9CM_2010'), +('04.07', 'Other excision or avulsion of cranial and peripheral nerves', 'ICD9CM_2010'), +('04.1', 'Diagnostic procedures on peripheral nervous system', 'ICD9CM_2010'), +('04.11', 'Closed (percutaneous) (needle) biopsy of cranial or peripheral nerve or ganglion', 'ICD9CM_2010'), +('04.12', 'Open biopsy of cranial or peripheral nerve or ganglion', 'ICD9CM_2010'), +('04.19', 'Other diagnostic procedures on cranial and peripheral nerves and ganglia', 'ICD9CM_2010'), +('04.2', 'Destruction of cranial and peripheral nerves', 'ICD9CM_2010'), +('04.3', 'Suture of cranial and peripheral nerves', 'ICD9CM_2010'), +('04.4', 'Lysis of adhesions and decompression of cranial and peripheral nerve', 'ICD9CM_2010'), +('04.41', 'Decompression of trigeminal nerve root', 'ICD9CM_2010'), +('04.42', 'Other cranial nerve decompression', 'ICD9CM_2010'), +('04.43', 'Release of carpal tunnel', 'ICD9CM_2010'), +('04.44', 'Release of tarsal tunnel', 'ICD9CM_2010'), +('04.49', 'Other peripheral nerve or ganglion decompression or lysis of adhesions', 'ICD9CM_2010'), +('04.5', 'Cranial or peripheral nerve graft', 'ICD9CM_2010'), +('04.6', 'Transposition of cranial and peripheral nerves', 'ICD9CM_2010'), +('04.7', 'Other cranial or peripheral neuroplasty', 'ICD9CM_2010'), +('04.71', 'Hypoglossal-facial anastomosis', 'ICD9CM_2010'), +('04.72', 'Accessory-facial anastomosis', 'ICD9CM_2010'), +('04.73', 'Accessory-hypoglossal anastomosis', 'ICD9CM_2010'), +('04.74', 'Other anastomosis of cranial or peripheral nerve', 'ICD9CM_2010'), +('04.75', 'Revision of previous repair of cranial and peripheral nerves', 'ICD9CM_2010'), +('04.76', 'Repair of old traumatic injury of cranial and peripheral nerves', 'ICD9CM_2010'), +('04.79', 'Other neuroplasty', 'ICD9CM_2010'), +('04.8', 'Injection into peripheral nerve', 'ICD9CM_2010'), +('04.80', 'Peripheral nerve injection, not otherwise specified', 'ICD9CM_2010'), +('04.81', 'Injection of anesthetic into peripheral nerve for analgesia', 'ICD9CM_2010'), +('04.89', 'Injection of other agent, except neurolytic', 'ICD9CM_2010'), +('04.9', 'Other operations on cranial and peripheral nerves', 'ICD9CM_2010'), +('04.91', 'Neurectasis', 'ICD9CM_2010'), +('04.92', 'Implantation or replacement of peripheral neurostimulator lead(s)', 'ICD9CM_2010'), +('04.93', 'Removal of peripheral neurostimulator lead(s)', 'ICD9CM_2010'), +('04.99', 'Other operations on cranial and peripheral nerves', 'ICD9CM_2010'), +('05', 'Operations on sympathetic nerves or ganglia', 'ICD9CM_2010'), +('05.0', 'Division of sympathetic nerve or ganglion', 'ICD9CM_2010'), +('05.1', 'Diagnostic procedures on sympathetic nerves or ganglia', 'ICD9CM_2010'), +('05.11', 'Biopsy of sympathetic nerve or ganglion', 'ICD9CM_2010'), +('05.19', 'Other diagnostic procedures on sympathetic nerves or ganglia', 'ICD9CM_2010'), +('05.2', 'Sympathectomy', 'ICD9CM_2010'), +('05.21', 'Sphenopalatine ganglionectomy', 'ICD9CM_2010'), +('05.22', 'Cervical sympathectomy', 'ICD9CM_2010'), +('05.23', 'Lumbar sympathectomy', 'ICD9CM_2010'), +('05.24', 'Presacral sympathectomy', 'ICD9CM_2010'), +('05.25', 'Periarterial sympathectomy', 'ICD9CM_2010'), +('05.29', 'Other sympathectomy and ganglionectomy', 'ICD9CM_2010'), +('05.3', 'Injection into sympathetic nerve or ganglion', 'ICD9CM_2010'), +('05.31', 'Injection of anesthetic into sympathetic nerve for analgesia', 'ICD9CM_2010'), +('05.32', 'Injection of neurolytic agent into sympathetic nerve', 'ICD9CM_2010'), +('05.39', 'Other injection into sympathetic nerve or ganglion', 'ICD9CM_2010'), +('05.8', 'Other operations on sympathetic nerves or ganglia', 'ICD9CM_2010'), +('05.81', 'Repair of sympathetic nerve or ganglion', 'ICD9CM_2010'), +('05.89', 'Other operations on sympathetic nerves or ganglia', 'ICD9CM_2010'), +('05.9', 'Other operations on nervous system', 'ICD9CM_2010'), +('06', 'Operations on thyroid and parathyroid glands', 'ICD9CM_2010'), +('06.0', 'Incision of thyroid field', 'ICD9CM_2010'), +('06.01', 'Aspiration of thyroid field', 'ICD9CM_2010'), +('06.02', 'Reopening of wound of thyroid field', 'ICD9CM_2010'), +('06.09', 'Other incision of thyroid field', 'ICD9CM_2010'), +('06.1', 'Diagnostic procedures on thyroid and parathyroid glands', 'ICD9CM_2010'), +('06.11', 'Closed (percutaneous) (needle) biopsy of thyroid gland', 'ICD9CM_2010'), +('06.12', 'Open biopsy of thyroid gland', 'ICD9CM_2010'), +('06.13', 'Biopsy of parathyroid gland', 'ICD9CM_2010'), +('06.19', 'Other diagnostic procedures on thyroid and parathyroid glands', 'ICD9CM_2010'), +('06.2', 'Unilateral thyroid lobectomy', 'ICD9CM_2010'), +('06.3', 'Other partial thyroidectomy', 'ICD9CM_2010'), +('06.31', 'Excision of lesion of thyroid', 'ICD9CM_2010'), +('06.39', 'Other partial thyroidectomy', 'ICD9CM_2010'), +('06.4', 'Complete thyroidectomy', 'ICD9CM_2010'), +('06.5', 'Substernal thyroidectomy', 'ICD9CM_2010'), +('06.50', 'Substernal thyroidectomy, not otherwise specified', 'ICD9CM_2010'), +('06.51', 'Partial substernal thyroidectomy', 'ICD9CM_2010'), +('06.52', 'Complete substernal thyroidectomy', 'ICD9CM_2010'), +('06.6', 'Excision of lingual thyroid', 'ICD9CM_2010'), +('06.7', 'Excision of thyroglossal duct or tract', 'ICD9CM_2010'), +('06.8', 'Parathyroidectomy', 'ICD9CM_2010'), +('06.81', 'Complete parathyroidectomy', 'ICD9CM_2010'), +('06.89', 'Other parathyroidectomy', 'ICD9CM_2010'), +('06.9', 'Other operations on thyroid (region) and parathyroid', 'ICD9CM_2010'), +('06.91', 'Division of thyroid isthmus', 'ICD9CM_2010'), +('06.92', 'Ligation of thyroid vessels', 'ICD9CM_2010'), +('06.93', 'Suture of thyroid gland', 'ICD9CM_2010'), +('06.94', 'Thyroid tissue reimplantation', 'ICD9CM_2010'), +('06.95', 'Parathyroid tissue reimplantation', 'ICD9CM_2010'), +('06.98', 'Other operations on thyroid glands', 'ICD9CM_2010'), +('06.99', 'Other operations on parathyroid glands', 'ICD9CM_2010'), +('07', 'Operations on other endocrine glands', 'ICD9CM_2010'), +('07.0', 'Exploration of adrenal field', 'ICD9CM_2010'), +('07.00', 'Exploration of adrenal field, not otherwise specified', 'ICD9CM_2010'), +('07.01', 'Unilateral exploration of adrenal field', 'ICD9CM_2010'), +('07.02', 'Bilateral exploration of adrenal field', 'ICD9CM_2010'), +('07.1', 'Diagnostic procedures on adrenal glands, pituitary gland, pineal gla', 'ICD9CM_2010'), +('07.11', 'Closed (percutaneous) (needle) biopsy of adrenal gland', 'ICD9CM_2010'), +('07.12', 'Open biopsy of adrenal gland', 'ICD9CM_2010'), +('07.13', 'Biopsy of pituitary gland, transfrontal approach', 'ICD9CM_2010'), +('07.14', 'Biopsy of pituitary gland, transsphenoidal approach', 'ICD9CM_2010'), +('07.15', 'Biopsy of pituitary gland, unspecified approach', 'ICD9CM_2010'), +('07.16', 'Biopsy of thymus', 'ICD9CM_2010'), +('07.17', 'Biopsy of pineal gland', 'ICD9CM_2010'), +('07.19', 'Other diagnostic procedures on adrenal glands, pituitary gland, pineal and thymus', 'ICD9CM_2010'), +('07.2', 'Partial adrenalectomy', 'ICD9CM_2010'), +('07.21', 'Excision of lesion of adrenal gland', 'ICD9CM_2010'), +('07.22', 'Unilateral adrenalectomy', 'ICD9CM_2010'), +('07.29', 'Other partial adrenalectomy', 'ICD9CM_2010'), +('07.3', 'Bilateral adrenalectomy', 'ICD9CM_2010'), +('07.4', 'Other operations on adrenal glands, nerves, and vessels', 'ICD9CM_2010'), +('07.41', 'Incision of adrenal gland', 'ICD9CM_2010'), +('07.42', 'Division of nerves to adrenal glands', 'ICD9CM_2010'), +('07.43', 'Ligation of adrenal vessels', 'ICD9CM_2010'), +('07.44', 'Repair of adrenal gland', 'ICD9CM_2010'), +('07.45', 'Reimplantation of adrenal tissue', 'ICD9CM_2010'), +('07.49', 'Other operations on adrenal glands, nerves, and vessels', 'ICD9CM_2010'), +('07.5', 'Operations on pineal gland', 'ICD9CM_2010'), +('07.51', 'Exploration of pineal field', 'ICD9CM_2010'), +('07.52', 'Incision of pineal gland', 'ICD9CM_2010'), +('07.53', 'Partial excision of pineal gland', 'ICD9CM_2010'), +('07.54', 'Total excision of pineal gland', 'ICD9CM_2010'), +('07.59', 'Other operations on pineal gland', 'ICD9CM_2010'), +('07.6', 'Hypophysectomy', 'ICD9CM_2010'), +('07.61', 'Partial excision of pituitary gland, transfrontal approach', 'ICD9CM_2010'), +('07.62', 'Partial excision of pituitary gland, transsphenoidal approach', 'ICD9CM_2010'), +('07.63', 'Partial excision of pituitary gland, unspecified approach', 'ICD9CM_2010'), +('07.64', 'Total excision of pituitary gland, transfrontal approach', 'ICD9CM_2010'), +('07.65', 'Total excision of pituitary gland, transsphenoidal approach', 'ICD9CM_2010'), +('07.68', 'Total excision of pituitary gland, other specified approach', 'ICD9CM_2010'), +('07.69', 'Total excision of pituitary gland, unspecified approach', 'ICD9CM_2010'), +('07.7', 'Other operations on hypophysis', 'ICD9CM_2010'), +('07.71', 'Exploration of pituitary fossa', 'ICD9CM_2010'), +('07.72', 'Incision of pituitary gland', 'ICD9CM_2010'), +('07.79', 'Other operations on hypophysis', 'ICD9CM_2010'), +('07.8', 'Thymectomy', 'ICD9CM_2010'), +('07.80', 'Thymectomy, not otherwise specified', 'ICD9CM_2010'), +('07.81', 'Partial excision of thymus', 'ICD9CM_2010'), +('07.82', 'Total excision of thymus', 'ICD9CM_2010'), +('07.83', 'Thoracoscopic partial excision of thymus', 'ICD9CM_2010'), +('07.84', 'Thoracoscopic total excision of thymus', 'ICD9CM_2010'), +('07.9', 'Other operations on thymus', 'ICD9CM_2010'), +('07.91', 'Exploration of thymus field', 'ICD9CM_2010'), +('07.92', 'Incision of thymus', 'ICD9CM_2010'), +('07.93', 'Repair of thymus', 'ICD9CM_2010'), +('07.94', 'Transplantation of thymus', 'ICD9CM_2010'), +('07.95', 'Thoracoscopic incision of thymus', 'ICD9CM_2010'), +('07.98', 'Other and unspecified thoracoscopic operations on thymus', 'ICD9CM_2010'), +('07.99', 'Other and unspecified operations on thymus', 'ICD9CM_2010'), +('08', 'Operations on eyelids', 'ICD9CM_2010'), +('08.0', 'Incision of eyelid', 'ICD9CM_2010'), +('08.01', 'Incision of lid margin', 'ICD9CM_2010'), +('08.02', 'Severing of blepharorrhaphy', 'ICD9CM_2010'), +('08.09', 'Other incision of eyelid', 'ICD9CM_2010'), +('08.1', 'Diagnostic procedures on eyelid', 'ICD9CM_2010'), +('08.11', 'Biopsy of eyelid', 'ICD9CM_2010'), +('08.19', 'Other diagnostic procedures on eyelid', 'ICD9CM_2010'), +('08.2', 'Excision or destruction of lesion or tissue of eyelid', 'ICD9CM_2010'), +('08.20', 'Removal of lesion of eyelid, not otherwise specified', 'ICD9CM_2010'), +('08.21', 'Excision of chalazion', 'ICD9CM_2010'), +('08.22', 'Excision of other minor lesion of eyelid', 'ICD9CM_2010'), +('08.23', 'Excision of major lesion of eyelid, partial-thickness', 'ICD9CM_2010'), +('08.24', 'Excision of major lesion of eyelid, full-thickness', 'ICD9CM_2010'), +('08.25', 'Destruction of lesion of eyelid', 'ICD9CM_2010'), +('08.3', 'Repair of blepharoptosis and lid retraction', 'ICD9CM_2010'), +('08.31', 'Repair of blepharoptosis by frontalis muscle technique with suture', 'ICD9CM_2010'), +('08.32', 'Repair of blepharoptosis by frontalis muscle technique with fascial', 'ICD9CM_2010'), +('08.33', 'Repair of blepharoptosis by resection or advancement of levator musc', 'ICD9CM_2010'), +('08.34', 'Repair of blepharoptosis by other levator muscle techniques', 'ICD9CM_2010'), +('08.35', 'Repair of blepharoptosis by tarsal technique', 'ICD9CM_2010'), +('08.36', 'Repair of blepharoptosis by other techniques', 'ICD9CM_2010'), +('08.37', 'Reduction of overcorrection of ptosis', 'ICD9CM_2010'), +('08.38', 'Correction of lid retraction', 'ICD9CM_2010'), +('08.4', 'Repair of entropion or ectropion', 'ICD9CM_2010'), +('08.41', 'Repair of entropion or ectropion by thermocauterization', 'ICD9CM_2010'), +('08.42', 'Repair of entropion or ectropion by suture technique', 'ICD9CM_2010'), +('08.43', 'Repair of entropion or ectropion with wedge resection', 'ICD9CM_2010'), +('08.44', 'Repair of entropion or ectropion with lid reconstruction', 'ICD9CM_2010'), +('08.49', 'Other repair of entropion or ectropion', 'ICD9CM_2010'), +('08.5', 'Other adjustment of lid position', 'ICD9CM_2010'), +('08.51', 'Canthotomy', 'ICD9CM_2010'), +('08.52', 'Blepharorrhaphy', 'ICD9CM_2010'), +('08.59', 'Other adjustment of lid position', 'ICD9CM_2010'), +('08.6', 'Reconstruction of eyelid with flaps or grafts', 'ICD9CM_2010'), +('08.61', 'Reconstruction of eyelid with skin flap or graft', 'ICD9CM_2010'), +('08.62', 'Reconstruction of eyelid with mucous membrane flap or graft', 'ICD9CM_2010'), +('08.63', 'Reconstruction of eyelid with hair follicle graft', 'ICD9CM_2010'), +('08.64', 'Reconstruction of eyelid with tarsoconjunctival flap', 'ICD9CM_2010'), +('08.69', 'Other reconstruction of eyelid with flaps or grafts', 'ICD9CM_2010'), +('08.7', 'Other reconstruction of eyelid', 'ICD9CM_2010'), +('08.70', 'Reconstruction of eyelid, not otherwise specified', 'ICD9CM_2010'), +('08.71', 'Reconstruction of eyelid involving lid margin, partial- thickness', 'ICD9CM_2010'), +('08.72', 'Other reconstruction of eyelid, partial-thickness', 'ICD9CM_2010'), +('08.73', 'Reconstruction of eyelid involving lid margin, full-thickness', 'ICD9CM_2010'), +('08.74', 'Other reconstruction of eyelid, full-thickness', 'ICD9CM_2010'), +('08.8', 'Other repair of eyelid', 'ICD9CM_2010'), +('08.81', 'Linear repair of laceration of eyelid or eyebrow', 'ICD9CM_2010'), +('08.82', 'Repair of laceration involving lid margin, partial-thickness', 'ICD9CM_2010'), +('08.83', 'Other repair of laceration of eyelid, partial-thickness', 'ICD9CM_2010'), +('08.84', 'Repair of laceration of eyelid involving lid margin, full-thickness', 'ICD9CM_2010'), +('08.85', 'Other repair of laceration of eyelid, full-thickness', 'ICD9CM_2010'), +('08.86', 'Lower eyelid rhytidectomy', 'ICD9CM_2010'), +('08.87', 'Upper eyelid rhytidectomy', 'ICD9CM_2010'), +('08.89', 'Other eyelid repair', 'ICD9CM_2010'), +('08.9', 'Other operations on eyelids', 'ICD9CM_2010'), +('08.91', 'Electrosurgical epilation of eyelid', 'ICD9CM_2010'), +('08.92', 'Cryosurgical epilation of eyelid', 'ICD9CM_2010'), +('08.93', 'Other epilation of eyelid', 'ICD9CM_2010'), +('08.99', 'Other operations on eyelids', 'ICD9CM_2010'), +('09', 'Operations on lacrimal system', 'ICD9CM_2010'), +('09.0', 'Incision of lacrimal gland', 'ICD9CM_2010'), +('09.1', 'Diagnostic procedures on lacrimal system', 'ICD9CM_2010'), +('09.11', 'Biopsy of lacrimal gland', 'ICD9CM_2010'), +('09.12', 'Biopsy of lacrimal sac', 'ICD9CM_2010'), +('09.19', 'Other diagnostic procedures on lacrimal system', 'ICD9CM_2010'), +('09.2', 'Excision of lesion or tissue of lacrimal gland', 'ICD9CM_2010'), +('09.20', 'Excision of lacrimal gland, not otherwise specified', 'ICD9CM_2010'), +('09.21', 'Excision of lesion of lacrimal gland', 'ICD9CM_2010'), +('09.22', 'Other partial dacryoadenectomy', 'ICD9CM_2010'), +('09.23', 'Total dacryoadenectomy', 'ICD9CM_2010'), +('09.3', 'Other operations on lacrimal gland', 'ICD9CM_2010'), +('09.4', 'Manipulation of lacrimal passage', 'ICD9CM_2010'), +('09.41', 'Probing of lacrimal punctum', 'ICD9CM_2010'), +('09.42', 'Probing of lacrimal canaliculi', 'ICD9CM_2010'), +('09.43', 'Probing of nasolacrimal duct', 'ICD9CM_2010'), +('09.44', 'Intubation of nasolacrimal duct', 'ICD9CM_2010'), +('09.49', 'Other manipulation of lacrimal passage', 'ICD9CM_2010'), +('09.5', 'Incision of lacrimal sac and passages', 'ICD9CM_2010'), +('09.51', 'Incision of lacrimal punctum', 'ICD9CM_2010'), +('09.52', 'Incision of lacrimal canaliculi', 'ICD9CM_2010'), +('09.53', 'Incision of lacrimal sac', 'ICD9CM_2010'), +('09.59', 'Other incision of lacrimal passages', 'ICD9CM_2010'), +('09.6', 'Excision of lacrimal sac and passage', 'ICD9CM_2010'), +('09.7', 'Repair of canaliculus and punctum', 'ICD9CM_2010'), +('09.71', 'Correction of everted punctum', 'ICD9CM_2010'), +('09.72', 'Other repair of punctum', 'ICD9CM_2010'), +('09.73', 'Repair of canaliculus', 'ICD9CM_2010'), +('09.8', 'Fistulization of lacrimal tract to nasal cavity', 'ICD9CM_2010'), +('09.81', 'Dacryocystorhinostomy (DCR)', 'ICD9CM_2010'), +('09.82', 'Conjunctivocystorhinostomy', 'ICD9CM_2010'), +('09.83', 'Conjunctivorhinostomy with insertion of tube or stent', 'ICD9CM_2010'), +('09.9', 'Other operations on lacrimal system', 'ICD9CM_2010'), +('09.91', 'Obliteration of lacrimal punctum', 'ICD9CM_2010'), +('09.99', 'Other operations on lacrimal system', 'ICD9CM_2010'), +('10', 'Operations on conjunctiva', 'ICD9CM_2010'), +('10.0', 'Removal of embedded foreign body from conjunctiva by incision', 'ICD9CM_2010'), +('10.1', 'Other incision of conjunctiva', 'ICD9CM_2010'), +('10.2', 'Diagnostic procedures on conjunctiva', 'ICD9CM_2010'), +('10.21', 'Biopsy of conjunctiva', 'ICD9CM_2010'), +('10.29', 'Other diagnostic procedures on conjunctiva', 'ICD9CM_2010'), +('10.3', 'Excision or destruction of lesion or tissue of conjunctiva', 'ICD9CM_2010'), +('10.31', 'Excision of lesion or tissue of conjunctiva', 'ICD9CM_2010'), +('10.32', 'Destruction of lesion of conjunctiva', 'ICD9CM_2010'), +('10.33', 'Other destructive procedures on conjunctiva', 'ICD9CM_2010'), +('10.4', 'Conjunctivoplasty', 'ICD9CM_2010'), +('10.41', 'Repair of symblepharon with free graft', 'ICD9CM_2010'), +('10.42', 'Reconstruction of conjunctival cul-de-sac with free graft', 'ICD9CM_2010'), +('10.43', 'Other reconstruction of conjunctival cul-de-sac', 'ICD9CM_2010'), +('10.44', 'Other free graft to conjunctiva', 'ICD9CM_2010'), +('10.49', 'Other conjunctivoplasty', 'ICD9CM_2010'), +('10.5', 'Lysis of adhesions of conjunctiva and eyelid', 'ICD9CM_2010'), +('10.6', 'Repair of laceration of conjunctiva', 'ICD9CM_2010'), +('10.9', 'Other operations on conjunctiva', 'ICD9CM_2010'), +('10.91', 'Subconjunctival injection', 'ICD9CM_2010'), +('10.99', 'Other operations on conjunctiva', 'ICD9CM_2010'), +('11', 'Operations on cornea', 'ICD9CM_2010'), +('11.0', 'Magnetic removal of embedded foreign body from cornea', 'ICD9CM_2010'), +('11.1', 'Incision of cornea', 'ICD9CM_2010'), +('11.2', 'Diagnostic procedures on cornea', 'ICD9CM_2010'), +('11.21', 'Scraping of cornea for smear or culture', 'ICD9CM_2010'), +('11.22', 'Biopsy of cornea', 'ICD9CM_2010'), +('11.29', 'Other diagnostic procedures on cornea', 'ICD9CM_2010'), +('11.3', 'Excision of pterygium', 'ICD9CM_2010'), +('11.31', 'Transposition of pterygium', 'ICD9CM_2010'), +('11.32', 'Excision of pterygium with corneal graft', 'ICD9CM_2010'), +('11.39', 'Other excision of pterygium', 'ICD9CM_2010'), +('11.4', 'Excision or destruction of tissue or other lesion of cornea', 'ICD9CM_2010'), +('11.41', 'Mechanical removal of corneal epithelium', 'ICD9CM_2010'), +('11.42', 'Thermocauterization of corneal lesion', 'ICD9CM_2010'), +('11.43', 'Cryotherapy of corneal lesion', 'ICD9CM_2010'), +('11.49', 'Other removal or destruction of corneal lesion', 'ICD9CM_2010'), +('11.5', 'Repair of cornea', 'ICD9CM_2010'), +('11.51', 'Suture of corneal laceration', 'ICD9CM_2010'), +('11.52', 'Repair of postoperative wound dehiscence of cornea', 'ICD9CM_2010'), +('11.53', 'Repair of corneal laceration or wound with conjunctival flap', 'ICD9CM_2010'), +('11.59', 'Other repair of cornea', 'ICD9CM_2010'), +('11.6', 'Corneal transplant', 'ICD9CM_2010'), +('11.60', 'Corneal transplant, not otherwise specified', 'ICD9CM_2010'), +('11.61', 'Lamellar keratoplasty with autograft', 'ICD9CM_2010'), +('11.62', 'Other lamellar keratoplasty', 'ICD9CM_2010'), +('11.63', 'Penetrating keratoplasty with autograft', 'ICD9CM_2010'), +('11.64', 'Other penetrating keratoplasty', 'ICD9CM_2010'), +('11.69', 'Other corneal transplant', 'ICD9CM_2010'), +('11.7', 'Other reconstructive and refractive surgery on cornea', 'ICD9CM_2010'), +('11.71', 'Keratomeleusis', 'ICD9CM_2010'), +('11.72', 'Keratophakia', 'ICD9CM_2010'), +('11.73', 'Keratoprosthesis', 'ICD9CM_2010'), +('11.74', 'Thermokeratoplasty', 'ICD9CM_2010'), +('11.75', 'Radial keratotomy', 'ICD9CM_2010'), +('11.76', 'Epikeratophakia', 'ICD9CM_2010'), +('11.79', 'Other reconstructive surgery on cornea', 'ICD9CM_2010'), +('11.9', 'Other operations on cornea', 'ICD9CM_2010'), +('11.91', 'Tattooing of cornea', 'ICD9CM_2010'), +('11.92', 'Removal of artificial implant from cornea', 'ICD9CM_2010'), +('11.99', 'Other operations on cornea', 'ICD9CM_2010'), +('12', 'Operations on iris, ciliary body, sclera, and anterior chamber', 'ICD9CM_2010'), +('12.0', 'Removal of intraocular foreign body from anterior segment of eye', 'ICD9CM_2010'), +('12.00', 'Removal of intraocular foreign body from anterior segment of eye, no', 'ICD9CM_2010'), +('12.01', 'Removal of intraocular foreign body from anterior segment of eye wit', 'ICD9CM_2010'), +('12.02', 'Removal of intraocular foreign body from anterior segment of eye wit', 'ICD9CM_2010'), +('12.1', 'Iridotomy and simple iridectomy', 'ICD9CM_2010'), +('12.11', 'Iridotomy with transfixion', 'ICD9CM_2010'), +('12.12', 'Other iridotomy', 'ICD9CM_2010'), +('12.13', 'Excision of prolapsed iris', 'ICD9CM_2010'), +('12.14', 'Other iridectomy', 'ICD9CM_2010'), +('12.2', 'Diagnostic procedures on iris, ciliary body, sclera, and anterior ch', 'ICD9CM_2010'), +('12.21', 'Diagnostic aspiration of anterior chamber of eye', 'ICD9CM_2010'), +('12.22', 'Biopsy of iris', 'ICD9CM_2010'), +('12.29', 'Other diagnostic procedures on iris, ciliary body, sclera, and anter', 'ICD9CM_2010'), +('12.3', 'Iridoplasty and coreoplasty', 'ICD9CM_2010'), +('12.31', 'Lysis of goniosynechiae', 'ICD9CM_2010'), +('12.32', 'Lysis of other anterior synechiae', 'ICD9CM_2010'), +('12.33', 'Lysis of posterior synechiae', 'ICD9CM_2010'), +('12.34', 'Lysis of corneovitreal adhesions', 'ICD9CM_2010'), +('12.35', 'Coreoplasty', 'ICD9CM_2010'), +('12.39', 'Other iridoplasty', 'ICD9CM_2010'), +('12.4', 'Excision or destruction of lesion of iris and ciliary body', 'ICD9CM_2010'), +('12.40', 'Removal of lesion of anterior segment of eye, not otherwise specifie', 'ICD9CM_2010'), +('12.41', 'Destruction of lesion of iris, nonexcisional', 'ICD9CM_2010'), +('12.42', 'Excision of lesion of iris', 'ICD9CM_2010'), +('12.43', 'Destruction of lesion of ciliary body, nonexcisional', 'ICD9CM_2010'), +('12.44', 'Excision of lesion of ciliary body', 'ICD9CM_2010'), +('12.5', 'Facilitation of intraocular circulation', 'ICD9CM_2010'), +('12.51', 'Goniopuncture without goniotomy', 'ICD9CM_2010'), +('12.52', 'Goniotomy without goniopuncture', 'ICD9CM_2010'), +('12.53', 'Goniotomy with goniopuncture', 'ICD9CM_2010'), +('12.54', 'Trabeculotomy ab externo', 'ICD9CM_2010'), +('12.55', 'Cyclodialysis', 'ICD9CM_2010'), +('12.59', 'Other facilitation of intraocular circulation', 'ICD9CM_2010'), +('12.6', 'Scleral fistulization', 'ICD9CM_2010'), +('12.61', 'Trephination of sclera with iridectomy', 'ICD9CM_2010'), +('12.62', 'Thermocauterization of sclera with iridectomy', 'ICD9CM_2010'), +('12.63', 'Iridencleisis and iridotasis', 'ICD9CM_2010'), +('12.64', 'Trabeculectomy ab externo', 'ICD9CM_2010'), +('12.65', 'Other scleral fistulization with iridectomy', 'ICD9CM_2010'), +('12.66', 'Postoperative revision of scleral fistulization procedure', 'ICD9CM_2010'), +('12.69', 'Other scleral fistulizing procedure', 'ICD9CM_2010'), +('12.7', 'Other procedures for relief of elevated intraocular pressure', 'ICD9CM_2010'), +('12.71', 'Cyclodiathermy', 'ICD9CM_2010'), +('12.72', 'Cyclocryotherapy', 'ICD9CM_2010'), +('12.73', 'Cyclophotocoagulation', 'ICD9CM_2010'), +('12.74', 'Diminution of ciliary body, not otherwise specified', 'ICD9CM_2010'), +('12.79', 'Other glaucoma procedures', 'ICD9CM_2010'), +('12.8', 'Operations on sclera', 'ICD9CM_2010'), +('12.81', 'Suture of laceration of sclera', 'ICD9CM_2010'), +('12.82', 'Repair of scleral fistula', 'ICD9CM_2010'), +('12.83', 'Revision of operative wound of anterior segment, not elsewhere class', 'ICD9CM_2010'), +('12.84', 'Excision or destruction of lesion of sclera', 'ICD9CM_2010'), +('12.85', 'Repair of scleral staphyloma with graft', 'ICD9CM_2010'), +('12.86', 'Other repair of scleral staphyloma', 'ICD9CM_2010'), +('12.87', 'Scleral reinforcement with graft', 'ICD9CM_2010'), +('12.88', 'Other scleral reinforcement', 'ICD9CM_2010'), +('12.89', 'Other operations on sclera', 'ICD9CM_2010'), +('12.9', 'Other operations on iris, ciliary body, and anterior chamber', 'ICD9CM_2010'), +('12.91', 'Therapeutic evacuation of anterior chamber', 'ICD9CM_2010'), +('12.92', 'Injection into anterior chamber', 'ICD9CM_2010'), +('12.93', 'Removal or destruction of epithelial downgrowth from anterior chambe', 'ICD9CM_2010'), +('12.97', 'Other operations on iris', 'ICD9CM_2010'), +('12.98', 'Other operations on ciliary body', 'ICD9CM_2010'), +('12.99', 'Other operations on anterior chamber', 'ICD9CM_2010'), +('13', 'Operations on lens', 'ICD9CM_2010'), +('13.0', 'Removal of foreign body from lens', 'ICD9CM_2010'), +('13.00', 'Removal of foreign body from lens, not otherwise specified', 'ICD9CM_2010'), +('13.01', 'Removal of foreign body from lens with use of magnet', 'ICD9CM_2010'), +('13.02', 'Removal of foreign body from lens without use of magnet', 'ICD9CM_2010'), +('13.1', 'Intracapsular extraction of lens', 'ICD9CM_2010'), +('13.11', 'Intracapsular extraction of lens by temporal inferior route', 'ICD9CM_2010'), +('13.19', 'Other intracapsular extraction of lens', 'ICD9CM_2010'), +('13.2', 'Extracapsular extraction of lens by linear extraction technique', 'ICD9CM_2010'), +('13.3', 'Extracapsular extraction of lens by simple aspiration (and irrigatio', 'ICD9CM_2010'), +('13.4', 'Extracapsular extraction of lens by fragmentation and aspiration tec', 'ICD9CM_2010'), +('13.41', 'Phacoemulsification and aspiration of cataract', 'ICD9CM_2010'), +('13.42', 'Mechanical phacofragmentation and aspiration of cataract by posterio', 'ICD9CM_2010'), +('13.43', 'Mechanical phacofragmentation and other aspiration of cataract', 'ICD9CM_2010'), +('13.5', 'Other extracapsular extraction of lens', 'ICD9CM_2010'), +('13.51', 'Extracapsular extraction of lens by temporal inferior route', 'ICD9CM_2010'), +('13.59', 'Other extracapsular extraction of lens', 'ICD9CM_2010'), +('13.6', 'Other cataract extraction', 'ICD9CM_2010'), +('13.64', 'Discission of secondary membrane (after cataract)', 'ICD9CM_2010'), +('13.65', 'Excision of secondary membrane (after cataract)', 'ICD9CM_2010'), +('13.66', 'Mechanical fragmentation of secondary membrane (after cataract)', 'ICD9CM_2010'), +('13.69', 'Other cataract extraction', 'ICD9CM_2010'), +('13.7', 'Insertion of prosthetic lens (pseudophakos)', 'ICD9CM_2010'), +('13.70', 'Insertion of pseudophakos, not otherwise specified', 'ICD9CM_2010'), +('13.71', 'Insertion of intraocular lens prosthesis at time of cataract extract', 'ICD9CM_2010'), +('13.72', 'Secondary insertion of intraocular lens prosthesis', 'ICD9CM_2010'), +('13.8', 'Removal of implanted lens', 'ICD9CM_2010'), +('13.9', 'Other operations on lens', 'ICD9CM_2010'), +('13.90', 'Operation on lens, Not Elsewhere Classified', 'ICD9CM_2010'), +('13.91', 'Implatation of intraocular telescope prosthesis', 'ICD9CM_2010'), +('14', 'Operations on retina, choroid, vitreous, and posterior chamber', 'ICD9CM_2010'), +('14.0', 'Removal of foreign body from posterior segment of eye', 'ICD9CM_2010'), +('14.00', 'Removal of foreign body from posterior segment of eye, not otherwise', 'ICD9CM_2010'), +('14.01', 'Removal of foreign body from posterior segment of eye with use of ma', 'ICD9CM_2010'), +('14.02', 'Removal of foreign body from posterior segment of eye without use of', 'ICD9CM_2010'), +('14.1', 'Diagnostic procedures on retina, choroid, vitreous, and posterior ch', 'ICD9CM_2010'), +('14.11', 'Diagnostic aspiration of vitreous', 'ICD9CM_2010'), +('14.19', 'Other diagnostic procedures on retina, choroid, vitreous, and poster', 'ICD9CM_2010'), +('14.2', 'Destruction of lesion of retina and choroid', 'ICD9CM_2010'), +('14.21', 'Destruction of chorioretinal lesion by diathermy', 'ICD9CM_2010'), +('14.22', 'Destruction of chorioretinal lesion by cryotherapy', 'ICD9CM_2010'), +('14.23', 'Destruction of chorioretinal lesion by xenon arc photocoagulation', 'ICD9CM_2010'), +('14.24', 'Destruction of chorioretinal lesion by laser photocoagulation', 'ICD9CM_2010'), +('14.25', 'Destruction of chorioretinal lesion by photocoagulation of unspecifi', 'ICD9CM_2010'), +('14.26', 'Destruction of chorioretinal lesion by radiation therapy', 'ICD9CM_2010'), +('14.27', 'Destruction of chorioretinal lesion by implantation of radiation sou', 'ICD9CM_2010'), +('14.29', 'Other destruction of chorioretinal lesion', 'ICD9CM_2010'), +('14.3', 'Repair of retinal tear', 'ICD9CM_2010'), +('14.31', 'Repair of retinal tear by diathermy', 'ICD9CM_2010'), +('14.32', 'Repair of retinal tear by cryotherapy', 'ICD9CM_2010'), +('14.33', 'Repair of retinal tear by xenon arc photocoagulation', 'ICD9CM_2010'), +('14.34', 'Repair of retinal tear by laser photocoagulation', 'ICD9CM_2010'), +('14.35', 'Repair of retinal tear by photocoagulation of unspecified type', 'ICD9CM_2010'), +('14.39', 'Other repair of retinal tear', 'ICD9CM_2010'), +('14.4', 'Repair of retinal detachment with scleral buckling and implant', 'ICD9CM_2010'), +('14.41', 'Scleral buckling with implant', 'ICD9CM_2010'), +('14.49', 'Other scleral buckling', 'ICD9CM_2010'), +('14.5', 'Other repair of retinal detachment', 'ICD9CM_2010'), +('14.51', 'Repair of retinal detachment with diathermy', 'ICD9CM_2010'), +('14.52', 'Repair of retinal detachment with cryotherapy', 'ICD9CM_2010'), +('14.53', 'Repair of retinal detachment with xenon arc photocoagulation', 'ICD9CM_2010'), +('14.54', 'Repair of retinal detachment with laser photocoagulation', 'ICD9CM_2010'), +('14.55', 'Repair of retinal detachment with photocoagulation of unspecified ty', 'ICD9CM_2010'), +('14.59', 'Other repair of retinal detachment', 'ICD9CM_2010'), +('14.6', 'Removal of surgically implanted material from posterior segment of eye', 'ICD9CM_2010'), +('14.7', 'Operations on vitreous', 'ICD9CM_2010'), +('14.71', 'Removal of vitreous, anterior approach', 'ICD9CM_2010'), +('14.72', 'Other removal of vitreous', 'ICD9CM_2010'), +('14.73', 'Mechanical vitrectomy by anterior approach', 'ICD9CM_2010'), +('14.74', 'Other mechanical vitrectomy', 'ICD9CM_2010'), +('14.75', 'Injection of vitreous substitute', 'ICD9CM_2010'), +('14.79', 'Other operations on vitreous', 'ICD9CM_2010'), +('14.9', 'Other operations on retina, choroid, and posterior chamber', 'ICD9CM_2010'), +('15', 'Operations on extraocular muscles', 'ICD9CM_2010'), +('15.0', 'Diagnostic procedures on extraocular muscles or tendons', 'ICD9CM_2010'), +('15.01', 'Biopsy of extraocular muscle or tendon', 'ICD9CM_2010'), +('15.09', 'Other diagnostic procedures on extraocular muscles and tendons', 'ICD9CM_2010'), +('15.1', 'Operations on one extraocular muscle involving temporary detachment', 'ICD9CM_2010'), +('15.11', 'Recession of one extraocular muscle', 'ICD9CM_2010'), +('15.12', 'Advancement of one extraocular muscle', 'ICD9CM_2010'), +('15.13', 'Resection of one extraocular muscle', 'ICD9CM_2010'), +('15.19', 'Other operations on one extraocular muscle involving temporary detac', 'ICD9CM_2010'), +('15.2', 'Other operations on one extraocular muscle', 'ICD9CM_2010'), +('15.21', 'Lengthening procedure on one extraocular muscle', 'ICD9CM_2010'), +('15.22', 'Shortening procedure on one extraocular muscle', 'ICD9CM_2010'), +('15.29', 'Other operations on one extraocular muscle', 'ICD9CM_2010'), +('15.3', 'Operations on two or more extraocular muscles involving temporary de', 'ICD9CM_2010'), +('15.4', 'Other operations on two or more extraocular muscles, one or both eye', 'ICD9CM_2010'), +('15.5', 'Transposition of extraocular muscles', 'ICD9CM_2010'), +('15.6', 'Revision of extraocular muscle surgery', 'ICD9CM_2010'), +('15.7', 'Repair of injury of extraocular muscle', 'ICD9CM_2010'), +('15.9', 'Other operations on extraocular muscles and tendons', 'ICD9CM_2010'), +('16', 'Operations on orbit and eyeball', 'ICD9CM_2010'), +('16.0', 'Orbitotomy', 'ICD9CM_2010'), +('16.01', 'Orbitotomy with bone flap', 'ICD9CM_2010'), +('16.02', 'Orbitotomy with insertion of orbital implant', 'ICD9CM_2010'), +('16.09', 'Other orbitotomy', 'ICD9CM_2010'), +('16.1', 'Removal of penetrating foreign body from eye, not otherwise specifie', 'ICD9CM_2010'), +('16.2', 'Diagnostic procedures on orbit and eyeball', 'ICD9CM_2010'), +('16.21', 'Ophthalmoscopy', 'ICD9CM_2010'), +('16.22', 'Diagnostic aspiration of orbit', 'ICD9CM_2010'), +('16.23', 'Biopsy of eyeball and orbit', 'ICD9CM_2010'), +('16.29', 'Other diagnostic procedures on orbit and eyeball', 'ICD9CM_2010'), +('16.3', 'Evisceration of eyeball', 'ICD9CM_2010'), +('16.31', 'Removal of ocular contents with synchronous implant into scleral she', 'ICD9CM_2010'), +('16.39', 'Other evisceration of eyeball', 'ICD9CM_2010'), +('16.4', 'Enucleation of eyeball', 'ICD9CM_2010'), +('16.41', 'Enucleation of eyeball with synchronous implant into tenon\'s capsule', 'ICD9CM_2010'), +('16.42', 'Enucleation of eyeball with other synchronous implant', 'ICD9CM_2010'), +('16.49', 'Other enucleation of eyeball', 'ICD9CM_2010'), +('16.5', 'Exenteration of orbital contents', 'ICD9CM_2010'), +('16.51', 'Exenteration of orbit with removal of adjacent structures', 'ICD9CM_2010'), +('16.52', 'Exenteration of orbit with therapeutic removal of orbital bone', 'ICD9CM_2010'), +('16.59', 'Other exenteration of orbit', 'ICD9CM_2010'), +('16.6', 'Secondary procedures after removal of eyeball', 'ICD9CM_2010'), +('16.61', 'Secondary insertion of ocular implant', 'ICD9CM_2010'), +('16.62', 'Revision and reinsertion of ocular implant', 'ICD9CM_2010'), +('16.63', 'Revision of enucleation socket with graft', 'ICD9CM_2010'), +('16.64', 'Other revision of enucleation socket', 'ICD9CM_2010'), +('16.65', 'Secondary graft to exenteration cavity', 'ICD9CM_2010'), +('16.66', 'Other revision of exenteration cavity', 'ICD9CM_2010'), +('16.69', 'Other secondary procedures after removal of eyeball', 'ICD9CM_2010'), +('16.7', 'Removal of ocular or orbital implant', 'ICD9CM_2010'), +('16.71', 'Removal of ocular implant', 'ICD9CM_2010'), +('16.72', 'Removal of orbital implant', 'ICD9CM_2010'), +('16.8', 'Repair of injury of eyeball and orbit', 'ICD9CM_2010'), +('16.81', 'Repair of wound of orbit', 'ICD9CM_2010'), +('16.82', 'Repair of rupture of eyeball', 'ICD9CM_2010'), +('16.89', 'Other repair of injury of eyeball or orbit', 'ICD9CM_2010'), +('16.9', 'Other operations on orbit and eyeball', 'ICD9CM_2010'), +('16.91', 'Retrobulbar injection of therapeutic agent', 'ICD9CM_2010'), +('16.92', 'Excision of lesion of orbit', 'ICD9CM_2010'), +('16.93', 'Excision of lesion of eye, unspecified structure', 'ICD9CM_2010'), +('16.98', 'Other operations on orbit', 'ICD9CM_2010'), +('16.99', 'Other operations on eyeball', 'ICD9CM_2010'), +('17', 'Other miscellaneous procedures', 'ICD9CM_2010'), +('17.1', 'Laparoscopic unilateral repair of inguinal hernia', 'ICD9CM_2010'), +('17.11', 'Laparoscopic repair of direct inguinal hernia with graft or prosthesis', 'ICD9CM_2010'), +('17.12', 'Laparoscopic repair of indirect inguinal hernia with graft or prosthesis', 'ICD9CM_2010'), +('17.13', 'Laparoscopic repair of inguinal hernia with graft or prosthesis,not otherwise specified', 'ICD9CM_2010'), +('17.2', 'Laparoscopic bilateral repair of inguinal hernia', 'ICD9CM_2010'), +('17.21', 'Laparoscopic bilateral repair of direct inguinal hernia with graft or prosthesis', 'ICD9CM_2010'), +('17.22', 'Laparoscopic bilateral repair of indirect inguinal hernia with graft or prosthesis', 'ICD9CM_2010'), +('17.23', 'Laparoscopic bilateral repair of inguinal hernia, one direct and one indirect, with graft or prosthesis', 'ICD9CM_2010'), +('17.24', 'Laparoscopic bilateral repair of inguinal hernia with graft or prosthesis, not otherwise specified', 'ICD9CM_2010'), +('17.3', 'Laparoscopic partial excision of large intestine', 'ICD9CM_2010'), +('17.31', 'Laparoscopic multiple segmental resection of large intestine', 'ICD9CM_2010'), +('17.32', 'Laparoscopic cecectomy', 'ICD9CM_2010'), +('17.33', 'Laparoscopic right hemicolectomy', 'ICD9CM_2010'), +('17.34', 'Laparoscopic resection of transverse colon', 'ICD9CM_2010'), +('17.35', 'Laparoscopic left hemicolectomy', 'ICD9CM_2010'), +('17.36', 'Laparoscopic sigmoidectomy', 'ICD9CM_2010'), +('17.39', 'Other laparoscopic partial excision of large intestine', 'ICD9CM_2010'), +('17.4', 'Robotic assisted procedure', 'ICD9CM_2010'), +('17.41', 'Open robotic assisted procedure', 'ICD9CM_2010'), +('17.42', 'Laparoscopic robotic assisted procedure', 'ICD9CM_2010'), +('17.43', 'Percutaneous robotic assisted procedure', 'ICD9CM_2010'), +('17.44', 'Endoscopic robotic assisted procedure', 'ICD9CM_2010'), +('17.45', 'Thoracoscopic robotic assisted procedure', 'ICD9CM_2010'), +('17.49', 'Other and unspecified robotic assisted procedure', 'ICD9CM_2010'); +INSERT INTO `icd9` (`ID_ICD9`, `Prosedur`, `Versi_ICD9`) VALUES +('17.5', 'Implantation of rechargeable cardiac contractility modulation [CCM]', 'ICD9CM_2010'), +('17.51', 'Implantation of rechargeable cardiac contractility modulation [CCM], total system', 'ICD9CM_2010'), +('17.52', 'Implantation or replacement of cardiac contractility modulation [CCM] rechargeable pulse generator only', 'ICD9CM_2010'), +('17.6', 'Laser interstitial thermal therapy [LITT] of lesion or tissue', 'ICD9CM_2010'), +('17.61', 'Laser interstitial thermal therapy [LITT] of lesion or tissue of brain under guidance', 'ICD9CM_2010'), +('17.62', 'Laser interstitial thermal therapy [LITT] of lesion or tissue of head and neck under guidance', 'ICD9CM_2010'), +('17.63', 'Laser interstitial thermal therapy [LITT] of lesion or tissue of liver under guidance', 'ICD9CM_2010'), +('17.69', 'Laser interstitial thermal therapy [LITT] of lesion or tissue of other and unspecified site under guidance', 'ICD9CM_2010'), +('17.7', 'Intravenous infusion', 'ICD9CM_2010'), +('17.70', 'Intravenous infusion of clofarabine', 'ICD9CM_2010'), +('17.71', 'Non-coronary intra-operative fluorescence vascular angiography [IFVA]', 'ICD9CM_2010'), +('18', 'Operations on external ear', 'ICD9CM_2010'), +('18.0', 'Incision of external ear', 'ICD9CM_2010'), +('18.01', 'Piercing of ear lobe', 'ICD9CM_2010'), +('18.02', 'Incision of external auditory canal', 'ICD9CM_2010'), +('18.09', 'Other incision of external ear', 'ICD9CM_2010'), +('18.1', 'Diagnostic procedures on external ear', 'ICD9CM_2010'), +('18.11', 'Otoscopy', 'ICD9CM_2010'), +('18.12', 'Biopsy of external ear', 'ICD9CM_2010'), +('18.19', 'Other diagnostic procedures on external ear', 'ICD9CM_2010'), +('18.2', 'Excision or destruction of lesion of external ear', 'ICD9CM_2010'), +('18.21', 'Excision of preauricular sinus', 'ICD9CM_2010'), +('18.29', 'Excision or destruction of other lesion of external ear', 'ICD9CM_2010'), +('18.3', 'Other excision of external ear', 'ICD9CM_2010'), +('18.31', 'Radical excision of lesion of external ear', 'ICD9CM_2010'), +('18.39', 'Other excision of external ear', 'ICD9CM_2010'), +('18.4', 'Suture of laceration of external ear', 'ICD9CM_2010'), +('18.5', 'Surgical correction of prominent ear', 'ICD9CM_2010'), +('18.6', 'Reconstruction of external auditory canal', 'ICD9CM_2010'), +('18.7', 'Other plastic repair of external ear', 'ICD9CM_2010'), +('18.71', 'Construction of auricle of ear', 'ICD9CM_2010'), +('18.72', 'Reattachment of amputated ear', 'ICD9CM_2010'), +('18.79', 'Other plastic repair of external ear', 'ICD9CM_2010'), +('18.9', 'Other operations on external ear', 'ICD9CM_2010'), +('19', 'Reconstructive operations on middle ear', 'ICD9CM_2010'), +('19.0', 'Stapes mobilization', 'ICD9CM_2010'), +('19.1', 'Stapedectomy', 'ICD9CM_2010'), +('19.11', 'Stapedectomy with incus replacement', 'ICD9CM_2010'), +('19.19', 'Other stapedectomy', 'ICD9CM_2010'), +('19.2', 'Revision of stapedectomy', 'ICD9CM_2010'), +('19.21', 'Revision of stapedectomy with incus replacement', 'ICD9CM_2010'), +('19.29', 'Other revision of stapedectomy', 'ICD9CM_2010'), +('19.3', 'Other operations on ossicular chain', 'ICD9CM_2010'), +('19.4', 'Myringoplasty', 'ICD9CM_2010'), +('19.5', 'Other tympanoplasty', 'ICD9CM_2010'), +('19.52', 'Type ii tympanoplasty', 'ICD9CM_2010'), +('19.53', 'Type iii tympanoplasty', 'ICD9CM_2010'), +('19.54', 'Type iv tympanoplasty', 'ICD9CM_2010'), +('19.55', 'Type v tympanoplasty', 'ICD9CM_2010'), +('19.6', 'Revision of tympanoplasty', 'ICD9CM_2010'), +('19.9', 'Other repair of middle ear', 'ICD9CM_2010'), +('20', 'Other operations on middle and inner ear', 'ICD9CM_2010'), +('20.0', 'Myringotomy', 'ICD9CM_2010'), +('20.01', 'Myringotomy with insertion of tube', 'ICD9CM_2010'), +('20.09', 'Other myringotomy', 'ICD9CM_2010'), +('20.1', 'Removal of tympanostomy tube', 'ICD9CM_2010'), +('20.2', 'Incision of mastoid and middle ear', 'ICD9CM_2010'), +('20.21', 'Incision of mastoid', 'ICD9CM_2010'), +('20.22', 'Incision of petrous pyramid air cells', 'ICD9CM_2010'), +('20.23', 'Incision of middle ear', 'ICD9CM_2010'), +('20.3', 'Diagnostic procedures on middle and inner ear', 'ICD9CM_2010'), +('20.31', 'Electrocochleography', 'ICD9CM_2010'), +('20.32', 'Biopsy of middle and inner ear', 'ICD9CM_2010'), +('20.39', 'Other diagnostic procedures on middle and inner ear', 'ICD9CM_2010'), +('20.4', 'Mastoidectomy', 'ICD9CM_2010'), +('20.41', 'Simple mastoidectomy', 'ICD9CM_2010'), +('20.42', 'Radical mastoidectomy', 'ICD9CM_2010'), +('20.49', 'Other mastoidectomy', 'ICD9CM_2010'), +('20.5', 'Other excision of middle ear', 'ICD9CM_2010'), +('20.51', 'Excision of lesion of middle ear', 'ICD9CM_2010'), +('20.59', 'Other excision of middle ear', 'ICD9CM_2010'), +('20.6', 'Fenestration of inner ear', 'ICD9CM_2010'), +('20.61', 'Fenestration of inner ear (initial)', 'ICD9CM_2010'), +('20.62', 'Revision of fenestration of inner ear', 'ICD9CM_2010'), +('20.7', 'Incision, excision, and destruction of inner ear', 'ICD9CM_2010'), +('20.71', 'Endolymphatic shunt', 'ICD9CM_2010'), +('20.72', 'Injection into inner ear', 'ICD9CM_2010'), +('20.79', 'Other incision, excision, and destruction of inner ear', 'ICD9CM_2010'), +('20.8', 'Operations on eustachian tube', 'ICD9CM_2010'), +('20.9', 'Other operations on inner and middle ear', 'ICD9CM_2010'), +('20.91', 'Tympanosympathectomy', 'ICD9CM_2010'), +('20.92', 'Revision of mastoidectomy', 'ICD9CM_2010'), +('20.93', 'Repair of oval and round windows', 'ICD9CM_2010'), +('20.94', 'Injection of tympanum', 'ICD9CM_2010'), +('20.95', 'Implantation of electromagnetic hearing device', 'ICD9CM_2010'), +('20.96', 'Implantation or replacement of cochlear prosthetic device, not otherwise specified', 'ICD9CM_2010'), +('20.97', 'Implantation or replacement of cochlear prosthetic device, single channel', 'ICD9CM_2010'), +('20.98', 'Implantation or replacement of cochlear prosthetic device, multiple channel', 'ICD9CM_2010'), +('20.99', 'Other operations on middle and inner ear', 'ICD9CM_2010'), +('21', 'Operations on nose', 'ICD9CM_2010'), +('21.0', 'Control of epistaxis', 'ICD9CM_2010'), +('21.00', 'Control of epistaxis, not otherwise specified', 'ICD9CM_2010'), +('21.01', 'Control of epistaxis by anterior nasal packing', 'ICD9CM_2010'), +('21.02', 'Control of epistaxis by posterior (and anterior) packing', 'ICD9CM_2010'), +('21.03', 'Control of epistaxis by cauterization (and packing)', 'ICD9CM_2010'), +('21.04', 'Control of epistaxis by ligation of ethmoidal arteries', 'ICD9CM_2010'), +('21.05', 'Control of epistaxis by (transantral) ligation of the maxillary arte', 'ICD9CM_2010'), +('21.06', 'Control of epistaxis by ligation of the external carotid artery', 'ICD9CM_2010'), +('21.07', 'Control of epistaxis by excision of nasal mucosa and skin grafting o', 'ICD9CM_2010'), +('21.09', 'Control of epistaxis by other means', 'ICD9CM_2010'), +('21.1', 'Incision of nose', 'ICD9CM_2010'), +('21.2', 'Diagnostic procedures on nose', 'ICD9CM_2010'), +('21.21', 'Rhinoscopy', 'ICD9CM_2010'), +('21.22', 'Biopsy of nose', 'ICD9CM_2010'), +('21.29', 'Other diagnostic procedures on nose', 'ICD9CM_2010'), +('21.3', 'Local excision or destruction of lesion of nose', 'ICD9CM_2010'), +('21.30', 'Excision or destruction of lesion of nose, not otherwise specified', 'ICD9CM_2010'), +('21.31', 'Local excision or destruction of intranasal lesion', 'ICD9CM_2010'), +('21.32', 'Local excision or destruction of other lesion of nose', 'ICD9CM_2010'), +('21.4', 'Resection of nose', 'ICD9CM_2010'), +('21.5', 'Submucous resection of nasal septum', 'ICD9CM_2010'), +('21.6', 'Turbinectomy', 'ICD9CM_2010'), +('21.61', 'Turbinectomy by diathermy or cryosurgery', 'ICD9CM_2010'), +('21.62', 'Fracture of the turbinates', 'ICD9CM_2010'), +('21.69', 'Other turbinectomy', 'ICD9CM_2010'), +('21.7', 'Reduction of nasal fracture', 'ICD9CM_2010'), +('21.71', 'Closed reduction of nasal fracture', 'ICD9CM_2010'), +('21.72', 'Open reduction of nasal fracture', 'ICD9CM_2010'), +('21.8', 'Repair and plastic operations on the nose', 'ICD9CM_2010'), +('21.81', 'Suture of laceration of nose', 'ICD9CM_2010'), +('21.82', 'Closure of nasal fistula', 'ICD9CM_2010'), +('21.83', 'Total nasal reconstruction', 'ICD9CM_2010'), +('21.84', 'Revision rhinoplasty', 'ICD9CM_2010'), +('21.85', 'Augmentation rhinoplasty', 'ICD9CM_2010'), +('21.86', 'Limited rhinoplasty', 'ICD9CM_2010'), +('21.87', 'Other rhinoplasty', 'ICD9CM_2010'), +('21.88', 'Other septoplasty', 'ICD9CM_2010'), +('21.89', 'Other repair and plastic operations on nose', 'ICD9CM_2010'), +('21.9', 'Other operations on nose', 'ICD9CM_2010'), +('21.91', 'Lysis of adhesions of nose', 'ICD9CM_2010'), +('21.99', 'Other operations on nose', 'ICD9CM_2010'), +('22', 'Operations on nasal sinuses', 'ICD9CM_2010'), +('22.0', 'Aspiration and lavage of nasal sinus', 'ICD9CM_2010'), +('22.00', 'Aspiration and lavage of nasal sinus, not otherwise specified', 'ICD9CM_2010'), +('22.01', 'Puncture of nasal sinus for aspiration or lavage', 'ICD9CM_2010'), +('22.02', 'Aspiration or lavage of nasal sinus through natural ostium', 'ICD9CM_2010'), +('22.1', 'Diagnostic procedures on nasal sinus', 'ICD9CM_2010'), +('22.11', 'Closed (endoscopic) (needle) biopsy of nasal sinus', 'ICD9CM_2010'), +('22.12', 'Open biopsy of nasal sinus', 'ICD9CM_2010'), +('22.19', 'Other diagnostic procedures on nasal sinuses', 'ICD9CM_2010'), +('22.2', 'Intranasal antrotomy', 'ICD9CM_2010'), +('22.3', 'External maxillary antrotomy', 'ICD9CM_2010'), +('22.31', 'Radical maxillary antrotomy', 'ICD9CM_2010'), +('22.39', 'Other external maxillary antrotomy', 'ICD9CM_2010'), +('22.4', 'Frontal sinusotomy and sinusectomy', 'ICD9CM_2010'), +('22.41', 'Frontal sinusotomy', 'ICD9CM_2010'), +('22.42', 'Frontal sinusectomy', 'ICD9CM_2010'), +('22.5', 'Other nasal sinusotomy', 'ICD9CM_2010'), +('22.50', 'Sinusotomy, not otherwise specified', 'ICD9CM_2010'), +('22.51', 'Ethmoidotomy', 'ICD9CM_2010'), +('22.52', 'Sphenoidotomy', 'ICD9CM_2010'), +('22.53', 'Incision of multiple nasal sinuses', 'ICD9CM_2010'), +('22.6', 'Other nasal sinusectomy', 'ICD9CM_2010'), +('22.60', 'Sinusectomy, not otherwise specified', 'ICD9CM_2010'), +('22.61', 'Excision of lesion of maxillary sinus with caldwell-luc approach', 'ICD9CM_2010'), +('22.62', 'Excision of lesion of maxillary sinus with other approach', 'ICD9CM_2010'), +('22.63', 'Ethmoidectomy', 'ICD9CM_2010'), +('22.64', 'Sphenoidectomy', 'ICD9CM_2010'), +('22.7', 'Repair of nasal sinus', 'ICD9CM_2010'), +('22.71', 'Closure of nasal sinus fistula', 'ICD9CM_2010'), +('22.79', 'Other repair of nasal sinus', 'ICD9CM_2010'), +('22.9', 'Other operations on nasal sinuses', 'ICD9CM_2010'), +('23', 'Removal and restoration of teeth', 'ICD9CM_2010'), +('23.0', 'Forceps extraction of tooth', 'ICD9CM_2010'), +('23.01', 'Extraction of deciduous tooth', 'ICD9CM_2010'), +('23.09', 'Extraction of other tooth', 'ICD9CM_2010'), +('23.1', 'Surgical removal of tooth', 'ICD9CM_2010'), +('23.11', 'Removal of residual root', 'ICD9CM_2010'), +('23.19', 'Other surgical extraction of tooth', 'ICD9CM_2010'), +('23.2', 'Restoration of tooth by filling', 'ICD9CM_2010'), +('23.3', 'Restoration of tooth by inlay', 'ICD9CM_2010'), +('23.4', 'Other dental restoration', 'ICD9CM_2010'), +('23.41', 'Application of crown', 'ICD9CM_2010'), +('23.42', 'Insertion of fixed bridge', 'ICD9CM_2010'), +('23.43', 'Insertion of removable bridge', 'ICD9CM_2010'), +('23.49', 'Other dental restoration', 'ICD9CM_2010'), +('23.5', 'Implantation of tooth', 'ICD9CM_2010'), +('23.6', 'Prosthetic dental implant', 'ICD9CM_2010'), +('23.7', 'Apicoectomy and root canal therapy', 'ICD9CM_2010'), +('23.70', 'Root canal, not otherwise specified', 'ICD9CM_2010'), +('23.71', 'Root canal therapy with irrigation', 'ICD9CM_2010'), +('23.72', 'Root canal therapy with apicoectomy', 'ICD9CM_2010'), +('23.73', 'Apicoectomy', 'ICD9CM_2010'), +('24', 'Other operations on teeth, gums, and alveoli', 'ICD9CM_2010'), +('24.0', 'Incision of gum or alveolar bone', 'ICD9CM_2010'), +('24.1', 'Diagnostic procedures on teeth, gums, and alveoli', 'ICD9CM_2010'), +('24.11', 'Biopsy of gum', 'ICD9CM_2010'), +('24.12', 'Biopsy of alveolus', 'ICD9CM_2010'), +('24.19', 'Other diagnostic procedures on teeth, gums, and alveoli', 'ICD9CM_2010'), +('24.2', 'Gingivoplasty', 'ICD9CM_2010'), +('24.3', 'Other operations on gum', 'ICD9CM_2010'), +('24.31', 'Excision of lesion or tissue of gum', 'ICD9CM_2010'), +('24.32', 'Suture of laceration of gum', 'ICD9CM_2010'), +('24.39', 'Other operations on gum', 'ICD9CM_2010'), +('24.4', 'Excision of dental lesion of jaw', 'ICD9CM_2010'), +('24.5', 'Alveoloplasty', 'ICD9CM_2010'), +('24.6', 'Exposure of tooth', 'ICD9CM_2010'), +('24.7', 'Application of orthodontic appliance', 'ICD9CM_2010'), +('24.8', 'Other orthodontic operation', 'ICD9CM_2010'), +('24.9', 'Other dental operations', 'ICD9CM_2010'), +('24.91', 'Extension or deepening of buccolabial or lingual sulcus', 'ICD9CM_2010'), +('24.99', 'Other dental operations', 'ICD9CM_2010'), +('25', 'Operations on tongue', 'ICD9CM_2010'), +('25.0', 'Diagnostic procedures on tongue', 'ICD9CM_2010'), +('25.01', 'Closed (needle) biopsy of tongue', 'ICD9CM_2010'), +('25.02', 'Open biopsy of tongue', 'ICD9CM_2010'), +('25.09', 'Other diagnostic procedures on tongue', 'ICD9CM_2010'), +('25.1', 'Excision or destruction of lesion or tissue of tongue', 'ICD9CM_2010'), +('25.2', 'Partial glossectomy', 'ICD9CM_2010'), +('25.3', 'Complete glossectomy', 'ICD9CM_2010'), +('25.4', 'Radical glossectomy', 'ICD9CM_2010'), +('25.5', 'Repair of tongue and glossoplasty', 'ICD9CM_2010'), +('25.51', 'Suture of laceration of tongue', 'ICD9CM_2010'), +('25.59', 'Other repair and plastic operations on tongue', 'ICD9CM_2010'), +('25.9', 'Other operations on tongue', 'ICD9CM_2010'), +('25.91', 'Lingual frenotomy', 'ICD9CM_2010'), +('25.92', 'Lingual frenectomy', 'ICD9CM_2010'), +('25.93', 'Lysis of adhesions of tongue', 'ICD9CM_2010'), +('25.94', 'Other glossotomy', 'ICD9CM_2010'), +('25.99', 'Other operations on tongue', 'ICD9CM_2010'), +('26', 'Operations on salivary glands and ducts', 'ICD9CM_2010'), +('26.0', 'Incision of salivary gland or duct', 'ICD9CM_2010'), +('26.1', 'Diagnostic procedures on salivary glands and ducts', 'ICD9CM_2010'), +('26.11', 'Closed (needle) biopsy of salivary gland or duct', 'ICD9CM_2010'), +('26.12', 'Open biopsy of salivary gland or duct', 'ICD9CM_2010'), +('26.19', 'Other diagnostic procedures on salivary glands and ducts', 'ICD9CM_2010'), +('26.2', 'Excision of lesion of salivary gland', 'ICD9CM_2010'), +('26.21', 'Marsupialization of salivary gland cyst', 'ICD9CM_2010'), +('26.29', 'Other excision of salivary gland lesion', 'ICD9CM_2010'), +('26.3', 'Sialoadenectomy', 'ICD9CM_2010'), +('26.30', 'Sialoadenectomy, not otherwise specified', 'ICD9CM_2010'), +('26.31', 'Partial sialoadenectomy', 'ICD9CM_2010'), +('26.32', 'Complete sialoadenectomy', 'ICD9CM_2010'), +('26.4', 'Repair of salivary gland or duct', 'ICD9CM_2010'), +('26.41', 'Suture of laceration of salivary gland', 'ICD9CM_2010'), +('26.42', 'Closure of salivary fistula', 'ICD9CM_2010'), +('26.49', 'Other repair and plastic operations on salivary gland or duct', 'ICD9CM_2010'), +('26.9', 'Other operations on salivary gland or duct', 'ICD9CM_2010'), +('26.91', 'Probing of salivary duct', 'ICD9CM_2010'), +('26.99', 'Other operations on salivary gland or duct', 'ICD9CM_2010'), +('27', 'Other operations on mouth and face', 'ICD9CM_2010'), +('27.0', 'Drainage of face and floor of mouth', 'ICD9CM_2010'), +('27.1', 'Incision of palate', 'ICD9CM_2010'), +('27.2', 'Diagnostic procedures on oral cavity', 'ICD9CM_2010'), +('27.21', 'Biopsy of bony palate', 'ICD9CM_2010'), +('27.22', 'Biopsy of uvula and soft palate', 'ICD9CM_2010'), +('27.23', 'Biopsy of lip', 'ICD9CM_2010'), +('27.24', 'Biopsy of mouth, unspecified structure', 'ICD9CM_2010'), +('27.29', 'Other diagnostic procedures on oral cavity', 'ICD9CM_2010'), +('27.3', 'Excision of lesion or tissue of bony palate', 'ICD9CM_2010'), +('27.31', 'Local excision or destruction of lesion or tissue of bony palate', 'ICD9CM_2010'), +('27.32', 'Wide excision or destruction of lesion or tissue of bony palate', 'ICD9CM_2010'), +('27.4', 'Excision of other parts of mouth', 'ICD9CM_2010'), +('27.41', 'Labial frenectomy', 'ICD9CM_2010'), +('27.42', 'Wide excision of lesion of lip', 'ICD9CM_2010'), +('27.43', 'Other excision of lesion or tissue of lip', 'ICD9CM_2010'), +('27.49', 'Other excision of mouth', 'ICD9CM_2010'), +('27.5', 'Plastic repair of mouth', 'ICD9CM_2010'), +('27.51', 'Suture of laceration of lip', 'ICD9CM_2010'), +('27.52', 'Suture of laceration of other part of mouth', 'ICD9CM_2010'), +('27.53', 'Closure of fistula of mouth', 'ICD9CM_2010'), +('27.54', 'Repair of cleft lip', 'ICD9CM_2010'), +('27.55', 'Full-thickness skin graft to lip and mouth', 'ICD9CM_2010'), +('27.56', 'Other skin graft to lip and mouth', 'ICD9CM_2010'), +('27.57', 'Attachment of pedicle or flap graft to lip and mouth', 'ICD9CM_2010'), +('27.59', 'Other plastic repair of mouth', 'ICD9CM_2010'), +('27.6', 'Palatoplasty', 'ICD9CM_2010'), +('27.61', 'Suture of laceration of palate', 'ICD9CM_2010'), +('27.62', 'Correction of cleft palate', 'ICD9CM_2010'), +('27.63', 'Revision of cleft palate repair', 'ICD9CM_2010'), +('27.64', 'Insertion of palatal implant', 'ICD9CM_2010'), +('27.69', 'Other plastic repair of palate', 'ICD9CM_2010'), +('27.7', 'Operations on uvula', 'ICD9CM_2010'), +('27.71', 'Incision of uvula', 'ICD9CM_2010'), +('27.72', 'Excision of uvula', 'ICD9CM_2010'), +('27.73', 'Repair of uvula', 'ICD9CM_2010'), +('27.79', 'Other operations on uvula', 'ICD9CM_2010'), +('27.9', 'Other operations on mouth and face', 'ICD9CM_2010'), +('27.91', 'Labial frenotomy', 'ICD9CM_2010'), +('27.92', 'Incision of mouth, unspecified structure', 'ICD9CM_2010'), +('27.99', 'Other operations on oral cavity', 'ICD9CM_2010'), +('28', 'Operations on tonsils and adenoids', 'ICD9CM_2010'), +('28.0', 'Incision and drainage of tonsil and peritonsillar structures', 'ICD9CM_2010'), +('28.1', 'Diagnostic procedures on tonsils and adenoids', 'ICD9CM_2010'), +('28.11', 'Biopsy of tonsils and adenoids', 'ICD9CM_2010'), +('28.19', 'Other diagnostic procedures on tonsils and adenoids', 'ICD9CM_2010'), +('28.2', 'Tonsillectomy without adenoidectomy', 'ICD9CM_2010'), +('28.3', 'Tonsillectomy with adenoidectomy', 'ICD9CM_2010'), +('28.4', 'Excision of tonsil tag', 'ICD9CM_2010'), +('28.5', 'Excision of lingual tonsil', 'ICD9CM_2010'), +('28.6', 'Adenoidectomy without tonsillectomy', 'ICD9CM_2010'), +('28.7', 'Control of hemorrhage after tonsillectomy and adenoidectomy', 'ICD9CM_2010'), +('28.9', 'Other operations on tonsils and adenoids', 'ICD9CM_2010'), +('28.91', 'Removal of foreign body from tonsil and adenoid by incision', 'ICD9CM_2010'), +('28.92', 'Excision of lesion of tonsil and adenoid', 'ICD9CM_2010'), +('28.99', 'Other operations on tonsils and adenoids', 'ICD9CM_2010'), +('29', 'Operations on pharynx', 'ICD9CM_2010'), +('29.0', 'Pharyngotomy', 'ICD9CM_2010'), +('29.1', 'Diagnostic procedures on pharynx', 'ICD9CM_2010'), +('29.11', 'Pharyngoscopy', 'ICD9CM_2010'), +('29.12', 'Pharyngeal biopsy', 'ICD9CM_2010'), +('29.19', 'Other diagnostic procedures on pharynx', 'ICD9CM_2010'), +('29.2', 'Excision of branchial cleft cyst or vestige', 'ICD9CM_2010'), +('29.3', 'Excision or destruction of lesion or tissue of pharynx', 'ICD9CM_2010'), +('29.31', 'Cricopharyngeal myotomy', 'ICD9CM_2010'), +('29.32', 'Pharyngeal diverticulectomy', 'ICD9CM_2010'), +('29.33', 'Pharyngectomy (partial)', 'ICD9CM_2010'), +('29.39', 'Other excision or destruction of lesion or tissue of pharynx', 'ICD9CM_2010'), +('29.4', 'Plastic operation on pharynx', 'ICD9CM_2010'), +('29.5', 'Other repair of pharynx', 'ICD9CM_2010'), +('29.51', 'Suture of laceration of pharynx', 'ICD9CM_2010'), +('29.52', 'Closure of branchial cleft fistula', 'ICD9CM_2010'), +('29.53', 'Closure of other fistula of pharynx', 'ICD9CM_2010'), +('29.54', 'Lysis of pharyngeal adhesions', 'ICD9CM_2010'), +('29.59', 'Other repair of pharynx', 'ICD9CM_2010'), +('29.9', 'Other operations on pharynx', 'ICD9CM_2010'), +('29.91', 'Dilation of pharynx', 'ICD9CM_2010'), +('29.92', 'Division of glossopharyngeal nerve', 'ICD9CM_2010'), +('29.99', 'Other operations on pharynx', 'ICD9CM_2010'), +('30', 'Excision of larynx', 'ICD9CM_2010'), +('30.0', 'Excision or destruction of lesion or tissue of larynx', 'ICD9CM_2010'), +('30.01', 'Marsupialization of laryngeal cyst', 'ICD9CM_2010'), +('30.09', 'Other excision or destruction of lesion or tissue of larynx', 'ICD9CM_2010'), +('30.1', 'Hemilaryngectomy', 'ICD9CM_2010'), +('30.2', 'Other partial laryngectomy', 'ICD9CM_2010'), +('30.21', 'Epiglottidectomy', 'ICD9CM_2010'), +('30.22', 'Vocal cordectomy', 'ICD9CM_2010'), +('30.29', 'Other partial laryngectomy', 'ICD9CM_2010'), +('30.3', 'Complete laryngectomy', 'ICD9CM_2010'), +('30.4', 'Radical laryngectomy', 'ICD9CM_2010'), +('31', 'Other operations on larynx and trachea', 'ICD9CM_2010'), +('31.0', 'Injection of larynx', 'ICD9CM_2010'), +('31.1', 'Temporary tracheostomy', 'ICD9CM_2010'), +('31.2', 'Permanent tracheostomy', 'ICD9CM_2010'), +('31.21', 'Mediastinal tracheostomy', 'ICD9CM_2010'), +('31.29', 'Other permanent tracheostomy', 'ICD9CM_2010'), +('31.3', 'Other incision of larynx or trachea', 'ICD9CM_2010'), +('31.4', 'Diagnostic procedures on larynx and trachea', 'ICD9CM_2010'), +('31.41', 'Tracheoscopy through artificial stoma', 'ICD9CM_2010'), +('31.42', 'Laryngoscopy and other tracheoscopy', 'ICD9CM_2010'), +('31.43', 'Closed (endoscopic) biopsy of larynx', 'ICD9CM_2010'), +('31.44', 'Closed (endoscopic) biopsy of trachea', 'ICD9CM_2010'), +('31.45', 'Open biopsy of larynx or trachea', 'ICD9CM_2010'), +('31.48', 'Other diagnostic procedures on larynx', 'ICD9CM_2010'), +('31.49', 'Other diagnostic procedures on trachea', 'ICD9CM_2010'), +('31.5', 'Local excision or destruction of lesion or tissue of trachea', 'ICD9CM_2010'), +('31.6', 'Repair of larynx', 'ICD9CM_2010'), +('31.61', 'Suture of laceration of larynx', 'ICD9CM_2010'), +('31.62', 'Closure of fistula of larynx', 'ICD9CM_2010'), +('31.63', 'Revision of laryngostomy', 'ICD9CM_2010'), +('31.64', 'Repair of laryngeal fracture', 'ICD9CM_2010'), +('31.69', 'Other repair of larynx', 'ICD9CM_2010'), +('31.7', 'Repair and plastic operations on trachea', 'ICD9CM_2010'), +('31.71', 'Suture of laceration of trachea', 'ICD9CM_2010'), +('31.72', 'Closure of external fistula of trachea', 'ICD9CM_2010'), +('31.73', 'Closure of other fistula of trachea', 'ICD9CM_2010'), +('31.74', 'Revision of tracheostomy', 'ICD9CM_2010'), +('31.75', 'Reconstruction of trachea and construction of artificial larynx', 'ICD9CM_2010'), +('31.79', 'Other repair and plastic operations on trachea', 'ICD9CM_2010'), +('31.9', 'Other operations on larynx and trachea', 'ICD9CM_2010'), +('31.91', 'Division of laryngeal nerve', 'ICD9CM_2010'), +('31.92', 'Lysis of adhesions of trachea or larynx', 'ICD9CM_2010'), +('31.93', 'Replacement of laryngeal or tracheal stent', 'ICD9CM_2010'), +('31.94', 'Injection of locally acting therapeutic substance into trachea', 'ICD9CM_2010'), +('31.95', 'Tracheoesophageal fistulization', 'ICD9CM_2010'), +('31.98', 'Other operations on larynx', 'ICD9CM_2010'), +('31.99', 'Other operations on trachea', 'ICD9CM_2010'), +('32', 'Excision of lung and bronchus', 'ICD9CM_2010'), +('32.0', 'Local excision or destruction of lesion or tissue of bronchus', 'ICD9CM_2010'), +('32.01', 'Endoscopic excision or destruction of lesion or tissue of bronchus', 'ICD9CM_2010'), +('32.09', 'Other local excision or destruction of lesion or tissue of bronchus', 'ICD9CM_2010'), +('32.1', 'Other excision of bronchus', 'ICD9CM_2010'), +('32.2', 'Local excision or destruction of lesion or tissue of lung', 'ICD9CM_2010'), +('32.20', 'Thoracoscopic excision of lesion or tissue of lung', 'ICD9CM_2010'), +('32.21', 'Plication of emphysematous bleb', 'ICD9CM_2010'), +('32.22', 'Lung volume reduction surgery', 'ICD9CM_2010'), +('32.23', 'Open ablation of lung lesion or tissue', 'ICD9CM_2010'), +('32.24', 'Percutaneous ablation of lung lesion or tissue', 'ICD9CM_2010'), +('32.25', 'Thoracoscopic ablation of lung lesion or tissue', 'ICD9CM_2010'), +('32.26', 'Other and unspecified ablation of lung lesion or tissue', 'ICD9CM_2010'), +('32.27', 'Bronchoscopic bronchial thermoplasty, ablation of airway smooth muscle', 'ICD9CM_2010'), +('32.28', 'Endoscopic excision or destruction of lesion or tissue of lung', 'ICD9CM_2010'), +('32.29', 'Other local excision or destruction of lesion or tissue of lung', 'ICD9CM_2010'), +('32.3', 'Segmental resection of lung', 'ICD9CM_2010'), +('32.30', 'Thoracoscopic segmental resection of lung', 'ICD9CM_2010'), +('32.39', 'Other and unspecified segmental resection of lung', 'ICD9CM_2010'), +('32.4', 'Lobectomy of lung', 'ICD9CM_2010'), +('32.41', 'Thoracoscopic lobectomy of lung', 'ICD9CM_2010'), +('32.49', 'Other lobectomy of lung', 'ICD9CM_2010'), +('32.5', 'Pneumonectomy', 'ICD9CM_2010'), +('32.50', 'Thoracoscopic pneumonectomy', 'ICD9CM_2010'), +('32.59', 'Other and unspecified pneumonectomy', 'ICD9CM_2010'), +('32.6', 'Radical dissection of thoracic structures', 'ICD9CM_2010'), +('32.9', 'Other excision of lung', 'ICD9CM_2010'), +('33', 'Other operations on lung and bronchus', 'ICD9CM_2010'), +('33.0', 'Incision of bronchus', 'ICD9CM_2010'), +('33.1', 'Incision of lung', 'ICD9CM_2010'), +('33.2', 'Diagnostic procedures on lung and bronchus', 'ICD9CM_2010'), +('33.20', 'Thoracoscopic lung biopsy', 'ICD9CM_2010'), +('33.21', 'Bronchoscopy through artificial stoma', 'ICD9CM_2010'), +('33.22', 'Fiber-optic bronchoscopy', 'ICD9CM_2010'), +('33.23', 'Other bronchoscopy', 'ICD9CM_2010'), +('33.24', 'Closed (endoscopic) biopsy of bronchus', 'ICD9CM_2010'), +('33.25', 'Open biopsy of bronchus', 'ICD9CM_2010'), +('33.26', 'Closed (percutaneous)(needle) biopsy of lung', 'ICD9CM_2010'), +('33.27', 'Endoscopic biopsy of lung (closed)', 'ICD9CM_2010'), +('33.28', 'Open biopsy of lung', 'ICD9CM_2010'), +('33.29', 'Other diagnostic procedures on lung or bronchus', 'ICD9CM_2010'), +('33.3', 'Surgical collapse of lung', 'ICD9CM_2010'), +('33.31', 'Destruction of phrenic nerve for collapse of lung', 'ICD9CM_2010'), +('33.32', 'Artificial pneumothorax for collapse of lung', 'ICD9CM_2010'), +('33.33', 'Pneumoperitoneum for collapse of lung', 'ICD9CM_2010'), +('33.34', 'Thoracoplasty', 'ICD9CM_2010'), +('33.39', 'Other surgical collapse of lung', 'ICD9CM_2010'), +('33.4', 'Repair and plastic operation on lung and bronchus', 'ICD9CM_2010'), +('33.41', 'Suture of laceration of bronchus', 'ICD9CM_2010'), +('33.42', 'Closure of bronchial fistula', 'ICD9CM_2010'), +('33.43', 'Closure of laceration of lung', 'ICD9CM_2010'), +('33.48', 'Other repair and plastic operations on bronchus', 'ICD9CM_2010'), +('33.49', 'Other repair and plastic operations on lung', 'ICD9CM_2010'), +('33.5', 'Lung transplant', 'ICD9CM_2010'), +('33.50', 'Lung Transplantation, not otherwise specified', 'ICD9CM_2010'), +('33.51', 'Uniteral lung transplantation', 'ICD9CM_2010'), +('33.52', 'Bilateral lung transplantation', 'ICD9CM_2010'), +('33.6', 'Combined heart-lung transplantation', 'ICD9CM_2010'), +('33.7', 'Other Endoscopic procedures in bronchus or lung', 'ICD9CM_2010'), +('33.71', 'Endoscopic insertion or replacement of bronchial valve(s)', 'ICD9CM_2010'), +('33.72', 'Endoscopic pulmonary airway flow measurement', 'ICD9CM_2010'), +('33.73', 'Endoscopic insertion or replacement of bronchial valve(s), multiple lobes', 'ICD9CM_2010'), +('33.78', 'Endoscopic removal of bronchial device(s) or substances', 'ICD9CM_2010'), +('33.79', 'Endoscopic insertion of other bronchial device or substances', 'ICD9CM_2010'), +('33.9', 'Other operations on lung and bronchus', 'ICD9CM_2010'), +('33.91', 'Bronchial dilation', 'ICD9CM_2010'), +('33.92', 'Ligation of bronchus', 'ICD9CM_2010'), +('33.93', 'Puncture of lung', 'ICD9CM_2010'), +('33.98', 'Other operations on bronchus', 'ICD9CM_2010'), +('33.99', 'Other operations on lung', 'ICD9CM_2010'), +('34', 'Operations on chest wall, pleura, mediastinum, and diaphragm', 'ICD9CM_2010'), +('34.0', 'Incision of chest wall and pleura', 'ICD9CM_2010'), +('34.01', 'Incision of chest wall', 'ICD9CM_2010'), +('34.02', 'Exploratory thoracotomy', 'ICD9CM_2010'), +('34.03', 'Reopening of recent thoracotomy site', 'ICD9CM_2010'), +('34.04', 'Insertion of intercostal catheter for drainage', 'ICD9CM_2010'), +('34.05', 'Creation of pleuroperitoneal shunt', 'ICD9CM_2010'), +('34.06', 'Thoracoscopic drainage of pleural cavity', 'ICD9CM_2010'), +('34.09', 'Other incision of pleura', 'ICD9CM_2010'), +('34.1', 'Incision of mediastinum', 'ICD9CM_2010'), +('34.2', 'Diagnostic procedures on chest wall, pleura, mediastinum, and diaphr', 'ICD9CM_2010'), +('34.20', 'Thoracoscopic pleural biopsy', 'ICD9CM_2010'), +('34.21', 'Transpleural thoracoscopy', 'ICD9CM_2010'), +('34.22', 'Mediastinoscopy', 'ICD9CM_2010'), +('34.23', 'Biopsy of chest wall', 'ICD9CM_2010'), +('34.24', 'Other pleural biopsy', 'ICD9CM_2010'), +('34.25', 'Closed (percutaneous) (needle) biopsy of mediastinum', 'ICD9CM_2010'), +('34.26', 'Open mediastinum biopsy', 'ICD9CM_2010'), +('34.27', 'Biopsy of diaphragm', 'ICD9CM_2010'), +('34.28', 'Other diagnostic procedures on chest wall, pleura, and diaphragm', 'ICD9CM_2010'), +('34.29', 'Other diagnostic procedures on mediastinum', 'ICD9CM_2010'), +('34.3', 'Excision or destruction of lesion or tissue of mediastinum', 'ICD9CM_2010'), +('34.4', 'Excision or destruction of lesion of chest wall', 'ICD9CM_2010'), +('34.5', 'Pleurectomy', 'ICD9CM_2010'), +('34.51', 'Decortication of lung', 'ICD9CM_2010'), +('34.52', 'Thoracoscopic decortication of lung', 'ICD9CM_2010'), +('34.59', 'Other excision of pleura', 'ICD9CM_2010'), +('34.6', 'Scarification of pleura', 'ICD9CM_2010'), +('34.7', 'Repair of chest wall', 'ICD9CM_2010'), +('34.71', 'Suture of laceration of chest wall', 'ICD9CM_2010'), +('34.72', 'Closure of thoracostomy', 'ICD9CM_2010'), +('34.73', 'Closure of other fistula of thorax', 'ICD9CM_2010'), +('34.74', 'Repair of pectus deformity', 'ICD9CM_2010'), +('34.79', 'Other repair of chest wall', 'ICD9CM_2010'), +('34.8', 'Operations on diaphragm', 'ICD9CM_2010'), +('34.81', 'Excision of lesion or tissue of diaphragm', 'ICD9CM_2010'), +('34.82', 'Suture of laceration of diaphragm', 'ICD9CM_2010'), +('34.83', 'Closure of fistula of diaphragm', 'ICD9CM_2010'), +('34.84', 'Other repair of diaphragm', 'ICD9CM_2010'), +('34.85', 'Implantation of diaphragmatic pacemaker', 'ICD9CM_2010'), +('34.89', 'Other operations on diaphragm', 'ICD9CM_2010'), +('34.9', 'Other operations on thorax', 'ICD9CM_2010'), +('34.91', 'Thoracentesis', 'ICD9CM_2010'), +('34.92', 'Injection into thoracic cavity', 'ICD9CM_2010'), +('34.93', 'Repair of pleura', 'ICD9CM_2010'), +('34.99', 'Other operations on thorax', 'ICD9CM_2010'), +('35', 'Operations on valves and septa of heart', 'ICD9CM_2010'), +('35.0', 'Closed heart valvotomy', 'ICD9CM_2010'), +('35.00', 'Closed heart valvotomy, unspecified valve', 'ICD9CM_2010'), +('35.01', 'Closed heart valvotomy, aortic valve', 'ICD9CM_2010'), +('35.02', 'Closed heart valvotomy, mitral valve', 'ICD9CM_2010'), +('35.03', 'Closed heart valvotomy, pulmonary valve', 'ICD9CM_2010'), +('35.04', 'Closed heart valvotomy, tricuspid valve', 'ICD9CM_2010'), +('35.1', 'Open heart valvuloplasty without replacement', 'ICD9CM_2010'), +('35.10', 'Open heart valvuloplasty without replacement, unspecified valve', 'ICD9CM_2010'), +('35.11', 'Open heart valvuloplasty of aortic valve without replacement', 'ICD9CM_2010'), +('35.12', 'Open heart valvuloplasty of mitral valve without replacement', 'ICD9CM_2010'), +('35.13', 'Open heart valvuloplasty of pulmonary valve without replacement', 'ICD9CM_2010'), +('35.14', 'Open heart valvuloplasty of tricuspid valve without replacement', 'ICD9CM_2010'), +('35.2', 'Replacement of heart valve', 'ICD9CM_2010'), +('35.20', 'Replacement of unspecified heart valve', 'ICD9CM_2010'), +('35.21', 'Replacement of aortic valve with tissue graft', 'ICD9CM_2010'), +('35.22', 'Other replacement of aortic valve', 'ICD9CM_2010'), +('35.23', 'Replacement of mitral valve with tissue graft', 'ICD9CM_2010'), +('35.24', 'Other replacement of mitral valve', 'ICD9CM_2010'), +('35.25', 'Replacement of pulmonary valve with tissue graft', 'ICD9CM_2010'), +('35.26', 'Other replacement of pulmonary valve', 'ICD9CM_2010'), +('35.27', 'Replacement of tricuspid valve with tissue graft', 'ICD9CM_2010'), +('35.28', 'Other replacement of tricuspid valve', 'ICD9CM_2010'), +('35.3', 'Operations on structures adjacent to heart valves', 'ICD9CM_2010'), +('35.31', 'Operations on papillary muscle', 'ICD9CM_2010'), +('35.32', 'Operations on chordae tendineae', 'ICD9CM_2010'), +('35.33', 'Annuloplasty', 'ICD9CM_2010'), +('35.34', 'Infundibulectomy', 'ICD9CM_2010'), +('35.35', 'Operations on trabeculae carneae cordis', 'ICD9CM_2010'), +('35.39', 'Operations on other structures adjacent to valves of heart', 'ICD9CM_2010'), +('35.4', 'Production of septal defect in heart', 'ICD9CM_2010'), +('35.41', 'Enlargement of existing atrial septal defect', 'ICD9CM_2010'), +('35.42', 'Creation of septal defect in heart', 'ICD9CM_2010'), +('35.5', 'Repair of atrial and ventricular septa with prosthesis', 'ICD9CM_2010'), +('35.50', 'Repair of unspecified septal defect of heart with prosthesis', 'ICD9CM_2010'), +('35.51', 'Repair of atrial septal defect with prosthesis, open technique', 'ICD9CM_2010'), +('35.52', 'Repair of atrial septal defect with prosthesis, closed technique', 'ICD9CM_2010'), +('35.53', 'Repair of ventricular septal defect with prosthesis, open technique', 'ICD9CM_2010'), +('35.54', 'Repair of endocardial cushion defect with prosthesis', 'ICD9CM_2010'), +('35.55', 'Repair of ventricular septal defect with prosthesis, closed technique', 'ICD9CM_2010'), +('35.6', 'Repair of atrial and ventricular septa with tissue graft', 'ICD9CM_2010'), +('35.60', 'Repair of unspecified septal defect of heart with tissue graft', 'ICD9CM_2010'), +('35.61', 'Repair of atrial septal defect with tissue graft', 'ICD9CM_2010'), +('35.62', 'Repair of ventricular septal defect with tissue graft', 'ICD9CM_2010'), +('35.63', 'Repair of endocardial cushion defect with tissue graft', 'ICD9CM_2010'), +('35.7', 'Other and unspecified repair of atrial and ventricular septa', 'ICD9CM_2010'), +('35.70', 'Other and unspecified repair of unspecified septal defect of heart', 'ICD9CM_2010'), +('35.71', 'Other and unspecified repair of atrial septal defect', 'ICD9CM_2010'), +('35.72', 'Other and unspecified repair of ventricular septal defect', 'ICD9CM_2010'), +('35.73', 'Other and unspecified repair of endocardial cushion defect', 'ICD9CM_2010'), +('35.8', 'Total repair of certain congenital cardiac anomalies', 'ICD9CM_2010'), +('35.81', 'Total repair of tetralogy of fallot', 'ICD9CM_2010'), +('35.82', 'Total repair of total anomalous pulmonary venous connection', 'ICD9CM_2010'), +('35.83', 'Total repair of truncus arteriosus', 'ICD9CM_2010'), +('35.84', 'Total correction of transposition of great vessels, not elsewhere classified', 'ICD9CM_2010'), +('35.9', 'Other operations on valves and septa of heart', 'ICD9CM_2010'), +('35.91', 'Interatrial transposition of venous return', 'ICD9CM_2010'), +('35.92', 'Creation of conduit between right ventricle and pulmonary artery', 'ICD9CM_2010'), +('35.93', 'Creation of conduit between left ventricle and aorta', 'ICD9CM_2010'), +('35.94', 'Creation of conduit between atrium and pulmonary artery', 'ICD9CM_2010'), +('35.95', 'Revision of corrective procedure on heart', 'ICD9CM_2010'), +('35.96', 'Percutaneous valvuloplasty', 'ICD9CM_2010'), +('35.97', 'Percutaneous mitral valve repair with implant', 'ICD9CM_2010'), +('35.98', 'Other operations on septa of heart', 'ICD9CM_2010'), +('35.99', 'Other operations on valves of heart', 'ICD9CM_2010'), +('36', 'Operations on vessels of heart', 'ICD9CM_2010'), +('36.0', 'Removal of coronary artery obstruction and insertion of stent(s)', 'ICD9CM_2010'), +('36.03', 'Open chest coronary artery angioplasty', 'ICD9CM_2010'), +('36.04', 'Intracoronary artery thrombolytic infusion', 'ICD9CM_2010'), +('36.06', 'Insertion of non-drug -eluting coronary artery stent(s)', 'ICD9CM_2010'), +('36.07', 'Insertion of drug-eluting coronary artery stent(s)', 'ICD9CM_2010'), +('36.09', 'Other specified removal of coronary artery obstruction', 'ICD9CM_2010'), +('36.1', 'Bypass anastomosis for heart revascularization', 'ICD9CM_2010'), +('36.10', 'Aortocoronary bypass for heart revascularization, not otherwise specified', 'ICD9CM_2010'), +('36.11', 'Aortocoronary bypass of one coronary artery', 'ICD9CM_2010'), +('36.12', 'Aortocoronary bypass of two coronary arteries', 'ICD9CM_2010'), +('36.13', 'Aortocoronary bypass of three coronary arteries', 'ICD9CM_2010'), +('36.14', 'Aortocoronary bypass of four or more coronary arteries', 'ICD9CM_2010'), +('36.15', 'Single internal mammary-coronary artery bypass', 'ICD9CM_2010'), +('36.16', 'Double internal mammary-coronary artery bypass', 'ICD9CM_2010'), +('36.17', 'Abdominal-coronary artery bypass', 'ICD9CM_2010'), +('36.19', 'Other bypass anastomosis for heart revascularization', 'ICD9CM_2010'), +('36.2', 'Heart revascularization by arterial implant', 'ICD9CM_2010'), +('36.3', 'Other heart revascularization', 'ICD9CM_2010'), +('36.31', 'Open chest transmyocardial revascularization', 'ICD9CM_2010'), +('36.32', 'Other transmyocardial revascularization', 'ICD9CM_2010'), +('36.33', 'Endoscopic transmyocardial revascularization', 'ICD9CM_2010'), +('36.34', 'Percutaneous transmyocardial revascularization', 'ICD9CM_2010'), +('36.39', 'Other heart revascularization', 'ICD9CM_2010'), +('36.9', 'Other operations on vessels of heart', 'ICD9CM_2010'), +('36.91', 'Repair of aneurysm of coronary vessel', 'ICD9CM_2010'), +('36.99', 'Other operations on vessels of heart', 'ICD9CM_2010'), +('37', 'Other operations on heart and pericardium', 'ICD9CM_2010'), +('37.0', 'Pericardiocentesis', 'ICD9CM_2010'), +('37.1', 'Cardiotomy and pericardiotomy', 'ICD9CM_2010'), +('37.10', 'Incision of heart, not otherwise specified', 'ICD9CM_2010'), +('37.11', 'Cardiotomy', 'ICD9CM_2010'), +('37.12', 'Pericardiotomy', 'ICD9CM_2010'), +('37.2', 'Diagnostic procedures on heart and pericardium', 'ICD9CM_2010'), +('37.20', 'Noninvasive programmed electrical stimulation (NIPS)', 'ICD9CM_2010'), +('37.21', 'Right heart cardiac catheterization', 'ICD9CM_2010'), +('37.22', 'Left heart cardiac catheterization', 'ICD9CM_2010'), +('37.23', 'Combined right and left heart cardiac catheterization', 'ICD9CM_2010'), +('37.24', 'Biopsy of pericardium', 'ICD9CM_2010'), +('37.25', 'Biopsy of heart', 'ICD9CM_2010'), +('37.26', 'Catheter based invasive electrophysiologic testing', 'ICD9CM_2010'), +('37.27', 'Cardiac mapping', 'ICD9CM_2010'), +('37.28', 'Intracardial echocardiography', 'ICD9CM_2010'), +('37.29', 'Other diagnostic procedures on heart and pericardium', 'ICD9CM_2010'), +('37.3', 'Pericardiectomy and excision of lesion of heart', 'ICD9CM_2010'), +('37.31', 'Pericardiectomy', 'ICD9CM_2010'), +('37.32', 'Excision of aneurysm of heart', 'ICD9CM_2010'), +('37.33', 'Excision or destruction of other lesion or tissue of heart, open approach', 'ICD9CM_2010'), +('37.34', 'Excision or destruction of lesion or tissue of heart, other approach', 'ICD9CM_2010'), +('37.35', 'Partial ventriculectomy', 'ICD9CM_2010'), +('37.36', 'Excision or destruction of left atrial appendage (LAA)', 'ICD9CM_2010'), +('37.37', 'Excision or destruction of other lesion or tissue of heart, thoracoscopic approach', 'ICD9CM_2010'), +('37.4', 'Repair of heart and pericardium', 'ICD9CM_2010'), +('37.41', 'Implantation of prosthetic cardiac support device around the heart', 'ICD9CM_2010'), +('37.49', 'Other repair of heart and pericardium', 'ICD9CM_2010'), +('37.5', 'Heart transplantation procedure', 'ICD9CM_2010'), +('37.51', 'Heart transplantation', 'ICD9CM_2010'), +('37.52', 'Implantation of total internal biventricular heart replacement heart system', 'ICD9CM_2010'), +('37.53', 'Replacement or repair of thoracic unit of (total) replacement heart system', 'ICD9CM_2010'), +('37.54', 'Replacement or repair of other implantable component of (total) replacement heart system', 'ICD9CM_2010'), +('37.55', 'Removal of internal biventricular heart replacement system', 'ICD9CM_2010'), +('37.6', 'Implantation of heart circulatory assist system(s)', 'ICD9CM_2010'), +('37.60', 'Implantation or insertion of biventricular external heart assist system', 'ICD9CM_2010'), +('37.61', 'Implant of pulsation balloon', 'ICD9CM_2010'), +('37.62', 'Insertion of temporary non-implantable extracorporeal heart circulatory assist system device', 'ICD9CM_2010'), +('37.63', 'Repair of heart assist system', 'ICD9CM_2010'), +('37.64', 'Removal of external heart assist system(s) or device (s)', 'ICD9CM_2010'), +('37.65', 'Implant of single ventricular (extracorporeal) external heart assist system', 'ICD9CM_2010'), +('37.66', 'Insertion of implantable heart assist system', 'ICD9CM_2010'), +('37.67', 'Implantation of cardiomyostimulation system', 'ICD9CM_2010'), +('37.68', 'Insertion of pertaneous external heart assist device', 'ICD9CM_2010'), +('37.7', 'Insertion, revision, replacement, and removal of pacemaker leads: insertion of temporary pacemaker system; or revision of cardiac device pocket', 'ICD9CM_2010'), +('37.70', 'Initial insertion of lead (electrode), not otherwise specified', 'ICD9CM_2010'), +('37.71', 'Initial insertion of transvenous lead (electrode) into ventricle', 'ICD9CM_2010'), +('37.72', 'Initial insertion of transvenous lead (electrodes) into atrium and ventricle', 'ICD9CM_2010'), +('37.73', 'Initial insertion of transvenous lead (electrode) into atrium', 'ICD9CM_2010'), +('37.74', 'Insertion or replacement of epicardial lead (electrode) into epicardium', 'ICD9CM_2010'), +('37.75', 'Revision of lead (electrode)', 'ICD9CM_2010'), +('37.76', 'Replacement of transvenous atrial and/or ventricular lead(s) (electrode)', 'ICD9CM_2010'), +('37.77', 'Removal of lead(s) (electrodes) without replacement', 'ICD9CM_2010'), +('37.78', 'Insertion of temporary transvenous pacemaker system', 'ICD9CM_2010'), +('37.79', 'Revision or relocation of pacemaker pocket', 'ICD9CM_2010'), +('37.8', 'Insertion, replacement, removal and revision of pacemaker device', 'ICD9CM_2010'), +('37.80', 'Insertion of permanent pacemaker, initial or replacement, type of device not specified', 'ICD9CM_2010'), +('37.81', 'Initial insertion of single-chamber device, not specified as rate-responsive', 'ICD9CM_2010'), +('37.82', 'Initial insertion of single-chamber device, rate-responsive', 'ICD9CM_2010'), +('37.83', 'Initial insertion of dual-chamber device', 'ICD9CM_2010'), +('37.85', 'Replacement of any type of pacemaker device with single-chamber device, not specified as rate responsive', 'ICD9CM_2010'), +('37.86', 'Replacement of any type of pacemaker device with single-chamber devive, rate responsive', 'ICD9CM_2010'), +('37.87', 'Replacement of any type of pacemaker device with dual-chamber device', 'ICD9CM_2010'), +('37.89', 'Revision or removal of pacemaker device', 'ICD9CM_2010'), +('37.9', 'Other operations on heart and pericardium', 'ICD9CM_2010'), +('37.90', 'Insertion of left atrial appendage device', 'ICD9CM_2010'), +('37.91', 'Open chest cardiac massage', 'ICD9CM_2010'), +('37.92', 'Injection of therapeutic substance into heart', 'ICD9CM_2010'), +('37.93', 'Injection of therapeutic substance into pericardium', 'ICD9CM_2010'), +('37.94', 'Implantation or replacement of automatic cardioverter/ defibrillator, total system (AICD)', 'ICD9CM_2010'), +('37.95', 'Implantation of automatic cardioverter/defibrillator leads(s) only', 'ICD9CM_2010'), +('37.96', 'Implantation of automatic cardioverter/defibrillator pulse generator only', 'ICD9CM_2010'), +('37.97', 'Replacement of automatic cardioverter/defibrillator leads(s) only', 'ICD9CM_2010'), +('37.98', 'Replacement of automatic cardioverter/defibrillator pulse generator only', 'ICD9CM_2010'), +('37.99', 'Other operations on heart and pericardium', 'ICD9CM_2010'), +('38', 'Incision, excision, and occlusion of vessels', 'ICD9CM_2010'), +('38.0', 'Incision of vessel', 'ICD9CM_2010'), +('38.00', 'Incision of vessel, unspecified site', 'ICD9CM_2010'), +('38.01', 'Incision of intracranial vessels', 'ICD9CM_2010'), +('38.02', 'Incision of other vessels of head and neck', 'ICD9CM_2010'), +('38.03', 'Incision of upper limb vessels', 'ICD9CM_2010'), +('38.04', 'Incision of aorta', 'ICD9CM_2010'), +('38.05', 'Incision of other thoracic vessels', 'ICD9CM_2010'), +('38.06', 'Incision of abdominal arteries', 'ICD9CM_2010'), +('38.07', 'Incision of abdominal veins', 'ICD9CM_2010'), +('38.08', 'Incision of lower limb arteries', 'ICD9CM_2010'), +('38.09', 'Incision of lower limb veins', 'ICD9CM_2010'), +('38.1', 'Endarterectomy', 'ICD9CM_2010'), +('38.10', 'Endarterectomy, unspecified site', 'ICD9CM_2010'), +('38.11', 'Endarterectomy of intracranial vessels', 'ICD9CM_2010'), +('38.12', 'Endarterectomy of other vessels of head and neck', 'ICD9CM_2010'), +('38.13', 'Endarterectomy of upper limb vessels', 'ICD9CM_2010'), +('38.14', 'Endarterectomy of aorta', 'ICD9CM_2010'), +('38.15', 'Endarterectomy of other thoracic vessels', 'ICD9CM_2010'), +('38.16', 'Endarterectomy of abdominal arteries', 'ICD9CM_2010'), +('38.18', 'Endarterectomy of lower limb arteries', 'ICD9CM_2010'), +('38.2', 'Diagnostic procedures on blood vessels', 'ICD9CM_2010'), +('38.21', 'Biopsy of blood vessel', 'ICD9CM_2010'), +('38.22', 'Percutaneous angioscopy', 'ICD9CM_2010'), +('38.23', 'Intravascular spectroscopy', 'ICD9CM_2010'), +('38.24', 'Intravascular imaging of coronary vessel(s) by optical coherence tomography [OCT]', 'ICD9CM_2010'), +('38.25', 'Intravascular imaging of non-coronary vessel(s) by optical coherence tomography [OCT]', 'ICD9CM_2010'), +('38.29', 'Other diagnostic procedures on blood vessels', 'ICD9CM_2010'), +('38.3', 'Resection of vessel with anastomosis', 'ICD9CM_2010'), +('38.30', 'Resection of vessel with anastomosis, unspecified site', 'ICD9CM_2010'), +('38.31', 'Resection of intracranial vessels with anastomosis', 'ICD9CM_2010'), +('38.32', 'Resection of other vessels of head and neck with anastomosis', 'ICD9CM_2010'), +('38.33', 'Resection of upper limb vessels with anastomosis', 'ICD9CM_2010'), +('38.34', 'Resection of aorta with anastomosis', 'ICD9CM_2010'), +('38.35', 'Resection of other thoracic vessels with anastomosis', 'ICD9CM_2010'), +('38.36', 'Resection of abdominal arteries with anastomosis', 'ICD9CM_2010'), +('38.37', 'Resection of abdominal veins with anastomosis', 'ICD9CM_2010'), +('38.38', 'Resection of lower limb arteries with anastomosis', 'ICD9CM_2010'), +('38.39', 'Resection of lower limb veins with anastomosis', 'ICD9CM_2010'), +('38.4', 'Resection of vessel with replacement', 'ICD9CM_2010'), +('38.40', 'Resection of vessel with replacement, unspecified site', 'ICD9CM_2010'), +('38.41', 'Resection of vessel with replacement , intracranial vessels', 'ICD9CM_2010'), +('38.42', 'Resection of vessel with replacement, other vessels of head and neck', 'ICD9CM_2010'), +('38.43', 'Resection of vessel with replacement, upper limb vessels', 'ICD9CM_2010'), +('38.44', 'Resection of vessel with replacement, aorta,abdominal', 'ICD9CM_2010'), +('38.45', 'Resection of vessel with replacement, thoracic vessels', 'ICD9CM_2010'), +('38.46', 'Resection of vessel with replacement ,abdominal arteries', 'ICD9CM_2010'), +('38.47', 'Resection of vessel with replacement, abdominal veins', 'ICD9CM_2010'), +('38.48', 'Resection of vessel with replacement, lower limb arteries', 'ICD9CM_2010'), +('38.49', 'Resection of vessel with replacement, lower limb veins', 'ICD9CM_2010'), +('38.5', 'Ligation and stripping of varicose veins', 'ICD9CM_2010'), +('38.50', 'Ligation and stripping of varicose veins, unspecified site', 'ICD9CM_2010'), +('38.51', 'Ligation and stripping of varicose veins, intracranial vessels', 'ICD9CM_2010'), +('38.52', 'Ligation and stripping of varicose veins, other vessels of head an', 'ICD9CM_2010'), +('38.53', 'Ligation and stripping of varicose veins , upper limb vessels', 'ICD9CM_2010'), +('38.55', 'Ligation and stripping of varicose veins, thoracic vessels', 'ICD9CM_2010'), +('38.57', 'Ligation and stripping of varicose veins ,abdominal varicose veins', 'ICD9CM_2010'), +('38.59', 'Ligation and stripping of varicose veins ,lower limb varicose veins', 'ICD9CM_2010'), +('38.6', 'Other excision of vessels', 'ICD9CM_2010'), +('38.60', 'Other excision of vessels, unspecified site', 'ICD9CM_2010'), +('38.61', 'Other excision of vessels, intracranial vessels', 'ICD9CM_2010'), +('38.62', 'Other excision of vessels, other vessels of head and neck', 'ICD9CM_2010'), +('38.63', 'Other excision of vessels, upper limb vessels', 'ICD9CM_2010'), +('38.64', 'Other excision of vessels, aorta,abdominal', 'ICD9CM_2010'), +('38.65', 'Other excision of vessels, thoracic vessels', 'ICD9CM_2010'), +('38.66', 'Other excision of vessels, abdominal arteries', 'ICD9CM_2010'), +('38.67', 'Other excision of vessels, abdominal veins', 'ICD9CM_2010'), +('38.68', 'Other excision of vessels, lower limb arteries', 'ICD9CM_2010'), +('38.69', 'Other excision of vessels, lower limb veins', 'ICD9CM_2010'), +('38.7', 'Interruption of the vena cava', 'ICD9CM_2010'), +('38.8', 'Other surgical occlusion of vessels', 'ICD9CM_2010'), +('38.80', 'Other surgical occlusion of vessels, unspecified site', 'ICD9CM_2010'), +('38.81', 'Other surgical occlusion of vessels,intracranial vessels', 'ICD9CM_2010'), +('38.82', 'Other surgical occlusion of vessels, other vessels of head and neck', 'ICD9CM_2010'), +('38.83', 'Other surgical occlusion of vessels, upper limb vessels', 'ICD9CM_2010'), +('38.84', 'Other surgical occlusion of vessels, aorta, abdominal', 'ICD9CM_2010'), +('38.85', 'Other surgical occlusion of vessels, other thoracic vessels', 'ICD9CM_2010'), +('38.86', 'Other surgical occlusion of vessels, abdominal arteries', 'ICD9CM_2010'), +('38.87', 'Other surgical occlusion of vessels, abdominal veins', 'ICD9CM_2010'), +('38.88', 'Other surgical occlusion of vessels, lower limb arteries', 'ICD9CM_2010'), +('38.89', 'Other surgical occlusion of vessels, lower limb veins', 'ICD9CM_2010'), +('38.9', 'Puncture of vessel', 'ICD9CM_2010'), +('38.91', 'Arterial catheterization', 'ICD9CM_2010'), +('38.92', 'Umbilical vein catheterization', 'ICD9CM_2010'), +('38.93', 'Venous catheterization, not elsewhere classified', 'ICD9CM_2010'), +('38.94', 'Venous cutdown', 'ICD9CM_2010'), +('38.95', 'Venous catheterization for renal dialysis', 'ICD9CM_2010'), +('38.97', 'Central venous catheter placement with guidance', 'ICD9CM_2010'), +('38.98', 'Other puncture of artery', 'ICD9CM_2010'), +('38.99', 'Other puncture of vein', 'ICD9CM_2010'), +('39', 'Other operations on vessels', 'ICD9CM_2010'), +('39.0', 'Systemic to pulmonary artery shunt', 'ICD9CM_2010'), +('39.1', 'Intra-abdominal venous shunt', 'ICD9CM_2010'), +('39.2', 'Other shunt or vascular bypass', 'ICD9CM_2010'), +('39.21', 'Caval-pulmonary artery anastomosis', 'ICD9CM_2010'), +('39.22', 'Aorta-subclavian-carotid bypass', 'ICD9CM_2010'), +('39.23', 'Other intrathoracic vascular shunt or bypass', 'ICD9CM_2010'), +('39.24', 'Aorta-renal bypass', 'ICD9CM_2010'), +('39.25', 'Aorta-iliac-femoral bypass', 'ICD9CM_2010'), +('39.26', 'Other intra-abdominal vascular shunt or bypass', 'ICD9CM_2010'), +('39.27', 'Arteriovenostomy for renal dialysis', 'ICD9CM_2010'), +('39.28', 'Extracranial-intracranial (EC-IC) vascular bypass', 'ICD9CM_2010'), +('39.29', 'Other (peripheral) vascular shunt or bypass', 'ICD9CM_2010'), +('39.3', 'Suture of vessel', 'ICD9CM_2010'), +('39.30', 'Suture of unspecified blood vessel', 'ICD9CM_2010'), +('39.31', 'Suture of artery', 'ICD9CM_2010'), +('39.32', 'Suture of vein', 'ICD9CM_2010'), +('39.4', 'Revision of vascular procedure', 'ICD9CM_2010'), +('39.41', 'Control of hemorrhage following vascular surgery', 'ICD9CM_2010'); +INSERT INTO `icd9` (`ID_ICD9`, `Prosedur`, `Versi_ICD9`) VALUES +('39.42', 'Revision of arteriovenous shunt for renal dialysis', 'ICD9CM_2010'), +('39.43', 'Removal of arteriovenous shunt for renal dialysis', 'ICD9CM_2010'), +('39.49', 'Other revision of vascular procedure', 'ICD9CM_2010'), +('39.5', 'Other repair of vessels', 'ICD9CM_2010'), +('39.50', 'Angioplasty or atherectomy of other non-coronary vessel(s)', 'ICD9CM_2010'), +('39.51', 'Clipping of aneurysm', 'ICD9CM_2010'), +('39.52', 'Other repair of aneurysm', 'ICD9CM_2010'), +('39.53', 'Repair of arteriovenous fistula', 'ICD9CM_2010'), +('39.54', 'Re-entry operation (aorta)', 'ICD9CM_2010'), +('39.55', 'Reimplantation of aberrant renal vessel', 'ICD9CM_2010'), +('39.56', 'Repair of blood vessel with tissue patch graft', 'ICD9CM_2010'), +('39.57', 'Repair of blood vessel with synthetic patch graft', 'ICD9CM_2010'), +('39.58', 'Repair of blood vessel with unspecified type of patch graft', 'ICD9CM_2010'), +('39.59', 'Other repair of vessel', 'ICD9CM_2010'), +('39.6', 'Extracorporeal circulation and procedures auxiliary to open heart surgery', 'ICD9CM_2010'), +('39.61', 'Extracorporeal circulation auxiliary to open heart surgery', 'ICD9CM_2010'), +('39.62', 'Hypothermia (systemic) incidental to open heart surgery', 'ICD9CM_2010'), +('39.63', 'Cardioplegia', 'ICD9CM_2010'), +('39.64', 'Intraoperative cardiac pacemaker', 'ICD9CM_2010'), +('39.65', 'Extracorporeal membrane oxygenation (ECMO)', 'ICD9CM_2010'), +('39.66', 'Percutaneous cardiopulmonary bypass', 'ICD9CM_2010'), +('39.7', 'Endovascular Repair of Vessel', 'ICD9CM_2010'), +('39.71', 'Endovascular implantation of graft in abdominal aorta', 'ICD9CM_2010'), +('39.72', 'Endovascular repair or occlusion of head and neck vessels', 'ICD9CM_2010'), +('39.73', 'Endovascular implantation of graft in thoracic aorta', 'ICD9CM_2010'), +('39.74', 'Endovascular removal of obstruction from head and neck vessel (s)', 'ICD9CM_2010'), +('39.75', 'Endovascular embolization or occlusion of vessel(s) of head or neck using bare coils', 'ICD9CM_2010'), +('39.76', 'Endovascular embolization or occlusion of vessel(s) of head or neck using bioactive coils', 'ICD9CM_2010'), +('39.79', 'Other endovascular repair (of aneurysm) of other vessels', 'ICD9CM_2010'), +('39.8', 'Operations on carotid body, carotid sinus and other vascular bodies', 'ICD9CM_2010'), +('39.81', 'Implantation or replacement of carotid sinus stimulation device, total system', 'ICD9CM_2010'), +('39.82', 'Implantation or replacement of carotid sinus stimulation lead(s) only', 'ICD9CM_2010'), +('39.83', 'Implantation or replacement of carotid sinus stimulation pulse generator only', 'ICD9CM_2010'), +('39.84', 'Revision of carotid sinus stimulation lead(s) only', 'ICD9CM_2010'), +('39.85', 'Revision of carotid sinus stimulation pulse generator', 'ICD9CM_2010'), +('39.86', 'Removal of carotid sinus stimulation device, total system', 'ICD9CM_2010'), +('39.87', 'Removal of carotid sinus stimulation lead(s) only', 'ICD9CM_2010'), +('39.88', 'Removal of carotid sinus stimulation pulse generator only', 'ICD9CM_2010'), +('39.89', 'Other operations on carotid body, carotid sinus and other vascular bodies', 'ICD9CM_2010'), +('39.9', 'Other operations on vessels', 'ICD9CM_2010'), +('39.90', 'Insertion of non-drug -eluting peripheral vessel stent(s)', 'ICD9CM_2010'), +('39.91', 'Freeing of vessel', 'ICD9CM_2010'), +('39.92', 'Injection of sclerosing agent into vein', 'ICD9CM_2010'), +('39.93', 'Insertion of vessel-to-vessel cannula', 'ICD9CM_2010'), +('39.94', 'Replacement of vessel-to-vessel cannula', 'ICD9CM_2010'), +('39.95', 'Hemodialysis', 'ICD9CM_2010'), +('39.96', 'Total body perfusion', 'ICD9CM_2010'), +('39.97', 'Other perfusion', 'ICD9CM_2010'), +('39.98', 'Control of hemorrhage, not otherwise specified', 'ICD9CM_2010'), +('39.99', 'Other operations on vessels', 'ICD9CM_2010'), +('40', 'Operations on lymphatic system', 'ICD9CM_2010'), +('40.0', 'Incision of lymphatic structures', 'ICD9CM_2010'), +('40.1', 'Diagnostic procedures on lymphatic structure', 'ICD9CM_2010'), +('40.11', 'Biopsy of lymphatic structure', 'ICD9CM_2010'), +('40.19', 'Other diagnostic procedures on lymphatic structures', 'ICD9CM_2010'), +('40.2', 'Simple excision of lymphatic structure', 'ICD9CM_2010'), +('40.21', 'Excision of deep cervical lymph node', 'ICD9CM_2010'), +('40.22', 'Excision of internal mammary lymph node', 'ICD9CM_2010'), +('40.23', 'Excision of axillary lymph node', 'ICD9CM_2010'), +('40.24', 'Excision of inguinal lymph node', 'ICD9CM_2010'), +('40.29', 'Simple excision of other lymphatic structure', 'ICD9CM_2010'), +('40.3', 'Regional lymph node excision', 'ICD9CM_2010'), +('40.4', 'Radical excision of cervical lymph nodes', 'ICD9CM_2010'), +('40.40', 'Radical neck dissection, not otherwise specified', 'ICD9CM_2010'), +('40.41', 'Radical neck dissection, unilateral', 'ICD9CM_2010'), +('40.42', 'Radical neck dissection, bilateral', 'ICD9CM_2010'), +('40.5', 'Radical excision of other lymph nodes', 'ICD9CM_2010'), +('40.50', 'Radical excision of lymph nodes, not otherwise specified', 'ICD9CM_2010'), +('40.51', 'Radical excision of axillary lymph nodes', 'ICD9CM_2010'), +('40.52', 'Radical excision of periaortic lymph nodes', 'ICD9CM_2010'), +('40.53', 'Radical excision of iliac lymph nodes', 'ICD9CM_2010'), +('40.54', 'Radical groin dissection', 'ICD9CM_2010'), +('40.59', 'Radical excision of other lymph nodes', 'ICD9CM_2010'), +('40.6', 'Operations on thoracic duct', 'ICD9CM_2010'), +('40.61', 'Cannulation of thoracic duct', 'ICD9CM_2010'), +('40.62', 'Fistulization of thoracic duct', 'ICD9CM_2010'), +('40.63', 'Closure of fistula of thoracic duct', 'ICD9CM_2010'), +('40.64', 'Ligation of thoracic duct', 'ICD9CM_2010'), +('40.69', 'Other operations on thoracic duct', 'ICD9CM_2010'), +('40.9', 'Other operations on lymphatic structures', 'ICD9CM_2010'), +('41', 'Operations on bone marrow and spleen', 'ICD9CM_2010'), +('41.0', 'Bone marrow or hematopoietic stemm cell transplant', 'ICD9CM_2010'), +('41.00', 'Bone marrow transplant, not otherwise specified', 'ICD9CM_2010'), +('41.01', 'Autologous bone marrow transplant without purging', 'ICD9CM_2010'), +('41.02', 'Allogeneic bone marrow transplant with purging', 'ICD9CM_2010'), +('41.03', 'Allogeneic bone marrow transplant without purging', 'ICD9CM_2010'), +('41.04', 'Autologous hematopoietic stem cell transplant without purging', 'ICD9CM_2010'), +('41.05', 'Allogeneic hematopoietic stem cell transplant without purging', 'ICD9CM_2010'), +('41.06', 'Cord blood stem cell transplant', 'ICD9CM_2010'), +('41.07', 'Autologous hematopoietic stem cell transplant with purging', 'ICD9CM_2010'), +('41.08', 'Autologous hematopoietic stem cell transplant', 'ICD9CM_2010'), +('41.09', 'Autologous bone marrow transplant with purging', 'ICD9CM_2010'), +('41.1', 'Puncture of spleen', 'ICD9CM_2010'), +('41.2', 'Splenotomy', 'ICD9CM_2010'), +('41.3', 'Diagnostic procedures on bone marrow and spleen', 'ICD9CM_2010'), +('41.31', 'Biopsy of bone marrow', 'ICD9CM_2010'), +('41.32', 'Closed (aspiration) (percutaneous) biopsy of spleen', 'ICD9CM_2010'), +('41.33', 'Open biopsy of spleen', 'ICD9CM_2010'), +('41.38', 'Other diagnostic procedures on bone marrow', 'ICD9CM_2010'), +('41.39', 'Other diagnostic procedures on spleen', 'ICD9CM_2010'), +('41.4', 'Excision or destruction of lesion or tissue of spleen', 'ICD9CM_2010'), +('41.41', 'Marsupialization of splenic cyst', 'ICD9CM_2010'), +('41.42', 'Excision of lesion or tissue of spleen', 'ICD9CM_2010'), +('41.43', 'Partial splenectomy', 'ICD9CM_2010'), +('41.5', 'Total splenectomy', 'ICD9CM_2010'), +('41.9', 'Other operations on spleen and bone marrow', 'ICD9CM_2010'), +('41.91', 'Aspiration of bone marrow from donor for transplant', 'ICD9CM_2010'), +('41.92', 'Injection into bone marrow', 'ICD9CM_2010'), +('41.93', 'Excision of accessory spleen', 'ICD9CM_2010'), +('41.94', 'Transplantation of spleen', 'ICD9CM_2010'), +('41.95', 'Repair and plastic operations on spleen', 'ICD9CM_2010'), +('41.98', 'Other operations on bone marrow', 'ICD9CM_2010'), +('41.99', 'Other operations on spleen', 'ICD9CM_2010'), +('42', 'Operations on esophagus', 'ICD9CM_2010'), +('42.0', 'Esophagotomy', 'ICD9CM_2010'), +('42.01', 'Incision of esophageal web', 'ICD9CM_2010'), +('42.09', 'Other incision of esophagus', 'ICD9CM_2010'), +('42.1', 'Esophagostomy', 'ICD9CM_2010'), +('42.10', 'Esophagostomy, not otherwise specified', 'ICD9CM_2010'), +('42.11', 'Cervical esophagostomy', 'ICD9CM_2010'), +('42.12', 'Exteriorization of esophageal pouch', 'ICD9CM_2010'), +('42.19', 'Other external fistulization of esophagus', 'ICD9CM_2010'), +('42.2', 'Diagnostic procedures on esophagus', 'ICD9CM_2010'), +('42.21', 'Operative esophagoscopy by incision', 'ICD9CM_2010'), +('42.22', 'Esophagoscopy through artificial stoma', 'ICD9CM_2010'), +('42.23', 'Other esophagoscopy', 'ICD9CM_2010'), +('42.24', 'Closed (endoscopic) biopsy of esophagus', 'ICD9CM_2010'), +('42.25', 'Open biopsy of esophagus', 'ICD9CM_2010'), +('42.29', 'Other diagnostic procedures on esophagus', 'ICD9CM_2010'), +('42.3', 'Local excision or destruction of lesion or tissue of esophagus', 'ICD9CM_2010'), +('42.31', 'Local excision of esophageal diverticulum', 'ICD9CM_2010'), +('42.32', 'Local excision of other lesion or tissue of esophagus', 'ICD9CM_2010'), +('42.33', 'Endoscopic excision or destruction of lesion or tissue of esophagus', 'ICD9CM_2010'), +('42.39', 'Other destruction of lesion or tissue of esophagus', 'ICD9CM_2010'), +('42.4', 'Excision of esophagus', 'ICD9CM_2010'), +('42.40', 'Esophagectomy, not otherwise specified', 'ICD9CM_2010'), +('42.41', 'Partial esophagectomy', 'ICD9CM_2010'), +('42.42', 'Total esophagectomy', 'ICD9CM_2010'), +('42.5', 'Intrathoracic anastomosis of esophagus', 'ICD9CM_2010'), +('42.51', 'Intrathoracic esophagoesophagostomy', 'ICD9CM_2010'), +('42.52', 'Intrathoracic esophagogastrostomy', 'ICD9CM_2010'), +('42.53', 'Intrathoracic esophageal anastomosis with interposition of small bowel', 'ICD9CM_2010'), +('42.54', 'Other intrathoracic esophagoenterostomy', 'ICD9CM_2010'), +('42.55', 'Intrathoracic esophageal anastomosis with interposition of colon', 'ICD9CM_2010'), +('42.56', 'Other intrathoracic esophagocolostomy', 'ICD9CM_2010'), +('42.58', 'Intrathoracic esophageal anastomosis with other interposition', 'ICD9CM_2010'), +('42.59', 'Other intrathoracic anastomosis of esophagus', 'ICD9CM_2010'), +('42.6', 'Antesternal anastomosis of esophagus', 'ICD9CM_2010'), +('42.61', 'Antesternal esophagoesophagostomy', 'ICD9CM_2010'), +('42.62', 'Antesternal esophagogastrostomy', 'ICD9CM_2010'), +('42.63', 'Antesternal esophageal anastomosis with interposition of small bowel', 'ICD9CM_2010'), +('42.64', 'Other antesternal esophagoenterostomy', 'ICD9CM_2010'), +('42.65', 'Antesternal esophageal anastomosis with interposition of colon', 'ICD9CM_2010'), +('42.66', 'Other antesternal esophagocolostomy', 'ICD9CM_2010'), +('42.68', 'Other antesternal esophageal anastomosis with interposition', 'ICD9CM_2010'), +('42.69', 'Other antesternal anastomosis of esophagus', 'ICD9CM_2010'), +('42.7', 'Esophagomyotomy', 'ICD9CM_2010'), +('42.8', 'Other repair of esophagus', 'ICD9CM_2010'), +('42.81', 'Insertion of permanent tube into esophagus', 'ICD9CM_2010'), +('42.82', 'Suture of laceration of esophagus', 'ICD9CM_2010'), +('42.83', 'Closure of esophagostomy', 'ICD9CM_2010'), +('42.84', 'Repair of esophageal fistula, not elsewhere classified', 'ICD9CM_2010'), +('42.85', 'Repair of esophageal stricture', 'ICD9CM_2010'), +('42.86', 'Production of subcutaneous tunnel without esophageal anastomosis', 'ICD9CM_2010'), +('42.87', 'Other graft of esophagus', 'ICD9CM_2010'), +('42.89', 'Other repair of esophagus', 'ICD9CM_2010'), +('42.9', 'Other operations on esophagus', 'ICD9CM_2010'), +('42.91', 'Ligation of esophageal varices', 'ICD9CM_2010'), +('42.92', 'Dilation of esophagus', 'ICD9CM_2010'), +('42.99', 'Other operations on esophagus', 'ICD9CM_2010'), +('43', 'Incision and excision of stomach', 'ICD9CM_2010'), +('43.0', 'Gastrotomy', 'ICD9CM_2010'), +('43.1', 'Gastrostomy', 'ICD9CM_2010'), +('43.11', 'Percutaneous (endoscopic) gastrostomy (PEG)', 'ICD9CM_2010'), +('43.19', 'Other gastrostomy', 'ICD9CM_2010'), +('43.3', 'Pyloromyotomy', 'ICD9CM_2010'), +('43.4', 'Local excision or destruction of lesion or tissue of stomach', 'ICD9CM_2010'), +('43.41', 'Endoscopic excision or destruction of lesion or tissue of stomach', 'ICD9CM_2010'), +('43.42', 'Local excision of other lesion or tissue of stomach', 'ICD9CM_2010'), +('43.49', 'Other destruction of lesion or tissue of stomach', 'ICD9CM_2010'), +('43.5', 'Partial gastrectomy with anastomosis to esophagus', 'ICD9CM_2010'), +('43.6', 'Partial gastrectomy with anastomosis to duodenum', 'ICD9CM_2010'), +('43.7', 'Partial gastrectomy with anastomosis to jejunum', 'ICD9CM_2010'), +('43.8', 'Other partial gastrectomy', 'ICD9CM_2010'), +('43.81', 'Partial gastrectomy with jejunal transposition', 'ICD9CM_2010'), +('43.89', 'Other partial gastrectomy', 'ICD9CM_2010'), +('43.9', 'Total gastrectomy', 'ICD9CM_2010'), +('43.91', 'Total gastrectomy with intestinal interposition', 'ICD9CM_2010'), +('43.99', 'Other total gastrectomy', 'ICD9CM_2010'), +('44', 'Other operations on stomach', 'ICD9CM_2010'), +('44.0', 'Vagotomy', 'ICD9CM_2010'), +('44.00', 'Vagotomy, not otherwise specified', 'ICD9CM_2010'), +('44.01', 'Truncal vagotomy', 'ICD9CM_2010'), +('44.02', 'Highly selective vagotomy', 'ICD9CM_2010'), +('44.03', 'Other selective vagotomy', 'ICD9CM_2010'), +('44.1', 'Diagnostic procedures on stomach', 'ICD9CM_2010'), +('44.11', 'Transabdominal gastroscopy', 'ICD9CM_2010'), +('44.12', 'Gastroscopy through artificial stoma', 'ICD9CM_2010'), +('44.13', 'Other gastroscopy', 'ICD9CM_2010'), +('44.14', 'Closed biopsy of stomach (endoscopic)', 'ICD9CM_2010'), +('44.15', 'Open biopsy of stomach', 'ICD9CM_2010'), +('44.19', 'Other diagnostic procedures on stomach', 'ICD9CM_2010'), +('44.2', 'Pyloroplasty', 'ICD9CM_2010'), +('44.21', 'Dilation of pylorus by incision', 'ICD9CM_2010'), +('44.22', 'Endoscopic dilation of pylorus', 'ICD9CM_2010'), +('44.29', 'Other pyloroplasty', 'ICD9CM_2010'), +('44.3', 'Gastroenterostomy without gastrectomy', 'ICD9CM_2010'), +('44.31', 'High gastric bypass', 'ICD9CM_2010'), +('44.32', 'Percutaneous (endoscopic) gastojejunostomy', 'ICD9CM_2010'), +('44.38', 'Laparoscopic gastroenterostomy', 'ICD9CM_2010'), +('44.39', 'Other gastroenterostomy', 'ICD9CM_2010'), +('44.4', 'Control of hemorrhage and suture of ulcer of stomach or duodenum', 'ICD9CM_2010'), +('44.40', 'Suture of peptic ulcer, not otherwise specified', 'ICD9CM_2010'), +('44.41', 'Suture of gastric ulcer site', 'ICD9CM_2010'), +('44.42', 'Suture of duodenal ulcer site', 'ICD9CM_2010'), +('44.43', 'Endoscopic control of gastric or duodenal bleeding', 'ICD9CM_2010'), +('44.44', 'Transcatheter embolization for gastric or duodenal bleeding', 'ICD9CM_2010'), +('44.49', 'Other control of hemorrhage of stomach or duodenum', 'ICD9CM_2010'), +('44.5', 'Revision of gastric anastomosis', 'ICD9CM_2010'), +('44.6', 'Other repair of stomach', 'ICD9CM_2010'), +('44.61', 'Suture of laceration of stomach', 'ICD9CM_2010'), +('44.62', 'Closure of gastrostomy', 'ICD9CM_2010'), +('44.63', 'Closure of other gastric fistula', 'ICD9CM_2010'), +('44.64', 'Gastropexy', 'ICD9CM_2010'), +('44.65', 'Esophagogastroplasty', 'ICD9CM_2010'), +('44.66', 'Other procedures for creation of esophagogastric sphincteric competence', 'ICD9CM_2010'), +('44.67', 'Laparoscopic procedures for creation of esophagogastric spincteric competence', 'ICD9CM_2010'), +('44.68', 'Laparoscopic gastroplasty', 'ICD9CM_2010'), +('44.69', 'Other repair of stomach', 'ICD9CM_2010'), +('44.9', 'Other operations on stomach', 'ICD9CM_2010'), +('44.91', 'Ligation of gastric varices', 'ICD9CM_2010'), +('44.92', 'Intraoperative manipulation of stomach', 'ICD9CM_2010'), +('44.93', 'Insertion of gastric bubble (balloon)', 'ICD9CM_2010'), +('44.94', 'Removal of gastric bubble (balloon)', 'ICD9CM_2010'), +('44.95', 'laparoscopic gastric restricve procedure', 'ICD9CM_2010'), +('44.96', 'laparoscopic revision of gastric restrictive procedure', 'ICD9CM_2010'), +('44.97', 'laparoscopic removal of gastric restrictive device(s)', 'ICD9CM_2010'), +('44.98', '(Laparoscopic) adjustment of size of adjustable gastric restrictive device', 'ICD9CM_2010'), +('44.99', 'Other operations on stomach', 'ICD9CM_2010'), +('45', 'Incision, excision, and anastomosis of intestine', 'ICD9CM_2010'), +('45.0', 'Enterotomy', 'ICD9CM_2010'), +('45.00', 'Incision of intestine, not otherwise specified', 'ICD9CM_2010'), +('45.01', 'Incision of duodenum', 'ICD9CM_2010'), +('45.02', 'Other incision of small intestine', 'ICD9CM_2010'), +('45.03', 'Incision of large intestine', 'ICD9CM_2010'), +('45.1', 'Diagnostic procedures on small intestine', 'ICD9CM_2010'), +('45.11', 'Transabdominal endoscopy of small intestine', 'ICD9CM_2010'), +('45.12', 'Endoscopy of small intestine through artificial stoma', 'ICD9CM_2010'), +('45.13', 'Other endoscopy of small intestine', 'ICD9CM_2010'), +('45.14', 'Closed biopsy of small intestine (endoscopic)', 'ICD9CM_2010'), +('45.15', 'Open biopsy of small intestine', 'ICD9CM_2010'), +('45.16', 'Esophagogastroduodenoscopy (EGD) with closed biopsy', 'ICD9CM_2010'), +('45.19', 'Other diagnostic procedures on small intestine', 'ICD9CM_2010'), +('45.2', 'Diagnostic procedures on other intestine', 'ICD9CM_2010'), +('45.21', 'Transabdominal endoscopy of large intestine', 'ICD9CM_2010'), +('45.22', 'Endoscopy of large intestine through artificial stoma', 'ICD9CM_2010'), +('45.23', 'Colonoscopy', 'ICD9CM_2010'), +('45.24', 'Flexible sigmoidoscopy', 'ICD9CM_2010'), +('45.25', 'Closed (endoscopic) biopsy of large intestine', 'ICD9CM_2010'), +('45.26', 'Open biopsy of large intestine', 'ICD9CM_2010'), +('45.27', 'Intestinal biopsy, site unspecified', 'ICD9CM_2010'), +('45.28', 'Other diagnostic procedures on large intestine', 'ICD9CM_2010'), +('45.29', 'Other diagnostic procedures on intestine, site unspecified', 'ICD9CM_2010'), +('45.3', 'Local excision or destruction of lesion or tissue of small intestine', 'ICD9CM_2010'), +('45.30', 'Endoscopic excision or destruction of lesion of duodenum', 'ICD9CM_2010'), +('45.31', 'Other local excision of lesion of duodenum', 'ICD9CM_2010'), +('45.32', 'Other destruction of lesion of duodenum', 'ICD9CM_2010'), +('45.33', 'Local excision of lesion or tissue of small intestine, except duodenum', 'ICD9CM_2010'), +('45.34', 'Other destruction of lesion of small intestine, except duodenum', 'ICD9CM_2010'), +('45.4', 'Local excision or destruction of lesion or tissue of large intestine', 'ICD9CM_2010'), +('45.41', 'Excision of lesion or tissue of large intestine', 'ICD9CM_2010'), +('45.42', 'Endoscopic polypectomy of large intestine', 'ICD9CM_2010'), +('45.43', 'Endoscopic excision or destruction of other lesion or tissue of large intestine', 'ICD9CM_2010'), +('45.49', 'Other destruction of lesion of large intestine', 'ICD9CM_2010'), +('45.5', 'Isolation of intestinal segment', 'ICD9CM_2010'), +('45.50', 'Isolation of intestinal segment, not otherwise specified', 'ICD9CM_2010'), +('45.51', 'Isolation of segment of small intestine', 'ICD9CM_2010'), +('45.52', 'Isolation of segment of large intestine', 'ICD9CM_2010'), +('45.6', 'Other excision of small intestine', 'ICD9CM_2010'), +('45.61', 'Multiple segmental resection of small intestine', 'ICD9CM_2010'), +('45.62', 'Other partial resection of small intestine', 'ICD9CM_2010'), +('45.63', 'Total removal of small intestine', 'ICD9CM_2010'), +('45.7', 'Open and other partial excision of large intestine', 'ICD9CM_2010'), +('45.71', 'Open and other multiple segmental resection of large intestine', 'ICD9CM_2010'), +('45.72', 'Open and other Cecectomy', 'ICD9CM_2010'), +('45.73', 'Open and other Right hemicolectomy', 'ICD9CM_2010'), +('45.74', 'Open and other Resection of transverse colon', 'ICD9CM_2010'), +('45.75', 'Open and other Left hemicolectomy', 'ICD9CM_2010'), +('45.76', 'Open and other Sigmoidectomy', 'ICD9CM_2010'), +('45.79', 'Other and unspecified partial excision of large intestine', 'ICD9CM_2010'), +('45.8', 'Total intra-abdominal colectomy', 'ICD9CM_2010'), +('45.81', 'Laparoscopic total intra-abdominal colectomy', 'ICD9CM_2010'), +('45.82', 'Open total intra-abdominal colectomy', 'ICD9CM_2010'), +('45.83', 'Other and unspecified total intra-abdominal colectomy', 'ICD9CM_2010'), +('45.9', 'Intestinal anastomosis', 'ICD9CM_2010'), +('45.90', 'Intestinal anastomosis, not otherwise specified', 'ICD9CM_2010'), +('45.91', 'Small-to-small intestinal anastomosis', 'ICD9CM_2010'), +('45.92', 'Anastomosis of small intestine to rectal stump', 'ICD9CM_2010'), +('45.93', 'Other small-to-large intestinal anastomosis', 'ICD9CM_2010'), +('45.94', 'Large-to-large intestinal anastomosis', 'ICD9CM_2010'), +('45.95', 'Anastomosis to anus', 'ICD9CM_2010'), +('46', 'Other operations on intestine', 'ICD9CM_2010'), +('46.0', 'Exteriorization of intestine', 'ICD9CM_2010'), +('46.01', 'Exteriorization of small intestine', 'ICD9CM_2010'), +('46.02', 'Resection of exteriorized segment of small intestine', 'ICD9CM_2010'), +('46.03', 'Exteriorization of large intestine', 'ICD9CM_2010'), +('46.04', 'Resection of exteriorized segment of large intestine', 'ICD9CM_2010'), +('46.1', 'Colostomy', 'ICD9CM_2010'), +('46.10', 'Colostomy, not otherwise specified', 'ICD9CM_2010'), +('46.11', 'Temporary colostomy', 'ICD9CM_2010'), +('46.13', 'Permanent colostomy', 'ICD9CM_2010'), +('46.14', 'Delayed opening of colostomy', 'ICD9CM_2010'), +('46.2', 'Ileostomy', 'ICD9CM_2010'), +('46.20', 'Ileostomy, not otherwise specified', 'ICD9CM_2010'), +('46.21', 'Temporary ileostomy', 'ICD9CM_2010'), +('46.22', 'Continent ileostomy', 'ICD9CM_2010'), +('46.23', 'Other permanent ileostomy', 'ICD9CM_2010'), +('46.24', 'Delayed opening of ileostomy', 'ICD9CM_2010'), +('46.3', 'Other enterostomy', 'ICD9CM_2010'), +('46.31', 'Delayed opening of other enterostomy', 'ICD9CM_2010'), +('46.32', 'Percutaneous (endoscopic) jejunostomy (PEJ)', 'ICD9CM_2010'), +('46.39', 'Other enterostomy', 'ICD9CM_2010'), +('46.4', 'Revision of intestinal stoma', 'ICD9CM_2010'), +('46.40', 'Revision of intestinal stoma, not otherwise specified', 'ICD9CM_2010'), +('46.41', 'Revision of stoma of small intestine', 'ICD9CM_2010'), +('46.42', 'Repair of pericolostomy hernia', 'ICD9CM_2010'), +('46.43', 'Other revision of stoma of large intestine', 'ICD9CM_2010'), +('46.5', 'Closure of intestinal stoma', 'ICD9CM_2010'), +('46.50', 'Closure of intestinal stoma, not otherwise specified', 'ICD9CM_2010'), +('46.51', 'Closure of stoma of small intestine', 'ICD9CM_2010'), +('46.52', 'Closure of stoma of large intestine', 'ICD9CM_2010'), +('46.6', 'Fixation of intestine', 'ICD9CM_2010'), +('46.60', 'Fixation of intestine, not otherwise specified', 'ICD9CM_2010'), +('46.61', 'Fixation of small intestine to abdominal wall', 'ICD9CM_2010'), +('46.62', 'Other fixation of small intestine', 'ICD9CM_2010'), +('46.63', 'Fixation of large intestine to abdominal wall', 'ICD9CM_2010'), +('46.64', 'Other fixation of large intestine', 'ICD9CM_2010'), +('46.7', 'Other repair of intestine', 'ICD9CM_2010'), +('46.71', 'Suture of laceration of duodenum', 'ICD9CM_2010'), +('46.72', 'Closure of fistula of duodenum', 'ICD9CM_2010'), +('46.73', 'Suture of laceration of small intestine, except duodenum', 'ICD9CM_2010'), +('46.74', 'Closure of fistula of small intestine, except duodenum', 'ICD9CM_2010'), +('46.75', 'Suture of laceration of large intestine', 'ICD9CM_2010'), +('46.76', 'Closure of fistula of large intestine', 'ICD9CM_2010'), +('46.79', 'Other repair of intestine', 'ICD9CM_2010'), +('46.8', 'Dilation and manipulation of intestine', 'ICD9CM_2010'), +('46.80', 'Intra-abdominal manipulation of intestine, not otherwise specified', 'ICD9CM_2010'), +('46.81', 'Intra-abdominal manipulation of small intestine', 'ICD9CM_2010'), +('46.82', 'Intra-abdominal manipulation of large intestine', 'ICD9CM_2010'), +('46.85', 'Dilation of intestine', 'ICD9CM_2010'), +('46.86', 'Endoscopic insertion of colonic stent(s)', 'ICD9CM_2010'), +('46.87', 'Other insertion of colonic stent(s)', 'ICD9CM_2010'), +('46.9', 'Other operations on intestines', 'ICD9CM_2010'), +('46.91', 'Myotomy of sigmoid colon', 'ICD9CM_2010'), +('46.92', 'Myotomy of other parts of colon', 'ICD9CM_2010'), +('46.93', 'Revision of anastomosis of small intestine', 'ICD9CM_2010'), +('46.94', 'Revision of anastomosis of large intestine', 'ICD9CM_2010'), +('46.95', 'Local perfusion of small intestine', 'ICD9CM_2010'), +('46.96', 'Local perfusion of large intestine', 'ICD9CM_2010'), +('46.97', 'Transplant of intestine', 'ICD9CM_2010'), +('46.99', 'Other operations on intestines', 'ICD9CM_2010'), +('47', 'Operations on appendix', 'ICD9CM_2010'), +('47.0', 'Appendectomy', 'ICD9CM_2010'), +('47.01', 'Laparascopic appendectomy', 'ICD9CM_2010'), +('47.09', 'Other appendectomy', 'ICD9CM_2010'), +('47.1', 'Incidental appendectomy', 'ICD9CM_2010'), +('47.11', 'Laposcopic incidental appendectomy', 'ICD9CM_2010'), +('47.19', 'other incidental appendectomy', 'ICD9CM_2010'), +('47.2', 'Drainage of appendiceal abscess', 'ICD9CM_2010'), +('47.9', 'Other operations on appendix', 'ICD9CM_2010'), +('47.91', 'Appendicostomy', 'ICD9CM_2010'), +('47.92', 'Closure of appendiceal fistula', 'ICD9CM_2010'), +('47.99', 'Other operations on appendix', 'ICD9CM_2010'), +('48', 'Operations on rectum rectosigmoid, and perirectal tissue', 'ICD9CM_2010'), +('48.0', 'Proctotomy', 'ICD9CM_2010'), +('48.1', 'Proctostomy', 'ICD9CM_2010'), +('48.2', 'Diagnostic procedures on rectum, rectosigmoid, and perirectal tissue', 'ICD9CM_2010'), +('48.21', 'Transabdominal proctosigmoidoscopy', 'ICD9CM_2010'), +('48.22', 'Proctosigmoidoscopy through artificial stoma', 'ICD9CM_2010'), +('48.23', 'Rigid proctosigmoidoscopy', 'ICD9CM_2010'), +('48.24', 'Closed (endoscopic) biopsy of rectum', 'ICD9CM_2010'), +('48.25', 'Open biopsy of rectum', 'ICD9CM_2010'), +('48.26', 'Biopsy of perirectal tissue', 'ICD9CM_2010'), +('48.29', 'Other diagnostic procedures on rectum, rectosigmoid, and perirectal', 'ICD9CM_2010'), +('48.3', 'Local excision or destruction of lesion or tissue of rectum', 'ICD9CM_2010'), +('48.31', 'Radical electrocoagulation of rectal lesion or tissue', 'ICD9CM_2010'), +('48.32', 'Other electrocoagulation of rectal lesion or tissue', 'ICD9CM_2010'), +('48.33', 'Destruction of rectal lesion or tissue by laser', 'ICD9CM_2010'), +('48.34', 'Destruction of rectal lesion or tissue by cryosurgery', 'ICD9CM_2010'), +('48.35', 'Local excision of rectal lesion or tissue', 'ICD9CM_2010'), +('48.36', '(Endoscopic) polypectomy of rectum', 'ICD9CM_2010'), +('48.4', 'Pull-through resection of rectum', 'ICD9CM_2010'), +('48.40', 'Pull-through resection of rectum, not otherwise specified', 'ICD9CM_2010'), +('48.41', 'Soave submucosal resection of rectum', 'ICD9CM_2010'), +('48.42', 'Laparoscopic pull-through resection of rectum', 'ICD9CM_2010'), +('48.43', 'Open pull-through resection of rectum', 'ICD9CM_2010'), +('48.49', 'Other pull-through resection of rectum', 'ICD9CM_2010'), +('48.5', 'Abdominoperineal resection of rectum', 'ICD9CM_2010'), +('48.50', 'Abdominoperineal resection of the rectum, not otherwise specified', 'ICD9CM_2010'), +('48.51', 'Laparoscopic abdominoperineal resection of the rectum', 'ICD9CM_2010'), +('48.52', 'Open abdominoperineal resection of the rectum', 'ICD9CM_2010'), +('48.59', 'Other abdominoperineal resection of the rectum', 'ICD9CM_2010'), +('48.6', 'Other resection of rectum', 'ICD9CM_2010'), +('48.61', 'Transsacral rectosigmoidectomy', 'ICD9CM_2010'), +('48.62', 'Anterior resection of rectum with synchronous colostomy', 'ICD9CM_2010'), +('48.63', 'Other anterior resection of rectum', 'ICD9CM_2010'), +('48.64', 'Posterior resection of rectum', 'ICD9CM_2010'), +('48.65', 'Duhamel resection of rectum', 'ICD9CM_2010'), +('48.69', 'Other resection of rectum', 'ICD9CM_2010'), +('48.7', 'Repair of rectum', 'ICD9CM_2010'), +('48.71', 'Suture of laceration of rectum', 'ICD9CM_2010'), +('48.72', 'Closure of proctostomy', 'ICD9CM_2010'), +('48.73', 'Closure of other rectal fistula', 'ICD9CM_2010'), +('48.74', 'Rectorectostomy', 'ICD9CM_2010'), +('48.75', 'Abdominal proctopexy', 'ICD9CM_2010'), +('48.76', 'Other proctopexy', 'ICD9CM_2010'), +('48.79', 'Other repair of rectum', 'ICD9CM_2010'), +('48.8', 'Incision or excision of perirectal tissue or lesion', 'ICD9CM_2010'), +('48.81', 'Incision of perirectal tissue', 'ICD9CM_2010'), +('48.82', 'Excision of perirectal tissue', 'ICD9CM_2010'), +('48.9', 'Other operations on rectum and perirectal tissue', 'ICD9CM_2010'), +('48.91', 'Incision of rectal stricture', 'ICD9CM_2010'), +('48.92', 'Anorectal myectomy', 'ICD9CM_2010'), +('48.93', 'Repair of perirectal fistula', 'ICD9CM_2010'), +('48.99', 'Other operations on rectum and perirectal tissue', 'ICD9CM_2010'), +('49', 'Operations on anus', 'ICD9CM_2010'), +('49.0', 'Incision or excision of perianal tissue', 'ICD9CM_2010'), +('49.01', 'Incision of perianal abscess', 'ICD9CM_2010'), +('49.02', 'Other incision of perianal tissue', 'ICD9CM_2010'), +('49.03', 'Excision of perianal skin tags', 'ICD9CM_2010'), +('49.04', 'Other excision of perianal tissue', 'ICD9CM_2010'), +('49.1', 'Incision or excision of anal fistula', 'ICD9CM_2010'), +('49.11', 'Anal fistulotomy', 'ICD9CM_2010'), +('49.12', 'Anal fistulectomy', 'ICD9CM_2010'), +('49.2', 'Diagnostic procedures on anus and perianal tissue', 'ICD9CM_2010'), +('49.21', 'Anoscopy', 'ICD9CM_2010'), +('49.22', 'Biopsy of perianal tissue', 'ICD9CM_2010'), +('49.23', 'Biopsy of anus', 'ICD9CM_2010'), +('49.29', 'Other diagnostic procedures on anus and perianal tissue', 'ICD9CM_2010'), +('49.3', 'Local excision or destruction of other lesion or tissue of anus', 'ICD9CM_2010'), +('49.31', 'Endoscopic excision or destruction of lesion or tissue of anus', 'ICD9CM_2010'), +('49.39', 'Other local excision or destruction of lesion or tissue of anus', 'ICD9CM_2010'), +('49.4', 'Procedures on hemorrhoids', 'ICD9CM_2010'), +('49.41', 'Reduction of hemorrhoids', 'ICD9CM_2010'), +('49.42', 'Injection of hemorrhoids', 'ICD9CM_2010'), +('49.43', 'Cauterization of hemorrhoids', 'ICD9CM_2010'), +('49.44', 'Destruction of hemorrhoids by cryotherapy', 'ICD9CM_2010'), +('49.45', 'Ligation of hemorrhoids', 'ICD9CM_2010'), +('49.46', 'Excision of hemorrhoids', 'ICD9CM_2010'), +('49.47', 'Evacuation of thrombosed hemorrhoids', 'ICD9CM_2010'), +('49.49', 'Other procedures on hemorrhoids', 'ICD9CM_2010'), +('49.5', 'Division of anal sphincter', 'ICD9CM_2010'), +('49.51', 'Left lateral anal sphincterotomy', 'ICD9CM_2010'), +('49.52', 'Posterior anal sphincterotomy', 'ICD9CM_2010'), +('49.59', 'Other anal sphincterotomy', 'ICD9CM_2010'), +('49.6', 'Excision of anus', 'ICD9CM_2010'), +('49.7', 'Repair of anus', 'ICD9CM_2010'), +('49.71', 'Suture of laceration of anus', 'ICD9CM_2010'), +('49.72', 'Anal cerclage', 'ICD9CM_2010'), +('49.73', 'Closure of anal fistula', 'ICD9CM_2010'), +('49.74', 'Gracilis muscle transplant for anal incontinence', 'ICD9CM_2010'), +('49.75', 'Implantation or revision of artificial anal sphincter', 'ICD9CM_2010'), +('49.76', 'Removal of artificial anal sphincter', 'ICD9CM_2010'), +('49.79', 'Other repair of anal sphincter', 'ICD9CM_2010'), +('49.9', 'Other operations on anus', 'ICD9CM_2010'), +('49.91', 'Incision of anal septum', 'ICD9CM_2010'), +('49.92', 'Insertion of subcutaneous electrical anal stimulator', 'ICD9CM_2010'), +('49.93', 'Other incision of anus', 'ICD9CM_2010'), +('49.94', 'Reduction of anal prolapse', 'ICD9CM_2010'), +('49.95', 'Control of (postoperative) hemorrhage of anus', 'ICD9CM_2010'), +('49.99', 'Other operations on anus', 'ICD9CM_2010'), +('50', 'Operations on liver', 'ICD9CM_2010'), +('50.0', 'Hepatotomy', 'ICD9CM_2010'), +('50.1', 'Diagnostic procedures on liver', 'ICD9CM_2010'), +('50.11', 'Closed (percutaneous) (needle) biopsy of liver', 'ICD9CM_2010'), +('50.12', 'Open biopsy of liver', 'ICD9CM_2010'), +('50.13', 'Transjugular liver biopsy', 'ICD9CM_2010'), +('50.14', 'Laparoscopic liver biopsy', 'ICD9CM_2010'), +('50.19', 'Other diagnostic procedures on liver', 'ICD9CM_2010'), +('50.2', 'Local excision or destruction of liver tissue or lesion', 'ICD9CM_2010'), +('50.21', 'Marsupialization of lesion of liver', 'ICD9CM_2010'), +('50.22', 'Partial hepatectomy', 'ICD9CM_2010'), +('50.23', 'Open ablation of liver lesion or tissue', 'ICD9CM_2010'), +('50.24', 'Percutaneous ablation of liver lesion or tissue', 'ICD9CM_2010'), +('50.25', 'Laparoscopic ablation of liver lesion or tissue', 'ICD9CM_2010'), +('50.26', 'Other and unspecified ablation of liver lesion or tissue', 'ICD9CM_2010'), +('50.29', 'Other destruction of lesion of liver', 'ICD9CM_2010'), +('50.3', 'Lobectomy of liver', 'ICD9CM_2010'), +('50.4', 'Total hepatectomy', 'ICD9CM_2010'), +('50.5', 'Liver transplant', 'ICD9CM_2010'), +('50.51', 'Auxiliary liver transplant', 'ICD9CM_2010'), +('50.59', 'Other transplant of liver', 'ICD9CM_2010'), +('50.6', 'Repair of liver', 'ICD9CM_2010'), +('50.61', 'Closure of laceration of liver', 'ICD9CM_2010'), +('50.69', 'Other repair of liver', 'ICD9CM_2010'), +('50.9', 'Other operations on liver', 'ICD9CM_2010'), +('50.91', 'Percutaneous aspiration of liver', 'ICD9CM_2010'), +('50.92', 'Extracorporeal hepatic assistance', 'ICD9CM_2010'), +('50.93', 'Localized perfusion of liver', 'ICD9CM_2010'), +('50.94', 'Other injection of therapeutic substance into liver', 'ICD9CM_2010'), +('50.99', 'Other operations on liver', 'ICD9CM_2010'), +('51', 'Operations on gallbladder and biliary tract', 'ICD9CM_2010'), +('51.0', 'Cholecystotomy and cholecystostomy', 'ICD9CM_2010'), +('51.01', 'Percutaneous aspiration of gallbladder', 'ICD9CM_2010'), +('51.02', 'Trocar cholecystostomy', 'ICD9CM_2010'), +('51.03', 'Other cholecystostomy', 'ICD9CM_2010'), +('51.04', 'Other cholecystotomy', 'ICD9CM_2010'), +('51.1', 'Diagnostic procedures on biliary tract', 'ICD9CM_2010'), +('51.10', 'Endoscopic retrograde cholangiopancreatography (ERCP)', 'ICD9CM_2010'), +('51.11', 'Endoscopic retrograde cholangiography (ERC)', 'ICD9CM_2010'), +('51.12', 'Percutaneous biopsy of gallbladder or bile ducts', 'ICD9CM_2010'), +('51.13', 'Open biopsy of gallbladder or bile ducts', 'ICD9CM_2010'), +('51.14', 'Other closed (endoscopic) biopsy of biliary duct or sphincter of Oddi', 'ICD9CM_2010'), +('51.15', 'Pressure measurement of sphincter of Oddi', 'ICD9CM_2010'), +('51.19', 'Other diagnostic procedures on biliary tract', 'ICD9CM_2010'), +('51.2', 'Cholecystectomy', 'ICD9CM_2010'), +('51.21', 'Other partial cholecystectomy', 'ICD9CM_2010'), +('51.22', 'Cholecystectomy', 'ICD9CM_2010'), +('51.23', 'Laparoscopic cholecystectomy', 'ICD9CM_2010'), +('51.24', 'Laparoscopic partial cholecystectomy', 'ICD9CM_2010'), +('51.3', 'Anastomosis of gallbladder or bile duct', 'ICD9CM_2010'), +('51.31', 'Anastomosis of gallbladder to hepatic ducts', 'ICD9CM_2010'), +('51.32', 'Anastomosis of gallbladder to intestine', 'ICD9CM_2010'), +('51.33', 'Anastomosis of gallbladder to pancreas', 'ICD9CM_2010'), +('51.34', 'Anastomosis of gallbladder to stomach', 'ICD9CM_2010'), +('51.35', 'Other gallbladder anastomosis', 'ICD9CM_2010'), +('51.36', 'Choledochoenterostomy', 'ICD9CM_2010'), +('51.37', 'Anastomosis of hepatic duct to gastrointestinal tract', 'ICD9CM_2010'), +('51.39', 'Other bile duct anastomosis', 'ICD9CM_2010'), +('51.4', 'Incision of bile duct for relief of obstruction', 'ICD9CM_2010'), +('51.41', 'Common duct exploration for removal of calculus', 'ICD9CM_2010'), +('51.42', 'Common duct exploration for relief of other obstruction', 'ICD9CM_2010'), +('51.43', 'Insertion of choledochohepatic tube for decompression', 'ICD9CM_2010'), +('51.49', 'Incision of other bile ducts for relief of obstruction', 'ICD9CM_2010'), +('51.5', 'Other incision of bile duct', 'ICD9CM_2010'), +('51.51', 'Exploration of common bile duct', 'ICD9CM_2010'), +('51.59', 'Incision of bile duct', 'ICD9CM_2010'), +('51.6', 'Local excision or destruction of lesion or tissue of biliary ducts and sphincter of Oddi', 'ICD9CM_2010'), +('51.61', 'Excision of cystic duct remnant', 'ICD9CM_2010'), +('51.62', 'Excision of ampulla of vater (with reimplantation of common duct)', 'ICD9CM_2010'), +('51.63', 'Other excision of common duct', 'ICD9CM_2010'), +('51.64', 'Endoscopic excision or destruction of lesion of biliary ducts or sphincter of Oddi', 'ICD9CM_2010'), +('51.69', 'Excision of other bile duct', 'ICD9CM_2010'), +('51.7', 'Repair of bile ducts', 'ICD9CM_2010'), +('51.71', 'Simple suture of common bile duct', 'ICD9CM_2010'), +('51.72', 'Choledochoplasty', 'ICD9CM_2010'), +('51.79', 'Repair of other bile ducts', 'ICD9CM_2010'), +('51.8', 'Other operations on biliary ducts and sphincter of Oddi', 'ICD9CM_2010'), +('51.81', 'Dilation of sphincter of Oddi', 'ICD9CM_2010'), +('51.82', 'Pancreatic sphincterotomy', 'ICD9CM_2010'), +('51.83', 'Pancreatic sphincteroplasty', 'ICD9CM_2010'), +('51.84', 'Endoscopic dilation of ampulla and biliary duct', 'ICD9CM_2010'), +('51.85', 'Endoscopic sphincterotomy and papillotomy', 'ICD9CM_2010'), +('51.86', 'Endoscopic insertion of nasobiliary drainage tube', 'ICD9CM_2010'), +('51.87', 'Endoscopic insertion of stent (tube) into bile duct', 'ICD9CM_2010'), +('51.88', 'Endoscopic removal of stone(s) from biliary tract', 'ICD9CM_2010'), +('51.89', 'Other operations on sphincter of Oddi', 'ICD9CM_2010'), +('51.9', 'Other operations on biliary tract', 'ICD9CM_2010'), +('51.91', 'Repair of laceration of gallbladder', 'ICD9CM_2010'), +('51.92', 'Closure of cholecystostomy', 'ICD9CM_2010'), +('51.93', 'Closure of other biliary fistula', 'ICD9CM_2010'), +('51.94', 'Revision of anastomosis of biliary tract', 'ICD9CM_2010'), +('51.95', 'Removal of prosthetic device from bile duct', 'ICD9CM_2010'), +('51.96', 'Percutaneous extraction of common duct stones', 'ICD9CM_2010'), +('51.98', 'Other percutaneous procedures on biliary tract', 'ICD9CM_2010'), +('51.99', 'Other operations on biliary tract', 'ICD9CM_2010'), +('52', 'Operations on pancreas', 'ICD9CM_2010'), +('52.0', 'Pancreatotomy', 'ICD9CM_2010'), +('52.01', 'Drainage of pancreatic cyst by catheter', 'ICD9CM_2010'), +('52.09', 'Other pancreatotomy', 'ICD9CM_2010'), +('52.1', 'Diagnostic procedures on pancreas', 'ICD9CM_2010'), +('52.11', 'Closed [aspiration] [needle][percutaneous] biopsy of pancreas', 'ICD9CM_2010'), +('52.12', 'Open biopsy of pancreas', 'ICD9CM_2010'), +('52.13', 'Endoscopic retrograde pancreatography (ERP)', 'ICD9CM_2010'), +('52.14', 'Closed [endoscopic] biopsy of pancreatic duct', 'ICD9CM_2010'), +('52.19', 'Other diagnostic procedures on pancreas', 'ICD9CM_2010'), +('52.2', 'Local excision or destruction of pancreas and pancreatic duct', 'ICD9CM_2010'), +('52.21', 'Endoscopic excision or destruction of lesion or tissue of pancreatic', 'ICD9CM_2010'), +('52.22', 'Other excision or destruction of lesion or tissue of pancreas or pancreatic duct', 'ICD9CM_2010'), +('52.3', 'Marsupialization of pancreatic cyst', 'ICD9CM_2010'), +('52.4', 'Internal drainage of pancreatic cyst', 'ICD9CM_2010'), +('52.5', 'Partial pancreatectomy', 'ICD9CM_2010'), +('52.51', 'Proximal pancreatectomy', 'ICD9CM_2010'), +('52.52', 'Distal pancreatectomy', 'ICD9CM_2010'), +('52.53', 'Radical subtotal pancreatectomy', 'ICD9CM_2010'), +('52.59', 'Other partial pancreatectomy', 'ICD9CM_2010'), +('52.6', 'Total pancreatectomy', 'ICD9CM_2010'), +('52.7', 'Radical pancreaticoduodenectomy', 'ICD9CM_2010'), +('52.8', 'Transplant of pancreas', 'ICD9CM_2010'), +('52.80', 'Pancreatic transplant, not otherwise specified', 'ICD9CM_2010'), +('52.81', 'Reimplantation of pancreatic tissue', 'ICD9CM_2010'), +('52.82', 'Homotransplant of pancreas', 'ICD9CM_2010'), +('52.83', 'Heterotransplant of pancreas', 'ICD9CM_2010'), +('52.84', 'Autotransplantation of cells of Islets of Langerhans', 'ICD9CM_2010'), +('52.85', 'Allotransplantation of cells of Islets of Langerhans', 'ICD9CM_2010'), +('52.86', 'Transplantation of cells of Islets of Langerhans, not otherwise specified', 'ICD9CM_2010'), +('52.9', 'Other operations on pancreas', 'ICD9CM_2010'), +('52.92', 'Cannulation of pancreatic duct', 'ICD9CM_2010'), +('52.93', 'Endoscopic insertion of stent (tube) into pancreatic duct', 'ICD9CM_2010'), +('52.94', 'Endoscopic removal of stone(s) from pancreatic duct', 'ICD9CM_2010'), +('52.95', 'Other repair of pancreas', 'ICD9CM_2010'), +('52.96', 'Anastomosis of pancreas', 'ICD9CM_2010'), +('52.97', 'Endoscopic insertion of nasopancreatic drainage tube', 'ICD9CM_2010'), +('52.98', 'Endoscopic dilation of pancreatic duct', 'ICD9CM_2010'), +('52.99', 'Other operations on pancreas', 'ICD9CM_2010'), +('53', 'Repair of hernia', 'ICD9CM_2010'), +('53.0', 'Other unilateral repair of inguinal hernia', 'ICD9CM_2010'), +('53.00', 'Unilateral repair of inguinal hernia, not otherwise specified', 'ICD9CM_2010'), +('53.01', 'Other and open repair of direct inguinal hernia', 'ICD9CM_2010'), +('53.02', 'Other and open repair of indirect inguinal hernia', 'ICD9CM_2010'), +('53.03', 'Other and open repair of direct inguinal hernia with graft or prosthesis', 'ICD9CM_2010'), +('53.04', 'Other and open repair of indirect inguinal hernia with graft or prosthesis', 'ICD9CM_2010'), +('53.05', 'Repair of inguinal hernia with graft or prosthesis, not otherwise specified', 'ICD9CM_2010'), +('53.1', 'Other bilateral repair of inguinal hernia', 'ICD9CM_2010'), +('53.10', 'Bilateral repair of inguinal hernia, not otherwise specified', 'ICD9CM_2010'), +('53.11', 'Other and open bilateral repair of direct inguinal hernia', 'ICD9CM_2010'), +('53.12', 'Other and open bilateral repair of indirect inguinal hernia', 'ICD9CM_2010'), +('53.13', 'Other and open bilateral repair of inguinal hernia, one direct and one indirect', 'ICD9CM_2010'), +('53.14', 'Other and open bilateral repair of direct inguinal hernia with graft or prosthesis', 'ICD9CM_2010'), +('53.15', 'Other and open bilateral repair of indirect inguinal hernia with graft or prosthesis', 'ICD9CM_2010'), +('53.16', 'Other and open bilateral repair of inguinal hernia, one direct and one indirect, with graft or prosthesis', 'ICD9CM_2010'), +('53.17', 'Bilateral inguinal hernia repair with graft or prosthesis, not otherwise specified', 'ICD9CM_2010'), +('53.2', 'Unilateral repair of femoral hernia', 'ICD9CM_2010'), +('53.21', 'Unilateral repair of femoral hernia with graft or prosthesis', 'ICD9CM_2010'), +('53.29', 'Other unilateral femoral herniorrhaphy', 'ICD9CM_2010'), +('53.3', 'Bilateral repair of femoral hernia', 'ICD9CM_2010'), +('53.31', 'Bilateral repair of femoral hernia with graft or prosthesis', 'ICD9CM_2010'), +('53.39', 'Other bilateral femoral herniorrhaphy', 'ICD9CM_2010'), +('53.4', 'Repair of umbilical hernia', 'ICD9CM_2010'), +('53.41', 'Other and open repair of umbilical hernia with graft or prosthesis', 'ICD9CM_2010'), +('53.42', 'Laparoscopic repair of umbilical hernia with graft or prosthesis', 'ICD9CM_2010'), +('53.43', 'Other laparoscopic umbilical herniorrhaphy', 'ICD9CM_2010'), +('53.49', 'Other open umbilical herniorrhaphy', 'ICD9CM_2010'), +('53.5', 'Repair of other hernia of anterior abdominal wall (without graft or', 'ICD9CM_2010'), +('53.51', 'Incisional hernia repair', 'ICD9CM_2010'), +('53.59', 'Repair of other hernia of anterior abdominal wall', 'ICD9CM_2010'), +('53.6', 'Repair of other hernia of anterior abdominal wall with graft or prosthesis', 'ICD9CM_2010'), +('53.61', 'Other open incisional hernia repair with graft or prosthesis', 'ICD9CM_2010'), +('53.62', 'Laparoscopic incisional hernia repair with graft or prosthesis', 'ICD9CM_2010'), +('53.63', 'Other laparoscopic repair of other hernia of anterior abdominal wall with graft or prosthesis', 'ICD9CM_2010'), +('53.69', 'Other open repair of other hernia of anterior abdominal wall with graft or prosthesis', 'ICD9CM_2010'), +('53.7', 'Repair of diaphragmatic hernia, abdominal approach', 'ICD9CM_2010'), +('53.71', 'Laparoscopic repair of diaphragmatic hernia, abdominal approach', 'ICD9CM_2010'), +('53.72', 'Other and open repair of diaphragmatic hernia, abdominal approach', 'ICD9CM_2010'), +('53.75', 'Repair of diaphragmatic hernia, abdominal approach, not otherwise specified', 'ICD9CM_2010'), +('53.8', 'Repair of diaphragmatic hernia, thoracic approach', 'ICD9CM_2010'), +('53.80', 'Repair of diaphragmatic hernia with thoracic approach, not otherwise specified', 'ICD9CM_2010'), +('53.81', 'Plication of the diaphragm', 'ICD9CM_2010'), +('53.82', 'Repair of parasternal hernia', 'ICD9CM_2010'), +('53.83', 'Laparoscopic repair of diaphragmatic hernia with thoracic approach', 'ICD9CM_2010'), +('53.84', 'Other and open repair of diaphragmatic hernia, with thoracic approach', 'ICD9CM_2010'), +('53.9', 'Other hernia repair', 'ICD9CM_2010'), +('54', 'Other operations on abdominal region', 'ICD9CM_2010'), +('54.0', 'Incision of abdominal wall', 'ICD9CM_2010'), +('54.1', 'Laparotomy', 'ICD9CM_2010'), +('54.11', 'Exploratory laparotomy', 'ICD9CM_2010'), +('54.12', 'Reopening of recent laparotomy site', 'ICD9CM_2010'), +('54.19', 'Other laparotomy', 'ICD9CM_2010'), +('54.2', 'Diagnostic procedures of abdominal region', 'ICD9CM_2010'), +('54.21', 'Laparoscopy', 'ICD9CM_2010'), +('54.22', 'Biopsy of abdominal wall or umbilicus', 'ICD9CM_2010'), +('54.23', 'Biopsy of peritoneum', 'ICD9CM_2010'), +('54.24', 'Closed [percutaneous] [needle] biopsy of intra-abdominal mass', 'ICD9CM_2010'), +('54.25', 'Peritoneal lavage', 'ICD9CM_2010'), +('54.29', 'Other diagnostic procedures on abdominal region', 'ICD9CM_2010'), +('54.3', 'Excision or destruction of lesion or tissue of abdominal wall or umbilicus', 'ICD9CM_2010'), +('54.4', 'Excision or destruction of peritoneal tissue', 'ICD9CM_2010'), +('54.5', 'Lysis of peritoneal adhesions', 'ICD9CM_2010'), +('54.51', 'Laparoscopic lysis of peritoneal adhesions', 'ICD9CM_2010'), +('54.59', 'Other lysis of peritoneal adhesions', 'ICD9CM_2010'), +('54.6', 'Suture of abdominal wall and peritoneum', 'ICD9CM_2010'), +('54.61', 'Reclosure of postoperative disruption of abdominal wall', 'ICD9CM_2010'), +('54.62', 'Delayed closure of granulating abdominal wound', 'ICD9CM_2010'), +('54.63', 'Other suture of abdominal wall', 'ICD9CM_2010'), +('54.64', 'Suture of peritoneum', 'ICD9CM_2010'), +('54.7', 'Other repair of abdominal wall and peritoneum', 'ICD9CM_2010'), +('54.71', 'Repair of gastroschisis', 'ICD9CM_2010'), +('54.72', 'Other repair of abdominal wall', 'ICD9CM_2010'), +('54.73', 'Other repair of peritoneum', 'ICD9CM_2010'), +('54.74', 'Other repair of omentum', 'ICD9CM_2010'), +('54.75', 'Other repair of mesentery', 'ICD9CM_2010'), +('54.9', 'Other operations of abdominal region', 'ICD9CM_2010'), +('54.91', 'Percutaneous abdominal drainage', 'ICD9CM_2010'), +('54.92', 'Removal of foreign body from peritoneal cavity', 'ICD9CM_2010'), +('54.93', 'Creation of cutaneoperitoneal fistula', 'ICD9CM_2010'), +('54.94', 'Creation of peritoneovascular shunt', 'ICD9CM_2010'), +('54.95', 'Incision of peritoneum', 'ICD9CM_2010'), +('54.96', 'Injection of air into peritoneal cavity', 'ICD9CM_2010'), +('54.97', 'Injection of locally-acting therapeutic substance into peritoneal cavity', 'ICD9CM_2010'), +('54.98', 'Peritoneal dialysis', 'ICD9CM_2010'), +('54.99', 'Other operations of abdominal region', 'ICD9CM_2010'), +('55', 'Operations on kidney', 'ICD9CM_2010'), +('55.0', 'Nephrotomy and nephrostomy', 'ICD9CM_2010'), +('55.01', 'Nephrotomy', 'ICD9CM_2010'), +('55.02', 'Nephrostomy', 'ICD9CM_2010'), +('55.03', 'Percutaneous nephrostomy without fragmentation', 'ICD9CM_2010'), +('55.04', 'Percutaneous nephrostomy with fragmentation', 'ICD9CM_2010'), +('55.1', 'Pyelotomy and pyelostomy', 'ICD9CM_2010'), +('55.11', 'Pyelotomy', 'ICD9CM_2010'), +('55.12', 'Pyelostomy', 'ICD9CM_2010'), +('55.2', 'Diagnostic procedures on kidney', 'ICD9CM_2010'), +('55.21', 'Nephroscopy', 'ICD9CM_2010'), +('55.22', 'Pyeloscopy', 'ICD9CM_2010'), +('55.23', 'Closed [percutaneous] [needle] biopsy of kidney', 'ICD9CM_2010'), +('55.24', 'Open biopsy of kidney', 'ICD9CM_2010'), +('55.29', 'Other diagnostic procedures on kidney', 'ICD9CM_2010'), +('55.3', 'Local excision or destruction of lesion or tissue of kidney', 'ICD9CM_2010'), +('55.31', 'Marsupialization of kidney lesion', 'ICD9CM_2010'), +('55.32', 'Open ablation of renal lesion or tissue', 'ICD9CM_2010'), +('55.33', 'Percutaneous ablation of renal lesion or tissue', 'ICD9CM_2010'), +('55.34', 'Laparoscopic ablation of renal lesion or tissue', 'ICD9CM_2010'), +('55.35', 'Other and unspecified ablation of renal lesion or tissue', 'ICD9CM_2010'), +('55.39', 'Other local destruction or excision of renal lesion or tissue', 'ICD9CM_2010'), +('55.4', 'Partial nephrectomy', 'ICD9CM_2010'), +('55.5', 'Complete nephrectomy', 'ICD9CM_2010'), +('55.51', 'Nephroureterectomy', 'ICD9CM_2010'), +('55.52', 'Nephrectomy of remaining kidney', 'ICD9CM_2010'), +('55.53', 'Removal of transplanted or rejected kidney', 'ICD9CM_2010'), +('55.54', 'Bilateral nephrectomy', 'ICD9CM_2010'), +('55.6', 'Transplant of kidney', 'ICD9CM_2010'), +('55.61', 'Renal autotransplantation', 'ICD9CM_2010'), +('55.69', 'Other kidney transplantation', 'ICD9CM_2010'), +('55.7', 'Nephropexy', 'ICD9CM_2010'), +('55.8', 'Other repair of kidney', 'ICD9CM_2010'), +('55.81', 'Suture of laceration of kidney', 'ICD9CM_2010'), +('55.82', 'Closure of nephrostomy and pyelostomy', 'ICD9CM_2010'), +('55.83', 'Closure of other fistula of kidney', 'ICD9CM_2010'), +('55.84', 'Reduction of torsion of renal pedicle', 'ICD9CM_2010'), +('55.85', 'Symphysiotomy for horseshoe kidney', 'ICD9CM_2010'), +('55.86', 'Anastomosis of kidney', 'ICD9CM_2010'), +('55.87', 'Correction of ureteropelvic junction', 'ICD9CM_2010'), +('55.89', 'Other repair of kidney', 'ICD9CM_2010'), +('55.9', 'Other operations on kidney', 'ICD9CM_2010'), +('55.91', 'Decapsulation of kidney', 'ICD9CM_2010'), +('55.92', 'Percutaneous aspiration of kidney (pelvis)', 'ICD9CM_2010'), +('55.93', 'Replacement of nephrostomy tube', 'ICD9CM_2010'), +('55.94', 'Replacement of pyelostomy tube', 'ICD9CM_2010'), +('55.95', 'Local perfusion of kidney', 'ICD9CM_2010'), +('55.96', 'Other injection of therapeutic substance into kidney', 'ICD9CM_2010'), +('55.97', 'Implantation or replacement of mechanical kidney', 'ICD9CM_2010'), +('55.98', 'Removal of mechanical kidney', 'ICD9CM_2010'), +('55.99', 'Other operations on kidney', 'ICD9CM_2010'), +('56', 'Operations on ureter', 'ICD9CM_2010'), +('56.0', 'Transurethral removal of obstruction from ureter and renal pelvis', 'ICD9CM_2010'), +('56.1', 'Ureteral meatotomy', 'ICD9CM_2010'), +('56.2', 'Ureterotomy', 'ICD9CM_2010'), +('56.3', 'Diagnostic procedures on ureter', 'ICD9CM_2010'), +('56.31', 'Ureteroscopy', 'ICD9CM_2010'), +('56.32', 'Closed percutaneous biopsy of ureter', 'ICD9CM_2010'), +('56.33', 'Closed endoscopic biopsy of ureter', 'ICD9CM_2010'), +('56.34', 'Open biopsy of ureter', 'ICD9CM_2010'), +('56.35', 'Endoscopy (cystoscopy) (looposcopy) of ileal conduit', 'ICD9CM_2010'), +('56.39', 'Other diagnostic procedures on ureter', 'ICD9CM_2010'), +('56.4', 'Ureterectomy', 'ICD9CM_2010'), +('56.40', 'Ureterectomy, not otherwise specified', 'ICD9CM_2010'), +('56.41', 'Partial ureterectomy', 'ICD9CM_2010'), +('56.42', 'Total ureterectomy', 'ICD9CM_2010'), +('56.5', 'Cutaneous uretero-ileostomy', 'ICD9CM_2010'), +('56.51', 'Formation of cutaneous uretero-ileostomy', 'ICD9CM_2010'), +('56.52', 'Revision of cutaneous uretero-ileostomy', 'ICD9CM_2010'), +('56.6', 'Other external urinary diversion', 'ICD9CM_2010'), +('56.61', 'Formation of other cutaneous ureterostomy', 'ICD9CM_2010'), +('56.62', 'Revision of other cutaneous ureterostomy', 'ICD9CM_2010'), +('56.7', 'Other anastomosis or bypass of ureter', 'ICD9CM_2010'), +('56.71', 'Urinary diversion to intestine', 'ICD9CM_2010'), +('56.72', 'Revision of ureterointestinal anastomosis', 'ICD9CM_2010'), +('56.73', 'Nephrocystanastomosis, not otherwise specified', 'ICD9CM_2010'), +('56.74', 'Ureteroneocystostomy', 'ICD9CM_2010'); +INSERT INTO `icd9` (`ID_ICD9`, `Prosedur`, `Versi_ICD9`) VALUES +('56.75', 'Transureteroureterostomy', 'ICD9CM_2010'), +('56.79', 'Other anastomosis or bypass of ureter', 'ICD9CM_2010'), +('56.8', 'Repair of ureter', 'ICD9CM_2010'), +('56.81', 'Lysis of intraluminal adhesions of ureter', 'ICD9CM_2010'), +('56.82', 'Suture of laceration of ureter', 'ICD9CM_2010'), +('56.83', 'Closure of ureterostomy', 'ICD9CM_2010'), +('56.84', 'Closure of other fistula of ureter', 'ICD9CM_2010'), +('56.85', 'Ureteropexy', 'ICD9CM_2010'), +('56.86', 'Removal of ligature from ureter', 'ICD9CM_2010'), +('56.89', 'Other repair of ureter', 'ICD9CM_2010'), +('56.9', 'Other operations on ureter', 'ICD9CM_2010'), +('56.91', 'Dilation of ureteral meatus', 'ICD9CM_2010'), +('56.92', 'Implantation of electronic ureteral stimulator', 'ICD9CM_2010'), +('56.93', 'Replacement of electronic ureteral stimulator', 'ICD9CM_2010'), +('56.94', 'Removal of electronic ureteral stimulator', 'ICD9CM_2010'), +('56.95', 'Ligation of ureter', 'ICD9CM_2010'), +('56.99', 'Other operations on ureter', 'ICD9CM_2010'), +('57', 'Operations on urinary bladder', 'ICD9CM_2010'), +('57.0', 'Transurethral clearance of bladder', 'ICD9CM_2010'), +('57.1', 'Cystotomy and cystostomy', 'ICD9CM_2010'), +('57.11', 'Percutaneous aspiration of bladder', 'ICD9CM_2010'), +('57.12', 'Lysis of intraluminal adhesions with incision into bladder', 'ICD9CM_2010'), +('57.17', 'Percutaneous cystostomy', 'ICD9CM_2010'), +('57.18', 'Other suprapubic cystostomy', 'ICD9CM_2010'), +('57.19', 'Other cystotomy', 'ICD9CM_2010'), +('57.2', 'Vesicostomy', 'ICD9CM_2010'), +('57.21', 'Vesicostomy', 'ICD9CM_2010'), +('57.22', 'Revision or closure of vesicostomy', 'ICD9CM_2010'), +('57.3', 'Diagnostic procedures on bladder', 'ICD9CM_2010'), +('57.31', 'Cystoscopy through artificial stoma', 'ICD9CM_2010'), +('57.32', 'Other cystoscopy', 'ICD9CM_2010'), +('57.33', 'Closed [transurethral] biopsy of bladder', 'ICD9CM_2010'), +('57.34', 'Open biopsy of bladder', 'ICD9CM_2010'), +('57.39', 'Other diagnostic procedures on bladder', 'ICD9CM_2010'), +('57.4', 'Transurethral excision or destruction of bladder tissue', 'ICD9CM_2010'), +('57.41', 'Transurethral lysis of intraluminal adhesions', 'ICD9CM_2010'), +('57.49', 'Other transurethral excision or destruction of lesion or tissue of bladder', 'ICD9CM_2010'), +('57.5', 'Other excision or destruction of bladder tissue', 'ICD9CM_2010'), +('57.51', 'Excision of urachus', 'ICD9CM_2010'), +('57.59', 'Open excision or destruction of other lesion or tissue of bladder', 'ICD9CM_2010'), +('57.6', 'Partial cystectomy', 'ICD9CM_2010'), +('57.7', 'Total cystectomy', 'ICD9CM_2010'), +('57.71', 'Radical cystectomy', 'ICD9CM_2010'), +('57.79', 'Other total cystectomy', 'ICD9CM_2010'), +('57.8', 'Other repair of urinary bladder', 'ICD9CM_2010'), +('57.81', 'Suture of laceration of bladder', 'ICD9CM_2010'), +('57.82', 'Closure of cystostomy', 'ICD9CM_2010'), +('57.83', 'Repair of fistula involving bladder and intestine', 'ICD9CM_2010'), +('57.84', 'Repair of other fistula of bladder', 'ICD9CM_2010'), +('57.85', 'Cystourethroplasty and plastic repair of bladder neck', 'ICD9CM_2010'), +('57.86', 'Repair of bladder exstrophy', 'ICD9CM_2010'), +('57.87', 'Reconstruction of urinary bladder', 'ICD9CM_2010'), +('57.88', 'Other anastomosis of bladder', 'ICD9CM_2010'), +('57.89', 'Other repair of bladder', 'ICD9CM_2010'), +('57.9', 'Other operations on bladder', 'ICD9CM_2010'), +('57.91', 'Sphincterotomy of bladder', 'ICD9CM_2010'), +('57.92', 'Dilation of bladder neck', 'ICD9CM_2010'), +('57.93', 'Control of (postoperative) hemorrhage of bladder', 'ICD9CM_2010'), +('57.94', 'Insertion of indwelling urinary catheter', 'ICD9CM_2010'), +('57.95', 'Replacement of indwelling urinary catheter', 'ICD9CM_2010'), +('57.96', 'Implantation of electronic bladder stimulator', 'ICD9CM_2010'), +('57.97', 'Replacement of electronic bladder stimulator', 'ICD9CM_2010'), +('57.98', 'Removal of electronic bladder stimulator', 'ICD9CM_2010'), +('57.99', 'Other operations on bladder', 'ICD9CM_2010'), +('58', 'Operations on urethra', 'ICD9CM_2010'), +('58.0', 'Urethrotomy', 'ICD9CM_2010'), +('58.1', 'Urethral meatotomy', 'ICD9CM_2010'), +('58.2', 'Diagnostic procedures on urethra', 'ICD9CM_2010'), +('58.21', 'Perineal urethroscopy', 'ICD9CM_2010'), +('58.22', 'Other urethroscopy', 'ICD9CM_2010'), +('58.23', 'Biopsy of urethra', 'ICD9CM_2010'), +('58.24', 'Biopsy of periurethral tissue', 'ICD9CM_2010'), +('58.29', 'Other diagnostic procedures on urethra and periurethral tissue', 'ICD9CM_2010'), +('58.3', 'Excision or destruction of lesion or tissue of urethra', 'ICD9CM_2010'), +('58.31', 'Endoscopic excision or destruction of lesion or tissue of urethra', 'ICD9CM_2010'), +('58.39', 'Other local excision or destruction of lesion or tissue of urethra', 'ICD9CM_2010'), +('58.4', 'Repair of urethra', 'ICD9CM_2010'), +('58.41', 'Suture of laceration of urethra', 'ICD9CM_2010'), +('58.42', 'Closure of urethrostomy', 'ICD9CM_2010'), +('58.43', 'Closure of other fistula of urethra', 'ICD9CM_2010'), +('58.44', 'Reanastomosis of urethra', 'ICD9CM_2010'), +('58.45', 'Repair of hypospadias or epispadias', 'ICD9CM_2010'), +('58.46', 'Other reconstruction of urethra', 'ICD9CM_2010'), +('58.47', 'Urethral meatoplasty', 'ICD9CM_2010'), +('58.49', 'Other repair of urethra', 'ICD9CM_2010'), +('58.5', 'Release of urethral stricture', 'ICD9CM_2010'), +('58.6', 'Dilation of urethra', 'ICD9CM_2010'), +('58.9', 'Other operations on urethra and periurethral tissue', 'ICD9CM_2010'), +('58.91', 'Incision of periurethral tissue', 'ICD9CM_2010'), +('58.92', 'Excision of periurethral tissue', 'ICD9CM_2010'), +('58.93', 'Implantation of artificial urinary sphincter (AUS)', 'ICD9CM_2010'), +('58.99', 'Other operations on urethra and periurethral tissue', 'ICD9CM_2010'), +('59', 'Other operations on urinary tract', 'ICD9CM_2010'), +('59.0', 'Dissection of retroperitoneal tissue', 'ICD9CM_2010'), +('59.00', 'Retroperitoneal dissection, not otherwise specified', 'ICD9CM_2010'), +('59.02', 'Other lysis of perirenal or periureteral adhesions', 'ICD9CM_2010'), +('59.03', 'Laparoscopic lysis of perirenal or periureteral adhesions', 'ICD9CM_2010'), +('59.09', 'Other incision of perirenal or periureteral tissue', 'ICD9CM_2010'), +('59.1', 'Incision of perivesical tissue', 'ICD9CM_2010'), +('59.11', 'Other lysis of perivesical adhesions', 'ICD9CM_2010'), +('59.12', 'Laparoscopic lysis of perivesical adhesions', 'ICD9CM_2010'), +('59.19', 'Other incision of perivesical tissue', 'ICD9CM_2010'), +('59.2', 'Diagnostic procedures on perirenal and perivesical tissue', 'ICD9CM_2010'), +('59.21', 'Biopsy of perirenal or perivesical tissue', 'ICD9CM_2010'), +('59.29', 'Other diagnostic procedures on perirenal tissue, perivesical tissue, and retroperitoneum', 'ICD9CM_2010'), +('59.3', 'Plication of urethrovesical junction', 'ICD9CM_2010'), +('59.4', 'Suprapubic sling operation', 'ICD9CM_2010'), +('59.5', 'Retropubic urethral suspension', 'ICD9CM_2010'), +('59.6', 'Paraurethral suspension', 'ICD9CM_2010'), +('59.7', 'Other repair of urinary stress incontinence', 'ICD9CM_2010'), +('59.71', 'Levator muscle operation for urethrovesical suspension', 'ICD9CM_2010'), +('59.72', 'Injection of implant into urethra and/or bladder neck', 'ICD9CM_2010'), +('59.79', 'Other repair of urinary stress incontinence', 'ICD9CM_2010'), +('59.8', 'Ureteral catheterization', 'ICD9CM_2010'), +('59.9', 'Other operations on urinary system', 'ICD9CM_2010'), +('59.91', 'Excision of perirenal or perivesical tissue', 'ICD9CM_2010'), +('59.92', 'Other operations on perirenal or perivesical tissue', 'ICD9CM_2010'), +('59.93', 'Replacement of ureterostomy tube', 'ICD9CM_2010'), +('59.94', 'Replacement of cystostomy tube', 'ICD9CM_2010'), +('59.95', 'Ultrasonic fragmentation of urinary stones', 'ICD9CM_2010'), +('59.99', 'Other operations on urinary system', 'ICD9CM_2010'), +('60', 'Operations on prostate and seminal vesicles', 'ICD9CM_2010'), +('60.0', 'Incision of prostate', 'ICD9CM_2010'), +('60.1', 'Diagnostic procedures on prostate and seminal vesicles', 'ICD9CM_2010'), +('60.11', 'Closed [percutaneous] [needle] biopsy of prostate', 'ICD9CM_2010'), +('60.12', 'Open biopsy of prostate', 'ICD9CM_2010'), +('60.13', 'Closed [percutaneous] biopsy of seminal vesicles', 'ICD9CM_2010'), +('60.14', 'Open biopsy of seminal vesicles', 'ICD9CM_2010'), +('60.15', 'Biopsy of periprostatic tissue', 'ICD9CM_2010'), +('60.18', 'Other diagnostic procedures on prostate and periprostatic tissue', 'ICD9CM_2010'), +('60.19', 'Other diagnostic procedures on seminal vesicles', 'ICD9CM_2010'), +('60.2', 'Transurethral prostatectomy', 'ICD9CM_2010'), +('60.21', 'Transurethral (ultrasound) guided laser induced prostatectomy (TULIP)', 'ICD9CM_2010'), +('60.29', 'Other transurethral prostatectomy', 'ICD9CM_2010'), +('60.3', 'Suprapubic prostatectomy', 'ICD9CM_2010'), +('60.4', 'Retropubic prostatectomy', 'ICD9CM_2010'), +('60.5', 'Radical prostatectomy', 'ICD9CM_2010'), +('60.6', 'Other prostatectomy', 'ICD9CM_2010'), +('60.61', 'Local excision of lesion of prostate', 'ICD9CM_2010'), +('60.62', 'Perineal prostatectomy', 'ICD9CM_2010'), +('60.69', 'Other prostatectomy', 'ICD9CM_2010'), +('60.7', 'Operations on seminal vesicles', 'ICD9CM_2010'), +('60.71', 'Percutaneous aspiration of seminal vesicle', 'ICD9CM_2010'), +('60.72', 'Incision of seminal vesicle', 'ICD9CM_2010'), +('60.73', 'Excision of seminal vesicle', 'ICD9CM_2010'), +('60.79', 'Other operations on seminal vesicles', 'ICD9CM_2010'), +('60.8', 'Incision or excision of periprostatic tissue', 'ICD9CM_2010'), +('60.81', 'Incision of periprostatic tissue', 'ICD9CM_2010'), +('60.82', 'Excision of periprostatic tissue', 'ICD9CM_2010'), +('60.9', 'Other operations on prostate', 'ICD9CM_2010'), +('60.91', 'Percutaneous aspiration of prostate', 'ICD9CM_2010'), +('60.92', 'Injection into prostate test link', 'ICD9CM_2010'), +('60.93', 'Repair of prostate', 'ICD9CM_2010'), +('60.94', 'Control of (postoperative) hemorrhage of prostate', 'ICD9CM_2010'), +('60.95', 'Transurethral balloon dilation of the prostatic urethra', 'ICD9CM_2010'), +('60.96', 'Transurethral destruction of prostate tissue by microwave thermotherapy', 'ICD9CM_2010'), +('60.97', 'Other transurethral destruction of prostate tissue by other thermotherapy', 'ICD9CM_2010'), +('60.99', 'Other operations on prostate', 'ICD9CM_2010'), +('61', 'Operations on scrotum and tunica vaginalis', 'ICD9CM_2010'), +('61.0', 'Incision and drainage of scrotum and tunica vaginalis', 'ICD9CM_2010'), +('61.1', 'Diagnostic procedures on scrotum and tunica vaginalis', 'ICD9CM_2010'), +('61.11', 'Biopsy of scrotum or tunica vaginalis', 'ICD9CM_2010'), +('61.19', 'Other diagnostic procedures on scrotum and tunica vaginalis', 'ICD9CM_2010'), +('61.2', 'Excision of hydrocele (of tunica vaginalis)', 'ICD9CM_2010'), +('61.3', 'Excision or destruction of lesion or tissue of scrotum', 'ICD9CM_2010'), +('61.4', 'Repair of scrotum and tunica vaginalis', 'ICD9CM_2010'), +('61.41', 'Suture of laceration of scrotum and tunica vaginalis', 'ICD9CM_2010'), +('61.42', 'Repair of scrotal fistula', 'ICD9CM_2010'), +('61.49', 'Other repair of scrotum and tunica vaginalis', 'ICD9CM_2010'), +('61.9', 'Other operations on scrotum and tunica vaginalis', 'ICD9CM_2010'), +('61.91', 'Percutaneous aspiration of tunica vaginalis', 'ICD9CM_2010'), +('61.92', 'Excision of lesion of tunica vaginalis other than hydrocele', 'ICD9CM_2010'), +('61.99', 'Other operations on scrotum and tunica vaginalis', 'ICD9CM_2010'), +('62', 'Operations on testes', 'ICD9CM_2010'), +('62.0', 'Incision of testis', 'ICD9CM_2010'), +('62.1', 'Diagnostic procedures on testes', 'ICD9CM_2010'), +('62.11', 'Closed (percutaneous) (needle) biopsy of testis', 'ICD9CM_2010'), +('62.12', 'Open biopsy of testis', 'ICD9CM_2010'), +('62.19', 'Other diagnostic procedures on testes', 'ICD9CM_2010'), +('62.2', 'Excision or destruction of testicular lesion', 'ICD9CM_2010'), +('62.3', 'Unilateral orchiectomy', 'ICD9CM_2010'), +('62.4', 'Bilateral orchiectomy', 'ICD9CM_2010'), +('62.41', 'Removal of both testes at same operative episode', 'ICD9CM_2010'), +('62.42', 'Removal of remaining testis', 'ICD9CM_2010'), +('62.5', 'Orchiopexy', 'ICD9CM_2010'), +('62.6', 'Repair of testes', 'ICD9CM_2010'), +('62.61', 'Suture of laceration of testis', 'ICD9CM_2010'), +('62.69', 'Other repair of testis', 'ICD9CM_2010'), +('62.7', 'Insertion of testicular prosthesis', 'ICD9CM_2010'), +('62.9', 'Other operations on testes', 'ICD9CM_2010'), +('62.91', 'Aspiration of testis', 'ICD9CM_2010'), +('62.92', 'Injection of therapeutic substance into testis', 'ICD9CM_2010'), +('62.99', 'Other operations on testes', 'ICD9CM_2010'), +('63', 'Operations on spermatic cord, epididymis, and vas deferens', 'ICD9CM_2010'), +('63.0', 'Diagnostic procedures on spermatic cord, epididymis, and vas deferens', 'ICD9CM_2010'), +('63.01', 'Biopsy of spermatic cord, epididymis, or vas deferens', 'ICD9CM_2010'), +('63.09', 'Other diagnostic procedures on spermatic cord, epididymis, and vas deferens', 'ICD9CM_2010'), +('63.1', 'Excision of varicocele and hydrocele of spermatic cord', 'ICD9CM_2010'), +('63.2', 'Excision of cyst of epididymis', 'ICD9CM_2010'), +('63.3', 'Excision of other lesion or tissue of spermatic cord and epididymis', 'ICD9CM_2010'), +('63.4', 'Epididymectomy', 'ICD9CM_2010'), +('63.5', 'Repair of spermatic cord and epididymis', 'ICD9CM_2010'), +('63.51', 'Suture of laceration of spermatic cord and epididymis', 'ICD9CM_2010'), +('63.52', 'Reduction of torsion of testis or spermatic cord', 'ICD9CM_2010'), +('63.53', 'Transplantation of spermatic cord', 'ICD9CM_2010'), +('63.59', 'Other repair of spermatic cord and epididymis', 'ICD9CM_2010'), +('63.6', 'Vasotomy', 'ICD9CM_2010'), +('63.7', 'Vasectomy and ligation of vas deferens', 'ICD9CM_2010'), +('63.70', 'Male sterilization procedure, not otherwise specified', 'ICD9CM_2010'), +('63.71', 'Ligation of vas deferens', 'ICD9CM_2010'), +('63.72', 'Ligation of spermatic cord', 'ICD9CM_2010'), +('63.73', 'Vasectomy', 'ICD9CM_2010'), +('63.8', 'Repair of vas deferens and epididymis', 'ICD9CM_2010'), +('63.81', 'Suture of laceration of vas deferens and epididymis', 'ICD9CM_2010'), +('63.82', 'Reconstruction of surgically divided vas deferens', 'ICD9CM_2010'), +('63.83', 'Epididymovasostomy', 'ICD9CM_2010'), +('63.84', 'Removal of ligature from vas deferens', 'ICD9CM_2010'), +('63.85', 'Removal of valve from vas deferens', 'ICD9CM_2010'), +('63.89', 'Other repair of vas deferens and epididymis', 'ICD9CM_2010'), +('63.9', 'Other operations on spermatic cord, epididymis, and vas deferens', 'ICD9CM_2010'), +('63.91', 'Aspiration of spermatocele', 'ICD9CM_2010'), +('63.92', 'Epididymotomy', 'ICD9CM_2010'), +('63.93', 'Incision of spermatic cord', 'ICD9CM_2010'), +('63.94', 'Lysis of adhesions of spermatic cord', 'ICD9CM_2010'), +('63.95', 'Insertion of valve in vas deferens', 'ICD9CM_2010'), +('63.99', 'Other operations on spermatic card, epididymis, and vas deferens', 'ICD9CM_2010'), +('64', 'Operations on penis', 'ICD9CM_2010'), +('64.0', 'Circumcision', 'ICD9CM_2010'), +('64.1', 'Diagnostic procedures on the penis', 'ICD9CM_2010'), +('64.11', 'Biopsy of penis', 'ICD9CM_2010'), +('64.19', 'Other diagnostic procedures on penis', 'ICD9CM_2010'), +('64.2', 'Local excision or destruction of lesion of penis', 'ICD9CM_2010'), +('64.3', 'Amputation of penis', 'ICD9CM_2010'), +('64.4', 'Repair and plastic operation on penis', 'ICD9CM_2010'), +('64.41', 'Suture of laceration of penis', 'ICD9CM_2010'), +('64.42', 'Release of chordee', 'ICD9CM_2010'), +('64.43', 'Construction of penis', 'ICD9CM_2010'), +('64.44', 'Reconstruction of penis', 'ICD9CM_2010'), +('64.45', 'Replantation of penis', 'ICD9CM_2010'), +('64.49', 'Other repair of penis', 'ICD9CM_2010'), +('64.5', 'Operations for sex transformation, not elsewhere classified', 'ICD9CM_2010'), +('64.9', 'Other operations on male genital organs', 'ICD9CM_2010'), +('64.91', 'Dorsal or lateral slit of prepuce', 'ICD9CM_2010'), +('64.92', 'Incision of penis', 'ICD9CM_2010'), +('64.93', 'Division of penile adhesions', 'ICD9CM_2010'), +('64.94', 'Fitting of external prosthesis of penis', 'ICD9CM_2010'), +('64.95', 'Insertion or replacement of non-inflatable penile prosthesis', 'ICD9CM_2010'), +('64.96', 'Removal of internal prosthesis of penis', 'ICD9CM_2010'), +('64.97', 'Insertion or replacement of inflatable penile prosthesis', 'ICD9CM_2010'), +('64.98', 'Other operations on penis', 'ICD9CM_2010'), +('64.99', 'Other operations on male genital organs', 'ICD9CM_2010'), +('65', 'Operations on ovary', 'ICD9CM_2010'), +('65.0', 'Oophorotomy', 'ICD9CM_2010'), +('65.01', 'Laparoscopic oophorotomy', 'ICD9CM_2010'), +('65.09', 'Other oophorotomy', 'ICD9CM_2010'), +('65.1', 'Diagnostic procedures on ovaries', 'ICD9CM_2010'), +('65.11', 'Aspiration biopsy of ovary', 'ICD9CM_2010'), +('65.12', 'Other biopsy of ovary', 'ICD9CM_2010'), +('65.13', 'Laparoscopic biopsy of ovary', 'ICD9CM_2010'), +('65.14', 'Other laparoscopic diagnostic procedures on ovaries', 'ICD9CM_2010'), +('65.19', 'Other diagnostic procedures on ovaries', 'ICD9CM_2010'), +('65.2', 'Local excision or destruction of ovarian lesion or tissue', 'ICD9CM_2010'), +('65.21', 'Marsupialization of ovarian cyst', 'ICD9CM_2010'), +('65.22', 'Wedge resection of ovary', 'ICD9CM_2010'), +('65.23', 'Laparoscopic marsupialization of ovarian cyst', 'ICD9CM_2010'), +('65.24', 'Laparoscopic wedge resection of ovary', 'ICD9CM_2010'), +('65.25', 'Other laparoscopic local excision or destruction of ovary', 'ICD9CM_2010'), +('65.29', 'Other local excision or destruction of ovary', 'ICD9CM_2010'), +('65.3', 'Unilateral oophorectomy', 'ICD9CM_2010'), +('65.31', 'Laparoscopic unilateral oophorectomy', 'ICD9CM_2010'), +('65.39', 'Other unilateral oophorectomy', 'ICD9CM_2010'), +('65.4', 'Unilateral salpingo-oophorectomy', 'ICD9CM_2010'), +('65.41', 'Laparoscopic unilateral salpingo-oophorectomy', 'ICD9CM_2010'), +('65.49', 'Other unilateral salpingo-oophorectomy', 'ICD9CM_2010'), +('65.5', 'Bilateral oophorectomy', 'ICD9CM_2010'), +('65.51', 'Other removal of both ovaries at same operative episode', 'ICD9CM_2010'), +('65.52', 'Other removal of remaining ovary', 'ICD9CM_2010'), +('65.53', 'Laparoscopic removal of both ovaries at same operative episode', 'ICD9CM_2010'), +('65.54', 'Laparoscopic removal of remaining ovary', 'ICD9CM_2010'), +('65.6', 'Bilateral salpingo-oophorectomy', 'ICD9CM_2010'), +('65.61', 'Other removal of both ovaries and tubes at same operative episode', 'ICD9CM_2010'), +('65.62', 'Other removal of remaining ovary and tube', 'ICD9CM_2010'), +('65.63', 'Laparoscopic removal of both ovaries and tubes at the same operative episode', 'ICD9CM_2010'), +('65.64', 'Laparoscopic removal of remaining ovary and tube', 'ICD9CM_2010'), +('65.7', 'Repair of ovary', 'ICD9CM_2010'), +('65.71', 'Other simple suture of ovary', 'ICD9CM_2010'), +('65.72', 'Other reimplantation of ovary', 'ICD9CM_2010'), +('65.73', 'Other salpingo-oophoroplasty', 'ICD9CM_2010'), +('65.74', 'Laparoscopic simple suture of ovary', 'ICD9CM_2010'), +('65.75', 'Laparoscopic reimplantation of ovary', 'ICD9CM_2010'), +('65.76', 'Laparoscopic salpingo-oophoroplasty', 'ICD9CM_2010'), +('65.79', 'Other repair of ovary', 'ICD9CM_2010'), +('65.8', 'Lysis of adhesions of ovary and fallopian tube', 'ICD9CM_2010'), +('65.81', 'Laparoscopic lysis of adhesions of ovary and fallopian tube', 'ICD9CM_2010'), +('65.89', 'Other lysis of adhesions of ovary and fallopian tube', 'ICD9CM_2010'), +('65.9', 'Other operations on ovary', 'ICD9CM_2010'), +('65.91', 'Aspiration of ovary', 'ICD9CM_2010'), +('65.92', 'Transplantation of ovary', 'ICD9CM_2010'), +('65.93', 'Manual rupture of ovarian cyst', 'ICD9CM_2010'), +('65.94', 'Ovarian denervation', 'ICD9CM_2010'), +('65.95', 'Release of torsion of ovary', 'ICD9CM_2010'), +('65.99', 'Other operations on ovary', 'ICD9CM_2010'), +('66', 'Operations on fallopian tubes', 'ICD9CM_2010'), +('66.0', 'Salpingotomy and salpingostomy', 'ICD9CM_2010'), +('66.01', 'Salpingotomy', 'ICD9CM_2010'), +('66.02', 'Salpingostomy', 'ICD9CM_2010'), +('66.1', 'Diagnostic procedures on fallopian tubes', 'ICD9CM_2010'), +('66.11', 'Biopsy of fallopian tube', 'ICD9CM_2010'), +('66.19', 'Other diagnostic procedures on fallopian tubes', 'ICD9CM_2010'), +('66.2', 'Bilateral endoscopic destruction or occlusion of fallopian tubes', 'ICD9CM_2010'), +('66.21', 'Bilateral endoscopic ligation and crushing of fallopian tubes', 'ICD9CM_2010'), +('66.22', 'Bilateral endoscopic ligation and division of fallopian tubes', 'ICD9CM_2010'), +('66.29', 'Other bilateral endoscopic destruction or occlusion of fallopian tubes', 'ICD9CM_2010'), +('66.3', 'Other bilateral destruction or occlusion of fallopian tubes', 'ICD9CM_2010'), +('66.31', 'Other bilateral ligation and crushing of fallopian tubes', 'ICD9CM_2010'), +('66.32', 'Other bilateral ligation and division of fallopian tubes', 'ICD9CM_2010'), +('66.39', 'Other bilateral destruction or occlusion of fallopian tubes', 'ICD9CM_2010'), +('66.4', 'Total unilateral salpingectomy', 'ICD9CM_2010'), +('66.5', 'Total bilateral salpingectomy', 'ICD9CM_2010'), +('66.51', 'Removal of both fallopian tubes at same operative episode', 'ICD9CM_2010'), +('66.52', 'Removal of remaining fallopian tube', 'ICD9CM_2010'), +('66.6', 'Other salpingectomy', 'ICD9CM_2010'), +('66.61', 'Excision or destruction of lesion of fallopian tube', 'ICD9CM_2010'), +('66.62', 'Salpingectomy with removal of tubal pregnancy', 'ICD9CM_2010'), +('66.63', 'Bilateral partial salpingectomy, not otherwise specified', 'ICD9CM_2010'), +('66.69', 'Other partial salpingectomy', 'ICD9CM_2010'), +('66.7', 'Repair of fallopian tube', 'ICD9CM_2010'), +('66.71', 'Simple suture of fallopian tube', 'ICD9CM_2010'), +('66.72', 'Salpingo-oophorostomy', 'ICD9CM_2010'), +('66.73', 'Salpingo-salpingostomy', 'ICD9CM_2010'), +('66.74', 'Salpingo-uterostomy', 'ICD9CM_2010'), +('66.79', 'Other repair of fallopian tube', 'ICD9CM_2010'), +('66.8', 'Insufflation of fallopian tube', 'ICD9CM_2010'), +('66.9', 'Other operations on fallopian tubes', 'ICD9CM_2010'), +('66.91', 'Aspiration of fallopian tube', 'ICD9CM_2010'), +('66.92', 'Unilateral destruction or occlusion of fallopian tube', 'ICD9CM_2010'), +('66.93', 'Implantation or replacement of prosthesis of fallopian tube', 'ICD9CM_2010'), +('66.94', 'Removal of prosthesis of fallopian tube', 'ICD9CM_2010'), +('66.95', 'Insufflation of therapeutic agent into fallopian tubes', 'ICD9CM_2010'), +('66.96', 'Dilation of fallopian tube', 'ICD9CM_2010'), +('66.97', 'Burying of fimbriae in uterine wall', 'ICD9CM_2010'), +('66.99', 'Other operations on fallopian tubes', 'ICD9CM_2010'), +('67', 'Operations on cervix', 'ICD9CM_2010'), +('67.0', 'Dilation of cervical canal', 'ICD9CM_2010'), +('67.1', 'Diagnostic procedures on cervix', 'ICD9CM_2010'), +('67.11', 'Endocervical biopsy', 'ICD9CM_2010'), +('67.12', 'Other cervical biopsy', 'ICD9CM_2010'), +('67.19', 'Other diagnostic procedures on cervix', 'ICD9CM_2010'), +('67.2', 'Conization of cervix', 'ICD9CM_2010'), +('67.3', 'Other excision or destruction of lesion or tissue of cervix', 'ICD9CM_2010'), +('67.31', 'Marsupialization of cervical cyst', 'ICD9CM_2010'), +('67.32', 'Destruction of lesion of cervix by cauterization', 'ICD9CM_2010'), +('67.33', 'Destruction of lesion of cervix by cryosurgery', 'ICD9CM_2010'), +('67.39', 'Other excision or destruction of lesion or tissue of cervix', 'ICD9CM_2010'), +('67.4', 'Amputation of cervix', 'ICD9CM_2010'), +('67.5', 'Repair of internal cervical os', 'ICD9CM_2010'), +('67.51', 'Transabdominal cerclage of cervix', 'ICD9CM_2010'), +('67.59', 'Other repair of internal cervical os', 'ICD9CM_2010'), +('67.6', 'Other repair of cervix', 'ICD9CM_2010'), +('67.61', 'Suture of laceration of cervix', 'ICD9CM_2010'), +('67.62', 'Repair of fistula of cervix', 'ICD9CM_2010'), +('67.69', 'Other repair of cervix', 'ICD9CM_2010'), +('68', 'Other incision and excision of uterus', 'ICD9CM_2010'), +('68.0', 'Hysterotomy', 'ICD9CM_2010'), +('68.1', 'Diagnostic procedures on uterus and supporting structures', 'ICD9CM_2010'), +('68.11', 'Digital examination of uterus', 'ICD9CM_2010'), +('68.12', 'Hysteroscopy', 'ICD9CM_2010'), +('68.13', 'Open biopsy of uterus', 'ICD9CM_2010'), +('68.14', 'Open biopsy of uterine ligaments', 'ICD9CM_2010'), +('68.15', 'Closed biopsy of uterine ligaments', 'ICD9CM_2010'), +('68.16', 'Closed biopsy of uterus', 'ICD9CM_2010'), +('68.19', 'Other diagnostic procedures on uterus and supporting structures', 'ICD9CM_2010'), +('68.2', 'Excision or destruction of lesion or tissue of uterus', 'ICD9CM_2010'), +('68.21', 'Division of endometrial synechiae', 'ICD9CM_2010'), +('68.22', 'Incision or excision of congenital septum of uterus', 'ICD9CM_2010'), +('68.23', 'Endometrial ablation', 'ICD9CM_2010'), +('68.29', 'Other excision or destruction of lesion of uterus', 'ICD9CM_2010'), +('68.3', 'Subtotal abdominal hysterectomy', 'ICD9CM_2010'), +('68.31', 'Laparoscopic supracervical hysterectomy LSH', 'ICD9CM_2010'), +('68.39', 'Other and unspecified subtotal abdominal hysterectomy', 'ICD9CM_2010'), +('68.4', 'Total abdominal hysterectomy', 'ICD9CM_2010'), +('68.41', 'Laparoscopic total abdominal hysterectomy', 'ICD9CM_2010'), +('68.49', 'Other and unspecified total abdominal hysterectomy', 'ICD9CM_2010'), +('68.5', 'Vaginal hysterectomy', 'ICD9CM_2010'), +('68.51', 'Laparoscopically assisted vaginal hysterectomy LAVH', 'ICD9CM_2010'), +('68.59', 'Other and unspecified vaginal hysterectomy', 'ICD9CM_2010'), +('68.6', 'Radical abdominal hysterectomy', 'ICD9CM_2010'), +('68.61', 'Laparoscopic radical abdominal hysterectomy', 'ICD9CM_2010'), +('68.69', 'Other and unspecified radical abdominal hysterectomy', 'ICD9CM_2010'), +('68.7', 'Radical vaginal hysterectomy', 'ICD9CM_2010'), +('68.71', 'Laparoscopic radical vaginal hysterectomy LRVH', 'ICD9CM_2010'), +('68.79', 'Other and unspecified radical vaginal hysterectomy', 'ICD9CM_2010'), +('68.8', 'Pelvic evisceration', 'ICD9CM_2010'), +('68.9', 'Other and unspecified hysterectomy', 'ICD9CM_2010'), +('69', 'Other operations on uterus and supporting structures', 'ICD9CM_2010'), +('69.0', 'Dilation and curettage of uterus', 'ICD9CM_2010'), +('69.01', 'Dilation and curettage for termination of pregnancy', 'ICD9CM_2010'), +('69.02', 'Dilation and curettage following delivery or abortion', 'ICD9CM_2010'), +('69.09', 'Other dilation and curettage of uterus', 'ICD9CM_2010'), +('69.1', 'Excision or destruction of lesion or tissue of uterus and supporting structures', 'ICD9CM_2010'), +('69.19', 'Other excision or destruction of uterus and supporting structures', 'ICD9CM_2010'), +('69.2', 'Repair of uterine supporting structures', 'ICD9CM_2010'), +('69.21', 'Interposition operation', 'ICD9CM_2010'), +('69.22', 'Other uterine suspension', 'ICD9CM_2010'), +('69.23', 'Vaginal repair of chronic inversion of uterus', 'ICD9CM_2010'), +('69.29', 'Other repair of uterus and supporting structures', 'ICD9CM_2010'), +('69.3', 'Paracervical uterine denervation', 'ICD9CM_2010'), +('69.4', 'Uterine repair', 'ICD9CM_2010'), +('69.41', 'Suture of laceration of uterus', 'ICD9CM_2010'), +('69.42', 'Closure of fistula of uterus', 'ICD9CM_2010'), +('69.49', 'Other repair of uterus', 'ICD9CM_2010'), +('69.5', 'Aspiration curettage of uterus', 'ICD9CM_2010'), +('69.51', 'Aspiration curettage of uterus for termination of pregnancy', 'ICD9CM_2010'), +('69.52', 'Aspiration curettage following delivery or abortion', 'ICD9CM_2010'), +('69.59', 'Other aspiration curettage of uterus', 'ICD9CM_2010'), +('69.6', 'Menstrual extraction or regulation', 'ICD9CM_2010'), +('69.7', 'Insertion of intrauterine contraceptive device', 'ICD9CM_2010'), +('69.9', 'Other operations on uterus, cervix, and supporting structures', 'ICD9CM_2010'), +('69.91', 'Insertion of therapeutic device into uterus', 'ICD9CM_2010'), +('69.92', 'Artificial insemination', 'ICD9CM_2010'), +('69.93', 'Insertion of laminaria', 'ICD9CM_2010'), +('69.94', 'Manual replacement of inverted uterus', 'ICD9CM_2010'), +('69.95', 'Incision of cervix', 'ICD9CM_2010'), +('69.96', 'Removal of cerclage material from cervix', 'ICD9CM_2010'), +('69.97', 'Removal of other penetrating foreign body from cervix', 'ICD9CM_2010'), +('69.98', 'Other operations on supporting structures of uterus', 'ICD9CM_2010'), +('69.99', 'Other operations on cervix and uterus', 'ICD9CM_2010'), +('70', 'Operations on vagina and cul-de-sac', 'ICD9CM_2010'), +('70.0', 'Culdocentesis', 'ICD9CM_2010'), +('70.1', 'Incision of vagina and cul-de-sac', 'ICD9CM_2010'), +('70.11', 'Hymenotomy', 'ICD9CM_2010'), +('70.12', 'Culdotomy', 'ICD9CM_2010'), +('70.13', 'Lysis of intraluminal adhesions of vagina', 'ICD9CM_2010'), +('70.14', 'Other vaginotomy', 'ICD9CM_2010'), +('70.2', 'Diagnostic procedures on vagina and cul-de-sac', 'ICD9CM_2010'), +('70.21', 'Vaginoscopy', 'ICD9CM_2010'), +('70.22', 'Culdoscopy', 'ICD9CM_2010'), +('70.23', 'Biopsy of cul-de-sac', 'ICD9CM_2010'), +('70.24', 'Vaginal biopsy', 'ICD9CM_2010'), +('70.29', 'Other diagnostic procedures on vagina and cul-de-sac', 'ICD9CM_2010'), +('70.3', 'Local excision or destruction of vagina and cul-de-sac', 'ICD9CM_2010'), +('70.31', 'Hymenectomy', 'ICD9CM_2010'), +('70.32', 'Excision or destruction of lesion of cul-de-sac', 'ICD9CM_2010'), +('70.33', 'Excision or destruction of lesion of vagina', 'ICD9CM_2010'), +('70.4', 'Obliteration and total excision of vagina', 'ICD9CM_2010'), +('70.5', 'Repair of cystocele and rectocele', 'ICD9CM_2010'), +('70.50', 'Repair of cystocele and rectocele', 'ICD9CM_2010'), +('70.51', 'Repair of cystocele', 'ICD9CM_2010'), +('70.52', 'Repair of rectocele', 'ICD9CM_2010'), +('70.53', 'Repair of cystocele and rectocele with graft or prosthesis', 'ICD9CM_2010'), +('70.54', 'Repair of cystocele with graft or prosthesis', 'ICD9CM_2010'), +('70.55', 'Repair of rectocele with graft or prosthesis', 'ICD9CM_2010'), +('70.6', 'Vaginal construction and reconstruction', 'ICD9CM_2010'), +('70.61', 'Vaginal construction', 'ICD9CM_2010'), +('70.62', 'Vaginal reconstruction', 'ICD9CM_2010'), +('70.63', 'Vaginal construction with graft or prosthesis', 'ICD9CM_2010'), +('70.64', 'Vaginal reconstruction with graft or prosthesis', 'ICD9CM_2010'), +('70.7', 'Other repair of vagina', 'ICD9CM_2010'), +('70.71', 'Suture of laceration of vagina', 'ICD9CM_2010'), +('70.72', 'Repair of colovaginal fistula', 'ICD9CM_2010'), +('70.73', 'Repair of rectovaginal fistula', 'ICD9CM_2010'), +('70.74', 'Repair of other vaginoenteric fistula', 'ICD9CM_2010'), +('70.75', 'Repair of other fistula of vagina', 'ICD9CM_2010'), +('70.76', 'Hymenorrhaphy', 'ICD9CM_2010'), +('70.77', 'Vaginal suspension and fixation', 'ICD9CM_2010'), +('70.78', 'Vaginal suspension and fixation with graft or prosthesis', 'ICD9CM_2010'), +('70.79', 'Other repair of vagina', 'ICD9CM_2010'), +('70.8', 'Obliteration of vaginal vault', 'ICD9CM_2010'), +('70.9', 'Other operations on vagina and cul-de-sac', 'ICD9CM_2010'), +('70.91', 'Other operations on vagina', 'ICD9CM_2010'), +('70.92', 'Other operations on cul-de-sac', 'ICD9CM_2010'), +('70.93', 'Other operations on cul-de-sac with graft or prosthesis', 'ICD9CM_2010'), +('70.94', 'Insertion of biological graft', 'ICD9CM_2010'), +('70.95', 'Insertion of synthetic graft or prosthesis', 'ICD9CM_2010'), +('71', 'Operations on vulva and perineum', 'ICD9CM_2010'), +('71.0', 'Incision of vulva and perineum', 'ICD9CM_2010'), +('71.01', 'Lysis of vulvar adhesions', 'ICD9CM_2010'), +('71.09', 'Other incision of vulva and perineum', 'ICD9CM_2010'), +('71.1', 'Diagnostic procedures on vulva', 'ICD9CM_2010'), +('71.11', 'Biopsy of vulva', 'ICD9CM_2010'), +('71.19', 'Other diagnostic procedures on vulva', 'ICD9CM_2010'), +('71.2', 'Operations on Bartholin\'s gland', 'ICD9CM_2010'), +('71.21', 'Percutaneous aspiration of Bartholin\'s gland (cyst)', 'ICD9CM_2010'), +('71.22', 'Incision of Bartholin\'s gland (cyst)', 'ICD9CM_2010'), +('71.23', 'Marsupialization of Bartholin\'s gland (cyst)', 'ICD9CM_2010'), +('71.24', 'Excision or other destruction of Bartholin\'s gland (cyst)', 'ICD9CM_2010'), +('71.29', 'Other operations on Bartholin\'s gland', 'ICD9CM_2010'), +('71.3', 'Other local excision or destruction of vulva and perineum', 'ICD9CM_2010'), +('71.4', 'Operations on clitoris', 'ICD9CM_2010'), +('71.5', 'Radical vulvectomy', 'ICD9CM_2010'), +('71.6', 'Other vulvectomy', 'ICD9CM_2010'), +('71.61', 'Unilateral vulvectomy', 'ICD9CM_2010'), +('71.62', 'Bilateral vulvectomy', 'ICD9CM_2010'), +('71.7', 'Repair of vulva and perineum', 'ICD9CM_2010'), +('71.71', 'Suture of laceration of vulva or perineum', 'ICD9CM_2010'), +('71.72', 'Repair of fistula of vulva or perineum', 'ICD9CM_2010'), +('71.79', 'Other repair of vulva and perineum', 'ICD9CM_2010'), +('71.8', 'Other operations on vulva', 'ICD9CM_2010'), +('71.9', 'Other operations on female genital organs', 'ICD9CM_2010'), +('72', 'Forceps, vacuum, and breech delivery', 'ICD9CM_2010'), +('72.0', 'Low forceps operation', 'ICD9CM_2010'), +('72.1', 'Low forceps operation with episiotomy', 'ICD9CM_2010'), +('72.2', 'Mid forceps operation', 'ICD9CM_2010'), +('72.21', 'Mid forceps operation with episiotomy', 'ICD9CM_2010'), +('72.29', 'Other mid forceps operation', 'ICD9CM_2010'), +('72.3', 'High forceps operation', 'ICD9CM_2010'), +('72.31', 'High forceps operation with episiotomy', 'ICD9CM_2010'), +('72.39', 'Other high forceps operation', 'ICD9CM_2010'), +('72.4', 'Forceps rotation of fetal head', 'ICD9CM_2010'), +('72.5', 'Breech extraction', 'ICD9CM_2010'), +('72.51', 'Partial breech extraction with forceps to aftercoming head', 'ICD9CM_2010'), +('72.52', 'Other partial breech extraction', 'ICD9CM_2010'), +('72.53', 'Total breech extraction with forceps to aftercoming head', 'ICD9CM_2010'), +('72.54', 'Other total breech extraction', 'ICD9CM_2010'), +('72.6', 'Forceps application to aftercoming head', 'ICD9CM_2010'), +('72.7', 'Vacuum extraction', 'ICD9CM_2010'), +('72.71', 'Vacuum extraction with episiotomy', 'ICD9CM_2010'), +('72.79', 'Other vacuum extraction', 'ICD9CM_2010'), +('72.8', 'Other specified instrumental delivery', 'ICD9CM_2010'), +('72.9', 'Unspecified instrumental delivery', 'ICD9CM_2010'), +('73', 'Other procedures inducing or assisting delivery', 'ICD9CM_2010'), +('73.0', 'Artificial rupture of membranes', 'ICD9CM_2010'), +('73.01', 'Induction of labor by artificial rupture of membranes', 'ICD9CM_2010'), +('73.09', 'Other artificial rupture of membranes', 'ICD9CM_2010'), +('73.1', 'Other surgical induction of labor', 'ICD9CM_2010'), +('73.2', 'Internal and combined version and extraction', 'ICD9CM_2010'), +('73.21', 'Internal and combined version without extraction', 'ICD9CM_2010'), +('73.22', 'Internal and combined version with extraction', 'ICD9CM_2010'), +('73.3', 'Failed forceps', 'ICD9CM_2010'), +('73.4', 'Medical induction of labor', 'ICD9CM_2010'), +('73.5', 'Manually assisted delivery', 'ICD9CM_2010'), +('73.51', 'Manual rotation of fetal head', 'ICD9CM_2010'), +('73.59', 'Other manually assisted delivery', 'ICD9CM_2010'), +('73.6', 'Episiotomy', 'ICD9CM_2010'), +('73.8', 'Operations on fetus to facilitate delivery', 'ICD9CM_2010'), +('73.9', 'Other operations assisting delivery', 'ICD9CM_2010'), +('73.91', 'External version', 'ICD9CM_2010'), +('73.92', 'Replacement of prolapsed umbilical cord', 'ICD9CM_2010'), +('73.93', 'Incision of cervix to assist delivery', 'ICD9CM_2010'), +('73.94', 'Pubiotomy to assist delivery', 'ICD9CM_2010'), +('73.99', 'Other operations to assist delivery', 'ICD9CM_2010'), +('74', 'Cesarean section and removal of fetus', 'ICD9CM_2010'), +('74.0', 'Classical cesarean section', 'ICD9CM_2010'), +('74.1', 'Low cervical cesarean section', 'ICD9CM_2010'), +('74.2', 'Extraperitoneal cesarean section', 'ICD9CM_2010'), +('74.3', 'Removal of extratubal ectopic pregnancy', 'ICD9CM_2010'), +('74.4', 'Cesarean section of other specified type', 'ICD9CM_2010'), +('74.9', 'Cesarean section of unspecified type', 'ICD9CM_2010'), +('74.91', 'Hysterotomy to terminate pregnancy', 'ICD9CM_2010'), +('74.99', 'Other cesarean section of unspecified type', 'ICD9CM_2010'), +('75', 'Other obstetric operations', 'ICD9CM_2010'), +('75.0', 'Intra-amniotic injection for abortion', 'ICD9CM_2010'), +('75.1', 'Diagnostic amniocentesis', 'ICD9CM_2010'), +('75.2', 'Intrauterine transfusion', 'ICD9CM_2010'), +('75.3', 'Other intrauterine operations on fetus and amnion', 'ICD9CM_2010'), +('75.31', 'Amnioscopy', 'ICD9CM_2010'), +('75.32', 'Fetal EKG (scalp)', 'ICD9CM_2010'), +('75.33', 'Fetal blood sampling and biopsy', 'ICD9CM_2010'), +('75.34', 'Other fetal monitoring', 'ICD9CM_2010'), +('75.35', 'Other diagnostic procedures on fetus and amnion', 'ICD9CM_2010'), +('75.36', 'Correction of fetal defect', 'ICD9CM_2010'), +('75.37', 'Amnioinfusion', 'ICD9CM_2010'), +('75.38', 'Fetal pulse oximetry', 'ICD9CM_2010'), +('75.4', 'Manual removal of retained placenta', 'ICD9CM_2010'), +('75.5', 'Repair of current obstetric laceration of uterus', 'ICD9CM_2010'), +('75.50', 'Repair of current obstetric laceration of uterus, not otherwise specified', 'ICD9CM_2010'), +('75.51', 'Repair of current obstetric laceration of cervix', 'ICD9CM_2010'), +('75.52', 'Repair of current obstetric laceration of corpus uteri', 'ICD9CM_2010'), +('75.6', 'Repair of other current obstetric laceration', 'ICD9CM_2010'), +('75.61', 'Repair of current obstetric laceration of bladder and urethra', 'ICD9CM_2010'), +('75.62', 'Repair of current obstetric laceration of rectum and sphincter ani', 'ICD9CM_2010'), +('75.69', 'Repair of other current obstetric laceration', 'ICD9CM_2010'), +('75.7', 'Manual exploration of uterine cavity, postpartum', 'ICD9CM_2010'), +('75.8', 'Obstetric tamponade of uterus or vagina', 'ICD9CM_2010'), +('75.9', 'Other obstetric operations', 'ICD9CM_2010'), +('75.91', 'Evacuation of obstetrical incisional hematoma of perineum', 'ICD9CM_2010'), +('75.92', 'Evacuation of other hematoma of vulva or vagina', 'ICD9CM_2010'), +('75.93', 'Surgical correction of inverted uterus', 'ICD9CM_2010'), +('75.94', 'Manual replacement of inverted uterus', 'ICD9CM_2010'), +('75.99', 'Other obstetric operations', 'ICD9CM_2010'), +('76', 'Operations on facial bones and joints', 'ICD9CM_2010'), +('76.0', 'Incision of facial bone without division', 'ICD9CM_2010'), +('76.01', 'Sequestrectomy of facial bone', 'ICD9CM_2010'), +('76.09', 'Other incision of facial bone', 'ICD9CM_2010'), +('76.1', 'Diagnostic procedures on facial bones and joints', 'ICD9CM_2010'), +('76.11', 'Biopsy of facial bone', 'ICD9CM_2010'), +('76.19', 'Other diagnostic procedures on facial bones and joints', 'ICD9CM_2010'), +('76.2', 'Local excision or destruction of lesion of facial bone', 'ICD9CM_2010'), +('76.3', 'Partial ostectomy of facial bone', 'ICD9CM_2010'), +('76.31', 'Partial mandibulectomy', 'ICD9CM_2010'), +('76.39', 'Partial ostectomy of other facial bone', 'ICD9CM_2010'), +('76.4', 'Excision and reconstruction of facial bones', 'ICD9CM_2010'), +('76.41', 'Total mandibulectomy with synchronous reconstruction', 'ICD9CM_2010'), +('76.42', 'Other total mandibulectomy', 'ICD9CM_2010'), +('76.43', 'Other reconstruction of mandible', 'ICD9CM_2010'), +('76.44', 'Total ostectomy of other facial bone with synchronous reconstruction', 'ICD9CM_2010'), +('76.45', 'Other total ostectomy of other facial bone', 'ICD9CM_2010'), +('76.46', 'Other reconstruction of other facial bone', 'ICD9CM_2010'), +('76.5', 'Temporomandibular arthroplasty', 'ICD9CM_2010'), +('76.6', 'Other facial bone repair and orthognathic surgery', 'ICD9CM_2010'), +('76.61', 'Closed osteoplasty (osteotomy) of mandibular ramus', 'ICD9CM_2010'), +('76.62', 'Open osteoplasty (osteotomy) of mandibular ramus', 'ICD9CM_2010'), +('76.63', 'Osteoplasty (osteotomy) of body of mandible', 'ICD9CM_2010'), +('76.64', 'Other orthognathic surgery on mandible', 'ICD9CM_2010'), +('76.65', 'Segmental osteoplasty (osteotomy) of maxilla', 'ICD9CM_2010'), +('76.66', 'Total osteoplasty (osteotomy) of maxilla', 'ICD9CM_2010'), +('76.67', 'Reduction genioplasty', 'ICD9CM_2010'), +('76.68', 'Augmentation genioplasty', 'ICD9CM_2010'), +('76.69', 'Other facial bone repair', 'ICD9CM_2010'), +('76.7', 'Reduction of facial fracture', 'ICD9CM_2010'), +('76.70', 'Reduction of facial fracture, not otherwise specified', 'ICD9CM_2010'), +('76.71', 'Closed reduction of malar and zygomatic fracture', 'ICD9CM_2010'), +('76.72', 'Open reduction of malar and zygomatic fracture', 'ICD9CM_2010'), +('76.73', 'Closed reduction of maxillary fracture', 'ICD9CM_2010'), +('76.74', 'Open reduction of maxillary fracture', 'ICD9CM_2010'), +('76.75', 'Closed reduction of mandibular fracture', 'ICD9CM_2010'), +('76.76', 'Open reduction of mandibular fracture', 'ICD9CM_2010'), +('76.77', 'Open reduction of alveolar fracture', 'ICD9CM_2010'), +('76.78', 'Other closed reduction of facial fracture', 'ICD9CM_2010'), +('76.79', 'Other open reduction of facial fracture', 'ICD9CM_2010'), +('76.9', 'Other operations on facial bones and joints', 'ICD9CM_2010'), +('76.91', 'Bone graft to facial bone', 'ICD9CM_2010'), +('76.92', 'Insertion of synthetic implant in facial bone', 'ICD9CM_2010'), +('76.93', 'Closed reduction of temporomandibular dislocation', 'ICD9CM_2010'), +('76.94', 'Open reduction of temporomandibular dislocation', 'ICD9CM_2010'), +('76.95', 'Other manipulation of temporomandibular joint', 'ICD9CM_2010'), +('76.96', 'Injection of therapeutic substance into temporomandibular joint', 'ICD9CM_2010'), +('76.97', 'Removal of internal fixation device from facial bone', 'ICD9CM_2010'), +('76.99', 'Other operations on facial bones and joints', 'ICD9CM_2010'), +('77', 'Incision, excision, and division of other bones', 'ICD9CM_2010'), +('77.0', 'Sequestrectomy', 'ICD9CM_2010'), +('77.00', 'Sequestrectomy, unspecified site', 'ICD9CM_2010'), +('77.01', 'Sequestrectomy of scapula, clavicle, and thorax (ribs and sternum)', 'ICD9CM_2010'), +('77.02', 'Sequestrectomy of humerus', 'ICD9CM_2010'), +('77.03', 'Sequestrectomy of radius and ulna', 'ICD9CM_2010'), +('77.04', 'Sequestrectomy of carpals and metacarpals', 'ICD9CM_2010'), +('77.05', 'Sequestrectomy of femur', 'ICD9CM_2010'), +('77.06', 'Sequestrectomy of patella', 'ICD9CM_2010'), +('77.07', 'Sequestrectomy of tibia and fibula', 'ICD9CM_2010'), +('77.08', 'Sequestrectomy of tarsals and metatarsals', 'ICD9CM_2010'), +('77.09', 'Sequestrectomy of other bone', 'ICD9CM_2010'), +('77.1', 'Other incision of bone without division', 'ICD9CM_2010'), +('77.10', 'Other incision of bone without division, unspecified site', 'ICD9CM_2010'), +('77.11', 'Other incision of bone without division, scapula, clavicle, and thorax (ribs and sternum)', 'ICD9CM_2010'), +('77.12', 'Other incision of bone without division, humerus', 'ICD9CM_2010'), +('77.13', 'Other incision of bone without division, radius and ulna', 'ICD9CM_2010'), +('77.14', 'Other incision of bone without division, carpus and metacarpus', 'ICD9CM_2010'), +('77.15', 'Other incision of bone without division, femur', 'ICD9CM_2010'), +('77.16', 'Other incision of bone without division, patella', 'ICD9CM_2010'), +('77.17', 'Other incision of bone without division, tibia and fibula', 'ICD9CM_2010'), +('77.18', 'Other incision of bone without division, tarsals and metatarsals', 'ICD9CM_2010'), +('77.19', 'Other incision of bone without division, other specified bone', 'ICD9CM_2010'), +('77.2', 'Wedge osteotomy', 'ICD9CM_2010'), +('77.20', 'Wedge osteotomy, unspecified site', 'ICD9CM_2010'), +('77.21', 'Wedge osteotomy of scapula, clavicle, and thorax (ribs and sternum)', 'ICD9CM_2010'), +('77.22', 'Wedge osteotomy of humerus', 'ICD9CM_2010'), +('77.23', 'Wedge osteotomy of radius and ulna', 'ICD9CM_2010'), +('77.24', 'Wedge osteotomy of carpals and metacarpals', 'ICD9CM_2010'), +('77.25', 'Wedge osteotomy of femur', 'ICD9CM_2010'), +('77.26', 'Wedge osteotomy of patella', 'ICD9CM_2010'), +('77.27', 'Wedge osteotomy of tibia and fibula', 'ICD9CM_2010'), +('77.28', 'Wedge osteotomy of tarsals and metatarsals', 'ICD9CM_2010'), +('77.29', 'Wedge osteotomy of other bone', 'ICD9CM_2010'), +('77.3', 'Other division of bone', 'ICD9CM_2010'), +('77.30', 'Other division of bone, unspecified site', 'ICD9CM_2010'), +('77.31', 'Other division of scapula, clavicle, and thorax (ribs and sternum)', 'ICD9CM_2010'), +('77.32', 'Other division of humerus', 'ICD9CM_2010'), +('77.33', 'Other division of radius and ulna', 'ICD9CM_2010'), +('77.34', 'Other division of carpals and metacarpals', 'ICD9CM_2010'), +('77.35', 'Other division of femur', 'ICD9CM_2010'), +('77.36', 'Other division of patella', 'ICD9CM_2010'), +('77.37', 'Other division of tibia and fibula', 'ICD9CM_2010'), +('77.38', 'Other division of tarsals and metatarsals', 'ICD9CM_2010'), +('77.39', 'Other division of other bone', 'ICD9CM_2010'), +('77.4', 'Biopsy of bone', 'ICD9CM_2010'), +('77.40', 'Biopsy of bone, unspecified site', 'ICD9CM_2010'), +('77.41', 'Biopsy of scapula, clavicle, and thorax (ribs and sternum)', 'ICD9CM_2010'), +('77.42', 'Biopsy of humerus', 'ICD9CM_2010'), +('77.43', 'Biopsy of radius and ulna', 'ICD9CM_2010'), +('77.44', 'Biopsy of carpals and metacarpals', 'ICD9CM_2010'), +('77.45', 'Biopsy of femur', 'ICD9CM_2010'), +('77.46', 'Biopsy of patella', 'ICD9CM_2010'), +('77.47', 'Biopsy of tibia and fibula', 'ICD9CM_2010'), +('77.48', 'Biopsy of tarsals and metatarsals', 'ICD9CM_2010'), +('77.49', 'Biopsy of other bone', 'ICD9CM_2010'), +('77.5', 'Excision and repair of bunion and other toe deformities', 'ICD9CM_2010'), +('77.51', 'Bunionectomy with soft tissue correction and osteotomy of the first metatarsal', 'ICD9CM_2010'), +('77.52', 'Bunionectomy with soft tissue correction and arthrodesis', 'ICD9CM_2010'), +('77.53', 'Other bunionectomy with soft tissue correction', 'ICD9CM_2010'), +('77.54', 'Excision or correction of bunionette', 'ICD9CM_2010'), +('77.56', 'Repair of hammer toe', 'ICD9CM_2010'), +('77.57', 'Repair of claw toe', 'ICD9CM_2010'), +('77.58', 'Other excision, fusion, and repair of toes', 'ICD9CM_2010'), +('77.59', 'Other bunionectomy', 'ICD9CM_2010'), +('77.6', 'Local excision of lesion or tissue of bone', 'ICD9CM_2010'), +('77.60', 'Local excision of lesion or tissue of bone, unspecified site', 'ICD9CM_2010'), +('77.61', 'Local excision of lesion or tissue of scapula, clavicle, and thorax (ribs and sternum)', 'ICD9CM_2010'), +('77.62', 'Local excision of lesion or tissue of humerus', 'ICD9CM_2010'), +('77.63', 'Local excision of lesion or tissue of radius and ulna', 'ICD9CM_2010'), +('77.64', 'Local excision of lesion or tissue of carpals and metacarpals', 'ICD9CM_2010'), +('77.65', 'Local excision of lesion or tissue of femur', 'ICD9CM_2010'), +('77.66', 'Local excision of lesion or tissue of patella', 'ICD9CM_2010'), +('77.67', 'Local excision of lesion or tissue of tibia and fibula', 'ICD9CM_2010'), +('77.68', 'Local excision of lesion or tissue of tarsals and metatarsals', 'ICD9CM_2010'), +('77.69', 'Local excision of lesion or tissue of other specified bone', 'ICD9CM_2010'), +('77.7', 'Excision of bone for graft', 'ICD9CM_2010'), +('77.70', 'Excision of bone for graft, unspecified site', 'ICD9CM_2010'), +('77.71', 'Excision of bone for graft, scapula, clavicle, and thorax (ribs and sternum)', 'ICD9CM_2010'), +('77.72', 'Excision of bone for graft, humerus', 'ICD9CM_2010'), +('77.73', 'Excision of bone for graft, radius and ulna', 'ICD9CM_2010'), +('77.74', 'Excision of bone for graft, carpus and metacarpus', 'ICD9CM_2010'), +('77.75', 'Excision of bone for graft, femur', 'ICD9CM_2010'), +('77.76', 'Excision of bone for graft, patella', 'ICD9CM_2010'), +('77.77', 'Excision of bone for graft, tibia and fibula', 'ICD9CM_2010'), +('77.78', 'Excision of bone for graft, tarsals and metatarsals', 'ICD9CM_2010'), +('77.79', 'Excision of bone for graft, other specified bone', 'ICD9CM_2010'), +('77.8', 'Other partial ostectomy', 'ICD9CM_2010'), +('77.80', 'Other partial ostectomy, unspecified site', 'ICD9CM_2010'), +('77.81', 'Other partial ostectomy of scapula, clavicle, and thorax (ribs and sternum)', 'ICD9CM_2010'), +('77.82', 'Other partial ostectomy of humerus', 'ICD9CM_2010'), +('77.83', 'Other partial ostectomy of radius and ulna', 'ICD9CM_2010'), +('77.84', 'Other partial ostectomy of carpals and metacarpals', 'ICD9CM_2010'), +('77.85', 'Other partial ostectomy of femur', 'ICD9CM_2010'), +('77.86', 'Other partial ostectomy of patella', 'ICD9CM_2010'), +('77.87', 'Other partial ostectomy of tibia and fibula', 'ICD9CM_2010'), +('77.88', 'Other partial ostectomy of tarsals and metatarsals', 'ICD9CM_2010'), +('77.89', 'Other partial ostectomy of other bone', 'ICD9CM_2010'), +('77.9', 'Total ostectomy', 'ICD9CM_2010'), +('77.90', 'Total ostectomy, unspecified site', 'ICD9CM_2010'), +('77.91', 'Total ostectomy of scapula, clavicle, and thorax (ribs and sternum)', 'ICD9CM_2010'), +('77.92', 'Total ostectomy of humerus', 'ICD9CM_2010'), +('77.93', 'Total ostectomy of radius and ulna', 'ICD9CM_2010'), +('77.94', 'Total ostectomy of carpals and metacarpals', 'ICD9CM_2010'), +('77.95', 'Total ostectomy of femur', 'ICD9CM_2010'), +('77.96', 'Total ostectomy of patella', 'ICD9CM_2010'), +('77.97', 'Total ostectomy of tibia and fibula', 'ICD9CM_2010'), +('77.98', 'Total ostectomy of tarsals and metatarsals', 'ICD9CM_2010'), +('77.99', 'Total ostectomy of other bone', 'ICD9CM_2010'), +('78', 'Other operations on bones, except facial bones', 'ICD9CM_2010'), +('78.0', 'Bone graft', 'ICD9CM_2010'), +('78.00', 'Bone graft, unspecified site', 'ICD9CM_2010'), +('78.01', 'Bone graft of scapula, clavicle, and thorax (ribs and sternum)', 'ICD9CM_2010'), +('78.02', 'Bone graft of humerus', 'ICD9CM_2010'), +('78.03', 'Bone graft of radius and ulna', 'ICD9CM_2010'), +('78.04', 'Bone graft of carpals and metacarpals', 'ICD9CM_2010'), +('78.05', 'Bone graft of femur', 'ICD9CM_2010'), +('78.06', 'Bone graft of patella', 'ICD9CM_2010'), +('78.07', 'Bone graft of tibia and fibula', 'ICD9CM_2010'), +('78.08', 'Bone graft of tarsals and metatarsals', 'ICD9CM_2010'), +('78.09', 'Bone graft of other bone except facial bones', 'ICD9CM_2010'), +('78.1', 'Application of external fixation device', 'ICD9CM_2010'), +('78.10', 'Application of external fixation device, unspecified site', 'ICD9CM_2010'), +('78.11', 'Application of external fixation device, scapula, clavicle, and thorax (ribs and sternum)', 'ICD9CM_2010'), +('78.12', 'Application of external fixation device, humerus', 'ICD9CM_2010'), +('78.13', 'Application of external fixation device, radius and ulna', 'ICD9CM_2010'), +('78.14', 'Application of external fixation device, carpals and metacarpals', 'ICD9CM_2010'), +('78.15', 'Application of external fixation device, femur', 'ICD9CM_2010'), +('78.16', 'Application of external fixation device, patella', 'ICD9CM_2010'), +('78.17', 'Application of external fixation device, tibia and fibula', 'ICD9CM_2010'), +('78.18', 'Application of external fixation device, tarsals and metatarsals', 'ICD9CM_2010'), +('78.19', 'Application of external fixation device, other bone except facial bones', 'ICD9CM_2010'), +('78.2', 'Limb shortening procedures', 'ICD9CM_2010'), +('78.20', 'Limb shortening procedures, unspecified site', 'ICD9CM_2010'), +('78.22', 'Limb shortening procedures, humerus', 'ICD9CM_2010'), +('78.23', 'Limb shortening procedures, radius and ulna', 'ICD9CM_2010'), +('78.24', 'Limb shortening procedures, carpals and metacarpals', 'ICD9CM_2010'), +('78.25', 'Limb shortening procedures, femur', 'ICD9CM_2010'), +('78.27', 'Limb shortening procedures, tibia and fibula', 'ICD9CM_2010'), +('78.28', 'Limb shortening procedures, tarsals and metatarsals', 'ICD9CM_2010'), +('78.29', 'Limb shortening procedures, other bone except facial bones', 'ICD9CM_2010'), +('78.3', 'Limb lengthening procedures', 'ICD9CM_2010'), +('78.30', 'Limb lengthening procedures, unspecified site', 'ICD9CM_2010'), +('78.32', 'Limb lengthening procedures, humerus', 'ICD9CM_2010'), +('78.33', 'Limb lengthening procedures, radius and ulna', 'ICD9CM_2010'); +INSERT INTO `icd9` (`ID_ICD9`, `Prosedur`, `Versi_ICD9`) VALUES +('78.34', 'Limb lengthening procedures, carpals and metacarpals', 'ICD9CM_2010'), +('78.35', 'Limb lengthening procedures, femur', 'ICD9CM_2010'), +('78.37', 'Limb lengthening procedures, tibia and fibula', 'ICD9CM_2010'), +('78.38', 'Limb lengthening procedures, tarsals and metatarsals', 'ICD9CM_2010'), +('78.39', 'Limb lengthening procedures, other bone except facial bones', 'ICD9CM_2010'), +('78.4', 'Other repair or plastic operations on bone', 'ICD9CM_2010'), +('78.40', 'Other repair or plastic operations on bone, unspecified site', 'ICD9CM_2010'), +('78.41', 'Other repair or plastic operations on scapula, clavicle, and thorax (ribs and sternum)', 'ICD9CM_2010'), +('78.42', 'Other repair or plastic operation on humerus', 'ICD9CM_2010'), +('78.43', 'Other repair or plastic operations on radius and ulna', 'ICD9CM_2010'), +('78.44', 'Other repair or plastic operations on carpals and metacarpals', 'ICD9CM_2010'), +('78.45', 'Other repair or plastic operations on femur', 'ICD9CM_2010'), +('78.46', 'Other repair or plastic operations on patella', 'ICD9CM_2010'), +('78.47', 'Other repair or plastic operations on tibia and fibula', 'ICD9CM_2010'), +('78.48', 'Other repair or plastic operations on tarsals and metatarsals', 'ICD9CM_2010'), +('78.49', 'Other repair or plastic operations on other bone, except facial bone', 'ICD9CM_2010'), +('78.5', 'Internal fixation of bone without fracture reduction', 'ICD9CM_2010'), +('78.50', 'Internal fixation of bone without fracture reduction, unspecified site', 'ICD9CM_2010'), +('78.51', 'Internal fixation of bone without fracture reduction on scapula, clavicle, and thorax (ribs and sternum)', 'ICD9CM_2010'), +('78.52', 'Internal fixation of bone without fracture reduction on humerus', 'ICD9CM_2010'), +('78.53', 'Internal fixation of bone without fracture reduction on radius and ulna', 'ICD9CM_2010'), +('78.54', 'Internal fixation of bone without fracture reductionon carpals and metacarpals', 'ICD9CM_2010'), +('78.55', 'Internal fixation of bone without fracture reduction on femur', 'ICD9CM_2010'), +('78.56', 'Internal fixation of bone without fracture reduction on patella', 'ICD9CM_2010'), +('78.57', 'Internal fixation of bone without fracture reduction on tibia and fibula', 'ICD9CM_2010'), +('78.58', 'Internal fixation of bone without fracture reduction on tarsals and metatarsals', 'ICD9CM_2010'), +('78.59', 'Internal fixation of bone without fracture reduction on other bone, except facial bone', 'ICD9CM_2010'), +('78.6', 'Removal of implanted device from bone', 'ICD9CM_2010'), +('78.60', 'Removal of implanted device, unspecified site', 'ICD9CM_2010'), +('78.61', 'Removal of implanted device from scapula, clavicle, and thorax (ribs and sternum)', 'ICD9CM_2010'), +('78.62', 'Removal of implanted device from humerus', 'ICD9CM_2010'), +('78.63', 'Removal of implanted device from radius and ulna', 'ICD9CM_2010'), +('78.64', 'Removal of implanted device from carpals and metacarpals', 'ICD9CM_2010'), +('78.65', 'Removal of implanted device from femur', 'ICD9CM_2010'), +('78.66', 'Removal of implanted device from patella', 'ICD9CM_2010'), +('78.67', 'Removal of implanted device from tibia and fibula', 'ICD9CM_2010'), +('78.68', 'Removal of implanted device from tarsal and metatarsals', 'ICD9CM_2010'), +('78.69', 'Removal of implanted device from other bone, except facial bone', 'ICD9CM_2010'), +('78.7', 'Osteoclasis', 'ICD9CM_2010'), +('78.70', 'Osteoclasis, unspecified site', 'ICD9CM_2010'), +('78.71', 'Osteoclasis of scapula, clavicle, and thorax (ribs and sternum)', 'ICD9CM_2010'), +('78.72', 'Osteoclasis of humerus', 'ICD9CM_2010'), +('78.73', 'Osteoclasis of radius and ulna', 'ICD9CM_2010'), +('78.74', 'Osteoclasis of carpals and metacarpals', 'ICD9CM_2010'), +('78.75', 'Osteoclasis of femur', 'ICD9CM_2010'), +('78.76', 'Osteoclasis of patella', 'ICD9CM_2010'), +('78.77', 'Osteoclasis of tibia and fibula', 'ICD9CM_2010'), +('78.78', 'Osteoclasis of tarsals and metatarsals', 'ICD9CM_2010'), +('78.79', 'Osteoclasis of other bone, except facial bone', 'ICD9CM_2010'), +('78.8', 'Diagnostic procedures on bone, not elsewhere classified', 'ICD9CM_2010'), +('78.80', 'Diagnostic procedures on bone, not elsewhere classified, unspecified site', 'ICD9CM_2010'), +('78.81', 'Diagnostic procedures on scapula, clavicle, and thorax (ribs and sternum)', 'ICD9CM_2010'), +('78.82', 'Diagnostic procedures on humerus, not elsewhere classified', 'ICD9CM_2010'), +('78.83', 'Diagnostic procedures on radius and ulna, not elsewhere classified', 'ICD9CM_2010'), +('78.84', 'Diagnostic procedures on carpals and metacarpals, not elsewhere classified', 'ICD9CM_2010'), +('78.85', 'Diagnostic procedures on femur, not elsewhere classified', 'ICD9CM_2010'), +('78.86', 'Diagnostic procedures on patella, not elsewhere classified', 'ICD9CM_2010'), +('78.87', 'Diagnostic procedures on tibia and fibula, not elsewhere classified', 'ICD9CM_2010'), +('78.88', 'Diagnostic procedures on tarsals and metatarsals, not elsewhere classified', 'ICD9CM_2010'), +('78.89', 'Diagnostic procedures on other bone, not elsewhere classified', 'ICD9CM_2010'), +('78.9', 'Insertion of bone growth stimulator', 'ICD9CM_2010'), +('78.90', 'Insertion of bone growth stimulator, unspecified site', 'ICD9CM_2010'), +('78.91', 'Insertion of bone growth stimulator into scapula, clavicle, and thorax (ribs and sternum)', 'ICD9CM_2010'), +('78.92', 'Insertion of bone growth stimulator into humerus', 'ICD9CM_2010'), +('78.93', 'Insertion of bone growth stimulator into radius and ulna', 'ICD9CM_2010'), +('78.94', 'Insertion of bone growth stimulator into carpals and metacarpals', 'ICD9CM_2010'), +('78.95', 'Insertion of bone growth stimulator into femur', 'ICD9CM_2010'), +('78.96', 'Insertion of bone growth stimulator into patella', 'ICD9CM_2010'), +('78.97', 'Insertion of bone growth stimulator into tibia and fibula', 'ICD9CM_2010'), +('78.98', 'Insertion of bone growth stimulator into tarsals and metatarsals', 'ICD9CM_2010'), +('78.99', 'Insertion of bone growth stimulator into other bone, except facial bone', 'ICD9CM_2010'), +('79', 'Reduction of fracture and dislocation', 'ICD9CM_2010'), +('79.0', 'Closed reduction of fracture without internal fixation', 'ICD9CM_2010'), +('79.00', 'Closed reduction of fracture without internal fixation, unspecified site', 'ICD9CM_2010'), +('79.01', 'Closed reduction of fracture without internal fixation, humerus', 'ICD9CM_2010'), +('79.02', 'Closed reduction of fracture without internal fixation, radius and ulna', 'ICD9CM_2010'), +('79.03', 'Closed reduction of fracture without internal fixation, carpals and metacarpals', 'ICD9CM_2010'), +('79.04', 'Closed reduction of fracture without internal fixation, phalanges of hand', 'ICD9CM_2010'), +('79.05', 'Closed reduction of fracture without internal fixation, femur', 'ICD9CM_2010'), +('79.06', 'Closed reduction of fracture without internal fixation, tibia and fibula', 'ICD9CM_2010'), +('79.07', 'Closed reduction of fracture without internal fixation, tarsals and metatarsals', 'ICD9CM_2010'), +('79.08', 'Closed reduction of fracture without internal fixation, phalanges of foot', 'ICD9CM_2010'), +('79.09', 'Closed reduction of fracture without internal fixation, other specified bone', 'ICD9CM_2010'), +('79.1', 'Closed reduction of fracture with internal fixation', 'ICD9CM_2010'), +('79.10', 'Closed reduction of fracture with internal fixation, unspecified site', 'ICD9CM_2010'), +('79.11', 'Closed reduction of fracture with internal fixation, humerus', 'ICD9CM_2010'), +('79.12', 'Closed reduction of fracture with internal fixation, radius and ulna', 'ICD9CM_2010'), +('79.13', 'Closed reduction of fracture with internal fixation, carpals and metacarpals', 'ICD9CM_2010'), +('79.14', 'Closed reduction of fracture with internal fixation,phalanges of hand', 'ICD9CM_2010'), +('79.15', 'Closed reduction of fracture with internal fixation, femur', 'ICD9CM_2010'), +('79.16', 'Closed reduction of fracture with internal fixation, tibia and fibula', 'ICD9CM_2010'), +('79.17', 'Closed reduction of fracture with internal fixation, tarsals and metatarsals', 'ICD9CM_2010'), +('79.18', 'Closed reduction of fracture with internal fixation, phalanges of foot', 'ICD9CM_2010'), +('79.19', 'Closed reduction of fracture with internal fixation, other specified bone', 'ICD9CM_2010'), +('79.2', 'Open reduction of fracture without internal fixation', 'ICD9CM_2010'), +('79.20', 'Open reduction of fracture without internal fixation, unspecified site', 'ICD9CM_2010'), +('79.21', 'Open reduction of fracture without internal fixation, humerus', 'ICD9CM_2010'), +('79.22', 'Open reduction of fracture without internal fixation, radius and ulna', 'ICD9CM_2010'), +('79.23', 'Open reduction of fracture without internal fixation, carpals and metacarpals', 'ICD9CM_2010'), +('79.24', 'Open reduction of fracture without internal fixation, phalanges of hand', 'ICD9CM_2010'), +('79.25', 'Open reduction of fracture without internal fixation, femur', 'ICD9CM_2010'), +('79.26', 'Open reduction of fracture without internal fixation, tibia and fibula', 'ICD9CM_2010'), +('79.27', 'Open reduction of fracture without internal fixation, tarsals and metatarsals', 'ICD9CM_2010'), +('79.28', 'Open reduction of fracture without internal fixation, phalanges of foot', 'ICD9CM_2010'), +('79.29', 'Open reduction of fracture without internal fixation, other specified bone', 'ICD9CM_2010'), +('79.3', 'Open reduction of fracture with internal fixation', 'ICD9CM_2010'), +('79.30', 'Open reduction of fracture with internal fixation, unspecified site', 'ICD9CM_2010'), +('79.31', 'Open reduction of fracture with internal fixation, humerus', 'ICD9CM_2010'), +('79.32', 'Open reduction of fracture with internal fixation, radius and ulna', 'ICD9CM_2010'), +('79.33', 'Open reduction of fracture with internal fixation, carpals and metacarpals', 'ICD9CM_2010'), +('79.34', 'Open reduction of fracture with internal fixation, phalanges of hand', 'ICD9CM_2010'), +('79.35', 'Open reduction of fracture with internal fixation, femur', 'ICD9CM_2010'), +('79.36', 'Open reduction of fracture with internal fixation, tibia and fibula', 'ICD9CM_2010'), +('79.37', 'Open reduction of fracture with internal fixation, tarsals and metatarsals', 'ICD9CM_2010'), +('79.38', 'Open reduction of fracture with internal fixation, phalanges of foot', 'ICD9CM_2010'), +('79.39', 'Open reduction of fracture with internal fixation, other specified bone', 'ICD9CM_2010'), +('79.4', 'Closed reduction of separated epiphysis', 'ICD9CM_2010'), +('79.40', 'Closed reduction of separated epiphysis, unspecified site', 'ICD9CM_2010'), +('79.41', 'Closed reduction of separated epiphysis of humerus', 'ICD9CM_2010'), +('79.42', 'Closed reduction of separated epiphysis of radius and ulna', 'ICD9CM_2010'), +('79.45', 'Closed reduction of separated epiphysis of femur', 'ICD9CM_2010'), +('79.46', 'Closed reduction of separated epiphysis of tibia and fibula', 'ICD9CM_2010'), +('79.49', 'Closed reduction of separated epiphysis of other specified bone', 'ICD9CM_2010'), +('79.5', 'Open reduction of separated epiphysis', 'ICD9CM_2010'), +('79.50', 'Open reduction of separated epiphysis, unspecified site', 'ICD9CM_2010'), +('79.51', 'Open reduction of separated epiphysis of humerus', 'ICD9CM_2010'), +('79.52', 'Open reduction of separated epiphysis of radius and ulna', 'ICD9CM_2010'), +('79.55', 'Open reduction of separated epiphysis of femur', 'ICD9CM_2010'), +('79.56', 'Open reduction of separated epiphysis of tibia and fibula', 'ICD9CM_2010'), +('79.59', 'Open reduction of separated epiphysis of other specified bone', 'ICD9CM_2010'), +('79.6', 'Debridement of open fracture site', 'ICD9CM_2010'), +('79.60', 'Debridement of open fracture, unspecified site', 'ICD9CM_2010'), +('79.61', 'Debridement of open fracture of humerus', 'ICD9CM_2010'), +('79.62', 'Debridement of open fracture of radius and ulna', 'ICD9CM_2010'), +('79.63', 'Debridement of open fracture of carpals and metacarpals', 'ICD9CM_2010'), +('79.64', 'Debridement of open fracture of phalanges of hand', 'ICD9CM_2010'), +('79.65', 'Debridement of open fracture of femur', 'ICD9CM_2010'), +('79.66', 'Debridement of open fracture of tibia and fibula', 'ICD9CM_2010'), +('79.67', 'Debridement of open fracture of tarsals and metatarsals', 'ICD9CM_2010'), +('79.68', 'Debridement of open fracture of phalanges of foot', 'ICD9CM_2010'), +('79.69', 'Debridement of open fracture of other specified bone', 'ICD9CM_2010'), +('79.7', 'Closed reduction of dislocation', 'ICD9CM_2010'), +('79.70', 'Closed reduction of dislocation of unspecified site', 'ICD9CM_2010'), +('79.71', 'Closed reduction of dislocation of shoulder', 'ICD9CM_2010'), +('79.72', 'Closed reduction of dislocation of elbow', 'ICD9CM_2010'), +('79.73', 'Closed reduction of dislocation of wrist', 'ICD9CM_2010'), +('79.74', 'Closed reduction of dislocation of hand and finger', 'ICD9CM_2010'), +('79.75', 'Closed reduction of dislocation of hip', 'ICD9CM_2010'), +('79.76', 'Closed reduction of dislocation of knee', 'ICD9CM_2010'), +('79.77', 'Closed reduction of dislocation of ankle', 'ICD9CM_2010'), +('79.78', 'Closed reduction of dislocation of foot and toe', 'ICD9CM_2010'), +('79.79', 'Closed reduction of dislocation of other specified site, except temp', 'ICD9CM_2010'), +('79.8', 'Open reduction of dislocation', 'ICD9CM_2010'), +('79.80', 'Open reduction of dislocation of unspecified site', 'ICD9CM_2010'), +('79.81', 'Open reduction of dislocation of shoulder', 'ICD9CM_2010'), +('79.82', 'Open reduction of dislocation of elbow', 'ICD9CM_2010'), +('79.83', 'Open reduction of dislocation of wrist', 'ICD9CM_2010'), +('79.84', 'Open reduction of dislocation of hand and finger', 'ICD9CM_2010'), +('79.85', 'Open reduction of dislocation of hip', 'ICD9CM_2010'), +('79.86', 'Open reduction of dislocation of knee', 'ICD9CM_2010'), +('79.87', 'Open reduction of dislocation of ankle', 'ICD9CM_2010'), +('79.88', 'Open reduction of dislocation of foot and toe', 'ICD9CM_2010'), +('79.89', 'Open reduction of dislocation of other specified site, except tempor', 'ICD9CM_2010'), +('79.9', 'Unspecified operation on bone injury', 'ICD9CM_2010'), +('79.90', 'Unspecified operation on bone injury, unspecified site', 'ICD9CM_2010'), +('79.91', 'Unspecified operation on bone injury of humerus', 'ICD9CM_2010'), +('79.92', 'Unspecified operation on bone injury of radius and ulna', 'ICD9CM_2010'), +('79.93', 'Unspecified operation on bone injury of carpals and metacarpals', 'ICD9CM_2010'), +('79.94', 'Unspecified operation on bone injury of phalanges of hand', 'ICD9CM_2010'), +('79.95', 'Unspecified operation on bone injury of femur', 'ICD9CM_2010'), +('79.96', 'Unspecified operation on bone injury of tibia and fibula', 'ICD9CM_2010'), +('79.97', 'Unspecified operation on bone injury of tarsals and metatarsals', 'ICD9CM_2010'), +('79.98', 'Unspecified operation on bone injury of phalanges of foot', 'ICD9CM_2010'), +('79.99', 'Unspecified operation on bone injury of other specified bone', 'ICD9CM_2010'), +('80', 'Incision and excision of joint structures', 'ICD9CM_2010'), +('80.0', 'Arthrotomy for removal of prosthesis', 'ICD9CM_2010'), +('80.00', 'Arthrotomy for removal of prosthesis, unspecified site', 'ICD9CM_2010'), +('80.01', 'Arthrotomy for removal of prosthesis of shoulder', 'ICD9CM_2010'), +('80.02', 'Arthrotomy for removal of prosthesis of elbow', 'ICD9CM_2010'), +('80.03', 'Arthrotomy for removal of prosthesis of wrist', 'ICD9CM_2010'), +('80.04', 'Arthrotomy for removal of prosthesis of hand and finger', 'ICD9CM_2010'), +('80.05', 'Arthrotomy for removal of prosthesis of hip', 'ICD9CM_2010'), +('80.06', 'Arthrotomy for removal of prosthesis of knee', 'ICD9CM_2010'), +('80.07', 'Arthrotomy for removal of prosthesis of ankle', 'ICD9CM_2010'), +('80.08', 'Arthrotomy for removal of prosthesis of foot and toe', 'ICD9CM_2010'), +('80.09', 'Arthrotomy for removal of prosthesis of other specified site', 'ICD9CM_2010'), +('80.1', 'Other arthrotomy', 'ICD9CM_2010'), +('80.10', 'Other arthrotomy, unspecified site', 'ICD9CM_2010'), +('80.11', 'Other arthrotomy of shoulder', 'ICD9CM_2010'), +('80.12', 'Other arthrotomy of elbow', 'ICD9CM_2010'), +('80.13', 'Other arthrotomy of wrist', 'ICD9CM_2010'), +('80.14', 'Other arthrotomy of hand and finger', 'ICD9CM_2010'), +('80.15', 'Other arthrotomy of hip', 'ICD9CM_2010'), +('80.16', 'Other arthrotomy of knee', 'ICD9CM_2010'), +('80.17', 'Other arthrotomy of ankle', 'ICD9CM_2010'), +('80.18', 'Other arthrotomy of foot and toe', 'ICD9CM_2010'), +('80.19', 'Other arthrotomy of other specified site', 'ICD9CM_2010'), +('80.2', 'Arthroscopy', 'ICD9CM_2010'), +('80.20', 'Arthroscopy, unspecified site', 'ICD9CM_2010'), +('80.21', 'Arthroscopy of shoulder', 'ICD9CM_2010'), +('80.22', 'Arthroscopy of elbow', 'ICD9CM_2010'), +('80.23', 'Arthroscopy of wrist', 'ICD9CM_2010'), +('80.24', 'Arthroscopy of hand and finger', 'ICD9CM_2010'), +('80.25', 'Arthroscopy of hip', 'ICD9CM_2010'), +('80.26', 'Arthroscopy of knee', 'ICD9CM_2010'), +('80.27', 'Arthroscopy of ankle', 'ICD9CM_2010'), +('80.28', 'Arthroscopy of foot and toe', 'ICD9CM_2010'), +('80.29', 'Arthroscopy of other specified site', 'ICD9CM_2010'), +('80.3', 'Biopsy of joint structure', 'ICD9CM_2010'), +('80.30', 'Biopsy of joint structure, unspecified site', 'ICD9CM_2010'), +('80.31', 'Biopsy of joint structure of shoulder', 'ICD9CM_2010'), +('80.32', 'Biopsy of joint structure of elbow', 'ICD9CM_2010'), +('80.33', 'Biopsy of joint structure of wrist', 'ICD9CM_2010'), +('80.34', 'Biopsy of joint structure of hand and finger', 'ICD9CM_2010'), +('80.35', 'Biopsy of joint structure of hip', 'ICD9CM_2010'), +('80.36', 'Biopsy of joint structure of knee', 'ICD9CM_2010'), +('80.37', 'Biopsy of joint structure of ankle', 'ICD9CM_2010'), +('80.38', 'Biopsy of joint structure of foot and toe', 'ICD9CM_2010'), +('80.39', 'Biopsy of joint structure of other specified site', 'ICD9CM_2010'), +('80.4', 'Division of joint capsule, ligament, or cartilage', 'ICD9CM_2010'), +('80.40', 'Division of joint capsule, ligament, or cartilage, unspecified site', 'ICD9CM_2010'), +('80.41', 'Division of joint capsule, ligament, or cartilage of shoulder', 'ICD9CM_2010'), +('80.42', 'Division of joint capsule, ligament, or cartilage of elbow', 'ICD9CM_2010'), +('80.43', 'Division of joint capsule, ligament, or cartilage of wrist', 'ICD9CM_2010'), +('80.44', 'Division of joint capsule, ligament, or cartilage of hand and finger', 'ICD9CM_2010'), +('80.45', 'Division of joint capsule, ligament, or cartilage of hip', 'ICD9CM_2010'), +('80.46', 'Division of joint capsule, ligament, or cartilage of knee', 'ICD9CM_2010'), +('80.47', 'Division of joint capsule, ligament, or cartilage of ankle', 'ICD9CM_2010'), +('80.48', 'Division of joint capsule, ligament, or cartilage of foot and toe', 'ICD9CM_2010'), +('80.49', 'Division of joint capsule, ligament, or cartilage of other specified', 'ICD9CM_2010'), +('80.5', 'Excision or destruction of intervertebral disc', 'ICD9CM_2010'), +('80.50', 'Excision or destruction of intervertebral disc, unspecified', 'ICD9CM_2010'), +('80.51', 'Excision of intervertebral disc', 'ICD9CM_2010'), +('80.52', 'Intervertebral chemonucleolysis', 'ICD9CM_2010'), +('80.53', 'Repair of the anulus fibrosus with graft or prosthesis', 'ICD9CM_2010'), +('80.54', 'Other and unspecified repair of the anulus fibrosus', 'ICD9CM_2010'), +('80.59', 'Other destruction of intervertebral disc', 'ICD9CM_2010'), +('80.6', 'Excision of semilunar cartilage of knee', 'ICD9CM_2010'), +('80.7', 'Synovectomy', 'ICD9CM_2010'), +('80.70', 'Synovectomy, unspecified site', 'ICD9CM_2010'), +('80.71', 'Synovectomy of shoulder', 'ICD9CM_2010'), +('80.72', 'Synovectomy of elbow', 'ICD9CM_2010'), +('80.73', 'Synovectomy of wrist', 'ICD9CM_2010'), +('80.74', 'Synovectomy of hand and finger', 'ICD9CM_2010'), +('80.75', 'Synovectomy of hip', 'ICD9CM_2010'), +('80.76', 'Synovectomy of knee', 'ICD9CM_2010'), +('80.77', 'Synovectomy of ankle', 'ICD9CM_2010'), +('80.78', 'Synovectomy of foot and toe', 'ICD9CM_2010'), +('80.79', 'Synovectomy of other specified site', 'ICD9CM_2010'), +('80.8', 'Other local excision or destruction of lesion of joint', 'ICD9CM_2010'), +('80.80', 'Other local excision or destruction of lesion of joint, unspecified', 'ICD9CM_2010'), +('80.81', 'Other local excision or destruction of lesion of shoulder joint', 'ICD9CM_2010'), +('80.82', 'Other local excision or destruction of lesion of elbow joint', 'ICD9CM_2010'), +('80.83', 'Other local excision or destruction of lesion of wrist joint', 'ICD9CM_2010'), +('80.84', 'Other local excision or destruction of lesion of joint of hand and finger', 'ICD9CM_2010'), +('80.85', 'Other local excision or destruction of lesion of hip joint', 'ICD9CM_2010'), +('80.86', 'Other local excision or destruction of lesion of knee joint', 'ICD9CM_2010'), +('80.87', 'Other local excision or destruction of lesion of ankle joint', 'ICD9CM_2010'), +('80.88', 'Other local excision or destruction of lesion of joint of foot and toe', 'ICD9CM_2010'), +('80.89', 'Other local excision or destruction of lesion of joint of other specified site', 'ICD9CM_2010'), +('80.9', 'Other excision of joint', 'ICD9CM_2010'), +('80.90', 'Other excision of joint, unspecified site', 'ICD9CM_2010'), +('80.91', 'Other excision of shoulder joint', 'ICD9CM_2010'), +('80.92', 'Other excision of elbow joint', 'ICD9CM_2010'), +('80.93', 'Other excision of wrist joint', 'ICD9CM_2010'), +('80.94', 'Other excision of joint of hand and finger', 'ICD9CM_2010'), +('80.95', 'Other excision of hip joint', 'ICD9CM_2010'), +('80.96', 'Other excision of knee joint', 'ICD9CM_2010'), +('80.97', 'Other excision of ankle joint', 'ICD9CM_2010'), +('80.98', 'Other excision of joint of foot and toe', 'ICD9CM_2010'), +('80.99', 'Other excision of joint of other specified site', 'ICD9CM_2010'), +('81', 'Repair and plastic operations on joint structures', 'ICD9CM_2010'), +('81.0', 'Spinal fusion', 'ICD9CM_2010'), +('81.00', 'Spinal fusion, not otherwise specified', 'ICD9CM_2010'), +('81.01', 'Atlas-axis spinal fusion', 'ICD9CM_2010'), +('81.02', 'Other cervical fusion, anterior technique', 'ICD9CM_2010'), +('81.03', 'Other cervical fusion, posterior technique', 'ICD9CM_2010'), +('81.04', 'Dorsal and dorsolumbar fusion, anterior technique', 'ICD9CM_2010'), +('81.05', 'Dorsal and dorsolumbar fusion, posterior technique', 'ICD9CM_2010'), +('81.06', 'Lumbar and lumbosacral fusion, anterior technique', 'ICD9CM_2010'), +('81.07', 'Lumbar and lumbosacral fusion, lateral transverse process technique', 'ICD9CM_2010'), +('81.08', 'Lumbar and lumbosacral fusion, posterior technique', 'ICD9CM_2010'), +('81.1', 'Arthrodesis and arthroereisis of foot and ankle', 'ICD9CM_2010'), +('81.11', 'Ankle fusion', 'ICD9CM_2010'), +('81.12', 'Triple arthrodesis', 'ICD9CM_2010'), +('81.13', 'Subtalar fusion', 'ICD9CM_2010'), +('81.14', 'Midtarsal fusion', 'ICD9CM_2010'), +('81.15', 'Tarsometatarsal fusion', 'ICD9CM_2010'), +('81.16', 'Metatarsophalangeal fusion', 'ICD9CM_2010'), +('81.17', 'Other fusion of foot', 'ICD9CM_2010'), +('81.18', 'Subtalar joint arthroereisis', 'ICD9CM_2010'), +('81.2', 'Arthrodesis of other joint', 'ICD9CM_2010'), +('81.20', 'Arthrodesis of unspecified joint', 'ICD9CM_2010'), +('81.21', 'Arthrodesis of hip', 'ICD9CM_2010'), +('81.22', 'Arthrodesis of knee', 'ICD9CM_2010'), +('81.23', 'Arthrodesis of shoulder', 'ICD9CM_2010'), +('81.24', 'Arthrodesis of elbow', 'ICD9CM_2010'), +('81.25', 'Carporadial fusion', 'ICD9CM_2010'), +('81.26', 'Metacarpocarpal fusion', 'ICD9CM_2010'), +('81.27', 'Metacarpophalangeal fusion', 'ICD9CM_2010'), +('81.28', 'Interphalangeal fusion', 'ICD9CM_2010'), +('81.29', 'Arthrodesis of other specified joint', 'ICD9CM_2010'), +('81.3', 'Rerfusion of spine', 'ICD9CM_2010'), +('81.30', 'Refusion of spine,not otherwise specified', 'ICD9CM_2010'), +('81.31', 'Refusion of atlas-axis spine', 'ICD9CM_2010'), +('81.32', 'Refuison of other cervical spine, anterior technique', 'ICD9CM_2010'), +('81.33', 'Refuison of other cervical spine, posterior technique', 'ICD9CM_2010'), +('81.34', 'Refuison of dorsal and dorolumbarspine, anterior technique', 'ICD9CM_2010'), +('81.35', 'Refuison of dorsal and dorolumbarspine, posterior technique', 'ICD9CM_2010'), +('81.36', 'Refuison of lumbar and lumbosacral spine, anterior technique', 'ICD9CM_2010'), +('81.37', 'Refuison of lumbar and lumbosacral spine, lateral transverse technique', 'ICD9CM_2010'), +('81.38', 'Refuison of lumbar and lumbosacral spine, posterior technique', 'ICD9CM_2010'), +('81.39', 'Refusion of spine, NEC', 'ICD9CM_2010'), +('81.4', 'Other repair of joint of lower extremity', 'ICD9CM_2010'), +('81.40', 'Repair of hip, not elsewhere classified', 'ICD9CM_2010'), +('81.42', 'Five-in-one repair of knee', 'ICD9CM_2010'), +('81.43', 'Triad knee repair', 'ICD9CM_2010'), +('81.44', 'Patellar stabilization', 'ICD9CM_2010'), +('81.45', 'Other repair of the cruciate ligaments', 'ICD9CM_2010'), +('81.46', 'Other repair of the collateral ligaments', 'ICD9CM_2010'), +('81.47', 'Other repair of knee', 'ICD9CM_2010'), +('81.49', 'Other repair of ankle', 'ICD9CM_2010'), +('81.5', 'Joint replacement of lower extremity', 'ICD9CM_2010'), +('81.51', 'Total hip replacement', 'ICD9CM_2010'), +('81.52', 'Partial hip replacement', 'ICD9CM_2010'), +('81.53', 'Revision of hip replacement, NEC', 'ICD9CM_2010'), +('81.54', 'Total knee replacement', 'ICD9CM_2010'), +('81.55', 'Revision of knee replacement, NEC', 'ICD9CM_2010'), +('81.56', 'Total ankle replacement', 'ICD9CM_2010'), +('81.57', 'Replacement of joint of foot and toe', 'ICD9CM_2010'), +('81.59', 'Revision of joint replacement of lower extremity, not elsewhere classified', 'ICD9CM_2010'), +('81.6', 'Other procedures on spine', 'ICD9CM_2010'), +('81.62', 'Fusion or refusion of 2-3 vertebrae', 'ICD9CM_2010'), +('81.63', 'Fusion or refusion of 4-8 vertebrae', 'ICD9CM_2010'), +('81.64', 'Fusion or refusion of 9 or more vertebrae', 'ICD9CM_2010'), +('81.65', 'Percutaneous vertebroplasty', 'ICD9CM_2010'), +('81.66', 'Percutaneous vertebral augmentation', 'ICD9CM_2010'), +('81.7', 'Arthroplasty and repair of hand, fingers, and wrist', 'ICD9CM_2010'), +('81.71', 'Arthroplasty of metacarpophalangeal and interphalangeal joint with implant', 'ICD9CM_2010'), +('81.72', 'Arthroplasty of metacarpophalangeal and interphalangeal joint without implant', 'ICD9CM_2010'), +('81.73', 'Total wrist replacement', 'ICD9CM_2010'), +('81.74', 'Arthroplasty of carpocarpal or carpometacarpal joint with implant', 'ICD9CM_2010'), +('81.75', 'Arthroplasty of carpocarpal or carpometacarpal joint without implant', 'ICD9CM_2010'), +('81.79', 'Other repair of hand, fingers, and wrist', 'ICD9CM_2010'), +('81.8', 'Arthroplasty and repair of shoulder and elbow', 'ICD9CM_2010'), +('81.80', 'Total shoulder replacement', 'ICD9CM_2010'), +('81.81', 'Partial shoulder replacement', 'ICD9CM_2010'), +('81.82', 'Repair of recurrent dislocation of shoulder', 'ICD9CM_2010'), +('81.83', 'Other repair of shoulder', 'ICD9CM_2010'), +('81.84', 'Total elbow replacement', 'ICD9CM_2010'), +('81.85', 'Other repair of elbow', 'ICD9CM_2010'), +('81.88', 'Reverse total shoulder replacement', 'ICD9CM_2010'), +('81.9', 'Other operations on joint structures', 'ICD9CM_2010'), +('81.91', 'Arthrocentesis', 'ICD9CM_2010'), +('81.92', 'Injection of therapeutic substance into joint or ligament', 'ICD9CM_2010'), +('81.93', 'Suture of capsule or ligament of upper extremity', 'ICD9CM_2010'), +('81.94', 'Suture of capsule or ligament of ankle and foot', 'ICD9CM_2010'), +('81.95', 'Suture of capsule or ligament of other lower extremity', 'ICD9CM_2010'), +('81.96', 'Other repair of joint', 'ICD9CM_2010'), +('81.97', 'Revision of joint replacement of upper extremity', 'ICD9CM_2010'), +('81.98', 'Other diagnostic procedures on joint structures', 'ICD9CM_2010'), +('81.99', 'Other operations on joint structures', 'ICD9CM_2010'), +('82', 'Operations on muscle, tendon, and fascia of hand', 'ICD9CM_2010'), +('82.0', 'Incision of muscle, tendon, fascia, and bursa of hand', 'ICD9CM_2010'), +('82.01', 'Exploration of tendon sheath of hand', 'ICD9CM_2010'), +('82.02', 'Myotomy of hand', 'ICD9CM_2010'), +('82.03', 'Bursotomy of hand', 'ICD9CM_2010'), +('82.04', 'Incision and drainage of palmar or thenar space', 'ICD9CM_2010'), +('82.09', 'Other incision of soft tissue of hand', 'ICD9CM_2010'), +('82.1', 'Division of muscle, tendon, and fascia of hand', 'ICD9CM_2010'), +('82.11', 'Tenotomy of hand', 'ICD9CM_2010'), +('82.12', 'Fasciotomy of hand', 'ICD9CM_2010'), +('82.19', 'Other division of soft tissue of hand', 'ICD9CM_2010'), +('82.2', 'Excision of lesion of muscle, tendon, and fascia of hand', 'ICD9CM_2010'), +('82.21', 'Excision of lesion of tendon sheath of hand', 'ICD9CM_2010'), +('82.22', 'Excision of lesion of muscle of hand', 'ICD9CM_2010'), +('82.29', 'Excision of other lesion of soft tissue of hand', 'ICD9CM_2010'), +('82.3', 'Other excision of soft tissue of hand', 'ICD9CM_2010'), +('82.31', 'Bursectomy of hand', 'ICD9CM_2010'), +('82.32', 'Excision of tendon of hand for graft', 'ICD9CM_2010'), +('82.33', 'Other tenonectomy of hand', 'ICD9CM_2010'), +('82.34', 'Excision of muscle or fascia of hand for graft', 'ICD9CM_2010'), +('82.35', 'Other fasciectomy of hand', 'ICD9CM_2010'), +('82.36', 'Other myectomy of hand', 'ICD9CM_2010'), +('82.39', 'Other excision of soft tissue of hand', 'ICD9CM_2010'), +('82.4', 'Suture of muscle, tendon, and fascia of hand', 'ICD9CM_2010'), +('82.41', 'Suture of tendon sheath of hand', 'ICD9CM_2010'), +('82.42', 'Delayed suture of flexor tendon of hand', 'ICD9CM_2010'), +('82.43', 'Delayed suture of other tendon of hand', 'ICD9CM_2010'), +('82.44', 'Other suture of flexor tendon of hand', 'ICD9CM_2010'), +('82.45', 'Other suture of other tendon of hand', 'ICD9CM_2010'), +('82.46', 'Suture of muscle or fascia of hand', 'ICD9CM_2010'), +('82.5', 'Transplantation of muscle and tendon of hand', 'ICD9CM_2010'), +('82.51', 'Advancement of tendon of hand', 'ICD9CM_2010'), +('82.52', 'Recession of tendon of hand', 'ICD9CM_2010'), +('82.53', 'Reattachment of tendon of hand', 'ICD9CM_2010'), +('82.54', 'Reattachment of muscle of hand', 'ICD9CM_2010'), +('82.55', 'Other change in muscle or tendon length of hand', 'ICD9CM_2010'), +('82.56', 'Other hand tendon transfer or transplantation', 'ICD9CM_2010'), +('82.57', 'Other hand tendon transposition', 'ICD9CM_2010'), +('82.58', 'Other hand muscle transfer or transplantation', 'ICD9CM_2010'), +('82.59', 'Other hand muscle transposition', 'ICD9CM_2010'), +('82.6', 'Reconstruction of thumb', 'ICD9CM_2010'), +('82.61', 'Pollicization operation carrying over nerves and blood supply', 'ICD9CM_2010'), +('82.69', 'Other reconstruction of thumb', 'ICD9CM_2010'), +('82.7', 'Plastic operation on hand with graft or implant', 'ICD9CM_2010'), +('82.71', 'Tendon pulley reconstruction', 'ICD9CM_2010'), +('82.72', 'Plastic operation on hand with graft of muscle or fascia', 'ICD9CM_2010'), +('82.79', 'Plastic operation on hand with other graft or implant', 'ICD9CM_2010'), +('82.8', 'Other plastic operations on hand', 'ICD9CM_2010'), +('82.81', 'Transfer of finger, except thumb', 'ICD9CM_2010'), +('82.82', 'Repair of cleft hand', 'ICD9CM_2010'), +('82.83', 'Repair of macrodactyly', 'ICD9CM_2010'), +('82.84', 'Repair of mallet finger', 'ICD9CM_2010'), +('82.85', 'Other tenodesis of hand', 'ICD9CM_2010'), +('82.86', 'Other tenoplasty of hand', 'ICD9CM_2010'), +('82.89', 'Other plastic operations on hand', 'ICD9CM_2010'), +('82.9', 'Other operations on muscle, tendon, and fascia of hand', 'ICD9CM_2010'), +('82.91', 'Lysis of adhesions of hand', 'ICD9CM_2010'), +('82.92', 'Aspiration of bursa of hand', 'ICD9CM_2010'), +('82.93', 'Aspiration of other soft tissue of hand', 'ICD9CM_2010'), +('82.94', 'Injection of therapeutic substance into bursa of hand', 'ICD9CM_2010'), +('82.95', 'Injection of therapeutic substance into tendon of hand', 'ICD9CM_2010'), +('82.96', 'Other injection of locally-acting therapeutic substance into soft ti', 'ICD9CM_2010'), +('82.99', 'Other operations on muscle, tendon, and fascia of hand', 'ICD9CM_2010'), +('83', 'Operations on muscle, tendon, fascia, and bursa, except hand', 'ICD9CM_2010'), +('83.0', 'Incision of muscle, tendon, fascia, and bursa', 'ICD9CM_2010'), +('83.01', 'Exploration of tendon sheath', 'ICD9CM_2010'), +('83.02', 'Myotomy', 'ICD9CM_2010'), +('83.03', 'Bursotomy', 'ICD9CM_2010'), +('83.09', 'Other incision of soft tissue', 'ICD9CM_2010'), +('83.1', 'Division of muscle, tendon, and fascia', 'ICD9CM_2010'), +('83.11', 'Achillotenotomy', 'ICD9CM_2010'), +('83.12', 'Adductor tenotomy of hip', 'ICD9CM_2010'), +('83.13', 'Other tenotomy', 'ICD9CM_2010'), +('83.14', 'Fasciotomy', 'ICD9CM_2010'), +('83.19', 'Other division of soft tissue', 'ICD9CM_2010'), +('83.2', 'Diagnostic procedures on muscle, tendon, fascia, and bursa, including that of hand', 'ICD9CM_2010'), +('83.21', 'Biopsy of soft tissue', 'ICD9CM_2010'), +('83.29', 'Other diagnostic procedures on muscle, tendon, fascia, and bursa, including that of hand', 'ICD9CM_2010'), +('83.3', 'Excision of lesion of muscle, tendon, fascia, and bursa', 'ICD9CM_2010'), +('83.31', 'Excision of lesion of tendon sheath', 'ICD9CM_2010'), +('83.32', 'Excision of lesion of muscle', 'ICD9CM_2010'), +('83.39', 'Excision of lesion of other soft tissue', 'ICD9CM_2010'), +('83.4', 'Other excision of muscle, tendon, and fascia', 'ICD9CM_2010'), +('83.41', 'Excision of tendon for graft', 'ICD9CM_2010'), +('83.42', 'Other tenonectomy', 'ICD9CM_2010'), +('83.43', 'Excision of muscle or fascia for graft', 'ICD9CM_2010'), +('83.44', 'Other fasciectomy', 'ICD9CM_2010'), +('83.45', 'Other myectomy', 'ICD9CM_2010'), +('83.49', 'Other excision of soft tissue', 'ICD9CM_2010'), +('83.5', 'Bursectomy', 'ICD9CM_2010'), +('83.6', 'Suture of muscle, tendon, and fascia', 'ICD9CM_2010'), +('83.61', 'Suture of tendon sheath', 'ICD9CM_2010'), +('83.62', 'Delayed suture of tendon', 'ICD9CM_2010'), +('83.63', 'Rotator cuff repair', 'ICD9CM_2010'), +('83.64', 'Other suture of tendon', 'ICD9CM_2010'), +('83.65', 'Other suture of muscle or fascia', 'ICD9CM_2010'), +('83.7', 'Reconstruction of muscle and tendon', 'ICD9CM_2010'), +('83.71', 'Advancement of tendon', 'ICD9CM_2010'), +('83.72', 'Recession of tendon', 'ICD9CM_2010'), +('83.73', 'Reattachment of tendon', 'ICD9CM_2010'), +('83.74', 'Reattachment of muscle', 'ICD9CM_2010'), +('83.75', 'Tendon transfer or transplantation', 'ICD9CM_2010'), +('83.76', 'Other tendon transposition', 'ICD9CM_2010'), +('83.77', 'Muscle transfer or transplantation', 'ICD9CM_2010'), +('83.79', 'Other muscle transposition', 'ICD9CM_2010'), +('83.8', 'Other plastic operations on muscle, tendon, and fascia', 'ICD9CM_2010'), +('83.81', 'Tendon graft', 'ICD9CM_2010'), +('83.82', 'Graft of muscle or fascia', 'ICD9CM_2010'), +('83.83', 'Tendon pulley reconstruction', 'ICD9CM_2010'), +('83.84', 'Release of clubfoot, not elsewhere classified', 'ICD9CM_2010'), +('83.85', 'Other change in muscle or tendon length', 'ICD9CM_2010'), +('83.86', 'Quadricepsplasty', 'ICD9CM_2010'), +('83.87', 'Other plastic operations on muscle', 'ICD9CM_2010'), +('83.88', 'Other plastic operations on tendon', 'ICD9CM_2010'), +('83.89', 'Other plastic operations on fascia', 'ICD9CM_2010'), +('83.9', 'Other operations on muscle, tendon, fascia, and bursa', 'ICD9CM_2010'), +('83.91', 'Lysis of adhesions of muscle, tendon, fascia, and bursa', 'ICD9CM_2010'), +('83.92', 'Insertion or replacement of skeletal muscle stimulator', 'ICD9CM_2010'), +('83.93', 'Removal of skeletal muscle stimulator', 'ICD9CM_2010'), +('83.94', 'Aspiration of bursa', 'ICD9CM_2010'), +('83.95', 'Aspiration of other soft tissue', 'ICD9CM_2010'), +('83.96', 'Injection of therapeutic substance into bursa', 'ICD9CM_2010'), +('83.97', 'Injection of therapeutic substance into tendon', 'ICD9CM_2010'), +('83.98', 'Injection of locally acting therapeutic substance into other soft tissue', 'ICD9CM_2010'), +('83.99', 'Other operations on muscle, tendon, fascia, and bursa', 'ICD9CM_2010'), +('84', 'Other procedures on musculoskeletal system', 'ICD9CM_2010'), +('84.0', 'Amputation of upper limb', 'ICD9CM_2010'), +('84.00', 'Upper limb amputation, not otherwise specified', 'ICD9CM_2010'), +('84.01', 'Amputation and disarticulation of finger', 'ICD9CM_2010'), +('84.02', 'Amputation and disarticulation of thumb', 'ICD9CM_2010'), +('84.03', 'Amputation through hand', 'ICD9CM_2010'), +('84.04', 'Disarticulation of wrist', 'ICD9CM_2010'), +('84.05', 'Amputation through forearm', 'ICD9CM_2010'), +('84.06', 'Disarticulation of elbow', 'ICD9CM_2010'), +('84.07', 'Amputation through humerus', 'ICD9CM_2010'), +('84.08', 'Disarticulation of shoulder', 'ICD9CM_2010'), +('84.09', 'Interthoracoscapular amputation', 'ICD9CM_2010'), +('84.1', 'Amputation of lower limb', 'ICD9CM_2010'), +('84.10', 'Lower limb amputation, not otherwise specified', 'ICD9CM_2010'), +('84.11', 'Amputation of toe', 'ICD9CM_2010'), +('84.12', 'Amputation through foot', 'ICD9CM_2010'), +('84.13', 'Disarticulation of ankle', 'ICD9CM_2010'), +('84.14', 'Amputation of ankle through malleoli of tibia and fibula', 'ICD9CM_2010'), +('84.15', 'Other amputation below knee', 'ICD9CM_2010'), +('84.16', 'Disarticulation of knee', 'ICD9CM_2010'), +('84.17', 'Amputation above knee', 'ICD9CM_2010'), +('84.18', 'Disarticulation of hip', 'ICD9CM_2010'), +('84.19', 'Abdominopelvic amputation', 'ICD9CM_2010'), +('84.2', 'Reattachment of extremity', 'ICD9CM_2010'), +('84.21', 'Thumb reattachment', 'ICD9CM_2010'), +('84.22', 'Finger reattachment', 'ICD9CM_2010'), +('84.23', 'Forearm, wrist, or hand reattachment', 'ICD9CM_2010'), +('84.24', 'Upper arm reattachment', 'ICD9CM_2010'), +('84.25', 'Toe reattachment', 'ICD9CM_2010'), +('84.26', 'Foot reattachment', 'ICD9CM_2010'), +('84.27', 'Lower leg or ankle reattachment', 'ICD9CM_2010'), +('84.28', 'Thigh reattachment', 'ICD9CM_2010'), +('84.29', 'Other reattachment of extremity', 'ICD9CM_2010'), +('84.3', 'Revision of amputation stump', 'ICD9CM_2010'), +('84.4', 'Implantation or fitting of prosthetic limb device', 'ICD9CM_2010'), +('84.40', 'Implantation or fitting of prosthetic limb device, not otherwise specified', 'ICD9CM_2010'), +('84.41', 'Fitting of prosthesis of upper arm and shoulder', 'ICD9CM_2010'), +('84.42', 'Fitting of prosthesis of lower arm and hand', 'ICD9CM_2010'), +('84.43', 'Fitting of prosthesis of arm, not otherwise specified', 'ICD9CM_2010'), +('84.44', 'Implantation of prosthetic device of arm', 'ICD9CM_2010'), +('84.45', 'Fitting of prosthesis above knee', 'ICD9CM_2010'), +('84.46', 'Fitting of prosthesis below knee', 'ICD9CM_2010'), +('84.47', 'Fitting of prosthesis of leg, not otherwise specified', 'ICD9CM_2010'), +('84.48', 'Implantation of prosthetic device of leg', 'ICD9CM_2010'), +('84.5', 'Implantation of other musculoskeletal devices and substance', 'ICD9CM_2010'), +('84.51', 'Insertion of interbody spinal fusion device', 'ICD9CM_2010'), +('84.52', 'Insertion of recombinant bone morphogenetic protein rhBMP', 'ICD9CM_2010'), +('84.53', 'Implantation of internal limb lengthening device with kinetic distraction', 'ICD9CM_2010'), +('84.54', 'Implantation of other internal limb lengthening device', 'ICD9CM_2010'), +('84.55', 'Insertion of bone void filler', 'ICD9CM_2010'), +('84.56', 'Insertion or replacement of (cement) spacer', 'ICD9CM_2010'), +('84.57', 'Removal of (cement) spacer', 'ICD9CM_2010'), +('84.59', 'Insertion of other spinal devices', 'ICD9CM_2010'), +('84.6', 'Replacement of spinal disc', 'ICD9CM_2010'), +('84.60', 'Insertion of spinal disc prosthesis, not otherwise specified', 'ICD9CM_2010'), +('84.61', 'Insertion of partial spinal disc prosthesis, cervical', 'ICD9CM_2010'), +('84.62', 'Insertion of total spinal disc prosthesis cervical', 'ICD9CM_2010'), +('84.63', 'Insertion of spinal disc prosthesis,thoracic', 'ICD9CM_2010'), +('84.64', 'Insertion of partial spinal disc prosthesis, lumbosacral', 'ICD9CM_2010'), +('84.65', 'Insertion of total spinal disc prosthesis,lumbosacral', 'ICD9CM_2010'), +('84.66', 'Revision or replacement of artificial spinal disc prosthesis ,cervical', 'ICD9CM_2010'), +('84.67', 'Revision or replacement of artificial spinal disc prosthesis , thoracic', 'ICD9CM_2010'), +('84.68', 'Revision or replacement of artificial spinal disc prosthesis, lumbosacral', 'ICD9CM_2010'), +('84.69', 'Revision or replacement of artificial spinal disc prosthesis, not otherwise specified', 'ICD9CM_2010'), +('84.7', 'Adjunct codes for external fixator device', 'ICD9CM_2010'), +('84.71', 'Application of external fixator device, monoplanar system', 'ICD9CM_2010'), +('84.72', 'Application of external fixator device, ring system', 'ICD9CM_2010'), +('84.73', 'Application of hybrid external fixator device', 'ICD9CM_2010'), +('84.8', 'Insertion, replacement and revision of posterior spinal motion preservation device (s)', 'ICD9CM_2010'), +('84.80', 'Insertion or replacement of interspinous process device (s)', 'ICD9CM_2010'), +('84.81', 'Revision of interspinous device (s)', 'ICD9CM_2010'), +('84.82', 'Insertion or replacement of pedicle-based dynamic stabilization (s)', 'ICD9CM_2010'), +('84.83', 'Revision of pedicle-based dynamic stabilization (s)', 'ICD9CM_2010'), +('84.84', 'Insertion or replacement of facet replacement device (s)', 'ICD9CM_2010'), +('84.85', 'Revision of facet replacement device (s)', 'ICD9CM_2010'), +('84.9', 'Other operations on musculoskeletal system', 'ICD9CM_2010'), +('84.91', 'Amputation, not otherwise specified', 'ICD9CM_2010'), +('84.92', 'Separation of equal conjoined twins', 'ICD9CM_2010'), +('84.93', 'Separation of unequal conjoined twins', 'ICD9CM_2010'), +('84.94', 'Insertion of sternal fixation device with rigid plates', 'ICD9CM_2010'), +('84.99', 'Other operations on musculoskeletal system', 'ICD9CM_2010'), +('85', 'Operations on the breast', 'ICD9CM_2010'), +('85.0', 'Mastotomy', 'ICD9CM_2010'), +('85.1', 'Diagnostic procedures on breast', 'ICD9CM_2010'), +('85.11', 'Closed (percutaneous) (needle) biopsy of breast', 'ICD9CM_2010'), +('85.12', 'Open biopsy of breast', 'ICD9CM_2010'), +('85.19', 'Other diagnostic procedures on breast', 'ICD9CM_2010'), +('85.2', 'Excision or destruction of breast tissue', 'ICD9CM_2010'), +('85.20', 'Excision or destruction of breast tissue, not otherwise specified', 'ICD9CM_2010'), +('85.21', 'Local excision of lesion of breast', 'ICD9CM_2010'), +('85.22', 'Resection of quadrant of breast', 'ICD9CM_2010'), +('85.23', 'Subtotal mastectomy', 'ICD9CM_2010'), +('85.24', 'Excision of ectopic breast tissue', 'ICD9CM_2010'), +('85.25', 'Excision of nipple', 'ICD9CM_2010'), +('85.3', 'Reduction mammoplasty and subcutaneous mammectomy', 'ICD9CM_2010'), +('85.31', 'Unilateral reduction mammoplasty', 'ICD9CM_2010'), +('85.32', 'Bilateral reduction mammoplasty', 'ICD9CM_2010'), +('85.33', 'Unilateral subcutaneous mammectomy with synchronous implant', 'ICD9CM_2010'), +('85.34', 'Other unilateral subcutaneous mammectomy', 'ICD9CM_2010'), +('85.35', 'Bilateral subcutaneous mammectomy with synchronous implant', 'ICD9CM_2010'), +('85.36', 'Other bilateral subcutaneous mammectomy', 'ICD9CM_2010'), +('85.4', 'Mastectomy', 'ICD9CM_2010'), +('85.41', 'Unilateral simple mastectomy', 'ICD9CM_2010'), +('85.42', 'Bilateral simple mastectomy', 'ICD9CM_2010'), +('85.43', 'Unilateral extended simple mastectomy', 'ICD9CM_2010'), +('85.44', 'Bilateral extended simple mastectomy', 'ICD9CM_2010'), +('85.45', 'Unilateral radical mastectomy', 'ICD9CM_2010'), +('85.46', 'Bilateral radical mastectomy', 'ICD9CM_2010'), +('85.47', 'Unilateral extended radical mastectomy', 'ICD9CM_2010'), +('85.48', 'Bilateral extended radical mastectomy', 'ICD9CM_2010'), +('85.5', 'Augmentation mammoplasty', 'ICD9CM_2010'), +('85.50', 'Augmentation mammoplasty, not otherwise specified', 'ICD9CM_2010'), +('85.51', 'Unilateral injection into breast for augmentation', 'ICD9CM_2010'), +('85.52', 'Bilateral injection into breast for augmentation', 'ICD9CM_2010'), +('85.53', 'Unilateral breast implant', 'ICD9CM_2010'), +('85.54', 'Bilateral breast implant', 'ICD9CM_2010'), +('85.55', 'Fat graft to breast', 'ICD9CM_2010'), +('85.6', 'Mastopexy', 'ICD9CM_2010'), +('85.7', 'Total reconstruction of breast', 'ICD9CM_2010'), +('85.70', 'Total reconstruction of breast, not otherwise specified', 'ICD9CM_2010'), +('85.71', 'Latissimus dorsi myocutaneous flap', 'ICD9CM_2010'), +('85.72', 'Transverse rectus abdominis myocutaneous (TRAM) flap, pedicled', 'ICD9CM_2010'), +('85.73', 'Transverse rectus abdominis myocutaneous (TRAM) flap,free', 'ICD9CM_2010'), +('85.74', 'Deep inferior epigastric artery perforatar (DIEP)', 'ICD9CM_2010'), +('85.75', 'Superficial inferior epigastric artery (SIEA) flap, free', 'ICD9CM_2010'), +('85.76', 'Gluteal artery perforator (GAP) flap, free', 'ICD9CM_2010'), +('85.79', 'Other total reconstruction of breast', 'ICD9CM_2010'), +('85.8', 'Other repair and plastic operations on breast', 'ICD9CM_2010'), +('85.81', 'Suture of laceration of breast', 'ICD9CM_2010'), +('85.82', 'Split-thickness graft to breast', 'ICD9CM_2010'), +('85.83', 'Full-thickness graft to breast', 'ICD9CM_2010'), +('85.84', 'Pedicle graft to breast', 'ICD9CM_2010'), +('85.85', 'Muscle flap graft to breast', 'ICD9CM_2010'), +('85.86', 'Transposition of nipple', 'ICD9CM_2010'), +('85.87', 'Other repair or reconstruction of nipple', 'ICD9CM_2010'), +('85.89', 'Other mammoplasty', 'ICD9CM_2010'), +('85.9', 'Other operations on the breast', 'ICD9CM_2010'), +('85.91', 'Aspiration of breast', 'ICD9CM_2010'), +('85.92', 'Injection of therapeutic agent into breast', 'ICD9CM_2010'), +('85.93', 'Revision of implant of breast', 'ICD9CM_2010'), +('85.94', 'Removal of implant of breast', 'ICD9CM_2010'), +('85.95', 'Insertion of breast tissue expander', 'ICD9CM_2010'), +('85.96', 'Removal of breast tissue expander (s)', 'ICD9CM_2010'), +('85.99', 'Other operations on the breast', 'ICD9CM_2010'), +('86', 'Operations on skin and subcutaneous tissue', 'ICD9CM_2010'), +('86.0', 'Incision of skin and subcutaneous tissue', 'ICD9CM_2010'), +('86.01', 'Aspiration of skin and subcutaneous tissue', 'ICD9CM_2010'), +('86.02', 'Injection or tattooing of skin lesion or defect', 'ICD9CM_2010'), +('86.03', 'Incision of pilonidal sinus or cyst', 'ICD9CM_2010'), +('86.04', 'Other incision with drainage of skin and subcutaneous tissue', 'ICD9CM_2010'), +('86.05', 'Incision with removal of foreign body from skin and subcutaneous tissue', 'ICD9CM_2010'), +('86.06', 'Insertion of totally implantable infusion pump', 'ICD9CM_2010'), +('86.07', 'Insertion of totally implantable vascular access device (vad)', 'ICD9CM_2010'), +('86.09', 'Other incision of skin and subcutaneous tissue', 'ICD9CM_2010'), +('86.1', 'Diagnostic procedures on skin and subcutaneous tissue', 'ICD9CM_2010'), +('86.11', 'Biopsy of skin and subcutaneous tissue', 'ICD9CM_2010'), +('86.19', 'Other diagnostic procedures on skin and subcutaneous tissue', 'ICD9CM_2010'), +('86.2', 'Excision or destruction of lesion or tissue of skin and subcutaneous', 'ICD9CM_2010'), +('86.21', 'Excision of pilonidal cyst or sinus', 'ICD9CM_2010'), +('86.22', 'Excisional debridement of wound, infection, or burn', 'ICD9CM_2010'), +('86.23', 'Removal of nail, nailbed, or nail fold', 'ICD9CM_2010'), +('86.24', 'Chemosurgery of skin', 'ICD9CM_2010'), +('86.25', 'Dermabrasion', 'ICD9CM_2010'), +('86.26', 'Ligation of dermal appendage', 'ICD9CM_2010'), +('86.27', 'Debridement of nail, nail bed, or nail fold', 'ICD9CM_2010'), +('86.28', 'Nonexcisional debridement of wound, infection, or burn', 'ICD9CM_2010'), +('86.3', 'Other local excision or destruction of lesion or tissue of skin and', 'ICD9CM_2010'), +('86.4', 'Radical excision of skin lesion', 'ICD9CM_2010'), +('86.5', 'Suture of skin and subcutaneous tissue', 'ICD9CM_2010'), +('86.51', 'Replantation of scalp', 'ICD9CM_2010'), +('86.59', 'Suture of skin and subcutaneous tissue of other sites', 'ICD9CM_2010'), +('86.6', 'Free skin graft', 'ICD9CM_2010'), +('86.60', 'Free skin graft, not otherwise specified', 'ICD9CM_2010'), +('86.61', 'Full-thickness skin graft to hand', 'ICD9CM_2010'), +('86.62', 'Other skin graft to hand', 'ICD9CM_2010'), +('86.63', 'Full-thickness skin graft to other sites', 'ICD9CM_2010'), +('86.64', 'Hair transplant', 'ICD9CM_2010'), +('86.65', 'Heterograft to skin', 'ICD9CM_2010'), +('86.66', 'Homograft to skin', 'ICD9CM_2010'), +('86.67', 'Dermal regenerative graft', 'ICD9CM_2010'), +('86.69', 'Other skin graft to other sites', 'ICD9CM_2010'), +('86.7', 'Pedicle grafts or flaps', 'ICD9CM_2010'), +('86.70', 'Pedicle or flap graft, not otherwise specified', 'ICD9CM_2010'), +('86.71', 'Cutting and preparation of pedicle grafts or flaps', 'ICD9CM_2010'), +('86.72', 'Advancement of pedicle graft', 'ICD9CM_2010'), +('86.73', 'Attachment of pedicle or flap graft to hand', 'ICD9CM_2010'), +('86.74', 'Attachment of pedicle or flap graft to other sites', 'ICD9CM_2010'), +('86.75', 'Revision of pedicle or flap graft', 'ICD9CM_2010'), +('86.8', 'Other repair and reconstruction of skin and subcutaneous tissue', 'ICD9CM_2010'), +('86.81', 'Repair for facial weakness', 'ICD9CM_2010'), +('86.82', 'Facial rhytidectomy', 'ICD9CM_2010'), +('86.83', 'Size reduction plastic operation', 'ICD9CM_2010'), +('86.84', 'Relaxation of scar or web contracture of skin', 'ICD9CM_2010'), +('86.85', 'Correction of syndactyly', 'ICD9CM_2010'), +('86.86', 'Onychoplasty', 'ICD9CM_2010'), +('86.87', 'Fat graft of skin and subcutaneous tissue', 'ICD9CM_2010'), +('86.89', 'Other repair and reconstruction of skin and subcutaneous tissue', 'ICD9CM_2010'), +('86.9', 'Other operations on skin and subcutaneous tissue', 'ICD9CM_2010'), +('86.90', 'Extraction of fat for graft or banking', 'ICD9CM_2010'), +('86.91', 'Excision of skin for graft', 'ICD9CM_2010'), +('86.92', 'Electrolysis and other epilation of skin', 'ICD9CM_2010'), +('86.93', 'Insertion of tissue expander', 'ICD9CM_2010'), +('86.94', 'Insertion or replacement of singer array neurostimulator pulse generator, not specified as rechargeable', 'ICD9CM_2010'), +('86.95', 'Insertion or replacement of dual array neurostimulator pulse generator, not specified as rechargeable', 'ICD9CM_2010'), +('86.96', 'Insertion or replacement of other neurostimulator pulse generator', 'ICD9CM_2010'), +('86.97', 'Insertion or replacement of singer array rechargeable neurostimulator pulse generator', 'ICD9CM_2010'), +('86.98', 'Insertion or replacement of dual array rechargeable neurostimulator pulse generator', 'ICD9CM_2010'), +('86.99', 'Other operations on skin and subcutaneous tissue', 'ICD9CM_2010'), +('87', 'Diagnostic radiology', 'ICD9CM_2010'), +('87.0', 'Soft tissue x-ray of face, head, and neck', 'ICD9CM_2010'), +('87.01', 'Pneumoencephalogram', 'ICD9CM_2010'), +('87.02', 'Other contrast radiogram of brain and skull', 'ICD9CM_2010'), +('87.03', 'Computerized axial tomography of head', 'ICD9CM_2010'), +('87.04', 'Other tomography of head', 'ICD9CM_2010'), +('87.05', 'Contrast dacryocystogram', 'ICD9CM_2010'), +('87.06', 'Contrast radiogram of nasopharynx', 'ICD9CM_2010'), +('87.07', 'Contrast laryngogram', 'ICD9CM_2010'), +('87.08', 'Cervical lymphangiogram', 'ICD9CM_2010'), +('87.09', 'Other soft tissue x-ray of face, head, and neck', 'ICD9CM_2010'), +('87.1', 'Other x-ray of face, head, and neck', 'ICD9CM_2010'), +('87.11', 'Full-mouth x-ray of teeth', 'ICD9CM_2010'), +('87.12', 'Other dental x-ray', 'ICD9CM_2010'), +('87.13', 'Temporomandibular contrast arthrogram', 'ICD9CM_2010'), +('87.14', 'Contrast radiogram of orbit', 'ICD9CM_2010'), +('87.15', 'Contrast radiogram of sinus', 'ICD9CM_2010'), +('87.16', 'Other x-ray of facial bones', 'ICD9CM_2010'), +('87.17', 'Other x-ray of skull', 'ICD9CM_2010'), +('87.2', 'X-ray of spine', 'ICD9CM_2010'), +('87.21', 'Contrast myelogram', 'ICD9CM_2010'); +INSERT INTO `icd9` (`ID_ICD9`, `Prosedur`, `Versi_ICD9`) VALUES +('87.22', 'Other x-ray of cervical spine', 'ICD9CM_2010'), +('87.23', 'Other x-ray of thoracic spine', 'ICD9CM_2010'), +('87.24', 'Other x-ray of lumbosacral spine', 'ICD9CM_2010'), +('87.29', 'Other x-ray of spine', 'ICD9CM_2010'), +('87.3', 'Soft tissue x-ray of thorax', 'ICD9CM_2010'), +('87.31', 'Endotracheal bronchogram', 'ICD9CM_2010'), +('87.32', 'Other contrast bronchogram', 'ICD9CM_2010'), +('87.33', 'Mediastinal pneumogram', 'ICD9CM_2010'), +('87.34', 'Intrathoracic lymphangiogram', 'ICD9CM_2010'), +('87.35', 'Contrast radiogram of mammary ducts', 'ICD9CM_2010'), +('87.36', 'Xerography of breast', 'ICD9CM_2010'), +('87.37', 'Other mammography', 'ICD9CM_2010'), +('87.38', 'Sinogram of chest wall', 'ICD9CM_2010'), +('87.39', 'Other soft tissue x-ray of chest wall', 'ICD9CM_2010'), +('87.4', 'Other x-ray of thorax', 'ICD9CM_2010'), +('87.41', 'Computerized axial tomography of thorax', 'ICD9CM_2010'), +('87.42', 'Other tomography of thorax', 'ICD9CM_2010'), +('87.43', 'X-ray of ribs, sternum, and clavicle', 'ICD9CM_2010'), +('87.44', 'Routine chest x-ray, so described', 'ICD9CM_2010'), +('87.49', 'Other chest x-ray', 'ICD9CM_2010'), +('87.5', 'Biliary tract x-ray', 'ICD9CM_2010'), +('87.51', 'Percutaneous hepatic cholangiogram', 'ICD9CM_2010'), +('87.52', 'Intravenous cholangiogram', 'ICD9CM_2010'), +('87.53', 'Intraoperative cholangiogram', 'ICD9CM_2010'), +('87.54', 'Other cholangiogram', 'ICD9CM_2010'), +('87.59', 'Other biliary tract x-ray', 'ICD9CM_2010'), +('87.6', 'Other x-ray of digestive system', 'ICD9CM_2010'), +('87.61', 'Barium swallow', 'ICD9CM_2010'), +('87.62', 'Upper gi series', 'ICD9CM_2010'), +('87.63', 'Small bowel series', 'ICD9CM_2010'), +('87.64', 'Lower gi series', 'ICD9CM_2010'), +('87.65', 'Other x-ray of intestine', 'ICD9CM_2010'), +('87.66', 'Contrast pancreatogram', 'ICD9CM_2010'), +('87.69', 'Other digestive tract x-ray', 'ICD9CM_2010'), +('87.7', 'X-ray of urinary system', 'ICD9CM_2010'), +('87.71', 'Computerized axial tomography of kidney', 'ICD9CM_2010'), +('87.72', 'Other nephrotomogram', 'ICD9CM_2010'), +('87.73', 'Intravenous pyelogram', 'ICD9CM_2010'), +('87.74', 'Retrograde pyelogram', 'ICD9CM_2010'), +('87.75', 'Percutaneous pyelogram', 'ICD9CM_2010'), +('87.76', 'Retrograde cystourethrogram', 'ICD9CM_2010'), +('87.77', 'Other cystogram', 'ICD9CM_2010'), +('87.78', 'Ileal conduitogram', 'ICD9CM_2010'), +('87.79', 'Other x-ray of the urinary system', 'ICD9CM_2010'), +('87.8', 'X-ray of female genital organs', 'ICD9CM_2010'), +('87.81', 'X-ray of gravid uterus', 'ICD9CM_2010'), +('87.82', 'Gas contrast hysterosalpingogram', 'ICD9CM_2010'), +('87.83', 'Opaque dye contrast hysterosalpingogram', 'ICD9CM_2010'), +('87.84', 'Percutaneous hysterogram', 'ICD9CM_2010'), +('87.85', 'Other x-ray of fallopian tubes and uterus', 'ICD9CM_2010'), +('87.89', 'Other x-ray of female genital organs', 'ICD9CM_2010'), +('87.9', 'X-ray of male genital organs', 'ICD9CM_2010'), +('87.91', 'Contrast seminal vesiculogram', 'ICD9CM_2010'), +('87.92', 'Other x-ray of prostate and seminal vesicles', 'ICD9CM_2010'), +('87.93', 'Contrast epididymogram', 'ICD9CM_2010'), +('87.94', 'Contrast vasogram', 'ICD9CM_2010'), +('87.95', 'Other x-ray of epididymis and vas deferens', 'ICD9CM_2010'), +('87.99', 'Other x-ray of male genital organs', 'ICD9CM_2010'), +('88', 'Other diagnostic radiology and related techniques', 'ICD9CM_2010'), +('88.0', 'Soft tissue x-ray of abdomen', 'ICD9CM_2010'), +('88.01', 'Computerized axial tomography of abdomen', 'ICD9CM_2010'), +('88.02', 'Other abdomen tomography', 'ICD9CM_2010'), +('88.03', 'Sinogram of abdominal wall', 'ICD9CM_2010'), +('88.04', 'Abdominal lymphangiogram', 'ICD9CM_2010'), +('88.09', 'Other soft tissue x-ray of abdominal wall', 'ICD9CM_2010'), +('88.1', 'Other x-ray of abdomen', 'ICD9CM_2010'), +('88.11', 'Pelvic opaque dye contrast radiography', 'ICD9CM_2010'), +('88.12', 'Pelvic gas contrast radiography', 'ICD9CM_2010'), +('88.13', 'Other peritoneal pneumogram', 'ICD9CM_2010'), +('88.14', 'Retroperitoneal fistulogram', 'ICD9CM_2010'), +('88.15', 'Retroperitoneal pneumogram', 'ICD9CM_2010'), +('88.16', 'Other retroperitoneal x-ray', 'ICD9CM_2010'), +('88.19', 'Other x-ray of abdomen', 'ICD9CM_2010'), +('88.2', 'Skeletal x-ray of extremities and pelvis', 'ICD9CM_2010'), +('88.21', 'Skeletal x-ray of shoulder and upper arm', 'ICD9CM_2010'), +('88.22', 'Skeletal x-ray of elbow and forearm', 'ICD9CM_2010'), +('88.23', 'Skeletal x-ray of wrist and hand', 'ICD9CM_2010'), +('88.24', 'Skeletal x-ray of upper limb, not otherwise specified', 'ICD9CM_2010'), +('88.25', 'Pelvimetry', 'ICD9CM_2010'), +('88.26', 'Other skeletal x-ray of pelvis and hip', 'ICD9CM_2010'), +('88.27', 'Skeletal x-ray of thigh, knee, and lower leg', 'ICD9CM_2010'), +('88.28', 'Skeletal x-ray of ankle and foot', 'ICD9CM_2010'), +('88.29', 'Skeletal x-ray of lower limb, not otherwise specified', 'ICD9CM_2010'), +('88.3', 'Other x-ray', 'ICD9CM_2010'), +('88.31', 'Skeletal series', 'ICD9CM_2010'), +('88.32', 'Contrast arthrogram', 'ICD9CM_2010'), +('88.33', 'Other skeletal x-ray', 'ICD9CM_2010'), +('88.34', 'Lymphangiogram of upper limb', 'ICD9CM_2010'), +('88.35', 'Other soft tissue x-ray of upper limb', 'ICD9CM_2010'), +('88.36', 'Lymphangiogram of lower limb', 'ICD9CM_2010'), +('88.37', 'Other soft tissue x-ray of lower limb', 'ICD9CM_2010'), +('88.38', 'Other computerized axial tomography', 'ICD9CM_2010'), +('88.39', 'X-ray, other and unspecified', 'ICD9CM_2010'), +('88.4', 'Arteriography using contrast material', 'ICD9CM_2010'), +('88.40', 'Arteriography using contrast material, unspecified site', 'ICD9CM_2010'), +('88.41', 'Arteriography of cerebral arteries', 'ICD9CM_2010'), +('88.42', 'Aortography', 'ICD9CM_2010'), +('88.43', 'Arteriography of pulmonary arteries', 'ICD9CM_2010'), +('88.44', 'Arteriography of other intrathoracic vessels', 'ICD9CM_2010'), +('88.45', 'Arteriography of renal arteries', 'ICD9CM_2010'), +('88.46', 'Arteriography of placenta', 'ICD9CM_2010'), +('88.47', 'Arteriography of other intra-abdominal arteries', 'ICD9CM_2010'), +('88.48', 'Arteriography of femoral and other lower extremity arteries', 'ICD9CM_2010'), +('88.49', 'Arteriography of other specified sites', 'ICD9CM_2010'), +('88.5', 'Angiocardiography using contrast material', 'ICD9CM_2010'), +('88.50', 'Angiocardiography, not otherwise specified', 'ICD9CM_2010'), +('88.51', 'Angiocardiography of venae cavae', 'ICD9CM_2010'), +('88.52', 'Angiocardiography of right heart structures', 'ICD9CM_2010'), +('88.53', 'Angiocardiography of left heart structures', 'ICD9CM_2010'), +('88.54', 'Combined right and left heart angiocardiography', 'ICD9CM_2010'), +('88.55', 'Coronary arteriography using a single catheter', 'ICD9CM_2010'), +('88.56', 'Coronary arteriography using two catheters', 'ICD9CM_2010'), +('88.57', 'Other and unspecified coronary arteriography', 'ICD9CM_2010'), +('88.58', 'Negative-contrast cardiac roentgenography', 'ICD9CM_2010'), +('88.59', 'Intra-operative fluorescence vascular angiography', 'ICD9CM_2010'), +('88.6', 'Phlebography', 'ICD9CM_2010'), +('88.60', 'Phlebography using contrast material, unspecified site', 'ICD9CM_2010'), +('88.61', 'Phlebography of veins of head and neck using contrast material', 'ICD9CM_2010'), +('88.62', 'Phlebography of pulmonary veins using contrast material', 'ICD9CM_2010'), +('88.63', 'Phlebography of other intrathoracic veins using contrast material', 'ICD9CM_2010'), +('88.64', 'Phlebography of the portal venous system using contrast material', 'ICD9CM_2010'), +('88.65', 'Phlebography of other intra-abdominal veins using contrast material', 'ICD9CM_2010'), +('88.66', 'Phlebography of femoral and other lower extremity veins using contra', 'ICD9CM_2010'), +('88.67', 'Phlebography of other specified sites using contrast material', 'ICD9CM_2010'), +('88.68', 'Impedance phlebography', 'ICD9CM_2010'), +('88.7', 'Diagnostic ultrasound', 'ICD9CM_2010'), +('88.71', 'Diagnostic ultrasound of head and neck', 'ICD9CM_2010'), +('88.72', 'Diagnostic ultrasound of heart', 'ICD9CM_2010'), +('88.73', 'Diagnostic ultrasound of other sites of thorax', 'ICD9CM_2010'), +('88.74', 'Diagnostic ultrasound of digestive system', 'ICD9CM_2010'), +('88.75', 'Diagnostic ultrasound of urinary system', 'ICD9CM_2010'), +('88.76', 'Diagnostic ultrasound of abdomen and retroperitoneum', 'ICD9CM_2010'), +('88.77', 'Diagnostic ultrasound of peripheral vascular system', 'ICD9CM_2010'), +('88.78', 'Diagnostic ultrasound of gravid uterus', 'ICD9CM_2010'), +('88.79', 'Other diagnostic ultrasound', 'ICD9CM_2010'), +('88.8', 'Thermography', 'ICD9CM_2010'), +('88.81', 'Cerebral thermography', 'ICD9CM_2010'), +('88.82', 'Ocular thermography', 'ICD9CM_2010'), +('88.83', 'Bone thermography', 'ICD9CM_2010'), +('88.84', 'Muscle thermography', 'ICD9CM_2010'), +('88.85', 'Breast thermography', 'ICD9CM_2010'), +('88.86', 'Blood vessel thermography', 'ICD9CM_2010'), +('88.89', 'Thermography of other sites', 'ICD9CM_2010'), +('88.9', 'Other diagnostic imaging', 'ICD9CM_2010'), +('88.90', 'Diagnostic imaging, not elsewhere classified', 'ICD9CM_2010'), +('88.91', 'Magnetic resonance imaging of brain and brain stem', 'ICD9CM_2010'), +('88.92', 'Magnetic resonance imaging of chest and myocardium for evaluation of', 'ICD9CM_2010'), +('88.93', 'Magnetic resonance imaging of spinal canal', 'ICD9CM_2010'), +('88.94', 'Magnetic resonance imaging of musculoskeletal', 'ICD9CM_2010'), +('88.95', 'Magnetic resonance imaging of pelvis, prostate, and bladder', 'ICD9CM_2010'), +('88.96', 'Other intraoperative magnetic resonance imaging', 'ICD9CM_2010'), +('88.97', 'Magnetic resonance imaging of other and unspecified sites', 'ICD9CM_2010'), +('88.98', 'Bone mineral density studies', 'ICD9CM_2010'), +('89', 'Interview, evaluation, consultation, and examination', 'ICD9CM_2010'), +('89.0', 'Diagnostic interview, consultation, and evaluation', 'ICD9CM_2010'), +('89.01', 'Interview and evaluation, described as brief', 'ICD9CM_2010'), +('89.02', 'Interview and evaluation, described as limited', 'ICD9CM_2010'), +('89.03', 'Interview and evaluation, described as comprehensive', 'ICD9CM_2010'), +('89.04', 'Other interview and evaluation', 'ICD9CM_2010'), +('89.05', 'Diagnostic interview and evaluation, not otherwise specified', 'ICD9CM_2010'), +('89.06', 'Consultation, described as limited', 'ICD9CM_2010'), +('89.07', 'Consultation, described as comprehensive', 'ICD9CM_2010'), +('89.08', 'Other consultation', 'ICD9CM_2010'), +('89.09', 'Consultation, not otherwise specified', 'ICD9CM_2010'), +('89.1', 'Anatomic and physiologic measurements and manual examinations - nervous system and sense organs', 'ICD9CM_2010'), +('89.10', 'Intracarotid amobarbitral test', 'ICD9CM_2010'), +('89.11', 'Tonometry', 'ICD9CM_2010'), +('89.12', 'Nasal function study', 'ICD9CM_2010'), +('89.13', 'Neurologic examination', 'ICD9CM_2010'), +('89.14', 'Electroencephalogram', 'ICD9CM_2010'), +('89.15', 'Other nonoperative neurologic function tests', 'ICD9CM_2010'), +('89.16', 'Transillumination of newborn skull', 'ICD9CM_2010'), +('89.17', 'Polysomnogram', 'ICD9CM_2010'), +('89.18', 'Other sleep disorder function tests', 'ICD9CM_2010'), +('89.19', 'Video and radio-telemetered electroencephalographic monitoring', 'ICD9CM_2010'), +('89.2', 'Anatomic and physiologic measurements and manual examinations - genitourinary system', 'ICD9CM_2010'), +('89.21', 'Urinary manometry', 'ICD9CM_2010'), +('89.22', 'Cystometrogram', 'ICD9CM_2010'), +('89.23', 'Urethral sphincter electromyogram', 'ICD9CM_2010'), +('89.24', 'Uroflowmetry (UFR)', 'ICD9CM_2010'), +('89.25', 'Urethral pressure profile (UPP)', 'ICD9CM_2010'), +('89.26', 'Gynecological examination', 'ICD9CM_2010'), +('89.29', 'Other nonoperative genitourinary system measurements', 'ICD9CM_2010'), +('89.3', 'Other anatomic and physiologic measurements and manual examinations', 'ICD9CM_2010'), +('89.31', 'Dental examination', 'ICD9CM_2010'), +('89.32', 'Esophageal manometry', 'ICD9CM_2010'), +('89.33', 'Digital examination of enterostomy stoma', 'ICD9CM_2010'), +('89.34', 'Digital examination of rectum', 'ICD9CM_2010'), +('89.35', 'Transillumination of nasal sinuses', 'ICD9CM_2010'), +('89.36', 'Manual examination of breast', 'ICD9CM_2010'), +('89.37', 'Vital capacity determination', 'ICD9CM_2010'), +('89.38', 'Other nonoperative respiratory measurements', 'ICD9CM_2010'), +('89.39', 'Other nonoperative measurements and examinations', 'ICD9CM_2010'), +('89.4', 'Cardiac stress tests, pacemaker and defibrillator checks', 'ICD9CM_2010'), +('89.41', 'Cardiovascular stress test using treadmill', 'ICD9CM_2010'), +('89.42', 'Masters\' two-step stress test', 'ICD9CM_2010'), +('89.43', 'Cardiovascular stress test using bicycle ergometer', 'ICD9CM_2010'), +('89.44', 'Other cardiovascular stress test', 'ICD9CM_2010'), +('89.45', 'Artificial pacemaker rate check', 'ICD9CM_2010'), +('89.46', 'Artificial pacemaker artifact wave form check', 'ICD9CM_2010'), +('89.47', 'Artificial pacemaker electrode impedance check', 'ICD9CM_2010'), +('89.48', 'Artificial pacemaker voltage or amperage threshold check', 'ICD9CM_2010'), +('89.49', 'Automatic implantable cardioverter / defibrillator (AICD) check', 'ICD9CM_2010'), +('89.5', 'Other nonoperative cardiac and vascular diagnostic procedures', 'ICD9CM_2010'), +('89.50', 'Ambulatory cardiac monitoring', 'ICD9CM_2010'), +('89.51', 'Rhythm electrocardiogram', 'ICD9CM_2010'), +('89.52', 'Electrocardiogram', 'ICD9CM_2010'), +('89.53', 'Vectorcardiogram (with ecg)', 'ICD9CM_2010'), +('89.54', 'Electrographic monitoring', 'ICD9CM_2010'), +('89.55', 'Phonocardiogram with ECG lead', 'ICD9CM_2010'), +('89.56', 'Carotid pulse tracing with ECG lead', 'ICD9CM_2010'), +('89.57', 'Apexcardiogram (with ECG lead)', 'ICD9CM_2010'), +('89.58', 'Plethysmogram', 'ICD9CM_2010'), +('89.59', 'Other nonoperative cardiac and vascular measurements', 'ICD9CM_2010'), +('89.6', 'Circulatory monitoring', 'ICD9CM_2010'), +('89.60', 'Continuous intra-arterial blood gas monitoring', 'ICD9CM_2010'), +('89.61', 'Systemic arterial pressure monitoring', 'ICD9CM_2010'), +('89.62', 'Central venous pressure monitoring', 'ICD9CM_2010'), +('89.63', 'Pulmonary artery pressure monitoring', 'ICD9CM_2010'), +('89.64', 'Pulmonary artery wedge monitoring', 'ICD9CM_2010'), +('89.65', 'Measurement of systemic arterial blood gases', 'ICD9CM_2010'), +('89.66', 'Measurement of mixed venous blood gases', 'ICD9CM_2010'), +('89.67', 'Monitoring of cardiac output by oxygen consumption technique', 'ICD9CM_2010'), +('89.68', 'Monitoring of cardiac output by other technique', 'ICD9CM_2010'), +('89.69', 'Monitoring of coronary blood flow', 'ICD9CM_2010'), +('89.7', 'General physical examination', 'ICD9CM_2010'), +('89.8', 'Autopsy', 'ICD9CM_2010'), +('90', 'Microscopic examination - I', 'ICD9CM_2010'), +('90.0', 'Microscopic examination of specimen from nervous system and of spina fluid', 'ICD9CM_2010'), +('90.01', 'Microscopic examination of specimen from nervous system and of spina fluid,Bacterial smear', 'ICD9CM_2010'), +('90.02', 'Microscopic examination of specimen from nervous system and of spina fluid, Culture', 'ICD9CM_2010'), +('90.03', 'Microscopic examination of specimen from nervous system and of spina fluid, Culture and sensitivity', 'ICD9CM_2010'), +('90.04', 'Microscopic examination of specimen from nervous system and of spina fluid, Parasitology', 'ICD9CM_2010'), +('90.05', 'Microscopic examination of specimen from nervous system and of spina fluid, Toxicology', 'ICD9CM_2010'), +('90.06', 'Microscopic examination of specimen from nervous system and of spina fluid, Cell block and papanicolaou smear', 'ICD9CM_2010'), +('90.09', 'Microscopic examination of specimen from nervous system and of spina fluid, Other microscopic examination', 'ICD9CM_2010'), +('90.1', 'Microscopic examination of specimen from endocrine gland, not elsewhere classified', 'ICD9CM_2010'), +('90.11', 'Microscopic examination of specimen from endocrine gland, not elsewhere classified, Bacterial smear', 'ICD9CM_2010'), +('90.12', 'Microscopic examination of specimen from endocrine gland, not elsewhere classified, Culture', 'ICD9CM_2010'), +('90.13', 'Microscopic examination of specimen from endocrine gland, not elsewhere classified, Culture and sensitivity', 'ICD9CM_2010'), +('90.14', 'Microscopic examination of specimen from endocrine gland, not elsewhere classified, Parasitology', 'ICD9CM_2010'), +('90.15', 'Microscopic examination of specimen from endocrine gland, not elsewhere classified, Toxicology', 'ICD9CM_2010'), +('90.16', 'Microscopic examination of specimen from endocrine gland, not elsewhere classified, Cell block and papanicolaou smear', 'ICD9CM_2010'), +('90.19', 'Microscopic examination of specimen from endocrine gland, not elsewhere classified, Other microscopic examination', 'ICD9CM_2010'), +('90.2', 'Microscopic examination of specimen from eye', 'ICD9CM_2010'), +('90.21', 'Microscopic examination of specimen from eye, Bacterial smear', 'ICD9CM_2010'), +('90.22', 'Microscopic examination of specimen from eye, Culture', 'ICD9CM_2010'), +('90.23', 'Microscopic examination of specimen from eye, Culture and sensitivity', 'ICD9CM_2010'), +('90.24', 'Microscopic examination of specimen from eye, Parasitology', 'ICD9CM_2010'), +('90.25', 'Microscopic examination of specimen from eye, Toxicology', 'ICD9CM_2010'), +('90.26', 'Microscopic examination of specimen from eye, Cell block and papanicolaou smear', 'ICD9CM_2010'), +('90.29', 'Microscopic examination of specimen from eye, Other microscopic examination', 'ICD9CM_2010'), +('90.3', 'Microscopic examination of specimen from ear, nose, throat, and larynx', 'ICD9CM_2010'), +('90.31', 'Microscopic examination of specimen from ear, nose, throat, and larynx, Bacterial smear', 'ICD9CM_2010'), +('90.32', 'Microscopic examination of specimen from ear, nose, throat, and larynx, Culture', 'ICD9CM_2010'), +('90.33', 'Microscopic examination of specimen from ear, nose, throat, and larynx, Culture and sensitivity', 'ICD9CM_2010'), +('90.34', 'Microscopic examination of specimen from ear, nose, throat, and larynx, Parasitology', 'ICD9CM_2010'), +('90.35', 'Microscopic examination of specimen from ear, nose, throat, and larynx, Toxicology', 'ICD9CM_2010'), +('90.36', 'Microscopic examination of specimen from ear, nose, throat, and larynx, Cell block and papanicolaou smear', 'ICD9CM_2010'), +('90.39', 'Microscopic examination of specimen from ear, nose, throat, and larynx, Other microscopic examination', 'ICD9CM_2010'), +('90.4', 'Microscopic examination of specimen from trachea, bronchus, pleura,lung,and other thoracic specimen, and of sputum', 'ICD9CM_2010'), +('90.41', 'Microscopic examination of specimen from trachea, bronchus, pleura,lung,and other thoracic specimen, and of sputum, Bacterial smear', 'ICD9CM_2010'), +('90.42', 'Microscopic examination of specimen from trachea, bronchus, pleura,lung,and other thoracic specimen, and of sputum, Culture', 'ICD9CM_2010'), +('90.43', 'Microscopic examination of specimen from trachea, bronchus, pleura,lung,and other thoracic specimen, and of sputum, Culture and sensitivity', 'ICD9CM_2010'), +('90.44', 'Microscopic examination of specimen from trachea, bronchus, pleura,lung,and other thoracic specimen, and of sputum, Parasitology', 'ICD9CM_2010'), +('90.45', 'Microscopic examination of specimen from trachea, bronchus, pleura,lung,and other thoracic specimen, and of sputum, Toxicology', 'ICD9CM_2010'), +('90.46', 'Microscopic examination of specimen from trachea, bronchus, pleura,lung,and other thoracic specimen, and of sputum, Cell block and papanicolaou smear', 'ICD9CM_2010'), +('90.49', 'Microscopic examination of specimen from trachea, bronchus, pleura,lung,and other thoracic specimen, and of sputum, Other microscopic examination', 'ICD9CM_2010'), +('90.5', 'Microscopic examination of blood', 'ICD9CM_2010'), +('90.51', 'Microscopic examination of blood, Bacterial smear', 'ICD9CM_2010'), +('90.52', 'Microscopic examination of blood, Culture', 'ICD9CM_2010'), +('90.53', 'Microscopic examination of blood, Culture and sensitivity', 'ICD9CM_2010'), +('90.54', 'Microscopic examination of blood, Parasitology', 'ICD9CM_2010'), +('90.55', 'Microscopic examination of blood,Toxicology', 'ICD9CM_2010'), +('90.56', 'Microscopic examination of blood, Cell block and papanicolaou smear', 'ICD9CM_2010'), +('90.59', 'Microscopic examination of blood, Other microscopic examination', 'ICD9CM_2010'), +('90.6', 'Microscopic examination of specimen from spleen and of bone marrow', 'ICD9CM_2010'), +('90.61', 'Microscopic examination of specimen from spleen and of bone marrow, Bacterial smear', 'ICD9CM_2010'), +('90.62', 'Microscopic examination of specimen from spleen and of bone marrow, Culture', 'ICD9CM_2010'), +('90.63', 'Microscopic examination of specimen from spleen and of bone marrow, Culture and sensitivity', 'ICD9CM_2010'), +('90.64', 'Microscopic examination of specimen from spleen and of bone marrow, Parasitology', 'ICD9CM_2010'), +('90.65', 'Microscopic examination of specimen from spleen and of bone marrow, Toxicology', 'ICD9CM_2010'), +('90.66', 'Microscopic examination of specimen from spleen and of bone marrow, Cell block and papanicolaou smear', 'ICD9CM_2010'), +('90.69', 'Microscopic examination of specimen from spleen and of bone marrow, Other microscopic examination', 'ICD9CM_2010'), +('90.7', 'Microscopic examination of specimen from lymph node and of lymph', 'ICD9CM_2010'), +('90.71', 'Microscopic examination of specimen from lymph node and of lymph, Bacterial smear', 'ICD9CM_2010'), +('90.72', 'Microscopic examination of specimen from lymph node and of lymph, Culture', 'ICD9CM_2010'), +('90.73', 'Microscopic examination of specimen from lymph node and of lymph, Culture and sensitivity', 'ICD9CM_2010'), +('90.74', 'Microscopic examination of specimen from lymph node and of lymph, Parasitology', 'ICD9CM_2010'), +('90.75', 'Microscopic examination of specimen from lymph node and of lymph, Toxicology', 'ICD9CM_2010'), +('90.76', 'Microscopic examination of specimen from lymph node and of lymph, Cell block and papanicolaou smear', 'ICD9CM_2010'), +('90.79', 'Microscopic examination of specimen from lymph node and of lymph, Other microscopic examination', 'ICD9CM_2010'), +('90.8', 'Microscopic examination of specimen from upper gastrointestinal tract and vomitus', 'ICD9CM_2010'), +('90.81', 'Microscopic examination of specimen from upper gastrointestinal tract and vomitus, Bacterial smear', 'ICD9CM_2010'), +('90.82', 'Microscopic examination of specimen from upper gastrointestinal tract and vomitus, Culture', 'ICD9CM_2010'), +('90.83', 'Microscopic examination of specimen from upper gastrointestinal tract and vomitus, Culture and sensitivity', 'ICD9CM_2010'), +('90.84', 'Microscopic examination of specimen from upper gastrointestinal tract and vomitus, Parasitology', 'ICD9CM_2010'), +('90.85', 'Microscopic examination of specimen from upper gastrointestinal tract and vomitus, Toxicology', 'ICD9CM_2010'), +('90.86', 'Microscopic examination of specimen from upper gastrointestinal tract and vomitus, Cell block and papanicolaou smear', 'ICD9CM_2010'), +('90.89', 'Microscopic examination of specimen from upper gastrointestinal tract and vomitus, Other microscopic examination', 'ICD9CM_2010'), +('90.9', 'Microscopic examination of specimen from lower gastrointestinal tract and of stool', 'ICD9CM_2010'), +('90.91', 'Microscopic examination of specimen from lower gastrointestinal tract and of stool, Bacterial smear', 'ICD9CM_2010'), +('90.92', 'Microscopic examination of specimen from lower gastrointestinal tract and of stool, Culture', 'ICD9CM_2010'), +('90.93', 'Microscopic examination of specimen from lower gastrointestinal tract and of stool, Culture and sensitivity', 'ICD9CM_2010'), +('90.94', 'Microscopic examination of specimen from lower gastrointestinal tract and of stool, Parasitology', 'ICD9CM_2010'), +('90.95', 'Microscopic examination of specimen from lower gastrointestinal tract and of stool, Toxicology', 'ICD9CM_2010'), +('90.96', 'Microscopic examination of specimen from lower gastrointestinal tract and of stool, Cell block and papanicolaou smear', 'ICD9CM_2010'), +('90.99', 'Microscopic examination of specimen from lower gastrointestinal tract and of stool, Other microscopic examination', 'ICD9CM_2010'), +('91', 'Microscopic examination - ii', 'ICD9CM_2010'), +('91.0', 'Microscopic examination of specimen from liver, biliary tract, and pancreas', 'ICD9CM_2010'), +('91.01', 'Microscopic examination of specimen from liver, biliary tract, and pancreas, Bacterial smear', 'ICD9CM_2010'), +('91.02', 'Microscopic examination of specimen from liver, biliary tract, and pancreas, Culture', 'ICD9CM_2010'), +('91.03', 'Microscopic examination of specimen from liver, biliary tract, and pancreas, Culture and sensitivity', 'ICD9CM_2010'), +('91.04', 'Microscopic examination of specimen from liver, biliary tract, and pancreas, Parasitology', 'ICD9CM_2010'), +('91.05', 'Microscopic examination of specimen from liver, biliary tract, and pancreas, Toxicology', 'ICD9CM_2010'), +('91.06', 'Microscopic examination of specimen from liver, biliary tract, and pancreas, Cell block and papanicolaou smear', 'ICD9CM_2010'), +('91.09', 'Microscopic examination of specimen from liver, biliary tract, and pancreas, Other microscopic examination', 'ICD9CM_2010'), +('91.1', 'Microscopic examination of peritoneal and retroperitoneal specimen', 'ICD9CM_2010'), +('91.11', 'Microscopic examination of peritoneal and retroperitoneal specimen, Bacterial smear', 'ICD9CM_2010'), +('91.12', 'Microscopic examination of peritoneal and retroperitoneal specimen, Culture', 'ICD9CM_2010'), +('91.13', 'Microscopic examination of peritoneal and retroperitoneal specimen, Culture and sensitivity', 'ICD9CM_2010'), +('91.14', 'Microscopic examination of peritoneal and retroperitoneal specimen, Parasitology', 'ICD9CM_2010'), +('91.15', 'Microscopic examination of peritoneal and retroperitoneal specimen, Toxicology', 'ICD9CM_2010'), +('91.16', 'Microscopic examination of peritoneal and retroperitoneal specimen, Cell block and papanicolaou smear', 'ICD9CM_2010'), +('91.19', 'Microscopic examination of peritoneal and retroperitoneal specimen, Other microscopic examination', 'ICD9CM_2010'), +('91.2', 'Microscopic examination of specimen from kidney, ureter, perirenal and periureteral tissue', 'ICD9CM_2010'), +('91.21', 'Microscopic examination of specimen from kidney, ureter, perirenal and periureteral tissue, Bacterial smear', 'ICD9CM_2010'), +('91.22', 'Microscopic examination of specimen from kidney, ureter, perirenal and periureteral tissue, Culture', 'ICD9CM_2010'), +('91.23', 'Microscopic examination of specimen from kidney, ureter, perirenal and periureteral tissue, Culture and sensitivity', 'ICD9CM_2010'), +('91.24', 'Microscopic examination of specimen from kidney, ureter, perirenal and periureteral tissue, Parasitology', 'ICD9CM_2010'), +('91.25', 'Microscopic examination of specimen from kidney, ureter, perirenal and periureteral tissue, Toxicology', 'ICD9CM_2010'), +('91.26', 'Microscopic examination of specimen from kidney, ureter, perirenal and periureteral tissue, Cell block and papanicolaou smear', 'ICD9CM_2010'), +('91.29', 'Microscopic examination of specimen from kidney, ureter, perirenal and periureteral tissue, Other microscopic examination', 'ICD9CM_2010'), +('91.3', 'Microscopic examination of specimen from bladder, urethra, prostate,seminal vesicle, perivesical tissue, and of urine and semen', 'ICD9CM_2010'), +('91.31', 'Microscopic examination of specimen from bladder, urethra, prostate,seminal vesicle, perivesical tissue, and of urine and semen, Bacterial smear', 'ICD9CM_2010'), +('91.32', 'Microscopic examination of specimen from bladder, urethra, prostate,seminal vesicle, perivesical tissue, and of urine and semen, Culture', 'ICD9CM_2010'), +('91.33', 'Microscopic examination of specimen from bladder, urethra, prostate,seminal vesicle, perivesical tissue, and of urine and semen, Culture and sensitivi', 'ICD9CM_2010'), +('91.34', 'Microscopic examination of specimen from bladder, urethra, prostate,seminal vesicle, perivesical tissue, and of urine and semen, Parasitology', 'ICD9CM_2010'), +('91.35', 'Microscopic examination of specimen from bladder, urethra, prostate,seminal vesicle, perivesical tissue, and of urine and semen, Toxicology', 'ICD9CM_2010'), +('91.36', 'Microscopic examination of specimen from bladder, urethra, prostate,seminal vesicle, perivesical tissue, and of urine and semen, Cell block and papani', 'ICD9CM_2010'), +('91.39', 'Microscopic examination of specimen from bladder, urethra, prostate,seminal vesicle, perivesical tissue, and of urine and semen, Other microscopic exa', 'ICD9CM_2010'), +('91.4', 'Microscopic examination of specimen from female genital tract', 'ICD9CM_2010'), +('91.41', 'Microscopic examination of specimen from female genital tract, Bacterial smear', 'ICD9CM_2010'), +('91.42', 'Microscopic examination of specimen from female genital tract, Culture', 'ICD9CM_2010'), +('91.43', 'Microscopic examination of specimen from female genital tract, Culture and sensitivity', 'ICD9CM_2010'), +('91.44', 'Microscopic examination of specimen from female genital tract, Parasitology', 'ICD9CM_2010'), +('91.45', 'Microscopic examination of specimen from female genital tract, Toxicology', 'ICD9CM_2010'), +('91.46', 'Microscopic examination of specimen from female genital tract, Cell block and papanicolaou smear', 'ICD9CM_2010'), +('91.49', 'Microscopic examination of specimen from female genital tract, Other microscopic examination', 'ICD9CM_2010'), +('91.5', 'Microscopic examination of specimen from musculoskeletal system and of joint fluid', 'ICD9CM_2010'), +('91.51', 'Microscopic examination of specimen from musculoskeletal system and of joint fluid, Bacterial smear', 'ICD9CM_2010'), +('91.52', 'Microscopic examination of specimen from musculoskeletal system and of joint fluid, Culture', 'ICD9CM_2010'), +('91.53', 'Microscopic examination of specimen from musculoskeletal system and of joint fluid, Culture and sensitivity', 'ICD9CM_2010'), +('91.54', 'Microscopic examination of specimen from musculoskeletal system and of joint fluid, Parasitology', 'ICD9CM_2010'), +('91.55', 'Microscopic examination of specimen from musculoskeletal system and of joint fluid, Toxicology', 'ICD9CM_2010'), +('91.56', 'Microscopic examination of specimen from musculoskeletal system and of joint fluid, Cell block and papanicolaou smear', 'ICD9CM_2010'), +('91.59', 'Microscopic examination of specimen from musculoskeletal system and of joint fluid, Other microscopic examination', 'ICD9CM_2010'), +('91.6', 'Microscopic examination of specimen from skin and other integument', 'ICD9CM_2010'), +('91.61', 'Microscopic examination of specimen from skin and other integument, Bacterial smear', 'ICD9CM_2010'), +('91.62', 'Microscopic examination of specimen from skin and other integument, Culture', 'ICD9CM_2010'), +('91.63', 'Microscopic examination of specimen from skin and other integument, Culture and sensitivity', 'ICD9CM_2010'), +('91.64', 'Microscopic examination of specimen from skin and other integument, Parasitology', 'ICD9CM_2010'), +('91.65', 'Microscopic examination of specimen from skin and other integument, Toxicology', 'ICD9CM_2010'), +('91.66', 'Microscopic examination of specimen from skin and other integument, Cell block and papanicolaou smear', 'ICD9CM_2010'), +('91.69', 'Microscopic examination of specimen from skin and other integument, Other microscopic examination', 'ICD9CM_2010'), +('91.7', 'Microscopic examination of specimen from operative wound', 'ICD9CM_2010'), +('91.71', 'Microscopic examination of specimen from operative wound, Bacterial smear', 'ICD9CM_2010'), +('91.72', 'Microscopic examination of specimen from operative wound, Culture', 'ICD9CM_2010'), +('91.73', 'Microscopic examination of specimen from operative wound, Culture and sensitivity', 'ICD9CM_2010'), +('91.74', 'Microscopic examination of specimen from operative wound, Parasitology', 'ICD9CM_2010'), +('91.75', 'Microscopic examination of specimen from operative wound, Toxicology', 'ICD9CM_2010'), +('91.76', 'Microscopic examination of specimen from operative wound, Cell block and papanicolaou smear', 'ICD9CM_2010'), +('91.79', 'Microscopic examination of specimen from operative wound, Other microscopic examination', 'ICD9CM_2010'), +('91.8', 'Microscopic examination of specimen from other site', 'ICD9CM_2010'), +('91.81', 'Microscopic examination of specimen from other site, Bacterial smear', 'ICD9CM_2010'), +('91.82', 'Microscopic examination of specimen from other site, Culture', 'ICD9CM_2010'), +('91.83', 'Microscopic examination of specimen from other site, Culture and sensitivity', 'ICD9CM_2010'), +('91.84', 'Microscopic examination of specimen from other site, Parasitology', 'ICD9CM_2010'), +('91.85', 'Microscopic examination of specimen from other site, Toxicology', 'ICD9CM_2010'), +('91.86', 'Microscopic examination of specimen from other site, Cell block and papanicolaou smear', 'ICD9CM_2010'), +('91.89', 'Microscopic examination of specimen from other site, Other microscopic examination', 'ICD9CM_2010'), +('91.9', 'Microscopic examination of specimen from unspecified site', 'ICD9CM_2010'), +('91.91', 'Microscopic examination of specimen from unspecified site, Bacterial smear', 'ICD9CM_2010'), +('91.92', 'Microscopic examination of specimen from unspecified site, Culture', 'ICD9CM_2010'), +('91.93', 'Microscopic examination of specimen from unspecified site, Culture and sensitivity', 'ICD9CM_2010'), +('91.94', 'Microscopic examination of specimen from unspecified site, Parasitology', 'ICD9CM_2010'), +('91.95', 'Microscopic examination of specimen from unspecified site, Toxicology', 'ICD9CM_2010'), +('91.96', 'Microscopic examination of specimen from unspecified site, Cell block and papanicolaou smear', 'ICD9CM_2010'), +('91.99', 'Microscopic examination of specimen from unspecified site, Other microscopic examination', 'ICD9CM_2010'), +('92', 'Nuclear medicine', 'ICD9CM_2010'), +('92.0', 'Radioisotope scan and function study', 'ICD9CM_2010'), +('92.01', 'Thyroid scan and radioisotope function studies', 'ICD9CM_2010'), +('92.02', 'Liver scan and radioisotope function study', 'ICD9CM_2010'), +('92.03', 'Renal scan and radioisotope function study', 'ICD9CM_2010'), +('92.04', 'Gastrointestinal scan and radioisotope function study', 'ICD9CM_2010'), +('92.05', 'Cardiovascular and hematopoietic scan and radioisotope function study', 'ICD9CM_2010'), +('92.09', 'Other radioisotope function studies', 'ICD9CM_2010'), +('92.1', 'Other radioisotope scan', 'ICD9CM_2010'), +('92.11', 'Cerebral scan', 'ICD9CM_2010'), +('92.12', 'Scan of other sites of head', 'ICD9CM_2010'), +('92.13', 'Parathyroid scan', 'ICD9CM_2010'), +('92.14', 'Bone scan', 'ICD9CM_2010'), +('92.15', 'Pulmonary scan', 'ICD9CM_2010'), +('92.16', 'Scan of lymphatic system', 'ICD9CM_2010'), +('92.17', 'Placental scan', 'ICD9CM_2010'), +('92.18', 'Total body scan', 'ICD9CM_2010'), +('92.19', 'Scan of other site', 'ICD9CM_2010'), +('92.2', 'Therapeutic radiology and nuclear medicine', 'ICD9CM_2010'), +('92.20', 'Infusion of liquid brachytherapy radioisotope', 'ICD9CM_2010'), +('92.21', 'Superficial radiation', 'ICD9CM_2010'), +('92.22', 'Orthovoltage radiation', 'ICD9CM_2010'), +('92.23', 'Radioisotopic teleradiotherapy', 'ICD9CM_2010'), +('92.24', 'Teleradiotherapy using protons', 'ICD9CM_2010'), +('92.25', 'Teleradiotherapy using electrons', 'ICD9CM_2010'), +('92.26', 'Teleradiotherapy of other particulate radiation', 'ICD9CM_2010'), +('92.27', 'Implantation or insertion of radioactive elements', 'ICD9CM_2010'), +('92.28', 'Injection or instillation of radioisotopes', 'ICD9CM_2010'), +('92.29', 'Other radiotherapeutic procedure', 'ICD9CM_2010'), +('92.3', 'Stereotactic radiosurgery', 'ICD9CM_2010'), +('92.30', 'Stereotactic radiosurgery, not otherwise specified', 'ICD9CM_2010'), +('92.31', 'Single source photon radiosurgery', 'ICD9CM_2010'), +('92.32', 'Multi-source photon radiosurgery', 'ICD9CM_2010'), +('92.33', 'Particulate radiosurgery', 'ICD9CM_2010'), +('92.39', 'Stereotactic radiosugery, not elsewhere classified', 'ICD9CM_2010'), +('92.4', 'Intra-operative radiotion procedures', 'ICD9CM_2010'), +('92.41', 'Intra-operative electron radiation therapy', 'ICD9CM_2010'), +('93', 'Physical theraphy, respiratory theraphy, rehabilition, and related procedures', 'ICD9CM_2010'), +('93.0', 'Diagnostic physical therapy', 'ICD9CM_2010'), +('93.01', 'Functional evaluation', 'ICD9CM_2010'), +('93.02', 'Orthotic evaluation', 'ICD9CM_2010'), +('93.03', 'Prosthetic evaluation', 'ICD9CM_2010'), +('93.04', 'Manual testing of muscle function', 'ICD9CM_2010'), +('93.05', 'Range of motion testing', 'ICD9CM_2010'), +('93.06', 'Measurement of limb length', 'ICD9CM_2010'), +('93.07', 'Body measurement', 'ICD9CM_2010'), +('93.08', 'Electromyography', 'ICD9CM_2010'), +('93.09', 'Other diagnostic physical therapy procedure', 'ICD9CM_2010'), +('93.1', 'Physical therapy exercises', 'ICD9CM_2010'), +('93.11', 'Assisting exercise', 'ICD9CM_2010'), +('93.12', 'Other active musculoskeletal exercise', 'ICD9CM_2010'), +('93.13', 'Resistive exercise', 'ICD9CM_2010'), +('93.14', 'Training in joint movements', 'ICD9CM_2010'), +('93.15', 'Mobilization of spine', 'ICD9CM_2010'), +('93.16', 'Mobilization of other joints', 'ICD9CM_2010'), +('93.17', 'Other passive musculoskeletal exercise', 'ICD9CM_2010'), +('93.18', 'Breathing exercise', 'ICD9CM_2010'), +('93.19', 'Exercise, not elsewhere classified', 'ICD9CM_2010'), +('93.2', 'Other physical therapy musculoskeletal manipulation', 'ICD9CM_2010'), +('93.21', 'Manual and mechanical traction', 'ICD9CM_2010'), +('93.22', 'Ambulation and gait training', 'ICD9CM_2010'), +('93.23', 'Fitting of orthotic device', 'ICD9CM_2010'), +('93.24', 'Training in use of prosthetic or orthotic device', 'ICD9CM_2010'), +('93.25', 'Forced extension of limb', 'ICD9CM_2010'), +('93.26', 'Manual rupture of joint adhesions', 'ICD9CM_2010'), +('93.27', 'Stretching of muscle or tendon', 'ICD9CM_2010'), +('93.28', 'Stretching of fascia', 'ICD9CM_2010'), +('93.29', 'Other forcible correction of deformity', 'ICD9CM_2010'), +('93.3', 'Other physical therapy therapeutic procedures', 'ICD9CM_2010'), +('93.31', 'Assisted exercise in pool', 'ICD9CM_2010'), +('93.32', 'Whirlpool treatment', 'ICD9CM_2010'), +('93.33', 'Other hydrotherapy', 'ICD9CM_2010'), +('93.34', 'Diathermy', 'ICD9CM_2010'), +('93.35', 'Other heat therapy', 'ICD9CM_2010'), +('93.36', 'Cardiac retraining', 'ICD9CM_2010'), +('93.37', 'Prenatal training', 'ICD9CM_2010'), +('93.38', 'Combined physical therapy without mention of the components', 'ICD9CM_2010'), +('93.39', 'Other physical therapy', 'ICD9CM_2010'), +('93.4', 'Skeletal traction and other traction', 'ICD9CM_2010'), +('93.41', 'Spinal traction using skull device', 'ICD9CM_2010'), +('93.42', 'Other spinal traction', 'ICD9CM_2010'), +('93.43', 'Intermittent skeletal traction', 'ICD9CM_2010'), +('93.44', 'Other skeletal traction', 'ICD9CM_2010'), +('93.45', 'Thomas\' splint traction', 'ICD9CM_2010'), +('93.46', 'Other skin traction of limbs', 'ICD9CM_2010'), +('93.5', 'Other immobilization, pressure, and attention to wound', 'ICD9CM_2010'), +('93.51', 'Application of plaster jacket', 'ICD9CM_2010'), +('93.52', 'Application of neck support', 'ICD9CM_2010'), +('93.53', 'Application of other cast', 'ICD9CM_2010'), +('93.54', 'Application of splint', 'ICD9CM_2010'), +('93.55', 'Dental wiring', 'ICD9CM_2010'), +('93.56', 'Application of pressure dressing', 'ICD9CM_2010'), +('93.57', 'Application of other wound dressing', 'ICD9CM_2010'), +('93.58', 'Application of pressure trousers', 'ICD9CM_2010'), +('93.59', 'Other immobilization, pressure, and attention to wound', 'ICD9CM_2010'), +('93.6', 'Osteopathic manipulative treatment', 'ICD9CM_2010'), +('93.61', 'Osteopathic manipulative treatment for general mobilization', 'ICD9CM_2010'), +('93.62', 'Osteopathic manipulative treatment using high-velocity, low-amplitude forces', 'ICD9CM_2010'), +('93.63', 'Osteopathic manipulative treatment using low- velocity, high-amplitude forces', 'ICD9CM_2010'), +('93.64', 'Osteopathic manipulative treatment using isotonic, isometric forces', 'ICD9CM_2010'), +('93.65', 'Osteopathic manipulative treatment using indirect forces', 'ICD9CM_2010'), +('93.66', 'Osteopathic manipulative treatment to move tissue fluids', 'ICD9CM_2010'), +('93.67', 'Other specified osteopathic manipulative treatment', 'ICD9CM_2010'), +('93.7', 'Speech and reading rehabilitation and rehabilitation of the blind', 'ICD9CM_2010'), +('93.71', 'Dyslexia training', 'ICD9CM_2010'), +('93.72', 'Dysphasia training', 'ICD9CM_2010'), +('93.73', 'Esophageal speech training', 'ICD9CM_2010'), +('93.74', 'Speech defect training', 'ICD9CM_2010'), +('93.75', 'Other speech training and therapy', 'ICD9CM_2010'), +('93.76', 'Training in use of lead dog for the blind', 'ICD9CM_2010'), +('93.77', 'Training in braille or moon', 'ICD9CM_2010'), +('93.78', 'Other rehabilitation for the blind', 'ICD9CM_2010'), +('93.8', 'Other rehabilitation therapy', 'ICD9CM_2010'), +('93.81', 'Recreational therapy', 'ICD9CM_2010'), +('93.82', 'Educational therapy', 'ICD9CM_2010'), +('93.83', 'Occupational therapy', 'ICD9CM_2010'), +('93.84', 'Music therapy', 'ICD9CM_2010'), +('93.85', 'Vocational rehabilitation', 'ICD9CM_2010'), +('93.89', 'Rehabilitation, not elsewhere classified', 'ICD9CM_2010'), +('93.9', 'Respiratory therapy', 'ICD9CM_2010'), +('93.90', 'Non-invasive mechanical ventilation', 'ICD9CM_2010'), +('93.91', 'Intermittent positive pressure breathing (IPPB)', 'ICD9CM_2010'), +('93.93', 'Nonmechanical methods of resuscitation', 'ICD9CM_2010'), +('93.94', 'Respiratory medication administered by nebulizer', 'ICD9CM_2010'), +('93.95', 'Hyperbaric oxygenation', 'ICD9CM_2010'), +('93.96', 'Other oxygen enrichment', 'ICD9CM_2010'), +('93.960', 'High flow nasal canule oxygenation (IM)', 'ICD9CM_2010'), +('93.97', 'Decompression chamber', 'ICD9CM_2010'), +('93.98', 'Other control of atmospheric pressure and composition', 'ICD9CM_2010'), +('93.99', 'Other respiratory procedures', 'ICD9CM_2010'), +('94', 'Procedures related to the psyche', 'ICD9CM_2010'), +('94.0', 'Psychologic evaluation and testing', 'ICD9CM_2010'), +('94.01', 'Administration of intelligence test', 'ICD9CM_2010'), +('94.02', 'Administration of psychologic test', 'ICD9CM_2010'), +('94.03', 'Character analysis', 'ICD9CM_2010'), +('94.08', 'Other psychologic evaluation and testing', 'ICD9CM_2010'), +('94.09', 'Psychologic mental status determination, not otherwise specified', 'ICD9CM_2010'), +('94.1', 'Psychiatric interviews, consultations, and evaluations', 'ICD9CM_2010'), +('94.11', 'Psychiatric mental status determination', 'ICD9CM_2010'), +('94.12', 'Routine psychiatric visit, not otherwise specified', 'ICD9CM_2010'), +('94.13', 'Psychiatric commitment evaluation', 'ICD9CM_2010'), +('94.19', 'Other psychiatric interview and evaluation', 'ICD9CM_2010'), +('94.2', 'Psychiatric somatotherapy', 'ICD9CM_2010'), +('94.21', 'Narcoanalysis', 'ICD9CM_2010'), +('94.22', 'Lithium therapy', 'ICD9CM_2010'), +('94.23', 'Neuroleptic therapy', 'ICD9CM_2010'), +('94.24', 'Chemical shock therapy', 'ICD9CM_2010'), +('94.25', 'Other psychiatric drug therapy', 'ICD9CM_2010'), +('94.26', 'Subconvulsive electroshock therapy', 'ICD9CM_2010'), +('94.27', 'Other electroshock therapy', 'ICD9CM_2010'), +('94.29', 'Other psychiatric somatotherapy', 'ICD9CM_2010'), +('94.3', 'Individual psychotherapy', 'ICD9CM_2010'), +('94.31', 'Psychoanalysis', 'ICD9CM_2010'), +('94.32', 'Hypnotherapy', 'ICD9CM_2010'), +('94.33', 'Behavior therapy', 'ICD9CM_2010'), +('94.34', 'Individual therapy for psychosexual dysfunction', 'ICD9CM_2010'), +('94.35', 'Crisis intervention', 'ICD9CM_2010'), +('94.36', 'Play psychotherapy', 'ICD9CM_2010'), +('94.37', 'Exploratory verbal psychotherapy', 'ICD9CM_2010'), +('94.38', 'Supportive verbal psychotherapy', 'ICD9CM_2010'), +('94.39', 'Other individual psychotherapy', 'ICD9CM_2010'), +('94.4', 'Other psychotherapy and counselling', 'ICD9CM_2010'), +('94.41', 'Group therapy for psychosexual dysfunction', 'ICD9CM_2010'), +('94.42', 'Family therapy', 'ICD9CM_2010'), +('94.43', 'Psychodrama', 'ICD9CM_2010'), +('94.44', 'Other group therapy', 'ICD9CM_2010'), +('94.45', 'Drug addiction counselling', 'ICD9CM_2010'), +('94.46', 'Alcoholism counselling', 'ICD9CM_2010'), +('94.49', 'Other counselling', 'ICD9CM_2010'), +('94.5', 'Referral for psychologic rehabilitation', 'ICD9CM_2010'), +('94.51', 'Referral for psychotherapy', 'ICD9CM_2010'), +('94.52', 'Referral for psychiatric aftercare', 'ICD9CM_2010'), +('94.53', 'Referral for alcoholism rehabilitation', 'ICD9CM_2010'), +('94.54', 'Referral for drug addiction rehabilitation', 'ICD9CM_2010'), +('94.55', 'Referral for vocational rehabilitation', 'ICD9CM_2010'), +('94.59', 'Referral for other psychologic rehabilitation', 'ICD9CM_2010'), +('94.6', 'Alcohol and drug rehabilitation and detoxification', 'ICD9CM_2010'), +('94.61', 'Alcohol rehabilitation', 'ICD9CM_2010'), +('94.62', 'Alcohol detoxification', 'ICD9CM_2010'), +('94.63', 'Alcohol rehabilitation and detoxification', 'ICD9CM_2010'), +('94.64', 'Drug rehabilitation', 'ICD9CM_2010'), +('94.65', 'Drug detoxification', 'ICD9CM_2010'), +('94.66', 'Drug rehabilitation and detoxification', 'ICD9CM_2010'), +('94.67', 'Combined alcohol and drug rehabilitation', 'ICD9CM_2010'), +('94.68', 'Combined alcohol and drug detoxification', 'ICD9CM_2010'), +('94.69', 'Combined alcohol and drug rehabilitation and detoxification', 'ICD9CM_2010'), +('95', 'Ophthalmologic and otologic diagnosis and treatment', 'ICD9CM_2010'), +('95.0', 'General and subjective eye examination', 'ICD9CM_2010'), +('95.01', 'Limited eye examination', 'ICD9CM_2010'), +('95.02', 'Comprehensive eye examination', 'ICD9CM_2010'), +('95.03', 'Extended ophthalmologic work-up', 'ICD9CM_2010'), +('95.04', 'Eye examination under anesthesia', 'ICD9CM_2010'), +('95.05', 'Visual field study', 'ICD9CM_2010'), +('95.06', 'Color vision study', 'ICD9CM_2010'), +('95.07', 'Dark adaptation study', 'ICD9CM_2010'), +('95.09', 'Eye examination, not otherwise specified', 'ICD9CM_2010'), +('95.1', 'Examinations of form and structure of eye', 'ICD9CM_2010'), +('95.11', 'Fundus photography', 'ICD9CM_2010'), +('95.12', 'Fluorescein angiography or angioscopy of eye', 'ICD9CM_2010'), +('95.13', 'Ultrasound study of eye', 'ICD9CM_2010'), +('95.14', 'X-ray study of eye', 'ICD9CM_2010'), +('95.15', 'Ocular motility study', 'ICD9CM_2010'), +('95.16', 'P32 and other tracer studies of eye', 'ICD9CM_2010'), +('95.2', 'Objective functional tests of eye', 'ICD9CM_2010'), +('95.21', 'Electroretinogram (ERG)', 'ICD9CM_2010'), +('95.22', 'Electro-oculogram (EOG)', 'ICD9CM_2010'), +('95.23', 'Visual evoked potential (VEP)', 'ICD9CM_2010'), +('95.24', 'Electronystagmogram (ENG)', 'ICD9CM_2010'), +('95.25', 'Electromyogram of eye (EMG)', 'ICD9CM_2010'), +('95.26', 'Tonography, provocative tests, and other glaucoma testing', 'ICD9CM_2010'), +('95.3', 'Special vision services', 'ICD9CM_2010'), +('95.31', 'Fitting and dispensing of spectacles', 'ICD9CM_2010'), +('95.32', 'Prescription, fitting, and dispensing of contact lens', 'ICD9CM_2010'), +('95.33', 'Dispensing of other low vision aids', 'ICD9CM_2010'), +('95.34', 'Ocular prosthetics', 'ICD9CM_2010'), +('95.35', 'Orthoptic training', 'ICD9CM_2010'), +('95.36', 'Ophthalmologic counselling and instruction', 'ICD9CM_2010'), +('95.4', 'Nonoperative procedures related to hearing', 'ICD9CM_2010'), +('95.41', 'Audiometry', 'ICD9CM_2010'), +('95.42', 'Clinical test of hearing', 'ICD9CM_2010'), +('95.43', 'Audiological evaluation', 'ICD9CM_2010'), +('95.44', 'Clinical vestibular function tests', 'ICD9CM_2010'), +('95.45', 'Rotation tests', 'ICD9CM_2010'), +('95.46', 'Other auditory and vestibular function tests', 'ICD9CM_2010'), +('95.47', 'Hearing examination, not otherwise specified', 'ICD9CM_2010'), +('95.48', 'Fitting of hearing aid', 'ICD9CM_2010'), +('95.49', 'Other nonoperative procedures related to hearing', 'ICD9CM_2010'), +('96', 'Nonoperative intubation and irrigation', 'ICD9CM_2010'), +('96.0', 'Nonoperative intubation of gastrointestinal and respiratory tracts', 'ICD9CM_2010'), +('96.01', 'Insertion of nasopharyngeal airway', 'ICD9CM_2010'), +('96.02', 'Insertion of oropharyngeal airway', 'ICD9CM_2010'), +('96.03', 'Insertion of esophageal obturator airway', 'ICD9CM_2010'), +('96.04', 'Insertion of endotracheal tube', 'ICD9CM_2010'), +('96.05', 'Other intubation of respiratory tract', 'ICD9CM_2010'), +('96.06', 'Insertion of Sengstaken tube', 'ICD9CM_2010'), +('96.07', 'Insertion of other (naso-)gastric tube', 'ICD9CM_2010'), +('96.08', 'Insertion of (naso-)intestinal tube', 'ICD9CM_2010'), +('96.09', 'Insertion of rectal tube', 'ICD9CM_2010'), +('96.1', 'Other nonoperative insertion', 'ICD9CM_2010'), +('96.11', 'Packing of external auditory canal', 'ICD9CM_2010'), +('96.14', 'Vaginal packing', 'ICD9CM_2010'), +('96.15', 'Insertion of vaginal mold', 'ICD9CM_2010'), +('96.16', 'Other vaginal dilation', 'ICD9CM_2010'), +('96.17', 'Insertion of vaginal diaphragm', 'ICD9CM_2010'), +('96.18', 'Insertion of other vaginal pessary', 'ICD9CM_2010'), +('96.19', 'Rectal packing', 'ICD9CM_2010'), +('96.2', 'Nonoperative dilation and manipulation', 'ICD9CM_2010'), +('96.21', 'Dilation of frontonasal duct', 'ICD9CM_2010'), +('96.22', 'Dilation of rectum', 'ICD9CM_2010'), +('96.23', 'Dilation of anal sphincter', 'ICD9CM_2010'), +('96.24', 'Dilation and manipulation of enterostomy stoma', 'ICD9CM_2010'), +('96.25', 'Therapeutic distention of bladder', 'ICD9CM_2010'), +('96.26', 'Manual reduction of rectal prolapse', 'ICD9CM_2010'), +('96.27', 'Manual reduction of hernia', 'ICD9CM_2010'), +('96.28', 'Manual reduction of enterostomy prolapse', 'ICD9CM_2010'), +('96.29', 'Reduction of intussusception of alimentary tract', 'ICD9CM_2010'), +('96.3', 'Nonoperative alimentary tract irrigation, cleaning, and local instillation', 'ICD9CM_2010'), +('96.31', 'Gastric cooling', 'ICD9CM_2010'), +('96.32', 'Gastric freezing', 'ICD9CM_2010'), +('96.33', 'Gastric lavage', 'ICD9CM_2010'), +('96.34', 'Other irrigation of (naso-)gastric tube', 'ICD9CM_2010'), +('96.35', 'Gastric gavage', 'ICD9CM_2010'), +('96.36', 'Irrigation of gastrostomy or enterostomy', 'ICD9CM_2010'), +('96.37', 'Proctoclysis', 'ICD9CM_2010'), +('96.38', 'Removal of impacted feces', 'ICD9CM_2010'), +('96.39', 'Other transanal enema', 'ICD9CM_2010'), +('96.4', 'Nonoperative irrigation, cleaning, and local instillation of other digestive and genitourinary organs', 'ICD9CM_2010'), +('96.41', 'Irrigation of cholecystostomy and other biliary tube', 'ICD9CM_2010'), +('96.42', 'Irrigation of pancreatic tube', 'ICD9CM_2010'), +('96.43', 'Digestive tract instillation, except gastric gavage', 'ICD9CM_2010'), +('96.44', 'Vaginal douche', 'ICD9CM_2010'), +('96.45', 'Irrigation of nephrostomy and pyelostomy', 'ICD9CM_2010'), +('96.46', 'Irrigation of ureterostomy and ureteral catheter', 'ICD9CM_2010'), +('96.47', 'Irrigation of cystostomy', 'ICD9CM_2010'), +('96.48', 'Irrigation of other indwelling urinary catheter', 'ICD9CM_2010'), +('96.49', 'Other genitourinary instillation', 'ICD9CM_2010'), +('96.5', 'Other nonoperative irrigation and cleaning', 'ICD9CM_2010'), +('96.51', 'Irrigation of eye', 'ICD9CM_2010'), +('96.52', 'Irrigation of ear', 'ICD9CM_2010'), +('96.53', 'Irrigation of nasal passages', 'ICD9CM_2010'), +('96.54', 'Dental scaling, polishing, and debridement', 'ICD9CM_2010'), +('96.55', 'Tracheostomy toilette', 'ICD9CM_2010'), +('96.56', 'Other lavage of bronchus and trachea', 'ICD9CM_2010'); +INSERT INTO `icd9` (`ID_ICD9`, `Prosedur`, `Versi_ICD9`) VALUES +('96.57', 'Irrigation of vascular catheter', 'ICD9CM_2010'), +('96.58', 'Irrigation of wound catheter', 'ICD9CM_2010'), +('96.59', 'Other irrigation of wound', 'ICD9CM_2010'), +('96.6', 'Enteral infusion of concentrated nutritional substances', 'ICD9CM_2010'), +('96.7', 'Other continuous invasive mechanical ventilation', 'ICD9CM_2010'), +('96.70', 'Continuous invasive mechanical ventilation of unspecified duration', 'ICD9CM_2010'), +('96.71', 'Continuous invasive mechanical ventilation for less than 96 consecutive hours', 'ICD9CM_2010'), +('96.72', 'Continuous invasive mechanical ventilation for 96 consecutive hours or more', 'ICD9CM_2010'), +('97', 'Replacement and removal of therapeutic appliances', 'ICD9CM_2010'), +('97.0', 'Nonoperative replacement of gastrointestinal appliance', 'ICD9CM_2010'), +('97.01', 'Replacement of (naso-)gastric or esophagostomy tube', 'ICD9CM_2010'), +('97.02', 'Replacement of gastrostomy tube', 'ICD9CM_2010'), +('97.03', 'Replacement of tube or enterostomy device of small intestine', 'ICD9CM_2010'), +('97.04', 'Replacement of tube or enterostomy device of large intestine', 'ICD9CM_2010'), +('97.05', 'Replacement of stent (tube) in biliary or pancreatic duct', 'ICD9CM_2010'), +('97.1', 'Nonoperative replacement of musculoskeletal and integumentary system', 'ICD9CM_2010'), +('97.11', 'Replacement of cast on upper limb', 'ICD9CM_2010'), +('97.12', 'Replacement of cast on lower limb', 'ICD9CM_2010'), +('97.13', 'Replacement of other cast', 'ICD9CM_2010'), +('97.14', 'Replacement of other device for musculoskeletal immobilization', 'ICD9CM_2010'), +('97.15', 'Replacement of wound catheter', 'ICD9CM_2010'), +('97.16', 'Replacement of wound packing or drain', 'ICD9CM_2010'), +('97.2', 'Other nonoperative replacement', 'ICD9CM_2010'), +('97.21', 'Replacement of nasal packing', 'ICD9CM_2010'), +('97.22', 'Replacement of dental packing', 'ICD9CM_2010'), +('97.23', 'Replacement of tracheostomy tube', 'ICD9CM_2010'), +('97.24', 'Replacement and refitting of vaginal diaphragm', 'ICD9CM_2010'), +('97.25', 'Replacement of other vaginal pessary', 'ICD9CM_2010'), +('97.26', 'Replacement of vaginal or vulvar packing or drain', 'ICD9CM_2010'), +('97.29', 'Other nonoperative replacements', 'ICD9CM_2010'), +('97.3', 'Nonoperative removal of therapeutic device from head and neck', 'ICD9CM_2010'), +('97.31', 'Removal of eye prosthesis', 'ICD9CM_2010'), +('97.32', 'Removal of nasal packing', 'ICD9CM_2010'), +('97.33', 'Removal of dental wiring', 'ICD9CM_2010'), +('97.34', 'Removal of dental packing', 'ICD9CM_2010'), +('97.35', 'Removal of dental prosthesis', 'ICD9CM_2010'), +('97.36', 'Removal of other external mandibular fixation device', 'ICD9CM_2010'), +('97.37', 'Removal of tracheostomy tube', 'ICD9CM_2010'), +('97.38', 'Removal of sutures from head and neck', 'ICD9CM_2010'), +('97.39', 'Removal of other therapeutic device from head and neck', 'ICD9CM_2010'), +('97.4', 'Nonoperative removal of therapeutic device from thorax', 'ICD9CM_2010'), +('97.41', 'Removal of thoracotomy tube or pleural cavity drain', 'ICD9CM_2010'), +('97.42', 'Removal of mediastinal drain', 'ICD9CM_2010'), +('97.43', 'Removal of sutures from thorax', 'ICD9CM_2010'), +('97.44', 'Nonoperative removal of heart assist system', 'ICD9CM_2010'), +('97.49', 'Removal of other device from thorax', 'ICD9CM_2010'), +('97.5', 'Nonoperative removal of therapeutic device from digestive system', 'ICD9CM_2010'), +('97.51', 'Removal of gastrostomy tube', 'ICD9CM_2010'), +('97.52', 'Removal of tube from small intestine', 'ICD9CM_2010'), +('97.53', 'Removal of tube from large intestine or appendix', 'ICD9CM_2010'), +('97.54', 'Removal of cholecystostomy tube', 'ICD9CM_2010'), +('97.55', 'Removal of t-tube, other bile duct tube, or liver tube', 'ICD9CM_2010'), +('97.56', 'Removal of pancreatic tube or drain', 'ICD9CM_2010'), +('97.59', 'Removal of other device from digestive system', 'ICD9CM_2010'), +('97.6', 'Nonoperative removal of therapeutic device from urinary system', 'ICD9CM_2010'), +('97.61', 'Removal of pyelostomy and nephrostomy tube', 'ICD9CM_2010'), +('97.62', 'Removal of ureterostomy tube and ureteral catheter', 'ICD9CM_2010'), +('97.63', 'Removal of cystostomy tube', 'ICD9CM_2010'), +('97.64', 'Removal of other urinary drainage device', 'ICD9CM_2010'), +('97.65', 'Removal of urethral stent', 'ICD9CM_2010'), +('97.69', 'Removal of other device from urinary system', 'ICD9CM_2010'), +('97.7', 'Nonoperative removal of therapeutic device from genital system', 'ICD9CM_2010'), +('97.71', 'Removal of intrauterine contraceptive device', 'ICD9CM_2010'), +('97.72', 'Removal of intrauterine pack', 'ICD9CM_2010'), +('97.73', 'Removal of vaginal diaphragm', 'ICD9CM_2010'), +('97.74', 'Removal of other vaginal pessary', 'ICD9CM_2010'), +('97.75', 'Removal of vaginal or vulvar packing', 'ICD9CM_2010'), +('97.79', 'Removal of other device from genital tract', 'ICD9CM_2010'), +('97.8', 'Other nonoperative removal of therapeutic device', 'ICD9CM_2010'), +('97.81', 'Removal of retroperitoneal drainage device', 'ICD9CM_2010'), +('97.82', 'Removal of peritoneal drainage device', 'ICD9CM_2010'), +('97.83', 'Removal of abdominal wall sutures', 'ICD9CM_2010'), +('97.84', 'Removal of sutures from trunk, not elsewhere classified', 'ICD9CM_2010'), +('97.85', 'Removal of packing from trunk, not elsewhere classified', 'ICD9CM_2010'), +('97.86', 'Removal of other device from abdomen', 'ICD9CM_2010'), +('97.87', 'Removal of other device from trunk', 'ICD9CM_2010'), +('97.88', 'Removal of external immobilization device', 'ICD9CM_2010'), +('97.89', 'Removal of other therapeutic device', 'ICD9CM_2010'), +('98', 'Nonoperative removal of foreign body or calculus', 'ICD9CM_2010'), +('98.0', 'Removal of intraluminal foreign body from digestive system without incision', 'ICD9CM_2010'), +('98.01', 'Removal of intraluminal foreign body from mouth without incision', 'ICD9CM_2010'), +('98.02', 'Removal of intraluminal foreign body from esophagus without incision', 'ICD9CM_2010'), +('98.03', 'Removal of intraluminal foreign body from stomach and small intestine without incision', 'ICD9CM_2010'), +('98.04', 'Removal of intraluminal foreign body from large intestine without incision', 'ICD9CM_2010'), +('98.05', 'Removal of intraluminal foreign body from rectum and anus without incision', 'ICD9CM_2010'), +('98.1', 'Removal of intraluminal foreign body from other sites without incision', 'ICD9CM_2010'), +('98.11', 'Removal of intraluminal foreign body from ear without incision', 'ICD9CM_2010'), +('98.12', 'Removal of intraluminal foreign body from nose without incision', 'ICD9CM_2010'), +('98.13', 'Removal of intraluminal foreign body from pharynx without incision', 'ICD9CM_2010'), +('98.14', 'Removal of intraluminal foreign body from larynx without incision', 'ICD9CM_2010'), +('98.15', 'Removal of intraluminal foreign body from trachea and bronchus without incision', 'ICD9CM_2010'), +('98.16', 'Removal of intraluminal foreign body from uterus without incision', 'ICD9CM_2010'), +('98.17', 'Removal of intraluminal foreign body from vagina without incision', 'ICD9CM_2010'), +('98.18', 'Removal of intraluminal foreign body from artificial stoma without incision', 'ICD9CM_2010'), +('98.19', 'Removal of intraluminal foreign body from urethra without incision', 'ICD9CM_2010'), +('98.2', 'Removal of other foreign body without incision', 'ICD9CM_2010'), +('98.20', 'Removal of foreign body, not otherwise specified', 'ICD9CM_2010'), +('98.21', 'Removal of superficial foreign body from eye without incision', 'ICD9CM_2010'), +('98.22', 'Removal of other foreign body without incision from head and neck', 'ICD9CM_2010'), +('98.23', 'Removal of foreign body from vulva without incision', 'ICD9CM_2010'), +('98.24', 'Removal of foreign body from scrotum or penis without incision', 'ICD9CM_2010'), +('98.25', 'Removal of other foreign body without incision from trunk except scrotum,penis, or vulva', 'ICD9CM_2010'), +('98.26', 'Removal of foreign body from hand without incision', 'ICD9CM_2010'), +('98.27', 'Removal of foreign body without incision from upper limb, except hand', 'ICD9CM_2010'), +('98.28', 'Removal of foreign body from foot without incision', 'ICD9CM_2010'), +('98.29', 'Removal of foreign body without incision from lower limb, except foot', 'ICD9CM_2010'), +('98.5', 'Extracorporeal shockwave lithotripsy (ESWL)', 'ICD9CM_2010'), +('98.51', 'Extracorporeal shockwave lithotripsy (ESWL) of the kidney, ureter and/or bladder', 'ICD9CM_2010'), +('98.52', 'Extracorporeal shockwave lithotripsy (ESWL) of the gallbladder and/or bile duct', 'ICD9CM_2010'), +('98.59', 'Extracorporeal shockwave lithotripsy (ESWL) of other sites', 'ICD9CM_2010'), +('99', 'Other nonoperative procedures', 'ICD9CM_2010'), +('99.0', 'Transfusion of blood and blood components', 'ICD9CM_2010'), +('99.00', 'Perioperative autologous transfusion of whole blood or blood components', 'ICD9CM_2010'), +('99.01', 'Exchange transfusion', 'ICD9CM_2010'), +('99.02', 'Transfusion of previously collected autologous blood', 'ICD9CM_2010'), +('99.03', 'Other transfusion of whole blood', 'ICD9CM_2010'), +('99.04', 'Transfusion of packed cells', 'ICD9CM_2010'), +('99.05', 'Transfusion of platelets', 'ICD9CM_2010'), +('99.06', 'Transfusion of coagulation factors', 'ICD9CM_2010'), +('99.07', 'Transfusion of other serum', 'ICD9CM_2010'), +('99.08', 'Transfusion of blood expander', 'ICD9CM_2010'), +('99.09', 'Transfusion of other substance', 'ICD9CM_2010'), +('99.1', 'Injection or infusion of therapeutic or prophylactic substance', 'ICD9CM_2010'), +('99.10', 'Injection or infusion of thrombolytic agent', 'ICD9CM_2010'), +('99.11', 'Injection of Rh immune globulin', 'ICD9CM_2010'), +('99.12', 'Immunization for allergy', 'ICD9CM_2010'), +('99.13', 'Immunization for autoimmune disease', 'ICD9CM_2010'), +('99.14', 'Injection or infusion of gamma globulin', 'ICD9CM_2010'), +('99.15', 'Parenteral infusion of concentrated nutritional substances', 'ICD9CM_2010'), +('99.16', 'Injection of antidote', 'ICD9CM_2010'), +('99.17', 'Injection of insulin', 'ICD9CM_2010'), +('99.18', 'Injection or infusion of electrolytes', 'ICD9CM_2010'), +('99.19', 'Injection of anticoagulant', 'ICD9CM_2010'), +('99.2', 'Injection or infusion of other therapeutic or prophylactic substance', 'ICD9CM_2010'), +('99.20', 'Injection or infusion of platelet inhibitor', 'ICD9CM_2010'), +('99.21', 'Injection of antibiotic', 'ICD9CM_2010'), +('99.22', 'Injection of other anti-infective', 'ICD9CM_2010'), +('99.23', 'Injection of steroid', 'ICD9CM_2010'), +('99.24', 'Injection of other hormone', 'ICD9CM_2010'), +('99.25', 'Injection or infusion of cancer chemotherapeutic substance', 'ICD9CM_2010'), +('99.26', 'Injection of tranquilizer', 'ICD9CM_2010'), +('99.27', 'Iontophoresis', 'ICD9CM_2010'), +('99.28', 'Injection or infusion of biological response modifier [BRM] as an antineoplastic agent', 'ICD9CM_2010'), +('99.29', 'Injection or infusion of other therapeutic or prophylactic substance', 'ICD9CM_2010'), +('99.3', 'Prophylactic vaccination and inoculation against certain bacterial disease', 'ICD9CM_2010'), +('99.31', 'Vaccination against cholera', 'ICD9CM_2010'), +('99.32', 'Vaccination against typhoid and paratyphoid fever', 'ICD9CM_2010'), +('99.33', 'Vaccination against tuberculosis', 'ICD9CM_2010'), +('99.34', 'Vaccination against plague', 'ICD9CM_2010'), +('99.35', 'Vaccination against tularemia', 'ICD9CM_2010'), +('99.36', 'Administration of diphtheria toxoid', 'ICD9CM_2010'), +('99.37', 'Vaccination against pertussis', 'ICD9CM_2010'), +('99.38', 'Administration of tetanus toxoid', 'ICD9CM_2010'), +('99.39', 'Administration of diphtheria-tetanus-pertussis, combined', 'ICD9CM_2010'), +('99.4', 'Prophylactic vaccination and inoculation against certain viral diseases', 'ICD9CM_2010'), +('99.41', 'Administration of poliomyelitis vaccine', 'ICD9CM_2010'), +('99.42', 'Vaccination against smallpox', 'ICD9CM_2010'), +('99.43', 'Vaccination against yellow fever', 'ICD9CM_2010'), +('99.44', 'Vaccination against rabies', 'ICD9CM_2010'), +('99.45', 'Vaccination against measles', 'ICD9CM_2010'), +('99.46', 'Vaccination against mumps', 'ICD9CM_2010'), +('99.47', 'Vaccination against rubella', 'ICD9CM_2010'), +('99.48', 'Administration of measles-mumps-rubella vaccine', 'ICD9CM_2010'), +('99.5', 'Other vaccination and inoculation', 'ICD9CM_2010'), +('99.51', 'Prophylactic vaccination against the common cold', 'ICD9CM_2010'), +('99.52', 'Prophylactic vaccination against influenza', 'ICD9CM_2010'), +('99.53', 'Prophylactic vaccination against arthropod-borne viral encephalitis', 'ICD9CM_2010'), +('99.54', 'Prophylactic vaccination against other arthropod- borne viral diseases', 'ICD9CM_2010'), +('99.55', 'Prophylactic administration of vaccine against other diseases', 'ICD9CM_2010'), +('99.56', 'Administration of tetanus antitoxin', 'ICD9CM_2010'), +('99.57', 'Administration of botulism antitoxin', 'ICD9CM_2010'), +('99.58', 'Administration of other antitoxins', 'ICD9CM_2010'), +('99.59', 'Other vaccination and inoculation', 'ICD9CM_2010'), +('99.6', 'Conversion of cardiac rhythm', 'ICD9CM_2010'), +('99.60', 'Cardiopulmonary resuscitation, not otherwise specified', 'ICD9CM_2010'), +('99.61', 'Atrial cardioversion', 'ICD9CM_2010'), +('99.62', 'Other electric countershock of heart', 'ICD9CM_2010'), +('99.63', 'Closed chest cardiac massage', 'ICD9CM_2010'), +('99.64', 'Carotid sinus stimulation', 'ICD9CM_2010'), +('99.69', 'Other conversion of cardiac rhythm', 'ICD9CM_2010'), +('99.7', 'Therapeutic apheresis or other injection, administration, or infusion of other therapeutic or prophylactic substances', 'ICD9CM_2010'), +('99.71', 'Therapeutic plasmapheresis', 'ICD9CM_2010'), +('99.72', 'Therapeutic leukopheresis', 'ICD9CM_2010'), +('99.73', 'Therapeutic erythrocytapheresis', 'ICD9CM_2010'), +('99.74', 'Therapeutic plateletpheresis', 'ICD9CM_2010'), +('99.75', 'Administration of neuroprotective agent', 'ICD9CM_2010'), +('99.76', 'Extracorporeal immunoadsorption', 'ICD9CM_2010'), +('99.77', 'Application or administration of adhesion barrier sucstance', 'ICD9CM_2010'), +('99.78', 'Aquapheresis', 'ICD9CM_2010'), +('99.79', 'Other', 'ICD9CM_2010'), +('99.8', 'Miscellaneous physical procedures', 'ICD9CM_2010'), +('99.81', 'Hypothermia (central) (local)', 'ICD9CM_2010'), +('99.82', 'Ultraviolet light therapy', 'ICD9CM_2010'), +('99.83', 'Other phototherapy', 'ICD9CM_2010'), +('99.84', 'Isolation', 'ICD9CM_2010'), +('99.85', 'Hyperthermia for treatment of cancer', 'ICD9CM_2010'), +('99.86', 'Non-invasive placement of bone growth stimulator', 'ICD9CM_2010'), +('99.88', 'Therapeutic photopheresis', 'ICD9CM_2010'), +('99.9', 'Other miscellaneous procedures', 'ICD9CM_2010'), +('99.91', 'Acupuncture for anesthesia', 'ICD9CM_2010'), +('99.92', 'Other acupuncture', 'ICD9CM_2010'), +('99.93', 'Rectal massage (for levator spasm)', 'ICD9CM_2010'), +('99.94', 'Prostatic massage', 'ICD9CM_2010'), +('99.95', 'Stretching of foreskin', 'ICD9CM_2010'), +('99.96', 'Collection of sperm for artificial insemination', 'ICD9CM_2010'), +('99.97', 'Fitting of denture', 'ICD9CM_2010'), +('99.98', 'Extraction of milk from lactating breast', 'ICD9CM_2010'), +('99.99', 'Other', 'ICD9CM_2010'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `icd10` +-- + +CREATE TABLE `icd10` ( + `ID_ICD10` varchar(20) NOT NULL, + `Diagnosa` varchar(150) DEFAULT NULL, + `Versi_ICD10` varchar(20) DEFAULT NULL +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; + +-- +-- Dumping data for table `icd10` +-- + +INSERT INTO `icd10` (`ID_ICD10`, `Diagnosa`, `Versi_ICD10`) VALUES +('A00', 'Cholera', 'ICD10_2010'), +('A00.0', 'Cholera due to vibrio cholerae 01, biovar cholerae', 'ICD10_2010'), +('A00.1', 'Cholera due to vibrio cholerae 01, biovar eltor', 'ICD10_2010'), +('A00.9', 'Cholera, unspecified', 'ICD10_2010'), +('A01', 'Typhoid and paratyphoid fevers', 'ICD10_2010'), +('A01.0', 'Typhoid fever', 'ICD10_2010'), +('A01.1', 'Paratyphoid fever a', 'ICD10_2010'), +('A01.2', 'Paratyphoid fever b', 'ICD10_2010'), +('A01.3', 'Paratyphoid fever c', 'ICD10_2010'), +('A01.4', 'Paratyphoid fever, unspecified', 'ICD10_2010'), +('A02', 'Other salmonella infections', 'ICD10_2010'), +('A02.0', 'Salmonella enteritis', 'ICD10_2010'), +('A02.1', 'Salmonella septicaemia', 'ICD10_2010'), +('A02.2', 'Localized salmonella infections', 'ICD10_2010'), +('A02.8', 'Other specified salmonella infections', 'ICD10_2010'), +('A02.9', 'Salmonella infection, unspecified', 'ICD10_2010'), +('A03', 'Shigellosis', 'ICD10_2010'), +('A03.0', 'Shigellosis due to shigella dysenteriae', 'ICD10_2010'), +('A03.1', 'Shigellosis due to shigella flexneri', 'ICD10_2010'), +('A03.2', 'Shigellosis due to shigella boydii', 'ICD10_2010'), +('A03.3', 'Shigellosis due to shigella sonnei', 'ICD10_2010'), +('A03.8', 'Other shigellosis', 'ICD10_2010'), +('A03.9', 'Shigellosis, unspecified', 'ICD10_2010'), +('A04', 'Other bacterial intestinal infections', 'ICD10_2010'), +('A04.0', 'Enteropathogenic escherichia coli infection', 'ICD10_2010'), +('A04.1', 'Enterotoxigenic escherichia coli infection', 'ICD10_2010'), +('A04.2', 'Enteroinvasive escherichia coli infection', 'ICD10_2010'), +('A04.3', 'Enterohaemorrhagic escherichia coli infection', 'ICD10_2010'), +('A04.4', 'Other intestinal escherichia coli infections', 'ICD10_2010'), +('A04.5', 'Campylobacter enteritis', 'ICD10_2010'), +('A04.6', 'Enteritis due to yersinia enterocolitica', 'ICD10_2010'), +('A04.7', 'Enterocolitis due to clostridium difficile', 'ICD10_2010'), +('A04.8', 'Other specified bacterial intestinal infections', 'ICD10_2010'), +('A04.9', 'Bacterial intestinal infection, unspecified', 'ICD10_2010'), +('A05', 'Other bacterial foodborne intoxications, not elsewhere classified', 'ICD10_2010'), +('A05.0', 'Foodborne staphylococcal intoxication', 'ICD10_2010'), +('A05.1', 'Botulism', 'ICD10_2010'), +('A05.2', 'Foodborne clostridium perfringens intoxication', 'ICD10_2010'), +('A05.3', 'Foodborne vibrio parahaemolyticus intoxication', 'ICD10_2010'), +('A05.4', 'Foodborne bacillus cereus intoxication', 'ICD10_2010'), +('A05.8', 'Other specified bacterial foodborne intoxications', 'ICD10_2010'), +('A05.9', 'Bacterial foodborne intoxication, unspecified', 'ICD10_2010'), +('A06', 'Amoebiasis', 'ICD10_2010'), +('A06.0', 'Acute amoebic dysentery', 'ICD10_2010'), +('A06.1', 'Chronic intestinal amoebiasis', 'ICD10_2010'), +('A06.2', 'Amoebic nondysenteric colitis', 'ICD10_2010'), +('A06.3', 'Amoeboma of intestine', 'ICD10_2010'), +('A06.4', 'Amoebic liver abscess', 'ICD10_2010'), +('A06.5', 'Amoebic lung abscess', 'ICD10_2010'), +('A06.6', 'Amoebic brain abscess', 'ICD10_2010'), +('A06.7', 'Cutaneous amoebiasis', 'ICD10_2010'), +('A06.8', 'Amoebic infection of other sites', 'ICD10_2010'), +('A06.9', 'Amoebiasis, unspecified', 'ICD10_2010'), +('A07', 'Other protozoal intestinal diseases', 'ICD10_2010'), +('A07.0', 'Balantidiasis', 'ICD10_2010'), +('A07.1', 'Giardiasis [lambliasis]', 'ICD10_2010'), +('A07.2', 'Cryptosporidiosis', 'ICD10_2010'), +('A07.3', 'Isosporiasis', 'ICD10_2010'), +('A07.8', 'Other specified protozoal intestinal diseases', 'ICD10_2010'), +('A07.9', 'Protozoal intestinal disease, unspecified', 'ICD10_2010'), +('A08', 'Viral and other specified intestinal infections', 'ICD10_2010'), +('A08.0', 'Rotaviral enteritis', 'ICD10_2010'), +('A08.1', 'Acute gastroenteropathy due to norwalk agent', 'ICD10_2010'), +('A08.2', 'Adenoviral enteritis', 'ICD10_2010'), +('A08.3', 'Other viral enteritis', 'ICD10_2010'), +('A08.4', 'Viral intestinal infection, unspecified', 'ICD10_2010'), +('A08.5', 'Other specified intestinal infections', 'ICD10_2010'), +('A09', 'Diarrhoea and gastroenteritis of presumed infectious origin', 'ICD10_2010'), +('A09.0', 'Other and unspecified gastroenteritis and colitis of infectious origin', 'ICD10_2010'), +('A09.9', 'Gastroenteritis and colitis of unspecified origin', 'ICD10_2010'), +('A15', 'Respiratory tuberculosis, bacteriologically and histologically confirmed', 'ICD10_2010'), +('A15.0', 'Tb lung confirm sputum microscopy with or without culture', 'ICD10_2010'), +('A15.1', 'Tuberculosis of lung, confirmed by culture only', 'ICD10_2010'), +('A15.2', 'Tuberculosis of lung, confirmed histologically', 'ICD10_2010'), +('A15.3', 'Tuberculosis of lung, confirmed by unspecified means', 'ICD10_2010'), +('A15.4', 'Tb intrathoracic lymph nodes confirm bact histologically', 'ICD10_2010'), +('A15.5', 'Tuberculosis of larynx, trachea & bronchus conf bact/hist\'y', 'ICD10_2010'), +('A15.6', 'Tuberculous pleurisy, conf bacteriologically/his\'y', 'ICD10_2010'), +('A15.7', 'Primary respiratory tb confirm bact and histologically', 'ICD10_2010'), +('A15.8', 'Other respiratory tb confirm bact and histologically', 'ICD10_2010'), +('A15.9', 'Respiratory tb unspec confirm bact and histologically', 'ICD10_2010'), +('A16', 'Respiratory tuberculosis, not confirmed bacteriologically or histologically', 'ICD10_2010'), +('A16.0', 'Tuberculosis of lung, bacteriologically & histolog\'y neg', 'ICD10_2010'), +('A16.1', 'Tuberculosis lung bact and histological examin not done', 'ICD10_2010'), +('A16.2', 'Tb lung without mention of bact or histological confirm', 'ICD10_2010'), +('A16.3', 'Tb intrathoracic lymph node without bact or hist confirm', 'ICD10_2010'), +('A16.4', 'Tb larynx trachea and bronchus without bact or hist confirm', 'ICD10_2010'), +('A16.5', 'Tb pleurisy without mention of bact or histological confirm', 'ICD10_2010'), +('A16.7', 'Prim respiratory tb without mention of bact or hist confirm', 'ICD10_2010'), +('A16.8', 'Oth respiratory tb without mention of bact or hist confirm', 'ICD10_2010'), +('A16.9', 'Resp tb unspec without mention of bact or hist confirm', 'ICD10_2010'), +('A17', 'Tuberculosis of nervous system', 'ICD10_2010'), +('A17.0', 'Tuberculous meningitis', 'ICD10_2010'), +('A17.1', 'Meningeal tuberculoma', 'ICD10_2010'), +('A17.8', 'Other tuberculosis of nervous system', 'ICD10_2010'), +('A17.9', 'Tuberculosis of nervous system unspecified', 'ICD10_2010'), +('A18', 'Tuberculosis of other organs', 'ICD10_2010'), +('A18.0', 'Tuberculosis of bones and joints', 'ICD10_2010'), +('A18.1', 'Tuberculosis of genitourinary system', 'ICD10_2010'), +('A18.2', 'Tuberculous peripheral lymphadenopathy', 'ICD10_2010'), +('A18.3', 'Tuberculosis of intestines, peritoneum and mesenteric glands', 'ICD10_2010'), +('A18.4', 'Tuberculosis of skin and subcutaneous tissue', 'ICD10_2010'), +('A18.5', 'Tuberculosis of eye', 'ICD10_2010'), +('A18.6', 'Tuberculosis of ear', 'ICD10_2010'), +('A18.7', 'Tuberculosis of adrenal glands', 'ICD10_2010'), +('A18.8', 'Tuberculosis of other specified organs', 'ICD10_2010'), +('A19', 'Miliary tuberculosis', 'ICD10_2010'), +('A19.0', 'Acute miliary tuberculosis of a single specified site', 'ICD10_2010'), +('A19.1', 'Acute miliary tuberculosis of multiple sites', 'ICD10_2010'), +('A19.2', 'Acute miliary tuberculosis, unspecified', 'ICD10_2010'), +('A19.8', 'Other miliary tuberculosis', 'ICD10_2010'), +('A19.9', 'Miliary tuberculosis, unspecified', 'ICD10_2010'), +('A20', 'Plague', 'ICD10_2010'), +('A20.0', 'Bubonic plague', 'ICD10_2010'), +('A20.1', 'Cellulocutaneous plague', 'ICD10_2010'), +('A20.2', 'Pneumonic plague', 'ICD10_2010'), +('A20.3', 'Plague meningitis', 'ICD10_2010'), +('A20.7', 'Septicaemic plague', 'ICD10_2010'), +('A20.8', 'Other forms of plague', 'ICD10_2010'), +('A20.9', 'Plague, unspecified', 'ICD10_2010'), +('A21', 'Tularaemia', 'ICD10_2010'), +('A21.0', 'Ulceroglandular tularaemia', 'ICD10_2010'), +('A21.1', 'Oculoglandular tularaemia', 'ICD10_2010'), +('A21.2', 'Pulmonary tularaemia', 'ICD10_2010'), +('A21.3', 'Gastrointestinal tularaemia', 'ICD10_2010'), +('A21.7', 'Generalized tularaemia', 'ICD10_2010'), +('A21.8', 'Other forms of tularaemia', 'ICD10_2010'), +('A21.9', 'Tularaemia, unspecified', 'ICD10_2010'), +('A22', 'Anthrax', 'ICD10_2010'), +('A22.0', 'Cutaneous anthrax', 'ICD10_2010'), +('A22.1', 'Pulmonary anthrax', 'ICD10_2010'), +('A22.2', 'Gastrointestinal anthrax', 'ICD10_2010'), +('A22.7', 'Anthrax septicaemia', 'ICD10_2010'), +('A22.8', 'Other forms of anthrax', 'ICD10_2010'), +('A22.9', 'Anthrax, unspecified', 'ICD10_2010'), +('A23', 'Brucellosis', 'ICD10_2010'), +('A23.0', 'Brucellosis due to brucella melitensis', 'ICD10_2010'), +('A23.1', 'Brucellosis due to brucella abortus', 'ICD10_2010'), +('A23.2', 'Brucellosis due to brucella suis', 'ICD10_2010'), +('A23.3', 'Brucellosis due to brucella canis', 'ICD10_2010'), +('A23.8', 'Other brucellosis', 'ICD10_2010'), +('A23.9', 'Brucellosis, unspecified', 'ICD10_2010'), +('A24', 'Glanders and melioidosis', 'ICD10_2010'), +('A24.0', 'Glanders', 'ICD10_2010'), +('A24.1', 'Acute and fulminating melioidosis', 'ICD10_2010'), +('A24.2', 'Subacute and chronic melioidosis', 'ICD10_2010'), +('A24.3', 'Other melioidosis', 'ICD10_2010'), +('A24.4', 'Melioidosis, unspecified', 'ICD10_2010'), +('A25', 'Rat-bite fevers', 'ICD10_2010'), +('A25.0', 'Spirillosis', 'ICD10_2010'), +('A25.1', 'Streptobacillosis', 'ICD10_2010'), +('A25.9', 'Rat-bite fever, unspecified', 'ICD10_2010'), +('A26', 'Erysipeloid', 'ICD10_2010'), +('A26.0', 'Cutaneous erysipeloid', 'ICD10_2010'), +('A26.7', 'Erysipelothrix septicaemia', 'ICD10_2010'), +('A26.8', 'Other forms of erysipeloid', 'ICD10_2010'), +('A26.9', 'Erysipeloid, unspecified', 'ICD10_2010'), +('A27', 'Leptospirosis', 'ICD10_2010'), +('A27.0', 'Leptospirosis icterohaemorrhagica', 'ICD10_2010'), +('A27.8', 'Other forms of leptospirosis', 'ICD10_2010'), +('A27.9', 'Leptospirosis, unspecified', 'ICD10_2010'), +('A28', 'Other zoonotic bacterial diseases, not elsewhere classified', 'ICD10_2010'), +('A28.0', 'Pasteurellosis', 'ICD10_2010'), +('A28.1', 'Cat-scratch disease', 'ICD10_2010'), +('A28.2', 'Extraintestinal yersiniosis', 'ICD10_2010'), +('A28.8', 'Other specified zoonotic bacterial diseases nec', 'ICD10_2010'), +('A28.9', 'Zoonotic bacterial disease, unspecified', 'ICD10_2010'), +('A30', 'Leprosy [Hansen disease]', 'ICD10_2010'), +('A30.0', 'Indeterminate leprosy', 'ICD10_2010'), +('A30.1', 'Tuberculoid leprosy', 'ICD10_2010'), +('A30.2', 'Borderline tuberculoid leprosy', 'ICD10_2010'), +('A30.3', 'Borderline leprosy', 'ICD10_2010'), +('A30.4', 'Borderline lepromatous leprosy', 'ICD10_2010'), +('A30.5', 'Lepromatous leprosy', 'ICD10_2010'), +('A30.8', 'Other forms of leprosy', 'ICD10_2010'), +('A30.9', 'Leprosy, unspecified', 'ICD10_2010'), +('A31', 'Infection due to other mycobacteria', 'ICD10_2010'), +('A31.0', 'Pulmonary mycobacterial infection', 'ICD10_2010'), +('A31.1', 'Cutaneous mycobacterial infection', 'ICD10_2010'), +('A31.8', 'Other mycobacterial infections', 'ICD10_2010'), +('A31.9', 'Mycobacterial infection, unspecified', 'ICD10_2010'), +('A32', 'Listeriosis', 'ICD10_2010'), +('A32.0', 'Cutaneous listeriosis', 'ICD10_2010'), +('A32.1', 'Listerial meningitis and meningoencephalitis', 'ICD10_2010'), +('A32.7', 'Listerial septicaemia', 'ICD10_2010'), +('A32.8', 'Other forms of listeriosis', 'ICD10_2010'), +('A32.9', 'Listeriosis, unspecified', 'ICD10_2010'), +('A33', 'Tetanus neonatorum', 'ICD10_2010'), +('A34', 'Obstetrical tetanus', 'ICD10_2010'), +('A35', 'Other tetanus', 'ICD10_2010'), +('A36', 'Diphtheria', 'ICD10_2010'), +('A36.0', 'Pharyngeal diphtheria', 'ICD10_2010'), +('A36.1', 'Nasopharyngeal diphtheria', 'ICD10_2010'), +('A36.2', 'Laryngeal diphtheria', 'ICD10_2010'), +('A36.3', 'Cutaneous diphtheria', 'ICD10_2010'), +('A36.8', 'Other diphtheria', 'ICD10_2010'), +('A36.9', 'Diphtheria, unspecified', 'ICD10_2010'), +('A37', 'Whooping cough', 'ICD10_2010'), +('A37.0', 'Whooping cough due to bordetella pertussis', 'ICD10_2010'), +('A37.1', 'Whooping cough due to bordetella parapertussis', 'ICD10_2010'), +('A37.8', 'Whooping cough due to other bordetella species', 'ICD10_2010'), +('A37.9', 'Whooping cough, unspecified', 'ICD10_2010'), +('A38', 'Scarlet fever', 'ICD10_2010'), +('A39', 'Meningococcal infection', 'ICD10_2010'), +('A39.0', 'Meningococcal meningitis', 'ICD10_2010'), +('A39.1', 'Waterhouse-friderichsen syndrome', 'ICD10_2010'), +('A39.2', 'Acute meningococcaemia', 'ICD10_2010'), +('A39.3', 'Chronic meningococcaemia', 'ICD10_2010'), +('A39.4', 'Meningococcaemia, unspecified', 'ICD10_2010'), +('A39.5', 'Meningococcal heart disease', 'ICD10_2010'), +('A39.8', 'Other meningococcal infections', 'ICD10_2010'), +('A39.9', 'Meningococcal infection, unspecified', 'ICD10_2010'), +('A40', 'Streptococcal sepsis', 'ICD10_2010'), +('A40.0', 'Septicaemia due to streptococcus, group a', 'ICD10_2010'), +('A40.1', 'Septicaemia due to streptococcus, group b', 'ICD10_2010'), +('A40.2', 'Septicaemia due to streptococcus, group d', 'ICD10_2010'), +('A40.3', 'Septicaemia due to streptococcus pneumoniae', 'ICD10_2010'), +('A40.8', 'Other streptococcal septicaemia', 'ICD10_2010'), +('A40.9', 'Streptococcal septicaemia, unspecified', 'ICD10_2010'), +('A41', 'Other sepsis', 'ICD10_2010'), +('A41.0', 'Septicaemia due to staphylococcus aureus', 'ICD10_2010'), +('A41.1', 'Septicaemia due to other specified staphylococcus', 'ICD10_2010'), +('A41.2', 'Septicaemia due to unspecified staphylococcus', 'ICD10_2010'), +('A41.3', 'Septicaemia due to haemophilus influenzae', 'ICD10_2010'), +('A41.4', 'Septicaemia due to anaerobes', 'ICD10_2010'), +('A41.5', 'Septicaemia due to other gram-negative organisms', 'ICD10_2010'), +('A41.8', 'Other specified septicaemia', 'ICD10_2010'), +('A41.9', 'Septicaemia, unspecified', 'ICD10_2010'), +('A42', 'Actinomycosis', 'ICD10_2010'), +('A42.0', 'Pulmonary actinomycosis', 'ICD10_2010'), +('A42.1', 'Abdominal actinomycosis', 'ICD10_2010'), +('A42.2', 'Cervicofacial actinomycosis', 'ICD10_2010'), +('A42.7', 'Actinomycotic septicaemia', 'ICD10_2010'), +('A42.8', 'Other forms of actinomycosis', 'ICD10_2010'), +('A42.9', 'Actinomycosis, unspecified', 'ICD10_2010'), +('A43', 'Nocardiosis', 'ICD10_2010'), +('A43.0', 'Pulmonary nocardiosis', 'ICD10_2010'), +('A43.1', 'Cutaneous nocardiosis', 'ICD10_2010'), +('A43.8', 'Other forms of nocardiosis', 'ICD10_2010'), +('A43.9', 'Nocardiosis, unspecified', 'ICD10_2010'), +('A44', 'Bartonellosis', 'ICD10_2010'), +('A44.0', 'Systemic bartonellosis', 'ICD10_2010'), +('A44.1', 'Cutaneous and mucocutaneous bartonellosis', 'ICD10_2010'), +('A44.8', 'Other forms of bartonellosis', 'ICD10_2010'), +('A44.9', 'Bartonellosis, unspecified', 'ICD10_2010'), +('A46', 'Erysipelas', 'ICD10_2010'), +('A48', 'Other bacterial diseases, not elsewhere classified', 'ICD10_2010'), +('A48.0', 'Gas gangrene', 'ICD10_2010'), +('A48.1', 'Legionnaires\' disease', 'ICD10_2010'), +('A48.2', 'Nonpneumonic legionnaires\' disease [pontiac fever]', 'ICD10_2010'), +('A48.3', 'Toxic shock syndrome', 'ICD10_2010'), +('A48.4', 'Brazilian purpuric fever', 'ICD10_2010'), +('A48.8', 'Other specified bacterial diseases', 'ICD10_2010'), +('A49', 'Bacterial infection of unspecified site', 'ICD10_2010'), +('A49.0', 'Staphylococcal infection, unspecified', 'ICD10_2010'), +('A49.1', 'Streptococcal infection, unspecified', 'ICD10_2010'), +('A49.2', 'Haemophilus influenzae infection, unspecified', 'ICD10_2010'), +('A49.3', 'Mycoplasma infection, unspecified', 'ICD10_2010'), +('A49.8', 'Other bacterial infections of unspecified site', 'ICD10_2010'), +('A49.9', 'Bacterial infection, unspecified', 'ICD10_2010'), +('A50', 'Congenital syphilis', 'ICD10_2010'), +('A50.0', 'Early congenital syphilis, symptomatic', 'ICD10_2010'), +('A50.1', 'Early congenital syphilis, latent', 'ICD10_2010'), +('A50.2', 'Early congenital syphilis, unspecified', 'ICD10_2010'), +('A50.3', 'Late congenital syphilitic oculopathy', 'ICD10_2010'), +('A50.4', 'Late congenital neurosyphilis [juvenile neurosyphilis]', 'ICD10_2010'), +('A50.5', 'Other late congenital syphilis, symptomatic', 'ICD10_2010'), +('A50.6', 'Late congenital syphilis, latent', 'ICD10_2010'), +('A50.7', 'Late congenital syphilis, unspecified', 'ICD10_2010'), +('A50.9', 'Congenital syphilis, unspecified', 'ICD10_2010'), +('A51', 'Early syphilis', 'ICD10_2010'), +('A51.0', 'Primary genital syphilis', 'ICD10_2010'), +('A51.1', 'Primary anal syphilis', 'ICD10_2010'), +('A51.2', 'Primary syphilis of other sites', 'ICD10_2010'), +('A51.3', 'Secondary syphilis of skin and mucous membranes', 'ICD10_2010'), +('A51.4', 'Other secondary syphilis', 'ICD10_2010'), +('A51.5', 'Early syphilis, latent', 'ICD10_2010'), +('A51.9', 'Early syphilis, unspecified', 'ICD10_2010'), +('A52', 'Late syphilis', 'ICD10_2010'), +('A52.0', 'Cardiovascular syphilis', 'ICD10_2010'), +('A52.1', 'Symptomatic neurosyphilis', 'ICD10_2010'), +('A52.2', 'Asymptomatic neurosyphilis', 'ICD10_2010'), +('A52.3', 'Neurosyphilis, unspecified', 'ICD10_2010'), +('A52.7', 'Other symptomatic late syphilis', 'ICD10_2010'), +('A52.8', 'Late syphilis, latent', 'ICD10_2010'), +('A52.9', 'Late syphilis, unspecified', 'ICD10_2010'), +('A53', 'Other and unspecified syphilis', 'ICD10_2010'), +('A53.0', 'Latent syphilis, unspecified as early or late', 'ICD10_2010'), +('A53.9', 'Syphilis, unspecified', 'ICD10_2010'), +('A54', 'Gonococcal infection', 'ICD10_2010'), +('A54.0', 'Gonococcal infection lower genitourinary tract without periurethral / accessory gland abscess', 'ICD10_2010'), +('A54.1', 'Gonococcal infection lower genitourinary tract with periurethral / accessory gland abscess', 'ICD10_2010'), +('A54.2', 'Gonococcal pelviperitonitis and other gonococcal genitourinary infections', 'ICD10_2010'), +('A54.3', 'Gonococcal infection of eye', 'ICD10_2010'), +('A54.4', 'Gonococcal infection of musculoskeletal system', 'ICD10_2010'), +('A54.5', 'Gonococcal pharyngitis', 'ICD10_2010'), +('A54.6', 'Gonococcal infection of anus and rectum', 'ICD10_2010'), +('A54.8', 'Other gonococcal infections', 'ICD10_2010'), +('A54.9', 'Gonococcal infection, unspecified', 'ICD10_2010'), +('A55', 'Chlamydial lymphogranuloma (venereum)', 'ICD10_2010'), +('A56', 'Other sexually transmitted chlamydial diseases', 'ICD10_2010'), +('A56.0', 'Chlamydial infection of lower genitourinary tract', 'ICD10_2010'), +('A56.1', 'Chlamydial infection of pelviperitoneum other genitourinary organs', 'ICD10_2010'), +('A56.2', 'Chlamydial infection of genitourinary tract, unspecified', 'ICD10_2010'), +('A56.3', 'Chlamydial infection of anus and rectum', 'ICD10_2010'), +('A56.4', 'Chlamydial infection of pharynx', 'ICD10_2010'), +('A56.8', 'Sexually transmitted chlamydial infection of other sites', 'ICD10_2010'), +('A57', 'Chancroid', 'ICD10_2010'), +('A58', 'Granuloma inguinale', 'ICD10_2010'), +('A59', 'Trichomoniasis', 'ICD10_2010'), +('A59.0', 'Urogenital trichomoniasis', 'ICD10_2010'), +('A59.8', 'Trichomoniasis of other sites', 'ICD10_2010'), +('A59.9', 'Trichomoniasis, unspecified', 'ICD10_2010'), +('A60', 'Anogenital herpesviral [herpes simplex] infection', 'ICD10_2010'), +('A60.0', 'Herpesviral infection of genitalia and urogenital tract', 'ICD10_2010'), +('A60.1', 'Herpesviral infection of perianal skin and rectum', 'ICD10_2010'), +('A60.9', 'Anogenital herpesviral infection, unspecified', 'ICD10_2010'), +('A63', 'Other predominantly sexually transmitted diseases, not elsewhere classified', 'ICD10_2010'), +('A63.0', 'Anogenital (venereal) warts', 'ICD10_2010'), +('A63.8', 'Other specified predominantly sexually transmitted diseases', 'ICD10_2010'), +('A64', 'Unspecified sexually transmitted disease', 'ICD10_2010'), +('A65', 'Nonvenereal syphilis', 'ICD10_2010'), +('A66', 'Yaws', 'ICD10_2010'), +('A66.0', 'Initial lesions of yaws', 'ICD10_2010'), +('A66.1', 'Multiple papillomata and wet crab yaws', 'ICD10_2010'), +('A66.2', 'Other early skin lesions of yaws', 'ICD10_2010'), +('A66.3', 'Hyperkeratosis of yaws', 'ICD10_2010'), +('A66.4', 'Gummata and ulcers of yaws', 'ICD10_2010'), +('A66.5', 'Gangosa', 'ICD10_2010'), +('A66.6', 'Bone and joint lesions of yaws', 'ICD10_2010'), +('A66.7', 'Other manifestations of yaws', 'ICD10_2010'), +('A66.8', 'Latent yaws', 'ICD10_2010'), +('A66.9', 'Yaws, unspecified', 'ICD10_2010'), +('A67', 'Pinta [carate]', 'ICD10_2010'), +('A67.0', 'Primary lesions of pinta', 'ICD10_2010'), +('A67.1', 'Intermediate lesions of pinta', 'ICD10_2010'), +('A67.2', 'Late lesions of pinta', 'ICD10_2010'), +('A67.3', 'Mixed lesions of pinta', 'ICD10_2010'), +('A67.9', 'Pinta, unspecified', 'ICD10_2010'), +('A68', 'Relapsing fevers', 'ICD10_2010'), +('A68.0', 'Louse-borne relapsing fever', 'ICD10_2010'), +('A68.1', 'Tick-borne relapsing fever', 'ICD10_2010'), +('A68.9', 'Relapsing fever, unspecified', 'ICD10_2010'), +('A69', 'Other spirochaetal infections', 'ICD10_2010'), +('A69.0', 'Necrotizing ulcerative stomatitis', 'ICD10_2010'), +('A69.1', 'Other vincent\'s infections', 'ICD10_2010'), +('A69.2', 'Lyme disease', 'ICD10_2010'), +('A69.8', 'Other specified spirochaetal infections', 'ICD10_2010'), +('A69.9', 'Spirochaetal infection, unspecified', 'ICD10_2010'), +('A70', 'Chlamydia psittaci infection', 'ICD10_2010'), +('A71', 'Trachoma', 'ICD10_2010'), +('A71.0', 'Initial stage of trachoma', 'ICD10_2010'), +('A71.1', 'Active stage of trachoma', 'ICD10_2010'), +('A71.9', 'Trachoma, unspecified', 'ICD10_2010'), +('A74', 'Other diseases caused by chlamydiae', 'ICD10_2010'), +('A74.0', 'Chlamydial conjunctivitis', 'ICD10_2010'), +('A74.8', 'Other chlamydial diseases', 'ICD10_2010'), +('A74.9', 'Chlamydial infection, unspecified', 'ICD10_2010'), +('A75', 'Typhus fever', 'ICD10_2010'), +('A75.0', 'Epidemic louse-borne typhus fever due to rickettsia prowazekii', 'ICD10_2010'), +('A75.1', 'Recrudescent typhus [brill\'s disease]', 'ICD10_2010'), +('A75.2', 'Typhus fever due to rickettsia typhi', 'ICD10_2010'), +('A75.3', 'Typhus fever due to rickettsia tsutsugamushi', 'ICD10_2010'), +('A75.9', 'Typhus fever, unspecified', 'ICD10_2010'), +('A77', 'Spotted fever [tick-borne rickettsioses]', 'ICD10_2010'), +('A77.0', 'Spotted fever due to rickettsia rickettsii', 'ICD10_2010'), +('A77.1', 'Spotted fever due to rickettsia conorii', 'ICD10_2010'), +('A77.2', 'Spotted fever due to rickettsia sibirica', 'ICD10_2010'), +('A77.3', 'Spotted fever due to rickettsia australis', 'ICD10_2010'), +('A77.8', 'Other spotted fevers', 'ICD10_2010'), +('A77.9', 'Spotted fever, unspecified', 'ICD10_2010'), +('A78', 'Q fever', 'ICD10_2010'), +('A79', 'Other rickettsioses', 'ICD10_2010'), +('A79.0', 'Trench fever', 'ICD10_2010'), +('A79.1', 'Rickettsialpox due to rickettsia akari', 'ICD10_2010'), +('A79.8', 'Other specified rickettsioses', 'ICD10_2010'), +('A79.9', 'Rickettsiosis, unspecified', 'ICD10_2010'), +('A80', 'Acute poliomyelitis', 'ICD10_2010'), +('A80.0', 'Acute paralytic poliomyelitis, vaccine-associated', 'ICD10_2010'), +('A80.1', 'Acute paralytic poliomyelitis, wild virus, imported', 'ICD10_2010'), +('A80.2', 'Acute paralytic poliomyelitis, wild virus, indigenous', 'ICD10_2010'), +('A80.3', 'Acute paralytic poliomyelitis, other and unspecified', 'ICD10_2010'), +('A80.4', 'Acute nonparalytic poliomyelitis', 'ICD10_2010'), +('A80.9', 'Acute poliomyelitis, unspecified', 'ICD10_2010'), +('A81', 'Atypical virus infections of central nervous system', 'ICD10_2010'), +('A81.0', 'Creutzfeldt-jakob disease', 'ICD10_2010'), +('A81.1', 'Subacute sclerosing panencephalitis', 'ICD10_2010'), +('A81.2', 'Progressive multifocal leukoencephalopathy', 'ICD10_2010'), +('A81.8', 'Other atypical virus infections of central nervous system', 'ICD10_2010'), +('A81.9', 'Atypical virus infection of central nervous system, unspecified', 'ICD10_2010'), +('A82', 'Rabies', 'ICD10_2010'), +('A82.0', 'Sylvatic rabies', 'ICD10_2010'), +('A82.1', 'Urban rabies', 'ICD10_2010'), +('A82.9', 'Rabies, unspecified', 'ICD10_2010'), +('A83', 'Mosquito-borne viral encephalitis', 'ICD10_2010'), +('A83.0', 'Japanese encephalitis', 'ICD10_2010'), +('A83.1', 'Western equine encephalitis', 'ICD10_2010'), +('A83.2', 'Eastern equine encephalitis', 'ICD10_2010'), +('A83.3', 'St louis encephalitis', 'ICD10_2010'), +('A83.4', 'Australian encephalitis', 'ICD10_2010'), +('A83.5', 'California encephalitis', 'ICD10_2010'), +('A83.6', 'Rocio virus disease', 'ICD10_2010'), +('A83.8', 'Other mosquito-borne viral encephalitis', 'ICD10_2010'), +('A83.9', 'Mosquito-borne viral encephalitis, unspecified', 'ICD10_2010'), +('A84', 'Tick-borne viral encephalitis', 'ICD10_2010'), +('A84.0', 'Far east tick-born enceph-russn spring-summ enceph', 'ICD10_2010'), +('A84.1', 'Central european tick-borne encephalitis', 'ICD10_2010'), +('A84.8', 'Other tick-borne viral encephalitis', 'ICD10_2010'), +('A84.9', 'Tick-borne viral encephalitis, unspecified', 'ICD10_2010'), +('A85', 'Other viral encephalitis, not elsewhere classified', 'ICD10_2010'), +('A85.0', 'Enteroviral encephalitis', 'ICD10_2010'), +('A85.1', 'Adenoviral encephalitis', 'ICD10_2010'), +('A85.2', 'Arthropod-borne viral encephalitis, unspecified', 'ICD10_2010'), +('A85.8', 'Other specified viral encephalitis', 'ICD10_2010'), +('A86', 'Unspecified viral encephalitis', 'ICD10_2010'), +('A87', 'Viral meningitis', 'ICD10_2010'), +('A87.0', 'Enteroviral meningitis', 'ICD10_2010'), +('A87.1', 'Adenoviral meningitis', 'ICD10_2010'), +('A87.2', 'Lymphocytic choriomeningitis', 'ICD10_2010'), +('A87.8', 'Other viral meningitis', 'ICD10_2010'), +('A87.9', 'Viral meningitis, unspecified', 'ICD10_2010'), +('A88', 'Other viral infections of central nervous system, not elsewhere classified', 'ICD10_2010'), +('A88.0', 'Enteroviral exanthematous fever [boston exanthem]', 'ICD10_2010'), +('A88.1', 'Epidemic vertigo', 'ICD10_2010'), +('A88.8', 'Other specified viral infections of central nervous system', 'ICD10_2010'), +('A89', 'Unspecified viral infection of central nervous system', 'ICD10_2010'), +('A90', 'Dengue fever [classical dengue]', 'ICD10_2010'), +('A91', 'Dengue haemorrhagic fever', 'ICD10_2010'), +('A92', 'Other mosquito-borne viral fevers', 'ICD10_2010'), +('A92.0', 'Chikungunya virus disease', 'ICD10_2010'), +('A92.1', 'O\'nyong-nyong fever', 'ICD10_2010'), +('A92.2', 'Venezuelan equine fever', 'ICD10_2010'), +('A92.3', 'West nile fever', 'ICD10_2010'), +('A92.4', 'Rift valley fever', 'ICD10_2010'), +('A92.8', 'Other specified mosquito-borne viral fevers', 'ICD10_2010'), +('A92.9', 'Mosquito-borne viral fever, unspecified', 'ICD10_2010'), +('A93', 'Other arthropod-borne viral fevers, not elsewhere classified', 'ICD10_2010'), +('A93.0', 'Oropouche virus disease', 'ICD10_2010'), +('A93.1', 'Sandfly fever', 'ICD10_2010'), +('A93.2', 'Colorado tick fever', 'ICD10_2010'), +('A93.8', 'Other specified arthropod-borne viral fevers', 'ICD10_2010'), +('A94', 'Unspecified arthropod-borne viral fever', 'ICD10_2010'), +('A95', 'Yellow fever', 'ICD10_2010'), +('A95.0', 'Sylvatic yellow fever', 'ICD10_2010'), +('A95.1', 'Urban yellow fever', 'ICD10_2010'), +('A95.9', 'Yellow fever, unspecified', 'ICD10_2010'), +('A96', 'Arenaviral haemorrhagic fever', 'ICD10_2010'), +('A96.0', 'Junin haemorrhagic fever', 'ICD10_2010'), +('A96.1', 'Machupo haemorrhagic fever', 'ICD10_2010'), +('A96.2', 'Lassa fever', 'ICD10_2010'), +('A96.8', 'Other arenaviral haemorrhagic fevers', 'ICD10_2010'), +('A96.9', 'Arenaviral haemorrhagic fever, unspecified', 'ICD10_2010'), +('A98', 'Other viral haemorrhagic fevers, not elsewhere classified', 'ICD10_2010'), +('A98.0', 'Crimean-congo haemorrhagic fever', 'ICD10_2010'), +('A98.1', 'Omsk haemorrhagic fever', 'ICD10_2010'), +('A98.2', 'Kyasanur forest disease', 'ICD10_2010'), +('A98.3', 'Marburg virus disease', 'ICD10_2010'), +('A98.4', 'Ebola virus disease', 'ICD10_2010'), +('A98.5', 'Haemorrhagic fever with renal syndrome', 'ICD10_2010'), +('A98.8', 'Other specified viral haemorrhagic fevers', 'ICD10_2010'), +('A99', 'Unspecified viral haemorrhagic fever', 'ICD10_2010'), +('B00', 'Herpesviral [herpes simplex] infections', 'ICD10_2010'), +('B00.0', 'Eczema herpeticum', 'ICD10_2010'), +('B00.1', 'Herpesviral vesicular dermatitis', 'ICD10_2010'), +('B00.2', 'Herpesviral gingivostomatitis and pharyngotonsillitis', 'ICD10_2010'), +('B00.3', 'Herpesviral meningitis', 'ICD10_2010'), +('B00.4', 'Herpesviral encephalitis', 'ICD10_2010'), +('B00.5', 'Herpesviral ocular disease', 'ICD10_2010'), +('B00.7', 'Disseminated herpesviral disease', 'ICD10_2010'), +('B00.8', 'Other forms of herpesviral infection', 'ICD10_2010'), +('B00.9', 'Herpesviral infection, unspecified', 'ICD10_2010'), +('B01', 'Varicella [chickenpox]', 'ICD10_2010'), +('B01.0', 'Varicella meningitis', 'ICD10_2010'), +('B01.1', 'Varicella encephalitis', 'ICD10_2010'), +('B01.2', 'Varicella pneumonia', 'ICD10_2010'), +('B01.8', 'Varicella with other complications', 'ICD10_2010'), +('B01.9', 'Varicella without complication', 'ICD10_2010'), +('B02', 'Zoster [herpes zoster]', 'ICD10_2010'), +('B02.0', 'Zoster encephalitis', 'ICD10_2010'), +('B02.1', 'Zoster meningitis', 'ICD10_2010'), +('B02.2', 'Zoster with other nervous system involvement', 'ICD10_2010'), +('B02.3', 'Zoster ocular disease', 'ICD10_2010'), +('B02.7', 'Disseminated zoster', 'ICD10_2010'), +('B02.8', 'Zoster with other complications', 'ICD10_2010'), +('B02.9', 'Zoster without complication', 'ICD10_2010'), +('B03', 'Smallpox', 'ICD10_2010'), +('B04', 'Monkeypox', 'ICD10_2010'), +('B05', 'Measles', 'ICD10_2010'), +('B05.0', 'Measles complicated by encephalitis', 'ICD10_2010'), +('B05.1', 'Measles complicated by meningitis', 'ICD10_2010'), +('B05.2', 'Measles complicated by pneumonia', 'ICD10_2010'), +('B05.3', 'Measles complicated by otitis media', 'ICD10_2010'), +('B05.4', 'Measles with intestinal complications', 'ICD10_2010'), +('B05.8', 'Measles with other complications', 'ICD10_2010'), +('B05.9', 'Measles without complication', 'ICD10_2010'), +('B06', 'Rubella [German measles]', 'ICD10_2010'), +('B06.0', 'Rubella with neurological complications', 'ICD10_2010'), +('B06.8', 'Rubella with other complications', 'ICD10_2010'), +('B06.9', 'Rubella without complication', 'ICD10_2010'), +('B07', 'Viral warts', 'ICD10_2010'), +('B08', 'Other viral infections characterized by skin and mucous membrane lesions, not elsewhere classified', 'ICD10_2010'), +('B08.0', 'Other orthopoxvirus infections', 'ICD10_2010'), +('B08.1', 'Molluscum contagiosum', 'ICD10_2010'), +('B08.2', 'Exanthema subitum [sixth disease]', 'ICD10_2010'), +('B08.3', 'Erythema infectiosum [fifth disease]', 'ICD10_2010'), +('B08.4', 'Enteroviral vesicular stomatitis with exanthem', 'ICD10_2010'), +('B08.5', 'Enteroviral vesicular pharyngitis', 'ICD10_2010'), +('B08.6', 'Exanthematic febrile disease (MEXICO)', 'ICD10_2010'), +('B08.8', 'Other specified viral infections characterized skin / mucous membrane lesions', 'ICD10_2010'), +('B09', 'Unspecified viral infection characterized skin / mucous membrane lesions', 'ICD10_2010'), +('B15', 'Acute hepatitis A', 'ICD10_2010'), +('B15.0', 'Hepatitis a with hepatic coma', 'ICD10_2010'), +('B15.9', 'Hepatitis a without hepatic coma', 'ICD10_2010'), +('B16', 'Acute hepatitis B', 'ICD10_2010'), +('B16.0', 'Acute hepatitis b with delta-agent (coinfection) with hepatitis coma', 'ICD10_2010'), +('B16.1', 'Acute hepatitis b with delta-agent (coinfection) without hepatitis coma', 'ICD10_2010'), +('B16.2', 'Acute hepatitis b without delta-agent with hepatic coma', 'ICD10_2010'), +('B16.9', 'Acute hepatitis b without delta-agent and without hepatatitis coma', 'ICD10_2010'), +('B17', 'Other acute viral hepatitis', 'ICD10_2010'), +('B17.0', 'Acute delta-(super)infection of hepatitis b carrier', 'ICD10_2010'), +('B17.1', 'Acute hepatitis c', 'ICD10_2010'), +('B17.2', 'Acute hepatitis e', 'ICD10_2010'), +('B17.8', 'Other specified acute viral hepatitis', 'ICD10_2010'), +('B17.9', 'Acute viral hepatitis, unspecified', 'ICD10_2010'), +('B18', 'Chronic viral hepatitis', 'ICD10_2010'), +('B18.0', 'Chronic viral hepatitis b with delta-agent', 'ICD10_2010'), +('B18.1', 'Chronic viral hepatitis b without delta-agent', 'ICD10_2010'), +('B18.2', 'Chronic viral hepatitis c', 'ICD10_2010'), +('B18.8', 'Other chronic viral hepatitis', 'ICD10_2010'), +('B18.9', 'Chronic viral hepatitis, unspecified', 'ICD10_2010'), +('B19', 'Unspecified viral hepatitis', 'ICD10_2010'), +('B19.0', 'Unspecified viral hepatitis hepatic with coma', 'ICD10_2010'), +('B19.9', 'Unspecified viral hepatitis without hepatic coma', 'ICD10_2010'), +('B20', 'Human immunodeficiency virus [HIV] disease resulting in infectious and parasitic diseases', 'ICD10_2010'), +('B20.0', 'HIV disease resulting in mycobacterial infection', 'ICD10_2010'), +('B20.1', 'HIV disease resulting in other bacterial infections', 'ICD10_2010'), +('B20.2', 'HIV disease resulting in cytomegaloviral disease', 'ICD10_2010'), +('B20.3', 'HIV disease resulting in other viral infections', 'ICD10_2010'), +('B20.4', 'HIV disease resulting in candidiasis', 'ICD10_2010'), +('B20.5', 'HIV disease resulting in other mycoses', 'ICD10_2010'), +('B20.6', 'HIV disease resulting in pneumocystis carinii pneumonia', 'ICD10_2010'), +('B20.7', 'HIV disease resulting in multiple infections', 'ICD10_2010'), +('B20.8', 'HIV disease resulting in other infectious and parasitic disease', 'ICD10_2010'), +('B20.9', 'HIV disease resulting in unspecified infectious or parasitic disease', 'ICD10_2010'), +('B21', 'Human immunodeficiency virus [HIV] disease resulting in malignant neoplasms', 'ICD10_2010'), +('B21.0', 'HIV disease resulting in kaposi\'s sarcoma', 'ICD10_2010'), +('B21.1', 'HIV disease resulting in burkitt\'s lymphoma', 'ICD10_2010'), +('B21.2', 'HIV dis resulting oth types of non-hodgkin\'s lymphoma', 'ICD10_2010'), +('B21.3', 'HIV dis result oth mal neo lymphoid haematopoietic rel tis', 'ICD10_2010'), +('B21.7', 'HIV disease resulting in multiple malignant neoplasms', 'ICD10_2010'), +('B21.8', 'HIV disease resulting in other malignant neoplasms', 'ICD10_2010'), +('B21.9', 'HIV disease resulting in unspecified malignant neoplasm', 'ICD10_2010'), +('B22', 'Human immunodeficiency virus [HIV] disease resulting in other specified diseases', 'ICD10_2010'), +('B22.0', 'HIV disease resulting in encephalopathy', 'ICD10_2010'), +('B22.1', 'HIV disease resulting in lymphoid interstitial pneumonitis', 'ICD10_2010'), +('B22.2', 'HIV disease resulting in wasting syndrome', 'ICD10_2010'), +('B22.7', 'HIV dis resulting in multiple diseases classif elsewhere', 'ICD10_2010'), +('B23', 'Human immunodeficiency virus [HIV] disease resulting in other conditions', 'ICD10_2010'), +('B23.0', 'Acute HIV infection syndrome', 'ICD10_2010'), +('B23.1', 'HIV dis result (persistent) generalized lymphadenopathy', 'ICD10_2010'), +('B23.2', 'HIV dis result haematologic / immunologic abnorm nec', 'ICD10_2010'), +('B23.8', 'HIV disease resulting in other specified conditions', 'ICD10_2010'), +('B24', 'Unspecified human immunodeficiency virus [hiv] disease', 'ICD10_2010'), +('B25', 'Cytomegaloviral disease', 'ICD10_2010'), +('B25.0', 'Cytomegaloviral pneumonitis', 'ICD10_2010'), +('B25.1', 'Cytomegaloviral hepatitis', 'ICD10_2010'), +('B25.2', 'Cytomegaloviral pancreatitis', 'ICD10_2010'), +('B25.8', 'Other cytomegaloviral diseases', 'ICD10_2010'), +('B25.9', 'Cytomegaloviral disease, unspecified', 'ICD10_2010'), +('B26', 'Mumps', 'ICD10_2010'), +('B26.0', 'Mumps orchitis', 'ICD10_2010'), +('B26.1', 'Mumps meningitis', 'ICD10_2010'), +('B26.2', 'Mumps encephalitis', 'ICD10_2010'), +('B26.3', 'Mumps pancreatitis', 'ICD10_2010'), +('B26.8', 'Mumps with other complications', 'ICD10_2010'), +('B26.9', 'Mumps without complication', 'ICD10_2010'), +('B27', 'Infectious mononucleosis', 'ICD10_2010'), +('B27.0', 'Gammaherpesviral mononucleosis', 'ICD10_2010'), +('B27.1', 'Cytomegaloviral mononucleosis', 'ICD10_2010'), +('B27.8', 'Other infectious mononucleosis', 'ICD10_2010'), +('B27.9', 'Infectious mononucleosis, unspecified', 'ICD10_2010'), +('B30', 'Viral conjunctivitis', 'ICD10_2010'), +('B30.0', 'Keratoconjunctivitis due to adenovirus', 'ICD10_2010'), +('B30.1', 'Conjunctivitis due to adenovirus', 'ICD10_2010'), +('B30.2', 'Viral pharyngoconjunctivitis', 'ICD10_2010'), +('B30.3', 'Acute epid haemorrhagic conjunctivitis (enteroviral)', 'ICD10_2010'), +('B30.8', 'Other viral conjunctivitis', 'ICD10_2010'), +('B30.9', 'Viral conjunctivitis, unspecified', 'ICD10_2010'), +('B33', 'Other viral diseases, not elsewhere classified', 'ICD10_2010'), +('B33.0', 'Epidemic myalgia', 'ICD10_2010'), +('B33.1', 'Ross river disease', 'ICD10_2010'), +('B33.2', 'Viral carditis', 'ICD10_2010'), +('B33.3', 'Retrovirus infections, not elsewhere classified', 'ICD10_2010'), +('B33.4', 'Hantavirus (cardio-)pulmonary syndrome [HPS] [HCPS]', 'ICD10_2010'), +('B33.8', 'Other specified viral diseases', 'ICD10_2010'), +('B34', 'Viral infection of unspecified site', 'ICD10_2010'), +('B34.0', 'Adenovirus infection, unspecified', 'ICD10_2010'), +('B34.1', 'Enterovirus infection, unspecified', 'ICD10_2010'), +('B34.2', 'Coronavirus infection, unspecified', 'ICD10_2010'), +('B34.3', 'Parvovirus infection, unspecified', 'ICD10_2010'), +('B34.4', 'Papovavirus infection, unspecified', 'ICD10_2010'), +('B34.8', 'Other viral infections of unspecified site', 'ICD10_2010'), +('B34.9', 'Viral infection, unspecified', 'ICD10_2010'), +('B35', 'Dermatophytosis', 'ICD10_2010'), +('B35.0', 'Tinea barbae and tinea capitis', 'ICD10_2010'), +('B35.1', 'Tinea unguium', 'ICD10_2010'), +('B35.2', 'Tinea manuum', 'ICD10_2010'), +('B35.3', 'Tinea pedis', 'ICD10_2010'), +('B35.4', 'Tinea corporis', 'ICD10_2010'), +('B35.5', 'Tinea imbricata', 'ICD10_2010'), +('B35.6', 'Tinea cruris', 'ICD10_2010'), +('B35.8', 'Other dermatophytoses', 'ICD10_2010'), +('B35.9', 'Dermatophytosis, unspecified', 'ICD10_2010'), +('B36', 'Other superficial mycoses', 'ICD10_2010'), +('B36.0', 'Pityriasis versicolor', 'ICD10_2010'), +('B36.1', 'Tinea nigra', 'ICD10_2010'), +('B36.2', 'White piedra', 'ICD10_2010'), +('B36.3', 'Black piedra', 'ICD10_2010'), +('B36.8', 'Other specified superficial mycoses', 'ICD10_2010'), +('B36.9', 'Superficial mycosis, unspecified', 'ICD10_2010'), +('B37', 'Candidiasis', 'ICD10_2010'), +('B37.0', 'Candidal stomatitis', 'ICD10_2010'), +('B37.1', 'Pulmonary candidiasis', 'ICD10_2010'), +('B37.2', 'Candidiasis of skin and nail', 'ICD10_2010'), +('B37.3', 'Candidiasis of vulva and vagina', 'ICD10_2010'), +('B37.4', 'Candidiasis of other urogenital sites', 'ICD10_2010'), +('B37.5', 'Candidal meningitis', 'ICD10_2010'), +('B37.6', 'Candidal endocarditis', 'ICD10_2010'), +('B37.7', 'Candidal septicaemia', 'ICD10_2010'), +('B37.8', 'Candidiasis of other sites', 'ICD10_2010'), +('B37.9', 'Candidiasis, unspecified', 'ICD10_2010'), +('B38', 'Coccidioidomycosis', 'ICD10_2010'), +('B38.0', 'Acute pulmonary coccidioidomycosis', 'ICD10_2010'), +('B38.1', 'Chronic pulmonary coccidioidomycosis', 'ICD10_2010'), +('B38.2', 'Pulmonary coccidioidomycosis, unspecified', 'ICD10_2010'), +('B38.3', 'Cutaneous coccidioidomycosis', 'ICD10_2010'), +('B38.4', 'Coccidioidomycosis meningitis', 'ICD10_2010'), +('B38.7', 'Disseminated coccidioidomycosis', 'ICD10_2010'), +('B38.8', 'Other forms of coccidioidomycosis', 'ICD10_2010'), +('B38.9', 'Coccidioidomycosis, unspecified', 'ICD10_2010'), +('B39', 'Histoplasmosis', 'ICD10_2010'), +('B39.0', 'Acute pulmonary histoplasmosis capsulati', 'ICD10_2010'), +('B39.1', 'Chronic pulmonary histoplasmosis capsulati', 'ICD10_2010'), +('B39.2', 'Pulmonary histoplasmosis capsulati, unspecified', 'ICD10_2010'), +('B39.3', 'Disseminated histoplasmosis capsulati', 'ICD10_2010'), +('B39.4', 'Histoplasmosis capsulati, unspecified', 'ICD10_2010'), +('B39.5', 'Histoplasmosis duboisii', 'ICD10_2010'), +('B39.9', 'Histoplasmosis, unspecified', 'ICD10_2010'), +('B40', 'Blastomycosis', 'ICD10_2010'), +('B40.0', 'Acute pulmonary blastomycosis', 'ICD10_2010'), +('B40.1', 'Chronic pulmonary blastomycosis', 'ICD10_2010'), +('B40.2', 'Pulmonary blastomycosis, unspecified', 'ICD10_2010'), +('B40.3', 'Cutaneous blastomycosis', 'ICD10_2010'), +('B40.7', 'Disseminated blastomycosis', 'ICD10_2010'), +('B40.8', 'Other forms of blastomycosis', 'ICD10_2010'), +('B40.9', 'Blastomycosis, unspecified', 'ICD10_2010'), +('B41', 'Paracoccidioidomycosis', 'ICD10_2010'), +('B41.0', 'Pulmonary paracoccidioidomycosis', 'ICD10_2010'), +('B41.7', 'Disseminated paracoccidioidomycosis', 'ICD10_2010'), +('B41.8', 'Other forms of paracoccidioidomycosis', 'ICD10_2010'), +('B41.9', 'Paracoccidioidomycosis, unspecified', 'ICD10_2010'), +('B42', 'Sporotrichosis', 'ICD10_2010'), +('B42.0', 'Pulmonary sporotrichosis', 'ICD10_2010'), +('B42.1', 'Lymphocutaneous sporotrichosis', 'ICD10_2010'), +('B42.7', 'Disseminated sporotrichosis', 'ICD10_2010'), +('B42.8', 'Other forms of sporotrichosis', 'ICD10_2010'), +('B42.9', 'Sporotrichosis, unspecified', 'ICD10_2010'), +('B43', 'Chromomycosis and phaeomycotic abscess', 'ICD10_2010'), +('B43.0', 'Cutaneous chromomycosis', 'ICD10_2010'), +('B43.1', 'Phaeomycotic brain abscess', 'ICD10_2010'), +('B43.2', 'Subcutaneous phaeomycotic abscess and cyst', 'ICD10_2010'), +('B43.8', 'Other forms of chromomycosis', 'ICD10_2010'), +('B43.9', 'Chromomycosis, unspecified', 'ICD10_2010'), +('B44', 'Aspergillosis', 'ICD10_2010'), +('B44.0', 'Invasive pulmonary aspergillosis', 'ICD10_2010'), +('B44.1', 'Other pulmonary aspergillosis', 'ICD10_2010'), +('B44.2', 'Tonsillar aspergillosis', 'ICD10_2010'), +('B44.7', 'Disseminated aspergillosis', 'ICD10_2010'), +('B44.8', 'Other forms of aspergillosis', 'ICD10_2010'), +('B44.9', 'Aspergillosis, unspecified', 'ICD10_2010'), +('B45', 'Cryptococcosis', 'ICD10_2010'), +('B45.0', 'Pulmonary cryptococcosis', 'ICD10_2010'), +('B45.1', 'Cerebral cryptococcosis', 'ICD10_2010'), +('B45.2', 'Cutaneous cryptococcosis', 'ICD10_2010'), +('B45.3', 'Osseous cryptococcosis', 'ICD10_2010'), +('B45.7', 'Disseminated cryptococcosis', 'ICD10_2010'), +('B45.8', 'Other forms of cryptococcosis', 'ICD10_2010'), +('B45.9', 'Cryptococcosis, unspecified', 'ICD10_2010'), +('B46', 'Zygomycosis', 'ICD10_2010'), +('B46.0', 'Pulmonary mucormycosis', 'ICD10_2010'), +('B46.1', 'Rhinocerebral mucormycosis', 'ICD10_2010'), +('B46.2', 'Gastrointestinal mucormycosis', 'ICD10_2010'), +('B46.3', 'Cutaneous mucormycosis', 'ICD10_2010'), +('B46.4', 'Disseminated mucormycosis', 'ICD10_2010'), +('B46.5', 'Mucormycosis, unspecified', 'ICD10_2010'), +('B46.8', 'Other zygomycoses', 'ICD10_2010'), +('B46.9', 'Zygomycosis, unspecified', 'ICD10_2010'), +('B47', 'Mycetoma', 'ICD10_2010'), +('B47.0', 'Eumycetoma', 'ICD10_2010'), +('B47.1', 'Actinomycetoma', 'ICD10_2010'), +('B47.9', 'Mycetoma, unspecified', 'ICD10_2010'), +('B48', 'Other mycoses, not elsewhere classified', 'ICD10_2010'), +('B48.0', 'Lobomycosis', 'ICD10_2010'), +('B48.1', 'Rhinosporidiosis', 'ICD10_2010'), +('B48.2', 'Allescheriasis', 'ICD10_2010'), +('B48.3', 'Geotrichosis', 'ICD10_2010'), +('B48.4', 'Penicillosis', 'ICD10_2010'), +('B48.7', 'Opportunistic mycoses', 'ICD10_2010'), +('B48.8', 'Other specified mycoses', 'ICD10_2010'), +('B49', 'Unspecified mycosis', 'ICD10_2010'), +('B50', 'Plasmodium falciparum malaria', 'ICD10_2010'), +('B50.0', 'Plasmodium falciparum malaria with cerebral complications', 'ICD10_2010'), +('B50.8', 'Other severe and complicated plasmodium falciparum malaria', 'ICD10_2010'), +('B50.9', 'Plasmodium falciparum malaria, unspecified', 'ICD10_2010'), +('B51', 'Plasmodium vivax malaria', 'ICD10_2010'), +('B51.0', 'Plasmodium vivax malaria with rupture of spleen', 'ICD10_2010'), +('B51.8', 'Plasmodium vivax malaria with other complications', 'ICD10_2010'), +('B51.9', 'Plasmodium vivax malaria without complication', 'ICD10_2010'), +('B52', 'Plasmodium malariae malaria', 'ICD10_2010'), +('B52.0', 'Plasmodium malariae malaria with nephropathy', 'ICD10_2010'), +('B52.8', 'Plasmodium malariae malaria with other complications', 'ICD10_2010'), +('B52.9', 'Plasmodium malariae malaria without complication', 'ICD10_2010'), +('B53', 'Other parasitologically confirmed malaria', 'ICD10_2010'), +('B53.0', 'Plasmodium ovale malaria', 'ICD10_2010'), +('B53.1', 'Malaria due to simian plasmodia', 'ICD10_2010'), +('B53.8', 'Other parasitologically confirmed malaria nec', 'ICD10_2010'), +('B54', 'Unspecified malaria', 'ICD10_2010'), +('B55', 'Leishmaniasis', 'ICD10_2010'), +('B55.0', 'Visceral leishmaniasis', 'ICD10_2010'), +('B55.1', 'Cutaneous leishmaniasis', 'ICD10_2010'), +('B55.2', 'Mucocutaneous leishmaniasis', 'ICD10_2010'), +('B55.9', 'Leishmaniasis, unspecified', 'ICD10_2010'), +('B56', 'African trypanosomiasis', 'ICD10_2010'), +('B56.0', 'Gambiense trypanosomiasis', 'ICD10_2010'), +('B56.1', 'Rhodesiense trypanosomiasis', 'ICD10_2010'), +('B56.9', 'African trypanosomiasis, unspecified', 'ICD10_2010'), +('B57', 'Chagas disease', 'ICD10_2010'), +('B57.0', 'Acute chagas\' disease with heart involvement', 'ICD10_2010'), +('B57.1', 'Acute chagas\' disease without heart involvement', 'ICD10_2010'), +('B57.2', 'Chagas\' disease (chronic) with heart involvement', 'ICD10_2010'), +('B57.3', 'Chagas\' disease (chronic) with digestive system involvement', 'ICD10_2010'), +('B57.4', 'Chagas\' disease (chronic) with nervous system involvement', 'ICD10_2010'), +('B57.5', 'Chagas\' disease (chronic) with other organ involvement', 'ICD10_2010'), +('B58', 'Toxoplasmosis', 'ICD10_2010'), +('B58.0', 'Toxoplasma oculopathy', 'ICD10_2010'), +('B58.1', 'Toxoplasma hepatitis', 'ICD10_2010'), +('B58.2', 'Toxoplasma meningoencephalitis', 'ICD10_2010'), +('B58.3', 'Pulmonary toxoplasmosis', 'ICD10_2010'), +('B58.8', 'Toxoplasmosis with other organ involvement', 'ICD10_2010'), +('B58.9', 'Toxoplasmosis, unspecified', 'ICD10_2010'), +('B59', 'Pneumocystosis', 'ICD10_2010'), +('B60', 'Other protozoal diseases, not elsewhere classified', 'ICD10_2010'), +('B60.0', 'Babesiosis', 'ICD10_2010'), +('B60.1', 'Acanthamoebiasis', 'ICD10_2010'), +('B60.2', 'Naegleriasis', 'ICD10_2010'), +('B60.8', 'Other specified protozoal diseases', 'ICD10_2010'), +('B64', 'Unspecified protozoal disease', 'ICD10_2010'), +('B65', 'Schistosomiasis [bilharziasis]', 'ICD10_2010'), +('B65.0', 'Schistosom due schis haematobium [urin schistosom]', 'ICD10_2010'), +('B65.1', 'Schistosom due schis mansoni [intest schistosom]', 'ICD10_2010'), +('B65.2', 'Schistosomiasis due to schistosoma japonicum', 'ICD10_2010'), +('B65.3', 'Cercarial dermatitis', 'ICD10_2010'), +('B65.8', 'Other schistosomiases', 'ICD10_2010'), +('B65.9', 'Schistosomiasis, unspecified', 'ICD10_2010'), +('B66', 'Other fluke infections', 'ICD10_2010'), +('B66.0', 'Opisthorchiasis', 'ICD10_2010'), +('B66.1', 'Clonorchiasis', 'ICD10_2010'), +('B66.2', 'Dicrocoeliasis', 'ICD10_2010'), +('B66.3', 'Fascioliasis', 'ICD10_2010'), +('B66.4', 'Paragonimiasis', 'ICD10_2010'), +('B66.5', 'Fasciolopsiasis', 'ICD10_2010'), +('B66.8', 'Other specified fluke infections', 'ICD10_2010'), +('B66.9', 'Fluke infection, unspecified', 'ICD10_2010'), +('B67', 'Echinococcosis', 'ICD10_2010'), +('B67.0', 'Echinococcus granulosus infection of liver', 'ICD10_2010'), +('B67.1', 'Echinococcus granulosus infection of lung', 'ICD10_2010'), +('B67.2', 'Echinococcus granulosus infection of bone', 'ICD10_2010'), +('B67.3', 'Echinococcus granulosus infection, other and multiple sites', 'ICD10_2010'), +('B67.4', 'Echinococcus granulosus infection, unspecified', 'ICD10_2010'), +('B67.5', 'Echinococcus multilocularis infection of liver', 'ICD10_2010'), +('B67.6', 'Echinococcus multilocularis infection oth / multiple sites', 'ICD10_2010'), +('B67.7', 'Echinococcus multilocularis infection, unspecified', 'ICD10_2010'), +('B67.8', 'Echinococcosis, unspecified, of liver', 'ICD10_2010'), +('B67.9', 'Echinococcosis, other and unspecified', 'ICD10_2010'), +('B68', 'Taeniasis', 'ICD10_2010'), +('B68.0', 'Taenia solium taeniasis', 'ICD10_2010'), +('B68.1', 'Taenia saginata taeniasis', 'ICD10_2010'), +('B68.9', 'Taeniasis, unspecified', 'ICD10_2010'), +('B69', 'Cysticercosis', 'ICD10_2010'), +('B69.0', 'Cysticercosis of central nervous system', 'ICD10_2010'), +('B69.1', 'Cysticercosis of eye', 'ICD10_2010'), +('B69.8', 'Cysticercosis of other sites', 'ICD10_2010'), +('B69.9', 'Cysticercosis, unspecified', 'ICD10_2010'), +('B70', 'Diphyllobothriasis and sparganosis', 'ICD10_2010'), +('B70.0', 'Diphyllobothriasis', 'ICD10_2010'), +('B70.1', 'Sparganosis', 'ICD10_2010'), +('B71', 'Other cestode infections', 'ICD10_2010'), +('B71.0', 'Hymenolepiasis', 'ICD10_2010'), +('B71.1', 'Dipylidiasis', 'ICD10_2010'), +('B71.8', 'Other specified cestode infections', 'ICD10_2010'), +('B71.9', 'Cestode infection, unspecified', 'ICD10_2010'), +('B72', 'Dracunculiasis', 'ICD10_2010'), +('B73', 'Onchocerciasis', 'ICD10_2010'), +('B74', 'Filariasis', 'ICD10_2010'), +('B74.0', 'Filariasis due to wuchereria bancrofti', 'ICD10_2010'), +('B74.1', 'Filariasis due to brugia malayi', 'ICD10_2010'), +('B74.2', 'Filariasis due to brugia timori', 'ICD10_2010'), +('B74.3', 'Loiasis', 'ICD10_2010'), +('B74.4', 'Mansonelliasis', 'ICD10_2010'), +('B74.8', 'Other filariases', 'ICD10_2010'), +('B74.9', 'Filariasis, unspecified', 'ICD10_2010'), +('B75', 'Trichinellosis', 'ICD10_2010'), +('B76', 'Hookworm diseases', 'ICD10_2010'), +('B76.0', 'Ancylostomiasis', 'ICD10_2010'), +('B76.1', 'Necatoriasis', 'ICD10_2010'), +('B76.8', 'Other hookworm diseases', 'ICD10_2010'), +('B76.9', 'Hookworm disease, unspecified', 'ICD10_2010'), +('B77', 'Ascariasis', 'ICD10_2010'), +('B77.0', 'Ascariasis with intestinal complications', 'ICD10_2010'), +('B77.8', 'Ascariasis with other complications', 'ICD10_2010'), +('B77.9', 'Ascariasis, unspecified', 'ICD10_2010'), +('B78', 'Strongyloidiasis', 'ICD10_2010'), +('B78.0', 'Intestinal strongyloidiasis', 'ICD10_2010'), +('B78.1', 'Cutaneous strongyloidiasis', 'ICD10_2010'), +('B78.7', 'Disseminated strongyloidiasis', 'ICD10_2010'), +('B78.9', 'Strongyloidiasis, unspecified', 'ICD10_2010'), +('B79', 'Trichuriasis', 'ICD10_2010'), +('B80', 'Enterobiasis', 'ICD10_2010'), +('B81', 'Other intestinal helminthiases, not elsewhere classified', 'ICD10_2010'), +('B81.0', 'Anisakiasis', 'ICD10_2010'), +('B81.1', 'Intestinal capillariasis', 'ICD10_2010'), +('B81.2', 'Trichostrongyliasis', 'ICD10_2010'), +('B81.3', 'Intestinal angiostrongyliasis', 'ICD10_2010'), +('B81.4', 'Mixed intestinal helminthiases', 'ICD10_2010'), +('B81.8', 'Other specified intestinal helminthiases', 'ICD10_2010'), +('B82', 'Unspecified intestinal parasitism', 'ICD10_2010'), +('B82.0', 'Intestinal helminthiasis, unspecified', 'ICD10_2010'), +('B82.9', 'Intestinal parasitism, unspecified', 'ICD10_2010'), +('B83', 'Other helminthiases', 'ICD10_2010'), +('B83.0', 'Visceral larva migrans', 'ICD10_2010'), +('B83.1', 'Gnathostomiasis', 'ICD10_2010'), +('B83.2', 'Angiostrongyliasis due to parastrongylus cantonensis', 'ICD10_2010'), +('B83.3', 'Syngamiasis', 'ICD10_2010'), +('B83.4', 'Internal hirudiniasis', 'ICD10_2010'), +('B83.8', 'Other specified helminthiases', 'ICD10_2010'), +('B83.9', 'Helminthiasis, unspecified', 'ICD10_2010'), +('B85', 'Pediculosis and phthiriasis', 'ICD10_2010'), +('B85.0', 'Pediculosis due to pediculus humanus capitis', 'ICD10_2010'), +('B85.1', 'Pediculosis due to pediculus humanus corporis', 'ICD10_2010'), +('B85.2', 'Pediculosis, unspecified', 'ICD10_2010'), +('B85.3', 'Phthiriasis', 'ICD10_2010'), +('B85.4', 'Mixed pediculosis and phthiriasis', 'ICD10_2010'), +('B86', 'Scabies', 'ICD10_2010'), +('B87', 'Myiasis', 'ICD10_2010'), +('B87.0', 'Cutaneous myiasis', 'ICD10_2010'), +('B87.1', 'Wound myiasis', 'ICD10_2010'), +('B87.2', 'Ocular myiasis', 'ICD10_2010'), +('B87.3', 'Nasopharyngeal myiasis', 'ICD10_2010'), +('B87.4', 'Aural myiasis', 'ICD10_2010'), +('B87.8', 'Myiasis of other sites', 'ICD10_2010'), +('B87.9', 'Myiasis, unspecified', 'ICD10_2010'), +('B88', 'Other infestations', 'ICD10_2010'), +('B88.0', 'Other acariasis', 'ICD10_2010'), +('B88.1', 'Tungiasis [sandflea infestation]', 'ICD10_2010'), +('B88.2', 'Other arthropod infestations', 'ICD10_2010'), +('B88.3', 'External hirudiniasis', 'ICD10_2010'), +('B88.8', 'Other specified infestations', 'ICD10_2010'), +('B88.9', 'Infestation, unspecified', 'ICD10_2010'), +('B89', 'Unspecified parasitic disease', 'ICD10_2010'), +('B90', 'Sequelae of tuberculosis', 'ICD10_2010'), +('B90.0', 'Sequelae of central nervous system tuberculosis', 'ICD10_2010'), +('B90.1', 'Sequelae of genitourinary tuberculosis', 'ICD10_2010'); +INSERT INTO `icd10` (`ID_ICD10`, `Diagnosa`, `Versi_ICD10`) VALUES +('B90.2', 'Sequelae of tuberculosis of bones and joints', 'ICD10_2010'), +('B90.8', 'Sequelae of tuberculosis of other organs', 'ICD10_2010'), +('B90.9', 'Sequelae of respiratory and unspecified tuberculosis', 'ICD10_2010'), +('B91', 'Sequelae of poliomyelitis', 'ICD10_2010'), +('B92', 'Sequelae of leprosy', 'ICD10_2010'), +('B94', 'Sequelae of other and unspecified infectious and parasitic diseases', 'ICD10_2010'), +('B94.0', 'Sequelae of trachoma', 'ICD10_2010'), +('B94.1', 'Sequelae of viral encephalitis', 'ICD10_2010'), +('B94.2', 'Sequelae of viral hepatitis', 'ICD10_2010'), +('B94.8', 'Sequelae of other specified infectious and parasitic diseases', 'ICD10_2010'), +('B94.9', 'Sequelae of unspecified infectious or parasitic disease', 'ICD10_2010'), +('B95', 'Streptococcus and staphylococcus as the cause of diseases classified to other chapters', 'ICD10_2010'), +('B95.0', 'Streptococcus group A as cause of diseases classified to other chapters', 'ICD10_2010'), +('B95.1', 'Streptococcus group B as cause of diseases classified to other chapters', 'ICD10_2010'), +('B95.2', 'Streptococcus group D as cause of diseases classified to other chapters', 'ICD10_2010'), +('B95.3', 'Streptococcus pneumoniae as cause of diseases classified other chapters', 'ICD10_2010'), +('B95.4', 'Other streptococcus as cause of diseases classified to other chapters', 'ICD10_2010'), +('B95.5', 'Unspecified streptococcus as cause of diseases classified to other chapters', 'ICD10_2010'), +('B95.6', 'Staphylococcus aureus as cause of disease classified to other chapters', 'ICD10_2010'), +('B95.7', 'Other staphylococcus as cause of diseases classified to other chapters', 'ICD10_2010'), +('B95.8', 'Unspecified staphylococcus as cause of diseases classified to other chapters', 'ICD10_2010'), +('B96', 'Other specified bacterial agents as the cause of diseases classified to other chapters', 'ICD10_2010'), +('B96.0', 'Mycoplasma pneumoniae as cause diseases classified to other chapters', 'ICD10_2010'), +('B96.1', 'Klebsiella pneumoniae as cause diseases classified to other chapters', 'ICD10_2010'), +('B96.2', 'Escherichia coli as cause diseases classified to other chapters', 'ICD10_2010'), +('B96.3', 'Haemophilus influenzae as cause diseases classified to other chapters', 'ICD10_2010'), +('B96.4', 'Proteus (mirabilis)(morganii) as cause diseases classified to other chapters', 'ICD10_2010'), +('B96.5', 'P.(aerugin)(mallei)(pseudomallei)as cause diseases classified to other chapters', 'ICD10_2010'), +('B96.6', 'Bacillus fragilis as cause diseases classified to other chapters', 'ICD10_2010'), +('B96.7', 'Clostridium perfringens as cause diseases classified to other chapters', 'ICD10_2010'), +('B96.8', 'Other spec bact agents as cause diseases classified to other chapters', 'ICD10_2010'), +('B97', 'Viral agents as the cause of diseases classified to other chapters', 'ICD10_2010'), +('B97.0', 'Adenovirus as the cause of diseases classified to other chapters', 'ICD10_2010'), +('B97.1', 'Enterovirus as the cause of diseases classified to other chapters', 'ICD10_2010'), +('B97.2', 'Coronavirus as the cause of diseases classified to other chapters', 'ICD10_2010'), +('B97.3', 'Retrovirus as the cause of diseases classified to other chapters', 'ICD10_2010'), +('B97.4', 'Resp syncytial virusas the cause of diseases classified to other chapters', 'ICD10_2010'), +('B97.5', 'Reovirus as the cause of diseases classified to other chapters', 'ICD10_2010'), +('B97.6', 'Parvovirus as the cause of diseases classified to other chapters', 'ICD10_2010'), +('B97.7', 'Papillomavirus as the cause of diseases classified to other chapters', 'ICD10_2010'), +('B97.8', 'Oth viral agents as the cause of diseases classified to other chapters', 'ICD10_2010'), +('B98', 'Other specified infectious agents as the cause of diseases classified to other chapters', 'ICD10_2010'), +('B98.0', 'Helicobacter pylori [H.pylori] as the cause of diseases classified to other chapters', 'ICD10_2010'), +('B98.1', 'Vibrio vulnificus as the cause of diseases classified to other chapters', 'ICD10_2010'), +('B99', 'Other and unspecified infectious diseases', 'ICD10_2010'), +('C00', 'Malignant neoplasm of lip', 'ICD10_2010'), +('C00.0', 'Malignant neoplasm, external upper lip', 'ICD10_2010'), +('C00.1', 'Malignant neoplasm, external lower lip', 'ICD10_2010'), +('C00.2', 'Malignant neoplasm, external lip, unspecified', 'ICD10_2010'), +('C00.3', 'Malignant neoplasm, upper lip, inner aspect', 'ICD10_2010'), +('C00.4', 'Malignant neoplasm, lower lip, inner aspect', 'ICD10_2010'), +('C00.5', 'Malignant neoplasm, lip, unspecified, inner aspect', 'ICD10_2010'), +('C00.6', 'Malignant neoplasm, commissure of lip', 'ICD10_2010'), +('C00.8', 'Malignant neoplasm, overlapping lesion of lip', 'ICD10_2010'), +('C00.9', 'Malignant neoplasm, lip, unspecified', 'ICD10_2010'), +('C01', 'Malignant neoplasm of base of tongue', 'ICD10_2010'), +('C02', 'Malignant neoplasm of other and unspecified parts of tongue', 'ICD10_2010'), +('C02.0', 'Malignant neoplasm, dorsal surface of tongue', 'ICD10_2010'), +('C02.1', 'Malignant neoplasm, border of tongue', 'ICD10_2010'), +('C02.2', 'Malignant neoplasm, ventral surface of tongue', 'ICD10_2010'), +('C02.3', 'Malignant neoplasm, anterior two-thirds of tongue, part unspecified', 'ICD10_2010'), +('C02.4', 'Malignant neoplasm, lingual tonsil', 'ICD10_2010'), +('C02.8', 'Malignant neoplasm, overlapping lesion of tongue', 'ICD10_2010'), +('C02.9', 'Malignant neoplasm, tongue, unspecified', 'ICD10_2010'), +('C03', 'Malignant neoplasm of gum', 'ICD10_2010'), +('C03.0', 'Malignant neoplasm, upper gum', 'ICD10_2010'), +('C03.1', 'Malignant neoplasm, lower gum', 'ICD10_2010'), +('C03.9', 'Malignant neoplasm, gum, unspecified', 'ICD10_2010'), +('C04', 'Malignant neoplasm of floor of mouth', 'ICD10_2010'), +('C04.0', 'Malignant neoplasm, anterior floor of mouth', 'ICD10_2010'), +('C04.1', 'Malignant neoplasm, lateral floor of mouth', 'ICD10_2010'), +('C04.8', 'Malignant neoplasm, overlapping lesion of floor of mouth', 'ICD10_2010'), +('C04.9', 'Malignant neoplasm, floor of mouth, unspecified', 'ICD10_2010'), +('C05', 'Malignant neoplasm of palate', 'ICD10_2010'), +('C05.0', 'Malignant neoplasm, hard palate', 'ICD10_2010'), +('C05.1', 'Malignant neoplasm, soft palate', 'ICD10_2010'), +('C05.2', 'Malignant neoplasm, uvula', 'ICD10_2010'), +('C05.8', 'Malignant neoplasm, overlapping lesion of palate', 'ICD10_2010'), +('C05.9', 'Malignant neoplasm, palate, unspecified', 'ICD10_2010'), +('C06', 'Malignant neoplasm of other and unspecified parts of mouth', 'ICD10_2010'), +('C06.0', 'Malignant neoplasm, cheek mucosa', 'ICD10_2010'), +('C06.1', 'Malignant neoplasm, vestibule of mouth', 'ICD10_2010'), +('C06.2', 'Malignant neoplasm, retromolar area', 'ICD10_2010'), +('C06.8', 'Malignant neoplasm, overlapping lesion of other and unspecified parts of mouth', 'ICD10_2010'), +('C06.9', 'Malignant neoplasm, mouth, unspecified', 'ICD10_2010'), +('C07', 'Malignant neoplasm of parotid gland', 'ICD10_2010'), +('C08', 'Malignant neoplasm of other and unspecified major salivary glands', 'ICD10_2010'), +('C08.0', 'Malignant neoplasm, submandibular gland', 'ICD10_2010'), +('C08.1', 'Malignant neoplasm, sublingual gland', 'ICD10_2010'), +('C08.8', 'Malignant neoplasm, overlapping lesion of major salivary glands', 'ICD10_2010'), +('C08.9', 'Malignant neoplasm, major salivary gland, unspecified', 'ICD10_2010'), +('C09', 'Malignant neoplasm of tonsil', 'ICD10_2010'), +('C09.0', 'Malignant neoplasm, tonsillar fossa', 'ICD10_2010'), +('C09.1', 'Malignant neoplasm, tonsillar pillar (anterior)(posterior)', 'ICD10_2010'), +('C09.8', 'Malignant neoplasm, overlapping lesion of tonsil', 'ICD10_2010'), +('C09.9', 'Malignant neoplasm, tonsil, unspecified', 'ICD10_2010'), +('C10', 'Malignant neoplasm of oropharynx', 'ICD10_2010'), +('C10.0', 'Malignant neoplasm, vallecula', 'ICD10_2010'), +('C10.1', 'Malignant neoplasm, anterior surface of epiglottis', 'ICD10_2010'), +('C10.2', 'Malignant neoplasm, lateral wall of oropharynx', 'ICD10_2010'), +('C10.3', 'Malignant neoplasm, posterior wall of oropharynx', 'ICD10_2010'), +('C10.4', 'Malignant neoplasm, branchial cleft', 'ICD10_2010'), +('C10.8', 'Malignant neoplasm, overlapping lesion of oropharynx', 'ICD10_2010'), +('C10.9', 'Malignant neoplasm, oropharynx, unspecified', 'ICD10_2010'), +('C11', 'Malignant neoplasm of nasopharynx', 'ICD10_2010'), +('C11.0', 'Malignant neoplasm, superior wall of nasopharynx', 'ICD10_2010'), +('C11.1', 'Malignant neoplasm, posterior wall of nasopharynx', 'ICD10_2010'), +('C11.2', 'Malignant neoplasm, lateral wall of nasopharynx', 'ICD10_2010'), +('C11.3', 'Malignant neoplasm, anterior wall of nasopharynx', 'ICD10_2010'), +('C11.8', 'Malignant neoplasm, overlapping lesion of nasopharynx', 'ICD10_2010'), +('C11.9', 'Malignant neoplasm, nasopharynx, unspecified', 'ICD10_2010'), +('C12', 'Malignant neoplasm of pyriform sinus', 'ICD10_2010'), +('C13', 'Malignant neoplasm of hypopharynx', 'ICD10_2010'), +('C13.0', 'Malignant neoplasm, postcricoid region', 'ICD10_2010'), +('C13.1', 'Malignant neoplasm, aryepiglottic fold, hypopharyngeal aspect', 'ICD10_2010'), +('C13.2', 'Malignant neoplasm, posterior wall of hypopharynx', 'ICD10_2010'), +('C13.8', 'Malignant neoplasm, overlapping lesion of hypopharynx', 'ICD10_2010'), +('C13.9', 'Malignant neoplasm, hypopharynx, unspecified', 'ICD10_2010'), +('C14', 'Malignant neoplasm of other and ill-defined sites in the lip, oral cavity and pharynx', 'ICD10_2010'), +('C14.0', 'Malignant neoplasm, pharynx, unspecified', 'ICD10_2010'), +('C14.1', 'Malignant neoplasm of laryngopharynx', 'ICD10_2010'), +('C14.2', 'Malignant neoplasm, waldeyer\'s ring', 'ICD10_2010'), +('C14.8', 'Malignant neoplasm, overlapping lesion of lip, oral cavity and pharynx', 'ICD10_2010'), +('C15', 'Malignant neoplasm of oesophagus', 'ICD10_2010'), +('C15.0', 'Malignant neoplasm, cervical part of oesophagus', 'ICD10_2010'), +('C15.1', 'Malignant neoplasm, thoracic part of oesophagus', 'ICD10_2010'), +('C15.2', 'Malignant neoplasm, abdominal part of oesophagus', 'ICD10_2010'), +('C15.3', 'Malignant neoplasm, upper third of oesophagus', 'ICD10_2010'), +('C15.4', 'Malignant neoplasm, middle third of oesophagus', 'ICD10_2010'), +('C15.5', 'Malignant neoplasm, lower third of oesophagus', 'ICD10_2010'), +('C15.8', 'Malignant neoplasm, overlapping lesion of oesophagus', 'ICD10_2010'), +('C15.9', 'Malignant neoplasm, oesophagus, unspecified', 'ICD10_2010'), +('C16', 'Malignant neoplasm of stomach', 'ICD10_2010'), +('C16.0', 'Malignant neoplasm, cardia', 'ICD10_2010'), +('C16.1', 'Malignant neoplasm, fundus of stomach', 'ICD10_2010'), +('C16.2', 'Malignant neoplasm, body of stomach', 'ICD10_2010'), +('C16.3', 'Malignant neoplasm, pyloric antrum', 'ICD10_2010'), +('C16.4', 'Malignant neoplasm, pylorus', 'ICD10_2010'), +('C16.5', 'Malignant neoplasm, lesser curvature of stomach, unspecified', 'ICD10_2010'), +('C16.6', 'Malignant neoplasm, greater curvature of stomach, unspecified', 'ICD10_2010'), +('C16.8', 'Malignant neoplasm, overlapping lesion of stomach', 'ICD10_2010'), +('C16.9', 'Malignant neoplasm, stomach, unspecified', 'ICD10_2010'), +('C17', 'Malignant neoplasm of small intestine', 'ICD10_2010'), +('C17.0', 'Malignant neoplasm, duodenum', 'ICD10_2010'), +('C17.1', 'Malignant neoplasm, jejunum', 'ICD10_2010'), +('C17.2', 'Malignant neoplasm, ileum', 'ICD10_2010'), +('C17.3', 'Malignant neoplasm, meckel\'s diverticulum', 'ICD10_2010'), +('C17.8', 'Malignant neoplasm, overlapping lesion of small intestine', 'ICD10_2010'), +('C17.9', 'Malignant neoplasm, small intestine, unspecified', 'ICD10_2010'), +('C18', 'Malignant neoplasm of colon', 'ICD10_2010'), +('C18.0', 'Malignant neoplasm, caecum', 'ICD10_2010'), +('C18.1', 'Malignant neoplasm, appendix', 'ICD10_2010'), +('C18.2', 'Malignant neoplasm, ascending colon', 'ICD10_2010'), +('C18.3', 'Malignant neoplasm, hepatic flexure', 'ICD10_2010'), +('C18.4', 'Malignant neoplasm, transverse colon', 'ICD10_2010'), +('C18.5', 'Malignant neoplasm, splenic flexure', 'ICD10_2010'), +('C18.6', 'Malignant neoplasm, descending colon', 'ICD10_2010'), +('C18.7', 'Malignant neoplasm, sigmoid colon', 'ICD10_2010'), +('C18.8', 'Malignant neoplasm, overlapping lesion of colon', 'ICD10_2010'), +('C18.9', 'Malignant neoplasm, colon, unspecified', 'ICD10_2010'), +('C19', 'Malignant neoplasm of rectosigmoid junction', 'ICD10_2010'), +('C20', 'Malignant neoplasm of rectum', 'ICD10_2010'), +('C21', 'Malignant neoplasm of anus and anal canal', 'ICD10_2010'), +('C21.0', 'Malignant neoplasm, anus, unspecified', 'ICD10_2010'), +('C21.1', 'Malignant neoplasm, anal canal', 'ICD10_2010'), +('C21.2', 'Malignant neoplasm, cloacogenic zone', 'ICD10_2010'), +('C21.8', 'Malignant neoplasm, overlapping lesion of rectum, anus and anal canal', 'ICD10_2010'), +('C22', 'Malignant neoplasm of liver and intrahepatic bile ducts', 'ICD10_2010'), +('C22.0', 'Malignant neoplasm, liver cell carcinoma', 'ICD10_2010'), +('C22.1', 'Malignant neoplasm, intrahepatic bile duct carcinoma', 'ICD10_2010'), +('C22.2', 'Malignant neoplasm, hepatoblastoma', 'ICD10_2010'), +('C22.3', 'Malignant neoplasm, angiosarcoma of liver', 'ICD10_2010'), +('C22.4', 'Malignant neoplasm, other sarcomas of liver', 'ICD10_2010'), +('C22.7', 'Malignant neoplasm, other specified carcinomas of liver', 'ICD10_2010'), +('C22.9', 'Malignant neoplasm, liver, unspecified', 'ICD10_2010'), +('C23', 'Malignant neoplasm of gallbladder', 'ICD10_2010'), +('C24', 'Malignant neoplasm of other and unspecified parts of biliary tract', 'ICD10_2010'), +('C24.0', 'Malignant neoplasm, extrahepatic bile duct', 'ICD10_2010'), +('C24.1', 'Malignant neoplasm, ampulla of vater', 'ICD10_2010'), +('C24.8', 'Malignant neoplasm, overlapping lesion of biliary tract', 'ICD10_2010'), +('C24.9', 'Malignant neoplasm, biliary tract, unspecified', 'ICD10_2010'), +('C25', 'Malignant neoplasm of pancreas', 'ICD10_2010'), +('C25.0', 'Malignant neoplasm, head of pancreas', 'ICD10_2010'), +('C25.1', 'Malignant neoplasm, body of pancreas', 'ICD10_2010'), +('C25.2', 'Malignant neoplasm, tail of pancreas', 'ICD10_2010'), +('C25.3', 'Malignant neoplasm, pancreatic duct', 'ICD10_2010'), +('C25.4', 'Malignant neoplasm, endocrine pancreas', 'ICD10_2010'), +('C25.7', 'Malignant neoplasm, other parts of pancreas', 'ICD10_2010'), +('C25.8', 'Malignant neoplasm, overlapping lesion of pancreas', 'ICD10_2010'), +('C25.9', 'Malignant neoplasm, pancreas, unspecified', 'ICD10_2010'), +('C26', 'Malignant neoplasm of other and ill-defined digestive organs', 'ICD10_2010'), +('C26.0', 'Malignant neoplasm, intestinal tract, part unspecified', 'ICD10_2010'), +('C26.1', 'Malignant neoplasm, spleen', 'ICD10_2010'), +('C26.8', 'Malignant neoplasm, overlapping lesion of digestive system', 'ICD10_2010'), +('C26.9', 'Malignant neoplasm, ill-defined sites within the digestive system', 'ICD10_2010'), +('C30', 'Malignant neoplasm of nasal cavity and middle ear', 'ICD10_2010'), +('C30.0', 'Malignant neoplasm, nasal cavity', 'ICD10_2010'), +('C30.1', 'Malignant neoplasm, middle ear', 'ICD10_2010'), +('C31', 'Malignant neoplasm of accessory sinuses', 'ICD10_2010'), +('C31.0', 'Malignant neoplasm, maxillary sinus', 'ICD10_2010'), +('C31.1', 'Malignant neoplasm, ethmoidal sinus', 'ICD10_2010'), +('C31.2', 'Malignant neoplasm, frontal sinus', 'ICD10_2010'), +('C31.3', 'Malignant neoplasm, sphenoidal sinus', 'ICD10_2010'), +('C31.8', 'Malignant neoplasm, overlapping lesion of accessory sinuses', 'ICD10_2010'), +('C31.9', 'Malignant neoplasm, accessory sinus, unspecified', 'ICD10_2010'), +('C32', 'Malignant neoplasm of larynx', 'ICD10_2010'), +('C32.0', 'Malignant neoplasm, glottis', 'ICD10_2010'), +('C32.1', 'Malignant neoplasm, supraglottis', 'ICD10_2010'), +('C32.2', 'Malignant neoplasm, subglottis', 'ICD10_2010'), +('C32.3', 'Malignant neoplasm, laryngeal cartilage', 'ICD10_2010'), +('C32.8', 'Malignant neoplasm, overlapping lesion of larynx', 'ICD10_2010'), +('C32.9', 'Malignant neoplasm, larynx, unspecified', 'ICD10_2010'), +('C33', 'Malignant neoplasm of trachea', 'ICD10_2010'), +('C34', 'Malignant neoplasm of bronchus and lung', 'ICD10_2010'), +('C34.0', 'Malignant neoplasm, main bronchus', 'ICD10_2010'), +('C34.1', 'Malignant neoplasm, upper lobe, bronchus or lung', 'ICD10_2010'), +('C34.2', 'Malignant neoplasm, middle lobe, bronchus or lung', 'ICD10_2010'), +('C34.3', 'Malignant neoplasm, lower lobe, bronchus or lung', 'ICD10_2010'), +('C34.8', 'Malignant neoplasm, overlapping lesion of bronchus and lung', 'ICD10_2010'), +('C34.9', 'Malignant neoplasm, bronchus or lung, unspecified', 'ICD10_2010'), +('C37', 'Malignant neoplasm of thymus', 'ICD10_2010'), +('C38', 'Malignant neoplasm of heart, mediastinum and pleura', 'ICD10_2010'), +('C38.0', 'Malignant neoplasm, heart', 'ICD10_2010'), +('C38.1', 'Malignant neoplasm, anterior mediastinum', 'ICD10_2010'), +('C38.2', 'Malignant neoplasm, posterior mediastinum', 'ICD10_2010'), +('C38.3', 'Malignant neoplasm, mediastinum, part unspecified', 'ICD10_2010'), +('C38.4', 'Malignant neoplasm, pleura', 'ICD10_2010'), +('C38.8', 'Malignant neoplasm, overlapping lesion of heart, mediastinum and pleura', 'ICD10_2010'), +('C39', 'Malignant neoplasm of other and ill-defined sites in the respiratory system and intrathoracic organs', 'ICD10_2010'), +('C39.0', 'Malignant neoplasm, upper respiratory tract, part unspecified', 'ICD10_2010'), +('C39.8', 'Malignant neoplasm, overlapping lesion of respiratory and intrathoracic organs', 'ICD10_2010'), +('C39.9', 'Malignant neoplasm, ill-defined sites within the respiratory system', 'ICD10_2010'), +('C40', 'Malignant neoplasm of bone and articular cartilage of limbs', 'ICD10_2010'), +('C40.0', 'Malignant neoplasm, scapula and long bones of upper limb', 'ICD10_2010'), +('C40.1', 'Malignant neoplasm, short bones of upper limb', 'ICD10_2010'), +('C40.2', 'Malignant neoplasm, long bones of lower limb', 'ICD10_2010'), +('C40.3', 'Malignant neoplasm, short bones of lower limb', 'ICD10_2010'), +('C40.8', 'Malignant neoplasm, overlapping lesion of bone and articular cartilage of limbs', 'ICD10_2010'), +('C40.9', 'Malignant neoplasm, bone and articular cartilage of limb, unspecified', 'ICD10_2010'), +('C41', 'Malignant neoplasm of bone and articular cartilage of other and unspecified sites', 'ICD10_2010'), +('C41.0', 'Malignant neoplasm, bones of skull and face', 'ICD10_2010'), +('C41.1', 'Malignant neoplasm, mandible', 'ICD10_2010'), +('C41.2', 'Malignant neoplasm, vertebral column', 'ICD10_2010'), +('C41.3', 'Malignant neoplasm, ribs, sternum and clavicle', 'ICD10_2010'), +('C41.4', 'Malignant neoplasm, pelvic bones, sacrum and coccyx', 'ICD10_2010'), +('C41.8', 'Malignant neoplasm, overlapping lesion of bone and articular cartilage', 'ICD10_2010'), +('C41.9', 'Malignant neoplasm, bone and articular cartilage, unspecified', 'ICD10_2010'), +('C43', 'Malignant melanoma of skin', 'ICD10_2010'), +('C43.0', 'Malignant melanoma of lip', 'ICD10_2010'), +('C43.1', 'Malignant melanoma of eyelid, including canthus', 'ICD10_2010'), +('C43.2', 'Malignant melanoma of ear and external auricular canal', 'ICD10_2010'), +('C43.3', 'Malignant melanoma of other and unspecified parts of face', 'ICD10_2010'), +('C43.4', 'Malignant melanoma of scalp and neck', 'ICD10_2010'), +('C43.5', 'Malignant melanoma of trunk', 'ICD10_2010'), +('C43.6', 'Malignant melanoma of upper limb, including shoulder', 'ICD10_2010'), +('C43.7', 'Malignant melanoma of lower limb, including hip', 'ICD10_2010'), +('C43.8', 'Malignant neoplasm, overlapping malignant melanoma of skin', 'ICD10_2010'), +('C43.9', 'Malignant melanoma of skin, unspecified', 'ICD10_2010'), +('C44', 'Other malignant neoplasms of skin', 'ICD10_2010'), +('C44.0', 'Malignant neoplasm, skin of lip', 'ICD10_2010'), +('C44.1', 'Malignant neoplasm, skin of eyelid, including canthus', 'ICD10_2010'), +('C44.2', 'Malignant neoplasm, skin of ear and external auricular canal', 'ICD10_2010'), +('C44.3', 'Malignant neoplasm, skin of other and unspecified parts of face', 'ICD10_2010'), +('C44.4', 'Malignant neoplasm, skin of scalp and neck', 'ICD10_2010'), +('C44.5', 'Malignant neoplasm, skin of trunk', 'ICD10_2010'), +('C44.6', 'Malignant neoplasm, skin of upper limb, including shoulder', 'ICD10_2010'), +('C44.7', 'Malignant neoplasm, skin of lower limb, including hip', 'ICD10_2010'), +('C44.8', 'Malignant neoplasm, overlapping lesion of skin', 'ICD10_2010'), +('C44.9', 'Malignant neoplasm of skin, unspecified', 'ICD10_2010'), +('C45', 'Mesothelioma', 'ICD10_2010'), +('C45.0', 'Mesothelioma of pleura', 'ICD10_2010'), +('C45.1', 'Mesothelioma of peritoneum', 'ICD10_2010'), +('C45.2', 'Mesothelioma of pericardium', 'ICD10_2010'), +('C45.7', 'Mesothelioma of other sites', 'ICD10_2010'), +('C45.9', 'Mesothelioma, unspecified', 'ICD10_2010'), +('C46', 'Kaposi sarcoma', 'ICD10_2010'), +('C46.0', 'Kaposi\'s sarcoma of skin', 'ICD10_2010'), +('C46.1', 'Kaposi\'s sarcoma of soft tissue', 'ICD10_2010'), +('C46.2', 'Kaposi\'s sarcoma of palate', 'ICD10_2010'), +('C46.3', 'Kaposi\'s sarcoma of lymph nodes', 'ICD10_2010'), +('C46.7', 'Kaposi\'s sarcoma of other sites', 'ICD10_2010'), +('C46.8', 'Kaposi\'s sarcoma of multiple organs', 'ICD10_2010'), +('C46.9', 'Kaposi\'s sarcoma, unspecified', 'ICD10_2010'), +('C47', 'Malignant neoplasm of peripheral nerves and autonomic nervous system', 'ICD10_2010'), +('C47.0', 'Malignant neoplasm, peripheral nerves of head, face and neck', 'ICD10_2010'), +('C47.1', 'Malignant neoplasm, peripheral nerves of upper limb, including shoulder', 'ICD10_2010'), +('C47.2', 'Malignant neoplasm, peripheral nerves of lower limb, including hip', 'ICD10_2010'), +('C47.3', 'Malignant neoplasm, peripheral nerves of thorax', 'ICD10_2010'), +('C47.4', 'Malignant neoplasm, peripheral nerves of abdomen', 'ICD10_2010'), +('C47.5', 'Malignant neoplasm, peripheral nerves of pelvis', 'ICD10_2010'), +('C47.6', 'Malignant neoplasm, peripheral nerves of trunk, unspecified', 'ICD10_2010'), +('C47.8', 'Malignant neoplasm, overlapping lesion peripheral nerve/autonomic nervous syst', 'ICD10_2010'), +('C47.9', 'Malignant neoplasm, peripheral nerves and autonomic nervous system, unspecified', 'ICD10_2010'), +('C48', 'Malignant neoplasm of retroperitoneum and peritoneum', 'ICD10_2010'), +('C48.0', 'Malignant neoplasm, retroperitoneum', 'ICD10_2010'), +('C48.1', 'Malignant neoplasm, specified parts of peritoneum', 'ICD10_2010'), +('C48.2', 'Malignant neoplasm, peritoneum, unspecified', 'ICD10_2010'), +('C48.8', 'Malignant neoplasm, overlapping lesion of retroperitoneum and peritoneum', 'ICD10_2010'), +('C49', 'Malignant neoplasm of other connective and soft tissue', 'ICD10_2010'), +('C49.0', 'Malignant neoplasm, connective and soft tissue of head, face and neck', 'ICD10_2010'), +('C49.1', 'Malignant neoplasm, connective and soft tissue of upper limb, including shoulder', 'ICD10_2010'), +('C49.2', 'Malignant neoplasm, connective and soft tissue of lower limb, including hip', 'ICD10_2010'), +('C49.3', 'Malignant neoplasm, connective and soft tissue of thorax', 'ICD10_2010'), +('C49.4', 'Malignant neoplasm, connective and soft tissue of abdomen', 'ICD10_2010'), +('C49.5', 'Malignant neoplasm, connective and soft tissue of pelvis', 'ICD10_2010'), +('C49.6', 'Malignant neoplasm, connective and soft tissue of trunk, unspecified', 'ICD10_2010'), +('C49.8', 'Malignant neoplasm, overlapping lesion of connective and soft tissue', 'ICD10_2010'), +('C49.9', 'Malignant neoplasm, connective and soft tissue, unspecified', 'ICD10_2010'), +('C50', 'Malignant neoplasm of breast', 'ICD10_2010'), +('C50.0', 'Malignant neoplasm, nipple and areola', 'ICD10_2010'), +('C50.1', 'Malignant neoplasm, central portion of breast', 'ICD10_2010'), +('C50.2', 'Malignant neoplasm, upper-inner quadrant of breast', 'ICD10_2010'), +('C50.3', 'Malignant neoplasm, lower-inner quadrant of breast', 'ICD10_2010'), +('C50.4', 'Malignant neoplasm, upper-outer quadrant of breast', 'ICD10_2010'), +('C50.5', 'Malignant neoplasm, lower-outer quadrant of breast', 'ICD10_2010'), +('C50.6', 'Malignant neoplasm, axillary tail of breast', 'ICD10_2010'), +('C50.8', 'Malignant neoplasm, overlapping lesion of breast', 'ICD10_2010'), +('C50.9', 'Malignant neoplasm, breast, unspecified', 'ICD10_2010'), +('C51', 'Malignant neoplasm of vulva', 'ICD10_2010'), +('C51.0', 'Malignant neoplasm, labium majus', 'ICD10_2010'), +('C51.1', 'Malignant neoplasm, labium minus', 'ICD10_2010'), +('C51.2', 'Malignant neoplasm, clitoris', 'ICD10_2010'), +('C51.8', 'Malignant neoplasm, overlapping lesion of vulva', 'ICD10_2010'), +('C51.9', 'Malignant neoplasm, vulva, unspecified', 'ICD10_2010'), +('C52', 'Malignant neoplasm of vagina', 'ICD10_2010'), +('C53', 'Malignant neoplasm of cervix uteri', 'ICD10_2010'), +('C53.0', 'Malignant neoplasm, endocervix', 'ICD10_2010'), +('C53.1', 'Malignant neoplasm, exocervix', 'ICD10_2010'), +('C53.8', 'Malignant neoplasm, overlapping lesion of cervix uteri', 'ICD10_2010'), +('C53.9', 'Malignant neoplasm, cervix uteri, unspecified', 'ICD10_2010'), +('C54', 'Malignant neoplasm of corpus uteri', 'ICD10_2010'), +('C54.0', 'Malignant neoplasm, isthmus uteri', 'ICD10_2010'), +('C54.1', 'Malignant neoplasm, endometrium', 'ICD10_2010'), +('C54.2', 'Malignant neoplasm, myometrium', 'ICD10_2010'), +('C54.3', 'Malignant neoplasm, fundus uteri', 'ICD10_2010'), +('C54.8', 'Malignant neoplasm, overlapping lesion of corpus uteri', 'ICD10_2010'), +('C54.9', 'Malignant neoplasm, corpus uteri, unspecified', 'ICD10_2010'), +('C55', 'Malignant neoplasm of uterus, part unspecified', 'ICD10_2010'), +('C56', 'Malignant neoplasm of ovary', 'ICD10_2010'), +('C57', 'Malignant neoplasm of other and unspecified female genital organs', 'ICD10_2010'), +('C57.0', 'Malignant neoplasm, fallopian tube', 'ICD10_2010'), +('C57.1', 'Malignant neoplasm, broad ligament', 'ICD10_2010'), +('C57.2', 'Malignant neoplasm, round ligament', 'ICD10_2010'), +('C57.3', 'Malignant neoplasm, parametrium', 'ICD10_2010'), +('C57.4', 'Malignant neoplasm, uterine adnexa, unspecified', 'ICD10_2010'), +('C57.7', 'Malignant neoplasm, other specified female genital organs', 'ICD10_2010'), +('C57.8', 'Malignant neoplasm, overlapping lesion of female genital organs', 'ICD10_2010'), +('C57.9', 'Malignant neoplasm, female genital organ, unspecified', 'ICD10_2010'), +('C58', 'Malignant neoplasm of placenta', 'ICD10_2010'), +('C60', 'Malignant neoplasm of penis', 'ICD10_2010'), +('C60.0', 'Malignant neoplasm, prepuce', 'ICD10_2010'), +('C60.1', 'Malignant neoplasm, glans penis', 'ICD10_2010'), +('C60.2', 'Malignant neoplasm, body of penis', 'ICD10_2010'), +('C60.8', 'Malignant neoplasm, overlapping lesion of penis', 'ICD10_2010'), +('C60.9', 'Malignant neoplasm, penis, unspecified', 'ICD10_2010'), +('C61', 'Malignant neoplasm of prostate', 'ICD10_2010'), +('C62', 'Malignant neoplasm of testis', 'ICD10_2010'), +('C62.0', 'Malignant neoplasm, undescended testis', 'ICD10_2010'), +('C62.1', 'Malignant neoplasm, descended testis', 'ICD10_2010'), +('C62.9', 'Malignant neoplasm, testis, unspecified', 'ICD10_2010'), +('C63', 'Malignant neoplasm of other and unspecified male genital organs', 'ICD10_2010'), +('C63.0', 'Malignant neoplasm, epididymis', 'ICD10_2010'), +('C63.1', 'Malignant neoplasm, spermatic cord', 'ICD10_2010'), +('C63.2', 'Malignant neoplasm, scrotum', 'ICD10_2010'), +('C63.7', 'Malignant neoplasm, other specified male genital organs', 'ICD10_2010'), +('C63.8', 'Malignant neoplasm, overlapping lesion of male genital organs', 'ICD10_2010'), +('C63.9', 'Malignant neoplasm, male genital organ, unspecified', 'ICD10_2010'), +('C64', 'Malignant neoplasm of kidney, except renal pelvis', 'ICD10_2010'), +('C65', 'Malignant neoplasm of renal pelvis', 'ICD10_2010'), +('C66', 'Malignant neoplasm of ureter', 'ICD10_2010'), +('C67', 'Malignant neoplasm of bladder', 'ICD10_2010'), +('C67.0', 'Malignant neoplasm, trigone of bladder', 'ICD10_2010'), +('C67.1', 'Malignant neoplasm, dome of bladder', 'ICD10_2010'), +('C67.2', 'Malignant neoplasm, lateral wall of bladder', 'ICD10_2010'), +('C67.3', 'Malignant neoplasm, anterior wall of bladder', 'ICD10_2010'), +('C67.4', 'Malignant neoplasm, posterior wall of bladder', 'ICD10_2010'), +('C67.5', 'Malignant neoplasm, bladder neck', 'ICD10_2010'), +('C67.6', 'Malignant neoplasm, ureteric orifice', 'ICD10_2010'), +('C67.7', 'Malignant neoplasm, urachus', 'ICD10_2010'), +('C67.8', 'Malignant neoplasm, overlapping lesion of bladder', 'ICD10_2010'), +('C67.9', 'Malignant neoplasm, bladder, unspecified', 'ICD10_2010'), +('C68', 'Malignant neoplasm of other and unspecified urinary organs', 'ICD10_2010'), +('C68.0', 'Malignant neoplasm, urethra', 'ICD10_2010'), +('C68.1', 'Malignant neoplasm, paraurethral gland', 'ICD10_2010'), +('C68.8', 'Malignant neoplasm, overlapping lesion of urinary organs', 'ICD10_2010'), +('C68.9', 'Malignant neoplasm, urinary organ, unspecified', 'ICD10_2010'), +('C69', 'Malignant neoplasm of eye and adnexa', 'ICD10_2010'), +('C69.0', 'Malignant neoplasm, conjunctiva', 'ICD10_2010'), +('C69.1', 'Malignant neoplasm, cornea', 'ICD10_2010'), +('C69.2', 'Malignant neoplasm, retina', 'ICD10_2010'), +('C69.3', 'Malignant neoplasm, choroid', 'ICD10_2010'), +('C69.4', 'Malignant neoplasm, ciliary body', 'ICD10_2010'), +('C69.5', 'Malignant neoplasm, lacrimal gland and duct', 'ICD10_2010'), +('C69.6', 'Malignant neoplasm, orbit', 'ICD10_2010'), +('C69.8', 'Malignant neoplasm, overlapping lesion of eye and adnexa', 'ICD10_2010'), +('C69.9', 'Malignant neoplasm, eye, unspecified', 'ICD10_2010'), +('C70', 'Malignant neoplasm of meninges', 'ICD10_2010'), +('C70.0', 'Malignant neoplasm, cerebral meninges', 'ICD10_2010'), +('C70.1', 'Malignant neoplasm, spinal meninges', 'ICD10_2010'), +('C70.9', 'Malignant neoplasm, meninges, unspecified', 'ICD10_2010'), +('C71', 'Malignant neoplasm of brain', 'ICD10_2010'), +('C71.0', 'Malignant neoplasm, cerebrum, except lobes and ventricles', 'ICD10_2010'), +('C71.1', 'Malignant neoplasm, frontal lobe', 'ICD10_2010'), +('C71.2', 'Malignant neoplasm, temporal lobe', 'ICD10_2010'), +('C71.3', 'Malignant neoplasm, parietal lobe', 'ICD10_2010'), +('C71.4', 'Malignant neoplasm, occipital lobe', 'ICD10_2010'), +('C71.5', 'Malignant neoplasm, cerebral ventricle', 'ICD10_2010'), +('C71.6', 'Malignant neoplasm, cerebellum', 'ICD10_2010'), +('C71.7', 'Malignant neoplasm, brain stem', 'ICD10_2010'), +('C71.8', 'Malignant neoplasm, overlapping lesion of brain', 'ICD10_2010'), +('C71.9', 'Malignant neoplasm, brain, unspecified', 'ICD10_2010'), +('C72', 'Malignant neoplasm of spinal cord, cranial nerves and other parts of central nervous system', 'ICD10_2010'), +('C72.0', 'Malignant neoplasm, spinal cord', 'ICD10_2010'), +('C72.1', 'Malignant neoplasm, cauda equina', 'ICD10_2010'), +('C72.2', 'Malignant neoplasm, olfactory nerve', 'ICD10_2010'), +('C72.3', 'Malignant neoplasm, optic nerve', 'ICD10_2010'), +('C72.4', 'Malignant neoplasm, acoustic nerve', 'ICD10_2010'), +('C72.5', 'Malignant neoplasm, other and unspecified cranial nerves', 'ICD10_2010'), +('C72.8', 'Malignant neoplasm, overlapping lesion of brain and other parts of cns', 'ICD10_2010'), +('C72.9', 'Malignant neoplasm, central nervous system, unspecified', 'ICD10_2010'), +('C73', 'Malignant neoplasm of thyroid gland', 'ICD10_2010'), +('C74', 'Malignant neoplasm of adrenal gland', 'ICD10_2010'), +('C74.0', 'Malignant neoplasm, cortex of adrenal gland', 'ICD10_2010'), +('C74.1', 'Malignant neoplasm, medulla of adrenal gland', 'ICD10_2010'), +('C74.9', 'Malignant neoplasm, adrenal gland, unspecified', 'ICD10_2010'), +('C75', 'Malignant neoplasm of other endocrine glands and related structures', 'ICD10_2010'), +('C75.0', 'Malignant neoplasm, parathyroid gland', 'ICD10_2010'), +('C75.1', 'Malignant neoplasm, pituitary gland', 'ICD10_2010'), +('C75.2', 'Malignant neoplasm, craniopharyngeal duct', 'ICD10_2010'), +('C75.3', 'Malignant neoplasm, pineal gland', 'ICD10_2010'), +('C75.4', 'Malignant neoplasm, carotid body', 'ICD10_2010'), +('C75.5', 'Malignant neoplasm, aortic body and other paraganglia', 'ICD10_2010'), +('C75.8', 'Malignant neoplasm, pluriglandular involvement, unspecified', 'ICD10_2010'), +('C75.9', 'Malignant neoplasm, endocrine gland, unspecified', 'ICD10_2010'), +('C76', 'Malignant neoplasm of other and ill-defined sites', 'ICD10_2010'), +('C76.0', 'Malignant neoplasm, head, face and neck', 'ICD10_2010'), +('C76.1', 'Malignant neoplasm, thorax', 'ICD10_2010'), +('C76.2', 'Malignant neoplasm, abdomen', 'ICD10_2010'), +('C76.3', 'Malignant neoplasm, pelvis', 'ICD10_2010'), +('C76.4', 'Malignant neoplasm, upper limb', 'ICD10_2010'), +('C76.5', 'Malignant neoplasm, lower limb', 'ICD10_2010'), +('C76.7', 'Malignant neoplasm, other ill-defined sites', 'ICD10_2010'), +('C76.8', 'Malignant neoplasm, overlapping lesion of other and ill-defined sites', 'ICD10_2010'), +('C77', 'Secondary and unspecified malignant neoplasm of lymph nodes', 'ICD10_2010'), +('C77.0', 'Secondary malignant neoplasm, lymph nodes of head, face and neck', 'ICD10_2010'), +('C77.1', 'Secondary malignant neoplasm, intrathoracic lymph nodes', 'ICD10_2010'), +('C77.2', 'Secondary malignant neoplasm, intra-abdominal lymph nodes', 'ICD10_2010'), +('C77.3', 'Secondary malignant neoplasm, axillary and upper limb lymph nodes', 'ICD10_2010'), +('C77.4', 'Secondary malignant neoplasm, inguinal and lower limb lymph nodes', 'ICD10_2010'), +('C77.5', 'Secondary malignant neoplasm, intrapelvic lymph nodes', 'ICD10_2010'), +('C77.8', 'Secondary malignant neoplasm, lymph nodes of multiple regions', 'ICD10_2010'), +('C77.9', 'Secondary malignant neoplasm, lymph node, unspecified', 'ICD10_2010'), +('C78', 'Secondary malignant neoplasm of respiratory and digestive organs', 'ICD10_2010'), +('C78.0', 'Secondary malignant neoplasm of lung', 'ICD10_2010'), +('C78.1', 'Secondary malignant neoplasm of mediastinum', 'ICD10_2010'), +('C78.2', 'Secondary malignant neoplasm of pleura', 'ICD10_2010'), +('C78.3', 'Secondary malignant neoplasm, other and unspecified respiratory organs', 'ICD10_2010'), +('C78.4', 'Secondary malignant neoplasm of small intestine', 'ICD10_2010'), +('C78.5', 'Secondary malignant neoplasm of large intestine and rectum', 'ICD10_2010'), +('C78.6', 'Sec malignant neoplasm of retroperitoneum and peritoneum', 'ICD10_2010'), +('C78.7', 'Secondary malignant neoplasm of liver', 'ICD10_2010'), +('C78.8', 'Sec malignant neoplasm of other and unspec digestive organs', 'ICD10_2010'), +('C79', 'Secondary malignant neoplasm of other and unspecified sites', 'ICD10_2010'), +('C79.0', 'Secondary malignant neoplasm of kidney and renal pelvis', 'ICD10_2010'), +('C79.1', 'Sec malignant neo bladder and oth and unspec urinary organ', 'ICD10_2010'), +('C79.2', 'Secondary malignant neoplasm of skin', 'ICD10_2010'), +('C79.3', 'Secondary malignant neoplasm of brain and cerebral meninges', 'ICD10_2010'), +('C79.4', 'Sec malignant neo of other and unspec parts of nervous sys', 'ICD10_2010'), +('C79.5', 'Secondary malignant neoplasm of bone and bone marrow', 'ICD10_2010'), +('C79.6', 'Secondary malignant neoplasm of ovary', 'ICD10_2010'), +('C79.7', 'Secondary malignant neoplasm of adrenal gland', 'ICD10_2010'), +('C79.8', 'Secondary malignant neoplasm of other specified sites', 'ICD10_2010'), +('C79.9', 'Secondary malignant neoplasm, unspecified site', 'ICD10_2010'), +('C80', 'Malignant neoplasm without specification of site', 'ICD10_2010'), +('C80.0', 'Malignant neoplasm, primary site unknown, so stated', 'ICD10_2010'), +('C80.9', 'Malignant neoplasm, unspecified', 'ICD10_2010'), +('C81', 'Hodgkin lymphoma', 'ICD10_2010'), +('C81.0', 'Hodgkin\'s disease, Lymphocytic predominance', 'ICD10_2010'), +('C81.1', 'Hodgkin\'s disease, Nodular sclerosis', 'ICD10_2010'), +('C81.2', 'Hodgkin\'s disease, Mixed cellularity', 'ICD10_2010'), +('C81.3', 'Hodgkin\'s disease, Lymphocytic depletion', 'ICD10_2010'), +('C81.4', 'Lymphocyte-rich classical Hodgkin lymphoma', 'ICD10_2010'), +('C81.7', 'Other hodgkin\'s disease', 'ICD10_2010'), +('C81.9', 'Hodgkin\'s disease, unspecified', 'ICD10_2010'), +('C82', 'Follicular lymphoma', 'ICD10_2010'), +('C82.0', 'Follicular non-hodgkin\'s lymphoma, Small cleaved cell, follicular', 'ICD10_2010'), +('C82.1', 'Follicular non-hodgkin\'s lymphoma, Mixed small cleaved and large cell, follicular', 'ICD10_2010'), +('C82.2', 'Follicular non-hodgkin\'s lymphoma, Large cell, follicular', 'ICD10_2010'), +('C82.3', 'Follicular lymphoma grade IIIa', 'ICD10_2010'), +('C82.4', 'Follicular lymphoma grade IIIb', 'ICD10_2010'), +('C82.5', 'Diffuse follicle centre lymphoma', 'ICD10_2010'), +('C82.6', 'Cutaneous follicle centre lymphoma', 'ICD10_2010'), +('C82.7', 'Other types of follicular non-hodgkin\'s lymphoma', 'ICD10_2010'), +('C82.9', 'Follicular non-hodgkin\'s lymphoma, unspecified', 'ICD10_2010'), +('C83', 'Non-follicular lymphoma', 'ICD10_2010'), +('C83.0', 'Diffuse non-hodgkin\'s lymphoma, Small cell (diffuse)', 'ICD10_2010'), +('C83.1', 'Diffuse non-hodgkin\'s lymphoma, Small cleaved cell (diffuse)', 'ICD10_2010'), +('C83.2', 'Diffuse non-hodgkin\'s lymphoma, Mixed small and large cell (diffuse)', 'ICD10_2010'), +('C83.3', 'Diffuse non-hodgkin\'s lymphoma, Large cell (diffuse)', 'ICD10_2010'), +('C83.4', 'Diffuse non-hodgkin\'s lymphoma, Immunoblastic (diffuse)', 'ICD10_2010'), +('C83.5', 'Diffuse non-hodgkin\'s lymphoma, Lymphoblastic (diffuse)', 'ICD10_2010'), +('C83.6', 'Diffuse non-hodgkin\'s lymphoma, Undifferentiated (diffuse)', 'ICD10_2010'), +('C83.7', 'Diffuse non-hodgkin\'s lymphoma, Burkitt\'s tumour', 'ICD10_2010'), +('C83.8', 'Other types of diffuse non-hodgkin\'s lymphoma', 'ICD10_2010'), +('C83.9', 'Diffuse non-hodgkin\'s lymphoma, unspecified', 'ICD10_2010'), +('C84', 'Mature T/NK-cell lymphomas', 'ICD10_2010'), +('C84.0', 'Peripheral and cutaneous T-cell lymphoma, Mycosis fungoides', 'ICD10_2010'), +('C84.1', 'Peripheral and cutaneous T-cell lymphoma, Sezary\'s disease', 'ICD10_2010'), +('C84.2', 'Peripheral and cutaneous T-cell lymphoma, T-zone lymphoma', 'ICD10_2010'), +('C84.3', 'Peripheral and cutaneous T-cell lymphoma, Lymphoepithelioid lymphoma', 'ICD10_2010'), +('C84.4', 'Peripheral t-cell lymphoma', 'ICD10_2010'), +('C84.5', 'Other and unspecified t-cell lymphomas', 'ICD10_2010'), +('C84.6', 'Anaplastic large cell lymphoma, ALK-positive', 'ICD10_2010'), +('C84.7', 'Anaplastic large cell lymphoma, ALK-negative', 'ICD10_2010'), +('C84.8', 'Cutaneous T-cell lymphoma, unspecified', 'ICD10_2010'), +('C84.9', 'Mature T/NK-cell lymphoma, unspecified', 'ICD10_2010'), +('C85', 'Other and unspecified types of non-Hodgkin lymphoma', 'ICD10_2010'), +('C85.0', 'Lymphosarcoma', 'ICD10_2010'), +('C85.1', 'B-cell lymphoma, unspecified', 'ICD10_2010'), +('C85.2', 'Mediastinal (thymic) large B-cell lymphoma', 'ICD10_2010'), +('C85.7', 'Other specified types of non-hodgkin\'s lymphoma', 'ICD10_2010'), +('C85.9', 'Non-hodgkin\'s lymphoma, unspecified type', 'ICD10_2010'), +('C86', 'Other specified types of T/NK-cell lymphoma', 'ICD10_2010'), +('C86.0', 'Extranodal NK/T-cell lymphoma, nasal type', 'ICD10_2010'), +('C86.1', 'Hepatosplenic T-cell lymphoma', 'ICD10_2010'), +('C86.2', 'Enteropathy-type (intestinal) T-cell lymphoma', 'ICD10_2010'), +('C86.3', 'Subcutaneous panniculitis-like T-cell lymphoma', 'ICD10_2010'), +('C86.4', 'Blastic NK-cell lymphoma', 'ICD10_2010'), +('C86.5', 'Angioimmunoblastic T-cell lymphoma', 'ICD10_2010'), +('C86.6', 'Primary cutaneous CD30-positive T-cell proliferations', 'ICD10_2010'), +('C88', 'Malignant immunoproliferative diseases', 'ICD10_2010'), +('C88.0', 'Waldenstram\'s macroglobulinaemia', 'ICD10_2010'), +('C88.1', 'Alpha heavy chain disease', 'ICD10_2010'), +('C88.2', 'Gamma heavy chain disease', 'ICD10_2010'), +('C88.3', 'Immunoproliferative small intestinal disease', 'ICD10_2010'), +('C88.4', 'Extranodal marginal zone B-cell lymphoma of mucosa-associated lymphoid tissue [MALT-lyphoma]', 'ICD10_2010'), +('C88.7', 'Other malignant immunoproliferative diseases', 'ICD10_2010'), +('C88.9', 'Malignant immunoproliferative diseases, unspecified', 'ICD10_2010'), +('C90', 'Multiple myeloma and malignant plasma cell neoplasms', 'ICD10_2010'), +('C90.0', 'Multiple myeloma', 'ICD10_2010'), +('C90.1', 'Plasma cell leukaemia', 'ICD10_2010'), +('C90.2', 'Plasmacytoma, extramedullary', 'ICD10_2010'), +('C90.3', 'Solitary plasmacytoma', 'ICD10_2010'), +('C91', 'Lymphoid leukaemia', 'ICD10_2010'), +('C91.0', 'Acute lymphoblastic leukaemia', 'ICD10_2010'), +('C91.1', 'Chronic lymphocytic leukaemia', 'ICD10_2010'), +('C91.2', 'Subacute lymphocytic leukaemia', 'ICD10_2010'), +('C91.3', 'Prolymphocytic leukaemia', 'ICD10_2010'), +('C91.4', 'Hairy-cell leukaemia', 'ICD10_2010'), +('C91.5', 'Adult t-cell leukaemia', 'ICD10_2010'), +('C91.6', 'Prolymphocytic leukaemia of T-cell type', 'ICD10_2010'), +('C91.7', 'Other lymphoid leukaemia', 'ICD10_2010'), +('C91.8', 'Mature B-cell leukaemia Burkitt-type', 'ICD10_2010'), +('C91.9', 'Lymphoid leukaemia, unspecified', 'ICD10_2010'), +('C92', 'Myeloid leukaemia', 'ICD10_2010'), +('C92.0', 'Acute myeloid leukaemia', 'ICD10_2010'), +('C92.1', 'Chronic myeloid leukaemia', 'ICD10_2010'), +('C92.2', 'Subacute myeloid leukaemia', 'ICD10_2010'), +('C92.3', 'Myeloid sarcoma', 'ICD10_2010'), +('C92.4', 'Acute promyelocytic leukaemia', 'ICD10_2010'), +('C92.5', 'Acute myelomonocytic leukaemia', 'ICD10_2010'), +('C92.6', 'Acute myeloid leukaemia with 11q23-abnormality', 'ICD10_2010'), +('C92.7', 'Other myeloid leukaemia', 'ICD10_2010'), +('C92.8', 'Acute myeloid leukaemia with multilineage dysplasia', 'ICD10_2010'), +('C92.9', 'Myeloid leukaemia, unspecified', 'ICD10_2010'), +('C93', 'Monocytic leukaemia', 'ICD10_2010'), +('C93.0', 'Acute monocytic leukaemia', 'ICD10_2010'), +('C93.1', 'Chronic monocytic leukaemia', 'ICD10_2010'), +('C93.2', 'Subacute monocytic leukaemia', 'ICD10_2010'), +('C93.3', 'Juvenile myelomonocytic leukaemia', 'ICD10_2010'), +('C93.7', 'Other monocytic leukaemia', 'ICD10_2010'), +('C93.9', 'Monocytic leukaemia, unspecified', 'ICD10_2010'), +('C94', 'Other leukaemias of specified cell type', 'ICD10_2010'), +('C94.0', 'Acute erythraemia and erythroleukaemia', 'ICD10_2010'), +('C94.1', 'Chronic erythraemia', 'ICD10_2010'), +('C94.2', 'Acute megakaryoblastic leukaemia', 'ICD10_2010'), +('C94.3', 'Mast cell leukaemia', 'ICD10_2010'), +('C94.4', 'Acute panmyelosis', 'ICD10_2010'), +('C94.5', 'Acute myelofibrosis', 'ICD10_2010'), +('C94.6', 'Myelodysplastic and myeloproliferative disease, not elsewhere classified', 'ICD10_2010'), +('C94.7', 'Other specified leukaemias', 'ICD10_2010'), +('C95', 'Leukaemia of unspecified cell type', 'ICD10_2010'), +('C95.0', 'Acute leukaemia of unspecified cell type', 'ICD10_2010'), +('C95.1', 'Chronic leukaemia of unspecified cell type', 'ICD10_2010'), +('C95.2', 'Subacute leukaemia of unspecified cell type', 'ICD10_2010'), +('C95.7', 'Other leukaemia of unspecified cell type', 'ICD10_2010'), +('C95.9', 'Leukaemia, unspecified', 'ICD10_2010'), +('C96', 'Other and unspecified malignant neoplasms of lymphoid, haematopoietic and related tissue', 'ICD10_2010'), +('C96.0', 'Letterer-siwe disease', 'ICD10_2010'), +('C96.1', 'Malignant histiocytosis', 'ICD10_2010'), +('C96.2', 'Malignant mast cell tumour', 'ICD10_2010'), +('C96.3', 'True histiocytic lymphoma', 'ICD10_2010'), +('C96.4', 'Sarcoma of dendritic cells (accessory cells)', 'ICD10_2010'), +('C96.5', 'Multifocal and unisystemic Langerhans-cell histiocytosis', 'ICD10_2010'), +('C96.6', 'Unifocal Langerhans-cell histiocytosis', 'ICD10_2010'), +('C96.7', 'Other specified malignant neoplasm lymphoid, hematopoietic & related tissue', 'ICD10_2010'), +('C96.8', 'Histiocytic sarcoma', 'ICD10_2010'), +('C96.9', 'Malignant neoplasm of lymphoid, haematopoietic and related tissue, unspecified', 'ICD10_2010'), +('C97', 'Malignant neoplasms of independent (primary) multiple sites', 'ICD10_2010'), +('D00', 'Carcinoma in situ of oral cavity, oesophagus and stomach', 'ICD10_2010'), +('D00.0', 'Carcinoma in situ of lip, oral cavity and pharynx', 'ICD10_2010'), +('D00.1', 'Carcinoma in situ of oesophagus', 'ICD10_2010'), +('D00.2', 'Carcinoma in situ of stomach', 'ICD10_2010'), +('D01', 'Carcinoma in situ of other and unspecified digestive organs', 'ICD10_2010'), +('D01.0', 'Carcinoma in situ of colon', 'ICD10_2010'), +('D01.1', 'Carcinoma in situ of rectosigmoid junction', 'ICD10_2010'), +('D01.2', 'Carcinoma in situ of rectum', 'ICD10_2010'), +('D01.3', 'Carcinoma in situ of anus and anal canal', 'ICD10_2010'), +('D01.4', 'Carcinoma in situ of other and unspecified parts of intestine', 'ICD10_2010'), +('D01.5', 'Carcinoma in situ of liver, gallbladder and bile ducts', 'ICD10_2010'), +('D01.7', 'Carcinoma in situ of other specified digestive organs', 'ICD10_2010'), +('D01.9', 'Carcinoma in situ of digestive organ, unspecified', 'ICD10_2010'), +('D02', 'Carcinoma in situ of middle ear and respiratory system', 'ICD10_2010'), +('D02.0', 'Carcinoma in situ of larynx', 'ICD10_2010'), +('D02.1', 'Carcinoma in situ of trachea', 'ICD10_2010'), +('D02.2', 'Carcinoma in situ of bronchus and lung', 'ICD10_2010'), +('D02.3', 'Carcinoma in situ of other parts of respiratory system', 'ICD10_2010'), +('D02.4', 'Carcinoma in situ of respiratory system, unspecified', 'ICD10_2010'), +('D03', 'Melanoma in situ', 'ICD10_2010'), +('D03.0', 'Melanoma in situ of lip', 'ICD10_2010'), +('D03.1', 'Melanoma in situ of eyelid, including canthus', 'ICD10_2010'), +('D03.2', 'Melanoma in situ of ear and external auricular canal', 'ICD10_2010'), +('D03.3', 'Melanoma in situ of other and unspecified parts of face', 'ICD10_2010'), +('D03.4', 'Melanoma in situ of scalp and neck', 'ICD10_2010'), +('D03.5', 'Melanoma in situ of trunk', 'ICD10_2010'), +('D03.6', 'Melanoma in situ of upper limb, including shoulder', 'ICD10_2010'), +('D03.7', 'Melanoma in situ of lower limb, including hip', 'ICD10_2010'), +('D03.8', 'Melanoma in situ of other sites', 'ICD10_2010'), +('D03.9', 'Melanoma in situ, unspecified', 'ICD10_2010'), +('D04', 'Carcinoma in situ of skin', 'ICD10_2010'), +('D04.0', 'Carcinoma in situ skin of lip', 'ICD10_2010'), +('D04.1', 'Carcinoma in situ skin of eyelid, including canthus', 'ICD10_2010'), +('D04.2', 'Carcinoma in situ skin of ear and external auricular canal', 'ICD10_2010'), +('D04.3', 'Carcinoma in situ skin of other and unspecified parts of face', 'ICD10_2010'), +('D04.4', 'Carcinoma in situ skin of scalp and neck', 'ICD10_2010'), +('D04.5', 'Carcinoma in situ skin of trunk', 'ICD10_2010'), +('D04.6', 'Carcinoma in situ skin of upper limb, including shoulder', 'ICD10_2010'), +('D04.7', 'Carcinoma in situ skin of lower limb, including hip', 'ICD10_2010'), +('D04.8', 'Carcinoma in situ skin of other sites', 'ICD10_2010'), +('D04.9', 'Carcinoma in situ skin, unspecified', 'ICD10_2010'), +('D05', 'Carcinoma in situ of breast', 'ICD10_2010'), +('D05.0', 'Lobular carcinoma in situ', 'ICD10_2010'), +('D05.1', 'Intraductal carcinoma in situ', 'ICD10_2010'), +('D05.7', 'Other carcinoma in situ of breast', 'ICD10_2010'), +('D05.9', 'Carcinoma in situ of breast, unspecified', 'ICD10_2010'), +('D06', 'Carcinoma in situ of cervix uteri', 'ICD10_2010'), +('D06.0', 'Carcinoma in situ of endocervix', 'ICD10_2010'), +('D06.1', 'Carcinoma in situ of exocervix', 'ICD10_2010'), +('D06.7', 'Carcinoma in situ of other parts of cervix', 'ICD10_2010'), +('D06.9', 'Carcinoma in situ of cervix, unspecified', 'ICD10_2010'), +('D07', 'Carcinoma in situ of other and unspecified genital organs', 'ICD10_2010'), +('D07.0', 'Carcinoma in situ of endometrium', 'ICD10_2010'), +('D07.1', 'Carcinoma in situ of vulva', 'ICD10_2010'), +('D07.2', 'Carcinoma in situ of vagina', 'ICD10_2010'), +('D07.3', 'Carcinoma in situ of other and unspecified female genital organs', 'ICD10_2010'), +('D07.4', 'Carcinoma in situ of penis', 'ICD10_2010'), +('D07.5', 'Carcinoma in situ of prostate', 'ICD10_2010'), +('D07.6', 'Carcinoma in situ of other and unspecified male genital organs', 'ICD10_2010'), +('D09', 'Carcinoma in situ of other and unspecified sites', 'ICD10_2010'), +('D09.0', 'Carcinoma in situ of bladder', 'ICD10_2010'), +('D09.1', 'Carcinoma in situ of other and unspecified urinary organs', 'ICD10_2010'), +('D09.2', 'Carcinoma in situ of eye', 'ICD10_2010'), +('D09.3', 'Carcinoma in situ of thyroid and other endocrine glands', 'ICD10_2010'), +('D09.7', 'Carcinoma in situ of other specified sites', 'ICD10_2010'), +('D09.9', 'Carcinoma in situ, unspecified', 'ICD10_2010'), +('D10', 'Benign neoplasm of mouth and pharynx', 'ICD10_2010'), +('D10.0', 'Benign neoplasm, lip', 'ICD10_2010'), +('D10.1', 'Benign neoplasm, tongue', 'ICD10_2010'), +('D10.2', 'Benign neoplasm, floor of mouth', 'ICD10_2010'), +('D10.3', 'Benign neoplasm, other and unspecified parts of mouth', 'ICD10_2010'), +('D10.4', 'Benign neoplasm, tonsil', 'ICD10_2010'), +('D10.5', 'Benign neoplasm, other parts of oropharynx', 'ICD10_2010'), +('D10.6', 'Benign neoplasm, nasopharynx', 'ICD10_2010'), +('D10.7', 'Benign neoplasm, hypopharynx', 'ICD10_2010'), +('D10.9', 'Benign neoplasm, pharynx, unspecified', 'ICD10_2010'), +('D11', 'Benign neoplasm of major salivary glands', 'ICD10_2010'), +('D11.0', 'Benign neoplasm, parotid gland', 'ICD10_2010'), +('D11.7', 'Benign neoplasm, other major salivary glands', 'ICD10_2010'), +('D11.9', 'Benign neoplasm, major salivary gland, unspecified', 'ICD10_2010'), +('D12', 'Benign neoplasm of colon, rectum, anus and anal canal', 'ICD10_2010'), +('D12.0', 'Benign neoplasm, caecum', 'ICD10_2010'), +('D12.1', 'Benign neoplasm, appendix', 'ICD10_2010'), +('D12.2', 'Benign neoplasm, ascending colon', 'ICD10_2010'), +('D12.3', 'Benign neoplasm, transverse colon', 'ICD10_2010'), +('D12.4', 'Benign neoplasm, descending colon', 'ICD10_2010'), +('D12.5', 'Benign neoplasm, sigmoid colon', 'ICD10_2010'), +('D12.6', 'Benign neoplasm, colon, unspecified', 'ICD10_2010'), +('D12.7', 'Benign neoplasm, rectosigmoid junction', 'ICD10_2010'), +('D12.8', 'Benign neoplasm, rectum', 'ICD10_2010'), +('D12.9', 'Benign neoplasm, anus and anal canal', 'ICD10_2010'), +('D13', 'Benign neoplasm of other and ill-defined parts of digestive system', 'ICD10_2010'), +('D13.0', 'Benign neoplasm, oesophagus', 'ICD10_2010'), +('D13.1', 'Benign neoplasm, stomach', 'ICD10_2010'), +('D13.2', 'Benign neoplasm, duodenum', 'ICD10_2010'), +('D13.3', 'Benign neoplasm, other and unspecified parts of small intestine', 'ICD10_2010'), +('D13.4', 'Benign neoplasm, liver', 'ICD10_2010'), +('D13.5', 'Benign neoplasm, extrahepatic bile ducts', 'ICD10_2010'), +('D13.6', 'Benign neoplasm, pancreas', 'ICD10_2010'), +('D13.7', 'Benign neoplasm, endocrine pancreas', 'ICD10_2010'), +('D13.9', 'Benign neoplasm, ill-defined sites within the digestive system', 'ICD10_2010'), +('D14', 'Benign neoplasm of middle ear and respiratory system', 'ICD10_2010'), +('D14.0', 'Benign neoplasm, middle ear, nasal cavity and accessory sinuses', 'ICD10_2010'), +('D14.1', 'Benign neoplasm, larynx', 'ICD10_2010'), +('D14.2', 'Benign neoplasm, trachea', 'ICD10_2010'), +('D14.3', 'Benign neoplasm, bronchus and lung', 'ICD10_2010'), +('D14.4', 'Benign neoplasm, respiratory system, unspecified', 'ICD10_2010'), +('D15', 'Benign neoplasm of other and unspecified intrathoracic organs', 'ICD10_2010'), +('D15.0', 'Benign neoplasm, thymus', 'ICD10_2010'), +('D15.1', 'Benign neoplasm, heart', 'ICD10_2010'), +('D15.2', 'Benign neoplasm, mediastinum', 'ICD10_2010'), +('D15.7', 'Benign neoplasm, other specified intrathoracic organs', 'ICD10_2010'), +('D15.9', 'Benign neoplasm, intrathoracic organ, unspecified', 'ICD10_2010'), +('D16', 'Benign neoplasm of bone and articular cartilage', 'ICD10_2010'), +('D16.0', 'Benign neoplasm, scapula and long bones of upper limb', 'ICD10_2010'), +('D16.1', 'Benign neoplasm, short bones of upper limb', 'ICD10_2010'), +('D16.2', 'Benign neoplasm, long bones of lower limb', 'ICD10_2010'); +INSERT INTO `icd10` (`ID_ICD10`, `Diagnosa`, `Versi_ICD10`) VALUES +('D16.3', 'Benign neoplasm, short bones of lower limb', 'ICD10_2010'), +('D16.4', 'Benign neoplasm, bones of skull and face', 'ICD10_2010'), +('D16.5', 'Benign neoplasm, lower jaw bone', 'ICD10_2010'), +('D16.6', 'Benign neoplasm, vertebral column', 'ICD10_2010'), +('D16.7', 'Benign neoplasm, ribs, sternum and clavicle', 'ICD10_2010'), +('D16.8', 'Benign neoplasm, pelvic bones, sacrum and coccyx', 'ICD10_2010'), +('D16.9', 'Benign neoplasm, bone and articular cartilage, unspecified', 'ICD10_2010'), +('D17', 'Benign lipomatous neoplasm', 'ICD10_2010'), +('D17.0', 'Benign lipomatous neopl skin/subcut tis head face & neck', 'ICD10_2010'), +('D17.1', 'Benign lipomatous neoplasm skin and subcut tissue of trunk', 'ICD10_2010'), +('D17.2', 'Benign lipomatous neoplasm skin and subcut tissue of limbs', 'ICD10_2010'), +('D17.3', 'Benign lipomatous neopl skin/subcut tis other/unspec sites', 'ICD10_2010'), +('D17.4', 'Benign lipomatous neoplasm of intrathoracic organs', 'ICD10_2010'), +('D17.5', 'Benign lipomatous neoplasm of intra-abdominal organs', 'ICD10_2010'), +('D17.6', 'Benign lipomatous neoplasm of spermatic cord', 'ICD10_2010'), +('D17.7', 'Benign lipomatous neoplasm of other sites', 'ICD10_2010'), +('D17.9', 'Benign lipomatous neoplasm, unspecified', 'ICD10_2010'), +('D18', 'Haemangioma and lymphangioma, any site', 'ICD10_2010'), +('D18.0', 'Haemangioma, any site', 'ICD10_2010'), +('D18.1', 'Lymphangioma, any site', 'ICD10_2010'), +('D19', 'Benign neoplasm of mesothelial tissue', 'ICD10_2010'), +('D19.0', 'Benign neoplasm, mesothelial tissue of pleura', 'ICD10_2010'), +('D19.1', 'Benign neoplasm, mesothelial tissue of peritoneum', 'ICD10_2010'), +('D19.7', 'Benign neoplasm, mesothelial tissue of other sites', 'ICD10_2010'), +('D19.9', 'Benign neoplasm, mesothelial tissue, unspecified', 'ICD10_2010'), +('D20', 'Benign neoplasm of soft tissue of retroperitoneum and peritoneum', 'ICD10_2010'), +('D20.0', 'Benign neoplasm, retroperitoneum', 'ICD10_2010'), +('D20.1', 'Benign neoplasm, peritoneum', 'ICD10_2010'), +('D21', 'Other benign neoplasms of connective and other soft tissue', 'ICD10_2010'), +('D21.0', 'Benign neoplasm, connective and other soft tissue of head, face and neck', 'ICD10_2010'), +('D21.1', 'Benign neoplasm, connective and other soft tis of upper limb, inc shoulder', 'ICD10_2010'), +('D21.2', 'Benign neoplasm, connective and other soft tissue of lower limb, inc hip', 'ICD10_2010'), +('D21.3', 'Benign neoplasm, connective and other soft tissue of thorax', 'ICD10_2010'), +('D21.4', 'Benign neoplasm, connective and other soft tissue of abdomen', 'ICD10_2010'), +('D21.5', 'Benign neoplasm, connective and other soft tissue of pelvis', 'ICD10_2010'), +('D21.6', 'Benign neoplasm, connective and other soft tissue of trunk, unspecified', 'ICD10_2010'), +('D21.9', 'Benign neoplasm, connective and other soft tissue, unspecified', 'ICD10_2010'), +('D22', 'Melanocytic naevi', 'ICD10_2010'), +('D22.0', 'Melanocytic naevi of lip', 'ICD10_2010'), +('D22.1', 'Melanocytic naevi of eyelid, including canthus', 'ICD10_2010'), +('D22.2', 'Melanocytic naevi of ear and external auricular canal', 'ICD10_2010'), +('D22.3', 'Melanocytic naevi of other and unspecified parts of face', 'ICD10_2010'), +('D22.4', 'Melanocytic naevi of scalp and neck', 'ICD10_2010'), +('D22.5', 'Melanocytic naevi of trunk', 'ICD10_2010'), +('D22.6', 'Melanocytic naevi of upper limb, including shoulder', 'ICD10_2010'), +('D22.7', 'Melanocytic naevi of lower limb, including hip', 'ICD10_2010'), +('D22.9', 'Melanocytic naevi, unspecified', 'ICD10_2010'), +('D23', 'Other benign neoplasms of skin', 'ICD10_2010'), +('D23.0', 'Benign neoplasm, skin of lip', 'ICD10_2010'), +('D23.1', 'Benign neoplasm, skin of eyelid, including canthus', 'ICD10_2010'), +('D23.2', 'Benign neoplasm, skin of ear and external auricular canal', 'ICD10_2010'), +('D23.3', 'Benign neoplasm, skin of other and unspecified parts of face', 'ICD10_2010'), +('D23.4', 'Benign neoplasm, skin of scalp and neck', 'ICD10_2010'), +('D23.5', 'Benign neoplasm, skin of trunk', 'ICD10_2010'), +('D23.6', 'Benign neoplasm, skin of upper limb, including shoulder', 'ICD10_2010'), +('D23.7', 'Benign neoplasm, skin of lower limb, including hip', 'ICD10_2010'), +('D23.9', 'Benign neoplasm, skin, unspecified', 'ICD10_2010'), +('D24', 'Benign neoplasm of breast', 'ICD10_2010'), +('D25', 'Leiomyoma of uterus', 'ICD10_2010'), +('D25.0', 'Submucous leiomyoma of uterus', 'ICD10_2010'), +('D25.1', 'Intramural leiomyoma of uterus', 'ICD10_2010'), +('D25.2', 'Subserosal leiomyoma of uterus', 'ICD10_2010'), +('D25.9', 'Leiomyoma of uterus, unspecified', 'ICD10_2010'), +('D26', 'Other benign neoplasms of uterus', 'ICD10_2010'), +('D26.0', 'Benign neoplasm, cervix uteri', 'ICD10_2010'), +('D26.1', 'Benign neoplasm, corpus uteri', 'ICD10_2010'), +('D26.7', 'Benign neoplasm, other parts of uterus', 'ICD10_2010'), +('D26.9', 'Benign neoplasm, uterus, unspecified', 'ICD10_2010'), +('D27', 'Benign neoplasm of ovary', 'ICD10_2010'), +('D28', 'Benign neoplasm of other and unspecified female genital organs', 'ICD10_2010'), +('D28.0', 'Benign neoplasm, vulva', 'ICD10_2010'), +('D28.1', 'Benign neoplasm, vagina', 'ICD10_2010'), +('D28.2', 'Benign neoplasm, uterine tubes and ligaments', 'ICD10_2010'), +('D28.7', 'Benign neoplasm, other specified female genital organs', 'ICD10_2010'), +('D28.9', 'Benign neoplasm, female genital organ, unspecified', 'ICD10_2010'), +('D29', 'Benign neoplasm of male genital organs', 'ICD10_2010'), +('D29.0', 'Benign neoplasm, penis', 'ICD10_2010'), +('D29.1', 'Benign neoplasm, prostate', 'ICD10_2010'), +('D29.2', 'Benign neoplasm, testis', 'ICD10_2010'), +('D29.3', 'Benign neoplasm, epididymis', 'ICD10_2010'), +('D29.4', 'Benign neoplasm, scrotum', 'ICD10_2010'), +('D29.7', 'Benign neoplasm, other male genital organs', 'ICD10_2010'), +('D29.9', 'Benign neoplasm, male genital organ, unspecified', 'ICD10_2010'), +('D30', 'Benign neoplasm of urinary organs', 'ICD10_2010'), +('D30.0', 'Benign neoplasm, kidney', 'ICD10_2010'), +('D30.1', 'Benign neoplasm, renal pelvis', 'ICD10_2010'), +('D30.2', 'Benign neoplasm, ureter', 'ICD10_2010'), +('D30.3', 'Benign neoplasm, bladder', 'ICD10_2010'), +('D30.4', 'Benign neoplasm, urethra', 'ICD10_2010'), +('D30.7', 'Benign neoplasm, other urinary organs', 'ICD10_2010'), +('D30.9', 'Benign neoplasm, urinary organ, unspecified', 'ICD10_2010'), +('D31', 'Benign neoplasm of eye and adnexa', 'ICD10_2010'), +('D31.0', 'Benign neoplasm, conjunctiva', 'ICD10_2010'), +('D31.1', 'Benign neoplasm, cornea', 'ICD10_2010'), +('D31.2', 'Benign neoplasm, retina', 'ICD10_2010'), +('D31.3', 'Benign neoplasm, choroid', 'ICD10_2010'), +('D31.4', 'Benign neoplasm, ciliary body', 'ICD10_2010'), +('D31.5', 'Benign neoplasm, lacrimal gland and duct', 'ICD10_2010'), +('D31.6', 'Benign neoplasm, orbit, unspecified', 'ICD10_2010'), +('D31.9', 'Benign neoplasm, eye, unspecified', 'ICD10_2010'), +('D32', 'Benign neoplasm of meninges', 'ICD10_2010'), +('D32.0', 'Benign neoplasm, cerebral meninges', 'ICD10_2010'), +('D32.1', 'Benign neoplasm, spinal meninges', 'ICD10_2010'), +('D32.9', 'Benign neoplasm, meninges, unspecified', 'ICD10_2010'), +('D33', 'Benign neoplasm of brain and other parts of central nervous system', 'ICD10_2010'), +('D33.0', 'Benign neoplasm, brain, supratentorial', 'ICD10_2010'), +('D33.1', 'Benign neoplasm, brain, infratentorial', 'ICD10_2010'), +('D33.2', 'Benign neoplasm, brain, unspecified', 'ICD10_2010'), +('D33.3', 'Benign neoplasm, cranial nerves', 'ICD10_2010'), +('D33.4', 'Benign neoplasm, spinal cord', 'ICD10_2010'), +('D33.7', 'Benign neoplasm, other specified parts of central nervous system', 'ICD10_2010'), +('D33.9', 'Benign neoplasm, central nervous system, unspecified', 'ICD10_2010'), +('D34', 'Benign neoplasm of thyroid gland', 'ICD10_2010'), +('D35', 'Benign neoplasm of other and unspecified endocrine glands', 'ICD10_2010'), +('D35.0', 'Benign neoplasm, adrenal gland', 'ICD10_2010'), +('D35.1', 'Benign neoplasm, parathyroid gland', 'ICD10_2010'), +('D35.2', 'Benign neoplasm, pituitary gland', 'ICD10_2010'), +('D35.3', 'Benign neoplasm, craniopharyngeal duct', 'ICD10_2010'), +('D35.4', 'Benign neoplasm, pineal gland', 'ICD10_2010'), +('D35.5', 'Benign neoplasm, carotid body', 'ICD10_2010'), +('D35.6', 'Benign neoplasm, aortic body and other paraganglia', 'ICD10_2010'), +('D35.7', 'Benign neoplasm, other specified endocrine glands', 'ICD10_2010'), +('D35.8', 'Benign neoplasm, pluriglandular involvement', 'ICD10_2010'), +('D35.9', 'Benign neoplasm, endocrine gland, unspecified', 'ICD10_2010'), +('D36', 'Benign neoplasm of other and unspecified sites', 'ICD10_2010'), +('D36.0', 'Benign neoplasm, lymph nodes', 'ICD10_2010'), +('D36.1', 'Benign neoplasm, peripheral nerves and autonomic nervous system', 'ICD10_2010'), +('D36.7', 'Benign neoplasm, other specified sites', 'ICD10_2010'), +('D36.9', 'Benign neoplasm of unspecified site', 'ICD10_2010'), +('D37', 'Neoplasm of uncertain or unknown behaviour of oral cavity and digestive organs', 'ICD10_2010'), +('D37.0', 'Neoplasm of uncertain or unknown behaviour of lip, oral cavity and pharynx', 'ICD10_2010'), +('D37.1', 'Neoplasm of uncertain or unknown behaviour of stomach', 'ICD10_2010'), +('D37.2', 'Neoplasm of uncertain or unknown behaviour of small intestine', 'ICD10_2010'), +('D37.3', 'Neoplasm of uncertain or unknown behaviour of appendix', 'ICD10_2010'), +('D37.4', 'Neoplasm of uncertain or unknown behaviour of colon', 'ICD10_2010'), +('D37.5', 'Neoplasm of uncertain or unknown behaviour of rectum', 'ICD10_2010'), +('D37.6', 'Neoplasm of uncertain or unknown behaviour of liver, gallbladder and bile ducts', 'ICD10_2010'), +('D37.7', 'Neoplasm of uncertain or unknown behaviour of other digestive organs', 'ICD10_2010'), +('D37.9', 'Neoplasm of uncertain or unknown behaviour of digestive organ, unspecified', 'ICD10_2010'), +('D38', 'Neoplasm of uncertain or unknown behaviour of middle ear and respiratory and intrathoracic organs', 'ICD10_2010'), +('D38.0', 'Neoplasm of uncertain or unknown behaviour of larynx', 'ICD10_2010'), +('D38.1', 'Neoplasm of uncertain or unknown behaviour of trachea, bronchus and lung', 'ICD10_2010'), +('D38.2', 'Neoplasm of uncertain or unknown behaviour of pleura', 'ICD10_2010'), +('D38.3', 'Neoplasm of uncertain or unknown behaviour of mediastinum', 'ICD10_2010'), +('D38.4', 'Neoplasm of uncertain or unknown behaviour of thymus', 'ICD10_2010'), +('D38.5', 'Neoplasm of uncertain or unknown behaviour of other respiratory organs', 'ICD10_2010'), +('D38.6', 'Neoplasm of uncertain or unknown behaviour of respiratory organ, unspecified', 'ICD10_2010'), +('D39', 'Neoplasm of uncertain or unknown behaviour of female genital organs', 'ICD10_2010'), +('D39.0', 'Neoplasm of uncertain or unknown behaviour of uterus', 'ICD10_2010'), +('D39.1', 'Neoplasm of uncertain or unknown behaviour of ovary', 'ICD10_2010'), +('D39.2', 'Neoplasm of uncertain or unknown behaviour of placenta', 'ICD10_2010'), +('D39.7', 'Neoplasm of uncertain or unknown behaviour of other female genital organs', 'ICD10_2010'), +('D39.9', 'Neoplasm of uncertain or unknown behaviour of female genital organ, unspecified', 'ICD10_2010'), +('D40', 'Neoplasm of uncertain or unknown behaviour of male genital organs', 'ICD10_2010'), +('D40.0', 'Neoplasm of uncertain or unknown behaviour of prostate', 'ICD10_2010'), +('D40.1', 'Neoplasm of uncertain or unknown behaviour of testis', 'ICD10_2010'), +('D40.7', 'Neoplasm of uncertain or unknown behaviour of other male genital organs', 'ICD10_2010'), +('D40.9', 'Neoplasm of uncertain or unknown behaviour of male genital organ, unspecified', 'ICD10_2010'), +('D41', 'Neoplasm of uncertain or unknown behaviour of urinary organs', 'ICD10_2010'), +('D41.0', 'Neoplasm of uncertain or unknown behaviour of kidney', 'ICD10_2010'), +('D41.1', 'Neoplasm of uncertain or unknown behaviour of renal pelvis', 'ICD10_2010'), +('D41.2', 'Neoplasm of uncertain or unknown behaviour of ureter', 'ICD10_2010'), +('D41.3', 'Neoplasm of uncertain or unknown behaviour of urethra', 'ICD10_2010'), +('D41.4', 'Neoplasm of uncertain or unknown behaviour of bladder', 'ICD10_2010'), +('D41.7', 'Neoplasm of uncertain or unknown behaviour of other urinary organs', 'ICD10_2010'), +('D41.9', 'Neoplasm of uncertain or unknown behaviour of urinary organ, unspecified', 'ICD10_2010'), +('D42', 'Neoplasm of uncertain or unknown behaviour of meninges', 'ICD10_2010'), +('D42.0', 'Neoplasm of uncertain or unknown behaviour of cerebral meninges', 'ICD10_2010'), +('D42.1', 'Neoplasm of uncertain or unknown behaviour of spinal meninges', 'ICD10_2010'), +('D42.9', 'Neoplasm of uncertain or unknown behaviour of meninges, unspecified', 'ICD10_2010'), +('D43', 'Neoplasm of uncertain or unknown behaviour of brain and central nervous system', 'ICD10_2010'), +('D43.0', 'Neoplasm of uncertain or unknown behaviour of brain, supratentorial', 'ICD10_2010'), +('D43.1', 'Neoplasm of uncertain or unknown behaviour of brain, infratentorial', 'ICD10_2010'), +('D43.2', 'Neoplasm of uncertain or unknown behaviour of brain, unspecified', 'ICD10_2010'), +('D43.3', 'Neoplasm of uncertain or unknown behaviour of cranial nerves', 'ICD10_2010'), +('D43.4', 'Neoplasm of uncertain or unknown behaviour of spinal cord', 'ICD10_2010'), +('D43.7', 'Neoplasm of uncertain or unknown behaviour of other parts of central nervous system', 'ICD10_2010'), +('D43.9', 'Neoplasm of uncertain or unknown behaviour of central nervous system, unspecified', 'ICD10_2010'), +('D44', 'Neoplasm of uncertain or unknown behaviour of endocrine glands', 'ICD10_2010'), +('D44.0', 'Neoplasm of uncertain or unknown behaviour of thyroid gland', 'ICD10_2010'), +('D44.1', 'Neoplasm of uncertain or unknown behaviour of adrenal gland', 'ICD10_2010'), +('D44.2', 'Neoplasm of uncertain or unknown behaviour of parathyroid gland', 'ICD10_2010'), +('D44.3', 'Neoplasm of uncertain or unknown behaviour of pituitary gland', 'ICD10_2010'), +('D44.4', 'Neoplasm of uncertain or unknown behaviour of craniopharyngeal duct', 'ICD10_2010'), +('D44.5', 'Neoplasm of uncertain or unknown behaviour of pineal gland', 'ICD10_2010'), +('D44.6', 'Neoplasm of uncertain or unknown behaviour of carotid body', 'ICD10_2010'), +('D44.7', 'Neoplasm of uncertain or unknown behaviour of aortic body and other paraganglia', 'ICD10_2010'), +('D44.8', 'Neoplasm of uncertain or unknown behaviour of pluriglandular involvement', 'ICD10_2010'), +('D44.9', 'Neoplasm of uncertain or unknown behaviour of endocrine gland, unspecified', 'ICD10_2010'), +('D45', 'Polycythaemia vera', 'ICD10_2010'), +('D46', 'Myelodysplastic syndromes', 'ICD10_2010'), +('D46.0', 'Refractory anaemia without sideroblasts, so stated', 'ICD10_2010'), +('D46.1', 'Refractory anaemia with sideroblasts', 'ICD10_2010'), +('D46.2', 'Refractory anaemia with excess of blasts', 'ICD10_2010'), +('D46.3', 'Refractory anaemia with excess of blasts with transformation', 'ICD10_2010'), +('D46.4', 'Refractory anaemia, unspecified', 'ICD10_2010'), +('D46.5', 'Refractory anaemia with multi-lineage dysplasia', 'ICD10_2010'), +('D46.6', 'Myelodysplastic syndrome with isolated del(5q) chromosomal abnormality', 'ICD10_2010'), +('D46.7', 'Other myelodysplastic syndromes', 'ICD10_2010'), +('D46.9', 'Myelodysplastic syndrome, unspecified', 'ICD10_2010'), +('D47', 'Other neoplasms of uncertain or unknown behaviour of lymphoid, haematopoietic and related tissue', 'ICD10_2010'), +('D47.0', 'Histiocytic and mast cell tumours uncertain and unknown behaviour', 'ICD10_2010'), +('D47.1', 'Chronic myeloproliferative disease', 'ICD10_2010'), +('D47.2', 'Monoclonal gammopathy', 'ICD10_2010'), +('D47.3', 'Essential (haemorrhagic) thrombocythaemia', 'ICD10_2010'), +('D47.4', 'Osteomyelofibrosis', 'ICD10_2010'), +('D47.5', 'Chronic eosinophilic leukaemia [hypereosinophilic syndrome]', 'ICD10_2010'), +('D47.7', 'Other specified neoplasms of uncertain or unknown behaviour of lymphoid, haematopoietic and related tissue', 'ICD10_2010'), +('D47.9', 'Neoplasms of uncertain or unknown behaviour of lymphoid, haematopoietic and related tissue, unspecified', 'ICD10_2010'), +('D48', 'Neoplasm of uncertain or unknown behaviour of other and unspecified sites', 'ICD10_2010'), +('D48.0', 'Neoplasms of uncertain or unknown behaviour of bone and articular cartilage', 'ICD10_2010'), +('D48.1', 'Neoplasms of uncertain or unknown behaviour of connective and other soft tissue', 'ICD10_2010'), +('D48.2', 'Neoplasms of uncertain or unknown behaviour of peripheral nerves and autonomic nervous system', 'ICD10_2010'), +('D48.3', 'Neoplasms of uncertain or unknown behaviour of retroperitoneum', 'ICD10_2010'), +('D48.4', 'Neoplasms of uncertain or unknown behaviour of peritoneum', 'ICD10_2010'), +('D48.5', 'Neoplasms of uncertain or unknown behaviour of skin', 'ICD10_2010'), +('D48.6', 'Neoplasms of uncertain or unknown behaviour of breast', 'ICD10_2010'), +('D48.7', 'Neoplasms of uncertain or unknown behaviour of other specified sites', 'ICD10_2010'), +('D48.9', 'Neoplasm of uncertain or unknown behaviour, unspecified', 'ICD10_2010'), +('D50', 'Iron deficiency anaemia', 'ICD10_2010'), +('D50.0', 'Iron deficiency anaemia secondary to blood loss (chronic)', 'ICD10_2010'), +('D50.1', 'Sideropenic dysphagia', 'ICD10_2010'), +('D50.8', 'Other iron deficiency anaemias', 'ICD10_2010'), +('D50.9', 'Iron deficiency anaemia, unspecified', 'ICD10_2010'), +('D51', 'Vitamin B12 deficiency anaemia', 'ICD10_2010'), +('D51.0', 'Vitamin b12 defic anaemia due to intrinsic factor deficiency', 'ICD10_2010'), +('D51.1', 'Vit b12 def anaem select vit b12 malabsorp with proteinuria', 'ICD10_2010'), +('D51.2', 'Transcobalamin ii deficiency', 'ICD10_2010'), +('D51.3', 'Other dietary vitamin b12 deficiency anaemia', 'ICD10_2010'), +('D51.8', 'Other vitamin b12 deficiency anaemias', 'ICD10_2010'), +('D51.9', 'Vitamin b12 deficiency anaemia, unspecified', 'ICD10_2010'), +('D52', 'Folate deficiency anaemia', 'ICD10_2010'), +('D52.0', 'Dietary folate deficiency anaemia', 'ICD10_2010'), +('D52.1', 'Drug-induced folate deficiency anaemia', 'ICD10_2010'), +('D52.8', 'Other folate deficiency anaemias', 'ICD10_2010'), +('D52.9', 'Folate deficiency anaemia, unspecified', 'ICD10_2010'), +('D53', 'Other nutritional anaemias', 'ICD10_2010'), +('D53.0', 'Protein deficiency anaemia', 'ICD10_2010'), +('D53.1', 'Other megaloblastic anaemias, not elsewhere classified', 'ICD10_2010'), +('D53.2', 'Scorbutic anaemia', 'ICD10_2010'), +('D53.8', 'Other specified nutritional anaemias', 'ICD10_2010'), +('D53.9', 'Nutritional anaemia, unspecified', 'ICD10_2010'), +('D55', 'Anaemia due to enzyme disorders', 'ICD10_2010'), +('D55.0', 'Anaemia due to glucose-6-phosphate dehydrogenase deficiency', 'ICD10_2010'), +('D55.1', 'Anaemia due to other disorders of glutathione metabolism', 'ICD10_2010'), +('D55.2', 'Anaemia due to disorders of glycolytic enzymes', 'ICD10_2010'), +('D55.3', 'Anaemia due to disorders of nucleotide metabolism', 'ICD10_2010'), +('D55.8', 'Other anaemias due to enzyme disorders', 'ICD10_2010'), +('D55.9', 'Anaemia due to enzyme disorder, unspecified', 'ICD10_2010'), +('D56', 'Thalassaemia', 'ICD10_2010'), +('D56.0', 'Alpha thalassaemia', 'ICD10_2010'), +('D56.1', 'Beta thalassaemia', 'ICD10_2010'), +('D56.2', 'Delta-beta thalassaemia', 'ICD10_2010'), +('D56.3', 'Thalassaemia trait', 'ICD10_2010'), +('D56.4', 'Hereditary persistence of fetal haemoglobin [hpfh]', 'ICD10_2010'), +('D56.8', 'Other thalassaemias', 'ICD10_2010'), +('D56.9', 'Thalassaemia, unspecified', 'ICD10_2010'), +('D57', 'Sickle-cell disorders', 'ICD10_2010'), +('D57.0', 'Sickle-cell anaemia with crisis', 'ICD10_2010'), +('D57.1', 'Sickle-cell anaemia without crisis', 'ICD10_2010'), +('D57.2', 'Double heterozygous sickling disorders', 'ICD10_2010'), +('D57.3', 'Sickle-cell trait', 'ICD10_2010'), +('D57.8', 'Other sickle-cell disorders', 'ICD10_2010'), +('D58', 'Other hereditary haemolytic anaemias', 'ICD10_2010'), +('D58.0', 'Hereditary spherocytosis', 'ICD10_2010'), +('D58.1', 'Hereditary elliptocytosis', 'ICD10_2010'), +('D58.2', 'Other haemoglobinopathies', 'ICD10_2010'), +('D58.8', 'Other specified hereditary haemolytic anaemias', 'ICD10_2010'), +('D58.9', 'Hereditary haemolytic anaemia, unspecified', 'ICD10_2010'), +('D59', 'Acquired haemolytic anaemia', 'ICD10_2010'), +('D59.0', 'Drug-induced autoimmune haemolytic anaemia', 'ICD10_2010'), +('D59.1', 'Other autoimmune haemolytic anaemias', 'ICD10_2010'), +('D59.2', 'Drug-induced nonautoimmune haemolytic anaemia', 'ICD10_2010'), +('D59.3', 'Haemolytic-uraemic syndrome', 'ICD10_2010'), +('D59.4', 'Other nonautoimmune haemolytic anaemias', 'ICD10_2010'), +('D59.5', 'Paroxysmal nocturnal haemoglobinuria [marchiafava-micheli]', 'ICD10_2010'), +('D59.6', 'Haemoglobinuria due to haemolysis from other external causes', 'ICD10_2010'), +('D59.8', 'Other acquired haemolytic anaemias', 'ICD10_2010'), +('D59.9', 'Acquired haemolytic anaemia, unspecified', 'ICD10_2010'), +('D60', 'Acquired pure red cell aplasia [erythroblastopenia]', 'ICD10_2010'), +('D60.0', 'Chronic acquired pure red cell aplasia', 'ICD10_2010'), +('D60.1', 'Transient acquired pure red cell aplasia', 'ICD10_2010'), +('D60.8', 'Other acquired pure red cell aplasias', 'ICD10_2010'), +('D60.9', 'Acquired pure red cell aplasia, unspecified', 'ICD10_2010'), +('D61', 'Other aplastic anaemias', 'ICD10_2010'), +('D61.0', 'Constitutional aplastic anaemia', 'ICD10_2010'), +('D61.1', 'Drug-induced aplastic anaemia', 'ICD10_2010'), +('D61.2', 'Aplastic anaemia due to other external agents', 'ICD10_2010'), +('D61.3', 'Idiopathic aplastic anaemia', 'ICD10_2010'), +('D61.8', 'Other specified aplastic anaemias', 'ICD10_2010'), +('D61.9', 'Aplastic anaemia, unspecified', 'ICD10_2010'), +('D62', 'Acute posthaemorrhagic anaemia', 'ICD10_2010'), +('D63', 'Anaemia in chronic diseases classified elsewhere', 'ICD10_2010'), +('D63.0', 'Anaemia in neoplastic disease', 'ICD10_2010'), +('D63.8', 'Anaemia in other chronic diseases classified elsewhere', 'ICD10_2010'), +('D64', 'Other anaemias', 'ICD10_2010'), +('D64.0', 'Hereditary sideroblastic anaemia', 'ICD10_2010'), +('D64.1', 'Secondary sideroblastic anaemia due to disease', 'ICD10_2010'), +('D64.2', 'Secondary sideroblastic anaemia due to drugs and toxins', 'ICD10_2010'), +('D64.3', 'Other sideroblastic anaemias', 'ICD10_2010'), +('D64.4', 'Congenital dyserythropoietic anaemia', 'ICD10_2010'), +('D64.8', 'Other specified anaemias', 'ICD10_2010'), +('D64.9', 'Anaemia, unspecified', 'ICD10_2010'), +('D65', 'Dissem intravascular coagulation [defibrination syndrome]', 'ICD10_2010'), +('D66', 'Hereditary factor viii deficiency', 'ICD10_2010'), +('D67', 'Hereditary factor ix deficiency', 'ICD10_2010'), +('D68', 'Other coagulation defects', 'ICD10_2010'), +('D68.0', 'Von willebrand\'s disease', 'ICD10_2010'), +('D68.1', 'Hereditary factor xi deficiency', 'ICD10_2010'), +('D68.2', 'Hereditary deficiency of other clotting factors', 'ICD10_2010'), +('D68.3', 'Haemorrhagic disorder due to circulating anticoagulants', 'ICD10_2010'), +('D68.4', 'Acquired coagulation factor deficiency', 'ICD10_2010'), +('D68.5', 'Primary Thrombophilia', 'ICD10_2010'), +('D68.6', 'Other Thrombophilia', 'ICD10_2010'), +('D68.8', 'Other specified coagulation defects', 'ICD10_2010'), +('D68.9', 'Coagulation defect, unspecified', 'ICD10_2010'), +('D69', 'Purpura and other haemorrhagic conditions', 'ICD10_2010'), +('D69.0', 'Allergic purpura', 'ICD10_2010'), +('D69.1', 'Qualitative platelet defects', 'ICD10_2010'), +('D69.2', 'Other nonthrombocytopenic purpura', 'ICD10_2010'), +('D69.3', 'Idiopathic thrombocytopenic purpura', 'ICD10_2010'), +('D69.4', 'Other primary thrombocytopenia', 'ICD10_2010'), +('D69.5', 'Secondary thrombocytopenia', 'ICD10_2010'), +('D69.6', 'Thrombocytopenia, unspecified', 'ICD10_2010'), +('D69.8', 'Other specified haemorrhagic conditions', 'ICD10_2010'), +('D69.9', 'Haemorrhagic condition, unspecified', 'ICD10_2010'), +('D70', 'Agranulocytosis', 'ICD10_2010'), +('D71', 'Functional disorders of polymorphonuclear neutrophils', 'ICD10_2010'), +('D72', 'Other disorders of white blood cells', 'ICD10_2010'), +('D72.0', 'Genetic anomalies of leukocytes', 'ICD10_2010'), +('D72.1', 'Eosinophilia', 'ICD10_2010'), +('D72.8', 'Other specified disorders of white blood cells', 'ICD10_2010'), +('D72.9', 'Disorder of white blood cells, unspecified', 'ICD10_2010'), +('D73', 'Diseases of spleen', 'ICD10_2010'), +('D73.0', 'Hyposplenism', 'ICD10_2010'), +('D73.1', 'Hypersplenism', 'ICD10_2010'), +('D73.2', 'Chronic congestive splenomegaly', 'ICD10_2010'), +('D73.3', 'Abscess of spleen', 'ICD10_2010'), +('D73.4', 'Cyst of spleen', 'ICD10_2010'), +('D73.5', 'Infarction of spleen', 'ICD10_2010'), +('D73.8', 'Other diseases of spleen', 'ICD10_2010'), +('D73.9', 'Disease of spleen, unspecified', 'ICD10_2010'), +('D74', 'Methaemoglobinaemia', 'ICD10_2010'), +('D74.0', 'Congenital methaemoglobinaemia', 'ICD10_2010'), +('D74.8', 'Other methaemoglobinaemias', 'ICD10_2010'), +('D74.9', 'Methaemoglobinaemia, unspecified', 'ICD10_2010'), +('D75', 'Other diseases of blood and blood-forming organs', 'ICD10_2010'), +('D75.0', 'Familial erythrocytosis', 'ICD10_2010'), +('D75.1', 'Secondary polycythaemia', 'ICD10_2010'), +('D75.2', 'Essential thrombocytosis', 'ICD10_2010'), +('D75.8', 'Other specified diseases of blood and blood-forming organs', 'ICD10_2010'), +('D75.9', 'Disease of blood and blood-forming organs, unspecified', 'ICD10_2010'), +('D76', 'Other specified diseases with participation of lymphoreticular and reticulohistiocytic tissue', 'ICD10_2010'), +('D76.0', 'Langerhans\' cell histiocytosis, not elsewhere classified', 'ICD10_2010'), +('D76.1', 'Haemophagocytic lymphohistiocytosis', 'ICD10_2010'), +('D76.2', 'Haemophagocytic syndrome, infection-associated', 'ICD10_2010'), +('D76.3', 'Other histiocytosis syndromes', 'ICD10_2010'), +('D77', 'Other disorders of blood and blood-forming organs in dis ce', 'ICD10_2010'), +('D80', 'Immunodeficiency with predominantly antibody defects', 'ICD10_2010'), +('D80.0', 'Hereditary hypogammaglobulinaemia', 'ICD10_2010'), +('D80.1', 'Nonfamilial hypogammaglobulinaemia', 'ICD10_2010'), +('D80.2', 'Selective deficiency of immunoglobulin a [iga]', 'ICD10_2010'), +('D80.3', 'Selective deficiency of immunoglobulin g [igg] subclasses', 'ICD10_2010'), +('D80.4', 'Selective deficiency of immunoglobulin m [igm]', 'ICD10_2010'), +('D80.5', 'Immunodeficiency with increased immunoglobulin m [igm]', 'ICD10_2010'), +('D80.6', 'Antibod def with near-norm imunoglob/hyperimmunoglobulinaemia', 'ICD10_2010'), +('D80.7', 'Transient hypogammaglobulinaemia of infancy', 'ICD10_2010'), +('D80.8', 'Other immunodeficiencies with predominantly antibody defects', 'ICD10_2010'), +('D80.9', 'Immunodeficiency with predominantly antibody defects, unspec act', 'ICD10_2010'), +('D81', 'Combined immunodeficiencies', 'ICD10_2010'), +('D81.0', 'Severe combined immunodeficiency with reticular dysgenesis', 'ICD10_2010'), +('D81.1', 'Severe combined immunodef with low t- and b-cell numbers', 'ICD10_2010'), +('D81.2', 'Severe combined immunodef with low or normal b-cell numbers', 'ICD10_2010'), +('D81.3', 'Adenosine deaminase [ada] deficiency', 'ICD10_2010'), +('D81.4', 'Nezelof\'s syndrome', 'ICD10_2010'), +('D81.5', 'Purine nucleoside phosphorylase [pnp] deficiency', 'ICD10_2010'), +('D81.6', 'Major histocompatibility complex class i deficiency', 'ICD10_2010'), +('D81.7', 'Major histocompatibility complex class ii deficiency', 'ICD10_2010'), +('D81.8', 'Other combined immunodeficiencies', 'ICD10_2010'), +('D81.9', 'Combined immunodeficiency, unspecified', 'ICD10_2010'), +('D82', 'Immunodeficiency associated with other major defects', 'ICD10_2010'), +('D82.0', 'Wiskott-aldrich syndrome', 'ICD10_2010'), +('D82.1', 'Di george\'s syndrome', 'ICD10_2010'), +('D82.2', 'Immunodeficiency with short-limbed stature', 'ICD10_2010'), +('D82.3', 'Immunodef follow hereditary defect respon epstein-barr virus', 'ICD10_2010'), +('D82.4', 'Hyperimmunoglobulin e [ige] syndrome', 'ICD10_2010'), +('D82.8', 'Immunodeficiency assoc with other specified major defects', 'ICD10_2010'), +('D82.9', 'Immunodeficiency associated with major defect, unspecified', 'ICD10_2010'), +('D83', 'Common variable immunodeficiency', 'ICD10_2010'), +('D83.0', 'Com var immunodef with predom abn b-cell numb and function', 'ICD10_2010'), +('D83.1', 'Common var immunodef predom immunoregulatory t-cell disorder', 'ICD10_2010'), +('D83.2', 'Common variable immunodef autoantibodies to b- or t-cells', 'ICD10_2010'), +('D83.8', 'Other common variable immunodeficiencies', 'ICD10_2010'), +('D83.9', 'Common variable immunodeficiency, unspecified', 'ICD10_2010'), +('D84', 'Other immunodeficiencies', 'ICD10_2010'), +('D84.0', 'Lymphocyte function antigen-1 [lfa-1] defect', 'ICD10_2010'), +('D84.1', 'Defects in the complement system', 'ICD10_2010'), +('D84.8', 'Other specified immunodeficiencies', 'ICD10_2010'), +('D84.9', 'Immunodeficiency, unspecified', 'ICD10_2010'), +('D86', 'Sarcoidosis', 'ICD10_2010'), +('D86.0', 'Sarcoidosis of lung', 'ICD10_2010'), +('D86.1', 'Sarcoidosis of lymph nodes', 'ICD10_2010'), +('D86.2', 'Sarcoidosis of lung with sarcoidosis of lymph nodes', 'ICD10_2010'), +('D86.3', 'Sarcoidosis of skin', 'ICD10_2010'), +('D86.8', 'Sarcoidosis of other and combined sites', 'ICD10_2010'), +('D86.9', 'Sarcoidosis, unspecified', 'ICD10_2010'), +('D89', 'Other disorders involving the immune mechanism, not elsewhere classified', 'ICD10_2010'), +('D89.0', 'Polyclonal hypergammaglobulinaemia', 'ICD10_2010'), +('D89.1', 'Cryoglobulinaemia', 'ICD10_2010'), +('D89.2', 'Hypergammaglobulinaemia, unspecified', 'ICD10_2010'), +('D89.3', 'Immune reconstitution syndrome', 'ICD10_2010'), +('D89.8', 'Oth specified disorders involving the immune mechanism nec', 'ICD10_2010'), +('D89.9', 'Disorder involving the immune mechanism, unspecified', 'ICD10_2010'), +('E00', 'Congenital iodine-deficiency syndrome', 'ICD10_2010'), +('E00.0', 'Congenital iodine-deficiency syndrome, neurological type', 'ICD10_2010'), +('E00.1', 'Congenital iodine-deficiency syndrome, myxoedematous type', 'ICD10_2010'), +('E00.2', 'Congenital iodine-deficiency syndrome, mixed type', 'ICD10_2010'), +('E00.9', 'Congenital iodine-deficiency syndrome, unspecified', 'ICD10_2010'), +('E01', 'Iodine-deficiency-related thyroid disorders and allied conditions', 'ICD10_2010'), +('E01.0', 'Iodine-deficiency-related diffuse (endemic) goitre', 'ICD10_2010'), +('E01.1', 'Iodine-deficiency-related multinodular (endemic) goitre', 'ICD10_2010'), +('E01.2', 'Iodine-deficiency-related (endemic) goitre, unspecified', 'ICD10_2010'), +('E01.8', 'Other iodine-def-related thyroid disorders and allied conds', 'ICD10_2010'), +('E02', 'Subclinical iodine-deficiency hypothyroidism', 'ICD10_2010'), +('E03', 'Other hypothyroidism', 'ICD10_2010'), +('E03.0', 'Congenital hypothyroidism with diffuse goitre', 'ICD10_2010'), +('E03.1', 'Congenital hypothyroidism without goitre', 'ICD10_2010'), +('E03.2', 'Hypothyroidism due medicaments and oth exogenous substances', 'ICD10_2010'), +('E03.3', 'Postinfectious hypothyroidism', 'ICD10_2010'), +('E03.4', 'Atrophy of thyroid (acquired)', 'ICD10_2010'), +('E03.5', 'Myxoedema coma', 'ICD10_2010'), +('E03.8', 'Other specified hypothyroidism', 'ICD10_2010'), +('E03.9', 'Hypothyroidism, unspecified', 'ICD10_2010'), +('E04', 'Other nontoxic goitre', 'ICD10_2010'), +('E04.0', 'Nontoxic diffuse goitre', 'ICD10_2010'), +('E04.1', 'Nontoxic single thyroid nodule', 'ICD10_2010'), +('E04.2', 'Nontoxic multinodular goitre', 'ICD10_2010'), +('E04.8', 'Other specified nontoxic goitre', 'ICD10_2010'), +('E04.9', 'Nontoxic goitre, unspecified', 'ICD10_2010'), +('E05', 'Thyrotoxicosis [hyperthyroidism]', 'ICD10_2010'), +('E05.0', 'Thyrotoxicosis with diffuse goitre', 'ICD10_2010'), +('E05.1', 'Thyrotoxicosis with toxic single thyroid nodule', 'ICD10_2010'), +('E05.2', 'Thyrotoxicosis with toxic multinodular goitre', 'ICD10_2010'), +('E05.3', 'Thyrotoxicosis from ectopic thyroid tissue', 'ICD10_2010'), +('E05.4', 'Thyrotoxicosis factitia', 'ICD10_2010'), +('E05.5', 'Thyroid crisis or storm', 'ICD10_2010'), +('E05.8', 'Other thyrotoxicosis', 'ICD10_2010'), +('E05.9', 'Thyrotoxicosis, unspecified', 'ICD10_2010'), +('E06', 'Thyroiditis', 'ICD10_2010'), +('E06.0', 'Acute thyroiditis', 'ICD10_2010'), +('E06.1', 'Subacute thyroiditis', 'ICD10_2010'), +('E06.2', 'Chronic thyroiditis with transient thyrotoxicosis', 'ICD10_2010'), +('E06.3', 'Autoimmune thyroiditis', 'ICD10_2010'), +('E06.4', 'Drug-induced thyroiditis', 'ICD10_2010'), +('E06.5', 'Other chronic thyroiditis', 'ICD10_2010'), +('E06.9', 'Thyroiditis, unspecified', 'ICD10_2010'), +('E07', 'Other disorders of thyroid', 'ICD10_2010'), +('E07.0', 'Hypersecretion of calcitonin', 'ICD10_2010'), +('E07.1', 'Dyshormogenetic goitre', 'ICD10_2010'), +('E07.8', 'Other specified disorders of thyroid', 'ICD10_2010'), +('E07.9', 'Disorder of thyroid, unspecified', 'ICD10_2010'), +('E10', 'Insulin-dependent diabetes mellitus', 'ICD10_2010'), +('E10.0', 'Insulin-dependent diabetes mellitus with coma', 'ICD10_2010'), +('E10.1', 'Insulin-dependent diabetes mellitus with ketoacidosis', 'ICD10_2010'), +('E10.2', 'Insulin-dependent diabetes mellitus with renal complications', 'ICD10_2010'), +('E10.3', 'Insulin-dependent diabetes mellitus with ophthalmic complications', 'ICD10_2010'), +('E10.4', 'Insulin-dependent diabetes mellitus with neurological complications', 'ICD10_2010'), +('E10.5', 'Insulin-dependent diabetes mellitus with peripheral circulatory complications', 'ICD10_2010'), +('E10.6', 'Insulin-dependent diabetes mellitus with other specified complications', 'ICD10_2010'), +('E10.7', 'Insulin-dependent diabetes mellitus with multiple complications', 'ICD10_2010'), +('E10.8', 'Insulin-dependent diabetes mellitus with unspecified complications', 'ICD10_2010'), +('E10.9', 'Insulin-dependent diabetes mellitus without complications', 'ICD10_2010'), +('E11', 'Non-insulin-dependent diabetes mellitus', 'ICD10_2010'), +('E11.0', 'Non-insulin-dependent diabetes mellitus with coma', 'ICD10_2010'), +('E11.1', 'Non-insulin-dependent diabetes mellitus with ketoacidosis', 'ICD10_2010'), +('E11.2', 'Non-insulin-dependent diabetes mellitus with renal complications', 'ICD10_2010'), +('E11.3', 'Non-insulin-dependent diabetes mellitus with ophthalmic complications', 'ICD10_2010'), +('E11.4', 'Non-insulin-dependent diabetes mellitus with neurological complications', 'ICD10_2010'), +('E11.5', 'Non-insulin-dependent diabetes mellitus with peripheral circulatory complications', 'ICD10_2010'), +('E11.6', 'Non-insulin-dependent diabetes mellitus with other specified complications', 'ICD10_2010'), +('E11.7', 'Non-insulin-dependent diabetes mellitus with multiple complications', 'ICD10_2010'), +('E11.8', 'Non-insulin-dependent diabetes mellitus with unspecified complications', 'ICD10_2010'), +('E11.9', 'Non-insulin-dependent diabetes mellitus without complications', 'ICD10_2010'), +('E12', 'Malnutrition-related diabetes mellitus', 'ICD10_2010'), +('E12.0', 'Malnutrition-related diabetes mellitus with coma', 'ICD10_2010'), +('E12.1', 'Malnutrition-related diabetes mellitus with ketoacidosis', 'ICD10_2010'), +('E12.2', 'Malnutrition-related diabetes mellitus with renal complications', 'ICD10_2010'), +('E12.3', 'Malnutrition-related diabetes mellitus with ophthalmic complications', 'ICD10_2010'), +('E12.4', 'Malnutrition-related diabetes mellitus with neurological complications', 'ICD10_2010'), +('E12.5', 'Malnutrition-related diabetes mellitus with peripheral circulatory complications', 'ICD10_2010'), +('E12.6', 'Malnutrition-related diabetes mellitus with other specified complications', 'ICD10_2010'), +('E12.7', 'Malnutrition-related diabetes mellitus with multiple complications', 'ICD10_2010'), +('E12.8', 'Malnutrition-related diabetes mellitus with unspecified complications', 'ICD10_2010'), +('E12.9', 'Malnutrition-related diabetes mellitus without complications', 'ICD10_2010'), +('E13', 'Other specified diabetes mellitus', 'ICD10_2010'), +('E13.0', 'Other specified diabetes mellitus with coma', 'ICD10_2010'), +('E13.1', 'Other specified diabetes mellitus with ketoacidosis', 'ICD10_2010'), +('E13.2', 'Other specified diabetes mellitus with renal complications', 'ICD10_2010'), +('E13.3', 'Other specified diabetes mellitus with ophthalmic complications', 'ICD10_2010'), +('E13.4', 'Other specified diabetes mellitus with neurological complications', 'ICD10_2010'), +('E13.5', 'Other specified diabetes mellitus with peripheral circulatory complications', 'ICD10_2010'), +('E13.6', 'Other specified diabetes mellitus with other specified complications', 'ICD10_2010'), +('E13.7', 'Other specified diabetes mellitus with multiple complications', 'ICD10_2010'), +('E13.8', 'Other specified diabetes mellitus with unspecified complications', 'ICD10_2010'), +('E13.9', 'Other specified diabetes mellitus without complications', 'ICD10_2010'), +('E14', 'Unspecified diabetes mellitus', 'ICD10_2010'), +('E14.0', 'Unspecified diabetes mellitus with coma', 'ICD10_2010'), +('E14.1', 'Unspecified diabetes mellitus with ketoacidosis', 'ICD10_2010'), +('E14.2', 'Unspecified diabetes mellitus with renal complications', 'ICD10_2010'), +('E14.3', 'Unspecified diabetes mellitus with ophthalmic complications', 'ICD10_2010'), +('E14.4', 'Unspecified diabetes mellitus with neurological complications', 'ICD10_2010'), +('E14.5', 'Unspecified diabetes mellitus with peripheral circulatory complications', 'ICD10_2010'), +('E14.6', 'Unspecified diabetes mellitus with other specified complications', 'ICD10_2010'), +('E14.7', 'Unspecified diabetes mellitus with multiple complications', 'ICD10_2010'), +('E14.8', 'Unspecified diabetes mellitus with unspecified complications', 'ICD10_2010'), +('E14.9', 'Unspecified diabetes mellitus without complications', 'ICD10_2010'), +('E15', 'Nondiabetic hypoglycaemic coma', 'ICD10_2010'), +('E16', 'Other disorders of pancreatic internal secretion', 'ICD10_2010'), +('E16.0', 'Drug-induced hypoglycaemia without coma', 'ICD10_2010'), +('E16.1', 'Other hypoglycaemia', 'ICD10_2010'), +('E16.2', 'Hypoglycaemia, unspecified', 'ICD10_2010'), +('E16.3', 'Increased secretion of glucagon', 'ICD10_2010'), +('E16.4', 'Abnormal secretion of gastrin', 'ICD10_2010'), +('E16.8', 'Other specified disorders of pancreatic internal secretion', 'ICD10_2010'), +('E16.9', 'Disorder of pancreatic internal secretion, unspecified', 'ICD10_2010'), +('E20', 'Hypoparathyroidism', 'ICD10_2010'), +('E20.0', 'Idiopathic hypoparathyroidism', 'ICD10_2010'), +('E20.1', 'Pseudohypoparathyroidism', 'ICD10_2010'), +('E20.8', 'Other hypoparathyroidism', 'ICD10_2010'), +('E20.9', 'Hypoparathyroidism, unspecified', 'ICD10_2010'), +('E21', 'Hyperparathyroidism and other disorders of parathyroid gland', 'ICD10_2010'), +('E21.0', 'Primary hyperparathyroidism', 'ICD10_2010'), +('E21.1', 'Secondary hyperparathyroidism, not elsewhere classified', 'ICD10_2010'), +('E21.2', 'Other hyperparathyroidism', 'ICD10_2010'), +('E21.3', 'Hyperparathyroidism, unspecified', 'ICD10_2010'), +('E21.4', 'Other specified disorders of parathyroid gland', 'ICD10_2010'), +('E21.5', 'Disorder of parathyroid gland, unspecified', 'ICD10_2010'), +('E22', 'Hyperfunction of pituitary gland', 'ICD10_2010'), +('E22.0', 'Acromegaly and pituitary gigantism', 'ICD10_2010'), +('E22.1', 'Hyperprolactinaemia', 'ICD10_2010'), +('E22.2', 'Syndrome of inappropriate secretion of antidiuretic hormone', 'ICD10_2010'), +('E22.8', 'Other hyperfunction of pituitary gland', 'ICD10_2010'), +('E22.9', 'Hyperfunction of pituitary gland, unspecified', 'ICD10_2010'), +('E23', 'Hypofunction and other disorders of pituitary gland', 'ICD10_2010'), +('E23.0', 'Hypopituitarism', 'ICD10_2010'), +('E23.1', 'Drug-induced hypopituitarism', 'ICD10_2010'), +('E23.2', 'Diabetes insipidus', 'ICD10_2010'), +('E23.3', 'Hypothalamic dysfunction, not elsewhere classified', 'ICD10_2010'), +('E23.6', 'Other disorders of pituitary gland', 'ICD10_2010'), +('E23.7', 'Disorder of pituitary gland, unspecified', 'ICD10_2010'), +('E24', 'Cushing syndrome', 'ICD10_2010'), +('E24.0', 'Pituitary-dependent cushing\'s disease', 'ICD10_2010'), +('E24.1', 'Nelson\'s syndrome', 'ICD10_2010'), +('E24.2', 'Drug-induced cushing\'s syndrome', 'ICD10_2010'), +('E24.3', 'Ectopic acth syndrome', 'ICD10_2010'), +('E24.4', 'Alcohol-induced pseudo-cushing\'s syndrome', 'ICD10_2010'), +('E24.8', 'Other cushing\'s syndrome', 'ICD10_2010'), +('E24.9', 'Cushing\'s syndrome, unspecified', 'ICD10_2010'), +('E25', 'Adrenogenital disorders', 'ICD10_2010'), +('E25.0', 'Congenital adrenogenital disorders associated enzyme def', 'ICD10_2010'), +('E25.8', 'Other adrenogenital disorders', 'ICD10_2010'), +('E25.9', 'Adrenogenital disorder, unspecified', 'ICD10_2010'), +('E26', 'Hyperaldosteronism', 'ICD10_2010'), +('E26.0', 'Primary hyperaldosteronism', 'ICD10_2010'), +('E26.1', 'Secondary hyperaldosteronism', 'ICD10_2010'), +('E26.8', 'Other hyperaldosteronism', 'ICD10_2010'), +('E26.9', 'Hyperaldosteronism, unspecified', 'ICD10_2010'), +('E27', 'Other disorders of adrenal gland', 'ICD10_2010'), +('E27.0', 'Other adrenocortical overactivity', 'ICD10_2010'), +('E27.1', 'Primary adrenocortical insufficiency', 'ICD10_2010'), +('E27.2', 'Addisonian crisis', 'ICD10_2010'), +('E27.3', 'Drug-induced adrenocortical insufficiency', 'ICD10_2010'), +('E27.4', 'Other and unspecified adrenocortical insufficiency', 'ICD10_2010'), +('E27.5', 'Adrenomedullary hyperfunction', 'ICD10_2010'), +('E27.8', 'Other specified disorders of adrenal gland', 'ICD10_2010'), +('E27.9', 'Disorder of adrenal gland, unspecified', 'ICD10_2010'), +('E28', 'Ovarian dysfunction', 'ICD10_2010'), +('E28.0', 'Estrogen excess', 'ICD10_2010'), +('E28.1', 'Androgen excess', 'ICD10_2010'), +('E28.2', 'Polycystic ovarian syndrome', 'ICD10_2010'), +('E28.3', 'Primary ovarian failure', 'ICD10_2010'), +('E28.8', 'Other ovarian dysfunction', 'ICD10_2010'), +('E28.9', 'Ovarian dysfunction, unspecified', 'ICD10_2010'), +('E29', 'Testicular dysfunction', 'ICD10_2010'), +('E29.0', 'Testicular hyperfunction', 'ICD10_2010'), +('E29.1', 'Testicular hypofunction', 'ICD10_2010'), +('E29.8', 'Other testicular dysfunction', 'ICD10_2010'), +('E29.9', 'Testicular dysfunction, unspecified', 'ICD10_2010'), +('E30', 'Disorders of puberty, not elsewhere classified', 'ICD10_2010'), +('E30.0', 'Delayed puberty', 'ICD10_2010'), +('E30.1', 'Precocious puberty', 'ICD10_2010'), +('E30.8', 'Other disorders of puberty', 'ICD10_2010'), +('E30.9', 'Disorder of puberty, unspecified', 'ICD10_2010'), +('E31', 'Polyglandular dysfunction', 'ICD10_2010'), +('E31.0', 'Autoimmune polyglandular failure', 'ICD10_2010'), +('E31.1', 'Polyglandular hyperfunction', 'ICD10_2010'), +('E31.8', 'Other polyglandular dysfunction', 'ICD10_2010'), +('E31.9', 'Polyglandular dysfunction, unspecified', 'ICD10_2010'), +('E32', 'Diseases of thymus', 'ICD10_2010'), +('E32.0', 'Persistent hyperplasia of thymus', 'ICD10_2010'), +('E32.1', 'Abscess of thymus', 'ICD10_2010'), +('E32.8', 'Other diseases of thymus', 'ICD10_2010'), +('E32.9', 'Disease of thymus, unspecified', 'ICD10_2010'), +('E34', 'Other endocrine disorders', 'ICD10_2010'), +('E34.0', 'Carcinoid syndrome', 'ICD10_2010'), +('E34.1', 'Other hypersecretion of intestinal hormones', 'ICD10_2010'), +('E34.2', 'Ectopic hormone secretion, not elsewhere classified', 'ICD10_2010'), +('E34.3', 'Short stature, not elsewhere classified', 'ICD10_2010'), +('E34.4', 'Constitutional tall stature', 'ICD10_2010'), +('E34.5', 'Androgen resistance syndrome', 'ICD10_2010'), +('E34.8', 'Other specified endocrine disorders', 'ICD10_2010'), +('E34.9', 'Endocrine disorder, unspecified', 'ICD10_2010'), +('E35', 'Disorders of endocrine glands in diseases classified elsewhere', 'ICD10_2010'), +('E35.0', 'Disorders of thyroid gland in diseases classified elsewhere', 'ICD10_2010'), +('E35.1', 'Disorders of adrenal glands in diseases classified elsewhere', 'ICD10_2010'), +('E35.8', 'Disorders other endocrine glands in disease class elsewhere', 'ICD10_2010'), +('E40', 'Kwashiorkor', 'ICD10_2010'), +('E41', 'Nutritional marasmus', 'ICD10_2010'), +('E42', 'Marasmic kwashiorkor', 'ICD10_2010'), +('E43', 'Unspecified severe protein-energy malnutrition', 'ICD10_2010'), +('E44', 'Protein-energy malnutrition of moderate and mild degree', 'ICD10_2010'), +('E44.0', 'Moderate protein-energy malnutrition', 'ICD10_2010'), +('E44.1', 'Mild protein-energy malnutrition', 'ICD10_2010'), +('E45', 'Retarded development following protein-energy malnutrition', 'ICD10_2010'), +('E46', 'Unspecified protein-energy malnutrition', 'ICD10_2010'), +('E50', 'Vitamin A deficiency', 'ICD10_2010'), +('E50.0', 'Vitamin A deficiency with conjunctival xerosis', 'ICD10_2010'), +('E50.1', 'Vitamin A deficiency with bitot\'s spot and conjunctival xerosis', 'ICD10_2010'), +('E50.2', 'Vitamin A deficiency with corneal xerosis', 'ICD10_2010'), +('E50.3', 'Vitamin A deficiency with corneal ulceration and xerosis', 'ICD10_2010'), +('E50.4', 'Vitamin A deficiency with keratomalacia', 'ICD10_2010'), +('E50.5', 'Vitamin A deficiency with night blindness', 'ICD10_2010'), +('E50.6', 'Vitamin A deficiency with xerophthalmic scars of cornea', 'ICD10_2010'), +('E50.7', 'Other ocular manifestations of vitamin A deficiency', 'ICD10_2010'), +('E50.8', 'Other manifestations of vitamin A deficiency', 'ICD10_2010'), +('E50.9', 'Vitamin A deficiency, unspecified', 'ICD10_2010'), +('E51', 'Thiamine deficiency', 'ICD10_2010'), +('E51.1', 'Beriberi', 'ICD10_2010'), +('E51.2', 'Wernicke\'s encephalopathy', 'ICD10_2010'), +('E51.8', 'Other manifestations of thiamine deficiency', 'ICD10_2010'), +('E51.9', 'Thiamine deficiency, unspecified', 'ICD10_2010'), +('E52', 'Niacin deficiency [pellagra]', 'ICD10_2010'), +('E53', 'Deficiency of other B group vitamins', 'ICD10_2010'), +('E53.0', 'Riboflavin deficiency', 'ICD10_2010'), +('E53.1', 'Pyridoxine deficiency', 'ICD10_2010'), +('E53.8', 'Deficiency of other specified B group vitamins', 'ICD10_2010'), +('E53.9', 'Vitamin B deficiency, unspecified', 'ICD10_2010'), +('E54', 'Ascorbic acid deficiency', 'ICD10_2010'), +('E55', 'Vitamin D deficiency', 'ICD10_2010'), +('E55.0', 'Rickets, active', 'ICD10_2010'), +('E55.9', 'Vitamin D deficiency, unspecified', 'ICD10_2010'), +('E56', 'Other vitamin deficiencies', 'ICD10_2010'), +('E56.0', 'Deficiency of vitamin E', 'ICD10_2010'), +('E56.1', 'Deficiency of vitamin K', 'ICD10_2010'), +('E56.8', 'Deficiency of other vitamins', 'ICD10_2010'), +('E56.9', 'Vitamin deficiency, unspecified', 'ICD10_2010'), +('E58', 'Dietary calcium deficiency', 'ICD10_2010'), +('E59', 'Dietary selenium deficiency', 'ICD10_2010'), +('E60', 'Dietary zinc deficiency', 'ICD10_2010'), +('E61', 'Deficiency of other nutrient elements', 'ICD10_2010'), +('E61.0', 'Copper deficiency', 'ICD10_2010'), +('E61.1', 'Iron deficiency', 'ICD10_2010'), +('E61.2', 'Magnesium deficiency', 'ICD10_2010'), +('E61.3', 'Manganese deficiency', 'ICD10_2010'), +('E61.4', 'Chromium deficiency', 'ICD10_2010'), +('E61.5', 'Molybdenum deficiency', 'ICD10_2010'), +('E61.6', 'Vanadium deficiency', 'ICD10_2010'), +('E61.7', 'Deficiency of multiple nutrient elements', 'ICD10_2010'), +('E61.8', 'Deficiency of other specified nutrient elements', 'ICD10_2010'), +('E61.9', 'Deficiency of nutrient element, unspecified', 'ICD10_2010'), +('E63', 'Other nutritional deficiencies', 'ICD10_2010'), +('E63.0', 'Essential fatty acid [efa] deficiency', 'ICD10_2010'), +('E63.1', 'Imbalance of constituents of food intake', 'ICD10_2010'), +('E63.8', 'Other specified nutritional deficiencies', 'ICD10_2010'), +('E63.9', 'Nutritional deficiency, unspecified', 'ICD10_2010'), +('E64', 'Sequelae of malnutrition and other nutritional deficiencies', 'ICD10_2010'), +('E64.0', 'Sequelae of protein-energy malnutrition', 'ICD10_2010'), +('E64.1', 'Sequelae of vitamin A deficiency', 'ICD10_2010'), +('E64.2', 'Sequelae of vitamin C deficiency', 'ICD10_2010'), +('E64.3', 'Sequelae of rickets', 'ICD10_2010'), +('E64.8', 'Sequelae of other nutritional deficiencies', 'ICD10_2010'), +('E64.9', 'Sequelae of unspecified nutritional deficiency', 'ICD10_2010'), +('E65', 'Localized adiposity', 'ICD10_2010'), +('E66', 'Obesity', 'ICD10_2010'), +('E66.0', 'Obesity due to excess calories', 'ICD10_2010'), +('E66.1', 'Drug-induced obesity', 'ICD10_2010'), +('E66.2', 'Extreme obesity with alveolar hypoventilation', 'ICD10_2010'), +('E66.8', 'Other obesity', 'ICD10_2010'), +('E66.9', 'Obesity, unspecified', 'ICD10_2010'), +('E67', 'Other hyperalimentation', 'ICD10_2010'), +('E67.0', 'Hypervitaminosis A', 'ICD10_2010'), +('E67.1', 'Hypercarotenaemia', 'ICD10_2010'), +('E67.2', 'Megavitamin-B6 syndrome', 'ICD10_2010'), +('E67.3', 'Hypervitaminosis D', 'ICD10_2010'), +('E67.8', 'Other specified hyperalimentation', 'ICD10_2010'), +('E68', 'Sequelae of hyperalimentation', 'ICD10_2010'), +('E70', 'Disorders of aromatic amino-acid metabolism', 'ICD10_2010'), +('E70.0', 'Classical phenylketonuria', 'ICD10_2010'), +('E70.1', 'Other hyperphenylalaninaemias', 'ICD10_2010'), +('E70.2', 'Disorders of tyrosine metabolism', 'ICD10_2010'), +('E70.3', 'Albinism', 'ICD10_2010'), +('E70.8', 'Other disorders of aromatic amino-acid metabolism', 'ICD10_2010'), +('E70.9', 'Disorder of aromatic amino-acid metabolism, unspecified', 'ICD10_2010'), +('E71', 'Disorders of branched-chain amino-acid metabolism and fatty-acid metabolism', 'ICD10_2010'), +('E71.0', 'Maple-syrup-urine disease', 'ICD10_2010'), +('E71.1', 'Other disorders of branched-chain amino-acid metabolism', 'ICD10_2010'), +('E71.2', 'Disorder of branched-chain amino-acid metabolism, unspec act', 'ICD10_2010'), +('E71.3', 'Disorders of fatty-acid metabolism', 'ICD10_2010'), +('E72', 'Other disorders of amino-acid metabolism', 'ICD10_2010'), +('E72.0', 'Disorders of amino-acid transport', 'ICD10_2010'), +('E72.1', 'Disorders of sulfur-bearing amino-acid metabolism', 'ICD10_2010'), +('E72.2', 'Disorders of urea cycle metabolism', 'ICD10_2010'), +('E72.3', 'Disorders of lysine and hydroxylysine metabolism', 'ICD10_2010'), +('E72.4', 'Disorders of ornithine metabolism', 'ICD10_2010'), +('E72.5', 'Disorders of glycine metabolism', 'ICD10_2010'), +('E72.8', 'Other specified disorders of amino-acid metabolism', 'ICD10_2010'), +('E72.9', 'Disorder of amino-acid metabolism, unspecified', 'ICD10_2010'), +('E73', 'Lactose intolerance', 'ICD10_2010'), +('E73.0', 'Congenital lactase deficiency', 'ICD10_2010'), +('E73.1', 'Secondary lactase deficiency', 'ICD10_2010'), +('E73.8', 'Other lactose intolerance', 'ICD10_2010'), +('E73.9', 'Lactose intolerance, unspecified', 'ICD10_2010'), +('E74', 'Other disorders of carbohydrate metabolism', 'ICD10_2010'), +('E74.0', 'Glycogen storage disease', 'ICD10_2010'), +('E74.1', 'Disorders of fructose metabolism', 'ICD10_2010'), +('E74.2', 'Disorders of galactose metabolism', 'ICD10_2010'), +('E74.3', 'Other disorders of intestinal carbohydrate absorption', 'ICD10_2010'), +('E74.4', 'Disorders of pyruvate metabolism and gluconeogenesis', 'ICD10_2010'), +('E74.8', 'Other specified disorders of carbohydrate metabolism', 'ICD10_2010'), +('E74.9', 'Disorder of carbohydrate metabolism, unspecified', 'ICD10_2010'), +('E75', 'Disorders of sphingolipid metabolism and other lipid storage disorders', 'ICD10_2010'), +('E75.0', 'Gm2 gangliosidosis', 'ICD10_2010'), +('E75.1', 'Other gangliosidosis', 'ICD10_2010'), +('E75.2', 'Other sphingolipidosis', 'ICD10_2010'), +('E75.3', 'Sphingolipidosis, unspecified', 'ICD10_2010'), +('E75.4', 'Neuronal ceroid lipofuscinosis', 'ICD10_2010'), +('E75.5', 'Other lipid storage disorders', 'ICD10_2010'), +('E75.6', 'Lipid storage disorder, unspecified', 'ICD10_2010'), +('E76', 'Disorders of glycosaminoglycan metabolism', 'ICD10_2010'), +('E76.0', 'Mucopolysaccharidosis, type i', 'ICD10_2010'), +('E76.1', 'Mucopolysaccharidosis, type ii', 'ICD10_2010'), +('E76.2', 'Other mucopolysaccharidoses', 'ICD10_2010'); +INSERT INTO `icd10` (`ID_ICD10`, `Diagnosa`, `Versi_ICD10`) VALUES +('E76.3', 'Mucopolysaccharidosis, unspecified', 'ICD10_2010'), +('E76.8', 'Other disorders of glucosaminoglycan metabolism', 'ICD10_2010'), +('E76.9', 'Disorder of glucosaminoglycan metabolism, unspecified', 'ICD10_2010'), +('E77', 'Disorders of glycoprotein metabolism', 'ICD10_2010'), +('E77.0', 'Defects in post-translational modif\'n of lysosomal enzymes', 'ICD10_2010'), +('E77.1', 'Defects in glycoprotein degradation', 'ICD10_2010'), +('E77.8', 'Other disorders of glycoprotein metabolism', 'ICD10_2010'), +('E77.9', 'Disorder of glycoprotein metabolism, unspecified', 'ICD10_2010'), +('E78', 'Disorders of lipoprotein metabolism and other lipidaemias', 'ICD10_2010'), +('E78.0', 'Pure hypercholesterolaemia', 'ICD10_2010'), +('E78.1', 'Pure hyperglyceridaemia', 'ICD10_2010'), +('E78.2', 'Mixed hyperlipidaemia', 'ICD10_2010'), +('E78.3', 'Hyperchylomicronaemia', 'ICD10_2010'), +('E78.4', 'Other hyperlipidaemia', 'ICD10_2010'), +('E78.5', 'Hyperlipidaemia, unspecified', 'ICD10_2010'), +('E78.6', 'Lipoprotein deficiency', 'ICD10_2010'), +('E78.8', 'Other disorders of lipoprotein metabolism', 'ICD10_2010'), +('E78.9', 'Disorder of lipoprotein metabolism, unspecified', 'ICD10_2010'), +('E79', 'Disorders of purine and pyrimidine metabolism', 'ICD10_2010'), +('E79.0', 'Hyperuricaem without sign inflamm arthritis+tophaceous dis', 'ICD10_2010'), +('E79.1', 'Lesch-Nyhan syndrome', 'ICD10_2010'), +('E79.8', 'Other disorders of purine and pyrimidine metabolism', 'ICD10_2010'), +('E79.9', 'Disorder of purine and pyrimidine metabolism, unspecified', 'ICD10_2010'), +('E80', 'Disorders of porphyrin and bilirubin metabolism', 'ICD10_2010'), +('E80.0', 'Hereditary erythropoietic porphyria', 'ICD10_2010'), +('E80.1', 'Porphyria cutanea tarda', 'ICD10_2010'), +('E80.2', 'Other porphyria', 'ICD10_2010'), +('E80.3', 'Defects of catalase and peroxidase', 'ICD10_2010'), +('E80.4', 'Gilbert\'s syndrome', 'ICD10_2010'), +('E80.5', 'Crigler-najjar syndrome', 'ICD10_2010'), +('E80.6', 'Other disorders of bilirubin metabolism', 'ICD10_2010'), +('E80.7', 'Disorder of bilirubin metabolism, unspecified', 'ICD10_2010'), +('E83', 'Disorders of mineral metabolism', 'ICD10_2010'), +('E83.0', 'Disorders of copper metabolism', 'ICD10_2010'), +('E83.1', 'Disorders of iron metabolism', 'ICD10_2010'), +('E83.2', 'Disorders of zinc metabolism', 'ICD10_2010'), +('E83.3', 'Disorders of phosphorus metabolism', 'ICD10_2010'), +('E83.4', 'Disorders of magnesium metabolism', 'ICD10_2010'), +('E83.5', 'Disorders of calcium metabolism', 'ICD10_2010'), +('E83.8', 'Other disorders of mineral metabolism', 'ICD10_2010'), +('E83.9', 'Disorder of mineral metabolism, unspecified', 'ICD10_2010'), +('E84', 'Cystic fibrosis', 'ICD10_2010'), +('E84.0', 'Cystic fibrosis with pulmonary manifestations', 'ICD10_2010'), +('E84.1', 'Cystic fibrosis with intestinal manifestations', 'ICD10_2010'), +('E84.8', 'Cystic fibrosis with other manifestations', 'ICD10_2010'), +('E84.9', 'Cystic fibrosis, unspecified', 'ICD10_2010'), +('E85', 'Amyloidosis', 'ICD10_2010'), +('E85.0', 'Non-neuropathic heredofamilial amyloidosis', 'ICD10_2010'), +('E85.1', 'Neuropathic heredofamilial amyloidosis', 'ICD10_2010'), +('E85.2', 'Heredofamilial amyloidosis, unspecified', 'ICD10_2010'), +('E85.3', 'Secondary systemic amyloidosis', 'ICD10_2010'), +('E85.4', 'Organ-limited amyloidosis', 'ICD10_2010'), +('E85.8', 'Other amyloidosis', 'ICD10_2010'), +('E85.9', 'Amyloidosis, unspecified', 'ICD10_2010'), +('E86', 'Volume depletion', 'ICD10_2010'), +('E87', 'Other disorders of fluid, electrolyte and acid-base balance', 'ICD10_2010'), +('E87.0', 'Hyperosmolality and hypernatraemia', 'ICD10_2010'), +('E87.1', 'Hypo-osmolality and hyponatraemia', 'ICD10_2010'), +('E87.2', 'Acidosis', 'ICD10_2010'), +('E87.3', 'Alkalosis', 'ICD10_2010'), +('E87.4', 'Mixed disorder of acid-base balance', 'ICD10_2010'), +('E87.5', 'Hyperkalaemia', 'ICD10_2010'), +('E87.6', 'Hypokalaemia', 'ICD10_2010'), +('E87.7', 'Fluid overload', 'ICD10_2010'), +('E87.8', 'Other disorders of electrolyte and fluid balance NEC', 'ICD10_2010'), +('E88', 'Other metabolic disorders', 'ICD10_2010'), +('E88.0', 'Disorders of plasma-protein metabolism NEC', 'ICD10_2010'), +('E88.1', 'Lipodystrophy, not elsewhere classified', 'ICD10_2010'), +('E88.2', 'Lipomatosis, not elsewhere classified', 'ICD10_2010'), +('E88.3', 'Tumour lysis syndrome', 'ICD10_2010'), +('E88.8', 'Other specified metabolic disorders', 'ICD10_2010'), +('E88.9', 'Metabolic disorder, unspecified', 'ICD10_2010'), +('E89', 'Postprocedural endocrine and metabolic disorders, not elsewhere classified', 'ICD10_2010'), +('E89.0', 'Postprocedural hypothyroidism', 'ICD10_2010'), +('E89.1', 'Postprocedural hypoinsulinaemia', 'ICD10_2010'), +('E89.2', 'Postprocedural hypoparathyroidism', 'ICD10_2010'), +('E89.3', 'Postprocedural hypopituitarism', 'ICD10_2010'), +('E89.4', 'Postprocedural ovarian failure', 'ICD10_2010'), +('E89.5', 'Postprocedural testicular hypofunction', 'ICD10_2010'), +('E89.6', 'Postprocedural adrenocortical(-medullary) hypofunction', 'ICD10_2010'), +('E89.8', 'Other postprocedural endocrine and metabolic disorders', 'ICD10_2010'), +('E89.9', 'Postprocedural endocrine and metabolic disorder, unspecified', 'ICD10_2010'), +('E90', 'Nutritional and metabolic disorders in diseases', 'ICD10_2010'), +('F00', 'Dementia in Alzheimer disease', 'ICD10_2010'), +('F00.0', 'Dementia in alzheimer\'s disease with early onset', 'ICD10_2010'), +('F00.1', 'Dementia in alzheimer\'s disease with late onset', 'ICD10_2010'), +('F00.2', 'Dementia in alzheimer\'s disease, atypical or mixed type', 'ICD10_2010'), +('F00.9', 'Dementia in alzheimer\'s disease, unspecified', 'ICD10_2010'), +('F01', 'Vascular dementia', 'ICD10_2010'), +('F01.0', 'Vascular dementia of acute onset', 'ICD10_2010'), +('F01.1', 'Multi-infarct dementia', 'ICD10_2010'), +('F01.2', 'Subcortical vascular dementia', 'ICD10_2010'), +('F01.3', 'Mixed cortical and subcortical vascular dementia', 'ICD10_2010'), +('F01.8', 'Other vascular dementia', 'ICD10_2010'), +('F01.9', 'Vascular dementia, unspecified', 'ICD10_2010'), +('F02', 'Dementia in other diseases classified elsewhere', 'ICD10_2010'), +('F02.0', 'Dementia in Pick\'s disease', 'ICD10_2010'), +('F02.1', 'Dementia in Creutzfeldt-Jakob disease', 'ICD10_2010'), +('F02.2', 'Dementia in Huntington\'s disease', 'ICD10_2010'), +('F02.3', 'Dementia in Parkinson\'s disease', 'ICD10_2010'), +('F02.4', 'Dementia in human immunodef virus [HIV] disease', 'ICD10_2010'), +('F02.8', 'Dementia in other specified diseases classified elsewhere', 'ICD10_2010'), +('F03', 'Unspecified dementia', 'ICD10_2010'), +('F04', 'Organic amnesic syndrome not induced alcohol/other psychoactive substances', 'ICD10_2010'), +('F05', 'Delirium, not induced by alcohol and other psychoactive substances', 'ICD10_2010'), +('F05.0', 'Delirium not superimposed on dementia, so described', 'ICD10_2010'), +('F05.1', 'Delirium superimposed on dementia', 'ICD10_2010'), +('F05.8', 'Other delirium', 'ICD10_2010'), +('F05.9', 'Delirium, unspecified', 'ICD10_2010'), +('F06', 'Other mental disorders due to brain damage and dysfunction and to physical disease', 'ICD10_2010'), +('F06.0', 'Organic hallucinosis', 'ICD10_2010'), +('F06.1', 'Organic catatonic disorder', 'ICD10_2010'), +('F06.2', 'Organic delusional [schizophrenia-like] disorder', 'ICD10_2010'), +('F06.3', 'Organic mood [affective] disorders', 'ICD10_2010'), +('F06.4', 'Organic anxiety disorder', 'ICD10_2010'), +('F06.5', 'Organic dissociative disorder', 'ICD10_2010'), +('F06.6', 'Organic emotionally labile [asthenic] disorder', 'ICD10_2010'), +('F06.7', 'Mild cognitive disorder', 'ICD10_2010'), +('F06.8', 'Other specified mental disorder brain damage and dysfunction/physcal disease', 'ICD10_2010'), +('F06.9', 'Unspecified mental disorder brain damage and dysfunction/physcal disease', 'ICD10_2010'), +('F07', 'Personality and behavioural disorders due to brain disease, damage and dysfunction', 'ICD10_2010'), +('F07.0', 'Organic personality disorder', 'ICD10_2010'), +('F07.1', 'Postencephalitic syndrome', 'ICD10_2010'), +('F07.2', 'Postconcussional syndrome', 'ICD10_2010'), +('F07.8', 'Other organ personality behavioural disorders due to brain disease, damage dysfunction', 'ICD10_2010'), +('F07.9', 'Unspecified organ personality behavioural disorder brain damage and dysfunction', 'ICD10_2010'), +('F09', 'Unspecified organic or symptomatic mental disorder', 'ICD10_2010'), +('F10', 'Mental and behavioural disorders due to use of alcohol', 'ICD10_2010'), +('F10.0', 'Mental & behavioural disorder due to use of alcohol: acute intoxication', 'ICD10_2010'), +('F10.1', 'Mental & behavioural disorder due to use of alcohol: harmful use', 'ICD10_2010'), +('F10.2', 'Mental & behavioural disorder due to use of alcohol: dependence syndrome', 'ICD10_2010'), +('F10.3', 'Mental & behavioural disorder due to use of alcohol: withdrawal state', 'ICD10_2010'), +('F10.4', 'Mental & behavioural disorder due to use of alcohol: withdrawl state with delirium', 'ICD10_2010'), +('F10.5', 'Mental & behavioural disorder due to use of alcohol: psychotic disorder', 'ICD10_2010'), +('F10.6', 'Mental & behavioural disorder due to use of alcohol: amnesic syndrome', 'ICD10_2010'), +('F10.7', 'Mental & behavioural disorder due to use of alcohol: residual & late-onset psychotic disorder', 'ICD10_2010'), +('F10.8', 'Mental & behavioural disorder due to use of alcohol: other mental & behavioural disorder', 'ICD10_2010'), +('F10.9', 'Mental & behavioural disorder due to use of alcohol: unspecified mental & behavioural disorder', 'ICD10_2010'), +('F11', 'Mental and behavioural disorders due to use of opioids', 'ICD10_2010'), +('F11.0', 'Mental & behavioural disorder due to use of opiods: acute intoxication', 'ICD10_2010'), +('F11.1', 'Mental & behavioural disorder due to use of opiods: harmful use', 'ICD10_2010'), +('F11.2', 'Mental & behavioural disorder due to use of opiods: dependence syndrome', 'ICD10_2010'), +('F11.3', 'Mental & behavioural disorder due to use of opiods: withdrawal state', 'ICD10_2010'), +('F11.4', 'Mental & behavioural disorder due to use of opiods: withdrawl state with delirium', 'ICD10_2010'), +('F11.5', 'Mental & behavioural disorder due to use of opiods: psychotic disorder', 'ICD10_2010'), +('F11.6', 'Mental & behavioural disorder due to use of opiods: amnesic syndrome', 'ICD10_2010'), +('F11.7', 'Mental & behavioural disorder due to use of opiods: residual & late-onset psychotic disorder', 'ICD10_2010'), +('F11.8', 'Mental & behavioural disorder due to use of opiods: other mental & behavioural disorder', 'ICD10_2010'), +('F11.9', 'Mental & behavioural disorder due to use of opiods: unspecified mental & behavioural disorder', 'ICD10_2010'), +('F12', 'Mental and behavioural disorders due to use of cannabinoids', 'ICD10_2010'), +('F12.0', 'Mental & behavioural disorder due to use of cannabinoids: acute intoxication', 'ICD10_2010'), +('F12.1', 'Mental & behavioural disorder due to use of cannabinoids: harmful use', 'ICD10_2010'), +('F12.2', 'Mental & behavioural disorder due to use of cannabinoids: dependence syndrome', 'ICD10_2010'), +('F12.3', 'Mental & behavioural disorder due to use of cannabinoids: withdrawal state', 'ICD10_2010'), +('F12.4', 'Mental & behavioural disorder due to use of cannabinoids: withdrawl state with delirium', 'ICD10_2010'), +('F12.5', 'Mental & behavioural disorder due to use of cannabinoids: psychotic disorder', 'ICD10_2010'), +('F12.6', 'Mental & behavioural disorder due to use of cannabinoids: amnesic syndrome', 'ICD10_2010'), +('F12.7', 'Mental & behavioural disorder due to use of cannabinoids: residual & late-onset psychotic disorder', 'ICD10_2010'), +('F12.8', 'Mental & behavioural disorder due to use of cannabinoids: other mental & behavioural disorder', 'ICD10_2010'), +('F12.9', 'Mental & behavioural disorder due to use of cannabinoids: unspecified mental & behavioural disorder', 'ICD10_2010'), +('F13', 'Mental and behavioural disorders due to use of sedatives or hypnotics', 'ICD10_2010'), +('F13.0', 'Mental & behavioural disorder due to use of sedatives or hypnotics: acute intoxication', 'ICD10_2010'), +('F13.1', 'Mental & behavioural disorder due to use of sedatives or hypnotics: harmful use', 'ICD10_2010'), +('F13.2', 'Mental & behavioural disorder due to use of sedatives or hypnotics: dependence syndrome', 'ICD10_2010'), +('F13.3', 'Mental & behavioural disorder due to use of sedatives or hypnotics: withdrawal state', 'ICD10_2010'), +('F13.4', 'Mental & behavioural disorder due to use of sedatives or hypnotics: withdrawl state with delirium', 'ICD10_2010'), +('F13.5', 'Mental & behavioural disorder due to use of sedatives or hypnotics: psychotic disorder', 'ICD10_2010'), +('F13.6', 'Mental & behavioural disorder due to use of sedatives or hypnotics: amnesic syndrome', 'ICD10_2010'), +('F13.7', 'Mental & behavioural disorder due to use of sedatives or hypnotics: residual & late-onset psychotic disorder', 'ICD10_2010'), +('F13.8', 'Mental & behavioural disorder due to use of sedatives or hypnotics: other mental & behavioural disorder', 'ICD10_2010'), +('F13.9', 'Mental & behavioural disorder due to use of sedatives or hypnotics: unspecified mental & behavioural disorder', 'ICD10_2010'), +('F14', 'Mental and behavioural disorders due to use of cocaine', 'ICD10_2010'), +('F14.0', 'Mental & behavioural disorder due to use of cocaine: acute intoxication', 'ICD10_2010'), +('F14.1', 'Mental & behavioural disorder due to use of cocaine: harmful use', 'ICD10_2010'), +('F14.2', 'Mental & behavioural disorder due to use of cocaine: dependence syndrome', 'ICD10_2010'), +('F14.3', 'Mental & behavioural disorder due to use of cocaine: withdrawal state', 'ICD10_2010'), +('F14.4', 'Mental & behavioural disorder due to use of cocaine: withdrawl state with delirium', 'ICD10_2010'), +('F14.5', 'Mental & behavioural disorder due to use of cocaine: psychotic disorder', 'ICD10_2010'), +('F14.6', 'Mental & behavioural disorder due to use of cocaine: amnesic syndrome', 'ICD10_2010'), +('F14.7', 'Mental & behavioural disorder due to use of cocaine: residual & late-onset psychotic disorder', 'ICD10_2010'), +('F14.8', 'Mental & behavioural disorder due to use of cocaine: other mental & behavioural disorder', 'ICD10_2010'), +('F14.9', 'Mental & behavioural disorder due to use of cocaine: unspecified mental & behavioural disorder', 'ICD10_2010'), +('F15', 'Mental and behavioural disorders due to use of other stimulants, including caffeine', 'ICD10_2010'), +('F15.0', 'Mental & behavioural disorder due to use of other stimulants, including caffeine: acute intoxication', 'ICD10_2010'), +('F15.1', 'Mental & behavioural disorder due to use of other stimulants, including caffeine: harmful use', 'ICD10_2010'), +('F15.2', 'Mental & behavioural disorder due to use of other stimulants, including caffeine: dependence syndrome', 'ICD10_2010'), +('F15.3', 'Mental & behavioural disorder due to use of other stimulants, including caffeine: withdrawal state', 'ICD10_2010'), +('F15.4', 'Mental & behavioural disorder due to use of other stimulants, including caffeine: withdrawl state with delirium', 'ICD10_2010'), +('F15.5', 'Mental & behavioural disorder due to use of other stimulants, including caffeine: psychotic disorder', 'ICD10_2010'), +('F15.6', 'Mental & behavioural disorder due to use of other stimulants, including caffeine: amnesic syndrome', 'ICD10_2010'), +('F15.7', 'Mental & behavioural disorder due to use of other stimulants, including caffeine: residual & late-onset psychotic disorder', 'ICD10_2010'), +('F15.8', 'Mental & behavioural disorder due to use of other stimulants, including caffeine: other mental & behavioural disorder', 'ICD10_2010'), +('F15.9', 'Mental & behavioural disorder due to use of other stimulants, including caffeine: unspecified mental & behavioural disorder', 'ICD10_2010'), +('F16', 'Mental and behavioural disorders due to use of hallucinogens', 'ICD10_2010'), +('F16.0', 'Mental & behavioural disorder due to use hallucinogens: acute intoxication', 'ICD10_2010'), +('F16.1', 'Mental & behavioural disorder due to use hallucinogens: harmful use', 'ICD10_2010'), +('F16.2', 'Mental & behavioural disorder due to use hallucinogens: dependence syndrome', 'ICD10_2010'), +('F16.3', 'Mental & behavioural disorder due to use hallucinogens: withdrawal state', 'ICD10_2010'), +('F16.4', 'Mental & behavioural disorder due to use hallucinogens: withdrawl state with delirium', 'ICD10_2010'), +('F16.5', 'Mental & behavioural disorder due to use hallucinogens: psychotic disorder', 'ICD10_2010'), +('F16.6', 'Mental & behavioural disorder due to use hallucinogens: amnesic syndrome', 'ICD10_2010'), +('F16.7', 'Mental & behavioural disorder due to use hallucinogens: residual & late-onset psychotic disorder', 'ICD10_2010'), +('F16.8', 'Mental & behavioural disorder due to use hallucinogens: other mental & behavioural disorder', 'ICD10_2010'), +('F16.9', 'Mental & behavioural disorder due to use hallucinogens: unspecified mental & behavioural disorder', 'ICD10_2010'), +('F17', 'Mental and behavioural disorders due to use of tobacco', 'ICD10_2010'), +('F17.0', 'Mental & behavioural disorder due of tobacco: acute intoxication', 'ICD10_2010'), +('F17.1', 'Mental & behavioural disorder due of tobacco: harmful use', 'ICD10_2010'), +('F17.2', 'Mental & behavioural disorder due of tobacco: dependence syndrome', 'ICD10_2010'), +('F17.3', 'Mental & behavioural disorder due of tobacco: withdrawal state', 'ICD10_2010'), +('F17.4', 'Mental & behavioural disorder due of tobacco: withdrawl state with delirium', 'ICD10_2010'), +('F17.5', 'Mental & behavioural disorder due of tobacco: psychotic disorder', 'ICD10_2010'), +('F17.6', 'Mental & behavioural disorder due of tobacco: amnesic syndrome', 'ICD10_2010'), +('F17.7', 'Mental & behavioural disorder due of tobacco: residual & late-onset psychotic disorder', 'ICD10_2010'), +('F17.8', 'Mental & behavioural disorder due of tobacco: other mental & behavioural disorder', 'ICD10_2010'), +('F17.9', 'Mental & behavioural disorder due of tobacco: unspecified mental & behavioural disorder', 'ICD10_2010'), +('F18', 'Mental and behavioural disorders due to use of volatile solvents', 'ICD10_2010'), +('F18.0', 'Mental & behavioural disorder due of volatile solvents: acute intoxication', 'ICD10_2010'), +('F18.1', 'Mental & behavioural disorder due of volatile solvents: harmful use', 'ICD10_2010'), +('F18.2', 'Mental & behavioural disorder due of volatile solvents: dependence syndrome', 'ICD10_2010'), +('F18.3', 'Mental & behavioural disorder due of volatile solvents: withdrawal state', 'ICD10_2010'), +('F18.4', 'Mental & behavioural disorder due of volatile solvents: withdrawl state with delirium', 'ICD10_2010'), +('F18.5', 'Mental & behavioural disorder due of volatile solvents: psychotic disorder', 'ICD10_2010'), +('F18.6', 'Mental & behavioural disorder due of volatile solvents: amnesic syndrome', 'ICD10_2010'), +('F18.7', 'Mental & behavioural disorder due of volatile solvents: residual & late-onset psychotic disorder', 'ICD10_2010'), +('F18.8', 'Mental & behavioural disorder due of volatile solvents: other mental & behavioural disorder', 'ICD10_2010'), +('F18.9', 'Mental & behavioural disorder due of volatile solvents: unspecified mental & behavioural disorder', 'ICD10_2010'), +('F19', 'Mental and behavioural disorders due to multiple drug use and use of other psychoactive substances', 'ICD10_2010'), +('F19.0', 'Mental & behavioural disorder due to multiple drug use and use of other psychoactive substances: acute intoxication', 'ICD10_2010'), +('F19.1', 'Mental & behavioural disorder due to multiple drug use and use of other psychoactive substances: harmful use', 'ICD10_2010'), +('F19.2', 'Mental & behavioural disorder due to multiple drug use and use of other psychoactive substances: dependence syndrome', 'ICD10_2010'), +('F19.3', 'Mental & behavioural disorder due to multiple drug use and use of other psychoactive substances: withdrawal state', 'ICD10_2010'), +('F19.4', 'Mental & behavioural disorder due to multiple drug use and use of other psychoactive substances: withdrawl state with delirium', 'ICD10_2010'), +('F19.5', 'Mental & behavioural disorder due to multiple drug use and use of other psychoactive substances: psychotic disorder', 'ICD10_2010'), +('F19.6', 'Mental & behavioural disorder due to multiple drug use and use of other psychoactive substances: amnesic syndrome', 'ICD10_2010'), +('F19.7', 'Mental & behavioural disorder due to multiple drug use and use of other psychoactive substances: residual & late-onset psychotic disorder', 'ICD10_2010'), +('F19.8', 'Mental & behavioural disorder due to multiple drug use and use of other psychoactive substances: other mental & behavioural disorder', 'ICD10_2010'), +('F19.9', 'Mental & behavioural disorder due to multiple drug use and use of other psychoactive substances: unspecified mental & behavioural disorder', 'ICD10_2010'), +('F20', 'Schizophrenia', 'ICD10_2010'), +('F20.0', 'Paranoid schizophrenia', 'ICD10_2010'), +('F20.1', 'Hebephrenic schizophrenia', 'ICD10_2010'), +('F20.2', 'Catatonic schizophrenia', 'ICD10_2010'), +('F20.3', 'Undifferentiated schizophrenia', 'ICD10_2010'), +('F20.4', 'Post-schizophrenic depression', 'ICD10_2010'), +('F20.5', 'Residual schizophrenia', 'ICD10_2010'), +('F20.6', 'Simple schizophrenia', 'ICD10_2010'), +('F20.8', 'Other schizophrenia', 'ICD10_2010'), +('F20.9', 'Schizophrenia, unspecified', 'ICD10_2010'), +('F21', 'Schizotypal disorder', 'ICD10_2010'), +('F22', 'Persistent delusional disorders', 'ICD10_2010'), +('F22.0', 'Delusional disorder', 'ICD10_2010'), +('F22.8', 'Other persistent delusional disorders', 'ICD10_2010'), +('F22.9', 'Persistent delusional disorder, unspecified', 'ICD10_2010'), +('F23', 'Acute and transient psychotic disorders', 'ICD10_2010'), +('F23.0', 'Acute polymorphic psychot disorder without symptoms of schizophrenia', 'ICD10_2010'), +('F23.1', 'Acute polymorphic psychot disorder with symptoms of schizophrenia', 'ICD10_2010'), +('F23.2', 'Acute schizophrenia-like psychotic disorder', 'ICD10_2010'), +('F23.3', 'Other acute predominantly delusional psychotic disorders', 'ICD10_2010'), +('F23.8', 'Other acute and transient psychotic disorders', 'ICD10_2010'), +('F23.9', 'Acute and transient psychotic disorder, unspecified', 'ICD10_2010'), +('F24', 'Induced delusional disorder', 'ICD10_2010'), +('F25', 'Schizoaffective disorders', 'ICD10_2010'), +('F25.0', 'Schizoaffective disorder, manic type', 'ICD10_2010'), +('F25.1', 'Schizoaffective disorder, depressive type', 'ICD10_2010'), +('F25.2', 'Schizoaffective disorder, mixed type', 'ICD10_2010'), +('F25.8', 'Other schizoaffective disorders', 'ICD10_2010'), +('F25.9', 'Schizoaffective disorder, unspecified', 'ICD10_2010'), +('F28', 'Other nonorganic psychotic disorders', 'ICD10_2010'), +('F29', 'Unspecified nonorganic psychosis', 'ICD10_2010'), +('F30', 'Manic episode', 'ICD10_2010'), +('F30.0', 'Hypomania', 'ICD10_2010'), +('F30.1', 'Mania without psychotic symptoms', 'ICD10_2010'), +('F30.2', 'Mania with psychotic symptoms', 'ICD10_2010'), +('F30.8', 'Other manic episodes', 'ICD10_2010'), +('F30.9', 'Manic episode, unspecified', 'ICD10_2010'), +('F31', 'Bipolar affective disorder', 'ICD10_2010'), +('F31.0', 'Bipolar affective disorder, current episode hypomanic', 'ICD10_2010'), +('F31.1', 'Bipolar affective disorder, current episode without psychotic symptoms', 'ICD10_2010'), +('F31.2', 'Bipolar affective disorder, current episode manic with psychotic symptoms', 'ICD10_2010'), +('F31.3', 'Bipolar affective disorder, current episode mild or moderate depression', 'ICD10_2010'), +('F31.4', 'Bipolar affective disorder, current episode severe depression without psychotic symptoms', 'ICD10_2010'), +('F31.5', 'Bipolar affective disorder, current episode severe depression with psychotic symptoms', 'ICD10_2010'), +('F31.6', 'Bipolar affective disorder, current episode mixed', 'ICD10_2010'), +('F31.7', 'Bipolar affective disorder, currently in remission', 'ICD10_2010'), +('F31.8', 'Other bipolar affective disorders', 'ICD10_2010'), +('F31.9', 'Bipolar affective disorder, unspecified', 'ICD10_2010'), +('F32', 'Depressive episode', 'ICD10_2010'), +('F32.0', 'Mild depressive episode', 'ICD10_2010'), +('F32.1', 'Moderate depressive episode', 'ICD10_2010'), +('F32.2', 'Severe depressive episode without psychotic symptoms', 'ICD10_2010'), +('F32.3', 'Severe depressive episode with psychotic symptoms', 'ICD10_2010'), +('F32.8', 'Other depressive episodes', 'ICD10_2010'), +('F32.9', 'Depressive episode, unspecified', 'ICD10_2010'), +('F33', 'Recurrent depressive disorder', 'ICD10_2010'), +('F33.0', 'Recurrent depressive disorder, current episode mild', 'ICD10_2010'), +('F33.1', 'Recurrent depressive disorder, current episode moderate', 'ICD10_2010'), +('F33.2', 'Recurrent depress disorder current episode severe without symptoms', 'ICD10_2010'), +('F33.3', 'Recurrent depress disorder current episode severe with psyc symp', 'ICD10_2010'), +('F33.4', 'Recurrent depressive disorder, currently in remission', 'ICD10_2010'), +('F33.8', 'Other recurrent depressive disorders', 'ICD10_2010'), +('F33.9', 'Recurrent depressive disorder, unspecified', 'ICD10_2010'), +('F34', 'Persistent mood [affective] disorders', 'ICD10_2010'), +('F34.0', 'Cyclothymia', 'ICD10_2010'), +('F34.1', 'Dysthymia', 'ICD10_2010'), +('F34.8', 'Other persistent mood [affective] disorders', 'ICD10_2010'), +('F34.9', 'Persistent mood [affective] disorder, unspecified', 'ICD10_2010'), +('F38', 'Other mood [affective] disorders', 'ICD10_2010'), +('F38.0', 'Other single mood [affective] disorders', 'ICD10_2010'), +('F38.1', 'Other recurrent mood [affective] disorders', 'ICD10_2010'), +('F38.8', 'Other specified mood [affective] disorders', 'ICD10_2010'), +('F39', 'Unspecified mood [affective] disorder', 'ICD10_2010'), +('F40', 'Phobic anxiety disorders', 'ICD10_2010'), +('F40.0', 'Agoraphobia', 'ICD10_2010'), +('F40.1', 'Social phobias', 'ICD10_2010'), +('F40.2', 'Specific (isolated) phobias', 'ICD10_2010'), +('F40.8', 'Other phobic anxiety disorders', 'ICD10_2010'), +('F40.9', 'Phobic anxiety disorder, unspecified', 'ICD10_2010'), +('F41', 'Other anxiety disorders', 'ICD10_2010'), +('F41.0', 'Panic disorder [episodic paroxysmal anxiety]', 'ICD10_2010'), +('F41.1', 'Generalized anxiety disorder', 'ICD10_2010'), +('F41.2', 'Mixed anxiety and depressive disorder', 'ICD10_2010'), +('F41.3', 'Other mixed anxiety disorders', 'ICD10_2010'), +('F41.8', 'Other specified anxiety disorders', 'ICD10_2010'), +('F41.9', 'Anxiety disorder, unspecified', 'ICD10_2010'), +('F42', 'Obsessive-compulsive disorder', 'ICD10_2010'), +('F42.0', 'Predominantly obsessional thoughts or ruminations', 'ICD10_2010'), +('F42.1', 'Predominantly compulsive acts [obsessional rituals]', 'ICD10_2010'), +('F42.2', 'Mixed obsessional thoughts and acts', 'ICD10_2010'), +('F42.8', 'Other obsessive-compulsive disorders', 'ICD10_2010'), +('F42.9', 'Obsessive-compulsive disorder, unspecified', 'ICD10_2010'), +('F43', 'Reaction to severe stress, and adjustment disorders', 'ICD10_2010'), +('F43.0', 'Acute stress reaction', 'ICD10_2010'), +('F43.1', 'Post-traumatic stress disorder', 'ICD10_2010'), +('F43.2', 'Adjustment disorders', 'ICD10_2010'), +('F43.8', 'Other reactions to severe stress', 'ICD10_2010'), +('F43.9', 'Reaction to severe stress, unspecified', 'ICD10_2010'), +('F44', 'Dissociative [conversion] disorders', 'ICD10_2010'), +('F44.0', 'Dissociative amnesia', 'ICD10_2010'), +('F44.1', 'Dissociative fugue', 'ICD10_2010'), +('F44.2', 'Dissociative stupor', 'ICD10_2010'), +('F44.3', 'Trance and possession disorders', 'ICD10_2010'), +('F44.4', 'Dissociative motor disorders', 'ICD10_2010'), +('F44.5', 'Dissociative convulsions', 'ICD10_2010'), +('F44.6', 'Dissociative anaesthesia and sensory loss', 'ICD10_2010'), +('F44.7', 'Mixed dissociative [conversion] disorders', 'ICD10_2010'), +('F44.8', 'Other dissociative [conversion] disorders', 'ICD10_2010'), +('F44.9', 'Dissociative [conversion] disorder, unspecified', 'ICD10_2010'), +('F45', 'Somatoform disorders', 'ICD10_2010'), +('F45.0', 'Somatization disorder', 'ICD10_2010'), +('F45.1', 'Undifferentiated somatoform disorder', 'ICD10_2010'), +('F45.2', 'Hypochondriacal disorder', 'ICD10_2010'), +('F45.3', 'Somatoform autonomic dysfunction', 'ICD10_2010'), +('F45.4', 'Persistent somatoform pain disorder', 'ICD10_2010'), +('F45.8', 'Other somatoform disorders', 'ICD10_2010'), +('F45.9', 'Somatoform disorder, unspecified', 'ICD10_2010'), +('F48', 'Other neurotic disorders', 'ICD10_2010'), +('F48.0', 'Neurasthenia', 'ICD10_2010'), +('F48.1', 'Depersonalization-derealization syndrome', 'ICD10_2010'), +('F48.8', 'Other specified neurotic disorders', 'ICD10_2010'), +('F48.9', 'Neurotic disorder, unspecified', 'ICD10_2010'), +('F50', 'Eating disorders', 'ICD10_2010'), +('F50.0', 'Anorexia nervosa', 'ICD10_2010'), +('F50.1', 'Atypical anorexia nervosa', 'ICD10_2010'), +('F50.2', 'Bulimia nervosa', 'ICD10_2010'), +('F50.3', 'Atypical bulimia nervosa', 'ICD10_2010'), +('F50.4', 'Overeating associated with other psychological disturbances', 'ICD10_2010'), +('F50.5', 'Vomiting associated with other psychological disturbances', 'ICD10_2010'), +('F50.8', 'Other eating disorders', 'ICD10_2010'), +('F50.9', 'Eating disorder, unspecified', 'ICD10_2010'), +('F51', 'Nonorganic sleep disorders', 'ICD10_2010'), +('F51.0', 'Nonorganic insomnia', 'ICD10_2010'), +('F51.1', 'Nonorganic hypersomnia', 'ICD10_2010'), +('F51.2', 'Nonorganic disorder of the sleep-wake schedule', 'ICD10_2010'), +('F51.3', 'Sleepwalking [somnambulism]', 'ICD10_2010'), +('F51.4', 'Sleep terrors [night terrors]', 'ICD10_2010'), +('F51.5', 'Nightmares', 'ICD10_2010'), +('F51.8', 'Other nonorganic sleep disorders', 'ICD10_2010'), +('F51.9', 'Nonorganic sleep disorder, unspecified', 'ICD10_2010'), +('F52', 'Sexual dysfunction, not caused by organic disorder or disease', 'ICD10_2010'), +('F52.0', 'Lack or loss of sexual desire', 'ICD10_2010'), +('F52.1', 'Sexual aversion and lack of sexual enjoyment', 'ICD10_2010'), +('F52.2', 'Failure of genital response', 'ICD10_2010'), +('F52.3', 'Orgasmic dysfunction', 'ICD10_2010'), +('F52.4', 'Premature ejaculation', 'ICD10_2010'), +('F52.5', 'Nonorganic vaginismus', 'ICD10_2010'), +('F52.6', 'Nonorganic dyspareunia', 'ICD10_2010'), +('F52.7', 'Excessive sexual drive', 'ICD10_2010'), +('F52.8', 'Other sexual dysfunction not caused by organic disorder/disease', 'ICD10_2010'), +('F52.9', 'Unspecified sexual dysfunction not caused by organic disorder or disease', 'ICD10_2010'), +('F53', 'Mental and behavioural disorders associated with the puerperium, not elsewhere classified', 'ICD10_2010'), +('F53.0', 'Mild mental and behavioural disorder associated with the puerperium NEC', 'ICD10_2010'), +('F53.1', 'Severe mental and behavioural disorder associated with puerperium NEC', 'ICD10_2010'), +('F53.8', 'Other mental and behavioural disorder associated with the puerperium NEC', 'ICD10_2010'), +('F53.9', 'Puerperal mental disorder, unspecified', 'ICD10_2010'), +('F54', 'Psychological and behavioural factor associated with disord or disease Classified elsewhere', 'ICD10_2010'), +('F55', 'Abuse of non-dependence-producing substances', 'ICD10_2010'), +('F59', 'Unspecified behavaviural syndrome associated with physiological disturbances and physical factor', 'ICD10_2010'), +('F60', 'Specific personality disorders', 'ICD10_2010'), +('F60.0', 'Paranoid personality disorder', 'ICD10_2010'), +('F60.1', 'Schizoid personality disorder', 'ICD10_2010'), +('F60.2', 'Dissocial personality disorder', 'ICD10_2010'), +('F60.3', 'Emotionally unstable personality disorder', 'ICD10_2010'), +('F60.4', 'Histrionic personality disorder', 'ICD10_2010'), +('F60.5', 'Anankastic personality disorder', 'ICD10_2010'), +('F60.6', 'Anxious [avoidant] personality disorder', 'ICD10_2010'), +('F60.7', 'Dependent personality disorder', 'ICD10_2010'), +('F60.8', 'Other specific personality disorders', 'ICD10_2010'), +('F60.9', 'Personality disorder, unspecified', 'ICD10_2010'), +('F61', 'Mixed and other personality disorders', 'ICD10_2010'), +('F62', 'Enduring personality changes, not attributable to brain damage and disease', 'ICD10_2010'), +('F62.0', 'Enduring personality change after catastrophic experience', 'ICD10_2010'), +('F62.1', 'Enduring personality change after psychiatric illness', 'ICD10_2010'), +('F62.8', 'Other enduring personality changes', 'ICD10_2010'), +('F62.9', 'Enduring personality change, unspecified', 'ICD10_2010'), +('F63', 'Habit and impulse disorders', 'ICD10_2010'), +('F63.0', 'Pathological gambling', 'ICD10_2010'), +('F63.1', 'Pathological fire-setting [pyromania]', 'ICD10_2010'), +('F63.2', 'Pathological stealing [kleptomania]', 'ICD10_2010'), +('F63.3', 'Trichotillomania', 'ICD10_2010'), +('F63.8', 'Other habit and impulse disorders', 'ICD10_2010'), +('F63.9', 'Habit and impulse disorder, unspecified', 'ICD10_2010'), +('F64', 'Gender identity disorders', 'ICD10_2010'), +('F64.0', 'Transsexualism', 'ICD10_2010'), +('F64.1', 'Dual-role transvestism', 'ICD10_2010'), +('F64.2', 'Gender identity disorder of childhood', 'ICD10_2010'), +('F64.8', 'Other gender identity disorders', 'ICD10_2010'), +('F64.9', 'Gender identity disorder, unspecified', 'ICD10_2010'), +('F65', 'Disorders of sexual preference', 'ICD10_2010'), +('F65.0', 'Fetishism', 'ICD10_2010'), +('F65.1', 'Fetishistic transvestism', 'ICD10_2010'), +('F65.2', 'Exhibitionism', 'ICD10_2010'), +('F65.3', 'Voyeurism', 'ICD10_2010'), +('F65.4', 'Paedophilia', 'ICD10_2010'), +('F65.5', 'Sadomasochism', 'ICD10_2010'), +('F65.6', 'Multiple disorders of sexual preference', 'ICD10_2010'), +('F65.8', 'Other disorders of sexual preference', 'ICD10_2010'), +('F65.9', 'Disorder of sexual preference, unspecified', 'ICD10_2010'), +('F66', 'Psychological and behavioural disorders associated with sexual development and orientation', 'ICD10_2010'), +('F66.0', 'Sexual maturation disorder', 'ICD10_2010'), +('F66.1', 'Egodystonic sexual orientation', 'ICD10_2010'), +('F66.2', 'Sexual relationship disorder', 'ICD10_2010'), +('F66.8', 'Other psychosexual development disorders', 'ICD10_2010'), +('F66.9', 'Psychosexual development disorder, unspecified', 'ICD10_2010'), +('F68', 'Other disorders of adult personality and behaviour', 'ICD10_2010'), +('F68.0', 'Elaboration of physical symptoms for psychological reasons', 'ICD10_2010'), +('F68.1', 'Intentional production/feigning of symptoms/disabilities either physical/psychological [factititous disorder)', 'ICD10_2010'), +('F68.8', 'Other specified disorders of adult personality and behaviour', 'ICD10_2010'), +('F69', 'Unspecified disorder of adult personality and behaviour', 'ICD10_2010'), +('F70', 'Mild mental retardation', 'ICD10_2010'), +('F70.0', 'Mild mental retardation: with statement no or minimal, impairment of behaviour', 'ICD10_2010'), +('F70.1', 'Mild mental retardation: significant impairment behaviour requiring attentiom / treatment', 'ICD10_2010'), +('F70.8', 'Mild mental retardation: other impairments of behaviour', 'ICD10_2010'), +('F70.9', 'Mild mental retardation: without mention of impairment behaviour', 'ICD10_2010'), +('F71', 'Moderate mental retardation', 'ICD10_2010'), +('F71.0', 'Mod mental retardation: with statement no or minimal, impairment of behaviour', 'ICD10_2010'), +('F71.1', 'Mod mental retardation: significant impairment behaviour requiring attentiom / treatment', 'ICD10_2010'), +('F71.8', 'Mod mental retardation: other impairments of behaviour', 'ICD10_2010'), +('F71.9', 'Mod mental retardation: without mention of impairment behaviour', 'ICD10_2010'), +('F72', 'Severe mental retardation', 'ICD10_2010'), +('F72.0', 'Severe mental retardation: with statement no or minimal, impairment of behaviour', 'ICD10_2010'), +('F72.1', 'Severe mental retardation: significant impairment behaviour requiring attentiom / treatment', 'ICD10_2010'), +('F72.8', 'Severe mental retardation: other impairments of behaviour', 'ICD10_2010'), +('F72.9', 'Severe mental retardation: without mention of impairment behaviour', 'ICD10_2010'), +('F73', 'Profound mental retardation', 'ICD10_2010'), +('F73.0', 'Profound mental retardation: with statement no or minimal, impairment of behaviour', 'ICD10_2010'), +('F73.1', 'Profound mental retardation: significant impairment behaviour requiring attentiom / treatment', 'ICD10_2010'), +('F73.8', 'Profound mental retardation: other impairments of behaviour', 'ICD10_2010'), +('F73.9', 'Profound mental retardation: without mention of impairment behaviour', 'ICD10_2010'), +('F78', 'Other mental retardation', 'ICD10_2010'), +('F78.0', 'other mental retardation: with statement no or minimal, impairment of behaviour', 'ICD10_2010'), +('F78.1', 'other mental retardation: significant impairment behaviour requiring attentiom / treatment', 'ICD10_2010'), +('F78.8', 'other mental retardation: other impairments of behaviour', 'ICD10_2010'), +('F78.9', 'other mental retardation: without mention of impairment behaviour', 'ICD10_2010'), +('F79', 'Unspecified mental retardation', 'ICD10_2010'), +('F79.0', 'Unspecified mental retardation: with statement no or minimal, impairment of behaviour', 'ICD10_2010'), +('F79.1', 'Unspecified mental retardation: significant impairment behaviour requiring attentiom / treatment', 'ICD10_2010'), +('F79.8', 'Unspecified mental retardation: other impairments of behaviour', 'ICD10_2010'), +('F79.9', 'Unspecified mental retardation: without mention of impairment behaviour', 'ICD10_2010'), +('F80', 'Specific developmental disorders of speech and language', 'ICD10_2010'), +('F80.0', 'Specific speech articulation disorder', 'ICD10_2010'), +('F80.1', 'Expressive language disorder', 'ICD10_2010'), +('F80.2', 'Receptive language disorder', 'ICD10_2010'), +('F80.3', 'Acquired aphasia with epilepsy [landau-kleffner]', 'ICD10_2010'), +('F80.8', 'Other developmental disorders of speech and language', 'ICD10_2010'), +('F80.9', 'Developmental disorder of speech and language, unspecified', 'ICD10_2010'), +('F81', 'Specific developmental disorders of scholastic skills', 'ICD10_2010'), +('F81.0', 'Specific reading disorder', 'ICD10_2010'), +('F81.1', 'Specific spelling disorder', 'ICD10_2010'), +('F81.2', 'Specific disorder of arithmetical skills', 'ICD10_2010'), +('F81.3', 'Mixed disorder of scholastic skills', 'ICD10_2010'), +('F81.8', 'Other developmental disorders of scholastic skills', 'ICD10_2010'), +('F81.9', 'Developmental disorder of scholastic skills, unspecified', 'ICD10_2010'), +('F82', 'Specific developmental disorder of motor function', 'ICD10_2010'), +('F83', 'Mixed specific developmental disorders', 'ICD10_2010'), +('F84', 'Pervasive developmental disorders', 'ICD10_2010'), +('F84.0', 'Childhood autism', 'ICD10_2010'), +('F84.1', 'Atypical autism', 'ICD10_2010'), +('F84.2', 'Rett\'s syndrome', 'ICD10_2010'), +('F84.3', 'Other childhood disintegrative disorder', 'ICD10_2010'), +('F84.4', 'Overactive disorder associated with mental retardation and stereotype movements', 'ICD10_2010'), +('F84.5', 'Asperger\'s syndrome', 'ICD10_2010'), +('F84.8', 'Other pervasive developmental disorders', 'ICD10_2010'), +('F84.9', 'Pervasive developmental disorder, unspecified', 'ICD10_2010'), +('F88', 'Other disorders of psychological development', 'ICD10_2010'), +('F89', 'Unspecified disorder of psychological development', 'ICD10_2010'), +('F90', 'Hyperkinetic disorders', 'ICD10_2010'), +('F90.0', 'Disturbance of activity and attention', 'ICD10_2010'), +('F90.1', 'Hyperkinetic conduct disorder', 'ICD10_2010'), +('F90.8', 'Other hyperkinetic disorders', 'ICD10_2010'), +('F90.9', 'Hyperkinetic disorder, unspecified', 'ICD10_2010'), +('F91', 'Conduct disorders', 'ICD10_2010'), +('F91.0', 'Conduct disorder confined to the family context', 'ICD10_2010'), +('F91.1', 'Unsocialized conduct disorder', 'ICD10_2010'), +('F91.2', 'Socialized conduct disorder', 'ICD10_2010'), +('F91.3', 'Oppositional defiant disorder', 'ICD10_2010'), +('F91.8', 'Other conduct disorders', 'ICD10_2010'), +('F91.9', 'Conduct disorder, unspecified', 'ICD10_2010'), +('F92', 'Mixed disorders of conduct and emotions', 'ICD10_2010'), +('F92.0', 'Depressive conduct disorder', 'ICD10_2010'), +('F92.8', 'Other mixed disorders of conduct and emotions', 'ICD10_2010'), +('F92.9', 'Mixed disorder of conduct and emotions, unspecified', 'ICD10_2010'), +('F93', 'Emotional disorders with onset specific to childhood', 'ICD10_2010'), +('F93.0', 'Separation anxiety disorder of childhood', 'ICD10_2010'), +('F93.1', 'Phobic anxiety disorder of childhood', 'ICD10_2010'), +('F93.2', 'Social anxiety disorder of childhood', 'ICD10_2010'), +('F93.3', 'Sibling rivalry disorder', 'ICD10_2010'), +('F93.8', 'Other childhood emotional disorders', 'ICD10_2010'), +('F93.9', 'Childhood emotional disorder, unspecified', 'ICD10_2010'), +('F94', 'Disorders of social functioning with onset specific to childhood and adolescence', 'ICD10_2010'), +('F94.0', 'Elective mutism', 'ICD10_2010'), +('F94.1', 'Reactive attachment disorder of childhood', 'ICD10_2010'), +('F94.2', 'Disinhibited attachment disorder of childhood', 'ICD10_2010'), +('F94.8', 'Other childhood disorders of social functioning', 'ICD10_2010'), +('F94.9', 'Childhood disorder of social functioning, unspecified', 'ICD10_2010'), +('F95', 'Tic disorders', 'ICD10_2010'), +('F95.0', 'Transient tic disorder', 'ICD10_2010'), +('F95.1', 'Chronic motor or vocal tic disorder', 'ICD10_2010'), +('F95.2', 'Combined vocal multiple motor tic disorder [de la tourette]', 'ICD10_2010'), +('F95.8', 'Other tic disorders', 'ICD10_2010'), +('F95.9', 'Tic disorder, unspecified', 'ICD10_2010'), +('F98', 'Other behavioural and emotional disorders with onset usually occurring in childhood and adolescence', 'ICD10_2010'), +('F98.0', 'Nonorganic enuresis', 'ICD10_2010'), +('F98.1', 'Nonorganic encopresis', 'ICD10_2010'), +('F98.2', 'Feeding disorder of infancy and childhood', 'ICD10_2010'), +('F98.3', 'Pica of infancy and childhood', 'ICD10_2010'), +('F98.4', 'Stereotyped movement disorders', 'ICD10_2010'), +('F98.5', 'Stuttering [stammering]', 'ICD10_2010'), +('F98.6', 'Cluttering', 'ICD10_2010'), +('F98.8', 'Other behavioral and emotional disorder onset usually ocurring childhood adolescence', 'ICD10_2010'), +('F98.9', 'Unspecified behavioral and emotional disorder onset usually ocurring childhood adolescence', 'ICD10_2010'), +('F99', 'Mental disorder, not otherwise specified', 'ICD10_2010'), +('G00', 'Bacterial meningitis, not elsewhere classified', 'ICD10_2010'), +('G00.0', 'Haemophilus meningitis', 'ICD10_2010'), +('G00.1', 'Pneumococcal meningitis', 'ICD10_2010'), +('G00.2', 'Streptococcal meningitis', 'ICD10_2010'), +('G00.3', 'Staphylococcal meningitis', 'ICD10_2010'), +('G00.8', 'Other bacterial meningitis', 'ICD10_2010'), +('G00.9', 'Bacterial meningitis, unspecified', 'ICD10_2010'), +('G01', 'Meningitis in bacterial diseases classified elsewhere', 'ICD10_2010'), +('G02', 'Meningitis in other infectious and parasitic diseases classified elsewhere', 'ICD10_2010'), +('G02.0', 'Meningitis in viral diseases classified elsewhere', 'ICD10_2010'), +('G02.1', 'Meningitis in mycoses', 'ICD10_2010'), +('G02.8', 'Meningitis in other spec infectious and parasitic dis ec', 'ICD10_2010'), +('G03', 'Meningitis due to other and unspecified causes', 'ICD10_2010'), +('G03.0', 'Nonpyogenic meningitis', 'ICD10_2010'), +('G03.1', 'Chronic meningitis', 'ICD10_2010'), +('G03.2', 'Benign recurrent meningitis [mollaret]', 'ICD10_2010'), +('G03.8', 'Meningitis due to other specified causes', 'ICD10_2010'), +('G03.9', 'Meningitis, unspecified', 'ICD10_2010'), +('G04', 'Encephalitis, myelitis and encephalomyelitis', 'ICD10_2010'), +('G04.0', 'Acute disseminated encephalitis', 'ICD10_2010'), +('G04.1', 'Tropical spastic paraplegia', 'ICD10_2010'), +('G04.2', 'Bacterial meningoencephalitis and meningomyelitis nec', 'ICD10_2010'), +('G04.8', 'Other encephalitis, myelitis and encephalomyelitis', 'ICD10_2010'), +('G04.9', 'Encephalitis, myelitis and encephalomyelitis, unspecified', 'ICD10_2010'), +('G05', 'Encephalitis, myelitis and encephalomyelitis in diseases classified elsewhere', 'ICD10_2010'), +('G05.0', 'Encephalitis, myelitis & encephalomyelitis in bacterial disease classified elsewhere', 'ICD10_2010'), +('G05.1', 'Encephalitis, myelitis & encephalomyelitis in viral disease classified elsewhere', 'ICD10_2010'), +('G05.2', 'Encephalitis myelitis encphlomyelitis infectious and parasitic disease classified elsewhere', 'ICD10_2010'), +('G05.8', 'Encephalitis, myelitis & encephalomyelitis in other disease classified elsewhere', 'ICD10_2010'), +('G06', 'Intracranial and intraspinal abscess and granuloma', 'ICD10_2010'), +('G06.0', 'Intracranial abscess and granuloma', 'ICD10_2010'), +('G06.1', 'Intraspinal abscess and granuloma', 'ICD10_2010'), +('G06.2', 'Extradural and subdural abscess, unspecified', 'ICD10_2010'), +('G07', 'Intracranial and intraspinal abscess and granuloma disease classified elsewhere', 'ICD10_2010'), +('G08', 'Intracranial and intraspinal phlebitis and thrombophlebitis', 'ICD10_2010'), +('G09', 'Sequelae of inflammatory diseases of central nervous system', 'ICD10_2010'), +('G10', 'Huntington\'s disease', 'ICD10_2010'), +('G11', 'Hereditary ataxia', 'ICD10_2010'), +('G11.0', 'Congenital nonprogressive ataxia', 'ICD10_2010'), +('G11.1', 'Early-onset cerebellar ataxia', 'ICD10_2010'), +('G11.2', 'Late-onset cerebellar ataxia', 'ICD10_2010'), +('G11.3', 'Cerebellar ataxia with defective dna repair', 'ICD10_2010'), +('G11.4', 'Hereditary spastic paraplegia', 'ICD10_2010'), +('G11.8', 'Other hereditary ataxias', 'ICD10_2010'), +('G11.9', 'Hereditary ataxia, unspecified', 'ICD10_2010'), +('G12', 'Spinal muscular atrophy and related syndromes', 'ICD10_2010'), +('G12.0', 'Infantile spinal muscular atrophy, type i [werdnig-hoffman]', 'ICD10_2010'), +('G12.1', 'Other inherited spinal muscular atrophy', 'ICD10_2010'), +('G12.2', 'Motor neuron disease', 'ICD10_2010'), +('G12.8', 'Other spinal muscular atrophies and related syndromes', 'ICD10_2010'), +('G12.9', 'Spinal muscular atrophy, unspecified', 'ICD10_2010'), +('G13', 'Systemic atrophies primarily affecting central nervous system in diseases classified elsewhere', 'ICD10_2010'), +('G13.0', 'Paraneoplastic neuromyopathy and neuropathy', 'ICD10_2010'), +('G13.1', 'Other systemic atrophy primarily affect central nervous system neoplastic disease', 'ICD10_2010'), +('G13.2', 'Systemic atrophy primarily affecting central nervous system in myxoedema', 'ICD10_2010'), +('G13.8', 'Systemic atrophy primarily affecting central nervous system other disease classified elsewhere', 'ICD10_2010'), +('G14', 'Postpolio syndrome', 'ICD10_2010'), +('G20', 'Parkinson\'s disease', 'ICD10_2010'), +('G21', 'Secondary parkinsonism', 'ICD10_2010'), +('G21.0', 'Malignant neuroleptic syndrome', 'ICD10_2010'), +('G21.1', 'Other drug-induced secondary parkinsonism', 'ICD10_2010'), +('G21.2', 'Secondary parkinsonism due to other external agents', 'ICD10_2010'), +('G21.3', 'Postencephalitic parkinsonism', 'ICD10_2010'), +('G21.4', 'Vascular parkinsonism', 'ICD10_2010'), +('G21.8', 'Other secondary parkinsonism', 'ICD10_2010'), +('G21.9', 'Secondary parkinsonism, unspecified', 'ICD10_2010'), +('G22', 'Parkinsonism in diseases classified elsewhere', 'ICD10_2010'), +('G23', 'Other degenerative diseases of basal ganglia', 'ICD10_2010'), +('G23.0', 'Hallervorden-Spatz disease', 'ICD10_2010'), +('G23.1', 'Progressive supranuclear ophthalmoplegia', 'ICD10_2010'), +('G23.2', 'Striatonigral degeneration', 'ICD10_2010'), +('G23.8', 'Other specified degenerative diseases of basal ganglia', 'ICD10_2010'), +('G23.9', 'Degenerative disease of basal ganglia, unspecified', 'ICD10_2010'), +('G24', 'Dystonia', 'ICD10_2010'), +('G24.0', 'Drug-induced dystonia', 'ICD10_2010'), +('G24.1', 'Idiopathic familial dystonia', 'ICD10_2010'), +('G24.2', 'Idiopathic nonfamilial dystonia', 'ICD10_2010'), +('G24.3', 'Spasmodic torticollis', 'ICD10_2010'), +('G24.4', 'Idiopathic orofacial dystonia', 'ICD10_2010'), +('G24.5', 'Blepharospasm', 'ICD10_2010'), +('G24.8', 'Other dystonia', 'ICD10_2010'), +('G24.9', 'Dystonia, unspecified', 'ICD10_2010'), +('G25', 'Other extrapyramidal and movement disorders', 'ICD10_2010'), +('G25.0', 'Essential tremor', 'ICD10_2010'), +('G25.1', 'Drug-induced tremor', 'ICD10_2010'), +('G25.2', 'Other specified forms of tremor', 'ICD10_2010'), +('G25.3', 'Myoclonus', 'ICD10_2010'), +('G25.4', 'Drug-induced chorea', 'ICD10_2010'), +('G25.5', 'Other chorea', 'ICD10_2010'), +('G25.6', 'Drug-induced tics and other tics of organic origin', 'ICD10_2010'), +('G25.8', 'Other specified extrapyramidal and movement disorders', 'ICD10_2010'), +('G25.9', 'Extrapyramidal and movement disorder, unspecified', 'ICD10_2010'), +('G26', 'Extrapyramidal and movement disorders in disease classified elsewhere', 'ICD10_2010'), +('G30', 'Alzheimer disease', 'ICD10_2010'), +('G30.0', 'Alzheimer\'s disease with early onset', 'ICD10_2010'), +('G30.1', 'Alzheimer\'s disease with late onset', 'ICD10_2010'), +('G30.8', 'Other alzheimer\'s disease', 'ICD10_2010'), +('G30.9', 'Alzheimer\'s disease, unspecified', 'ICD10_2010'), +('G31', 'Other degenerative diseases of nervous system, not elsewhere classified', 'ICD10_2010'), +('G31.0', 'Circumscribed brain atrophy', 'ICD10_2010'), +('G31.1', 'Senile degeneration of brain, not elsewhere classified', 'ICD10_2010'), +('G31.2', 'Degeneration of nervous system due to alcohol', 'ICD10_2010'), +('G31.8', 'Other specified degenerative diseases of nervous system', 'ICD10_2010'), +('G31.9', 'Degenerative disease of nervous system, unspecified', 'ICD10_2010'), +('G32', 'Other degenerative disorders of nervous system in diseases classified elsewhere', 'ICD10_2010'), +('G32.0', 'Subacute combined degeneration of spinal cord in dis ec', 'ICD10_2010'), +('G32.8', 'Other spec degenerative disorders of nervous system dis ec', 'ICD10_2010'), +('G35', 'Multiple sclerosis', 'ICD10_2010'), +('G36', 'Other acute disseminated demyelination', 'ICD10_2010'), +('G36.0', 'Neuromyelitis optica [devic]', 'ICD10_2010'), +('G36.1', 'Acute and subacute haemorrhagic leukoencephalitis [hurst]', 'ICD10_2010'), +('G36.8', 'Other specified acute disseminated demyelination', 'ICD10_2010'), +('G36.9', 'Acute disseminated demyelination, unspecified', 'ICD10_2010'), +('G37', 'Other demyelinating diseases of central nervous system', 'ICD10_2010'), +('G37.0', 'Diffuse sclerosis', 'ICD10_2010'), +('G37.1', 'Central demyelination of corpus callosum', 'ICD10_2010'), +('G37.2', 'Central pontine myelinolysis', 'ICD10_2010'), +('G37.3', 'Acute transverse myelitis in demyelinating disease of cns', 'ICD10_2010'), +('G37.4', 'Subacute necrotizing myelitis', 'ICD10_2010'), +('G37.5', 'Concentric sclerosis [bal-]', 'ICD10_2010'), +('G37.8', 'Other spec demyelinating diseases of central nervous system', 'ICD10_2010'), +('G37.9', 'Demyelinating disease of central nervous system, unspecified', 'ICD10_2010'), +('G40', 'Epilepsy', 'ICD10_2010'), +('G40.0', 'Localization-related(focal)(partial)idiopathic epilepsy / epileptic syndromes seizures localized onset', 'ICD10_2010'), +('G40.1', 'Localization-related(focal)(partial)idiopathic epilepsy / epileptic syndromes with simple partial seizures', 'ICD10_2010'), +('G40.2', 'Localization-related(focal)(partial)idiopathic epilepsy / epileptic syndromes with complex partial seizures', 'ICD10_2010'), +('G40.3', 'Generalized idiopathic epilepsy and epileptic syndromes', 'ICD10_2010'), +('G40.4', 'Other generalized epilepsy and epileptic syndromes', 'ICD10_2010'), +('G40.5', 'Special epileptic syndromes', 'ICD10_2010'), +('G40.6', 'Grand mal seizures, unspecified (with or without petit mal)', 'ICD10_2010'); +INSERT INTO `icd10` (`ID_ICD10`, `Diagnosa`, `Versi_ICD10`) VALUES +('G40.7', 'Petit mal, unspecified, without grand mal seizures', 'ICD10_2010'), +('G40.8', 'Other epilepsy', 'ICD10_2010'), +('G40.9', 'Epilepsy, unspecified', 'ICD10_2010'), +('G41', 'Status epilepticus', 'ICD10_2010'), +('G41.0', 'Grand mal status epilepticus', 'ICD10_2010'), +('G41.1', 'Petit mal status epilepticus', 'ICD10_2010'), +('G41.2', 'Complex partial status epilepticus', 'ICD10_2010'), +('G41.8', 'Other status epilepticus', 'ICD10_2010'), +('G41.9', 'Status epilepticus, unspecified', 'ICD10_2010'), +('G43', 'Migraine', 'ICD10_2010'), +('G43.0', 'Migraine without aura [common migraine]', 'ICD10_2010'), +('G43.1', 'Migraine with aura [classical migraine]', 'ICD10_2010'), +('G43.2', 'Status migrainosus', 'ICD10_2010'), +('G43.3', 'Complicated migraine', 'ICD10_2010'), +('G43.8', 'Other migraine', 'ICD10_2010'), +('G43.9', 'Migraine, unspecified', 'ICD10_2010'), +('G44', 'Other headache syndromes', 'ICD10_2010'), +('G44.0', 'Cluster headache syndrome', 'ICD10_2010'), +('G44.1', 'Vascular headache, not elsewhere classified', 'ICD10_2010'), +('G44.2', 'Tension-type headache', 'ICD10_2010'), +('G44.3', 'Chronic post-traumatic headache', 'ICD10_2010'), +('G44.4', 'Drug-induced headache, not elsewhere classified', 'ICD10_2010'), +('G44.8', 'Other specified headache syndromes', 'ICD10_2010'), +('G45', 'Transient cerebral ischaemic attacks and related syndromes', 'ICD10_2010'), +('G45.0', 'Vertebro-basilar artery syndrome', 'ICD10_2010'), +('G45.1', 'Carotid artery syndrome (hemispheric)', 'ICD10_2010'), +('G45.2', 'Multiple and bilateral precerebral artery syndromes', 'ICD10_2010'), +('G45.3', 'Amaurosis fugax', 'ICD10_2010'), +('G45.4', 'Transient global amnesia', 'ICD10_2010'), +('G45.8', 'Other transient cerebral ischaemic attacks and related synd', 'ICD10_2010'), +('G45.9', 'Transient cerebral ischaemic attack, unspecified', 'ICD10_2010'), +('G46', 'Vascular syndromes of brain in cerebrovascular diseases', 'ICD10_2010'), +('G46.0', 'Middle cerebral artery syndrome', 'ICD10_2010'), +('G46.1', 'Anterior cerebral artery syndrome', 'ICD10_2010'), +('G46.2', 'Posterior cerebral artery syndrome', 'ICD10_2010'), +('G46.3', 'Brain stem stroke syndrome', 'ICD10_2010'), +('G46.4', 'Cerebellar stroke syndrome', 'ICD10_2010'), +('G46.5', 'Pure motor lacunar syndrome', 'ICD10_2010'), +('G46.6', 'Pure sensory lacunar syndrome', 'ICD10_2010'), +('G46.7', 'Other lacunar syndromes', 'ICD10_2010'), +('G46.8', 'Other vascular syndromes of brain in cerebrovascular disease', 'ICD10_2010'), +('G47', 'Sleep disorders', 'ICD10_2010'), +('G47.0', 'Disorders of initiating and maintaining sleep [insomnias]', 'ICD10_2010'), +('G47.1', 'Disorders of excessive somnolence [hypersomnias]', 'ICD10_2010'), +('G47.2', 'Disorders of the sleep-wake schedule', 'ICD10_2010'), +('G47.3', 'Sleep apnoea', 'ICD10_2010'), +('G47.4', 'Narcolepsy and cataplexy', 'ICD10_2010'), +('G47.8', 'Other sleep disorders', 'ICD10_2010'), +('G47.9', 'Sleep disorder, unspecified', 'ICD10_2010'), +('G50', 'Disorders of trigeminal nerve', 'ICD10_2010'), +('G50.0', 'Trigeminal neuralgia', 'ICD10_2010'), +('G50.1', 'Atypical facial pain', 'ICD10_2010'), +('G50.8', 'Other disorders of trigeminal nerve', 'ICD10_2010'), +('G50.9', 'Disorder of trigeminal nerve, unspecified', 'ICD10_2010'), +('G51', 'Facial nerve disorders', 'ICD10_2010'), +('G51.0', 'Bell\'s palsy', 'ICD10_2010'), +('G51.1', 'Geniculate ganglionitis', 'ICD10_2010'), +('G51.2', 'Melkersson\'s syndrome', 'ICD10_2010'), +('G51.3', 'Clonic hemifacial spasm', 'ICD10_2010'), +('G51.4', 'Facial myokymia', 'ICD10_2010'), +('G51.8', 'Other disorders of facial nerve', 'ICD10_2010'), +('G51.9', 'Disorder of facial nerve, unspecified', 'ICD10_2010'), +('G52', 'Disorders of other cranial nerves', 'ICD10_2010'), +('G52.0', 'Disorders of olfactory nerve', 'ICD10_2010'), +('G52.1', 'Disorders of glossopharyngeal nerve', 'ICD10_2010'), +('G52.2', 'Disorders of vagus nerve', 'ICD10_2010'), +('G52.3', 'Disorders of hypoglossal nerve', 'ICD10_2010'), +('G52.7', 'Disorders of multiple cranial nerves', 'ICD10_2010'), +('G52.8', 'Disorders of other specified cranial nerves', 'ICD10_2010'), +('G52.9', 'Cranial nerve disorder, unspecified', 'ICD10_2010'), +('G53', 'Cranial nerve disorders in diseases classified elsewhere', 'ICD10_2010'), +('G53.0', 'Postzoster neuralgia', 'ICD10_2010'), +('G53.1', 'Multiple cranial nerve palsies in infectious & parasit disease classified elsewhere', 'ICD10_2010'), +('G53.2', 'Multiple cranial nerve palsies in sarcoidosis', 'ICD10_2010'), +('G53.3', 'Multiple cranial nerve palsies in neoplastic disease', 'ICD10_2010'), +('G53.8', 'Other cranial nerve disorders in other disease classified elsewhere', 'ICD10_2010'), +('G54', 'Nerve root and plexus disorders', 'ICD10_2010'), +('G54.0', 'Brachial plexus disorders', 'ICD10_2010'), +('G54.1', 'Lumbosacral plexus disorders', 'ICD10_2010'), +('G54.2', 'Cervical root disorders, not elsewhere classified', 'ICD10_2010'), +('G54.3', 'Thoracic root disorders, not elsewhere classified', 'ICD10_2010'), +('G54.4', 'Lumbosacral root disorders, not elsewhere classified', 'ICD10_2010'), +('G54.5', 'Neuralgic amyotrophy', 'ICD10_2010'), +('G54.6', 'Phantom limb syndrome with pain', 'ICD10_2010'), +('G54.7', 'Phantom limb syndrome without pain', 'ICD10_2010'), +('G54.8', 'Other nerve root and plexus disorders', 'ICD10_2010'), +('G54.9', 'Nerve root and plexus disorder, unspecified', 'ICD10_2010'), +('G55', 'Nerve root and plexus compressions in diseases classified elsewhere', 'ICD10_2010'), +('G55.0', 'Nerve root and plexus compressions in neoplastic disease', 'ICD10_2010'), +('G55.1', 'Nerve root and plexus compressions in intravert disc disord', 'ICD10_2010'), +('G55.2', 'Nerve root and plexus compressions in spondylosis', 'ICD10_2010'), +('G55.3', 'Nerve root and plexus compressions in oth dorsopathies', 'ICD10_2010'), +('G55.8', 'Nerve root and plexus compressions in other disease classified elsewhere', 'ICD10_2010'), +('G56', 'Mononeuropathies of upper limb', 'ICD10_2010'), +('G56.0', 'Carpal tunnel syndrome', 'ICD10_2010'), +('G56.1', 'Other lesions of median nerve', 'ICD10_2010'), +('G56.2', 'Lesion of ulnar nerve', 'ICD10_2010'), +('G56.3', 'Lesion of radial nerve', 'ICD10_2010'), +('G56.4', 'Causalgia', 'ICD10_2010'), +('G56.8', 'Other mononeuropathies of upper limb', 'ICD10_2010'), +('G56.9', 'Mononeuropathy of upper limb, unspecified', 'ICD10_2010'), +('G57', 'Mononeuropathies of lower limb', 'ICD10_2010'), +('G57.0', 'Lesion of sciatic nerve', 'ICD10_2010'), +('G57.1', 'Meralgia paraesthetica', 'ICD10_2010'), +('G57.2', 'Lesion of femoral nerve', 'ICD10_2010'), +('G57.3', 'Lesion of lateral popliteal nerve', 'ICD10_2010'), +('G57.4', 'Lesion of medial popliteal nerve', 'ICD10_2010'), +('G57.5', 'Tarsal tunnel syndrome', 'ICD10_2010'), +('G57.6', 'Lesion of plantar nerve', 'ICD10_2010'), +('G57.8', 'Other mononeuropathies of lower limb', 'ICD10_2010'), +('G57.9', 'Mononeuropathy of lower limb, unspecified', 'ICD10_2010'), +('G58', 'Other mononeuropathies', 'ICD10_2010'), +('G58.0', 'Intercostal neuropathy', 'ICD10_2010'), +('G58.7', 'Mononeuritis multiplex', 'ICD10_2010'), +('G58.8', 'Other specified mononeuropathies', 'ICD10_2010'), +('G58.9', 'Mononeuropathy, unspecified', 'ICD10_2010'), +('G59', 'Mononeuropathy in diseases classified elsewhere', 'ICD10_2010'), +('G59.0', 'Diabetic mononeuropathy', 'ICD10_2010'), +('G59.8', 'Other mononeuropathies in diseases classified elsewhere', 'ICD10_2010'), +('G60', 'Hereditary and idiopathic neuropathy', 'ICD10_2010'), +('G60.0', 'Hereditary motor and sensory neuropathy', 'ICD10_2010'), +('G60.1', 'Refsum\'s disease', 'ICD10_2010'), +('G60.2', 'Neuropathy in association with hereditary ataxia', 'ICD10_2010'), +('G60.3', 'Idiopathic progressive neuropathy', 'ICD10_2010'), +('G60.8', 'Other hereditary and idiopathic neuropathies', 'ICD10_2010'), +('G60.9', 'Hereditary and idiopathic neuropathy, unspecified', 'ICD10_2010'), +('G61', 'Inflammatory polyneuropathy', 'ICD10_2010'), +('G61.0', 'Guillain-barre syndrome', 'ICD10_2010'), +('G61.1', 'Serum neuropathy', 'ICD10_2010'), +('G61.8', 'Other inflammatory polyneuropathies', 'ICD10_2010'), +('G61.9', 'Inflammatory polyneuropathy, unspecified', 'ICD10_2010'), +('G62', 'Other polyneuropathies', 'ICD10_2010'), +('G62.0', 'Drug-induced polyneuropathy', 'ICD10_2010'), +('G62.1', 'Alcoholic polyneuropathy', 'ICD10_2010'), +('G62.2', 'Polyneuropathy due to other toxic agents', 'ICD10_2010'), +('G62.8', 'Other specified polyneuropathies', 'ICD10_2010'), +('G62.9', 'Polyneuropathy, unspecified', 'ICD10_2010'), +('G63', 'Polyneuropathy in diseases classified elsewhere', 'ICD10_2010'), +('G63.0', 'Polyneuropathy in infectious and parasitic disease classified elsewhere', 'ICD10_2010'), +('G63.1', 'Polyneuropathy in neoplastic disease', 'ICD10_2010'), +('G63.2', 'Diabetic polyneuropathy', 'ICD10_2010'), +('G63.3', 'Polyneuropathy in other endocrine and metabolic diseases', 'ICD10_2010'), +('G63.4', 'Polyneuropathy in nutritional deficiency', 'ICD10_2010'), +('G63.5', 'Polyneuropathy in systemic connective tissue disorders', 'ICD10_2010'), +('G63.6', 'Polyneuropathy in other musculoskeletal disorders', 'ICD10_2010'), +('G63.8', 'Polyneuropathy in other diseases classified elsewhere', 'ICD10_2010'), +('G64', 'Other disorders of peripheral nervous system', 'ICD10_2010'), +('G70', 'Myasthenia gravis and other myoneural disorders', 'ICD10_2010'), +('G70.0', 'Myasthenia gravis', 'ICD10_2010'), +('G70.1', 'Toxic myoneural disorders', 'ICD10_2010'), +('G70.2', 'Congenital and developmental myasthenia', 'ICD10_2010'), +('G70.8', 'Other specified myoneural disorders', 'ICD10_2010'), +('G70.9', 'Myoneural disorder, unspecified', 'ICD10_2010'), +('G71', 'Primary disorders of muscles', 'ICD10_2010'), +('G71.0', 'Muscular dystrophy', 'ICD10_2010'), +('G71.1', 'Myotonic disorders', 'ICD10_2010'), +('G71.2', 'Congenital myopathies', 'ICD10_2010'), +('G71.3', 'Mitochondrial myopathy, not elsewhere classified', 'ICD10_2010'), +('G71.8', 'Other primary disorders of muscles', 'ICD10_2010'), +('G71.9', 'Primary disorder of muscle, unspecified', 'ICD10_2010'), +('G72', 'Other myopathies', 'ICD10_2010'), +('G72.0', 'Drug-induced myopathy', 'ICD10_2010'), +('G72.1', 'Alcoholic myopathy', 'ICD10_2010'), +('G72.2', 'Myopathy due to other toxic agents', 'ICD10_2010'), +('G72.3', 'Periodic paralysis', 'ICD10_2010'), +('G72.4', 'Inflammatory myopathy, not elsewhere classified', 'ICD10_2010'), +('G72.8', 'Other specified myopathies', 'ICD10_2010'), +('G72.9', 'Myopathy, unspecified', 'ICD10_2010'), +('G73', 'Disorders of myoneural junction and muscle in diseases classified elsewhere', 'ICD10_2010'), +('G73.0', 'Myasthenic syndromes in endocrine diseases', 'ICD10_2010'), +('G73.1', 'Eaton-lambert syndrome', 'ICD10_2010'), +('G73.2', 'Other myasthenic syndromes in neoplastic disease', 'ICD10_2010'), +('G73.3', 'Myasthenic syndromes in other diseases classified elsewhere', 'ICD10_2010'), +('G73.4', 'Myopathy in infectious and parasitic disease classified elsewhere', 'ICD10_2010'), +('G73.5', 'Myopathy in endocrine diseases', 'ICD10_2010'), +('G73.6', 'Myopathy in metabolic diseases', 'ICD10_2010'), +('G73.7', 'Myopathy in other diseases classified elsewhere', 'ICD10_2010'), +('G80', 'Cerebral palsy', 'ICD10_2010'), +('G80.0', 'Spastic cerebral palsy', 'ICD10_2010'), +('G80.1', 'Spastic diplegia', 'ICD10_2010'), +('G80.2', 'Infantile hemiplegia', 'ICD10_2010'), +('G80.3', 'Dyskinetic cerebral palsy', 'ICD10_2010'), +('G80.4', 'Ataxic cerebral palsy', 'ICD10_2010'), +('G80.8', 'Other infantile cerebral palsy', 'ICD10_2010'), +('G80.9', 'Infantile cerebral palsy, unspecified', 'ICD10_2010'), +('G81', 'Hemiplegia', 'ICD10_2010'), +('G81.0', 'Flaccid hemiplegia', 'ICD10_2010'), +('G81.1', 'Spastic hemiplegia', 'ICD10_2010'), +('G81.9', 'Hemiplegia, unspecified', 'ICD10_2010'), +('G82', 'Paraplegia and tetraplegia', 'ICD10_2010'), +('G82.0', 'Flaccid paraplegia', 'ICD10_2010'), +('G82.1', 'Spastic paraplegia', 'ICD10_2010'), +('G82.2', 'Paraplegia, unspecified', 'ICD10_2010'), +('G82.3', 'Flaccid tetraplegia', 'ICD10_2010'), +('G82.4', 'Spastic tetraplegia', 'ICD10_2010'), +('G82.5', 'Tetraplegia, unspecified', 'ICD10_2010'), +('G83', 'Other paralytic syndromes', 'ICD10_2010'), +('G83.0', 'Diplegia of upper limbs', 'ICD10_2010'), +('G83.1', 'Monoplegia of lower limb', 'ICD10_2010'), +('G83.2', 'Monoplegia of upper limb', 'ICD10_2010'), +('G83.3', 'Monoplegia, unspecified', 'ICD10_2010'), +('G83.4', 'Cauda equina syndrome', 'ICD10_2010'), +('G83.8', 'Other specified paralytic syndromes', 'ICD10_2010'), +('G83.9', 'Paralytic syndrome, unspecified', 'ICD10_2010'), +('G90', 'Disorders of autonomic nervous system', 'ICD10_2010'), +('G90.0', 'Idiopathic peripheral autonomic neuropathy', 'ICD10_2010'), +('G90.1', 'Familial dysautonomia [riley-day]', 'ICD10_2010'), +('G90.2', 'Horner\'s syndrome', 'ICD10_2010'), +('G90.3', 'Multi-system degeneration', 'ICD10_2010'), +('G90.4', 'Autonomic dysreflexia', 'ICD10_2010'), +('G90.8', 'Other disorders of autonomic nervous system', 'ICD10_2010'), +('G90.9', 'Disorder of autonomic nervous system, unspecified', 'ICD10_2010'), +('G91', 'Hydrocephalus', 'ICD10_2010'), +('G91.0', 'Communicating hydrocephalus', 'ICD10_2010'), +('G91.1', 'Obstructive hydrocephalus', 'ICD10_2010'), +('G91.2', 'Normal-pressure hydrocephalus', 'ICD10_2010'), +('G91.3', 'Post-traumatic hydrocephalus, unspecified', 'ICD10_2010'), +('G91.8', 'Other hydrocephalus', 'ICD10_2010'), +('G91.9', 'Hydrocephalus, unspecified', 'ICD10_2010'), +('G92', 'Toxic encephalopathy', 'ICD10_2010'), +('G93', 'Other disorders of brain', 'ICD10_2010'), +('G93.0', 'Cerebral cysts', 'ICD10_2010'), +('G93.1', 'Anoxic brain damage, not elsewhere classified', 'ICD10_2010'), +('G93.2', 'Benign intracranial hypertension', 'ICD10_2010'), +('G93.3', 'Postviral fatigue syndrome', 'ICD10_2010'), +('G93.4', 'Encephalopathy, unspecified', 'ICD10_2010'), +('G93.5', 'Compression of brain', 'ICD10_2010'), +('G93.6', 'Cerebral oedema', 'ICD10_2010'), +('G93.7', 'Reye\'s syndrome', 'ICD10_2010'), +('G93.8', 'Other specified disorders of brain', 'ICD10_2010'), +('G93.9', 'Disorder of brain, unspecified', 'ICD10_2010'), +('G94', 'Other disorders of brain in diseases classified elsewhere', 'ICD10_2010'), +('G94.0', 'Hydrocephalus in infectious and parasitic disease classified elsewhere', 'ICD10_2010'), +('G94.1', 'Hydrocephalus in neoplastic disease', 'ICD10_2010'), +('G94.2', 'Hydrocephalus in other diseases classified elsewhere', 'ICD10_2010'), +('G94.8', 'Other specified disorders of brain in disease classified elsewhere', 'ICD10_2010'), +('G95', 'Other diseases of spinal cord', 'ICD10_2010'), +('G95.0', 'Syringomyelia and syringobulbia', 'ICD10_2010'), +('G95.1', 'Vascular myelopathies', 'ICD10_2010'), +('G95.2', 'Cord compression, unspecified', 'ICD10_2010'), +('G95.8', 'Other specified diseases of spinal cord', 'ICD10_2010'), +('G95.9', 'Disease of spinal cord, unspecified', 'ICD10_2010'), +('G96', 'Other disorders of central nervous system', 'ICD10_2010'), +('G96.0', 'Cerebrospinal fluid leak', 'ICD10_2010'), +('G96.1', 'Disorders of meninges, not elsewhere classified', 'ICD10_2010'), +('G96.8', 'Other specified disorders of central nervous system', 'ICD10_2010'), +('G96.9', 'Disorder of central nervous system, unspecified', 'ICD10_2010'), +('G97', 'Postprocedural disorders of nervous system, not elsewhere classified', 'ICD10_2010'), +('G97.0', 'Cerebrospinal fluid leak from spinal puncture', 'ICD10_2010'), +('G97.1', 'Other reaction to spinal and lumbar puncture', 'ICD10_2010'), +('G97.2', 'Intracranial hypotension following ventricular shunting', 'ICD10_2010'), +('G97.8', 'Other postprocedural disorders of nervous system', 'ICD10_2010'), +('G97.9', 'Postprocedural disorder of nervous system, unspecified', 'ICD10_2010'), +('G98', 'Other disorders of nervous system, not elsewhere classified', 'ICD10_2010'), +('G99', 'Other disorders of nervous system in diseases classified elsewhere', 'ICD10_2010'), +('G99.0', 'Autonomic neuropathy in endocrine and metabolic diseases', 'ICD10_2010'), +('G99.1', 'Other disorders of autonomic nervous system in other disease classified elsewhere', 'ICD10_2010'), +('G99.2', 'Myelopathy in diseases classified elsewhere', 'ICD10_2010'), +('G99.8', 'Other specified disorders of nervous system in diseases ec', 'ICD10_2010'), +('H00', 'Hordeolum and chalazion', 'ICD10_2010'), +('H00.0', 'Hordeolum and other deep inflammation of eyelid', 'ICD10_2010'), +('H00.1', 'Chalazion', 'ICD10_2010'), +('H01', 'Other inflammation of eyelid', 'ICD10_2010'), +('H01.0', 'Blepharitis', 'ICD10_2010'), +('H01.1', 'Noninfectious dermatoses of eyelid', 'ICD10_2010'), +('H01.8', 'Other specified inflammation of eyelid', 'ICD10_2010'), +('H01.9', 'Inflammation of eyelid, unspecified', 'ICD10_2010'), +('H02', 'Other disorders of eyelid', 'ICD10_2010'), +('H02.0', 'Entropion and trichiasis of eyelid', 'ICD10_2010'), +('H02.1', 'Ectropion of eyelid', 'ICD10_2010'), +('H02.2', 'Lagophthalmos', 'ICD10_2010'), +('H02.3', 'Blepharochalasis', 'ICD10_2010'), +('H02.4', 'Ptosis of eyelid', 'ICD10_2010'), +('H02.5', 'Other disorders affecting eyelid function', 'ICD10_2010'), +('H02.6', 'Xanthelasma of eyelid', 'ICD10_2010'), +('H02.7', 'Other degenerative disorders of eyelid and periocular area', 'ICD10_2010'), +('H02.8', 'Other specified disorders of eyelid', 'ICD10_2010'), +('H02.9', 'Disorder of eyelid, unspecified', 'ICD10_2010'), +('H03', 'Disorders of eyelid in diseases classified elsewhere', 'ICD10_2010'), +('H03.0', 'Parasitic infestation of eyelid in diseases classified', 'ICD10_2010'), +('H03.1', 'Involvement of eyelid in other infectious diseases classified elsewhere', 'ICD10_2010'), +('H03.8', 'Involvement of eyelid in other diseases classified elsewhere', 'ICD10_2010'), +('H04', 'Disorders of lacrimal system', 'ICD10_2010'), +('H04.0', 'Dacryoadenitis', 'ICD10_2010'), +('H04.1', 'Other disorders of lacrimal gland', 'ICD10_2010'), +('H04.2', 'Epiphora', 'ICD10_2010'), +('H04.3', 'Acute and unspecified inflammation of lacrimal passages', 'ICD10_2010'), +('H04.4', 'Chronic inflammation of lacrimal passages', 'ICD10_2010'), +('H04.5', 'Stenosis and insufficiency of lacrimal passages', 'ICD10_2010'), +('H04.6', 'Other changes in lacrimal passages', 'ICD10_2010'), +('H04.8', 'Other disorders of lacrimal system', 'ICD10_2010'), +('H04.9', 'Disorder of lacrimal system, unspecified', 'ICD10_2010'), +('H05', 'Disorders of orbit', 'ICD10_2010'), +('H05.0', 'Acute inflammation of orbit', 'ICD10_2010'), +('H05.1', 'Chronic inflammatory disorders of orbit', 'ICD10_2010'), +('H05.2', 'Exophthalmic conditions', 'ICD10_2010'), +('H05.3', 'Deformity of orbit', 'ICD10_2010'), +('H05.4', 'Enophthalmos', 'ICD10_2010'), +('H05.5', 'Retained (old) foreign body folowing penetrating wound of orbit', 'ICD10_2010'), +('H05.8', 'Other disorders of orbit', 'ICD10_2010'), +('H05.9', 'Disorder of orbit, unspecified', 'ICD10_2010'), +('H06', 'Disorders of lacrimal system and orbit in diseases classified elsewhere', 'ICD10_2010'), +('H06.0', 'Disorders of lacrimal system in diseases classified elsewhere', 'ICD10_2010'), +('H06.1', 'Parasitic infestation of orbit in diseases classified elsewhere', 'ICD10_2010'), +('H06.2', 'Dysthyroid exophthalmos', 'ICD10_2010'), +('H06.3', 'Other disorders of orbit in diseases classified elsewhere', 'ICD10_2010'), +('H10', 'Conjunctivitis', 'ICD10_2010'), +('H10.0', 'Mucopurulent conjunctivitis', 'ICD10_2010'), +('H10.1', 'Acute atopic conjunctivitis', 'ICD10_2010'), +('H10.2', 'Other acute conjunctivitis', 'ICD10_2010'), +('H10.3', 'Acute conjunctivitis, unspecified', 'ICD10_2010'), +('H10.4', 'Chronic conjunctivitis', 'ICD10_2010'), +('H10.5', 'Blepharoconjunctivitis', 'ICD10_2010'), +('H10.8', 'Other conjunctivitis', 'ICD10_2010'), +('H10.9', 'Conjunctivitis, unspecified', 'ICD10_2010'), +('H11', 'Other disorders of conjunctiva', 'ICD10_2010'), +('H11.0', 'Pterygium', 'ICD10_2010'), +('H11.1', 'Conjunctival degenerations and deposits', 'ICD10_2010'), +('H11.2', 'Conjunctival scars', 'ICD10_2010'), +('H11.3', 'Conjunctival haemorrhage', 'ICD10_2010'), +('H11.4', 'Other conjunctival vascular disorders and cysts', 'ICD10_2010'), +('H11.8', 'Other specified disorders of conjunctiva', 'ICD10_2010'), +('H11.9', 'Disorder of conjunctiva, unspecified', 'ICD10_2010'), +('H13', 'Disorders of conjunctiva in diseases classified elsewhere', 'ICD10_2010'), +('H13.0', 'Filarial infection of conjunctiva', 'ICD10_2010'), +('H13.1', 'Conjunctivitis in infectious and parasitic diseases classified elsewhere', 'ICD10_2010'), +('H13.2', 'Conjunctivitis in other diseases classified elsewhere', 'ICD10_2010'), +('H13.3', 'Ocular pemphigoid', 'ICD10_2010'), +('H13.8', 'Other disorders of conjunctiva in diseases classified elsewhere', 'ICD10_2010'), +('H15', 'Disorders of sclera', 'ICD10_2010'), +('H15.0', 'Scleritis', 'ICD10_2010'), +('H15.1', 'Episcleritis', 'ICD10_2010'), +('H15.8', 'Other disorders of sclera', 'ICD10_2010'), +('H15.9', 'Disorder of sclera, unspecified', 'ICD10_2010'), +('H16', 'Keratitis', 'ICD10_2010'), +('H16.0', 'Corneal ulcer', 'ICD10_2010'), +('H16.1', 'Other superficial keratitis without conjunctivitis', 'ICD10_2010'), +('H16.2', 'Keratoconjunctivitis', 'ICD10_2010'), +('H16.3', 'Interstitial and deep keratitis', 'ICD10_2010'), +('H16.4', 'Corneal neovascularization', 'ICD10_2010'), +('H16.8', 'Other keratitis', 'ICD10_2010'), +('H16.9', 'Keratitis, unspecified', 'ICD10_2010'), +('H17', 'Corneal scars and opacities', 'ICD10_2010'), +('H17.0', 'Adherent leukoma', 'ICD10_2010'), +('H17.1', 'Other central corneal opacity', 'ICD10_2010'), +('H17.8', 'Other corneal scars and opacities', 'ICD10_2010'), +('H17.9', 'Corneal scar and opacity, unspecified', 'ICD10_2010'), +('H18', 'Other disorders of cornea', 'ICD10_2010'), +('H18.0', 'Corneal pigmentations and deposits', 'ICD10_2010'), +('H18.1', 'Bullous keratopathy', 'ICD10_2010'), +('H18.2', 'Other corneal oedema', 'ICD10_2010'), +('H18.3', 'Changes in corneal membranes', 'ICD10_2010'), +('H18.4', 'Corneal degeneration', 'ICD10_2010'), +('H18.5', 'Hereditary corneal dystrophies', 'ICD10_2010'), +('H18.6', 'Keratoconus', 'ICD10_2010'), +('H18.7', 'Other corneal deformities', 'ICD10_2010'), +('H18.8', 'Other specified disorders of cornea', 'ICD10_2010'), +('H18.9', 'Disorder of cornea, unspecified', 'ICD10_2010'), +('H19', 'Disorders of sclera and cornea in diseases classified elsewhere', 'ICD10_2010'), +('H19.0', 'Scleritis and episcleritis in diseases classified elsewhere', 'ICD10_2010'), +('H19.1', 'Herpesviral keratitis and keratoconjunctivitis', 'ICD10_2010'), +('H19.2', 'Keratitis and keratoconjunctivitis in other infectious and parasitic disease classified elsewhere', 'ICD10_2010'), +('H19.3', 'Keratitis and keratoconjunctivitis in other diseases classified elsewhere', 'ICD10_2010'), +('H19.8', 'Other disorders of sclera and cornea in diseases classified elsewhere', 'ICD10_2010'), +('H20', 'Iridocyclitis', 'ICD10_2010'), +('H20.0', 'Acute and subacute iridocyclitis', 'ICD10_2010'), +('H20.1', 'Chronic iridocyclitis', 'ICD10_2010'), +('H20.2', 'Lens-induced iridocyclitis', 'ICD10_2010'), +('H20.8', 'Other iridocyclitis', 'ICD10_2010'), +('H20.9', 'Iridocyclitis, unspecified', 'ICD10_2010'), +('H21', 'Other disorders of iris and ciliary body', 'ICD10_2010'), +('H21.0', 'Hyphaema', 'ICD10_2010'), +('H21.1', 'Other vascular disorders of iris and ciliary body', 'ICD10_2010'), +('H21.2', 'Degeneration of iris and ciliary body', 'ICD10_2010'), +('H21.3', 'Cyst of iris, ciliary body and anterior chamber', 'ICD10_2010'), +('H21.4', 'Pupillary membranes', 'ICD10_2010'), +('H21.5', 'Other adhesions and disruptions of iris and ciliary body', 'ICD10_2010'), +('H21.8', 'Other specified disorders of iris and ciliary body', 'ICD10_2010'), +('H21.9', 'Disorder of iris and ciliary body, unspecified', 'ICD10_2010'), +('H22', 'Disorders of iris and ciliary body in diseases classified elsewhere', 'ICD10_2010'), +('H22.0', 'Iridocyclitis in infectious and parasitic diseases classified elsewhere', 'ICD10_2010'), +('H22.1', 'Iridocyclitis in other diseases classified elsewhere', 'ICD10_2010'), +('H22.8', 'Other disorders of iris and ciliary body in diseases classified elsewhere', 'ICD10_2010'), +('H25', 'Senile cataract', 'ICD10_2010'), +('H25.0', 'Senile incipient cataract', 'ICD10_2010'), +('H25.1', 'Senile nuclear cataract', 'ICD10_2010'), +('H25.2', 'Senile cataract, morgagnian type', 'ICD10_2010'), +('H25.8', 'Other senile cataract', 'ICD10_2010'), +('H25.9', 'Senile cataract, unspecified', 'ICD10_2010'), +('H26', 'Other cataract', 'ICD10_2010'), +('H26.0', 'Infantile, juvenile and presenile cataract', 'ICD10_2010'), +('H26.1', 'Traumatic cataract', 'ICD10_2010'), +('H26.2', 'Complicated cataract', 'ICD10_2010'), +('H26.3', 'Drug-induced cataract', 'ICD10_2010'), +('H26.4', 'After-cataract', 'ICD10_2010'), +('H26.8', 'Other specified cataract', 'ICD10_2010'), +('H26.9', 'Cataract, unspecified', 'ICD10_2010'), +('H27', 'Other disorders of lens', 'ICD10_2010'), +('H27.0', 'Aphakia', 'ICD10_2010'), +('H27.1', 'Dislocation of lens', 'ICD10_2010'), +('H27.8', 'Other specified disorders of lens', 'ICD10_2010'), +('H27.9', 'Disorder of lens, unspecified', 'ICD10_2010'), +('H28', 'Cataract and other disorders of lens in diseases classified elsewhere', 'ICD10_2010'), +('H28.0', 'Diabetic cataract (E10-E14 with common fourth character 3)', 'ICD10_2010'), +('H28.1', 'Cataract in other endocrine, nutritional and metabolic diseases', 'ICD10_2010'), +('H28.2', 'Cataract in other diseases classified elsewhere', 'ICD10_2010'), +('H28.8', 'Other disorders of lens in diseases classified elsewhere', 'ICD10_2010'), +('H30', 'Chorioretinal inflammation', 'ICD10_2010'), +('H30.0', 'Focal chorioretinal inflammation', 'ICD10_2010'), +('H30.1', 'Disseminated chorioretinal inflammation', 'ICD10_2010'), +('H30.2', 'Posterior cyclitis', 'ICD10_2010'), +('H30.8', 'Other chorioretinal inflammations', 'ICD10_2010'), +('H30.9', 'Chorioretinal inflammation, unspecified', 'ICD10_2010'), +('H31', 'Other disorders of choroid', 'ICD10_2010'), +('H31.0', 'Chorioretinal scars', 'ICD10_2010'), +('H31.1', 'Choroidal degeneration', 'ICD10_2010'), +('H31.2', 'Hereditary choroidal dystrophy', 'ICD10_2010'), +('H31.3', 'Choroidal haemorrhage and rupture', 'ICD10_2010'), +('H31.4', 'Choroidal detachment', 'ICD10_2010'), +('H31.8', 'Other specified disorders of choroid', 'ICD10_2010'), +('H31.9', 'Disorder of choroid, unspecified', 'ICD10_2010'), +('H32', 'Chorioretinal disorders in diseases classified elsewhere', 'ICD10_2010'), +('H32.0', 'Chorioretinal inflammation infectious and parasitic diseases classified elsewhere', 'ICD10_2010'), +('H32.8', 'Other chorioretinal disorders in diseases classified elsewhere', 'ICD10_2010'), +('H33', 'Retinal detachments and breaks', 'ICD10_2010'), +('H33.0', 'Retinal detachment with retinal break', 'ICD10_2010'), +('H33.1', 'Retinoschisis and retinal cysts', 'ICD10_2010'), +('H33.2', 'Serous retinal detachment', 'ICD10_2010'), +('H33.3', 'Retinal breaks without detachment', 'ICD10_2010'), +('H33.4', 'Traction detachment of retina', 'ICD10_2010'), +('H33.5', 'Other retinal detachments', 'ICD10_2010'), +('H34', 'Retinal vascular occlusions', 'ICD10_2010'), +('H34.0', 'Transient retinal artery occlusion', 'ICD10_2010'), +('H34.1', 'Central retinal artery occlusion', 'ICD10_2010'), +('H34.2', 'Other retinal artery occlusions', 'ICD10_2010'), +('H34.8', 'Other retinal vascular occlusions', 'ICD10_2010'), +('H34.9', 'Retinal vascular occlusion, unspecified', 'ICD10_2010'), +('H35', 'Other retinal disorders', 'ICD10_2010'), +('H35.0', 'Background retinopathy and retinal vascular changes', 'ICD10_2010'), +('H35.1', 'Retinopathy of prematurity', 'ICD10_2010'), +('H35.2', 'Other proliferative retinopathy', 'ICD10_2010'), +('H35.3', 'Degeneration of macula and posterior pole', 'ICD10_2010'), +('H35.4', 'Peripheral retinal degeneration', 'ICD10_2010'), +('H35.5', 'Hereditary retinal dystrophy', 'ICD10_2010'), +('H35.6', 'Retinal haemorrhage', 'ICD10_2010'), +('H35.7', 'Separation of retinal layers', 'ICD10_2010'), +('H35.8', 'Other specified retinal disorders', 'ICD10_2010'), +('H35.9', 'Retinal disorder, unspecified', 'ICD10_2010'), +('H36', 'Retinal disorders in diseases classified elsewhere', 'ICD10_2010'), +('H36.0', 'Diabetic retinopathy (E10-E14 with common fourth character 3)', 'ICD10_2010'), +('H36.8', 'Other retinal disorders in diseases classified elsewhere', 'ICD10_2010'), +('H40', 'Glaucoma', 'ICD10_2010'), +('H40.0', 'Glaucoma suspect', 'ICD10_2010'), +('H40.1', 'Primary open-angle glaucoma', 'ICD10_2010'), +('H40.2', 'Primary angle-closure glaucoma', 'ICD10_2010'), +('H40.3', 'Glaucoma secondary to eye trauma', 'ICD10_2010'), +('H40.4', 'Glaucoma secondary to eye inflammation', 'ICD10_2010'), +('H40.5', 'Glaucoma secondary to other eye disorders', 'ICD10_2010'), +('H40.6', 'Glaucoma secondary to drugs', 'ICD10_2010'), +('H40.8', 'Other glaucoma', 'ICD10_2010'), +('H40.9', 'Glaucoma, unspecified', 'ICD10_2010'), +('H42', 'Glaucoma in diseases classified elsewhere', 'ICD10_2010'), +('H42.0', 'Glaucoma in endocrine, nutritional and metabolic diseases', 'ICD10_2010'), +('H42.8', 'Glaucoma in other diseases classified elsewhere', 'ICD10_2010'), +('H43', 'Disorders of vitreous body', 'ICD10_2010'), +('H43.0', 'Vitreous prolapse', 'ICD10_2010'), +('H43.1', 'Vitreous haemorrhage', 'ICD10_2010'), +('H43.2', 'Crystalline deposits in vitreous body', 'ICD10_2010'), +('H43.3', 'Other vitreous opacities', 'ICD10_2010'), +('H43.8', 'Other disorders of vitreous body', 'ICD10_2010'), +('H43.9', 'Disorder of vitreous body, unspecified', 'ICD10_2010'), +('H44', 'Disorders of globe', 'ICD10_2010'), +('H44.0', 'Purulent endophthalmitis', 'ICD10_2010'), +('H44.1', 'Other endophthalmitis', 'ICD10_2010'), +('H44.2', 'Degenerative myopia', 'ICD10_2010'), +('H44.3', 'Other degenerative disorders of globe', 'ICD10_2010'), +('H44.4', 'Hypotony of eye', 'ICD10_2010'), +('H44.5', 'Degenerated conditions of globe', 'ICD10_2010'), +('H44.6', 'Retained (old) intraocular foreign body, magnetic', 'ICD10_2010'), +('H44.7', 'Retained (old) intraocular foreign body, nonmagnetic', 'ICD10_2010'), +('H44.8', 'Other disorders of globe', 'ICD10_2010'), +('H44.9', 'Disorder of globe, unspecified', 'ICD10_2010'), +('H45', 'Disorders of vitreous body and globe in diseases classified elsewhere', 'ICD10_2010'), +('H45.0', 'Vitreous haemorrhage in diseases classified elsewhere', 'ICD10_2010'), +('H45.1', 'Endophthalmitis in diseases classified elsewhere', 'ICD10_2010'), +('H45.8', 'Other disorders of vitreous body and globe in diseases classified elsewhere', 'ICD10_2010'), +('H46', 'Optic neuritis', 'ICD10_2010'), +('H47', 'Other disorders of optic [2nd] nerve and visual pathways', 'ICD10_2010'), +('H47.0', 'Disorders of optic nerve, not elsewhere classified', 'ICD10_2010'), +('H47.1', 'Papilloedema, unspecified', 'ICD10_2010'), +('H47.2', 'Optic atrophy', 'ICD10_2010'), +('H47.3', 'Other disorders of optic disc', 'ICD10_2010'), +('H47.4', 'Disorders of optic chiasm', 'ICD10_2010'), +('H47.5', 'Disorders of other visual pathways', 'ICD10_2010'), +('H47.6', 'Disorders of visual cortex', 'ICD10_2010'), +('H47.7', 'Disorder of visual pathways, unspecified', 'ICD10_2010'), +('H48', 'Disorders of optic [2nd] nerve and visual pathways in diseases classified elsewhere', 'ICD10_2010'), +('H48.0', 'Optic atrophy in diseases classified elsewhere', 'ICD10_2010'), +('H48.1', 'Retrobulbar neuritis in diseases classified elsewhere', 'ICD10_2010'), +('H48.8', 'Other disorder of optic nerve and visual pathways in diseases classified elsewhere', 'ICD10_2010'), +('H49', 'Paralytic strabismus', 'ICD10_2010'), +('H49.0', 'Third [oculomotor] nerve palsy', 'ICD10_2010'), +('H49.1', 'Fourth [trochlear] nerve palsy', 'ICD10_2010'), +('H49.2', 'Sixth [abducent] nerve palsy', 'ICD10_2010'), +('H49.3', 'Total (external) ophthalmoplegia', 'ICD10_2010'), +('H49.4', 'Progressive external ophthalmoplegia', 'ICD10_2010'), +('H49.8', 'Other paralytic strabismus', 'ICD10_2010'), +('H49.9', 'Paralytic strabismus, unspecified', 'ICD10_2010'), +('H50', 'Other strabismus', 'ICD10_2010'), +('H50.0', 'Convergent concomitant strabismus', 'ICD10_2010'), +('H50.1', 'Divergent concomitant strabismus', 'ICD10_2010'), +('H50.2', 'Vertical strabismus', 'ICD10_2010'), +('H50.3', 'Intermittent heterotropia', 'ICD10_2010'), +('H50.4', 'Other and unspecified heterotropia', 'ICD10_2010'), +('H50.5', 'Heterophoria', 'ICD10_2010'), +('H50.6', 'Mechanical strabismus', 'ICD10_2010'), +('H50.8', 'Other specified strabismus', 'ICD10_2010'), +('H50.9', 'Strabismus, unspecified', 'ICD10_2010'), +('H51', 'Other disorders of binocular movement', 'ICD10_2010'), +('H51.0', 'Palsy of conjugate gaze', 'ICD10_2010'), +('H51.1', 'Convergence insufficiency and excess', 'ICD10_2010'), +('H51.2', 'Internuclear ophthalmoplegia', 'ICD10_2010'), +('H51.8', 'Other specified disorders of binocular movement', 'ICD10_2010'), +('H51.9', 'Disorder of binocular movement, unspecified', 'ICD10_2010'), +('H52', 'Disorders of refraction and accommodation', 'ICD10_2010'), +('H52.0', 'Hypermetropia', 'ICD10_2010'), +('H52.1', 'Myopia', 'ICD10_2010'), +('H52.2', 'Astigmatism', 'ICD10_2010'), +('H52.3', 'Anisometropia and aniseikonia', 'ICD10_2010'), +('H52.4', 'Presbyopia', 'ICD10_2010'), +('H52.5', 'Disorders of accommodation', 'ICD10_2010'), +('H52.6', 'Other disorders of refraction', 'ICD10_2010'), +('H52.7', 'Disorder of refraction, unspecified', 'ICD10_2010'), +('H53', 'Visual disturbances', 'ICD10_2010'), +('H53.0', 'Amblyopia ex anopsia', 'ICD10_2010'), +('H53.1', 'Subjective visual disturbances', 'ICD10_2010'), +('H53.2', 'Diplopia', 'ICD10_2010'), +('H53.3', 'Other disorders of binocular vision', 'ICD10_2010'), +('H53.4', 'Visual field defects', 'ICD10_2010'), +('H53.5', 'Colour vision deficiencies', 'ICD10_2010'), +('H53.6', 'Night blindness', 'ICD10_2010'), +('H53.8', 'Other visual disturbances', 'ICD10_2010'), +('H53.9', 'Visual disturbance, unspecified', 'ICD10_2010'), +('H54', 'Visual impairment including blindness (binocular or monocular)', 'ICD10_2010'), +('H54.0', 'Blindness, both eyes', 'ICD10_2010'), +('H54.1', 'Blindness, one eye, low vision other eye', 'ICD10_2010'), +('H54.2', 'Low vision, both eyes', 'ICD10_2010'), +('H54.3', 'Unqualified visual loss, both eyes', 'ICD10_2010'), +('H54.4', 'Blindness, one eye', 'ICD10_2010'), +('H54.5', 'Low vision, one eye', 'ICD10_2010'), +('H54.6', 'Unqualified visual loss, one eye', 'ICD10_2010'), +('H54.7', 'Unspecified visual loss', 'ICD10_2010'), +('H54.9', 'Unspecified visual impairment (binocular)', 'ICD10_2010'), +('H55', 'Nystagmus and other irregular eye movements', 'ICD10_2010'), +('H57', 'Other disorders of eye and adnexa', 'ICD10_2010'), +('H57.0', 'Anomalies of pupillary function', 'ICD10_2010'), +('H57.1', 'Ocular pain', 'ICD10_2010'), +('H57.8', 'Other specified disorders of eye and adnexa', 'ICD10_2010'), +('H57.9', 'Disorder of eye and adnexa, unspecified', 'ICD10_2010'), +('H58', 'Other disorders of eye and adnexa in diseases classified elsewhere', 'ICD10_2010'), +('H58.0', 'Anomalies of pupillary function in diseases classified elsewhere', 'ICD10_2010'), +('H58.1', 'Visual disturbances in diseases classified elsewhere', 'ICD10_2010'), +('H58.8', 'Other specified disorders of eye and adnexa in diseases classified elsewhere', 'ICD10_2010'), +('H59', 'Postprocedural disorders of eye and adnexa, not elsewhere classified', 'ICD10_2010'), +('H59.0', 'Keratopathy (bullous aphakic) following cataract surgery', 'ICD10_2010'), +('H59.8', 'Other postprocedural disorders of eye and adnexa', 'ICD10_2010'), +('H59.9', 'Postprocedural disorder of eye and adnexa, unspecified', 'ICD10_2010'), +('H60', 'Otitis externa', 'ICD10_2010'), +('H60.0', 'Abscess of external ear', 'ICD10_2010'), +('H60.1', 'Cellulitis of external ear', 'ICD10_2010'), +('H60.2', 'Malignant otitis externa', 'ICD10_2010'), +('H60.3', 'Other infective otitis externa', 'ICD10_2010'), +('H60.4', 'Cholesteatoma of external ear', 'ICD10_2010'), +('H60.5', 'Acute otitis externa, noninfective', 'ICD10_2010'), +('H60.8', 'Other otitis externa', 'ICD10_2010'), +('H60.9', 'Otitis externa, unspecified', 'ICD10_2010'), +('H61', 'Other disorders of external ear', 'ICD10_2010'), +('H61.0', 'Perichondritis of external ear', 'ICD10_2010'), +('H61.1', 'Noninfective disorders of pinna', 'ICD10_2010'), +('H61.2', 'Impacted cerumen', 'ICD10_2010'), +('H61.3', 'Acquired stenosis of external ear canal', 'ICD10_2010'), +('H61.8', 'Other specified disorders of external ear', 'ICD10_2010'), +('H61.9', 'Disorder of external ear, unspecified', 'ICD10_2010'), +('H62', 'Disorders of external ear in diseases classified elsewhere', 'ICD10_2010'), +('H62.0', 'Otitis externa in bacterial diseases classified elsewhere', 'ICD10_2010'), +('H62.1', 'Otitis externa in viral diseases classified elsewhere', 'ICD10_2010'), +('H62.2', 'Otitis externa in mycoses', 'ICD10_2010'), +('H62.3', 'Otitis externa in oth infectious and parasitic diseases classified elsewhere', 'ICD10_2010'), +('H62.4', 'Otitis externa in other diseases classified elsewhere', 'ICD10_2010'), +('H62.8', 'Other disorders of external ear in diseases classified elsewhere', 'ICD10_2010'), +('H65', 'Nonsuppurative otitis media', 'ICD10_2010'), +('H65.0', 'Acute serous otitis media', 'ICD10_2010'), +('H65.1', 'Other acute nonsuppurative otitis media', 'ICD10_2010'), +('H65.2', 'Chronic serous otitis media', 'ICD10_2010'), +('H65.3', 'Chronic mucoid otitis media', 'ICD10_2010'), +('H65.4', 'Other chronic nonsuppurative otitis media', 'ICD10_2010'), +('H65.9', 'Nonsuppurative otitis media, unspecified', 'ICD10_2010'), +('H66', 'Suppurative and unspecified otitis media', 'ICD10_2010'), +('H66.0', 'Acute suppurative otitis media', 'ICD10_2010'), +('H66.1', 'Chronic tubotympanic suppurative otitis media', 'ICD10_2010'), +('H66.2', 'Chronic atticoantral suppurative otitis media', 'ICD10_2010'), +('H66.3', 'Other chronic suppurative otitis media', 'ICD10_2010'), +('H66.4', 'Suppurative otitis media, unspecified', 'ICD10_2010'), +('H66.9', 'Otitis media, unspecified', 'ICD10_2010'), +('H67', 'Otitis media in diseases classified elsewhere', 'ICD10_2010'), +('H67.0', 'Otitis media in bacterial diseases classified elsewhere', 'ICD10_2010'), +('H67.1', 'Otitis media in viral diseases classified elsewhere', 'ICD10_2010'), +('H67.8', 'Otitis media in other diseases classified elsewhere', 'ICD10_2010'), +('H68', 'Eustachian salpingitis and obstruction', 'ICD10_2010'), +('H68.0', 'Eustachian salpingitis', 'ICD10_2010'), +('H68.1', 'Obstruction of Eustachian tube', 'ICD10_2010'), +('H69', 'Other disorders of Eustachian tube', 'ICD10_2010'), +('H69.0', 'Patulous Eustachian tube', 'ICD10_2010'), +('H69.8', 'Other specified disorders of Eustachian tube', 'ICD10_2010'), +('H69.9', 'Eustachian tube disorder, unspecified', 'ICD10_2010'), +('H70', 'Mastoiditis and related conditions', 'ICD10_2010'), +('H70.0', 'Acute mastoiditis', 'ICD10_2010'), +('H70.1', 'Chronic mastoiditis', 'ICD10_2010'), +('H70.2', 'Petrositis', 'ICD10_2010'), +('H70.8', 'Other mastoiditis and related conditions', 'ICD10_2010'), +('H70.9', 'Mastoiditis, unspecified', 'ICD10_2010'), +('H71', 'Cholesteatoma of middle ear', 'ICD10_2010'), +('H72', 'Perforation of tympanic membrane', 'ICD10_2010'), +('H72.0', 'Central perforation of tympanic membrane', 'ICD10_2010'), +('H72.1', 'Attic perforation of tympanic membrane', 'ICD10_2010'), +('H72.2', 'Other marginal perforations of tympanic membrane', 'ICD10_2010'), +('H72.8', 'Other perforations of tympanic membrane', 'ICD10_2010'), +('H72.9', 'Perforation of tympanic membrane, unspecified', 'ICD10_2010'), +('H73', 'Other disorders of tympanic membrane', 'ICD10_2010'), +('H73.0', 'Acute myringitis', 'ICD10_2010'), +('H73.1', 'Chronic myringitis', 'ICD10_2010'), +('H73.8', 'Other specified disorders of tympanic membrane', 'ICD10_2010'), +('H73.9', 'Disorder of tympanic membrane, unspecified', 'ICD10_2010'), +('H74', 'Other disorders of middle ear and mastoid', 'ICD10_2010'), +('H74.0', 'Tympanosclerosis', 'ICD10_2010'), +('H74.1', 'Adhesive middle ear disease', 'ICD10_2010'), +('H74.2', 'Discontinuity and dislocation of ear ossicles', 'ICD10_2010'), +('H74.3', 'Other acquired abnormalities of ear ossicles', 'ICD10_2010'), +('H74.4', 'Polyp of middle ear', 'ICD10_2010'), +('H74.8', 'Other specified disorders of middle ear and mastoid', 'ICD10_2010'), +('H74.9', 'Disorder of middle ear and mastoid, unspecified', 'ICD10_2010'), +('H75', 'Other disorders of middle ear and mastoid in diseases classified elsewhere', 'ICD10_2010'), +('H75.0', 'Mastoiditis in infectious and parasitic diseases classified elsewhere', 'ICD10_2010'), +('H75.8', 'Other spec disorder of middle ear and mastoid in diseases classified elsewhere', 'ICD10_2010'), +('H80', 'Otosclerosis', 'ICD10_2010'), +('H80.0', 'Otosclerosis involving oval window, nonobliterative', 'ICD10_2010'), +('H80.1', 'Otosclerosis involving oval window, obliterative', 'ICD10_2010'), +('H80.2', 'Cochlear otosclerosis', 'ICD10_2010'), +('H80.8', 'Other otosclerosis', 'ICD10_2010'), +('H80.9', 'Otosclerosis, unspecified', 'ICD10_2010'), +('H81', 'Disorders of vestibular function', 'ICD10_2010'), +('H81.0', 'Meniere\'s disease', 'ICD10_2010'), +('H81.1', 'Benign paroxysmal vertigo', 'ICD10_2010'), +('H81.2', 'Vestibular neuronitis', 'ICD10_2010'), +('H81.3', 'Other peripheral vertigo', 'ICD10_2010'), +('H81.4', 'Vertigo of central origin', 'ICD10_2010'), +('H81.8', 'Other disorders of vestibular function', 'ICD10_2010'), +('H81.9', 'Disorder of vestibular function, unspecified', 'ICD10_2010'), +('H82', 'Vertiginous syndromes in diseases classified elsewhere', 'ICD10_2010'), +('H83', 'Other diseases of inner ear', 'ICD10_2010'), +('H83.0', 'Labyrinthitis', 'ICD10_2010'), +('H83.1', 'Labyrinthine fistula', 'ICD10_2010'), +('H83.2', 'Labyrinthine dysfunction', 'ICD10_2010'), +('H83.3', 'Noise effects on inner ear', 'ICD10_2010'), +('H83.8', 'Other specified diseases of inner ear', 'ICD10_2010'), +('H83.9', 'Disease of inner ear, unspecified', 'ICD10_2010'), +('H90', 'Conductive and sensorineural hearing loss', 'ICD10_2010'), +('H90.0', 'Conductive hearing loss, bilateral', 'ICD10_2010'), +('H90.1', 'Conduct hearing loss, unilateral with unrestricted hearing on the contralateral side', 'ICD10_2010'), +('H90.2', 'Conductive hearing loss, unspecified', 'ICD10_2010'), +('H90.3', 'Sensorineural hearing loss, bilateral', 'ICD10_2010'), +('H90.4', 'Sensorineural hear loss unilat unrestricted hearing contralateral side', 'ICD10_2010'), +('H90.5', 'Sensorineural hearing loss, unspecified', 'ICD10_2010'), +('H90.6', 'Mixed conductive and sensorineural hearing loss, bilateral', 'ICD10_2010'), +('H90.7', 'Mix conductive and sensorineural hearing loss, unilateral unrestricted hearing on the contralateral side', 'ICD10_2010'), +('H90.8', 'Mixed conductive and sensorineural hearing loss, unspecified', 'ICD10_2010'), +('H91', 'Other hearing loss', 'ICD10_2010'), +('H91.0', 'Ototoxic hearing loss', 'ICD10_2010'), +('H91.1', 'Presbycusis', 'ICD10_2010'), +('H91.2', 'Sudden idiopathic hearing loss', 'ICD10_2010'), +('H91.3', 'Deaf mutism, not elsewhere classified', 'ICD10_2010'), +('H91.8', 'Other specified hearing loss', 'ICD10_2010'), +('H91.9', 'Hearing loss, unspecified', 'ICD10_2010'), +('H92', 'Otalgia and effusion of ear', 'ICD10_2010'), +('H92.0', 'Otalgia', 'ICD10_2010'), +('H92.1', 'Otorrhoea', 'ICD10_2010'), +('H92.2', 'Otorrhagia', 'ICD10_2010'), +('H93', 'Other disorders of ear, not elsewhere classified', 'ICD10_2010'), +('H93.0', 'Degenerative and vascular disorders of ear', 'ICD10_2010'), +('H93.1', 'Tinnitus', 'ICD10_2010'), +('H93.2', 'Other abnormal auditory perceptions', 'ICD10_2010'), +('H93.3', 'Disorders of acoustic nerve', 'ICD10_2010'), +('H93.8', 'Other specified disorders of ear', 'ICD10_2010'), +('H93.9', 'Disorder of ear, unspecified', 'ICD10_2010'), +('H94', 'Other disorders of ear in diseases classified elsewhere', 'ICD10_2010'), +('H94.0', 'Acoustic neuritis in infectious and parasitic diseases classified elsewhere', 'ICD10_2010'), +('H94.8', 'Other specified disorders of ear in diseases classified elsewhere', 'ICD10_2010'), +('H95', 'Postprocedural disorders of ear and mastoid process, not elsewhere classified', 'ICD10_2010'), +('H95.0', 'Recurrent cholesteatoma of postmastoidectomy cavity', 'ICD10_2010'), +('H95.1', 'Other disorders following mastoidectomy', 'ICD10_2010'), +('H95.8', 'Other postprocedural disorders of ear and mastoid process', 'ICD10_2010'), +('H95.9', 'Postprocedural disorder of ear and mastoid process, unspecified', 'ICD10_2010'), +('I00', 'Rheumatic fever without mention of heart involvement', 'ICD10_2010'), +('I01', 'Rheumatic fever with heart involvement', 'ICD10_2010'), +('I01.0', 'Acute rheumatic pericarditis', 'ICD10_2010'), +('I01.1', 'Acute rheumatic endocarditis', 'ICD10_2010'), +('I01.2', 'Acute rheumatic myocarditis', 'ICD10_2010'), +('I01.8', 'Other acute rheumatic heart disease', 'ICD10_2010'), +('I01.9', 'Acute rheumatic heart disease, unspecified', 'ICD10_2010'), +('I02', 'Rheumatic chorea', 'ICD10_2010'), +('I02.0', 'Rheumatic chorea with heart involvement', 'ICD10_2010'), +('I02.9', 'Rheumatic chorea without heart involvement', 'ICD10_2010'), +('I05', 'Rheumatic mitral valve diseases', 'ICD10_2010'), +('I05.0', 'Mitral stenosis', 'ICD10_2010'), +('I05.1', 'Rheumatic mitral insufficiency', 'ICD10_2010'), +('I05.2', 'Mitral stenosis with insufficiency', 'ICD10_2010'), +('I05.8', 'Other mitral valve diseases', 'ICD10_2010'), +('I05.9', 'Mitral valve disease, unspecified', 'ICD10_2010'), +('I06', 'Rheumatic aortic valve diseases', 'ICD10_2010'), +('I06.0', 'Rheumatic aortic stenosis', 'ICD10_2010'), +('I06.1', 'Rheumatic aortic insufficiency', 'ICD10_2010'), +('I06.2', 'Rheumatic aortic stenosis with insufficiency', 'ICD10_2010'), +('I06.8', 'Other rheumatic aortic valve diseases', 'ICD10_2010'), +('I06.9', 'Rheumatic aortic valve disease, unspecified', 'ICD10_2010'), +('I07', 'Rheumatic tricuspid valve diseases', 'ICD10_2010'), +('I07.0', 'Tricuspid stenosis', 'ICD10_2010'), +('I07.1', 'Tricuspid insufficiency', 'ICD10_2010'), +('I07.2', 'Tricuspid stenosis with insufficiency', 'ICD10_2010'), +('I07.8', 'Other tricuspid valve diseases', 'ICD10_2010'), +('I07.9', 'Tricuspid valve disease, unspecified', 'ICD10_2010'), +('I08', 'Multiple valve diseases', 'ICD10_2010'), +('I08.0', 'Disorders of both mitral and aortic valves', 'ICD10_2010'), +('I08.1', 'Disorders of both mitral and tricuspid valves', 'ICD10_2010'), +('I08.2', 'Disorders of both aortic and tricuspid valves', 'ICD10_2010'), +('I08.3', 'Combined disorders of mitral, aortic and tricuspid valves', 'ICD10_2010'), +('I08.8', 'Other multiple valve diseases', 'ICD10_2010'), +('I08.9', 'Multiple valve disease, unspecified', 'ICD10_2010'), +('I09', 'Other rheumatic heart diseases', 'ICD10_2010'), +('I09.0', 'Rheumatic myocarditis', 'ICD10_2010'), +('I09.1', 'Rheumatic diseases of endocardium, valve unspecified', 'ICD10_2010'), +('I09.2', 'Chronic rheumatic pericarditis', 'ICD10_2010'), +('I09.8', 'Other specified rheumatic heart diseases', 'ICD10_2010'), +('I09.9', 'Rheumatic heart disease, unspecified', 'ICD10_2010'), +('I10', 'Essential (primary) hypertension', 'ICD10_2010'), +('I11', 'Hypertensive heart disease', 'ICD10_2010'), +('I11.0', 'Hypertensive heart disease with (congestive) heart failure', 'ICD10_2010'), +('I11.9', 'Hypertensive heart disease without (congestive) heart failure', 'ICD10_2010'), +('I12', 'Hypertensive renal disease', 'ICD10_2010'), +('I12.0', 'Hypertensive renal disease with renal failure', 'ICD10_2010'), +('I12.9', 'Hypertensive renal disease without renal failure', 'ICD10_2010'), +('I13', 'Hypertensive heart and renal disease', 'ICD10_2010'), +('I13.0', 'Hypertens heart and renal dis with (congestive) heart failure', 'ICD10_2010'), +('I13.1', 'Hypertensive heart and renal disease with renal failure', 'ICD10_2010'), +('I13.2', 'Hyper heart and renal disease both (congestive) heart failure and renal failure', 'ICD10_2010'), +('I13.9', 'Hypertensive heart and renal disease, unspecified', 'ICD10_2010'), +('I15', 'Secondary hypertension', 'ICD10_2010'), +('I15.0', 'Renovascular hypertension', 'ICD10_2010'), +('I15.1', 'Hypertension secondary to other renal disorders', 'ICD10_2010'), +('I15.2', 'Hypertension secondary to endocrine disorders', 'ICD10_2010'), +('I15.8', 'Other secondary hypertension', 'ICD10_2010'), +('I15.9', 'Secondary hypertension, unspecified', 'ICD10_2010'), +('I20', 'Angina pectoris', 'ICD10_2010'), +('I20.0', 'Unstable angina', 'ICD10_2010'), +('I20.1', 'Angina pectoris with documented spasm', 'ICD10_2010'), +('I20.8', 'Other forms of angina pectoris', 'ICD10_2010'), +('I20.9', 'Angina pectoris, unspecified', 'ICD10_2010'), +('I21', 'Acute myocardial infarction', 'ICD10_2010'), +('I21.0', 'Acute transmural myocardial infarction of anterior wall', 'ICD10_2010'), +('I21.1', 'Acute transmural myocardial infarction of inferior wall', 'ICD10_2010'), +('I21.2', 'Acute transmural myocardial infarction of other sites', 'ICD10_2010'), +('I21.3', 'Acute transmural myocardial infarction of unspecified site', 'ICD10_2010'), +('I21.4', 'Acute subendocardial myocardial infarction', 'ICD10_2010'), +('I21.9', 'Acute myocardial infarction, unspecified', 'ICD10_2010'), +('I22', 'Subsequent myocardial infarction', 'ICD10_2010'), +('I22.0', 'Subsequent myocardial infarction of anterior wall', 'ICD10_2010'), +('I22.1', 'Subsequent myocardial infarction of inferior wall', 'ICD10_2010'), +('I22.8', 'Subsequent myocardial infarction of other sites', 'ICD10_2010'), +('I22.9', 'Subsequent myocardial infarction of unspecified site', 'ICD10_2010'), +('I23', 'Certain current complications following acute myocardial infarction', 'ICD10_2010'), +('I23.0', 'Haemopericardium as current complication following acute myocardial infarction', 'ICD10_2010'), +('I23.1', 'Atrial septal defect as current complication following acute myocardial infarction', 'ICD10_2010'), +('I23.2', 'Ventricular septal defect as current complication following acute myocardial infarction', 'ICD10_2010'), +('I23.3', 'Rupture cardiac wall without haemopericardium as current complication following acute myocardial infarction', 'ICD10_2010'), +('I23.4', 'Rupture chordae tendineae as current complication following acut myocardial infarction', 'ICD10_2010'), +('I23.5', 'Rupture of papilary muscle as current complication following acute myocardial infarction', 'ICD10_2010'), +('I23.6', 'Thrombosis of atrium, auricular appendage ventricle as current complication following acute myocardial infarction', 'ICD10_2010'), +('I23.8', 'Oth current complications following acute myocardial infarction', 'ICD10_2010'), +('I24', 'Other acute ischaemic heart diseases', 'ICD10_2010'), +('I24.0', 'Coronary thrombosis not resulting in myocardial infarction', 'ICD10_2010'), +('I24.1', 'Dressler\'s syndrome', 'ICD10_2010'), +('I24.8', 'Other forms of acute ischaemic heart disease', 'ICD10_2010'), +('I24.9', 'Acute ischaemic heart disease, unspecified', 'ICD10_2010'), +('I25', 'Chronic ischaemic heart disease', 'ICD10_2010'), +('I25.0', 'Atherosclerotic cardiovascular disease, so described', 'ICD10_2010'), +('I25.1', 'Atherosclerotic heart disease', 'ICD10_2010'), +('I25.2', 'Old myocardial infarction', 'ICD10_2010'), +('I25.3', 'Aneurysm of heart', 'ICD10_2010'), +('I25.4', 'Coronary artery aneurysm', 'ICD10_2010'), +('I25.5', 'Ischaemic cardiomyopathy', 'ICD10_2010'), +('I25.6', 'Silent myocardial ischaemia', 'ICD10_2010'), +('I25.8', 'Other forms of chronic ischaemic heart disease', 'ICD10_2010'), +('I25.9', 'Chronic ischaemic heart disease, unspecified', 'ICD10_2010'), +('I26', 'Pulmonary embolism', 'ICD10_2010'), +('I26.0', 'Pulmonary embolism with mention of acute cor pulmonale', 'ICD10_2010'), +('I26.9', 'Pulmonary embolism without mention of acute cor pulmonale', 'ICD10_2010'), +('I27', 'Other pulmonary heart diseases', 'ICD10_2010'), +('I27.0', 'Primary pulmonary hypertension', 'ICD10_2010'); +INSERT INTO `icd10` (`ID_ICD10`, `Diagnosa`, `Versi_ICD10`) VALUES +('I27.1', 'Kyphoscoliotic heart disease', 'ICD10_2010'), +('I27.2', 'Other secondary pulmonary hypertension', 'ICD10_2010'), +('I27.8', 'Other specified pulmonary heart diseases', 'ICD10_2010'), +('I27.9', 'Pulmonary heart disease, unspecified', 'ICD10_2010'), +('I28', 'Other diseases of pulmonary vessels', 'ICD10_2010'), +('I28.0', 'Arteriovenous fistula of pulmonary vessels', 'ICD10_2010'), +('I28.1', 'Aneurysm of pulmonary artery', 'ICD10_2010'), +('I28.8', 'Other specified diseases of pulmonary vessels', 'ICD10_2010'), +('I28.9', 'Disease of pulmonary vessels, unspecified', 'ICD10_2010'), +('I30', 'Acute pericarditis', 'ICD10_2010'), +('I30.0', 'Acute nonspecific idiopathic pericarditis', 'ICD10_2010'), +('I30.1', 'Infective pericarditis', 'ICD10_2010'), +('I30.8', 'Other forms of acute pericarditis', 'ICD10_2010'), +('I30.9', 'Acute pericarditis, unspecified', 'ICD10_2010'), +('I31', 'Other diseases of pericardium', 'ICD10_2010'), +('I31.0', 'Chronic adhesive pericarditis', 'ICD10_2010'), +('I31.1', 'Chronic constrictive pericarditis', 'ICD10_2010'), +('I31.2', 'Haemopericardium, not elsewhere classified', 'ICD10_2010'), +('I31.3', 'Pericardial effusion (noninflammatory)', 'ICD10_2010'), +('I31.8', 'Other specified diseases of pericardium', 'ICD10_2010'), +('I31.9', 'Disease of pericardium, unspecified', 'ICD10_2010'), +('I32', 'Pericarditis in diseases classified elsewhere', 'ICD10_2010'), +('I32.0', 'Pericarditis in bacterial diseases classified elsewhere', 'ICD10_2010'), +('I32.1', 'Pericarditis in other infectious and parasitic diseases classified elsewhere', 'ICD10_2010'), +('I32.8', 'Pericarditis in other diseases classified elsewhere', 'ICD10_2010'), +('I33', 'Acute and subacute endocarditis', 'ICD10_2010'), +('I33.0', 'Acute and subacute infective endocarditis', 'ICD10_2010'), +('I33.9', 'Acute endocarditis, unspecified', 'ICD10_2010'), +('I34', 'Nonrheumatic mitral valve disorders', 'ICD10_2010'), +('I34.0', 'Mitral (valve) insufficiency', 'ICD10_2010'), +('I34.1', 'Mitral (valve) prolapse', 'ICD10_2010'), +('I34.2', 'Nonrheumatic mitral (valve) stenosis', 'ICD10_2010'), +('I34.8', 'Other nonrheumatic mitral valve disorders', 'ICD10_2010'), +('I34.9', 'Nonrheumatic mitral valve disorder, unspecified', 'ICD10_2010'), +('I35', 'Nonrheumatic aortic valve disorders', 'ICD10_2010'), +('I35.0', 'Aortic (valve) stenosis', 'ICD10_2010'), +('I35.1', 'Aortic (valve) insufficiency', 'ICD10_2010'), +('I35.2', 'Aortic (valve) stenosis with insufficiency', 'ICD10_2010'), +('I35.8', 'Other aortic valve disorders', 'ICD10_2010'), +('I35.9', 'Aortic valve disorder, unspecified', 'ICD10_2010'), +('I36', 'Nonrheumatic tricuspid valve disorders', 'ICD10_2010'), +('I36.0', 'Nonrheumatic tricuspid (valve) stenosis', 'ICD10_2010'), +('I36.1', 'Nonrheumatic tricuspid (valve) insufficiency', 'ICD10_2010'), +('I36.2', 'Nonrheumatic tricuspid (valve) stenosis with insufficiency', 'ICD10_2010'), +('I36.8', 'Other nonrheumatic tricuspid valve disorders', 'ICD10_2010'), +('I36.9', 'Nonrheumatic tricuspid valve disorder, unspecified', 'ICD10_2010'), +('I37', 'Pulmonary valve disorders', 'ICD10_2010'), +('I37.0', 'Pulmonary valve stenosis', 'ICD10_2010'), +('I37.1', 'Pulmonary valve insufficiency', 'ICD10_2010'), +('I37.2', 'Pulmonary valve stenosis with insufficiency', 'ICD10_2010'), +('I37.8', 'Other pulmonary valve disorders', 'ICD10_2010'), +('I37.9', 'Pulmonary valve disorder, unspecified', 'ICD10_2010'), +('I38', 'Endocarditis, valve unspecified', 'ICD10_2010'), +('I39', 'Endocarditis and heart valve disorders in diseases classified elsewhere', 'ICD10_2010'), +('I39.0', 'Mitral valve disorders in diseases classified elsewhere', 'ICD10_2010'), +('I39.1', 'Aortic valve disorders in diseases classified elsewhere', 'ICD10_2010'), +('I39.2', 'Tricuspid valve disorders in diseases classified elsewhere', 'ICD10_2010'), +('I39.3', 'Pulmonary valve disorders in diseases classified elsewhere', 'ICD10_2010'), +('I39.4', 'Multiple valve disorders in diseases classified elsewhere', 'ICD10_2010'), +('I39.8', 'Endocarditis, valve unspec, in diseases class elsewhere', 'ICD10_2010'), +('I40', 'Acute myocarditis', 'ICD10_2010'), +('I40.0', 'Infective myocarditis', 'ICD10_2010'), +('I40.1', 'Isolated myocarditis', 'ICD10_2010'), +('I40.8', 'Other acute myocarditis', 'ICD10_2010'), +('I40.9', 'Acute myocarditis, unspecified', 'ICD10_2010'), +('I41', 'Myocarditis in diseases classified elsewhere', 'ICD10_2010'), +('I41.0', 'Myocarditis in bacterial diseases classified elsewhere', 'ICD10_2010'), +('I41.1', 'Myocarditis in viral diseases classified elsewhere', 'ICD10_2010'), +('I41.2', 'Myocarditis in other infectious and parasitic diseases classified elsewhere', 'ICD10_2010'), +('I41.8', 'Myocarditis in other diseases classified elsewhere', 'ICD10_2010'), +('I42', 'Cardiomyopathy', 'ICD10_2010'), +('I42.0', 'Dilated cardiomyopathy', 'ICD10_2010'), +('I42.1', 'Obstructive hypertrophic cardiomyopathy', 'ICD10_2010'), +('I42.2', 'Other hypertrophic cardiomyopathy', 'ICD10_2010'), +('I42.3', 'Endomyocardial (eosinophilic) disease', 'ICD10_2010'), +('I42.4', 'Endocardial fibroelastosis', 'ICD10_2010'), +('I42.5', 'Other restrictive cardiomyopathy', 'ICD10_2010'), +('I42.6', 'Alcoholic cardiomyopathy', 'ICD10_2010'), +('I42.7', 'Cardiomyopathy due to drugs and other external agents', 'ICD10_2010'), +('I42.8', 'Other cardiomyopathies', 'ICD10_2010'), +('I42.9', 'Cardiomyopathy, unspecified', 'ICD10_2010'), +('I43', 'Cardiomyopathy in diseases classified elsewhere', 'ICD10_2010'), +('I43.0', 'Cardiomyopathy in infectious & parasitic diseases classified elsewhere', 'ICD10_2010'), +('I43.1', 'Cardiomyopathy in metabolic diseases', 'ICD10_2010'), +('I43.2', 'Cardiomyopathy in nutritional diseases', 'ICD10_2010'), +('I43.8', 'Cardiomyopathy in other diseases classified elsewhere', 'ICD10_2010'), +('I44', 'Atrioventricular and left bundle-branch block', 'ICD10_2010'), +('I44.0', 'Atrioventricular block, first degree', 'ICD10_2010'), +('I44.1', 'Atrioventricular block, second degree', 'ICD10_2010'), +('I44.2', 'Atrioventricular block, complete', 'ICD10_2010'), +('I44.3', 'Other and unspecified atrioventricular block', 'ICD10_2010'), +('I44.4', 'Left anterior fascicular block', 'ICD10_2010'), +('I44.5', 'Left posterior fascicular block', 'ICD10_2010'), +('I44.6', 'Other and unspecified fascicular block', 'ICD10_2010'), +('I44.7', 'Left bundle-branch block, unspecified', 'ICD10_2010'), +('I45', 'Other conduction disorders', 'ICD10_2010'), +('I45.0', 'Right fascicular block', 'ICD10_2010'), +('I45.1', 'Other and unspecified right bundle-branch block', 'ICD10_2010'), +('I45.2', 'Bifascicular block', 'ICD10_2010'), +('I45.3', 'Trifascicular block', 'ICD10_2010'), +('I45.4', 'Nonspecific intraventricular block', 'ICD10_2010'), +('I45.5', 'Other specified heart block', 'ICD10_2010'), +('I45.6', 'Pre-excitation syndrome', 'ICD10_2010'), +('I45.8', 'Other specified conduction disorders', 'ICD10_2010'), +('I45.9', 'Conduction disorder, unspecified', 'ICD10_2010'), +('I46', 'Cardiac arrest', 'ICD10_2010'), +('I46.0', 'Cardiac arrest with successful resuscitation', 'ICD10_2010'), +('I46.1', 'Sudden cardiac death, so described', 'ICD10_2010'), +('I46.9', 'Cardiac arrest, unspecified', 'ICD10_2010'), +('I47', 'Paroxysmal tachycardia', 'ICD10_2010'), +('I47.0', 'Re-entry ventricular arrhythmia', 'ICD10_2010'), +('I47.1', 'Supraventricular tachycardia', 'ICD10_2010'), +('I47.2', 'Ventricular tachycardia', 'ICD10_2010'), +('I47.9', 'Paroxysmal tachycardia, unspecified', 'ICD10_2010'), +('I48', 'Atrial fibrillation and flutter', 'ICD10_2010'), +('I49', 'Other cardiac arrhythmias', 'ICD10_2010'), +('I49.0', 'Ventricular fibrillation and flutter', 'ICD10_2010'), +('I49.1', 'Atrial premature depolarization', 'ICD10_2010'), +('I49.2', 'Junctional premature depolarization', 'ICD10_2010'), +('I49.3', 'Ventricular premature depolarization', 'ICD10_2010'), +('I49.4', 'Other and unspecified premature depolarization', 'ICD10_2010'), +('I49.5', 'Sick sinus syndrome', 'ICD10_2010'), +('I49.8', 'Other specified cardiac arrhythmias', 'ICD10_2010'), +('I49.9', 'Cardiac arrhythmia, unspecified', 'ICD10_2010'), +('I50', 'Heart failure', 'ICD10_2010'), +('I50.0', 'Congestive heart failure', 'ICD10_2010'), +('I50.1', 'Left ventricular failure', 'ICD10_2010'), +('I50.9', 'Heart failure, unspecified', 'ICD10_2010'), +('I51', 'Complications and ill-defined descriptions of heart disease', 'ICD10_2010'), +('I51.0', 'Cardiac septal defect, acquired', 'ICD10_2010'), +('I51.1', 'Rupture of chordae tendineae, not elsewhere classified', 'ICD10_2010'), +('I51.2', 'Rupture of papillary muscle, not elsewhere classified', 'ICD10_2010'), +('I51.3', 'Intracardiac thrombosis, not elsewhere classified', 'ICD10_2010'), +('I51.4', 'Myocarditis, unspecified', 'ICD10_2010'), +('I51.5', 'Myocardial degeneration', 'ICD10_2010'), +('I51.6', 'Cardiovascular disease, unspecified', 'ICD10_2010'), +('I51.7', 'Cardiomegaly', 'ICD10_2010'), +('I51.8', 'Other ill-defined heart diseases', 'ICD10_2010'), +('I51.9', 'Heart disease, unspecified', 'ICD10_2010'), +('I52', 'Other heart disorders in diseases classified elsewhere', 'ICD10_2010'), +('I52.0', 'Other heart disorders in bacterial diseases classified elsewhere', 'ICD10_2010'), +('I52.1', 'Oth heart disorders in oth infectious and parasitic disease classified elsewhere', 'ICD10_2010'), +('I52.8', 'Other heart disorders in other diseases classified elsewhere', 'ICD10_2010'), +('I60', 'Subarachnoid haemorrhage', 'ICD10_2010'), +('I60.0', 'Subarachnoid haemorrhage from carotid siphon and bifurcation', 'ICD10_2010'), +('I60.1', 'Subarachnoid haemorrhage from middle cerebral artery', 'ICD10_2010'), +('I60.2', 'Subarachnoid haemorrhage from anterior communicating artery', 'ICD10_2010'), +('I60.3', 'Subarachnoid haemorrhage from posterior communicating artery', 'ICD10_2010'), +('I60.4', 'Subarachnoid haemorrhage from basilar artery', 'ICD10_2010'), +('I60.5', 'Subarachnoid haemorrhage from vertebral artery', 'ICD10_2010'), +('I60.6', 'Subarachnoid haemorrhage from other intracranial arteries', 'ICD10_2010'), +('I60.7', 'Subarachnoid haemorrhage from intracranial artery, unspecified', 'ICD10_2010'), +('I60.8', 'Other subarachnoid haemorrhage', 'ICD10_2010'), +('I60.9', 'Subarachnoid haemorrhage, unspecified', 'ICD10_2010'), +('I61', 'Intracerebral haemorrhage', 'ICD10_2010'), +('I61.0', 'Intracerebral haemorrhage in hemisphere, subcortical', 'ICD10_2010'), +('I61.1', 'Intracerebral haemorrhage in hemisphere, cortical', 'ICD10_2010'), +('I61.2', 'Intracerebral haemorrhage in hemisphere, unspecified', 'ICD10_2010'), +('I61.3', 'Intracerebral haemorrhage in brain stem', 'ICD10_2010'), +('I61.4', 'Intracerebral haemorrhage in cerebellum', 'ICD10_2010'), +('I61.5', 'Intracerebral haemorrhage, intraventricular', 'ICD10_2010'), +('I61.6', 'Intracerebral haemorrhage, multiple localized', 'ICD10_2010'), +('I61.8', 'Other intracerebral haemorrhage', 'ICD10_2010'), +('I61.9', 'Intracerebral haemorrhage, unspecified', 'ICD10_2010'), +('I62', 'Other nontraumatic intracranial haemorrhage', 'ICD10_2010'), +('I62.0', 'Subdural haemorrhage (acute)(nontraumatic)', 'ICD10_2010'), +('I62.1', 'Nontraumatic extradural haemorrhage', 'ICD10_2010'), +('I62.9', 'Intracranial haemorrhage (nontraumatic), unspecified', 'ICD10_2010'), +('I63', 'Cerebral infarction', 'ICD10_2010'), +('I63.0', 'Cerebral infarct due to thrombosis of precerebral arteries', 'ICD10_2010'), +('I63.1', 'Cerebral infarction due to embolism of precerebral arteries', 'ICD10_2010'), +('I63.2', 'Cerebral infarction due unspecified occlusion or stenosis precerebral arteries', 'ICD10_2010'), +('I63.3', 'Cerebral infarction due to thrombosis of cerebral arteries', 'ICD10_2010'), +('I63.4', 'Cerebral infarction due to embolism of cerebral arteries', 'ICD10_2010'), +('I63.5', 'Cerebral infarction due unspecified occlusion or stenos cerebrl arteries', 'ICD10_2010'), +('I63.6', 'Cerebral infarction due cerebral venous thrombosis, nonpyogenic', 'ICD10_2010'), +('I63.8', 'Other cerebral infarction', 'ICD10_2010'), +('I63.9', 'Cerebral infarction, unspecified', 'ICD10_2010'), +('I64', 'Stroke, not specified as haemorrhage or infarction', 'ICD10_2010'), +('I65', 'Occlusion and stenosis of precerebral arteries, not resulting in cerebral infarction', 'ICD10_2010'), +('I65.0', 'Occlusion and stenosis of vertebral artery', 'ICD10_2010'), +('I65.1', 'Occlusion and stenosis of basilar artery', 'ICD10_2010'), +('I65.2', 'Occlusion and stenosis of carotid artery', 'ICD10_2010'), +('I65.3', 'Occlusion and stenosis of multip and bilat precerebral arteries', 'ICD10_2010'), +('I65.8', 'Occlusion and stenosis of other precerebral artery', 'ICD10_2010'), +('I65.9', 'Occlusion and stenosis of unspecified precerebral artery', 'ICD10_2010'), +('I66', 'Occlusion and stenosis of cerebral arteries, not resulting in cerebral infarction', 'ICD10_2010'), +('I66.0', 'Occlusion and stenosis of middle cerebral artery', 'ICD10_2010'), +('I66.1', 'Occlusion and stenosis of anterior cerebral artery', 'ICD10_2010'), +('I66.2', 'Occlusion and stenosis of posterior cerebral artery', 'ICD10_2010'), +('I66.3', 'Occlusion and stenosis of cerebellar arteries', 'ICD10_2010'), +('I66.4', 'Occlusion and stenosis of multiple and bilat cerebral arts', 'ICD10_2010'), +('I66.8', 'Occlusion and stenosis of other cerebral artery', 'ICD10_2010'), +('I66.9', 'Occlusion and stenosis of unspecified cerebral artery', 'ICD10_2010'), +('I67', 'Other cerebrovascular diseases', 'ICD10_2010'), +('I67.0', 'Dissection of cerebral arteries, nonruptured', 'ICD10_2010'), +('I67.1', 'Cerebral aneurysm, nonruptured', 'ICD10_2010'), +('I67.2', 'Cerebral atherosclerosis', 'ICD10_2010'), +('I67.3', 'Progressive vascular leukoencephalopathy', 'ICD10_2010'), +('I67.4', 'Hypertensive encephalopathy', 'ICD10_2010'), +('I67.5', 'Moyamoya disease', 'ICD10_2010'), +('I67.6', 'Nonpyogenic thrombosis of intracranial venous system', 'ICD10_2010'), +('I67.7', 'Cerebral arteritis, not elsewhere classified', 'ICD10_2010'), +('I67.8', 'Other specified cerebrovascular diseases', 'ICD10_2010'), +('I67.9', 'Cerebrovascular disease, unspecified', 'ICD10_2010'), +('I68', 'Cerebrovascular disorders in diseases classified elsewhere', 'ICD10_2010'), +('I68.0', 'Cerebral amyloid angiopathy', 'ICD10_2010'), +('I68.1', 'Cerebral arteritis in infectious & parasitic diseases classified elsewhere', 'ICD10_2010'), +('I68.2', 'Cerebral arteritis in other diseases classified elsewhere', 'ICD10_2010'), +('I68.8', 'Other cerebrovascular disorders in diseases classified elsewhere', 'ICD10_2010'), +('I69', 'Sequelae of cerebrovascular disease', 'ICD10_2010'), +('I69.0', 'Sequelae of subarachnoid haemorrhage', 'ICD10_2010'), +('I69.1', 'Sequelae of intracerebral haemorrhage', 'ICD10_2010'), +('I69.2', 'Sequelae of other nontraumatic intracranial haemorrhage', 'ICD10_2010'), +('I69.3', 'Sequelae of cerebral infarction', 'ICD10_2010'), +('I69.4', 'Sequelae of stroke, not specified as haemorrhage or infarction', 'ICD10_2010'), +('I69.8', 'Sequelae of other and unspecified cerebrovascular diseases', 'ICD10_2010'), +('I70', 'Atherosclerosis', 'ICD10_2010'), +('I70.0', 'Atherosclerosis of aorta', 'ICD10_2010'), +('I70.1', 'Atherosclerosis of renal artery', 'ICD10_2010'), +('I70.2', 'Atherosclerosis of arteries of extremities', 'ICD10_2010'), +('I70.8', 'Atherosclerosis of other arteries', 'ICD10_2010'), +('I70.9', 'Generalized and unspecified atherosclerosis', 'ICD10_2010'), +('I71', 'Aortic aneurysm and dissection', 'ICD10_2010'), +('I71.0', 'Dissection of aorta [any part]', 'ICD10_2010'), +('I71.1', 'Thoracic aortic aneurysm, ruptured', 'ICD10_2010'), +('I71.2', 'Thoracic aortic aneurysm, without mention of rupture', 'ICD10_2010'), +('I71.3', 'Abdominal aortic aneurysm, ruptured', 'ICD10_2010'), +('I71.4', 'Abdominal aortic aneurysm, without mention of rupture', 'ICD10_2010'), +('I71.5', 'Thoracoabdominal aortic aneurysm, ruptured', 'ICD10_2010'), +('I71.6', 'Thoracoabdominal aortic aneurysm, without mention of rupture', 'ICD10_2010'), +('I71.8', 'Aortic aneurysm of unspecified site, ruptured', 'ICD10_2010'), +('I71.9', 'Aortic aneurysm of unspecified site, without mention of rupture', 'ICD10_2010'), +('I72', 'Other aneurysm and dissection', 'ICD10_2010'), +('I72.0', 'Aneurysm of carotid artery', 'ICD10_2010'), +('I72.1', 'Aneurysm of artery of upper extremity', 'ICD10_2010'), +('I72.2', 'Aneurysm of renal artery', 'ICD10_2010'), +('I72.3', 'Aneurysm of iliac artery', 'ICD10_2010'), +('I72.4', 'Aneurysm of artery of lower extremity', 'ICD10_2010'), +('I72.5', 'Aneurysm and dissection of other precerebral arteries', 'ICD10_2010'), +('I72.8', 'Aneurysm of other specified arteries', 'ICD10_2010'), +('I72.9', 'Aneurysm of unspecified site', 'ICD10_2010'), +('I73', 'Other peripheral vascular diseases', 'ICD10_2010'), +('I73.0', 'Raynaud\'s syndrome', 'ICD10_2010'), +('I73.1', 'Thromboangiitis obliterans [buerger]', 'ICD10_2010'), +('I73.8', 'Other specified peripheral vascular diseases', 'ICD10_2010'), +('I73.9', 'Peripheral vascular disease, unspecified', 'ICD10_2010'), +('I74', 'Arterial embolism and thrombosis', 'ICD10_2010'), +('I74.0', 'Embolism and thrombosis of abdominal aorta', 'ICD10_2010'), +('I74.1', 'Embolism and thrombosis of other and unspecified parts of aorta', 'ICD10_2010'), +('I74.2', 'Embolism and thrombosis of arteries of upper extremities', 'ICD10_2010'), +('I74.3', 'Embolism and thrombosis of arteries of lower extremities', 'ICD10_2010'), +('I74.4', 'Embolism and thrombosis of arteries of extremities, unspecified', 'ICD10_2010'), +('I74.5', 'Embolism and thrombosis of iliac artery', 'ICD10_2010'), +('I74.8', 'Embolism and thrombosis of other arteries', 'ICD10_2010'), +('I74.9', 'Embolism and thrombosis of unspecified artery', 'ICD10_2010'), +('I77', 'Other disorders of arteries and arterioles', 'ICD10_2010'), +('I77.0', 'Arteriovenous fistula, acquired', 'ICD10_2010'), +('I77.1', 'Stricture of artery', 'ICD10_2010'), +('I77.2', 'Rupture of artery', 'ICD10_2010'), +('I77.3', 'Arterial fibromuscular dysplasia', 'ICD10_2010'), +('I77.4', 'Coeliac artery compression syndrome', 'ICD10_2010'), +('I77.5', 'Necrosis of artery', 'ICD10_2010'), +('I77.6', 'Arteritis, unspecified', 'ICD10_2010'), +('I77.8', 'Other specified disorders of arteries and arterioles', 'ICD10_2010'), +('I77.9', 'Disorder of arteries and arterioles, unspecified', 'ICD10_2010'), +('I78', 'Diseases of capillaries', 'ICD10_2010'), +('I78.0', 'Hereditary haemorrhagic telangiectasia', 'ICD10_2010'), +('I78.1', 'Naevus, non-neoplastic', 'ICD10_2010'), +('I78.8', 'Other diseases of capillaries', 'ICD10_2010'), +('I78.9', 'Disease of capillaries, unspecified', 'ICD10_2010'), +('I79', 'Disorders of arteries, arterioles and capillaries in diseases classified elsewhere', 'ICD10_2010'), +('I79.0', 'Aneurysm of aorta in diseases classified elsewhere', 'ICD10_2010'), +('I79.1', 'Aortitis in diseases classified elsewhere', 'ICD10_2010'), +('I79.2', 'Peripheral angiopathy in diseases classified elsewhere', 'ICD10_2010'), +('I79.8', 'Oth disord arteries, arterioles & capillaries in diseases classified elsewhere', 'ICD10_2010'), +('I80', 'Phlebitis and thrombophlebitis', 'ICD10_2010'), +('I80.0', 'Phlebitis and thrombophlebitis superficial vessels low extremities', 'ICD10_2010'), +('I80.1', 'Phlebitis and thrombophlebitis of femoral vein', 'ICD10_2010'), +('I80.2', 'Phlebitis and thrombophlebitis oth deep vessels low extremities', 'ICD10_2010'), +('I80.3', 'Phlebitis and thrombophlebitis of lower extremities, unspecified', 'ICD10_2010'), +('I80.8', 'Phlebitis and thrombophlebitis of other sites', 'ICD10_2010'), +('I80.9', 'Phlebitis and thrombophlebitis of unspecified site', 'ICD10_2010'), +('I81', 'Portal vein thrombosis', 'ICD10_2010'), +('I82', 'Other venous embolism and thrombosis', 'ICD10_2010'), +('I82.0', 'Budd-chiari syndrome', 'ICD10_2010'), +('I82.1', 'Thrombophlebitis migrans', 'ICD10_2010'), +('I82.2', 'Embolism and thrombosis of vena cava', 'ICD10_2010'), +('I82.3', 'Embolism and thrombosis of renal vein', 'ICD10_2010'), +('I82.8', 'Embolism and thrombosis of other specified veins', 'ICD10_2010'), +('I82.9', 'Embolism and thrombosis of unspecified vein', 'ICD10_2010'), +('I83', 'Varicose veins of lower extremities', 'ICD10_2010'), +('I83.0', 'Varicose veins of lower extremities with ulcer', 'ICD10_2010'), +('I83.1', 'Varicose veins of lower extremities with inflammation', 'ICD10_2010'), +('I83.2', 'Varicose veins low extremities with both ulcer and inflammation', 'ICD10_2010'), +('I83.9', 'Varicose veins lower extremities without ulcer or inflammation', 'ICD10_2010'), +('I84', 'Haemorrhoids', 'ICD10_2010'), +('I84.0', 'Internal thrombosed haemorrhoids', 'ICD10_2010'), +('I84.1', 'Internal haemorrhoids with other complications', 'ICD10_2010'), +('I84.2', 'Internal haemorrhoids without complication', 'ICD10_2010'), +('I84.3', 'External thrombosed haemorrhoids', 'ICD10_2010'), +('I84.4', 'External haemorrhoids with other complications', 'ICD10_2010'), +('I84.5', 'External haemorrhoids without complication', 'ICD10_2010'), +('I84.6', 'Residual haemorrhoidal skin tags', 'ICD10_2010'), +('I84.7', 'Unspecified thrombosed haemorrhoids', 'ICD10_2010'), +('I84.8', 'Unspecified haemorrhoids with other complications', 'ICD10_2010'), +('I84.9', 'Unspecified haemorrhoids without complication', 'ICD10_2010'), +('I85', 'Oesophageal varices', 'ICD10_2010'), +('I85.0', 'Oesophageal varices with bleeding', 'ICD10_2010'), +('I85.9', 'Oesophageal varices without bleeding', 'ICD10_2010'), +('I86', 'Varicose veins of other sites', 'ICD10_2010'), +('I86.0', 'Sublingual varices', 'ICD10_2010'), +('I86.1', 'Scrotal varices', 'ICD10_2010'), +('I86.2', 'Pelvic varices', 'ICD10_2010'), +('I86.3', 'Vulval varices', 'ICD10_2010'), +('I86.4', 'Gastric varices', 'ICD10_2010'), +('I86.8', 'Varicose veins of other specified sites', 'ICD10_2010'), +('I87', 'Other disorders of veins', 'ICD10_2010'), +('I87.0', 'Postphlebitic syndrome', 'ICD10_2010'), +('I87.1', 'Compression of vein', 'ICD10_2010'), +('I87.2', 'Venous insufficiency (chronic)(peripheral)', 'ICD10_2010'), +('I87.8', 'Other specified disorders of veins', 'ICD10_2010'), +('I87.9', 'Disorder of vein, unspecified', 'ICD10_2010'), +('I88', 'Nonspecific lymphadenitis', 'ICD10_2010'), +('I88.0', 'Nonspecific mesenteric lymphadenitis', 'ICD10_2010'), +('I88.1', 'Chronic lymphadenitis, except mesenteric', 'ICD10_2010'), +('I88.8', 'Other nonspecific lymphadenitis', 'ICD10_2010'), +('I88.9', 'Nonspecific lymphadenitis, unspecified', 'ICD10_2010'), +('I89', 'Other noninfective disorders of lymphatic vessels and lymph nodes', 'ICD10_2010'), +('I89.0', 'Lymphoedema, not elsewhere classified', 'ICD10_2010'), +('I89.1', 'Lymphangitis', 'ICD10_2010'), +('I89.8', 'Other specified noninfective disorders lymphatic vessels and lymph nodes', 'ICD10_2010'), +('I89.9', 'Noninfective disorder lymphatic vessels and lymph nodes, unspecified', 'ICD10_2010'), +('I95', 'Hypotension', 'ICD10_2010'), +('I95.0', 'Idiopathic hypotension', 'ICD10_2010'), +('I95.1', 'Orthostatic hypotension', 'ICD10_2010'), +('I95.2', 'Hypotension due to drugs', 'ICD10_2010'), +('I95.8', 'Other hypotension', 'ICD10_2010'), +('I95.9', 'Hypotension, unspecified', 'ICD10_2010'), +('I97', 'Postprocedural disorders of circulatory system, not elsewhere classified', 'ICD10_2010'), +('I97.0', 'Postcardiotomy syndrome', 'ICD10_2010'), +('I97.1', 'Other functional disturbances following cardiac surgery', 'ICD10_2010'), +('I97.2', 'Postmastectomy lymphoedema syndrome', 'ICD10_2010'), +('I97.8', 'Other postprocedural disorders of circulatory system , not elsewhere classified', 'ICD10_2010'), +('I97.9', 'Postprocedural disorder of circulatory system, unspecified', 'ICD10_2010'), +('I98', 'Other disorders of circulatory system in diseases classified elsewhere', 'ICD10_2010'), +('I98.0', 'Cardiovascular syphilis', 'ICD10_2010'), +('I98.1', 'Cardiovascular disorder other infectious and parasitic diseases classified elsewhere', 'ICD10_2010'), +('I98.2', 'Oesophageal varices in diseases classified elsewhere', 'ICD10_2010'), +('I98.3', 'Oesophageal varices with bleeding in diseases classified elsewhere', 'ICD10_2010'), +('I98.8', 'Other specified disorders of circulatory system in diseases classified elsewhere', 'ICD10_2010'), +('I99', 'Other and unspecified disorders of circulatory system', 'ICD10_2010'), +('J00', 'Acute nasopharyngitis [common cold]', 'ICD10_2010'), +('J01', 'Acute sinusitis', 'ICD10_2010'), +('J01.0', 'Acute maxillary sinusitis', 'ICD10_2010'), +('J01.1', 'Acute frontal sinusitis', 'ICD10_2010'), +('J01.2', 'Acute ethmoidal sinusitis', 'ICD10_2010'), +('J01.3', 'Acute sphenoidal sinusitis', 'ICD10_2010'), +('J01.4', 'Acute pansinusitis', 'ICD10_2010'), +('J01.8', 'Other acute sinusitis', 'ICD10_2010'), +('J01.9', 'Acute sinusitis, unspecified', 'ICD10_2010'), +('J02', 'Acute pharyngitis', 'ICD10_2010'), +('J02.0', 'Streptococcal pharyngitis', 'ICD10_2010'), +('J02.8', 'Acute pharyngitis due to other specified organisms', 'ICD10_2010'), +('J02.9', 'Acute pharyngitis, unspecified', 'ICD10_2010'), +('J03', 'Acute tonsillitis', 'ICD10_2010'), +('J03.0', 'Streptococcal tonsillitis', 'ICD10_2010'), +('J03.8', 'Acute tonsillitis due to other specified organisms', 'ICD10_2010'), +('J03.9', 'Acute tonsillitis, unspecified', 'ICD10_2010'), +('J04', 'Acute laryngitis and tracheitis', 'ICD10_2010'), +('J04.0', 'Acute laryngitis', 'ICD10_2010'), +('J04.1', 'Acute tracheitis', 'ICD10_2010'), +('J04.2', 'Acute laryngotracheitis', 'ICD10_2010'), +('J05', 'Acute obstructive laryngitis [croup] and epiglottitis', 'ICD10_2010'), +('J05.0', 'Acute obstructive laryngitis [croup]', 'ICD10_2010'), +('J05.1', 'Acute epiglottitis', 'ICD10_2010'), +('J06', 'Acute upper respiratory infections of multiple and unspecified sites', 'ICD10_2010'), +('J06.0', 'Acute laryngopharyngitis', 'ICD10_2010'), +('J06.8', 'Other acute upper respiratory infections of multiple sites', 'ICD10_2010'), +('J06.9', 'Acute upper respiratory infection, unspecified', 'ICD10_2010'), +('J09', 'Influenza due to identified avian infliuenza virus', 'ICD10_2010'), +('J10', 'Influenza due to other identified influenza virus', 'ICD10_2010'), +('J10.0', 'Influenza with pneumonia, influenza virus identified', 'ICD10_2010'), +('J10.1', 'Influenza with other respiratory manifestations, other influenza virus identified', 'ICD10_2010'), +('J10.8', 'Influenza with other manifestations, other influenza virus identified', 'ICD10_2010'), +('J11', 'Influenza, virus not identified', 'ICD10_2010'), +('J11.0', 'Influenza with pneumonia, virus not identified', 'ICD10_2010'), +('J11.1', 'Influenza with other respiratory manifestations virus not identified', 'ICD10_2010'), +('J11.8', 'Influenza with other manifestations, virus not identified', 'ICD10_2010'), +('J12', 'Viral pneumonia, not elsewhere classified', 'ICD10_2010'), +('J12.0', 'Adenoviral pneumonia', 'ICD10_2010'), +('J12.1', 'Respiratory syncytial virus pneumonia', 'ICD10_2010'), +('J12.2', 'Parainfluenza virus pneumonia', 'ICD10_2010'), +('J12.3', 'Human metapneumovirus pneumonia', 'ICD10_2010'), +('J12.8', 'Other viral pneumonia', 'ICD10_2010'), +('J12.9', 'Viral pneumonia, unspecified', 'ICD10_2010'), +('J13', 'Pneumonia due to streptococcus pneumoniae', 'ICD10_2010'), +('J14', 'Pneumonia due to haemophilus influenzae', 'ICD10_2010'), +('J15', 'Bacterial pneumonia, not elsewhere classified', 'ICD10_2010'), +('J15.0', 'Pneumonia due to klebsiella pneumoniae', 'ICD10_2010'), +('J15.1', 'Pneumonia due to pseudomonas', 'ICD10_2010'), +('J15.2', 'Pneumonia due to staphylococcus', 'ICD10_2010'), +('J15.3', 'Pneumonia due to streptococcus, group B', 'ICD10_2010'), +('J15.4', 'Pneumonia due to other streptococci', 'ICD10_2010'), +('J15.5', 'Pneumonia due to escherichia coli', 'ICD10_2010'), +('J15.6', 'Pneumonia due to other aerobic gram-negative bacteria', 'ICD10_2010'), +('J15.7', 'Pneumonia due to mycoplasma pneumoniae', 'ICD10_2010'), +('J15.8', 'Other bacterial pneumonia', 'ICD10_2010'), +('J15.9', 'Bacterial pneumonia, unspecified', 'ICD10_2010'), +('J16', 'Pneumonia due to other infectious organisms, not elsewhere classified', 'ICD10_2010'), +('J16.0', 'Chlamydial pneumonia', 'ICD10_2010'), +('J16.8', 'Pneumonia due to other specified infectious organisms', 'ICD10_2010'), +('J17', 'Pneumonia in diseases classified elsewhere', 'ICD10_2010'), +('J17.0', 'Pneumonia in bacterial diseases classified elsewhere', 'ICD10_2010'), +('J17.1', 'Pneumonia in viral diseases classified elsewhere', 'ICD10_2010'), +('J17.2', 'Pneumonia in mycoses', 'ICD10_2010'), +('J17.3', 'Pneumonia in parasitic diseases', 'ICD10_2010'), +('J17.8', 'Pneumonia in other diseases classified elsewhere', 'ICD10_2010'), +('J18', 'Pneumonia, organism unspecified', 'ICD10_2010'), +('J18.0', 'Bronchopneumonia, unspecified', 'ICD10_2010'), +('J18.1', 'Lobar pneumonia, unspecified', 'ICD10_2010'), +('J18.2', 'Hypostatic pneumonia, unspecified', 'ICD10_2010'), +('J18.8', 'Other pneumonia, organism unspecified', 'ICD10_2010'), +('J18.9', 'Pneumonia, unspecified', 'ICD10_2010'), +('J20', 'Acute bronchitis', 'ICD10_2010'), +('J20.0', 'Acute bronchitis due to mycoplasma pneumoniae', 'ICD10_2010'), +('J20.1', 'Acute bronchitis due to haemophilus influenzae', 'ICD10_2010'), +('J20.2', 'Acute bronchitis due to streptococcus', 'ICD10_2010'), +('J20.3', 'Acute bronchitis due to coxsackievirus', 'ICD10_2010'), +('J20.4', 'Acute bronchitis due to parainfluenza virus', 'ICD10_2010'), +('J20.5', 'Acute bronchitis due to respiratory syncytial virus', 'ICD10_2010'), +('J20.6', 'Acute bronchitis due to rhinovirus', 'ICD10_2010'), +('J20.7', 'Acute bronchitis due to echovirus', 'ICD10_2010'), +('J20.8', 'Acute bronchitis due to other specified organisms', 'ICD10_2010'), +('J20.9', 'Acute bronchitis, unspecified', 'ICD10_2010'), +('J21', 'Acute bronchiolitis', 'ICD10_2010'), +('J21.0', 'Acute bronchiolitis due to respiratory syncytial virus', 'ICD10_2010'), +('J21.1', 'Acute bronchiolitis due to human metapneumovirus', 'ICD10_2010'), +('J21.8', 'Acute bronchiolitis due to other specified organisms', 'ICD10_2010'), +('J21.9', 'Acute bronchiolitis, unspecified', 'ICD10_2010'), +('J22', 'Unspecified acute lower respiratory infection', 'ICD10_2010'), +('J30', 'Vasomotor and allergic rhinitis', 'ICD10_2010'), +('J30.0', 'Vasomotor rhinitis', 'ICD10_2010'), +('J30.1', 'Allergic rhinitis due to pollen', 'ICD10_2010'), +('J30.2', 'Other seasonal allergic rhinitis', 'ICD10_2010'), +('J30.3', 'Other allergic rhinitis', 'ICD10_2010'), +('J30.4', 'Allergic rhinitis, unspecified', 'ICD10_2010'), +('J31', 'Chronic rhinitis, nasopharyngitis and pharyngitis', 'ICD10_2010'), +('J31.0', 'Chronic rhinitis', 'ICD10_2010'), +('J31.1', 'Chronic nasopharyngitis', 'ICD10_2010'), +('J31.2', 'Chronic pharyngitis', 'ICD10_2010'), +('J32', 'Chronic sinusitis', 'ICD10_2010'), +('J32.0', 'Chronic maxillary sinusitis', 'ICD10_2010'), +('J32.1', 'Chronic frontal sinusitis', 'ICD10_2010'), +('J32.2', 'Chronic ethmoidal sinusitis', 'ICD10_2010'), +('J32.3', 'Chronic sphenoidal sinusitis', 'ICD10_2010'), +('J32.4', 'Chronic pansinusitis', 'ICD10_2010'), +('J32.8', 'Other chronic sinusitis', 'ICD10_2010'), +('J32.9', 'Chronic sinusitis, unspecified', 'ICD10_2010'), +('J33', 'Nasal polyp', 'ICD10_2010'), +('J33.0', 'Polyp of nasal cavity', 'ICD10_2010'), +('J33.1', 'Polypoid sinus degeneration', 'ICD10_2010'), +('J33.8', 'Other polyp of sinus', 'ICD10_2010'), +('J33.9', 'Nasal polyp, unspecified', 'ICD10_2010'), +('J34', 'Other disorders of nose and nasal sinuses', 'ICD10_2010'), +('J34.0', 'Abscess, furuncle and carbuncle of nose', 'ICD10_2010'), +('J34.1', 'Cyst and mucocele of nose and nasal sinus', 'ICD10_2010'), +('J34.2', 'Deviated nasal septum', 'ICD10_2010'), +('J34.3', 'Hypertrophy of nasal turbinates', 'ICD10_2010'), +('J34.8', 'Other specified disorders of nose and nasal sinuses', 'ICD10_2010'), +('J35', 'Chronic diseases of tonsils and adenoids', 'ICD10_2010'), +('J35.0', 'Chronic tonsillitis', 'ICD10_2010'), +('J35.1', 'Hypertrophy of tonsils', 'ICD10_2010'), +('J35.2', 'Hypertrophy of adenoids', 'ICD10_2010'), +('J35.3', 'Hypertrophy of tonsils with hypertrophy of adenoids', 'ICD10_2010'), +('J35.8', 'Other chronic diseases of tonsils and adenoids', 'ICD10_2010'), +('J35.9', 'Chronic disease of tonsils and adenoids, unspecified', 'ICD10_2010'), +('J36', 'Peritonsillar abscess', 'ICD10_2010'), +('J37', 'Chronic laryngitis and laryngotracheitis', 'ICD10_2010'), +('J37.0', 'Chronic laryngitis', 'ICD10_2010'), +('J37.1', 'Chronic laryngotracheitis', 'ICD10_2010'), +('J38', 'Diseases of vocal cords and larynx, not elsewhere classified', 'ICD10_2010'), +('J38.0', 'Paralysis of vocal cords and larynx', 'ICD10_2010'), +('J38.1', 'Polyp of vocal cord and larynx', 'ICD10_2010'), +('J38.2', 'Nodules of vocal cords', 'ICD10_2010'), +('J38.3', 'Other diseases of vocal cords', 'ICD10_2010'), +('J38.4', 'Oedema of larynx', 'ICD10_2010'), +('J38.5', 'Laryngeal spasm', 'ICD10_2010'), +('J38.6', 'Stenosis of larynx', 'ICD10_2010'), +('J38.7', 'Other diseases of larynx', 'ICD10_2010'), +('J39', 'Other diseases of upper respiratory tract', 'ICD10_2010'), +('J39.0', 'Retropharyngeal and parapharyngeal abscess', 'ICD10_2010'), +('J39.1', 'Other abscess of pharynx', 'ICD10_2010'), +('J39.2', 'Other diseases of pharynx', 'ICD10_2010'), +('J39.3', 'Upper respiratory tract hypersensitivity reaction, site unspecified', 'ICD10_2010'), +('J39.8', 'Other specified diseases of upper respiratory tract', 'ICD10_2010'), +('J39.9', 'Disease of upper respiratory tract, unspecified', 'ICD10_2010'), +('J40', 'Bronchitis, not specified as acute or chronic', 'ICD10_2010'), +('J41', 'Simple and mucopurulent chronic bronchitis', 'ICD10_2010'), +('J41.0', 'Simple chronic bronchitis', 'ICD10_2010'), +('J41.1', 'Mucopurulent chronic bronchitis', 'ICD10_2010'), +('J41.8', 'Mixed simple and mucopurulent chronic bronchitis', 'ICD10_2010'), +('J42', 'Unspecified chronic bronchitis', 'ICD10_2010'), +('J43', 'Emphysema', 'ICD10_2010'), +('J43.0', 'Macleod\'s syndrome', 'ICD10_2010'), +('J43.1', 'Panlobular emphysema', 'ICD10_2010'), +('J43.2', 'Centrilobular emphysema', 'ICD10_2010'), +('J43.8', 'Other emphysema', 'ICD10_2010'), +('J43.9', 'Emphysema, unspecified', 'ICD10_2010'), +('J44', 'Other chronic obstructive pulmonary disease', 'ICD10_2010'), +('J44.0', 'Chronic obstructive pulmonary disease with acute lower respiratory infection', 'ICD10_2010'), +('J44.1', 'Chronic obstructive pulmonary disease with acute exacerbation, unspecified', 'ICD10_2010'), +('J44.8', 'Other specified chronic obstructive pulmonary disease', 'ICD10_2010'), +('J44.9', 'Chronic obstructive pulmonary disease, unspecified', 'ICD10_2010'), +('J45', 'Asthma', 'ICD10_2010'), +('J45.0', 'Predominantly allergic asthma', 'ICD10_2010'), +('J45.1', 'Nonallergic asthma', 'ICD10_2010'), +('J45.8', 'Mixed asthma', 'ICD10_2010'), +('J45.9', 'Asthma, unspecified', 'ICD10_2010'), +('J46', 'Status asthmaticus', 'ICD10_2010'), +('J47', 'Bronchiectasis', 'ICD10_2010'), +('J60', 'Coalworker\'s pneumoconiosis', 'ICD10_2010'), +('J61', 'Pneumoconiosis due to asbestos and other mineral fibres', 'ICD10_2010'), +('J62', 'Pneumoconiosis due to dust containing silica', 'ICD10_2010'), +('J62.0', 'Pneumoconiosis due to talc dust', 'ICD10_2010'), +('J62.8', 'Pneumoconiosis due to other dust containing silica', 'ICD10_2010'), +('J63', 'Pneumoconiosis due to other inorganic dusts', 'ICD10_2010'), +('J63.0', 'Aluminosis (of lung)', 'ICD10_2010'), +('J63.1', 'Bauxite fibrosis (of lung)', 'ICD10_2010'), +('J63.2', 'Berylliosis', 'ICD10_2010'), +('J63.3', 'Graphite fibrosis (of lung)', 'ICD10_2010'), +('J63.4', 'Siderosis', 'ICD10_2010'), +('J63.5', 'Stannosis', 'ICD10_2010'), +('J63.8', 'Pneumoconiosis due to other specified inorganic dusts', 'ICD10_2010'), +('J64', 'Unspecified pneumoconiosis', 'ICD10_2010'), +('J65', 'Pneumoconiosis associated with tuberculosis', 'ICD10_2010'), +('J66', 'Airway disease due to specific organic dust', 'ICD10_2010'), +('J66.0', 'Byssinosis', 'ICD10_2010'), +('J66.1', 'Flax-dresser\'s disease', 'ICD10_2010'), +('J66.2', 'Cannabinosis', 'ICD10_2010'), +('J66.8', 'Airway disease due to other specific organic dusts', 'ICD10_2010'), +('J67', 'Hypersensitivity pneumonitis due to organic dust', 'ICD10_2010'), +('J67.0', 'Farmer\'s lung', 'ICD10_2010'), +('J67.1', 'Bagassosis', 'ICD10_2010'), +('J67.2', 'Bird fancier\'s lung', 'ICD10_2010'), +('J67.3', 'Suberosis', 'ICD10_2010'), +('J67.4', 'Maltworker\'s lung', 'ICD10_2010'), +('J67.5', 'Mushroom-worker\'s lung', 'ICD10_2010'), +('J67.6', 'Maple-bark-stripper\'s lung', 'ICD10_2010'), +('J67.7', 'Air-conditioner and humidifier lung', 'ICD10_2010'), +('J67.8', 'Hypersensitivity pneumonitis due to other organic dusts', 'ICD10_2010'), +('J67.9', 'Hypersensitivity pneumonitis due to unspecified organic dust', 'ICD10_2010'), +('J68', 'Respiratory conditions due to inhalation of chemicals, gases, fumes and vapours', 'ICD10_2010'), +('J68.0', 'Bronchitis & pneumonitis due chemicals, gases fumes & vapours', 'ICD10_2010'), +('J68.1', 'Acute pulmon\'y oedema due chemicals, gases fumes & vapours', 'ICD10_2010'), +('J68.2', 'Upper respiratory inflammation due to chemicals gases, fumes and vapour not elsewhere classified', 'ICD10_2010'), +('J68.3', 'Other acute and subacute respiratory conditions due to chemicals, gases, fumes & vapours', 'ICD10_2010'), +('J68.4', 'Chronic respiratory conditions due chemicals, gases, fumes and vapours', 'ICD10_2010'), +('J68.8', 'Other respiratory conditions due chemicals, gases fumes & vapours', 'ICD10_2010'), +('J68.9', 'Unspecified respiratory conditions due chemicals, gases fumes & vapours', 'ICD10_2010'), +('J69', 'Pneumonitis due to solids and liquids', 'ICD10_2010'), +('J69.0', 'Pneumonitis due to food and vomit', 'ICD10_2010'), +('J69.1', 'Pneumonitis due to oils and essences', 'ICD10_2010'), +('J69.8', 'Pneumonitis due to other solids and liquids', 'ICD10_2010'), +('J70', 'Respiratory conditions due to other external agents', 'ICD10_2010'), +('J70.0', 'Acute pulmonary manifestations due to radiation', 'ICD10_2010'), +('J70.1', 'Chronic and other pulmonary manifestations due to radiation', 'ICD10_2010'), +('J70.2', 'Acute drug-induced interstitial lung disorders', 'ICD10_2010'), +('J70.3', 'Chronic drug-induced interstitial lung disorders', 'ICD10_2010'), +('J70.4', 'Drug-induced interstitial lung disorders, unspecified', 'ICD10_2010'), +('J70.8', 'Respiratory conditions due to other specified external agents', 'ICD10_2010'), +('J70.9', 'Respiratory conditions due to unspecified external agent', 'ICD10_2010'), +('J80', 'Adult respiratory distress syndrome', 'ICD10_2010'), +('J81', 'Pulmonary oedema', 'ICD10_2010'), +('J82', 'Pulmonary eosinophilia, not elsewhere classified', 'ICD10_2010'), +('J84', 'Other interstitial pulmonary diseases', 'ICD10_2010'), +('J84.0', 'Alveolar and parietoalveolar conditions', 'ICD10_2010'), +('J84.1', 'Other interstitial pulmonary diseases with fibrosis', 'ICD10_2010'), +('J84.8', 'Other specified interstitial pulmonary diseases', 'ICD10_2010'), +('J84.9', 'Interstitial pulmonary disease, unspecified', 'ICD10_2010'), +('J85', 'Abscess of lung and mediastinum', 'ICD10_2010'), +('J85.0', 'Gangrene and necrosis of lung', 'ICD10_2010'), +('J85.1', 'Abscess of lung with pneumonia', 'ICD10_2010'), +('J85.2', 'Abscess of lung without pneumonia', 'ICD10_2010'), +('J85.3', 'Abscess of mediastinum', 'ICD10_2010'), +('J86', 'Pyothorax', 'ICD10_2010'), +('J86.0', 'Pyothorax with fistula', 'ICD10_2010'), +('J86.9', 'Pyothorax without fistula', 'ICD10_2010'), +('J90', 'Pleural effusion, not elsewhere classified', 'ICD10_2010'), +('J91', 'Pleural effusion in conditions classified elsewhere', 'ICD10_2010'), +('J92', 'Pleural plaque', 'ICD10_2010'), +('J92.0', 'Pleural plaque with presence of asbestos', 'ICD10_2010'), +('J92.9', 'Pleural plaque without asbestos', 'ICD10_2010'), +('J93', 'Pneumothorax', 'ICD10_2010'), +('J93.0', 'Spontaneous tension pneumothorax', 'ICD10_2010'), +('J93.1', 'Other spontaneous pneumothorax', 'ICD10_2010'), +('J93.8', 'Other pneumothorax', 'ICD10_2010'), +('J93.9', 'Pneumothorax, unspecified', 'ICD10_2010'), +('J94', 'Other pleural conditions', 'ICD10_2010'), +('J94.0', 'Chylous effusion', 'ICD10_2010'), +('J94.1', 'Fibrothorax', 'ICD10_2010'), +('J94.2', 'Haemothorax', 'ICD10_2010'), +('J94.8', 'Other specified pleural conditions', 'ICD10_2010'), +('J94.9', 'Pleural condition, unspecified', 'ICD10_2010'), +('J95', 'Postprocedural respiratory disorders, not elsewhere classified', 'ICD10_2010'), +('J95.0', 'Tracheostomy malfunction', 'ICD10_2010'), +('J95.1', 'Acute pulmonary insufficiency following thoracic surgery', 'ICD10_2010'), +('J95.2', 'Acute pulmonary insufficiency following nonthoracic surgery', 'ICD10_2010'), +('J95.3', 'Chronic pulmonary insufficiency following surgery', 'ICD10_2010'), +('J95.4', 'Mendelson\'s syndrome', 'ICD10_2010'), +('J95.5', 'Postprocedural subglottic stenosis', 'ICD10_2010'), +('J95.8', 'Other postprocedural respiratory disorders', 'ICD10_2010'), +('J95.9', 'Postprocedural respiratory disorder, unspecified', 'ICD10_2010'), +('J96', 'Respiratory failure, not elsewhere classified', 'ICD10_2010'), +('J96.0', 'Acute respiratory failure', 'ICD10_2010'), +('J96.1', 'Chronic respiratory failure', 'ICD10_2010'), +('J96.9', 'Respiratory failure, unspecified', 'ICD10_2010'), +('J98', 'Other respiratory disorders', 'ICD10_2010'), +('J98.0', 'Diseases of bronchus, not elsewhere classified', 'ICD10_2010'), +('J98.1', 'Pulmonary collapse', 'ICD10_2010'), +('J98.2', 'Interstitial emphysema', 'ICD10_2010'), +('J98.3', 'Compensatory emphysema', 'ICD10_2010'), +('J98.4', 'Other disorders of lung', 'ICD10_2010'), +('J98.5', 'Diseases of mediastinum, not elsewhere classified', 'ICD10_2010'), +('J98.6', 'Disorders of diaphragm', 'ICD10_2010'), +('J98.8', 'Other specified respiratory disorders', 'ICD10_2010'), +('J98.9', 'Respiratory disorder, unspecified', 'ICD10_2010'), +('J99', 'Respiratory disorders in diseases classified elsewhere', 'ICD10_2010'), +('J99.0', 'Rheumatoid lung disease', 'ICD10_2010'), +('J99.1', 'Resp disorders in other diffuse connective tissue disorders', 'ICD10_2010'), +('J99.8', 'Respiratory disorders in other diseases classified elsewhere', 'ICD10_2010'), +('K00', 'Disorders of tooth development and eruption', 'ICD10_2010'), +('K00.0', 'Anodontia', 'ICD10_2010'), +('K00.1', 'Supernumerary teeth', 'ICD10_2010'), +('K00.2', 'Abnormalities of size and form of teeth', 'ICD10_2010'), +('K00.3', 'Mottled teeth', 'ICD10_2010'), +('K00.4', 'Disturbances in tooth formation', 'ICD10_2010'), +('K00.5', 'Hereditary disturbances in tooth structure nec', 'ICD10_2010'), +('K00.6', 'Disturbances in tooth eruption', 'ICD10_2010'), +('K00.7', 'Teething syndrome', 'ICD10_2010'), +('K00.8', 'Other disorders of tooth development', 'ICD10_2010'), +('K00.9', 'Disorder of tooth development, unspecified', 'ICD10_2010'), +('K01', 'Embedded and impacted teeth', 'ICD10_2010'), +('K01.0', 'Embedded teeth', 'ICD10_2010'), +('K01.1', 'Impacted teeth', 'ICD10_2010'), +('K02', 'Dental caries', 'ICD10_2010'), +('K02.0', 'Caries limited to enamel', 'ICD10_2010'), +('K02.1', 'Caries of dentine', 'ICD10_2010'), +('K02.2', 'Caries of cementum', 'ICD10_2010'), +('K02.3', 'Arrested dental caries', 'ICD10_2010'), +('K02.4', 'Odontoclasia', 'ICD10_2010'), +('K02.8', 'Other dental caries', 'ICD10_2010'), +('K02.9', 'Dental caries, unspecified', 'ICD10_2010'), +('K03', 'Other diseases of hard tissues of teeth', 'ICD10_2010'), +('K03.0', 'Excessive attrition of teeth', 'ICD10_2010'), +('K03.1', 'Abrasion of teeth', 'ICD10_2010'), +('K03.2', 'Erosion of teeth', 'ICD10_2010'), +('K03.3', 'Pathological resorption of teeth', 'ICD10_2010'), +('K03.4', 'Hypercementosis', 'ICD10_2010'), +('K03.5', 'Ankylosis of teeth', 'ICD10_2010'), +('K03.6', 'Deposits [accretions] on teeth', 'ICD10_2010'), +('K03.7', 'Posteruptive colour changes of dental hard tissues', 'ICD10_2010'), +('K03.8', 'Other specified diseases of hard tissues of teeth', 'ICD10_2010'), +('K03.9', 'Disease of hard tissues of teeth, unspecified', 'ICD10_2010'), +('K04', 'Diseases of pulp and periapical tissues', 'ICD10_2010'), +('K04.0', 'Pulpitis', 'ICD10_2010'), +('K04.1', 'Necrosis of pulp', 'ICD10_2010'), +('K04.2', 'Pulp degeneration', 'ICD10_2010'), +('K04.3', 'Abnormal hard tissue formation in pulp', 'ICD10_2010'), +('K04.4', 'Acute apical periodontitis of pulpal origin', 'ICD10_2010'), +('K04.5', 'Chronic apical periodontitis', 'ICD10_2010'), +('K04.6', 'Periapical abscess with sinus', 'ICD10_2010'), +('K04.7', 'Periapical abscess without sinus', 'ICD10_2010'), +('K04.8', 'Radicular cyst', 'ICD10_2010'), +('K04.9', 'Other and unspec diseases of pulp and periapical tissues', 'ICD10_2010'), +('K05', 'Gingivitis and periodontal diseases', 'ICD10_2010'), +('K05.0', 'Acute gingivitis', 'ICD10_2010'), +('K05.1', 'Chronic gingivitis', 'ICD10_2010'), +('K05.2', 'Acute periodontitis', 'ICD10_2010'), +('K05.3', 'Chronic periodontitis', 'ICD10_2010'), +('K05.4', 'Periodontosis', 'ICD10_2010'), +('K05.5', 'Other periodontal diseases', 'ICD10_2010'), +('K05.6', 'Periodontal disease, unspecified', 'ICD10_2010'), +('K06', 'Other disorders of gingiva and edentulous alveolar ridge', 'ICD10_2010'), +('K06.0', 'Gingival recession', 'ICD10_2010'), +('K06.1', 'Gingival enlargement', 'ICD10_2010'), +('K06.2', 'Gingival and edentulous alveolar ridge les assoc with traum', 'ICD10_2010'), +('K06.8', 'Other specified disorder of gingiva and edentulous alveolar ridge', 'ICD10_2010'), +('K06.9', 'Disorder of gingiva and edentulous alveolar ridge, unspec act', 'ICD10_2010'), +('K07', 'Dentofacial anomalies [including malocclusion]', 'ICD10_2010'), +('K07.0', 'Major anomalies of jaw size', 'ICD10_2010'), +('K07.1', 'Anomalies of jaw-cranial base relationship', 'ICD10_2010'), +('K07.2', 'Anomalies of dental arch relationship', 'ICD10_2010'), +('K07.3', 'Anomalies of tooth position', 'ICD10_2010'), +('K07.4', 'Malocclusion, unspecified', 'ICD10_2010'), +('K07.5', 'Dentofacial functional abnormalities', 'ICD10_2010'), +('K07.6', 'Temporomandibular joint disorders', 'ICD10_2010'), +('K07.8', 'Other dentofacial anomalies', 'ICD10_2010'), +('K07.9', 'Dentofacial anomaly, unspecified', 'ICD10_2010'), +('K08', 'Other disorders of teeth and supporting structures', 'ICD10_2010'), +('K08.0', 'Exfoliation of teeth due to systemic causes', 'ICD10_2010'), +('K08.1', 'Loss of teeth accident extraction or local periodontal dis', 'ICD10_2010'), +('K08.2', 'Atrophy of edentulous alveolar ridge', 'ICD10_2010'), +('K08.3', 'Retained dental root', 'ICD10_2010'), +('K08.8', 'Other specified disorders of teeth and supporting structures', 'ICD10_2010'), +('K08.9', 'Disorder of teeth and supporting structures, unspecified', 'ICD10_2010'), +('K09', 'Cysts of oral region, not elsewhere classified', 'ICD10_2010'), +('K09.0', 'Developmental odontogenic cysts', 'ICD10_2010'), +('K09.1', 'Developmental (nonodontogenic) cysts of oral region', 'ICD10_2010'), +('K09.2', 'Other cysts of jaw', 'ICD10_2010'), +('K09.8', 'Other cysts of oral region, not elsewhere classified', 'ICD10_2010'), +('K09.9', 'Cyst of oral region, unspecified', 'ICD10_2010'), +('K10', 'Other diseases of jaws', 'ICD10_2010'), +('K10.0', 'Developmental disorders of jaws', 'ICD10_2010'), +('K10.1', 'Giant cell granuloma, central', 'ICD10_2010'), +('K10.2', 'Inflammatory conditions of jaws', 'ICD10_2010'), +('K10.3', 'Alveolitis of jaws', 'ICD10_2010'), +('K10.8', 'Other specified diseases of jaws', 'ICD10_2010'), +('K10.9', 'Disease of jaws, unspecified', 'ICD10_2010'), +('K11', 'Diseases of salivary glands', 'ICD10_2010'), +('K11.0', 'Atrophy of salivary gland', 'ICD10_2010'), +('K11.1', 'Hypertrophy of salivary gland', 'ICD10_2010'), +('K11.2', 'Sialoadenitis', 'ICD10_2010'), +('K11.3', 'Abscess of salivary gland', 'ICD10_2010'), +('K11.4', 'Fistula of salivary gland', 'ICD10_2010'), +('K11.5', 'Sialolithiasis', 'ICD10_2010'), +('K11.6', 'Mucocele of salivary gland', 'ICD10_2010'), +('K11.7', 'Disturbances of salivary secretion', 'ICD10_2010'), +('K11.8', 'Other diseases of salivary glands', 'ICD10_2010'), +('K11.9', 'Disease of salivary gland, unspecified', 'ICD10_2010'), +('K12', 'Stomatitis and related lesions', 'ICD10_2010'), +('K12.0', 'Recurrent oral aphthae', 'ICD10_2010'), +('K12.1', 'Other forms of stomatitis', 'ICD10_2010'), +('K12.2', 'Cellulitis and abscess of mouth', 'ICD10_2010'), +('K12.3', 'Oral mucositis (ulcerative)', 'ICD10_2010'), +('K13', 'Other diseases of lip and oral mucosa', 'ICD10_2010'), +('K13.0', 'Diseases of lips', 'ICD10_2010'), +('K13.1', 'Cheek and lip biting', 'ICD10_2010'), +('K13.2', 'Leukoplakia and other disturbances of oral epithelium, including tongue', 'ICD10_2010'), +('K13.3', 'Hairy leukoplakia', 'ICD10_2010'), +('K13.4', 'Granuloma and granuloma-like lesions of oral mucosa', 'ICD10_2010'), +('K13.5', 'Oral submucous fibrosis', 'ICD10_2010'), +('K13.6', 'Irritative hyperplasia of oral mucosa', 'ICD10_2010'), +('K13.7', 'Other and unspecified lesions of oral mucosa', 'ICD10_2010'), +('K14', 'Diseases of tongue', 'ICD10_2010'), +('K14.0', 'Glossitis', 'ICD10_2010'), +('K14.1', 'Geographic tongue', 'ICD10_2010'), +('K14.2', 'Median rhomboid glossitis', 'ICD10_2010'), +('K14.3', 'Hypertrophy of tongue papillae', 'ICD10_2010'), +('K14.4', 'Atrophy of tongue papillae', 'ICD10_2010'), +('K14.5', 'Plicated tongue', 'ICD10_2010'), +('K14.6', 'Glossodynia', 'ICD10_2010'), +('K14.8', 'Other diseases of tongue', 'ICD10_2010'), +('K14.9', 'Disease of tongue, unspecified', 'ICD10_2010'), +('K20', 'Oesophagitis', 'ICD10_2010'), +('K21', 'Gastro-oesophageal reflux disease', 'ICD10_2010'), +('K21.0', 'Gastro-oesophageal reflux disease with oesophagitis', 'ICD10_2010'), +('K21.9', 'Gastro-oesophageal reflux disease without oesophagitis', 'ICD10_2010'), +('K22', 'Other diseases of oesophagus', 'ICD10_2010'), +('K22.0', 'Achalasia of cardia', 'ICD10_2010'), +('K22.1', 'Ulcer of oesophagus', 'ICD10_2010'), +('K22.2', 'Oesophageal obstruction', 'ICD10_2010'), +('K22.3', 'Perforation of oesophagus', 'ICD10_2010'), +('K22.4', 'Dyskinesia of oesophagus', 'ICD10_2010'), +('K22.5', 'Diverticulum of oesophagus, acquired', 'ICD10_2010'), +('K22.6', 'Gastro-oesophageal laceration-haemorrhage syndrome', 'ICD10_2010'), +('K22.7', 'Barrett\'s oesophagus', 'ICD10_2010'), +('K22.8', 'Other specified diseases of oesophagus', 'ICD10_2010'), +('K22.9', 'Disease of oesophagus, unspecified', 'ICD10_2010'), +('K23', 'Disorders of oesophagus in diseases classified elsewhere', 'ICD10_2010'), +('K23.0', 'Tuberculous oesophagitis', 'ICD10_2010'), +('K23.1', 'Megaoesophagus in chagas\' disease', 'ICD10_2010'), +('K23.8', 'Disorders of oesophagus in other diseases ec', 'ICD10_2010'), +('K25', 'Gastric ulcer', 'ICD10_2010'), +('K25.0', 'Gastric ulcer, acute with haemorrhage', 'ICD10_2010'), +('K25.1', 'Gastric ulcer, acute with perforation', 'ICD10_2010'), +('K25.2', 'Gastric ulcer, acute with both haemorrhage and perforation', 'ICD10_2010'), +('K25.3', 'Gastric ulcer, acute without haemorrhage or perforation', 'ICD10_2010'), +('K25.4', 'Gastric ulcer, chronic or unspecified with haemorrhage', 'ICD10_2010'), +('K25.5', 'Gastric ulcer, chronic or unspecified with perforation', 'ICD10_2010'), +('K25.6', 'Gastric ulcer, chronic or unspecified with both haemorrhage and perforation', 'ICD10_2010'), +('K25.7', 'Gastric ulcer, chronic without haemorrhage or perforation', 'ICD10_2010'), +('K25.9', 'Gastric ulcer, unspec as acute or chronic w\'out haemorrhage or perforation', 'ICD10_2010'), +('K26', 'Duodenal ulcer', 'ICD10_2010'), +('K26.0', 'Duodenal ulcer, acute with haemorrhage', 'ICD10_2010'), +('K26.1', 'Duodenal ulcer, acute with perforation', 'ICD10_2010'), +('K26.2', 'Duodenal ulcer, acute with both haemorrhage and perforation', 'ICD10_2010'), +('K26.3', 'Duodenal ulcer, acute without haemorrhage or perforation', 'ICD10_2010'), +('K26.4', 'Duodenal ulcer, chronic or unspecified with haemorrhage', 'ICD10_2010'); +INSERT INTO `icd10` (`ID_ICD10`, `Diagnosa`, `Versi_ICD10`) VALUES +('K26.5', 'Duodenal ulcer, chronic or unspecified with perforation', 'ICD10_2010'), +('K26.6', 'Chronic or unspecified with both haemorrhage and perforation', 'ICD10_2010'), +('K26.7', 'Duodenal ulcer, chronic without haemorrhage or perforation', 'ICD10_2010'), +('K26.9', 'Unspec as acute or chronic without haemorrhage or perforation', 'ICD10_2010'), +('K27', 'Peptic ulcer, site unspecified', 'ICD10_2010'), +('K27.0', 'Peptic ulcer, acute with haemorrhage', 'ICD10_2010'), +('K27.1', 'Peptic ulcer, acute with perforation', 'ICD10_2010'), +('K27.2', 'Peptic ulcer, acute with both haemorrhage and perforation', 'ICD10_2010'), +('K27.3', 'Peptic ulcer, acute without haemorrhage or perforation', 'ICD10_2010'), +('K27.4', 'Peptic ulcer, chronic or unspecified with haemorrhage', 'ICD10_2010'), +('K27.5', 'Peptic ulcer, chronic or unspecified with perforation', 'ICD10_2010'), +('K27.6', 'Peptic ulcer, chronic or unspecified with both haemorrhage and perforation', 'ICD10_2010'), +('K27.7', 'Peptic ulcer, chronic without haemorrhage or perforation', 'ICD10_2010'), +('K27.9', 'Peptic ulcer, unspec as acute or chronic without haemorrhage or perforation', 'ICD10_2010'), +('K28', 'Gastrojejunal ulcer', 'ICD10_2010'), +('K28.0', 'Gastrojejunal ulcer, acute with haemorrhage', 'ICD10_2010'), +('K28.1', 'Gastrojejunal ulcer, acute with perforation', 'ICD10_2010'), +('K28.2', 'Gastrojejunal ulcer, acute with both haemorrhage and perforation', 'ICD10_2010'), +('K28.3', 'Gastrojejunal ulcer, acute without haemorrhage or perforation', 'ICD10_2010'), +('K28.4', 'Gastrojejunal ulcer, chronic or unspecified with haemorrhage', 'ICD10_2010'), +('K28.5', 'Gastrojejunal ulcer, chronic or unspecified with perforation', 'ICD10_2010'), +('K28.6', 'Gastrojejunal ulcer, chronic or unspecified with both haemorrhage and perforation', 'ICD10_2010'), +('K28.7', 'Gastrojejunal ulcer, chronic without haemorrhage or perforation', 'ICD10_2010'), +('K28.9', 'Gastrojejunal ulcer, unspec as acute or chronic without haemorrhage or perforation', 'ICD10_2010'), +('K29', 'Gastritis and duodenitis', 'ICD10_2010'), +('K29.0', 'Acute haemorrhagic gastritis', 'ICD10_2010'), +('K29.1', 'Other acute gastritis', 'ICD10_2010'), +('K29.2', 'Alcoholic gastritis', 'ICD10_2010'), +('K29.3', 'Chronic superficial gastritis', 'ICD10_2010'), +('K29.4', 'Chronic atrophic gastritis', 'ICD10_2010'), +('K29.5', 'Chronic gastritis, unspecified', 'ICD10_2010'), +('K29.6', 'Other gastritis', 'ICD10_2010'), +('K29.7', 'Gastritis, unspecified', 'ICD10_2010'), +('K29.8', 'Duodenitis', 'ICD10_2010'), +('K29.9', 'Gastroduodenitis, unspecified', 'ICD10_2010'), +('K30', 'Dyspepsia', 'ICD10_2010'), +('K31', 'Other diseases of stomach and duodenum', 'ICD10_2010'), +('K31.0', 'Acute dilatation of stomach', 'ICD10_2010'), +('K31.1', 'Adult hypertrophic pyloric stenosis', 'ICD10_2010'), +('K31.2', 'Hourglass stricture and stenosis of stomach', 'ICD10_2010'), +('K31.3', 'Pylorospasm, not elsewhere classified', 'ICD10_2010'), +('K31.4', 'Gastric diverticulum', 'ICD10_2010'), +('K31.5', 'Obstruction of duodenum', 'ICD10_2010'), +('K31.6', 'Fistula of stomach and duodenum', 'ICD10_2010'), +('K31.7', 'Polyp of stomach and duodenum', 'ICD10_2010'), +('K31.8', 'Other specified diseases of stomach and duodenum', 'ICD10_2010'), +('K31.9', 'Disease of stomach and duodenum, unspecified', 'ICD10_2010'), +('K35', 'Acute appendicitis', 'ICD10_2010'), +('K35.2', 'Acute appendicitis with generalized peritonitis', 'ICD10_2010'), +('K35.3', 'Acute appendicitis with localized peritonitis', 'ICD10_2010'), +('K35.8', 'Acute appendicitis, other and unspecified', 'ICD10_2010'), +('K36', 'Other appendicitis', 'ICD10_2010'), +('K37', 'Unspecified appendicitis', 'ICD10_2010'), +('K38', 'Other diseases of appendix', 'ICD10_2010'), +('K38.0', 'Hyperplasia of appendix', 'ICD10_2010'), +('K38.1', 'Appendicular concretions', 'ICD10_2010'), +('K38.2', 'Diverticulum of appendix', 'ICD10_2010'), +('K38.3', 'Fistula of appendix', 'ICD10_2010'), +('K38.8', 'Other specified diseases of appendix', 'ICD10_2010'), +('K38.9', 'Disease of appendix, unspecified', 'ICD10_2010'), +('K40', 'Inguinal hernia', 'ICD10_2010'), +('K40.0', 'Bilateral inguinal hernia, with obstruction, without gangrene', 'ICD10_2010'), +('K40.1', 'Bilateral inguinal hernia, with gangrene', 'ICD10_2010'), +('K40.2', 'Bilateral inguinal hernia, without obstruction or gangrene', 'ICD10_2010'), +('K40.3', 'Unilateral or unspecified inguinal hernia, with obstruction, without gangrene', 'ICD10_2010'), +('K40.4', 'Unilateral or unspecified inguinal hernia, with gangrene', 'ICD10_2010'), +('K40.9', 'Unilateral or unspecified inguinal hernia, without obstruction or gangrene', 'ICD10_2010'), +('K41', 'Femoral hernia', 'ICD10_2010'), +('K41.0', 'Bilateral femoral hernia, with obstruction, without gangrene', 'ICD10_2010'), +('K41.1', 'Bilateral femoral hernia, with gangrene', 'ICD10_2010'), +('K41.2', 'Bilateral femoral hernia, without obstruction or gangrene', 'ICD10_2010'), +('K41.3', 'Unilateral or unspecified femoral hernia, with obstruction, without gangrene', 'ICD10_2010'), +('K41.4', 'Unilateral or unspecified femoral hernia, with gangrene', 'ICD10_2010'), +('K41.9', 'Unilateral or unspecified femoral hernia, without obstruction or gangrene', 'ICD10_2010'), +('K42', 'Umbilical hernia', 'ICD10_2010'), +('K42.0', 'Umbilical hernia with obstruction, without gangrene', 'ICD10_2010'), +('K42.1', 'Umbilical hernia with gangrene', 'ICD10_2010'), +('K42.9', 'Umbilical hernia without obstruction or gangrene', 'ICD10_2010'), +('K43', 'Ventral hernia', 'ICD10_2010'), +('K43.0', 'Ventral hernia with obstruction, without gangrene', 'ICD10_2010'), +('K43.1', 'Ventral hernia with gangrene', 'ICD10_2010'), +('K43.9', 'Ventral hernia without obstruction or gangrene', 'ICD10_2010'), +('K44', 'Diaphragmatic hernia', 'ICD10_2010'), +('K44.0', 'Diaphragmatic hernia with obstruction, without gangrene', 'ICD10_2010'), +('K44.1', 'Diaphragmatic hernia with gangrene', 'ICD10_2010'), +('K44.9', 'Diaphragmatic hernia without obstruction or gangrene', 'ICD10_2010'), +('K45', 'Other abdominal hernia', 'ICD10_2010'), +('K45.0', 'Other spec abdominal hernia with obstruct without gangrene', 'ICD10_2010'), +('K45.1', 'Other specified abdominal hernia with gangrene', 'ICD10_2010'), +('K45.8', 'Other specified abdominal hernia without obstruction or gangrene', 'ICD10_2010'), +('K46', 'Unspecified abdominal hernia', 'ICD10_2010'), +('K46.0', 'Unspecified abdominal hernia with obstruction without gangrene', 'ICD10_2010'), +('K46.1', 'Unspecified abdominal hernia with gangrene', 'ICD10_2010'), +('K46.9', 'Unspecified abdominal hernia without obstruction or gangrene', 'ICD10_2010'), +('K50', 'Crohn disease [regional enteritis]', 'ICD10_2010'), +('K50.0', 'Crohn\'s disease of small intestine', 'ICD10_2010'), +('K50.1', 'Crohn\'s disease of large intestine', 'ICD10_2010'), +('K50.8', 'Other crohn\'s disease', 'ICD10_2010'), +('K50.9', 'Crohn\'s disease, unspecified', 'ICD10_2010'), +('K51', 'Ulcerative colitis', 'ICD10_2010'), +('K51.0', 'Ulcerative (chronic) enterocolitis', 'ICD10_2010'), +('K51.1', 'Ulcerative (chronic) ileocolitis', 'ICD10_2010'), +('K51.2', 'Ulcerative (chronic) proctitis', 'ICD10_2010'), +('K51.3', 'Ulcerative (chronic) rectosigmoiditis', 'ICD10_2010'), +('K51.4', 'Pseudopolyposis of colon', 'ICD10_2010'), +('K51.5', 'Mucosal proctocolitis', 'ICD10_2010'), +('K51.8', 'Other ulcerative colitis', 'ICD10_2010'), +('K51.9', 'Ulcerative colitis, unspecified', 'ICD10_2010'), +('K52', 'Other noninfective gastroenteritis and colitis', 'ICD10_2010'), +('K52.0', 'Gastroenteritis and colitis due to radiation', 'ICD10_2010'), +('K52.1', 'Toxic gastroenteritis and colitis', 'ICD10_2010'), +('K52.2', 'Allergic and dietetic gastroenteritis and colitis', 'ICD10_2010'), +('K52.3', 'Indeterminate colitis', 'ICD10_2010'), +('K52.8', 'Other specified noninfective gastroenteritis and colitis', 'ICD10_2010'), +('K52.9', 'Noninfective gastroenteritis and colitis, unspecified', 'ICD10_2010'), +('K55', 'Vascular disorders of intestine', 'ICD10_2010'), +('K55.0', 'Acute vascular disorders of intestine', 'ICD10_2010'), +('K55.1', 'Chronic vascular disorders of intestine', 'ICD10_2010'), +('K55.2', 'Angiodysplasia of colon', 'ICD10_2010'), +('K55.8', 'Other vascular disorders of intestine', 'ICD10_2010'), +('K55.9', 'Vascular disorder of intestine, unspecified', 'ICD10_2010'), +('K56', 'Paralytic ileus and intestinal obstruction without hernia', 'ICD10_2010'), +('K56.0', 'Paralytic ileus', 'ICD10_2010'), +('K56.1', 'Intussusception', 'ICD10_2010'), +('K56.2', 'Volvulus', 'ICD10_2010'), +('K56.3', 'Gallstone ileus', 'ICD10_2010'), +('K56.4', 'Other impaction of intestine', 'ICD10_2010'), +('K56.5', 'Intestinal adhesions [bands] with obstruction', 'ICD10_2010'), +('K56.6', 'Other and unspecified intestinal obstruction', 'ICD10_2010'), +('K56.7', 'Ileus, unspecified', 'ICD10_2010'), +('K57', 'Diverticular disease of intestine', 'ICD10_2010'), +('K57.0', 'Diverticular disease of small intestine with perforation and abscess', 'ICD10_2010'), +('K57.1', 'Diverticular disease of small intestine without perforation or abscess', 'ICD10_2010'), +('K57.2', 'Diverticular disease of large intestine with perforation and abscess', 'ICD10_2010'), +('K57.3', 'Diverticular disease of large intestine without perforation or abscess', 'ICD10_2010'), +('K57.4', 'Diverticular disease of both small and large intestine with perforation and abscess', 'ICD10_2010'), +('K57.5', 'Diverticular disease of both small and large intestine without perforation or abscess', 'ICD10_2010'), +('K57.8', 'Diverticular disease of intestine, part unspecified, with perforation and abscess', 'ICD10_2010'), +('K57.9', 'Diverticular disease of intestine, part unspecified, without perforation or abscess', 'ICD10_2010'), +('K58', 'Irritable bowel syndrome', 'ICD10_2010'), +('K58.0', 'Irritable bowel syndrome with diarrhoea', 'ICD10_2010'), +('K58.9', 'Irritable bowel syndrome without diarrhoea', 'ICD10_2010'), +('K59', 'Other functional intestinal disorders', 'ICD10_2010'), +('K59.0', 'Constipation', 'ICD10_2010'), +('K59.1', 'Functional diarrhoea', 'ICD10_2010'), +('K59.2', 'Neurogenic bowel, not elsewhere classified', 'ICD10_2010'), +('K59.3', 'Megacolon, not elsewhere classified', 'ICD10_2010'), +('K59.4', 'Anal spasm', 'ICD10_2010'), +('K59.8', 'Other specified functional intestinal disorders', 'ICD10_2010'), +('K59.9', 'Functional intestinal disorder, unspecified', 'ICD10_2010'), +('K60', 'Fissure and fistula of anal and rectal regions', 'ICD10_2010'), +('K60.0', 'Acute anal fissure', 'ICD10_2010'), +('K60.1', 'Chronic anal fissure', 'ICD10_2010'), +('K60.2', 'Anal fissure, unspecified', 'ICD10_2010'), +('K60.3', 'Anal fistula', 'ICD10_2010'), +('K60.4', 'Rectal fistula', 'ICD10_2010'), +('K60.5', 'Anorectal fistula', 'ICD10_2010'), +('K61', 'Abscess of anal and rectal regions', 'ICD10_2010'), +('K61.0', 'Anal abscess', 'ICD10_2010'), +('K61.1', 'Rectal abscess', 'ICD10_2010'), +('K61.2', 'Anorectal abscess', 'ICD10_2010'), +('K61.3', 'Ischiorectal abscess', 'ICD10_2010'), +('K61.4', 'Intrasphincteric abscess', 'ICD10_2010'), +('K62', 'Other diseases of anus and rectum', 'ICD10_2010'), +('K62.0', 'Anal polyp', 'ICD10_2010'), +('K62.1', 'Rectal polyp', 'ICD10_2010'), +('K62.2', 'Anal prolapse', 'ICD10_2010'), +('K62.3', 'Rectal prolapse', 'ICD10_2010'), +('K62.4', 'Stenosis of anus and rectum', 'ICD10_2010'), +('K62.5', 'Haemorrhage of anus and rectum', 'ICD10_2010'), +('K62.6', 'Ulcer of anus and rectum', 'ICD10_2010'), +('K62.7', 'Radiation proctitis', 'ICD10_2010'), +('K62.8', 'Other specified diseases of anus and rectum', 'ICD10_2010'), +('K62.9', 'Disease of anus and rectum, unspecified', 'ICD10_2010'), +('K63', 'Other diseases of intestine', 'ICD10_2010'), +('K63.0', 'Abscess of intestine', 'ICD10_2010'), +('K63.1', 'Perforation of intestine (nontraumatic)', 'ICD10_2010'), +('K63.2', 'Fistula of intestine', 'ICD10_2010'), +('K63.3', 'Ulcer of intestine', 'ICD10_2010'), +('K63.4', 'Enteroptosis', 'ICD10_2010'), +('K63.5', 'Polyp of colon', 'ICD10_2010'), +('K63.8', 'Other specified diseases of intestine', 'ICD10_2010'), +('K63.9', 'Disease of intestine, unspecified', 'ICD10_2010'), +('K65', 'Peritonitis', 'ICD10_2010'), +('K65.0', 'Acute peritonitis', 'ICD10_2010'), +('K65.8', 'Other peritonitis', 'ICD10_2010'), +('K65.9', 'Peritonitis, unspecified', 'ICD10_2010'), +('K66', 'Other disorders of peritoneum', 'ICD10_2010'), +('K66.0', 'Peritoneal adhesions', 'ICD10_2010'), +('K66.1', 'Haemoperitoneum', 'ICD10_2010'), +('K66.8', 'Other specified disorders of peritoneum', 'ICD10_2010'), +('K66.9', 'Disorder of peritoneum, unspecified', 'ICD10_2010'), +('K67', 'Disorders of peritoneum in infectious diseases classified elsewhere', 'ICD10_2010'), +('K67.0', 'Chlamydial peritonitis', 'ICD10_2010'), +('K67.1', 'Gonococcal peritonitis', 'ICD10_2010'), +('K67.2', 'Syphilitic peritonitis', 'ICD10_2010'), +('K67.3', 'Tuberculous peritonitis', 'ICD10_2010'), +('K67.8', 'Other disorders of peritoneum in infectious diseases ec', 'ICD10_2010'), +('K70', 'Alcoholic liver disease', 'ICD10_2010'), +('K70.0', 'Alcoholic fatty liver', 'ICD10_2010'), +('K70.1', 'Alcoholic hepatitis', 'ICD10_2010'), +('K70.2', 'Alcoholic fibrosis and sclerosis of liver', 'ICD10_2010'), +('K70.3', 'Alcoholic cirrhosis of liver', 'ICD10_2010'), +('K70.4', 'Alcoholic hepatic failure', 'ICD10_2010'), +('K70.9', 'Alcoholic liver disease, unspecified', 'ICD10_2010'), +('K71', 'Toxic liver disease', 'ICD10_2010'), +('K71.0', 'Toxic liver disease with cholestasis', 'ICD10_2010'), +('K71.1', 'Toxic liver disease with hepatic necrosis', 'ICD10_2010'), +('K71.2', 'Toxic liver disease with acute hepatitis', 'ICD10_2010'), +('K71.3', 'Toxic liver disease with chronic persistent hepatitis', 'ICD10_2010'), +('K71.4', 'Toxic liver disease with chronic lobular hepatitis', 'ICD10_2010'), +('K71.5', 'Toxic liver disease with chronic active hepatitis', 'ICD10_2010'), +('K71.6', 'Toxic liver disease with hepatitis, not elsewhere classified', 'ICD10_2010'), +('K71.7', 'Toxic liver disease with fibrosis and cirrhosis of liver', 'ICD10_2010'), +('K71.8', 'Toxic liver disease with other disorders of liver', 'ICD10_2010'), +('K71.9', 'Toxic liver disease, unspecified', 'ICD10_2010'), +('K72', 'Hepatic failure, not elsewhere classified', 'ICD10_2010'), +('K72.0', 'Acute and subacute hepatic failure', 'ICD10_2010'), +('K72.1', 'Chronic hepatic failure', 'ICD10_2010'), +('K72.9', 'Hepatic failure, unspecified', 'ICD10_2010'), +('K73', 'Chronic hepatitis, not elsewhere classified', 'ICD10_2010'), +('K73.0', 'Chronic persistent hepatitis, not elsewhere classified', 'ICD10_2010'), +('K73.1', 'Chronic lobular hepatitis, not elsewhere classified', 'ICD10_2010'), +('K73.2', 'Chronic active hepatitis, not elsewhere classified', 'ICD10_2010'), +('K73.8', 'Other chronic hepatitis, not elsewhere classified', 'ICD10_2010'), +('K73.9', 'Chronic hepatitis, unspecified', 'ICD10_2010'), +('K74', 'Fibrosis and cirrhosis of liver', 'ICD10_2010'), +('K74.0', 'Hepatic fibrosis', 'ICD10_2010'), +('K74.1', 'Hepatic sclerosis', 'ICD10_2010'), +('K74.2', 'Hepatic fibrosis with hepatic sclerosis', 'ICD10_2010'), +('K74.3', 'Primary biliary cirrhosis', 'ICD10_2010'), +('K74.4', 'Secondary biliary cirrhosis', 'ICD10_2010'), +('K74.5', 'Biliary cirrhosis, unspecified', 'ICD10_2010'), +('K74.6', 'Other and unspecified cirrhosis of liver', 'ICD10_2010'), +('K75', 'Other inflammatory liver diseases', 'ICD10_2010'), +('K75.0', 'Abscess of liver', 'ICD10_2010'), +('K75.1', 'Phlebitis of portal vein', 'ICD10_2010'), +('K75.2', 'Nonspecific reactive hepatitis', 'ICD10_2010'), +('K75.3', 'Granulomatous hepatitis, not elsewhere classified', 'ICD10_2010'), +('K75.4', 'Autoimmune hepatitis', 'ICD10_2010'), +('K75.8', 'Other specified inflammatory liver diseases', 'ICD10_2010'), +('K75.9', 'Inflammatory liver disease, unspecified', 'ICD10_2010'), +('K76', 'Other diseases of liver', 'ICD10_2010'), +('K76.0', 'Fatty (change of) liver, not elsewhere classified', 'ICD10_2010'), +('K76.1', 'Chronic passive congestion of liver', 'ICD10_2010'), +('K76.2', 'Central haemorrhagic necrosis of liver', 'ICD10_2010'), +('K76.3', 'Infarction of liver', 'ICD10_2010'), +('K76.4', 'Peliosis hepatis', 'ICD10_2010'), +('K76.5', 'Hepatic veno-occlusive disease', 'ICD10_2010'), +('K76.6', 'Portal hypertension', 'ICD10_2010'), +('K76.7', 'Hepatorenal syndrome', 'ICD10_2010'), +('K76.8', 'Other specified diseases of liver', 'ICD10_2010'), +('K76.9', 'Liver disease, unspecified', 'ICD10_2010'), +('K77', 'Liver disorders in diseases classified elsewhere', 'ICD10_2010'), +('K77.0', 'Liver disorders in infectious and parasitic diseases classified elsewhere', 'ICD10_2010'), +('K77.8', 'Liver disorders in other diseases classified elsewhere', 'ICD10_2010'), +('K80', 'Cholelithiasis', 'ICD10_2010'), +('K80.0', 'Calculus of gallbladder with acute cholecystitis', 'ICD10_2010'), +('K80.1', 'Calculus of gallbladder with other cholecystitis', 'ICD10_2010'), +('K80.2', 'Calculus of gallbladder without cholecystitis', 'ICD10_2010'), +('K80.3', 'Calculus of bile duct with cholangitis', 'ICD10_2010'), +('K80.4', 'Calculus of bile duct with cholecystitis', 'ICD10_2010'), +('K80.5', 'Calculus of bile duct without cholangitis or cholecystitis', 'ICD10_2010'), +('K80.8', 'Other cholelithiasis', 'ICD10_2010'), +('K81', 'Cholecystitis', 'ICD10_2010'), +('K81.0', 'Acute cholecystitis', 'ICD10_2010'), +('K81.1', 'Chronic cholecystitis', 'ICD10_2010'), +('K81.8', 'Other cholecystitis', 'ICD10_2010'), +('K81.9', 'Cholecystitis, unspecified', 'ICD10_2010'), +('K82', 'Other diseases of gallbladder', 'ICD10_2010'), +('K82.0', 'Obstruction of gallbladder', 'ICD10_2010'), +('K82.1', 'Hydrops of gallbladder', 'ICD10_2010'), +('K82.2', 'Perforation of gallbladder', 'ICD10_2010'), +('K82.3', 'Fistula of gallbladder', 'ICD10_2010'), +('K82.4', 'Cholesterolosis of gallbladder', 'ICD10_2010'), +('K82.8', 'Other specified diseases of gallbladder', 'ICD10_2010'), +('K82.9', 'Disease of gallbladder, unspecified', 'ICD10_2010'), +('K83', 'Other diseases of biliary tract', 'ICD10_2010'), +('K83.0', 'Cholangitis', 'ICD10_2010'), +('K83.1', 'Obstruction of bile duct', 'ICD10_2010'), +('K83.2', 'Perforation of bile duct', 'ICD10_2010'), +('K83.3', 'Fistula of bile duct', 'ICD10_2010'), +('K83.4', 'Spasm of sphincter of oddi', 'ICD10_2010'), +('K83.5', 'Biliary cyst', 'ICD10_2010'), +('K83.8', 'Other specified diseases of biliary tract', 'ICD10_2010'), +('K83.9', 'Disease of biliary tract, unspecified', 'ICD10_2010'), +('K85', 'Acute pancreatitis', 'ICD10_2010'), +('K85.0', 'Idiopathic acute pancreatitis', 'ICD10_2010'), +('K85.1', 'Biliary acute pancreatitis', 'ICD10_2010'), +('K85.2', 'Alcohol-induced acute pancreatitis', 'ICD10_2010'), +('K85.3', 'Drug-induced acute pancreatitis', 'ICD10_2010'), +('K85.8', 'Other acute pancreatitis', 'ICD10_2010'), +('K85.9', 'Acute pancreatitis, unspecified', 'ICD10_2010'), +('K86', 'Other diseases of pancreas', 'ICD10_2010'), +('K86.0', 'Alcohol-induced chronic pancreatitis', 'ICD10_2010'), +('K86.1', 'Other chronic pancreatitis', 'ICD10_2010'), +('K86.2', 'Cyst of pancreas', 'ICD10_2010'), +('K86.3', 'Pseudocyst of pancreas', 'ICD10_2010'), +('K86.8', 'Other specified diseases of pancreas', 'ICD10_2010'), +('K86.9', 'Disease of pancreas, unspecified', 'ICD10_2010'), +('K87', 'Disorders of gallbladder, biliary tract and pancreas in diseases classified elsewhere', 'ICD10_2010'), +('K87.0', 'Disorders of gallbladder and biliary tract in diseases classified elsewhere', 'ICD10_2010'), +('K87.1', 'Disorders of pancreas in diseases classified elsewhere', 'ICD10_2010'), +('K90', 'Intestinal malabsorption', 'ICD10_2010'), +('K90.0', 'Coeliac disease', 'ICD10_2010'), +('K90.1', 'Tropical sprue', 'ICD10_2010'), +('K90.2', 'Blind loop syndrome, not elsewhere classified', 'ICD10_2010'), +('K90.3', 'Pancreatic steatorrhoea', 'ICD10_2010'), +('K90.4', 'Malabsorption due to intolerance, not elsewhere classified', 'ICD10_2010'), +('K90.8', 'Other intestinal malabsorption', 'ICD10_2010'), +('K90.9', 'Intestinal malabsorption, unspecified', 'ICD10_2010'), +('K91', 'Postprocedural disorders of digestive system, not elsewhere classified', 'ICD10_2010'), +('K91.0', 'Vomiting following gastrointestinal surgery', 'ICD10_2010'), +('K91.1', 'Postgastric surgery syndromes', 'ICD10_2010'), +('K91.2', 'Postsurgical malabsorption, not elsewhere classified', 'ICD10_2010'), +('K91.3', 'Postoperative intestinal obstruction', 'ICD10_2010'), +('K91.4', 'Colostomy and enterostomy malfunction', 'ICD10_2010'), +('K91.5', 'Postcholecystectomy syndrome', 'ICD10_2010'), +('K91.8', 'Other postprocedural disorders of digestive system, not elsewhere classified', 'ICD10_2010'), +('K91.9', 'Postprocedural disorder of digestive system, unspecified', 'ICD10_2010'), +('K92', 'Other diseases of digestive system', 'ICD10_2010'), +('K92.0', 'Haematemesis', 'ICD10_2010'), +('K92.1', 'Melaena', 'ICD10_2010'), +('K92.2', 'Gastrointestinal haemorrhage, unspecified', 'ICD10_2010'), +('K92.8', 'Other specified diseases of digestive system', 'ICD10_2010'), +('K92.9', 'Disease of digestive system, unspecified', 'ICD10_2010'), +('K93', 'Disorders of other digestive organs in diseases classified elsewhere', 'ICD10_2010'), +('K93.0', 'Tuberculous disorders of intestines, peritoneum and mesenteric glands', 'ICD10_2010'), +('K93.1', 'Megacolon in chagas\' disease', 'ICD10_2010'), +('K93.8', 'Disord of oth spec digestive organs in dis class elsewhere', 'ICD10_2010'), +('L00', 'Staphylococcal scalded skin syndrome', 'ICD10_2010'), +('L01', 'Impetigo', 'ICD10_2010'), +('L01.0', 'Impetigo [any organism] [any site]', 'ICD10_2010'), +('L01.1', 'Impetiginization of other dermatoses', 'ICD10_2010'), +('L02', 'Cutaneous abscess, furuncle and carbuncle', 'ICD10_2010'), +('L02.0', 'Cutaneous abscess, furuncle and carbuncle of face', 'ICD10_2010'), +('L02.1', 'Cutaneous abscess, furuncle and carbuncle of neck', 'ICD10_2010'), +('L02.2', 'Cutaneous abscess, furuncle and carbuncle of trunk', 'ICD10_2010'), +('L02.3', 'Cutaneous abscess, furuncle and carbuncle of buttock', 'ICD10_2010'), +('L02.4', 'Cutaneous abscess, furuncle and carbuncle of limb', 'ICD10_2010'), +('L02.8', 'Cutaneous abscess, furuncle and carbuncle of other sites', 'ICD10_2010'), +('L02.9', 'Cutaneous abscess, furuncle and carbuncle, unspecified', 'ICD10_2010'), +('L03', 'Cellulitis', 'ICD10_2010'), +('L03.0', 'Cellulitis of finger and toe', 'ICD10_2010'), +('L03.1', 'Cellulitis of other parts of limb', 'ICD10_2010'), +('L03.2', 'Cellulitis of face', 'ICD10_2010'), +('L03.3', 'Cellulitis of trunk', 'ICD10_2010'), +('L03.8', 'Cellulitis of other sites', 'ICD10_2010'), +('L03.9', 'Cellulitis, unspecified', 'ICD10_2010'), +('L04', 'Acute lymphadenitis', 'ICD10_2010'), +('L04.0', 'Acute lymphadenitis of face, head and neck', 'ICD10_2010'), +('L04.1', 'Acute lymphadenitis of trunk', 'ICD10_2010'), +('L04.2', 'Acute lymphadenitis of upper limb', 'ICD10_2010'), +('L04.3', 'Acute lymphadenitis of lower limb', 'ICD10_2010'), +('L04.8', 'Acute lymphadenitis of other sites', 'ICD10_2010'), +('L04.9', 'Acute lymphadenitis, unspecified', 'ICD10_2010'), +('L05', 'Pilonidal cyst', 'ICD10_2010'), +('L05.0', 'Pilonidal cyst with abscess', 'ICD10_2010'), +('L05.9', 'Pilonidal cyst without abscess', 'ICD10_2010'), +('L08', 'Other local infections of skin and subcutaneous tissue', 'ICD10_2010'), +('L08.0', 'Pyoderma', 'ICD10_2010'), +('L08.1', 'Erythrasma', 'ICD10_2010'), +('L08.8', 'Other specified local infections of skin and subcutaneous tissue', 'ICD10_2010'), +('L08.9', 'Local infection of skin and subcutaneous tissue, unspecified', 'ICD10_2010'), +('L10', 'Pemphigus', 'ICD10_2010'), +('L10.0', 'Pemphigus vulgaris', 'ICD10_2010'), +('L10.1', 'Pemphigus vegetans', 'ICD10_2010'), +('L10.2', 'Pemphigus foliaceus', 'ICD10_2010'), +('L10.3', 'Brazilian pemphigus [fogo selvagem]', 'ICD10_2010'), +('L10.4', 'Pemphigus erythematosus', 'ICD10_2010'), +('L10.5', 'Drug induced pemphigus', 'ICD10_2010'), +('L10.8', 'Other pemphigus', 'ICD10_2010'), +('L10.9', 'Pemphigus, unspecified', 'ICD10_2010'), +('L11', 'Other acantholytic disorders', 'ICD10_2010'), +('L11.0', 'Acquired keratosis follicularis', 'ICD10_2010'), +('L11.1', 'Transient acantholytic dermatosis [grover]', 'ICD10_2010'), +('L11.8', 'Other specified acantholytic disorders', 'ICD10_2010'), +('L11.9', 'Acantholytic disorder, unspecified', 'ICD10_2010'), +('L12', 'Pemphigoid', 'ICD10_2010'), +('L12.0', 'Bullous pemphigoid', 'ICD10_2010'), +('L12.1', 'Cicatricial pemphigoid', 'ICD10_2010'), +('L12.2', 'Chronic bullous disease of childhood', 'ICD10_2010'), +('L12.3', 'Acquired epidermolysis bullosa', 'ICD10_2010'), +('L12.8', 'Other pemphigoid', 'ICD10_2010'), +('L12.9', 'Pemphigoid, unspecified', 'ICD10_2010'), +('L13', 'Other bullous disorders', 'ICD10_2010'), +('L13.0', 'Dermatitis herpetiformis', 'ICD10_2010'), +('L13.1', 'Subcorneal pustular dermatitis', 'ICD10_2010'), +('L13.8', 'Other specified bullous disorders', 'ICD10_2010'), +('L13.9', 'Bullous disorder, unspecified', 'ICD10_2010'), +('L14', 'Bullous disorders in diseases classified elsewhere', 'ICD10_2010'), +('L20', 'Atopic dermatitis', 'ICD10_2010'), +('L20.0', 'Besnier\'s prurigo', 'ICD10_2010'), +('L20.8', 'Other atopic dermatitis', 'ICD10_2010'), +('L20.9', 'Atopic dermatitis, unspecified', 'ICD10_2010'), +('L21', 'Seborrhoeic dermatitis', 'ICD10_2010'), +('L21.0', 'Seborrhoea capitis', 'ICD10_2010'), +('L21.1', 'Seborrhoeic infantile dermatitis', 'ICD10_2010'), +('L21.8', 'Other seborrhoeic dermatitis', 'ICD10_2010'), +('L21.9', 'Seborrhoeic dermatitis, unspecified', 'ICD10_2010'), +('L22', 'Diaper [napkin] dermatitis', 'ICD10_2010'), +('L23', 'Allergic contact dermatitis', 'ICD10_2010'), +('L23.0', 'Allergic contact dermatitis due to metals', 'ICD10_2010'), +('L23.1', 'Allergic contact dermatitis due to adhesives', 'ICD10_2010'), +('L23.2', 'Allergic contact dermatitis due to cosmetics', 'ICD10_2010'), +('L23.3', 'Allergic contact dermatitis due drugs in contact with skin', 'ICD10_2010'), +('L23.4', 'Allergic contact dermatitis due to dyes', 'ICD10_2010'), +('L23.5', 'Allergic contact dermatitis due to other chemical products', 'ICD10_2010'), +('L23.6', 'Allergic contact dermatitis due to food in contact with skin', 'ICD10_2010'), +('L23.7', 'Allergic contact dermatitis due to plants, except food', 'ICD10_2010'), +('L23.8', 'Allergic contact dermatitis due to other agents', 'ICD10_2010'), +('L23.9', 'Allergic contact dermatitis, unspecified cause', 'ICD10_2010'), +('L24', 'Irritant contact dermatitis', 'ICD10_2010'), +('L24.0', 'Irritant contact dermatitis due to detergents', 'ICD10_2010'), +('L24.1', 'Irritant contact dermatitis due to oils and greases', 'ICD10_2010'), +('L24.2', 'Irritant contact dermatitis due to solvents', 'ICD10_2010'), +('L24.3', 'Irritant contact dermatitis due to cosmetics', 'ICD10_2010'), +('L24.4', 'Irritant contact dermatitis due drugs in contact with skin', 'ICD10_2010'), +('L24.5', 'Irritant contact dermatitis due to other chemical products', 'ICD10_2010'), +('L24.6', 'Irritant contact dermatitis due to food in contact with skin', 'ICD10_2010'), +('L24.7', 'Irritant contact dermatitis due to plants, except food', 'ICD10_2010'), +('L24.8', 'Irritant contact dermatitis due to other agents', 'ICD10_2010'), +('L24.9', 'Irritant contact dermatitis, unspecified cause', 'ICD10_2010'), +('L25', 'Unspecified contact dermatitis', 'ICD10_2010'), +('L25.0', 'Unspecified contact dermatitis due to cosmetics', 'ICD10_2010'), +('L25.1', 'Unspecified contact dermatitis due to drugs in contact with skin', 'ICD10_2010'), +('L25.2', 'Unspecified contact dermatitis due to dyes', 'ICD10_2010'), +('L25.3', 'Unspecified contact dermatitis due to other chemical products', 'ICD10_2010'), +('L25.4', 'Unspecified contact dermatitis due to food in contact with skin', 'ICD10_2010'), +('L25.5', 'Unspecified contact dermatitis due to plants, except food', 'ICD10_2010'), +('L25.8', 'Unspecified contact dermatitis due to other agents', 'ICD10_2010'), +('L25.9', 'Unspecified contact dermatitis, unspecified cause', 'ICD10_2010'), +('L26', 'Exfoliative dermatitis', 'ICD10_2010'), +('L27', 'Dermatitis due to substances taken internally', 'ICD10_2010'), +('L27.0', 'Generalized skin eruption due to drugs and medicaments', 'ICD10_2010'), +('L27.1', 'Localized skin eruption due to drugs and medicaments', 'ICD10_2010'), +('L27.2', 'Dermatitis due to ingested food', 'ICD10_2010'), +('L27.8', 'Dermatitis due to other substances taken internally', 'ICD10_2010'), +('L27.9', 'Dermatitis due to unspecified substance taken internally', 'ICD10_2010'), +('L28', 'Lichen simplex chronicus and prurigo', 'ICD10_2010'), +('L28.0', 'Lichen simplex chronicus', 'ICD10_2010'), +('L28.1', 'Prurigo nodularis', 'ICD10_2010'), +('L28.2', 'Other prurigo', 'ICD10_2010'), +('L29', 'Pruritus', 'ICD10_2010'), +('L29.0', 'Pruritus ani', 'ICD10_2010'), +('L29.1', 'Pruritus scroti', 'ICD10_2010'), +('L29.2', 'Pruritus vulvae', 'ICD10_2010'), +('L29.3', 'Anogenital pruritus, unspecified', 'ICD10_2010'), +('L29.8', 'Other pruritus', 'ICD10_2010'), +('L29.9', 'Pruritus, unspecified', 'ICD10_2010'), +('L30', 'Other dermatitis', 'ICD10_2010'), +('L30.0', 'Nummular dermatitis', 'ICD10_2010'), +('L30.1', 'Dyshidrosis [pompholyx]', 'ICD10_2010'), +('L30.2', 'Cutaneous autosensitization', 'ICD10_2010'), +('L30.3', 'Infective dermatitis', 'ICD10_2010'), +('L30.4', 'Erythema intertrigo', 'ICD10_2010'), +('L30.5', 'Pityriasis alba', 'ICD10_2010'), +('L30.8', 'Other specified dermatitis', 'ICD10_2010'), +('L30.9', 'Dermatitis, unspecified', 'ICD10_2010'), +('L40', 'Psoriasis', 'ICD10_2010'), +('L40.0', 'Psoriasis vulgaris', 'ICD10_2010'), +('L40.1', 'Generalized pustular psoriasis', 'ICD10_2010'), +('L40.2', 'Acrodermatitis continua', 'ICD10_2010'), +('L40.3', 'Pustulosis palmaris et plantaris', 'ICD10_2010'), +('L40.4', 'Guttate psoriasis', 'ICD10_2010'), +('L40.5', 'Arthropathic psoriasis', 'ICD10_2010'), +('L40.8', 'Other psoriasis', 'ICD10_2010'), +('L40.9', 'Psoriasis, unspecified', 'ICD10_2010'), +('L41', 'Parapsoriasis', 'ICD10_2010'), +('L41.0', 'Pityriasis lichenoides et varioliformis acuta', 'ICD10_2010'), +('L41.1', 'Pityriasis lichenoides chronica', 'ICD10_2010'), +('L41.2', 'Lymphomatoid papulosis', 'ICD10_2010'), +('L41.3', 'Small plaque parapsoriasis', 'ICD10_2010'), +('L41.4', 'Large plaque parapsoriasis', 'ICD10_2010'), +('L41.5', 'Retiform parapsoriasis', 'ICD10_2010'), +('L41.8', 'Other parapsoriasis', 'ICD10_2010'), +('L41.9', 'Parapsoriasis, unspecified', 'ICD10_2010'), +('L42', 'Pityriasis rosea', 'ICD10_2010'), +('L43', 'Lichen planus', 'ICD10_2010'), +('L43.0', 'Hypertrophic lichen planus', 'ICD10_2010'), +('L43.1', 'Bullous lichen planus', 'ICD10_2010'), +('L43.2', 'Lichenoid drug reaction', 'ICD10_2010'), +('L43.3', 'Subacute (active) lichen planus', 'ICD10_2010'), +('L43.8', 'Other lichen planus', 'ICD10_2010'), +('L43.9', 'Lichen planus, unspecified', 'ICD10_2010'), +('L44', 'Other papulosquamous disorders', 'ICD10_2010'), +('L44.0', 'Pityriasis rubra pilaris', 'ICD10_2010'), +('L44.1', 'Lichen nitidus', 'ICD10_2010'), +('L44.2', 'Lichen striatus', 'ICD10_2010'), +('L44.3', 'Lichen ruber moniliformis', 'ICD10_2010'), +('L44.4', 'Infantile papular acrodermatitis [giannotti-crosti]', 'ICD10_2010'), +('L44.8', 'Other specified papulosquamous disorders', 'ICD10_2010'), +('L44.9', 'Papulosquamous disorder, unspecified', 'ICD10_2010'), +('L45', 'Papulosquamous disorders in diseases classif elsewhere', 'ICD10_2010'), +('L50', 'Urticaria', 'ICD10_2010'), +('L50.0', 'Allergic urticaria', 'ICD10_2010'), +('L50.1', 'Idiopathic urticaria', 'ICD10_2010'), +('L50.2', 'Urticaria due to cold and heat', 'ICD10_2010'), +('L50.3', 'Dermatographic urticaria', 'ICD10_2010'), +('L50.4', 'Vibratory urticaria', 'ICD10_2010'), +('L50.5', 'Cholinergic urticaria', 'ICD10_2010'), +('L50.6', 'Contact urticaria', 'ICD10_2010'), +('L50.8', 'Other urticaria', 'ICD10_2010'), +('L50.9', 'Urticaria, unspecified', 'ICD10_2010'), +('L51', 'Erythema multiforme', 'ICD10_2010'), +('L51.0', 'Nonbullous erythema multiforme', 'ICD10_2010'), +('L51.1', 'Bullous erythema multiforme', 'ICD10_2010'), +('L51.2', 'Toxic epidermal necrolysis [lyell]', 'ICD10_2010'), +('L51.8', 'Other erythema multiforme', 'ICD10_2010'), +('L51.9', 'Erythema multiforme, unspecified', 'ICD10_2010'), +('L52', 'Erythema nodosum', 'ICD10_2010'), +('L53', 'Other erythematous conditions', 'ICD10_2010'), +('L53.0', 'Toxic erythema', 'ICD10_2010'), +('L53.1', 'Erythema annulare centrifugum', 'ICD10_2010'), +('L53.2', 'Erythema marginatum', 'ICD10_2010'), +('L53.3', 'Other chronic figurate erythema', 'ICD10_2010'), +('L53.8', 'Other specified erythematous conditions', 'ICD10_2010'), +('L53.9', 'Erythematous condition, unspecified', 'ICD10_2010'), +('L54', 'Erythema in diseases classified elsewhere', 'ICD10_2010'), +('L54.0', 'Erythema marginatum in acute rheumatic fever', 'ICD10_2010'), +('L54.8', 'Erythema in other diseases classified elsewhere', 'ICD10_2010'), +('L55', 'Sunburn', 'ICD10_2010'), +('L55.0', 'Sunburn of first degree', 'ICD10_2010'), +('L55.1', 'Sunburn of second degree', 'ICD10_2010'), +('L55.2', 'Sunburn of third degree', 'ICD10_2010'), +('L55.8', 'Other sunburn', 'ICD10_2010'), +('L55.9', 'Sunburn, unspecified', 'ICD10_2010'), +('L56', 'Other acute skin changes due to ultraviolet radiation', 'ICD10_2010'), +('L56.0', 'Drug phototoxic response', 'ICD10_2010'), +('L56.1', 'Drug photoallergic response', 'ICD10_2010'), +('L56.2', 'Photocontact dermatitis [berloque dermatitis]', 'ICD10_2010'), +('L56.3', 'Solar urticaria', 'ICD10_2010'), +('L56.4', 'Polymorphous light eruption', 'ICD10_2010'), +('L56.8', 'Other specified acute skin changes due to ultraviolet radiation', 'ICD10_2010'), +('L56.9', 'Acute skin change due to ultraviolet radiation, unspecified', 'ICD10_2010'), +('L57', 'Skin changes due to chronic exposure to nonionizing radiation', 'ICD10_2010'), +('L57.0', 'Actinic keratosis', 'ICD10_2010'), +('L57.1', 'Actinic reticuloid', 'ICD10_2010'), +('L57.2', 'Cutis rhomboidalis nuchae', 'ICD10_2010'), +('L57.3', 'Poikiloderma of civatte', 'ICD10_2010'), +('L57.4', 'Cutis laxa senilis', 'ICD10_2010'), +('L57.5', 'Actinic granuloma', 'ICD10_2010'), +('L57.8', 'Other skin change due chronic exposure to nonionizing radiation', 'ICD10_2010'), +('L57.9', 'Skin change due chronic exposure to nonionizing radiation, unspecified', 'ICD10_2010'), +('L58', 'Radiodermatitis', 'ICD10_2010'), +('L58.0', 'Acute radiodermatitis', 'ICD10_2010'), +('L58.1', 'Chronic radiodermatitis', 'ICD10_2010'), +('L58.9', 'Radiodermatitis, unspecified', 'ICD10_2010'), +('L59', 'Other disorders of skin and subcutaneous tissue related to radiation', 'ICD10_2010'), +('L59.0', 'Erythema ab igne [dermatitis ab igne]', 'ICD10_2010'), +('L59.8', 'Other specified disorders of skin and subcutaneous tissue related to radiation', 'ICD10_2010'), +('L59.9', 'Disorder of skin and subcutaneous tissue related to radiation unspecified', 'ICD10_2010'), +('L60', 'Nail disorders', 'ICD10_2010'), +('L60.0', 'Ingrowing nail', 'ICD10_2010'), +('L60.1', 'Onycholysis', 'ICD10_2010'), +('L60.2', 'Onychogryphosis', 'ICD10_2010'), +('L60.3', 'Nail dystrophy', 'ICD10_2010'), +('L60.4', 'Beau\'s lines', 'ICD10_2010'), +('L60.5', 'Yellow nail syndrome', 'ICD10_2010'), +('L60.8', 'Other nail disorders', 'ICD10_2010'), +('L60.9', 'Nail disorder, unspecified', 'ICD10_2010'), +('L62', 'Nail disorders in diseases classified elsewhere', 'ICD10_2010'), +('L62.0', 'Clubbed nail pachydermoperiostosis', 'ICD10_2010'), +('L62.8', 'Nail disorders in other diseases classified elsewhere', 'ICD10_2010'), +('L63', 'Alopecia areata', 'ICD10_2010'), +('L63.0', 'Alopecia (capitis) totalis', 'ICD10_2010'), +('L63.1', 'Alopecia universalis', 'ICD10_2010'), +('L63.2', 'Ophiasis', 'ICD10_2010'), +('L63.8', 'Other alopecia areata', 'ICD10_2010'), +('L63.9', 'Alopecia areata, unspecified', 'ICD10_2010'), +('L64', 'Androgenic alopecia', 'ICD10_2010'), +('L64.0', 'Drug-induced androgenic alopecia', 'ICD10_2010'), +('L64.8', 'Other androgenic alopecia', 'ICD10_2010'), +('L64.9', 'Androgenic alopecia, unspecified', 'ICD10_2010'), +('L65', 'Other nonscarring hair loss', 'ICD10_2010'), +('L65.0', 'Telogen effluvium', 'ICD10_2010'), +('L65.1', 'Anagen effluvium', 'ICD10_2010'), +('L65.2', 'Alopecia mucinosa', 'ICD10_2010'), +('L65.8', 'Other specified nonscarring hair loss', 'ICD10_2010'), +('L65.9', 'Nonscarring hair loss, unspecified', 'ICD10_2010'), +('L66', 'Cicatricial alopecia [scarring hair loss]', 'ICD10_2010'), +('L66.0', 'Pseudopelade', 'ICD10_2010'), +('L66.1', 'Lichen planopilaris', 'ICD10_2010'), +('L66.2', 'Folliculitis decalvans', 'ICD10_2010'), +('L66.3', 'Perifolliculitis capitis abscedens', 'ICD10_2010'), +('L66.4', 'Folliculitis ulerythematosa reticulata', 'ICD10_2010'), +('L66.8', 'Other cicatricial alopecia', 'ICD10_2010'), +('L66.9', 'Cicatricial alopecia, unspecified', 'ICD10_2010'), +('L67', 'Hair colour and hair shaft abnormalities', 'ICD10_2010'), +('L67.0', 'Trichorrhexis nodosa', 'ICD10_2010'), +('L67.1', 'Variations in hair colour', 'ICD10_2010'), +('L67.8', 'Other hair colour and hair shaft abnormalities', 'ICD10_2010'), +('L67.9', 'Hair colour and hair shaft abnormality, unspecified', 'ICD10_2010'), +('L68', 'Hypertrichosis', 'ICD10_2010'), +('L68.0', 'Hirsutism', 'ICD10_2010'), +('L68.1', 'Acquired hypertrichosis lanuginosa', 'ICD10_2010'), +('L68.2', 'Localized hypertrichosis', 'ICD10_2010'), +('L68.3', 'Polytrichia', 'ICD10_2010'), +('L68.8', 'Other hypertrichosis', 'ICD10_2010'), +('L68.9', 'Hypertrichosis, unspecified', 'ICD10_2010'), +('L70', 'Acne', 'ICD10_2010'), +('L70.0', 'Acne vulgaris', 'ICD10_2010'), +('L70.1', 'Acne conglobata', 'ICD10_2010'), +('L70.2', 'Acne varioliformis', 'ICD10_2010'), +('L70.3', 'Acne tropica', 'ICD10_2010'), +('L70.4', 'Infantile acne', 'ICD10_2010'), +('L70.5', 'Acn', 'ICD10_2010'), +('L70.8', 'Other acne', 'ICD10_2010'), +('L70.9', 'Acne, unspecified', 'ICD10_2010'), +('L71', 'Rosacea', 'ICD10_2010'), +('L71.0', 'Perioral dermatitis', 'ICD10_2010'), +('L71.1', 'Rhinophyma', 'ICD10_2010'), +('L71.8', 'Other rosacea', 'ICD10_2010'), +('L71.9', 'Rosacea, unspecified', 'ICD10_2010'), +('L72', 'Follicular cysts of skin and subcutaneous tissue', 'ICD10_2010'), +('L72.0', 'Epidermal cyst', 'ICD10_2010'), +('L72.1', 'Trichilemmal cyst', 'ICD10_2010'), +('L72.2', 'Steatocystoma multiplex', 'ICD10_2010'), +('L72.8', 'Other follicular cysts of skin and subcutaneous tissue', 'ICD10_2010'), +('L72.9', 'Follicular cyst of skin and subcutaneous tissue, unspecified', 'ICD10_2010'), +('L73', 'Other follicular disorders', 'ICD10_2010'), +('L73.0', 'Acne keloid', 'ICD10_2010'), +('L73.1', 'Pseudofolliculitis barbae', 'ICD10_2010'), +('L73.2', 'Hidradenitis suppurativa', 'ICD10_2010'), +('L73.8', 'Other specified follicular disorders', 'ICD10_2010'), +('L73.9', 'Follicular disorder, unspecified', 'ICD10_2010'), +('L74', 'Eccrine sweat disorders', 'ICD10_2010'), +('L74.0', 'Miliaria rubra', 'ICD10_2010'), +('L74.1', 'Miliaria crystallina', 'ICD10_2010'), +('L74.2', 'Miliaria profunda', 'ICD10_2010'), +('L74.3', 'Miliaria, unspecified', 'ICD10_2010'), +('L74.4', 'Anhidrosis', 'ICD10_2010'), +('L74.8', 'Other eccrine sweat disorders', 'ICD10_2010'), +('L74.9', 'Eccrine sweat disorder, unspecified', 'ICD10_2010'), +('L75', 'Apocrine sweat disorders', 'ICD10_2010'), +('L75.0', 'Bromhidrosis', 'ICD10_2010'), +('L75.1', 'Chromhidrosis', 'ICD10_2010'), +('L75.2', 'Apocrine miliaria', 'ICD10_2010'), +('L75.8', 'Other apocrine sweat disorders', 'ICD10_2010'), +('L75.9', 'Apocrine sweat disorder, unspecified', 'ICD10_2010'), +('L80', 'Vitiligo', 'ICD10_2010'), +('L81', 'Other disorders of pigmentation', 'ICD10_2010'), +('L81.0', 'Postinflammatory hyperpigmentation', 'ICD10_2010'), +('L81.1', 'Chloasma', 'ICD10_2010'), +('L81.2', 'Freckles', 'ICD10_2010'), +('L81.3', 'Cafe au Lait Spots', 'ICD10_2010'), +('L81.4', 'Other melanin hyperpigmentation', 'ICD10_2010'), +('L81.5', 'Leukoderma, not elsewhere classified', 'ICD10_2010'), +('L81.6', 'Other disorders of diminished melanin formation', 'ICD10_2010'), +('L81.7', 'Pigmented purpuric dermatosis', 'ICD10_2010'), +('L81.8', 'Other specified disorders of pigmentation', 'ICD10_2010'), +('L81.9', 'Disorder of pigmentation, unspecified', 'ICD10_2010'), +('L82', 'Seborrhoeic keratosis', 'ICD10_2010'), +('L83', 'Acanthosis nigricans', 'ICD10_2010'), +('L84', 'Corns and callosities', 'ICD10_2010'), +('L85', 'Other epidermal thickening', 'ICD10_2010'), +('L85.0', 'Acquired ichthyosis', 'ICD10_2010'), +('L85.1', 'Acquired keratosis [keratoderma] palmaris et plantaris', 'ICD10_2010'), +('L85.2', 'Keratosis punctata (palmaris et plantaris)', 'ICD10_2010'), +('L85.3', 'Xerosis cutis', 'ICD10_2010'), +('L85.8', 'Other specified epidermal thickening', 'ICD10_2010'), +('L85.9', 'Epidermal thickening, unspecified', 'ICD10_2010'), +('L86', 'Keratoderma in diseases classified elsewhere', 'ICD10_2010'), +('L87', 'Transepidermal elimination disorders', 'ICD10_2010'), +('L87.0', 'Keratosis foll et parafoicularis cutem penetrans [kyrle]', 'ICD10_2010'), +('L87.1', 'Reactive perforating collagenosis', 'ICD10_2010'), +('L87.2', 'Elastosis perforans serpiginosa', 'ICD10_2010'), +('L87.8', 'Other transepidermal elimination disorders', 'ICD10_2010'), +('L87.9', 'Transepidermal elimination disorder, unspecified', 'ICD10_2010'), +('L88', 'Pyoderma gangrenosum', 'ICD10_2010'), +('L89', 'Decubitus ulcer', 'ICD10_2010'), +('L89.0', 'Stage I decubitus ulcer and pressure area', 'ICD10_2010'), +('L89.1', 'Stage II decubitus ulcer', 'ICD10_2010'), +('L89.2', 'Stage III decubitus ulcer', 'ICD10_2010'), +('L89.3', 'Stage IV decubitus ulcer', 'ICD10_2010'), +('L89.9', 'Decubitus ulcer and pressure area, unspecified', 'ICD10_2010'), +('L90', 'Atrophic disorders of skin', 'ICD10_2010'), +('L90.0', 'Lichen sclerosus et atrophicus', 'ICD10_2010'), +('L90.1', 'Anetoderma of Schweninger-Buzzi', 'ICD10_2010'), +('L90.2', 'Anetoderma of Jadassohn-Pellizzari', 'ICD10_2010'), +('L90.3', 'Atrophoderma of Pasini and Pierini', 'ICD10_2010'), +('L90.4', 'Acrodermatitis chronica atrophicans', 'ICD10_2010'), +('L90.5', 'Scar conditions and fibrosis of skin', 'ICD10_2010'), +('L90.6', 'Striae atrophicae', 'ICD10_2010'), +('L90.8', 'Other atrophic disorders of skin', 'ICD10_2010'), +('L90.9', 'Atrophic disorder of skin, unspecified', 'ICD10_2010'), +('L91', 'Hypertrophic disorders of skin', 'ICD10_2010'), +('L91.0', 'Keloid scar', 'ICD10_2010'), +('L91.8', 'Other hypertrophic disorders of skin', 'ICD10_2010'), +('L91.9', 'Hypertrophic disorder of skin, unspecified', 'ICD10_2010'), +('L92', 'Granulomatous disorders of skin and subcutaneous tissue', 'ICD10_2010'), +('L92.0', 'Granuloma annulare', 'ICD10_2010'), +('L92.1', 'Necrobiosis lipoidica, not elsewhere classified', 'ICD10_2010'), +('L92.2', 'Granuloma faciale [eosinophilic granuloma of skin]', 'ICD10_2010'), +('L92.3', 'Foreign body granuloma of skin and subcutaneous tissue', 'ICD10_2010'), +('L92.8', 'Other granulomatous disorders of skin and subcutaneous tissue', 'ICD10_2010'), +('L92.9', 'Granulomatous disorder of skin and subcutaneous tissue, unspecified', 'ICD10_2010'), +('L93', 'Lupus erythematosus', 'ICD10_2010'), +('L93.0', 'Discoid lupus erythematosus', 'ICD10_2010'), +('L93.1', 'Subacute cutaneous lupus erythematosus', 'ICD10_2010'), +('L93.2', 'Other local lupus erythematosus', 'ICD10_2010'), +('L94', 'Other localized connective tissue disorders', 'ICD10_2010'), +('L94.0', 'Localized scleroderma [morphea]', 'ICD10_2010'), +('L94.1', 'Linear scleroderma', 'ICD10_2010'), +('L94.2', 'Calcinosis cutis', 'ICD10_2010'), +('L94.3', 'Sclerodactyly', 'ICD10_2010'), +('L94.4', 'Gottron\'s papules', 'ICD10_2010'), +('L94.5', 'Poikiloderma vasculare atrophicans', 'ICD10_2010'), +('L94.6', 'Ainhum', 'ICD10_2010'), +('L94.8', 'Other specified localized connective tissue disorders', 'ICD10_2010'), +('L94.9', 'Localized connective tissue disorder, unspecified', 'ICD10_2010'), +('L95', 'Vasculitis limited to skin, not elsewhere classified', 'ICD10_2010'), +('L95.0', 'Livedoid vasculitis', 'ICD10_2010'), +('L95.1', 'Erythema elevatum diutinum', 'ICD10_2010'), +('L95.8', 'Other vasculitis limited to skin', 'ICD10_2010'), +('L95.9', 'Vasculitis limited to skin, unspecified', 'ICD10_2010'), +('L97', 'Ulcer of lower limb, not elsewhere classified', 'ICD10_2010'), +('L98', 'Other disorders of skin and subcutaneous tissue, not elsewhere classified', 'ICD10_2010'), +('L98.0', 'Pyogenic granuloma', 'ICD10_2010'), +('L98.1', 'Factitial dermatitis', 'ICD10_2010'), +('L98.2', 'Febrile neutrophilic dermatosis [Sweet]', 'ICD10_2010'), +('L98.3', 'Eosinophilic cellulitis [Wells]', 'ICD10_2010'), +('L98.4', 'Chronic ulcer of skin, not elsewhere classified', 'ICD10_2010'), +('L98.5', 'Mucinosis of skin', 'ICD10_2010'), +('L98.6', 'Other infiltrative disorders of skin and subcutaneous tissue', 'ICD10_2010'), +('L98.8', 'Other specified disorders of skin and subcutaneous tissue', 'ICD10_2010'), +('L98.9', 'Disorder of skin and subcutaneous tissue, unspecified', 'ICD10_2010'), +('L99', 'Other disorders of skin and subcutaneous tissue in diseases classified elsewhere', 'ICD10_2010'), +('L99.0', 'Amyloidosis of skin', 'ICD10_2010'), +('L99.8', 'Other specified disorders of skin and subcutaneous tissue in disease classified elsewhere', 'ICD10_2010'), +('M00', 'Pyogenic arthritis', 'ICD10_2010'), +('M00.0', 'Staphylococcal arthritis and polyarthritis', 'ICD10_2010'), +('M00.00', 'Staphylococcal arthritis and polyarthritis, multiple sites', 'ICD10_2010'), +('M00.01', 'Staphylococcal arthritis and polyarthritis, shoulder region', 'ICD10_2010'), +('M00.02', 'Staphylococcal arthritis and polyarthritis, upper arm', 'ICD10_2010'), +('M00.03', 'Staphylococcal arthritis and polyarthritis, forearm', 'ICD10_2010'), +('M00.04', 'Staphylococcal arthritis and polyarthritis, hand', 'ICD10_2010'), +('M00.05', 'Staphylococcal arthritis and polyarthritis, pelvic and thigh', 'ICD10_2010'), +('M00.06', 'Staphylococcal arthritis and polyarthritis, lower leg', 'ICD10_2010'), +('M00.07', 'Staphylococcal arthritis and polyarthritis, ankle and foot', 'ICD10_2010'), +('M00.08', 'Staphylococcal arthritis and polyarthritis, other site', 'ICD10_2010'), +('M00.09', 'Staphylococcal arthritis and polyarthritis, unspecified site', 'ICD10_2010'), +('M00.1', 'Pneumococcal arthritis and polyarthritis', 'ICD10_2010'), +('M00.10', 'Pneumococcal arthritis and polyarthritis, multiple sites', 'ICD10_2010'), +('M00.11', 'Pneumococcal arthritis and polyarthritis, shoulder region', 'ICD10_2010'), +('M00.12', 'Pneumococcal arthritis and polyarthritis, upper arm', 'ICD10_2010'), +('M00.13', 'Pneumococcal arthritis and polyarthritis, forearm', 'ICD10_2010'), +('M00.14', 'Pneumococcal arthritis and polyarthritis, hand', 'ICD10_2010'), +('M00.15', 'Pneumococcal arthritis and polyarthritis, pelvic and thigh', 'ICD10_2010'), +('M00.16', 'Pneumococcal arthritis and polyarthritis, lower leg', 'ICD10_2010'), +('M00.17', 'Pneumococcal arthritis and polyarthritis, ankle and foot', 'ICD10_2010'), +('M00.18', 'Pneumococcal arthritis and polyarthritis, other sites', 'ICD10_2010'), +('M00.19', 'Pneumococcal arthritis and polyarthritis, unspecified site', 'ICD10_2010'), +('M00.2', 'Other streptococcal arthritis and polyarthritis', 'ICD10_2010'), +('M00.20', 'Other streptococcal arthritis and polyarthritis, multiple sites', 'ICD10_2010'), +('M00.21', 'Other streptococcal arthritis and polyarthritis, shoulder region', 'ICD10_2010'), +('M00.22', 'Other streptococcal arthritis and polyarthritis, upper arm', 'ICD10_2010'), +('M00.23', 'Other streptococcal arthritis and polyarthritis, forearm', 'ICD10_2010'), +('M00.24', 'Other streptococcal arthritis and polyarthritis, hand', 'ICD10_2010'), +('M00.25', 'Other streptococcal arthritis and polyarthritis, pelvic and thigh', 'ICD10_2010'), +('M00.26', 'Other streptococcal arthritis and polyarthritis, lower leg', 'ICD10_2010'), +('M00.27', 'Other streptococcal arthritis and polyarthritis, ankle and foot', 'ICD10_2010'), +('M00.28', 'Other streptococcal arthritis and polyarthritis, other sites', 'ICD10_2010'), +('M00.29', 'Other streptococcal arthritis and polyarthritis, unspecified site', 'ICD10_2010'), +('M00.8', 'Arthritis and polyarthritis due other specified bacterial agents', 'ICD10_2010'), +('M00.80', 'Arthritis and polyarthritis due other specified bacterial agents, multiple sites', 'ICD10_2010'), +('M00.81', 'Arthritis and polyarthritis due other specified bacterial agents, shouder region', 'ICD10_2010'), +('M00.82', 'Arthritis and polyarthritis due other specified bacterial agents, upper arm', 'ICD10_2010'), +('M00.83', 'Arthritis and polyarthritis due other specified bacterial agents, forearm', 'ICD10_2010'), +('M00.84', 'Arthritis and polyarthritis due other specified bacterial agents, hand', 'ICD10_2010'), +('M00.85', 'Arthritis and polyarthritis due other specified bacterial agents, pelvic and thigh', 'ICD10_2010'), +('M00.86', 'Arthritis and polyarthritis due other specified bacterial agents, lower leg', 'ICD10_2010'), +('M00.87', 'Arthritis and polyarthritis due other specified bacterial agents, ankle and foot', 'ICD10_2010'), +('M00.88', 'Arthritis and polyarthritis due other specified bacterial agents, other sites', 'ICD10_2010'), +('M00.89', 'Arthritis and polyarthritis due other specified bacterial agents, unspecified site', 'ICD10_2010'), +('M00.9', 'Pyogenic arthritis, unspecified', 'ICD10_2010'), +('M00.90', 'Pyogenic arthritis, unspecified, multiple sites', 'ICD10_2010'), +('M00.91', 'Pyogenic arthritis, unspecified, shoulder region', 'ICD10_2010'), +('M00.92', 'Pyogenic arthritis, unspecified, upper arm', 'ICD10_2010'), +('M00.93', 'Pyogenic arthritis, unspecified, forearm', 'ICD10_2010'), +('M00.94', 'Pyogenic arthritis, unspecified, hand', 'ICD10_2010'), +('M00.95', 'Pyogenic arthritis, unspecified, pelvic and thigh', 'ICD10_2010'), +('M00.96', 'Pyogenic arthritis, unspecified, lower leg', 'ICD10_2010'), +('M00.97', 'Pyogenic arthritis, unspecified, ankle and foot', 'ICD10_2010'), +('M00.98', 'Pyogenic arthritis, unspecified, other sites', 'ICD10_2010'), +('M00.99', 'Pyogenic arthritis, unspecified, unspecified site', 'ICD10_2010'), +('M01', 'Direct infections of joint in infectious and parasitic diseases classified elsewhere', 'ICD10_2010'), +('M01.0', 'Meningococcal arthritis', 'ICD10_2010'), +('M01.00', 'Meningococcal arthritis, multiple sites', 'ICD10_2010'), +('M01.01', 'Meningococcal arthritis, shoulder region', 'ICD10_2010'), +('M01.02', 'Meningococcal arthritis, upper arm', 'ICD10_2010'), +('M01.03', 'Meningococcal arthritis, forearm', 'ICD10_2010'), +('M01.04', 'Meningococcal arthritis, hand', 'ICD10_2010'), +('M01.05', 'Meningococcal arthritis, pelvic and thigh', 'ICD10_2010'), +('M01.06', 'Meningococcal arthritis, lower leg', 'ICD10_2010'), +('M01.07', 'Meningococcal arthritis, ankle and foot', 'ICD10_2010'), +('M01.08', 'Meningococcal arthritis, other sites', 'ICD10_2010'), +('M01.09', 'Meningococcal arthritis, unspecified site', 'ICD10_2010'), +('M01.1', 'Tuberculous arthritis', 'ICD10_2010'), +('M01.10', 'Tuberculous arthritis, multiple sites', 'ICD10_2010'), +('M01.11', 'Tuberculous arthritis, shoulder region', 'ICD10_2010'), +('M01.12', 'Tuberculous arthritis, upper arm', 'ICD10_2010'), +('M01.13', 'Tuberculous arthritis, forearm', 'ICD10_2010'), +('M01.14', 'Tuberculous arthritis, hand', 'ICD10_2010'), +('M01.15', 'Tuberculous arthritis, pelvic and thigh', 'ICD10_2010'), +('M01.16', 'Tuberculous arthritis, lower leg', 'ICD10_2010'), +('M01.17', 'Tuberculous arthritis, ankle and foot', 'ICD10_2010'), +('M01.18', 'Tuberculous arthritis, other sites', 'ICD10_2010'), +('M01.19', 'Tuberculous arthritis, unspecified site', 'ICD10_2010'), +('M01.2', 'Arthritis in lyme disease', 'ICD10_2010'), +('M01.20', 'Arthritis in lyme disease, multiple sites', 'ICD10_2010'), +('M01.21', 'Arthritis in lyme disease, shoulder region', 'ICD10_2010'), +('M01.22', 'Arthritis in lyme disease, upper arm', 'ICD10_2010'); +INSERT INTO `icd10` (`ID_ICD10`, `Diagnosa`, `Versi_ICD10`) VALUES +('M01.23', 'Arthritis in lyme disease, forearm', 'ICD10_2010'), +('M01.24', 'Arthritis in lyme disease, hand', 'ICD10_2010'), +('M01.25', 'Arthritis in lyme disease, pelvic and thigh', 'ICD10_2010'), +('M01.26', 'Arthritis in lyme disease, lower leg', 'ICD10_2010'), +('M01.27', 'Arthritis in lyme disease, ankle and foot', 'ICD10_2010'), +('M01.28', 'Arthritis in lyme disease, other sites', 'ICD10_2010'), +('M01.29', 'Arthritis in lyme disease, unspecified site', 'ICD10_2010'), +('M01.3', 'Arthritis in other bacterial diseases classified elsewhere', 'ICD10_2010'), +('M01.30', 'Arthritis in other bacterial diseases classified elsewhere, multiple sites', 'ICD10_2010'), +('M01.31', 'Arthritis in other bacterial diseases classified elsewhere, shouder region', 'ICD10_2010'), +('M01.32', 'Arthritis in other bacterial diseases classified elsewhere, upper arm', 'ICD10_2010'), +('M01.33', 'Arthritis in other bacterial diseases classified elsewhere, forearm', 'ICD10_2010'), +('M01.34', 'Arthritis in other bacterial diseases classified elsewhere, hand', 'ICD10_2010'), +('M01.35', 'Arthritis in other bacterial diseases classified elsewhere, pelvic and thigh', 'ICD10_2010'), +('M01.36', 'Arthritis in other bacterial diseases classified elsewhere, lower leg', 'ICD10_2010'), +('M01.37', 'Arthritis in other bacterial diseases classified elsewhere, ankle and foot', 'ICD10_2010'), +('M01.38', 'Arthritis in other bacterial diseases classified elsewhere, other sites', 'ICD10_2010'), +('M01.39', 'Arthritis in other bacterial diseases classified elsewhere, unspecified site', 'ICD10_2010'), +('M01.4', 'Rubella arthritis', 'ICD10_2010'), +('M01.40', 'Rubella arthritis, multiple sites', 'ICD10_2010'), +('M01.41', 'Rubella arthritis, shoulder region', 'ICD10_2010'), +('M01.42', 'Rubella arthritis, upper arm', 'ICD10_2010'), +('M01.43', 'Rubella arthritis, forearm', 'ICD10_2010'), +('M01.44', 'Rubella arthritis, hand', 'ICD10_2010'), +('M01.45', 'Rubella arthritis, pelvic and thigh', 'ICD10_2010'), +('M01.46', 'Rubella arthritis, lower leg', 'ICD10_2010'), +('M01.47', 'Rubella arthritis, ankle and foot', 'ICD10_2010'), +('M01.48', 'Rubella arthritis, other sites', 'ICD10_2010'), +('M01.49', 'Rubella arthritis, unspecified site', 'ICD10_2010'), +('M01.5', 'Arthritis in other viral diseases classified elsewhere', 'ICD10_2010'), +('M01.50', 'Arthritis in other viral diseases classified elsewhere, multiple sites', 'ICD10_2010'), +('M01.51', 'Arthritis in other viral diseases classified elsewhere, shoulder region', 'ICD10_2010'), +('M01.52', 'Arthritis in other viral diseases classified elsewhere, upper arm', 'ICD10_2010'), +('M01.53', 'Arthritis in other viral diseases classified elsewhere, forearm', 'ICD10_2010'), +('M01.54', 'Arthritis in other viral diseases classified elsewhere, hand', 'ICD10_2010'), +('M01.55', 'Arthritis in other viral diseases classified elsewhere, pelvic and thigh', 'ICD10_2010'), +('M01.56', 'Arthritis in other viral diseases classified elsewhere, lower leg', 'ICD10_2010'), +('M01.57', 'Arthritis in other viral diseases classified elsewhere, ankle and foot', 'ICD10_2010'), +('M01.58', 'Arthritis in other viral diseases classified elsewhere, other sites', 'ICD10_2010'), +('M01.59', 'Arthritis in other viral diseases classified elsewhere, unspecified site', 'ICD10_2010'), +('M01.6', 'Arhritis in mycoses', 'ICD10_2010'), +('M01.60', 'Arhritis in mycoses, multiple sites', 'ICD10_2010'), +('M01.61', 'Arhritis in mycoses, shoulder region', 'ICD10_2010'), +('M01.62', 'Arhritis in mycoses, upper arm', 'ICD10_2010'), +('M01.63', 'Arhritis in mycoses, forearm', 'ICD10_2010'), +('M01.64', 'Arhritis in mycoses, hand', 'ICD10_2010'), +('M01.65', 'Arhritis in mycoses, pelvic and thigh', 'ICD10_2010'), +('M01.66', 'Arhritis in mycoses, lower leg', 'ICD10_2010'), +('M01.67', 'Arhritis in mycoses, ankle and foot', 'ICD10_2010'), +('M01.68', 'Arhritis in mycoses, other sites', 'ICD10_2010'), +('M01.69', 'Arhritis in mycoses, unspecified site', 'ICD10_2010'), +('M01.8', 'Arthritis in other infectious and parasitic diseases classified elsewhere', 'ICD10_2010'), +('M01.80', 'Arthritis in other infectious and parasitic diseases classified elsewhere, multiple sites', 'ICD10_2010'), +('M01.81', 'Arthritis in other infectious and parasitic diseases classified elsewhere, shoulder region', 'ICD10_2010'), +('M01.82', 'Arthritis in other infectious and parasitic diseases classified elsewhere, upper arm', 'ICD10_2010'), +('M01.83', 'Arthritis in other infectious and parasitic diseases classified elsewhere, forearm', 'ICD10_2010'), +('M01.84', 'Arthritis in other infectious and parasitic diseases classified elsewhere, hand', 'ICD10_2010'), +('M01.85', 'Arthritis in other infectious and parasitic diseases classified elsewhere, pelvic and thigh', 'ICD10_2010'), +('M01.86', 'Arthritis in other infectious and parasitic diseases classified elsewhere, lower leg', 'ICD10_2010'), +('M01.87', 'Arthritis in other infectious and parasitic diseases classified elsewhere, ankle and foot', 'ICD10_2010'), +('M01.88', 'Arthritis in other infectious and parasitic diseases classified elsewhere, other sites', 'ICD10_2010'), +('M01.89', 'Arthritis in other infectious and parasitic diseases classified elsewhere, unspecified site', 'ICD10_2010'), +('M02', 'Reactive arthropathies', 'ICD10_2010'), +('M02.0', 'Arthropathy following intestinal bypass', 'ICD10_2010'), +('M02.00', 'Arthropathy following intestinal bypass, multiple sites', 'ICD10_2010'), +('M02.01', 'Arthropathy following intestinal bypass, shoulder region', 'ICD10_2010'), +('M02.02', 'Arthropathy following intestinal bypass, upper arm', 'ICD10_2010'), +('M02.03', 'Arthropathy following intestinal bypass, forearm', 'ICD10_2010'), +('M02.04', 'Arthropathy following intestinal bypass, hand', 'ICD10_2010'), +('M02.05', 'Arthropathy following intestinal bypass, pelvic and thigh', 'ICD10_2010'), +('M02.06', 'Arthropathy following intestinal bypass, lower leg', 'ICD10_2010'), +('M02.07', 'Arthropathy following intestinal bypass, ankle and foot', 'ICD10_2010'), +('M02.08', 'Arthropathy following intestinal bypass, other sites', 'ICD10_2010'), +('M02.09', 'Arthropathy following intestinal bypass, unspecified site', 'ICD10_2010'), +('M02.1', 'Postdysenteric arthropathy', 'ICD10_2010'), +('M02.10', 'Postdysenteric arthropathy, multiple sites', 'ICD10_2010'), +('M02.11', 'Postdysenteric arthropathy, shoulder region', 'ICD10_2010'), +('M02.12', 'Postdysenteric arthropathy, upper arm', 'ICD10_2010'), +('M02.13', 'Postdysenteric arthropathy, forearm', 'ICD10_2010'), +('M02.14', 'Postdysenteric arthropathy, hand', 'ICD10_2010'), +('M02.15', 'Postdysenteric arthropathy, pelvic and thigh', 'ICD10_2010'), +('M02.16', 'Postdysenteric arthropathy, lower leg', 'ICD10_2010'), +('M02.17', 'Postdysenteric arthropathy, ankle and foot', 'ICD10_2010'), +('M02.18', 'Postdysenteric arthropathy, other sites', 'ICD10_2010'), +('M02.19', 'Postdysenteric arthropathy, unspecified site', 'ICD10_2010'), +('M02.2', 'Postimmunization arthropathy', 'ICD10_2010'), +('M02.20', 'Postimmunization arthropathy, multiple sites', 'ICD10_2010'), +('M02.21', 'Postimmunization arthropathy, shoulder region', 'ICD10_2010'), +('M02.22', 'Postimmunization arthropathy, upper arm', 'ICD10_2010'), +('M02.23', 'Postimmunization arthropathy, forearm', 'ICD10_2010'), +('M02.24', 'Postimmunization arthropathy, hand', 'ICD10_2010'), +('M02.25', 'Postimmunization arthropathy, pelvic and thigh', 'ICD10_2010'), +('M02.26', 'Postimmunization arthropathy, lower leg', 'ICD10_2010'), +('M02.27', 'Postimmunization arthropathy, ankle and foot', 'ICD10_2010'), +('M02.28', 'Postimmunization arthropathy, other sites', 'ICD10_2010'), +('M02.29', 'Postimmunization arthropathy, unspecified site', 'ICD10_2010'), +('M02.3', 'Reiter\'s disease', 'ICD10_2010'), +('M02.30', 'Reiter\'s disease, multiple sites', 'ICD10_2010'), +('M02.31', 'Reiter\'s disease, shoulder region', 'ICD10_2010'), +('M02.32', 'Reiter\'s disease, upper arm', 'ICD10_2010'), +('M02.33', 'Reiter\'s disease, forearm', 'ICD10_2010'), +('M02.34', 'Reiter\'s disease, hand', 'ICD10_2010'), +('M02.35', 'Reiter\'s disease, pelvic and thigh', 'ICD10_2010'), +('M02.36', 'Reiter\'s disease, lower leg', 'ICD10_2010'), +('M02.37', 'Reiter\'s disease, ankle and foot', 'ICD10_2010'), +('M02.38', 'Reiter\'s disease, other sites', 'ICD10_2010'), +('M02.39', 'Reiter\'s disease, unspecified site', 'ICD10_2010'), +('M02.8', 'Other reactive arthropathies', 'ICD10_2010'), +('M02.80', 'Other reactive arthropathies, multiple sites', 'ICD10_2010'), +('M02.81', 'Other reactive arthropathies, shouder region', 'ICD10_2010'), +('M02.82', 'Other reactive arthropathies, upper arm', 'ICD10_2010'), +('M02.83', 'Other reactive arthropathies, forearm', 'ICD10_2010'), +('M02.84', 'Other reactive arthropathies, hand', 'ICD10_2010'), +('M02.85', 'Other reactive arthropathies, pelvic and thigh', 'ICD10_2010'), +('M02.86', 'Other reactive arthropathies, lower leg', 'ICD10_2010'), +('M02.87', 'Other reactive arthropathies, ankle and foot', 'ICD10_2010'), +('M02.88', 'Other reactive arthropathies, other sites', 'ICD10_2010'), +('M02.89', 'Other reactive arthropathies, unspecified site', 'ICD10_2010'), +('M02.9', 'Reactive arthropathy, unspecified', 'ICD10_2010'), +('M02.90', 'Reactive arthropathy, unspecified, multiple sites', 'ICD10_2010'), +('M02.91', 'Reactive arthropathy, unspecified, shoulder region', 'ICD10_2010'), +('M02.92', 'Reactive arthropathy, unspecified, upper arm', 'ICD10_2010'), +('M02.93', 'Reactive arthropathy, unspecified, forearm', 'ICD10_2010'), +('M02.94', 'Reactive arthropathy, unspecified, hand', 'ICD10_2010'), +('M02.95', 'Reactive arthropathy, unspecified, pelvic and thigh', 'ICD10_2010'), +('M02.96', 'Reactive arthropathy, unspecified, lower leg', 'ICD10_2010'), +('M02.97', 'Reactive arthropathy, unspecified, ankle and foot', 'ICD10_2010'), +('M02.98', 'Reactive arthropathy, unspecified, other sites', 'ICD10_2010'), +('M02.99', 'Reactive arthropathy, unspecified, unspecified site', 'ICD10_2010'), +('M03', 'Postinfective and reactive arthropathies in diseases classified elsewhere', 'ICD10_2010'), +('M03.0', 'Postmeningococcal arthritis', 'ICD10_2010'), +('M03.00', 'Postmeningococcal arthritis, multiple sites', 'ICD10_2010'), +('M03.01', 'Postmeningococcal arthritis, shoulder region', 'ICD10_2010'), +('M03.02', 'Postmeningococcal arthritis, upper arm', 'ICD10_2010'), +('M03.03', 'Postmeningococcal arthritis, forearm', 'ICD10_2010'), +('M03.04', 'Postmeningococcal arthritis, hand', 'ICD10_2010'), +('M03.05', 'Postmeningococcal arthritis, pelvic and thigh', 'ICD10_2010'), +('M03.06', 'Postmeningococcal arthritis, lower leg', 'ICD10_2010'), +('M03.07', 'Postmeningococcal arthritis, ankle and foot', 'ICD10_2010'), +('M03.08', 'Postmeningococcal arthritis, other sites', 'ICD10_2010'), +('M03.09', 'Postmeningococcal arthritis, unspecified site', 'ICD10_2010'), +('M03.1', 'Postinfective arthropathy in syphilis', 'ICD10_2010'), +('M03.10', 'Postinfective arthropathy in syphilis, multiple sites', 'ICD10_2010'), +('M03.11', 'Postinfective arthropathy in syphilis, shoulder region', 'ICD10_2010'), +('M03.12', 'Postinfective arthropathy in syphilis, upper arm', 'ICD10_2010'), +('M03.13', 'Postinfective arthropathy in syphilis, forearm', 'ICD10_2010'), +('M03.14', 'Postinfective arthropathy in syphilis, hand', 'ICD10_2010'), +('M03.15', 'Postinfective arthropathy in syphilis, pelvic and thigh', 'ICD10_2010'), +('M03.16', 'Postinfective arthropathy in syphilis, lower leg', 'ICD10_2010'), +('M03.17', 'Postinfective arthropathy in syphilis, ankle and foot', 'ICD10_2010'), +('M03.18', 'Postinfective arthropathy in syphilis, other sites', 'ICD10_2010'), +('M03.19', 'Postinfective arthropathy in syphilis, unspecified site', 'ICD10_2010'), +('M03.2', 'Other postinfectious arthropathies in diseases classified elsewhere', 'ICD10_2010'), +('M03.20', 'Other postinfectious arthropathies in diseases classified elsewhere, multiple sites', 'ICD10_2010'), +('M03.21', 'Other postinfectious arthropathies in diseases classified elsewhere, shoulder region', 'ICD10_2010'), +('M03.22', 'Other postinfectious arthropathies in diseases classified elsewhere, upper arm', 'ICD10_2010'), +('M03.23', 'Other postinfectious arthropathies in diseases classified elsewhere, forearm', 'ICD10_2010'), +('M03.24', 'Other postinfectious arthropathies in diseases classified elsewhere, hand', 'ICD10_2010'), +('M03.25', 'Other postinfectious arthropathies in diseases classified elsewhere, pelvic and thigh', 'ICD10_2010'), +('M03.26', 'Other postinfectious arthropathies in diseases classified elsewhere, lower leg', 'ICD10_2010'), +('M03.27', 'Other postinfectious arthropathies in diseases classified elsewhere, ankle and foot', 'ICD10_2010'), +('M03.28', 'Other postinfectious arthropathies in diseases classified elsewhere, other sites', 'ICD10_2010'), +('M03.29', 'Other postinfectious arthropathies in diseases classified elsewhere, unspecified site', 'ICD10_2010'), +('M03.6', 'Reactive arthropathy in other diseases classified elsewhere', 'ICD10_2010'), +('M03.60', 'Reactive arthropathy in other diseases classified elsewhere, multiple sites', 'ICD10_2010'), +('M03.61', 'Reactive arthropathy in other diseases classified elsewhere, shoulder region', 'ICD10_2010'), +('M03.62', 'Reactive arthropathy in other diseases classified elsewhere, upper arm', 'ICD10_2010'), +('M03.63', 'Reactive arthropathy in other diseases classified elsewhere, forearm', 'ICD10_2010'), +('M03.64', 'Reactive arthropathy in other diseases classified elsewhere, hand', 'ICD10_2010'), +('M03.65', 'Reactive arthropathy in other diseases classified elsewhere, pelvic and thigh', 'ICD10_2010'), +('M03.66', 'Reactive arthropathy in other diseases classified elsewhere, lower leg', 'ICD10_2010'), +('M03.67', 'Reactive arthropathy in other diseases classified elsewhere, ankle and foot', 'ICD10_2010'), +('M03.68', 'Reactive arthropathy in other diseases classified elsewhere, other sites', 'ICD10_2010'), +('M03.69', 'Reactive arthropathy in other diseases classified elsewhere, unspecified site', 'ICD10_2010'), +('M05', 'Seropositive rheumatoid arthritis', 'ICD10_2010'), +('M05.0', 'Seropositive Felty\'s syndrome', 'ICD10_2010'), +('M05.00', 'Seropositive Felty\'s syndrome, multiple sites', 'ICD10_2010'), +('M05.01', 'Seropositive Felty\'s syndrome, shoulder region', 'ICD10_2010'), +('M05.02', 'Seropositive Felty\'s syndrome, upper arm', 'ICD10_2010'), +('M05.03', 'Seropositive Felty\'s syndrome, forearm', 'ICD10_2010'), +('M05.04', 'Seropositive Felty\'s syndrome, hand', 'ICD10_2010'), +('M05.05', 'Seropositive Felty\'s syndrome, pelvic and thigh', 'ICD10_2010'), +('M05.06', 'Seropositive Felty\'s syndrome, lower leg', 'ICD10_2010'), +('M05.07', 'Seropositive Felty\'s syndrome, ankle and foot', 'ICD10_2010'), +('M05.08', 'Seropositive Felty\'s syndrome, other sites', 'ICD10_2010'), +('M05.09', 'Seropositive Felty\'s syndrome, unspecified site', 'ICD10_2010'), +('M05.1', 'Seropositive rheumatoid lung disease', 'ICD10_2010'), +('M05.10', 'Seropositive rheumatoid lung disease, multiple sites', 'ICD10_2010'), +('M05.11', 'Seropositive rheumatoid lung disease, shoulder region', 'ICD10_2010'), +('M05.12', 'Seropositive rheumatoid lung disease, upper arm', 'ICD10_2010'), +('M05.13', 'Seropositive rheumatoid lung disease, forearm', 'ICD10_2010'), +('M05.14', 'Seropositive rheumatoid lung disease, hand', 'ICD10_2010'), +('M05.15', 'Seropositive rheumatoid lung disease, pelvic and thigh', 'ICD10_2010'), +('M05.16', 'Seropositive rheumatoid lung disease, lower leg', 'ICD10_2010'), +('M05.17', 'Seropositive rheumatoid lung disease, ankle and foot', 'ICD10_2010'), +('M05.18', 'Seropositive rheumatoid lung disease, other sites', 'ICD10_2010'), +('M05.19', 'Seropositive rheumatoid lung disease, unspecified site', 'ICD10_2010'), +('M05.2', 'Seropositive rheumatoid vasculitis', 'ICD10_2010'), +('M05.20', 'Seropositive rheumatoid vasculitis, multiple sites', 'ICD10_2010'), +('M05.21', 'Seropositive rheumatoid vasculitis, shoulder region', 'ICD10_2010'), +('M05.22', 'Seropositive rheumatoid vasculitis, upper arm', 'ICD10_2010'), +('M05.23', 'Seropositive rheumatoid vasculitis, forearm', 'ICD10_2010'), +('M05.24', 'Seropositive rheumatoid vasculitis, hand', 'ICD10_2010'), +('M05.25', 'Seropositive rheumatoid vasculitis, pelvic and thigh', 'ICD10_2010'), +('M05.26', 'Seropositive rheumatoid vasculitis, lower leg', 'ICD10_2010'), +('M05.27', 'Seropositive rheumatoid vasculitis, ankle and foot', 'ICD10_2010'), +('M05.28', 'Seropositive rheumatoid vasculitis, other sites', 'ICD10_2010'), +('M05.29', 'Seropositive rheumatoid vasculitis, unspecified site', 'ICD10_2010'), +('M05.3', 'Seropositive rheumatoid arthritis with involvement of oth organs and sys', 'ICD10_2010'), +('M05.30', 'Seropositive rheumatoid arthritis with involvement of other organs and system, multiple site', 'ICD10_2010'), +('M05.31', 'Seropositive rheumatoid arthritis with involvement of other organs and system, shoulder region', 'ICD10_2010'), +('M05.32', 'Seropositive rheumatoid arthritis with involvement of other organs and system, upper arm', 'ICD10_2010'), +('M05.33', 'Seropositive rheumatoid arthritis with involvement of other organs and system, forearm', 'ICD10_2010'), +('M05.34', 'Seropositive rheumatoid arthritis with involvement of other organs and system, hand', 'ICD10_2010'), +('M05.35', 'Seropositive rheumatoid arthritis with involvement of other organs and system, pelvic and thigh', 'ICD10_2010'), +('M05.36', 'Seropositive rheumatoid arthritis with involvement of other organs and system, lower leg', 'ICD10_2010'), +('M05.37', 'Seropositive rheumatoid arthritis with involvement of other organs and system, ankle and foot', 'ICD10_2010'), +('M05.38', 'Seropositive rheumatoid arthritis with involvement of other organs and system, other sites', 'ICD10_2010'), +('M05.39', 'Seropositive rheumatoid arthritis with involvement of other organs and system, unspecified site', 'ICD10_2010'), +('M05.8', 'Other seropositive rheumatoid arthritis', 'ICD10_2010'), +('M05.80', 'Other seropositive rheumatoid arthritis, multiple sites', 'ICD10_2010'), +('M05.81', 'Other seropositive rheumatoid arthritis, shoulder region', 'ICD10_2010'), +('M05.82', 'Other seropositive rheumatoid arthritis, upper arm', 'ICD10_2010'), +('M05.83', 'Other seropositive rheumatoid arthritis, forearm', 'ICD10_2010'), +('M05.84', 'Other seropositive rheumatoid arthritis, hand', 'ICD10_2010'), +('M05.85', 'Other seropositive rheumatoid arthritis, pelvic and thigh', 'ICD10_2010'), +('M05.86', 'Other seropositive rheumatoid arthritis, lower leg', 'ICD10_2010'), +('M05.87', 'Other seropositive rheumatoid arthritis, ankle and foot', 'ICD10_2010'), +('M05.88', 'Other seropositive rheumatoid arthritis, other sites', 'ICD10_2010'), +('M05.89', 'Other seropositive rheumatoid arthritis, unspecified site', 'ICD10_2010'), +('M05.9', 'Seropositive rheumatoid arthritis, unspecified', 'ICD10_2010'), +('M05.90', 'Seropositive rheumatoid arthritis, unspecified, multiple sites', 'ICD10_2010'), +('M05.91', 'Seropositive rheumatoid arthritis, unspecified, shoulder region', 'ICD10_2010'), +('M05.92', 'Seropositive rheumatoid arthritis, unspecified, upper arm', 'ICD10_2010'), +('M05.93', 'Seropositive rheumatoid arthritis, unspecified, forearm', 'ICD10_2010'), +('M05.94', 'Seropositive rheumatoid arthritis, unspecified, hand', 'ICD10_2010'), +('M05.95', 'Seropositive rheumatoid arthritis, unspecified, pelvic and thigh', 'ICD10_2010'), +('M05.96', 'Seropositive rheumatoid arthritis, unspecified, lower leg', 'ICD10_2010'), +('M05.97', 'Seropositive rheumatoid arthritis, unspecified, ankle and foot', 'ICD10_2010'), +('M05.98', 'Seropositive rheumatoid arthritis, unspecified, other sites', 'ICD10_2010'), +('M05.99', 'Seropositive rheumatoid arthritis, unspecified, unspecified site', 'ICD10_2010'), +('M06', 'Other rheumatoid arthritis', 'ICD10_2010'), +('M06.0', 'Seronegative rheumatoid arthritis', 'ICD10_2010'), +('M06.00', 'Seronegative rheumatoid arthritis, multiple sites', 'ICD10_2010'), +('M06.01', 'Seronegative rheumatoid arthritis, shoulder region', 'ICD10_2010'), +('M06.02', 'Seronegative rheumatoid arthritis, upper arm', 'ICD10_2010'), +('M06.03', 'Seronegative rheumatoid arthritis, forearm', 'ICD10_2010'), +('M06.04', 'Seronegative rheumatoid arthritis, hand', 'ICD10_2010'), +('M06.05', 'Seronegative rheumatoid arthritis, pelvic and thigh', 'ICD10_2010'), +('M06.06', 'Seronegative rheumatoid arthritis, lower leg', 'ICD10_2010'), +('M06.07', 'Seronegative rheumatoid arthritis, ankle and foot', 'ICD10_2010'), +('M06.08', 'Seronegative rheumatoid arthritis, other sites', 'ICD10_2010'), +('M06.09', 'Seronegative rheumatoid arthritis, unspecified site', 'ICD10_2010'), +('M06.1', 'Adult-onset still\'s disease', 'ICD10_2010'), +('M06.10', 'Adult-onset still\'s disease, multiple sites', 'ICD10_2010'), +('M06.11', 'Adult-onset still\'s disease, shoulder region', 'ICD10_2010'), +('M06.12', 'Adult-onset still\'s disease, upper arm', 'ICD10_2010'), +('M06.13', 'Adult-onset still\'s disease, forearm', 'ICD10_2010'), +('M06.14', 'Adult-onset still\'s disease, hand', 'ICD10_2010'), +('M06.15', 'Adult-onset still\'s disease, pelvic and thigh', 'ICD10_2010'), +('M06.16', 'Adult-onset still\'s disease, lower leg', 'ICD10_2010'), +('M06.17', 'Adult-onset still\'s disease, ankle and foot', 'ICD10_2010'), +('M06.18', 'Adult-onset still\'s disease, other sites', 'ICD10_2010'), +('M06.19', 'Adult-onset still\'s disease, unspecified site', 'ICD10_2010'), +('M06.2', 'Rheumatoid bursitis', 'ICD10_2010'), +('M06.20', 'Rheumatoid bursitis, multiple sites', 'ICD10_2010'), +('M06.21', 'Rheumatoid bursitis, shoulder region', 'ICD10_2010'), +('M06.22', 'Rheumatoid bursitis, upper arm', 'ICD10_2010'), +('M06.23', 'Rheumatoid bursitis, forearm', 'ICD10_2010'), +('M06.24', 'Rheumatoid bursitis, hand', 'ICD10_2010'), +('M06.25', 'Rheumatoid bursitis, pelvic and thigh', 'ICD10_2010'), +('M06.26', 'Rheumatoid bursitis, lower leg', 'ICD10_2010'), +('M06.27', 'Rheumatoid bursitis, ankle and foot', 'ICD10_2010'), +('M06.28', 'Rheumatoid bursitis, other sites', 'ICD10_2010'), +('M06.29', 'Rheumatoid bursitis, unspecified site', 'ICD10_2010'), +('M06.3', 'Rheumatoid nodule', 'ICD10_2010'), +('M06.30', 'Rheumatoid nodule, multiple sites', 'ICD10_2010'), +('M06.31', 'Rheumatoid nodule, shoulder region', 'ICD10_2010'), +('M06.32', 'Rheumatoid nodule, upper arm', 'ICD10_2010'), +('M06.33', 'Rheumatoid nodule, forearm', 'ICD10_2010'), +('M06.34', 'Rheumatoid nodule, hand', 'ICD10_2010'), +('M06.35', 'Rheumatoid nodule, pelvic and thigh', 'ICD10_2010'), +('M06.36', 'Rheumatoid nodule, lower leg', 'ICD10_2010'), +('M06.37', 'Rheumatoid nodule, ankle and foot', 'ICD10_2010'), +('M06.38', 'Rheumatoid nodule, other sites', 'ICD10_2010'), +('M06.39', 'Rheumatoid nodule, unspecified site', 'ICD10_2010'), +('M06.4', 'Inflammatory polyarthropathy', 'ICD10_2010'), +('M06.40', 'Inflammatory polyarthropathy, multiple sites', 'ICD10_2010'), +('M06.41', 'Inflammatory polyarthropathy, shoulder region', 'ICD10_2010'), +('M06.42', 'Inflammatory polyarthropathy, upper arm', 'ICD10_2010'), +('M06.43', 'Inflammatory polyarthropathy, forearm', 'ICD10_2010'), +('M06.44', 'Inflammatory polyarthropathy, hand', 'ICD10_2010'), +('M06.45', 'Inflammatory polyarthropathy, pelvic and thigh', 'ICD10_2010'), +('M06.46', 'Inflammatory polyarthropathy, lower leg', 'ICD10_2010'), +('M06.47', 'Inflammatory polyarthropathy, ankle and foot', 'ICD10_2010'), +('M06.48', 'Inflammatory polyarthropathy, other sites', 'ICD10_2010'), +('M06.49', 'Inflammatory polyarthropathy, unspecified site', 'ICD10_2010'), +('M06.8', 'Other specified rheumatoid arthritis', 'ICD10_2010'), +('M06.80', 'Other specified rheumatoid arthritis, multiple sites', 'ICD10_2010'), +('M06.81', 'Other specified rheumatoid arthritis, shoulder region', 'ICD10_2010'), +('M06.82', 'Other specified rheumatoid arthritis, upper arm', 'ICD10_2010'), +('M06.83', 'Other specified rheumatoid arthritis, forearm', 'ICD10_2010'), +('M06.84', 'Other specified rheumatoid arthritis, hand', 'ICD10_2010'), +('M06.85', 'Other specified rheumatoid arthritis, pelvic and thigh', 'ICD10_2010'), +('M06.86', 'Other specified rheumatoid arthritis, lower leg', 'ICD10_2010'), +('M06.87', 'Other specified rheumatoid arthritis, ankle and foot', 'ICD10_2010'), +('M06.88', 'Other specified rheumatoid arthritis, other sites', 'ICD10_2010'), +('M06.89', 'Other specified rheumatoid arthritis, unspecified site', 'ICD10_2010'), +('M06.9', 'Rheumatoid arthritis, unspecified', 'ICD10_2010'), +('M06.90', 'Rheumatoid arthritis, unspecified, multiple sites', 'ICD10_2010'), +('M06.91', 'Rheumatoid arthritis, unspecified, shoulder region', 'ICD10_2010'), +('M06.92', 'Rheumatoid arthritis, unspecified, upper arm', 'ICD10_2010'), +('M06.93', 'Rheumatoid arthritis, unspecified, forearm', 'ICD10_2010'), +('M06.94', 'Rheumatoid arthritis, unspecified, hand', 'ICD10_2010'), +('M06.95', 'Rheumatoid arthritis, unspecified, pelvic and thigh', 'ICD10_2010'), +('M06.96', 'Rheumatoid arthritis, unspecified, lower leg', 'ICD10_2010'), +('M06.97', 'Rheumatoid arthritis, unspecified, ankle and foot', 'ICD10_2010'), +('M06.98', 'Rheumatoid arthritis, unspecified, other sites', 'ICD10_2010'), +('M06.99', 'Rheumatoid arthritis, unspecified, unspecified site', 'ICD10_2010'), +('M07', 'Psoriatic and enteropathic arthropathies', 'ICD10_2010'), +('M07.0', 'Distal interphalangeal proriatic arthropathy', 'ICD10_2010'), +('M07.00', 'Distal interphalangeal psoriatic arthropathy, multiple sites', 'ICD10_2010'), +('M07.04', 'Distal interphalangeal psoriatic arthropathy, hand', 'ICD10_2010'), +('M07.07', 'Distal interphalangeal psoriatic arthropathy, ankle and foot', 'ICD10_2010'), +('M07.09', 'Distal interphalangeal psoriatic arthropathy, site unspecified', 'ICD10_2010'), +('M07.1', 'Arthritis mutilans', 'ICD10_2010'), +('M07.10', 'Arthritis mutilans, multiple sites', 'ICD10_2010'), +('M07.11', 'Arthritis mutilans, shoulder region', 'ICD10_2010'), +('M07.12', 'Arthritis mutilans, upper arm', 'ICD10_2010'), +('M07.13', 'Arthritis mutilans, forearm', 'ICD10_2010'), +('M07.14', 'Arthritis mutilans, hand', 'ICD10_2010'), +('M07.15', 'Arthritis mutilans, pelvic and thigh', 'ICD10_2010'), +('M07.16', 'Arthritis mutilans, lower leg', 'ICD10_2010'), +('M07.17', 'Arthritis mutilans, ankle and foot', 'ICD10_2010'), +('M07.18', 'Arthritis mutilans, other sites', 'ICD10_2010'), +('M07.19', 'Arthritis mutilans, unspecified site', 'ICD10_2010'), +('M07.2', 'Psoriatic spondylitis', 'ICD10_2010'), +('M07.3', 'Other psoriatic arthropathies', 'ICD10_2010'), +('M07.30', 'Other psoriatic arthropathies, multiple sites', 'ICD10_2010'), +('M07.31', 'Other psoriatic arthropathies, sholder region', 'ICD10_2010'), +('M07.32', 'Other psoriatic arthropathies, upper arm', 'ICD10_2010'), +('M07.33', 'Other psoriatic arthropathies, forearm', 'ICD10_2010'), +('M07.34', 'Other psoriatic arthropathies, hand', 'ICD10_2010'), +('M07.35', 'Other psoriatic arthropathies, pelvic and thigh', 'ICD10_2010'), +('M07.36', 'Other psoriatic arthropathies, lower leg', 'ICD10_2010'), +('M07.37', 'Other psoriatic arthropathies, ankle and foot', 'ICD10_2010'), +('M07.38', 'Other psoriatic arthropathies, other sites', 'ICD10_2010'), +('M07.39', 'Other psoriatic arthropathies, unspecified site', 'ICD10_2010'), +('M07.4', 'Arthropathy in crohn\'s disease [regional enteritis]', 'ICD10_2010'), +('M07.40', 'Arthropathy in crohn\'s disease [regional enteritis], multiple sites', 'ICD10_2010'), +('M07.41', 'Arthropathy in crohn\'s disease [regional enteritis], shoulder region', 'ICD10_2010'), +('M07.42', 'Arthropathy in crohn\'s disease [regional enteritis], upper arm', 'ICD10_2010'), +('M07.43', 'Arthropathy in crohn\'s disease [regional enteritis], forearm', 'ICD10_2010'), +('M07.44', 'Arthropathy in crohn\'s disease [regional enteritis], hand', 'ICD10_2010'), +('M07.45', 'Arthropathy in crohn\'s disease [regional enteritis], pelvic and thigh', 'ICD10_2010'), +('M07.46', 'Arthropathy in crohn\'s disease [regional enteritis], lower leg', 'ICD10_2010'), +('M07.47', 'Arthropathy in crohn\'s disease [regional enteritis], ankle and foot', 'ICD10_2010'), +('M07.48', 'Arthropathy in crohn\'s disease [regional enteritis], other sites', 'ICD10_2010'), +('M07.49', 'Arthropathy in crohn\'s disease [regional enteritis], unspecified site', 'ICD10_2010'), +('M07.5', 'Arthropathy in ulcerative colitis', 'ICD10_2010'), +('M07.50', 'Arthropathy in ulcerative colitis, multiple sites', 'ICD10_2010'), +('M07.51', 'Arthropathy in ulcerative colitis, shoulder region', 'ICD10_2010'), +('M07.52', 'Arthropathy in ulcerative colitis, upper arm', 'ICD10_2010'), +('M07.53', 'Arthropathy in ulcerative colitis, forearm', 'ICD10_2010'), +('M07.54', 'Arthropathy in ulcerative colitis, hand', 'ICD10_2010'), +('M07.55', 'Arthropathy in ulcerative colitis, pelvic and thigh', 'ICD10_2010'), +('M07.56', 'Arthropathy in ulcerative colitis, lower leg', 'ICD10_2010'), +('M07.57', 'Arthropathy in ulcerative colitis, ankle and foot', 'ICD10_2010'), +('M07.58', 'Arthropathy in ulcerative colitis, other sites', 'ICD10_2010'), +('M07.59', 'Arthropathy in ulcerative colitis, unspecified site', 'ICD10_2010'), +('M07.6', 'Other enteropathic arthropathies', 'ICD10_2010'), +('M07.60', 'Other enteropathic arthropathies, multiple sites', 'ICD10_2010'), +('M07.61', 'Other enteropathic arthropathies, shoulder region', 'ICD10_2010'), +('M07.62', 'Other enteropathic arthropathies, upper arm', 'ICD10_2010'), +('M07.63', 'Other enteropathic arthropathies, forearm', 'ICD10_2010'), +('M07.64', 'Other enteropathic arthropathies, hand', 'ICD10_2010'), +('M07.65', 'Other enteropathic arthropathies, pelvic and thigh', 'ICD10_2010'), +('M07.66', 'Other enteropathic arthropathies, lower leg', 'ICD10_2010'), +('M07.67', 'Other enteropathic arthropathies, ankle and foot', 'ICD10_2010'), +('M07.68', 'Other enteropathic arthropathies, other sites', 'ICD10_2010'), +('M07.69', 'Other enteropathic arthropathies, unspecified site', 'ICD10_2010'), +('M08', 'Juvenile arthritis', 'ICD10_2010'), +('M08.0', 'Juvenile rheumatoid arthritis', 'ICD10_2010'), +('M08.00', 'Juvenile rheumatoid arthritis, multiple sites', 'ICD10_2010'), +('M08.01', 'Juvenile rheumatoid arthritis, shoulder region', 'ICD10_2010'), +('M08.02', 'Juvenile rheumatoid arthritis, upper arm', 'ICD10_2010'), +('M08.03', 'Juvenile rheumatoid arthritis, forearm', 'ICD10_2010'), +('M08.04', 'Juvenile rheumatoid arthritis, hand', 'ICD10_2010'), +('M08.05', 'Juvenile rheumatoid arthritis, pelvic and thigh', 'ICD10_2010'), +('M08.06', 'Juvenile rheumatoid arthritis, lower leg', 'ICD10_2010'), +('M08.07', 'Juvenile rheumatoid arthritis, ankle and foot', 'ICD10_2010'), +('M08.08', 'Juvenile rheumatoid arthritis, other sites', 'ICD10_2010'), +('M08.09', 'Juvenile rheumatoid arthritis, unspecified site', 'ICD10_2010'), +('M08.1', 'Juvenile ankylosing spondylitis', 'ICD10_2010'), +('M08.10', 'Juvenile ankylosing spondylitis, multiple sites', 'ICD10_2010'), +('M08.11', 'Juvenile ankylosing spondylitis, shouder region', 'ICD10_2010'), +('M08.12', 'Juvenile ankylosing spondylitis, upper arm', 'ICD10_2010'), +('M08.13', 'Juvenile ankylosing spondylitis, forearm', 'ICD10_2010'), +('M08.14', 'Juvenile ankylosing spondylitis, hand', 'ICD10_2010'), +('M08.15', 'Juvenile ankylosing spondylitis, pelvic and thigh', 'ICD10_2010'), +('M08.16', 'Juvenile ankylosing spondylitis, lower leg', 'ICD10_2010'), +('M08.17', 'Juvenile ankylosing spondylitis, ankle and foot', 'ICD10_2010'), +('M08.18', 'Juvenile ankylosing spondylitis, other sites', 'ICD10_2010'), +('M08.19', 'Juvenile ankylosing spondylitis, unspecified site', 'ICD10_2010'), +('M08.2', 'Juvenile arthritis with systemic onset', 'ICD10_2010'), +('M08.20', 'Juvenile arthritis with systemic onset, multiple sites', 'ICD10_2010'), +('M08.21', 'Juvenile arthritis with systemic onset, shoulder region', 'ICD10_2010'), +('M08.22', 'Juvenile arthritis with systemic onset, upper arm', 'ICD10_2010'), +('M08.23', 'Juvenile arthritis with systemic onset, forearm', 'ICD10_2010'), +('M08.24', 'Juvenile arthritis with systemic onset, hand', 'ICD10_2010'), +('M08.25', 'Juvenile arthritis with systemic onset, pelvic and thigh', 'ICD10_2010'), +('M08.26', 'Juvenile arthritis with systemic onset, lower leg', 'ICD10_2010'), +('M08.27', 'Juvenile arthritis with systemic onset, ankle and foot', 'ICD10_2010'), +('M08.28', 'Juvenile arthritis with systemic onset, other sites', 'ICD10_2010'), +('M08.29', 'Juvenile arthritis with systemic onset, unspecified site', 'ICD10_2010'), +('M08.3', 'Juvenile polyarthritis (seronegative)', 'ICD10_2010'), +('M08.30', 'Juvenile polyarthritis (seronegative), multiple sites', 'ICD10_2010'), +('M08.31', 'Juvenile polyarthritis (seronegative), shoulder region', 'ICD10_2010'), +('M08.32', 'Juvenile polyarthritis (seronegative), upper arm', 'ICD10_2010'), +('M08.33', 'Juvenile polyarthritis (seronegative), forearm', 'ICD10_2010'), +('M08.34', 'Juvenile polyarthritis (seronegative), hand', 'ICD10_2010'), +('M08.35', 'Juvenile polyarthritis (seronegative), pelvic and thigh', 'ICD10_2010'), +('M08.36', 'Juvenile polyarthritis (seronegative), lower leg', 'ICD10_2010'), +('M08.37', 'Juvenile polyarthritis (seronegative), ankle and foot', 'ICD10_2010'), +('M08.38', 'Juvenile polyarthritis (seronegative), other sites', 'ICD10_2010'), +('M08.39', 'Juvenile polyarthritis (seronegative), unspecified site', 'ICD10_2010'), +('M08.4', 'Pauciarticular juvenile arthritis', 'ICD10_2010'), +('M08.40', 'Pauciarticular juvenile arthritis, multiple sites', 'ICD10_2010'), +('M08.41', 'Pauciarticular juvenile arthritis, shoulder region', 'ICD10_2010'), +('M08.42', 'Pauciarticular juvenile arthritis, upper arm', 'ICD10_2010'), +('M08.43', 'Pauciarticular juvenile arthritis, forearm', 'ICD10_2010'), +('M08.44', 'Pauciarticular juvenile arthritis, hand', 'ICD10_2010'), +('M08.45', 'Pauciarticular juvenile arthritis, pelvica and thigh', 'ICD10_2010'), +('M08.46', 'Pauciarticular juvenile arthritis, lower leg', 'ICD10_2010'), +('M08.47', 'Pauciarticular juvenile arthritis, ankle and foot', 'ICD10_2010'), +('M08.48', 'Pauciarticular juvenile arthritis, other sites', 'ICD10_2010'), +('M08.49', 'Pauciarticular juvenile arthritis, unspecified site', 'ICD10_2010'), +('M08.8', 'Other juvenile arthritis', 'ICD10_2010'), +('M08.80', 'Other juvenile arthritis, multiple sites', 'ICD10_2010'), +('M08.81', 'Other juvenile arthritis, shoulder region', 'ICD10_2010'), +('M08.82', 'Other juvenile arthritis, upper arm', 'ICD10_2010'), +('M08.83', 'Other juvenile arthritis, forearm', 'ICD10_2010'), +('M08.84', 'Other juvenile arthritis, hand', 'ICD10_2010'), +('M08.85', 'Other juvenile arthritis, pelvic and thigh', 'ICD10_2010'), +('M08.86', 'Other juvenile arthritis, lower leg', 'ICD10_2010'), +('M08.87', 'Other juvenile arthritis, ankle and foot', 'ICD10_2010'), +('M08.88', 'Other juvenile arthritis, other sites', 'ICD10_2010'), +('M08.89', 'Other juvenile arthritis, unspecified site', 'ICD10_2010'), +('M08.9', 'Juvenile arthritis, unspecified', 'ICD10_2010'), +('M08.90', 'Juvenile arthritis, unspecified, multiple sites', 'ICD10_2010'), +('M08.91', 'Juvenile arthritis, unspecified, shoulder region', 'ICD10_2010'), +('M08.92', 'Juvenile arthritis, unspecified, upper arm', 'ICD10_2010'), +('M08.93', 'Juvenile arthritis, unspecified, forearm', 'ICD10_2010'), +('M08.94', 'Juvenile arthritis, unspecified, hand', 'ICD10_2010'), +('M08.95', 'Juvenile arthritis, unspecified, pelvic and thigh', 'ICD10_2010'), +('M08.96', 'Juvenile arthritis, unspecified, lower leg', 'ICD10_2010'), +('M08.97', 'Juvenile arthritis, unspecified, ankle and foot', 'ICD10_2010'), +('M08.98', 'Juvenile arthritis, unspecified, other sites', 'ICD10_2010'), +('M08.99', 'Juvenile arthritis, unspecified, unspecified site', 'ICD10_2010'), +('M09', 'Juvenile arthritis in diseases classified elsewhere', 'ICD10_2010'), +('M09.0', 'Juvenile arthritis in psoriasis', 'ICD10_2010'), +('M09.00', 'Juvenile arthritis in psoriasis, multiple sites', 'ICD10_2010'), +('M09.01', 'Juvenile arthritis in psoriasis, shoulder region', 'ICD10_2010'), +('M09.02', 'Juvenile arthritis in psoriasis, upper arm', 'ICD10_2010'), +('M09.03', 'Juvenile arthritis in psoriasis, forearm', 'ICD10_2010'), +('M09.04', 'Juvenile arthritis in psoriasis, hand', 'ICD10_2010'), +('M09.05', 'Juvenile arthritis in psoriasis, pelvic and thigh', 'ICD10_2010'), +('M09.06', 'Juvenile arthritis in psoriasis, lower leg', 'ICD10_2010'), +('M09.07', 'Juvenile arthritis in psoriasis, ankle and foot', 'ICD10_2010'), +('M09.08', 'Juvenile arthritis in psoriasis, other sites', 'ICD10_2010'), +('M09.09', 'Juvenile arthritis in psoriasis, unspecified site', 'ICD10_2010'), +('M09.1', 'Juvenile arthritis in crohn\'s disease [regional enteritis]', 'ICD10_2010'), +('M09.10', 'Juvenile arthritis in crohn\'s disease [regional enteritis], multiple sites', 'ICD10_2010'), +('M09.11', 'Juvenile arthritis in crohn\'s disease [regional enteritis], shoulder region', 'ICD10_2010'), +('M09.12', 'Juvenile arthritis in crohn\'s disease [regional enteritis], upper arm', 'ICD10_2010'), +('M09.13', 'Juvenile arthritis in crohn\'s disease [regional enteritis], forearm', 'ICD10_2010'), +('M09.14', 'Juvenile arthritis in crohn\'s disease [regional enteritis], hand', 'ICD10_2010'), +('M09.15', 'Juvenile arthritis in crohn\'s disease [regional enteritis], pelvic and thigh', 'ICD10_2010'), +('M09.16', 'Juvenile arthritis in crohn\'s disease [regional enteritis], lower leg', 'ICD10_2010'), +('M09.17', 'Juvenile arthritis in crohn\'s disease [regional enteritis], ankle and foot', 'ICD10_2010'), +('M09.18', 'Juvenile arthritis in crohn\'s disease [regional enteritis], other sites', 'ICD10_2010'), +('M09.19', 'Juvenile arthritis in crohn\'s disease [regional enteritis], unspecified site', 'ICD10_2010'), +('M09.2', 'Juvenile arthritis in ulcerative colitis', 'ICD10_2010'), +('M09.20', 'Juvenile arthritis in ulcerative colitis, multiple sites', 'ICD10_2010'), +('M09.21', 'Juvenile arthritis in ulcerative colitis, shoulder region', 'ICD10_2010'), +('M09.22', 'Juvenile arthritis in ulcerative colitis, upper arm', 'ICD10_2010'), +('M09.23', 'Juvenile arthritis in ulcerative colitis, forearm', 'ICD10_2010'), +('M09.24', 'Juvenile arthritis in ulcerative colitis, hand', 'ICD10_2010'), +('M09.25', 'Juvenile arthritis in ulcerative colitis, pelvic and thigh', 'ICD10_2010'), +('M09.26', 'Juvenile arthritis in ulcerative colitis, lower leg', 'ICD10_2010'), +('M09.27', 'Juvenile arthritis in ulcerative colitis, ankle and foot', 'ICD10_2010'), +('M09.28', 'Juvenile arthritis in ulcerative colitis, other sites', 'ICD10_2010'), +('M09.29', 'Juvenile arthritis in ulcerative colitis, unspecified site', 'ICD10_2010'), +('M09.8', 'Juvenile arthritis in other diseases classified elsewhere', 'ICD10_2010'), +('M09.80', 'Juvenile arthritis in other diseases classified elsewhere, multiple sites', 'ICD10_2010'), +('M09.81', 'Juvenile arthritis in other diseases classified elsewhere, shoulder region', 'ICD10_2010'), +('M09.82', 'Juvenile arthritis in other diseases classified elsewhere, upper arm', 'ICD10_2010'), +('M09.83', 'Juvenile arthritis in other diseases classified elsewhere, forearm', 'ICD10_2010'), +('M09.84', 'Juvenile arthritis in other diseases classified elsewhere, hand', 'ICD10_2010'), +('M09.85', 'Juvenile arthritis in other diseases classified elsewhere, pelvic and thigh', 'ICD10_2010'), +('M09.86', 'Juvenile arthritis in other diseases classified elsewhere, lower leg', 'ICD10_2010'), +('M09.87', 'Juvenile arthritis in other diseases classified elsewhere, ankle and foot', 'ICD10_2010'), +('M09.88', 'Juvenile arthritis in other diseases classified elsewhere, other sites', 'ICD10_2010'), +('M09.89', 'Juvenile arthritis in other diseases classified elsewhere, unspecified site', 'ICD10_2010'), +('M10', 'Gout', 'ICD10_2010'), +('M10.0', 'Idiopathic gout', 'ICD10_2010'), +('M10.00', 'Idiopathic gout, multiple sites', 'ICD10_2010'), +('M10.01', 'Idiopathic gout, shoulder region', 'ICD10_2010'), +('M10.02', 'Idiopathic gout, upper arm', 'ICD10_2010'), +('M10.03', 'Idiopathic gout, forearm', 'ICD10_2010'), +('M10.04', 'Idiopathic gout, hand', 'ICD10_2010'), +('M10.05', 'Idiopathic gout, pelvic and thigh', 'ICD10_2010'), +('M10.06', 'Idiopathic gout, lower leg', 'ICD10_2010'), +('M10.07', 'Idiopathic gout, ankle and foot', 'ICD10_2010'), +('M10.08', 'Idiopathic gout, other sites', 'ICD10_2010'), +('M10.09', 'Idiopathic gout, unspecified site', 'ICD10_2010'), +('M10.1', 'Lead-induced gout', 'ICD10_2010'), +('M10.10', 'Lead-induced gout, multiple sites', 'ICD10_2010'), +('M10.11', 'Lead-induced gout, shoulder region', 'ICD10_2010'), +('M10.12', 'Lead-induced gout, upper arm', 'ICD10_2010'), +('M10.13', 'Lead-induced gout, forearm', 'ICD10_2010'), +('M10.14', 'Lead-induced gout, hand', 'ICD10_2010'), +('M10.15', 'Lead-induced gout, pelvic and thigh', 'ICD10_2010'), +('M10.16', 'Lead-induced gout, lower leg', 'ICD10_2010'), +('M10.17', 'Lead-induced gout, ankle and foot', 'ICD10_2010'), +('M10.18', 'Lead-induced gout, other sites', 'ICD10_2010'), +('M10.19', 'Lead-induced gout, unspecified site', 'ICD10_2010'), +('M10.2', 'Drug-induced gout', 'ICD10_2010'), +('M10.20', 'Drug-induced gout, multiple sites', 'ICD10_2010'), +('M10.21', 'Drug-induced gout, shoulder region', 'ICD10_2010'), +('M10.22', 'Drug-induced gout, upper arm', 'ICD10_2010'), +('M10.23', 'Drug-induced gout, forearm', 'ICD10_2010'), +('M10.24', 'Drug-induced gout, hand', 'ICD10_2010'), +('M10.25', 'Drug-induced gout, pelvic and thigh', 'ICD10_2010'), +('M10.26', 'Drug-induced gout, lower leg', 'ICD10_2010'), +('M10.27', 'Drug-induced gout, ankle and foot', 'ICD10_2010'), +('M10.28', 'Drug-induced gout, other sites', 'ICD10_2010'), +('M10.29', 'Drug-induced gout, unspecified site', 'ICD10_2010'), +('M10.3', 'Gout due to impairment of renal function', 'ICD10_2010'), +('M10.30', 'Gout due to impairment of renal function, multiple sites', 'ICD10_2010'), +('M10.31', 'Gout due to impairment of renal function, shoulder region', 'ICD10_2010'), +('M10.32', 'Gout due to impairment of renal function, upper arm', 'ICD10_2010'), +('M10.33', 'Gout due to impairment of renal function, forearm', 'ICD10_2010'), +('M10.34', 'Gout due to impairment of renal function, hand', 'ICD10_2010'), +('M10.35', 'Gout due to impairment of renal function, pelvic and thigh', 'ICD10_2010'), +('M10.36', 'Gout due to impairment of renal function, lower leg', 'ICD10_2010'), +('M10.37', 'Gout due to impairment of renal function, ankle and foot', 'ICD10_2010'), +('M10.38', 'Gout due to impairment of renal function, other sites', 'ICD10_2010'), +('M10.39', 'Gout due to impairment of renal function, unspecified site', 'ICD10_2010'), +('M10.4', 'Other secondary gout', 'ICD10_2010'), +('M10.40', 'Other secondary gout, multiple sites', 'ICD10_2010'), +('M10.41', 'Other secondary gout, shoulder region', 'ICD10_2010'), +('M10.42', 'Other secondary gout, upper arm', 'ICD10_2010'), +('M10.43', 'Other secondary gout, forearm', 'ICD10_2010'), +('M10.44', 'Other secondary gout, hand', 'ICD10_2010'), +('M10.45', 'Other secondary gout, pelvic and thigh', 'ICD10_2010'), +('M10.46', 'Other secondary gout, lower leg', 'ICD10_2010'), +('M10.47', 'Other secondary gout, ankle and foot', 'ICD10_2010'), +('M10.48', 'Other secondary gout, other sites', 'ICD10_2010'), +('M10.49', 'Other secondary gout, unspecified site', 'ICD10_2010'), +('M10.9', 'Gout, unspecified', 'ICD10_2010'), +('M10.90', 'Gout, unspecified, multiple sites', 'ICD10_2010'), +('M10.91', 'Gout, unspecified, shoulder region', 'ICD10_2010'), +('M10.92', 'Gout, unspecified, upper arm', 'ICD10_2010'), +('M10.93', 'Gout, unspecified, forearm', 'ICD10_2010'), +('M10.94', 'Gout, unspecified, hand', 'ICD10_2010'), +('M10.95', 'Gout, unspecified, pelvic and thigh', 'ICD10_2010'), +('M10.96', 'Gout, unspecified, lower leg', 'ICD10_2010'), +('M10.97', 'Gout, unspecified, ankle and foot', 'ICD10_2010'), +('M10.98', 'Gout, unspecified, other sites', 'ICD10_2010'), +('M10.99', 'Gout, unspecified, unspecified site', 'ICD10_2010'), +('M11', 'Other crystal arthropathies', 'ICD10_2010'), +('M11.0', 'Hydroxyapatite deposition disease', 'ICD10_2010'), +('M11.00', 'Hydroxyapatite deposition disease, multiple sites', 'ICD10_2010'), +('M11.01', 'Hydroxyapatite deposition disease, shoulder region', 'ICD10_2010'), +('M11.02', 'Hydroxyapatite deposition disease, upper arm', 'ICD10_2010'), +('M11.03', 'Hydroxyapatite deposition disease, forearm', 'ICD10_2010'), +('M11.04', 'Hydroxyapatite deposition disease, hand', 'ICD10_2010'), +('M11.05', 'Hydroxyapatite deposition disease, pelvic and thigh', 'ICD10_2010'), +('M11.06', 'Hydroxyapatite deposition disease, lower leg', 'ICD10_2010'), +('M11.07', 'Hydroxyapatite deposition disease, ankle and foot', 'ICD10_2010'), +('M11.08', 'Hydroxyapatite deposition disease, other sites', 'ICD10_2010'), +('M11.09', 'Hydroxyapatite deposition disease, unspecified site', 'ICD10_2010'), +('M11.1', 'Familial chondrocalcinosis', 'ICD10_2010'), +('M11.10', 'Familial chondrocalcinosis, multiple sites', 'ICD10_2010'), +('M11.11', 'Familial chondrocalcinosis, shoulder region', 'ICD10_2010'), +('M11.12', 'Familial chondrocalcinosis, upper arm', 'ICD10_2010'), +('M11.13', 'Familial chondrocalcinosis, forearm', 'ICD10_2010'), +('M11.14', 'Familial chondrocalcinosis, hand', 'ICD10_2010'), +('M11.15', 'Familial chondrocalcinosis, pelvic and thigh', 'ICD10_2010'), +('M11.16', 'Familial chondrocalcinosis, lower leg', 'ICD10_2010'), +('M11.17', 'Familial chondrocalcinosis, ankle and foot', 'ICD10_2010'), +('M11.18', 'Familial chondrocalcinosis, other sites', 'ICD10_2010'), +('M11.19', 'Familial chondrocalcinosis, unspecified site', 'ICD10_2010'), +('M11.2', 'Other chondrocalcinosis', 'ICD10_2010'), +('M11.20', 'Other chondrocalcinosis, multiple sites', 'ICD10_2010'), +('M11.21', 'Other chondrocalcinosis, shoulder region', 'ICD10_2010'), +('M11.22', 'Other chondrocalcinosis, upper arm', 'ICD10_2010'), +('M11.23', 'Other chondrocalcinosis, forearm', 'ICD10_2010'), +('M11.24', 'Other chondrocalcinosis, hand', 'ICD10_2010'), +('M11.25', 'Other chondrocalcinosis, pelvic and thigh', 'ICD10_2010'), +('M11.26', 'Other chondrocalcinosis, lower leg', 'ICD10_2010'), +('M11.27', 'Other chondrocalcinosis, ankle and foot', 'ICD10_2010'), +('M11.28', 'Other chondrocalcinosis, other sites', 'ICD10_2010'), +('M11.29', 'Other chondrocalcinosis, unspecified site', 'ICD10_2010'), +('M11.8', 'Other specified crystal arthropathies', 'ICD10_2010'), +('M11.80', 'Other specified crystal arthropathies, multiple sites', 'ICD10_2010'), +('M11.81', 'Other specified crystal arthropathies, shoulder region', 'ICD10_2010'), +('M11.82', 'Other specified crystal arthropathies, upper arm', 'ICD10_2010'), +('M11.83', 'Other specified crystal arthropathies, forearm', 'ICD10_2010'), +('M11.84', 'Other specified crystal arthropathies, hand', 'ICD10_2010'), +('M11.85', 'Other specified crystal arthropathies, pelvic and thigh', 'ICD10_2010'), +('M11.86', 'Other specified crystal arthropathies, lower leg', 'ICD10_2010'), +('M11.87', 'Other specified crystal arthropathies, ankle and foot', 'ICD10_2010'), +('M11.88', 'Other specified crystal arthropathies, other sites', 'ICD10_2010'), +('M11.89', 'Other specified crystal arthropathies, unspecified site', 'ICD10_2010'), +('M11.9', 'Crystal arthropathy, unspecified', 'ICD10_2010'), +('M11.90', 'Crystal arthropathy, unspecified, multiple sites', 'ICD10_2010'), +('M11.91', 'Crystal arthropathy, unspecified, shoulder region', 'ICD10_2010'), +('M11.92', 'Crystal arthropathy, unspecified, upper arm', 'ICD10_2010'), +('M11.93', 'Crystal arthropathy, unspecified, forearm', 'ICD10_2010'), +('M11.94', 'Crystal arthropathy, unspecified, hand', 'ICD10_2010'), +('M11.95', 'Crystal arthropathy, unspecified, pelvic and thigh', 'ICD10_2010'), +('M11.96', 'Crystal arthropathy, unspecified, lower leg', 'ICD10_2010'), +('M11.97', 'Crystal arthropathy, unspecified, ankle and foot', 'ICD10_2010'), +('M11.98', 'Crystal arthropathy, unspecified, other sites', 'ICD10_2010'), +('M11.99', 'Crystal arthropathy, unspecified, unspecified site', 'ICD10_2010'), +('M12', 'Other specific arthropathies', 'ICD10_2010'), +('M12.0', 'Chronic postrheumatic arthropathy [jaccoud]', 'ICD10_2010'), +('M12.00', 'Chronic postrheumatic arthropathy [jaccoud], multiple sites', 'ICD10_2010'), +('M12.01', 'Chronic postrheumatic arthropathy [jaccoud], shoulder region', 'ICD10_2010'), +('M12.02', 'Chronic postrheumatic arthropathy [jaccoud], upper arm', 'ICD10_2010'), +('M12.03', 'Chronic postrheumatic arthropathy [jaccoud], forearm', 'ICD10_2010'), +('M12.04', 'Chronic postrheumatic arthropathy [jaccoud], hand', 'ICD10_2010'), +('M12.05', 'Chronic postrheumatic arthropathy [jaccoud], pelvic and thigh', 'ICD10_2010'), +('M12.06', 'Chronic postrheumatic arthropathy [jaccoud], lower leg', 'ICD10_2010'), +('M12.07', 'Chronic postrheumatic arthropathy [jaccoud], ankle and foot', 'ICD10_2010'), +('M12.08', 'Chronic postrheumatic arthropathy [jaccoud], other sites', 'ICD10_2010'), +('M12.09', 'Chronic postrheumatic arthropathy [jaccoud], unspecified site', 'ICD10_2010'), +('M12.1', 'Kaschin-beck disease', 'ICD10_2010'), +('M12.10', 'Kaschin-beck disease, multiple sites', 'ICD10_2010'), +('M12.11', 'Kaschin-beck disease, shoulder region', 'ICD10_2010'), +('M12.12', 'Kaschin-beck disease, upper arm', 'ICD10_2010'), +('M12.13', 'Kaschin-beck disease, forearm', 'ICD10_2010'), +('M12.14', 'Kaschin-beck disease, hand', 'ICD10_2010'), +('M12.15', 'Kaschin-beck disease, pelvic and thigh', 'ICD10_2010'), +('M12.16', 'Kaschin-beck disease, lower leg', 'ICD10_2010'), +('M12.17', 'Kaschin-beck disease, ankle and foot', 'ICD10_2010'), +('M12.18', 'Kaschin-beck disease, other sites', 'ICD10_2010'), +('M12.19', 'Kaschin-beck disease, unspecified site', 'ICD10_2010'), +('M12.2', 'Villonodular synovitis (pigmented)', 'ICD10_2010'), +('M12.20', 'Villonodular synovitis (pigmented), multiple sites', 'ICD10_2010'), +('M12.21', 'Villonodular synovitis (pigmented), shoulder region', 'ICD10_2010'), +('M12.22', 'Villonodular synovitis (pigmented), upper arm', 'ICD10_2010'), +('M12.23', 'Villonodular synovitis (pigmented), forearm', 'ICD10_2010'), +('M12.24', 'Villonodular synovitis (pigmented), hand', 'ICD10_2010'), +('M12.25', 'Villonodular synovitis (pigmented), pelvic and thigh', 'ICD10_2010'), +('M12.26', 'Villonodular synovitis (pigmented), lower leg', 'ICD10_2010'), +('M12.27', 'Villonodular synovitis (pigmented), ankle and foot', 'ICD10_2010'), +('M12.28', 'Villonodular synovitis (pigmented), other sites', 'ICD10_2010'), +('M12.29', 'Villonodular synovitis (pigmented), unspecified site', 'ICD10_2010'), +('M12.3', 'Palindromic rheumatism', 'ICD10_2010'), +('M12.30', 'Palindromic rheumatism, multiple sites', 'ICD10_2010'), +('M12.31', 'Palindromic rheumatism, shoulder region', 'ICD10_2010'), +('M12.32', 'Palindromic rheumatism, upper arm', 'ICD10_2010'), +('M12.33', 'Palindromic rheumatism, forearm', 'ICD10_2010'), +('M12.34', 'Palindromic rheumatism, hand', 'ICD10_2010'), +('M12.35', 'Palindromic rheumatism, pelvic and thigh', 'ICD10_2010'), +('M12.36', 'Palindromic rheumatism, lower leg', 'ICD10_2010'), +('M12.37', 'Palindromic rheumatism, ankle and foot', 'ICD10_2010'), +('M12.38', 'Palindromic rheumatism, other sites', 'ICD10_2010'), +('M12.39', 'Palindromic rheumatism, unspecified site', 'ICD10_2010'), +('M12.4', 'Intermittent hydrarthrosis', 'ICD10_2010'), +('M12.40', 'Intermittent hydrarthrosis, multiple sites', 'ICD10_2010'), +('M12.41', 'Intermittent hydrarthrosis, shoulder region', 'ICD10_2010'), +('M12.42', 'Intermittent hydrarthrosis, upper arm', 'ICD10_2010'); +INSERT INTO `icd10` (`ID_ICD10`, `Diagnosa`, `Versi_ICD10`) VALUES +('M12.43', 'Intermittent hydrarthrosis, forearm', 'ICD10_2010'), +('M12.44', 'Intermittent hydrarthrosis, hand', 'ICD10_2010'), +('M12.45', 'Intermittent hydrarthrosis, pelvic and thigh', 'ICD10_2010'), +('M12.46', 'Intermittent hydrarthrosis, lower leg', 'ICD10_2010'), +('M12.47', 'Intermittent hydrarthrosis, ankle and foot', 'ICD10_2010'), +('M12.48', 'Intermittent hydrarthrosis, other sites', 'ICD10_2010'), +('M12.49', 'Intermittent hydrarthrosis, unspecified site', 'ICD10_2010'), +('M12.5', 'Traumatic arthropathy', 'ICD10_2010'), +('M12.50', 'Traumatic arthropathy, multiple sites', 'ICD10_2010'), +('M12.51', 'Traumatic arthropathy, shoulder region', 'ICD10_2010'), +('M12.52', 'Traumatic arthropathy, upper arm', 'ICD10_2010'), +('M12.53', 'Traumatic arthropathy, forearm', 'ICD10_2010'), +('M12.54', 'Traumatic arthropathy, hand', 'ICD10_2010'), +('M12.55', 'Traumatic arthropathy, pelvic and thigh', 'ICD10_2010'), +('M12.56', 'Traumatic arthropathy, lower leg', 'ICD10_2010'), +('M12.57', 'Traumatic arthropathy, ankle and foot', 'ICD10_2010'), +('M12.58', 'Traumatic arthropathy, other sites', 'ICD10_2010'), +('M12.59', 'Traumatic arthropathy, unspecified site', 'ICD10_2010'), +('M12.8', 'Other specific arthropathies, not elsewhere classified', 'ICD10_2010'), +('M12.80', 'Other specific arthropathies, not elsewhere classified, multiple sites', 'ICD10_2010'), +('M12.81', 'Other specific arthropathies, not elsewhere classified, shoulder region', 'ICD10_2010'), +('M12.82', 'Other specific arthropathies, not elsewhere classified, upper arm', 'ICD10_2010'), +('M12.83', 'Other specific arthropathies, not elsewhere classified, forearm', 'ICD10_2010'), +('M12.84', 'Other specific arthropathies, not elsewhere classified, hand', 'ICD10_2010'), +('M12.85', 'Other specific arthropathies, not elsewhere classified, pelvic and thigh', 'ICD10_2010'), +('M12.86', 'Other specific arthropathies, not elsewhere classified, lower leg', 'ICD10_2010'), +('M12.87', 'Other specific arthropathies, not elsewhere classified, ankle and foot', 'ICD10_2010'), +('M12.88', 'Other specific arthropathies, not elsewhere classified, other sites', 'ICD10_2010'), +('M12.89', 'Other specific arthropathies, not elsewhere classified, unspecified site', 'ICD10_2010'), +('M13', 'Other arthritis', 'ICD10_2010'), +('M13.0', 'Polyarthritis, unspecified', 'ICD10_2010'), +('M13.00', 'Polyarthritis, unspecified, multiple sites', 'ICD10_2010'), +('M13.01', 'Polyarthritis, unspecified, shoulder region', 'ICD10_2010'), +('M13.02', 'Polyarthritis, unspecified, upper arm', 'ICD10_2010'), +('M13.03', 'Polyarthritis, unspecified, forearm', 'ICD10_2010'), +('M13.04', 'Polyarthritis, unspecified, hand', 'ICD10_2010'), +('M13.05', 'Polyarthritis, unspecified, pelvic and thigh', 'ICD10_2010'), +('M13.06', 'Polyarthritis, unspecified, lower leg', 'ICD10_2010'), +('M13.07', 'Polyarthritis, unspecified, ankle and foot', 'ICD10_2010'), +('M13.08', 'Polyarthritis, unspecified, other sites', 'ICD10_2010'), +('M13.09', 'Polyarthritis, unspecified, unspecified site', 'ICD10_2010'), +('M13.1', 'Monoarthritis, not elsewhere classified', 'ICD10_2010'), +('M13.10', 'Monoarthritis, not elsewhere classified, multiple sites', 'ICD10_2010'), +('M13.11', 'Monoarthritis, not elsewhere classified, shoulder region', 'ICD10_2010'), +('M13.12', 'Monoarthritis, not elsewhere classified, upper arm', 'ICD10_2010'), +('M13.13', 'Monoarthritis, not elsewhere classified, forearm', 'ICD10_2010'), +('M13.14', 'Monoarthritis, not elsewhere classified, hand', 'ICD10_2010'), +('M13.15', 'Monoarthritis, not elsewhere classified, pelvic and thigh', 'ICD10_2010'), +('M13.16', 'Monoarthritis, not elsewhere classified, lower leg', 'ICD10_2010'), +('M13.17', 'Monoarthritis, not elsewhere classified, ankle and foot', 'ICD10_2010'), +('M13.18', 'Monoarthritis, not elsewhere classified, other sites', 'ICD10_2010'), +('M13.19', 'Monoarthritis, not elsewhere classified, unspecified site', 'ICD10_2010'), +('M13.8', 'Other specified arthritis', 'ICD10_2010'), +('M13.80', 'Other specified arthritis, multiple sites', 'ICD10_2010'), +('M13.81', 'Other specified arthritis, shoulder region', 'ICD10_2010'), +('M13.82', 'Other specified arthritis, upper arm', 'ICD10_2010'), +('M13.83', 'Other specified arthritis, forearm', 'ICD10_2010'), +('M13.84', 'Other specified arthritis, hand', 'ICD10_2010'), +('M13.85', 'Other specified arthritis, pelvic and thigh', 'ICD10_2010'), +('M13.86', 'Other specified arthritis, lower leg', 'ICD10_2010'), +('M13.87', 'Other specified arthritis, ankle and foot', 'ICD10_2010'), +('M13.88', 'Other specified arthritis, other sites', 'ICD10_2010'), +('M13.89', 'Other specified arthritis, unspecified site', 'ICD10_2010'), +('M13.9', 'Arthritis, unspecified', 'ICD10_2010'), +('M13.90', 'Arthritis, unspecified, multiple sites', 'ICD10_2010'), +('M13.91', 'Arthritis, unspecified, shoulder region', 'ICD10_2010'), +('M13.92', 'Arthritis, unspecified, upper arm', 'ICD10_2010'), +('M13.93', 'Arthritis, unspecified, forearm', 'ICD10_2010'), +('M13.94', 'Arthritis, unspecified, hand', 'ICD10_2010'), +('M13.95', 'Arthritis, unspecified, pelvic and thigh', 'ICD10_2010'), +('M13.96', 'Arthritis, unspecified, lower leg', 'ICD10_2010'), +('M13.97', 'Arthritis, unspecified, ankle and foot', 'ICD10_2010'), +('M13.98', 'Arthritis, unspecified, other sites', 'ICD10_2010'), +('M13.99', 'Arthritis, unspecified, unspecified site', 'ICD10_2010'), +('M14', 'Arthropathies in other diseases classified elsewhere', 'ICD10_2010'), +('M14.0', 'Gouty arthropathy due to enzyme defects and other inherited disorders', 'ICD10_2010'), +('M14.1', 'Crystal arthropathy in other metabolic disorders', 'ICD10_2010'), +('M14.2', 'Diabetic arthropathy', 'ICD10_2010'), +('M14.3', 'Lipoid dermatoarthritis', 'ICD10_2010'), +('M14.4', 'Arthropathy in amylodosis', 'ICD10_2010'), +('M14.5', 'Arthropathies in other endocrine nutritional and metabolic disorders', 'ICD10_2010'), +('M14.6', 'Neuropathic arthropathy', 'ICD10_2010'), +('M14.8', 'Arthropathies in other specified diseases classified elsewhere', 'ICD10_2010'), +('M15', 'Polyarthrosis', 'ICD10_2010'), +('M15.0', 'Primary generalized (osteo)arthrosis', 'ICD10_2010'), +('M15.1', 'Heberden\'s nodes (with arthropathy)', 'ICD10_2010'), +('M15.2', 'Bouchard\'s nodes (with arthropathy)', 'ICD10_2010'), +('M15.3', 'Secondary multiple arthrosis', 'ICD10_2010'), +('M15.4', 'Erosive (osteo)arthrosis', 'ICD10_2010'), +('M15.8', 'Other polyarthrosis', 'ICD10_2010'), +('M15.9', 'Polyarthrosis, unspecified', 'ICD10_2010'), +('M16', 'Coxarthrosis [arthrosis of hip]', 'ICD10_2010'), +('M16.0', 'Primary coxarthrosis, bilateral', 'ICD10_2010'), +('M16.1', 'Other primary coxarthrosis', 'ICD10_2010'), +('M16.2', 'Coxarthrosis resulting from dysplasia, bilateral', 'ICD10_2010'), +('M16.3', 'Other dysplastic coxarthrosis', 'ICD10_2010'), +('M16.4', 'Post-traumatic coxarthrosis, bilateral', 'ICD10_2010'), +('M16.5', 'Other post-traumatic coxarthrosis', 'ICD10_2010'), +('M16.6', 'Other secondary coxarthrosis, bilateral', 'ICD10_2010'), +('M16.7', 'Other secondary coxarthrosis', 'ICD10_2010'), +('M16.9', 'Coxarthrosis, unspecified', 'ICD10_2010'), +('M17', 'Gonarthrosis [arthrosis of knee]', 'ICD10_2010'), +('M17.0', 'Primary gonarthrosis, bilateral', 'ICD10_2010'), +('M17.1', 'Other primary gonarthrosis', 'ICD10_2010'), +('M17.2', 'Post-traumatic gonarthrosis, bilateral', 'ICD10_2010'), +('M17.3', 'Other post-traumatic gonarthrosis', 'ICD10_2010'), +('M17.4', 'Other secondary gonarthrosis, bilateral', 'ICD10_2010'), +('M17.5', 'Other secondary gonarthrosis', 'ICD10_2010'), +('M17.9', 'Gonarthrosis, unspecified', 'ICD10_2010'), +('M18', 'Arthrosis of first carpometacarpal joint', 'ICD10_2010'), +('M18.0', 'Primary arthrosis of first carpometacarpal joints, bilateral', 'ICD10_2010'), +('M18.1', 'Other primary arthrosis of first carpometacarpal joint', 'ICD10_2010'), +('M18.2', 'Post-traumatic arthrosis of first carpometacarpal joints, bilateral', 'ICD10_2010'), +('M18.3', 'Other post-traumatic arthrosis of first carpometacarpal joints', 'ICD10_2010'), +('M18.4', 'Other secondary arthrosis of first carpometacarpal joints, bilateral', 'ICD10_2010'), +('M18.5', 'Other secondary arthrosis of first carpometacarpal joint', 'ICD10_2010'), +('M18.9', 'Arthrosis of first carpometacarpal joint, unspecified', 'ICD10_2010'), +('M19', 'Other arthrosis', 'ICD10_2010'), +('M19.0', 'Primary arthrosis of other joints', 'ICD10_2010'), +('M19.00', 'Primary arthrosis of other joints, multiple sites', 'ICD10_2010'), +('M19.01', 'Primary arthrosis of other joints, shoulder region', 'ICD10_2010'), +('M19.02', 'Primary arthrosis of other joints, upper arm', 'ICD10_2010'), +('M19.03', 'Primary arthrosis of other joints, forearm', 'ICD10_2010'), +('M19.04', 'Primary arthrosis of other joints, hand', 'ICD10_2010'), +('M19.05', 'Primary arthrosis of other joints, pelvic and thigh', 'ICD10_2010'), +('M19.06', 'Primary arthrosis of other joints, lower leg', 'ICD10_2010'), +('M19.07', 'Primary arthrosis of other joints, ankle and foot', 'ICD10_2010'), +('M19.08', 'Primary arthrosis of other joints, other sites', 'ICD10_2010'), +('M19.09', 'Primary arthrosis of other joints, unspecified site', 'ICD10_2010'), +('M19.1', 'Post-traumatic arthrosis of other joints', 'ICD10_2010'), +('M19.10', 'Post-traumatic arthrosis of other joints, multiple sites', 'ICD10_2010'), +('M19.11', 'Post-traumatic arthrosis of other joints, shoulder region', 'ICD10_2010'), +('M19.12', 'Post-traumatic arthrosis of other joints, upper arm', 'ICD10_2010'), +('M19.13', 'Post-traumatic arthrosis of other joints, forearm', 'ICD10_2010'), +('M19.14', 'Post-traumatic arthrosis of other joints, hand', 'ICD10_2010'), +('M19.15', 'Post-traumatic arthrosis of other joints, pelvic and thigh', 'ICD10_2010'), +('M19.16', 'Post-traumatic arthrosis of other joints, lower leg', 'ICD10_2010'), +('M19.17', 'Post-traumatic arthrosis of other joints, ankle and foot', 'ICD10_2010'), +('M19.18', 'Post-traumatic arthrosis of other joints, other sites', 'ICD10_2010'), +('M19.19', 'Post-traumatic arthrosis of other joints, unspecified site', 'ICD10_2010'), +('M19.2', 'Secondary arthrosis of other joints', 'ICD10_2010'), +('M19.20', 'Secondary arthrosis of other joints, multiple sites', 'ICD10_2010'), +('M19.21', 'Secondary arthrosis of other joints, shoulder region', 'ICD10_2010'), +('M19.22', 'Secondary arthrosis of other joints, upper arm', 'ICD10_2010'), +('M19.23', 'Secondary arthrosis of other joints, forearm', 'ICD10_2010'), +('M19.24', 'Secondary arthrosis of other joints, hand', 'ICD10_2010'), +('M19.25', 'Secondary arthrosis of other joints, pelvic and thigh', 'ICD10_2010'), +('M19.26', 'Secondary arthrosis of other joints, lower leg', 'ICD10_2010'), +('M19.27', 'Secondary arthrosis of other joints, ankle and foot', 'ICD10_2010'), +('M19.28', 'Secondary arthrosis of other joints, other sites', 'ICD10_2010'), +('M19.29', 'Secondary arthrosis of other joints, unspecified site', 'ICD10_2010'), +('M19.8', 'Other specified arthrosis', 'ICD10_2010'), +('M19.80', 'Other specified arthrosis, multiple sites', 'ICD10_2010'), +('M19.81', 'Other specified arthrosis, shoulder region', 'ICD10_2010'), +('M19.82', 'Other specified arthrosis, upper arm', 'ICD10_2010'), +('M19.83', 'Other specified arthrosis, forearm', 'ICD10_2010'), +('M19.84', 'Other specified arthrosis, hand', 'ICD10_2010'), +('M19.85', 'Other specified arthrosis, pelvic and thigh', 'ICD10_2010'), +('M19.86', 'Other specified arthrosis, lower leg', 'ICD10_2010'), +('M19.87', 'Other specified arthrosis, ankle and foot', 'ICD10_2010'), +('M19.88', 'Other specified arthrosis, other sites', 'ICD10_2010'), +('M19.89', 'Other specified arthrosis, unspecified site', 'ICD10_2010'), +('M19.9', 'Arthrosis, unspecified', 'ICD10_2010'), +('M19.90', 'Arthrosis, unspecified, multiple sites', 'ICD10_2010'), +('M19.91', 'Arthrosis, unspecified, shouder region', 'ICD10_2010'), +('M19.92', 'Arthrosis, unspecified, upper arm', 'ICD10_2010'), +('M19.93', 'Arthrosis, unspecified, forearm', 'ICD10_2010'), +('M19.94', 'Arthrosis, unspecified, hand', 'ICD10_2010'), +('M19.95', 'Arthrosis, unspecified, pelvic and thigh', 'ICD10_2010'), +('M19.96', 'Arthrosis, unspecified, lower leg', 'ICD10_2010'), +('M19.97', 'Arthrosis, unspecified, ankle and foot', 'ICD10_2010'), +('M19.98', 'Arthrosis, unspecified, other sites', 'ICD10_2010'), +('M19.99', 'Arthrosis, unspecified, unspecified site', 'ICD10_2010'), +('M20', 'Acquired deformities of fingers and toes', 'ICD10_2010'), +('M20.0', 'Deformity of finger(s)', 'ICD10_2010'), +('M20.1', 'Hallux valgus (acquired)', 'ICD10_2010'), +('M20.2', 'Hallux rigidus', 'ICD10_2010'), +('M20.3', 'Other deformity of hallux (acquired)', 'ICD10_2010'), +('M20.4', 'Other hammer toe(s) (acquired)', 'ICD10_2010'), +('M20.5', 'Other deformities of toe(s) (acquired)', 'ICD10_2010'), +('M20.6', 'Acquired deformity of toe(s), unspecified', 'ICD10_2010'), +('M21', 'Other acquired deformities of limbs', 'ICD10_2010'), +('M21.0', 'Valgus deformity, not elsewhere classified', 'ICD10_2010'), +('M21.00', 'Valgus deformity, not elsewhere classified, multiple sites', 'ICD10_2010'), +('M21.01', 'Valgus deformity, not elsewhere classified, shoulder region', 'ICD10_2010'), +('M21.02', 'Valgus deformity, not elsewhere classified, upper arm', 'ICD10_2010'), +('M21.03', 'Valgus deformity, not elsewhere classified, forearm', 'ICD10_2010'), +('M21.04', 'Valgus deformity, not elsewhere classified, hand', 'ICD10_2010'), +('M21.05', 'Valgus deformity, not elsewhere classified, pelvic and thigh', 'ICD10_2010'), +('M21.06', 'Valgus deformity, not elsewhere classified, lower leg', 'ICD10_2010'), +('M21.07', 'Valgus deformity, not elsewhere classified, ankle and foot', 'ICD10_2010'), +('M21.08', 'Valgus deformity, not elsewhere classified, other sites', 'ICD10_2010'), +('M21.09', 'Valgus deformity, not elsewhere classified, unspecified site', 'ICD10_2010'), +('M21.1', 'Varus deformity, not elsewhere classified', 'ICD10_2010'), +('M21.10', 'Varus deformity, not elsewhere classified, multiple sites', 'ICD10_2010'), +('M21.11', 'Varus deformity, not elsewhere classified, shoulder region', 'ICD10_2010'), +('M21.12', 'Varus deformity, not elsewhere classified, upper arm', 'ICD10_2010'), +('M21.13', 'Varus deformity, not elsewhere classified, forearm', 'ICD10_2010'), +('M21.14', 'Varus deformity, not elsewhere classified, hand', 'ICD10_2010'), +('M21.15', 'Varus deformity, not elsewhere classified, pelvic and thigh', 'ICD10_2010'), +('M21.16', 'Varus deformity, not elsewhere classified, lower leg', 'ICD10_2010'), +('M21.17', 'Varus deformity, not elsewhere classified, ankle and foot', 'ICD10_2010'), +('M21.18', 'Varus deformity, not elsewhere classified, other sites', 'ICD10_2010'), +('M21.19', 'Varus deformity, not elsewhere classified, unspecified site', 'ICD10_2010'), +('M21.2', 'Flexion deformity', 'ICD10_2010'), +('M21.20', 'Flexion deformity, multiple sites', 'ICD10_2010'), +('M21.21', 'Flexion deformity, shoulder region', 'ICD10_2010'), +('M21.22', 'Flexion deformity, upper arm', 'ICD10_2010'), +('M21.23', 'Flexion deformity, forearm', 'ICD10_2010'), +('M21.24', 'Flexion deformity, hand', 'ICD10_2010'), +('M21.25', 'Flexion deformity, pelvic and thigh', 'ICD10_2010'), +('M21.26', 'Flexion deformity, lower leg', 'ICD10_2010'), +('M21.27', 'Flexion deformity, ankle and foot', 'ICD10_2010'), +('M21.28', 'Flexion deformity, other sites', 'ICD10_2010'), +('M21.29', 'Flexion deformity, unspecified site', 'ICD10_2010'), +('M21.3', 'Wrist or foot drop (acquired)', 'ICD10_2010'), +('M21.34', 'Wrist or foot drop (acquired), hand', 'ICD10_2010'), +('M21.37', 'Wrist or foot drop (acquired), ankle and foot', 'ICD10_2010'), +('M21.4', 'Flat foot [pes planus] (acquired)', 'ICD10_2010'), +('M21.47', 'Flat foot [pes planus] (acquired), ankle and foot', 'ICD10_2010'), +('M21.5', 'Acquired clawhand, clubhand, clawfoot and clubfoot', 'ICD10_2010'), +('M21.54', 'Acquired clawhand, clubhand, clawfoot and clubfoot, hand', 'ICD10_2010'), +('M21.57', 'Acquired clawhand, clubhand, clawfoot and clubfoot, ankle and foot', 'ICD10_2010'), +('M21.6', 'Other acquired deformities of ankle and foot', 'ICD10_2010'), +('M21.67', 'Other acquired deformities of ankle and foot, ankle and foot', 'ICD10_2010'), +('M21.7', 'Unequal limb length (acquired)', 'ICD10_2010'), +('M21.70', 'Unequal limb length (acquired), multiple sites', 'ICD10_2010'), +('M21.71', 'Unequal limb length (acquired), shoulder region', 'ICD10_2010'), +('M21.72', 'Unequal limb length (acquired), upper arm', 'ICD10_2010'), +('M21.73', 'Unequal limb length (acquired), forearm', 'ICD10_2010'), +('M21.74', 'Unequal limb length (acquired), hand', 'ICD10_2010'), +('M21.75', 'Unequal limb length (acquired), pelvic and thigh', 'ICD10_2010'), +('M21.76', 'Unequal limb length (acquired), lower leg', 'ICD10_2010'), +('M21.77', 'Unequal limb length (acquired), ankle and foot', 'ICD10_2010'), +('M21.78', 'Unequal limb length (acquired), other sites', 'ICD10_2010'), +('M21.79', 'Unequal limb length (acquired), unspecified site', 'ICD10_2010'), +('M21.8', 'Other specified acquired deformities of limbs', 'ICD10_2010'), +('M21.80', 'Other specified acquired deformities of limbs, multiple sites', 'ICD10_2010'), +('M21.81', 'Other specified acquired deformities of limbs, shoulder region', 'ICD10_2010'), +('M21.82', 'Other specified acquired deformities of limbs, upper arm', 'ICD10_2010'), +('M21.83', 'Other specified acquired deformities of limbs, forearm', 'ICD10_2010'), +('M21.84', 'Other specified acquired deformities of limbs, hand', 'ICD10_2010'), +('M21.85', 'Other specified acquired deformities of limbs, pelvic and thigh', 'ICD10_2010'), +('M21.86', 'Other specified acquired deformities of limbs, lower leg 1', 'ICD10_2010'), +('M21.87', 'Other specified acquired deformities of limbs, ankle and foot 1', 'ICD10_2010'), +('M21.88', 'Other specified acquired deformities of limbs, other sites 1', 'ICD10_2010'), +('M21.89', 'Other specified acquired deformities of limbs, unspecified site 1', 'ICD10_2010'), +('M21.9', 'Acquired deformity of limb, unspecified 1', 'ICD10_2010'), +('M21.90', 'Acquired deformity of limb, unspecified, multiple sites 1', 'ICD10_2010'), +('M21.91', 'Acquired deformity of limb, unspecified, shoulder region 1', 'ICD10_2010'), +('M21.92', 'Acquired deformity of limb, unspecified, upper arm 1', 'ICD10_2010'), +('M21.93', 'Acquired deformity of limb, unspecified, forearm 1', 'ICD10_2010'), +('M21.94', 'Acquired deformity of limb, unspecified, hand 1', 'ICD10_2010'), +('M21.95', 'Acquired deformity of limb, unspecified, pelvic and thigh 1', 'ICD10_2010'), +('M21.96', 'Acquired deformity of limb, unspecified, lower leg 1', 'ICD10_2010'), +('M21.97', 'Acquired deformity of limb, unspecified, ankle and foot 1', 'ICD10_2010'), +('M21.98', 'Acquired deformity of limb, unspecified, other sites 1', 'ICD10_2010'), +('M21.99', 'Acquired deformity of limb, unspecified, unspecified site 1', 'ICD10_2010'), +('M22', 'Disorders of patella', 'ICD10_2010'), +('M22.0', 'Recurrent dislocation of patella 1', 'ICD10_2010'), +('M22.1', 'Recurrent subluxation of patella 1', 'ICD10_2010'), +('M22.2', 'Patellofemoral disorders 1', 'ICD10_2010'), +('M22.3', 'Other derangements of patella 1', 'ICD10_2010'), +('M22.4', 'Chondromalacia patellae', 'ICD10_2010'), +('M22.8', 'Other disorders of patella', 'ICD10_2010'), +('M22.9', 'Disorder of patella, unspecified', 'ICD10_2010'), +('M23', 'Internal derangement of knee', 'ICD10_2010'), +('M23.0', 'Cystic meniscus', 'ICD10_2010'), +('M23.00', 'Cystic meniscus, multiple sites', 'ICD10_2010'), +('M23.01', 'Cystic meniscus, anterior cruciate ligament or anterior horn medial meniscus', 'ICD10_2010'), +('M23.02', 'Cystic meniscus, posterior cruciate ligament or anterior horn medial meniscus', 'ICD10_2010'), +('M23.03', 'Cystic meniscus, medial collateral ligament or other and unspecified medial meniscus', 'ICD10_2010'), +('M23.04', 'Cystic meniscus, lateral collateral ligament or anterior horn of lateral meniscus', 'ICD10_2010'), +('M23.05', 'Cystic meniscus, posterior horn of lateral meniscus', 'ICD10_2010'), +('M23.06', 'Cystic meniscus, other and unspecified lateral meniscus', 'ICD10_2010'), +('M23.07', 'Cystic meniscus, capsular ligament', 'ICD10_2010'), +('M23.09', 'Cystic meniscus, unspecified ligament or unspecified meniscus', 'ICD10_2010'), +('M23.1', 'Discoid meniscus (congenital)', 'ICD10_2010'), +('M23.10', 'Discoid meniscus (congenital), multiple sites', 'ICD10_2010'), +('M23.11', 'Discoid meniscus (congenital), anterior cruciate ligament or anterior horn medial meniscus', 'ICD10_2010'), +('M23.12', 'Discoid meniscus (congenital), posterior cruciate ligament or anterior horn medial meniscus', 'ICD10_2010'), +('M23.13', 'Discoid meniscus (congenital), medial collateral ligament or other and unspecified medial meniscus', 'ICD10_2010'), +('M23.14', 'Discoid meniscus (congenital), lateral collateral ligament or anterior horn of lateral meniscus', 'ICD10_2010'), +('M23.15', 'Discoid meniscus (congenital), posterior horn of lateral meniscus', 'ICD10_2010'), +('M23.16', 'Discoid meniscus (congenital), other and unspecified lateral meniscus', 'ICD10_2010'), +('M23.17', 'Discoid meniscus (congenital),capsular ligament', 'ICD10_2010'), +('M23.19', 'Discoid meniscus (congenital), unspecified ligament or unspecified meniscus', 'ICD10_2010'), +('M23.2', 'Derangement of meniscus due to old tear or injury', 'ICD10_2010'), +('M23.20', 'Derangement of meniscus due to old tear or injury, multiple sites', 'ICD10_2010'), +('M23.21', 'Derangement of meniscus due to old tear or injury, anterior cruciate ligament or anterior horn medial meniscus', 'ICD10_2010'), +('M23.22', 'Derangement of meniscus due to old tear or injury, posterior cruciate ligament or anterior horn medial meniscus', 'ICD10_2010'), +('M23.23', 'Derangement of meniscus due to old tear or injury, medial collateral ligament or other and unspecified medial meniscus', 'ICD10_2010'), +('M23.24', 'Derangement of meniscus due to old tear or injury, lateral collateral ligament or anterior horn of lateral meniscus', 'ICD10_2010'), +('M23.25', 'Derangement of meniscus due to old tear or injury, posterior horn of lateral meniscus', 'ICD10_2010'), +('M23.26', 'Derangement of meniscus due to old tear or injury, other and unspecified lateral meniscus', 'ICD10_2010'), +('M23.27', 'Derangement of meniscus due to old tear or injury, capsular ligament', 'ICD10_2010'), +('M23.29', 'Derangement of meniscus due to old tear or injury, unspecified ligament or unspecified meniscus', 'ICD10_2010'), +('M23.3', 'Other meniscus derangements', 'ICD10_2010'), +('M23.30', 'Other meniscus derangements, multiple sites', 'ICD10_2010'), +('M23.31', 'Other meniscus derangements, anterior cruciate ligament or anterior horn medial meniscus', 'ICD10_2010'), +('M23.32', 'Other meniscus derangements, posterior cruciate ligament or anterior horn medial meniscus', 'ICD10_2010'), +('M23.33', 'Other meniscus derangements, medial collateral ligament or other and unspecified medial meniscus', 'ICD10_2010'), +('M23.34', 'Other meniscus derangements, lateral collateral ligament or anterior horn of lateral meniscus', 'ICD10_2010'), +('M23.35', 'Other meniscus derangements, posterior horn of lateral meniscus', 'ICD10_2010'), +('M23.36', 'Other meniscus derangements, other and unspecified lateral meniscus', 'ICD10_2010'), +('M23.37', 'Other meniscus derangements, capsular ligament', 'ICD10_2010'), +('M23.39', 'Other meniscus derangements, unspecified ligament or unspecified meniscus', 'ICD10_2010'), +('M23.4', 'Loose body in knee', 'ICD10_2010'), +('M23.40', 'Loose body in knee, multiple sites', 'ICD10_2010'), +('M23.41', 'Loose body in knee, anterior cruciate ligament or anterior horn medial meniscus', 'ICD10_2010'), +('M23.42', 'Loose body in knee, posterior cruciate ligament or anterior horn medial meniscus', 'ICD10_2010'), +('M23.43', 'Loose body in knee, medial collateral ligament or other and unspecified medial meniscus', 'ICD10_2010'), +('M23.44', 'Loose body in knee, lateral collateral ligament or anterior horn of lateral meniscus', 'ICD10_2010'), +('M23.45', 'Loose body in knee, posterior horn of lateral meniscus', 'ICD10_2010'), +('M23.46', 'Loose body in knee, other and unspecified lateral meniscus', 'ICD10_2010'), +('M23.47', 'Loose body in knee, capsular ligament', 'ICD10_2010'), +('M23.49', 'Loose body in knee, unspecified ligament or unspecified meniscus', 'ICD10_2010'), +('M23.5', 'Chronic instability of knee', 'ICD10_2010'), +('M23.50', 'Chronic instability of knee, multiple sites', 'ICD10_2010'), +('M23.51', 'Chronic instability of knee, anterior cruciate ligament or anterior horn medial meniscus', 'ICD10_2010'), +('M23.52', 'Chronic instability of knee, posterior cruciate ligament or anterior horn medial meniscus', 'ICD10_2010'), +('M23.53', 'Chronic instability of knee, medial collateral ligament or other and unspecified medial meniscus', 'ICD10_2010'), +('M23.54', 'Chronic instability of knee, lateral collateral ligament or anterior horn of lateral meniscus', 'ICD10_2010'), +('M23.55', 'Chronic instability of knee, posterior horn of lateral meniscus', 'ICD10_2010'), +('M23.56', 'Chronic instability of knee, other and unspecified lateral meniscus', 'ICD10_2010'), +('M23.57', 'Chronic instability of knee, capsular ligament', 'ICD10_2010'), +('M23.59', 'Chronic instability of knee, unspecified ligament or unspecified meniscus', 'ICD10_2010'), +('M23.6', 'Other spontaneous disruption of ligament(s) of knee', 'ICD10_2010'), +('M23.60', 'Other spontaneous disruption of ligament(s) of knee, multiple sites', 'ICD10_2010'), +('M23.61', 'Other spontaneous disruption of ligament(s) of knee, anterior cruciate ligament or anterior horn medial meniscus', 'ICD10_2010'), +('M23.62', 'Other spontaneous disruption of ligament(s) of knee, posterior cruciate ligament or anterior horn medial meniscus', 'ICD10_2010'), +('M23.63', 'Other spontaneous disruption of ligament(s) of knee, medial collateral ligament or other and unspecified medial meniscus', 'ICD10_2010'), +('M23.64', 'Other spontaneous disruption of ligament(s) of knee, lateral collateral ligament or anterior horn of lateral meniscus', 'ICD10_2010'), +('M23.65', 'Other spontaneous disruption of ligament(s) of knee, posterior horn of lateral meniscus', 'ICD10_2010'), +('M23.66', 'Other spontaneous disruption of ligament(s) of knee, other and unspecified lateral meniscus', 'ICD10_2010'), +('M23.67', 'Other spontaneous disruption of ligament(s) of knee, capsular ligament', 'ICD10_2010'), +('M23.69', 'Other spontaneous disruption of ligament(s) of knee, unspecified ligament or unspecified meniscus', 'ICD10_2010'), +('M23.8', 'Other internal derangements of knee', 'ICD10_2010'), +('M23.80', 'Other internal derangements of knee, multiple sites', 'ICD10_2010'), +('M23.81', 'Other internal derangements of knee, anterior cruciate ligament or anterior horn medial meniscus', 'ICD10_2010'), +('M23.82', 'Other internal derangements of knee, posterior cruciate ligament or anterior horn medial meniscus', 'ICD10_2010'), +('M23.83', 'Other internal derangements of knee, medial collateral ligament or other and unspecified medial meniscus', 'ICD10_2010'), +('M23.84', 'Other internal derangements of knee, lateral collateral ligament or anterior horn of lateral meniscus', 'ICD10_2010'), +('M23.85', 'Other internal derangements of knee, posterior horn of lateral meniscus', 'ICD10_2010'), +('M23.86', 'Other internal derangements of knee, other and unspecified lateral meniscus', 'ICD10_2010'), +('M23.87', 'Other internal derangements of knee, capsular ligament', 'ICD10_2010'), +('M23.89', 'Other internal derangements of knee, unspecified ligament or unspecified meniscus', 'ICD10_2010'), +('M23.9', 'Internal derangement of knee, unspecified', 'ICD10_2010'), +('M23.90', 'Internal derangement of knee, unspecified, multiple sites', 'ICD10_2010'), +('M23.91', 'Internal derangement of knee, unspecified,anterior cruciate ligament or anterior horn medial meniscus', 'ICD10_2010'), +('M23.92', 'Internal derangement of knee, unspecified, posterior cruciate ligament or anterior horn medial meniscus', 'ICD10_2010'), +('M23.93', 'Internal derangement of knee, unspecified, medial collateral ligament or other and unspecified medial meniscus', 'ICD10_2010'), +('M23.94', 'Internal derangement of knee, unspecified, lateral collateral ligament or anterior horn of lateral meniscus', 'ICD10_2010'), +('M23.95', 'Internal derangement of knee, unspecified, posterior horn of lateral meniscus', 'ICD10_2010'), +('M23.96', 'Internal derangement of knee, unspecified, other and unspecified lateral meniscus', 'ICD10_2010'), +('M23.97', 'Internal derangement of knee, unspecified, capsular ligament', 'ICD10_2010'), +('M23.99', 'Internal derangement of knee, unspecified, unspecified ligament or unspecified meniscus', 'ICD10_2010'), +('M24', 'Other specific joint derangements', 'ICD10_2010'), +('M24.0', 'Loose body in joint', 'ICD10_2010'), +('M24.00', 'Loose body in joint, multiple sites', 'ICD10_2010'), +('M24.01', 'Loose body in joint, shouder region', 'ICD10_2010'), +('M24.02', 'Loose body in joint, upper arm', 'ICD10_2010'), +('M24.03', 'Loose body in joint, forearm', 'ICD10_2010'), +('M24.04', 'Loose body in joint, hand', 'ICD10_2010'), +('M24.05', 'Loose body in joint, pelvic and thigh', 'ICD10_2010'), +('M24.06', 'Loose body in joint, lower leg', 'ICD10_2010'), +('M24.07', 'Loose body in joint, ankle and foot', 'ICD10_2010'), +('M24.08', 'Loose body in joint, other sites', 'ICD10_2010'), +('M24.09', 'Loose body in joint, unspecified site', 'ICD10_2010'), +('M24.1', 'Other articular cartilage disorders', 'ICD10_2010'), +('M24.10', 'Other articular cartilage disorders, multiple sites', 'ICD10_2010'), +('M24.11', 'Other articular cartilage disorders, shoulder region', 'ICD10_2010'), +('M24.12', 'Other articular cartilage disorders, upper arm', 'ICD10_2010'), +('M24.13', 'Other articular cartilage disorders, forearm', 'ICD10_2010'), +('M24.14', 'Other articular cartilage disorders, hand', 'ICD10_2010'), +('M24.15', 'Other articular cartilage disorders, pelvic and thigh', 'ICD10_2010'), +('M24.16', 'Other articular cartilage disorders, lower leg', 'ICD10_2010'), +('M24.17', 'Other articular cartilage disorders, ankle and foot', 'ICD10_2010'), +('M24.18', 'Other articular cartilage disorders, other sites', 'ICD10_2010'), +('M24.19', 'Other articular cartilage disorders, unspecified site', 'ICD10_2010'), +('M24.2', 'Disorder of ligament', 'ICD10_2010'), +('M24.20', 'Disorder of ligament, multiple sites', 'ICD10_2010'), +('M24.21', 'Disorder of ligament, shouder region', 'ICD10_2010'), +('M24.22', 'Disorder of ligament, upper arm', 'ICD10_2010'), +('M24.23', 'Disorder of ligament, forearm', 'ICD10_2010'), +('M24.24', 'Disorder of ligament, hand', 'ICD10_2010'), +('M24.25', 'Disorder of ligament, pelvic and thigh', 'ICD10_2010'), +('M24.26', 'Disorder of ligament, lower leg', 'ICD10_2010'), +('M24.27', 'Disorder of ligament, ankle and foot', 'ICD10_2010'), +('M24.28', 'Disorder of ligament, other sites', 'ICD10_2010'), +('M24.29', 'Disorder of ligament, unspecified site', 'ICD10_2010'), +('M24.3', 'Pathological dislocation and subluxation of joint, not elsewhere classified', 'ICD10_2010'), +('M24.30', 'Pathological dislocation and subluxation of joint not elsewhere classified, multiple sites', 'ICD10_2010'), +('M24.31', 'Pathological dislocation and subluxation of joint not elsewhere classified, shoulder region', 'ICD10_2010'), +('M24.32', 'Pathological dislocation and subluxation of joint not elsewhere classified, upper arm', 'ICD10_2010'), +('M24.33', 'Pathological dislocation and subluxation of joint not elsewhere classified, forearm', 'ICD10_2010'), +('M24.34', 'Pathological dislocation and subluxation of joint not elsewhere classified, hand', 'ICD10_2010'), +('M24.35', 'Pathological dislocation and subluxation of joint not elsewhere classified, pelvic and thigh', 'ICD10_2010'), +('M24.36', 'Pathological dislocation and subluxation of joint not elsewhere classified, lower leg', 'ICD10_2010'), +('M24.37', 'Pathological dislocation and subluxation of joint not elsewhere classified, ankle and foot', 'ICD10_2010'), +('M24.38', 'Pathological dislocation and subluxation of joint not elsewhere classified, other sites', 'ICD10_2010'), +('M24.39', 'Pathological dislocation and subluxation of joint not elsewhere classified, unspecified site', 'ICD10_2010'), +('M24.4', 'Recurrent dislocation and subluxation of joint', 'ICD10_2010'), +('M24.40', 'Recurrent dislocation and subluxation of joint, multiple sites', 'ICD10_2010'), +('M24.41', 'Recurrent dislocation and subluxation of joint, shoulder region', 'ICD10_2010'), +('M24.42', 'Recurrent dislocation and subluxation of joint, upper arm', 'ICD10_2010'), +('M24.43', 'Recurrent dislocation and subluxation of joint, forearm', 'ICD10_2010'), +('M24.44', 'Recurrent dislocation and subluxation of joint, hand', 'ICD10_2010'), +('M24.45', 'Recurrent dislocation and subluxation of joint, pelvic and thigh', 'ICD10_2010'), +('M24.46', 'Recurrent dislocation and subluxation of joint, lower leg', 'ICD10_2010'), +('M24.47', 'Recurrent dislocation and subluxation of joint, ankle and foot', 'ICD10_2010'), +('M24.48', 'Recurrent dislocation and subluxation of joint, other sites', 'ICD10_2010'), +('M24.49', 'Recurrent dislocation and subluxation of joint, unspecified site', 'ICD10_2010'), +('M24.5', 'Contracture of joint', 'ICD10_2010'), +('M24.50', 'Contracture of joint, multiple sites', 'ICD10_2010'), +('M24.51', 'Contracture of joint, shouder region', 'ICD10_2010'), +('M24.52', 'Contracture of joint, upper arm', 'ICD10_2010'), +('M24.53', 'Contracture of joint, forearm', 'ICD10_2010'), +('M24.54', 'Contracture of joint, hand', 'ICD10_2010'), +('M24.55', 'Contracture of joint, pelvic and thigh', 'ICD10_2010'), +('M24.56', 'Contracture of joint, lower leg', 'ICD10_2010'), +('M24.57', 'Contracture of joint, ankle and foot', 'ICD10_2010'), +('M24.58', 'Contracture of joint, other sites', 'ICD10_2010'), +('M24.59', 'Contracture of joint, unspecified site', 'ICD10_2010'), +('M24.6', 'Ankylosis of joint', 'ICD10_2010'), +('M24.60', 'Ankylosis of joint, multiple sites', 'ICD10_2010'), +('M24.61', 'Ankylosis of joint, shoulder region', 'ICD10_2010'), +('M24.62', 'Ankylosis of joint, upper arm', 'ICD10_2010'), +('M24.63', 'Ankylosis of joint, forearm', 'ICD10_2010'), +('M24.64', 'Ankylosis of joint, hand', 'ICD10_2010'), +('M24.65', 'Ankylosis of joint, pelvic and thigh', 'ICD10_2010'), +('M24.66', 'Ankylosis of joint, lower leg', 'ICD10_2010'), +('M24.67', 'Ankylosis of joint, ankle and foot', 'ICD10_2010'), +('M24.68', 'Ankylosis of joint, other sites', 'ICD10_2010'), +('M24.69', 'Ankylosis of joint, unspecified site', 'ICD10_2010'), +('M24.7', 'Protrusio acetabuli', 'ICD10_2010'), +('M24.75', 'Protrusio acetabuli, pelvic andthigh', 'ICD10_2010'), +('M24.8', 'Other specific joint derangements, not elsewhere classified', 'ICD10_2010'), +('M24.80', 'Other specific joint derangements, not elsewhere classified, multiple sites', 'ICD10_2010'), +('M24.81', 'Other specific joint derangements, not elsewhere classified, shoulder region', 'ICD10_2010'), +('M24.82', 'Other specific joint derangements, not elsewhere classified, upper arm', 'ICD10_2010'), +('M24.83', 'Other specific joint derangements, not elsewhere classified, forearm', 'ICD10_2010'), +('M24.84', 'Other specific joint derangements, not elsewhere classified, hand', 'ICD10_2010'), +('M24.85', 'Other specific joint derangements, not elsewhere classified, pelvic and thigh', 'ICD10_2010'), +('M24.86', 'Other specific joint derangements, not elsewhere classified, lower leg', 'ICD10_2010'), +('M24.87', 'Other specific joint derangements, not elsewhere classified, ankle and foot', 'ICD10_2010'), +('M24.88', 'Other specific joint derangements, not elsewhere classified, other sites', 'ICD10_2010'), +('M24.89', 'Other specific joint derangements, not elsewhere classified, unspecified site', 'ICD10_2010'), +('M24.9', 'Joint derangement, unspecified', 'ICD10_2010'), +('M24.90', 'Joint derangement, unspecified, multiple sites', 'ICD10_2010'), +('M24.91', 'Joint derangement, unspecified, shoulder region', 'ICD10_2010'), +('M24.92', 'Joint derangement, unspecified, upper arm', 'ICD10_2010'), +('M24.93', 'Joint derangement, unspecified, forearm', 'ICD10_2010'), +('M24.94', 'Joint derangement, unspecified, hand', 'ICD10_2010'), +('M24.95', 'Joint derangement, unspecified, pelvic and thigh', 'ICD10_2010'), +('M24.96', 'Joint derangement, unspecified, lower leg', 'ICD10_2010'), +('M24.97', 'Joint derangement, unspecified, ankle and foot', 'ICD10_2010'), +('M24.98', 'Joint derangement, unspecified, other sites', 'ICD10_2010'), +('M24.99', 'Joint derangement, unspecified, unspecified site', 'ICD10_2010'), +('M25', 'Other joint disorders, not elsewhere classified', 'ICD10_2010'), +('M25.0', 'Haemarthrosis', 'ICD10_2010'), +('M25.00', 'Haemarthrosis, multiple sites', 'ICD10_2010'), +('M25.01', 'Haemarthrosis, shoulder region', 'ICD10_2010'), +('M25.02', 'Haemarthrosis, upper arm', 'ICD10_2010'), +('M25.03', 'Haemarthrosis, forearm', 'ICD10_2010'), +('M25.04', 'Haemarthrosis, hand', 'ICD10_2010'), +('M25.05', 'Haemarthrosis, pelvic and thigh', 'ICD10_2010'), +('M25.06', 'Haemarthrosis, lower leg', 'ICD10_2010'), +('M25.07', 'Haemarthrosis, ankle and foot', 'ICD10_2010'), +('M25.08', 'Haemarthrosis, other sites', 'ICD10_2010'), +('M25.09', 'Haemarthrosis, unspecified site', 'ICD10_2010'), +('M25.1', 'Fistula of joint', 'ICD10_2010'), +('M25.10', 'Fistula of joint, multiple sites', 'ICD10_2010'), +('M25.11', 'Fistula of joint, shoulder region', 'ICD10_2010'), +('M25.12', 'Fistula of joint, upper arm', 'ICD10_2010'), +('M25.13', 'Fistula of joint, forearm', 'ICD10_2010'), +('M25.14', 'Fistula of joint, hand', 'ICD10_2010'), +('M25.15', 'Fistula of joint, pelvic and thigh', 'ICD10_2010'), +('M25.16', 'Fistula of joint, lower leg', 'ICD10_2010'), +('M25.17', 'Fistula of joint, ankle and foot', 'ICD10_2010'), +('M25.18', 'Fistula of joint, other sites', 'ICD10_2010'), +('M25.19', 'Fistula of joint, unspecified site', 'ICD10_2010'), +('M25.2', 'Flail joint', 'ICD10_2010'), +('M25.20', 'Flail joint, multiple sites', 'ICD10_2010'), +('M25.21', 'Flail joint, shoulder region', 'ICD10_2010'), +('M25.22', 'Flail joint, upper arm', 'ICD10_2010'), +('M25.23', 'Flail joint, forearm', 'ICD10_2010'), +('M25.24', 'Flail joint, hand', 'ICD10_2010'), +('M25.25', 'Flail joint, pelvic and thigh', 'ICD10_2010'), +('M25.26', 'Flail joint, lower leg', 'ICD10_2010'), +('M25.27', 'Flail joint, ankle and foot', 'ICD10_2010'), +('M25.28', 'Flail joint, other sites', 'ICD10_2010'), +('M25.29', 'Flail joint, unspecified site', 'ICD10_2010'), +('M25.3', 'Other instability of joint', 'ICD10_2010'), +('M25.30', 'Other instability of joint, multiple sites', 'ICD10_2010'), +('M25.31', 'Other instability of joint, shoulder region', 'ICD10_2010'), +('M25.32', 'Other instability of joint, upper arm', 'ICD10_2010'), +('M25.33', 'Other instability of joint, forearm', 'ICD10_2010'), +('M25.34', 'Other instability of joint, hand', 'ICD10_2010'), +('M25.35', 'Other instability of joint, pelvic and thigh', 'ICD10_2010'), +('M25.36', 'Other instability of joint, lower leg', 'ICD10_2010'), +('M25.37', 'Other instability of joint, ankle and foot', 'ICD10_2010'), +('M25.38', 'Other instability of joint, other sites', 'ICD10_2010'), +('M25.39', 'Other instability of joint, unspecified site', 'ICD10_2010'), +('M25.4', 'Effusion of joint', 'ICD10_2010'), +('M25.40', 'Effusion of joint, multiple sites', 'ICD10_2010'), +('M25.41', 'Effusion of joint, shoulder region', 'ICD10_2010'), +('M25.42', 'Effusion of joint, upper arm', 'ICD10_2010'), +('M25.43', 'Effusion of joint, forearm', 'ICD10_2010'), +('M25.44', 'Effusion of joint, hand', 'ICD10_2010'), +('M25.45', 'Effusion of joint, pelvic and thigh', 'ICD10_2010'), +('M25.46', 'Effusion of joint, lower leg', 'ICD10_2010'), +('M25.47', 'Effusion of joint, ankle and foot', 'ICD10_2010'), +('M25.48', 'Effusion of joint, other sites', 'ICD10_2010'), +('M25.49', 'Effusion of joint, unspecified site', 'ICD10_2010'), +('M25.5', 'Pain in joint', 'ICD10_2010'), +('M25.50', 'Pain in joint, multiple sites', 'ICD10_2010'), +('M25.51', 'Pain in joint, shouder region', 'ICD10_2010'), +('M25.52', 'Pain in joint, upper arm', 'ICD10_2010'), +('M25.53', 'Pain in joint, forearm', 'ICD10_2010'), +('M25.54', 'Pain in joint, hand', 'ICD10_2010'), +('M25.55', 'Pain in joint, pelvic and thigh', 'ICD10_2010'), +('M25.56', 'Pain in joint, lower leg', 'ICD10_2010'), +('M25.57', 'Pain in joint, ankle and foot', 'ICD10_2010'), +('M25.58', 'Pain in joint, other sites', 'ICD10_2010'), +('M25.59', 'Pain in joint, unspecified site', 'ICD10_2010'), +('M25.6', 'Stiffness of joint, not elsewhere classified', 'ICD10_2010'), +('M25.60', 'Stiffness of joint, not elsewhere classified, multiple sites', 'ICD10_2010'), +('M25.61', 'Stiffness of joint, not elsewhere classified, shoulder region', 'ICD10_2010'), +('M25.62', 'Stiffness of joint, not elsewhere classified, upper arm', 'ICD10_2010'), +('M25.63', 'Stiffness of joint, not elsewhere classified, forearm', 'ICD10_2010'), +('M25.64', 'Stiffness of joint, not elsewhere classified, hand', 'ICD10_2010'), +('M25.65', 'Stiffness of joint, not elsewhere classified, pelvic and thigh', 'ICD10_2010'), +('M25.66', 'Stiffness of joint, not elsewhere classified, lower leg', 'ICD10_2010'), +('M25.67', 'Stiffness of joint, not elsewhere classified, ankle and foot', 'ICD10_2010'), +('M25.68', 'Stiffness of joint, not elsewhere classified, other sites', 'ICD10_2010'), +('M25.69', 'Stiffness of joint, not elsewhere classified, unspecified site', 'ICD10_2010'), +('M25.7', 'Osteophyte', 'ICD10_2010'), +('M25.70', 'Osteophyte, multiple sites', 'ICD10_2010'), +('M25.71', 'Osteophyte, shoulder region', 'ICD10_2010'), +('M25.72', 'Osteophyte, upper arm', 'ICD10_2010'), +('M25.73', 'Osteophyte, forearm', 'ICD10_2010'), +('M25.74', 'Osteophyte, hand', 'ICD10_2010'), +('M25.75', 'Osteophyte, pelvic and thigh', 'ICD10_2010'), +('M25.76', 'Osteophyte, lower leg', 'ICD10_2010'), +('M25.77', 'Osteophyte, ankle and foot', 'ICD10_2010'), +('M25.78', 'Osteophyte, other sites', 'ICD10_2010'), +('M25.79', 'Osteophyte, unspecified site', 'ICD10_2010'), +('M25.8', 'Other specified joint disorders', 'ICD10_2010'), +('M25.80', 'Other specified joint disorders, multiple sites', 'ICD10_2010'), +('M25.81', 'Other specified joint disorders, sholder region', 'ICD10_2010'), +('M25.82', 'Other specified joint disorders, upper arm', 'ICD10_2010'), +('M25.83', 'Other specified joint disorders, forearm', 'ICD10_2010'), +('M25.84', 'Other specified joint disorders, hand', 'ICD10_2010'), +('M25.85', 'Other specified joint disorders, pelvic and thigh', 'ICD10_2010'), +('M25.86', 'Other specified joint disorders, lower leg', 'ICD10_2010'), +('M25.87', 'Other specified joint disorders, ankle and foot', 'ICD10_2010'), +('M25.88', 'Other specified joint disorders, other sites', 'ICD10_2010'), +('M25.89', 'Other specified joint disorders, unspecified site', 'ICD10_2010'), +('M25.9', 'Joint disorder, unspecified', 'ICD10_2010'), +('M25.90', 'Joint disorder, unspecified, multiple sites', 'ICD10_2010'), +('M25.91', 'Joint disorder, unspecified, shoulder region', 'ICD10_2010'), +('M25.92', 'Joint disorder, unspecified, upper arm', 'ICD10_2010'), +('M25.93', 'Joint disorder, unspecified, forearm', 'ICD10_2010'), +('M25.94', 'Joint disorder, unspecified, hand', 'ICD10_2010'), +('M25.95', 'Joint disorder, unspecified, pelvic and thigh', 'ICD10_2010'), +('M25.96', 'Joint disorder, unspecified, lower leg', 'ICD10_2010'), +('M25.97', 'Joint disorder, unspecified, ankle and foot', 'ICD10_2010'), +('M25.98', 'Joint disorder, unspecified, other sites', 'ICD10_2010'), +('M25.99', 'Joint disorder, unspecified, unspecified site', 'ICD10_2010'), +('M30', 'Polyarteritis nodosa and related conditions', 'ICD10_2010'), +('M30.0', 'Polyarteritis nodosa', 'ICD10_2010'), +('M30.1', 'Polyarteritis with lung involvement [churg-strauss]', 'ICD10_2010'), +('M30.2', 'Juvenile polyarteritis', 'ICD10_2010'), +('M30.3', 'Mucocutaneous lymph node syndrome [kawasaki]', 'ICD10_2010'), +('M30.8', 'Other conditions related to polyarteritis nodosa', 'ICD10_2010'), +('M31', 'Other necrotizing vasculopathies', 'ICD10_2010'), +('M31.0', 'Hypersensitivity angiitis', 'ICD10_2010'), +('M31.1', 'Thrombotic microangiopathy', 'ICD10_2010'), +('M31.2', 'Lethal midline granuloma', 'ICD10_2010'), +('M31.3', 'Wegener\'s granulomatosis', 'ICD10_2010'), +('M31.4', 'Aortic arch syndrome [takayasu]', 'ICD10_2010'), +('M31.5', 'Giant cell arteritis with polymyalgia rheumatica', 'ICD10_2010'), +('M31.6', 'Other giant cell arteritis', 'ICD10_2010'), +('M31.7', 'Microscopic polyangiitis', 'ICD10_2010'), +('M31.8', 'Other specified necrotizing vasculopathies', 'ICD10_2010'), +('M31.9', 'Necrotizing vasculopathy, unspecified', 'ICD10_2010'), +('M32', 'Systemic lupus erythematosus', 'ICD10_2010'), +('M32.0', 'Drug-induced systemic lupus erythematosus', 'ICD10_2010'), +('M32.1', 'Systemic lupus erythematosus with organ or system involvement', 'ICD10_2010'), +('M32.8', 'Other forms of systemic lupus erythematosus', 'ICD10_2010'), +('M32.9', 'Systemic lupus erythematosus, unspecified', 'ICD10_2010'), +('M33', 'Dermatopolymyositis', 'ICD10_2010'), +('M33.0', 'Juvenile dermatomyositis', 'ICD10_2010'), +('M33.1', 'Other dermatomyositis', 'ICD10_2010'), +('M33.2', 'Polymyositis', 'ICD10_2010'), +('M33.9', 'Dermatopolymyositis, unspecified', 'ICD10_2010'), +('M34', 'Systemic sclerosis', 'ICD10_2010'), +('M34.0', 'Progressive systemic sclerosis', 'ICD10_2010'), +('M34.1', 'CR(E)ST syndrome', 'ICD10_2010'), +('M34.2', 'Systemic sclerosis induced by drugs and chemicals', 'ICD10_2010'), +('M34.8', 'Other forms of systemic sclerosis', 'ICD10_2010'), +('M34.9', 'Systemic sclerosis, unspecified', 'ICD10_2010'), +('M35', 'Other systemic involvement of connective tissue', 'ICD10_2010'), +('M35.0', 'Sicca syndrome [sjogren]', 'ICD10_2010'), +('M35.1', 'Other overlap syndromes', 'ICD10_2010'), +('M35.2', 'Behcet\'s disease', 'ICD10_2010'), +('M35.3', 'Polymyalgia rheumatica', 'ICD10_2010'), +('M35.4', 'Diffuse (eosinophilic) fasciitis', 'ICD10_2010'), +('M35.5', 'Multifocal fibrosclerosis', 'ICD10_2010'), +('M35.6', 'Relapsing panniculitis [Weber-Christian]', 'ICD10_2010'), +('M35.7', 'Hypermobility syndrome', 'ICD10_2010'), +('M35.8', 'Other specified systemic involvement of connective tissue', 'ICD10_2010'), +('M35.9', 'Systemic involvement of connective tissue, unspecified', 'ICD10_2010'), +('M36', 'Systemic disorders of connective tissue in diseases classified elsewhere', 'ICD10_2010'), +('M36.0', 'Dermato(poly)myositis in neoplastic disease', 'ICD10_2010'), +('M36.1', 'Arthropathy in neoplastic disease', 'ICD10_2010'), +('M36.2', 'Haemophilic arthropathy', 'ICD10_2010'), +('M36.3', 'Arthropathy in other blood disorders', 'ICD10_2010'), +('M36.4', 'Arthropathy in hypersensitivity reactions classified elsewhere', 'ICD10_2010'), +('M36.8', 'Systemic disorder of connective tissue in other diseases classified elsewhere', 'ICD10_2010'), +('M40', 'Kyphosis and lordosis', 'ICD10_2010'), +('M40.0', 'Postural kyphosis', 'ICD10_2010'), +('M40.00', 'Postural kyphosis, multiple sites in spine', 'ICD10_2010'), +('M40.01', 'Postural kyphosis, occipito-atlanto-axial region', 'ICD10_2010'), +('M40.02', 'Postural kyphosis, cervical region', 'ICD10_2010'), +('M40.03', 'Postural kyphosis, cervicothoracic region', 'ICD10_2010'), +('M40.04', 'Postural kyphosis, thoracic region', 'ICD10_2010'), +('M40.05', 'Postural kyphosis, thoracolumbar region', 'ICD10_2010'), +('M40.06', 'Postural kyphosis, lumbar region', 'ICD10_2010'), +('M40.07', 'Postural kyphosis, lumbosacral region', 'ICD10_2010'), +('M40.08', 'Postural kyphosis, sacral and sacrococcygeal region', 'ICD10_2010'), +('M40.09', 'Postural kyphosis, site unspecified', 'ICD10_2010'), +('M40.1', 'Other secondary kyphosis', 'ICD10_2010'), +('M40.10', 'Other secondary kyphosis, multiple sites in spine', 'ICD10_2010'), +('M40.11', 'Other secondary kyphosis, occipito-atlanto-axial region', 'ICD10_2010'), +('M40.12', 'Other secondary kyphosis, cervical region', 'ICD10_2010'), +('M40.13', 'Other secondary kyphosis, cervicothoracic region', 'ICD10_2010'), +('M40.14', 'Other secondary kyphosis, thoracic region', 'ICD10_2010'), +('M40.15', 'Other secondary kyphosis, thoracolumbar region', 'ICD10_2010'), +('M40.16', 'Other secondary kyphosis, lumbar region', 'ICD10_2010'), +('M40.17', 'Other secondary kyphosis, lumbosacral region', 'ICD10_2010'), +('M40.18', 'Other secondary kyphosis, sacral and sacrococcygeal region', 'ICD10_2010'), +('M40.19', 'Other secondary kyphosis, site unspecified', 'ICD10_2010'), +('M40.2', 'Other and unspecified kyphosis', 'ICD10_2010'), +('M40.20', 'Other and unspecified kyphosis, multiple sites in spine', 'ICD10_2010'), +('M40.21', 'Other and unspecified kyphosis, occipito-atlanto-axial region', 'ICD10_2010'), +('M40.22', 'Other and unspecified kyphosis, cervical region', 'ICD10_2010'), +('M40.23', 'Other and unspecified kyphosis, cervicothoracic region', 'ICD10_2010'), +('M40.24', 'Other and unspecified kyphosis, thoracic region', 'ICD10_2010'), +('M40.25', 'Other and unspecified kyphosis, thoracolumbar region', 'ICD10_2010'), +('M40.26', 'Other and unspecified kyphosis, lumbar region', 'ICD10_2010'), +('M40.27', 'Other and unspecified kyphosis, lumbosacral region', 'ICD10_2010'), +('M40.28', 'Other and unspecified kyphosis, sacral and sacrococcygeal region', 'ICD10_2010'), +('M40.29', 'Other and unspecified kyphosis, site unspecified', 'ICD10_2010'), +('M40.3', 'Flatback syndrome', 'ICD10_2010'), +('M40.30', 'Flatback syndrome, multiple sites in spine', 'ICD10_2010'), +('M40.31', 'Flatback syndrome, occipito-atlanto-axial region', 'ICD10_2010'), +('M40.32', 'Flatback syndrome, cervical region', 'ICD10_2010'), +('M40.33', 'Flatback syndrome, cervicothoracic region', 'ICD10_2010'), +('M40.34', 'Flatback syndrome, thoracic region', 'ICD10_2010'), +('M40.35', 'Flatback syndrome, thoracolumbar region', 'ICD10_2010'), +('M40.36', 'Flatback syndrome, lumbar region', 'ICD10_2010'), +('M40.37', 'Flatback syndrome, lumbosacral region', 'ICD10_2010'), +('M40.38', 'Flatback syndrome, sacral and sacrococcygeal region', 'ICD10_2010'), +('M40.39', 'Flatback syndrome, site unspecified', 'ICD10_2010'), +('M40.4', 'Other lordosis', 'ICD10_2010'), +('M40.40', 'Other lordosis, multiple sites in spine', 'ICD10_2010'), +('M40.41', 'Other lordosis, occipito-atlanto-axial region', 'ICD10_2010'), +('M40.42', 'Other lordosis, cervical region', 'ICD10_2010'), +('M40.43', 'Other lordosis, cervicothoracic region', 'ICD10_2010'), +('M40.44', 'Other lordosis, thoracic region', 'ICD10_2010'), +('M40.45', 'Other lordosis, thoracolumbar region', 'ICD10_2010'), +('M40.46', 'Other lordosis, lumbar region', 'ICD10_2010'), +('M40.47', 'Other lordosis, lumbosacral region', 'ICD10_2010'), +('M40.48', 'Other lordosis, sacral and sacrococcygeal region', 'ICD10_2010'), +('M40.49', 'Other lordosis, site unspecified', 'ICD10_2010'), +('M40.5', 'Lordosis, unspecified', 'ICD10_2010'), +('M40.50', 'Lordosis unspecified, multiple sites in spine', 'ICD10_2010'), +('M40.51', 'Lordosis, unspecified, occipito-atlanto-axial region', 'ICD10_2010'), +('M40.52', 'Lordosis, unspecified, cervical region', 'ICD10_2010'), +('M40.53', 'Lordosis, unspecified, cervicothoracic region', 'ICD10_2010'), +('M40.54', 'Lordosis, unspecified, thoracic region', 'ICD10_2010'), +('M40.55', 'Lordosis, unspecified, thoracolumbar region', 'ICD10_2010'), +('M40.56', 'Lordosis, unspecified, lumbar region', 'ICD10_2010'); +INSERT INTO `icd10` (`ID_ICD10`, `Diagnosa`, `Versi_ICD10`) VALUES +('M40.57', 'Lordosis, unspecified, lumbosacral region', 'ICD10_2010'), +('M40.58', 'Lordosis, unspecified, sacral and sacrococcygeal region', 'ICD10_2010'), +('M40.59', 'Lordosis, unspecified, site unspecified', 'ICD10_2010'), +('M41', 'Scoliosis', 'ICD10_2010'), +('M41.0', 'Infantile idiopathic scoliosis', 'ICD10_2010'), +('M41.00', 'Infantile idiopathic scoliosis, multiple sites in spine', 'ICD10_2010'), +('M41.01', 'Infantile idiopathic scoliosis, occipito-atlanto-axial region', 'ICD10_2010'), +('M41.02', 'Infantile idiopathic scoliosis , cervical region', 'ICD10_2010'), +('M41.03', 'Infantile idiopathic scoliosis, cervicothoracic region', 'ICD10_2010'), +('M41.04', 'Infantile idiopathic scoliosis, thoracic region', 'ICD10_2010'), +('M41.05', 'Infantile idiopathic scoliosis, thoracolumbar region', 'ICD10_2010'), +('M41.06', 'Infantile idiopathic scoliosis, lumbar region', 'ICD10_2010'), +('M41.07', 'Infantile idiopathic scoliosis, lumbosacral region', 'ICD10_2010'), +('M41.08', 'Infantile idiopathic scoliosis, sacral and sacrococcygeal region', 'ICD10_2010'), +('M41.09', 'Infantile idiopathic scoliosis, site unspecified', 'ICD10_2010'), +('M41.1', 'Juvenile idiopathic scoliosis', 'ICD10_2010'), +('M41.10', 'Juvenile idiopathic scoliosis, multiple sites in spine', 'ICD10_2010'), +('M41.11', 'Juvenile idiopathic scoliosis, occipito-atlanto-axial region', 'ICD10_2010'), +('M41.12', 'Juvenile idiopathic scoliosis, cervical region', 'ICD10_2010'), +('M41.13', 'Juvenile idiopathic scoliosis, cervicothoracic region', 'ICD10_2010'), +('M41.14', 'Juvenile idiopathic scoliosis, thoracic region', 'ICD10_2010'), +('M41.15', 'Juvenile idiopathic scoliosis, thoracolumbar region', 'ICD10_2010'), +('M41.16', 'Juvenile idiopathic scoliosis, lumbar region', 'ICD10_2010'), +('M41.17', 'Juvenile idiopathic scoliosis, lumbosacral region', 'ICD10_2010'), +('M41.18', 'Juvenile idiopathic scoliosis, sacral and sacrococcygeal region', 'ICD10_2010'), +('M41.19', 'Juvenile idiopathic scoliosis, site unspecified', 'ICD10_2010'), +('M41.2', 'Other idiopathic scoliosis', 'ICD10_2010'), +('M41.20', 'Other idiopathic scoliosis, multiple sites in spine', 'ICD10_2010'), +('M41.21', 'Other idiopathic scoliosis, occipito-atlanto-axial region', 'ICD10_2010'), +('M41.22', 'Other idiopathic scoliosis, cervical region', 'ICD10_2010'), +('M41.23', 'Other idiopathic scoliosis, cervicothoracic region', 'ICD10_2010'), +('M41.24', 'Other idiopathic scoliosis, thoracic region', 'ICD10_2010'), +('M41.25', 'Other idiopathic scoliosis, thoracolumbar region', 'ICD10_2010'), +('M41.26', 'Other idiopathic scoliosis, lumbar region', 'ICD10_2010'), +('M41.27', 'Other idiopathic scoliosis, lumbosacral region', 'ICD10_2010'), +('M41.28', 'Other idiopathic scoliosis, sacral and sacrococcygeal region', 'ICD10_2010'), +('M41.29', 'Other idiopathic scoliosis, site unspecified', 'ICD10_2010'), +('M41.3', 'Thoracogenic scoliosis', 'ICD10_2010'), +('M41.30', 'Thoracogenic scoliosis, multiple sites in spine', 'ICD10_2010'), +('M41.31', 'Thoracogenic scoliosis, occipito-atlanto-axial region', 'ICD10_2010'), +('M41.32', 'Thoracogenic scoliosis, cervical region', 'ICD10_2010'), +('M41.33', 'Thoracogenic scoliosis, cervicothoracic region', 'ICD10_2010'), +('M41.34', 'Thoracogenic scoliosis, thoracic region', 'ICD10_2010'), +('M41.35', 'Thoracogenic scoliosis, thoracolumbar region', 'ICD10_2010'), +('M41.36', 'Thoracogenic scoliosis, lumbar region', 'ICD10_2010'), +('M41.37', 'Thoracogenic scoliosis, lumbosacral region', 'ICD10_2010'), +('M41.38', 'Thoracogenic scoliosis, sacral and sacrococcygeal region', 'ICD10_2010'), +('M41.39', 'Thoracogenic scoliosis, site unspecified', 'ICD10_2010'), +('M41.4', 'Neuromuscular scoliosis', 'ICD10_2010'), +('M41.40', 'Neuromuscular scoliosis, multiple sites in spine', 'ICD10_2010'), +('M41.41', 'Neuromuscular scoliosis, occipito-atlanto-axial region', 'ICD10_2010'), +('M41.42', 'Neuromuscular scoliosis, cervical region', 'ICD10_2010'), +('M41.43', 'Neuromuscular scoliosis, cervicothoracic region', 'ICD10_2010'), +('M41.44', 'Neuromuscular scoliosis, thoracic region', 'ICD10_2010'), +('M41.45', 'Neuromuscular scoliosis, thoracolumbar region', 'ICD10_2010'), +('M41.46', 'Neuromuscular scoliosis, lumbar region', 'ICD10_2010'), +('M41.47', 'Neuromuscular scoliosis, lumbosacral region', 'ICD10_2010'), +('M41.48', 'Neuromuscular scoliosis, sacral and sacrococcygeal region', 'ICD10_2010'), +('M41.49', 'Neuromuscular scoliosis, site unspecified', 'ICD10_2010'), +('M41.5', 'Other secondary scoliosis', 'ICD10_2010'), +('M41.50', 'Other secondary scoliosis, multiple sites in spine', 'ICD10_2010'), +('M41.51', 'Other secondary scoliosis, occipito-atlanto-axial region', 'ICD10_2010'), +('M41.52', 'Other secondary scoliosis, cervical region', 'ICD10_2010'), +('M41.53', 'Other secondary scoliosis, cervicothoracic region', 'ICD10_2010'), +('M41.54', 'Other secondary scoliosis, thoracic region', 'ICD10_2010'), +('M41.55', 'Other secondary scoliosis, thoracolumbar region', 'ICD10_2010'), +('M41.56', 'Other secondary scoliosis, lumbar region', 'ICD10_2010'), +('M41.57', 'Other secondary scoliosis, lumbosacral region', 'ICD10_2010'), +('M41.58', 'Other secondary scoliosis, sacral and sacrococcygeal region', 'ICD10_2010'), +('M41.59', 'Other secondary scoliosis, site unspecified', 'ICD10_2010'), +('M41.8', 'Other forms of scoliosis', 'ICD10_2010'), +('M41.80', 'Other forms of scoliosis, multiple sites in spine', 'ICD10_2010'), +('M41.81', 'Other forms of scoliosis, occipito-atlanto-axial region', 'ICD10_2010'), +('M41.82', 'Other forms of scoliosis, cervical region', 'ICD10_2010'), +('M41.83', 'Other forms of scoliosis, cervicothoracic region', 'ICD10_2010'), +('M41.84', 'Other forms of scoliosis, thoracic region', 'ICD10_2010'), +('M41.85', 'Other forms of scoliosis, thoracolumbar region', 'ICD10_2010'), +('M41.86', 'Other forms of scoliosis, lumbar region', 'ICD10_2010'), +('M41.87', 'Other forms of scoliosis, lumbosacral region', 'ICD10_2010'), +('M41.88', 'Other forms of scoliosis, sacral and sacrococcygeal region', 'ICD10_2010'), +('M41.89', 'Other forms of scoliosis, site unspecified', 'ICD10_2010'), +('M41.9', 'Scoliosis, unspecified', 'ICD10_2010'), +('M41.90', 'Scoliosis, multiple sites in spine', 'ICD10_2010'), +('M41.91', 'Scoliosis, unspecified, occipito-atlanto-axial region', 'ICD10_2010'), +('M41.92', 'Scoliosis, unspecified, cervical region', 'ICD10_2010'), +('M41.93', 'Scoliosis, unspecified, cervicothoracic region', 'ICD10_2010'), +('M41.94', 'Scoliosis, unspecified, thoracic region', 'ICD10_2010'), +('M41.95', 'Scoliosis, unspecified, thoracolumbar region', 'ICD10_2010'), +('M41.96', 'Scoliosis, unspecified, lumbar region', 'ICD10_2010'), +('M41.97', 'Scoliosis, unspecified, lumbosacral region', 'ICD10_2010'), +('M41.98', 'Scoliosis, unspecified, sacral and sacrococcygeal region', 'ICD10_2010'), +('M41.99', 'Scoliosis, unspecified, site unspecified', 'ICD10_2010'), +('M42', 'Spinal osteochondrosis', 'ICD10_2010'), +('M42.0', 'Juvenile osteochondrosis of spine', 'ICD10_2010'), +('M42.00', 'Juvenile osteochondrosis of spine, multiple sites in spine', 'ICD10_2010'), +('M42.01', 'Juvenile osteochondrosis of spine, occipito-atlanto-axial region', 'ICD10_2010'), +('M42.02', 'Juvenile osteochondrosis of spine, cervical region', 'ICD10_2010'), +('M42.03', 'Juvenile osteochondrosis of spine, cervicothoracic region', 'ICD10_2010'), +('M42.04', 'Juvenile osteochondrosis of spine, thoracic region', 'ICD10_2010'), +('M42.05', 'Juvenile osteochondrosis of spine, thoracolumbar region', 'ICD10_2010'), +('M42.06', 'Juvenile osteochondrosis of spine, lumbar region', 'ICD10_2010'), +('M42.07', 'Juvenile osteochondrosis of spine, lumbosacral region', 'ICD10_2010'), +('M42.08', 'Juvenile osteochondrosis of spine, sacral and sacrococcygeal region', 'ICD10_2010'), +('M42.09', 'Juvenile osteochondrosis of spine, site unspecified', 'ICD10_2010'), +('M42.1', 'Adult osteochondrosis of spine', 'ICD10_2010'), +('M42.10', 'Adult osteochondrosis of spine, multiple sites in spine', 'ICD10_2010'), +('M42.11', 'Adult osteochondrosis of spine, occipito-atlanto-axial region', 'ICD10_2010'), +('M42.12', 'Adult osteochondrosis of spine, cervical region', 'ICD10_2010'), +('M42.13', 'Adult osteochondrosis of spine, cervicothoracic region', 'ICD10_2010'), +('M42.14', 'Adult osteochondrosis of spine, thoracic region', 'ICD10_2010'), +('M42.15', 'Adult osteochondrosis of spine, thoracolumbar region', 'ICD10_2010'), +('M42.16', 'Adult osteochondrosis of spine, lumbar region', 'ICD10_2010'), +('M42.17', 'Adult osteochondrosis of spine, lumbosacral region', 'ICD10_2010'), +('M42.18', 'Adult osteochondrosis of spine, sacral and sacrococcygeal region', 'ICD10_2010'), +('M42.19', 'Adult osteochondrosis of spine, site unspecified', 'ICD10_2010'), +('M42.9', 'Spinal osteochondrosis, unspecified', 'ICD10_2010'), +('M42.90', 'Spinal osteochondrosis, unspecified, multiple sites in spine', 'ICD10_2010'), +('M42.91', 'Spinal osteochondrosis, unspecified, occipito-atlanto-axial region', 'ICD10_2010'), +('M42.92', 'Spinal osteochondrosis, unspecified, cervical region', 'ICD10_2010'), +('M42.93', 'Spinal osteochondrosis, unspecified, cervicothoracic region', 'ICD10_2010'), +('M42.94', 'Spinal osteochondrosis, unspecified, thoracic region', 'ICD10_2010'), +('M42.95', 'Spinal osteochondrosis, unspecified, thoracolumbar region', 'ICD10_2010'), +('M42.96', 'Spinal osteochondrosis, unspecified, lumbar region', 'ICD10_2010'), +('M42.97', 'Spinal osteochondrosis, unspecified, lumbosacral region', 'ICD10_2010'), +('M42.98', 'Spinal osteochondrosis, unspecified, sacral and sacrococcygeal region', 'ICD10_2010'), +('M42.99', 'Spinal osteochondrosis, unspecified, site unspecified', 'ICD10_2010'), +('M43', 'Other deforming dorsopathies', 'ICD10_2010'), +('M43.0', 'Spondylolysis', 'ICD10_2010'), +('M43.00', 'Spondylolysis, multiple sites in spine', 'ICD10_2010'), +('M43.01', 'Spondylolysis, occipito-atlanto-axial region', 'ICD10_2010'), +('M43.02', 'Spondylolysis, cervical region', 'ICD10_2010'), +('M43.03', 'Spondylolysis, cervicothoracic region', 'ICD10_2010'), +('M43.04', 'Spondylolysis, thoracic region', 'ICD10_2010'), +('M43.05', 'Spondylolysis, thoracolumbar region', 'ICD10_2010'), +('M43.06', 'Spondylolysis, lumbar region', 'ICD10_2010'), +('M43.07', 'Spondylolysis, lumbosacral region', 'ICD10_2010'), +('M43.08', 'Spondylolysis, sacral and sacrococcygeal region', 'ICD10_2010'), +('M43.09', 'Spondylolysis, site unspecified', 'ICD10_2010'), +('M43.1', 'Spondylolisthesis', 'ICD10_2010'), +('M43.10', 'Spondylolisthesis, multiple sites in spine', 'ICD10_2010'), +('M43.11', 'Spondylolisthesis, occipito-atlanto-axial region', 'ICD10_2010'), +('M43.12', 'Spondylolisthesis, cervical region', 'ICD10_2010'), +('M43.13', 'Spondylolisthesis, cervicothoracic region', 'ICD10_2010'), +('M43.14', 'Spondylolisthesis, thoracic region', 'ICD10_2010'), +('M43.15', 'Spondylolisthesis, thoracolumbar region', 'ICD10_2010'), +('M43.16', 'Spondylolisthesis, lumbar region', 'ICD10_2010'), +('M43.17', 'Spondylolisthesis, lumbosacral region', 'ICD10_2010'), +('M43.18', 'Spondylolisthesis, sacral and sacrococcygeal region', 'ICD10_2010'), +('M43.19', 'Spondylolisthesis, site unspecified', 'ICD10_2010'), +('M43.2', 'Other fusion of spine', 'ICD10_2010'), +('M43.20', 'Other fusion of spine, multiple sites in spine', 'ICD10_2010'), +('M43.21', 'Other fusion of spine, occipito-atlanto-axial region', 'ICD10_2010'), +('M43.22', 'Other fusion of spine, cervical region', 'ICD10_2010'), +('M43.23', 'Other fusion of spine, cervicothoracic region', 'ICD10_2010'), +('M43.24', 'Other fusion of spine, thoracic region', 'ICD10_2010'), +('M43.25', 'Other fusion of spine, thoracolumbar region', 'ICD10_2010'), +('M43.26', 'Other fusion of spine, lumbar region', 'ICD10_2010'), +('M43.27', 'Other fusion of spine, lumbosacral region', 'ICD10_2010'), +('M43.28', 'Other fusion of spine, sacral and sacrococcygeal region', 'ICD10_2010'), +('M43.29', 'Other fusion of spine, site unspecified', 'ICD10_2010'), +('M43.3', 'Recurrent atlantoaxial subluxation with myelopathy', 'ICD10_2010'), +('M43.30', 'Recurrent atlantoaxial subluxation with myelopathy, multiple sites in spine', 'ICD10_2010'), +('M43.31', 'Recurrent atlantoaxial subluxation with myelopathy, occipito-atlanto-axial region', 'ICD10_2010'), +('M43.32', 'Recurrent atlantoaxial subluxation with myelopathy, cervical region', 'ICD10_2010'), +('M43.33', 'Recurrent atlantoaxial subluxation with myelopathy, cervicothoracic region', 'ICD10_2010'), +('M43.34', 'Recurrent atlantoaxial subluxation with myelopathy, thoracic region', 'ICD10_2010'), +('M43.35', 'Recurrent atlantoaxial subluxation with myelopathy, thoracolumbar region', 'ICD10_2010'), +('M43.36', 'Recurrent atlantoaxial subluxation with myelopathy, lumbar region', 'ICD10_2010'), +('M43.37', 'Recurrent atlantoaxial subluxation with myelopathy, lumbosacral region', 'ICD10_2010'), +('M43.38', 'Recurrent atlantoaxial subluxation with myelopathy, sacral and sacrococcygeal region', 'ICD10_2010'), +('M43.39', 'Recurrent atlantoaxial subluxation with myelopathy, site unspecified', 'ICD10_2010'), +('M43.4', 'Other recurrent atlantoaxial subluxation', 'ICD10_2010'), +('M43.40', 'Other recurrent atlantoaxial subluxation, multiple sites in spine', 'ICD10_2010'), +('M43.41', 'Other recurrent atlantoaxial subluxation, occipito-atlanto-axial region', 'ICD10_2010'), +('M43.42', 'Other recurrent atlantoaxial subluxation, cervical region', 'ICD10_2010'), +('M43.43', 'Other recurrent atlantoaxial subluxation, cervicothoracic region', 'ICD10_2010'), +('M43.44', 'Other recurrent atlantoaxial subluxation, thoracic region', 'ICD10_2010'), +('M43.45', 'Other recurrent atlantoaxial subluxation, thoracolumbar region', 'ICD10_2010'), +('M43.46', 'Other recurrent atlantoaxial subluxation, lumbar region', 'ICD10_2010'), +('M43.47', 'Other recurrent atlantoaxial subluxation, lumbosacral region', 'ICD10_2010'), +('M43.48', 'Other recurrent atlantoaxial subluxation, sacral and sacrococcygeal region', 'ICD10_2010'), +('M43.49', 'Other recurrent atlantoaxial subluxation, site unspecified', 'ICD10_2010'), +('M43.5', 'Other recurrent vertebral subluxation', 'ICD10_2010'), +('M43.50', 'Other recurrent vertebral subluxation, multiple sites in spine', 'ICD10_2010'), +('M43.51', 'Other recurrent vertebral subluxation, occipito-atlanto-axial region', 'ICD10_2010'), +('M43.52', 'Other recurrent vertebral subluxation, cervical region', 'ICD10_2010'), +('M43.53', 'Other recurrent vertebral subluxation, cervicothoracic region', 'ICD10_2010'), +('M43.54', 'Other recurrent vertebral subluxation, thoracic region', 'ICD10_2010'), +('M43.55', 'Other recurrent vertebral subluxation, thoracolumar region', 'ICD10_2010'), +('M43.56', 'Other recurrent vertebral subluxation, lumbar region', 'ICD10_2010'), +('M43.57', 'Other recurrent vertebral subluxation, lumbosacral region', 'ICD10_2010'), +('M43.58', 'Other recurrent vertebral subluxation, sacral and sacrococcygeal region', 'ICD10_2010'), +('M43.59', 'Other recurrent vertebral subluxation, site unspecified', 'ICD10_2010'), +('M43.6', 'Torticollis', 'ICD10_2010'), +('M43.60', 'Torticollis, multiple sites in spine', 'ICD10_2010'), +('M43.61', 'Torticollis, occipito-atlanto-axial region', 'ICD10_2010'), +('M43.62', 'Torticollis, cervical region', 'ICD10_2010'), +('M43.63', 'Torticollis, cervicothoracic region', 'ICD10_2010'), +('M43.64', 'Torticollis, thoracic region', 'ICD10_2010'), +('M43.65', 'Torticollis, thoracolumar region', 'ICD10_2010'), +('M43.66', 'Torticollis, lumbar region', 'ICD10_2010'), +('M43.67', 'Torticollis, lumbosacral region', 'ICD10_2010'), +('M43.68', 'Torticollis, sacral and sacrococcygeal region', 'ICD10_2010'), +('M43.69', 'Torticollis, site unspecified', 'ICD10_2010'), +('M43.8', 'Other specified deforming dorsopathies', 'ICD10_2010'), +('M43.80', 'Other specified deforming dorsopathies, multiple sites', 'ICD10_2010'), +('M43.81', 'Other specified deforming dorsopathies, occipito and atlanto and axial region', 'ICD10_2010'), +('M43.82', 'Other specified deforming dorsopathies, cervical region', 'ICD10_2010'), +('M43.83', 'Other specified deforming dorsopathies, cervicothoracic region', 'ICD10_2010'), +('M43.84', 'Other specified deforming dorsopathies, thoracic region', 'ICD10_2010'), +('M43.85', 'Other specified deforming dorsopathies, thoracolumbar region', 'ICD10_2010'), +('M43.86', 'Other specified deforming dorsopathies, lumbar region', 'ICD10_2010'), +('M43.87', 'Other specified deforming dorsopathies, lumbosacral region', 'ICD10_2010'), +('M43.88', 'Other specified deforming dorsopathies, sacral and sacrococcygeal region', 'ICD10_2010'), +('M43.89', 'Other specified deforming dorsopathies, site unspecified', 'ICD10_2010'), +('M43.9', 'Deforming dorsopathy, unspecified', 'ICD10_2010'), +('M43.90', 'Deforming dorsopathy, unspecified, multiple sites', 'ICD10_2010'), +('M43.91', 'Deforming dorsopathy, unspecified, occipito-atlanto-axial region', 'ICD10_2010'), +('M43.92', 'Deforming dorsopathy, unspecified, cervical region', 'ICD10_2010'), +('M43.93', 'Deforming dorsopathy, unspecified, cervicothoracic region', 'ICD10_2010'), +('M43.94', 'Deforming dorsopathy, unspecified, thoracic region', 'ICD10_2010'), +('M43.95', 'Deforming dorsopathy, unspecified, thoracolumbar region', 'ICD10_2010'), +('M43.96', 'Deforming dorsopathy, unspecified, lumbar region', 'ICD10_2010'), +('M43.97', 'Deforming dorsopathy, unspecified, lumbosacral region', 'ICD10_2010'), +('M43.98', 'Deforming dorsopathy, unspecified, sacral and sacrococcygeal region', 'ICD10_2010'), +('M43.99', 'Deforming dorsopathy, unspecified, site unspecified', 'ICD10_2010'), +('M45', 'Ankylosing spondylitis', 'ICD10_2010'), +('M45.0', 'Ankylosing spondylitis, multiple sites in spine', 'ICD10_2010'), +('M45.1', 'Ankylosing spondylitis, occipito-atlanto-axial region', 'ICD10_2010'), +('M45.2', 'Ankylosing spondylitis, cervical region', 'ICD10_2010'), +('M45.3', 'Ankylosing spondylitis, cervicothoracic region', 'ICD10_2010'), +('M45.4', 'Ankylosing spondylitis, thoracic region', 'ICD10_2010'), +('M45.5', 'Ankylosing spondylitis, thoracolumbar region', 'ICD10_2010'), +('M45.6', 'Ankylosing spondylitis, lumbar region', 'ICD10_2010'), +('M45.7', 'Ankylosing spondylitis, lumbosacral region', 'ICD10_2010'), +('M45.8', 'Ankylosing spondylitis, sacral and sacrococcygeal region', 'ICD10_2010'), +('M45.9', 'Ankylosing spondylitis, site unspecified', 'ICD10_2010'), +('M46', 'Spinal enthesopathy', 'ICD10_2010'), +('M46.0', 'Spinal enthesopathy', 'ICD10_2010'), +('M46.00', 'Spinal enthesopathy, multiple sites', 'ICD10_2010'), +('M46.01', 'Spinal enthesopathy, occipito-atlanto-axial region', 'ICD10_2010'), +('M46.02', 'Spinal enthesopathy, cervical region', 'ICD10_2010'), +('M46.03', 'Spinal enthesopathy, cervicothoracic region', 'ICD10_2010'), +('M46.04', 'Spinal enthesopathy, thoracic region', 'ICD10_2010'), +('M46.05', 'Spinal enthesopathy, thoracolumbar region', 'ICD10_2010'), +('M46.06', 'Spinal enthesopathy, lumbar region', 'ICD10_2010'), +('M46.07', 'Spinal enthesopathy, lumbosacral region', 'ICD10_2010'), +('M46.08', 'Spinal enthesopathy, sacral and sacrococcygeal region', 'ICD10_2010'), +('M46.09', 'Spinal enthesopathy, site unspecified', 'ICD10_2010'), +('M46.1', 'Sacroiliitis, not elsewhere classified', 'ICD10_2010'), +('M46.10', 'Sacroiliitis, not elsewhere classified, multiple sites', 'ICD10_2010'), +('M46.11', 'Sacroiliitis, not elsewhere classified, occipito-atlanto-axial region', 'ICD10_2010'), +('M46.12', 'Sacroiliitis, not elsewhere classified, cervical region', 'ICD10_2010'), +('M46.13', 'Sacroiliitis, not elsewhere classified, cervicothoracic region', 'ICD10_2010'), +('M46.14', 'Sacroiliitis, not elsewhere classified, thoracic region', 'ICD10_2010'), +('M46.15', 'Sacroiliitis, not elsewhere classified, thoracolumbar region', 'ICD10_2010'), +('M46.16', 'Sacroiliitis, not elsewhere classified, lumbar region', 'ICD10_2010'), +('M46.17', 'Sacroiliitis, not elsewhere classified, lumbosacral region', 'ICD10_2010'), +('M46.18', 'Sacroiliitis, not elsewhere classified, sacral and sacrococcygeal region', 'ICD10_2010'), +('M46.19', 'Sacroiliitis, not elsewhere classified, site unspecified', 'ICD10_2010'), +('M46.2', 'Osteomyelitis of vertebra', 'ICD10_2010'), +('M46.20', 'Osteomyelitis of vertebra, multiple sites', 'ICD10_2010'), +('M46.21', 'Osteomyelitis of vertebra, occipito-atlanto-axial region', 'ICD10_2010'), +('M46.22', 'Osteomyelitis of vertebra, cervical region', 'ICD10_2010'), +('M46.23', 'Osteomyelitis of vertebra, cervicothoracic region', 'ICD10_2010'), +('M46.24', 'Osteomyelitis of vertebra, thoracic region', 'ICD10_2010'), +('M46.25', 'Osteomyelitis of vertebra, thoracolumbar region', 'ICD10_2010'), +('M46.26', 'Osteomyelitis of vertebra, lumbar region', 'ICD10_2010'), +('M46.27', 'Osteomyelitis of vertebra, lumbosacral region', 'ICD10_2010'), +('M46.28', 'Osteomyelitis of vertebra, sacral and sacrococcygeal region', 'ICD10_2010'), +('M46.29', 'Osteomyelitis of vertebra, site unspecified', 'ICD10_2010'), +('M46.3', 'Infection of intervertebral disc (pyogenic)', 'ICD10_2010'), +('M46.30', 'Infection of intervertebral disc (pyogenic), multiple sites', 'ICD10_2010'), +('M46.31', 'Infection of intervertebral disc (pyogenic), occipito-atlanto-axial region', 'ICD10_2010'), +('M46.32', 'Infection of intervertebral disc (pyogenic), cervical region', 'ICD10_2010'), +('M46.33', 'Infection of intervertebral disc (pyogenic), cervicothoracic region', 'ICD10_2010'), +('M46.34', 'Infection of intervertebral disc (pyogenic), thoracic region', 'ICD10_2010'), +('M46.35', 'Infection of intervertebral disc (pyogenic), thoracolumbar region', 'ICD10_2010'), +('M46.36', 'Infection of intervertebral disc (pyogenic), lumbar region', 'ICD10_2010'), +('M46.37', 'Infection of intervertebral disc (pyogenic), lumbosacral region', 'ICD10_2010'), +('M46.38', 'Infection of intervertebral disc (pyogenic), sacral and sacrococcygeal region', 'ICD10_2010'), +('M46.39', 'Infection of intervertebral disc (pyogenic), site unspecified', 'ICD10_2010'), +('M46.4', 'Discitis, unspecified', 'ICD10_2010'), +('M46.40', 'Discitis, unspecified, multiple sites', 'ICD10_2010'), +('M46.41', 'Discitis, unspecified, occipito-atlanto-axial region', 'ICD10_2010'), +('M46.42', 'Discitis, unspecified, cervical region', 'ICD10_2010'), +('M46.43', 'Discitis, unspecified, cervicothoracic region', 'ICD10_2010'), +('M46.44', 'Discitis, unspecified, thoracic region', 'ICD10_2010'), +('M46.45', 'Discitis, unspecified, thoracolumbar region', 'ICD10_2010'), +('M46.46', 'Discitis, unspecified, lumbar region', 'ICD10_2010'), +('M46.47', 'Discitis, unspecified, lumbosacral region', 'ICD10_2010'), +('M46.48', 'Discitis, unspecified, sacral and sacrococcygeal region', 'ICD10_2010'), +('M46.49', 'Discitis, unspecified, site unspecified', 'ICD10_2010'), +('M46.5', 'Other infective spondylopathies', 'ICD10_2010'), +('M46.50', 'Other infective spondylopathies, multiple sites', 'ICD10_2010'), +('M46.51', 'Other infective spondylopathies, occipito-atlanto-axial region', 'ICD10_2010'), +('M46.52', 'Other infective spondylopathies, cervical region', 'ICD10_2010'), +('M46.53', 'Other infective spondylopathies, cervicothoracic region', 'ICD10_2010'), +('M46.54', 'Other infective spondylopathies, thoracic region', 'ICD10_2010'), +('M46.55', 'Other infective spondylopathies, thoracolumbar region', 'ICD10_2010'), +('M46.56', 'Other infective spondylopathies, lumbar region', 'ICD10_2010'), +('M46.57', 'Other infective spondylopathies, lumbosacral region', 'ICD10_2010'), +('M46.58', 'Other infective spondylopathies, sacral and sacrococcygeal region', 'ICD10_2010'), +('M46.59', 'Other infective spondylopathies, site unspecified', 'ICD10_2010'), +('M46.8', 'Other specified inflammatory spondylopathies', 'ICD10_2010'), +('M46.80', 'Other specified inflammatory spondylopathies, multiple sites', 'ICD10_2010'), +('M46.81', 'Other specified inflammatory spondylopathies, occipito-atlanto-axial region', 'ICD10_2010'), +('M46.82', 'Other specified inflammatory spondylopathies, cervical region', 'ICD10_2010'), +('M46.83', 'Other specified inflammatory spondylopathies, cervicothoracic region', 'ICD10_2010'), +('M46.84', 'Other specified inflammatory spondylopathies, thoracic region', 'ICD10_2010'), +('M46.85', 'Other specified inflammatory spondylopathies, thoracolumbar region', 'ICD10_2010'), +('M46.86', 'Other specified inflammatory spondylopathies, lumbar region', 'ICD10_2010'), +('M46.87', 'Other specified inflammatory spondylopathies, lumbosacral region', 'ICD10_2010'), +('M46.88', 'Other specified inflammatory spondylopathies, sacral and sacrococcygeal region', 'ICD10_2010'), +('M46.89', 'Other specified inflammatory spondylopathies, site unspecified', 'ICD10_2010'), +('M46.9', 'Inflammatory spondylopathy, unspecified', 'ICD10_2010'), +('M46.90', 'Inflammatory spondylopathy, unspecified, multiple sites', 'ICD10_2010'), +('M46.91', 'Inflammatory spondylopathy, unspecified, occipito-atlanto-axial region', 'ICD10_2010'), +('M46.92', 'Inflammatory spondylopathy, unspecified, cervical region', 'ICD10_2010'), +('M46.93', 'Inflammatory spondylopathy, unspecified, cervicothoracic region', 'ICD10_2010'), +('M46.94', 'Inflammatory spondylopathy, unspecified, thoracic region', 'ICD10_2010'), +('M46.95', 'Inflammatory spondylopathy, unspecified, thoracolumbar region', 'ICD10_2010'), +('M46.96', 'Inflammatory spondylopathy, unspecified, lumbar region', 'ICD10_2010'), +('M46.97', 'Inflammatory spondylopathy, unspecified, lumbosacral region', 'ICD10_2010'), +('M46.98', 'Inflammatory spondylopathy, unspecified, sacral and sacrococcygeal region', 'ICD10_2010'), +('M46.99', 'Inflammatory spondylopathy, unspecified, site unspecified', 'ICD10_2010'), +('M47', 'Spondylosis', 'ICD10_2010'), +('M47.0', 'Ant spinal and vertebral artery compression syndromes, multiple sites', 'ICD10_2010'), +('M47.00', 'Anterior spinal and vertebral artery compression syndromes, multiple sites', 'ICD10_2010'), +('M47.01', 'Anterior spinal and vertebral artery compression syndromes, occipito-atlanto-axial region', 'ICD10_2010'), +('M47.02', 'Anterior spinal and vertebral artery compression syndromes, cervical region', 'ICD10_2010'), +('M47.03', 'Anterior spinal and vertebral artery compression syndromes, cervicothoracic region', 'ICD10_2010'), +('M47.04', 'Anterior spinal and vertebral artery compression syndromes, thoracic region', 'ICD10_2010'), +('M47.05', 'Anterior spinal and vertebral artery compression syndromes, thoracolumbar region', 'ICD10_2010'), +('M47.06', 'Anterior spinal and vertebral artery compression syndromes, lumbar region', 'ICD10_2010'), +('M47.07', 'Anterior spinal and vertebral artery compression syndromes, lumbosacral region', 'ICD10_2010'), +('M47.08', 'Anterior spinal and vertebral artery compression syndromes, sacral and sacrococcygeal region', 'ICD10_2010'), +('M47.09', 'Anterior spinal and vertebral artery compression syndromes, site unspecified', 'ICD10_2010'), +('M47.1', 'Ant spinal and vertebral artery compression syndromes, occipito-atlanto-axial region', 'ICD10_2010'), +('M47.10', 'Other spondylosis with myelopathy, multiple sites', 'ICD10_2010'), +('M47.11', 'Other spondylosis with myelopathy, occipito-atlanto-axial region', 'ICD10_2010'), +('M47.12', 'Other spondylosis with myelopathy, cervical region', 'ICD10_2010'), +('M47.13', 'Other spondylosis with myelopathy, cervicothoracic region', 'ICD10_2010'), +('M47.14', 'Other spondylosis with myelopathy, thoracic region', 'ICD10_2010'), +('M47.15', 'Other spondylosis with myelopathy, thoracolumbar region', 'ICD10_2010'), +('M47.16', 'Other spondylosis with myelopathy, lumbar region', 'ICD10_2010'), +('M47.17', 'Other spondylosis with myelopathy, lumbosacral region', 'ICD10_2010'), +('M47.18', 'Other spondylosis with myelopathy, sacral and sacrococcygeal region', 'ICD10_2010'), +('M47.19', 'Other spondylosis with myelopathy, site unspecified', 'ICD10_2010'), +('M47.2', 'Other spondylosis with radiculopathy', 'ICD10_2010'), +('M47.20', 'Other spondylosis with radiculopathy, multiple sites', 'ICD10_2010'), +('M47.21', 'Other spondylosis with radiculopathy, occipito-atlanto-axial region', 'ICD10_2010'), +('M47.22', 'Other spondylosis with radiculopathy, cervical region', 'ICD10_2010'), +('M47.23', 'Other spondylosis with radiculopathy, cervicothoracic region', 'ICD10_2010'), +('M47.24', 'Other spondylosis with radiculopathy, thoracic region', 'ICD10_2010'), +('M47.25', 'Other spondylosis with radiculopathy, thoracolumbar region', 'ICD10_2010'), +('M47.26', 'Other spondylosis with radiculopathy, lumbar region', 'ICD10_2010'), +('M47.27', 'Other spondylosis with radiculopathy, lumbosacral region', 'ICD10_2010'), +('M47.28', 'Other spondylosis with radiculopathy, sacral and sacrococcygeal region', 'ICD10_2010'), +('M47.29', 'Other spondylosis with radiculopathy, site unspecified', 'ICD10_2010'), +('M47.3', 'Ant spinal and vertebral artery compression syndromes, cervicothoracic region', 'ICD10_2010'), +('M47.4', 'Ant spinal and vertebral artery compression syndromes, thoracic region', 'ICD10_2010'), +('M47.5', 'Ant spinal and vertebral artery compression syndromes, thoracolumbar region', 'ICD10_2010'), +('M47.6', 'Ant spinal and vertebral artery compression syndromes, lumbar region', 'ICD10_2010'), +('M47.7', 'Ant spinal and vertebral artery compression syndromes, lumbosacral region', 'ICD10_2010'), +('M47.8', 'Ant spinal and vertebral artery compression syndromes, sacral and sacrococcygeal region', 'ICD10_2010'), +('M47.80', 'Other spondylosis, multiple sites', 'ICD10_2010'), +('M47.81', 'Other spondylosis, occipito-atlanto-axial region', 'ICD10_2010'), +('M47.82', 'Other spondylosis, cervical region', 'ICD10_2010'), +('M47.83', 'Other spondylosis, cervicothoracic region', 'ICD10_2010'), +('M47.84', 'Other spondylosis, thoracic region', 'ICD10_2010'), +('M47.85', 'Other spondylosis, thoracolumbar region', 'ICD10_2010'), +('M47.86', 'Other spondylosis, lumbar region', 'ICD10_2010'), +('M47.87', 'Other spondylosis, lumbosacral region', 'ICD10_2010'), +('M47.88', 'Other spondylosis, sacral and sacrococcygeal region', 'ICD10_2010'), +('M47.89', 'Other spondylosis, site unspecified', 'ICD10_2010'), +('M47.9', 'Ant spinal and vertebral artery compression syndromes, site unspecified', 'ICD10_2010'), +('M47.90', 'Spondylosis, unspecified, multiple sites', 'ICD10_2010'), +('M47.91', 'Spondylosis, unspecified, occipito-atlanto-axial region', 'ICD10_2010'), +('M47.92', 'Spondylosis, unspecified, cervical region', 'ICD10_2010'), +('M47.93', 'Spondylosis, unspecified, cervicothoracic region', 'ICD10_2010'), +('M47.94', 'Spondylosis, unspecified, thoracic region', 'ICD10_2010'), +('M47.95', 'Spondylosis, unspecified, thoracolumbar region', 'ICD10_2010'), +('M47.96', 'Spondylosis, unspecified, lumbar region', 'ICD10_2010'), +('M47.97', 'Spondylosis, unspecified, lumbosacral region', 'ICD10_2010'), +('M47.98', 'Spondylosis, unspecified, sacral and sacrococcygeal region', 'ICD10_2010'), +('M47.99', 'Spondylosis, unspecified, site unspecified', 'ICD10_2010'), +('M48', 'Other spondylopathies', 'ICD10_2010'), +('M48.0', 'Spinal stenosis', 'ICD10_2010'), +('M48.00', 'Spinal stenosis, multiple sites', 'ICD10_2010'), +('M48.01', 'Spinal stenosis, occipito-atlanto-axial region', 'ICD10_2010'), +('M48.02', 'Spinal stenosis, cervical region', 'ICD10_2010'), +('M48.03', 'Spinal stenosis, cervicothoracic region', 'ICD10_2010'), +('M48.04', 'Spinal stenosis, thoracic region', 'ICD10_2010'), +('M48.05', 'Spinal stenosis, thoracolumbar region', 'ICD10_2010'), +('M48.06', 'Spinal stenosis, lumbar region', 'ICD10_2010'), +('M48.07', 'Spinal stenosis, lumbosacral region', 'ICD10_2010'), +('M48.08', 'Spinal stenosis, sacral and sacrococcygeal region', 'ICD10_2010'), +('M48.09', 'Spinal stenosis, site unspecified', 'ICD10_2010'), +('M48.1', 'Ankylosing hyperostosis [forestier]', 'ICD10_2010'), +('M48.10', 'Ankylosing hyperostosis [forestier], multiple sites', 'ICD10_2010'), +('M48.11', 'Ankylosing hyperostosis [forestier], occipito-atlanto-axial region', 'ICD10_2010'), +('M48.12', 'Ankylosing hyperostosis [forestier], cervical region', 'ICD10_2010'), +('M48.13', 'Ankylosing hyperostosis [forestier], cervicothoracic region', 'ICD10_2010'), +('M48.14', 'Ankylosing hyperostosis [forestier], thoracic region', 'ICD10_2010'), +('M48.15', 'Ankylosing hyperostosis [forestier], thoracolumbar region', 'ICD10_2010'), +('M48.16', 'Ankylosing hyperostosis [forestier], lumbar region', 'ICD10_2010'), +('M48.17', 'Ankylosing hyperostosis [forestier], lumbosacral region', 'ICD10_2010'), +('M48.18', 'Ankylosing hyperostosis [forestier], sacral and sacrococcygeal region', 'ICD10_2010'), +('M48.19', 'Ankylosing hyperostosis [forestier], site unspecified', 'ICD10_2010'), +('M48.2', 'Kissing spine', 'ICD10_2010'), +('M48.20', 'Kissing spine, multiple sites', 'ICD10_2010'), +('M48.21', 'Kissing spine, occipito-atlanto-axial region', 'ICD10_2010'), +('M48.22', 'Kissing spine, cervical region', 'ICD10_2010'), +('M48.23', 'Kissing spine, cervicothoracic region', 'ICD10_2010'), +('M48.24', 'Kissing spine, thoracic region', 'ICD10_2010'), +('M48.25', 'Kissing spine, thoracolumbar region', 'ICD10_2010'), +('M48.26', 'Kissing spine, lumbar region', 'ICD10_2010'), +('M48.27', 'Kissing spine, lumbosacral region', 'ICD10_2010'), +('M48.28', 'Kissing spine, sacral and sacrococcygeal region', 'ICD10_2010'), +('M48.29', 'Kissing spine, site unspecified', 'ICD10_2010'), +('M48.3', 'Traumatic spondylopathy', 'ICD10_2010'), +('M48.30', 'Traumatic spondylopathy, multiple sites', 'ICD10_2010'), +('M48.31', 'Traumatic spondylopathy, occipito-atlanto-axial region', 'ICD10_2010'), +('M48.32', 'Traumatic spondylopathy, cervical region', 'ICD10_2010'), +('M48.33', 'Traumatic spondylopathy, cervicothoracic region', 'ICD10_2010'), +('M48.34', 'Traumatic spondylopathy, thoracic region', 'ICD10_2010'), +('M48.35', 'Traumatic spondylopathy, thoracolumbar region', 'ICD10_2010'), +('M48.36', 'Traumatic spondylopathy, lumbar region', 'ICD10_2010'), +('M48.37', 'Traumatic spondylopathy, lumbosacral region', 'ICD10_2010'), +('M48.38', 'Traumatic spondylopathy, sacral and sacrococcygeal region', 'ICD10_2010'), +('M48.39', 'Traumatic spondylopathy, site unspecified', 'ICD10_2010'), +('M48.4', 'Fatigue fracture of vertebra', 'ICD10_2010'), +('M48.40', 'Fatigue fracture of vertebra, multiple sites', 'ICD10_2010'), +('M48.41', 'Fatigue fracture of vertebra, occipito-atlanto-axial region', 'ICD10_2010'), +('M48.42', 'Fatigue fracture of vertebra, cervical region', 'ICD10_2010'), +('M48.43', 'Fatigue fracture of vertebra, cervicothoracic region', 'ICD10_2010'), +('M48.44', 'Fatigue fracture of vertebra, thoracic region', 'ICD10_2010'), +('M48.45', 'Fatigue fracture of vertebra, thoracolumbar region', 'ICD10_2010'), +('M48.46', 'Fatigue fracture of vertebra, lumbar region', 'ICD10_2010'), +('M48.47', 'Fatigue fracture of vertebra, lumbosacral region', 'ICD10_2010'), +('M48.48', 'Fatigue fracture of vertebra, sacral and sacrococcygeal region', 'ICD10_2010'), +('M48.49', 'Fatigue fracture of vertebra, site unspecified', 'ICD10_2010'), +('M48.5', 'Collapsed vertebra, not elsewhere classified', 'ICD10_2010'), +('M48.50', 'Collapsed vertebra, not elsewhere classified, multiple sites', 'ICD10_2010'), +('M48.51', 'Collapsed vertebra, not elsewhere classified, occipito-atlanto-axial region', 'ICD10_2010'), +('M48.52', 'Collapsed vertebra, not elsewhere classified, cervical region', 'ICD10_2010'), +('M48.53', 'Collapsed vertebra, not elsewhere classified, cervicothoracic region', 'ICD10_2010'), +('M48.54', 'Collapsed vertebra, not elsewhere classified, thoracic region', 'ICD10_2010'), +('M48.55', 'Collapsed vertebra, not elsewhere classified, thoracolumbar region', 'ICD10_2010'), +('M48.56', 'Collapsed vertebra, not elsewhere classified, lumbar region', 'ICD10_2010'), +('M48.57', 'Collapsed vertebra, not elsewhere classified, lumbosacral region', 'ICD10_2010'), +('M48.58', 'Collapsed vertebra, not elsewhere classified, sacral and sacrococcygeal region', 'ICD10_2010'), +('M48.59', 'Collapsed vertebra, not elsewhere classified, site unspecified', 'ICD10_2010'), +('M48.8', 'Other specified spondylopathies', 'ICD10_2010'), +('M48.80', 'Other specified spondylopathies, multiple sites', 'ICD10_2010'), +('M48.81', 'Other specified spondylopathies, occipito-atlanto-axial region', 'ICD10_2010'), +('M48.82', 'Other specified spondylopathies, cervical region', 'ICD10_2010'), +('M48.83', 'Other specified spondylopathies, cervicothoracic region', 'ICD10_2010'), +('M48.84', 'Other specified spondylopathies, thoracic region', 'ICD10_2010'), +('M48.85', 'Other specified spondylopathies, thoracolumbar region', 'ICD10_2010'), +('M48.86', 'Other specified spondylopathies, lumbar region', 'ICD10_2010'), +('M48.87', 'Other specified spondylopathies, lumbosacral region', 'ICD10_2010'), +('M48.88', 'Other specified spondylopathies, sacral and sacrococcygeal region', 'ICD10_2010'), +('M48.89', 'Other specified spondylopathies, site unspecified', 'ICD10_2010'), +('M48.9', 'Spondylopathy, unspecified', 'ICD10_2010'), +('M48.90', 'Spondylopathy, unspecified, multiple sites', 'ICD10_2010'), +('M48.91', 'Spondylopathy, unspecified, occipito-atlanto-axial region', 'ICD10_2010'), +('M48.92', 'Spondylopathy, unspecified, cervical region', 'ICD10_2010'), +('M48.93', 'Spondylopathy, unspecified, cervicothoracic region', 'ICD10_2010'), +('M48.94', 'Spondylopathy, unspecified, thoracic region', 'ICD10_2010'), +('M48.95', 'Spondylopathy, unspecified, thoracolumbar region', 'ICD10_2010'), +('M48.96', 'Spondylopathy, unspecified, lumbar region', 'ICD10_2010'), +('M48.97', 'Spondylopathy, unspecified, lumbosacral region', 'ICD10_2010'), +('M48.98', 'Spondylopathy, unspecified, sacral and sacrococcygeal region', 'ICD10_2010'), +('M48.99', 'Spondylopathy, unspecified, site unspecified', 'ICD10_2010'), +('M49', 'Spondylopathies in diseases classified elsewhere', 'ICD10_2010'), +('M49.0', 'Tuberculosis of spine', 'ICD10_2010'), +('M49.00', 'Tuberculosis of spine, multiple sites', 'ICD10_2010'), +('M49.01', 'Tuberculosis of spine, occipito-atlanto-axial region', 'ICD10_2010'), +('M49.02', 'Tuberculosis of spine, cervical region', 'ICD10_2010'), +('M49.03', 'Tuberculosis of spine, cervicothoracic region', 'ICD10_2010'), +('M49.04', 'Tuberculosis of spine, thoracic region', 'ICD10_2010'), +('M49.05', 'Tuberculosis of spine, thoracolumbar region', 'ICD10_2010'), +('M49.06', 'Tuberculosis of spine, lumbar region', 'ICD10_2010'), +('M49.07', 'Tuberculosis of spine, lumbosacral region', 'ICD10_2010'), +('M49.08', 'Tuberculosis of spine, sacral and sacrococcygeal region', 'ICD10_2010'), +('M49.09', 'Tuberculosis of spine, site unspecified', 'ICD10_2010'), +('M49.1', 'Brucella spondylitis', 'ICD10_2010'), +('M49.10', 'Brucella spondylitis, multiple sites', 'ICD10_2010'), +('M49.11', 'Brucella spondylitis, occipito-atlanto-axial region', 'ICD10_2010'), +('M49.12', 'Brucella spondylitis, cervical region', 'ICD10_2010'), +('M49.13', 'Brucella spondylitis, cervicothoracic region', 'ICD10_2010'), +('M49.14', 'Brucella spondylitis, thoracic region', 'ICD10_2010'), +('M49.15', 'Brucella spondylitis, thoracolumbar region', 'ICD10_2010'), +('M49.16', 'Brucella spondylitis, lumbar region', 'ICD10_2010'), +('M49.17', 'Brucella spondylitis, lumbosacral region', 'ICD10_2010'), +('M49.18', 'Brucella spondylitis, sacral and sacrococcygeal region', 'ICD10_2010'), +('M49.19', 'Brucella spondylitis, site unspecified', 'ICD10_2010'), +('M49.2', 'Enterobacterial spondylitis', 'ICD10_2010'), +('M49.20', 'Enterobacterial spondylitis, multiple sites', 'ICD10_2010'), +('M49.21', 'Enterobacterial spondylitis, occipito-atlanto-axial region', 'ICD10_2010'), +('M49.22', 'Enterobacterial spondylitis, cervical region', 'ICD10_2010'), +('M49.23', 'Enterobacterial spondylitis, cervicothoracic region', 'ICD10_2010'), +('M49.24', 'Enterobacterial spondylitis, thoracic region', 'ICD10_2010'), +('M49.25', 'Enterobacterial spondylitis, thoracolumbar region', 'ICD10_2010'), +('M49.26', 'Enterobacterial spondylitis, lumbar region', 'ICD10_2010'), +('M49.27', 'Enterobacterial spondylitis, lumbosacral region', 'ICD10_2010'), +('M49.28', 'Enterobacterial spondylitis, sacral and sacrococcygeal region', 'ICD10_2010'), +('M49.29', 'Enterobacterial spondylitis, site unspecified', 'ICD10_2010'), +('M49.3', 'Spondylopathy in other infectious and parasitic disease classified elsewhere', 'ICD10_2010'), +('M49.30', 'Spondylopathy in other infectious and parasitic disease, multiple sites', 'ICD10_2010'), +('M49.31', 'Spondylopathy in other infectious and parasitic disease, occipito-atlanto-axial region', 'ICD10_2010'), +('M49.32', 'Spondylopathy in other infectious and parasitic disease, cervical region', 'ICD10_2010'), +('M49.33', 'Spondylopathy in other infectious and parasitic disease, cervicothoracic region', 'ICD10_2010'), +('M49.34', 'Spondylopathy in other infectious and parasitic disease, thoracic region', 'ICD10_2010'), +('M49.35', 'Spondylopathy in other infectious and parasitic disease, thoracolumbar region', 'ICD10_2010'), +('M49.36', 'Spondylopathy in other infectious and parasitic disease, lumbar region', 'ICD10_2010'), +('M49.37', 'Spondylopathy in other infectious and parasitic disease, lumbosacral region', 'ICD10_2010'), +('M49.38', 'Spondylopathy in other infectious and parasitic disease, sacral and sacrococcygeal region', 'ICD10_2010'), +('M49.39', 'Spondylopathy in other infectious and parasitic disease, site unspecified', 'ICD10_2010'), +('M49.4', 'Neuropathic spondylopathy', 'ICD10_2010'), +('M49.40', 'Neuropathic spondylopathy, multiple sites', 'ICD10_2010'), +('M49.41', 'Neuropathic spondylopathy, occipito-atlanto-axial region', 'ICD10_2010'), +('M49.42', 'Neuropathic spondylopathy, cervical region', 'ICD10_2010'), +('M49.43', 'Neuropathic spondylopathy, cervicothoracic region', 'ICD10_2010'), +('M49.44', 'Neuropathic spondylopathy, thoracic region', 'ICD10_2010'), +('M49.45', 'Neuropathic spondylopathy, thoracolumbar region', 'ICD10_2010'), +('M49.46', 'Neuropathic spondylopathy, lumbar region', 'ICD10_2010'), +('M49.47', 'Neuropathic spondylopathy, lumbosacral region', 'ICD10_2010'), +('M49.48', 'Neuropathic spondylopathy, sacral and sacrococcygeal region', 'ICD10_2010'), +('M49.49', 'Neuropathic spondylopathy, site unspecified', 'ICD10_2010'), +('M49.5', 'Collapsed vertebra in diseases classified elsewhere', 'ICD10_2010'), +('M49.50', 'Collapsed vertebra in diseases classified elsewhere, multiple sites', 'ICD10_2010'), +('M49.51', 'Collapsed vertebra in diseases classified elsewhere, occipito-atlanto-axial region', 'ICD10_2010'), +('M49.52', 'Collapsed vertebra in diseases classified elsewhere, cervical region', 'ICD10_2010'), +('M49.53', 'Collapsed vertebra in diseases classified elsewhere, cervicothoracic region', 'ICD10_2010'), +('M49.54', 'Collapsed vertebra in diseases classified elsewhere, thoracic region', 'ICD10_2010'), +('M49.55', 'Collapsed vertebra in diseases classified elsewhere, thoracolumbar region', 'ICD10_2010'), +('M49.56', 'Collapsed vertebra in diseases classified elsewhere, lumbar region', 'ICD10_2010'), +('M49.57', 'Collapsed vertebra in diseases classified elsewhere, lumbosacral region', 'ICD10_2010'), +('M49.58', 'Collapsed vertebra in diseases classified elsewhere, sacral and sacrococcygeal region', 'ICD10_2010'), +('M49.59', 'Collapsed vertebra in diseases classified elsewhere, site unspecified', 'ICD10_2010'), +('M49.8', 'Spondylopathy in other diseases classified elsewhere', 'ICD10_2010'), +('M49.80', 'Spondylopathy in other diseases classified elsewhere, multiple sites', 'ICD10_2010'), +('M49.81', 'Spondylopathy in other diseases classified elsewhere, occipito-atlanto-axial region', 'ICD10_2010'), +('M49.82', 'Spondylopathy in other diseases classified elsewhere, cervical region', 'ICD10_2010'), +('M49.83', 'Spondylopathy in other diseases classified elsewhere, cervicothoracic region', 'ICD10_2010'), +('M49.84', 'Spondylopathy in other diseases classified elsewhere, thoracic region', 'ICD10_2010'), +('M49.85', 'Spondylopathy in other diseases classified elsewhere, thoracolumbar region', 'ICD10_2010'), +('M49.86', 'Spondylopathy in other diseases classified elsewhere, lumbar region', 'ICD10_2010'), +('M49.87', 'Spondylopathy in other diseases classified elsewhere, lumbosacral region', 'ICD10_2010'), +('M49.88', 'Spondylopathy in other diseases classified elsewhere, sacral and sacrococcygeal region', 'ICD10_2010'), +('M49.89', 'Spondylopathy in other diseases classified elsewhere, site unspecified', 'ICD10_2010'), +('M50', 'Cervical disc disorders', 'ICD10_2010'), +('M50.0', 'Cervical disc disorder with myelopathy', 'ICD10_2010'), +('M50.1', 'Cervical disc disorder with radiculopathy', 'ICD10_2010'), +('M50.2', 'Other cervical disc displacement', 'ICD10_2010'), +('M50.3', 'Other cervical disc degeneration', 'ICD10_2010'), +('M50.8', 'Other cervical disc disorders', 'ICD10_2010'), +('M50.9', 'Cervical disc disorder, unspecified', 'ICD10_2010'), +('M51', 'Other intervertebral disc disorders', 'ICD10_2010'), +('M51.0', 'Lumbar and other intervertebral disc disorder with mylopathy', 'ICD10_2010'), +('M51.1', 'Lumbar and other intervertebral disc disorders with radiculopathy', 'ICD10_2010'), +('M51.2', 'Other specified intervertebral disc displacement', 'ICD10_2010'), +('M51.3', 'Other specified intervertebral disc degeneration', 'ICD10_2010'), +('M51.4', 'Schmorl\'s nodes', 'ICD10_2010'), +('M51.8', 'Other specified intervertebral disc disorders', 'ICD10_2010'), +('M51.9', 'Intervertebral disc disorder, unspecified', 'ICD10_2010'), +('M53', 'Other dorsopathies, not elsewhere classified', 'ICD10_2010'), +('M53.0', 'Cervicocranial syndrome', 'ICD10_2010'), +('M53.00', 'Cervicocranial syndrome, multiple sites', 'ICD10_2010'), +('M53.01', 'Cervicocranial syndrome, occipito-atlanto-axial region', 'ICD10_2010'), +('M53.02', 'Cervicocranial syndrome, cervical region', 'ICD10_2010'), +('M53.03', 'Cervicocranial syndrome, cervicothoracic region', 'ICD10_2010'), +('M53.04', 'Cervicocranial syndrome, thoracic region', 'ICD10_2010'), +('M53.05', 'Cervicocranial syndrome, thoracolumbar region', 'ICD10_2010'), +('M53.06', 'Cervicocranial syndrome, lumbar region', 'ICD10_2010'), +('M53.07', 'Cervicocranial syndrome, lumbosacral region', 'ICD10_2010'), +('M53.08', 'Cervicocranial syndrome, sacral and sacrococcygeal region', 'ICD10_2010'), +('M53.09', 'Cervicocranial syndrome, site unspecified', 'ICD10_2010'), +('M53.1', 'Cervicobrachial syndrome', 'ICD10_2010'), +('M53.10', 'Cervicobrachial syndrome, multiple sites', 'ICD10_2010'), +('M53.11', 'Cervicobrachial syndrome, occipito-atlanto-axial region', 'ICD10_2010'), +('M53.12', 'Cervicobrachial syndrome, cervical region', 'ICD10_2010'), +('M53.13', 'Cervicobrachial syndrome, cervicothoracic region', 'ICD10_2010'), +('M53.14', 'Cervicobrachial syndrome, thoracic region', 'ICD10_2010'), +('M53.15', 'Cervicobrachial syndrome, thoracolumbar region', 'ICD10_2010'), +('M53.16', 'Cervicobrachial syndrome, lumbar region', 'ICD10_2010'), +('M53.17', 'Cervicobrachial syndrome, lumbosacral region', 'ICD10_2010'), +('M53.18', 'Cervicobrachial syndrome, sacral and sacrococcygeal region', 'ICD10_2010'), +('M53.19', 'Cervicobrachial syndrome, site unspecified', 'ICD10_2010'), +('M53.2', 'Spinal instabilities', 'ICD10_2010'), +('M53.20', 'Spinal instabilities, multiple sites', 'ICD10_2010'), +('M53.21', 'Spinal instabilities, occipito-atlanto-axial region', 'ICD10_2010'), +('M53.22', 'Spinal instabilities, cervical region', 'ICD10_2010'), +('M53.23', 'Spinal instabilities, cervicothoracic region', 'ICD10_2010'), +('M53.24', 'Spinal instabilities, thoracic region', 'ICD10_2010'), +('M53.25', 'Spinal instabilities, thoracolumbar region', 'ICD10_2010'), +('M53.26', 'Spinal instabilities, lumbar region', 'ICD10_2010'), +('M53.27', 'Spinal instabilities, lumbosacral region', 'ICD10_2010'), +('M53.28', 'Spinal instabilities, sacral and sacrococcygeal region', 'ICD10_2010'), +('M53.29', 'Spinal instabilities, site unspecified', 'ICD10_2010'), +('M53.3', 'Sacrococcygeal disorders, not elsewhere classified', 'ICD10_2010'), +('M53.30', 'Sacrococcygeal disorders, not elsewhere classified, multiple sites', 'ICD10_2010'), +('M53.31', 'Sacrococcygeal disorders, not elsewhere classified, occipito-atlanto-axial region', 'ICD10_2010'), +('M53.32', 'Sacrococcygeal disorders, not elsewhere classified, cervical region', 'ICD10_2010'), +('M53.33', 'Sacrococcygeal disorders, not elsewhere classified, cervicothoracic region', 'ICD10_2010'), +('M53.34', 'Sacrococcygeal disorders, not elsewhere classified, thoracic region', 'ICD10_2010'), +('M53.35', 'Sacrococcygeal disorders, not elsewhere classified, thoracolumbar region', 'ICD10_2010'), +('M53.36', 'Sacrococcygeal disorders, not elsewhere classified, lumbosacral region', 'ICD10_2010'), +('M53.37', 'Sacrococcygeal disorders, not elsewhere classified, sacral and sacrococcygeal region', 'ICD10_2010'), +('M53.38', 'Sacrococcygeal disorders, not elsewhere classified, sacral and sacrococcygeal region', 'ICD10_2010'), +('M53.39', 'Sacrococcygeal disorders, not elsewhere classified, site unspecified', 'ICD10_2010'), +('M53.8', 'Other specified dorsopathies', 'ICD10_2010'), +('M53.80', 'Other specified dorsopathies, multiple sites', 'ICD10_2010'), +('M53.81', 'Other specified dorsopathies, occipito-atlanto-axial region', 'ICD10_2010'), +('M53.82', 'Other specified dorsopathies, cervical region', 'ICD10_2010'), +('M53.83', 'Other specified dorsopathies, cervicothoracic region', 'ICD10_2010'), +('M53.84', 'Other specified dorsopathies, thoracic region', 'ICD10_2010'), +('M53.85', 'Other specified dorsopathies, thoracolumbar region', 'ICD10_2010'), +('M53.86', 'Other specified dorsopathies, lumbar region', 'ICD10_2010'), +('M53.87', 'Other specified dorsopathies, lumbosacral region', 'ICD10_2010'), +('M53.88', 'Other specified dorsopathies, sacral and sacrococcygeal region', 'ICD10_2010'), +('M53.89', 'Other specified dorsopathies, site unspecified', 'ICD10_2010'), +('M53.9', 'Dorsopathy, unspecified', 'ICD10_2010'), +('M53.90', 'Dorsopathy, unspecified, multiple sites', 'ICD10_2010'), +('M53.91', 'Dorsopathy, unspecified, occipito-atlanto-axial region', 'ICD10_2010'), +('M53.92', 'Dorsopathy, unspecified, cervical region', 'ICD10_2010'), +('M53.93', 'Dorsopathy, unspecified, cervicothoracic region', 'ICD10_2010'), +('M53.94', 'Dorsopathy, unspecified, thoracic region', 'ICD10_2010'), +('M53.95', 'Dorsopathy, unspecified, thoracolumbar region', 'ICD10_2010'), +('M53.96', 'Dorsopathy, unspecified, lumbar region', 'ICD10_2010'), +('M53.97', 'Dorsopathy, unspecified, lumbosacral region', 'ICD10_2010'), +('M53.98', 'Dorsopathy, unspecified, sacral and sacrococcygeal region', 'ICD10_2010'), +('M53.99', 'Dorsopathy, unspecified, site unspecified', 'ICD10_2010'), +('M54', 'Dorsalgia', 'ICD10_2010'), +('M54.0', 'Panniculitis affecting regions of neck and back', 'ICD10_2010'), +('M54.00', 'Panniculitis affecting regions of neck and back, multiple sites', 'ICD10_2010'), +('M54.01', 'Panniculitis affecting regions of neck and back, occipito-atlanto-axial region', 'ICD10_2010'), +('M54.02', 'Panniculitis affecting regions of neck and back, cervical region', 'ICD10_2010'), +('M54.03', 'Panniculitis affecting regions of neck and back, cervicothoracic region', 'ICD10_2010'), +('M54.04', 'Panniculitis affecting regions of neck and back, thoracic region', 'ICD10_2010'), +('M54.05', 'Panniculitis affecting regions of neck and back, thoracolumbar region', 'ICD10_2010'); +INSERT INTO `icd10` (`ID_ICD10`, `Diagnosa`, `Versi_ICD10`) VALUES +('M54.06', 'Panniculitis affecting regions of neck and back, lumbar region', 'ICD10_2010'), +('M54.07', 'Panniculitis affecting regions of neck and back, lumbosacral region', 'ICD10_2010'), +('M54.08', 'Panniculitis affecting regions of neck and back, sacral and sacrococcygeal region', 'ICD10_2010'), +('M54.09', 'Panniculitis affecting regions of neck and back, site unspecified', 'ICD10_2010'), +('M54.1', 'Radiculopathy', 'ICD10_2010'), +('M54.10', 'Radiculopathy, multiple sites', 'ICD10_2010'), +('M54.11', 'Radiculopathy, occipito-atlanto-axial region', 'ICD10_2010'), +('M54.12', 'Radiculopathy, cervical region', 'ICD10_2010'), +('M54.13', 'Radiculopathy, cervicothoracic region', 'ICD10_2010'), +('M54.14', 'Radiculopathy, thoracic region', 'ICD10_2010'), +('M54.15', 'Radiculopathy, thoracolumbar region', 'ICD10_2010'), +('M54.16', 'Radiculopathy, lumbar region', 'ICD10_2010'), +('M54.17', 'Radiculopathy, lumbosacral region', 'ICD10_2010'), +('M54.18', 'Radiculopathy, sacral and sacrococcygeal region', 'ICD10_2010'), +('M54.19', 'Radiculopathy, site unspecified', 'ICD10_2010'), +('M54.2', 'Cervicalgia', 'ICD10_2010'), +('M54.20', 'Cervicalgia, multiple sites', 'ICD10_2010'), +('M54.21', 'Cervicalgia, occipito-atlanto-axial region', 'ICD10_2010'), +('M54.22', 'Cervicalgia, cervical region', 'ICD10_2010'), +('M54.23', 'Cervicalgia, cervicothoracic region', 'ICD10_2010'), +('M54.24', 'Cervicalgia, thoracic region', 'ICD10_2010'), +('M54.25', 'Cervicalgia, thoracolumbar region', 'ICD10_2010'), +('M54.26', 'Cervicalgia, lumbar region', 'ICD10_2010'), +('M54.27', 'Cervicalgia, lumbosacral region', 'ICD10_2010'), +('M54.28', 'Cervicalgia, sacral and sacrococcygeal region', 'ICD10_2010'), +('M54.29', 'Cervicalgia, site unspecified', 'ICD10_2010'), +('M54.3', 'Sciatica', 'ICD10_2010'), +('M54.30', 'Sciatica, multiple sites', 'ICD10_2010'), +('M54.31', 'Sciatica, occipito-atlanto-axial region', 'ICD10_2010'), +('M54.32', 'Sciatica, cervical region', 'ICD10_2010'), +('M54.33', 'Sciatica, cervicothoracic region', 'ICD10_2010'), +('M54.34', 'Sciatica, thoracic region', 'ICD10_2010'), +('M54.35', 'Sciatica, thoracolumbar region', 'ICD10_2010'), +('M54.36', 'Sciatica, lumbar region', 'ICD10_2010'), +('M54.37', 'Sciatica, lumbosacral region', 'ICD10_2010'), +('M54.38', 'Sciatica, sacral and sacrococcygeal region', 'ICD10_2010'), +('M54.39', 'Sciatica, site unspecified', 'ICD10_2010'), +('M54.4', 'Lumbago with sciatica', 'ICD10_2010'), +('M54.40', 'Lumbago with sciatica, multiple sites', 'ICD10_2010'), +('M54.41', 'Lumbago with sciatica, occipito-atlanto-axial region', 'ICD10_2010'), +('M54.42', 'Lumbago with sciatica, cervical region', 'ICD10_2010'), +('M54.43', 'Lumbago with sciatica, cervicothoracic region', 'ICD10_2010'), +('M54.44', 'Lumbago with sciatica, thoracic region', 'ICD10_2010'), +('M54.45', 'Lumbago with sciatica, thoracolumbar region', 'ICD10_2010'), +('M54.46', 'Lumbago with sciatica, lumbar region', 'ICD10_2010'), +('M54.47', 'Lumbago with sciatica, lumbosacral region', 'ICD10_2010'), +('M54.48', 'Lumbago with sciatica, sacral and sacrococcygeal region', 'ICD10_2010'), +('M54.49', 'Lumbago with sciatica, site unspecified', 'ICD10_2010'), +('M54.5', 'Low back pain', 'ICD10_2010'), +('M54.50', 'Low back pain, multiple sites', 'ICD10_2010'), +('M54.51', 'Low back pain, occipito-atlanto-axial region', 'ICD10_2010'), +('M54.52', 'Low back pain, cervical region', 'ICD10_2010'), +('M54.53', 'Low back pain, cervicothoracic region', 'ICD10_2010'), +('M54.54', 'Low back pain, thoracic region', 'ICD10_2010'), +('M54.55', 'Low back pain, thoracolumbar region', 'ICD10_2010'), +('M54.56', 'Low back pain, lumbar region', 'ICD10_2010'), +('M54.57', 'Low back pain, lumbosacral region', 'ICD10_2010'), +('M54.58', 'Low back pain, sacral and sacrococcygeal region', 'ICD10_2010'), +('M54.59', 'Low back pain, site unspecified', 'ICD10_2010'), +('M54.6', 'Pain in thoracic spine', 'ICD10_2010'), +('M54.60', 'Pain in thoracic spine, multiple sites', 'ICD10_2010'), +('M54.61', 'Pain in thoracic spine, occipito-atlanto-axial region', 'ICD10_2010'), +('M54.62', 'Pain in thoracic spine, cervical region', 'ICD10_2010'), +('M54.63', 'Pain in thoracic spine, cervicothoracic region', 'ICD10_2010'), +('M54.64', 'Pain in thoracic spine, thoracic region', 'ICD10_2010'), +('M54.65', 'Pain in thoracic spine, thoracolumbar region', 'ICD10_2010'), +('M54.66', 'Pain in thoracic spine, lumbar region', 'ICD10_2010'), +('M54.67', 'Pain in thoracic spine, lumbosacral region', 'ICD10_2010'), +('M54.68', 'Pain in thoracic spine, sacral and sacrococcygeal region', 'ICD10_2010'), +('M54.69', 'Pain in thoracic spine, site unspecified', 'ICD10_2010'), +('M54.8', 'Other dorsalgia', 'ICD10_2010'), +('M54.80', 'Other dorsalgia, multiple sites', 'ICD10_2010'), +('M54.81', 'Other dorsalgia, occipito-atlanto-axial region', 'ICD10_2010'), +('M54.82', 'Other dorsalgia, cervical region', 'ICD10_2010'), +('M54.83', 'Other dorsalgia, cervicothoracic region', 'ICD10_2010'), +('M54.84', 'Other dorsalgia, thoracic region', 'ICD10_2010'), +('M54.85', 'Other dorsalgia, thoracolumbar region', 'ICD10_2010'), +('M54.86', 'Other dorsalgia, lumbar region', 'ICD10_2010'), +('M54.87', 'Other dorsalgia, lumbosacral region', 'ICD10_2010'), +('M54.88', 'Other dorsalgia, sacral and sacrococcygeal region', 'ICD10_2010'), +('M54.89', 'Other dorsalgia, site unspecified', 'ICD10_2010'), +('M54.9', 'Dorsalgia, unspecified', 'ICD10_2010'), +('M54.90', 'Dorsalgia, unspecified, multiple sites', 'ICD10_2010'), +('M54.91', 'Dorsalgia, unspecified, occipito-atlanto-axial region', 'ICD10_2010'), +('M54.92', 'Dorsalgia, unspecified, cervical region', 'ICD10_2010'), +('M54.93', 'Dorsalgia, unspecified, cervicothoracic region', 'ICD10_2010'), +('M54.94', 'Dorsalgia, unspecified, thoracic region', 'ICD10_2010'), +('M54.95', 'Dorsalgia, unspecified, thoracolumbar region', 'ICD10_2010'), +('M54.96', 'Dorsalgia, unspecified, lumbar region', 'ICD10_2010'), +('M54.97', 'Dorsalgia, unspecified, lumbosacral region', 'ICD10_2010'), +('M54.98', 'Dorsalgia, unspecified, sacral and sacrococcygeal region', 'ICD10_2010'), +('M54.99', 'Dorsalgia, unspecified, site unspecified', 'ICD10_2010'), +('M60', 'Myositis', 'ICD10_2010'), +('M60.0', 'Infective myositis', 'ICD10_2010'), +('M60.00', 'Infective myositis, mulitple sites', 'ICD10_2010'), +('M60.01', 'Infective myositis, shoulder', 'ICD10_2010'), +('M60.02', 'Infective myositis, upper arm', 'ICD10_2010'), +('M60.03', 'Infective myositis, forearm', 'ICD10_2010'), +('M60.04', 'Infective myositis, hand', 'ICD10_2010'), +('M60.05', 'Infective myositis, pelvic region and thigh', 'ICD10_2010'), +('M60.06', 'Infective myositis, lower leg', 'ICD10_2010'), +('M60.07', 'Infective myositis, ankle and foot', 'ICD10_2010'), +('M60.08', 'Infective myositis, other', 'ICD10_2010'), +('M60.09', 'Infective myositis, site unspecified', 'ICD10_2010'), +('M60.1', 'Interstitial myositis', 'ICD10_2010'), +('M60.10', 'Interstitial myositis, mulitple sites', 'ICD10_2010'), +('M60.11', 'Interstitial myositis, shoulder', 'ICD10_2010'), +('M60.12', 'Interstitial myositis, upper arm', 'ICD10_2010'), +('M60.13', 'Interstitial myositis, forearm', 'ICD10_2010'), +('M60.14', 'Interstitial myositis, hand', 'ICD10_2010'), +('M60.15', 'Interstitial myositis, pelvic region and thigh', 'ICD10_2010'), +('M60.16', 'Interstitial myositis, lower leg', 'ICD10_2010'), +('M60.17', 'Interstitial myositis, ankle and foot', 'ICD10_2010'), +('M60.18', 'Interstitial myositis, other', 'ICD10_2010'), +('M60.19', 'Interstitial myositis, site unspecified', 'ICD10_2010'), +('M60.2', 'Foreign body granuloma of soft tissue, not elsewhere classified', 'ICD10_2010'), +('M60.20', 'Foreign body graniloma of soft tissue, mulitple sites', 'ICD10_2010'), +('M60.21', 'Foreign body graniloma of soft tissue, shoulder', 'ICD10_2010'), +('M60.22', 'Foreign body graniloma of soft tissue, upper arm', 'ICD10_2010'), +('M60.23', 'Foreign body graniloma of soft tissue, forearm', 'ICD10_2010'), +('M60.24', 'Foreign body graniloma of soft tissue, hand', 'ICD10_2010'), +('M60.25', 'Foreign body granuloma of soft tissue, pelvic region and thigh', 'ICD10_2010'), +('M60.26', 'Foreign body graniloma of soft tissue, lower leg', 'ICD10_2010'), +('M60.27', 'Foreign body graniloma of soft tissue, ankle and foot', 'ICD10_2010'), +('M60.28', 'Foreign body granuloma of soft tissue, other', 'ICD10_2010'), +('M60.29', 'Foreign body granuloma of soft tissue, site unspecified', 'ICD10_2010'), +('M60.8', 'Other myositis', 'ICD10_2010'), +('M60.80', 'Other myositis, mulitple sites', 'ICD10_2010'), +('M60.81', 'Other myositis, shoulder', 'ICD10_2010'), +('M60.82', 'Other myositis, upper arm', 'ICD10_2010'), +('M60.83', 'Other myositis, forearm', 'ICD10_2010'), +('M60.84', 'Other myositis, hand', 'ICD10_2010'), +('M60.85', 'Other myositis, pelvic region and thigh', 'ICD10_2010'), +('M60.86', 'Other myositis, lower leg', 'ICD10_2010'), +('M60.87', 'Other myositis, ankle and foot', 'ICD10_2010'), +('M60.88', 'Other myositis, other', 'ICD10_2010'), +('M60.89', 'Other myositis, site unspecified', 'ICD10_2010'), +('M60.9', 'Myositis, unspecified', 'ICD10_2010'), +('M60.90', 'Myositis unspecified, mulitple sites', 'ICD10_2010'), +('M60.91', 'Myositis unspecified, shoulder', 'ICD10_2010'), +('M60.92', 'Myositis unspecified, upper arm', 'ICD10_2010'), +('M60.93', 'Myositis unspecified, forearm', 'ICD10_2010'), +('M60.94', 'Myositis unspecified, hand', 'ICD10_2010'), +('M60.95', 'Myositis unspecified, pelvic region and thigh', 'ICD10_2010'), +('M60.96', 'Myositis unspecified, lower leg', 'ICD10_2010'), +('M60.97', 'Myositis unspecified, ankle and foot', 'ICD10_2010'), +('M60.98', 'Myositis unspecified, other', 'ICD10_2010'), +('M60.99', 'Myositis unspecified, site unspecified', 'ICD10_2010'), +('M61', 'Calcification and ossification of muscle', 'ICD10_2010'), +('M61.0', 'Myositis ossificans traumatica', 'ICD10_2010'), +('M61.00', 'Myositis ossificans traumatica, mulitple sites', 'ICD10_2010'), +('M61.01', 'Myositis ossificans traumatica, shoulder', 'ICD10_2010'), +('M61.02', 'Myositis ossificans traumatica, upper arm', 'ICD10_2010'), +('M61.03', 'Myositis ossificans traumatica, forearm', 'ICD10_2010'), +('M61.04', 'Myositis ossificans traumatica, hand', 'ICD10_2010'), +('M61.05', 'Myositis ossificans traumatica, pelvic region and thigh', 'ICD10_2010'), +('M61.06', 'Myositis ossificans traumatica, lower leg', 'ICD10_2010'), +('M61.07', 'Myositis ossificans traumatica, ankle and foot', 'ICD10_2010'), +('M61.08', 'Myositis ossificans traumatica, other', 'ICD10_2010'), +('M61.09', 'Myositis ossificans traumatica, site unspecified', 'ICD10_2010'), +('M61.1', 'Myositis ossificans progressiva', 'ICD10_2010'), +('M61.10', 'Myositis ossificans progressiva, mulitple sites', 'ICD10_2010'), +('M61.11', 'Myositis ossificans progressiva, shoulder', 'ICD10_2010'), +('M61.12', 'Myositis ossificans progressiva, upper arm', 'ICD10_2010'), +('M61.13', 'Myositis ossificans progressiva, forearm', 'ICD10_2010'), +('M61.14', 'Myositis ossificans progressiva, hand', 'ICD10_2010'), +('M61.15', 'Myositis ossificans progressiva, pelvic region and thigh', 'ICD10_2010'), +('M61.16', 'Myositis ossificans progressiva, lower leg', 'ICD10_2010'), +('M61.17', 'Myositis ossificans progressiva, ankle and foot', 'ICD10_2010'), +('M61.18', 'Myositis ossificans progressiva, other', 'ICD10_2010'), +('M61.19', 'Myositis ossificans progressiva, site unspecified', 'ICD10_2010'), +('M61.2', 'Paralytic calcification and ossification of muscle', 'ICD10_2010'), +('M61.20', 'Paralytic calcification and ossifcation of muscle, mulitple sites', 'ICD10_2010'), +('M61.21', 'Paralytic calcification and ossifcation of muscle, shoulder', 'ICD10_2010'), +('M61.22', 'Paralytic calcification and ossifcation of muscle, upper arm', 'ICD10_2010'), +('M61.23', 'Paralytic calcification and ossifcation of muscle, forearm', 'ICD10_2010'), +('M61.24', 'Paralytic calcification and ossifcation of muscle, hand', 'ICD10_2010'), +('M61.25', 'Paralytic calcification and ossifcation of muscle, pelvic region and thigh', 'ICD10_2010'), +('M61.26', 'Paralytic calcification and ossifcation of muscle, lower leg', 'ICD10_2010'), +('M61.27', 'Paralytic calcification and ossifcation of muscle, ankle and foot', 'ICD10_2010'), +('M61.28', 'Paralytic calcification and ossifcation of muscle, other', 'ICD10_2010'), +('M61.29', 'Paralytic calcification and ossifcation of muscle, site unspecified', 'ICD10_2010'), +('M61.3', 'Calcification and ossification of muscles assoc with burns', 'ICD10_2010'), +('M61.30', 'Calcification and ossification of muscles assco with burns, multiple sites', 'ICD10_2010'), +('M61.31', 'Calcification and ossification of muscles assco with burns, shoulder', 'ICD10_2010'), +('M61.32', 'Calcification and ossification of muscles assco with burns, upper arm', 'ICD10_2010'), +('M61.33', 'Calcification and ossification of muscles assco with burns, forearm', 'ICD10_2010'), +('M61.34', 'Calcification and ossification of muscles assco with burns, hand', 'ICD10_2010'), +('M61.35', 'Calcification and ossification of muscles assco with burns, pelvic region and thigh', 'ICD10_2010'), +('M61.36', 'Calcification and ossification of muscles assco with burns, lower leg', 'ICD10_2010'), +('M61.37', 'Calcification and ossification of muscles assco with burns, ankle and foot', 'ICD10_2010'), +('M61.38', 'Calcification and ossification of muscles assco with burns, other', 'ICD10_2010'), +('M61.39', 'Calcification and ossification of muscles assco with burns, site unspecified', 'ICD10_2010'), +('M61.4', 'Other calcification of muscle', 'ICD10_2010'), +('M61.40', 'Other calcification of muscle, multiple sites', 'ICD10_2010'), +('M61.41', 'Other calcification of muscle, shoulder', 'ICD10_2010'), +('M61.42', 'Other calcification of muscle, upper arm', 'ICD10_2010'), +('M61.43', 'Other calcification of muscle, forearm', 'ICD10_2010'), +('M61.44', 'Other calcification of muscle, hand', 'ICD10_2010'), +('M61.45', 'Other calcification of muscle, pelvic region and thigh', 'ICD10_2010'), +('M61.46', 'Other calcification of muscle, lower leg', 'ICD10_2010'), +('M61.47', 'Other calcification of muscle, ankle and foot', 'ICD10_2010'), +('M61.48', 'Other calcification of muscle, other', 'ICD10_2010'), +('M61.49', 'Other calcification of muscle, site unspecified', 'ICD10_2010'), +('M61.5', 'Other ossification of muscle', 'ICD10_2010'), +('M61.50', 'Other ossification of muscle, multiple sites', 'ICD10_2010'), +('M61.51', 'Other ossification of muscle, shoulder', 'ICD10_2010'), +('M61.52', 'Other ossification of muscle, upper arm', 'ICD10_2010'), +('M61.53', 'Other ossification of muscle, forearm', 'ICD10_2010'), +('M61.54', 'Other ossification of muscle, hand', 'ICD10_2010'), +('M61.55', 'Other ossification of muscle, pelvic region and thigh', 'ICD10_2010'), +('M61.56', 'Other ossification of muscle, lower leg', 'ICD10_2010'), +('M61.57', 'Other ossification of muscle, ankle and foot', 'ICD10_2010'), +('M61.58', 'Other ossification of muscle, other', 'ICD10_2010'), +('M61.59', 'Other ossification of muscle, site unspecified', 'ICD10_2010'), +('M61.9', 'Calcification and ossification of muscle, unspecified', 'ICD10_2010'), +('M61.90', 'Calcification and ossification of muscle unspecified, multiple sites', 'ICD10_2010'), +('M61.91', 'Calcification and ossification of muscle unspecified, shoulder', 'ICD10_2010'), +('M61.92', 'Calcification and ossification of muscle unspecified, upper arm', 'ICD10_2010'), +('M61.93', 'Calcification and ossification of muscle unspecified, forearm', 'ICD10_2010'), +('M61.94', 'Calcification and ossification of muscle unspecified, hand', 'ICD10_2010'), +('M61.95', 'Calcification and ossification of muscle unspecified, pelvic region and thigh', 'ICD10_2010'), +('M61.96', 'Calcification and ossification of muscle unspecified, lower leg', 'ICD10_2010'), +('M61.97', 'Calcification and ossification of muscle unspecified, ankle and foot', 'ICD10_2010'), +('M61.98', 'Calcification and ossification of muscle unspecified, other', 'ICD10_2010'), +('M61.99', 'Calcification and ossification of muscle unspecified, site unspecified', 'ICD10_2010'), +('M62', 'Other disorders of muscle', 'ICD10_2010'), +('M62.0', 'Diastasis of muscle', 'ICD10_2010'), +('M62.00', 'Diastasis of muscle, mulitple sites', 'ICD10_2010'), +('M62.01', 'Diastasis of muscle, shoulder', 'ICD10_2010'), +('M62.02', 'Diastasis of muscle, upper arm', 'ICD10_2010'), +('M62.03', 'Diastasis of muscle, forearm', 'ICD10_2010'), +('M62.04', 'Diastasis of muscle, hand', 'ICD10_2010'), +('M62.05', 'Diastasis of muscle, pelvic region and thigh', 'ICD10_2010'), +('M62.06', 'Diastasis of muscle, lower leg', 'ICD10_2010'), +('M62.07', 'Diastasis of muscle, ankle and foot', 'ICD10_2010'), +('M62.08', 'Diastasis of muscle, other', 'ICD10_2010'), +('M62.09', 'Diastasis of muscle, site unspecified', 'ICD10_2010'), +('M62.1', 'Other rupture of muscle (nontraumatic)', 'ICD10_2010'), +('M62.10', 'Other rupture of muscle (nontraumatic), multiple sites', 'ICD10_2010'), +('M62.11', 'Other rupture of muscle (nontraumatic), shoulder', 'ICD10_2010'), +('M62.12', 'Other rupture of muscle (nontraumatic), upper arm', 'ICD10_2010'), +('M62.13', 'Other rupture of muscle (nontraumatic), forearm', 'ICD10_2010'), +('M62.14', 'Other rupture of muscle (nontraumatic), hand', 'ICD10_2010'), +('M62.15', 'Other rupture of muscle (nontraumatic), pelvic region and thigh', 'ICD10_2010'), +('M62.16', 'Other rupture of muscle (nontraumatic), lower leg', 'ICD10_2010'), +('M62.17', 'Other rupture of muscle (nontraumatic), ankle and foot', 'ICD10_2010'), +('M62.18', 'Other rupture of muscle (nontraumatic), other', 'ICD10_2010'), +('M62.19', 'Other rupture of muscle (nontraumatic), site unspecified', 'ICD10_2010'), +('M62.2', 'Ischaemic infarction of muscle', 'ICD10_2010'), +('M62.20', 'Ischaemic infarction of muscle, multiple sites', 'ICD10_2010'), +('M62.21', 'Ischaemic infarction of muscle, shoulder', 'ICD10_2010'), +('M62.22', 'Ischaemic infarction of muscle, upper arm', 'ICD10_2010'), +('M62.23', 'Ischaemic infarction of muscle, forearm', 'ICD10_2010'), +('M62.24', 'Ischaemic infarction of muscle, hand', 'ICD10_2010'), +('M62.25', 'Ischaemic infarction of muscle, pelvic region and thigh', 'ICD10_2010'), +('M62.26', 'Ischaemic infarction of muscle, lower leg', 'ICD10_2010'), +('M62.27', 'Ischaemic infarction of muscle, ankle and foot', 'ICD10_2010'), +('M62.28', 'Ischaemic infarction of muscle, other', 'ICD10_2010'), +('M62.29', 'Ischaemic infarction of muscle, site unspecified', 'ICD10_2010'), +('M62.3', 'Immobility syndrome (paraplegic)', 'ICD10_2010'), +('M62.30', 'Immobility syndrome (paraplegic), multiple sites', 'ICD10_2010'), +('M62.31', 'Immobility syndrome (paraplegic), shoulder', 'ICD10_2010'), +('M62.32', 'Immobility syndrome (paraplegic), upper arm', 'ICD10_2010'), +('M62.33', 'Immobility syndrome (paraplegic), forearm', 'ICD10_2010'), +('M62.34', 'Immobility syndrome (paraplegic), hand', 'ICD10_2010'), +('M62.35', 'Immobility syndrome (paraplegic), pelvic region and thigh', 'ICD10_2010'), +('M62.36', 'Immobility syndrome (paraplegic), lower leg', 'ICD10_2010'), +('M62.37', 'Immobility syndrome (paraplegic), ankle and foot', 'ICD10_2010'), +('M62.38', 'Immobility syndrome (paraplegic), other', 'ICD10_2010'), +('M62.39', 'Immobility syndrome (paraplegic), site unspecified', 'ICD10_2010'), +('M62.4', 'Contracture of muscle', 'ICD10_2010'), +('M62.40', 'Contracture of muscle, multiple sites', 'ICD10_2010'), +('M62.41', 'Contracture of muscle, shoulder', 'ICD10_2010'), +('M62.42', 'Contracture of muscle, upper arm', 'ICD10_2010'), +('M62.43', 'Contracture of muscle, forearm', 'ICD10_2010'), +('M62.44', 'Contracture of muscle, hand', 'ICD10_2010'), +('M62.45', 'Contracture of muscle, pelvic region and thigh', 'ICD10_2010'), +('M62.46', 'Contracture of muscle, lower leg', 'ICD10_2010'), +('M62.47', 'Contracture of muscle, ankle and foot', 'ICD10_2010'), +('M62.48', 'Contracture of muscle, other', 'ICD10_2010'), +('M62.49', 'Contracture of muscle, site unspecified', 'ICD10_2010'), +('M62.5', 'Muscle wasting and atrophy, not elsewhere classified', 'ICD10_2010'), +('M62.50', 'Muscle wasting and atrophy, multiple sites', 'ICD10_2010'), +('M62.51', 'Muscle wasting and atrophy, shoulder', 'ICD10_2010'), +('M62.52', 'Muscle wasting and atrophy, upper arm', 'ICD10_2010'), +('M62.53', 'Muscle wasting and atrophy, forearm', 'ICD10_2010'), +('M62.54', 'Muscle wasting and atrophy, hand', 'ICD10_2010'), +('M62.55', 'Muscle wasting and atrophy, pelvic region and thigh', 'ICD10_2010'), +('M62.56', 'Muscle wasting and atrophy, lower leg', 'ICD10_2010'), +('M62.57', 'Muscle wasting and atrophy, ankle and foot', 'ICD10_2010'), +('M62.58', 'Muscle wasting and atrophy, other', 'ICD10_2010'), +('M62.59', 'Muscle wasting and atrophy, site unspecified', 'ICD10_2010'), +('M62.6', 'Muscle strain', 'ICD10_2010'), +('M62.60', 'Muscle strain, multiple sites', 'ICD10_2010'), +('M62.61', 'Muscle strain, shoulder', 'ICD10_2010'), +('M62.62', 'Muscle strain, upper arm', 'ICD10_2010'), +('M62.63', 'Muscle strain, forearm', 'ICD10_2010'), +('M62.64', 'Muscle strain, hand', 'ICD10_2010'), +('M62.65', 'Muscle strain, pelvic region and thigh', 'ICD10_2010'), +('M62.66', 'Muscle strain, lower leg', 'ICD10_2010'), +('M62.67', 'Muscle strain, ankle and foot', 'ICD10_2010'), +('M62.68', 'Muscle strain, other', 'ICD10_2010'), +('M62.69', 'Muscle strain, site unspecified', 'ICD10_2010'), +('M62.8', 'Other specified disorders of muscle', 'ICD10_2010'), +('M62.80', 'Other specified disorders of muscle, multiple sites', 'ICD10_2010'), +('M62.81', 'Other specified disorders of muscle, shoulder', 'ICD10_2010'), +('M62.82', 'Other specified disorders of muscle, upper arm', 'ICD10_2010'), +('M62.83', 'Other specified disorders of muscle, forearm', 'ICD10_2010'), +('M62.84', 'Other specified disorders of muscle, hand', 'ICD10_2010'), +('M62.85', 'Other specified disorders of muscle, pelvic region and thigh', 'ICD10_2010'), +('M62.86', 'Other specified disorders of muscle, lower leg', 'ICD10_2010'), +('M62.87', 'Other specified disorders of muscle, ankle and foot', 'ICD10_2010'), +('M62.88', 'Other specified disorders of muscle, other', 'ICD10_2010'), +('M62.89', 'Other specified disorders of muscle, site unspecified', 'ICD10_2010'), +('M62.9', 'Disorder of muscle, unspecified', 'ICD10_2010'), +('M62.90', 'Disorder of muscle, unspecified, multiple sites', 'ICD10_2010'), +('M62.91', 'Disorder of muscle, unspecified, shoulder', 'ICD10_2010'), +('M62.92', 'Disorder of muscle, unspecified, upper arm', 'ICD10_2010'), +('M62.93', 'Disorder of muscle, unspecified, forearm', 'ICD10_2010'), +('M62.94', 'Disorder of muscle, unspecified, hand', 'ICD10_2010'), +('M62.95', 'Disorder of muscle, unspecified, pelvic region and thigh', 'ICD10_2010'), +('M62.96', 'Disorder of muscle, unspecified, lower leg', 'ICD10_2010'), +('M62.97', 'Disorder of muscle, unspecified, ankle and foot', 'ICD10_2010'), +('M62.98', 'Disorder of muscle, unspecified, other', 'ICD10_2010'), +('M62.99', 'Disorder of muscle, unspecified, site unspecified', 'ICD10_2010'), +('M63', 'Disorders of muscle in diseases classified elsewhere', 'ICD10_2010'), +('M63.0', 'Myositis in bacterial diseases classified elsewhere', 'ICD10_2010'), +('M63.1', 'Myositis in protozoal and parasitic infections classified elsewhere', 'ICD10_2010'), +('M63.2', 'Myositis in other infectious diseases classified elsewhere', 'ICD10_2010'), +('M63.3', 'Myositis in sarcoidosis', 'ICD10_2010'), +('M63.8', 'Other disorders of muscle in diseases classified elsewhere', 'ICD10_2010'), +('M65', 'Synovitis and tenosynovitis', 'ICD10_2010'), +('M65.0', 'Abscess of tendon sheath', 'ICD10_2010'), +('M65.00', 'Abscess of tendon sheath, multiple sites', 'ICD10_2010'), +('M65.01', 'Abscess of tendon sheath, shoulder region', 'ICD10_2010'), +('M65.02', 'Abscess of tendon sheath, upper arm', 'ICD10_2010'), +('M65.03', 'Abscess of tendon sheath, forearm', 'ICD10_2010'), +('M65.04', 'Abscess of tendon sheath, hand', 'ICD10_2010'), +('M65.05', 'Abscess of tendon sheath, pelvic and thigh', 'ICD10_2010'), +('M65.06', 'Abscess of tendon sheath, lower leg', 'ICD10_2010'), +('M65.07', 'Abscess of tendon sheath, ankle and foot', 'ICD10_2010'), +('M65.08', 'Abscess of tendon sheath, other', 'ICD10_2010'), +('M65.09', 'Abscess of tendon sheath, site unspecified', 'ICD10_2010'), +('M65.1', 'Other infective (teno)synovitis', 'ICD10_2010'), +('M65.10', 'Other infective (teno)synovitis, multiple sites', 'ICD10_2010'), +('M65.11', 'Other infective (teno)synovitis, shoulder region', 'ICD10_2010'), +('M65.12', 'Other infective (teno)synovitis, upper arm', 'ICD10_2010'), +('M65.13', 'Other infective (teno)synovitis, forearm', 'ICD10_2010'), +('M65.14', 'Other infective (teno)synovitis, hand', 'ICD10_2010'), +('M65.15', 'Other infective (teno)synovitis, pelvic and thigh', 'ICD10_2010'), +('M65.16', 'Other infective (teno)synovitis, lower leg', 'ICD10_2010'), +('M65.17', 'Other infective (teno)synovitis, ankle and foot', 'ICD10_2010'), +('M65.18', 'Other infective (teno)synovitis, other', 'ICD10_2010'), +('M65.19', 'Other infective (teno)synovitis, site unspecified', 'ICD10_2010'), +('M65.2', 'Calcific tendinitis', 'ICD10_2010'), +('M65.20', 'Calcific tendinitis, multiple sites', 'ICD10_2010'), +('M65.21', 'Calcific tendinitis, shoulder region', 'ICD10_2010'), +('M65.22', 'Calcific tendinitis, upper arm', 'ICD10_2010'), +('M65.23', 'Calcific tendinitis, forearm', 'ICD10_2010'), +('M65.24', 'Calcific tendinitis, hand', 'ICD10_2010'), +('M65.25', 'Calcific tendinitis, pelvic region and thigh', 'ICD10_2010'), +('M65.26', 'Calcific tendinitis, lower leg', 'ICD10_2010'), +('M65.27', 'Calcific tendinitis, ankle and foot', 'ICD10_2010'), +('M65.28', 'Calcific tendinitis, other', 'ICD10_2010'), +('M65.29', 'Calcific tendinitis, site unspecified', 'ICD10_2010'), +('M65.3', 'Trigger finger', 'ICD10_2010'), +('M65.30', 'Trigger finger, multiple sites', 'ICD10_2010'), +('M65.31', 'Trigger finger, shoulder region', 'ICD10_2010'), +('M65.32', 'Trigger finger, upper arm', 'ICD10_2010'), +('M65.33', 'Trigger finger, forearm', 'ICD10_2010'), +('M65.34', 'Trigger finger, hand', 'ICD10_2010'), +('M65.35', 'Trigger finger, pelvic region and thigh', 'ICD10_2010'), +('M65.36', 'Trigger finger, lower leg', 'ICD10_2010'), +('M65.37', 'Trigger finger, ankle and foot', 'ICD10_2010'), +('M65.38', 'Trigger finger, other', 'ICD10_2010'), +('M65.39', 'Trigger finger, site unspecified', 'ICD10_2010'), +('M65.4', 'Radial styloid tenosynovitis [de quervain]', 'ICD10_2010'), +('M65.40', 'Radial styloid tenosynovitis [de quervain], multiple sites', 'ICD10_2010'), +('M65.41', 'Radial styloid tenosynovitis [de quervain], shoulder region', 'ICD10_2010'), +('M65.42', 'Radial styloid tenosynovitis [de quervain], upper arm', 'ICD10_2010'), +('M65.43', 'Radial styloid tenosynovitis [de quervain], forearm', 'ICD10_2010'), +('M65.44', 'Radial styloid tenosynovitis [de quervain], hand', 'ICD10_2010'), +('M65.45', 'Radial styloid tenosynovitis [de quervain], pelvic region and thigh', 'ICD10_2010'), +('M65.46', 'Radial styloid tenosynovitis [de quervain], lower leg', 'ICD10_2010'), +('M65.47', 'Radial styloid tenosynovitis [de quervain], ankle and foot', 'ICD10_2010'), +('M65.48', 'Radial styloid tenosynovitis [de quervain], other', 'ICD10_2010'), +('M65.49', 'Radial styloid tenosynovitis [de quervain], site unspecified', 'ICD10_2010'), +('M65.8', 'Other synovitis and tenosynovitis', 'ICD10_2010'), +('M65.80', 'Other synovitis and tenosynovitis, multiple sites', 'ICD10_2010'), +('M65.81', 'Other synovitis and tenosynovitis, shoulder region', 'ICD10_2010'), +('M65.82', 'Other synovitis and tenosynovitis, upper arm', 'ICD10_2010'), +('M65.83', 'Other synovitis and tenosynovitis, forearm', 'ICD10_2010'), +('M65.84', 'Other synovitis and tenosynovitis, hand', 'ICD10_2010'), +('M65.85', 'Other synovitis and tenosynovitis, pelvic region and thigh', 'ICD10_2010'), +('M65.86', 'Other synovitis and tenosynovitis, lower leg', 'ICD10_2010'), +('M65.87', 'Other synovitis and tenosynovitis, ankle and foot', 'ICD10_2010'), +('M65.88', 'Other synovitis and tenosynovitis, other', 'ICD10_2010'), +('M65.89', 'Other synovitis and tenosynovitis, site unspecified', 'ICD10_2010'), +('M65.9', 'Synovitis and tenosynovitis, unspecified', 'ICD10_2010'), +('M65.90', 'Synovitis and tenosynovitis, unspecified, multiple sites', 'ICD10_2010'), +('M65.91', 'Synovitis and tenosynovitis, unspecified, shoulder region', 'ICD10_2010'), +('M65.92', 'Synovitis and tenosynovitis, unspecified, upper arm', 'ICD10_2010'), +('M65.93', 'Synovitis and tenosynovitis, unspecified, forearm', 'ICD10_2010'), +('M65.94', 'Synovitis and tenosynovitis, unspecified, hand', 'ICD10_2010'), +('M65.95', 'Synovitis and tenosynovitis, unspecified, pelvic region and thigh', 'ICD10_2010'), +('M65.96', 'Synovitis and tenosynovitis, unspecified, lower leg', 'ICD10_2010'), +('M65.97', 'Synovitis and tenosynovitis, unspecified, ankle and foot', 'ICD10_2010'), +('M65.98', 'Synovitis and tenosynovitis, unspecified, other', 'ICD10_2010'), +('M65.99', 'Synovitis and tenosynovitis, unspecified, site unspecified', 'ICD10_2010'), +('M66', 'Spontaneous rupture of synovium and tendon', 'ICD10_2010'), +('M66.0', 'Rupture of popliteal cyst', 'ICD10_2010'), +('M66.00', 'Rupture of popliteal cyst, multiple sites', 'ICD10_2010'), +('M66.01', 'Rupture of popliteal cyst, shoulder region', 'ICD10_2010'), +('M66.02', 'Rupture of popliteal cyst, upper arm', 'ICD10_2010'), +('M66.03', 'Rupture of popliteal cyst, forearm', 'ICD10_2010'), +('M66.04', 'Rupture of popliteal cyst, hand', 'ICD10_2010'), +('M66.05', 'Rupture of popliteal cyst, pelvic region and thigh', 'ICD10_2010'), +('M66.06', 'Rupture of popliteal cyst, lower leg', 'ICD10_2010'), +('M66.07', 'Rupture of popliteal cyst, ankle and foot', 'ICD10_2010'), +('M66.08', 'Rupture of popliteal cyst, other', 'ICD10_2010'), +('M66.09', 'Rupture of popliteal cyst, site unspecified', 'ICD10_2010'), +('M66.1', 'Rupture of synovium', 'ICD10_2010'), +('M66.10', 'Rupture of synovium, multiple sites', 'ICD10_2010'), +('M66.11', 'Rupture of synovium, shoulder region', 'ICD10_2010'), +('M66.12', 'Rupture of synovium, upper arm', 'ICD10_2010'), +('M66.13', 'Rupture of synovium, forearm', 'ICD10_2010'), +('M66.14', 'Rupture of synovium, hand', 'ICD10_2010'), +('M66.15', 'Rupture of synovium, pelvic region and thigh', 'ICD10_2010'), +('M66.16', 'Rupture of synovium, lower leg', 'ICD10_2010'), +('M66.17', 'Rupture of synovium, ankle and foot', 'ICD10_2010'), +('M66.18', 'Rupture of synovium, other', 'ICD10_2010'), +('M66.19', 'Rupture of synovium, site unspecified', 'ICD10_2010'), +('M66.2', 'Spontaneous rupture of extensor tendons', 'ICD10_2010'), +('M66.20', 'Spontaneous rupture of extensor tendons, multiple sites', 'ICD10_2010'), +('M66.21', 'Spontaneous rupture of extensor tendons, shoulder region', 'ICD10_2010'), +('M66.22', 'Spontaneous rupture of extensor tendons, upper arm', 'ICD10_2010'), +('M66.23', 'Spontaneous rupture of extensor tendons, forearm', 'ICD10_2010'), +('M66.24', 'Spontaneous rupture of extensor tendons, hand', 'ICD10_2010'), +('M66.25', 'Spontaneous rupture of extensor tendons, pelvic region and thigh', 'ICD10_2010'), +('M66.26', 'Spontaneous rupture of extensor tendons, lower leg', 'ICD10_2010'), +('M66.27', 'Spontaneous rupture of extensor tendons, ankle and foot', 'ICD10_2010'), +('M66.28', 'Spontaneous rupture of extensor tendons, other', 'ICD10_2010'), +('M66.29', 'Spontaneous rupture of extensor tendons, site unspecified', 'ICD10_2010'), +('M66.3', 'Spontaneous rupture of flexor tendons', 'ICD10_2010'), +('M66.30', 'Spontaneous rupture of flexor tendons, multiple sites', 'ICD10_2010'), +('M66.31', 'Spontaneous rupture of flexor tendons, shoulder region', 'ICD10_2010'), +('M66.32', 'Spontaneous rupture of flexor tendons, upper arm', 'ICD10_2010'), +('M66.33', 'Spontaneous rupture of flexor tendons, forearm', 'ICD10_2010'), +('M66.34', 'Spontaneous rupture of flexor tendons, hand', 'ICD10_2010'), +('M66.35', 'Spontaneous rupture of flexor tendons, pelvic region and thigh', 'ICD10_2010'), +('M66.36', 'Spontaneous rupture of flexor tendons, lower leg', 'ICD10_2010'), +('M66.37', 'Spontaneous rupture of flexor tendons, ankle and foot', 'ICD10_2010'), +('M66.38', 'Spontaneous rupture of flexor tendons, other', 'ICD10_2010'), +('M66.39', 'Spontaneous rupture of flexor tendons, site unspecified', 'ICD10_2010'), +('M66.4', 'Spontaneous rupture of other tendons', 'ICD10_2010'), +('M66.40', 'Spontaneous rupture of other tendons, multiple sites', 'ICD10_2010'), +('M66.41', 'Spontaneous rupture of other tendons, shoulder region', 'ICD10_2010'), +('M66.42', 'Spontaneous rupture of other tendons, upper arm', 'ICD10_2010'), +('M66.43', 'Spontaneous rupture of other tendons, forearm', 'ICD10_2010'), +('M66.44', 'Spontaneous rupture of other tendons, hand', 'ICD10_2010'), +('M66.45', 'Spontaneous rupture of other tendons, pelvic region and thigh', 'ICD10_2010'), +('M66.46', 'Spontaneous rupture of other tendons, lower leg', 'ICD10_2010'), +('M66.47', 'Spontaneous rupture of other tendons, ankle and foot', 'ICD10_2010'), +('M66.48', 'Spontaneous rupture of other tendons, other', 'ICD10_2010'), +('M66.49', 'Spontaneous rupture of other tendons, site unspecified', 'ICD10_2010'), +('M66.5', 'Spontaneous rupture of unspecified tendon', 'ICD10_2010'), +('M66.50', 'Spontaneous rupture of unspecified tendon, multiple sites', 'ICD10_2010'), +('M66.51', 'Spontaneous rupture of unspecified tendon, shoulder region', 'ICD10_2010'), +('M66.52', 'Spontaneous rupture of unspecified tendon, upper arm', 'ICD10_2010'), +('M66.53', 'Spontaneous rupture of unspecified tendon, forearm', 'ICD10_2010'), +('M66.54', 'Spontaneous rupture of unspecified tendon, hand', 'ICD10_2010'), +('M66.55', 'Spontaneous rupture of unspecified tendon, pelvic region and thigh', 'ICD10_2010'), +('M66.56', 'Spontaneous rupture of unspecified tendon, lower leg', 'ICD10_2010'), +('M66.57', 'Spontaneous rupture of unspecified tendon, ankle and foot', 'ICD10_2010'), +('M66.58', 'Spontaneous rupture of unspecified tendon, other', 'ICD10_2010'), +('M66.59', 'Spontaneous rupture of unspecified tendon, site unspecified', 'ICD10_2010'), +('M67', 'Other disorders of synovium and tendon', 'ICD10_2010'), +('M67.0', 'Short achilles tendon (acquired)', 'ICD10_2010'), +('M67.1', 'Other contracture of tendon (sheath)', 'ICD10_2010'), +('M67.2', 'Synovial hypertrophy, not elsewhere classified', 'ICD10_2010'), +('M67.3', 'Transient synovitis', 'ICD10_2010'), +('M67.4', 'Ganglion', 'ICD10_2010'), +('M67.8', 'Other specified disorders of synovium and tendon', 'ICD10_2010'), +('M67.9', 'Disorder of synovium and tendon, unspecified', 'ICD10_2010'), +('M68', 'Disorders of synovium and tendon in diseases classified elsewhere', 'ICD10_2010'), +('M68.0', 'Synovitis and tenosynovitis in bacterial diseases classified elsewhere', 'ICD10_2010'), +('M68.8', 'Other disorders of synovium and tendon in diseases classified elsewhere', 'ICD10_2010'), +('M70', 'Soft tissue disorders related to use, overuse and pressure', 'ICD10_2010'), +('M70.0', 'Chronic crepitant synovitis of hand and wrist', 'ICD10_2010'), +('M70.00', 'Chronic crepitant synovitis of hand and wrist, multiple sites', 'ICD10_2010'), +('M70.01', 'Chronic crepitant synovitis of hand and wrist, shoulder region', 'ICD10_2010'), +('M70.02', 'Chronic crepitant synovitis of hand and wrist, upper arm', 'ICD10_2010'), +('M70.03', 'Chronic crepitant synovitis of hand and wrist, forearm', 'ICD10_2010'), +('M70.04', 'Chronic crepitant synovitis of hand and wrist, hand', 'ICD10_2010'), +('M70.05', 'Chronic crepitant synovitis of hand and wrist, pelvic region and thigh', 'ICD10_2010'), +('M70.06', 'Chronic crepitant synovitis of hand and wrist, lower leg', 'ICD10_2010'), +('M70.07', 'Chronic crepitant synovitis of hand and wrist, ankle and foot', 'ICD10_2010'), +('M70.08', 'Chronic crepitant synovitis of hand and wrist, other', 'ICD10_2010'), +('M70.09', 'Chronic crepitant synovitis of hand and wrist, site unspecified', 'ICD10_2010'), +('M70.1', 'Bursitis of hand', 'ICD10_2010'), +('M70.10', 'Bursitis of hand, multiple sites', 'ICD10_2010'), +('M70.11', 'Bursitis of hand, shoulder region', 'ICD10_2010'), +('M70.12', 'Bursitis of hand, upper arm', 'ICD10_2010'), +('M70.13', 'Bursitis of hand, forearm', 'ICD10_2010'), +('M70.14', 'Bursitis of hand, hand', 'ICD10_2010'), +('M70.15', 'Bursitis of hand, pelvic region and thigh', 'ICD10_2010'), +('M70.16', 'Bursitis of hand, lower leg', 'ICD10_2010'), +('M70.17', 'Bursitis of hand, ankle and foot', 'ICD10_2010'), +('M70.18', 'Bursitis of hand, other', 'ICD10_2010'), +('M70.19', 'Bursitis of hand, site unspecified', 'ICD10_2010'), +('M70.2', 'Olecranon bursitis', 'ICD10_2010'), +('M70.20', 'Olecranon bursitis, multiple sites', 'ICD10_2010'), +('M70.21', 'Olecranon bursitis, shoulder region', 'ICD10_2010'), +('M70.22', 'Olecranon bursitis, upper arm', 'ICD10_2010'), +('M70.23', 'Olecranon bursitis, forearm', 'ICD10_2010'), +('M70.24', 'Olecranon bursitis, hand', 'ICD10_2010'), +('M70.25', 'Olecranon bursitis, pelvic region and thigh', 'ICD10_2010'), +('M70.26', 'Olecranon bursitis, lower leg', 'ICD10_2010'), +('M70.27', 'Olecranon bursitis, ankle and foot', 'ICD10_2010'), +('M70.28', 'Olecranon bursitis, other', 'ICD10_2010'), +('M70.29', 'Olecranon bursitis, site unspecified', 'ICD10_2010'), +('M70.3', 'Other bursitis of elbow', 'ICD10_2010'), +('M70.30', 'Other bursitis of elbow, multiple sites', 'ICD10_2010'), +('M70.31', 'Other bursitis of elbow, shoulder region', 'ICD10_2010'), +('M70.32', 'Other bursitis of elbow, upper arm', 'ICD10_2010'), +('M70.33', 'Other bursitis of elbow, forearm', 'ICD10_2010'), +('M70.34', 'Other bursitis of elbow, hand', 'ICD10_2010'), +('M70.35', 'Other bursitis of elbow, pelvic region and thigh', 'ICD10_2010'), +('M70.36', 'Other bursitis of elbow, lower leg', 'ICD10_2010'), +('M70.37', 'Other bursitis of elbow, ankle and foot', 'ICD10_2010'), +('M70.38', 'Other bursitis of elbow, other', 'ICD10_2010'), +('M70.39', 'Other bursitis of elbow, site unspecified', 'ICD10_2010'), +('M70.4', 'Prepatellar bursitis', 'ICD10_2010'), +('M70.40', 'Prepatellar bursitis, multiple sites', 'ICD10_2010'), +('M70.41', 'Prepatellar bursitis, shoulder region', 'ICD10_2010'), +('M70.42', 'Prepatellar bursitis, upper arm', 'ICD10_2010'), +('M70.43', 'Prepatellar bursitis, forearm', 'ICD10_2010'), +('M70.44', 'Prepatellar bursitis, hand', 'ICD10_2010'), +('M70.45', 'Prepatellar bursitis, pelvic region and thigh', 'ICD10_2010'), +('M70.46', 'Prepatellar bursitis, lower leg', 'ICD10_2010'), +('M70.47', 'Prepatellar bursitis, ankle and foot', 'ICD10_2010'), +('M70.48', 'Prepatellar bursitis, other', 'ICD10_2010'), +('M70.49', 'Prepatellar bursitis, site unspecified', 'ICD10_2010'), +('M70.5', 'Other bursitis of knee', 'ICD10_2010'), +('M70.50', 'Other bursitis of knee, multiple sites', 'ICD10_2010'), +('M70.51', 'Other bursitis of knee, shoulder region', 'ICD10_2010'), +('M70.52', 'Other bursitis of knee, upper arm', 'ICD10_2010'), +('M70.53', 'Other bursitis of knee, forearm', 'ICD10_2010'), +('M70.54', 'Other bursitis of knee, hand', 'ICD10_2010'), +('M70.55', 'Other bursitis of knee, pelvic region and thigh', 'ICD10_2010'), +('M70.56', 'Other bursitis of knee, lower leg', 'ICD10_2010'), +('M70.57', 'Other bursitis of knee, ankle and foot', 'ICD10_2010'), +('M70.58', 'Other bursitis of knee, other', 'ICD10_2010'), +('M70.59', 'Other bursitis of knee, site unspecified', 'ICD10_2010'), +('M70.6', 'Trochanteric bursitis', 'ICD10_2010'), +('M70.60', 'Trochanteric bursitis, multiple sites', 'ICD10_2010'), +('M70.61', 'Trochanteric bursitis, shoulder region', 'ICD10_2010'), +('M70.62', 'Trochanteric bursitis, upper arm', 'ICD10_2010'), +('M70.63', 'Trochanteric bursitis, forearm', 'ICD10_2010'), +('M70.64', 'Trochanteric bursitis, hand', 'ICD10_2010'), +('M70.65', 'Trochanteric bursitis, pelvic region and thigh', 'ICD10_2010'), +('M70.66', 'Trochanteric bursitis, lower leg', 'ICD10_2010'), +('M70.67', 'Trochanteric bursitis, ankle and foot', 'ICD10_2010'), +('M70.68', 'Trochanteric bursitis, other', 'ICD10_2010'), +('M70.69', 'Trochanteric bursitis, site unspecified', 'ICD10_2010'), +('M70.7', 'Other bursitis of hip', 'ICD10_2010'), +('M70.70', 'Other bursitis of hip, multiple sites', 'ICD10_2010'), +('M70.71', 'Other bursitis of hip, shoulder region', 'ICD10_2010'), +('M70.72', 'Other bursitis of hip, upper arm', 'ICD10_2010'), +('M70.73', 'Other bursitis of hip, forearm', 'ICD10_2010'), +('M70.74', 'Other bursitis of hip, hand', 'ICD10_2010'), +('M70.75', 'Other bursitis of hip, pelvic region and thigh', 'ICD10_2010'), +('M70.76', 'Other bursitis of hip, lower leg', 'ICD10_2010'), +('M70.77', 'Other bursitis of hip, ankle and foot', 'ICD10_2010'), +('M70.78', 'Other bursitis of hip, other', 'ICD10_2010'), +('M70.79', 'Other bursitis of hip, site unspecified', 'ICD10_2010'), +('M70.8', 'Other soft tissue disorder related to use overuse and pressure', 'ICD10_2010'), +('M70.80', 'Other soft tissue disorder related to use overuse and pressure, multiple sites', 'ICD10_2010'), +('M70.81', 'Other soft tissue disorder related to use overuse and pressure, shoulder region', 'ICD10_2010'), +('M70.82', 'Other soft tissue disorder related to use overuse and pressure, upper arm', 'ICD10_2010'), +('M70.83', 'Other soft tissue disorder related to use overuse and pressure, forearm', 'ICD10_2010'), +('M70.84', 'Other soft tissue disorder related to use overuse and pressure, hand', 'ICD10_2010'), +('M70.85', 'Other soft tissue disorder related to use overuse and pressure, pelvic region and thigh', 'ICD10_2010'), +('M70.86', 'Other soft tissue disorder related to use overuse and pressure, lower leg', 'ICD10_2010'), +('M70.87', 'Other soft tissue disorder related to use overuse and pressure, ankle and foot', 'ICD10_2010'), +('M70.88', 'Other soft tissue disorder related to use overuse and pressure, other', 'ICD10_2010'), +('M70.89', 'Other soft tissue disorder related to use overuse and pressure, site unspecified', 'ICD10_2010'), +('M70.9', 'Unspecified soft tissue disorder related to use overuse and pressure', 'ICD10_2010'), +('M70.90', 'Unspecified soft tissue disorder related to use overuse and pressure, multiple sites', 'ICD10_2010'), +('M70.91', 'Unspecified soft tissue disorder related to use overuse and pressure, shoulder region', 'ICD10_2010'), +('M70.92', 'Unspecified soft tissue disorder related to use overuse and pressure, upper arm', 'ICD10_2010'), +('M70.93', 'Unspecified soft tissue disorder related to use overuse and pressure, forearm', 'ICD10_2010'), +('M70.94', 'Unspecified soft tissue disorder related to use overuse and pressure, hand', 'ICD10_2010'), +('M70.95', 'Unspecified soft tissue disorder related to use overuse and pressure, pelvic region and thigh', 'ICD10_2010'), +('M70.96', 'Unspecified soft tissue disorder related to use overuse and pressure, lower leg', 'ICD10_2010'), +('M70.97', 'Unspecified soft tissue disorder related to use overuse and pressure, ankle and foot', 'ICD10_2010'), +('M70.98', 'Unspecified soft tissue disorder related to use overuse and pressure, other', 'ICD10_2010'), +('M70.99', 'Unspecified soft tissue disorder related to use overuse and pressure, site unspecified', 'ICD10_2010'), +('M71', 'Other bursopathies', 'ICD10_2010'), +('M71.0', 'Abscess of bursa', 'ICD10_2010'), +('M71.00', 'Abscess of bursa, multiple sites', 'ICD10_2010'), +('M71.01', 'Abscess of bursa, shoulder region', 'ICD10_2010'), +('M71.02', 'Abscess of bursa, upper arm', 'ICD10_2010'), +('M71.03', 'Abscess of bursa, forearm', 'ICD10_2010'), +('M71.04', 'Abscess of bursa, hand', 'ICD10_2010'), +('M71.05', 'Abscess of bursa, pelvic region and thigh', 'ICD10_2010'), +('M71.06', 'Abscess of bursa, lower leg', 'ICD10_2010'), +('M71.07', 'Abscess of bursa, ankle and foot', 'ICD10_2010'), +('M71.08', 'Abscess of bursa, other', 'ICD10_2010'), +('M71.09', 'Abscess of bursa, site unspecified', 'ICD10_2010'), +('M71.1', 'Other infective bursitis', 'ICD10_2010'), +('M71.10', 'Other infective bursitis, multiple sites', 'ICD10_2010'), +('M71.11', 'Other infective bursitis, shoulder region', 'ICD10_2010'), +('M71.12', 'Other infective bursitis, upper arm', 'ICD10_2010'), +('M71.13', 'Other infective bursitis, forearm', 'ICD10_2010'), +('M71.14', 'Other infective bursitis, hand', 'ICD10_2010'), +('M71.15', 'Other infective bursitis, pelvic region and thigh', 'ICD10_2010'), +('M71.16', 'Other infective bursitis, lower leg', 'ICD10_2010'), +('M71.17', 'Other infective bursitis, ankle and foot', 'ICD10_2010'), +('M71.18', 'Other infective bursitis, other', 'ICD10_2010'), +('M71.19', 'Other infective bursitis, site unspecified', 'ICD10_2010'), +('M71.2', 'Synovial cyst of popliteal space [baker]', 'ICD10_2010'), +('M71.20', 'Synovial cyst of popliteal space [Baker], multiple sites', 'ICD10_2010'), +('M71.21', 'Synovial cyst of popliteal space [Baker], shoulder region', 'ICD10_2010'), +('M71.22', 'Synovial cyst of popliteal space [Baker], upper arm', 'ICD10_2010'), +('M71.23', 'Synovial cyst of popliteal space [Baker], forearm', 'ICD10_2010'), +('M71.24', 'Synovial cyst of popliteal space [Baker], hand', 'ICD10_2010'), +('M71.25', 'Synovial cyst of popliteal space [Baker], pelvic region and thigh', 'ICD10_2010'), +('M71.26', 'Synovial cyst of popliteal space [Baker], lower leg', 'ICD10_2010'), +('M71.27', 'Synovial cyst of popliteal space [Baker], ankle and foot', 'ICD10_2010'), +('M71.28', 'Synovial cyst of popliteal space [Baker], other', 'ICD10_2010'), +('M71.29', 'Synovial cyst of popliteal space [Baker], site unspecified', 'ICD10_2010'), +('M71.3', 'Other bursal cyst', 'ICD10_2010'), +('M71.30', 'Other bursal cyst, multiple sites', 'ICD10_2010'), +('M71.31', 'Other bursal cyst, shoulder region', 'ICD10_2010'), +('M71.32', 'Other bursal cyst, upper arm', 'ICD10_2010'), +('M71.33', 'Other bursal cyst, forearm', 'ICD10_2010'), +('M71.34', 'Other bursal cyst, hand', 'ICD10_2010'), +('M71.35', 'Other bursal cyst, pelvic region and thigh', 'ICD10_2010'), +('M71.36', 'Other bursal cyst, lower leg', 'ICD10_2010'), +('M71.37', 'Other bursal cyst, ankle and foot', 'ICD10_2010'), +('M71.38', 'Other bursal cyst, other', 'ICD10_2010'), +('M71.39', 'Other bursal cyst, site unspecified', 'ICD10_2010'), +('M71.4', 'Calcium deposit in bursa', 'ICD10_2010'), +('M71.40', 'Calcium deposit in bursa, multiple sites', 'ICD10_2010'), +('M71.42', 'Calcium deposit in bursa, upper arm', 'ICD10_2010'), +('M71.43', 'Calcium deposit in bursa, forearm', 'ICD10_2010'), +('M71.44', 'Calcium deposit in bursa, hand', 'ICD10_2010'), +('M71.45', 'Calcium deposit in bursa, pelvic region and thigh', 'ICD10_2010'), +('M71.46', 'Calcium deposit in bursa, lower leg', 'ICD10_2010'), +('M71.47', 'Calcium deposit in bursa, ankle and foot', 'ICD10_2010'), +('M71.48', 'Calcium deposit in bursa, other', 'ICD10_2010'), +('M71.49', 'Calcium deposit in bursa, site unspecified', 'ICD10_2010'), +('M71.5', 'Other bursitis, not elsewhere classified', 'ICD10_2010'), +('M71.50', 'Other bursitis, not elsewhere classified, multiple sites', 'ICD10_2010'), +('M71.52', 'Other bursitis, not elsewhere classified, upper arm', 'ICD10_2010'), +('M71.53', 'Other bursitis, not elsewhere classified, forearm', 'ICD10_2010'), +('M71.54', 'Other bursitis, not elsewhere classified, hand', 'ICD10_2010'), +('M71.55', 'Other bursitis, not elsewhere classified, pelvic region and thigh', 'ICD10_2010'), +('M71.56', 'Other bursitis, not elsewhere classified, lower leg', 'ICD10_2010'), +('M71.57', 'Other bursitis, not elsewhere classified, ankle and foot', 'ICD10_2010'), +('M71.58', 'Other bursitis, not elsewhere classified, other', 'ICD10_2010'), +('M71.59', 'Other bursitis, not elsewhere classified, site unspecified', 'ICD10_2010'), +('M71.8', 'Other specified bursopathies', 'ICD10_2010'), +('M71.80', 'Other specified bursopathies, multiple sites', 'ICD10_2010'), +('M71.81', 'Other specified bursopathies, shoulder region', 'ICD10_2010'), +('M71.82', 'Other specified bursopathies, upper arm', 'ICD10_2010'), +('M71.83', 'Other specified bursopathies, forearm', 'ICD10_2010'), +('M71.84', 'Other specified bursopathies, hand', 'ICD10_2010'), +('M71.85', 'Other specified bursopathies, pelvic region and thigh', 'ICD10_2010'), +('M71.86', 'Other specified bursopathies, lower leg', 'ICD10_2010'), +('M71.87', 'Other specified bursopathies, ankle and foot', 'ICD10_2010'), +('M71.88', 'Other specified bursopathies, other', 'ICD10_2010'), +('M71.89', 'Other specified bursopathies, site unspecified', 'ICD10_2010'), +('M71.9', 'Bursopathy, unspecified', 'ICD10_2010'), +('M71.90', 'Bursopathy, unspecified, multiple sites', 'ICD10_2010'), +('M71.91', 'Bursopathy, unspecified, shoulder region', 'ICD10_2010'), +('M71.92', 'Bursopathy, unspecified, upper arm', 'ICD10_2010'), +('M71.93', 'Bursopathy, unspecified, forearm', 'ICD10_2010'), +('M71.94', 'Bursopathy, unspecified, hand', 'ICD10_2010'), +('M71.95', 'Bursopathy, unspecified, pelvic region and thigh', 'ICD10_2010'), +('M71.96', 'Bursopathy, unspecified, lower leg', 'ICD10_2010'), +('M71.97', 'Bursopathy, unspecified, ankle and foot', 'ICD10_2010'), +('M71.98', 'Bursopathy, unspecified, other', 'ICD10_2010'), +('M71.99', 'Bursopathy, unspecified, site unspecified', 'ICD10_2010'), +('M72', 'Fibroblastic disorders', 'ICD10_2010'), +('M72.0', 'Palmar fascial fibromatosis [dupuytren]', 'ICD10_2010'), +('M72.00', 'Palmar fascial fibromatosis [Dupuytren], multiple sites', 'ICD10_2010'), +('M72.01', 'Palmar fascial fibromatosis [Dupuytren], shoulder region', 'ICD10_2010'), +('M72.02', 'Palmar fascial fibromatosis [Dupuytren], upper arm', 'ICD10_2010'), +('M72.03', 'Palmar fascial fibromatosis [Dupuytren], forearm', 'ICD10_2010'), +('M72.04', 'Palmar fascial fibromatosis [Dupuytren], hand', 'ICD10_2010'), +('M72.05', 'Palmar fascial fibromatosis [Dupuytren], pelvic region and thigh', 'ICD10_2010'), +('M72.06', 'Palmar fascial fibromatosis [Dupuytren], lower leg', 'ICD10_2010'), +('M72.07', 'Palmar fascial fibromatosis [Dupuytren], ankle and foot', 'ICD10_2010'), +('M72.08', 'Palmar fascial fibromatosis [Dupuytren], other', 'ICD10_2010'), +('M72.09', 'Palmar fascial fibromatosis [Dupuytren], site unspecified', 'ICD10_2010'), +('M72.1', 'Knuckle pads', 'ICD10_2010'), +('M72.10', 'Knuckle pads, multiple sites', 'ICD10_2010'), +('M72.11', 'Knuckle pads, shoulder region', 'ICD10_2010'), +('M72.12', 'Knuckle pads, upper arm', 'ICD10_2010'), +('M72.13', 'Knuckle pads, forearm', 'ICD10_2010'), +('M72.14', 'Knuckle pads, hand', 'ICD10_2010'), +('M72.15', 'Knuckle pads, pelvic region and thigh', 'ICD10_2010'), +('M72.16', 'Knuckle pads, lower leg', 'ICD10_2010'), +('M72.17', 'Knuckle pads, ankle and foot', 'ICD10_2010'), +('M72.18', 'Knuckle pads, other', 'ICD10_2010'), +('M72.19', 'Knuckle pads, site unspecified', 'ICD10_2010'), +('M72.2', 'Plantar fascial fibromatosis', 'ICD10_2010'), +('M72.20', 'Plantar fascial fibromatosis, multiple sites', 'ICD10_2010'), +('M72.21', 'Plantar fascial fibromatosis, shoulder region', 'ICD10_2010'), +('M72.22', 'Plantar fascial fibromatosis, upper arm', 'ICD10_2010'), +('M72.23', 'Plantar fascial fibromatosis, forearm', 'ICD10_2010'), +('M72.24', 'Plantar fascial fibromatosis, hand', 'ICD10_2010'), +('M72.25', 'Plantar fascial fibromatosis, pelvic region and thigh', 'ICD10_2010'), +('M72.26', 'Plantar fascial fibromatosis, lower leg', 'ICD10_2010'), +('M72.27', 'Plantar fascial fibromatosis, ankle and foot', 'ICD10_2010'), +('M72.28', 'Plantar fascial fibromatosis, other', 'ICD10_2010'), +('M72.29', 'Plantar fascial fibromatosis, site unspecified', 'ICD10_2010'), +('M72.4', 'Pseudosarcomatous fibromatosis', 'ICD10_2010'), +('M72.40', 'Pseudosarcomatous fibromatosis, multiple sites', 'ICD10_2010'); +INSERT INTO `icd10` (`ID_ICD10`, `Diagnosa`, `Versi_ICD10`) VALUES +('M72.41', 'Pseudosarcomatous fibromatosis, shoulder region', 'ICD10_2010'), +('M72.42', 'Pseudosarcomatous fibromatosis, upper arm', 'ICD10_2010'), +('M72.43', 'Pseudosarcomatous fibromatosis, forearm', 'ICD10_2010'), +('M72.44', 'Pseudosarcomatous fibromatosis, hand', 'ICD10_2010'), +('M72.45', 'Pseudosarcomatous fibromatosis, pelvic region and thigh', 'ICD10_2010'), +('M72.46', 'Pseudosarcomatous fibromatosis, lower leg', 'ICD10_2010'), +('M72.47', 'Pseudosarcomatous fibromatosis, ankle and foot', 'ICD10_2010'), +('M72.48', 'Pseudosarcomatous fibromatosis, other', 'ICD10_2010'), +('M72.49', 'Pseudosarcomatous fibromatosis, site unspecified', 'ICD10_2010'), +('M72.5', 'Fasciitis, not elsewhere classified', 'ICD10_2010'), +('M72.50', 'Fasciitis, not elsewhere classified, multiple sites', 'ICD10_2010'), +('M72.51', 'Fasciitis, not elsewhere classified, shoulder region', 'ICD10_2010'), +('M72.52', 'Fasciitis, not elsewhere classified, upper arm', 'ICD10_2010'), +('M72.53', 'Fasciitis, not elsewhere classified, forearm', 'ICD10_2010'), +('M72.54', 'Fasciitis, not elsewhere classified, hand', 'ICD10_2010'), +('M72.55', 'Fasciitis, not elsewhere classified, pelvic region and thigh', 'ICD10_2010'), +('M72.56', 'Fasciitis, not elsewhere classified, lower leg', 'ICD10_2010'), +('M72.57', 'Fasciitis, not elsewhere classified, ankle and foot', 'ICD10_2010'), +('M72.58', 'Fasciitis, not elsewhere classified, other', 'ICD10_2010'), +('M72.59', 'Fasciitis, not elsewhere classified, site unspecified', 'ICD10_2010'), +('M72.6', 'Necrotizing fasciitis', 'ICD10_2010'), +('M72.60', 'Necrotizing fasciitis, multiple sites', 'ICD10_2010'), +('M72.61', 'Necrotizing fasciitis, shoulder region', 'ICD10_2010'), +('M72.62', 'Necrotizing fasciitis, upper arm', 'ICD10_2010'), +('M72.63', 'Necrotizing fasciitis, forearm', 'ICD10_2010'), +('M72.64', 'Necrotizing fasciitis, hand', 'ICD10_2010'), +('M72.65', 'Necrotizing fasciitis, pelvic region and thigh', 'ICD10_2010'), +('M72.66', 'Necrotizing fasciitis, lower leg', 'ICD10_2010'), +('M72.67', 'Necrotizing fasciitis, ankle and foot', 'ICD10_2010'), +('M72.68', 'Necrotizing fasciitis, other', 'ICD10_2010'), +('M72.69', 'Necrotizing fasciitis, site unspecified', 'ICD10_2010'), +('M72.8', 'Other fibroblastic disorders', 'ICD10_2010'), +('M72.80', 'Other fibroblastic disorders, multiple sites', 'ICD10_2010'), +('M72.81', 'Other fibroblastic disorders, shoulder region', 'ICD10_2010'), +('M72.82', 'Other fibroblastic disorders, upper arm', 'ICD10_2010'), +('M72.83', 'Other fibroblastic disorders, forearm', 'ICD10_2010'), +('M72.84', 'Other fibroblastic disorders, hand', 'ICD10_2010'), +('M72.85', 'Other fibroblastic disorders, pelvic region and thigh', 'ICD10_2010'), +('M72.86', 'Other fibroblastic disorders, lower leg', 'ICD10_2010'), +('M72.87', 'Other fibroblastic disorders, ankle and foot', 'ICD10_2010'), +('M72.88', 'Other fibroblastic disorders, other', 'ICD10_2010'), +('M72.89', 'Other fibroblastic disorders, site unspecified', 'ICD10_2010'), +('M72.9', 'Fibroblastic disorder, unspecified', 'ICD10_2010'), +('M72.90', 'Fibroblastic disorder, unspecified, multiple sites', 'ICD10_2010'), +('M72.91', 'Fibroblastic disorder, unspecified, shoulder region', 'ICD10_2010'), +('M72.92', 'Fibroblastic disorder, unspecified, upper arm', 'ICD10_2010'), +('M72.93', 'Fibroblastic disorder, unspecified, forearm', 'ICD10_2010'), +('M72.94', 'Fibroblastic disorder, unspecified, hand', 'ICD10_2010'), +('M72.95', 'Fibroblastic disorder, unspecified, pelvic region and thigh', 'ICD10_2010'), +('M72.96', 'Fibroblastic disorder, unspecified, lower leg', 'ICD10_2010'), +('M72.97', 'Fibroblastic disorder, unspecified, ankle and foot', 'ICD10_2010'), +('M72.98', 'Fibroblastic disorder, unspecified, other', 'ICD10_2010'), +('M72.99', 'Fibroblastic disorder, unspecified, site unspecified', 'ICD10_2010'), +('M73', 'Soft tissue disorders in diseases classified elsewhere', 'ICD10_2010'), +('M73.0', 'Gonococcal bursitis', 'ICD10_2010'), +('M73.00', 'Gonococcal bursitis, multiple sites', 'ICD10_2010'), +('M73.01', 'Gonococcal bursitis, shoulder region', 'ICD10_2010'), +('M73.02', 'Gonococcal bursitis, upper arm', 'ICD10_2010'), +('M73.03', 'Gonococcal bursitis, forearm', 'ICD10_2010'), +('M73.04', 'Gonococcal bursitis, hand', 'ICD10_2010'), +('M73.05', 'Gonococcal bursitis, pelvic region and thigh', 'ICD10_2010'), +('M73.06', 'Gonococcal bursitis, lower leg', 'ICD10_2010'), +('M73.07', 'Gonococcal bursitis, ankle and foot', 'ICD10_2010'), +('M73.08', 'Gonococcal bursitis, other', 'ICD10_2010'), +('M73.09', 'Gonococcal bursitis, site unspecified', 'ICD10_2010'), +('M73.1', 'Syphilitic bursitis', 'ICD10_2010'), +('M73.10', 'Syphilitic bursitis, multiple sites', 'ICD10_2010'), +('M73.11', 'Syphilitic bursitis, shoulder region', 'ICD10_2010'), +('M73.12', 'Syphilitic bursitis, upper arm', 'ICD10_2010'), +('M73.13', 'Syphilitic bursitis, forearm', 'ICD10_2010'), +('M73.14', 'Syphilitic bursitis, hand', 'ICD10_2010'), +('M73.15', 'Syphilitic bursitis, pelvic region and thigh', 'ICD10_2010'), +('M73.16', 'Syphilitic bursitis, lower leg', 'ICD10_2010'), +('M73.17', 'Syphilitic bursitis, ankle and foot', 'ICD10_2010'), +('M73.18', 'Syphilitic bursitis, other', 'ICD10_2010'), +('M73.19', 'Syphilitic bursitis, site unspecified', 'ICD10_2010'), +('M73.8', 'Other soft tissue disorders in diseases classified elsewhere', 'ICD10_2010'), +('M73.80', 'Other soft tissue disorders in diseases classified elsewhere, multiple sites', 'ICD10_2010'), +('M73.81', 'Other soft tissue disorders in diseases classified elsewhere, shoulder region', 'ICD10_2010'), +('M73.82', 'Other soft tissue disorders in diseases classified elsewhere, upper arm', 'ICD10_2010'), +('M73.83', 'Other soft tissue disorders in diseases classified elsewhere, forearm', 'ICD10_2010'), +('M73.84', 'Other soft tissue disorders in diseases classified elsewhere, hand', 'ICD10_2010'), +('M73.85', 'Other soft tissue disorders in diseases classified elsewhere, pelvic region and thigh', 'ICD10_2010'), +('M73.86', 'Other soft tissue disorders in diseases classified elsewhere, lower leg', 'ICD10_2010'), +('M73.87', 'Other soft tissue disorders in diseases classified elsewhere, ankle and foot', 'ICD10_2010'), +('M73.88', 'Other soft tissue disorders in diseases classified elsewhere, other', 'ICD10_2010'), +('M73.89', 'Other soft tissue disorders in diseases classified elsewhere, site unspecified', 'ICD10_2010'), +('M75', 'Shoulder lesions', 'ICD10_2010'), +('M75.0', 'Adhesive capsulitis of shoulder', 'ICD10_2010'), +('M75.1', 'Rotator cuff syndrome', 'ICD10_2010'), +('M75.2', 'Bicipital tendinitis', 'ICD10_2010'), +('M75.3', 'Calcific tendinitis of shoulder', 'ICD10_2010'), +('M75.4', 'Impingement syndrome of shoulder', 'ICD10_2010'), +('M75.5', 'Bursitis of shoulder', 'ICD10_2010'), +('M75.8', 'Other shoulder lesions', 'ICD10_2010'), +('M75.9', 'Shoulder lesion, unspecified', 'ICD10_2010'), +('M76', 'Enthesopathies of lower limb, excluding foot', 'ICD10_2010'), +('M76.0', 'Gluteal tendinitis', 'ICD10_2010'), +('M76.00', 'Gluteal tendinitis, multiple sites', 'ICD10_2010'), +('M76.01', 'Gluteal tendinitis, shoulder region', 'ICD10_2010'), +('M76.02', 'Gluteal tendinitis, upper arm', 'ICD10_2010'), +('M76.03', 'Gluteal tendinitis, forearm', 'ICD10_2010'), +('M76.04', 'Gluteal tendinitis, hand', 'ICD10_2010'), +('M76.05', 'Gluteal tendinitis, pelvic region and thigh', 'ICD10_2010'), +('M76.06', 'Gluteal tendinitis, lower leg', 'ICD10_2010'), +('M76.07', 'Gluteal tendinitis, ankle and foot', 'ICD10_2010'), +('M76.08', 'Gluteal tendinitis, other', 'ICD10_2010'), +('M76.09', 'Gluteal tendinitis, site unspecified', 'ICD10_2010'), +('M76.1', 'Psoas tendinitis', 'ICD10_2010'), +('M76.10', 'Psoas tendinitis, multiple sites', 'ICD10_2010'), +('M76.11', 'Psoas tendinitis, shoulder region', 'ICD10_2010'), +('M76.12', 'Psoas tendinitis, upper arm', 'ICD10_2010'), +('M76.13', 'Psoas tendinitis, forearm', 'ICD10_2010'), +('M76.14', 'Psoas tendinitis, hand', 'ICD10_2010'), +('M76.15', 'Psoas tendinitis, pelvic region and thigh', 'ICD10_2010'), +('M76.16', 'Psoas tendinitis, lower leg', 'ICD10_2010'), +('M76.17', 'Psoas tendinitis, ankle and foot', 'ICD10_2010'), +('M76.18', 'Psoas tendinitis, other', 'ICD10_2010'), +('M76.19', 'Psoas tendinitis, site unspecified', 'ICD10_2010'), +('M76.2', 'Iliac crest spur', 'ICD10_2010'), +('M76.20', 'Iliac crest spur, multiple sites', 'ICD10_2010'), +('M76.21', 'Iliac crest spur, shoulder region', 'ICD10_2010'), +('M76.22', 'Iliac crest spur, upper arm', 'ICD10_2010'), +('M76.23', 'Iliac crest spur, forearm', 'ICD10_2010'), +('M76.24', 'Iliac crest spur, hand', 'ICD10_2010'), +('M76.25', 'Iliac crest spur, pelvic region and thigh', 'ICD10_2010'), +('M76.26', 'Iliac crest spur, lower leg', 'ICD10_2010'), +('M76.27', 'Iliac crest spur, ankle and foot', 'ICD10_2010'), +('M76.28', 'Iliac crest spur, other', 'ICD10_2010'), +('M76.29', 'Iliac crest spur, site unspecified', 'ICD10_2010'), +('M76.3', 'Iliotibial band syndrome', 'ICD10_2010'), +('M76.30', 'Iliotibial band syndrome, multiple sites', 'ICD10_2010'), +('M76.31', 'Iliotibial band syndrome, shoulder region', 'ICD10_2010'), +('M76.32', 'Iliotibial band syndrome, upper arm', 'ICD10_2010'), +('M76.33', 'Iliotibial band syndrome, forearm', 'ICD10_2010'), +('M76.34', 'Iliotibial band syndrome, hand', 'ICD10_2010'), +('M76.35', 'Iliotibial band syndrome, pelvic region and thigh', 'ICD10_2010'), +('M76.36', 'Iliotibial band syndrome, lower leg', 'ICD10_2010'), +('M76.37', 'Iliotibial band syndrome, ankle and foot', 'ICD10_2010'), +('M76.38', 'Iliotibial band syndrome, other', 'ICD10_2010'), +('M76.39', 'Iliotibial band syndrome, site unspecified', 'ICD10_2010'), +('M76.4', 'Tibial collateral bursitis [pellegrini-stieda]', 'ICD10_2010'), +('M76.40', 'Tibial collateral bursitis [Pellegrini-Stieda], multiple sites', 'ICD10_2010'), +('M76.41', 'Tibial collateral bursitis [Pellegrini-Stieda], shoulder region', 'ICD10_2010'), +('M76.42', 'Tibial collateral bursitis [Pellegrini-Stieda], upper arm', 'ICD10_2010'), +('M76.43', 'Tibial collateral bursitis [Pellegrini-Stieda], forearm', 'ICD10_2010'), +('M76.44', 'Tibial collateral bursitis [Pellegrini-Stieda], hand', 'ICD10_2010'), +('M76.45', 'Tibial collateral bursitis [Pellegrini-Stieda], pelvic region and thigh', 'ICD10_2010'), +('M76.46', 'Tibial collateral bursitis [Pellegrini-Stieda], lower leg', 'ICD10_2010'), +('M76.47', 'Tibial collateral bursitis [Pellegrini-Stieda], ankle and foot', 'ICD10_2010'), +('M76.48', 'Tibial collateral bursitis [Pellegrini-Stieda], other', 'ICD10_2010'), +('M76.49', 'Tibial collateral bursitis [pellegrini-stieda], site unspecified', 'ICD10_2010'), +('M76.5', 'Patellar tendinitis', 'ICD10_2010'), +('M76.50', 'Patellar tendinitis, multiple sites', 'ICD10_2010'), +('M76.51', 'Patellar tendinitis, shoulder region', 'ICD10_2010'), +('M76.52', 'Patellar tendinitis, upper arm', 'ICD10_2010'), +('M76.53', 'Patellar tendinitis, forearm', 'ICD10_2010'), +('M76.54', 'Patellar tendinitis, hand', 'ICD10_2010'), +('M76.55', 'Patellar tendinitis, pelvic region and thigh', 'ICD10_2010'), +('M76.56', 'Patellar tendinitis, lower leg', 'ICD10_2010'), +('M76.57', 'Patellar tendinitis, ankle and foot', 'ICD10_2010'), +('M76.58', 'Patellar tendinitis, other', 'ICD10_2010'), +('M76.59', 'Patellar tendinitis, site unspecified', 'ICD10_2010'), +('M76.6', 'Achilles tendinitis', 'ICD10_2010'), +('M76.60', 'Achilles tendinitis, multiple sites', 'ICD10_2010'), +('M76.61', 'Achilles tendinitis, shoulder region', 'ICD10_2010'), +('M76.62', 'Achilles tendinitis, upper arm', 'ICD10_2010'), +('M76.63', 'Achilles tendinitis, forearm', 'ICD10_2010'), +('M76.64', 'Achilles tendinitis, hand', 'ICD10_2010'), +('M76.65', 'Achilles tendinitis, pelvic region and thigh', 'ICD10_2010'), +('M76.66', 'Achilles tendinitis, lower leg', 'ICD10_2010'), +('M76.67', 'Achilles tendinitis, ankle and foot', 'ICD10_2010'), +('M76.68', 'Achilles tendinitis, other', 'ICD10_2010'), +('M76.69', 'Achilles tendinitis, site unspecified', 'ICD10_2010'), +('M76.7', 'Peroneal tendinitis', 'ICD10_2010'), +('M76.70', 'Peroneal tendinitis, multiple sites', 'ICD10_2010'), +('M76.71', 'Peroneal tendinitis, shoulder region', 'ICD10_2010'), +('M76.72', 'Peroneal tendinitis, upper arm', 'ICD10_2010'), +('M76.73', 'Peroneal tendinitis, forearm', 'ICD10_2010'), +('M76.74', 'Peroneal tendinitis, hand', 'ICD10_2010'), +('M76.75', 'Peroneal tendinitis, pelvic region and thigh', 'ICD10_2010'), +('M76.76', 'Peroneal tendinitis, lower leg', 'ICD10_2010'), +('M76.77', 'Peroneal tendinitis, ankle and foot', 'ICD10_2010'), +('M76.78', 'Peroneal tendinitis, other', 'ICD10_2010'), +('M76.79', 'Peroneal tendinitis, site unspecified', 'ICD10_2010'), +('M76.8', 'Other enthesopathies of lower limb, excluding foot', 'ICD10_2010'), +('M76.80', 'Other enthesopathies of lower limb, excluding foot, multiple sites', 'ICD10_2010'), +('M76.81', 'Other enthesopathies of lower limb, excluding foot, shoulder region', 'ICD10_2010'), +('M76.82', 'Other enthesopathies of lower limb, excluding foot, upper arm', 'ICD10_2010'), +('M76.83', 'Other enthesopathies of lower limb, excluding foot, forearm', 'ICD10_2010'), +('M76.84', 'Other enthesopathies of lower limb, excluding foot, hand', 'ICD10_2010'), +('M76.85', 'Other enthesopathies of lower limb, excluding foot, pelvic region and thigh', 'ICD10_2010'), +('M76.86', 'Other enthesopathies of lower limb, excluding foot, lower leg', 'ICD10_2010'), +('M76.87', 'Other enthesopathies of lower limb, excluding foot, ankle and foot', 'ICD10_2010'), +('M76.88', 'Other enthesopathies of lower limb, excluding foot, other', 'ICD10_2010'), +('M76.89', 'Other enthesopathies of lower limb, excluding foot, site unspecified', 'ICD10_2010'), +('M76.9', 'Enthesopathy of lower limb, unspecified', 'ICD10_2010'), +('M76.90', 'Enthesopathy of lower limb, unspecified, multiple sites', 'ICD10_2010'), +('M76.91', 'Enthesopathy of lower limb, unspecified, shoulder region', 'ICD10_2010'), +('M76.92', 'Enthesopathy of lower limb, unspecified, upper arm', 'ICD10_2010'), +('M76.93', 'Enthesopathy of lower limb, unspecified, forearm', 'ICD10_2010'), +('M76.94', 'Enthesopathy of lower limb, unspecified, hand', 'ICD10_2010'), +('M76.95', 'Enthesopathy of lower limb, unspecified, pelvic region and thigh', 'ICD10_2010'), +('M76.96', 'Enthesopathy of lower limb, unspecified, lower leg', 'ICD10_2010'), +('M76.97', 'Enthesopathy of lower limb, unspecified, ankle and foot', 'ICD10_2010'), +('M76.98', 'Enthesopathy of lower limb, unspecified, other', 'ICD10_2010'), +('M76.99', 'Enthesopathy of lower limb, unspecified, site unspecified', 'ICD10_2010'), +('M77', 'Other enthesopathies', 'ICD10_2010'), +('M77.0', 'Medial epicondylitis', 'ICD10_2010'), +('M77.00', 'Medial epicondylitis, multiple sites', 'ICD10_2010'), +('M77.01', 'Medial epicondylitis, shoulder region', 'ICD10_2010'), +('M77.02', 'Medial epicondylitis, upper arm', 'ICD10_2010'), +('M77.03', 'Medial epicondylitis, forearm', 'ICD10_2010'), +('M77.04', 'Medial epicondylitis, hand', 'ICD10_2010'), +('M77.05', 'Medial epicondylitis, pelvic region and thigh', 'ICD10_2010'), +('M77.06', 'Medial epicondylitis, lower leg', 'ICD10_2010'), +('M77.07', 'Medial epicondylitis, ankle and foot', 'ICD10_2010'), +('M77.08', 'Medial epicondylitis, other', 'ICD10_2010'), +('M77.09', 'Medial epicondylitis, site unspecified', 'ICD10_2010'), +('M77.1', 'Lateral epicondylitis', 'ICD10_2010'), +('M77.10', 'Lateral epicondylitis, multiple sites', 'ICD10_2010'), +('M77.11', 'Lateral epicondylitis, shoulder region', 'ICD10_2010'), +('M77.12', 'Lateral epicondylitis, upper arm', 'ICD10_2010'), +('M77.13', 'Lateral epicondylitis, forearm', 'ICD10_2010'), +('M77.14', 'Lateral epicondylitis, hand', 'ICD10_2010'), +('M77.15', 'Lateral epicondylitis, pelvic region and thigh', 'ICD10_2010'), +('M77.16', 'Lateral epicondylitis, lower leg', 'ICD10_2010'), +('M77.17', 'Lateral epicondylitis, ankle and foot', 'ICD10_2010'), +('M77.18', 'Lateral epicondylitis, other', 'ICD10_2010'), +('M77.19', 'Lateral epicondylitis, site unspecified', 'ICD10_2010'), +('M77.2', 'Periarthritis of wrist', 'ICD10_2010'), +('M77.20', 'Periarthritis of wrist, multiple sites', 'ICD10_2010'), +('M77.21', 'Periarthritis of wrist, shoulder region', 'ICD10_2010'), +('M77.22', 'Periarthritis of wrist, upper arm', 'ICD10_2010'), +('M77.23', 'Periarthritis of wrist, forearm', 'ICD10_2010'), +('M77.24', 'Periarthritis of wrist, hand', 'ICD10_2010'), +('M77.25', 'Periarthritis of wrist, pelvic region and thigh', 'ICD10_2010'), +('M77.26', 'Periarthritis of wrist, lower leg', 'ICD10_2010'), +('M77.27', 'Periarthritis of wrist, ankle and foot', 'ICD10_2010'), +('M77.28', 'Periarthritis of wrist, other', 'ICD10_2010'), +('M77.29', 'Periarthritis of wrist, site unspecified', 'ICD10_2010'), +('M77.3', 'Calcaneal spur', 'ICD10_2010'), +('M77.30', 'Calcaneal spur, multiple sites', 'ICD10_2010'), +('M77.31', 'Calcaneal spur, shoulder region', 'ICD10_2010'), +('M77.32', 'Calcaneal spur, upper arm', 'ICD10_2010'), +('M77.33', 'Calcaneal spur, forearm', 'ICD10_2010'), +('M77.34', 'Calcaneal spur, hand', 'ICD10_2010'), +('M77.35', 'Calcaneal spur, pelvic region and thigh', 'ICD10_2010'), +('M77.36', 'Calcaneal spur, lower leg', 'ICD10_2010'), +('M77.37', 'Calcaneal spur, ankle and foot', 'ICD10_2010'), +('M77.38', 'Calcaneal spur, other', 'ICD10_2010'), +('M77.39', 'Calcaneal spur, site unspecified', 'ICD10_2010'), +('M77.4', 'Metatarsalgia', 'ICD10_2010'), +('M77.40', 'Metatarsalgia, multiple sites', 'ICD10_2010'), +('M77.41', 'Metatarsalgia, shoulder region', 'ICD10_2010'), +('M77.42', 'Metatarsalgia, upper arm', 'ICD10_2010'), +('M77.43', 'Metatarsalgia, forearm', 'ICD10_2010'), +('M77.44', 'Metatarsalgia, hand', 'ICD10_2010'), +('M77.45', 'Metatarsalgia, pelvic region and thigh', 'ICD10_2010'), +('M77.46', 'Metatarsalgia, lower leg', 'ICD10_2010'), +('M77.47', 'Metatarsalgia, ankle and foot', 'ICD10_2010'), +('M77.48', 'Metatarsalgia, other', 'ICD10_2010'), +('M77.49', 'Metatarsalgia, site unspecified', 'ICD10_2010'), +('M77.5', 'Other enthesopathy of foot', 'ICD10_2010'), +('M77.50', 'Other enthesopathy of foot, multiple sites', 'ICD10_2010'), +('M77.51', 'Other enthesopathy of foot, shoulder region', 'ICD10_2010'), +('M77.52', 'Other enthesopathy of foot, upper arm', 'ICD10_2010'), +('M77.53', 'Other enthesopathy of foot, forearm', 'ICD10_2010'), +('M77.54', 'Other enthesopathy of foot, hand', 'ICD10_2010'), +('M77.55', 'Other enthesopathy of foot, pelvic region and thigh', 'ICD10_2010'), +('M77.56', 'Other enthesopathy of foot, lower leg', 'ICD10_2010'), +('M77.57', 'Other enthesopathy of foot, ankle and foot', 'ICD10_2010'), +('M77.58', 'Other enthesopathy of foot, other', 'ICD10_2010'), +('M77.59', 'Other enthesopathy of foot, site unspecified', 'ICD10_2010'), +('M77.8', 'Other enthesopathies, not elsewhere classified', 'ICD10_2010'), +('M77.80', 'Other enthesopathies, not elsewhere classified, multiple sites', 'ICD10_2010'), +('M77.81', 'Other enthesopathies, not elsewhere classified, shoulder region', 'ICD10_2010'), +('M77.82', 'Other enthesopathies, not elsewhere classified, upper arm', 'ICD10_2010'), +('M77.83', 'Other enthesopathies, not elsewhere classified, forearm', 'ICD10_2010'), +('M77.84', 'Other enthesopathies, not elsewhere classified, hand', 'ICD10_2010'), +('M77.85', 'Other enthesopathies, not elsewhere classified, pelvic region and thigh', 'ICD10_2010'), +('M77.86', 'Other enthesopathies, not elsewhere classified, lower leg', 'ICD10_2010'), +('M77.87', 'Other enthesopathies, not elsewhere classified, ankle and foot', 'ICD10_2010'), +('M77.88', 'Other enthesopathies, not elsewhere classified, other', 'ICD10_2010'), +('M77.89', 'Other enthesopathies, not elsewhere classified, site unspecified', 'ICD10_2010'), +('M77.9', 'Enthesopathy, unspecified', 'ICD10_2010'), +('M77.90', 'Enthesopathy, unspecified, multiple sites', 'ICD10_2010'), +('M77.91', 'Enthesopathy, unspecified, shoulder region', 'ICD10_2010'), +('M77.92', 'Enthesopathy, unspecified, upper arm', 'ICD10_2010'), +('M77.93', 'Enthesopathy, unspecified, forearm', 'ICD10_2010'), +('M77.94', 'Enthesopathy, unspecified, hand', 'ICD10_2010'), +('M77.95', 'Enthesopathy, unspecified, pelvic region and thigh', 'ICD10_2010'), +('M77.96', 'Enthesopathy, unspecified, lower leg', 'ICD10_2010'), +('M77.97', 'Enthesopathy, unspecified, ankle and foot', 'ICD10_2010'), +('M77.98', 'Enthesopathy, unspecified, other', 'ICD10_2010'), +('M77.99', 'Enthesopathy, unspecified, site unspecified', 'ICD10_2010'), +('M79', 'Other soft tissue disorders, not elsewhere classified', 'ICD10_2010'), +('M79.0', 'Rheumatism, unspecified', 'ICD10_2010'), +('M79.00', 'Rheumatism, unspecified, multiple sites', 'ICD10_2010'), +('M79.01', 'Rheumatism, unspecified, shoulder region', 'ICD10_2010'), +('M79.02', 'Rheumatism, unspecified, upper arm', 'ICD10_2010'), +('M79.03', 'Rheumatism, unspecified, forearm', 'ICD10_2010'), +('M79.04', 'Rheumatism, unspecified, hand', 'ICD10_2010'), +('M79.05', 'Rheumatism, unspecified, pelvic region and thigh', 'ICD10_2010'), +('M79.06', 'Rheumatism, unspecified, lower leg', 'ICD10_2010'), +('M79.07', 'Rheumatism, unspecified, ankle and foot', 'ICD10_2010'), +('M79.08', 'Rheumatism, unspecified, other', 'ICD10_2010'), +('M79.09', 'Rheumatism, unspecified, site unspecified', 'ICD10_2010'), +('M79.1', 'Myalgia', 'ICD10_2010'), +('M79.10', 'Myalgia, multiple sites', 'ICD10_2010'), +('M79.11', 'Myalgia, shoulder region', 'ICD10_2010'), +('M79.12', 'Myalgia, upper arm', 'ICD10_2010'), +('M79.13', 'Myalgia, forearm', 'ICD10_2010'), +('M79.14', 'Myalgia, hand', 'ICD10_2010'), +('M79.15', 'Myalgia, pelvic and thigh', 'ICD10_2010'), +('M79.16', 'Myalgia, lower leg', 'ICD10_2010'), +('M79.17', 'Myalgia, ankle and foot', 'ICD10_2010'), +('M79.18', 'Myalgia, other site', 'ICD10_2010'), +('M79.19', 'Myalgia, site unspecified', 'ICD10_2010'), +('M79.2', 'Neuralgia and neuritis, unspecified', 'ICD10_2010'), +('M79.20', 'Neuralgia and neuritis, unspecified, multiple sites', 'ICD10_2010'), +('M79.21', 'Neuralgia and neuritis, unspecified, shoulder region', 'ICD10_2010'), +('M79.22', 'Neuralgia and neuritis, unspecified, upper arm', 'ICD10_2010'), +('M79.23', 'Neuralgia and neuritis, unspecified, forearm', 'ICD10_2010'), +('M79.24', 'Neuralgia and neuritis, unspecified, hand', 'ICD10_2010'), +('M79.25', 'Neuralgia and neuritis, unspecified, pelvic and thigh', 'ICD10_2010'), +('M79.26', 'Neuralgia and neuritis, unspecified, lower leg', 'ICD10_2010'), +('M79.27', 'Neuralgia and neuritis, unspecified, ankle and foot', 'ICD10_2010'), +('M79.28', 'Neuralgia and neuritis, unspecified, other site', 'ICD10_2010'), +('M79.29', 'Neuralgia and neuritis, unspecified, site unspecified', 'ICD10_2010'), +('M79.3', 'Panniculitis, unspecified', 'ICD10_2010'), +('M79.30', 'Panniculitis, unspecified, multiple sites', 'ICD10_2010'), +('M79.31', 'Panniculitis, unspecified, shoulder region', 'ICD10_2010'), +('M79.32', 'Panniculitis, unspecified, upper arm', 'ICD10_2010'), +('M79.33', 'Panniculitis, unspecified, forearm', 'ICD10_2010'), +('M79.34', 'Panniculitis, unspecified, hand', 'ICD10_2010'), +('M79.35', 'Panniculitis, unspecified, pelvic and thigh', 'ICD10_2010'), +('M79.36', 'Panniculitis, unspecified, lower leg', 'ICD10_2010'), +('M79.37', 'Panniculitis, unspecified, ankle and foot', 'ICD10_2010'), +('M79.38', 'Panniculitis, unspecified, other site', 'ICD10_2010'), +('M79.39', 'Panniculitis, unspecified, site unspecified', 'ICD10_2010'), +('M79.4', 'Hypertrophy of (infrapatellar) fat pad', 'ICD10_2010'), +('M79.40', 'Hypertrophy of (infrapatellar) fat pad, multiple sites', 'ICD10_2010'), +('M79.41', 'Hypertrophy of (infrapatellar) fat pad, shoulder region', 'ICD10_2010'), +('M79.42', 'Hypertrophy of (infrapatellar) fat pad, upper arm', 'ICD10_2010'), +('M79.43', 'Hypertrophy of (infrapatellar) fat pad, forearm', 'ICD10_2010'), +('M79.44', 'Hypertrophy of (infrapatellar) fat pad, hand', 'ICD10_2010'), +('M79.45', 'Hypertrophy of (infrapatellar) fat pad, pelvic region and thigh', 'ICD10_2010'), +('M79.46', 'Hypertrophy of (infrapatellar) fat pad, lower leg', 'ICD10_2010'), +('M79.47', 'Hypertrophy of (infrapatellar) fat pad, ankle and foot', 'ICD10_2010'), +('M79.48', 'Hypertrophy of (infrapatellar) fat pad, other', 'ICD10_2010'), +('M79.49', 'Hypertrophy of (infrapatellar) fat pad, site unspecified', 'ICD10_2010'), +('M79.5', 'Residual foreign body in soft tissue', 'ICD10_2010'), +('M79.50', 'Residual foreign body in soft tissue, multiple sites', 'ICD10_2010'), +('M79.51', 'Residual foreign body in soft tissue, shoulder region', 'ICD10_2010'), +('M79.52', 'Residual foreign body in soft tissue, upper arm', 'ICD10_2010'), +('M79.53', 'Residual foreign body in soft tissue, forearm', 'ICD10_2010'), +('M79.54', 'Residual foreign body in soft tissue, hand', 'ICD10_2010'), +('M79.55', 'Residual foreign body in soft tissue, pelvic and thigh', 'ICD10_2010'), +('M79.56', 'Residual foreign body in soft tissue, lower leg', 'ICD10_2010'), +('M79.57', 'Residual foreign body in soft tissue, ankle and foot', 'ICD10_2010'), +('M79.58', 'Residual foreign body in soft tissue, other site', 'ICD10_2010'), +('M79.59', 'Residual foreign body in soft tissue, site unspecified', 'ICD10_2010'), +('M79.6', 'Pain in limb', 'ICD10_2010'), +('M79.60', 'Pain in limb, multiple sites', 'ICD10_2010'), +('M79.61', 'Pain in limb, shoulder region', 'ICD10_2010'), +('M79.62', 'Pain in limb, upper arm', 'ICD10_2010'), +('M79.63', 'Pain in limb, forearm', 'ICD10_2010'), +('M79.64', 'Pain in limb, hand', 'ICD10_2010'), +('M79.65', 'Pain in limb, pelvic and thigh', 'ICD10_2010'), +('M79.66', 'Pain in limb, lower leg', 'ICD10_2010'), +('M79.67', 'Pain in limb, ankle and foot', 'ICD10_2010'), +('M79.68', 'Pain in limb, other site', 'ICD10_2010'), +('M79.69', 'Pain in limb, site unspecified', 'ICD10_2010'), +('M79.7', 'Fibromyalgia', 'ICD10_2010'), +('M79.70', 'Fibromyalgia, multiple sites', 'ICD10_2010'), +('M79.71', 'Fibromyalgia, shoulder region', 'ICD10_2010'), +('M79.72', 'Fibromyalgia, upper arm', 'ICD10_2010'), +('M79.73', 'Fibromyalgia, forearm', 'ICD10_2010'), +('M79.74', 'Fibromyalgia, hand', 'ICD10_2010'), +('M79.75', 'Fibromyalgia, pelvic and thigh', 'ICD10_2010'), +('M79.76', 'Fibromyalgia, lower leg', 'ICD10_2010'), +('M79.77', 'Fibromyalgia, ankle and foot', 'ICD10_2010'), +('M79.78', 'Fibromyalgia, other site', 'ICD10_2010'), +('M79.79', 'Fibromyalgia, site unspecified', 'ICD10_2010'), +('M79.8', 'Other specified soft tissue disorders', 'ICD10_2010'), +('M79.80', 'Other specified soft tissue disorders, multiple sites', 'ICD10_2010'), +('M79.81', 'Other specified soft tissue disorders, shoulder region', 'ICD10_2010'), +('M79.82', 'Other specified soft tissue disorders, upper arm', 'ICD10_2010'), +('M79.83', 'Other specified soft tissue disorders, forearm', 'ICD10_2010'), +('M79.84', 'Other specified soft tissue disorders, hand', 'ICD10_2010'), +('M79.85', 'Other specified soft tissue disorders, pelvic and thigh', 'ICD10_2010'), +('M79.86', 'Other specified soft tissue disorders, lower leg', 'ICD10_2010'), +('M79.87', 'Other specified soft tissue disorders, ankle and foot', 'ICD10_2010'), +('M79.88', 'Other specified soft tissue disorders, other site', 'ICD10_2010'), +('M79.89', 'Other specified soft tissue disorders, site unspecified', 'ICD10_2010'), +('M79.9', 'Soft tissue disorder, unspecified', 'ICD10_2010'), +('M79.90', 'Soft tissue disorder, unspecified, multiple sites', 'ICD10_2010'), +('M79.91', 'Soft tissue disorder, unspecified, shoulder region', 'ICD10_2010'), +('M79.92', 'Soft tissue disorder, unspecified, upper arm', 'ICD10_2010'), +('M79.93', 'Soft tissue disorder, unspecified, forearm', 'ICD10_2010'), +('M79.94', 'Soft tissue disorder, unspecified, hand', 'ICD10_2010'), +('M79.95', 'Soft tissue disorder, unspecified, pelvic and thigh', 'ICD10_2010'), +('M79.96', 'Soft tissue disorder, unspecified, lower leg', 'ICD10_2010'), +('M79.97', 'Soft tissue disorder, unspecified, ankle and foot', 'ICD10_2010'), +('M79.98', 'Soft tissue disorder, unspecified, other site', 'ICD10_2010'), +('M79.99', 'Soft tissue disorder, unspecified, site unspecified', 'ICD10_2010'), +('M80', 'Osteoporosis with pathological fracture', 'ICD10_2010'), +('M80.0', 'Postmenopausal osteoporosis with pathological fracture', 'ICD10_2010'), +('M80.00', 'Postmenopausal osteoporosis with pathological fracture, multiple sites', 'ICD10_2010'), +('M80.01', 'Postmenopausal osteoporosis with pathological fracture, shoulder region', 'ICD10_2010'), +('M80.02', 'Postmenopausal osteoporosis with pathological fracture, upper arm', 'ICD10_2010'), +('M80.03', 'Postmenopausal osteoporosis with pathological fracture, forearm', 'ICD10_2010'), +('M80.04', 'Postmenopausal osteoporosis with pathological fracture, hand', 'ICD10_2010'), +('M80.05', 'Postmenopausal osteoporosis with pathological fracture, pelvic and thigh', 'ICD10_2010'), +('M80.06', 'Postmenopausal osteoporosis with pathological fracture, lower leg', 'ICD10_2010'), +('M80.07', 'Postmenopausal osteoporosis with pathological fracture, ankle and foot', 'ICD10_2010'), +('M80.08', 'Postmenopausal osteoporosis with pathological fracture, other site', 'ICD10_2010'), +('M80.09', 'Postmenopausal osteoporosis with pathological fracture, site unspecified', 'ICD10_2010'), +('M80.1', 'Postoophorectomy osteoporosis with pathological fracture', 'ICD10_2010'), +('M80.10', 'Postoophorectomy osteoporosis with pathological fracture, multiple sites', 'ICD10_2010'), +('M80.11', 'Postoophorectomy osteoporosis with pathological fracture, shoulder region', 'ICD10_2010'), +('M80.12', 'Postoophorectomy osteoporosis with pathological fracture, upper arm', 'ICD10_2010'), +('M80.13', 'Postoophorectomy osteoporosis with pathological fracture, forearm', 'ICD10_2010'), +('M80.14', 'Postoophorectomy osteoporosis with pathological fracture, hand', 'ICD10_2010'), +('M80.15', 'Postoophorectomy osteoporosis with pathological fracture, pelvic and thigh', 'ICD10_2010'), +('M80.16', 'Postoophorectomy osteoporosis with pathological fracture, lower leg', 'ICD10_2010'), +('M80.17', 'Postoophorectomy osteoporosis with pathological fracture, ankle and foot', 'ICD10_2010'), +('M80.18', 'Postoophorectomy osteoporosis with pathological fracture, other site', 'ICD10_2010'), +('M80.19', 'Postoophorectomy osteoporosis with pathological fracture, site unspecified', 'ICD10_2010'), +('M80.2', 'Osteoporosis of disuse with pathological fracture', 'ICD10_2010'), +('M80.20', 'Osteoporosis of disuse with pathological fracture, multiple sites', 'ICD10_2010'), +('M80.21', 'Osteoporosis of disuse with pathological fracture, shoulder region', 'ICD10_2010'), +('M80.22', 'Osteoporosis of disuse with pathological fracture, upper arm', 'ICD10_2010'), +('M80.23', 'Osteoporosis of disuse with pathological fracture, forearm', 'ICD10_2010'), +('M80.24', 'Osteoporosis of disuse with pathological fracture, hand', 'ICD10_2010'), +('M80.25', 'Osteoporosis of disuse with pathological fracture, pelvic and thigh', 'ICD10_2010'), +('M80.26', 'Osteoporosis of disuse with pathological fracture, lower leg', 'ICD10_2010'), +('M80.27', 'Osteoporosis of disuse with pathological fracture, ankle and foot', 'ICD10_2010'), +('M80.28', 'Osteoporosis of disuse with pathological fracture, other site', 'ICD10_2010'), +('M80.29', 'Osteoporosis of disuse with pathological fracture, site unspecified', 'ICD10_2010'), +('M80.3', 'Postsurgical malabsorption osteoporosis with path fracture', 'ICD10_2010'), +('M80.30', 'Postsurgical malabsorption osteoporosis with path fracture, multiple sites', 'ICD10_2010'), +('M80.31', 'Postsurgical malabsorption osteoporosis with path fracture, shoulder region', 'ICD10_2010'), +('M80.32', 'Postsurgical malabsorption osteoporosis with path fracture, upper arm', 'ICD10_2010'), +('M80.33', 'Postsurgical malabsorption osteoporosis with path fracture, forearm', 'ICD10_2010'), +('M80.34', 'Postsurgical malabsorption osteoporosis with path fracture, hand', 'ICD10_2010'), +('M80.35', 'Postsurgical malabsorption osteoporosis with path fracture, pelvic and thigh', 'ICD10_2010'), +('M80.36', 'Postsurgical malabsorption osteoporosis with path fracture, lower leg', 'ICD10_2010'), +('M80.37', 'Postsurgical malabsorption osteoporosis with path fracture, ankle and foot', 'ICD10_2010'), +('M80.38', 'Postsurgical malabsorption osteoporosis with path fracture, other site', 'ICD10_2010'), +('M80.39', 'Postsurgical malabsorption osteoporosis with path fracture, site unspecified', 'ICD10_2010'), +('M80.4', 'Drug-induced osteoporosis with pathological fracture', 'ICD10_2010'), +('M80.40', 'Drug-induced osteoporosis with pathological fracture, multiple sites', 'ICD10_2010'), +('M80.41', 'Drug-induced osteoporosis with pathological fracture, shoulder region', 'ICD10_2010'), +('M80.42', 'Drug-induced osteoporosis with pathological fracture, upper arm', 'ICD10_2010'), +('M80.43', 'Drug-induced osteoporosis with pathological fracture, forearm', 'ICD10_2010'), +('M80.44', 'Drug-induced osteoporosis with pathological fracture, hand', 'ICD10_2010'), +('M80.45', 'Drug-induced osteoporosis with pathological fracture, pelvic and thigh', 'ICD10_2010'), +('M80.46', 'Drug-induced osteoporosis with pathological fracture, lower leg', 'ICD10_2010'), +('M80.47', 'Drug-induced osteoporosis with pathological fracture, ankle and foot', 'ICD10_2010'), +('M80.48', 'Drug-induced osteoporosis with pathological fracture, other site', 'ICD10_2010'), +('M80.49', 'Drug-induced osteoporosis with pathological fracture, site unspecified', 'ICD10_2010'), +('M80.5', 'Idiopathic osteoporosis with pathological fracture', 'ICD10_2010'), +('M80.50', 'Idiopathic osteoporosis with pathological fracture, multiple sites', 'ICD10_2010'), +('M80.51', 'Idiopathic osteoporosis with pathological fracture, shoulder region', 'ICD10_2010'), +('M80.52', 'Idiopathic osteoporosis with pathological fracture, upper arm', 'ICD10_2010'), +('M80.53', 'Idiopathic osteoporosis with pathological fracture, forearm', 'ICD10_2010'), +('M80.54', 'Idiopathic osteoporosis with pathological fracture, hand', 'ICD10_2010'), +('M80.55', 'Idiopathic osteoporosis with pathological fracture, pelvic and thigh', 'ICD10_2010'), +('M80.56', 'Idiopathic osteoporosis with pathological fracture, lower leg', 'ICD10_2010'), +('M80.57', 'Idiopathic osteoporosis with pathological fracture, ankle and foot', 'ICD10_2010'), +('M80.58', 'Idiopathic osteoporosis with pathological fracture, other site', 'ICD10_2010'), +('M80.59', 'Idiopathic osteoporosis with pathological fracture, site unspecified', 'ICD10_2010'), +('M80.8', 'Other osteoporosis with pathological fracture', 'ICD10_2010'), +('M80.80', 'Other osteoporosis with pathological fracture, multiple sites', 'ICD10_2010'), +('M80.81', 'Other osteoporosis with pathological fracture, shoulder region', 'ICD10_2010'), +('M80.82', 'Other osteoporosis with pathological fracture, upper arm', 'ICD10_2010'), +('M80.83', 'Other osteoporosis with pathological fracture, forearm', 'ICD10_2010'), +('M80.84', 'Other osteoporosis with pathological fracture, hand', 'ICD10_2010'), +('M80.85', 'Other osteoporosis with pathological fracture, pelvic and thigh', 'ICD10_2010'), +('M80.86', 'Other osteoporosis with pathological fracture, lower leg', 'ICD10_2010'), +('M80.87', 'Other osteoporosis with pathological fracture, ankle and foot', 'ICD10_2010'), +('M80.88', 'Other osteoporosis with pathological fracture, other site', 'ICD10_2010'), +('M80.89', 'Other osteoporosis with pathological fracture, site unspecified', 'ICD10_2010'), +('M80.9', 'Unspecified osteoporosis with pathological fracture', 'ICD10_2010'), +('M80.90', 'Unspecified osteoporosis with pathological fracture, multiple sites', 'ICD10_2010'), +('M80.91', 'Unspecified osteoporosis with pathological fracture, shoulder region', 'ICD10_2010'), +('M80.92', 'Unspecified osteoporosis with pathological fracture, upper arm', 'ICD10_2010'), +('M80.93', 'Unspecified osteoporosis with pathological fracture, forearm', 'ICD10_2010'), +('M80.94', 'Unspecified osteoporosis with pathological fracture, hand', 'ICD10_2010'), +('M80.95', 'Unspecified osteoporosis with pathological fracture, pelvic and thigh', 'ICD10_2010'), +('M80.96', 'Unspecified osteoporosis with pathological fracture, lower leg', 'ICD10_2010'), +('M80.97', 'Unspecified osteoporosis with pathological fracture, ankle and foot', 'ICD10_2010'), +('M80.98', 'Unspecified osteoporosis with pathological fracture, other site', 'ICD10_2010'), +('M80.99', 'Unspecified osteoporosis with pathological fracture, site unspecified', 'ICD10_2010'), +('M81', 'Osteoporosis without pathological fracture', 'ICD10_2010'), +('M81.0', 'Postmenopausal osteoporosis', 'ICD10_2010'), +('M81.00', 'Postmenopausal osteoporosis, multiple sites', 'ICD10_2010'), +('M81.01', 'Postmenopausal osteoporosis, shoulder region', 'ICD10_2010'), +('M81.02', 'Postmenopausal osteoporosis, upper arm', 'ICD10_2010'), +('M81.03', 'Postmenopausal osteoporosis, forearm', 'ICD10_2010'), +('M81.04', 'Postmenopausal osteoporosis, hand', 'ICD10_2010'), +('M81.05', 'Postmenopausal osteoporosis, pelvic and thigh', 'ICD10_2010'), +('M81.06', 'Postmenopausal osteoporosis, lower leg', 'ICD10_2010'), +('M81.07', 'Postmenopausal osteoporosis, ankle and foot', 'ICD10_2010'), +('M81.08', 'Postmenopausal osteoporosis, other site', 'ICD10_2010'), +('M81.09', 'Postmenopausal osteoporosis, site unspecified', 'ICD10_2010'), +('M81.1', 'Postoophorectomy osteoporosis', 'ICD10_2010'), +('M81.10', 'Postoophorectomy osteoporosis, multiple sites', 'ICD10_2010'), +('M81.11', 'Postoophorectomy osteoporosis, shoulder region', 'ICD10_2010'), +('M81.12', 'Postoophorectomy osteoporosis, upper arm', 'ICD10_2010'), +('M81.13', 'Postoophorectomy osteoporosis, forearm', 'ICD10_2010'), +('M81.14', 'Postoophorectomy osteoporosis, hand', 'ICD10_2010'), +('M81.15', 'Postoophorectomy osteoporosis, pelvic and thigh', 'ICD10_2010'), +('M81.16', 'Postoophorectomy osteoporosis, lower leg', 'ICD10_2010'), +('M81.17', 'Postoophorectomy osteoporosis, ankle and foot', 'ICD10_2010'), +('M81.18', 'Postoophorectomy osteoporosis, other site', 'ICD10_2010'), +('M81.19', 'Postoophorectomy osteoporosis, site unspecified', 'ICD10_2010'), +('M81.2', 'Osteoporosis of disuse', 'ICD10_2010'), +('M81.20', 'Osteoporosis of disuse, multiple sites', 'ICD10_2010'), +('M81.21', 'Osteoporosis of disuse, shoulder region', 'ICD10_2010'), +('M81.22', 'Osteoporosis of disuse, upper arm', 'ICD10_2010'), +('M81.23', 'Osteoporosis of disuse, forearm', 'ICD10_2010'), +('M81.24', 'Osteoporosis of disuse, hand', 'ICD10_2010'), +('M81.25', 'Osteoporosis of disuse, pelvic and thigh', 'ICD10_2010'), +('M81.26', 'Osteoporosis of disuse, lower leg', 'ICD10_2010'), +('M81.27', 'Osteoporosis of disuse, ankle and foot', 'ICD10_2010'), +('M81.28', 'Osteoporosis of disuse, other site', 'ICD10_2010'), +('M81.29', 'Osteoporosis of disuse, site unspecified', 'ICD10_2010'), +('M81.3', 'Postsurgical malabsorption osteoporosis', 'ICD10_2010'), +('M81.30', 'Postsurgical malabsorption osteoporosis, multiple sites', 'ICD10_2010'), +('M81.31', 'Postsurgical malabsorption osteoporosis, shoulder region', 'ICD10_2010'), +('M81.32', 'Postsurgical malabsorption osteoporosis, upper arm', 'ICD10_2010'), +('M81.33', 'Postsurgical malabsorption osteoporosis, forearm', 'ICD10_2010'), +('M81.34', 'Postsurgical malabsorption osteoporosis, hand', 'ICD10_2010'), +('M81.35', 'Postsurgical malabsorption osteoporosis, pelvic and thigh', 'ICD10_2010'), +('M81.36', 'Postsurgical malabsorption osteoporosis, lower leg', 'ICD10_2010'), +('M81.37', 'Postsurgical malabsorption osteoporosis, ankle and foot', 'ICD10_2010'), +('M81.38', 'Postsurgical malabsorption osteoporosis, other site', 'ICD10_2010'), +('M81.39', 'Postsurgical malabsorption osteoporosis, site unspecified', 'ICD10_2010'), +('M81.4', 'Drug-induced osteoporosis', 'ICD10_2010'), +('M81.40', 'Drug-induced osteoporosis, multiple sites', 'ICD10_2010'), +('M81.41', 'Drug-induced osteoporosis, shoulder region', 'ICD10_2010'), +('M81.42', 'Drug-induced osteoporosis, upper arm', 'ICD10_2010'), +('M81.43', 'Drug-induced osteoporosis, forearm', 'ICD10_2010'), +('M81.44', 'Drug-induced osteoporosis, hand', 'ICD10_2010'), +('M81.45', 'Drug-induced osteoporosis, pelvic and thigh', 'ICD10_2010'), +('M81.46', 'Drug-induced osteoporosis, lower leg', 'ICD10_2010'), +('M81.47', 'Drug-induced osteoporosis, ankle and foot', 'ICD10_2010'), +('M81.48', 'Drug-induced osteoporosis, other site', 'ICD10_2010'), +('M81.49', 'Drug-induced osteoporosis, site unspecified', 'ICD10_2010'), +('M81.5', 'Idiopathic osteoporosis', 'ICD10_2010'), +('M81.50', 'Idiopathic osteoporosis, multiple sites', 'ICD10_2010'), +('M81.51', 'Idiopathic osteoporosis, shoulder region', 'ICD10_2010'), +('M81.52', 'Idiopathic osteoporosis, upper arm', 'ICD10_2010'), +('M81.53', 'Idiopathic osteoporosis, forearm', 'ICD10_2010'), +('M81.54', 'Idiopathic osteoporosis, hand', 'ICD10_2010'), +('M81.55', 'Idiopathic osteoporosis, pelvic and thigh', 'ICD10_2010'), +('M81.56', 'Idiopathic osteoporosis, lower leg', 'ICD10_2010'), +('M81.57', 'Idiopathic osteoporosis, ankle and foot', 'ICD10_2010'), +('M81.58', 'Idiopathic osteoporosis, other site', 'ICD10_2010'), +('M81.59', 'Idiopathic osteoporosis, site unspecified', 'ICD10_2010'), +('M81.6', 'Localized osteoporosis [lequesne]', 'ICD10_2010'), +('M81.60', 'Localized osteoporosis [lequesne], multiple sites', 'ICD10_2010'), +('M81.61', 'Localized osteoporosis [lequesne], shoulder region', 'ICD10_2010'), +('M81.62', 'Localized osteoporosis [lequesne], upper arm', 'ICD10_2010'), +('M81.63', 'Localized osteoporosis [lequesne], forearm', 'ICD10_2010'), +('M81.64', 'Localized osteoporosis [lequesne], hand', 'ICD10_2010'), +('M81.65', 'Localized osteoporosis [lequesne], pelvic and thigh', 'ICD10_2010'), +('M81.66', 'Localized osteoporosis [lequesne], lower leg', 'ICD10_2010'), +('M81.67', 'Localized osteoporosis [lequesne], ankle and foot', 'ICD10_2010'), +('M81.68', 'Localized osteoporosis [lequesne], other site', 'ICD10_2010'), +('M81.69', 'Localized osteoporosis [lequesne], site unspecified', 'ICD10_2010'), +('M81.8', 'Other osteoporosis', 'ICD10_2010'), +('M81.80', 'Other osteoporosis, multiple sites', 'ICD10_2010'), +('M81.81', 'Other osteoporosis, shoulder region', 'ICD10_2010'), +('M81.82', 'Other osteoporosis, upper arm', 'ICD10_2010'), +('M81.83', 'Other osteoporosis, forearm', 'ICD10_2010'), +('M81.84', 'Other osteoporosis, hand', 'ICD10_2010'), +('M81.85', 'Other osteoporosis, pelvic and thigh', 'ICD10_2010'), +('M81.86', 'Other osteoporosis, lower leg', 'ICD10_2010'), +('M81.87', 'Other osteoporosis, ankle and foot', 'ICD10_2010'), +('M81.88', 'Other osteoporosis, other site', 'ICD10_2010'), +('M81.89', 'Other osteoporosis, site unspecified', 'ICD10_2010'), +('M81.9', 'Osteoporosis, unspecified', 'ICD10_2010'), +('M81.90', 'Osteoporosis, unspecified, multiple sites', 'ICD10_2010'), +('M81.91', 'Osteoporosis, unspecified, shoulder region', 'ICD10_2010'), +('M81.92', 'Osteoporosis, unspecified, upper arm', 'ICD10_2010'), +('M81.93', 'Osteoporosis, unspecified, forearm', 'ICD10_2010'), +('M81.94', 'Osteoporosis, unspecified, hand', 'ICD10_2010'), +('M81.95', 'Osteoporosis, unspecified, pelvic and thigh', 'ICD10_2010'), +('M81.96', 'Osteoporosis, unspecified, lower leg', 'ICD10_2010'), +('M81.97', 'Osteoporosis, unspecified, ankle and foot', 'ICD10_2010'), +('M81.98', 'Osteoporosis, unspecified, other site', 'ICD10_2010'), +('M81.99', 'Osteoporosis, unspecified, site unspecified', 'ICD10_2010'), +('M82', 'Osteoporosis in diseases classified elsewhere', 'ICD10_2010'), +('M82.0', 'Osteoporosis in multiple myelomatosis', 'ICD10_2010'), +('M82.00', 'Osteoporosis in multiple myelomatosis, multiple sites', 'ICD10_2010'), +('M82.01', 'Osteoporosis in multiple myelomatosis, shoulder region', 'ICD10_2010'), +('M82.02', 'Osteoporosis in multiple myelomatosis, upper arm', 'ICD10_2010'), +('M82.03', 'Osteoporosis in multiple myelomatosis, forearm', 'ICD10_2010'), +('M82.04', 'Osteoporosis in multiple myelomatosis, hand', 'ICD10_2010'), +('M82.05', 'Osteoporosis in multiple myelomatosis, pelvic and thigh', 'ICD10_2010'), +('M82.06', 'Osteoporosis in multiple myelomatosis, lower leg', 'ICD10_2010'), +('M82.07', 'Osteoporosis in multiple myelomatosis, ankle and foot', 'ICD10_2010'), +('M82.08', 'Osteoporosis in multiple myelomatosis, other site', 'ICD10_2010'), +('M82.09', 'Osteoporosis in multiple myelomatosis, site unspecified', 'ICD10_2010'), +('M82.1', 'Osteoporosis in endocrine disorders', 'ICD10_2010'), +('M82.10', 'Osteoporosis in endocrine disorders, multiple sites', 'ICD10_2010'), +('M82.11', 'Osteoporosis in endocrine disorders, shoulder region', 'ICD10_2010'), +('M82.12', 'Osteoporosis in endocrine disorders, upper arm', 'ICD10_2010'), +('M82.13', 'Osteoporosis in endocrine disorders, forearm', 'ICD10_2010'), +('M82.14', 'Osteoporosis in endocrine disorders, hand', 'ICD10_2010'), +('M82.15', 'Osteoporosis in endocrine disorders, pelvic and thigh', 'ICD10_2010'), +('M82.16', 'Osteoporosis in endocrine disorders, lower leg', 'ICD10_2010'), +('M82.17', 'Osteoporosis in endocrine disorders, ankle and foot', 'ICD10_2010'), +('M82.18', 'Osteoporosis in endocrine disorders, other site', 'ICD10_2010'), +('M82.19', 'Osteoporosis in endocrine disorders, site unspecified', 'ICD10_2010'), +('M82.8', 'Osteoporosis in other diseases classified elsewhere', 'ICD10_2010'), +('M82.80', 'Osteoporosis in other diseases classified elsewhere, multiple sites', 'ICD10_2010'), +('M82.81', 'Osteoporosis in other diseases classified elsewhere, shoulder region', 'ICD10_2010'), +('M82.82', 'Osteoporosis in other diseases classified elsewhere, upper arm', 'ICD10_2010'), +('M82.83', 'Osteoporosis in other diseases classified elsewhere, forearm', 'ICD10_2010'), +('M82.84', 'Osteoporosis in other diseases classified elsewhere, hand', 'ICD10_2010'), +('M82.85', 'Osteoporosis in other diseases classified elsewhere, pelvic and thigh', 'ICD10_2010'), +('M82.86', 'Osteoporosis in other diseases classified elsewhere, lower leg', 'ICD10_2010'), +('M82.87', 'Osteoporosis in other diseases classified elsewhere, ankle and foot', 'ICD10_2010'), +('M82.88', 'Osteoporosis in other diseases classified elsewhere, other site', 'ICD10_2010'), +('M82.89', 'Osteoporosis in other diseases classified elsewhere, site unspecified', 'ICD10_2010'), +('M83', 'Adult osteomalacia', 'ICD10_2010'), +('M83.0', 'Puerperal osteomalacia', 'ICD10_2010'), +('M83.00', 'Puerperal osteomalacia, multiple sites', 'ICD10_2010'), +('M83.01', 'Puerperal osteomalacia, shoulder region', 'ICD10_2010'), +('M83.02', 'Puerperal osteomalacia, upper arm', 'ICD10_2010'), +('M83.03', 'Puerperal osteomalacia, forearm', 'ICD10_2010'), +('M83.04', 'Puerperal osteomalacia, hand', 'ICD10_2010'), +('M83.05', 'Puerperal osteomalacia, pelvic and thigh', 'ICD10_2010'), +('M83.06', 'Puerperal osteomalacia, lower leg', 'ICD10_2010'), +('M83.07', 'Puerperal osteomalacia, ankle and foot', 'ICD10_2010'), +('M83.08', 'Puerperal osteomalacia, other site', 'ICD10_2010'), +('M83.09', 'Puerperal osteomalacia, site unspecified', 'ICD10_2010'), +('M83.1', 'Senile osteomalacia', 'ICD10_2010'), +('M83.10', 'Senile osteomalacia, multiple sites', 'ICD10_2010'), +('M83.11', 'Senile osteomalacia, shoulder region', 'ICD10_2010'), +('M83.12', 'Senile osteomalacia, upper arm', 'ICD10_2010'), +('M83.13', 'Senile osteomalacia, forearm', 'ICD10_2010'), +('M83.14', 'Senile osteomalacia, hand', 'ICD10_2010'), +('M83.15', 'Senile osteomalacia, pelvic and thigh', 'ICD10_2010'), +('M83.16', 'Senile osteomalacia, lower leg', 'ICD10_2010'), +('M83.17', 'Senile osteomalacia, ankle and foot', 'ICD10_2010'), +('M83.18', 'Senile osteomalacia, other site', 'ICD10_2010'), +('M83.19', 'Senile osteomalacia, site unspecified', 'ICD10_2010'), +('M83.2', 'Adult osteomalacia due to malabsorption', 'ICD10_2010'), +('M83.20', 'Adult osteomalacia due to malabsorption, multiple sites', 'ICD10_2010'), +('M83.21', 'Adult osteomalacia due to malabsorption, shoulder region', 'ICD10_2010'), +('M83.22', 'Adult osteomalacia due to malabsorption, upper arm', 'ICD10_2010'), +('M83.23', 'Adult osteomalacia due to malabsorption, forearm', 'ICD10_2010'), +('M83.24', 'Adult osteomalacia due to malabsorption, hand', 'ICD10_2010'), +('M83.25', 'Adult osteomalacia due to malabsorption, pelvic and thigh', 'ICD10_2010'), +('M83.26', 'Adult osteomalacia due to malabsorption, lower leg', 'ICD10_2010'), +('M83.27', 'Adult osteomalacia due to malabsorption, ankle and foot', 'ICD10_2010'), +('M83.28', 'Adult osteomalacia due to malabsorption, other site', 'ICD10_2010'), +('M83.29', 'Adult osteomalacia due to malabsorption, site unspecified', 'ICD10_2010'), +('M83.3', 'Adult osteomalacia due to malnutrition', 'ICD10_2010'), +('M83.30', 'Adult osteomalacia due to malnutrition, multiple sites', 'ICD10_2010'), +('M83.31', 'Adult osteomalacia due to malnutrition, shoulder region', 'ICD10_2010'), +('M83.32', 'Adult osteomalacia due to malnutrition, upper arm', 'ICD10_2010'), +('M83.33', 'Adult osteomalacia due to malnutrition, forearm', 'ICD10_2010'), +('M83.34', 'Adult osteomalacia due to malnutrition, hand', 'ICD10_2010'), +('M83.35', 'Adult osteomalacia due to malnutrition, pelvic and thigh', 'ICD10_2010'), +('M83.36', 'Adult osteomalacia due to malnutrition, lower leg', 'ICD10_2010'), +('M83.37', 'Adult osteomalacia due to malnutrition, ankle and foot', 'ICD10_2010'), +('M83.38', 'Adult osteomalacia due to malnutrition, other site', 'ICD10_2010'), +('M83.39', 'Adult osteomalacia due to malnutrition, site unspecified', 'ICD10_2010'), +('M83.4', 'Aluminium bone disease', 'ICD10_2010'), +('M83.40', 'Aluminium bone disease, multiple sites', 'ICD10_2010'), +('M83.41', 'Aluminium bone disease, shoulder region', 'ICD10_2010'), +('M83.42', 'Aluminium bone disease, upper arm', 'ICD10_2010'), +('M83.43', 'Aluminium bone disease, forearm', 'ICD10_2010'), +('M83.44', 'Aluminium bone disease, hand', 'ICD10_2010'), +('M83.45', 'Aluminium bone disease, pelvic and thigh', 'ICD10_2010'), +('M83.46', 'Aluminium bone disease, lower leg', 'ICD10_2010'), +('M83.47', 'Aluminium bone disease, ankle and foot', 'ICD10_2010'), +('M83.48', 'Aluminium bone disease, other site', 'ICD10_2010'), +('M83.49', 'Aluminium bone disease, site unspecified', 'ICD10_2010'), +('M83.5', 'Other drug-induced osteomalacia in adults', 'ICD10_2010'), +('M83.50', 'Other drug-induced osteomalacia in adults, multiple sites', 'ICD10_2010'), +('M83.51', 'Other drug-induced osteomalacia in adults, shoulder region', 'ICD10_2010'), +('M83.52', 'Other drug-induced osteomalacia in adults, upper arm', 'ICD10_2010'), +('M83.53', 'Other drug-induced osteomalacia in adults, forearm', 'ICD10_2010'), +('M83.54', 'Other drug-induced osteomalacia in adults, hand', 'ICD10_2010'), +('M83.55', 'Other drug-induced osteomalacia in adults, pelvic and thigh', 'ICD10_2010'), +('M83.56', 'Other drug-induced osteomalacia in adults, lower leg', 'ICD10_2010'), +('M83.57', 'Other drug-induced osteomalacia in adults, ankle and foot', 'ICD10_2010'), +('M83.58', 'Other drug-induced osteomalacia in adults, other site', 'ICD10_2010'), +('M83.59', 'Other drug-induced osteomalacia in adults, site unspecified', 'ICD10_2010'), +('M83.8', 'Other adult osteomalacia', 'ICD10_2010'), +('M83.80', 'Other adult osteomalacia, multiple sites', 'ICD10_2010'), +('M83.81', 'Other adult osteomalacia, shoulder region', 'ICD10_2010'), +('M83.82', 'Other adult osteomalacia, upper arm', 'ICD10_2010'), +('M83.83', 'Other adult osteomalacia, forearm', 'ICD10_2010'), +('M83.84', 'Other adult osteomalacia, hand', 'ICD10_2010'), +('M83.85', 'Other adult osteomalacia, pelvic and thigh', 'ICD10_2010'), +('M83.86', 'Other adult osteomalacia, lower leg', 'ICD10_2010'), +('M83.87', 'Other adult osteomalacia, ankle and foot', 'ICD10_2010'); +INSERT INTO `icd10` (`ID_ICD10`, `Diagnosa`, `Versi_ICD10`) VALUES +('M83.88', 'Other adult osteomalacia, other site', 'ICD10_2010'), +('M83.89', 'Other adult osteomalacia, site unspecified', 'ICD10_2010'), +('M83.9', 'Adult osteomalacia, unspecified', 'ICD10_2010'), +('M83.90', 'Adult osteomalacia, unspecified, multiple sites', 'ICD10_2010'), +('M83.91', 'Adult osteomalacia, unspecified, shoulder region', 'ICD10_2010'), +('M83.92', 'Adult osteomalacia, unspecified, upper arm', 'ICD10_2010'), +('M83.93', 'Adult osteomalacia, unspecified, forearm', 'ICD10_2010'), +('M83.94', 'Adult osteomalacia, unspecified, hand', 'ICD10_2010'), +('M83.95', 'Adult osteomalacia, unspecified, pelvic and thigh', 'ICD10_2010'), +('M83.96', 'Adult osteomalacia, unspecified, lower leg', 'ICD10_2010'), +('M83.97', 'Adult osteomalacia, unspecified, ankle and foot', 'ICD10_2010'), +('M83.98', 'Adult osteomalacia, unspecified, other site', 'ICD10_2010'), +('M83.99', 'Adult osteomalacia, unspecified, site unspecified', 'ICD10_2010'), +('M84', 'Disorders of continuity of bone', 'ICD10_2010'), +('M84.0', 'Malunion of fracture', 'ICD10_2010'), +('M84.00', 'Malunion of fracture, multiple sites', 'ICD10_2010'), +('M84.01', 'Malunion of fracture, shoulder region', 'ICD10_2010'), +('M84.02', 'Malunion of fracture, upper arm', 'ICD10_2010'), +('M84.03', 'Malunion of fracture, forearm', 'ICD10_2010'), +('M84.04', 'Malunion of fracture, hand', 'ICD10_2010'), +('M84.05', 'Malunion of fracture, pelvic and thigh', 'ICD10_2010'), +('M84.06', 'Malunion of fracture, lower leg', 'ICD10_2010'), +('M84.07', 'Malunion of fracture, ankle and foot', 'ICD10_2010'), +('M84.08', 'Malunion of fracture, other site', 'ICD10_2010'), +('M84.09', 'Malunion of fracture, site unspecified', 'ICD10_2010'), +('M84.1', 'Nonunion of fracture [pseudarthrosis]', 'ICD10_2010'), +('M84.10', 'Nonunion of fracture [pseudarthrosis], multiple sites', 'ICD10_2010'), +('M84.11', 'Nonunion of fracture [pseudarthrosis], shoulder region', 'ICD10_2010'), +('M84.12', 'Nonunion of fracture [pseudarthrosis], upper arm', 'ICD10_2010'), +('M84.13', 'Nonunion of fracture [pseudarthrosis], forearm', 'ICD10_2010'), +('M84.14', 'Nonunion of fracture [pseudarthrosis], hand', 'ICD10_2010'), +('M84.15', 'Nonunion of fracture [pseudarthrosis], pelvic and thigh', 'ICD10_2010'), +('M84.16', 'Nonunion of fracture [pseudarthrosis], lower leg', 'ICD10_2010'), +('M84.17', 'Nonunion of fracture [pseudarthrosis], ankle and foot', 'ICD10_2010'), +('M84.18', 'Nonunion of fracture [pseudarthrosis], other site', 'ICD10_2010'), +('M84.19', 'Nonunion of fracture [pseudarthrosis], site unspecified', 'ICD10_2010'), +('M84.2', 'Delayed union of fracture', 'ICD10_2010'), +('M84.20', 'Delayed union of fracture, multiple sites', 'ICD10_2010'), +('M84.21', 'Delayed union of fracture, shoulder region', 'ICD10_2010'), +('M84.22', 'Delayed union of fracture, upper arm', 'ICD10_2010'), +('M84.23', 'Delayed union of fracture, forearm', 'ICD10_2010'), +('M84.24', 'Delayed union of fracture, hand', 'ICD10_2010'), +('M84.25', 'Delayed union of fracture, pelvic and thigh', 'ICD10_2010'), +('M84.26', 'Delayed union of fracture, lower leg', 'ICD10_2010'), +('M84.27', 'Delayed union of fracture, ankle and foot', 'ICD10_2010'), +('M84.28', 'Delayed union of fracture, other site', 'ICD10_2010'), +('M84.29', 'Delayed union of fracture, site unspecified', 'ICD10_2010'), +('M84.3', 'Stress fracture, not elsewhere classified', 'ICD10_2010'), +('M84.30', 'Stress fracture, not elsewhere classified, multiple sites', 'ICD10_2010'), +('M84.31', 'Stress fracture, not elsewhere classified, shoulder region', 'ICD10_2010'), +('M84.32', 'Stress fracture, not elsewhere classified, upper arm', 'ICD10_2010'), +('M84.33', 'Stress fracture, not elsewhere classified, forearm', 'ICD10_2010'), +('M84.34', 'Stress fracture, not elsewhere classified, hand', 'ICD10_2010'), +('M84.35', 'Stress fracture, not elsewhere classified, pelvic and thigh', 'ICD10_2010'), +('M84.36', 'Stress fracture, not elsewhere classified, lower leg', 'ICD10_2010'), +('M84.37', 'Stress fracture, not elsewhere classified, ankle and foot', 'ICD10_2010'), +('M84.38', 'Stress fracture, not elsewhere classified, other site', 'ICD10_2010'), +('M84.39', 'Stress fracture, not elsewhere classified, site unspecified', 'ICD10_2010'), +('M84.4', 'Pathological fracture, not elsewhere classified', 'ICD10_2010'), +('M84.40', 'Pathological fracture, not elsewhere classified, multiple sites', 'ICD10_2010'), +('M84.41', 'Pathological fracture, not elsewhere classified, shoulder region', 'ICD10_2010'), +('M84.42', 'Pathological fracture, not elsewhere classified, upper arm', 'ICD10_2010'), +('M84.43', 'Pathological fracture, not elsewhere classified, forearm', 'ICD10_2010'), +('M84.44', 'Pathological fracture, not elsewhere classified, hand', 'ICD10_2010'), +('M84.45', 'Pathological fracture, not elsewhere classified, pelvic and thigh', 'ICD10_2010'), +('M84.46', 'Pathological fracture, not elsewhere classified, lower leg', 'ICD10_2010'), +('M84.47', 'Pathological fracture, not elsewhere classified, ankle and foot', 'ICD10_2010'), +('M84.48', 'Pathological fracture, not elsewhere classified, other site', 'ICD10_2010'), +('M84.49', 'Pathological fracture, not elsewhere classified, site unspecified', 'ICD10_2010'), +('M84.8', 'Other disorders of continuity of bone', 'ICD10_2010'), +('M84.80', 'Other disorders of continuity of bone, multiple sites', 'ICD10_2010'), +('M84.81', 'Other disorders of continuity of bone, shoulder region', 'ICD10_2010'), +('M84.82', 'Other disorders of continuity of bone, upper arm', 'ICD10_2010'), +('M84.83', 'Other disorders of continuity of bone, forearm', 'ICD10_2010'), +('M84.84', 'Other disorders of continuity of bone, hand', 'ICD10_2010'), +('M84.85', 'Other disorders of continuity of bone, pelvic and thigh', 'ICD10_2010'), +('M84.86', 'Other disorders of continuity of bone, lower leg', 'ICD10_2010'), +('M84.87', 'Other disorders of continuity of bone, ankle and foot', 'ICD10_2010'), +('M84.88', 'Other disorders of continuity of bone, other site', 'ICD10_2010'), +('M84.89', 'Other disorders of continuity of bone, site unspecified', 'ICD10_2010'), +('M84.9', 'Disorder of continuity of bone, unspecified', 'ICD10_2010'), +('M84.90', 'Disorder of continuity of bone, unspecified, multiple sites', 'ICD10_2010'), +('M84.91', 'Disorder of continuity of bone, unspecified, shoulder region', 'ICD10_2010'), +('M84.92', 'Disorder of continuity of bone, unspecified, upper arm', 'ICD10_2010'), +('M84.93', 'Disorder of continuity of bone, unspecified, forearm', 'ICD10_2010'), +('M84.94', 'Disorder of continuity of bone, unspecified, hand', 'ICD10_2010'), +('M84.95', 'Disorder of continuity of bone, unspecified, pelvic and thigh', 'ICD10_2010'), +('M84.96', 'Disorder of continuity of bone, unspecified, lower leg', 'ICD10_2010'), +('M84.97', 'Disorder of continuity of bone, unspecified, ankle and foot', 'ICD10_2010'), +('M84.98', 'Disorder of continuity of bone, unspecified, other site', 'ICD10_2010'), +('M84.99', 'Disorder of continuity of bone, unspecified, site unspecified', 'ICD10_2010'), +('M85', 'Other disorders of bone density and structure', 'ICD10_2010'), +('M85.0', 'Fibrous dysplasia (monostotic)', 'ICD10_2010'), +('M85.00', 'Fibrous dysplasia (monostotic), multiple sites', 'ICD10_2010'), +('M85.01', 'Fibrous dysplasia (monostotic), shoulder region', 'ICD10_2010'), +('M85.02', 'Fibrous dysplasia (monostotic), upper arm', 'ICD10_2010'), +('M85.03', 'Fibrous dysplasia (monostotic), forearm', 'ICD10_2010'), +('M85.04', 'Fibrous dysplasia (monostotic), hand', 'ICD10_2010'), +('M85.05', 'Fibrous dysplasia (monostotic), pelvic and thigh', 'ICD10_2010'), +('M85.06', 'Fibrous dysplasia (monostotic), lower leg', 'ICD10_2010'), +('M85.07', 'Fibrous dysplasia (monostotic), ankle and foot', 'ICD10_2010'), +('M85.08', 'Fibrous dysplasia (monostotic), other site', 'ICD10_2010'), +('M85.09', 'Fibrous dysplasia (monostotic), site unspecified', 'ICD10_2010'), +('M85.1', 'Skeletal fluorosis', 'ICD10_2010'), +('M85.10', 'Skeletal fluorosis, multiple sites', 'ICD10_2010'), +('M85.11', 'Skeletal fluorosis, shoulder region', 'ICD10_2010'), +('M85.12', 'Skeletal fluorosis, upper arm', 'ICD10_2010'), +('M85.13', 'Skeletal fluorosis, forearm', 'ICD10_2010'), +('M85.14', 'Skeletal fluorosis, hand', 'ICD10_2010'), +('M85.15', 'Skeletal fluorosis, pelvic and thigh', 'ICD10_2010'), +('M85.16', 'Skeletal fluorosis, lower leg', 'ICD10_2010'), +('M85.17', 'Skeletal fluorosis, ankle and foot', 'ICD10_2010'), +('M85.18', 'Skeletal fluorosis, other site', 'ICD10_2010'), +('M85.19', 'Skeletal fluorosis, site unspecified', 'ICD10_2010'), +('M85.2', 'Hyperostosis of skull', 'ICD10_2010'), +('M85.20', 'Hyperostosis of skull, multiple sites', 'ICD10_2010'), +('M85.21', 'Hyperostosis of skull, shoulder region', 'ICD10_2010'), +('M85.22', 'Hyperostosis of skull, upper arm', 'ICD10_2010'), +('M85.23', 'Hyperostosis of skull, forearm', 'ICD10_2010'), +('M85.24', 'Hyperostosis of skull, hand', 'ICD10_2010'), +('M85.25', 'Hyperostosis of skull, pelvic region and thigh', 'ICD10_2010'), +('M85.26', 'Hyperostosis of skull, lower leg', 'ICD10_2010'), +('M85.27', 'Hyperostosis of skull, ankle and foot', 'ICD10_2010'), +('M85.28', 'Hyperostosis of skull, other', 'ICD10_2010'), +('M85.29', 'Hyperostosis of skull, site unspecified', 'ICD10_2010'), +('M85.3', 'Osteitis condensans', 'ICD10_2010'), +('M85.30', 'Osteitis condensans, multiple sites', 'ICD10_2010'), +('M85.31', 'Osteitis condensans, shoulder region', 'ICD10_2010'), +('M85.32', 'Osteitis condensans, upper arm', 'ICD10_2010'), +('M85.33', 'Osteitis condensans, forearm', 'ICD10_2010'), +('M85.34', 'Osteitis condensans, hand', 'ICD10_2010'), +('M85.35', 'Osteitis condensans, pelvic and thigh', 'ICD10_2010'), +('M85.36', 'Osteitis condensans, lower leg', 'ICD10_2010'), +('M85.37', 'Osteitis condensans, ankle and foot', 'ICD10_2010'), +('M85.38', 'Osteitis condensans, other site', 'ICD10_2010'), +('M85.39', 'Osteitis condensans, site unspecified', 'ICD10_2010'), +('M85.4', 'Solitary bone cyst', 'ICD10_2010'), +('M85.40', 'Solitary bone cyst, multiple sites', 'ICD10_2010'), +('M85.41', 'Solitary bone cyst, shoulder region', 'ICD10_2010'), +('M85.42', 'Solitary bone cyst, upper arm', 'ICD10_2010'), +('M85.43', 'Solitary bone cyst, forearm', 'ICD10_2010'), +('M85.44', 'Solitary bone cyst, hand', 'ICD10_2010'), +('M85.45', 'Solitary bone cyst, pelvic and thigh', 'ICD10_2010'), +('M85.46', 'Solitary bone cyst, lower leg', 'ICD10_2010'), +('M85.47', 'Solitary bone cyst, ankle and foot', 'ICD10_2010'), +('M85.48', 'Solitary bone cyst, other site', 'ICD10_2010'), +('M85.49', 'Solitary bone cyst, site unspecified', 'ICD10_2010'), +('M85.5', 'Aneurysmal bone cyst', 'ICD10_2010'), +('M85.50', 'Aneurysmal bone cyst, multiple sites', 'ICD10_2010'), +('M85.51', 'Aneurysmal bone cyst, shoulder region', 'ICD10_2010'), +('M85.52', 'Aneurysmal bone cyst, upper arm', 'ICD10_2010'), +('M85.53', 'Aneurysmal bone cyst, forearm', 'ICD10_2010'), +('M85.54', 'Aneurysmal bone cyst, hand', 'ICD10_2010'), +('M85.55', 'Aneurysmal bone cyst, pelvic and thigh', 'ICD10_2010'), +('M85.56', 'Aneurysmal bone cyst, lower leg', 'ICD10_2010'), +('M85.57', 'Aneurysmal bone cyst, ankle and foot', 'ICD10_2010'), +('M85.58', 'Aneurysmal bone cyst, other site', 'ICD10_2010'), +('M85.59', 'Aneurysmal bone cyst, site unspecified', 'ICD10_2010'), +('M85.6', 'Other cyst of bone', 'ICD10_2010'), +('M85.60', 'Other cyst of bone, multiple sites', 'ICD10_2010'), +('M85.61', 'Other cyst of bone, shoulder region', 'ICD10_2010'), +('M85.62', 'Other cyst of bone, upper arm', 'ICD10_2010'), +('M85.63', 'Other cyst of bone, forearm', 'ICD10_2010'), +('M85.64', 'Other cyst of bone, hand', 'ICD10_2010'), +('M85.65', 'Other cyst of bone, pelvic and thigh', 'ICD10_2010'), +('M85.66', 'Other cyst of bone, lower leg', 'ICD10_2010'), +('M85.67', 'Other cyst of bone, ankle and foot', 'ICD10_2010'), +('M85.68', 'Other cyst of bone, other site', 'ICD10_2010'), +('M85.69', 'Other cyst of bone, site unspecified', 'ICD10_2010'), +('M85.8', 'Other specified disorders of bone density and structure', 'ICD10_2010'), +('M85.80', 'Other specified disorders of bone density and structure, multiple sites', 'ICD10_2010'), +('M85.81', 'Other specified disorders of bone density and structure, shoulder region', 'ICD10_2010'), +('M85.82', 'Other specified disorders of bone density and structure, upper arm', 'ICD10_2010'), +('M85.83', 'Other specified disorders of bone density and structure, forearm', 'ICD10_2010'), +('M85.84', 'Other specified disorders of bone density and structure, hand', 'ICD10_2010'), +('M85.85', 'Other specified disorders of bone density and structure, pelvic and thigh', 'ICD10_2010'), +('M85.86', 'Other specified disorders of bone density and structure, lower leg', 'ICD10_2010'), +('M85.87', 'Other specified disorders of bone density and structure, ankle and foot', 'ICD10_2010'), +('M85.88', 'Other specified disorders of bone density and structure, other site', 'ICD10_2010'), +('M85.89', 'Other specified disorders of bone density and structure, site unspecified', 'ICD10_2010'), +('M85.9', 'Disorder of bone density and structure, unspecified', 'ICD10_2010'), +('M85.90', 'Disorder of bone density and structure, unspecified, multiple sites', 'ICD10_2010'), +('M85.91', 'Disorder of bone density and structure, unspecified, shoulder region', 'ICD10_2010'), +('M85.92', 'Disorder of bone density and structure, unspecified, upper arm', 'ICD10_2010'), +('M85.93', 'Disorder of bone density and structure, unspecified, forearm', 'ICD10_2010'), +('M85.94', 'Disorder of bone density and structure, unspecified, hand', 'ICD10_2010'), +('M85.95', 'Disorder of bone density and structure, unspecified, pelvic and thigh', 'ICD10_2010'), +('M85.96', 'Disorder of bone density and structure, unspecified, lower leg', 'ICD10_2010'), +('M85.97', 'Disorder of bone density and structure, unspecified, ankle and foot', 'ICD10_2010'), +('M85.98', 'Disorder of bone density and structure, unspecified, other site', 'ICD10_2010'), +('M85.99', 'Disorder of bone density and structure, unspecified, site unspecified', 'ICD10_2010'), +('M86', 'Osteomyelitis', 'ICD10_2010'), +('M86.0', 'Acute haematogenous osteomyelitis', 'ICD10_2010'), +('M86.00', 'Acute haematogenous osteomyelitis, multiple sites', 'ICD10_2010'), +('M86.01', 'Acute haematogenous osteomyelitis, shoulder region', 'ICD10_2010'), +('M86.02', 'Acute haematogenous osteomyelitis, upper arm', 'ICD10_2010'), +('M86.03', 'Acute haematogenous osteomyelitis, forearm', 'ICD10_2010'), +('M86.04', 'Acute haematogenous osteomyelitis, hand', 'ICD10_2010'), +('M86.05', 'Acute haematogenous osteomyelitis, pelvic and thigh', 'ICD10_2010'), +('M86.06', 'Acute haematogenous osteomyelitis, lower leg', 'ICD10_2010'), +('M86.07', 'Acute haematogenous osteomyelitis, ankle and foot', 'ICD10_2010'), +('M86.08', 'Acute haematogenous osteomyelitis, other site', 'ICD10_2010'), +('M86.09', 'Acute haematogenous osteomyelitis, site unspecified', 'ICD10_2010'), +('M86.1', 'Other acute osteomyelitis', 'ICD10_2010'), +('M86.10', 'Other acute osteomyelitis, multiple sites', 'ICD10_2010'), +('M86.11', 'Other acute osteomyelitis, shoulder region', 'ICD10_2010'), +('M86.12', 'Other acute osteomyelitis, upper arm', 'ICD10_2010'), +('M86.13', 'Other acute osteomyelitis, forearm', 'ICD10_2010'), +('M86.14', 'Other acute osteomyelitis, hand', 'ICD10_2010'), +('M86.15', 'Other acute osteomyelitis, pelvic and thigh', 'ICD10_2010'), +('M86.16', 'Other acute osteomyelitis, lower leg', 'ICD10_2010'), +('M86.17', 'Other acute osteomyelitis, ankle and foot', 'ICD10_2010'), +('M86.18', 'Other acute osteomyelitis, other site', 'ICD10_2010'), +('M86.19', 'Other acute osteomyelitis, site unspecified', 'ICD10_2010'), +('M86.2', 'Subacute osteomyelitis', 'ICD10_2010'), +('M86.20', 'Subacute osteomyelitis, multiple sites', 'ICD10_2010'), +('M86.21', 'Subacute osteomyelitis, shoulder region', 'ICD10_2010'), +('M86.22', 'Subacute osteomyelitis, upper arm', 'ICD10_2010'), +('M86.23', 'Subacute osteomyelitis, forearm', 'ICD10_2010'), +('M86.24', 'Subacute osteomyelitis, hand', 'ICD10_2010'), +('M86.25', 'Subacute osteomyelitis, pelvic and thigh', 'ICD10_2010'), +('M86.26', 'Subacute osteomyelitis, lower leg', 'ICD10_2010'), +('M86.27', 'Subacute osteomyelitis, ankle and foot', 'ICD10_2010'), +('M86.28', 'Subacute osteomyelitis, other site', 'ICD10_2010'), +('M86.29', 'Subacute osteomyelitis, site unspecified', 'ICD10_2010'), +('M86.3', 'Chronic multifocal osteomyelitis', 'ICD10_2010'), +('M86.30', 'Chronic multifocal osteomyelitis, multiple sites', 'ICD10_2010'), +('M86.31', 'Chronic multifocal osteomyelitis, shoulder region', 'ICD10_2010'), +('M86.32', 'Chronic multifocal osteomyelitis, upper arm', 'ICD10_2010'), +('M86.33', 'Chronic multifocal osteomyelitis, forearm', 'ICD10_2010'), +('M86.34', 'Chronic multifocal osteomyelitis, hand', 'ICD10_2010'), +('M86.35', 'Chronic multifocal osteomyelitis, pelvic and thigh', 'ICD10_2010'), +('M86.36', 'Chronic multifocal osteomyelitis, lower leg', 'ICD10_2010'), +('M86.37', 'Chronic multifocal osteomyelitis, ankle and foot', 'ICD10_2010'), +('M86.38', 'Chronic multifocal osteomyelitis, other site', 'ICD10_2010'), +('M86.39', 'Chronic multifocal osteomyelitis, site unspecified', 'ICD10_2010'), +('M86.4', 'Chronic osteomyelitis with draining sinus', 'ICD10_2010'), +('M86.40', 'Chronic osteomyelitis with draining sinus, multiple sites', 'ICD10_2010'), +('M86.41', 'Chronic osteomyelitis with draining sinus, shoulder region', 'ICD10_2010'), +('M86.42', 'Chronic osteomyelitis with draining sinus, upper arm', 'ICD10_2010'), +('M86.43', 'Chronic osteomyelitis with draining sinus, forearm', 'ICD10_2010'), +('M86.44', 'Chronic osteomyelitis with draining sinus, hand', 'ICD10_2010'), +('M86.45', 'Chronic osteomyelitis with draining sinus, pelvic and thigh', 'ICD10_2010'), +('M86.46', 'Chronic osteomyelitis with draining sinus, lower leg', 'ICD10_2010'), +('M86.47', 'Chronic osteomyelitis with draining sinus, ankle and foot', 'ICD10_2010'), +('M86.48', 'Chronic osteomyelitis with draining sinus, other site', 'ICD10_2010'), +('M86.49', 'Chronic osteomyelitis with draining sinus, site unspecified', 'ICD10_2010'), +('M86.5', 'Other chronic haematogenous osteomyelitis', 'ICD10_2010'), +('M86.50', 'Other chronic haematogenous osteomyelitis, multiple sites', 'ICD10_2010'), +('M86.51', 'Other chronic haematogenous osteomyelitis, shoulder region', 'ICD10_2010'), +('M86.52', 'Other chronic haematogenous osteomyelitis, upper arm', 'ICD10_2010'), +('M86.53', 'Other chronic haematogenous osteomyelitis, forearm', 'ICD10_2010'), +('M86.54', 'Other chronic haematogenous osteomyelitis, hand', 'ICD10_2010'), +('M86.55', 'Other chronic haematogenous osteomyelitis, pelvic and thigh', 'ICD10_2010'), +('M86.56', 'Other chronic haematogenous osteomyelitis, lower leg', 'ICD10_2010'), +('M86.57', 'Other chronic haematogenous osteomyelitis, ankle and foot', 'ICD10_2010'), +('M86.58', 'Other chronic haematogenous osteomyelitis, other site', 'ICD10_2010'), +('M86.59', 'Other chronic haematogenous osteomyelitis, site unspecified', 'ICD10_2010'), +('M86.6', 'Other chronic osteomyelitis', 'ICD10_2010'), +('M86.60', 'Other chronic osteomyelitis, multiple sites', 'ICD10_2010'), +('M86.61', 'Other chronic osteomyelitis, shoulder region', 'ICD10_2010'), +('M86.62', 'Other chronic osteomyelitis, upper arm', 'ICD10_2010'), +('M86.63', 'Other chronic osteomyelitis, forearm', 'ICD10_2010'), +('M86.64', 'Other chronic osteomyelitis, hand', 'ICD10_2010'), +('M86.65', 'Other chronic osteomyelitis, pelvic and thigh', 'ICD10_2010'), +('M86.66', 'Other chronic osteomyelitis, lower leg', 'ICD10_2010'), +('M86.67', 'Other chronic osteomyelitis, ankle and foot', 'ICD10_2010'), +('M86.68', 'Other chronic osteomyelitis, other site', 'ICD10_2010'), +('M86.69', 'Other chronic osteomyelitis, site unspecified', 'ICD10_2010'), +('M86.8', 'Other osteomyelitis', 'ICD10_2010'), +('M86.80', 'Other osteomyelitis, multiple sites', 'ICD10_2010'), +('M86.81', 'Other osteomyelitis, shoulder region', 'ICD10_2010'), +('M86.82', 'Other osteomyelitis, upper arm', 'ICD10_2010'), +('M86.83', 'Other osteomyelitis, forearm', 'ICD10_2010'), +('M86.84', 'Other osteomyelitis, hand', 'ICD10_2010'), +('M86.85', 'Other osteomyelitis, pelvic and thigh', 'ICD10_2010'), +('M86.86', 'Other osteomyelitis, lower leg', 'ICD10_2010'), +('M86.87', 'Other osteomyelitis, ankle and foot', 'ICD10_2010'), +('M86.88', 'Other osteomyelitis, other site', 'ICD10_2010'), +('M86.89', 'Other osteomyelitis, site unspecified', 'ICD10_2010'), +('M86.9', 'Osteomyelitis, unspecified', 'ICD10_2010'), +('M86.90', 'Osteomyelitis, unspecified, multiple sites', 'ICD10_2010'), +('M86.91', 'Osteomyelitis, unspecified, shoulder region', 'ICD10_2010'), +('M86.92', 'Osteomyelitis, unspecified, upper arm', 'ICD10_2010'), +('M86.93', 'Osteomyelitis, unspecified, forearm', 'ICD10_2010'), +('M86.94', 'Osteomyelitis, unspecified, hand', 'ICD10_2010'), +('M86.95', 'Osteomyelitis, unspecified, pelvic and thigh', 'ICD10_2010'), +('M86.96', 'Osteomyelitis, unspecified, lower leg', 'ICD10_2010'), +('M86.97', 'Osteomyelitis, unspecified, ankle and foot', 'ICD10_2010'), +('M86.98', 'Osteomyelitis, unspecified, other site', 'ICD10_2010'), +('M86.99', 'Osteomyelitis, unspecified, site unspecified', 'ICD10_2010'), +('M87', 'Osteonecrosis', 'ICD10_2010'), +('M87.0', 'Idiopathic aseptic necrosis of bone', 'ICD10_2010'), +('M87.00', 'Idiopathic aseptic necrosis of bone, multiple sites', 'ICD10_2010'), +('M87.01', 'Idiopathic aseptic necrosis of bone, shoulder region', 'ICD10_2010'), +('M87.02', 'Idiopathic aseptic necrosis of bone, upper arm', 'ICD10_2010'), +('M87.03', 'Idiopathic aseptic necrosis of bone, forearm', 'ICD10_2010'), +('M87.04', 'Idiopathic aseptic necrosis of bone, hand', 'ICD10_2010'), +('M87.05', 'Idiopathic aseptic necrosis of bone, pelvic and thigh', 'ICD10_2010'), +('M87.06', 'Idiopathic aseptic necrosis of bone, lower leg', 'ICD10_2010'), +('M87.07', 'Idiopathic aseptic necrosis of bone, ankle and foot', 'ICD10_2010'), +('M87.08', 'Idiopathic aseptic necrosis of bone, other site', 'ICD10_2010'), +('M87.09', 'Idiopathic aseptic necrosis of bone, site unspecified', 'ICD10_2010'), +('M87.1', 'Osteonecrosis due to drugs', 'ICD10_2010'), +('M87.10', 'Osteonecrosis due to drugs, multiple sites', 'ICD10_2010'), +('M87.11', 'Osteonecrosis due to drugs, shoulder region', 'ICD10_2010'), +('M87.12', 'Osteonecrosis due to drugs, upper arm', 'ICD10_2010'), +('M87.13', 'Osteonecrosis due to drugs, forearm', 'ICD10_2010'), +('M87.14', 'Osteonecrosis due to drugs, hand', 'ICD10_2010'), +('M87.15', 'Osteonecrosis due to drugs, pelvic and thigh', 'ICD10_2010'), +('M87.16', 'Osteonecrosis due to drugs, lower leg', 'ICD10_2010'), +('M87.17', 'Osteonecrosis due to drugs, ankle and foot', 'ICD10_2010'), +('M87.18', 'Osteonecrosis due to drugs, other site', 'ICD10_2010'), +('M87.19', 'Osteonecrosis due to drugs, site unspecified', 'ICD10_2010'), +('M87.2', 'Osteonecrosis due to previous trauma', 'ICD10_2010'), +('M87.20', 'Osteonecrosis due to previous trauma, multiple sites', 'ICD10_2010'), +('M87.21', 'Osteonecrosis due to previous trauma, shoulder region', 'ICD10_2010'), +('M87.22', 'Osteonecrosis due to previous trauma, upper arm', 'ICD10_2010'), +('M87.23', 'Osteonecrosis due to previous trauma, forearm', 'ICD10_2010'), +('M87.24', 'Osteonecrosis due to previous trauma, hand', 'ICD10_2010'), +('M87.25', 'Osteonecrosis due to previous trauma, pelvic and thigh', 'ICD10_2010'), +('M87.26', 'Osteonecrosis due to previous trauma, lower leg', 'ICD10_2010'), +('M87.27', 'Osteonecrosis due to previous trauma, ankle and foot', 'ICD10_2010'), +('M87.28', 'Osteonecrosis due to previous trauma, other site', 'ICD10_2010'), +('M87.29', 'Osteonecrosis due to previous trauma, site unspecified', 'ICD10_2010'), +('M87.3', 'Other secondary osteonecrosis', 'ICD10_2010'), +('M87.30', 'Other secondary osteonecrosis, multiple sites', 'ICD10_2010'), +('M87.31', 'Other secondary osteonecrosis, shoulder region', 'ICD10_2010'), +('M87.32', 'Other secondary osteonecrosis, upper arm', 'ICD10_2010'), +('M87.33', 'Other secondary osteonecrosis, forearm', 'ICD10_2010'), +('M87.34', 'Other secondary osteonecrosis, hand', 'ICD10_2010'), +('M87.35', 'Other secondary osteonecrosis, pelvic and thigh', 'ICD10_2010'), +('M87.36', 'Other secondary osteonecrosis, lower leg', 'ICD10_2010'), +('M87.37', 'Other secondary osteonecrosis, ankle and foot', 'ICD10_2010'), +('M87.38', 'Other secondary osteonecrosis, other site', 'ICD10_2010'), +('M87.39', 'Other secondary osteonecrosis, site unspecified', 'ICD10_2010'), +('M87.8', 'Other osteonecrosis', 'ICD10_2010'), +('M87.80', 'Other osteonecrosis, multiple sites', 'ICD10_2010'), +('M87.81', 'Other osteonecrosis, shoulder region', 'ICD10_2010'), +('M87.82', 'Other osteonecrosis, upper arm', 'ICD10_2010'), +('M87.83', 'Other osteonecrosis, forearm', 'ICD10_2010'), +('M87.84', 'Other osteonecrosis, hand', 'ICD10_2010'), +('M87.85', 'Other osteonecrosis, pelvic and thigh', 'ICD10_2010'), +('M87.86', 'Other osteonecrosis, lower leg', 'ICD10_2010'), +('M87.87', 'Other osteonecrosis, ankle and foot', 'ICD10_2010'), +('M87.88', 'Other osteonecrosis, other site', 'ICD10_2010'), +('M87.89', 'Other osteonecrosis, site unspecified', 'ICD10_2010'), +('M87.9', 'Osteonecrosis, unspecified', 'ICD10_2010'), +('M87.90', 'Osteonecrosis, unspecified, multiple sites', 'ICD10_2010'), +('M87.91', 'Osteonecrosis, unspecified, shoulder region', 'ICD10_2010'), +('M87.92', 'Osteonecrosis, unspecified, upper arm', 'ICD10_2010'), +('M87.93', 'Osteonecrosis, unspecified, forearm', 'ICD10_2010'), +('M87.94', 'Osteonecrosis, unspecified, hand', 'ICD10_2010'), +('M87.95', 'Osteonecrosis, unspecified, pelvic and thigh', 'ICD10_2010'), +('M87.96', 'Osteonecrosis, unspecified, lower leg', 'ICD10_2010'), +('M87.97', 'Osteonecrosis, unspecified, ankle and foot', 'ICD10_2010'), +('M87.98', 'Osteonecrosis, unspecified, other site', 'ICD10_2010'), +('M87.99', 'Osteonecrosis, unspecified, site unspecified', 'ICD10_2010'), +('M88', 'Paget disease of bone [osteitis deformans]', 'ICD10_2010'), +('M88.0', 'Paget\'s disease of skull', 'ICD10_2010'), +('M88.09', 'Paget\'s disease of skull, site unspecified', 'ICD10_2010'), +('M88.8', 'Paget\'s disease of other bones', 'ICD10_2010'), +('M88.80', 'Paget\'s disease of other bones, multiple sites', 'ICD10_2010'), +('M88.81', 'Paget\'s disease of other bones, shoulder region', 'ICD10_2010'), +('M88.82', 'Paget\'s disease of other bones, upper arm', 'ICD10_2010'), +('M88.83', 'Paget\'s disease of other bones, forearm', 'ICD10_2010'), +('M88.84', 'Paget\'s disease of other bones, hand', 'ICD10_2010'), +('M88.85', 'Paget\'s disease of other bones, pelvic and thigh', 'ICD10_2010'), +('M88.86', 'Paget\'s disease of other bones, lower leg', 'ICD10_2010'), +('M88.87', 'Paget\'s disease of other bones, ankle and foot', 'ICD10_2010'), +('M88.88', 'Paget\'s disease of other bones, other site', 'ICD10_2010'), +('M88.89', 'Paget\'s disease of other bones, site unspecified', 'ICD10_2010'), +('M88.9', 'Paget\'s disease of bone, unspecified', 'ICD10_2010'), +('M88.90', 'Paget\'s disease of bone, unspecified, multiple sites', 'ICD10_2010'), +('M88.91', 'Paget\'s disease of bone, unspecified, shoulder region', 'ICD10_2010'), +('M88.92', 'Paget\'s disease of bone, unspecified, upper arm', 'ICD10_2010'), +('M88.93', 'Paget\'s disease of bone, unspecified, forearm', 'ICD10_2010'), +('M88.94', 'Paget\'s disease of bone, unspecified, hand', 'ICD10_2010'), +('M88.95', 'Paget\'s disease of bone, unspecified, pelvic and thigh', 'ICD10_2010'), +('M88.96', 'Paget\'s disease of bone, unspecified, lower leg', 'ICD10_2010'), +('M88.97', 'Paget\'s disease of bone, unspecified, ankle and foot', 'ICD10_2010'), +('M88.98', 'Paget\'s disease of bone, unspecified, other site', 'ICD10_2010'), +('M88.99', 'Paget\'s disease of bone, unspecified, site unspecified', 'ICD10_2010'), +('M89', 'Other disorders of bone', 'ICD10_2010'), +('M89.0', 'Algoneurodystrophy', 'ICD10_2010'), +('M89.00', 'Algoneurodystrophy, multiple sites', 'ICD10_2010'), +('M89.01', 'Algoneurodystrophy, shoulder region', 'ICD10_2010'), +('M89.02', 'Algoneurodystrophy, upper arm', 'ICD10_2010'), +('M89.03', 'Algoneurodystrophy, forearm', 'ICD10_2010'), +('M89.04', 'Algoneurodystrophy, hand', 'ICD10_2010'), +('M89.05', 'Algoneurodystrophy, pelvic and thigh', 'ICD10_2010'), +('M89.06', 'Algoneurodystrophy, lower leg', 'ICD10_2010'), +('M89.07', 'Algoneurodystrophy, ankle and foot', 'ICD10_2010'), +('M89.08', 'Algoneurodystrophy, other site', 'ICD10_2010'), +('M89.09', 'Algoneurodystrophy, site unspecified', 'ICD10_2010'), +('M89.1', 'Epiphyseal arrest', 'ICD10_2010'), +('M89.10', 'Epiphyseal arrest, multiple sites', 'ICD10_2010'), +('M89.11', 'Epiphyseal arrest, shoulder region', 'ICD10_2010'), +('M89.12', 'Epiphyseal arrest, upper arm', 'ICD10_2010'), +('M89.13', 'Epiphyseal arrest, forearm', 'ICD10_2010'), +('M89.14', 'Epiphyseal arrest, hand', 'ICD10_2010'), +('M89.15', 'Epiphyseal arrest, pelvic and thigh', 'ICD10_2010'), +('M89.16', 'Epiphyseal arrest, lower leg', 'ICD10_2010'), +('M89.17', 'Epiphyseal arrest, ankle and foot', 'ICD10_2010'), +('M89.18', 'Epiphyseal arrest, other site', 'ICD10_2010'), +('M89.19', 'Epiphyseal arrest, site unspecified', 'ICD10_2010'), +('M89.2', 'Other disorders of bone development and growth', 'ICD10_2010'), +('M89.20', 'Other disorders of bone development and growth, multiple sites', 'ICD10_2010'), +('M89.21', 'Other disorders of bone development and growth, shoulder region', 'ICD10_2010'), +('M89.22', 'Other disorders of bone development and growth, upper arm', 'ICD10_2010'), +('M89.23', 'Other disorders of bone development and growth, forearm', 'ICD10_2010'), +('M89.24', 'Other disorders of bone development and growth, hand', 'ICD10_2010'), +('M89.25', 'Other disorders of bone development and growth, pelvic and thigh', 'ICD10_2010'), +('M89.26', 'Other disorders of bone development and growth, lower leg', 'ICD10_2010'), +('M89.27', 'Other disorders of bone development and growth, ankle and foot', 'ICD10_2010'), +('M89.28', 'Other disorders of bone development and growth, other site', 'ICD10_2010'), +('M89.29', 'Other disorders of bone development and growth, site unspecified', 'ICD10_2010'), +('M89.3', 'Hypertrophy of bone', 'ICD10_2010'), +('M89.30', 'Hypertrophy of bone, multiple sites', 'ICD10_2010'), +('M89.31', 'Hypertrophy of bone, shoulder region', 'ICD10_2010'), +('M89.32', 'Hypertrophy of bone, upper arm', 'ICD10_2010'), +('M89.33', 'Hypertrophy of bone, forearm', 'ICD10_2010'), +('M89.34', 'Hypertrophy of bone, hand', 'ICD10_2010'), +('M89.35', 'Hypertrophy of bone, pelvic and thigh', 'ICD10_2010'), +('M89.36', 'Hypertrophy of bone, lower leg', 'ICD10_2010'), +('M89.37', 'Hypertrophy of bone, ankle and foot', 'ICD10_2010'), +('M89.38', 'Hypertrophy of bone, other site', 'ICD10_2010'), +('M89.39', 'Hypertrophy of bone, site unspecified', 'ICD10_2010'), +('M89.4', 'Other hypertrophic osteoarthropathy', 'ICD10_2010'), +('M89.40', 'Other hypertrophic osteoarthropathy, multiple sites', 'ICD10_2010'), +('M89.41', 'Other hypertrophic osteoarthropathy, shoulder region', 'ICD10_2010'), +('M89.42', 'Other hypertrophic osteoarthropathy, upper arm', 'ICD10_2010'), +('M89.43', 'Other hypertrophic osteoarthropathy, forearm', 'ICD10_2010'), +('M89.44', 'Other hypertrophic osteoarthropathy, hand', 'ICD10_2010'), +('M89.45', 'Other hypertrophic osteoarthropathy, pelvic and thigh', 'ICD10_2010'), +('M89.46', 'Other hypertrophic osteoarthropathy, lower leg', 'ICD10_2010'), +('M89.47', 'Other hypertrophic osteoarthropathy, ankle and foot', 'ICD10_2010'), +('M89.48', 'Other hypertrophic osteoarthropathy, other site', 'ICD10_2010'), +('M89.49', 'Other hypertrophic osteoarthropathy, site unspecified', 'ICD10_2010'), +('M89.5', 'Osteolysis', 'ICD10_2010'), +('M89.50', 'Osteolysis, multiple sites', 'ICD10_2010'), +('M89.51', 'Osteolysis, shoulder region', 'ICD10_2010'), +('M89.52', 'Osteolysis, upper arm', 'ICD10_2010'), +('M89.53', 'Osteolysis, forearm', 'ICD10_2010'), +('M89.54', 'Osteolysis, hand', 'ICD10_2010'), +('M89.55', 'Osteolysis, pelvic and thigh', 'ICD10_2010'), +('M89.56', 'Osteolysis, lower leg', 'ICD10_2010'), +('M89.57', 'Osteolysis, ankle and foot', 'ICD10_2010'), +('M89.58', 'Osteolysis, other site', 'ICD10_2010'), +('M89.59', 'Osteolysis, site unspecified', 'ICD10_2010'), +('M89.6', 'Osteopathy after poliomyelitis', 'ICD10_2010'), +('M89.60', 'Osteopathy after poliomyelitis, multiple sites', 'ICD10_2010'), +('M89.61', 'Osteopathy after poliomyelitis, shoulder region', 'ICD10_2010'), +('M89.62', 'Osteopathy after poliomyelitis, upper arm', 'ICD10_2010'), +('M89.63', 'Osteopathy after poliomyelitis, forearm', 'ICD10_2010'), +('M89.64', 'Osteopathy after poliomyelitis, hand', 'ICD10_2010'), +('M89.65', 'Osteopathy after poliomyelitis, pelvic and thigh', 'ICD10_2010'), +('M89.66', 'Osteopathy after poliomyelitis, lower leg', 'ICD10_2010'), +('M89.67', 'Osteopathy after poliomyelitis, ankle and foot', 'ICD10_2010'), +('M89.68', 'Osteopathy after poliomyelitis, other site', 'ICD10_2010'), +('M89.69', 'Osteopathy after poliomyelitis, site unspecified', 'ICD10_2010'), +('M89.8', 'Other specified disorders of bone', 'ICD10_2010'), +('M89.80', 'Other specified disorders of bone, multiple sites', 'ICD10_2010'), +('M89.81', 'Other specified disorders of bone, shoulder region', 'ICD10_2010'), +('M89.82', 'Other specified disorders of bone, upper arm', 'ICD10_2010'), +('M89.83', 'Other specified disorders of bone, forearm', 'ICD10_2010'), +('M89.84', 'Other specified disorders of bone, hand', 'ICD10_2010'), +('M89.85', 'Other specified disorders of bone, pelvic and thigh', 'ICD10_2010'), +('M89.86', 'Other specified disorders of bone, lower leg', 'ICD10_2010'), +('M89.87', 'Other specified disorders of bone, ankle and foot', 'ICD10_2010'), +('M89.88', 'Other specified disorders of bone, other site', 'ICD10_2010'), +('M89.89', 'Other specified disorders of bone, site unspecified', 'ICD10_2010'), +('M89.9', 'Disorder of bone, unspecified', 'ICD10_2010'), +('M89.90', 'Disorder of bone, unspecified, multiple sites', 'ICD10_2010'), +('M89.91', 'Disorder of bone, unspecified, shoulder region', 'ICD10_2010'), +('M89.92', 'Disorder of bone, unspecified, upper arm', 'ICD10_2010'), +('M89.93', 'Disorder of bone, unspecified, forearm', 'ICD10_2010'), +('M89.94', 'Disorder of bone, unspecified, hand', 'ICD10_2010'), +('M89.95', 'Disorder of bone, unspecified, pelvic and thigh', 'ICD10_2010'), +('M89.96', 'Disorder of bone, unspecified, lower leg', 'ICD10_2010'), +('M89.97', 'Disorder of bone, unspecified, ankle and foot', 'ICD10_2010'), +('M89.98', 'Disorder of bone, unspecified, other site', 'ICD10_2010'), +('M89.99', 'Disorder of bone, unspecified, site unspecified', 'ICD10_2010'), +('M90', 'Osteopathies in diseases classified elsewhere', 'ICD10_2010'), +('M90.0', 'Tuberculosis of bone', 'ICD10_2010'), +('M90.00', 'Tuberculosis of bone, multiple sites', 'ICD10_2010'), +('M90.01', 'Tuberculosis of bone, shoulder region', 'ICD10_2010'), +('M90.02', 'Tuberculosis of bone, upper arm', 'ICD10_2010'), +('M90.03', 'Tuberculosis of bone, forearm', 'ICD10_2010'), +('M90.04', 'Tuberculosis of bone, hand', 'ICD10_2010'), +('M90.05', 'Tuberculosis of bone, pelvic and thigh', 'ICD10_2010'), +('M90.06', 'Tuberculosis of bone, lower leg', 'ICD10_2010'), +('M90.07', 'Tuberculosis of bone, ankle and foot', 'ICD10_2010'), +('M90.08', 'Tuberculosis of bone, other site', 'ICD10_2010'), +('M90.09', 'Tuberculosis of bone, site unspecified', 'ICD10_2010'), +('M90.1', 'Periostitis in other infectious diseases classified elsewhere', 'ICD10_2010'), +('M90.10', 'Periostitis in other infectious diseases classified elsewhere, multiple sites', 'ICD10_2010'), +('M90.11', 'Periostitis in other infectious diseases classified elsewhere, shoulder region', 'ICD10_2010'), +('M90.12', 'Periostitis in other infectious diseases classified elsewhere, upper arm', 'ICD10_2010'), +('M90.13', 'Periostitis in other infectious diseases classified elsewhere, forearm', 'ICD10_2010'), +('M90.14', 'Periostitis in other infectious diseases classified elsewhere, hand', 'ICD10_2010'), +('M90.15', 'Periostitis in other infectious diseases classified elsewhere, pelvic and thigh', 'ICD10_2010'), +('M90.16', 'Periostitis in other infectious diseases classified elsewhere, lower leg', 'ICD10_2010'), +('M90.17', 'Periostitis in other infectious diseases classified elsewhere, ankle and foot', 'ICD10_2010'), +('M90.18', 'Periostitis in other infectious diseases classified elsewhere, other site', 'ICD10_2010'), +('M90.19', 'Periostitis in other infectious diseases classified elsewhere, site unspecified', 'ICD10_2010'), +('M90.2', 'Osteopathy in other infectious diseases classified elsewhere', 'ICD10_2010'), +('M90.20', 'Osteopathy in other infectious diseases classified elsewhere, multiple sites', 'ICD10_2010'), +('M90.21', 'Osteopathy in other infectious diseases classified elsewhere, shoulder region', 'ICD10_2010'), +('M90.22', 'Osteopathy in other infectious diseases classified elsewhere, upper arm', 'ICD10_2010'), +('M90.23', 'Osteopathy in other infectious diseases classified elsewhere, forearm', 'ICD10_2010'), +('M90.24', 'Osteopathy in other infectious diseases classified elsewhere, hand', 'ICD10_2010'), +('M90.25', 'Osteopathy in other infectious diseases classified elsewhere, pelvic and thigh', 'ICD10_2010'), +('M90.26', 'Osteopathy in other infectious diseases classified elsewhere, lower leg', 'ICD10_2010'), +('M90.27', 'Osteopathy in other infectious diseases classified elsewhere, ankle and foot', 'ICD10_2010'), +('M90.28', 'Osteopathy in other infectious diseases classified elsewhere, other site', 'ICD10_2010'), +('M90.29', 'Osteopathy in other infectious diseases classified elsewhere, site unspecified', 'ICD10_2010'), +('M90.3', 'Osteonecrosis in caisson disease', 'ICD10_2010'), +('M90.30', 'Osteonecrosis in caisson disease, multiple sites', 'ICD10_2010'), +('M90.31', 'Osteonecrosis in caisson disease, shoulder region', 'ICD10_2010'), +('M90.32', 'Osteonecrosis in caisson disease, upper arm', 'ICD10_2010'), +('M90.33', 'Osteonecrosis in caisson disease, forearm', 'ICD10_2010'), +('M90.34', 'Osteonecrosis in caisson disease, hand', 'ICD10_2010'), +('M90.35', 'Osteonecrosis in caisson disease, pelvic and thigh', 'ICD10_2010'), +('M90.36', 'Osteonecrosis in caisson disease, lower leg', 'ICD10_2010'), +('M90.37', 'Osteonecrosis in caisson disease, ankle and foot', 'ICD10_2010'), +('M90.38', 'Osteonecrosis in caisson disease, other site', 'ICD10_2010'), +('M90.39', 'Osteonecrosis in caisson disease, site unspecified', 'ICD10_2010'), +('M90.4', 'Osteonecrosis due to haemoglobinopathy', 'ICD10_2010'), +('M90.40', 'Osteonecrosis due to haemoglobinopathy, multiple sites', 'ICD10_2010'), +('M90.41', 'Osteonecrosis due to haemoglobinopathy, shoulder region', 'ICD10_2010'), +('M90.42', 'Osteonecrosis due to haemoglobinopathy, upper arm', 'ICD10_2010'), +('M90.43', 'Osteonecrosis due to haemoglobinopathy, forearm', 'ICD10_2010'), +('M90.44', 'Osteonecrosis due to haemoglobinopathy, hand', 'ICD10_2010'), +('M90.45', 'Osteonecrosis due to haemoglobinopathy, pelvic and thigh', 'ICD10_2010'), +('M90.46', 'Osteonecrosis due to haemoglobinopathy, lower leg', 'ICD10_2010'), +('M90.47', 'Osteonecrosis due to haemoglobinopathy, ankle and foot', 'ICD10_2010'), +('M90.48', 'Osteonecrosis due to haemoglobinopathy, other site', 'ICD10_2010'), +('M90.49', 'Osteonecrosis due to haemoglobinopathy, site unspecified', 'ICD10_2010'), +('M90.5', 'Osteonecrosis in other diseases classified elsewhere', 'ICD10_2010'), +('M90.50', 'Osteonecrosis in other diseases classified elsewhere, multiple sites', 'ICD10_2010'), +('M90.51', 'Osteonecrosis in other diseases classified elsewhere, shoulder region', 'ICD10_2010'), +('M90.52', 'Osteonecrosis in other diseases classified elsewhere, upper arm', 'ICD10_2010'), +('M90.53', 'Osteonecrosis in other diseases classified elsewhere, forearm', 'ICD10_2010'), +('M90.54', 'Osteonecrosis in other diseases classified elsewhere, hand', 'ICD10_2010'), +('M90.55', 'Osteonecrosis in other diseases classified elsewhere, pelvic and thigh', 'ICD10_2010'), +('M90.56', 'Osteonecrosis in other diseases classified elsewhere, lower leg', 'ICD10_2010'), +('M90.57', 'Osteonecrosis in other diseases classified elsewhere, ankle and foot', 'ICD10_2010'), +('M90.58', 'Osteonecrosis in other diseases classified elsewhere, other site', 'ICD10_2010'), +('M90.59', 'Osteonecrosis in other diseases classified elsewhere, site unspecified', 'ICD10_2010'), +('M90.6', 'Osteitis deformans in neoplastic disease', 'ICD10_2010'), +('M90.60', 'Osteitis deformans in neoplastic disease, multiple sites', 'ICD10_2010'), +('M90.61', 'Osteitis deformans in neoplastic disease, shoulder region', 'ICD10_2010'), +('M90.62', 'Osteitis deformans in neoplastic disease, upper arm', 'ICD10_2010'), +('M90.63', 'Osteitis deformans in neoplastic disease, forearm', 'ICD10_2010'), +('M90.64', 'Osteitis deformans in neoplastic disease, hand', 'ICD10_2010'), +('M90.65', 'Osteitis deformans in neoplastic disease, pelvic and thigh', 'ICD10_2010'), +('M90.66', 'Osteitis deformans in neoplastic disease, lower leg', 'ICD10_2010'), +('M90.67', 'Osteitis deformans in neoplastic disease, ankle and foot', 'ICD10_2010'), +('M90.68', 'Osteitis deformans in neoplastic disease, other site', 'ICD10_2010'), +('M90.69', 'Osteitis deformans in neoplastic disease, site unspecified', 'ICD10_2010'), +('M90.7', 'Fracture of bone in neoplastic disease', 'ICD10_2010'), +('M90.70', 'Fracture of bone in neoplastic disease, multiple sites', 'ICD10_2010'), +('M90.71', 'Fracture of bone in neoplastic disease, shoulder region', 'ICD10_2010'), +('M90.72', 'Fracture of bone in neoplastic disease, upper arm', 'ICD10_2010'), +('M90.73', 'Fracture of bone in neoplastic disease, forearm', 'ICD10_2010'), +('M90.74', 'Fracture of bone in neoplastic disease, hand', 'ICD10_2010'), +('M90.75', 'Fracture of bone in neoplastic disease, pelvic and thigh', 'ICD10_2010'), +('M90.76', 'Fracture of bone in neoplastic disease, lower leg', 'ICD10_2010'), +('M90.77', 'Fracture of bone in neoplastic disease, ankle and foot', 'ICD10_2010'), +('M90.78', 'Fracture of bone in neoplastic disease, other site', 'ICD10_2010'), +('M90.79', 'Fracture of bone in neoplastic disease, site unspecified', 'ICD10_2010'), +('M90.8', 'Osteopathy in other diseases classified elsewhere', 'ICD10_2010'), +('M90.80', 'Osteopathy in other diseases classified elsewhere, multiple sites', 'ICD10_2010'), +('M90.81', 'Osteopathy in other diseases classified elsewhere, shoulder region', 'ICD10_2010'), +('M90.82', 'Osteopathy in other diseases classified elsewhere, upper arm', 'ICD10_2010'), +('M90.83', 'Osteopathy in other diseases classified elsewhere, forearm', 'ICD10_2010'), +('M90.84', 'Osteopathy in other diseases classified elsewhere, hand', 'ICD10_2010'), +('M90.85', 'Osteopathy in other diseases classified elsewhere, pelvic and thigh', 'ICD10_2010'), +('M90.86', 'Osteopathy in other diseases classified elsewhere, lower leg', 'ICD10_2010'), +('M90.87', 'Osteopathy in other diseases classified elsewhere, ankle and foot', 'ICD10_2010'), +('M90.88', 'Osteopathy in other diseases classified elsewhere, other site', 'ICD10_2010'), +('M90.89', 'Osteopathy in other diseases classified elsewhere, site unspecified', 'ICD10_2010'), +('M91', 'Juvenile osteochondrosis of hip and pelvis', 'ICD10_2010'), +('M91.0', 'Juvenile osteochondrosis of pelvis', 'ICD10_2010'), +('M91.00', 'Juvenile osteochondrosis of pelvis, multiple sites', 'ICD10_2010'), +('M91.01', 'Juvenile osteochondrosis of pelvis, shoulder region', 'ICD10_2010'), +('M91.02', 'Juvenile osteochondrosis of pelvis, upper arm', 'ICD10_2010'), +('M91.03', 'Juvenile osteochondrosis of pelvis, forearm', 'ICD10_2010'), +('M91.04', 'Juvenile osteochondrosis of pelvis, hand', 'ICD10_2010'), +('M91.05', 'Juvenile osteochondrosis of pelvis, pelvic region and thigh', 'ICD10_2010'), +('M91.06', 'Juvenile osteochondrosis of pelvis, lower leg', 'ICD10_2010'), +('M91.07', 'Juvenile osteochondrosis of pelvis, ankle and foot', 'ICD10_2010'), +('M91.08', 'Juvenile osteochondrosis of pelvis, other', 'ICD10_2010'), +('M91.09', 'Juvenile osteochondrosis of pelvis, site unspecified', 'ICD10_2010'), +('M91.1', 'Juv osteochondrosis head of femur [legg-calv', 'ICD10_2010'), +('M91.10', 'Juv osteochondrosis head of femur [legg-calv', 'ICD10_2010'), +('M91.11', 'Juv osteochondrosis head of femur [legg-calv', 'ICD10_2010'), +('M91.12', 'Juv osteochondrosis head of femur [legg-calv', 'ICD10_2010'), +('M91.13', 'Juv osteochondrosis head of femur [legg-calv', 'ICD10_2010'), +('M91.14', 'Juv osteochondrosis head of femur [legg-calv', 'ICD10_2010'), +('M91.15', 'Juv osteochondrosis head of femur [legg-calv', 'ICD10_2010'), +('M91.16', 'Juv osteochondrosis head of femur [legg-calv', 'ICD10_2010'), +('M91.17', 'Juv osteochondrosis head of femur [legg-calv', 'ICD10_2010'), +('M91.18', 'Juv osteochondrosis head of femur [legg-calv', 'ICD10_2010'), +('M91.19', 'Juv osteochondrosis head of femur [legg-calv', 'ICD10_2010'), +('M91.2', 'Coxa plana', 'ICD10_2010'), +('M91.20', 'Coxa plana, multiple sites', 'ICD10_2010'), +('M91.21', 'Coxa plana, shoulder region', 'ICD10_2010'), +('M91.22', 'Coxa plana, upper arm', 'ICD10_2010'), +('M91.23', 'Coxa plana, forearm', 'ICD10_2010'), +('M91.24', 'Coxa plana, hand', 'ICD10_2010'), +('M91.25', 'Coxa plana, pelvic region and thigh', 'ICD10_2010'), +('M91.26', 'Coxa plana, lower leg', 'ICD10_2010'), +('M91.27', 'Coxa plana, ankle and foot', 'ICD10_2010'), +('M91.28', 'Coxa plana, other', 'ICD10_2010'), +('M91.29', 'Coxa plana, site unspecified', 'ICD10_2010'), +('M91.3', 'Pseudocoxalgia', 'ICD10_2010'), +('M91.30', 'Pseudocoxalgia, multiple sites', 'ICD10_2010'), +('M91.31', 'Pseudocoxalgia, shoulder region', 'ICD10_2010'), +('M91.32', 'Pseudocoxalgia, upper arm', 'ICD10_2010'), +('M91.33', 'Pseudocoxalgia, forearm', 'ICD10_2010'), +('M91.34', 'Pseudocoxalgia, hand', 'ICD10_2010'), +('M91.35', 'Pseudocoxalgia, pelvic region and thigh', 'ICD10_2010'), +('M91.36', 'Pseudocoxalgia, lower leg', 'ICD10_2010'), +('M91.37', 'Pseudocoxalgia, ankle and foot', 'ICD10_2010'), +('M91.38', 'Pseudocoxalgia, other', 'ICD10_2010'), +('M91.39', 'Pseudocoxalgia, site unspecified', 'ICD10_2010'), +('M91.8', 'Other juvenile osteochondrosis of hip and pelvis', 'ICD10_2010'), +('M91.80', 'Other juvenile osteochondrosis of hip and pelvis, multiple sites', 'ICD10_2010'), +('M91.81', 'Other juvenile osteochondrosis of hip and pelvis, shoulder region', 'ICD10_2010'), +('M91.82', 'Other juvenile osteochondrosis of hip and pelvis, upper arm', 'ICD10_2010'), +('M91.83', 'Other juvenile osteochondrosis of hip and pelvis, forearm', 'ICD10_2010'), +('M91.84', 'Other juvenile osteochondrosis of hip and pelvis, hand', 'ICD10_2010'), +('M91.85', 'Other juvenile osteochondrosis of hip and pelvis, pelvic region and thigh', 'ICD10_2010'), +('M91.86', 'Other juvenile osteochondrosis of hip and pelvis, lower leg', 'ICD10_2010'), +('M91.87', 'Other juvenile osteochondrosis of hip and pelvis, ankle and foot', 'ICD10_2010'), +('M91.88', 'Other juvenile osteochondrosis of hip and pelvis, other', 'ICD10_2010'), +('M91.89', 'Other juvenile osteochondrosis of hip and pelvis, site unspecified', 'ICD10_2010'), +('M91.9', 'Juvenile osteochondrosis of hip and pelvis, unspecified', 'ICD10_2010'), +('M91.90', 'Juvenile osteochondrosis of hip and pelvis, unspecified, multiple sites', 'ICD10_2010'), +('M91.91', 'Juvenile osteochondrosis of hip and pelvis, unspecified, shoulder region', 'ICD10_2010'), +('M91.92', 'Juvenile osteochondrosis of hip and pelvis, unspecified, upper arm', 'ICD10_2010'), +('M91.93', 'Juvenile osteochondrosis of hip and pelvis, unspecified, forearm', 'ICD10_2010'), +('M91.94', 'Juvenile osteochondrosis of hip and pelvis, unspecified, hand', 'ICD10_2010'), +('M91.95', 'Juvenile osteochondrosis of hip and pelvis, unspecified, pelvic region and thigh', 'ICD10_2010'), +('M91.96', 'Juvenile osteochondrosis of hip and pelvis, unspecified, lower leg', 'ICD10_2010'), +('M91.97', 'Juvenile osteochondrosis of hip and pelvis, unspecified, ankle and foot', 'ICD10_2010'), +('M91.98', 'Juvenile osteochondrosis of hip and pelvis, unspecified, other', 'ICD10_2010'), +('M91.99', 'Juvenile osteochondrosis of hip and pelvis, unspecified, site unspecified', 'ICD10_2010'), +('M92', 'Other juvenile osteochondrosis', 'ICD10_2010'), +('M92.0', 'Juvenile osteochondrosis of humerus', 'ICD10_2010'), +('M92.00', 'Juvenile osteochondrosis of humerus, multiple sites', 'ICD10_2010'), +('M92.01', 'Juvenile osteochondrosis of humerus, shoulder region', 'ICD10_2010'), +('M92.02', 'Juvenile osteochondrosis of humerus, upper arm', 'ICD10_2010'), +('M92.03', 'Juvenile osteochondrosis of humerus, forearm', 'ICD10_2010'), +('M92.04', 'Juvenile osteochondrosis of humerus, hand', 'ICD10_2010'), +('M92.05', 'Juvenile osteochondrosis of humerus, pelvic region and thigh', 'ICD10_2010'), +('M92.06', 'Juvenile osteochondrosis of humerus, lower leg', 'ICD10_2010'), +('M92.07', 'Juvenile osteochondrosis of humerus, ankle and foot', 'ICD10_2010'), +('M92.08', 'Juvenile osteochondrosis of humerus, other', 'ICD10_2010'), +('M92.09', 'Juvenile osteochondrosis of humerus, site unspecified', 'ICD10_2010'), +('M92.1', 'Juvenile osteochondrosis of radius and ulna', 'ICD10_2010'), +('M92.10', 'Juvenile osteochondrosis of radius and ulna, multiple sites', 'ICD10_2010'), +('M92.11', 'Juvenile osteochondrosis of radius and ulna, shoulder region', 'ICD10_2010'), +('M92.12', 'Juvenile osteochondrosis of radius and ulna, upper arm', 'ICD10_2010'), +('M92.13', 'Juvenile osteochondrosis of radius and ulna, forearm', 'ICD10_2010'), +('M92.14', 'Juvenile osteochondrosis of radius and ulna, hand', 'ICD10_2010'), +('M92.15', 'Juvenile osteochondrosis of radius and ulna, pelvic region and thigh', 'ICD10_2010'), +('M92.16', 'Juvenile osteochondrosis of radius and ulna, lower leg', 'ICD10_2010'), +('M92.17', 'Juvenile osteochondrosis of radius and ulna, ankle and foot', 'ICD10_2010'), +('M92.18', 'Juvenile osteochondrosis of radius and ulna, other', 'ICD10_2010'), +('M92.19', 'Juvenile osteochondrosis of radius and ulna, site unspecified', 'ICD10_2010'), +('M92.2', 'Juvenile osteochondrosis of hand', 'ICD10_2010'), +('M92.20', 'Juvenile osteochondrosis of hand, multiple sites', 'ICD10_2010'), +('M92.21', 'Juvenile osteochondrosis of hand, shoulder region', 'ICD10_2010'), +('M92.22', 'Juvenile osteochondrosis of hand, upper arm', 'ICD10_2010'), +('M92.23', 'Juvenile osteochondrosis of hand, forearm', 'ICD10_2010'), +('M92.24', 'Juvenile osteochondrosis of hand, hand', 'ICD10_2010'), +('M92.25', 'Juvenile osteochondrosis of hand, pelvic region and thigh', 'ICD10_2010'), +('M92.26', 'Juvenile osteochondrosis of hand, lower leg', 'ICD10_2010'), +('M92.27', 'Juvenile osteochondrosis of hand, ankle and foot', 'ICD10_2010'), +('M92.28', 'Juvenile osteochondrosis of hand, other', 'ICD10_2010'), +('M92.29', 'Juvenile osteochondrosis of hand, site unspecified', 'ICD10_2010'), +('M92.3', 'Other juvenile osteochondrosis of upper limb', 'ICD10_2010'), +('M92.30', 'Other juvenile osteochondrosis of upper limb, multiple sites', 'ICD10_2010'), +('M92.31', 'Other juvenile osteochondrosis of upper limb, shoulder region', 'ICD10_2010'), +('M92.32', 'Other juvenile osteochondrosis of upper limb, upper arm', 'ICD10_2010'), +('M92.33', 'Other juvenile osteochondrosis of upper limb, forearm', 'ICD10_2010'), +('M92.34', 'Other juvenile osteochondrosis of upper limb, hand', 'ICD10_2010'), +('M92.35', 'Other juvenile osteochondrosis of upper limb, pelvic region and thigh', 'ICD10_2010'); +INSERT INTO `icd10` (`ID_ICD10`, `Diagnosa`, `Versi_ICD10`) VALUES +('M92.36', 'Other juvenile osteochondrosis of upper limb, lower leg', 'ICD10_2010'), +('M92.37', 'Other juvenile osteochondrosis of upper limb, ankle and foot', 'ICD10_2010'), +('M92.38', 'Other juvenile osteochondrosis of upper limb, other', 'ICD10_2010'), +('M92.39', 'Other juvenile osteochondrosis of upper limb, site unspecified', 'ICD10_2010'), +('M92.4', 'Juvenile osteochondrosis of patella', 'ICD10_2010'), +('M92.40', 'Juvenile osteochondrosis of patella, multiple sites', 'ICD10_2010'), +('M92.41', 'Juvenile osteochondrosis of patella, shoulder region', 'ICD10_2010'), +('M92.42', 'Juvenile osteochondrosis of patella, upper arm', 'ICD10_2010'), +('M92.43', 'Juvenile osteochondrosis of patella, forearm', 'ICD10_2010'), +('M92.44', 'Juvenile osteochondrosis of patella, hand', 'ICD10_2010'), +('M92.45', 'Juvenile osteochondrosis of patella, pelvic region and thigh', 'ICD10_2010'), +('M92.46', 'Juvenile osteochondrosis of patella, lower leg', 'ICD10_2010'), +('M92.47', 'Juvenile osteochondrosis of patella, ankle and foot', 'ICD10_2010'), +('M92.48', 'Juvenile osteochondrosis of patella, other', 'ICD10_2010'), +('M92.49', 'Juvenile osteochondrosis of patella, site unspecified', 'ICD10_2010'), +('M92.5', 'Juvenile osteochondrosis of tibia and fibula', 'ICD10_2010'), +('M92.50', 'Juvenile osteochondrosis of tibia and fibula, multiple sites', 'ICD10_2010'), +('M92.51', 'Juvenile osteochondrosis of tibia and fibula, shoulder region', 'ICD10_2010'), +('M92.52', 'Juvenile osteochondrosis of tibia and fibula, upper arm', 'ICD10_2010'), +('M92.53', 'Juvenile osteochondrosis of tibia and fibula, forearm', 'ICD10_2010'), +('M92.54', 'Juvenile osteochondrosis of tibia and fibula, hand', 'ICD10_2010'), +('M92.55', 'Juvenile osteochondrosis of tibia and fibula, pelvic region and thigh', 'ICD10_2010'), +('M92.56', 'Juvenile osteochondrosis of tibia and fibula, lower leg', 'ICD10_2010'), +('M92.57', 'Juvenile osteochondrosis of tibia and fibula, ankle and foot', 'ICD10_2010'), +('M92.58', 'Juvenile osteochondrosis of tibia and fibula, other', 'ICD10_2010'), +('M92.59', 'Juvenile osteochondrosis of tibia and fibula, site unspecified', 'ICD10_2010'), +('M92.6', 'Juvenile osteochondrosis of tarsus', 'ICD10_2010'), +('M92.60', 'Juvenile osteochondrosis of tarsus, multiple sites', 'ICD10_2010'), +('M92.61', 'Juvenile osteochondrosis of tarsus, shoulder region', 'ICD10_2010'), +('M92.62', 'Juvenile osteochondrosis of tarsus, upper arm', 'ICD10_2010'), +('M92.63', 'Juvenile osteochondrosis of tarsus, forearm', 'ICD10_2010'), +('M92.64', 'Juvenile osteochondrosis of tarsus, hand', 'ICD10_2010'), +('M92.65', 'Juvenile osteochondrosis of tarsus, pelvic region and thigh', 'ICD10_2010'), +('M92.66', 'Juvenile osteochondrosis of tarsus, lower leg', 'ICD10_2010'), +('M92.67', 'Juvenile osteochondrosis of tarsus, ankle and foot', 'ICD10_2010'), +('M92.68', 'Juvenile osteochondrosis of tarsus, other', 'ICD10_2010'), +('M92.69', 'Juvenile osteochondrosis of tarsus, site unspecified', 'ICD10_2010'), +('M92.7', 'Juvenile osteochondrosis of metatarsus', 'ICD10_2010'), +('M92.70', 'Juvenile osteochondrosis of metatarsus, multiple sites', 'ICD10_2010'), +('M92.71', 'Juvenile osteochondrosis of metatarsus, shoulder region', 'ICD10_2010'), +('M92.72', 'Juvenile osteochondrosis of metatarsus, upper arm', 'ICD10_2010'), +('M92.73', 'Juvenile osteochondrosis of metatarsus, forearm', 'ICD10_2010'), +('M92.74', 'Juvenile osteochondrosis of metatarsus, hand', 'ICD10_2010'), +('M92.75', 'Juvenile osteochondrosis of metatarsus, pelvic region and thigh', 'ICD10_2010'), +('M92.76', 'Juvenile osteochondrosis of metatarsus, lower leg', 'ICD10_2010'), +('M92.77', 'Juvenile osteochondrosis of metatarsus, ankle and foot', 'ICD10_2010'), +('M92.78', 'Juvenile osteochondrosis of metatarsus, other', 'ICD10_2010'), +('M92.79', 'Juvenile osteochondrosis of metatarsus, site unspecified', 'ICD10_2010'), +('M92.8', 'Other specified juvenile osteochondrosis', 'ICD10_2010'), +('M92.80', 'Other specified juvenile osteochondrosis, multiple sites', 'ICD10_2010'), +('M92.81', 'Other specified juvenile osteochondrosis, shoulder region', 'ICD10_2010'), +('M92.82', 'Other specified juvenile osteochondrosis, upper arm', 'ICD10_2010'), +('M92.83', 'Other specified juvenile osteochondrosis, forearm', 'ICD10_2010'), +('M92.84', 'Other specified juvenile osteochondrosis, hand', 'ICD10_2010'), +('M92.85', 'Other specified juvenile osteochondrosis, pelvic region and thigh', 'ICD10_2010'), +('M92.86', 'Other specified juvenile osteochondrosis, lower leg', 'ICD10_2010'), +('M92.87', 'Other specified juvenile osteochondrosis, ankle and foot', 'ICD10_2010'), +('M92.88', 'Other specified juvenile osteochondrosis, other', 'ICD10_2010'), +('M92.89', 'Other specified juvenile osteochondrosis, site unspecified', 'ICD10_2010'), +('M92.9', 'Juvenile osteochondrosis, unspecified', 'ICD10_2010'), +('M92.90', 'Juvenile osteochondrosis, unspecified, multiple sites', 'ICD10_2010'), +('M92.91', 'Juvenile osteochondrosis, unspecified, shoulder region', 'ICD10_2010'), +('M92.92', 'Juvenile osteochondrosis, unspecified, upper arm', 'ICD10_2010'), +('M92.93', 'Juvenile osteochondrosis, unspecified, forearm', 'ICD10_2010'), +('M92.94', 'Juvenile osteochondrosis, unspecified, hand', 'ICD10_2010'), +('M92.95', 'Juvenile osteochondrosis, unspecified, pelvic region and thigh', 'ICD10_2010'), +('M92.96', 'Juvenile osteochondrosis, unspecified, lower leg', 'ICD10_2010'), +('M92.97', 'Juvenile osteochondrosis, unspecified, ankle and foot', 'ICD10_2010'), +('M92.98', 'Juvenile osteochondrosis, unspecified, other', 'ICD10_2010'), +('M92.99', 'Juvenile osteochondrosis, unspecified, site unspecified', 'ICD10_2010'), +('M93', 'Other osteochondropathies', 'ICD10_2010'), +('M93.0', 'Slipped upper femoral epiphysis (nontraumatic)', 'ICD10_2010'), +('M93.00', 'Slipped upper femoral epiphysis (nontraumatic), multiple sites', 'ICD10_2010'), +('M93.01', 'Slipped upper femoral epiphysis (nontraumatic), shoulder region', 'ICD10_2010'), +('M93.02', 'Slipped upper femoral epiphysis (nontraumatic), upper arm', 'ICD10_2010'), +('M93.03', 'Slipped upper femoral epiphysis (nontraumatic), forearm', 'ICD10_2010'), +('M93.04', 'Slipped upper femoral epiphysis (nontraumatic), hand', 'ICD10_2010'), +('M93.05', 'Slipped upper femoral epiphysis (nontraumatic), pelvic region and thigh', 'ICD10_2010'), +('M93.06', 'Slipped upper femoral epiphysis (nontraumatic), lower leg', 'ICD10_2010'), +('M93.07', 'Slipped upper femoral epiphysis (nontraumatic), ankle and foot', 'ICD10_2010'), +('M93.08', 'Slipped upper femoral epiphysis (nontraumatic), other', 'ICD10_2010'), +('M93.09', 'Slipped upper femoral epiphysis (nontraumatic), site unspecified', 'ICD10_2010'), +('M93.1', 'Kienbock disease of adults', 'ICD10_2010'), +('M93.10', 'Kienbock disease of adults, multiple sites', 'ICD10_2010'), +('M93.11', 'Kienbock disease of adults, shoulder region', 'ICD10_2010'), +('M93.12', 'Kienbock disease of adults, upper arm', 'ICD10_2010'), +('M93.13', 'Kienbock disease of adults, forearm', 'ICD10_2010'), +('M93.14', 'Kienbock disease of adults, hand', 'ICD10_2010'), +('M93.15', 'Kienbock disease of adults, pelvic region and thigh', 'ICD10_2010'), +('M93.16', 'Kienbock disease of adults, lower leg', 'ICD10_2010'), +('M93.17', 'Kienbock disease of adults, ankle and foot', 'ICD10_2010'), +('M93.18', 'Kienbock disease of adults, other', 'ICD10_2010'), +('M93.19', 'Kienbock disease of adults, site unspecified', 'ICD10_2010'), +('M93.2', 'Osteochondritis dissecans', 'ICD10_2010'), +('M93.20', 'Osteochondritis dissecans, multiple sites', 'ICD10_2010'), +('M93.21', 'Osteochondritis dissecans, shoulder region', 'ICD10_2010'), +('M93.22', 'Osteochondritis dissecans, upper arm', 'ICD10_2010'), +('M93.23', 'Osteochondritis dissecans, forearm', 'ICD10_2010'), +('M93.24', 'Osteochondritis dissecans, hand', 'ICD10_2010'), +('M93.25', 'Osteochondritis dissecans, pelvic region and thigh', 'ICD10_2010'), +('M93.26', 'Osteochondritis dissecans, lower leg', 'ICD10_2010'), +('M93.27', 'Osteochondritis dissecans, ankle and foot', 'ICD10_2010'), +('M93.28', 'Osteochondritis dissecans, other', 'ICD10_2010'), +('M93.29', 'Osteochondritis dissecans, site unspecified', 'ICD10_2010'), +('M93.8', 'Other specified osteochondropathies', 'ICD10_2010'), +('M93.80', 'Other specified osteochondropathies, multiple sites', 'ICD10_2010'), +('M93.81', 'Other specified osteochondropathies, shoulder region', 'ICD10_2010'), +('M93.82', 'Other specified osteochondropathies, upper arm', 'ICD10_2010'), +('M93.83', 'Other specified osteochondropathies, forearm', 'ICD10_2010'), +('M93.84', 'Other specified osteochondropathies, hand', 'ICD10_2010'), +('M93.85', 'Other specified osteochondropathies, pelvic region and thigh', 'ICD10_2010'), +('M93.86', 'Other specified osteochondropathies, lower leg', 'ICD10_2010'), +('M93.87', 'Other specified osteochondropathies, ankle and foot', 'ICD10_2010'), +('M93.88', 'Other specified osteochondropathies, other', 'ICD10_2010'), +('M93.89', 'Other specified osteochondropathies, site unspecified', 'ICD10_2010'), +('M93.9', 'Osteochondropathy, unspecified', 'ICD10_2010'), +('M93.90', 'Osteochondropathy, unspecified, multiple sites', 'ICD10_2010'), +('M93.91', 'Osteochondropathy, unspecified, shoulder region', 'ICD10_2010'), +('M93.92', 'Osteochondropathy, unspecified, upper arm', 'ICD10_2010'), +('M93.93', 'Osteochondropathy, unspecified, forearm', 'ICD10_2010'), +('M93.94', 'Osteochondropathy, unspecified, hand', 'ICD10_2010'), +('M93.95', 'Osteochondropathy, unspecified, pelvic region and thigh', 'ICD10_2010'), +('M93.96', 'Osteochondropathy, unspecified, lower leg', 'ICD10_2010'), +('M93.97', 'Osteochondropathy, unspecified, ankle and foot', 'ICD10_2010'), +('M93.98', 'Osteochondropathy, unspecified, other', 'ICD10_2010'), +('M93.99', 'Osteochondropathy, unspecified, site unspecified', 'ICD10_2010'), +('M94', 'Other disorders of cartilage', 'ICD10_2010'), +('M94.0', 'Chondrocostal junction syndrome [tietze]', 'ICD10_2010'), +('M94.00', 'Chondrocostal junction syndrome [tietze], multiple sites', 'ICD10_2010'), +('M94.01', 'Chondrocostal junction syndrome [tietze], shoulder region', 'ICD10_2010'), +('M94.02', 'Chondrocostal junction syndrome [tietze], upper arm', 'ICD10_2010'), +('M94.03', 'Chondrocostal junction syndrome [tietze], forearm', 'ICD10_2010'), +('M94.04', 'Chondrocostal junction syndrome [tietze], hand', 'ICD10_2010'), +('M94.05', 'Chondrocostal junction syndrome [tietze], pelvic region and thigh', 'ICD10_2010'), +('M94.06', 'Chondrocostal junction syndrome [tietze], lower leg', 'ICD10_2010'), +('M94.07', 'Chondrocostal junction syndrome [tietze], ankle and foot', 'ICD10_2010'), +('M94.08', 'Chondrocostal junction syndrome [tietze], other', 'ICD10_2010'), +('M94.09', 'Chondrocostal junction syndrome [tietze], site unspecified', 'ICD10_2010'), +('M94.1', 'Relapsing polychondritis', 'ICD10_2010'), +('M94.10', 'Relapsing polychondritis, multiple sites', 'ICD10_2010'), +('M94.11', 'Relapsing polychondritis, shoulder region', 'ICD10_2010'), +('M94.12', 'Relapsing polychondritis, upper arm', 'ICD10_2010'), +('M94.13', 'Relapsing polychondritis, forearm', 'ICD10_2010'), +('M94.14', 'Relapsing polychondritis, hand', 'ICD10_2010'), +('M94.15', 'Relapsing polychondritis, pelvic and thigh', 'ICD10_2010'), +('M94.16', 'Relapsing polychondritis, lower leg', 'ICD10_2010'), +('M94.17', 'Relapsing polychondritis, ankle and foot', 'ICD10_2010'), +('M94.18', 'Relapsing polychondritis, other site', 'ICD10_2010'), +('M94.19', 'Relapsing polychondritis, site unspecified', 'ICD10_2010'), +('M94.2', 'Chondromalacia', 'ICD10_2010'), +('M94.20', 'Chondromalacia, multiple sites', 'ICD10_2010'), +('M94.21', 'Chondromalacia, shoulder region', 'ICD10_2010'), +('M94.22', 'Chondromalacia, upper arm', 'ICD10_2010'), +('M94.23', 'Chondromalacia, forearm', 'ICD10_2010'), +('M94.24', 'Chondromalacia, hand', 'ICD10_2010'), +('M94.25', 'Chondromalacia, pelvic and thigh', 'ICD10_2010'), +('M94.26', 'Chondromalacia, lower leg', 'ICD10_2010'), +('M94.27', 'Chondromalacia, ankle and foot', 'ICD10_2010'), +('M94.28', 'Chondromalacia, other site', 'ICD10_2010'), +('M94.29', 'Chondromalacia, site unspecified', 'ICD10_2010'), +('M94.3', 'Chondrolysis', 'ICD10_2010'), +('M94.30', 'Chondrolysis, multiple sites', 'ICD10_2010'), +('M94.31', 'Chondrolysis, shoulder region', 'ICD10_2010'), +('M94.32', 'Chondrolysis, upper arm', 'ICD10_2010'), +('M94.33', 'Chondrolysis, forearm', 'ICD10_2010'), +('M94.34', 'Chondrolysis, hand', 'ICD10_2010'), +('M94.35', 'Chondrolysis, pelvic and thigh', 'ICD10_2010'), +('M94.36', 'Chondrolysis, lower leg', 'ICD10_2010'), +('M94.37', 'Chondrolysis, ankle and foot', 'ICD10_2010'), +('M94.38', 'Chondrolysis, other site', 'ICD10_2010'), +('M94.39', 'Chondrolysis, site unspecified', 'ICD10_2010'), +('M94.8', 'Other specified disorders of cartilage', 'ICD10_2010'), +('M94.80', 'Other specified disorders of cartilage, multiple sites', 'ICD10_2010'), +('M94.81', 'Other specified disorders of cartilage, shoulder region', 'ICD10_2010'), +('M94.82', 'Other specified disorders of cartilage, upper arm', 'ICD10_2010'), +('M94.83', 'Other specified disorders of cartilage, forearm', 'ICD10_2010'), +('M94.84', 'Other specified disorders of cartilage, hand', 'ICD10_2010'), +('M94.85', 'Other specified disorders of cartilage, pelvic and thigh', 'ICD10_2010'), +('M94.86', 'Other specified disorders of cartilage, lower leg', 'ICD10_2010'), +('M94.87', 'Other specified disorders of cartilage, ankle and foot', 'ICD10_2010'), +('M94.88', 'Other specified disorders of cartilage, other site', 'ICD10_2010'), +('M94.89', 'Other specified disorders of cartilage, site unspecified', 'ICD10_2010'), +('M94.9', 'Disorder of cartilage, unspecified', 'ICD10_2010'), +('M94.90', 'Disorder of cartilage, unspecified, multiple sites', 'ICD10_2010'), +('M94.91', 'Disorder of cartilage, unspecified, shoulder region', 'ICD10_2010'), +('M94.92', 'Disorder of cartilage, unspecified, upper arm', 'ICD10_2010'), +('M94.93', 'Disorder of cartilage, unspecified, forearm', 'ICD10_2010'), +('M94.94', 'Disorder of cartilage, unspecified, hand', 'ICD10_2010'), +('M94.95', 'Disorder of cartilage, unspecified, pelvic and thigh', 'ICD10_2010'), +('M94.96', 'Disorder of cartilage, unspecified, lower leg', 'ICD10_2010'), +('M94.97', 'Disorder of cartilage, unspecified, ankle and foot', 'ICD10_2010'), +('M94.98', 'Disorder of cartilage, unspecified, other site', 'ICD10_2010'), +('M94.99', 'Disorder of cartilage, unspecified, site unspecified', 'ICD10_2010'), +('M95', 'Other acquired deformities of musculoskeletal system and connective tissue', 'ICD10_2010'), +('M95.0', 'Acquired deformity of nose', 'ICD10_2010'), +('M95.1', 'Cauliflower ear', 'ICD10_2010'), +('M95.2', 'Other acquired deformity of head', 'ICD10_2010'), +('M95.3', 'Acquired deformity of neck', 'ICD10_2010'), +('M95.4', 'Acquired deformity of chest and rib', 'ICD10_2010'), +('M95.5', 'Acquired deformity of pelvis', 'ICD10_2010'), +('M95.8', 'Other specified acquired deformities of musculoskel sys', 'ICD10_2010'), +('M95.9', 'Acquired deformity of musculoskeletal system, unspecified', 'ICD10_2010'), +('M96', 'Postprocedural musculoskeletal disorders, not elsewhere classified', 'ICD10_2010'), +('M96.0', 'Pseudarthrosis after fusion or arthrodesis', 'ICD10_2010'), +('M96.1', 'Postlaminectomy syndrome, not elsewhere classified', 'ICD10_2010'), +('M96.2', 'Postradiation kyphosis', 'ICD10_2010'), +('M96.3', 'Postlaminectomy kyphosis', 'ICD10_2010'), +('M96.4', 'Postsurgical lordosis', 'ICD10_2010'), +('M96.5', 'Postradiation scoliosis', 'ICD10_2010'), +('M96.6', 'Fract bone fllg ins orthopae implt jnt prosthesis and bone plate', 'ICD10_2010'), +('M96.8', 'Other postprocedural musculoskeletal disorders', 'ICD10_2010'), +('M96.9', 'Postprocedural musculoskeletal disorder, unspecified', 'ICD10_2010'), +('M99', 'Biomechanical lesions, not elsewhere classified', 'ICD10_2010'), +('M99.0', 'Segmental and somatic dysfunction', 'ICD10_2010'), +('M99.00', 'Segmental and somatic dysfunction, head region', 'ICD10_2010'), +('M99.01', 'Segmental and somatic dysfunction, cervical region', 'ICD10_2010'), +('M99.02', 'Segmental and somatic dysfunction , thoracic region', 'ICD10_2010'), +('M99.03', 'Segmental and somatic dysfunction , lumbar region', 'ICD10_2010'), +('M99.04', 'Segmental and somatic dysfunction , sacral region', 'ICD10_2010'), +('M99.05', 'Segmental and somatic dysfunction , pelvic region', 'ICD10_2010'), +('M99.06', 'Segmental and somatic dysfunction , lower extremity', 'ICD10_2010'), +('M99.07', 'Segmental and somatic dysfunction, upper extremity', 'ICD10_2010'), +('M99.08', 'Segmental and somatic dysfunction, rib region', 'ICD10_2010'), +('M99.09', 'Segmental and somatic dysfunction, abdomen region', 'ICD10_2010'), +('M99.1', 'Subluxation complex (vertebral)', 'ICD10_2010'), +('M99.10', 'Subluxation complex (vertebral), head region', 'ICD10_2010'), +('M99.11', 'Subluxation complex (vertebral), cervical region', 'ICD10_2010'), +('M99.12', ' Subluxation complex (vertebral), thoracic region', 'ICD10_2010'), +('M99.13', ' Subluxation complex (vertebral), lumbar region', 'ICD10_2010'), +('M99.14', 'Subluxation complex (vertebral) , sacral region', 'ICD10_2010'), +('M99.15', ' Subluxation complex (vertebral), pelvic region', 'ICD10_2010'), +('M99.16', ' Subluxation complex (vertebral), lower extremity', 'ICD10_2010'), +('M99.17', 'Subluxation complex (vertebral), upper extremity', 'ICD10_2010'), +('M99.18', 'Subluxation complex (vertebral), rib cage', 'ICD10_2010'), +('M99.19', 'Subluxation complex (vertebral), abdomen and other', 'ICD10_2010'), +('M99.2', 'Subluxation stenosis of neural canal', 'ICD10_2010'), +('M99.20', 'Subluxation stenosis of neural canal, head region', 'ICD10_2010'), +('M99.21', 'Subluxation stenosis of neural canal, cervical region', 'ICD10_2010'), +('M99.22', 'Subluxation stenosis of neural canal, thoracic region', 'ICD10_2010'), +('M99.23', 'Subluxation stenosis of neural canal , lumbar region', 'ICD10_2010'), +('M99.24', 'Subluxation stenosis of neural canal , sacral region', 'ICD10_2010'), +('M99.25', 'Subluxation stenosis of neural canal , pelvic region', 'ICD10_2010'), +('M99.26', 'Subluxation stenosis of neural canal , lower extremity', 'ICD10_2010'), +('M99.27', 'Subluxation stenosis of neural canal, upper extremity', 'ICD10_2010'), +('M99.28', 'Subluxation stenosis of neural canal, rib cage', 'ICD10_2010'), +('M99.29', 'Subluxation stenosis of neural canal, abdomen and other', 'ICD10_2010'), +('M99.3', 'Osseous stenosis of neural canal', 'ICD10_2010'), +('M99.30', 'Osseous stenosis of neural canal, head region', 'ICD10_2010'), +('M99.31', 'Osseous stenosis of neural canal, cervical region', 'ICD10_2010'), +('M99.32', 'Osseous stenosis of neural canal , thoracic region', 'ICD10_2010'), +('M99.33', 'Osseous stenosis of neural canal, lumbar region', 'ICD10_2010'), +('M99.34', 'Osseous stenosis of neural canal , sacral region', 'ICD10_2010'), +('M99.35', 'Osseous stenosis of neural canal , pelvic region', 'ICD10_2010'), +('M99.36', 'Osseous stenosis of neural canal , lower extremity', 'ICD10_2010'), +('M99.37', 'Osseous stenosis of neural canal, upper extremity', 'ICD10_2010'), +('M99.38', 'Osseous stenosis of neural canal, rib cage', 'ICD10_2010'), +('M99.39', 'Osseous stenosis of neural canal, abdomen and other', 'ICD10_2010'), +('M99.4', 'Connective tissue stenosis of neural canal', 'ICD10_2010'), +('M99.40', 'Connective tissue stenosis of neural canal, head region', 'ICD10_2010'), +('M99.41', 'Connective tissue stenosis of neural canal, cervical region', 'ICD10_2010'), +('M99.42', 'Connective tissue stenosis of neural canal, thoracic region', 'ICD10_2010'), +('M99.43', 'Connective tissue stenosis of neural canal, lumbar region', 'ICD10_2010'), +('M99.44', 'Connective tissue stenosis of neural canal , sacral region', 'ICD10_2010'), +('M99.45', 'Connective tissue stenosis of neural canal , pelvic region', 'ICD10_2010'), +('M99.46', 'Connective tissue stenosis of neural canal , lower extremity', 'ICD10_2010'), +('M99.47', 'Connective tissue stenosis of neural canal, upper extremity', 'ICD10_2010'), +('M99.48', 'Connective tissue stenosis of neural canal, rib cage', 'ICD10_2010'), +('M99.49', 'Connective tissue stenosis of neural canal, abdomen and other', 'ICD10_2010'), +('M99.5', 'Intervertebral disc stenosis of neural canal , pelvic region', 'ICD10_2010'), +('M99.50', 'Intervertebral disc stenosis of neural canal , pelvic region, head region', 'ICD10_2010'), +('M99.51', 'Intervertebral disc stenosis of neural canal , pelvic region, cervical region', 'ICD10_2010'), +('M99.52', 'Intervertebral disc stenosis of neural canal , pelvic region , thoracic region', 'ICD10_2010'), +('M99.53', 'Intervertebral disc stenosis of neural canal , pelvic region , lumbar region', 'ICD10_2010'), +('M99.54', 'Intervertebral disc stenosis of neural canal , pelvic region , sacral region', 'ICD10_2010'), +('M99.55', 'Intervertebral disc stenosis of neural canal , pelvic region , pelvic region', 'ICD10_2010'), +('M99.56', 'Intervertebral disc stenosis of neural canal , pelvic region , lower extremity', 'ICD10_2010'), +('M99.57', 'Intervertebral disc stenosis of neural canal , pelvic region, upper extremity', 'ICD10_2010'), +('M99.58', 'Intervertebral disc stenosis of neural canal , pelvic region, rib cage', 'ICD10_2010'), +('M99.59', 'Intervertebral disc stenosis of neural canal , pelvic region, abdomen and other', 'ICD10_2010'), +('M99.6', 'Osseous and subluxation stenosis of intervertebral foramina', 'ICD10_2010'), +('M99.60', 'Osseous and subluxation stenosis of intervertebral foramina, head region', 'ICD10_2010'), +('M99.61', 'Osseous and subluxation stenosis of intervertebral foramina, cervical region', 'ICD10_2010'), +('M99.62', 'Osseous and subluxation stenosis of intervertebral foramina , thoracic region', 'ICD10_2010'), +('M99.63', 'Osseous and subluxation stenosis of intervertebral foramina , lumbar region', 'ICD10_2010'), +('M99.64', 'Osseous and subluxation stenosis of intervertebral foramina , sacral region', 'ICD10_2010'), +('M99.65', 'Osseous and subluxation stenosis of intervertebral foramina , pelvic region', 'ICD10_2010'), +('M99.66', 'Osseous and subluxation stenosis of intervertebral foramina , lower extremity', 'ICD10_2010'), +('M99.67', 'Osseous and subluxation stenosis of intervertebral foramina, upper extremity', 'ICD10_2010'), +('M99.68', 'Osseous and subluxation stenosis of intervertebral foramina, rib cage', 'ICD10_2010'), +('M99.69', 'Osseous and subluxation stenosis of intervertebral foramina, abdomen and other', 'ICD10_2010'), +('M99.7', 'Connective tis and disc stenosis of intervertebral foramina', 'ICD10_2010'), +('M99.70', 'Connective tis and disc stenosis of intervertebral foramina, head region', 'ICD10_2010'), +('M99.71', 'Connective tis and disc stenosis of intervertebral foramina, cervical region', 'ICD10_2010'), +('M99.72', 'Connective tis and disc stenosis of intervertebral foramina , thoracic region', 'ICD10_2010'), +('M99.73', 'Connective tis and disc stenosis of intervertebral foramina , lumbar region', 'ICD10_2010'), +('M99.74', 'Connective tis and disc stenosis of intervertebral foramina , sacral region', 'ICD10_2010'), +('M99.75', 'Connective tis and disc stenosis of intervertebral foramina , pelvic region', 'ICD10_2010'), +('M99.76', 'Connective tis and disc stenosis of intervertebral foramina , lower extremity', 'ICD10_2010'), +('M99.77', 'Connective tis and disc stenosis of intervertebral foramina, upper extremity', 'ICD10_2010'), +('M99.78', 'Connective tis and disc stenosis of intervertebral foramina, rib cage', 'ICD10_2010'), +('M99.79', 'Connective tis and disc stenosis of intervertebral foramina, abdomen and other', 'ICD10_2010'), +('M99.8', 'Other biomechanical lesions', 'ICD10_2010'), +('M99.80', 'Other biomechanical lesions, head region', 'ICD10_2010'), +('M99.81', 'Other biomechanical lesions, cervical region', 'ICD10_2010'), +('M99.82', 'Other biomechanical lesions, thoracic region', 'ICD10_2010'), +('M99.83', 'Other biomechanical lesions. lumbar region', 'ICD10_2010'), +('M99.84', 'Other biomechanical lesions, sacral region', 'ICD10_2010'), +('M99.85', 'Other biomechanical lesions, pelvic region', 'ICD10_2010'), +('M99.86', 'Other biomechanical lesions, lower extremity', 'ICD10_2010'), +('M99.87', 'Other biomechanical lesions, upper extremity', 'ICD10_2010'), +('M99.88', 'Other biomechanical lesions, rib region', 'ICD10_2010'), +('M99.89', 'Other biomechanical lesions, abdomen region', 'ICD10_2010'), +('M99.9', 'Biomechanical lesion, unspecified', 'ICD10_2010'), +('M99.90', 'Biomechanical lesion, unspecified, head region', 'ICD10_2010'), +('M99.91', 'Biomechanical lesion, unspecified, cervical region', 'ICD10_2010'), +('M99.92', 'Biomechanical lesion, unspecified, thoracic region', 'ICD10_2010'), +('M99.93', 'Biomechanical lesion, unspecified, lumbar region', 'ICD10_2010'), +('M99.94', 'Biomechanical lesion, unspecified, sacral region', 'ICD10_2010'), +('M99.95', 'Biomechanical lesion, unspecified, pelvic region', 'ICD10_2010'), +('M99.96', 'Biomechanical lesion, unspecified, lower extremity', 'ICD10_2010'), +('M99.97', 'Biomechanical lesion, unspecified, upper extremity', 'ICD10_2010'), +('M99.98', 'Biomechanical lesion, unspecified, rib region', 'ICD10_2010'), +('M99.99', 'Biomechanical lesion, unspecified, abdomen region', 'ICD10_2010'), +('N00', 'Acute nephritic syndrome', 'ICD10_2010'), +('N00.0', 'Acute nephritic syndrome, minor glomerular abnormality', 'ICD10_2010'), +('N00.1', 'Acute nephritic syndrome, focal and segmental glomerular lesions', 'ICD10_2010'), +('N00.2', 'Acute nephritic syndrome, diffuse membranous glomerulonephritis', 'ICD10_2010'), +('N00.3', 'Acute nephritic syndrome, diffuse mesangial proliferative glomerulonephritis', 'ICD10_2010'), +('N00.4', 'Acute nephritic syndrome, diffuse endocapillary proliferative glomerulonephritis', 'ICD10_2010'), +('N00.5', 'Acute nephritic syndrome, diffuse mesangiocapillary glomerulonephritis', 'ICD10_2010'), +('N00.6', 'Acute nephritic syndrome, dense deposit disease', 'ICD10_2010'), +('N00.7', 'Acute nephritic syndrome, diffuse crescentic glomerulonephritis', 'ICD10_2010'), +('N00.8', 'Acute nephritic syndrome, other', 'ICD10_2010'), +('N00.9', 'Acute nephritic syndrome, unspecified', 'ICD10_2010'), +('N01', 'Rapidly progressive nephritic syndrome', 'ICD10_2010'), +('N01.0', 'Rapidly progressive nephritic syndrome, minor glomerular abnormality', 'ICD10_2010'), +('N01.1', 'Rapidly progressive nephritic syndrome, focal and segmental glomerular lesions', 'ICD10_2010'), +('N01.2', 'Rapidly progressive nephritic syndrome, diffuse membranous glomerulonephritis', 'ICD10_2010'), +('N01.3', 'Rapidly progressive nephritic syndrome, diffuse mesangial proliferative glomerulonephritis', 'ICD10_2010'), +('N01.4', 'Rapidly progressive nephritic syndrome, diffuse endocapillary proliferative glomerulonephritis', 'ICD10_2010'), +('N01.5', 'Rapidly progressive nephritic syndrome, diffuse mesangiocapillary glomerulonephritis', 'ICD10_2010'), +('N01.6', 'Rapidly progressive nephritic syndrome, dense deposit disease', 'ICD10_2010'), +('N01.7', 'Rapidly progressive nephritic syndrome, diffuse crescentic glomerulonephritis', 'ICD10_2010'), +('N01.8', 'Rapidly progressive nephritic syndrome, other', 'ICD10_2010'), +('N01.9', 'Rapidly progressive nephritic syndrome, unspecified', 'ICD10_2010'), +('N02', 'Recurrent and persistent haematuria', 'ICD10_2010'), +('N02.0', 'Recurrent and persistent haematuria, minor glomerular abnormality', 'ICD10_2010'), +('N02.1', 'Recurrent and persistent haematuria, focal and segmental glomerular lesions', 'ICD10_2010'), +('N02.2', 'Recurrent and persistent haematuria, diffuse membranous glomerulonephritis', 'ICD10_2010'), +('N02.3', 'Recurrent and persistent haematuria, diffuse mesangial proliferative glomerulonephritis', 'ICD10_2010'), +('N02.4', 'Recurrent and persistent haematuria, diffuse endocapillary proliferative glomerulonephritis', 'ICD10_2010'), +('N02.5', 'Recurrent and persistent haematuria, diffuse mesangiocapillary glomerulonephritis', 'ICD10_2010'), +('N02.6', 'Recurrent and persistent haematuria, dense deposit disease', 'ICD10_2010'), +('N02.7', 'Recurrent and persistent haematuria, diffuse crescentic glomerulonephritis', 'ICD10_2010'), +('N02.8', 'Recurrent and persistent haematuria, other', 'ICD10_2010'), +('N02.9', 'Recurrent and persistent haematuria, unspecified', 'ICD10_2010'), +('N03', 'Chronic nephritic syndrome', 'ICD10_2010'), +('N03.0', 'Chronic nephritic syndrome, minor glomerular abnormality', 'ICD10_2010'), +('N03.1', 'Chronic nephritic syndrome, focal and segmental glomerular lesions', 'ICD10_2010'), +('N03.2', 'Chronic nephritic syndrome, diffuse membranous glomerulonephritis', 'ICD10_2010'), +('N03.3', 'Chronic nephritic syndrome, diffuse mesangial proliferative glomerulonephritis', 'ICD10_2010'), +('N03.4', 'Chronic nephritic syndrome, diffuse endocapillary proliferative glomerulonephritis', 'ICD10_2010'), +('N03.5', 'Chronic nephritic syndrome, diffuse mesangiocapillary glomerulonephritis', 'ICD10_2010'), +('N03.6', 'Chronic nephritic syndrome, dense deposit disease', 'ICD10_2010'), +('N03.7', 'Chronic nephritic syndrome, diffuse crescentic glomerulonephritis', 'ICD10_2010'), +('N03.8', 'Chronic nephritic syndrome, other', 'ICD10_2010'), +('N03.9', 'Chronic nephritic syndrome, unspecified', 'ICD10_2010'), +('N04', 'Nephrotic syndrome', 'ICD10_2010'), +('N04.0', 'Nephrotic syndrome, minor glomerular abnormality', 'ICD10_2010'), +('N04.1', 'Nephrotic syndrome, focal and segmental glomerular lesions', 'ICD10_2010'), +('N04.2', 'Nephrotic syndrome, diffuse membranous glomerulonephritis', 'ICD10_2010'), +('N04.3', 'Nephrotic syndrome, diffuse mesangial proliferative glomerulonephritis', 'ICD10_2010'), +('N04.4', 'Nephrotic syndrome, diffuse endocapillary proliferative glomerulonephritis', 'ICD10_2010'), +('N04.5', 'Nephrotic syndrome, diffuse mesangiocapillary glomerulonephritis', 'ICD10_2010'), +('N04.6', 'Nephrotic syndrome, dense deposit disease', 'ICD10_2010'), +('N04.7', 'Nepthrotic syndrome, diffuse crescentic glomerulonephritis', 'ICD10_2010'), +('N04.8', 'Nephtrotic syndrome, other', 'ICD10_2010'), +('N04.9', 'Nepthrotic syndrome, unspecified', 'ICD10_2010'), +('N05', 'Unspecified nephritic syndrome', 'ICD10_2010'), +('N05.0', 'Unspecified nephritic syndrome, minor glomerular abnormality', 'ICD10_2010'), +('N05.1', 'Unspecified nephritic syndrome, focal and segmental glomerular lesions', 'ICD10_2010'), +('N05.2', 'Unspecified nephritic syndrome, diffuse membranous glomerulonephritis', 'ICD10_2010'), +('N05.3', 'Unspecified nephritic syndrome, diffuse mesangial proliferative glomerulonephritis', 'ICD10_2010'), +('N05.4', 'Unspecified nephritic syndrome, diffuse endocapillary proliferative glomerulonephritis', 'ICD10_2010'), +('N05.5', 'Unspecified nephritic syndrome, diffuse mesangiocapillary glomeru', 'ICD10_2010'), +('N05.6', 'Unspecified nephritic syndrome, dense deposit disease', 'ICD10_2010'), +('N05.7', 'Unspecified nephritic syndrome, diffuse crescentic glomerulonephritis', 'ICD10_2010'), +('N05.8', 'Unspecified nephritic syndrome, other', 'ICD10_2010'), +('N05.9', 'Unspecified nephritic syndrome, unspecified', 'ICD10_2010'), +('N06', 'Isolated proteinuria with specified morphological lesion', 'ICD10_2010'), +('N06.0', 'Isolated proteinuria with specified morphological lesion, minor glomerular abnormality', 'ICD10_2010'), +('N06.1', 'Isolated proteinuria with specified morphological lesion, focal and segmental glomerular lesions', 'ICD10_2010'), +('N06.2', 'Isolated proteinuria with specified morphological lesion, diffuse membranous glomerulonephritis', 'ICD10_2010'), +('N06.3', 'Isolated proteinuria with specified morphological lesion, diffuse mesangial proliferative glomerulonephritis', 'ICD10_2010'), +('N06.4', 'Isolated proteinuria with specified morphological lesion, diffuse endocapillary proliferative glomerulonephritis', 'ICD10_2010'), +('N06.5', 'Isolated proteinuria with specified morphological lesion, diffuse mesangiocapillary glomerulonephritis', 'ICD10_2010'), +('N06.6', 'Isolated proteinuria with specified morphological lesion, dense deposit disease', 'ICD10_2010'), +('N06.7', 'Isolated proteinuria with specified morphological lesion, diffuse crescentic glomerulonephritis', 'ICD10_2010'), +('N06.8', 'Isolated proteinuria with specified morphological lesion, other', 'ICD10_2010'), +('N06.9', 'Isolated proteinuria with specified morphological lesion, unspecified', 'ICD10_2010'), +('N07', 'Hereditary nephropathy, not elsewhere classified', 'ICD10_2010'), +('N07.0', 'Hereditary nephropathy, not elsewhere classified, minor glomerular abnormality', 'ICD10_2010'), +('N07.1', 'Hereditary nephropathy, not elsewhere classified, focal and segmental glomerular lesions', 'ICD10_2010'), +('N07.2', 'Hereditary nephropathy, not elsewhere classified, diffuse membranous glomerulonephritis', 'ICD10_2010'), +('N07.3', 'Hereditary nephropathy, not elsewhere classified, diffuse mesangial proliferative glomerulonephritis', 'ICD10_2010'), +('N07.4', 'Hereditary nephropathy, not elsewhere classified, diffuse endocapillary proliferative glomerulonephritis', 'ICD10_2010'), +('N07.5', 'Hereditary nephropathy, not elsewhere classified, diffuse mesangiocapillary glomerulonephritis', 'ICD10_2010'), +('N07.6', 'Hereditary nephropathy, not elsewhere classified, dense deposit disease', 'ICD10_2010'), +('N07.7', 'Hereditary nephropathy, not elsewhere classified, diffuse crescentic glomerulonephritis', 'ICD10_2010'), +('N07.8', 'Hereditary nephropathy, not elsewhere classified, other', 'ICD10_2010'), +('N07.9', 'Hereditary nephropathy, not elsewhere classified, unspecified', 'ICD10_2010'), +('N08', 'Glomerular disorders in diseases classified elsewhere', 'ICD10_2010'), +('N08.0', 'Glomerular disorder in infectious and parasitic diseases classified elsewhere', 'ICD10_2010'), +('N08.1', 'Glomerular disorders in neoplastic diseases', 'ICD10_2010'), +('N08.2', 'Glomerular disorders in blood diseases and disorders involving the immune mechanism', 'ICD10_2010'), +('N08.3', 'Glomerular disorders in diabetes mellitus', 'ICD10_2010'), +('N08.4', 'Glomerular disorders in other endocrine, nutritional and metabolic diseases', 'ICD10_2010'), +('N08.5', 'Glomerular disorders in systemic connective tissue disorders', 'ICD10_2010'), +('N08.8', 'Glomerular disorders in other diseases classified elsewhere', 'ICD10_2010'), +('N10', 'Acute tubulo-interstitial nephritis', 'ICD10_2010'), +('N11', 'Chronic tubulo-interstitial nephritis', 'ICD10_2010'), +('N11.0', 'Nonobstructive reflux-associated chronic pyelonephritis', 'ICD10_2010'), +('N11.1', 'Chronic obstructive pyelonephritis', 'ICD10_2010'), +('N11.8', 'Other chronic tubulo-interstitial nephritis', 'ICD10_2010'), +('N11.9', 'Chronic tubulo-interstitial nephritis, unspecified', 'ICD10_2010'), +('N12', 'Tubulo-interstitial nephritis not specified as acute or chronic', 'ICD10_2010'), +('N13', 'Obstructive and reflux uropathy', 'ICD10_2010'), +('N13.0', 'Hydronephrosis with ureteropelvic junction obstruction', 'ICD10_2010'), +('N13.1', 'Hydronephrosis with ureteral stricture not elsewhere classified', 'ICD10_2010'), +('N13.2', 'Hydronephrosis with renal and ureteral calculous obstruction', 'ICD10_2010'), +('N13.3', 'Other and unspecified hydronephrosis', 'ICD10_2010'), +('N13.4', 'Hydroureter', 'ICD10_2010'), +('N13.5', 'Kinking and stricture of ureter without hydronephrosis', 'ICD10_2010'), +('N13.6', 'Pyonephrosis', 'ICD10_2010'), +('N13.7', 'Vesicoureteral-reflux-associated uropathy', 'ICD10_2010'), +('N13.8', 'Other obstructive and reflux uropathy', 'ICD10_2010'), +('N13.9', 'Obstructive and reflux uropathy, unspecified', 'ICD10_2010'), +('N14', 'Drug- and heavy-metal-induced tubulo-interstitial and tubular conditions', 'ICD10_2010'), +('N14.0', 'Analgesic nephropathy', 'ICD10_2010'), +('N14.1', 'Nephropathy induced by other drugs, medicaments and biological substances', 'ICD10_2010'), +('N14.2', 'Neuropathy induced by unspecified drug, medicament or biological substance', 'ICD10_2010'), +('N14.3', 'Nephropathy induced by heavy metals', 'ICD10_2010'), +('N14.4', 'Toxic nephropathy, not elsewhere classified', 'ICD10_2010'), +('N15', 'Other renal tubulo-interstitial diseases', 'ICD10_2010'), +('N15.0', 'Balkan nephropathy', 'ICD10_2010'), +('N15.1', 'Renal and perinephric abscess', 'ICD10_2010'), +('N15.8', 'Other specified renal tubulo-interstitial diseases', 'ICD10_2010'), +('N15.9', 'Renal tubulo-interstitial disease, unspecified', 'ICD10_2010'), +('N16', 'Renal tubulo-interstitial disorders in diseases classified elsewhere', 'ICD10_2010'), +('N16.0', 'Renal tubulo-interstital disorders in infectious and parasitic diseases classified elsewhere', 'ICD10_2010'), +('N16.1', 'Renal tubulo-interstitial disorders in neoplastic diseases', 'ICD10_2010'), +('N16.2', 'Renal tubulo-interstitial disorders in blood diseases and disorders involving the immune mechanism', 'ICD10_2010'), +('N16.3', 'Renal tubulo-interstitial disorders in metabolic diseases', 'ICD10_2010'), +('N16.4', 'Renal tubulo-interstitial disorders systemic connective tissue disorders', 'ICD10_2010'), +('N16.5', 'Renal tubulo-interstitial disorders in transplant rejection', 'ICD10_2010'), +('N16.8', 'Renal tubulo-interstitial disorders in other diseases classified elsewhere', 'ICD10_2010'), +('N17', 'Acute renal failure', 'ICD10_2010'), +('N17.0', 'Acute renal failure with tubular necrosis', 'ICD10_2010'), +('N17.1', 'Acute renal failure with acute cortical necrosis', 'ICD10_2010'), +('N17.2', 'Acute renal failure with medullary necrosis', 'ICD10_2010'), +('N17.8', 'Other acute renal failure', 'ICD10_2010'), +('N17.9', 'Acute renal failure, unspecified', 'ICD10_2010'), +('N18', 'Chronic kidney disease', 'ICD10_2010'), +('N18.0', 'End-stage renal disease', 'ICD10_2010'), +('N18.1', 'Chronic kidney disease, stage 1', 'ICD10_2010'), +('N18.2', 'Chronic kidney disease, stage 2', 'ICD10_2010'), +('N18.3', 'Chronic kidney disease, stage 3', 'ICD10_2010'), +('N18.4', 'Chronic kidney disease, stage 4', 'ICD10_2010'), +('N18.5', 'Chronic kidney disease, stage 5', 'ICD10_2010'), +('N18.8', 'Other chronic renal failure', 'ICD10_2010'), +('N18.9', 'Chronic renal failure, unspecified', 'ICD10_2010'), +('N19', 'Unspecified renal failure', 'ICD10_2010'), +('N20', 'Calculus of kidney and ureter', 'ICD10_2010'), +('N20.0', 'Calculus of kidney', 'ICD10_2010'), +('N20.1', 'Calculus of ureter', 'ICD10_2010'), +('N20.2', 'Calculus of kidney with calculus of ureter', 'ICD10_2010'), +('N20.9', 'Urinary calculus, unspecified', 'ICD10_2010'), +('N21', 'Calculus of lower urinary tract', 'ICD10_2010'), +('N21.0', 'Calculus in bladder', 'ICD10_2010'), +('N21.1', 'Calculus in urethra', 'ICD10_2010'), +('N21.8', 'Other lower urinary tract calculus', 'ICD10_2010'), +('N21.9', 'Calculus of lower urinary tract, unspecified', 'ICD10_2010'), +('N22', 'Calculus of urinary tract in diseases classified elsewhere', 'ICD10_2010'), +('N22.0', 'Urinary calculus in schistosomiasis bilharziasis', 'ICD10_2010'), +('N22.8', 'Calculus of urinary tract in other diseases classified elsewhere', 'ICD10_2010'), +('N23', 'Unspecified renal colic', 'ICD10_2010'), +('N25', 'Disorders resulting from impaired renal tubular function', 'ICD10_2010'), +('N25.0', 'Renal osteodystrophy', 'ICD10_2010'), +('N25.1', 'Nephrogenic diabetes insipidus', 'ICD10_2010'), +('N25.8', 'Other disorders resulting from impaired renal tubular function', 'ICD10_2010'), +('N25.9', 'Disorder resulting from impaired renal tubular function, unspecified', 'ICD10_2010'), +('N26', 'Unspecified contracted kidney', 'ICD10_2010'), +('N27', 'Small kidney of unknown cause', 'ICD10_2010'), +('N27.0', 'Small kidney, unilateral', 'ICD10_2010'), +('N27.1', 'Small kidney, bilateral', 'ICD10_2010'), +('N27.9', 'Small kidney, unspecified', 'ICD10_2010'), +('N28', 'Other disorders of kidney and ureter, not elsewhere classified', 'ICD10_2010'), +('N28.0', 'Ischaemia and infarction of kidney', 'ICD10_2010'), +('N28.1', 'Cyst of kidney, acquired', 'ICD10_2010'), +('N28.8', 'Other specified disorders of kidney and ureter', 'ICD10_2010'), +('N28.9', 'Disorder of kidney and ureter, unspecified', 'ICD10_2010'), +('N29', 'Other disorders of kidney and ureter in diseases classified elsewhere', 'ICD10_2010'), +('N29.0', 'Late syphilis of kidney', 'ICD10_2010'), +('N29.1', 'Other disorders of kidney and ureter in infectious and parasitic diseases classified elsewhere', 'ICD10_2010'), +('N29.8', 'Other disorders of kidney and ureter in other diseases classified elsewhere', 'ICD10_2010'), +('N30', 'Cystitis', 'ICD10_2010'), +('N30.0', 'Acute cystitis', 'ICD10_2010'), +('N30.1', 'Interstitial cystitis chronic', 'ICD10_2010'), +('N30.2', 'Other chronic cystitis', 'ICD10_2010'), +('N30.3', 'Trigonitis', 'ICD10_2010'), +('N30.4', 'Irradiation cystitis', 'ICD10_2010'), +('N30.8', 'Other cystitis', 'ICD10_2010'), +('N30.9', 'Cystitis, unspecified', 'ICD10_2010'), +('N31', 'Neuromuscular dysfunction of bladder, not elsewhere classified', 'ICD10_2010'), +('N31.0', 'Uninhibited neuropathic bladder, not elsewhere classified', 'ICD10_2010'), +('N31.1', 'Reflex neuropathic bladder, not elsewhere classified', 'ICD10_2010'), +('N31.2', 'Flaccid neuropathic bladder, not elsewhere classified', 'ICD10_2010'), +('N31.8', 'Other neuromuscular dysfunction of bladder', 'ICD10_2010'), +('N31.9', 'Neuromuscular dysfunction of bladder, unspecified', 'ICD10_2010'), +('N32', 'Other disorders of bladder', 'ICD10_2010'), +('N32.0', 'Bladder-neck obstruction', 'ICD10_2010'), +('N32.1', 'Vesicointestinal fistula', 'ICD10_2010'), +('N32.2', 'Vesical fistula, not elsewhere classified', 'ICD10_2010'), +('N32.3', 'Diverticulum of bladder', 'ICD10_2010'), +('N32.4', 'Rupture of bladder, nontraumatic', 'ICD10_2010'), +('N32.8', 'Other specified disorders of bladder', 'ICD10_2010'), +('N32.9', 'Bladder disorder, unspecified', 'ICD10_2010'), +('N33', 'Bladder disorders in diseases classified elsewhere', 'ICD10_2010'), +('N33.0', 'Tuberculous cystitis', 'ICD10_2010'), +('N33.8', 'Bladder disorders in other diseases classified elsewhere', 'ICD10_2010'), +('N34', 'Urethritis and urethral syndrome', 'ICD10_2010'), +('N34.0', 'Urethral abscess', 'ICD10_2010'), +('N34.1', 'Nonspecific urethritis', 'ICD10_2010'), +('N34.2', 'Other urethritis', 'ICD10_2010'), +('N34.3', 'Urethral syndrome, unspecified', 'ICD10_2010'), +('N35', 'Urethral stricture', 'ICD10_2010'), +('N35.0', 'Post-traumatic urethral stricture', 'ICD10_2010'), +('N35.1', 'Postinfective urethral stricture, not elsewhere classified', 'ICD10_2010'), +('N35.8', 'Other urethral stricture', 'ICD10_2010'), +('N35.9', 'Urethral stricture, unspecified', 'ICD10_2010'), +('N36', 'Other disorders of urethra', 'ICD10_2010'), +('N36.0', 'Urethral fistula', 'ICD10_2010'), +('N36.1', 'Urethral diverticulum', 'ICD10_2010'), +('N36.2', 'Urethral caruncle', 'ICD10_2010'), +('N36.3', 'Prolapsed urethral mucosa', 'ICD10_2010'), +('N36.8', 'Other specified disorders of urethra', 'ICD10_2010'), +('N36.9', 'Urethral disorder, unspecified', 'ICD10_2010'), +('N37', 'Urethral disorders in diseases classified elsewhere', 'ICD10_2010'), +('N37.0', 'Urethritis in diseases classified elsewhere', 'ICD10_2010'), +('N37.8', 'Other urethral disorders in diseases classified elsewhere', 'ICD10_2010'), +('N39', 'Other disorders of urinary system', 'ICD10_2010'), +('N39.0', 'Urinary tract infection, site not specified', 'ICD10_2010'), +('N39.1', 'Persistent proteinuria, unspecified', 'ICD10_2010'), +('N39.2', 'Orthostatic proteinuria, unspecified', 'ICD10_2010'), +('N39.3', 'Stress incontinence', 'ICD10_2010'), +('N39.4', 'Other specified urinary incontinence', 'ICD10_2010'), +('N39.8', 'Other specified disorders of urinary system', 'ICD10_2010'), +('N39.9', 'Disorder of urinary system, unspecified', 'ICD10_2010'), +('N40', 'Hyperplasia of prostate', 'ICD10_2010'), +('N41', 'Inflammatory diseases of prostate', 'ICD10_2010'), +('N41.0', 'Acute prostatitis', 'ICD10_2010'), +('N41.1', 'Chronic prostatitis', 'ICD10_2010'), +('N41.2', 'Abscess of prostate', 'ICD10_2010'), +('N41.3', 'Prostatocystitis', 'ICD10_2010'), +('N41.8', 'Other inflammatory diseases of prostate', 'ICD10_2010'), +('N41.9', 'Inflammatory disease of prostate, unspecified', 'ICD10_2010'), +('N42', 'Other disorders of prostate', 'ICD10_2010'), +('N42.0', 'Calculus of prostate', 'ICD10_2010'), +('N42.1', 'Congestion and haemorrhage of prostate', 'ICD10_2010'), +('N42.2', 'Atrophy of prostate', 'ICD10_2010'), +('N42.3', 'Dysplasia of prostate', 'ICD10_2010'), +('N42.8', 'Other specified disorders of prostate', 'ICD10_2010'), +('N42.9', 'Disorder of prostate, unspecified', 'ICD10_2010'), +('N43', 'Hydrocele and spermatocele', 'ICD10_2010'), +('N43.0', 'Encysted hydrocele', 'ICD10_2010'), +('N43.1', 'Infected hydrocele', 'ICD10_2010'), +('N43.2', 'Other hydrocele', 'ICD10_2010'), +('N43.3', 'Hydrocele, unspecified', 'ICD10_2010'), +('N43.4', 'Spermatocele', 'ICD10_2010'), +('N44', 'Torsion of testis', 'ICD10_2010'), +('N45', 'Orchitis and epididymitis', 'ICD10_2010'), +('N45.0', 'Orchitis, epididymitis and epididymo-orchitis with abscess', 'ICD10_2010'), +('N45.9', 'Orchitis epididymitis and epididymo-orchitis without abscess', 'ICD10_2010'), +('N46', 'Male infertility', 'ICD10_2010'), +('N47', 'Redundant prepuce, phimosis and paraphimosis', 'ICD10_2010'), +('N48', 'Other disorders of penis', 'ICD10_2010'), +('N48.0', 'Leukoplakia of penis', 'ICD10_2010'), +('N48.1', 'Balanoposthitis', 'ICD10_2010'), +('N48.2', 'Other inflammatory disorders of penis', 'ICD10_2010'), +('N48.3', 'Priapism', 'ICD10_2010'), +('N48.4', 'Impotence of organic origin', 'ICD10_2010'), +('N48.5', 'Ulcer of penis', 'ICD10_2010'), +('N48.6', 'Induratio penis plastica', 'ICD10_2010'), +('N48.8', 'Other specified disorders of penis', 'ICD10_2010'), +('N48.9', 'Disorder of penis, unspecified', 'ICD10_2010'), +('N49', 'Inflammatory disorders of male genital organs, not elsewhere classified', 'ICD10_2010'), +('N49.0', 'Inflammatory disorders of seminal vesicle', 'ICD10_2010'), +('N49.1', 'Inflammatory disorders spermatic cord, tunica vaginalis and vas deferens', 'ICD10_2010'), +('N49.2', 'Inflammatory disorders of scrotum', 'ICD10_2010'), +('N49.8', 'Inflammatory disorders of other specified male genital organs', 'ICD10_2010'), +('N49.9', 'Inflammatory disorder of unspecified male genital organ', 'ICD10_2010'), +('N50', 'Other disorders of male genital organs', 'ICD10_2010'), +('N50.0', 'Atrophy of testis', 'ICD10_2010'), +('N50.1', 'Vascular disorders of male genital organs', 'ICD10_2010'), +('N50.8', 'Other specified disorders of male genital organs', 'ICD10_2010'), +('N50.9', 'Disorder of male genital organs, unspecified', 'ICD10_2010'), +('N51', 'Disorders of male genital organs in diseases classified elsewhere', 'ICD10_2010'), +('N51.0', 'Disorders of prostate in diseases classified elsewhere', 'ICD10_2010'), +('N51.1', 'Disorders of testis and epididymis in diseases classified elsewhere', 'ICD10_2010'), +('N51.2', 'Balanitis in diseases classified elsewhere', 'ICD10_2010'), +('N51.8', 'Other disorders of male genital organs in diseases classified elsewhere', 'ICD10_2010'), +('N60', 'Benign mammary dysplasia', 'ICD10_2010'), +('N60.0', 'Solitary cyst of breast', 'ICD10_2010'), +('N60.1', 'Diffuse cystic mastopathy', 'ICD10_2010'), +('N60.2', 'Fibroadenosis of breast', 'ICD10_2010'), +('N60.3', 'Fibrosclerosis of breast', 'ICD10_2010'), +('N60.4', 'Mammary duct ectasia', 'ICD10_2010'), +('N60.8', 'Other benign mammary dysplasias', 'ICD10_2010'), +('N60.9', 'Benign mammary dysplasia, unspecified', 'ICD10_2010'), +('N61', 'Inflammatory disorders of breast', 'ICD10_2010'), +('N62', 'Hypertrophy of breast', 'ICD10_2010'), +('N63', 'Unspecified lump in breast', 'ICD10_2010'), +('N64', 'Other disorders of breast', 'ICD10_2010'), +('N64.0', 'Fissure and fistula of nipple', 'ICD10_2010'), +('N64.1', 'Fat necrosis of breast', 'ICD10_2010'), +('N64.2', 'Atrophy of breast', 'ICD10_2010'), +('N64.3', 'Galactorrhoea not associated with childbirth', 'ICD10_2010'), +('N64.4', 'Mastodynia', 'ICD10_2010'), +('N64.5', 'Other signs and symptoms in breast', 'ICD10_2010'), +('N64.8', 'Other specified disorders of breast', 'ICD10_2010'), +('N64.9', 'Disorder of breast, unspecified', 'ICD10_2010'), +('N70', 'Salpingitis and oophoritis', 'ICD10_2010'), +('N70.0', 'Acute salpingitis and oophoritis', 'ICD10_2010'), +('N70.1', 'Chronic salpingitis and oophoritis', 'ICD10_2010'), +('N70.9', 'Salpingitis and oophoritis, unspecified', 'ICD10_2010'), +('N71', 'Inflammatory disease of uterus, except cervix', 'ICD10_2010'), +('N71.0', 'Acute inflammatory disease of uterus', 'ICD10_2010'), +('N71.1', 'Chronic inflammatory disease of uterus', 'ICD10_2010'), +('N71.9', 'Inflammatory disease of uterus, unspecified', 'ICD10_2010'), +('N72', 'Inflammatory disease of cervix uteri', 'ICD10_2010'), +('N73', 'Other female pelvic inflammatory diseases', 'ICD10_2010'), +('N73.0', 'Acute parametritis and pelvic cellulitis', 'ICD10_2010'), +('N73.1', 'Chronic parametritis and pelvic cellulitis', 'ICD10_2010'), +('N73.2', 'Unspecified parametritis and pelvic cellulitis', 'ICD10_2010'), +('N73.3', 'Female acute pelvic peritonitis', 'ICD10_2010'), +('N73.4', 'Female chronic pelvic peritonitis', 'ICD10_2010'), +('N73.5', 'Female pelvic peritonitis, unspecified', 'ICD10_2010'), +('N73.6', 'Female pelvic peritoneal adhesions', 'ICD10_2010'), +('N73.8', 'Other specified female pelvic inflammatory diseases', 'ICD10_2010'), +('N73.9', 'Female pelvic inflammatory disease, unspecified', 'ICD10_2010'), +('N74', 'Female pelvic inflammatory disorders in diseases classified elsewhere', 'ICD10_2010'), +('N74.0', 'Tuberculous infection of cervix uteri', 'ICD10_2010'), +('N74.1', 'Female tuberculous pelvic inflammatory disease', 'ICD10_2010'), +('N74.2', 'Female syphilitic pelvic inflammatory disease', 'ICD10_2010'), +('N74.3', 'Female gonococcal pelvic inflammatory disease', 'ICD10_2010'), +('N74.4', 'Female chlamydial pelvic inflammatory disease', 'ICD10_2010'), +('N74.8', 'Female pelvic inflammatory disorders in other diseases classified elsewhere', 'ICD10_2010'), +('N75', 'Diseases of Bartholin gland', 'ICD10_2010'), +('N75.0', 'Cyst of Bartholin\'s gland', 'ICD10_2010'), +('N75.1', 'Abscess of Bartholin\'s gland', 'ICD10_2010'), +('N75.8', 'Other diseases of Bartholin\'s gland', 'ICD10_2010'), +('N75.9', 'Disease of Bartholin\'s gland, unspecified', 'ICD10_2010'), +('N76', 'Other inflammation of vagina and vulva', 'ICD10_2010'), +('N76.0', 'Acute vaginitis', 'ICD10_2010'), +('N76.1', 'Subacute and chronic vaginitis', 'ICD10_2010'), +('N76.2', 'Acute vulvitis', 'ICD10_2010'), +('N76.3', 'Subacute and chronic vulvitis', 'ICD10_2010'), +('N76.4', 'Abscess of vulva', 'ICD10_2010'), +('N76.5', 'Ulceration of vagina', 'ICD10_2010'), +('N76.6', 'Ulceration of vulva', 'ICD10_2010'), +('N76.8', 'Other specified inflammation of vagina and vulva', 'ICD10_2010'), +('N77', 'Vulvovaginal ulceration and inflammation in diseases classified elsewhere', 'ICD10_2010'), +('N77.0', 'Ulceration of vulva in infectious and parasitic diseases classified elsewhere', 'ICD10_2010'), +('N77.1', 'Vaginitis vulvitis and vulvovaginitis in infectious and parasitic diseases classified elsewhere', 'ICD10_2010'), +('N77.8', 'Vulvovaginal ulceration and inflammation in other diseases classified elsewhere', 'ICD10_2010'), +('N80', 'Endometriosis', 'ICD10_2010'), +('N80.0', 'Endometriosis of uterus', 'ICD10_2010'), +('N80.1', 'Endometriosis of ovary', 'ICD10_2010'), +('N80.2', 'Endometriosis of fallopian tube', 'ICD10_2010'); +INSERT INTO `icd10` (`ID_ICD10`, `Diagnosa`, `Versi_ICD10`) VALUES +('N80.3', 'Endometriosis of pelvic peritoneum', 'ICD10_2010'), +('N80.4', 'Endometriosis of rectovaginal septum and vagina', 'ICD10_2010'), +('N80.5', 'Endometriosis of intestine', 'ICD10_2010'), +('N80.6', 'Endometriosis in cutaneous scar', 'ICD10_2010'), +('N80.8', 'Other endometriosis', 'ICD10_2010'), +('N80.9', 'Endometriosis, unspecified', 'ICD10_2010'), +('N81', 'Female genital prolapse', 'ICD10_2010'), +('N81.0', 'Female urethrocele', 'ICD10_2010'), +('N81.1', 'Cystocele', 'ICD10_2010'), +('N81.2', 'Incomplete uterovaginal prolapse', 'ICD10_2010'), +('N81.3', 'Complete uterovaginal prolapse', 'ICD10_2010'), +('N81.4', 'Uterovaginal prolapse, unspecified', 'ICD10_2010'), +('N81.5', 'Vaginal enterocele', 'ICD10_2010'), +('N81.6', 'Rectocele', 'ICD10_2010'), +('N81.8', 'Other female genital prolapse', 'ICD10_2010'), +('N81.9', 'Female genital prolapse, unspecified', 'ICD10_2010'), +('N82', 'Fistulae involving female genital tract', 'ICD10_2010'), +('N82.0', 'Vesicovaginal fistula', 'ICD10_2010'), +('N82.1', 'Other female urinary-genital tract fistulae', 'ICD10_2010'), +('N82.2', 'Fistula of vagina to small intestine', 'ICD10_2010'), +('N82.3', 'Fistula of vagina to large intestine', 'ICD10_2010'), +('N82.4', 'Other female intestinal-genital tract fistulae', 'ICD10_2010'), +('N82.5', 'Female genital tract-skin fistulae', 'ICD10_2010'), +('N82.8', 'Other female genital tract fistulae', 'ICD10_2010'), +('N82.9', 'Female genital tract fistula, unspecified', 'ICD10_2010'), +('N83', 'Noninflammatory disorders of ovary, fallopian tube and broad ligament', 'ICD10_2010'), +('N83.0', 'Follicular cyst of ovary', 'ICD10_2010'), +('N83.1', 'Corpus luteum cyst', 'ICD10_2010'), +('N83.2', 'Other and unspecified ovarian cysts', 'ICD10_2010'), +('N83.3', 'Acquired atrophy of ovary and fallopian tube', 'ICD10_2010'), +('N83.4', 'Prolapse and hernia of ovary and fallopian tube', 'ICD10_2010'), +('N83.5', 'Torsion of ovary, ovarian pedicle and fallopian tube', 'ICD10_2010'), +('N83.6', 'Haematosalpinx', 'ICD10_2010'), +('N83.7', 'Haematoma of broad ligament', 'ICD10_2010'), +('N83.8', 'Other noninflamatory disorders of ovary, fallopian tube and broad ligament', 'ICD10_2010'), +('N83.9', 'Noninflammatory disorder of ovary, fallopian tube and broad ligament, unspecified', 'ICD10_2010'), +('N84', 'Polyp of female genital tract', 'ICD10_2010'), +('N84.0', 'Polyp of corpus uteri', 'ICD10_2010'), +('N84.1', 'Polyp of cervix uteri', 'ICD10_2010'), +('N84.2', 'Polyp of vagina', 'ICD10_2010'), +('N84.3', 'Polyp of vulva', 'ICD10_2010'), +('N84.8', 'Polyp of other parts of female genital tract', 'ICD10_2010'), +('N84.9', 'Polyp of female genital tract, unspecified', 'ICD10_2010'), +('N85', 'Other noninflammatory disorders of uterus, except cervix', 'ICD10_2010'), +('N85.0', 'Endometrial glandular hyperplasia', 'ICD10_2010'), +('N85.1', 'Endometrial adenomatous hyperplasia', 'ICD10_2010'), +('N85.2', 'Hypertrophy of uterus', 'ICD10_2010'), +('N85.3', 'Subinvolution of uterus', 'ICD10_2010'), +('N85.4', 'Malposition of uterus', 'ICD10_2010'), +('N85.5', 'Inversion of uterus', 'ICD10_2010'), +('N85.6', 'Intrauterine synechiae', 'ICD10_2010'), +('N85.7', 'Haematometra', 'ICD10_2010'), +('N85.8', 'Other specified noninflammatory disorders of uterus', 'ICD10_2010'), +('N85.9', 'Noninflammatory disorder of uterus, unspecified', 'ICD10_2010'), +('N86', 'Erosion and ectropion of cervix uteri', 'ICD10_2010'), +('N87', 'Dysplasia of cervix uteri', 'ICD10_2010'), +('N87.0', 'Mild cervical dysplasia', 'ICD10_2010'), +('N87.1', 'Moderate cervical dysplasia', 'ICD10_2010'), +('N87.2', 'Severe cervical dysplasia, not elsewhere classified', 'ICD10_2010'), +('N87.9', 'Dysplasia of cervix uteri, unspecified', 'ICD10_2010'), +('N88', 'Other noninflammatory disorders of cervix uteri', 'ICD10_2010'), +('N88.0', 'Leukoplakia of cervix uteri', 'ICD10_2010'), +('N88.1', 'Old laceration of cervix uteri', 'ICD10_2010'), +('N88.2', 'Stricture and stenosis of cervix uteri', 'ICD10_2010'), +('N88.3', 'Incompetence of cervix uteri', 'ICD10_2010'), +('N88.4', 'Hypertrophic elongation of cervix uteri', 'ICD10_2010'), +('N88.8', 'Other specified noninflammatory disorders of cervix uteri', 'ICD10_2010'), +('N88.9', 'Noninflammatory disorder of cervix uteri, unspecified', 'ICD10_2010'), +('N89', 'Other noninflammatory disorders of vagina', 'ICD10_2010'), +('N89.0', 'Mild vaginal dysplasia', 'ICD10_2010'), +('N89.1', 'Moderate vaginal dysplasia', 'ICD10_2010'), +('N89.2', 'Severe vaginal dysplasia, not elsewhere classified', 'ICD10_2010'), +('N89.3', 'Dysplasia of vagina, unspecified', 'ICD10_2010'), +('N89.4', 'Leukoplakia of vagina', 'ICD10_2010'), +('N89.5', 'Stricture and atresia of vagina', 'ICD10_2010'), +('N89.6', 'Tight hymenal ring', 'ICD10_2010'), +('N89.7', 'Haematocolpos', 'ICD10_2010'), +('N89.8', 'Other specified noninflammatory disorders of vagina', 'ICD10_2010'), +('N89.9', 'Noninflammatory disorder of vagina, unspecified', 'ICD10_2010'), +('N90', 'Other noninflammatory disorders of vulva and perineum', 'ICD10_2010'), +('N90.0', 'Mild vulvar dysplasia', 'ICD10_2010'), +('N90.1', 'Moderate vulvar dysplasia', 'ICD10_2010'), +('N90.2', 'Severe vulvar dysplasia, not elsewhere classified', 'ICD10_2010'), +('N90.3', 'Dysplasia of vulva, unspecified', 'ICD10_2010'), +('N90.4', 'Leukoplakia of vulva', 'ICD10_2010'), +('N90.5', 'Atrophy of vulva', 'ICD10_2010'), +('N90.6', 'Hypertrophy of vulva', 'ICD10_2010'), +('N90.7', 'Vulvar cyst', 'ICD10_2010'), +('N90.8', 'Other specified noninflammatory disorders of vulva and perineum', 'ICD10_2010'), +('N90.9', 'Noninflammatory disorder of vulva and perineum, unspecified', 'ICD10_2010'), +('N91', 'Absent, scanty and rare menstruation', 'ICD10_2010'), +('N91.0', 'Primary amenorrhoea', 'ICD10_2010'), +('N91.1', 'Secondary amenorrhoea', 'ICD10_2010'), +('N91.2', 'Amenorrhoea, unspecified', 'ICD10_2010'), +('N91.3', 'Primary oligomenorrhoea', 'ICD10_2010'), +('N91.4', 'Secondary oligomenorrhoea', 'ICD10_2010'), +('N91.5', 'Oligomenorrhoea, unspecified', 'ICD10_2010'), +('N92', 'Excessive, frequent and irregular menstruation', 'ICD10_2010'), +('N92.0', 'Excessive and frequent menstruation with regular cycle', 'ICD10_2010'), +('N92.1', 'Excessive and frequent menstruation with irregular cycle', 'ICD10_2010'), +('N92.2', 'Excessive menstruation at puberty', 'ICD10_2010'), +('N92.3', 'Ovulation bleeding', 'ICD10_2010'), +('N92.4', 'Excessive bleeding in the premenopausal period', 'ICD10_2010'), +('N92.5', 'Other specified irregular menstruation', 'ICD10_2010'), +('N92.6', 'Irregular menstruation, unspecified', 'ICD10_2010'), +('N93', 'Other abnormal uterine and vaginal bleeding', 'ICD10_2010'), +('N93.0', 'Postcoital and contact bleeding', 'ICD10_2010'), +('N93.8', 'Other specified abnormal uterine and vaginal bleeding', 'ICD10_2010'), +('N93.9', 'Abnormal uterine and vaginal bleeding, unspecified', 'ICD10_2010'), +('N94', 'Pain and other conditions associated with female genital organs and menstrual cycle', 'ICD10_2010'), +('N94.0', 'Mittelschmerz', 'ICD10_2010'), +('N94.1', 'Dyspareunia', 'ICD10_2010'), +('N94.2', 'Vaginismus', 'ICD10_2010'), +('N94.3', 'Premenstrual tension syndrome', 'ICD10_2010'), +('N94.4', 'Primary dysmenorrhoea', 'ICD10_2010'), +('N94.5', 'Secondary dysmenorrhoea', 'ICD10_2010'), +('N94.6', 'Dysmenorrhoea, unspecified', 'ICD10_2010'), +('N94.8', 'Other specified conditions associated with female genital organs and menstrual cycle', 'ICD10_2010'), +('N94.9', 'Unspecified condition associated with female genital organs and menstrual cycle', 'ICD10_2010'), +('N95', 'Menopausal and other perimenopausal disorders', 'ICD10_2010'), +('N95.0', 'Postmenopausal bleeding', 'ICD10_2010'), +('N95.1', 'Menopausal and female climacteric states', 'ICD10_2010'), +('N95.2', 'Postmenopausal atrophic vaginitis', 'ICD10_2010'), +('N95.3', 'States associated with artificial menopause', 'ICD10_2010'), +('N95.8', 'Other specified menopausal and perimenopausal disorders', 'ICD10_2010'), +('N95.9', 'Menopausal and perimenopausal disorder, unspecified', 'ICD10_2010'), +('N96', 'Habitual aborter', 'ICD10_2010'), +('N97', 'Female infertility', 'ICD10_2010'), +('N97.0', 'Female infertility associated with anovulation', 'ICD10_2010'), +('N97.1', 'Female infertility of tubal origin', 'ICD10_2010'), +('N97.2', 'Female infertility of uterine origin', 'ICD10_2010'), +('N97.3', 'Female infertility of cervical origin', 'ICD10_2010'), +('N97.4', 'Female infertility associated with male factors', 'ICD10_2010'), +('N97.8', 'Female infertility of other origin', 'ICD10_2010'), +('N97.9', 'Female infertility, unspecified', 'ICD10_2010'), +('N98', 'Complications associated with artificial fertilization', 'ICD10_2010'), +('N98.0', 'Infection associated with artificial insemination', 'ICD10_2010'), +('N98.1', 'Hyperstimulation of ovaries', 'ICD10_2010'), +('N98.2', 'Complications attempted introduction fertilized ovum following in vitro fertilization', 'ICD10_2010'), +('N98.3', 'Complications attempted introduction of embryo in embryo transfer', 'ICD10_2010'), +('N98.8', 'Other complications associated with artificial fertilization', 'ICD10_2010'), +('N98.9', 'Complication associated with artificial fertilization, unspecified', 'ICD10_2010'), +('N99', 'Postprocedural disorders of genitourinary system, not elsewhere classified', 'ICD10_2010'), +('N99.0', 'Postprocedural renal failure', 'ICD10_2010'), +('N99.1', 'Postprocedural urethral stricture', 'ICD10_2010'), +('N99.2', 'Postoperative adhesions of vagina', 'ICD10_2010'), +('N99.3', 'Prolapse of vaginal vault after hysterectomy', 'ICD10_2010'), +('N99.4', 'Postprocedural pelvic peritoneal adhesions', 'ICD10_2010'), +('N99.5', 'Malfunction of external stoma of urinary tract', 'ICD10_2010'), +('N99.8', 'Other postprocedural disorders of genitourinary system', 'ICD10_2010'), +('N99.9', 'Postprocedural disorder of genitourinary system, unspecified', 'ICD10_2010'), +('O00', 'Ectopic pregnancy', 'ICD10_2010'), +('O00.0', 'Abdominal pregnancy', 'ICD10_2010'), +('O00.1', 'Tubal pregnancy', 'ICD10_2010'), +('O00.2', 'Ovarian pregnancy', 'ICD10_2010'), +('O00.8', 'Other ectopic pregnancy', 'ICD10_2010'), +('O00.9', 'Ectopic pregnancy, unspecified', 'ICD10_2010'), +('O01', 'Hydatidiform mole', 'ICD10_2010'), +('O01.0', 'Classical hydatidiform mole', 'ICD10_2010'), +('O01.1', 'Incomplete and partial hydatidiform mole', 'ICD10_2010'), +('O01.9', 'Hydatidiform mole, unspecified', 'ICD10_2010'), +('O02', 'Other abnormal products of conception', 'ICD10_2010'), +('O02.0', 'Blighted ovum and nonhydatidiform mole', 'ICD10_2010'), +('O02.1', 'Missed abortion', 'ICD10_2010'), +('O02.8', 'Other specified abnormal products of conception', 'ICD10_2010'), +('O02.9', 'Abnormal product of conception, unspecified', 'ICD10_2010'), +('O03', 'Spontaneous abortion', 'ICD10_2010'), +('O03.0', 'Spontaneous abortion, incomplete abortion complicated by genital tract and pelvic infection', 'ICD10_2010'), +('O03.1', 'Spontaneous abortion, incomplete abortion complicated by delayed or excessive haemorrhage', 'ICD10_2010'), +('O03.2', 'Spontaneous abortion, incomplete, complicated by embolism', 'ICD10_2010'), +('O03.3', 'Spontaneous abortion, incomplete, with other and unspecified complications', 'ICD10_2010'), +('O03.4', 'Spontaneous abortion, incomplete, without complication', 'ICD10_2010'), +('O03.5', 'Spontaneous abortion, complete or unspecified, complicated by genital tract and pelvic infection', 'ICD10_2010'), +('O03.6', 'Spontaneous abortion, complete or unspecified, complicated by delayed or excessive haemorrhage', 'ICD10_2010'), +('O03.7', 'Spontaneous abortion, complete or unspecified, complicated by embolism', 'ICD10_2010'), +('O03.8', 'Spontaneous abortion, complete or unspecified, with other and unspecified complications', 'ICD10_2010'), +('O03.9', 'Spontaneous abortion, complete or unspecified, without complication', 'ICD10_2010'), +('O04', 'Medical abortion', 'ICD10_2010'), +('O04.0', 'Medical abortion, incomplete, complicated by genital tract and pelvic infection', 'ICD10_2010'), +('O04.1', 'Medical abortion, incomplete, complicated by delayed or excessive haemorrhage', 'ICD10_2010'), +('O04.2', 'Medical abortion, incomplete, complicated by embolism', 'ICD10_2010'), +('O04.3', 'Medical abortion, incomplete, with other and unspecified complications', 'ICD10_2010'), +('O04.4', 'Medical abortion, incomplete, without complication', 'ICD10_2010'), +('O04.5', 'Medical abortion, complete or unspecified, complicated by genital tract and pelvic infection', 'ICD10_2010'), +('O04.6', 'Medical abortion, complete or unspecified, complicated by delayed or excessive haemorrhage', 'ICD10_2010'), +('O04.7', 'Medical abortion, complete or unspecified, complicated by embolism', 'ICD10_2010'), +('O04.8', 'Medical abortion, complete or unspecified, with other and unspecified complications', 'ICD10_2010'), +('O04.9', 'Medical abortion, complete or unspecified, without complication', 'ICD10_2010'), +('O05', 'Other abortion', 'ICD10_2010'), +('O05.0', 'Other abortion, incomplete, complicated by genital tract and pelvic infection', 'ICD10_2010'), +('O05.1', 'Other abortion, incomplete, complicated by delayed or excessive haemorrhage', 'ICD10_2010'), +('O05.2', 'Other abortion, incomplete, complicated by embolism', 'ICD10_2010'), +('O05.3', 'Other abortion, incomplete, with other and unspecified complications', 'ICD10_2010'), +('O05.4', 'Other abortion, incomplete, without complication', 'ICD10_2010'), +('O05.5', 'Other abortion, complete or unspecified, complicated by genital tract and pelvic infection', 'ICD10_2010'), +('O05.6', 'Other abortion, complete or unspecified, complicated by delayed or excessive haemorrhage', 'ICD10_2010'), +('O05.7', 'Other abortion, complete or unspecified, complicated by embolism', 'ICD10_2010'), +('O05.8', 'Other abortion, complete or unspecified, with other and unspecified complications', 'ICD10_2010'), +('O05.9', 'Other abortion, complete or unspecified, without complication', 'ICD10_2010'), +('O06', 'Unspecified abortion', 'ICD10_2010'), +('O06.0', 'Unspecified abortion, incomplete, complicated by genital tract and pelvic infection', 'ICD10_2010'), +('O06.1', 'Unspecified abortion, incomplete, complicated by delayed or excessive haemorrhage', 'ICD10_2010'), +('O06.2', 'Unspecified abortion, incomplete, complicated by embolism', 'ICD10_2010'), +('O06.3', 'Unspecified abortion, incomplete, with other and unspecified complications', 'ICD10_2010'), +('O06.4', 'Unspecified abortion, incomplete, without complication', 'ICD10_2010'), +('O06.5', 'Unspecified abortion, complete or unspecified, complicated by genital tract and pelvic infection', 'ICD10_2010'), +('O06.6', 'Unspecified abortion, complete or unspecified, complicated by delayed or excessive haemorrhage', 'ICD10_2010'), +('O06.7', 'Unspecified abortion, complete or unspecified, complicated by embolism', 'ICD10_2010'), +('O06.8', 'Unspecified abortion, complete or unspecified, with other and unspecified complications', 'ICD10_2010'), +('O06.9', 'Unspecified abortion, complete or unspecified, without complication', 'ICD10_2010'), +('O07', 'Failed attempted abortion', 'ICD10_2010'), +('O07.0', 'Failed medical abortion, complicated by genital tract and pelvic infection', 'ICD10_2010'), +('O07.1', 'Failed medical abortion complicated by delayed or excessive haemorrhage', 'ICD10_2010'), +('O07.2', 'Failed medical abortion, complicated by embolism', 'ICD10_2010'), +('O07.3', 'Failed medical abortion, with other and unspecified complications', 'ICD10_2010'), +('O07.4', 'Failed medical abortion, without complication', 'ICD10_2010'), +('O07.5', 'Other and unspecified failed attempted abortion, complicated by genital tract and pelvic infection', 'ICD10_2010'), +('O07.6', 'Other and unspecified failed attempted abortion, complicated by delayed or excessive haemorrhage', 'ICD10_2010'), +('O07.7', 'Other and unspecified failed attempted abortion, complicated by embolism', 'ICD10_2010'), +('O07.8', 'Other and unspecified failed attempted abortion, with other and unspecified complications', 'ICD10_2010'), +('O07.9', 'Other and unspecified failed attempted abortion, without complication', 'ICD10_2010'), +('O08', 'Complications following abortion and ectopic and molar pregnancy', 'ICD10_2010'), +('O08.0', 'Genital tract and pelvic infection following abortion and ectopic and molar pregnancy', 'ICD10_2010'), +('O08.1', 'Delayed or excessive haemorrhage following abortion and ectopic and molar pregnancy', 'ICD10_2010'), +('O08.2', 'Embolism following abortion and ectopic and molar pregnancy', 'ICD10_2010'), +('O08.3', 'Shock following abortion and ectopic and molar pregnancy', 'ICD10_2010'), +('O08.4', 'Renal failure following abortion and ectopic and molar pregnancy', 'ICD10_2010'), +('O08.5', 'Metabolic disorders following abortion and ectopic and molar pregnancy', 'ICD10_2010'), +('O08.6', 'Damage to pelvic organs and tissues following abortion and ectopic and molar pregnancy', 'ICD10_2010'), +('O08.7', 'Other venous complications following abortion and ectopic and molar pregnancy', 'ICD10_2010'), +('O08.8', 'Other complications following abortion and ectopic and molar pregnancy', 'ICD10_2010'), +('O08.9', 'Complication following abortion and ectopic and molar pregnancy, unspecified', 'ICD10_2010'), +('O10', 'Pre-existing hypertension complicating pregnancy, childbirth and the puerperium', 'ICD10_2010'), +('O10.0', 'Pre-existing essential hypertension complicating pregnancy, childbirth and the puerperium', 'ICD10_2010'), +('O10.1', 'Pre-existing hypertensive heart disease complicating pregnancy, childbirth and the puerperium', 'ICD10_2010'), +('O10.2', 'Pre-existing hypertensive renal disease complicating pregnancy, childbirth and puerperium', 'ICD10_2010'), +('O10.3', 'Pre-existing hypertensive heart and renal disease complicating pregnancy, childbirth and the puerperium', 'ICD10_2010'), +('O10.4', 'Pre-existing secondary hypertension complicating pregnancy, childbirth and the puerperium', 'ICD10_2010'), +('O10.9', 'Unspecified pre-existing hypertension complicating pregnancy, childbirth and the puerperium', 'ICD10_2010'), +('O11', 'Pre-existing hypertensive disorder with superimposed proteinuria', 'ICD10_2010'), +('O12', 'Gestational [pregnancy-induced] oedema and proteinuria without hypertension', 'ICD10_2010'), +('O12.0', 'Gestational oedema', 'ICD10_2010'), +('O12.1', 'Gestational proteinuria', 'ICD10_2010'), +('O12.2', 'Gestational oedema with proteinuria', 'ICD10_2010'), +('O13', 'Gestational [pregnancy-induced] hypertension without signification proteinuria', 'ICD10_2010'), +('O14', 'Gestational [pregnancy-induced] hypertension with significant proteinuria', 'ICD10_2010'), +('O14.0', 'Moderate pre-eclampsia', 'ICD10_2010'), +('O14.1', 'Severe pre-eclampsia', 'ICD10_2010'), +('O14.2', 'HELLP syndrome', 'ICD10_2010'), +('O14.9', 'Pre-eclampsia, unspecified', 'ICD10_2010'), +('O15', 'Eclampsia', 'ICD10_2010'), +('O15.0', 'Eclampsia in pregnancy', 'ICD10_2010'), +('O15.1', 'Eclampsia in labour', 'ICD10_2010'), +('O15.2', 'Eclampsia in the puerperium', 'ICD10_2010'), +('O15.9', 'Eclampsia, unspecified as to time period', 'ICD10_2010'), +('O16', 'Unspecified maternal hypertension', 'ICD10_2010'), +('O20', 'Haemorrhage in early pregnancy', 'ICD10_2010'), +('O20.0', 'Threatened abortion', 'ICD10_2010'), +('O20.8', 'Other haemorrhage in early pregnancy', 'ICD10_2010'), +('O20.9', 'Haemorrhage in early pregnancy, unspecified', 'ICD10_2010'), +('O21', 'Excessive vomiting in pregnancy', 'ICD10_2010'), +('O21.0', 'Mild hyperemesis gravidarum', 'ICD10_2010'), +('O21.1', 'Hyperemesis gravidarum with metabolic disturbance', 'ICD10_2010'), +('O21.2', 'Late vomiting of pregnancy', 'ICD10_2010'), +('O21.8', 'Other vomiting complicating pregnancy', 'ICD10_2010'), +('O21.9', 'Vomiting of pregnancy, unspecified', 'ICD10_2010'), +('O22', 'Venous complications in pregnancy', 'ICD10_2010'), +('O22.0', 'Varicose veins of lower extremity in pregnancy', 'ICD10_2010'), +('O22.1', 'Genital varices in pregnancy', 'ICD10_2010'), +('O22.2', 'Superficial thrombophlebitis in pregnancy', 'ICD10_2010'), +('O22.3', 'Deep phlebothrombosis in pregnancy', 'ICD10_2010'), +('O22.4', 'Haemorrhoids in pregnancy', 'ICD10_2010'), +('O22.5', 'Cerebral venous thrombosis in pregnancy', 'ICD10_2010'), +('O22.8', 'Other venous complications in pregnancy', 'ICD10_2010'), +('O22.9', 'Venous complication in pregnancy, unspecified', 'ICD10_2010'), +('O23', 'Infections of genitourinary tract in pregnancy', 'ICD10_2010'), +('O23.0', 'Infections of kidney in pregnancy', 'ICD10_2010'), +('O23.1', 'Infections of bladder in pregnancy', 'ICD10_2010'), +('O23.2', 'Infections of urethra in pregnancy', 'ICD10_2010'), +('O23.3', 'Infections of other parts of urinary tract in pregnancy', 'ICD10_2010'), +('O23.4', 'Unspecified infection of urinary tract in pregnancy', 'ICD10_2010'), +('O23.5', 'Infections of the genital tract in pregnancy', 'ICD10_2010'), +('O23.9', 'Other and unspecified genitourinary tract infection in pregnancy', 'ICD10_2010'), +('O24', 'Diabetes mellitus in pregnancy', 'ICD10_2010'), +('O24.0', 'Pre-existing diabetes mellitus, insulin-dependent', 'ICD10_2010'), +('O24.1', 'Pre-existing diabetes mellitus, non-insulin-dependent', 'ICD10_2010'), +('O24.2', 'Pre-existing malnutrition-related diabetes mellitus', 'ICD10_2010'), +('O24.3', 'Pre-existing diabetes mellitus, unspecified', 'ICD10_2010'), +('O24.4', 'Diabetes mellitus arising in pregnancy', 'ICD10_2010'), +('O24.9', 'Diabetes mellitus in pregnancy, unspecified', 'ICD10_2010'), +('O25', 'Malnutrition in pregnancy', 'ICD10_2010'), +('O26', 'Maternal care for other conditions predominantly related to pregnancy', 'ICD10_2010'), +('O26.0', 'Excessive weight gain in pregnancy', 'ICD10_2010'), +('O26.1', 'Low weight gain in pregnancy', 'ICD10_2010'), +('O26.2', 'Pregnancy care of habitual aborter', 'ICD10_2010'), +('O26.3', 'Retained intrauterine contraceptive device in pregnancy', 'ICD10_2010'), +('O26.4', 'Herpes gestationis', 'ICD10_2010'), +('O26.5', 'Maternal hypotension syndrome', 'ICD10_2010'), +('O26.6', 'Liver disorders in pregnancy, childbirth and the puerperium', 'ICD10_2010'), +('O26.7', 'Subluxation of symphysis pubis in pregnancy, childbirth and the puerperium', 'ICD10_2010'), +('O26.8', 'Other specified pregnancy-related conditions', 'ICD10_2010'), +('O26.9', 'Pregnancy-related condition, unspecified', 'ICD10_2010'), +('O28', 'Abnormal findings on antenatal screening of mother', 'ICD10_2010'), +('O28.0', 'Abnormal haematological finding on antenatal screening of mother', 'ICD10_2010'), +('O28.1', 'Abnormal biochemical finding on antenatal screening of mother', 'ICD10_2010'), +('O28.2', 'Abnormal cytological finding on antenatal screening of mother', 'ICD10_2010'), +('O28.3', 'Abnormal ultrasonic finding on antenatal screening of mother', 'ICD10_2010'), +('O28.4', 'Abnormal radiological find on antenatal screening of mother', 'ICD10_2010'), +('O28.5', 'Abnormal chromosomal and genetic finding antenatal screening of mother', 'ICD10_2010'), +('O28.8', 'Other abnormal findings on antenatal screening of mother', 'ICD10_2010'), +('O28.9', 'Abnormal finding on antenatal screening of mother, unspecified', 'ICD10_2010'), +('O29', 'Complications of anaesthesia during pregnancy', 'ICD10_2010'), +('O29.0', 'Pulmonary complications of anaesthesia during pregnancy', 'ICD10_2010'), +('O29.1', 'Cardiac complications of anaesthesia during pregnancy', 'ICD10_2010'), +('O29.2', 'Central nervous system complications of anaesthesia during pregnancy', 'ICD10_2010'), +('O29.3', 'Toxic reaction to local anaesthesia during pregnancy', 'ICD10_2010'), +('O29.4', 'Spinal and epidural anaesthesia-induced headache during pregnancy', 'ICD10_2010'), +('O29.5', 'Other complications of spinal and epidural anaesthesia during pregnancy', 'ICD10_2010'), +('O29.6', 'Failed or difficult intubation during pregnancy', 'ICD10_2010'), +('O29.8', 'Other complications of anaesthesia during pregnancy', 'ICD10_2010'), +('O29.9', 'Complication of anaesthesia during pregnancy, unspecified', 'ICD10_2010'), +('O30', 'Multiple gestation', 'ICD10_2010'), +('O30.0', 'Twin pregnancy', 'ICD10_2010'), +('O30.1', 'Triplet pregnancy', 'ICD10_2010'), +('O30.2', 'Quadruplet pregnancy', 'ICD10_2010'), +('O30.8', 'Other multiple gestation', 'ICD10_2010'), +('O30.9', 'Multiple gestation, unspecified', 'ICD10_2010'), +('O31', 'Complications specific to multiple gestation', 'ICD10_2010'), +('O31.0', 'Papyraceous fetus', 'ICD10_2010'), +('O31.1', 'Continuing pregnancy after abortion of one fetus or more', 'ICD10_2010'), +('O31.2', 'Continuing pregnancy after intrauterine death of one fetus or more', 'ICD10_2010'), +('O31.8', 'Other complications specific to multiple gestation', 'ICD10_2010'), +('O32', 'Maternal care for known or suspected malpresentation of fetus', 'ICD10_2010'), +('O32.0', 'Maternal care for unstable lie', 'ICD10_2010'), +('O32.1', 'Maternal care for breech presentation', 'ICD10_2010'), +('O32.2', 'Maternal care for transverse and oblique lie', 'ICD10_2010'), +('O32.3', 'Maternal care for face, brow and chin presentation', 'ICD10_2010'), +('O32.4', 'Maternal care for high head at term', 'ICD10_2010'), +('O32.5', 'Maternal care for multiple gestation with malpresentation of one fetus or more', 'ICD10_2010'), +('O32.6', 'Maternal care for compound presentation', 'ICD10_2010'), +('O32.8', 'Maternal care for other malpresentation of fetus', 'ICD10_2010'), +('O32.9', 'Maternal care for malpresentation of fetus, unspecified', 'ICD10_2010'), +('O33', 'Maternal care for known or suspected disproportion', 'ICD10_2010'), +('O33.0', 'Maternal care for disproportion due to deformity of maternal pelvic bones', 'ICD10_2010'), +('O33.1', 'Maternal care for disproportion due to generally contracted pelvis', 'ICD10_2010'), +('O33.2', 'Maternal care for disproportion due to inlet contraction of pelvis', 'ICD10_2010'), +('O33.3', 'Maternalcare for disproportion due to outlet contract of pelvis', 'ICD10_2010'), +('O33.4', 'Maternal care for disproportion of mixed maternal and fetal origin', 'ICD10_2010'), +('O33.5', 'Maternal care for disproportion due to unusually large fetus', 'ICD10_2010'), +('O33.6', 'Maternal care for disproportion due to hydrocephalic fetus', 'ICD10_2010'), +('O33.7', 'Maternal care for disproportion due to other fetal deformities', 'ICD10_2010'), +('O33.8', 'Maternal care for disproportion of other origin', 'ICD10_2010'), +('O33.9', 'Maternal care for disproportion, unspecified', 'ICD10_2010'), +('O34', 'Maternal care for known or suspected abnormality of pelvic organs', 'ICD10_2010'), +('O34.0', 'Maternal care for congenital malformation of uterus', 'ICD10_2010'), +('O34.1', 'Maternal care for tumour of corpus uteri', 'ICD10_2010'), +('O34.2', 'Maternal care due to uterine scar from previous surgery', 'ICD10_2010'), +('O34.3', 'Maternal care for cervical incompetence', 'ICD10_2010'), +('O34.4', 'Maternal care for other abnormalities of cervix', 'ICD10_2010'), +('O34.5', 'Maternal care for other abnormalities of gravid uterus', 'ICD10_2010'), +('O34.6', 'Maternal care for abnormality of vagina', 'ICD10_2010'), +('O34.7', 'Maternal care for abnormality of vulva and perineum', 'ICD10_2010'), +('O34.8', 'Maternal care for other abnormalities of pelvic organs', 'ICD10_2010'), +('O34.9', 'Maternal care for abnormality of pelvic organ, unspecified', 'ICD10_2010'), +('O35', 'Maternal care for known or suspected fetal abnormality and damage', 'ICD10_2010'), +('O35.0', 'Maternal care for suspected central nervous system malformation in fetus', 'ICD10_2010'), +('O35.1', 'Maternal care for suspected chromosomal abnormality in fetus', 'ICD10_2010'), +('O35.2', 'Maternal care for suspected hereditary disease in fetus', 'ICD10_2010'), +('O35.3', 'Maternal care for suspected damage to fetus from viral disease in mother', 'ICD10_2010'), +('O35.4', 'Maternal care for suspected damage to fetus from alcohol', 'ICD10_2010'), +('O35.5', 'Maternal care for suspected damage to fetus by drugs', 'ICD10_2010'), +('O35.6', 'Maternal care for suspected damage to fetus by radiation', 'ICD10_2010'), +('O35.7', 'Maternal care for suspected damage to fetus by other medical procedures', 'ICD10_2010'), +('O35.8', 'Maternal care for other suspected fetal abnormality and damage', 'ICD10_2010'), +('O35.9', 'Maternal care for suspected fetal abnormality and damage, unspecified', 'ICD10_2010'), +('O36', 'Maternal care for other known or suspected fetal problems', 'ICD10_2010'), +('O36.0', 'Maternal care for rhesus isoimmunization', 'ICD10_2010'), +('O36.1', 'Maternal care for other isoimmunization', 'ICD10_2010'), +('O36.2', 'Maternal care for hydrops fetalis', 'ICD10_2010'), +('O36.3', 'Maternal care for signs of fetal hypoxia', 'ICD10_2010'), +('O36.4', 'Maternal care for intrauterine death', 'ICD10_2010'), +('O36.5', 'Maternal care for poor fetal growth', 'ICD10_2010'), +('O36.6', 'Maternal care for excessive fetal growth', 'ICD10_2010'), +('O36.7', 'Maternal care for viable fetus in abdominal pregnancy', 'ICD10_2010'), +('O36.8', 'Maternal care for other specified fetal problems', 'ICD10_2010'), +('O36.9', 'Maternal care for fetal problem, unspecified', 'ICD10_2010'), +('O40', 'Polyhydramnios', 'ICD10_2010'), +('O41', 'Other disorders of amniotic fluid and membranes', 'ICD10_2010'), +('O41.0', 'Oligohydramnios', 'ICD10_2010'), +('O41.1', 'Infection of amniotic sac and membranes', 'ICD10_2010'), +('O41.8', 'Other specified disorders of amniotic fluid and membranes', 'ICD10_2010'), +('O41.9', 'Disorder of amniotic fluid and membranes, unspecified', 'ICD10_2010'), +('O42', 'Premature rupture of membranes', 'ICD10_2010'), +('O42.0', 'Premature rupture of membranes, onset of labour within 24 hours', 'ICD10_2010'), +('O42.1', 'Premature rupture of membranes, onset of labour after 24 hours', 'ICD10_2010'), +('O42.2', 'Premature rupture of membranes, labour delayed by therapy', 'ICD10_2010'), +('O42.9', 'Premature rupture of membranes, unspecified', 'ICD10_2010'), +('O43', 'Placental disorders', 'ICD10_2010'), +('O43.0', 'Placental transfusion syndromes', 'ICD10_2010'), +('O43.1', 'Malformation of placenta', 'ICD10_2010'), +('O43.2', 'Morbidly adherent placenta', 'ICD10_2010'), +('O43.8', 'Other placental disorders', 'ICD10_2010'), +('O43.9', 'Placental disorder, unspecified', 'ICD10_2010'), +('O44', 'Placenta praevia', 'ICD10_2010'), +('O44.0', 'Placenta praevia specified as without haemorrhage', 'ICD10_2010'), +('O44.1', 'Placenta praevia with haemorrhage', 'ICD10_2010'), +('O45', 'Premature separation of placenta [abruptio placentae]', 'ICD10_2010'), +('O45.0', 'Premature separation of placenta with coagulation defect', 'ICD10_2010'), +('O45.8', 'Other premature separation of placenta', 'ICD10_2010'), +('O45.9', 'Premature separation of placenta, unspecified', 'ICD10_2010'), +('O46', 'Antepartum haemorrhage, not elsewhere classified', 'ICD10_2010'), +('O46.0', 'Antepartum haemorrhage with coagulation defect', 'ICD10_2010'), +('O46.8', 'Other antepartum haemorrhage', 'ICD10_2010'), +('O46.9', 'Antepartum haemorrhage, unspecified', 'ICD10_2010'), +('O47', 'False labour', 'ICD10_2010'), +('O47.0', 'False labour before 37 completed weeks of gestation', 'ICD10_2010'), +('O47.1', 'False labour at or after 37 completed weeks of gestation', 'ICD10_2010'), +('O47.9', 'False labour, unspecified', 'ICD10_2010'), +('O48', 'Prolonged pregnancy', 'ICD10_2010'), +('O60', 'Preterm labour and delivery', 'ICD10_2010'), +('O60.0', 'Preterm labour without delivery', 'ICD10_2010'), +('O60.1', 'Preterm labour with preterm delivery', 'ICD10_2010'), +('O60.2', 'Preterm labour with term delivery', 'ICD10_2010'), +('O60.3', 'Preterm delivery without spontaneous labour', 'ICD10_2010'), +('O61', 'Failed induction of labour', 'ICD10_2010'), +('O61.0', 'Failed medical induction of labour', 'ICD10_2010'), +('O61.1', 'Failed instrumental induction of labour', 'ICD10_2010'), +('O61.8', 'Other failed induction of labour', 'ICD10_2010'), +('O61.9', 'Failed induction of labour, unspecified', 'ICD10_2010'), +('O62', 'Abnormalities of forces of labour', 'ICD10_2010'), +('O62.0', 'Primary inadequate contractions', 'ICD10_2010'), +('O62.1', 'Secondary uterine inertia', 'ICD10_2010'), +('O62.2', 'Other uterine inertia', 'ICD10_2010'), +('O62.3', 'Precipitate labour', 'ICD10_2010'), +('O62.4', 'Hypertonic, incoordinate, and prolonged uterine contractions', 'ICD10_2010'), +('O62.8', 'Other abnormalities of forces of labour', 'ICD10_2010'), +('O62.9', 'Abnormality of forces of labour, unspecified', 'ICD10_2010'), +('O63', 'Long labour', 'ICD10_2010'), +('O63.0', 'Prolonged first stage of labour', 'ICD10_2010'), +('O63.1', 'Prolonged second stage of labour', 'ICD10_2010'), +('O63.2', 'Delayed delivery of second twin, triplet, etc', 'ICD10_2010'), +('O63.9', 'Long labour, unspecified', 'ICD10_2010'), +('O64', 'Obstructed labour due to malposition and malpresentation of fetus', 'ICD10_2010'), +('O64.0', 'Obstructed labour due to incomplete rotation of fetal head', 'ICD10_2010'), +('O64.1', 'Obstructed labour due to breech presentation', 'ICD10_2010'), +('O64.2', 'Obstructed labour due to face presentation', 'ICD10_2010'), +('O64.3', 'Obstructed labour due to brow presentation', 'ICD10_2010'), +('O64.4', 'Obstructed labour due to shoulder presentation', 'ICD10_2010'), +('O64.5', 'Obstructed labour due to compound presentation', 'ICD10_2010'), +('O64.8', 'Obstructed labour due other malposition and malpresentation', 'ICD10_2010'), +('O64.9', 'Obstructed labour due malposition and malpresentation, unspecified', 'ICD10_2010'), +('O65', 'Obstructed labour due to maternal pelvic abnormality', 'ICD10_2010'), +('O65.0', 'Obstructed labour due to deformed pelvis', 'ICD10_2010'), +('O65.1', 'Obstructed labour due to generally contracted pelvis', 'ICD10_2010'), +('O65.2', 'Obstructed labour due to pelvic inlet contraction', 'ICD10_2010'), +('O65.3', 'Obstructed labour due pelvic outlet and mid-cavity contraction', 'ICD10_2010'), +('O65.4', 'Obstructed labour due to fetopelvic disproportion, unspecified', 'ICD10_2010'), +('O65.5', 'Obstructed labour due abnormality of maternal pelvic organs', 'ICD10_2010'), +('O65.8', 'Obstructed labour due to other maternal pelvic abnormalities', 'ICD10_2010'), +('O65.9', 'Obstructed labour due to maternal pelvic abnormality, unspecified', 'ICD10_2010'), +('O66', 'Other obstructed labour', 'ICD10_2010'), +('O66.0', 'Obstructed labour due to shoulder dystocia', 'ICD10_2010'), +('O66.1', 'Obstructed labour due to locked twins', 'ICD10_2010'), +('O66.2', 'Obstructed labour due to unusually large fetus', 'ICD10_2010'), +('O66.3', 'Obstructed labour due to other abnormalities of fetus', 'ICD10_2010'), +('O66.4', 'Failed trial of labour, unspecified', 'ICD10_2010'), +('O66.5', 'Failed application of vacuum extractor and forceps, unspecified', 'ICD10_2010'), +('O66.8', 'Other specified obstructed labour', 'ICD10_2010'), +('O66.9', 'Obstructed labour, unspecified', 'ICD10_2010'), +('O67', 'Labour and delivery complicated by intrapartum haemorrhage, not elsewhere classified', 'ICD10_2010'), +('O67.0', 'Intrapartum haemorrhage with coagulation defect', 'ICD10_2010'), +('O67.8', 'Other intrapartum haemorrhage', 'ICD10_2010'), +('O67.9', 'Intrapartum haemorrhage, unspecified', 'ICD10_2010'), +('O68', 'Labour and delivery complicated by fetal stress [distress]', 'ICD10_2010'), +('O68.0', 'Labour and delivery complicated by fetal heart rate anomaly', 'ICD10_2010'), +('O68.1', 'Labour and delivery complicated by meconium in amniotic fluid', 'ICD10_2010'), +('O68.2', 'Labour and delivery complicated fetal heart rate anomaly with meconium in amniot fluid', 'ICD10_2010'), +('O68.3', 'Labour and delivery complicated by biochemical evidence of fetal stress', 'ICD10_2010'), +('O68.8', 'Labour and delivery complicated by other evidence of fetal stress', 'ICD10_2010'), +('O68.9', 'Labour and delivery complicated by fetal stress, unspecified', 'ICD10_2010'), +('O69', 'Labour and delivery complicated by umbilical cord complications', 'ICD10_2010'), +('O69.0', 'Labour and delivery complicated by prolapse of cord', 'ICD10_2010'), +('O69.1', 'Labour and delivery complicated cord around neck, with compression', 'ICD10_2010'), +('O69.2', 'Labour and delivery complicated by other cord entanglement', 'ICD10_2010'), +('O69.3', 'Labour and delivery complicated by short cord', 'ICD10_2010'), +('O69.4', 'Labour and delivery complicated by vasa praevia', 'ICD10_2010'), +('O69.5', 'Labour and delivery complicated by vascular lesion of cord', 'ICD10_2010'), +('O69.8', 'Labour and delivery complicated by other cord complications', 'ICD10_2010'), +('O69.9', 'Labour and delivery complicated by cord complication, unspecified', 'ICD10_2010'), +('O70', 'Perineal laceration during delivery', 'ICD10_2010'), +('O70.0', 'First degree perineal laceration during delivery', 'ICD10_2010'), +('O70.1', 'Second degree perineal laceration during delivery', 'ICD10_2010'), +('O70.2', 'Third degree perineal laceration during delivery', 'ICD10_2010'), +('O70.3', 'Fourth degree perineal laceration during delivery', 'ICD10_2010'), +('O70.9', 'Perineal laceration during delivery, unspecified', 'ICD10_2010'), +('O71', 'Other obstetric trauma', 'ICD10_2010'), +('O71.0', 'Rupture of uterus before onset of labour', 'ICD10_2010'), +('O71.1', 'Rupture of uterus during labour', 'ICD10_2010'), +('O71.2', 'Postpartum inversion of uterus', 'ICD10_2010'), +('O71.3', 'Obstetric laceration of cervix', 'ICD10_2010'), +('O71.4', 'Obstetric high vaginal laceration alone', 'ICD10_2010'), +('O71.5', 'Other obstetric injury to pelvic organs', 'ICD10_2010'), +('O71.6', 'Obstetric damage to pelvic joints and ligaments', 'ICD10_2010'), +('O71.7', 'Obstetric haematoma of pelvis', 'ICD10_2010'), +('O71.8', 'Other specified obstetric trauma', 'ICD10_2010'), +('O71.9', 'Obstetric trauma, unspecified', 'ICD10_2010'), +('O72', 'Postpartum haemorrhage', 'ICD10_2010'), +('O72.0', 'Third-stage haemorrhage', 'ICD10_2010'), +('O72.1', 'Other immediate postpartum haemorrhage', 'ICD10_2010'), +('O72.2', 'Delayed and secondary postpartum haemorrhage', 'ICD10_2010'), +('O72.3', 'Postpartum coagulation defects', 'ICD10_2010'), +('O73', 'Retained placenta and membranes, without haemorrhage', 'ICD10_2010'), +('O73.0', 'Retained placenta without haemorrhage', 'ICD10_2010'), +('O73.1', 'Retained portions of placenta and membranes, without haemorrhage', 'ICD10_2010'), +('O74', 'Complications of anaesthesia during labour and delivery', 'ICD10_2010'), +('O74.0', 'Aspiration pneumonitis due to anaesthesia during labour and delivery', 'ICD10_2010'), +('O74.1', 'Other pulmonary complications anaesthesia during labour and delivery', 'ICD10_2010'), +('O74.2', 'Cardiac complications of anaesthesia during labour and delivery', 'ICD10_2010'), +('O74.3', 'Central nervous system complications of anaesthesia during labour and delivery', 'ICD10_2010'), +('O74.4', 'Toxic reaction to local anaesthesia during labour and delivery', 'ICD10_2010'), +('O74.5', 'Spinal and epidural anaesthesia-induced headache during labour and delivery', 'ICD10_2010'), +('O74.6', 'Other complications of spinal and epidural anaesthesia during labour and delivery', 'ICD10_2010'), +('O74.7', 'Failed or difficult intubation during labour and delivery', 'ICD10_2010'), +('O74.8', 'Other complications of anaesthesia during labour and delivery', 'ICD10_2010'), +('O74.9', 'Complication of anaesthesia during labour and delivery, unspecified', 'ICD10_2010'), +('O75', 'Other complications of labour and delivery, not elsewhere classified', 'ICD10_2010'), +('O75.0', 'Maternal distress during labour and delivery', 'ICD10_2010'), +('O75.1', 'Shock during or following labour and delivery', 'ICD10_2010'), +('O75.2', 'Pyrexia during labour, not elsewhere classified', 'ICD10_2010'), +('O75.3', 'Other infection during labour', 'ICD10_2010'), +('O75.4', 'Other complications of obstetric surgery and procedures', 'ICD10_2010'), +('O75.5', 'Delayed delivery after artificial rupture of membranes', 'ICD10_2010'), +('O75.6', 'Delayed delivery after spontaneous or unspecified rupture of membranes', 'ICD10_2010'), +('O75.7', 'Vaginal delivery following previous caesarean section', 'ICD10_2010'), +('O75.8', 'Other specified complications of labour and delivery', 'ICD10_2010'), +('O75.9', 'Complication of labour and delivery, unspecified', 'ICD10_2010'), +('O80', 'Single spontaneous delivery', 'ICD10_2010'), +('O80.0', 'Spontaneous vertex delivery', 'ICD10_2010'), +('O80.1', 'Spontaneous breech delivery', 'ICD10_2010'), +('O80.8', 'Other single spontaneous delivery', 'ICD10_2010'), +('O80.9', 'Single spontaneous delivery, unspecified', 'ICD10_2010'), +('O81', 'Single delivery by forceps and vacuum extractor', 'ICD10_2010'), +('O81.0', 'Low forceps delivery', 'ICD10_2010'), +('O81.1', 'Mid-cavity forceps delivery', 'ICD10_2010'), +('O81.2', 'Mid-cavity forceps with rotation', 'ICD10_2010'), +('O81.3', 'Other and unspecified forceps delivery', 'ICD10_2010'), +('O81.4', 'Vacuum extractor delivery', 'ICD10_2010'), +('O81.5', 'Delivery by combination of forceps and vacuum extractor', 'ICD10_2010'), +('O82', 'Single delivery by caesarean section', 'ICD10_2010'), +('O82.0', 'Delivery by elective caesarean section', 'ICD10_2010'), +('O82.1', 'Delivery by emergency caesarean section', 'ICD10_2010'), +('O82.2', 'Delivery by caesarean hysterectomy', 'ICD10_2010'), +('O82.8', 'Other single delivery by caesarean section', 'ICD10_2010'), +('O82.9', 'Delivery by caesarean section, unspecified', 'ICD10_2010'), +('O83', 'Other assisted single delivery', 'ICD10_2010'), +('O83.0', 'Breech extraction', 'ICD10_2010'), +('O83.1', 'Other assisted breech delivery', 'ICD10_2010'), +('O83.2', 'Other manipulation-assisted delivery', 'ICD10_2010'), +('O83.3', 'Delivery of viable fetus in abdominal pregnancy', 'ICD10_2010'), +('O83.4', 'Destructive operation for delivery', 'ICD10_2010'), +('O83.8', 'Other specified assisted single delivery', 'ICD10_2010'), +('O83.9', 'Assisted single delivery, unspecified', 'ICD10_2010'), +('O84', 'Multiple delivery', 'ICD10_2010'), +('O84.0', 'Multiple delivery, all spontaneous', 'ICD10_2010'), +('O84.1', 'Multiple delivery, all by forceps and vacuum extractor', 'ICD10_2010'), +('O84.2', 'Multiple delivery, all by caesarean section', 'ICD10_2010'), +('O84.8', 'Other multiple delivery', 'ICD10_2010'), +('O84.9', 'Multiple delivery, unspecified', 'ICD10_2010'), +('O85', 'Puerperal sepsis', 'ICD10_2010'), +('O86', 'Other puerperal infections', 'ICD10_2010'), +('O86.0', 'Infection of obstetric surgical wound', 'ICD10_2010'), +('O86.1', 'Other infection of genital tract following delivery', 'ICD10_2010'), +('O86.2', 'Urinary tract infection following delivery', 'ICD10_2010'), +('O86.3', 'Other genitourinary tract infections following delivery', 'ICD10_2010'), +('O86.4', 'Pyrexia of unknown origin following delivery', 'ICD10_2010'), +('O86.8', 'Other specified puerperal infections', 'ICD10_2010'), +('O87', 'Venous complications in the puerperium', 'ICD10_2010'), +('O87.0', 'Superficial thrombophlebitis in the puerperium', 'ICD10_2010'), +('O87.1', 'Deep phlebothrombosis in the puerperium', 'ICD10_2010'), +('O87.2', 'Haemorrhoids in the puerperium', 'ICD10_2010'), +('O87.3', 'Cerebral venous thrombosis in the puerperium', 'ICD10_2010'), +('O87.8', 'Other venous complications in the puerperium', 'ICD10_2010'), +('O87.9', 'Venous complication in the puerperium, unspecified', 'ICD10_2010'), +('O88', 'Obstetric embolism', 'ICD10_2010'), +('O88.0', 'Obstetric air embolism', 'ICD10_2010'), +('O88.1', 'Amniotic fluid embolism', 'ICD10_2010'), +('O88.2', 'Obstetric blood-clot embolism', 'ICD10_2010'), +('O88.3', 'Obstetric pyaemic and septic embolism', 'ICD10_2010'), +('O88.8', 'Other obstetric embolism', 'ICD10_2010'), +('O89', 'Complications of anaesthesia during the puerperium', 'ICD10_2010'), +('O89.0', 'Pulmonary complications of anaesthesia during the puerperium', 'ICD10_2010'), +('O89.1', 'Cardiac complications of anaesthesia during the puerperium', 'ICD10_2010'), +('O89.2', 'Central nervous system complications of anaesthesia during the puerperium', 'ICD10_2010'), +('O89.3', 'Toxic reaction to local anaesthesia during the puerperium', 'ICD10_2010'), +('O89.4', 'Spinal and epidural anaesthesia-induced headache during the puerperium', 'ICD10_2010'), +('O89.5', 'Other complications of spinal and epidural anaesthesia during puerperium', 'ICD10_2010'), +('O89.6', 'Failed or difficult intubation during the puerperium', 'ICD10_2010'), +('O89.8', 'Other complications of anaesthesia during the puerperium', 'ICD10_2010'), +('O89.9', 'Complication of anaesthesia during the puerperium, unspecified', 'ICD10_2010'), +('O90', 'Complications of the puerperium, not elsewhere classified', 'ICD10_2010'), +('O90.0', 'Disruption of caesarean section wound', 'ICD10_2010'), +('O90.1', 'Disruption of perineal obstetric wound', 'ICD10_2010'), +('O90.2', 'Haematoma of obstetric wound', 'ICD10_2010'), +('O90.3', 'Cardiomyopathy in the puerperium', 'ICD10_2010'), +('O90.4', 'Postpartum acute renal failure', 'ICD10_2010'), +('O90.5', 'Postpartum thyroiditis', 'ICD10_2010'), +('O90.8', 'Other complications of the puerperium, not elsewhere classified', 'ICD10_2010'), +('O90.9', 'Complication of the puerperium, unspecified', 'ICD10_2010'), +('O91', 'Infections of breast associated with childbirth', 'ICD10_2010'), +('O91.0', 'Infection of nipple associated with childbirth', 'ICD10_2010'), +('O91.1', 'Abscess of breast associated with childbirth', 'ICD10_2010'), +('O91.2', 'Nonpurulent mastitis associated with childbirth', 'ICD10_2010'), +('O92', 'Other disorders of breast and lactation associated with childbirth', 'ICD10_2010'), +('O92.0', 'Retracted nipple associated with childbirth', 'ICD10_2010'), +('O92.1', 'Cracked nipple associated with childbirth', 'ICD10_2010'), +('O92.2', 'Other and unspecified disorders of breast associated with childbirth', 'ICD10_2010'), +('O92.3', 'Agalactia', 'ICD10_2010'), +('O92.4', 'Hypogalactia', 'ICD10_2010'), +('O92.5', 'Suppressed lactation', 'ICD10_2010'), +('O92.6', 'Galactorrhoea', 'ICD10_2010'), +('O92.7', 'Other and unspecified disorders of lactation', 'ICD10_2010'), +('O94', 'Sequelae of complication of pregnancy, childbirth and the puerperium', 'ICD10_2010'), +('O95', 'Obstetric death of unspecified cause', 'ICD10_2010'), +('O96', 'Death from any obstetric cause occuring more than 42 days but less than one year after delivery', 'ICD10_2010'), +('O96.0', 'Death from direct obstetric cause', 'ICD10_2010'), +('O96.1', 'Death from indirect obstetric cause', 'ICD10_2010'), +('O96.9', 'Death from unspecified obstetric cause', 'ICD10_2010'), +('O97', 'Death from sequelae of direct obstetric causes', 'ICD10_2010'), +('O97.0', 'Death from sequelae of direct obstetric cause', 'ICD10_2010'), +('O97.1', 'Death from sequelae of indirect obstetric cause', 'ICD10_2010'), +('O97.9', 'Death from sequelae of obstetric cause, unspecified', 'ICD10_2010'), +('O98', 'Maternal infectious and parasitic diseases classifiable elsewhere but complicating pregnancy, childbirth and the puerperium', 'ICD10_2010'), +('O98.0', 'Tuberculosis complicating pregnancy, childbirth and the puerperium', 'ICD10_2010'), +('O98.1', 'Syphilis complicating pregnancy, childbirth and the puerperium', 'ICD10_2010'), +('O98.2', 'Gonorrhoea complicating pregnancy, childbirth and the puerperium', 'ICD10_2010'), +('O98.3', 'Other infections predominantly sexual mode of transmission complicating pregnancy, childbirth and the puerperium', 'ICD10_2010'), +('O98.4', 'Viral hepatitis complicating pregnancy, childbirth and the puerperium', 'ICD10_2010'), +('O98.5', 'Other viral diseases complicating pregnancy, childbirth and the puerperium', 'ICD10_2010'), +('O98.6', 'Protozoal diseases complicating pregnancy, childbirth and the puerperium', 'ICD10_2010'), +('O98.7', 'Human immunodeficiency [HIV] disease complicating pregnancy, childbirth and the puerperium', 'ICD10_2010'), +('O98.8', 'Other maternal infectious parasitic diseases complicating pregnancy, childbirth and the puerperium', 'ICD10_2010'), +('O98.9', 'Unspecified maternal infectious parasitic disease complicating pregnancy, childbirth and the puerperium', 'ICD10_2010'), +('O99', 'Other maternal diseases classifiable elsewhere but complicating pregnancy, childbirth and the puerperium', 'ICD10_2010'), +('O99.0', 'Anaemia complicating pregnancy, childbirth and the puerperium', 'ICD10_2010'), +('O99.1', 'Other diseases of the blood and blood-forming organs and certain disorders involving the immune mechanism complicating pregnancy, childbirth and the p', 'ICD10_2010'), +('O99.2', 'Endocrine, nutritional metabolic diseases complicating pregnancy, childbirth and the puerperium', 'ICD10_2010'), +('O99.3', 'Mental disorders and diseases of the nervous system complicating pregnancy, childbirth and the puerperium', 'ICD10_2010'), +('O99.4', 'Diseases of the circulatory system complicating pregnancy, childbirth and the puerperium', 'ICD10_2010'), +('O99.5', 'Diseases of the respiratory system complicating pregnancy, childbirth and the puerperium', 'ICD10_2010'), +('O99.6', 'Diseases of the digestive system complicating pregnancy, childbirth and the puerperium', 'ICD10_2010'), +('O99.7', 'Diseases of the skin and subcutaneous tissue complicating pregnancy, childbirth and the puerperium', 'ICD10_2010'), +('O99.8', 'Other specified diseases and conditions complicating pregnancy, childbirth and the puerperium', 'ICD10_2010'), +('P00', 'Fetus and newborn affected by maternal conditions that may be unrelated to present pregnancy', 'ICD10_2010'), +('P00.0', 'Fetus and newborn afected by maternal hypertensive disord', 'ICD10_2010'), +('P00.1', 'Fet and newborn afected by mat renal and urinary tract dis', 'ICD10_2010'), +('P00.2', 'Fetus and newborn affected by mat infect and parasitic dis', 'ICD10_2010'), +('P00.3', 'Fetus and newborn affected oth mat circulatory and resp dis', 'ICD10_2010'), +('P00.4', 'Fetus and newborn affected by maternal nutritional disorders', 'ICD10_2010'), +('P00.5', 'Fetus and newborn affected by maternal injury', 'ICD10_2010'), +('P00.6', 'Fetus and newborn affected by surgical procedure on mother', 'ICD10_2010'), +('P00.7', 'Fetus and newborn affected other medic procs on mother nec', 'ICD10_2010'), +('P00.8', 'Fetus and newborn affected by other maternal conditions', 'ICD10_2010'), +('P00.9', 'Fetus and newborn affected by unspecified maternal condition', 'ICD10_2010'), +('P01', 'Fetus and newborn affected by maternal complications of pregnancy', 'ICD10_2010'), +('P01.0', 'Fetus and newborn affected by incompetent cervix', 'ICD10_2010'), +('P01.1', 'Fetus and newborn affected by premature rupture of membranes', 'ICD10_2010'), +('P01.2', 'Fetus and newborn affected by oligohydramnios', 'ICD10_2010'), +('P01.3', 'Fetus and newborn affected by polyhydramnios', 'ICD10_2010'), +('P01.4', 'Fetus and newborn affected by ectopic pregnancy', 'ICD10_2010'), +('P01.5', 'Fetus and newborn affected by multiple pregnancy', 'ICD10_2010'), +('P01.6', 'Fetus and newborn affected by maternal death', 'ICD10_2010'), +('P01.7', 'Fetus and newborn affected by malpresentation before labour', 'ICD10_2010'), +('P01.8', 'Fetus and newborn affected other maternal comps of preg', 'ICD10_2010'), +('P01.9', 'Fetus and newborn affect by maternal comp of preg unspec act', 'ICD10_2010'), +('P02', 'Fetus and newborn affected by complications of placenta, cord and membranes', 'ICD10_2010'), +('P02.0', 'Fetus and newborn affected by placenta praevia', 'ICD10_2010'), +('P02.1', 'Fetus and newborn affect oth forms placent sepn haemorrh', 'ICD10_2010'), +('P02.2', 'Fetus newborn affect other unsp morph funct abnorm placent', 'ICD10_2010'); +INSERT INTO `icd10` (`ID_ICD10`, `Diagnosa`, `Versi_ICD10`) VALUES +('P02.3', 'Fet and newborn affected by placental transfusion syndr', 'ICD10_2010'), +('P02.4', 'Fetus and newborn affected by prolapsed cord', 'ICD10_2010'), +('P02.5', 'Fetus and newborn affected other compression umb cord', 'ICD10_2010'), +('P02.6', 'Fetus and newborn affect oth unspec conds of umbilical cord', 'ICD10_2010'), +('P02.7', 'Fetus and newborn affected by chorioamnionitis', 'ICD10_2010'), +('P02.8', 'Fetus and newborn affect by oth abnormalities of membr', 'ICD10_2010'), +('P02.9', 'Fetus and newborn affected by abnorm of membranes unsp', 'ICD10_2010'), +('P03', 'Fetus and newborn affected by other complications of labour and delivery', 'ICD10_2010'), +('P03.0', 'Fetus and newborn affected by breech delivery and extraction', 'ICD10_2010'), +('P03.1', 'Fet newborn affect oth malpresent malpos disprop lab deliv', 'ICD10_2010'), +('P03.2', 'Fetus and newborn affected by forceps delivery', 'ICD10_2010'), +('P03.3', 'Fet and newborn affected deliv vacuum extractor ventouse', 'ICD10_2010'), +('P03.4', 'Fetus and newborn affected by caesarean delivery', 'ICD10_2010'), +('P03.5', 'Fetus and newborn affected by precipitate delivery', 'ICD10_2010'), +('P03.6', 'Fetus and newborn affected by abnormal uterine contractions', 'ICD10_2010'), +('P03.8', 'Fetus and newborn affected other spec comps of labour deliv', 'ICD10_2010'), +('P03.9', 'Fetus and newborn affected by comp of lab and deliv unsp', 'ICD10_2010'), +('P04', 'Fetus and newborn affected by noxious influences transmitted via placenta or breast milk', 'ICD10_2010'), +('P04.0', 'Fet newborn affect mat anaesth and analges preg lab del', 'ICD10_2010'), +('P04.1', 'Fetus and newborn affected by other maternal medication', 'ICD10_2010'), +('P04.2', 'Fetus and newborn affected by maternal use of tobacco', 'ICD10_2010'), +('P04.3', 'Fetus and newborn affected by maternal use of alcohol', 'ICD10_2010'), +('P04.4', 'Fetus and newborn affected by mat use of drugs of addiction', 'ICD10_2010'), +('P04.5', 'Fetus and newborn afect by mat use of nutritional chem subs', 'ICD10_2010'), +('P04.6', 'Fet newborn affect mat exposure to environml chem subs', 'ICD10_2010'), +('P04.8', 'Fetus and newborn affected by other mat noxious influences', 'ICD10_2010'), +('P04.9', 'Fetus and newborn affected by mat noxious influence unspec act', 'ICD10_2010'), +('P05', 'Slow fetal growth and fetal malnutrition', 'ICD10_2010'), +('P05.0', 'Light for gestational age', 'ICD10_2010'), +('P05.1', 'Small for gestational age', 'ICD10_2010'), +('P05.2', 'Fet malnutrit without mention light or small for gestat age', 'ICD10_2010'), +('P05.9', 'Slow fetal growth, unspecified', 'ICD10_2010'), +('P07', 'Disorders related to short gestation and low birth weight, not elsewhere classified', 'ICD10_2010'), +('P07.0', 'Extremely low birth weight', 'ICD10_2010'), +('P07.1', 'Other low birth weight', 'ICD10_2010'), +('P07.2', 'Extreme immaturity', 'ICD10_2010'), +('P07.3', 'Other preterm infants', 'ICD10_2010'), +('P08', 'Disorders related to long gestation and high birth weight', 'ICD10_2010'), +('P08.0', 'Exceptionally large baby', 'ICD10_2010'), +('P08.1', 'Other heavy for gestational age infants', 'ICD10_2010'), +('P08.2', 'Post-term infant, not heavy for gestational age', 'ICD10_2010'), +('P10', 'Intracranial laceration and haemorrhage due to birth injury', 'ICD10_2010'), +('P10.0', 'Subdural haemorrhage due to birth injury', 'ICD10_2010'), +('P10.1', 'Cerebral haemorrhage due to birth injury', 'ICD10_2010'), +('P10.2', 'Intraventricular haemorrhage due to birth injury', 'ICD10_2010'), +('P10.3', 'Subarachnoid haemorrhage due to birth injury', 'ICD10_2010'), +('P10.4', 'Tentorial tear due to birth injury', 'ICD10_2010'), +('P10.8', 'Oth intracranial lacerations and haemorrhages due birth inj', 'ICD10_2010'), +('P10.9', 'Unsp intracranial laceration and haemorrhage due birth inj', 'ICD10_2010'), +('P11', 'Other birth injuries to central nervous system', 'ICD10_2010'), +('P11.0', 'Cerebral oedema due to birth injury', 'ICD10_2010'), +('P11.1', 'Other specified brain damage due to birth injury', 'ICD10_2010'), +('P11.2', 'Unspecified brain damage due to birth injury', 'ICD10_2010'), +('P11.3', 'Birth injury to facial nerve', 'ICD10_2010'), +('P11.4', 'Birth injury to other cranial nerves', 'ICD10_2010'), +('P11.5', 'Birth injury to spine and spinal cord', 'ICD10_2010'), +('P11.9', 'Birth injury to central nervous system, unspecified', 'ICD10_2010'), +('P12', 'Birth injury to scalp', 'ICD10_2010'), +('P12.0', 'Cephalhaematoma due to birth injury', 'ICD10_2010'), +('P12.1', 'Chignon due to birth injury', 'ICD10_2010'), +('P12.2', 'Epicranial subaponeurotic haemorrhage due to birth injury', 'ICD10_2010'), +('P12.3', 'Bruising of scalp due to birth injury', 'ICD10_2010'), +('P12.4', 'Monitoring injury of scalp of newborn', 'ICD10_2010'), +('P12.8', 'Other birth injuries to scalp', 'ICD10_2010'), +('P12.9', 'Birth injury to scalp, unspecified', 'ICD10_2010'), +('P13', 'Birth injury to skeleton', 'ICD10_2010'), +('P13.0', 'Fracture of skull due to birth injury', 'ICD10_2010'), +('P13.1', 'Other birth injuries to skull', 'ICD10_2010'), +('P13.2', 'Birth injury to femur', 'ICD10_2010'), +('P13.3', 'Birth injury to other long bones', 'ICD10_2010'), +('P13.4', 'Fracture of clavicle due to birth injury', 'ICD10_2010'), +('P13.8', 'Birth injuries to other parts of skeleton', 'ICD10_2010'), +('P13.9', 'Birth injury to skeleton, unspecified', 'ICD10_2010'), +('P14', 'Birth injury to peripheral nervous system', 'ICD10_2010'), +('P14.0', 'Erb\'s paralysis due to birth injury', 'ICD10_2010'), +('P14.1', 'Klumpke\'s paralysis due to birth injury', 'ICD10_2010'), +('P14.2', 'Phrenic nerve paralysis due to birth injury', 'ICD10_2010'), +('P14.3', 'Other brachial plexus birth injuries', 'ICD10_2010'), +('P14.8', 'Birth injuries to other parts of peripheral nervous system', 'ICD10_2010'), +('P14.9', 'Birth injury to peripheral nervous system, unspecified', 'ICD10_2010'), +('P15', 'Other birth injuries', 'ICD10_2010'), +('P15.0', 'Birth injury to liver', 'ICD10_2010'), +('P15.1', 'Birth injury to spleen', 'ICD10_2010'), +('P15.2', 'Sternomastoid injury due to birth injury', 'ICD10_2010'), +('P15.3', 'Birth injury to eye', 'ICD10_2010'), +('P15.4', 'Birth injury to face', 'ICD10_2010'), +('P15.5', 'Birth injury to external genitalia', 'ICD10_2010'), +('P15.6', 'Subcutaneous fat necrosis due to birth injury', 'ICD10_2010'), +('P15.8', 'Other specified birth injuries', 'ICD10_2010'), +('P15.9', 'Birth injury, unspecified', 'ICD10_2010'), +('P20', 'Intrauterine hypoxia', 'ICD10_2010'), +('P20.0', 'Intrauterine hypoxia first noted before onset of labour', 'ICD10_2010'), +('P20.1', 'Intrauterine hypoxia first noted during labour and delivery', 'ICD10_2010'), +('P20.9', 'Intrauterine hypoxia, unspecified', 'ICD10_2010'), +('P21', 'Birth asphyxia', 'ICD10_2010'), +('P21.0', 'Severe birth asphyxia', 'ICD10_2010'), +('P21.1', 'Mild and moderate birth asphyxia', 'ICD10_2010'), +('P21.9', 'Birth asphyxia, unspecified', 'ICD10_2010'), +('P22', 'Respiratory distress of newborn', 'ICD10_2010'), +('P22.0', 'Respiratory distress syndrome of newborn', 'ICD10_2010'), +('P22.1', 'Transient tachypnoea of newborn', 'ICD10_2010'), +('P22.8', 'Other respiratory distress of newborn', 'ICD10_2010'), +('P22.9', 'Respiratory distress of newborn, unspecified', 'ICD10_2010'), +('P23', 'Congenital pneumonia', 'ICD10_2010'), +('P23.0', 'Congenital pneumonia due to viral agent', 'ICD10_2010'), +('P23.1', 'Congenital pneumonia due to chlamydia', 'ICD10_2010'), +('P23.2', 'Congenital pneumonia due to staphylococcus', 'ICD10_2010'), +('P23.3', 'Congenital pneumonia due to streptococcus, group b', 'ICD10_2010'), +('P23.4', 'Congenital pneumonia due to escherichia coli', 'ICD10_2010'), +('P23.5', 'Congenital pneumonia due to pseudomonas', 'ICD10_2010'), +('P23.6', 'Congenital pneumonia due to other bacterial agents', 'ICD10_2010'), +('P23.8', 'Congenital pneumonia due to other organisms', 'ICD10_2010'), +('P23.9', 'Congenital pneumonia, unspecified', 'ICD10_2010'), +('P24', 'Neonatal aspiration syndromes', 'ICD10_2010'), +('P24.0', 'Neonatal aspiration of meconium', 'ICD10_2010'), +('P24.1', 'Neonatal aspiration of amniotic fluid and mucus', 'ICD10_2010'), +('P24.2', 'Neonatal aspiration of blood', 'ICD10_2010'), +('P24.3', 'Neonatal aspiration of milk and regurgitated food', 'ICD10_2010'), +('P24.8', 'Other neonatal aspiration syndromes', 'ICD10_2010'), +('P24.9', 'Neonatal aspiration syndrome, unspecified', 'ICD10_2010'), +('P25', 'Interstitial emphysema and related conditions originating in the perinatal period', 'ICD10_2010'), +('P25.0', 'Interstitial emphysema originating in the perinatal period', 'ICD10_2010'), +('P25.1', 'Pneumothorax originating in the perinatal period', 'ICD10_2010'), +('P25.2', 'Pneumomediastinum originating in the perinatal period', 'ICD10_2010'), +('P25.3', 'Pneumopericardium originating in the perinatal period', 'ICD10_2010'), +('P25.8', 'Oth conds rel interstit emphysema orig in perinatal period', 'ICD10_2010'), +('P26', 'Pulmonary haemorrhage originating in the perinatal period', 'ICD10_2010'), +('P26.0', 'Tracheobronchial haemorrhage origin in the perinatal period', 'ICD10_2010'), +('P26.1', 'Massive pulmonary haemorrhage orig in the perinatal period', 'ICD10_2010'), +('P26.8', 'Oth pulmonary haemorrhages originating in perinatal period', 'ICD10_2010'), +('P26.9', 'Unspec pulmonary haemorrhage origin in the perinatal period', 'ICD10_2010'), +('P27', 'Chronic respiratory disease originating in the perinatal period', 'ICD10_2010'), +('P27.0', 'Wilson-mikity syndrome', 'ICD10_2010'), +('P27.1', 'Bronchopulmonary dysplasia origin in the perinatal period', 'ICD10_2010'), +('P27.8', 'Other chronic resp diseases origin in the perinatal period', 'ICD10_2010'), +('P27.9', 'Unspec chronic resp disease origin in the perinatal period', 'ICD10_2010'), +('P28', 'Other respiratory conditions originating in the perinatal period', 'ICD10_2010'), +('P28.0', 'Primary atelectasis of newborn', 'ICD10_2010'), +('P28.1', 'Other and unspecified atelectasis of newborn', 'ICD10_2010'), +('P28.2', 'Cyanotic attacks of newborn', 'ICD10_2010'), +('P28.3', 'Primary sleep apnoea of newborn', 'ICD10_2010'), +('P28.4', 'Other apnoea of newborn', 'ICD10_2010'), +('P28.5', 'Respiratory failure of newborn', 'ICD10_2010'), +('P28.8', 'Other specified respiratory conditions of newborn', 'ICD10_2010'), +('P28.9', 'Respiratory condition of newborn, unspecified', 'ICD10_2010'), +('P29', 'Cardiovascular disorders originating in the perinatal period', 'ICD10_2010'), +('P29.0', 'Neonatal cardiac failure', 'ICD10_2010'), +('P29.1', 'Neonatal cardiac dysrhythmia', 'ICD10_2010'), +('P29.2', 'Neonatal hypertension', 'ICD10_2010'), +('P29.3', 'Persistent fetal circulation', 'ICD10_2010'), +('P29.4', 'Transient myocardial ischaemia of newborn', 'ICD10_2010'), +('P29.8', 'Oth cardiovascular disorders origin in the perinatal period', 'ICD10_2010'), +('P29.9', 'Cardiovascular disorder origin in the perinatal period unsp', 'ICD10_2010'), +('P35', 'Congenital viral diseases', 'ICD10_2010'), +('P35.0', 'Congenital rubella syndrome', 'ICD10_2010'), +('P35.1', 'Congenital cytomegalovirus infection', 'ICD10_2010'), +('P35.2', 'Congenital herpesviral [herpes simplex] infection', 'ICD10_2010'), +('P35.3', 'Congenital viral hepatitis', 'ICD10_2010'), +('P35.8', 'Other congenital viral diseases', 'ICD10_2010'), +('P35.9', 'Congenital viral disease, unspecified', 'ICD10_2010'), +('P36', 'Bacterial sepsis of newborn', 'ICD10_2010'), +('P36.0', 'Sepsis of newborn due to streptococcus, group b', 'ICD10_2010'), +('P36.1', 'Sepsis of newborn due to other and unspecified streptococci', 'ICD10_2010'), +('P36.2', 'Sepsis of newborn due to staphylococcus aureus', 'ICD10_2010'), +('P36.3', 'Sepsis of newborn due to other and unspecified staphylococci', 'ICD10_2010'), +('P36.4', 'Sepsis of newborn due to escherichia coli', 'ICD10_2010'), +('P36.5', 'Sepsis of newborn due to anaerobes', 'ICD10_2010'), +('P36.8', 'Other bacterial sepsis of newborn', 'ICD10_2010'), +('P36.9', 'Bacterial sepsis of newborn, unspecified', 'ICD10_2010'), +('P37', 'Other congenital infectious and parasitic diseases', 'ICD10_2010'), +('P37.0', 'Congenital tuberculosis', 'ICD10_2010'), +('P37.1', 'Congenital toxoplasmosis', 'ICD10_2010'), +('P37.2', 'Neonatal (disseminated) listeriosis', 'ICD10_2010'), +('P37.3', 'Congenital falciparum malaria', 'ICD10_2010'), +('P37.4', 'Other congenital malaria', 'ICD10_2010'), +('P37.5', 'Neonatal candidiasis', 'ICD10_2010'), +('P37.8', 'Other specified congenital infectious and parasitic diseases', 'ICD10_2010'), +('P37.9', 'Congenital infectious and parasitic disease, unspecified', 'ICD10_2010'), +('P38', 'Omphalitis of newborn with or without mild haemorrhage', 'ICD10_2010'), +('P39', 'Other infections specific to the perinatal period', 'ICD10_2010'), +('P39.0', 'Neonatal infective mastitis', 'ICD10_2010'), +('P39.1', 'Neonatal conjunctivitis and dacryocystitis', 'ICD10_2010'), +('P39.2', 'Intra-amniotic infection of fetus, not elsewhere classified', 'ICD10_2010'), +('P39.3', 'Neonatal urinary tract infection', 'ICD10_2010'), +('P39.4', 'Neonatal skin infection', 'ICD10_2010'), +('P39.8', 'Other specified infections specific to the perinatal period', 'ICD10_2010'), +('P39.9', 'Infection specific to the perinatal period, unspecified', 'ICD10_2010'), +('P50', 'Fetal blood loss', 'ICD10_2010'), +('P50.0', 'Fetal blood loss from vasa praevia', 'ICD10_2010'), +('P50.1', 'Fetal blood loss from ruptured cord', 'ICD10_2010'), +('P50.2', 'Fetal blood loss from placenta', 'ICD10_2010'), +('P50.3', 'Haemorrhage into co-twin', 'ICD10_2010'), +('P50.4', 'Haemorrhage into maternal circulation', 'ICD10_2010'), +('P50.5', 'Fetal blood loss from cut end of co-twin\'s cord', 'ICD10_2010'), +('P50.8', 'Other fetal blood loss', 'ICD10_2010'), +('P50.9', 'Fetal blood loss, unspecified', 'ICD10_2010'), +('P51', 'Umbilical haemorrhage of newborn', 'ICD10_2010'), +('P51.0', 'Massive umbilical haemorrhage of newborn', 'ICD10_2010'), +('P51.8', 'Other umbilical haemorrhages of newborn', 'ICD10_2010'), +('P51.9', 'Umbilical haemorrhage of newborn, unspecified', 'ICD10_2010'), +('P52', 'Intracranial nontraumatic haemorrhage of fetus and newborn', 'ICD10_2010'), +('P52.0', 'Intraventric (nontraumatic) haemorhage grade 1 fet newborn', 'ICD10_2010'), +('P52.1', 'Intraventric (nontraumatic) haemorhage grade 2 fet newborn', 'ICD10_2010'), +('P52.2', 'Intraventric (nontraumatic) haemorhage grade 3 fet newborn', 'ICD10_2010'), +('P52.3', 'Unspec intraventric (nontraumatic) haemorh fetus newborn', 'ICD10_2010'), +('P52.4', 'Intracerebral (nontraumatic) haemorrhage of fet and newborn', 'ICD10_2010'), +('P52.5', 'Subarachnoid (nontraumatic) haemorrhage of fetus and newborn', 'ICD10_2010'), +('P52.6', 'Cerebelar (nontraum) an post fossa haemorhage fet newborn', 'ICD10_2010'), +('P52.8', 'Oth intracranial (nontraumatic) haemorrhages fetus newborn', 'ICD10_2010'), +('P52.9', 'Intracranial (nontraumatic) haemorrhage fetus newborn unsp', 'ICD10_2010'), +('P53', 'Haemorrhagic disease of fetus and newborn', 'ICD10_2010'), +('P54', 'Other neonatal haemorrhages', 'ICD10_2010'), +('P54.0', 'Neonatal haematemesis', 'ICD10_2010'), +('P54.1', 'Neonatal melaena', 'ICD10_2010'), +('P54.2', 'Neonatal rectal haemorrhage', 'ICD10_2010'), +('P54.3', 'Other neonatal gastrointestinal haemorrhage', 'ICD10_2010'), +('P54.4', 'Neonatal adrenal haemorrhage', 'ICD10_2010'), +('P54.5', 'Neonatal cutaneous haemorrhage', 'ICD10_2010'), +('P54.6', 'Neonatal vaginal haemorrhage', 'ICD10_2010'), +('P54.8', 'Other specified neonatal haemorrhages', 'ICD10_2010'), +('P54.9', 'Neonatal haemorrhage, unspecified', 'ICD10_2010'), +('P55', 'Haemolytic disease of fetus and newborn', 'ICD10_2010'), +('P55.0', 'Rh isoimmunization of fetus and newborn', 'ICD10_2010'), +('P55.1', 'Abo isoimmunization of fetus and newborn', 'ICD10_2010'), +('P55.8', 'Other haemolytic diseases of fetus and newborn', 'ICD10_2010'), +('P55.9', 'Haemolytic disease of fetus and newborn, unspecified', 'ICD10_2010'), +('P56', 'Hydrops fetalis due to haemolytic disease', 'ICD10_2010'), +('P56.0', 'Hydrops fetalis due to isoimmunization', 'ICD10_2010'), +('P56.9', 'Hydrops fetalis due to other and unspec haemolytic disease', 'ICD10_2010'), +('P57', 'Kernicterus', 'ICD10_2010'), +('P57.0', 'Kernicterus due to isoimmunization', 'ICD10_2010'), +('P57.8', 'Other specified kernicterus', 'ICD10_2010'), +('P57.9', 'Kernicterus, unspecified', 'ICD10_2010'), +('P58', 'Neonatal jaundice due to other excessive haemolysis', 'ICD10_2010'), +('P58.0', 'Neonatal jaundice due to bruising', 'ICD10_2010'), +('P58.1', 'Neonatal jaundice due to bleeding', 'ICD10_2010'), +('P58.2', 'Neonatal jaundice due to infection', 'ICD10_2010'), +('P58.3', 'Neonatal jaundice due to polycythaemia', 'ICD10_2010'), +('P58.4', 'Neon jaund due drug tox transmit from mother or given nwbrn', 'ICD10_2010'), +('P58.5', 'Neonatal jaundice due to swallowed maternal blood', 'ICD10_2010'), +('P58.8', 'Neonatal jaundice due to oth specif excessive haemolysis', 'ICD10_2010'), +('P58.9', 'Neonatal jaundice due to excessive haemolysis, unspecified', 'ICD10_2010'), +('P59', 'Neonatal jaundice from other and unspecified causes', 'ICD10_2010'), +('P59.0', 'Neonatal jaundice associated with preterm delivery', 'ICD10_2010'), +('P59.1', 'Inspissated bile syndrome', 'ICD10_2010'), +('P59.2', 'Neonat jaundice from oth and unspec hepatocellul damage', 'ICD10_2010'), +('P59.3', 'Neonatal jaundice from breast milk inhibitor', 'ICD10_2010'), +('P59.8', 'Neonatal jaundice from other specified causes', 'ICD10_2010'), +('P59.9', 'Neonatal jaundice, unspecified', 'ICD10_2010'), +('P60', 'Disseminated intravascular coagulation of fetus and newborn', 'ICD10_2010'), +('P61', 'Other perinatal haematological disorders', 'ICD10_2010'), +('P61.0', 'Transient neonatal thrombocytopenia', 'ICD10_2010'), +('P61.1', 'Polycythaemia neonatorum', 'ICD10_2010'), +('P61.2', 'Anaemia of prematurity', 'ICD10_2010'), +('P61.3', 'Congenital anaemia from fetal blood loss', 'ICD10_2010'), +('P61.4', 'Other congenital anaemias, not elsewhere classified', 'ICD10_2010'), +('P61.5', 'Transient neonatal neutropenia', 'ICD10_2010'), +('P61.6', 'Other transient neonatal disorders of coagulation', 'ICD10_2010'), +('P61.8', 'Other specified perinatal haematological disorders', 'ICD10_2010'), +('P61.9', 'Perinatal haematological disorder, unspecified', 'ICD10_2010'), +('P70', 'Transitory disorders of carbohydrate metabolism specific to fetus and newborn', 'ICD10_2010'), +('P70.0', 'Syndrome of infant of mother with gestational diabetes', 'ICD10_2010'), +('P70.1', 'Syndrome of infant of a diabetic mother', 'ICD10_2010'), +('P70.2', 'Neonatal diabetes mellitus', 'ICD10_2010'), +('P70.3', 'Iatrogenic neonatal hypoglycaemia', 'ICD10_2010'), +('P70.4', 'Other neonatal hypoglycaemia', 'ICD10_2010'), +('P70.8', 'Oth transitory disorder carbohydrate metab fet and newborn', 'ICD10_2010'), +('P70.9', 'Trans disorder carbohydrate metab of fet and newborn unspec act', 'ICD10_2010'), +('P71', 'Transitory neonatal disorders of calcium and magnesium metabolism', 'ICD10_2010'), +('P71.0', 'Cow\'s milk hypocalcaemia in newborn', 'ICD10_2010'), +('P71.1', 'Other neonatal hypocalcaemia', 'ICD10_2010'), +('P71.2', 'Neonatal hypomagnesaemia', 'ICD10_2010'), +('P71.3', 'Neonatal tetany without calcium or magnesium deficiency', 'ICD10_2010'), +('P71.4', 'Transitory neonatal hypoparathyroidism', 'ICD10_2010'), +('P71.8', 'Oth transitory neonatl disord calcium and magnesium metab', 'ICD10_2010'), +('P71.9', 'Transitory neonatl disord calcium and magnes metab uns', 'ICD10_2010'), +('P72', 'Other transitory neonatal endocrine disorders', 'ICD10_2010'), +('P72.0', 'Neonatal goitre, not elsewhere classified', 'ICD10_2010'), +('P72.1', 'Transitory neonatal hyperthyroidism', 'ICD10_2010'), +('P72.2', 'Other transitory neonatal disorders of thyroid function nec', 'ICD10_2010'), +('P72.8', 'Other specified transitory neonatal endocrine disorders', 'ICD10_2010'), +('P72.9', 'Transitory neonatal endocrine disorder, unspecified', 'ICD10_2010'), +('P74', 'Other transitory neonatal electrolyte and metabolic disturbances', 'ICD10_2010'), +('P74.0', 'Late metabolic acidosis of newborn', 'ICD10_2010'), +('P74.1', 'Dehydration of newborn', 'ICD10_2010'), +('P74.2', 'Disturbances of sodium balance of newborn', 'ICD10_2010'), +('P74.3', 'Disturbances of potassium balance of newborn', 'ICD10_2010'), +('P74.4', 'Other transitory electrolyte disturbances of newborn', 'ICD10_2010'), +('P74.5', 'Transitory tyrosinaemia of newborn', 'ICD10_2010'), +('P74.8', 'Other transitory metabolic disturbances of newborn', 'ICD10_2010'), +('P74.9', 'Transitory metabolic disturbance of newborn, unspecified', 'ICD10_2010'), +('P75', 'Meconium ileus', 'ICD10_2010'), +('P76', 'Other intestinal obstruction of newborn', 'ICD10_2010'), +('P76.0', 'Meconium plug syndrome', 'ICD10_2010'), +('P76.1', 'Transitory ileus of newborn', 'ICD10_2010'), +('P76.2', 'Intestinal obstruction due to inspissated milk', 'ICD10_2010'), +('P76.8', 'Other specified intestinal obstruction of newborn', 'ICD10_2010'), +('P76.9', 'Intestinal obstruction of newborn, unspecified', 'ICD10_2010'), +('P77', 'Necrotizing enterocolitis of fetus and newborn', 'ICD10_2010'), +('P78', 'Other perinatal digestive system disorders', 'ICD10_2010'), +('P78.0', 'Perinatal intestinal perforation', 'ICD10_2010'), +('P78.1', 'Other neonatal peritonitis', 'ICD10_2010'), +('P78.2', 'Neonat haematemesis and melaena due swallow mat blood', 'ICD10_2010'), +('P78.3', 'Noninfective neonatal diarrhoea', 'ICD10_2010'), +('P78.8', 'Other specified perinatal digestive system disorders', 'ICD10_2010'), +('P78.9', 'Perinatal digestive system disorder, unspecified', 'ICD10_2010'), +('P80', 'Hypothermia of newborn', 'ICD10_2010'), +('P80.0', 'Cold injury syndrome', 'ICD10_2010'), +('P80.8', 'Other hypothermia of newborn', 'ICD10_2010'), +('P80.9', 'Hypothermia of newborn, unspecified', 'ICD10_2010'), +('P81', 'Other disturbances of temperature regulation of newborn', 'ICD10_2010'), +('P81.0', 'Environmental hyperthermia of newborn', 'ICD10_2010'), +('P81.8', 'Oth spec disturbances of temperature regulation of newborn', 'ICD10_2010'), +('P81.9', 'Disturbance of temperature regulation of newborn', 'ICD10_2010'), +('P83', 'Other conditions of integument specific to fetus and newborn', 'ICD10_2010'), +('P83.0', 'Sclerema neonatorum', 'ICD10_2010'), +('P83.1', 'Neonatal erythema toxicum', 'ICD10_2010'), +('P83.2', 'Hydrops fetalis not due to haemolytic disease', 'ICD10_2010'), +('P83.3', 'Other and unspecified oedema specific to fetus and newborn', 'ICD10_2010'), +('P83.4', 'Breast engorgement of newborn', 'ICD10_2010'), +('P83.5', 'Congenital hydrocele', 'ICD10_2010'), +('P83.6', 'Umbilical polyp of newborn', 'ICD10_2010'), +('P83.8', 'Other spec cond of integument specific to fetus and newborn', 'ICD10_2010'), +('P83.9', 'Condition of integument specific to fetus and newborn uns', 'ICD10_2010'), +('P90', 'Convulsions of newborn', 'ICD10_2010'), +('P91', 'Other disturbances of cerebral status of newborn', 'ICD10_2010'), +('P91.0', 'Neonatal cerebral ischaemia', 'ICD10_2010'), +('P91.1', 'Acquired periventricular cysts of newborn', 'ICD10_2010'), +('P91.2', 'Neonatal cerebral leukomalacia', 'ICD10_2010'), +('P91.3', 'Neonatal cerebral irritability', 'ICD10_2010'), +('P91.4', 'Neonatal cerebral depression', 'ICD10_2010'), +('P91.5', 'Neonatal coma', 'ICD10_2010'), +('P91.6', 'Hypoxic ischaemic encephalopathy of newborn', 'ICD10_2010'), +('P91.8', 'Other specified disturbances of cerebral status of newborn', 'ICD10_2010'), +('P91.9', 'Disturbance of cerebral status of newborn, unspecified', 'ICD10_2010'), +('P92', 'Feeding problems of newborn', 'ICD10_2010'), +('P92.0', 'Vomiting in newborn', 'ICD10_2010'), +('P92.1', 'Regurgitation and rumination in newborn', 'ICD10_2010'), +('P92.2', 'Slow feeding of newborn', 'ICD10_2010'), +('P92.3', 'Underfeeding of newborn', 'ICD10_2010'), +('P92.4', 'Overfeeding of newborn', 'ICD10_2010'), +('P92.5', 'Neonatal difficulty in feeding at breast', 'ICD10_2010'), +('P92.8', 'Other feeding problems of newborn', 'ICD10_2010'), +('P92.9', 'Feeding problem of newborn, unspecified', 'ICD10_2010'), +('P93', 'Reactions and intoxications due drug admin fet and newborn', 'ICD10_2010'), +('P94', 'Disorders of muscle tone of newborn', 'ICD10_2010'), +('P94.0', 'Transient neonatal myasthenia gravis', 'ICD10_2010'), +('P94.1', 'Congenital hypertonia', 'ICD10_2010'), +('P94.2', 'Congenital hypotonia', 'ICD10_2010'), +('P94.8', 'Other disorders of muscle tone of newborn', 'ICD10_2010'), +('P94.9', 'Disorder of muscle tone of newborn, unspecified', 'ICD10_2010'), +('P95', 'Fetal death of unspecified cause', 'ICD10_2010'), +('P96', 'Other conditions originating in the perinatal period', 'ICD10_2010'), +('P96.0', 'Congenital renal failure', 'ICD10_2010'), +('P96.1', 'Neonat withdrawal symptom from mat use of drug of addiction', 'ICD10_2010'), +('P96.2', 'Withdrawal symptoms from therapeutic use of drugs in newborn', 'ICD10_2010'), +('P96.3', 'Wide cranial sutures of newborn', 'ICD10_2010'), +('P96.4', 'Termination of pregnancy, fetus and newborn', 'ICD10_2010'), +('P96.5', 'Complicationss of intrauterine procedures nec', 'ICD10_2010'), +('P96.8', 'Other spec conditions originating in the perinatal period', 'ICD10_2010'), +('P96.9', 'Condition originating in the perinatal period, unspecified', 'ICD10_2010'), +('Q00', 'Anencephaly and similar malformations', 'ICD10_2010'), +('Q00.0', 'Anencephaly', 'ICD10_2010'), +('Q00.1', 'Craniorachischisis', 'ICD10_2010'), +('Q00.2', 'Iniencephaly', 'ICD10_2010'), +('Q01', 'Encephalocele', 'ICD10_2010'), +('Q01.0', 'Frontal encephalocele', 'ICD10_2010'), +('Q01.1', 'Nasofrontal encephalocele', 'ICD10_2010'), +('Q01.2', 'Occipital encephalocele', 'ICD10_2010'), +('Q01.8', 'Encephalocele of other sites', 'ICD10_2010'), +('Q01.9', 'Encephalocele, unspecified', 'ICD10_2010'), +('Q02', 'Microcephaly', 'ICD10_2010'), +('Q03', 'Congenital hydrocephalus', 'ICD10_2010'), +('Q03.0', 'Malformations of aqueduct of sylvius', 'ICD10_2010'), +('Q03.1', 'Atresia of foramina of magendie and luschka', 'ICD10_2010'), +('Q03.8', 'Other congenital hydrocephalus', 'ICD10_2010'), +('Q03.9', 'Congenital hydrocephalus, unspecified', 'ICD10_2010'), +('Q04', 'Other congenital malformations of brain', 'ICD10_2010'), +('Q04.0', 'Congenital malformations of corpus callosum', 'ICD10_2010'), +('Q04.1', 'Arhinencephaly', 'ICD10_2010'), +('Q04.2', 'Holoprosencephaly', 'ICD10_2010'), +('Q04.3', 'Other reduction deformities of brain', 'ICD10_2010'), +('Q04.4', 'Septo-optic dysplasia', 'ICD10_2010'), +('Q04.5', 'Megalencephaly', 'ICD10_2010'), +('Q04.6', 'Congenital cerebral cysts', 'ICD10_2010'), +('Q04.8', 'Other specified congenital malformations of brain', 'ICD10_2010'), +('Q04.9', 'Congenital malformation of brain, unspecified', 'ICD10_2010'), +('Q05', 'Spina bifida', 'ICD10_2010'), +('Q05.0', 'Cervical spina bifida with hydrocephalus', 'ICD10_2010'), +('Q05.1', 'Thoracic spina bifida with hydrocephalus', 'ICD10_2010'), +('Q05.2', 'Lumbar spina bifida with hydrocephalus', 'ICD10_2010'), +('Q05.3', 'Sacral spina bifida with hydrocephalus', 'ICD10_2010'), +('Q05.4', 'Unspecified spina bifida with hydrocephalus', 'ICD10_2010'), +('Q05.5', 'Cervical spina bifida without hydrocephalus', 'ICD10_2010'), +('Q05.6', 'Thoracic spina bifida without hydrocephalus', 'ICD10_2010'), +('Q05.7', 'Lumbar spina bifida without hydrocephalus', 'ICD10_2010'), +('Q05.8', 'Sacral spina bifida without hydrocephalus', 'ICD10_2010'), +('Q05.9', 'Spina bifida, unspecified', 'ICD10_2010'), +('Q06', 'Other congenital malformations of spinal cord', 'ICD10_2010'), +('Q06.0', 'Amyelia', 'ICD10_2010'), +('Q06.1', 'Hypoplasia and dysplasia of spinal cord', 'ICD10_2010'), +('Q06.2', 'Diastematomyelia', 'ICD10_2010'), +('Q06.3', 'Other congenital cauda equina malformations', 'ICD10_2010'), +('Q06.4', 'Hydromyelia', 'ICD10_2010'), +('Q06.8', 'Other specified congenital malformations of spinal cord', 'ICD10_2010'), +('Q06.9', 'Congenital malformation of spinal cord, unspecified', 'ICD10_2010'), +('Q07', 'Other congenital malformations of nervous system', 'ICD10_2010'), +('Q07.0', 'Arnold-chiari syndrome', 'ICD10_2010'), +('Q07.8', 'Other specified congenital malformations of nervous system', 'ICD10_2010'), +('Q07.9', 'Congenital malformation of nervous system, unspecified', 'ICD10_2010'), +('Q10', 'Congenital malformations of eyelid, lacrimal apparatus and orbit', 'ICD10_2010'), +('Q10.0', 'Congenital ptosis', 'ICD10_2010'), +('Q10.1', 'Congenital ectropion', 'ICD10_2010'), +('Q10.2', 'Congenital entropion', 'ICD10_2010'), +('Q10.3', 'Other congenital malformations of eyelid', 'ICD10_2010'), +('Q10.4', 'Absence and agenesis of lacrimal apparatus', 'ICD10_2010'), +('Q10.5', 'Congenital stenosis and stricture of lacrimal duct', 'ICD10_2010'), +('Q10.6', 'Other congenital malformations of lacrimal apparatus', 'ICD10_2010'), +('Q10.7', 'Congenital malformation of orbit', 'ICD10_2010'), +('Q11', 'Anophthalmos, microphthalmos and macrophthalmos', 'ICD10_2010'), +('Q11.0', 'Cystic eyeball', 'ICD10_2010'), +('Q11.1', 'Other anophthalmos', 'ICD10_2010'), +('Q11.2', 'Microphthalmos', 'ICD10_2010'), +('Q11.3', 'Macrophthalmos', 'ICD10_2010'), +('Q12', 'Congenital lens malformations', 'ICD10_2010'), +('Q12.0', 'Congenital cataract', 'ICD10_2010'), +('Q12.1', 'Congenital displaced lens', 'ICD10_2010'), +('Q12.2', 'Coloboma of lens', 'ICD10_2010'), +('Q12.3', 'Congenital aphakia', 'ICD10_2010'), +('Q12.4', 'Spherophakia', 'ICD10_2010'), +('Q12.8', 'Other congenital lens malformations', 'ICD10_2010'), +('Q12.9', 'Congenital lens malformation, unspecified', 'ICD10_2010'), +('Q13', 'Congenital malformations of anterior segment of eye', 'ICD10_2010'), +('Q13.0', 'Coloboma of iris', 'ICD10_2010'), +('Q13.1', 'Absence of iris', 'ICD10_2010'), +('Q13.2', 'Other congenital malformations of iris', 'ICD10_2010'), +('Q13.3', 'Congenital corneal opacity', 'ICD10_2010'), +('Q13.4', 'Other congenital corneal malformations', 'ICD10_2010'), +('Q13.5', 'Blue sclera', 'ICD10_2010'), +('Q13.8', 'Other congenital malformations of anterior segment of eye', 'ICD10_2010'), +('Q13.9', 'Congenital malformation of anterior segment of eye unspecified', 'ICD10_2010'), +('Q14', 'Congenital malformations of posterior segment of eye', 'ICD10_2010'), +('Q14.0', 'Congenital malformation of vitreous humour', 'ICD10_2010'), +('Q14.1', 'Congenital malformation of retina', 'ICD10_2010'), +('Q14.2', 'Congenital malformation of optic disc', 'ICD10_2010'), +('Q14.3', 'Congenital malformation of choroid', 'ICD10_2010'), +('Q14.8', 'Other congenital malformations of posterior segment of eye', 'ICD10_2010'), +('Q14.9', 'Congenital malformation of posterior segment of eye unspecified', 'ICD10_2010'), +('Q15', 'Other congenital malformations of eye', 'ICD10_2010'), +('Q15.0', 'Congenital glaucoma', 'ICD10_2010'), +('Q15.8', 'Other specified congenital malformations of eye', 'ICD10_2010'), +('Q15.9', 'Congenital malformation of eye, unspecified', 'ICD10_2010'), +('Q16', 'Congenital malformations of ear causing impairment of hearing', 'ICD10_2010'), +('Q16.0', 'Congenital absence of (ear) auricle', 'ICD10_2010'), +('Q16.1', 'Congenital absence atresia & stricture auditory canal (external)', 'ICD10_2010'), +('Q16.2', 'Absence of eustachian tube', 'ICD10_2010'), +('Q16.3', 'Congenital malformation of ear ossicles', 'ICD10_2010'), +('Q16.4', 'Other congenital malformations of middle ear', 'ICD10_2010'), +('Q16.5', 'Congenital malformation of inner ear', 'ICD10_2010'), +('Q16.9', 'Congenital malform of ear causing impairment of hearing unspecified', 'ICD10_2010'), +('Q17', 'Other congenital malformations of ear', 'ICD10_2010'), +('Q17.0', 'Accessory auricle', 'ICD10_2010'), +('Q17.1', 'Macrotia', 'ICD10_2010'), +('Q17.2', 'Microtia', 'ICD10_2010'), +('Q17.3', 'Other misshapen ear', 'ICD10_2010'), +('Q17.4', 'Misplaced ear', 'ICD10_2010'), +('Q17.5', 'Prominent ear', 'ICD10_2010'), +('Q17.8', 'Other specified congenital malformations of ear', 'ICD10_2010'), +('Q17.9', 'Congenital malformation of ear, unspecified', 'ICD10_2010'), +('Q18', 'Other congenital malformations of face and neck', 'ICD10_2010'), +('Q18.0', 'Sinus, fistula and cyst of branchial cleft', 'ICD10_2010'), +('Q18.1', 'Preauricular sinus and cyst', 'ICD10_2010'), +('Q18.2', 'Other branchial cleft malformations', 'ICD10_2010'), +('Q18.3', 'Webbing of neck', 'ICD10_2010'), +('Q18.4', 'Macrostomia', 'ICD10_2010'), +('Q18.5', 'Microstomia', 'ICD10_2010'), +('Q18.6', 'Macrocheilia', 'ICD10_2010'), +('Q18.7', 'Microcheilia', 'ICD10_2010'), +('Q18.8', 'Other specified congenital malformations of face and neck', 'ICD10_2010'), +('Q18.9', 'Congenital malformation of face and neck, unspecified', 'ICD10_2010'), +('Q20', 'Congenital malformations of cardiac chambers and connections', 'ICD10_2010'), +('Q20.0', 'Common arterial trunk', 'ICD10_2010'), +('Q20.1', 'Double outlet right ventricle', 'ICD10_2010'), +('Q20.2', 'Double outlet left ventricle', 'ICD10_2010'), +('Q20.3', 'Discordant ventriculoarterial connection', 'ICD10_2010'), +('Q20.4', 'Double inlet ventricle', 'ICD10_2010'), +('Q20.5', 'Discordant atrioventricular connection', 'ICD10_2010'), +('Q20.6', 'Isomerism of atrial appendages', 'ICD10_2010'), +('Q20.8', 'Other congenital malformations of cardiac chambers and connections', 'ICD10_2010'), +('Q20.9', 'Congenital malformation of cardiac chambers and connections unspecified', 'ICD10_2010'), +('Q21', 'Congenital malformations of cardiac septa', 'ICD10_2010'), +('Q21.0', 'Ventricular septal defect', 'ICD10_2010'), +('Q21.1', 'Atrial septal defect', 'ICD10_2010'), +('Q21.2', 'Atrioventricular septal defect', 'ICD10_2010'), +('Q21.3', 'Tetralogy of fallot', 'ICD10_2010'), +('Q21.4', 'Aortopulmonary septal defect', 'ICD10_2010'), +('Q21.8', 'Other congenital malformations of cardiac septa', 'ICD10_2010'), +('Q21.9', 'Congenital malformation of cardiac septum, unspecified', 'ICD10_2010'), +('Q22', 'Congenital malformations of pulmonary and tricuspid valves', 'ICD10_2010'), +('Q22.0', 'Pulmonary valve atresia', 'ICD10_2010'), +('Q22.1', 'Congenital pulmonary valve stenosis', 'ICD10_2010'), +('Q22.2', 'Congenital pulmonary valve insufficiency', 'ICD10_2010'), +('Q22.3', 'Other congenital malformations of pulmonary valve', 'ICD10_2010'), +('Q22.4', 'Congenital tricuspid stenosis', 'ICD10_2010'), +('Q22.5', 'Ebstein\'s anomaly', 'ICD10_2010'), +('Q22.6', 'Hypoplastic right heart syndrome', 'ICD10_2010'), +('Q22.8', 'Other congenital malformations of tricuspid valve', 'ICD10_2010'), +('Q22.9', 'Congenital malformation of tricuspid valve, unspecified', 'ICD10_2010'), +('Q23', 'Congenital malformations of aortic and mitral valves', 'ICD10_2010'), +('Q23.0', 'Congenital stenosis of aortic valve', 'ICD10_2010'), +('Q23.1', 'Congenital insufficiency of aortic valve', 'ICD10_2010'), +('Q23.2', 'Congenital mitral stenosis', 'ICD10_2010'), +('Q23.3', 'Congenital mitral insufficiency', 'ICD10_2010'), +('Q23.4', 'Hypoplastic left heart syndrome', 'ICD10_2010'), +('Q23.8', 'Other congenital malformations of aortic and mitral valves', 'ICD10_2010'), +('Q23.9', 'Congenital malformation of aortic and mitral valves unspecified', 'ICD10_2010'), +('Q24', 'Other congenital malformations of heart', 'ICD10_2010'), +('Q24.0', 'Dextrocardia', 'ICD10_2010'), +('Q24.1', 'Laevocardia', 'ICD10_2010'), +('Q24.2', 'Cor triatriatum', 'ICD10_2010'), +('Q24.3', 'Pulmonary infundibular stenosis', 'ICD10_2010'), +('Q24.4', 'Congenital subaortic stenosis', 'ICD10_2010'), +('Q24.5', 'Malformation of coronary vessels', 'ICD10_2010'), +('Q24.6', 'Congenital heart block', 'ICD10_2010'), +('Q24.8', 'Other specified congenital malformations of heart', 'ICD10_2010'), +('Q24.9', 'Congenital malformation of heart, unspecified', 'ICD10_2010'), +('Q25', 'Congenital malformations of great arteries', 'ICD10_2010'), +('Q25.0', 'Patent ductus arteriosus', 'ICD10_2010'), +('Q25.1', 'Coarctation of aorta', 'ICD10_2010'), +('Q25.2', 'Atresia of aorta', 'ICD10_2010'), +('Q25.3', 'Stenosis of aorta', 'ICD10_2010'), +('Q25.4', 'Other congenital malformations of aorta', 'ICD10_2010'), +('Q25.5', 'Atresia of pulmonary artery', 'ICD10_2010'), +('Q25.6', 'Stenosis of pulmonary artery', 'ICD10_2010'), +('Q25.7', 'Other congenital malformations of pulmonary artery', 'ICD10_2010'), +('Q25.8', 'Other congenital malformations of great arteries', 'ICD10_2010'), +('Q25.9', 'Congenital malformation of great arteries, unspecified', 'ICD10_2010'), +('Q26', 'Congenital malformations of great veins', 'ICD10_2010'), +('Q26.0', 'Congenital stenosis of vena cava', 'ICD10_2010'), +('Q26.1', 'Persistent left superior vena cava', 'ICD10_2010'), +('Q26.2', 'Total anomalous pulmonary venous connection', 'ICD10_2010'), +('Q26.3', 'Partial anomalous pulmonary venous connection', 'ICD10_2010'), +('Q26.4', 'Anomalous pulmonary venous connection, unspecified', 'ICD10_2010'), +('Q26.5', 'Anomalous portal venous connection', 'ICD10_2010'), +('Q26.6', 'Portal vein-hepatic artery fistula', 'ICD10_2010'), +('Q26.8', 'Other congenital malformations of great veins', 'ICD10_2010'), +('Q26.9', 'Congenital malformation of great vein, unspecified', 'ICD10_2010'), +('Q27', 'Other congenital malformations of peripheral vascular system', 'ICD10_2010'), +('Q27.0', 'Congenital absence and hypoplasia of umbilical artery', 'ICD10_2010'), +('Q27.1', 'Congenital renal artery stenosis', 'ICD10_2010'), +('Q27.2', 'Other congenital malformations of renal artery', 'ICD10_2010'), +('Q27.3', 'Peripheral arteriovenous malformation', 'ICD10_2010'), +('Q27.4', 'Congenital phlebectasia', 'ICD10_2010'), +('Q27.8', 'Other specified congenitalo malformations of peripheral vascular system', 'ICD10_2010'), +('Q27.9', 'Congenital malformation of peripheral vascular system unspecified', 'ICD10_2010'), +('Q28', 'Other congenital malformations of circulatory system', 'ICD10_2010'), +('Q28.0', 'Arteriovenous malformation of precerebral vessels', 'ICD10_2010'), +('Q28.1', 'Other malformations of precerebral vessels', 'ICD10_2010'), +('Q28.2', 'Arteriovenous malformation of cerebral vessels', 'ICD10_2010'), +('Q28.3', 'Other malformations of cerebral vessels', 'ICD10_2010'), +('Q28.8', 'Other specified congenital malformations of circulatory system', 'ICD10_2010'), +('Q28.9', 'Congenital malformation of circulatory system, unspecified', 'ICD10_2010'), +('Q30', 'Congenital malformations of nose', 'ICD10_2010'), +('Q30.0', 'Choanal atresia', 'ICD10_2010'), +('Q30.1', 'Agenesis and underdevelopment of nose', 'ICD10_2010'), +('Q30.2', 'Fissured, notched and cleft nose', 'ICD10_2010'), +('Q30.3', 'Congenital perforated nasal septum', 'ICD10_2010'), +('Q30.8', 'Other congenital malformations of nose', 'ICD10_2010'), +('Q30.9', 'Congenital malformation of nose, unspecified', 'ICD10_2010'), +('Q31', 'Congenital malformations of larynx', 'ICD10_2010'), +('Q31.0', 'Web of larynx', 'ICD10_2010'), +('Q31.1', 'Congenital subglottic stenosis', 'ICD10_2010'), +('Q31.2', 'Laryngeal hypoplasia', 'ICD10_2010'), +('Q31.3', 'Laryngocele', 'ICD10_2010'), +('Q31.4', 'Congenital laryngeal stridor', 'ICD10_2010'), +('Q31.5', 'Congenital laryngomalacia', 'ICD10_2010'), +('Q31.8', 'Other congenital malformations of larynx', 'ICD10_2010'), +('Q31.9', 'Congenital malformation of larynx, unspecified', 'ICD10_2010'), +('Q32', 'Congenital malformations of trachea and bronchus', 'ICD10_2010'), +('Q32.0', 'Congenital tracheomalacia', 'ICD10_2010'), +('Q32.1', 'Other congenital malformations of trachea', 'ICD10_2010'), +('Q32.2', 'Congenital bronchomalacia', 'ICD10_2010'), +('Q32.3', 'Congenital stenosis of bronchus', 'ICD10_2010'), +('Q32.4', 'Other congenital malformations of bronchus', 'ICD10_2010'), +('Q33', 'Congenital malformations of lung', 'ICD10_2010'), +('Q33.0', 'Congenital cystic lung', 'ICD10_2010'), +('Q33.1', 'Accessory lobe of lung', 'ICD10_2010'), +('Q33.2', 'Sequestration of lung', 'ICD10_2010'), +('Q33.3', 'Agenesis of lung', 'ICD10_2010'), +('Q33.4', 'Congenital bronchiectasis', 'ICD10_2010'), +('Q33.5', 'Ectopic tissue in lung', 'ICD10_2010'), +('Q33.6', 'Hypoplasia and dysplasia of lung', 'ICD10_2010'), +('Q33.8', 'Other congenital malformations of lung', 'ICD10_2010'), +('Q33.9', 'Congenital malformation of lung, unspecified', 'ICD10_2010'), +('Q34', 'Other congenital malformations of respiratory system', 'ICD10_2010'), +('Q34.0', 'Anomaly of pleura', 'ICD10_2010'), +('Q34.1', 'Congenital cyst of mediastinum', 'ICD10_2010'), +('Q34.8', 'Other specified congenital malformations of respiratory system', 'ICD10_2010'), +('Q34.9', 'Congenital malformation of respiratory system, unspecified', 'ICD10_2010'), +('Q35', 'Cleft palate', 'ICD10_2010'), +('Q35.0', 'Cleft hard palate, bilateral*', 'ICD10_2010'), +('Q35.1', 'Cleft hard palate', 'ICD10_2010'), +('Q35.2', 'Cleft soft palate, bilateral*', 'ICD10_2010'), +('Q35.3', 'Cleft soft palate', 'ICD10_2010'), +('Q35.4', 'Cleft hard palate with cleft soft palate, bilateral*', 'ICD10_2010'), +('Q35.5', 'Cleft hard palate with cleft soft palate', 'ICD10_2010'), +('Q35.6', 'Cleft palate, medial', 'ICD10_2010'), +('Q35.7', 'Cleft uvula', 'ICD10_2010'), +('Q35.8', 'Cleft palate, unspecified, bilateral*', 'ICD10_2010'), +('Q35.9', 'Cleft palate, unspecified', 'ICD10_2010'), +('Q36', 'Cleft lip', 'ICD10_2010'), +('Q36.0', 'Cleft lip, bilateral', 'ICD10_2010'), +('Q36.1', 'Cleft lip, median', 'ICD10_2010'), +('Q36.9', 'Cleft lip, unilateral', 'ICD10_2010'), +('Q37', 'Cleft palate with cleft lip', 'ICD10_2010'), +('Q37.0', 'Cleft hard palate with bilateral cleft lip', 'ICD10_2010'), +('Q37.1', 'Cleft hard palate with unilateral cleft lip', 'ICD10_2010'), +('Q37.2', 'Cleft soft palate with bilateral cleft lip', 'ICD10_2010'), +('Q37.3', 'Cleft soft palate with unilateral cleft lip', 'ICD10_2010'), +('Q37.4', 'Cleft hard and soft palate with bilateral cleft lip', 'ICD10_2010'), +('Q37.5', 'Cleft hard and soft palate with unilateral cleft lip', 'ICD10_2010'), +('Q37.8', 'Unspecified cleft palate with bilateral cleft lip', 'ICD10_2010'), +('Q37.9', 'Unspecified cleft palate with unilateral cleft lip', 'ICD10_2010'), +('Q38', 'Other congenital malformations of tongue, mouth and pharynx', 'ICD10_2010'), +('Q38.0', 'Congenital malformations of lips, not elsewhere classified', 'ICD10_2010'), +('Q38.1', 'Ankyloglossia', 'ICD10_2010'), +('Q38.2', 'Macroglossia', 'ICD10_2010'), +('Q38.3', 'Other congenital malformations of tongue', 'ICD10_2010'), +('Q38.4', 'Congenital malformations of salivary glands and ducts', 'ICD10_2010'), +('Q38.5', 'Congenital malformations of palate, not elsewhere classified', 'ICD10_2010'), +('Q38.6', 'Other congenital malformations of mouth', 'ICD10_2010'), +('Q38.7', 'Pharyngeal pouch', 'ICD10_2010'), +('Q38.8', 'Other congenital malformations of pharynx', 'ICD10_2010'), +('Q39', 'Congenital malformations of oesophagus', 'ICD10_2010'), +('Q39.0', 'Atresia of oesophagus without fistula', 'ICD10_2010'), +('Q39.1', 'Atresia of oesophagus with tracheo-oesophageal fistula', 'ICD10_2010'), +('Q39.2', 'Congenital tracheo-oesophageal fistula without atresia', 'ICD10_2010'), +('Q39.3', 'Congenital stenosis and stricture of oesophagus', 'ICD10_2010'), +('Q39.4', 'Oesophageal web', 'ICD10_2010'), +('Q39.5', 'Congenital dilatation of oesophagus', 'ICD10_2010'), +('Q39.6', 'Diverticulum of oesophagus', 'ICD10_2010'), +('Q39.8', 'Other congenital malformations of oesophagus', 'ICD10_2010'), +('Q39.9', 'Congenital malformation of oesophagus, unspecified', 'ICD10_2010'), +('Q40', 'Other congenital malformations of upper alimentary tract', 'ICD10_2010'), +('Q40.0', 'Congenital hypertrophic pyloric stenosis', 'ICD10_2010'), +('Q40.1', 'Congenital hiatus hernia', 'ICD10_2010'), +('Q40.2', 'Other specified congenital malformations of stomach', 'ICD10_2010'), +('Q40.3', 'Congenital malformation of stomach, unspecified', 'ICD10_2010'), +('Q40.8', 'Other specified congenital malforms of upper alimentary tract', 'ICD10_2010'), +('Q40.9', 'Congenital malformation of upper alimentary tract, unspecified', 'ICD10_2010'), +('Q41', 'Congenital absence, atresia and stenosis of small intestine', 'ICD10_2010'), +('Q41.0', 'Congenital absence, atresia and stenosis of duodenum', 'ICD10_2010'), +('Q41.1', 'Congenital absence, atresia and stenosis of jejunum', 'ICD10_2010'), +('Q41.2', 'Congenital absence, atresia and stenosis of ileum', 'ICD10_2010'), +('Q41.8', 'Congenital absence atresia stenosis other specified parts small intestine', 'ICD10_2010'), +('Q41.9', 'Congenital absence atresia and stenosis small intestine part unspecified', 'ICD10_2010'), +('Q42', 'Congenital absence, atresia and stenosis of large intestine', 'ICD10_2010'), +('Q42.0', 'Congenital absence atresia and stenosis of rectum with fistula', 'ICD10_2010'), +('Q42.1', 'Congenital absence atresia and stenosis rectum without fistula', 'ICD10_2010'), +('Q42.2', 'Congenital absence atresia and stenosis anus with fistula', 'ICD10_2010'), +('Q42.3', 'Congenital absence atresia and stenosis anus without fistula', 'ICD10_2010'), +('Q42.8', 'Congenital absence atresia and stenosis other parts of large intest', 'ICD10_2010'), +('Q42.9', 'Congenital absce atresia and sten of large intest part unspecified', 'ICD10_2010'), +('Q43', 'Other congenital malformations of intestine', 'ICD10_2010'), +('Q43.0', 'Meckel\'s diverticulum', 'ICD10_2010'), +('Q43.1', 'Hirschsprung\'s disease', 'ICD10_2010'), +('Q43.2', 'Other congenital functional disorders of colon', 'ICD10_2010'), +('Q43.3', 'Congenital malformations of intestinal fixation', 'ICD10_2010'), +('Q43.4', 'Duplication of intestine', 'ICD10_2010'), +('Q43.5', 'Ectopic anus', 'ICD10_2010'), +('Q43.6', 'Congenital fistula of rectum and anus', 'ICD10_2010'), +('Q43.7', 'Persistent cloaca', 'ICD10_2010'), +('Q43.8', 'Other specified congenital malformations of intestine', 'ICD10_2010'), +('Q43.9', 'Congenital malformation of intestine, unspecified', 'ICD10_2010'), +('Q44', 'Congenital malformations of gallbladder, bile ducts and liver', 'ICD10_2010'), +('Q44.0', 'Agenesis, aplasia and hypoplasia of gallbladder', 'ICD10_2010'), +('Q44.1', 'Other congenital malformations of gallbladder', 'ICD10_2010'), +('Q44.2', 'Atresia of bile ducts', 'ICD10_2010'), +('Q44.3', 'Congenital stenosis and stricture of bile ducts', 'ICD10_2010'), +('Q44.4', 'Choledochal cyst', 'ICD10_2010'), +('Q44.5', 'Other congenital malformations of bile ducts', 'ICD10_2010'), +('Q44.6', 'Cystic disease of liver', 'ICD10_2010'), +('Q44.7', 'Other congenital malformations of liver', 'ICD10_2010'), +('Q45', 'Other congenital malformations of digestive system', 'ICD10_2010'), +('Q45.0', 'Agenesis, aplasia and hypoplasia of pancreas', 'ICD10_2010'), +('Q45.1', 'Annular pancreas', 'ICD10_2010'), +('Q45.2', 'Congenital pancreatic cyst', 'ICD10_2010'), +('Q45.3', 'Other congenital malformations of pancreas and pancreatic duct', 'ICD10_2010'), +('Q45.8', 'Other specified congenital malformations of digestive system', 'ICD10_2010'), +('Q45.9', 'Congenital malformation of digestive system, unspecified', 'ICD10_2010'), +('Q50', 'Congenital malformations of ovaries, fallopian tubes and broad ligaments', 'ICD10_2010'), +('Q50.0', 'Congenital absence of ovary', 'ICD10_2010'), +('Q50.1', 'Developmental ovarian cyst', 'ICD10_2010'), +('Q50.2', 'Congenital torsion of ovary', 'ICD10_2010'), +('Q50.3', 'Other congenital malformations of ovary', 'ICD10_2010'), +('Q50.4', 'Embryonic cyst of fallopian tube', 'ICD10_2010'), +('Q50.5', 'Embryonic cyst of broad ligament', 'ICD10_2010'), +('Q50.6', 'Other congenital malformations of fallopian tube and broad ligament', 'ICD10_2010'), +('Q51', 'Congenital malformations of uterus and cervix', 'ICD10_2010'), +('Q51.0', 'Agenesis and aplasia of uterus', 'ICD10_2010'), +('Q51.1', 'Doubling of uterus with doubling of cervix and vagina', 'ICD10_2010'), +('Q51.2', 'Other doubling of uterus', 'ICD10_2010'), +('Q51.3', 'Bicornate uterus', 'ICD10_2010'), +('Q51.4', 'Unicornate uterus', 'ICD10_2010'), +('Q51.5', 'Agenesis and aplasia of cervix', 'ICD10_2010'), +('Q51.6', 'Embryonic cyst of cervix', 'ICD10_2010'), +('Q51.7', 'Congenital fistulae btwn uterus and digestive and urinary tracts', 'ICD10_2010'), +('Q51.8', 'Other congenital malformations of uterus and cervix', 'ICD10_2010'), +('Q51.9', 'Congenital malformation of uterus and cervix, unspecified', 'ICD10_2010'), +('Q52', 'Other congenital malformations of female genitalia', 'ICD10_2010'), +('Q52.0', 'Congenital absence of vagina', 'ICD10_2010'), +('Q52.1', 'Doubling of vagina', 'ICD10_2010'), +('Q52.2', 'Congenital rectovaginal fistula', 'ICD10_2010'), +('Q52.3', 'Imperforate hymen', 'ICD10_2010'), +('Q52.4', 'Other congenital malformations of vagina', 'ICD10_2010'), +('Q52.5', 'Fusion of labia', 'ICD10_2010'), +('Q52.6', 'Congenital malformation of clitoris', 'ICD10_2010'), +('Q52.7', 'Other congenital malformations of vulva', 'ICD10_2010'), +('Q52.8', 'Other specified congenital malformations of female genitalia', 'ICD10_2010'), +('Q52.9', 'Congenital malformation of female genitalia, unspecified', 'ICD10_2010'), +('Q53', 'Undescended testicle', 'ICD10_2010'), +('Q53.0', 'Ectopic testis', 'ICD10_2010'), +('Q53.1', 'Undescended testicle, unilateral', 'ICD10_2010'), +('Q53.2', 'Undescended testicle, bilateral', 'ICD10_2010'), +('Q53.9', 'Undescended testicle, unspecified', 'ICD10_2010'), +('Q54', 'Hypospadias', 'ICD10_2010'), +('Q54.0', 'Hypospadias, balanic', 'ICD10_2010'), +('Q54.1', 'Hypospadias, penile', 'ICD10_2010'), +('Q54.2', 'Hypospadias, penoscrotal', 'ICD10_2010'), +('Q54.3', 'Hypospadias, perineal', 'ICD10_2010'), +('Q54.4', 'Congenital chordee', 'ICD10_2010'), +('Q54.8', 'Other hypospadias', 'ICD10_2010'), +('Q54.9', 'Hypospadias, unspecified', 'ICD10_2010'), +('Q55', 'Other congenital malformations of male genital organs', 'ICD10_2010'), +('Q55.0', 'Absence and aplasia of testis', 'ICD10_2010'), +('Q55.1', 'Hypoplasia of testis and scrotum', 'ICD10_2010'), +('Q55.2', 'Other congenital malformations of testis and scrotum', 'ICD10_2010'), +('Q55.3', 'Atresia of vas deferens', 'ICD10_2010'), +('Q55.4', 'Other congenital malformations vas deferens, epididymis seminal vesicles and prostate', 'ICD10_2010'), +('Q55.5', 'Congenital absence and aplasia of penis', 'ICD10_2010'), +('Q55.6', 'Other congenital malformations of penis', 'ICD10_2010'), +('Q55.8', 'Other specified congen malformations of male genital organs', 'ICD10_2010'), +('Q55.9', 'Congenital malformation of male genital organ, unspecified', 'ICD10_2010'), +('Q56', 'Indeterminate sex and pseudohermaphroditism', 'ICD10_2010'), +('Q56.0', 'Hermaphroditism, not elsewhere classified', 'ICD10_2010'), +('Q56.1', 'Male pseudohermaphroditism, not elsewhere classified', 'ICD10_2010'), +('Q56.2', 'Female pseudohermaphroditism, not elsewhere classified', 'ICD10_2010'), +('Q56.3', 'Pseudohermaphroditism, unspecified', 'ICD10_2010'), +('Q56.4', 'Indeterminate sex, unspecified', 'ICD10_2010'), +('Q60', 'Renal agenesis and other reduction defects of kidney', 'ICD10_2010'), +('Q60.0', 'Renal agenesis, unilateral', 'ICD10_2010'), +('Q60.1', 'Renal agenesis, bilateral', 'ICD10_2010'), +('Q60.2', 'Renal agenesis, unspecified', 'ICD10_2010'), +('Q60.3', 'Renal hypoplasia, unilateral', 'ICD10_2010'), +('Q60.4', 'Renal hypoplasia, bilateral', 'ICD10_2010'), +('Q60.5', 'Renal hypoplasia, unspecified', 'ICD10_2010'), +('Q60.6', 'Potter\'s syndrome', 'ICD10_2010'), +('Q61', 'Cystic kidney disease', 'ICD10_2010'), +('Q61.0', 'Congenital single renal cyst', 'ICD10_2010'), +('Q61.1', 'Polycystic kidney, autosomal recessive', 'ICD10_2010'), +('Q61.2', 'Polycystic kidney, autosomal dominant', 'ICD10_2010'), +('Q61.3', 'Polycystic kidney, unspecified', 'ICD10_2010'), +('Q61.4', 'Renal dysplasia', 'ICD10_2010'), +('Q61.5', 'Medullary cystic kidney', 'ICD10_2010'), +('Q61.8', 'Other cystic kidney diseases', 'ICD10_2010'), +('Q61.9', 'Cystic kidney disease, unspecified', 'ICD10_2010'); +INSERT INTO `icd10` (`ID_ICD10`, `Diagnosa`, `Versi_ICD10`) VALUES +('Q62', 'Congenital obstructive defects of renal pelvis and congenital malformations of ureter', 'ICD10_2010'), +('Q62.0', 'Congenital hydronephrosis', 'ICD10_2010'), +('Q62.1', 'Atresia and stenosis of ureter', 'ICD10_2010'), +('Q62.2', 'Congenital megaloureter', 'ICD10_2010'), +('Q62.3', 'Other obstructive defects of renal pelvis and ureter', 'ICD10_2010'), +('Q62.4', 'Agenesis of ureter', 'ICD10_2010'), +('Q62.5', 'Duplication of ureter', 'ICD10_2010'), +('Q62.6', 'Malposition of ureter', 'ICD10_2010'), +('Q62.7', 'Congenital vesico-uretero-renal reflux', 'ICD10_2010'), +('Q62.8', 'Other congenital malformations of ureter', 'ICD10_2010'), +('Q63', 'Other congenital malformations of kidney', 'ICD10_2010'), +('Q63.0', 'Accessory kidney', 'ICD10_2010'), +('Q63.1', 'Lobulated, fused and horseshoe kidney', 'ICD10_2010'), +('Q63.2', 'Ectopic kidney', 'ICD10_2010'), +('Q63.3', 'Hyperplastic and giant kidney', 'ICD10_2010'), +('Q63.8', 'Other specified congenital malformations of kidney', 'ICD10_2010'), +('Q63.9', 'Congenital malformation of kidney, unspecified', 'ICD10_2010'), +('Q64', 'Other congenital malformations of urinary system', 'ICD10_2010'), +('Q64.0', 'Epispadias', 'ICD10_2010'), +('Q64.1', 'Exstrophy of urinary bladder', 'ICD10_2010'), +('Q64.2', 'Congenital posterior urethral valves', 'ICD10_2010'), +('Q64.3', 'Other atresia and stenosis of urethra and bladder neck', 'ICD10_2010'), +('Q64.4', 'Malformation of urachus', 'ICD10_2010'), +('Q64.5', 'Congenital absence of bladder and urethra', 'ICD10_2010'), +('Q64.6', 'Congenital diverticulum of bladder', 'ICD10_2010'), +('Q64.7', 'Other congenital malformations of bladder and urethra', 'ICD10_2010'), +('Q64.8', 'Other specified congenital malformations of urinary system', 'ICD10_2010'), +('Q64.9', 'Congenital malformation of urinary system, unspecified', 'ICD10_2010'), +('Q65', 'Congenital deformities of hip', 'ICD10_2010'), +('Q65.0', 'Congenital dislocation of hip, unilateral', 'ICD10_2010'), +('Q65.1', 'Congenital dislocation of hip, bilateral', 'ICD10_2010'), +('Q65.2', 'Congenital dislocation of hip, unspecified', 'ICD10_2010'), +('Q65.3', 'Congenital subluxation of hip, unilateral', 'ICD10_2010'), +('Q65.4', 'Congenital subluxation of hip, bilateral', 'ICD10_2010'), +('Q65.5', 'Congenital subluxation of hip, unspecified', 'ICD10_2010'), +('Q65.6', 'Unstable hip', 'ICD10_2010'), +('Q65.8', 'Other congenital deformities of hip', 'ICD10_2010'), +('Q65.9', 'Congenital deformity of hip, unspecified', 'ICD10_2010'), +('Q66', 'Congenital deformities of feet', 'ICD10_2010'), +('Q66.0', 'Talipes equinovarus', 'ICD10_2010'), +('Q66.1', 'Talipes calcaneovarus', 'ICD10_2010'), +('Q66.2', 'Metatarsus varus', 'ICD10_2010'), +('Q66.3', 'Other congenital varus deformities of feet', 'ICD10_2010'), +('Q66.4', 'Talipes calcaneovalgus', 'ICD10_2010'), +('Q66.5', 'Congenital pes planus', 'ICD10_2010'), +('Q66.6', 'Other congenital valgus deformities of feet', 'ICD10_2010'), +('Q66.7', 'Pes cavus', 'ICD10_2010'), +('Q66.8', 'Other congenital deformities of feet', 'ICD10_2010'), +('Q66.9', 'Congenital deformity of feet, unspecified', 'ICD10_2010'), +('Q67', 'Congenital musculoskeletal deformities of head, face, spine and chest', 'ICD10_2010'), +('Q67.0', 'Facial asymmetry', 'ICD10_2010'), +('Q67.1', 'Compression facies', 'ICD10_2010'), +('Q67.2', 'Dolichocephaly', 'ICD10_2010'), +('Q67.3', 'Plagiocephaly', 'ICD10_2010'), +('Q67.4', 'Other congenital deformities of skull, face and jaw', 'ICD10_2010'), +('Q67.5', 'Congenital deformity of spine', 'ICD10_2010'), +('Q67.6', 'Pectus excavatum', 'ICD10_2010'), +('Q67.7', 'Pectus carinatum', 'ICD10_2010'), +('Q67.8', 'Other congenital deformities of chest', 'ICD10_2010'), +('Q68', 'Other congenital musculoskeletal deformities', 'ICD10_2010'), +('Q68.0', 'Congenital deformity of sternocleidomastoid muscle', 'ICD10_2010'), +('Q68.1', 'Congenital deformity of hand', 'ICD10_2010'), +('Q68.2', 'Congenital deformity of knee', 'ICD10_2010'), +('Q68.3', 'Congenital bowing of femur', 'ICD10_2010'), +('Q68.4', 'Congenital bowing of tibia and fibula', 'ICD10_2010'), +('Q68.5', 'Congenital bowing of long bones of leg, unspecified', 'ICD10_2010'), +('Q68.8', 'Other specified congenital musculoskeletal deformities', 'ICD10_2010'), +('Q69', 'Polydactyly', 'ICD10_2010'), +('Q69.0', 'Accessory finger(s)', 'ICD10_2010'), +('Q69.1', 'Accessory thumb(s)', 'ICD10_2010'), +('Q69.2', 'Accessory toe(s)', 'ICD10_2010'), +('Q69.9', 'Polydactyly, unspecified', 'ICD10_2010'), +('Q70', 'Syndactyly', 'ICD10_2010'), +('Q70.0', 'Fused fingers', 'ICD10_2010'), +('Q70.1', 'Webbed fingers', 'ICD10_2010'), +('Q70.2', 'Fused toes', 'ICD10_2010'), +('Q70.3', 'Webbed toes', 'ICD10_2010'), +('Q70.4', 'Polysyndactyly', 'ICD10_2010'), +('Q70.9', 'Syndactyly, unspecified', 'ICD10_2010'), +('Q71', 'Reduction defects of upper limb', 'ICD10_2010'), +('Q71.0', 'Congenital complete absence of upper limb(s)', 'ICD10_2010'), +('Q71.1', 'Cong absence of upper arm and forearm with hand present', 'ICD10_2010'), +('Q71.2', 'Congenital absence of both forearm and hand', 'ICD10_2010'), +('Q71.3', 'Congenital absence of hand and finger(s)', 'ICD10_2010'), +('Q71.4', 'Longitudinal reduction defect of radius', 'ICD10_2010'), +('Q71.5', 'Longitudinal reduction defect of ulna', 'ICD10_2010'), +('Q71.6', 'Lobster-claw hand', 'ICD10_2010'), +('Q71.8', 'Other reduction defects of upper limb(s)', 'ICD10_2010'), +('Q71.9', 'Reduction defect of upper limb, unspecified', 'ICD10_2010'), +('Q72', 'Reduction defects of lower limb', 'ICD10_2010'), +('Q72.0', 'Congenital complete absence of lower limb(s)', 'ICD10_2010'), +('Q72.1', 'Congenital absence of thigh and lower leg with foot present', 'ICD10_2010'), +('Q72.2', 'Congenital absence of both lower leg and foot', 'ICD10_2010'), +('Q72.3', 'Congenital absence of foot and toe(s)', 'ICD10_2010'), +('Q72.4', 'Longitudinal reduction defect of femur', 'ICD10_2010'), +('Q72.5', 'Longitudinal reduction defect of tibia', 'ICD10_2010'), +('Q72.6', 'Longitudinal reduction defect of fibula', 'ICD10_2010'), +('Q72.7', 'Split foot', 'ICD10_2010'), +('Q72.8', 'Other reduction defects of lower limb(s)', 'ICD10_2010'), +('Q72.9', 'Reduction defect of lower limb, unspecified', 'ICD10_2010'), +('Q73', 'Reduction defects of unspecified limb', 'ICD10_2010'), +('Q73.0', 'Congenital absence of unspecified limb(s)', 'ICD10_2010'), +('Q73.1', 'Phocomelia, unspecified limb(s)', 'ICD10_2010'), +('Q73.8', 'Other reduction defects of unspecified limb(s)', 'ICD10_2010'), +('Q74', 'Other congenital malformations of limb(s)', 'ICD10_2010'), +('Q74.0', 'Other congenital malformation of upper limb(s) including shoulder girdle', 'ICD10_2010'), +('Q74.1', 'Congenital malformation of knee', 'ICD10_2010'), +('Q74.2', 'Other congenital malformation of lower limb(s) including pelvic girdle', 'ICD10_2010'), +('Q74.3', 'Arthrogryposis multiplex congenita', 'ICD10_2010'), +('Q74.8', 'Other specified congenital malformations of limb(s)', 'ICD10_2010'), +('Q74.9', 'Unspecified congenital malformation of limb(s)', 'ICD10_2010'), +('Q75', 'Other congenital malformations of skull and face bones', 'ICD10_2010'), +('Q75.0', 'Craniosynostosis', 'ICD10_2010'), +('Q75.1', 'Craniofacial dysostosis', 'ICD10_2010'), +('Q75.2', 'Hypertelorism', 'ICD10_2010'), +('Q75.3', 'Macrocephaly', 'ICD10_2010'), +('Q75.4', 'Mandibulofacial dysostosis', 'ICD10_2010'), +('Q75.5', 'Oculomandibular dysostosis', 'ICD10_2010'), +('Q75.8', 'Other specified congenital malformations of skull and face bones', 'ICD10_2010'), +('Q75.9', 'Congenital malformation of skull and face bones, unspecified', 'ICD10_2010'), +('Q76', 'Congenital malformations of spine and bony thorax', 'ICD10_2010'), +('Q76.0', 'Spina bifida occulta', 'ICD10_2010'), +('Q76.1', 'Klippel-feil syndrome', 'ICD10_2010'), +('Q76.2', 'Congenital spondylolisthesis', 'ICD10_2010'), +('Q76.3', 'Congenital scoliosis due to congenital bony malformation', 'ICD10_2010'), +('Q76.4', 'Other congenital malformation of spine not associated with scoliosis', 'ICD10_2010'), +('Q76.5', 'Cervical rib', 'ICD10_2010'), +('Q76.6', 'Other congenital malformations of ribs', 'ICD10_2010'), +('Q76.7', 'Congenital malformation of sternum', 'ICD10_2010'), +('Q76.8', 'Other congenital malformations of bony thorax', 'ICD10_2010'), +('Q76.9', 'Congenital malformation of bony thorax, unspecified', 'ICD10_2010'), +('Q77', 'Osteochondrodysplasia with defects of growth of tubular bones and spine', 'ICD10_2010'), +('Q77.0', 'Achondrogenesis', 'ICD10_2010'), +('Q77.1', 'Thanatophoric short stature', 'ICD10_2010'), +('Q77.2', 'Short rib syndrome', 'ICD10_2010'), +('Q77.3', 'Chondrodysplasia punctata', 'ICD10_2010'), +('Q77.4', 'Achondroplasia', 'ICD10_2010'), +('Q77.5', 'Dystrophic dysplasia', 'ICD10_2010'), +('Q77.6', 'Chondroectodermal dysplasia', 'ICD10_2010'), +('Q77.7', 'Spondyloepiphyseal dysplasia', 'ICD10_2010'), +('Q77.8', 'Other osteochondrodysplas with defect growth tubular bone spine', 'ICD10_2010'), +('Q77.9', 'Osteochondrodyspl with defect growth tubular bones and spine, unspecified', 'ICD10_2010'), +('Q78', 'Other osteochondrodysplasias', 'ICD10_2010'), +('Q78.0', 'Osteogenesis imperfecta', 'ICD10_2010'), +('Q78.1', 'Polyostotic fibrous dysplasia', 'ICD10_2010'), +('Q78.2', 'Osteopetrosis', 'ICD10_2010'), +('Q78.3', 'Progressive diaphyseal dysplasia', 'ICD10_2010'), +('Q78.4', 'Enchondromatosis', 'ICD10_2010'), +('Q78.5', 'Metaphyseal dysplasia', 'ICD10_2010'), +('Q78.6', 'Multiple congenital exostoses', 'ICD10_2010'), +('Q78.8', 'Other specified osteochondrodysplasias', 'ICD10_2010'), +('Q78.9', 'Osteochondrodysplasia, unspecified', 'ICD10_2010'), +('Q79', 'Congenital malformations of the musculoskeletal system, not elsewhere classified', 'ICD10_2010'), +('Q79.0', 'Congenital diaphragmatic hernia', 'ICD10_2010'), +('Q79.1', 'Other congenital malformations of diaphragm', 'ICD10_2010'), +('Q79.2', 'Exomphalos', 'ICD10_2010'), +('Q79.3', 'Gastroschisis', 'ICD10_2010'), +('Q79.4', 'Prune belly syndrome', 'ICD10_2010'), +('Q79.5', 'Other congenital malformations of abdominal wall', 'ICD10_2010'), +('Q79.6', 'Ehlers-danlos syndrome', 'ICD10_2010'), +('Q79.8', 'Other congenital malformations of musculoskeletal system', 'ICD10_2010'), +('Q79.9', 'Congenital malformation of musculoskeletal system unspecified', 'ICD10_2010'), +('Q80', 'Congenital ichthyosis', 'ICD10_2010'), +('Q80.0', 'Ichthyosis vulgaris', 'ICD10_2010'), +('Q80.1', 'X-linked ichthyosis', 'ICD10_2010'), +('Q80.2', 'Lamellar ichthyosis', 'ICD10_2010'), +('Q80.3', 'Congenital bullous ichthyosiform erythroderma', 'ICD10_2010'), +('Q80.4', 'Harlequin fetus', 'ICD10_2010'), +('Q80.8', 'Other congenital ichthyosis', 'ICD10_2010'), +('Q80.9', 'Congenital ichthyosis, unspecified', 'ICD10_2010'), +('Q81', 'Epidermolysis bullosa', 'ICD10_2010'), +('Q81.0', 'Epidermolysis bullosa simplex', 'ICD10_2010'), +('Q81.1', 'Epidermolysis bullosa letalis', 'ICD10_2010'), +('Q81.2', 'Epidermolysis bullosa dystrophica', 'ICD10_2010'), +('Q81.8', 'Other epidermolysis bullosa', 'ICD10_2010'), +('Q81.9', 'Epidermolysis bullosa, unspecified', 'ICD10_2010'), +('Q82', 'Other congenital malformations of skin', 'ICD10_2010'), +('Q82.0', 'Hereditary lymphoedema', 'ICD10_2010'), +('Q82.1', 'Xeroderma pigmentosum', 'ICD10_2010'), +('Q82.2', 'Mastocytosis', 'ICD10_2010'), +('Q82.3', 'Incontinentia pigmenti', 'ICD10_2010'), +('Q82.4', 'Ectodermal dysplasia (anhidrotic)', 'ICD10_2010'), +('Q82.5', 'Congenital non-neoplastic naevus', 'ICD10_2010'), +('Q82.8', 'Other specified congenital malformations of skin', 'ICD10_2010'), +('Q82.9', 'Congenital malformation of skin, unspecified', 'ICD10_2010'), +('Q83', 'Congenital malformations of breast', 'ICD10_2010'), +('Q83.0', 'Congenital absence of breast with absent nipple', 'ICD10_2010'), +('Q83.1', 'Accessory breast', 'ICD10_2010'), +('Q83.2', 'Absent nipple', 'ICD10_2010'), +('Q83.3', 'Accessory nipple', 'ICD10_2010'), +('Q83.8', 'Other congenital malformations of breast', 'ICD10_2010'), +('Q83.9', 'Congenital malformation of breast, unspecified', 'ICD10_2010'), +('Q84', 'Other congenital malformations of integument', 'ICD10_2010'), +('Q84.0', 'Congenital alopecia', 'ICD10_2010'), +('Q84.1', 'Congenital morphological disturbances of hair nec', 'ICD10_2010'), +('Q84.2', 'Other congenital malformations of hair', 'ICD10_2010'), +('Q84.3', 'Anonychia', 'ICD10_2010'), +('Q84.4', 'Congenital leukonychia', 'ICD10_2010'), +('Q84.5', 'Enlarged and hypertrophic nails', 'ICD10_2010'), +('Q84.6', 'Other congenital malformations of nails', 'ICD10_2010'), +('Q84.8', 'Other specified congenital malformations of integument', 'ICD10_2010'), +('Q84.9', 'Congenital malformation of integument, unspecified', 'ICD10_2010'), +('Q85', 'Phakomatoses, not elsewhere classified', 'ICD10_2010'), +('Q85.0', 'Neurofibromatosis (nonmalignant)', 'ICD10_2010'), +('Q85.1', 'Tuberous sclerosis', 'ICD10_2010'), +('Q85.8', 'Other phakomatoses, not elsewhere classified', 'ICD10_2010'), +('Q85.9', 'Phakomatosis, unspecified', 'ICD10_2010'), +('Q86', 'Congenital malformation syndromes due to known exogenous causes, not elsewhere classified', 'ICD10_2010'), +('Q86.0', 'Fetal alcohol syndrome (dysmorphic)', 'ICD10_2010'), +('Q86.1', 'Fetal hydantoin syndrome', 'ICD10_2010'), +('Q86.2', 'Dysmorphism due to warfarin', 'ICD10_2010'), +('Q86.8', 'Other congenital malformation syndromes due to known exogen causes', 'ICD10_2010'), +('Q87', 'Other specified congenital malformation syndromes affecting multiple systems', 'ICD10_2010'), +('Q87.0', 'Congenital malformation syndromes predominantly affect facial appearance', 'ICD10_2010'), +('Q87.1', 'Congenital malformation syndromes predominantly associated with short stature', 'ICD10_2010'), +('Q87.2', 'Congenital malformation syndromes predominantly involving limbs', 'ICD10_2010'), +('Q87.3', 'Congenital malformation syndromes involving early overgrowth', 'ICD10_2010'), +('Q87.4', 'Marfan\'s syndrome', 'ICD10_2010'), +('Q87.5', 'Other congenital malformation syndromes with other skeletal changes', 'ICD10_2010'), +('Q87.8', 'Other specified congenital malformation syndromes NEC', 'ICD10_2010'), +('Q89', 'Other congenital malformations, not elsewhere classified', 'ICD10_2010'), +('Q89.0', 'Congenital malformations of spleen', 'ICD10_2010'), +('Q89.1', 'Congenital malformations of adrenal gland', 'ICD10_2010'), +('Q89.2', 'Congenital malformations of other endocrine glands', 'ICD10_2010'), +('Q89.3', 'Situs inversus', 'ICD10_2010'), +('Q89.4', 'Conjoined twins', 'ICD10_2010'), +('Q89.7', 'Multiple congenital malformations, not elsewhere classified', 'ICD10_2010'), +('Q89.8', 'Other specified congenital malformations', 'ICD10_2010'), +('Q89.9', 'Congenital malformation, unspecified', 'ICD10_2010'), +('Q90', 'Down syndrome', 'ICD10_2010'), +('Q90.0', 'Trisomy 21, meiotic nondisjunction', 'ICD10_2010'), +('Q90.1', 'Trisomy 21, mosaicism (mitotic nondisjunction)', 'ICD10_2010'), +('Q90.2', 'Trisomy 21, translocation', 'ICD10_2010'), +('Q90.9', 'Down\'s syndrome, unspecified', 'ICD10_2010'), +('Q91', 'Edwards syndrome and Patau syndrome', 'ICD10_2010'), +('Q91.0', 'Trisomy 18, meiotic nondisjunction', 'ICD10_2010'), +('Q91.1', 'Trisomy 18, mosaicism (mitotic nondisjunction)', 'ICD10_2010'), +('Q91.2', 'Trisomy 18, translocation', 'ICD10_2010'), +('Q91.3', 'Edwards\' syndrome, unspecified', 'ICD10_2010'), +('Q91.4', 'Trisomy 13, meiotic nondisjunction', 'ICD10_2010'), +('Q91.5', 'Trisomy 13, mosaicism (mitotic nondisjunction)', 'ICD10_2010'), +('Q91.6', 'Trisomy 13, translocation', 'ICD10_2010'), +('Q91.7', 'Patau\'s syndrome, unspecified', 'ICD10_2010'), +('Q92', 'Other trisomies and partial trisomies of the autosomes, not elsewhere classified', 'ICD10_2010'), +('Q92.0', 'Whole chromosome trisomy, meiotic nondisjunction', 'ICD10_2010'), +('Q92.1', 'Whole chromosome trisomy, mosaicism (mitotic nondisjunction)', 'ICD10_2010'), +('Q92.2', 'Major partial trisomy', 'ICD10_2010'), +('Q92.3', 'Minor partial trisomy', 'ICD10_2010'), +('Q92.4', 'Duplications seen only at prometaphase', 'ICD10_2010'), +('Q92.5', 'Duplications with other complex rearrangements', 'ICD10_2010'), +('Q92.6', 'Extra marker chromosomes', 'ICD10_2010'), +('Q92.7', 'Triploidy and polyploidy', 'ICD10_2010'), +('Q92.8', 'Other specified trisomies and partial trisomies of autosomes', 'ICD10_2010'), +('Q92.9', 'Trisomy and partial trisomy of autosomes, unspecified', 'ICD10_2010'), +('Q93', 'Monosomies and deletions from the autosomes, not elsewhere classified', 'ICD10_2010'), +('Q93.0', 'Whole chromosome monosomy, meiotic nondisjunction', 'ICD10_2010'), +('Q93.1', 'Whole chrom monosomy mosaicism (mitotic nondisjunction)', 'ICD10_2010'), +('Q93.2', 'Chromosome replaced with ring or dicentric', 'ICD10_2010'), +('Q93.3', 'Deletion of short arm of chromosome 4', 'ICD10_2010'), +('Q93.4', 'Deletion of short arm of chromosome 5', 'ICD10_2010'), +('Q93.5', 'Other deletions of part of a chromosome', 'ICD10_2010'), +('Q93.6', 'Deletions seen only at prometaphase', 'ICD10_2010'), +('Q93.7', 'Deletions with other complex rearrangements', 'ICD10_2010'), +('Q93.8', 'Other deletions from the autosomes', 'ICD10_2010'), +('Q93.9', 'Deletion from autosomes, unspecified', 'ICD10_2010'), +('Q95', 'Balanced rearrangements and structural markers, not elsewhere classified', 'ICD10_2010'), +('Q95.0', 'Balanced translocation and insertion in normal individual', 'ICD10_2010'), +('Q95.1', 'Chromosome inversion in normal individual', 'ICD10_2010'), +('Q95.2', 'Balanced autosomal rearrangement in abnormal individual', 'ICD10_2010'), +('Q95.3', 'Balanced sex/autosomal rearrangement in abnormal individual', 'ICD10_2010'), +('Q95.4', 'Individuals with marker heterochromatin', 'ICD10_2010'), +('Q95.5', 'Individuals with autosomal fragile site', 'ICD10_2010'), +('Q95.8', 'Other balanced rearrangements and structural markers', 'ICD10_2010'), +('Q95.9', 'Balanced rearrangement and structural marker, unspecified', 'ICD10_2010'), +('Q96', 'Turner syndrome', 'ICD10_2010'), +('Q96.0', 'Karyotype 45x', 'ICD10_2010'), +('Q96.1', 'Karyotype 46x iso (xq)', 'ICD10_2010'), +('Q96.2', 'Karyotype 46x with abnormal sex chromosome, except iso (Xq)', 'ICD10_2010'), +('Q96.3', 'Mosaicism, 45, x/46, xx or xy', 'ICD10_2010'), +('Q96.4', 'Mosaicism 45x/oth cell line(s) with abnorm sex chromosome', 'ICD10_2010'), +('Q96.8', 'Other variants of turner\'s syndrome', 'ICD10_2010'), +('Q96.9', 'Turner\'s syndrome, unspecified', 'ICD10_2010'), +('Q97', 'Other sex chromosome abnormalities, female phenotype, not elsewhere classified', 'ICD10_2010'), +('Q97.0', 'Karotype 47, XXX', 'ICD10_2010'), +('Q97.1', 'Female with more than three x chromosomes', 'ICD10_2010'), +('Q97.2', 'Mosaicism, lines with various numbers of x chromosomes', 'ICD10_2010'), +('Q97.3', 'Female with 46, XY karyotype', 'ICD10_2010'), +('Q97.8', 'Other specified sex chromosome abnormalities female phrenotype', 'ICD10_2010'), +('Q97.9', 'Sex chromosome abnormality, female phenotype, unspecified', 'ICD10_2010'), +('Q98', 'Other sex chromosome abnormalities, male phenotype, not elsewhere classified', 'ICD10_2010'), +('Q98.0', 'Klinefelters syndrome karyotype 47, XXY', 'ICD10_2010'), +('Q98.1', 'Klinefelters syndrome male with more than two X chromosomes', 'ICD10_2010'), +('Q98.2', 'Klinefelters syndrome karyotype male with 46, XX karyotype', 'ICD10_2010'), +('Q98.3', 'Other male with 46 XX karyotype', 'ICD10_2010'), +('Q98.4', 'Klinefelter\'s syndrome, unspecified', 'ICD10_2010'), +('Q98.5', 'Karyotype 47 , XYY', 'ICD10_2010'), +('Q98.6', 'Male with structurally abnormal sex chromosome', 'ICD10_2010'), +('Q98.7', 'Male with sex chromosome mosaicism', 'ICD10_2010'), +('Q98.8', 'Other specified sex chromosome abnormalities, male phenotype', 'ICD10_2010'), +('Q98.9', 'Sex chromosome abnormality, male phenotype, unspecified', 'ICD10_2010'), +('Q99', 'Other chromosome abnormalities, not elsewhere classified', 'ICD10_2010'), +('Q99.0', 'Chimera 46, XX/46, XY', 'ICD10_2010'), +('Q99.1', '46, XX true hemaphrodite', 'ICD10_2010'), +('Q99.2', 'Fragile x chromosome', 'ICD10_2010'), +('Q99.8', 'Other specified chromosome abnormalities', 'ICD10_2010'), +('Q99.9', 'Chromosomal abnormality, unspecified', 'ICD10_2010'), +('R00', 'Abnormalities of heart beat', 'ICD10_2010'), +('R00.0', 'Tachycardia, unspecified', 'ICD10_2010'), +('R00.1', 'Bradycardia, unspecified', 'ICD10_2010'), +('R00.2', 'Palpitations', 'ICD10_2010'), +('R00.8', 'Other and unspecified abnormalities of heart beat', 'ICD10_2010'), +('R01', 'Cardiac murmurs and other cardiac sounds', 'ICD10_2010'), +('R01.0', 'Benign and innocent cardiac murmurs', 'ICD10_2010'), +('R01.1', 'Cardiac murmur, unspecified', 'ICD10_2010'), +('R01.2', 'Other cardiac sounds', 'ICD10_2010'), +('R02', 'Gangrene, not elsewhere classified', 'ICD10_2010'), +('R03', 'Abnormal blood-pressure reading, without diagnosis', 'ICD10_2010'), +('R03.0', 'Elevated blood-pressure reading without diagnosis of hypertension', 'ICD10_2010'), +('R03.1', 'Nonspecific low blood-pressure reading', 'ICD10_2010'), +('R04', 'Haemorrhage from respiratory passages', 'ICD10_2010'), +('R04.0', 'Epistaxis', 'ICD10_2010'), +('R04.1', 'Haemorrhage from throat', 'ICD10_2010'), +('R04.2', 'Haemoptysis', 'ICD10_2010'), +('R04.8', 'Haemorrhage from other sites in respiratory passages', 'ICD10_2010'), +('R04.9', 'Haemorrhage from respiratory passages, unspecified', 'ICD10_2010'), +('R05', 'Cough', 'ICD10_2010'), +('R06', 'Abnormalities of breathing', 'ICD10_2010'), +('R06.0', 'Dyspnoea', 'ICD10_2010'), +('R06.1', 'Stridor', 'ICD10_2010'), +('R06.2', 'Wheezing', 'ICD10_2010'), +('R06.3', 'Periodic breathing', 'ICD10_2010'), +('R06.4', 'Hyperventilation', 'ICD10_2010'), +('R06.5', 'Mouth breathing', 'ICD10_2010'), +('R06.6', 'Hiccough', 'ICD10_2010'), +('R06.7', 'Sneezing', 'ICD10_2010'), +('R06.8', 'Other and unspecified abnormalities of breathing', 'ICD10_2010'), +('R07', 'Pain in throat and chest', 'ICD10_2010'), +('R07.0', 'Pain in throat', 'ICD10_2010'), +('R07.1', 'Chest pain on breathing', 'ICD10_2010'), +('R07.2', 'Precordial pain', 'ICD10_2010'), +('R07.3', 'Other chest pain', 'ICD10_2010'), +('R07.4', 'Chest pain, unspecified', 'ICD10_2010'), +('R09', 'Other symptoms and signs involving the circulatory and respiratory systems', 'ICD10_2010'), +('R09.0', 'Asphyxia', 'ICD10_2010'), +('R09.1', 'Pleurisy', 'ICD10_2010'), +('R09.2', 'Respiratory arrest', 'ICD10_2010'), +('R09.3', 'Abnormal sputum', 'ICD10_2010'), +('R09.8', 'Other specified symptoms and signs involving circulatory and respiratory systems', 'ICD10_2010'), +('R10', 'Abdominal and pelvic pain', 'ICD10_2010'), +('R10.0', 'Acute abdomen', 'ICD10_2010'), +('R10.1', 'Pain localized to upper abdomen', 'ICD10_2010'), +('R10.2', 'Pelvic and perineal pain', 'ICD10_2010'), +('R10.3', 'Pain localized to other parts of lower abdomen', 'ICD10_2010'), +('R10.4', 'Other and unspecified abdominal pain', 'ICD10_2010'), +('R11', 'Nausea and vomiting', 'ICD10_2010'), +('R12', 'Heartburn', 'ICD10_2010'), +('R13', 'Dysphagia', 'ICD10_2010'), +('R14', 'Flatulence and related conditions', 'ICD10_2010'), +('R15', 'Faecal incontinence', 'ICD10_2010'), +('R16', 'Hepatomegaly and splenomegaly, not elsewhere classified', 'ICD10_2010'), +('R16.0', 'Hepatomegaly, not elsewhere classified', 'ICD10_2010'), +('R16.1', 'Splenomegaly, not elsewhere classified', 'ICD10_2010'), +('R16.2', 'Hepatomegaly with splenomegaly, not elsewhere classified', 'ICD10_2010'), +('R17', 'Unspecified jaundice', 'ICD10_2010'), +('R18', 'Ascites', 'ICD10_2010'), +('R19', 'Other symptoms and signs involving the digestive system and abdomen', 'ICD10_2010'), +('R19.0', 'Intra-abdominal and pelvic swelling, mass and lump', 'ICD10_2010'), +('R19.1', 'Abnormal bowel sounds', 'ICD10_2010'), +('R19.2', 'Visible peristalsis', 'ICD10_2010'), +('R19.3', 'Abdominal rigidity', 'ICD10_2010'), +('R19.4', 'Change in bowel habit', 'ICD10_2010'), +('R19.5', 'Other faecal abnormalities', 'ICD10_2010'), +('R19.6', 'Halitosis', 'ICD10_2010'), +('R19.8', 'Other specified symptoms and signs involving digestive system and abdomen', 'ICD10_2010'), +('R20', 'Disturbances of skin sensation', 'ICD10_2010'), +('R20.0', 'Anaesthesia of skin', 'ICD10_2010'), +('R20.1', 'Hypoaesthesia of skin', 'ICD10_2010'), +('R20.2', 'Paraesthesia of skin', 'ICD10_2010'), +('R20.3', 'Hyperaesthesia', 'ICD10_2010'), +('R20.8', 'Other and unspecified disturbances of skin sensation', 'ICD10_2010'), +('R21', 'Rash and other nonspecific skin eruption', 'ICD10_2010'), +('R22', 'Localized swelling, mass and lump of skin and subcutaneous tissue', 'ICD10_2010'), +('R22.0', 'Localized swelling, mass and lump, head', 'ICD10_2010'), +('R22.1', 'Localized swelling, mass and lump, neck', 'ICD10_2010'), +('R22.2', 'Localized swelling, mass and lump, trunk', 'ICD10_2010'), +('R22.3', 'Localized swelling, mass and lump, upper limb', 'ICD10_2010'), +('R22.4', 'Localized swelling, mass and lump, lower limb', 'ICD10_2010'), +('R22.7', 'Localized swelling, mass and lump, multiple sites', 'ICD10_2010'), +('R22.9', 'Localized swelling, mass and lump, unspecified', 'ICD10_2010'), +('R23', 'Other skin changes', 'ICD10_2010'), +('R23.0', 'Cyanosis', 'ICD10_2010'), +('R23.1', 'Pallor', 'ICD10_2010'), +('R23.2', 'Flushing', 'ICD10_2010'), +('R23.3', 'Spontaneous ecchymoses', 'ICD10_2010'), +('R23.4', 'Changes in skin texture', 'ICD10_2010'), +('R23.8', 'Other and unspecified skin changes', 'ICD10_2010'), +('R25', 'Abnormal involuntary movements', 'ICD10_2010'), +('R25.0', 'Abnormal head movements', 'ICD10_2010'), +('R25.1', 'Tremor, unspecified', 'ICD10_2010'), +('R25.2', 'Cramp and spasm', 'ICD10_2010'), +('R25.3', 'Fasciculation', 'ICD10_2010'), +('R25.8', 'Other and unspecified abnormal involuntary movements', 'ICD10_2010'), +('R26', 'Abnormalities of gait and mobility', 'ICD10_2010'), +('R26.0', 'Ataxic gait', 'ICD10_2010'), +('R26.1', 'Paralytic gait', 'ICD10_2010'), +('R26.2', 'Difficulty in walking, not elsewhere classified', 'ICD10_2010'), +('R26.3', 'Immobility', 'ICD10_2010'), +('R26.8', 'Other and unspecified abnormalities of gait and mobility', 'ICD10_2010'), +('R27', 'Other lack of coordination', 'ICD10_2010'), +('R27.0', 'Ataxia, unspecified', 'ICD10_2010'), +('R27.8', 'Other and unspecified lack of coordination', 'ICD10_2010'), +('R29', 'Other symptoms and signs involving the nervous and musculoskeletal systems', 'ICD10_2010'), +('R29.0', 'Tetany', 'ICD10_2010'), +('R29.1', 'Meningismus', 'ICD10_2010'), +('R29.2', 'Abnormal reflex', 'ICD10_2010'), +('R29.3', 'Abnormal posture', 'ICD10_2010'), +('R29.4', 'Clicking hip', 'ICD10_2010'), +('R29.6', 'Tendency to fall, NEC', 'ICD10_2010'), +('R29.8', 'Other unspecified symptoms and signs involving the nervous and musculoskel systems', 'ICD10_2010'), +('R30', 'Pain associated with micturition', 'ICD10_2010'), +('R30.0', 'Dysuria', 'ICD10_2010'), +('R30.1', 'Vesical tenesmus', 'ICD10_2010'), +('R30.9', 'Painful micturition, unspecified', 'ICD10_2010'), +('R31', 'Unspecified haematuria', 'ICD10_2010'), +('R32', 'Unspecified urinary incontinence', 'ICD10_2010'), +('R33', 'Retention of urine', 'ICD10_2010'), +('R34', 'Anuria and oliguria', 'ICD10_2010'), +('R35', 'Polyuria', 'ICD10_2010'), +('R36', 'Urethral discharge', 'ICD10_2010'), +('R39', 'Other symptoms and signs involving the urinary system', 'ICD10_2010'), +('R39.0', 'Extravasation of urine', 'ICD10_2010'), +('R39.1', 'Other difficulties with micturition', 'ICD10_2010'), +('R39.2', 'Extrarenal uraemia', 'ICD10_2010'), +('R39.8', 'Other and unspecified symptoms and signs involving urinary system', 'ICD10_2010'), +('R40', 'Somnolence, stupor and coma', 'ICD10_2010'), +('R40.0', 'Somnolence', 'ICD10_2010'), +('R40.1', 'Stupor', 'ICD10_2010'), +('R40.2', 'Coma, unspecified', 'ICD10_2010'), +('R41', 'Other symptoms and signs involving cognitive functions and awareness', 'ICD10_2010'), +('R41.0', 'Disorientation, unspecified', 'ICD10_2010'), +('R41.1', 'Anterograde amnesia', 'ICD10_2010'), +('R41.2', 'Retrograde amnesia', 'ICD10_2010'), +('R41.3', 'Other amnesia', 'ICD10_2010'), +('R41.8', 'Other and unspecified symptoms and signs involving cognitive functions and awareness', 'ICD10_2010'), +('R42', 'Dizziness and giddiness', 'ICD10_2010'), +('R43', 'Disturbances of smell and taste', 'ICD10_2010'), +('R43.0', 'Anosmia', 'ICD10_2010'), +('R43.1', 'Parosmia', 'ICD10_2010'), +('R43.2', 'Parageusia', 'ICD10_2010'), +('R43.8', 'Other and unspecified disturbances of smell and taste', 'ICD10_2010'), +('R44', 'Other symptoms and signs involving general sensations and perceptions', 'ICD10_2010'), +('R44.0', 'Auditory hallucinations', 'ICD10_2010'), +('R44.1', 'Visual hallucinations', 'ICD10_2010'), +('R44.2', 'Other hallucinations', 'ICD10_2010'), +('R44.3', 'Hallucinations, unspecified', 'ICD10_2010'), +('R44.8', 'Other and unspecified symptoms and signs involving general sensations and perceptions', 'ICD10_2010'), +('R45', 'Symptoms and signs involving emotional state', 'ICD10_2010'), +('R45.0', 'Nervousness', 'ICD10_2010'), +('R45.1', 'Restlessness and agitation', 'ICD10_2010'), +('R45.2', 'Unhappiness', 'ICD10_2010'), +('R45.3', 'Demoralization and apathy', 'ICD10_2010'), +('R45.4', 'Irritability and anger', 'ICD10_2010'), +('R45.5', 'Hostility', 'ICD10_2010'), +('R45.6', 'Physical violence', 'ICD10_2010'), +('R45.7', 'State of emotional shock and stress, unspecified', 'ICD10_2010'), +('R45.8', 'Other symptoms and signs involving emotional state', 'ICD10_2010'), +('R46', 'Symptoms and signs involving appearance and behaviour', 'ICD10_2010'), +('R46.0', 'Very low level of personal hygiene', 'ICD10_2010'), +('R46.1', 'Bizarre personal appearance', 'ICD10_2010'), +('R46.2', 'Strange and inexplicable behaviour', 'ICD10_2010'), +('R46.3', 'Overactivity', 'ICD10_2010'), +('R46.4', 'Slowness and poor responsiveness', 'ICD10_2010'), +('R46.5', 'Suspiciousness and marked evasiveness', 'ICD10_2010'), +('R46.6', 'Undue concern and preoccupation with stressful events', 'ICD10_2010'), +('R46.7', 'Verbosity and circumstantial detail obscuring reason for contact', 'ICD10_2010'), +('R46.8', 'Other symptoms and signs involving appearance and behaviour', 'ICD10_2010'), +('R47', 'Speech disturbances, not elsewhere classified', 'ICD10_2010'), +('R47.0', 'Dysphasia and aphasia', 'ICD10_2010'), +('R47.1', 'Dysarthria and anarthria', 'ICD10_2010'), +('R47.8', 'Other and unspecified speech disturbances', 'ICD10_2010'), +('R48', 'Dyslexia and other symbolic dysfunctions, not elsewhere classified', 'ICD10_2010'), +('R48.0', 'Dyslexia and alexia', 'ICD10_2010'), +('R48.1', 'Agnosia', 'ICD10_2010'), +('R48.2', 'Apraxia', 'ICD10_2010'), +('R48.8', 'Other and unspecified symbolic dysfunctions', 'ICD10_2010'), +('R49', 'Voice disturbances', 'ICD10_2010'), +('R49.0', 'Dysphonia', 'ICD10_2010'), +('R49.1', 'Aphonia', 'ICD10_2010'), +('R49.2', 'Hypernasality and hyponasality', 'ICD10_2010'), +('R49.8', 'Other and unspecified voice disturbances', 'ICD10_2010'), +('R50', 'Fever of other and unknown origin', 'ICD10_2010'), +('R50.2', 'Drug-induced fever', 'ICD10_2010'), +('R50.8', 'Other specified fever', 'ICD10_2010'), +('R50.9', 'Fever, unspecified', 'ICD10_2010'), +('R51', 'Headache', 'ICD10_2010'), +('R52', 'Pain, not elsewhere classified', 'ICD10_2010'), +('R52.0', 'Acute pain', 'ICD10_2010'), +('R52.1', 'Chronic intractable pain', 'ICD10_2010'), +('R52.2', 'Other chronic pain', 'ICD10_2010'), +('R52.9', 'Pain, unspecified', 'ICD10_2010'), +('R53', 'Malaise and fatigue', 'ICD10_2010'), +('R54', 'Senility', 'ICD10_2010'), +('R55', 'Syncope and collapse', 'ICD10_2010'), +('R56', 'Convulsions, not elsewhere classified', 'ICD10_2010'), +('R56.0', 'Febrile convulsions', 'ICD10_2010'), +('R56.8', 'Other and unspecified convulsions', 'ICD10_2010'), +('R57', 'Shock, not elsewhere classified', 'ICD10_2010'), +('R57.0', 'Cardiogenic shock', 'ICD10_2010'), +('R57.1', 'Hypovolaemic shock', 'ICD10_2010'), +('R57.2', 'Septic shock', 'ICD10_2010'), +('R57.8', 'Other shock', 'ICD10_2010'), +('R57.9', 'Shock, unspecified', 'ICD10_2010'), +('R58', 'Haemorrhage, not elsewhere classified', 'ICD10_2010'), +('R59', 'Enlarged lymph nodes', 'ICD10_2010'), +('R59.0', 'Localized enlarged lymph nodes', 'ICD10_2010'), +('R59.1', 'Generalized enlarged lymph nodes', 'ICD10_2010'), +('R59.9', 'Enlarged lymph nodes, unspecified', 'ICD10_2010'), +('R60', 'Oedema, not elsewhere classified', 'ICD10_2010'), +('R60.0', 'Localized oedema', 'ICD10_2010'), +('R60.1', 'Generalized oedema', 'ICD10_2010'), +('R60.9', 'Oedema, unspecified', 'ICD10_2010'), +('R61', 'Hyperhidrosis', 'ICD10_2010'), +('R61.0', 'Localized hyperhidrosis', 'ICD10_2010'), +('R61.1', 'Generalized hyperhidrosis', 'ICD10_2010'), +('R61.9', 'Hyperhidrosis, unspecified', 'ICD10_2010'), +('R62', 'Lack of expected normal physiological development', 'ICD10_2010'), +('R62.0', 'Delayed milestone', 'ICD10_2010'), +('R62.8', 'Other lack of expected normal physiological development', 'ICD10_2010'), +('R62.9', 'Lack of expected normal physiologic developmemnt unspecified', 'ICD10_2010'), +('R63', 'Symptoms and signs concerning food and fluid intake', 'ICD10_2010'), +('R63.0', 'Anorexia', 'ICD10_2010'), +('R63.1', 'Polydipsia', 'ICD10_2010'), +('R63.2', 'Polyphagia', 'ICD10_2010'), +('R63.3', 'Feeding difficulties and mismanagement', 'ICD10_2010'), +('R63.4', 'Abnormal weight loss', 'ICD10_2010'), +('R63.5', 'Abnormal weight gain', 'ICD10_2010'), +('R63.6', 'Insufficient intake of food and water due to self neglect', 'ICD10_2010'), +('R63.8', 'Other symptoms and signs concerning food and fluid intake', 'ICD10_2010'), +('R64', 'Cachexia', 'ICD10_2010'), +('R65', 'Systemic Inflammatory Response Syndrome [SIRS]', 'ICD10_2010'), +('R65.0', 'Systemic Inflammatory Response Syndrome of infectious origin without organ failure', 'ICD10_2010'), +('R65.1', 'Systemic Inflammatory Response Syndrome of infectious origin with organ failure', 'ICD10_2010'), +('R65.2', 'Systemic Inflammatory Response Syndrome of non-infectious origin without organ failure', 'ICD10_2010'), +('R65.3', 'Systemic Inflammatory Response Syndrome of non-infectious origin with organ failure', 'ICD10_2010'), +('R65.9', 'Systemic Inflammatory Response Syndrome, unspecified', 'ICD10_2010'), +('R68', 'Other general symptoms and signs', 'ICD10_2010'), +('R68.0', 'Hypothermia not associated with low environmental temperature', 'ICD10_2010'), +('R68.1', 'Nonspecific symptoms peculiar to infancy', 'ICD10_2010'), +('R68.2', 'Dry mouth, unspecified', 'ICD10_2010'), +('R68.3', 'Clubbing of fingers', 'ICD10_2010'), +('R68.8', 'Other specified general symptoms and signs', 'ICD10_2010'), +('R69', 'Unknown and unspecified causes of morbidity', 'ICD10_2010'), +('R70', 'Elevated erythrocyte sedimentation rate and abnormality of plasma viscosity', 'ICD10_2010'), +('R70.0', 'Elevated erythrocyte sedimentation rate', 'ICD10_2010'), +('R70.1', 'Abnormal plasma viscosity', 'ICD10_2010'), +('R71', 'Abnormality of red blood cells', 'ICD10_2010'), +('R72', 'Abnormality of white blood cells, not elsewhere classified', 'ICD10_2010'), +('R73', 'Elevated blood glucose level', 'ICD10_2010'), +('R73.0', 'Abnormal glucose tolerance test', 'ICD10_2010'), +('R73.9', 'Hyperglycaemia, unspecified', 'ICD10_2010'), +('R74', 'Abnormal serum enzyme levels', 'ICD10_2010'), +('R74.0', 'Elevated levels of transaminase & lactic acid dehydrogenase', 'ICD10_2010'), +('R74.8', 'Abnormal levels of other serum enzymes', 'ICD10_2010'), +('R74.9', 'Abnormal level of unspecified serum enzyme', 'ICD10_2010'), +('R75', 'Laboratory evidence of human immunodeficiency virus [hiv]', 'ICD10_2010'), +('R76', 'Other abnormal immunological findings in serum', 'ICD10_2010'), +('R76.0', 'Raised antibody titre', 'ICD10_2010'), +('R76.1', 'Abnormal reaction to tuberculin test', 'ICD10_2010'), +('R76.2', 'False-positive serological test for syphilis', 'ICD10_2010'), +('R76.8', 'Other specified abnormal immunological findings in serum', 'ICD10_2010'), +('R76.9', 'Abnormal immunological finding in serum, unspecified', 'ICD10_2010'), +('R77', 'Other abnormalities of plasma proteins', 'ICD10_2010'), +('R77.0', 'Abnormality of albumin', 'ICD10_2010'), +('R77.1', 'Abnormality of globulin', 'ICD10_2010'), +('R77.2', 'Abnormality of alphafetoprotein', 'ICD10_2010'), +('R77.8', 'Other specified abnormalities of plasma proteins', 'ICD10_2010'), +('R77.9', 'Abnormality of plasma protein, unspecified', 'ICD10_2010'), +('R78', 'Findings of drugs and other substances, not normally found in blood', 'ICD10_2010'), +('R78.0', 'Finding of alcohol in blood', 'ICD10_2010'), +('R78.1', 'Finding of opiate drug in blood', 'ICD10_2010'), +('R78.2', 'Finding of cocaine in blood', 'ICD10_2010'), +('R78.3', 'Finding of hallucinogen in blood', 'ICD10_2010'), +('R78.4', 'Finding of other drugs of addictive potential in blood', 'ICD10_2010'), +('R78.5', 'Finding of psychotropic drug in blood', 'ICD10_2010'), +('R78.6', 'Finding of steroid agent in blood', 'ICD10_2010'), +('R78.7', 'Finding of abnormal level of heavy metals in blood', 'ICD10_2010'), +('R78.8', 'Finding of other specified substance not normally found in blood', 'ICD10_2010'), +('R78.9', 'Finding of unspecified substance not normally found in blood', 'ICD10_2010'), +('R79', 'Other abnormal findings of blood chemistry', 'ICD10_2010'), +('R79.0', 'Abnormal level of blood mineral', 'ICD10_2010'), +('R79.8', 'Other specified abnormal findings of blood chemistry', 'ICD10_2010'), +('R79.9', 'Abnormal finding of blood chemistry, unspecified', 'ICD10_2010'), +('R80', 'Isolated proteinuria', 'ICD10_2010'), +('R81', 'Glycosuria', 'ICD10_2010'), +('R82', 'Other abnormal findings in urine', 'ICD10_2010'), +('R82.0', 'Chyluria', 'ICD10_2010'), +('R82.1', 'Myoglobinuria', 'ICD10_2010'), +('R82.2', 'Biliuria', 'ICD10_2010'), +('R82.3', 'Haemoglobinuria', 'ICD10_2010'), +('R82.4', 'Acetonuria', 'ICD10_2010'), +('R82.5', 'Elevated urine levels of drugs, medicaments and biolog substance', 'ICD10_2010'), +('R82.6', 'Abnormal urine levels of substance chiefly nonmedicinal as to sources', 'ICD10_2010'), +('R82.7', 'Abnormal findings on microbiological examination of urine', 'ICD10_2010'), +('R82.8', 'Abnormal find on cytological and histological examination of urine', 'ICD10_2010'), +('R82.9', 'Other and unspecified abnormal findings in urine', 'ICD10_2010'), +('R83', 'Abnormal findings in cerebrospinal fluid', 'ICD10_2010'), +('R83.0', 'Abnormal findings in cerebrospinal fluid, abnormal level of enzymes', 'ICD10_2010'), +('R83.1', 'Abnormal findings in cerebrospinal fluid, abnormal level of hormones', 'ICD10_2010'), +('R83.2', 'Abnormal findings in cerebrospinal fluid, abnormal level other drugs, medicaments and biological substance', 'ICD10_2010'), +('R83.3', 'Abnormal findings in cerebrospinal fluid, abnormal level substance chiefly nonmedicinal as to source', 'ICD10_2010'), +('R83.4', 'Abnormal findings in cerebrospinal fluid, abnormal immunological findings', 'ICD10_2010'), +('R83.5', 'Abnormal findings in cerebrospinal fluid, abnormal microbiological findings', 'ICD10_2010'), +('R83.6', 'Abnormal findings in cerebrospinal fluid, abnormal cytological findings', 'ICD10_2010'), +('R83.7', 'Abnormal findings in cerebrospinal fluid, abnormal histological findings', 'ICD10_2010'), +('R83.8', 'Abnormal findings in cerebrospinal fluid, other abnormal findings', 'ICD10_2010'), +('R83.9', 'Abnormal findings in cerebrospinal fluid, unspecified abnormal finding', 'ICD10_2010'), +('R84', 'Abnormal findings in specimens from respiratory organs and thorax', 'ICD10_2010'), +('R84.0', 'Abnormal findings in specimens from respiratory organs and thorax, abnormal level of enzymes', 'ICD10_2010'), +('R84.1', 'Abnormal findings in specimens from respiratory organs and thorax, abnormal level of hormones', 'ICD10_2010'), +('R84.2', 'Abnormal findings in specimens from respiratory organs and thorax, abnormal level other drugs, medicaments and biological substance', 'ICD10_2010'), +('R84.3', 'Abnormal findings in specimens from respiratory organs and thorax, abnormal level substance chiefly nonmedicinal as to source', 'ICD10_2010'), +('R84.4', 'Abnormal findings in specimens from respiratory organs and thorax, abnormal immunological findings', 'ICD10_2010'), +('R84.5', 'Abnormal findings in specimens from respiratory organs and thorax, abnormal microbiological findings', 'ICD10_2010'), +('R84.6', 'Abnormal findings in specimens from respiratory organs and thorax, abnormal cytological findings', 'ICD10_2010'), +('R84.7', 'Abnormal findings in specimens from respiratory organs and thorax, abnormal histological findings', 'ICD10_2010'), +('R84.8', 'Abnormal findings in specimens from respiratory organs and thorax, other abnormal findings', 'ICD10_2010'), +('R84.9', 'Abnormal findings in specimens from respiratory organs and thorax, unspecified abnormal finding', 'ICD10_2010'), +('R85', 'Abnormal findings in specimens from digestive organs and abdominal cavity', 'ICD10_2010'), +('R85.0', 'Abnormal finding in specimens from digestive organs and abnomoinal cavity, abnormal level of enzymes', 'ICD10_2010'), +('R85.1', 'Abnormal finding in specimens from digestive organs and abnomoinal cavity, abnormal level of hormones', 'ICD10_2010'), +('R85.2', 'Abnormal finding in specimens from digestive organs and abnomoinal cavity, abnormal level other drugs, medicaments and biological substance', 'ICD10_2010'), +('R85.3', 'Abnormal finding in specimens from digestive organs and abnomoinal cavity, abnormal level substance chiefly nonmedicinal as to source', 'ICD10_2010'), +('R85.4', 'Abnormal finding in specimens from digestive organs and abnomoinal cavity, abnormal immunological findings', 'ICD10_2010'), +('R85.5', 'Abnormal finding in specimens from digestive organs and abnomoinal cavity, abnormal microbiological findings', 'ICD10_2010'), +('R85.6', 'Abnormal finding in specimens from digestive organs and abnomoinal cavity, abnormal cytological findings', 'ICD10_2010'), +('R85.7', 'Abnormal finding in specimens from digestive organs and abnomoinal cavity, abnormal histological findings', 'ICD10_2010'), +('R85.8', 'Abnormal finding in specimens from digestive organs and abnomoinal cavity, other abnormal findings', 'ICD10_2010'), +('R85.9', 'Abnormal finding in specimens from digestive organs and abnomoinal cavity, unspecified abnormal finding', 'ICD10_2010'), +('R86', 'Abnormal findings in specimens from male genital organs', 'ICD10_2010'), +('R86.0', 'Abnormal findings in specimens from male genital organs, abnormal level of enzymes', 'ICD10_2010'), +('R86.1', 'Abnormal findings in specimens from male genital organs, abnormal level of hormones', 'ICD10_2010'), +('R86.2', 'Abnormal findings in specimens from male genital organs, abnormal level other drugs, medicaments and biological substance', 'ICD10_2010'), +('R86.3', 'Abnormal findings in specimens from male genital organs, abnormal level substance chiefly nonmedicinal as to source', 'ICD10_2010'), +('R86.4', 'Abnormal findings in specimens from male genital organs, abnormal immunological findings', 'ICD10_2010'), +('R86.5', 'Abnormal findings in specimens from male genital organs, abnormal microbiological findings', 'ICD10_2010'), +('R86.6', 'Abnormal findings in specimens from male genital organs, abnormal cytological findings', 'ICD10_2010'), +('R86.7', 'Abnormal findings in specimens from male genital organs, abnormal histological findings', 'ICD10_2010'), +('R86.8', 'Abnormal findings in specimens from male genital organs, other abnormal findings', 'ICD10_2010'), +('R86.9', 'Abnormal findings in specimens from male genital organs, unspecified abnormal finding', 'ICD10_2010'), +('R87', 'Abnormal findings in specimens from female genital organs', 'ICD10_2010'), +('R87.0', 'Abnormal findings in specimens from famale genital organs, abnormal level of enzymes', 'ICD10_2010'), +('R87.1', 'Abnormal findings in specimens from famale genital organs, abnormal level of hormones', 'ICD10_2010'), +('R87.2', 'Abnormal findings in specimens from famale genital organs, abnormal level other drugs, medicaments and biological substance', 'ICD10_2010'), +('R87.3', 'Abnormal findings in specimens from famale genital organs, abnormal level substance chiefly nonmedicinal as to source', 'ICD10_2010'), +('R87.4', 'Abnormal findings in specimens from famale genital organs, abnormal immunological findings', 'ICD10_2010'), +('R87.5', 'Abnormal findings in specimens from famale genital organs, abnormal microbiological findings', 'ICD10_2010'), +('R87.6', 'Abnormal findings in specimens from famale genital organs, abnormal cytological findings', 'ICD10_2010'), +('R87.7', 'Abnormal findings in specimens from famale genital organs, abnormal histological findings', 'ICD10_2010'), +('R87.8', 'Abnormal findings in specimens from famale genital organs, other abnormal findings', 'ICD10_2010'), +('R87.9', 'Abnormal findings in specimens from famale genital organs, unspecified abnormal finding', 'ICD10_2010'), +('R89', 'Abnormal findings in specimens from other organs, systems and tissues', 'ICD10_2010'), +('R89.0', 'Abnormal findings in specimens from other organs,systems and tissue, abnormal level of enzymes', 'ICD10_2010'), +('R89.1', 'Abnormal findings in specimens from other organs,systems and tissue, abnormal level of hormones', 'ICD10_2010'), +('R89.2', 'Abnormal findings in specimens from other organs,systems and tissue, abnormal level other drugs, medicaments and biological substance', 'ICD10_2010'), +('R89.3', 'Abnormal findings in specimens from other organs,systems and tissue, abnormal level substance chiefly nonmedicinal as to source', 'ICD10_2010'), +('R89.4', 'Abnormal findings in specimens from other organs,systems and tissue, abnormal immunological findings', 'ICD10_2010'), +('R89.5', 'Abnormal findings in specimens from other organs,systems and tissue, abnormal microbiological findings', 'ICD10_2010'), +('R89.6', 'Abnormal findings in specimens from other organs,systems and tissue, abnormal cytological findings', 'ICD10_2010'), +('R89.7', 'Abnormal findings in specimens from other organs,systems and tissue, abnormal histological findings', 'ICD10_2010'), +('R89.8', 'Abnormal findings in specimens from other organs,systems and tissue, other abnormal findings', 'ICD10_2010'), +('R89.9', 'Abnormal findings in specimens from other organs,systems and tissue, unspecified abnormal finding', 'ICD10_2010'), +('R90', 'Abnormal findings on diagnostic imaging of central nervous system', 'ICD10_2010'), +('R90.0', 'Intracranial space-occupying lesion', 'ICD10_2010'), +('R90.8', 'Other abnormal findings on diagnostic imaging of central nervous system', 'ICD10_2010'), +('R91', 'Abnormal findings on diagnostic imaging of lung', 'ICD10_2010'), +('R92', 'Abnormal findings on diagnostic imaging of breast', 'ICD10_2010'), +('R93', 'Abnormal findings on diagnostic imaging of other body structures', 'ICD10_2010'), +('R93.0', 'Abnormal findings on diagnostic imaging of skull and head NEC', 'ICD10_2010'), +('R93.1', 'Abnormal findings on diagnostic imaging of heart and coronary circulation', 'ICD10_2010'), +('R93.2', 'Abnormal findings diagnostic imaging of liver and biliary tract', 'ICD10_2010'), +('R93.3', 'Abnormal findings diagnostic imaging of other parts of digestive tract', 'ICD10_2010'), +('R93.4', 'Abnormal findings on diagnostic imaging of urinary organs', 'ICD10_2010'), +('R93.5', 'Abnormal findings on diagnostic imaging of other abdominal regions, including retroperitoneum', 'ICD10_2010'), +('R93.6', 'Abnormal findings on diagnostic imaging of limbs', 'ICD10_2010'), +('R93.7', 'Abnormal findings on diagnostic imaging of other parts of musculoskeletal system', 'ICD10_2010'), +('R93.8', 'Abnormal findings on diagnostic imaging of other specified body structures', 'ICD10_2010'), +('R94', 'Abnormal results of function studies', 'ICD10_2010'), +('R94.0', 'Abnormal results of function studies of central nervous system', 'ICD10_2010'), +('R94.1', 'Abnormal results function studies peripheral nervous system special senses', 'ICD10_2010'), +('R94.2', 'Abnormal results of pulmonary function studies', 'ICD10_2010'), +('R94.3', 'Abnormal results of cardiovascular function studies', 'ICD10_2010'), +('R94.4', 'Abnormal results of kidney function studies', 'ICD10_2010'), +('R94.5', 'Abnormal results of liver function studies', 'ICD10_2010'), +('R94.6', 'Abnormal results of thyroid function studies', 'ICD10_2010'), +('R94.7', 'Abnormal results of other endocrine function studies', 'ICD10_2010'), +('R94.8', 'Abnormal results of function studies of other organs and systems', 'ICD10_2010'), +('R95', 'Sudden infant death syndrome', 'ICD10_2010'), +('R96', 'Other sudden death, cause unknown', 'ICD10_2010'), +('R96.0', 'Instantaneous death', 'ICD10_2010'), +('R96.1', 'Death occurring less than 24 hr from onset symptoms not otherwise explained', 'ICD10_2010'), +('R98', 'Unattended death', 'ICD10_2010'), +('R99', 'Other ill-defined and unspecified cause of mortality', 'ICD10_2010'), +('S00', 'Superficial injury of head', 'ICD10_2010'), +('S00.0', 'Superficial injury of scalp', 'ICD10_2010'), +('S00.1', 'Contusion of eyelid and periocular area', 'ICD10_2010'), +('S00.2', 'Other superficial injuries of eyelid and periocular area', 'ICD10_2010'), +('S00.3', 'Superficial injury of nose', 'ICD10_2010'), +('S00.4', 'Superficial injury of ear', 'ICD10_2010'), +('S00.5', 'Superficial injury of lip and oral cavity', 'ICD10_2010'), +('S00.7', 'Multiple superficial injuries of head', 'ICD10_2010'), +('S00.8', 'Superficial injury of other parts of head', 'ICD10_2010'), +('S00.9', 'Superficial injury of head, part unspecified', 'ICD10_2010'), +('S01', 'Open wound of head', 'ICD10_2010'), +('S01.0', 'Open wound of scalp', 'ICD10_2010'), +('S01.1', 'Open wound of eyelid and periocular area', 'ICD10_2010'), +('S01.2', 'Open wound of nose', 'ICD10_2010'), +('S01.3', 'Open wound of ear', 'ICD10_2010'), +('S01.4', 'Open wound of cheek and temporomandibular area', 'ICD10_2010'), +('S01.5', 'Open wound of lip and oral cavity', 'ICD10_2010'), +('S01.7', 'Multiple open wounds of head', 'ICD10_2010'), +('S01.8', 'Open wound of other parts of head', 'ICD10_2010'), +('S01.9', 'Open wound of head, part unspecified', 'ICD10_2010'), +('S02', 'Fracture of skull and facial bones', 'ICD10_2010'), +('S02.0', 'Fracture of vault of skull', 'ICD10_2010'), +('S02.00', 'Fracture of vault of skull, closed', 'ICD10_2010'), +('S02.01', 'Fracture of vault of skull, open', 'ICD10_2010'), +('S02.1', 'Fracture of base of skull', 'ICD10_2010'), +('S02.10', 'Fracture of base of skull, closed', 'ICD10_2010'), +('S02.11', 'Fracture of base of skull, open', 'ICD10_2010'), +('S02.2', 'Fracture of nasal bones', 'ICD10_2010'), +('S02.20', 'Fracture of nasal bones, closed', 'ICD10_2010'), +('S02.21', 'Fracture of nasal bones, open', 'ICD10_2010'), +('S02.3', 'Fracture of orbital floor', 'ICD10_2010'), +('S02.30', 'Fracture of orbital floor, closed', 'ICD10_2010'), +('S02.31', 'Fracture of orbital floor, open', 'ICD10_2010'), +('S02.4', 'Fracture of malar and maxillary bones', 'ICD10_2010'), +('S02.40', 'Fracture of malar and maxillary bones, closed', 'ICD10_2010'), +('S02.41', 'Fracture of malar and maxillary bones, open', 'ICD10_2010'), +('S02.5', 'Fracture of tooth', 'ICD10_2010'), +('S02.50', 'Fracture of tooth, closed', 'ICD10_2010'), +('S02.51', 'Fracture of tooth, open', 'ICD10_2010'), +('S02.6', 'Fracture of mandible', 'ICD10_2010'), +('S02.60', 'Fracture of mandible, closed', 'ICD10_2010'), +('S02.61', 'Fracture of mandible, open', 'ICD10_2010'), +('S02.7', 'Multiple fractures involving skull and facial bones', 'ICD10_2010'), +('S02.70', 'Multiple fractures involving skull and facial bones, closed', 'ICD10_2010'), +('S02.71', 'Multiple fractures involving skull and facial bones, open', 'ICD10_2010'), +('S02.8', 'Fractures of other skull and facial bones', 'ICD10_2010'), +('S02.80', 'Fractures of other skull and facial bones, closed', 'ICD10_2010'), +('S02.81', 'Fractures of other skull and facial bones, open', 'ICD10_2010'); +INSERT INTO `icd10` (`ID_ICD10`, `Diagnosa`, `Versi_ICD10`) VALUES +('S02.9', 'Fracture of skull and facial bones, part unspecified', 'ICD10_2010'), +('S02.90', 'Fracture of skull and facial bones, part unspecified, closed', 'ICD10_2010'), +('S02.91', 'Fracture of skull and facial bones, part unspecified, open', 'ICD10_2010'), +('S03', 'Dislocation, sprain and strain of joints and ligaments of head', 'ICD10_2010'), +('S03.0', 'Dislocation of jaw', 'ICD10_2010'), +('S03.1', 'Dislocation of septal cartilage of nose', 'ICD10_2010'), +('S03.2', 'Dislocation of tooth', 'ICD10_2010'), +('S03.3', 'Dislocation of other and unspecified parts of head', 'ICD10_2010'), +('S03.4', 'Sprain and strain of jaw', 'ICD10_2010'), +('S03.5', 'Sprain and strain joints ligs other and unspec parts head', 'ICD10_2010'), +('S04', 'Injury of cranial nerves', 'ICD10_2010'), +('S04.0', 'Injury of optic nerve and pathways', 'ICD10_2010'), +('S04.1', 'Injury of oculomotor nerve', 'ICD10_2010'), +('S04.2', 'Injury of trochlear nerve', 'ICD10_2010'), +('S04.3', 'Injury of trigeminal nerve', 'ICD10_2010'), +('S04.4', 'Injury of abducent nerve', 'ICD10_2010'), +('S04.5', 'Injury of facial nerve', 'ICD10_2010'), +('S04.6', 'Injury of acoustic nerve', 'ICD10_2010'), +('S04.7', 'Injury of accessory nerve', 'ICD10_2010'), +('S04.8', 'Injury of other cranial nerves', 'ICD10_2010'), +('S04.9', 'Injury of unspecified cranial nerve', 'ICD10_2010'), +('S05', 'Injury of eye and orbit', 'ICD10_2010'), +('S05.0', 'Injury conjunctiva corneal abras without ment foreign body', 'ICD10_2010'), +('S05.1', 'Contusion of eyeball and orbital tissues', 'ICD10_2010'), +('S05.2', 'Ocular lacn and rupture with prolapse or loss intraoc tiss', 'ICD10_2010'), +('S05.3', 'Ocular lacn without prolapse or loss of intraocular tissue', 'ICD10_2010'), +('S05.4', 'Penetrating wound of orbit with or without foreign body', 'ICD10_2010'), +('S05.5', 'Penetrating wound of eyeball with foreign body', 'ICD10_2010'), +('S05.6', 'Penetrating wound of eyeball without foreign body', 'ICD10_2010'), +('S05.7', 'Avulsion of eye', 'ICD10_2010'), +('S05.8', 'Other injuries of eye and orbit', 'ICD10_2010'), +('S05.9', 'Injury of eye and orbit, unspecified', 'ICD10_2010'), +('S06', 'Intracranial injury', 'ICD10_2010'), +('S06.0', 'Concussion', 'ICD10_2010'), +('S06.00', 'Concussion, without open intracranial wound', 'ICD10_2010'), +('S06.01', 'Concussion, with open intracranial wound', 'ICD10_2010'), +('S06.1', 'Traumatic cerebral oedema', 'ICD10_2010'), +('S06.10', 'Traumatic cerebral oedema, without open intracranial wound', 'ICD10_2010'), +('S06.11', 'Traumatic cerebral oedema, with open intracranial wound', 'ICD10_2010'), +('S06.2', 'Diffuse brain injury', 'ICD10_2010'), +('S06.20', 'Diffuse brain injury, without open intracranial wound', 'ICD10_2010'), +('S06.21', 'Diffuse brain injury, with open intracranial wound', 'ICD10_2010'), +('S06.3', 'Focal brain injury', 'ICD10_2010'), +('S06.30', 'Focal brain injury, without open intracranial wound', 'ICD10_2010'), +('S06.31', 'Focal brain injury, with open intracranial wound', 'ICD10_2010'), +('S06.4', 'Epidural haemorrhage', 'ICD10_2010'), +('S06.40', 'Epidural haemorrhage, without open intracranial wound', 'ICD10_2010'), +('S06.41', 'Epidural haemorrhage, with open intracranial wound', 'ICD10_2010'), +('S06.5', 'Traumatic subdural haemorrhage', 'ICD10_2010'), +('S06.50', 'Traumatic subdural haemorrhage, without open intracranial wound', 'ICD10_2010'), +('S06.51', 'Traumatic subdural haemorrhage, with open intracranial wound', 'ICD10_2010'), +('S06.6', 'Traumatic subarachnoid haemorrhage', 'ICD10_2010'), +('S06.60', 'Traumatic subarachnoid haemorrhage, without open intracranial wound', 'ICD10_2010'), +('S06.61', 'Traumatic subarachnoid haemorrhage, with open intracranial wound', 'ICD10_2010'), +('S06.7', 'Intracranial injury with prolonged coma', 'ICD10_2010'), +('S06.70', 'Intracranial injury with prolonged coma, without open intracranial wound', 'ICD10_2010'), +('S06.71', 'Intracranial injury with prolonged coma, with open intracranial wound', 'ICD10_2010'), +('S06.8', 'Other intracranial injuries', 'ICD10_2010'), +('S06.80', 'Other intracranial injuries, without open intracranial wound', 'ICD10_2010'), +('S06.81', 'Other intracranial injuries, with open intracranial wound', 'ICD10_2010'), +('S06.9', 'Intracranial injury, unspecified', 'ICD10_2010'), +('S06.90', 'Intracranial injury, unspecified, without open intracranial wound', 'ICD10_2010'), +('S06.91', 'Intracranial injury, unspecified, with open intracranial wound', 'ICD10_2010'), +('S07', 'Crushing injury of head', 'ICD10_2010'), +('S07.0', 'Crushing injury of face', 'ICD10_2010'), +('S07.1', 'Crushing injury of skull', 'ICD10_2010'), +('S07.8', 'Crushing injury of other parts of head', 'ICD10_2010'), +('S07.9', 'Crushing injury of head, part unspecified', 'ICD10_2010'), +('S08', 'Traumatic amputation of part of head', 'ICD10_2010'), +('S08.0', 'Avulsion of scalp', 'ICD10_2010'), +('S08.1', 'Traumatic amputation of ear', 'ICD10_2010'), +('S08.8', 'Traumatic amputation of other parts of head', 'ICD10_2010'), +('S08.9', 'Traumatic amputation of unspecified part of head', 'ICD10_2010'), +('S09', 'Other and unspecified injuries of head', 'ICD10_2010'), +('S09.0', 'Injury of blood vessels of head, not elsewhere classified', 'ICD10_2010'), +('S09.1', 'Injury of muscle and tendon of head', 'ICD10_2010'), +('S09.2', 'Traumatic rupture of ear drum', 'ICD10_2010'), +('S09.7', 'Multiple injuries of head', 'ICD10_2010'), +('S09.8', 'Other specified injuries of head', 'ICD10_2010'), +('S09.9', 'Unspecified injury of head', 'ICD10_2010'), +('S10', 'Superficial injury of neck', 'ICD10_2010'), +('S10.0', 'Contusion of throat', 'ICD10_2010'), +('S10.1', 'Other and unspecified superficial injuries of throat', 'ICD10_2010'), +('S10.7', 'Multiple superficial injuries of neck', 'ICD10_2010'), +('S10.8', 'Superficial injury of other parts of neck', 'ICD10_2010'), +('S10.9', 'Superficial injury of neck, part unspecified', 'ICD10_2010'), +('S11', 'Open wound of neck', 'ICD10_2010'), +('S11.0', 'Open wound involving larynx and trachea', 'ICD10_2010'), +('S11.1', 'Open wound involving thyroid gland', 'ICD10_2010'), +('S11.2', 'Open wound involving pharynx and cervical oesophagus', 'ICD10_2010'), +('S11.7', 'Multiple open wounds of neck', 'ICD10_2010'), +('S11.8', 'Open wound of other parts of neck', 'ICD10_2010'), +('S11.9', 'Open wound of neck, part unspecified', 'ICD10_2010'), +('S12', 'Fracture of neck', 'ICD10_2010'), +('S12.0', 'Fracture of first cervical vertebra', 'ICD10_2010'), +('S12.00', 'Fracture of first cervical vertebra, closed', 'ICD10_2010'), +('S12.01', 'Fracture of first cervical vertebra, open', 'ICD10_2010'), +('S12.1', 'Fracture of second cervical vertebra', 'ICD10_2010'), +('S12.10', 'Fracture of second cervical vertebra, closed', 'ICD10_2010'), +('S12.11', 'Fracture of second cervical vertebra, open', 'ICD10_2010'), +('S12.2', 'Fracture of other specified cervical vertebra', 'ICD10_2010'), +('S12.20', 'Fracture of other specified cervical vertebra, closed', 'ICD10_2010'), +('S12.21', 'Fracture of other specified cervical vertebra, open', 'ICD10_2010'), +('S12.7', 'Multiple fractures of cervical spine', 'ICD10_2010'), +('S12.70', 'Multiple fractures of cervical spine, closed', 'ICD10_2010'), +('S12.71', 'Multiple fractures of cervical spine, open', 'ICD10_2010'), +('S12.8', 'Fracture of other parts of neck', 'ICD10_2010'), +('S12.80', 'Fracture of other parts of neck, closed', 'ICD10_2010'), +('S12.81', 'Fracture of other parts of neck, open', 'ICD10_2010'), +('S12.9', 'Fracture of neck, part unspecified', 'ICD10_2010'), +('S12.90', 'Fracture of neck, part unspecified, closed', 'ICD10_2010'), +('S12.91', 'Fracture of neck, part unspecified, open', 'ICD10_2010'), +('S13', 'Dislocation, sprain and strain of joints and ligaments at neck level', 'ICD10_2010'), +('S13.0', 'Traumatic rupture of cervical intervertebral disc', 'ICD10_2010'), +('S13.1', 'Dislocation of cervical vertebra', 'ICD10_2010'), +('S13.2', 'Dislocation of other and unspecified parts of neck', 'ICD10_2010'), +('S13.3', 'Multiple dislocations of neck', 'ICD10_2010'), +('S13.4', 'Sprain and strain of cervical spine', 'ICD10_2010'), +('S13.5', 'Sprain and strain of thyroid region', 'ICD10_2010'), +('S13.6', 'Sprain and strain of joints and ligaments of other and unspecified parts of neck', 'ICD10_2010'), +('S14', 'Injury of nerves and spinal cord at neck level', 'ICD10_2010'), +('S14.0', 'Concussion and oedema of cervical spinal cord', 'ICD10_2010'), +('S14.1', 'Other and unspecified injuries of cervical spinal cord', 'ICD10_2010'), +('S14.2', 'Injury of nerve root of cervical spine', 'ICD10_2010'), +('S14.3', 'Injury of brachial plexus', 'ICD10_2010'), +('S14.4', 'Injury of peripheral nerves of neck', 'ICD10_2010'), +('S14.5', 'Injury of cervical sympathetic nerves', 'ICD10_2010'), +('S14.6', 'Injury of other and unspecified nerves of neck', 'ICD10_2010'), +('S15', 'Injury of blood vessels at neck level', 'ICD10_2010'), +('S15.0', 'Injury of carotid artery', 'ICD10_2010'), +('S15.1', 'Injury of vertebral artery', 'ICD10_2010'), +('S15.2', 'Injury of external jugular vein', 'ICD10_2010'), +('S15.3', 'Injury of internal jugular vein', 'ICD10_2010'), +('S15.7', 'Injury of multiple blood vessels at neck level', 'ICD10_2010'), +('S15.8', 'Injury of other blood vessels at neck level', 'ICD10_2010'), +('S15.9', 'Injury of unspecified blood vessel at neck level', 'ICD10_2010'), +('S16', 'Injury of muscle and tendon at neck level', 'ICD10_2010'), +('S17', 'Crushing injury of neck', 'ICD10_2010'), +('S17.0', 'Crushing injury of larynx and trachea', 'ICD10_2010'), +('S17.8', 'Crushing injury of other parts of neck', 'ICD10_2010'), +('S17.9', 'Crushing injury of neck, part unspecified', 'ICD10_2010'), +('S18', 'Traumatic amputation at neck level', 'ICD10_2010'), +('S19', 'Other and unspecified injuries of neck', 'ICD10_2010'), +('S19.7', 'Multiple injuries of neck', 'ICD10_2010'), +('S19.8', 'Other specified injuries of neck', 'ICD10_2010'), +('S19.9', 'Unspecified injury of neck', 'ICD10_2010'), +('S20', 'Superficial injury of thorax', 'ICD10_2010'), +('S20.0', 'Contusion of breast', 'ICD10_2010'), +('S20.1', 'Other and unspecified superficial injuries of breast', 'ICD10_2010'), +('S20.2', 'Contusion of thorax', 'ICD10_2010'), +('S20.3', 'Other superficial injuries of front wall of thorax', 'ICD10_2010'), +('S20.4', 'Other superficial injuries of back wall of thorax', 'ICD10_2010'), +('S20.7', 'Multiple superficial injuries of thorax', 'ICD10_2010'), +('S20.8', 'Superficial injury of other and unspecified parts of thorax', 'ICD10_2010'), +('S21', 'Open wound of thorax', 'ICD10_2010'), +('S21.0', 'Open wound of breast', 'ICD10_2010'), +('S21.1', 'Open wound of front wall of thorax', 'ICD10_2010'), +('S21.2', 'Open wound of back wall of thorax', 'ICD10_2010'), +('S21.7', 'Multiple open wounds of thoracic wall', 'ICD10_2010'), +('S21.8', 'Open wound of other parts of thorax', 'ICD10_2010'), +('S21.9', 'Open wound of thorax, part unspecified', 'ICD10_2010'), +('S22', 'Fracture of rib(s), sternum and thoracic spine', 'ICD10_2010'), +('S22.0', 'Fracture of thoracic vertebra', 'ICD10_2010'), +('S22.00', 'Fracture of thoracic vertebra, closed', 'ICD10_2010'), +('S22.01', 'Fracture of thoracic vertebra, open', 'ICD10_2010'), +('S22.1', 'Multiple fractures of thoracic spine', 'ICD10_2010'), +('S22.10', 'Multiple fractures of thoracic spine, closed', 'ICD10_2010'), +('S22.11', 'Multiple fractures of thoracic spine, open', 'ICD10_2010'), +('S22.2', 'Fracture of sternum', 'ICD10_2010'), +('S22.20', 'Fracture of sternum, closed', 'ICD10_2010'), +('S22.21', 'Fracture of sternum, open', 'ICD10_2010'), +('S22.3', 'Fracture of rib', 'ICD10_2010'), +('S22.30', 'Fracture of rib, closed', 'ICD10_2010'), +('S22.31', 'Fracture of rib, open', 'ICD10_2010'), +('S22.4', 'Multiple fractures of ribs', 'ICD10_2010'), +('S22.40', 'Multiple fractures of ribs, closed', 'ICD10_2010'), +('S22.41', 'Multiple fractures of ribs, open', 'ICD10_2010'), +('S22.5', 'Flail chest', 'ICD10_2010'), +('S22.50', 'Flail chest, closed', 'ICD10_2010'), +('S22.51', 'Flail chest, open', 'ICD10_2010'), +('S22.8', 'Fracture of other parts of bony thorax', 'ICD10_2010'), +('S22.80', 'Fracture of other parts of bony thorax, closed', 'ICD10_2010'), +('S22.81', 'Fracture of other parts of bony thorax, open', 'ICD10_2010'), +('S22.9', 'Fracture of bony thorax, part unspecified', 'ICD10_2010'), +('S22.90', 'Fracture of bony thorax, part unspecified, closed', 'ICD10_2010'), +('S22.91', 'Fracture of bony thorax, part unspecified, open', 'ICD10_2010'), +('S23', 'Dislocation, sprain and strain of joints and ligaments of thorax', 'ICD10_2010'), +('S23.0', 'Traumatic rupture of thoracic intervertebral disc', 'ICD10_2010'), +('S23.1', 'Dislocation of thoracic vertebra', 'ICD10_2010'), +('S23.2', 'Dislocation of other and unspecified parts of thorax', 'ICD10_2010'), +('S23.3', 'Sprain and strain of thoracic spine', 'ICD10_2010'), +('S23.4', 'Sprain and strain of ribs and sternum', 'ICD10_2010'), +('S23.5', 'Sprain and strain of other and unspecified parts of thorax', 'ICD10_2010'), +('S24', 'Injury of nerves and spinal cord at thorax level', 'ICD10_2010'), +('S24.0', 'Concussion and oedema of thoracic spinal cord', 'ICD10_2010'), +('S24.1', 'Other and unspecified injuries of thoracic spinal cord', 'ICD10_2010'), +('S24.2', 'Injury of nerve root of thoracic spine', 'ICD10_2010'), +('S24.3', 'Injury of peripheral nerves of thorax', 'ICD10_2010'), +('S24.4', 'Injury of thoracic sympathetic nerves', 'ICD10_2010'), +('S24.5', 'Injury of other nerves of thorax', 'ICD10_2010'), +('S24.6', 'Injury of unspecified nerve of thorax', 'ICD10_2010'), +('S25', 'Injury of blood vessels of thorax', 'ICD10_2010'), +('S25.0', 'Injury of thoracic aorta', 'ICD10_2010'), +('S25.1', 'Injury of innominate or subclavian artery', 'ICD10_2010'), +('S25.2', 'Injury of superior vena cava', 'ICD10_2010'), +('S25.3', 'Injury of innominate or subclavian vein', 'ICD10_2010'), +('S25.4', 'Injury of pulmonary blood vessels', 'ICD10_2010'), +('S25.5', 'Injury of intercostal blood vessels', 'ICD10_2010'), +('S25.7', 'Injury of multiple blood vessels of thorax', 'ICD10_2010'), +('S25.8', 'Injury of other blood vessels of thorax', 'ICD10_2010'), +('S25.9', 'Injury of unspecified blood vessel of thorax', 'ICD10_2010'), +('S26', 'Injury of heart', 'ICD10_2010'), +('S26.0', 'Injury of heart with haemopericardium', 'ICD10_2010'), +('S26.00', 'Injury of heart with haemopericardium, without open wound into thoracic cavity', 'ICD10_2010'), +('S26.01', 'Injury of heart with haemopericardium, with open wound into thoracic cavity', 'ICD10_2010'), +('S26.8', 'Other injuries of heart', 'ICD10_2010'), +('S26.80', 'Other injuries of heart, without open wound into thoracic cavity', 'ICD10_2010'), +('S26.81', 'Other injuries of heart, with open wound into thoracic cavity', 'ICD10_2010'), +('S26.9', 'Injury of heart, unspecified', 'ICD10_2010'), +('S26.90', 'Injury of heart, unspecified, withoutopen wound into thoracic cavity', 'ICD10_2010'), +('S26.91', 'Injury of heart, unspecified, with open wound into thoracic cavity', 'ICD10_2010'), +('S27', 'Injury of other and unspecified intrathoracic organs', 'ICD10_2010'), +('S27.0', 'Traumatic pneumothorax', 'ICD10_2010'), +('S27.00', 'Traumatic pneumothorax, without open wound into thoracic cavity', 'ICD10_2010'), +('S27.01', 'Traumatic pneumothorax, with open wound into thoracic cavity', 'ICD10_2010'), +('S27.1', 'Traumatic haemothorax', 'ICD10_2010'), +('S27.10', 'Traumatic haemothorax, without open wound into thoracic cavity', 'ICD10_2010'), +('S27.11', 'Traumatic haemothorax, with open wound into thoracic cavity', 'ICD10_2010'), +('S27.2', 'Traumatic haemopneumothorax', 'ICD10_2010'), +('S27.20', 'Traumatic haemopneumothorax, without open wound into thoracic cavity', 'ICD10_2010'), +('S27.21', 'Traumatic haemopneumothorax, with open wound into thoracic cavity', 'ICD10_2010'), +('S27.3', 'Other injuries of lung', 'ICD10_2010'), +('S27.30', 'Other injuries of lung, without open wound into thoracic cavity', 'ICD10_2010'), +('S27.31', 'Other injuries of lung, with open wound into thoracic cavity', 'ICD10_2010'), +('S27.4', 'Injury of bronchus', 'ICD10_2010'), +('S27.40', 'Injury of bronchus, without open wound into thoracic cavity', 'ICD10_2010'), +('S27.41', 'Injury of bronchus, with open wound into thoracic cavity', 'ICD10_2010'), +('S27.5', 'Injury of thoracic trachea', 'ICD10_2010'), +('S27.50', 'Injury of thoracic trachea, without open wound into thoracic cavity', 'ICD10_2010'), +('S27.51', 'Injury of thoracic trachea, with open wound into thoracic cavity', 'ICD10_2010'), +('S27.6', 'Injury of pleura', 'ICD10_2010'), +('S27.60', 'Injury of pleura, without open wound into thoracic cavity', 'ICD10_2010'), +('S27.61', 'Injury of pleura, with open wound into thoracic cavity', 'ICD10_2010'), +('S27.7', 'Multiple injuries of intrathoracic organs', 'ICD10_2010'), +('S27.70', 'Multiple injuries of intrathoracic organs, without open wound into thoracic cavity', 'ICD10_2010'), +('S27.71', 'Multiple injuries of intrathoracic organs, with open wound into thoracic cavity', 'ICD10_2010'), +('S27.8', 'Injury of other specified intrathoracic organs', 'ICD10_2010'), +('S27.80', 'Injury of other specified intrathoracic organs, without open wound into thoracic cavity', 'ICD10_2010'), +('S27.81', 'Injury of other specified intrathoracic organs, with open wound into thoracic cavity', 'ICD10_2010'), +('S27.9', 'Injury of unspecified intrathoracic organ', 'ICD10_2010'), +('S27.90', 'Injury of unspecified intrathoracic organ, without open wound into thoracic cavity', 'ICD10_2010'), +('S27.91', 'Injury of unspecified intrathoracic organ, with open wound into thoracic cavity', 'ICD10_2010'), +('S28', 'Crushing injury of thorax and traumatic amputation of part of thorax', 'ICD10_2010'), +('S28.0', 'Crushed chest', 'ICD10_2010'), +('S28.1', 'Traumatic amputation of part of thorax', 'ICD10_2010'), +('S29', 'Other and unspecified injuries of thorax', 'ICD10_2010'), +('S29.0', 'Injury of muscle and tendon at thorax level', 'ICD10_2010'), +('S29.7', 'Multiple injuries of thorax', 'ICD10_2010'), +('S29.8', 'Other specified injuries of thorax', 'ICD10_2010'), +('S29.9', 'Unspecified injury of thorax', 'ICD10_2010'), +('S30', 'Superficial injury of abdomen, lower back and pelvis', 'ICD10_2010'), +('S30.0', 'Contusion of lower back and pelvis', 'ICD10_2010'), +('S30.1', 'Contusion of abdominal wall', 'ICD10_2010'), +('S30.2', 'Contusion of external genital organs', 'ICD10_2010'), +('S30.7', 'Multiple superficial injuries of abdomen lower back and pelvis', 'ICD10_2010'), +('S30.8', 'Other superficial injuries of abdomen, lower back and pelvis', 'ICD10_2010'), +('S30.9', 'Superficial injury of abdomen lower back and pelvis, part unspecified', 'ICD10_2010'), +('S31', 'Open wound of abdomen, lower back and pelvis', 'ICD10_2010'), +('S31.0', 'Open wound of lower back and pelvis', 'ICD10_2010'), +('S31.1', 'Open wound of abdominal wall', 'ICD10_2010'), +('S31.2', 'Open wound of penis', 'ICD10_2010'), +('S31.3', 'Open wound of scrotum and testes', 'ICD10_2010'), +('S31.4', 'Open wound of vagina and vulva', 'ICD10_2010'), +('S31.5', 'Open wound of other and unspecified external genital organs', 'ICD10_2010'), +('S31.7', 'Multiple open wounds of abdomen, lower back and pelvis', 'ICD10_2010'), +('S31.8', 'Open wound of other and unspecified parts of abdomen', 'ICD10_2010'), +('S32', 'Fracture of lumbar spine and pelvis', 'ICD10_2010'), +('S32.0', 'Fracture of lumbar vertebra', 'ICD10_2010'), +('S32.00', 'Fracture of lumbar vertebra, closed', 'ICD10_2010'), +('S32.01', 'Fracture of lumbar vertebra, open', 'ICD10_2010'), +('S32.1', 'Fracture of sacrum', 'ICD10_2010'), +('S32.10', 'Fracture of sacrum, closed', 'ICD10_2010'), +('S32.11', 'Fracture of sacrum, open', 'ICD10_2010'), +('S32.2', 'Fracture of coccyx', 'ICD10_2010'), +('S32.20', 'Fracture of coccyx, closed', 'ICD10_2010'), +('S32.21', 'Fracture of coccyx, open', 'ICD10_2010'), +('S32.3', 'Fracture of ilium', 'ICD10_2010'), +('S32.30', 'Fracture of ilium, closed', 'ICD10_2010'), +('S32.31', 'Fracture of ilium, open', 'ICD10_2010'), +('S32.4', 'Fracture of acetabulum', 'ICD10_2010'), +('S32.40', 'Fracture of acetabulum, closed', 'ICD10_2010'), +('S32.41', 'Fracture of acetabulum, open', 'ICD10_2010'), +('S32.5', 'Fracture of pubis', 'ICD10_2010'), +('S32.50', 'Fracture of pubis, closed', 'ICD10_2010'), +('S32.51', 'Fracture of pubis, open', 'ICD10_2010'), +('S32.7', 'Multiple fractures of lumbar spine and pelvis', 'ICD10_2010'), +('S32.70', 'Multiple fractures of lumbar spine and pelvis, closed', 'ICD10_2010'), +('S32.71', 'Multiple fractures of lumbar spine and pelvis, open', 'ICD10_2010'), +('S32.8', 'Fracture of oth unspecified parts of lumbar spine and pelvis', 'ICD10_2010'), +('S32.80', 'Fracture of other and unspecified parts of lumbar spine and pelvis, closed', 'ICD10_2010'), +('S32.81', 'Fracture of other and unspecified parts of lumbar spine and pelvis, open', 'ICD10_2010'), +('S33', 'Dislocation, sprain and strain of joints and ligaments of lumbar spine and pelvis', 'ICD10_2010'), +('S33.0', 'Traumatic rupture of lumbar intervertebral disc', 'ICD10_2010'), +('S33.1', 'Dislocation of lumbar vertebra', 'ICD10_2010'), +('S33.2', 'Dislocation of sacroiliac and sacrococcygeal joint', 'ICD10_2010'), +('S33.3', 'Dislocation oth and unspec parts of lumbar spine and pelvis', 'ICD10_2010'), +('S33.4', 'Traumatic rupture of symphysis pubis', 'ICD10_2010'), +('S33.5', 'Sprain and strain of lumbar spine', 'ICD10_2010'), +('S33.6', 'Sprain and strain of sacroiliac joint', 'ICD10_2010'), +('S33.7', 'Sprain and strain of other and unspec partsof lumbar spine pelvis', 'ICD10_2010'), +('S34', 'Injury of nerves and lumbar spinal cord at abdomen, lower back and pelvis level', 'ICD10_2010'), +('S34.0', 'Concussion and oedema of lumbar spinal cord', 'ICD10_2010'), +('S34.1', 'Other injury of lumbar spinal cord', 'ICD10_2010'), +('S34.2', 'Injury of nerve root of lumbar and sacral spine', 'ICD10_2010'), +('S34.3', 'Injury of cauda equina', 'ICD10_2010'), +('S34.4', 'Injury of lumbosacral plexus', 'ICD10_2010'), +('S34.5', 'Injury of lumbar, sacral and pelvic sympathetic nerves', 'ICD10_2010'), +('S34.6', 'Injury of peripheral nerve(s) of abdomen, lower back and pelvis', 'ICD10_2010'), +('S34.8', 'Injury other and unspecified nerves abdomen lower back and pelvis level', 'ICD10_2010'), +('S35', 'Injury of blood vessels at abdomen, lower back and pelvis level', 'ICD10_2010'), +('S35.0', 'Injury of abdominal aorta', 'ICD10_2010'), +('S35.1', 'Injury of inferior vena cava', 'ICD10_2010'), +('S35.2', 'Injury of coeliac or mesenteric artery', 'ICD10_2010'), +('S35.3', 'Injury of portal or splenic vein', 'ICD10_2010'), +('S35.4', 'Injury of renal blood vessels', 'ICD10_2010'), +('S35.5', 'Injury of iliac blood vessels', 'ICD10_2010'), +('S35.7', 'Injury of multiple blood vessels at abdomen, lower back and pelvis level', 'ICD10_2010'), +('S35.8', 'Injury of other blood vessels at abdomen, lower back and pelvis level', 'ICD10_2010'), +('S35.9', 'Injury of unspecified blood vessel abdoment, lower back and pelvis level', 'ICD10_2010'), +('S36', 'Injury of intra-abdominal organs', 'ICD10_2010'), +('S36.0', 'Injury of spleen', 'ICD10_2010'), +('S36.00', 'Injury of spleen, without open wound into cavity', 'ICD10_2010'), +('S36.01', 'Injury of spleen, with open wound into cavity', 'ICD10_2010'), +('S36.1', 'Injury of liver or gallbladder', 'ICD10_2010'), +('S36.10', 'Injury of liver or gallbladder, without open wound into cavity', 'ICD10_2010'), +('S36.11', 'Injury of liver or gallbladder, with open wound into cavity', 'ICD10_2010'), +('S36.2', 'Injury of pancreas', 'ICD10_2010'), +('S36.20', 'Injury of pancreas, without open wound into cavity', 'ICD10_2010'), +('S36.21', 'Injury of pancreas, with open wound into cavity', 'ICD10_2010'), +('S36.3', 'Injury of stomach', 'ICD10_2010'), +('S36.30', 'Injury of stomach, without open wound into cavity', 'ICD10_2010'), +('S36.31', 'Injury of stomach, with open wound into cavity', 'ICD10_2010'), +('S36.4', 'Injury of small intestine', 'ICD10_2010'), +('S36.40', 'Injury of small intestine, without open wound into cavity', 'ICD10_2010'), +('S36.41', 'Injury of small intestine, with open wound into cavity', 'ICD10_2010'), +('S36.5', 'Injury of colon', 'ICD10_2010'), +('S36.50', 'Injury of colon, without open wound into cavity', 'ICD10_2010'), +('S36.51', 'Injury of colon, with open wound into cavity', 'ICD10_2010'), +('S36.6', 'Injury of rectum', 'ICD10_2010'), +('S36.60', 'Injury of rectum, without open wound into cavity', 'ICD10_2010'), +('S36.61', 'Injury of rectum, with open wound into cavity', 'ICD10_2010'), +('S36.7', 'Injury of multiple intra-abdominal organs', 'ICD10_2010'), +('S36.70', 'Injury of multiple intra-abdominal organs, without open wound into cavity', 'ICD10_2010'), +('S36.71', 'Injury of multiple intra-abdominal organs, with open wound into cavity', 'ICD10_2010'), +('S36.8', 'Injury of other intra-abdominal organs', 'ICD10_2010'), +('S36.80', 'Injury of other intra-abdominal organs, without open wound into cavity', 'ICD10_2010'), +('S36.81', 'Injury of other intra-abdominal organs, with open wound into cavity', 'ICD10_2010'), +('S36.9', 'Injury of unspecified intra-abdominal organ', 'ICD10_2010'), +('S36.90', 'Injury of unspecified intra-abdominal organ, without open wound into cavity', 'ICD10_2010'), +('S36.91', 'Injury of unspecified intra-abdominal organ, with open wound into cavity', 'ICD10_2010'), +('S37', 'Injury of urinary and pelvic organs', 'ICD10_2010'), +('S37.0', 'Injury of kidney', 'ICD10_2010'), +('S37.00', 'Injury of kidney, without open wound into cavity', 'ICD10_2010'), +('S37.01', 'Injury of kidney, with open wound into cavity', 'ICD10_2010'), +('S37.1', 'Injury of ureter', 'ICD10_2010'), +('S37.10', 'Injury of ureter, without open wound into cavity', 'ICD10_2010'), +('S37.11', 'Injury of ureter, with open wound into cavity', 'ICD10_2010'), +('S37.2', 'Injury of bladder', 'ICD10_2010'), +('S37.20', 'Injury of bladder, without open wound into cavity', 'ICD10_2010'), +('S37.21', 'Injury of bladder, with open wound into cavity', 'ICD10_2010'), +('S37.3', 'Injury of urethra', 'ICD10_2010'), +('S37.30', 'Injury of urethra, without open wound into cavity', 'ICD10_2010'), +('S37.31', 'Injury of urethra, with open wound into cavity', 'ICD10_2010'), +('S37.4', 'Injury of ovary', 'ICD10_2010'), +('S37.40', 'Injury of ovary, without open wound into cavity', 'ICD10_2010'), +('S37.41', 'Injury of ovary, with open wound into cavity', 'ICD10_2010'), +('S37.5', 'Injury of fallopian tube', 'ICD10_2010'), +('S37.50', 'Injury of fallopian tube, without open wound into cavity', 'ICD10_2010'), +('S37.51', 'Injury of fallopian tube, with open wound into cavity', 'ICD10_2010'), +('S37.6', 'Injury of uterus', 'ICD10_2010'), +('S37.60', 'Injury of uterus, without open wound into cavity', 'ICD10_2010'), +('S37.61', 'Injury of uterus, with open wound into cavity', 'ICD10_2010'), +('S37.7', 'Injury of multiple urinary and pelvic organs', 'ICD10_2010'), +('S37.70', 'Injury of multiple urinary and pelvic organs, without open wound into cavity', 'ICD10_2010'), +('S37.71', 'Injury of multiple urinary and pelvic organs, with open wound into cavity', 'ICD10_2010'), +('S37.8', 'Injury of other urinary and pelvic organs', 'ICD10_2010'), +('S37.80', 'Injury of other urinary and pelvic organs, without open wound into cavity', 'ICD10_2010'), +('S37.81', 'Injury of other urinary and pelvic organs, with open wound into cavity', 'ICD10_2010'), +('S37.9', 'Injury of unspecified urinary and pelvic organ', 'ICD10_2010'), +('S37.90', 'Injury of unspecified urinary and pelvic organ, without open wound into cavity', 'ICD10_2010'), +('S37.91', 'Injury of unspecified urinary and pelvic organ, with open wound into cavity', 'ICD10_2010'), +('S38', 'Crushing injury and traumatic amputation of part of abdomen, lower back and pelvis', 'ICD10_2010'), +('S38.0', 'Crushing injury of external genital organs', 'ICD10_2010'), +('S38.1', 'Crushing injury of other and unspecified part of abdomen, lower back and pelvis', 'ICD10_2010'), +('S38.2', 'Traumatic amputation of external genital organs', 'ICD10_2010'), +('S38.3', 'Traumatic amputation of other and unspecified parts of abdomen, low back and pelvis', 'ICD10_2010'), +('S39', 'Other and unspecified injuries of abdomen, lower back and pelvis', 'ICD10_2010'), +('S39.0', 'Injury of muscle and tendon of abdomen lower back and pelvis', 'ICD10_2010'), +('S39.6', 'Injury of intra-abdominal organ(s) with pelvic organ(s)', 'ICD10_2010'), +('S39.7', 'Other multiple injuries of abdomen, lower back and pelvis', 'ICD10_2010'), +('S39.8', 'Other specified injuries of abdomen, lower back and pelvis', 'ICD10_2010'), +('S39.9', 'Unspecified injury of abdomen, lower back and pelvis', 'ICD10_2010'), +('S40', 'Superficial injury of shoulder and upper arm', 'ICD10_2010'), +('S40.0', 'Contusion of shoulder and upper arm', 'ICD10_2010'), +('S40.7', 'Multiple superficial injuries of shoulder and upper arm', 'ICD10_2010'), +('S40.8', 'Other superficial injuries of shoulder and upper arm', 'ICD10_2010'), +('S40.9', 'Superficial injury of shoulder and upper arm, unspecified', 'ICD10_2010'), +('S41', 'Open wound of shoulder and upper arm', 'ICD10_2010'), +('S41.0', 'Open wound of shoulder', 'ICD10_2010'), +('S41.1', 'Open wound of upper arm', 'ICD10_2010'), +('S41.7', 'Multiple open wounds of shoulder and upper arm', 'ICD10_2010'), +('S41.8', 'Open wound of other and unspecified parts of shoulder girdle', 'ICD10_2010'), +('S42', 'Fracture of shoulder and upper arm', 'ICD10_2010'), +('S42.0', 'Fracture of clavicle', 'ICD10_2010'), +('S42.00', 'Fracture of clavicle, closed', 'ICD10_2010'), +('S42.01', 'Fracture of clavicle, open', 'ICD10_2010'), +('S42.1', 'Fracture of scapula', 'ICD10_2010'), +('S42.10', 'Fracture of scapula, closed', 'ICD10_2010'), +('S42.11', 'Fracture of scapula, open', 'ICD10_2010'), +('S42.2', 'Fracture of upper end of humerus', 'ICD10_2010'), +('S42.20', 'Fracture of upper end of humerus, closed', 'ICD10_2010'), +('S42.21', 'Fracture of upper end of humerus, open', 'ICD10_2010'), +('S42.3', 'Fracture of shaft of humerus', 'ICD10_2010'), +('S42.30', 'Fracture of shaft of humerus, closed', 'ICD10_2010'), +('S42.31', 'Fracture of shaft of humerus, open', 'ICD10_2010'), +('S42.4', 'Fracture of lower end of humerus', 'ICD10_2010'), +('S42.40', 'Fracture of lower end of humerus, closed', 'ICD10_2010'), +('S42.41', 'Fracture of lower end of humerus, open', 'ICD10_2010'), +('S42.7', 'Multiple fractures of clavicle, scapula and humerus', 'ICD10_2010'), +('S42.70', 'Multiple fractures of clavicle, scapula and humerus, closed', 'ICD10_2010'), +('S42.71', 'Multiple fractures of clavicle, scapula and humerus, open', 'ICD10_2010'), +('S42.8', 'Fracture of other parts of shoulder and upper arm', 'ICD10_2010'), +('S42.80', 'Fracture of other parts of shoulder and upper arm, closed', 'ICD10_2010'), +('S42.81', 'Fracture of other parts of shoulder and upper arm, open', 'ICD10_2010'), +('S42.9', 'Fracture of shoulder girdle, part unspecified', 'ICD10_2010'), +('S42.90', 'Fracture of shoulder girdle, part unspecified, closed', 'ICD10_2010'), +('S42.91', 'Fracture of shoulder girdle, part unspecified, open', 'ICD10_2010'), +('S43', 'Dislocation, sprain and strain of joints and ligaments of shoulder girdle', 'ICD10_2010'), +('S43.0', 'Dislocation of shoulder joint', 'ICD10_2010'), +('S43.1', 'Dislocation of acromioclavicular joint', 'ICD10_2010'), +('S43.2', 'Dislocation of sternoclavicular joint', 'ICD10_2010'), +('S43.3', 'Dislocation of other and unspec parts of shoulder girdle', 'ICD10_2010'), +('S43.4', 'Sprain and strain of shoulder joint', 'ICD10_2010'), +('S43.5', 'Sprain and strain of acromioclavicular joint', 'ICD10_2010'), +('S43.6', 'Sprain and strain of sternoclavicular joint', 'ICD10_2010'), +('S43.7', 'Sprain and strain of oth and unspec part of shoulder girdle', 'ICD10_2010'), +('S44', 'Injury of nerves at shoulder and upper arm level', 'ICD10_2010'), +('S44.0', 'Injury of ulnar nerve at upper arm level', 'ICD10_2010'), +('S44.1', 'Injury of median nerve at upper arm level', 'ICD10_2010'), +('S44.2', 'Injury of radial nerve at upper arm level', 'ICD10_2010'), +('S44.3', 'Injury of axillary nerve', 'ICD10_2010'), +('S44.4', 'Injury of musculocutaneous nerve', 'ICD10_2010'), +('S44.5', 'Injury of cutaneous sensory nerve at shoulder and upper arm level', 'ICD10_2010'), +('S44.7', 'Injury of multiple nerves at shoulder and upper arm level', 'ICD10_2010'), +('S44.8', 'Injury of other nerves at shoulder and upper arm level', 'ICD10_2010'), +('S44.9', 'Injury of unspecified nerve at shoulder and upper arm level', 'ICD10_2010'), +('S45', 'Injury of blood vessels at shoulder and upper arm level', 'ICD10_2010'), +('S45.0', 'Injury of axillary artery', 'ICD10_2010'), +('S45.1', 'Injury of brachial artery', 'ICD10_2010'), +('S45.2', 'Injury of axillary or brachial vein', 'ICD10_2010'), +('S45.3', 'Injury of superficial vein at shoulder and upper arm level', 'ICD10_2010'), +('S45.7', 'Injury of multiple blood vessels shoulder and upper arm level', 'ICD10_2010'), +('S45.8', 'Injury of oth blood vessels at shoulder and upper arm level', 'ICD10_2010'), +('S45.9', 'Injury unspecified blood vessel at shoulder and upper arm level', 'ICD10_2010'), +('S46', 'Injury of muscle and tendon at shoulder and upper arm level', 'ICD10_2010'), +('S46.0', 'Injury of tendon of the rotator cuff of shoulder', 'ICD10_2010'), +('S46.1', 'Injury of muscle and tendon of long head of biceps', 'ICD10_2010'), +('S46.2', 'Injury of muscle and tendon of other parts of biceps', 'ICD10_2010'), +('S46.3', 'Injury of muscle and tendon of triceps', 'ICD10_2010'), +('S46.7', 'Injury multiple muscles and tendons shoulder and upper arm level', 'ICD10_2010'), +('S46.8', 'Injury of other muscles and tendons at shoulder and upper arm level', 'ICD10_2010'), +('S46.9', 'Injury unspecified muscle and tendon at shoulder and upper arm level', 'ICD10_2010'), +('S47', 'Crushing injury of shoulder and upper arm', 'ICD10_2010'), +('S48', 'Traumatic amputation of shoulder and upper arm', 'ICD10_2010'), +('S48.0', 'Traumatic amputation at shoulder joint', 'ICD10_2010'), +('S48.1', 'Traumatic amputation at level between shoulder and elbow', 'ICD10_2010'), +('S48.9', 'Traumatic amputation of shoulder and upper arm level unspecified', 'ICD10_2010'), +('S49', 'Other and unspecified injuries of shoulder and upper arm', 'ICD10_2010'), +('S49.7', 'Multiple injuries of shoulder and upper arm', 'ICD10_2010'), +('S49.8', 'Other specified injuries of shoulder and upper arm', 'ICD10_2010'), +('S49.9', 'Unspecified injury of shoulder and upper arm', 'ICD10_2010'), +('S50', 'Superficial injury of forearm', 'ICD10_2010'), +('S50.0', 'Contusion of elbow', 'ICD10_2010'), +('S50.1', 'Contusion of other and unspecified parts of forearm', 'ICD10_2010'), +('S50.7', 'Multiple superficial injuries of forearm', 'ICD10_2010'), +('S50.8', 'Other superficial injuries of forearm', 'ICD10_2010'), +('S50.9', 'Superficial injury of forearm, unspecified', 'ICD10_2010'), +('S51', 'Open wound of forearm', 'ICD10_2010'), +('S51.0', 'Open wound of elbow', 'ICD10_2010'), +('S51.7', 'Multiple open wounds of forearm', 'ICD10_2010'), +('S51.8', 'Open wound of other parts of forearm', 'ICD10_2010'), +('S51.9', 'Open wound of forearm, part unspecified', 'ICD10_2010'), +('S52', 'Fracture of forearm', 'ICD10_2010'), +('S52.0', 'Fracture of upper end of ulna', 'ICD10_2010'), +('S52.00', 'Fracture of upper end of ulna, closed', 'ICD10_2010'), +('S52.01', 'Fracture of upper end of ulna, open', 'ICD10_2010'), +('S52.1', 'Fracture of upper end of radius', 'ICD10_2010'), +('S52.10', 'Fracture of upper end of radius, closed', 'ICD10_2010'), +('S52.11', 'Fracture of upper end of radius, open', 'ICD10_2010'), +('S52.2', 'Fracture of shaft of ulna', 'ICD10_2010'), +('S52.20', 'Fracture of shaft of ulna, closed', 'ICD10_2010'), +('S52.21', 'Fracture of shaft of ulna, open', 'ICD10_2010'), +('S52.3', 'Fracture of shaft of radius', 'ICD10_2010'), +('S52.30', 'Fracture of shaft of radius, closed', 'ICD10_2010'), +('S52.31', 'Fracture of shaft of radius, open', 'ICD10_2010'), +('S52.4', 'Fracture of shafts of both ulna and radius', 'ICD10_2010'), +('S52.40', 'Fracture of shafts of both ulna and radius, closed', 'ICD10_2010'), +('S52.41', 'Fracture of shafts of both ulna and radius, open', 'ICD10_2010'), +('S52.5', 'Fracture of lower end of radius', 'ICD10_2010'), +('S52.50', 'Fracture of lower end of radius, closed', 'ICD10_2010'), +('S52.51', 'Fracture of lower end of radius, open', 'ICD10_2010'), +('S52.6', 'Fracture of lower end of both ulna and radius', 'ICD10_2010'), +('S52.60', 'Fracture of lower end of both ulna and radius, closed', 'ICD10_2010'), +('S52.61', 'Fracture of lower end of both ulna and radius, open', 'ICD10_2010'), +('S52.7', 'Multiple fractures of forearm', 'ICD10_2010'), +('S52.70', 'Multiple fractures of forearm , closed', 'ICD10_2010'), +('S52.71', 'Multiple fractures of forearm , open', 'ICD10_2010'), +('S52.8', 'Fracture of other parts of forearm', 'ICD10_2010'), +('S52.80', 'Fracture of other parts of forearm , closed', 'ICD10_2010'), +('S52.81', 'Fracture of other parts of forearm , open', 'ICD10_2010'), +('S52.9', 'Fracture of forearm, part unspecified', 'ICD10_2010'), +('S52.90', 'Fracture of forearm, part unspecified , closed', 'ICD10_2010'), +('S52.91', 'Fracture of forearm, part unspecified , open', 'ICD10_2010'), +('S53', 'Dislocation, sprain and strain of joints and ligaments of elbow', 'ICD10_2010'), +('S53.0', 'Dislocation of radial head', 'ICD10_2010'), +('S53.1', 'Dislocation of elbow, unspecified', 'ICD10_2010'), +('S53.2', 'Traumatic rupture of radial collateral ligament', 'ICD10_2010'), +('S53.3', 'Traumatic rupture of ulnar collateral ligament', 'ICD10_2010'), +('S53.4', 'Sprain and strain of elbow', 'ICD10_2010'), +('S54', 'Injury of nerves at forearm level', 'ICD10_2010'), +('S54.0', 'Injury of ulnar nerve at forearm level', 'ICD10_2010'), +('S54.1', 'Injury of median nerve at forearm level', 'ICD10_2010'), +('S54.2', 'Injury of radial nerve at forearm level', 'ICD10_2010'), +('S54.3', 'Injury of cutaneous sensory nerve at forearm level', 'ICD10_2010'), +('S54.7', 'Injury of multiple nerves at forearm level', 'ICD10_2010'), +('S54.8', 'Injury of other nerves at forearm level', 'ICD10_2010'), +('S54.9', 'Injury of unspecified nerve at forearm level', 'ICD10_2010'), +('S55', 'Injury of blood vessels at forearm level', 'ICD10_2010'), +('S55.0', 'Injury of ulnar artery at forearm level', 'ICD10_2010'), +('S55.1', 'Injury of radial artery at forearm level', 'ICD10_2010'), +('S55.2', 'Injury of vein at forearm level', 'ICD10_2010'), +('S55.7', 'Injury of multiple blood vessels at forearm level', 'ICD10_2010'), +('S55.8', 'Injury of other blood vessels at forearm level', 'ICD10_2010'), +('S55.9', 'Injury of unspecified blood vessel at forearm level', 'ICD10_2010'), +('S56', 'Injury of muscle and tendon at forearm level', 'ICD10_2010'), +('S56.0', 'Injury of flexor muscle and tendon of thumb at forearm level', 'ICD10_2010'), +('S56.1', 'Injury long flexor muscle and tendon other finger(s) forearm level', 'ICD10_2010'), +('S56.2', 'Injury of other flexor muscle and tendon at forearm level', 'ICD10_2010'), +('S56.3', 'Injury extensor or abductor muscles and tendons of thumb at forearm level', 'ICD10_2010'), +('S56.4', 'Injury extensor muscle and tendon oth finger(s) at forearm level', 'ICD10_2010'), +('S56.5', 'Injury of other extensor muscle and tendon at forearm level', 'ICD10_2010'), +('S56.7', 'Injury of multiple muscles and tendons at forearm level', 'ICD10_2010'), +('S56.8', 'Injury other and unspecified muscles and tendons at forearm level', 'ICD10_2010'), +('S57', 'Crushing injury of forearm', 'ICD10_2010'), +('S57.0', 'Crushing injury of elbow', 'ICD10_2010'), +('S57.8', 'Crushing injury of other parts of forearm', 'ICD10_2010'), +('S57.9', 'Crushing injury of forearm, part unspecified', 'ICD10_2010'), +('S58', 'Traumatic amputation of forearm', 'ICD10_2010'), +('S58.0', 'Traumatic amputation at elbow level', 'ICD10_2010'), +('S58.1', 'Traumatic amputation at level between elbow and wrist', 'ICD10_2010'), +('S58.9', 'Traumatic amputation of forearm, level unspecified', 'ICD10_2010'), +('S59', 'Other and unspecified injuries of forearm', 'ICD10_2010'), +('S59.7', 'Multiple injuries of forearm', 'ICD10_2010'), +('S59.8', 'Other specified injuries of forearm', 'ICD10_2010'), +('S59.9', 'Unspecified injury of forearm', 'ICD10_2010'), +('S60', 'Superficial injury of wrist and hand', 'ICD10_2010'), +('S60.0', 'Contusion of finger(s) without damage to nail', 'ICD10_2010'), +('S60.1', 'Contusion of finger(s) with damage to nail', 'ICD10_2010'), +('S60.2', 'Contusion of other parts of wrist and hand', 'ICD10_2010'), +('S60.7', 'Multiple superficial injuries of wrist and hand', 'ICD10_2010'), +('S60.8', 'Other superficial injuries of wrist and hand', 'ICD10_2010'), +('S60.9', 'Superficial injury of wrist and hand, unspecified', 'ICD10_2010'), +('S61', 'Open wound of wrist and hand', 'ICD10_2010'), +('S61.0', 'Open wound of finger(s) without damage to nail', 'ICD10_2010'), +('S61.1', 'Open wound of finger(s) with damage to nail', 'ICD10_2010'), +('S61.7', 'Multiple open wounds of wrist and hand', 'ICD10_2010'), +('S61.8', 'Open wound of other parts of wrist and hand', 'ICD10_2010'), +('S61.9', 'Open wound of wrist and hand part, part unspecified', 'ICD10_2010'), +('S62', 'Fracture at wrist and hand level', 'ICD10_2010'), +('S62.0', 'Fracture of navicular [scaphoid] bone of hand', 'ICD10_2010'), +('S62.00', 'Fracture of navicular [scaphoid] bone of hand , closed', 'ICD10_2010'), +('S62.01', 'Fracture of navicular [scaphoid] bone of hand , open', 'ICD10_2010'), +('S62.1', 'Fracture of other carpal bone(s)', 'ICD10_2010'), +('S62.10', 'Fracture of other carpal bone(s) , closed', 'ICD10_2010'), +('S62.11', 'Fracture of other carpal bone(s) , open', 'ICD10_2010'), +('S62.2', 'Fracture of first metacarpal bone', 'ICD10_2010'), +('S62.20', 'Fracture of first metacarpal bone , closed', 'ICD10_2010'), +('S62.21', 'Fracture of first metacarpal bone , open', 'ICD10_2010'), +('S62.3', 'Fracture of other metacarpal bone', 'ICD10_2010'), +('S62.30', 'Fracture of other metacarpal bone, closed', 'ICD10_2010'), +('S62.31', 'Fracture of other metacarpal bone, open', 'ICD10_2010'), +('S62.4', 'Multiple fractures of metacarpal bones', 'ICD10_2010'), +('S62.40', 'Multiple fractures of metacarpal bones , closed', 'ICD10_2010'), +('S62.41', 'Multiple fractures of metacarpal bones , open', 'ICD10_2010'), +('S62.5', 'Fracture of thumb', 'ICD10_2010'), +('S62.50', 'Fracture of thumb , closed', 'ICD10_2010'), +('S62.51', 'Fracture of thumb , open', 'ICD10_2010'), +('S62.6', 'Fracture of other finger', 'ICD10_2010'), +('S62.60', 'Fracture of other finger , closed', 'ICD10_2010'), +('S62.61', 'Fracture of other finger , open', 'ICD10_2010'), +('S62.7', 'Multiple fractures of fingers', 'ICD10_2010'), +('S62.70', 'Multiple fractures of fingers, closed', 'ICD10_2010'), +('S62.71', 'Multiple fractures of fingers, open', 'ICD10_2010'), +('S62.8', 'Fracture of other and unspecified parts of wrist and hand', 'ICD10_2010'), +('S62.80', 'Fracture of other and unspecified parts of wrist and hand, closed', 'ICD10_2010'), +('S62.81', 'Fracture of other and unspecified parts of wrist and hand, open', 'ICD10_2010'), +('S63', 'Dislocation, sprain and strain of joints and ligaments at wrist and hand level', 'ICD10_2010'), +('S63.0', 'Dislocation of wrist', 'ICD10_2010'), +('S63.1', 'Dislocation of finger', 'ICD10_2010'), +('S63.2', 'Multiple dislocations of fingers', 'ICD10_2010'), +('S63.3', 'Traumatic rupture of ligament of wrist and carpus', 'ICD10_2010'), +('S63.4', 'Traumatic rupture of ligament of finger at metacarpophalangeal and interphalangeal joint(s)', 'ICD10_2010'), +('S63.5', 'Sprain and strain of wrist', 'ICD10_2010'), +('S63.6', 'Sprain and strain of finger(s)', 'ICD10_2010'), +('S63.7', 'Sprain and strain of other and unspecified parts of hand', 'ICD10_2010'), +('S64', 'Injury of nerves at wrist and hand level', 'ICD10_2010'), +('S64.0', 'Injury of ulnar nerve at wrist and hand level', 'ICD10_2010'), +('S64.1', 'Injury of median nerve at wrist and hand level', 'ICD10_2010'), +('S64.2', 'Injury of radial nerve at wrist and hand level', 'ICD10_2010'), +('S64.3', 'Injury of digital nerve of thumb', 'ICD10_2010'), +('S64.4', 'Injury of digital nerve of other finger', 'ICD10_2010'), +('S64.7', 'Injury of multiple nerves at wrist and hand level', 'ICD10_2010'), +('S64.8', 'Injury of other nerves at wrist and hand level', 'ICD10_2010'), +('S64.9', 'Injury of unspecified nerve at wrist and hand level', 'ICD10_2010'), +('S65', 'Injury of blood vessels at wrist and hand level', 'ICD10_2010'), +('S65.0', 'Injury of ulnar artery at wrist and hand level', 'ICD10_2010'), +('S65.1', 'Injury of radial artery at wrist and hand level', 'ICD10_2010'), +('S65.2', 'Injury of superficial palmar arch', 'ICD10_2010'), +('S65.3', 'Injury of deep palmar arch', 'ICD10_2010'), +('S65.4', 'Injury of blood vessel(s) of thumb', 'ICD10_2010'), +('S65.5', 'Injury of blood vessel(s) of other finger', 'ICD10_2010'), +('S65.7', 'Injury of multiple blood vessels at wrist and hand level', 'ICD10_2010'), +('S65.8', 'Injury of other blood vessels at wrist and hand level', 'ICD10_2010'), +('S65.9', 'Injury of unspecified blood vessel at wrist and hand level', 'ICD10_2010'), +('S66', 'Injury of muscle and tendon at wrist and hand level', 'ICD10_2010'), +('S66.0', 'Injury of long flexor muscle and tendon of thumb at wrist and hand level', 'ICD10_2010'), +('S66.1', 'Injury of flexor muscle and tendon of other finger at wrist and hand level', 'ICD10_2010'), +('S66.2', 'Injury of extensor muscle and tendon of thumb at wrist and hand level', 'ICD10_2010'), +('S66.3', 'Injury of extensor muscle and tendon of other finger at wrist and hand level', 'ICD10_2010'), +('S66.4', 'Injury of intrinsic muscle and tendon of thumb at wrist and hand level', 'ICD10_2010'), +('S66.5', 'Injury of intrinsic muscle and tendon other finger at wrist and hand level', 'ICD10_2010'), +('S66.6', 'Injury of multiple flexor muscles and tendons at wrist and hand level', 'ICD10_2010'), +('S66.7', 'Injury of multiple extensor muscles and tendons at wrist and hand level', 'ICD10_2010'), +('S66.8', 'Injury of other muscles and tendons at wrist and hand level', 'ICD10_2010'), +('S66.9', 'Injury unspecified muscle and tendon at wrist and hand level', 'ICD10_2010'), +('S67', 'Crushing injury of wrist and hand', 'ICD10_2010'), +('S67.0', 'Crushing injury of thumb and other finger(s)', 'ICD10_2010'), +('S67.8', 'Crush injury other and unspecified parts of wrist and hand', 'ICD10_2010'), +('S68', 'Traumatic amputation of wrist and hand', 'ICD10_2010'), +('S68.0', 'Traumatic amputation of thumb (complete)(partial)', 'ICD10_2010'), +('S68.1', 'Traumatic amputation of other single finger (complete)(partial)', 'ICD10_2010'), +('S68.2', 'Traumatic amputation two or more fingers alone (cmpte/part)', 'ICD10_2010'), +('S68.3', 'Combination traumatic amputation of (part of) finger(s) with other parts wrist and hand', 'ICD10_2010'), +('S68.4', 'Traumatic amputation of hand at wrist level', 'ICD10_2010'), +('S68.8', 'Traumatic amputation of other parts of wrist and hand', 'ICD10_2010'), +('S68.9', 'Traumatic amputation of wrist and hand, level unspecified', 'ICD10_2010'), +('S69', 'Other and unspecified injuries of wrist and hand', 'ICD10_2010'), +('S69.7', 'Multiple injuries of wrist and hand', 'ICD10_2010'), +('S69.8', 'Other specified injuries of wrist and hand', 'ICD10_2010'), +('S69.9', 'Unspecified injury of wrist and hand', 'ICD10_2010'), +('S70', 'Superficial injury of hip and thigh', 'ICD10_2010'), +('S70.0', 'Contusion of hip', 'ICD10_2010'), +('S70.1', 'Contusion of thigh', 'ICD10_2010'), +('S70.7', 'Multiple superficial injuries of hip and thigh', 'ICD10_2010'), +('S70.8', 'Other superficial injuries of hip and thigh', 'ICD10_2010'), +('S70.9', 'Superficial injury of hip and thigh, unspecified', 'ICD10_2010'), +('S71', 'Open wound of hip and thigh', 'ICD10_2010'), +('S71.0', 'Open wound of hip', 'ICD10_2010'), +('S71.1', 'Open wound of thigh', 'ICD10_2010'), +('S71.7', 'Multiple open wounds of hip and thigh', 'ICD10_2010'), +('S71.8', 'Open wound of other and unspecified parts of pelvic girdle', 'ICD10_2010'), +('S72', 'Fracture of femur', 'ICD10_2010'), +('S72.0', 'Fracture of neck of femur', 'ICD10_2010'), +('S72.00', 'Fracture of neck of femur, closed', 'ICD10_2010'), +('S72.01', 'Fracture of neck of femur, open', 'ICD10_2010'), +('S72.1', 'Pertrochanteric fracture', 'ICD10_2010'), +('S72.10', 'Pertrochanteric fracture, closed', 'ICD10_2010'), +('S72.11', 'Pertrochanteric fracture, open', 'ICD10_2010'), +('S72.2', 'Subtrochanteric fracture', 'ICD10_2010'), +('S72.20', 'Subtrochanteric fracture, closed', 'ICD10_2010'), +('S72.21', 'Subtrochanteric fracture, open', 'ICD10_2010'), +('S72.3', 'Fracture of shaft of femur', 'ICD10_2010'), +('S72.30', 'Fracture of shaft of femur, closed', 'ICD10_2010'), +('S72.31', 'Fracture of shaft of femur, open', 'ICD10_2010'), +('S72.4', 'Fracture of lower end of femur', 'ICD10_2010'), +('S72.40', 'Fracture of lower end of femur, closed', 'ICD10_2010'), +('S72.41', 'Fracture of lower end of femur, open', 'ICD10_2010'), +('S72.7', 'Multiple fractures of femur', 'ICD10_2010'), +('S72.70', 'Multiple fractures of femur, closed', 'ICD10_2010'), +('S72.71', 'Multiple fractures of femur, open', 'ICD10_2010'), +('S72.8', 'Fractures of other parts of femur', 'ICD10_2010'), +('S72.80', 'Fractures of other parts of femur, closed', 'ICD10_2010'), +('S72.81', 'Fractures of other parts of femur, open', 'ICD10_2010'), +('S72.9', 'Fracture of femur, part unspecified', 'ICD10_2010'), +('S72.90', 'Fracture of femur, part unspecified, closed', 'ICD10_2010'), +('S72.91', 'Fracture of femur, part unspecified , open', 'ICD10_2010'), +('S73', 'Dislocation, sprain and strain of joint and ligaments of hip', 'ICD10_2010'), +('S73.0', 'Dislocation of hip', 'ICD10_2010'), +('S73.1', 'Sprain and strain of hip', 'ICD10_2010'), +('S74', 'Injury of nerves at hip and thigh level', 'ICD10_2010'), +('S74.0', 'Injury of sciatic nerve at hip and thigh level', 'ICD10_2010'), +('S74.1', 'Injury of femoral nerve at hip and thigh level', 'ICD10_2010'), +('S74.2', 'Injury of cutaneous sensory nerve at hip and thigh level', 'ICD10_2010'), +('S74.7', 'Injury of multiple nerves at hip and thigh level', 'ICD10_2010'), +('S74.8', 'Injury of other nerves at hip and thigh level', 'ICD10_2010'), +('S74.9', 'Injury of unspecified nerve at hip and thigh level', 'ICD10_2010'), +('S75', 'Injury of blood vessels at hip and thigh level', 'ICD10_2010'), +('S75.0', 'Injury of femoral artery', 'ICD10_2010'), +('S75.1', 'Injury of femoral vein at hip and thigh level', 'ICD10_2010'), +('S75.2', 'Injury of greater saphenous vein at hip and thigh level', 'ICD10_2010'), +('S75.7', 'Injury of multiple blood vessels at hip and thigh level', 'ICD10_2010'), +('S75.8', 'Injury of other blood vessels at hip and thigh level', 'ICD10_2010'), +('S75.9', 'Injury of unspecified blood vessel at hip and thigh level', 'ICD10_2010'), +('S76', 'Injury of muscle and tendon at hip and thigh level', 'ICD10_2010'), +('S76.0', 'Injury of muscle and tendon of hip', 'ICD10_2010'), +('S76.1', 'Injury of quadriceps muscle and tendon', 'ICD10_2010'), +('S76.2', 'Injury of adductor muscle and tendon of thigh', 'ICD10_2010'), +('S76.3', 'Injury of muscle and tendon of the posterior muscle group at thigh level', 'ICD10_2010'), +('S76.4', 'Injury of other and unspec muscles and tendons at thigh level', 'ICD10_2010'); +INSERT INTO `icd10` (`ID_ICD10`, `Diagnosa`, `Versi_ICD10`) VALUES +('S76.7', 'Injury of multiple muscles and tendons at hip & thigh level', 'ICD10_2010'), +('S77', 'Crushing injury of hip and thigh', 'ICD10_2010'), +('S77.0', 'Crushing injury of hip', 'ICD10_2010'), +('S77.1', 'Crushing injury of thigh', 'ICD10_2010'), +('S77.2', 'Crushing injury of hip with thigh', 'ICD10_2010'), +('S78', 'Traumatic amputation of hip and thigh', 'ICD10_2010'), +('S78.0', 'Traumatic amputation at hip joint', 'ICD10_2010'), +('S78.1', 'Traumatic amputation at level between hip and knee', 'ICD10_2010'), +('S78.9', 'Traumatic amputation of hip and thigh, level unspecified', 'ICD10_2010'), +('S79', 'Other and specified injuries of hip and thigh', 'ICD10_2010'), +('S79.7', 'Multiple injuries of hip and thigh', 'ICD10_2010'), +('S79.8', 'Other specified injuries of hip and thigh', 'ICD10_2010'), +('S79.9', 'Unspecified injury of hip and thigh', 'ICD10_2010'), +('S80', 'Superficial injury of lower leg', 'ICD10_2010'), +('S80.0', 'Contusion of knee', 'ICD10_2010'), +('S80.1', 'Contusion of other and unspecified parts of lower leg', 'ICD10_2010'), +('S80.7', 'Multiple superficial injuries of lower leg', 'ICD10_2010'), +('S80.8', 'Other superficial injuries of lower leg', 'ICD10_2010'), +('S80.9', 'Superficial injury of lower leg, unspecified', 'ICD10_2010'), +('S81', 'Open wound of lower leg', 'ICD10_2010'), +('S81.0', 'Open wound of knee', 'ICD10_2010'), +('S81.7', 'Multiple open wounds of lower leg', 'ICD10_2010'), +('S81.8', 'Open wound of other parts of lower leg', 'ICD10_2010'), +('S81.9', 'Open wound of lower leg, part unspecified', 'ICD10_2010'), +('S82', 'Fracture of lower leg, including ankle', 'ICD10_2010'), +('S82.0', 'Fracture of patella', 'ICD10_2010'), +('S82.00', 'Fracture of patella, closed', 'ICD10_2010'), +('S82.01', 'Fracture of patella, open', 'ICD10_2010'), +('S82.1', 'Fracture of upper end of tibia', 'ICD10_2010'), +('S82.10', 'Fracture of upper end of tibia, closed', 'ICD10_2010'), +('S82.11', 'Fracture of upper end of tibia , open', 'ICD10_2010'), +('S82.2', 'Fracture of shaft of tibia', 'ICD10_2010'), +('S82.20', 'Fracture of shaft of tibia, closed', 'ICD10_2010'), +('S82.21', 'Fracture of shaft of tibia , open', 'ICD10_2010'), +('S82.3', 'Fracture of lower end of tibia', 'ICD10_2010'), +('S82.30', 'Fracture of lower end of tibia, closed', 'ICD10_2010'), +('S82.31', 'Fracture of lower end of tibia , open', 'ICD10_2010'), +('S82.4', 'Fracture of fibula alone', 'ICD10_2010'), +('S82.40', 'Fracture of fibula alone, closed', 'ICD10_2010'), +('S82.41', 'Fracture of fibula alone , open', 'ICD10_2010'), +('S82.5', 'Fracture of medial malleolus', 'ICD10_2010'), +('S82.50', 'Fracture of medial malleolus, closed', 'ICD10_2010'), +('S82.51', 'Fracture of medial malleolus , open', 'ICD10_2010'), +('S82.6', 'Fracture of lateral malleolus', 'ICD10_2010'), +('S82.60', 'Fracture of lateral malleolus, closed', 'ICD10_2010'), +('S82.61', 'Fracture of lateral malleolus, open', 'ICD10_2010'), +('S82.7', 'Multiple fractures of lower leg', 'ICD10_2010'), +('S82.70', 'Multiple fractures of lower leg, closed', 'ICD10_2010'), +('S82.71', 'Multiple fractures of lower leg, open', 'ICD10_2010'), +('S82.8', 'Fractures of other parts of lower leg', 'ICD10_2010'), +('S82.80', 'Fractures of other parts of lower leg, closed', 'ICD10_2010'), +('S82.81', 'Fractures of other parts of lower leg, open', 'ICD10_2010'), +('S82.9', 'Fracture of lower leg, part unspecified', 'ICD10_2010'), +('S82.90', 'Fracture of lower leg, part unspecified, closed', 'ICD10_2010'), +('S82.91', 'Fracture of lower leg, part unspecified , open', 'ICD10_2010'), +('S83', 'Dislocation, sprain and strain of joints and ligaments of knee', 'ICD10_2010'), +('S83.0', 'Dislocation of patella', 'ICD10_2010'), +('S83.1', 'Dislocation of knee', 'ICD10_2010'), +('S83.2', 'Tear of meniscus, current', 'ICD10_2010'), +('S83.3', 'Tear of articular cartilage of knee, current', 'ICD10_2010'), +('S83.4', 'Sprain and strain involving (fibular)(tibial) collateral lig knee', 'ICD10_2010'), +('S83.5', 'Sprain and strain involving (anterior)(posterior) cruciate lig knee', 'ICD10_2010'), +('S83.6', 'Sprain and strain of other and unspecified parts of knee', 'ICD10_2010'), +('S83.7', 'Injury to multiple structures of knee', 'ICD10_2010'), +('S84', 'Injury of nerves at lower leg level', 'ICD10_2010'), +('S84.0', 'Injury of tibial nerve at lower leg level', 'ICD10_2010'), +('S84.1', 'Injury of peroneal nerve at lower leg level', 'ICD10_2010'), +('S84.2', 'Injury of cutaneous sensory nerve at lower leg level', 'ICD10_2010'), +('S84.7', 'Injury of multiple nerves at lower leg level', 'ICD10_2010'), +('S84.8', 'Injury of other nerves at lower leg level', 'ICD10_2010'), +('S84.9', 'Injury of unspecified nerve at lower leg level', 'ICD10_2010'), +('S85', 'Injury of blood vessels at lower leg level', 'ICD10_2010'), +('S85.0', 'Injury of popliteal artery', 'ICD10_2010'), +('S85.1', 'Injury of (anterior)(posterior) tibial artery', 'ICD10_2010'), +('S85.2', 'Injury of peroneal artery', 'ICD10_2010'), +('S85.3', 'Injury of greater saphenous vein at lower leg level', 'ICD10_2010'), +('S85.4', 'Injury of lesser saphenous vein at lower leg level', 'ICD10_2010'), +('S85.5', 'Injury of popliteal vein', 'ICD10_2010'), +('S85.7', 'Injury of multiple blood vessels at lower leg level', 'ICD10_2010'), +('S85.8', 'Injury of other blood vessels at lower leg level', 'ICD10_2010'), +('S85.9', 'Injury of unspecified blood vessel at lower leg level', 'ICD10_2010'), +('S86', 'Injury of muscle and tendon at lower leg level', 'ICD10_2010'), +('S86.0', 'Injury of achilles tendon', 'ICD10_2010'), +('S86.1', 'Injury other muscle(s) tendon(s) of posterior muscle group at low leg level', 'ICD10_2010'), +('S86.2', 'Injury of muscle(s) and tendon(s) of anterior muscle group at lower leg level', 'ICD10_2010'), +('S86.3', 'Injury of muscle(s) and tendon(s) peroneal muscle group at lower leg level', 'ICD10_2010'), +('S86.7', 'Injury of multiple muscles and tendons at lower leg level', 'ICD10_2010'), +('S86.8', 'Injury of other muscles and tendons at lower leg level', 'ICD10_2010'), +('S86.9', 'Injury of unspecified muscle and tendon at lower leg level', 'ICD10_2010'), +('S87', 'Crushing injury of lower leg', 'ICD10_2010'), +('S87.0', 'Crushing injury of knee', 'ICD10_2010'), +('S87.8', 'Crushing injury of other and unspecified parts of lower leg', 'ICD10_2010'), +('S88', 'Traumatic amputation of lower leg', 'ICD10_2010'), +('S88.0', 'Traumatic amputation at knee level', 'ICD10_2010'), +('S88.1', 'Traumatic amputation at level between knee and ankle', 'ICD10_2010'), +('S88.9', 'Traumatic amputation of lower leg, level unspecified', 'ICD10_2010'), +('S89', 'Other and unspecified injuries of lower leg', 'ICD10_2010'), +('S89.7', 'Multiple injuries of lower leg', 'ICD10_2010'), +('S89.8', 'Other specified injuries of lower leg', 'ICD10_2010'), +('S89.9', 'Unspecified injury of lower leg', 'ICD10_2010'), +('S90', 'Superficial injury of ankle and foot', 'ICD10_2010'), +('S90.0', 'Contusion of ankle', 'ICD10_2010'), +('S90.1', 'Contusion of toe(s) without damage to nail', 'ICD10_2010'), +('S90.2', 'Contusion of toe(s) with damage to nail', 'ICD10_2010'), +('S90.3', 'Contusion of other and unspecified parts of foot', 'ICD10_2010'), +('S90.7', 'Multiple superficial injuries of ankle and foot', 'ICD10_2010'), +('S90.8', 'Other superficial injuries of ankle and foot', 'ICD10_2010'), +('S90.9', 'Superficial injury of ankle and foot, unspecified', 'ICD10_2010'), +('S91', 'Open wound of ankle and foot', 'ICD10_2010'), +('S91.0', 'Open wound of ankle', 'ICD10_2010'), +('S91.1', 'Open wound of toe(s) without damage to nail', 'ICD10_2010'), +('S91.2', 'Open wound of toe(s) with damage to nail', 'ICD10_2010'), +('S91.3', 'Open wound of other parts of foot', 'ICD10_2010'), +('S91.7', 'Multiple open wounds of ankle and foot', 'ICD10_2010'), +('S92', 'Fracture of foot, except ankle', 'ICD10_2010'), +('S92.0', 'Fracture of calcaneus', 'ICD10_2010'), +('S92.00', 'Fracture of calcaneus, closed', 'ICD10_2010'), +('S92.01', 'Fracture of calcaneus , open', 'ICD10_2010'), +('S92.1', 'Fracture of talus', 'ICD10_2010'), +('S92.10', 'Fracture of talus, closed', 'ICD10_2010'), +('S92.11', 'Fracture of talus, open', 'ICD10_2010'), +('S92.2', 'Fracture of other tarsal bone(s)', 'ICD10_2010'), +('S92.20', 'Fracture of other tarsal bone(s) , closed', 'ICD10_2010'), +('S92.21', 'Fracture of other tarsal bone(s) , open', 'ICD10_2010'), +('S92.3', 'Fracture of metatarsal bone', 'ICD10_2010'), +('S92.30', 'Fracture of metatarsal bone, closed', 'ICD10_2010'), +('S92.31', 'Fracture of metatarsal bone , open', 'ICD10_2010'), +('S92.4', 'Fracture of great toe', 'ICD10_2010'), +('S92.40', 'Fracture of great toe, closed', 'ICD10_2010'), +('S92.41', 'Fracture of great toe, open', 'ICD10_2010'), +('S92.5', 'Fracture of other toe', 'ICD10_2010'), +('S92.50', 'Fracture of other toe, closed', 'ICD10_2010'), +('S92.51', 'Fracture of other toe, open', 'ICD10_2010'), +('S92.7', 'Multiple fractures of foot', 'ICD10_2010'), +('S92.70', 'Multiple fractures of foot, closed', 'ICD10_2010'), +('S92.71', 'Multiple fractures of foot , open', 'ICD10_2010'), +('S92.9', 'Fracture of foot, unspecified', 'ICD10_2010'), +('S92.90', 'Fracture of foot, unspecified, closed', 'ICD10_2010'), +('S92.91', 'Fracture of foot, unspecified , open', 'ICD10_2010'), +('S93', 'Dislocation, sprain and strain of joints and ligaments at ankle and foot level', 'ICD10_2010'), +('S93.0', 'Dislocation of ankle joint', 'ICD10_2010'), +('S93.1', 'Dislocation of toe(s)', 'ICD10_2010'), +('S93.2', 'Rupture of ligaments at ankle and foot level', 'ICD10_2010'), +('S93.3', 'Dislocation of other and unspecified parts of foot', 'ICD10_2010'), +('S93.4', 'Sprain and strain of ankle', 'ICD10_2010'), +('S93.5', 'Sprain and strain of toe(s)', 'ICD10_2010'), +('S93.6', 'Sprain and strain of other and unspecified parts of foot', 'ICD10_2010'), +('S94', 'Injury of nerves at ankle and foot level', 'ICD10_2010'), +('S94.0', 'Injury of lateral plantar nerve', 'ICD10_2010'), +('S94.1', 'Injury of medial plantar nerve', 'ICD10_2010'), +('S94.2', 'Injury of deep peroneal nerve at ankle and foot level', 'ICD10_2010'), +('S94.3', 'Injury of cutaneous sensory nerve at ankle and foot level', 'ICD10_2010'), +('S94.7', 'Injury of multiple nerves at ankle and foot level', 'ICD10_2010'), +('S94.8', 'Injury of other nerves at ankle and foot level', 'ICD10_2010'), +('S94.9', 'Injury of unspecified nerve at ankle and foot level', 'ICD10_2010'), +('S95', 'Injury of blood vessels at ankle and foot level', 'ICD10_2010'), +('S95.0', 'Injury of dorsal artery of foot', 'ICD10_2010'), +('S95.1', 'Injury of plantar artery of foot', 'ICD10_2010'), +('S95.2', 'Injury of dorsal vein of foot', 'ICD10_2010'), +('S95.7', 'Injury of multiple blood vessels at ankle and foot level', 'ICD10_2010'), +('S95.8', 'Injury of other blood vessels at ankle and foot level', 'ICD10_2010'), +('S95.9', 'Injury of unspecified blood vessel at ankle and foot level', 'ICD10_2010'), +('S96', 'Injury of muscle and tendon at ankle and foot level', 'ICD10_2010'), +('S96.0', 'Injury muscle and tendon of long flexor muscle toe at ankle and foot level', 'ICD10_2010'), +('S96.1', 'Injury muscle & tendon long extensor muscle toe at ankle and foot level', 'ICD10_2010'), +('S96.2', 'Injury of intrinsic muscle and tendon at ankle and foot level', 'ICD10_2010'), +('S96.7', 'Injury of multi muscles and tendons at ankle and foot level', 'ICD10_2010'), +('S96.8', 'Injury of other muscles and tendons at ankle and foot level', 'ICD10_2010'), +('S96.9', 'Injury of unspec muscle and tendon at ankle and foot level', 'ICD10_2010'), +('S97', 'Crushing injury of ankle and foot', 'ICD10_2010'), +('S97.0', 'Crushing injury of ankle', 'ICD10_2010'), +('S97.1', 'Crushing injury of toe(s)', 'ICD10_2010'), +('S97.8', 'Crushing injury of other parts of ankle and foot', 'ICD10_2010'), +('S98', 'Traumatic amputation of ankle and foot', 'ICD10_2010'), +('S98.0', 'Traumatic amputation of foot at ankle level', 'ICD10_2010'), +('S98.1', 'Traumatic amputation of one toe', 'ICD10_2010'), +('S98.2', 'Traumatic amputation of two or more toes', 'ICD10_2010'), +('S98.3', 'Traumatic amputation of other parts of foot', 'ICD10_2010'), +('S98.4', 'Traumatic amputation of foot, level unspecified', 'ICD10_2010'), +('S99', 'Other and unspecified injuries of ankle and foot', 'ICD10_2010'), +('S99.7', 'Multiple injuries of ankle and foot', 'ICD10_2010'), +('S99.8', 'Other specified injuries of ankle and foot', 'ICD10_2010'), +('S99.9', 'Unspecified injury of ankle and foot', 'ICD10_2010'), +('T00', 'Superficial injuries involving multiple body regions', 'ICD10_2010'), +('T00.0', 'Superficial injuries involving head with neck', 'ICD10_2010'), +('T00.1', 'Superficial injuries involving thorax with abdomen, lower back and pelvis', 'ICD10_2010'), +('T00.2', 'Superficial injuries involving multiple region of upper limb(s)', 'ICD10_2010'), +('T00.3', 'Superficial injuries involving multiple region of lower limb(s)', 'ICD10_2010'), +('T00.6', 'Superficial injuries involving multiple region upper limb(s) with lower limb(s)', 'ICD10_2010'), +('T00.8', 'Superfic injuries involving oth combinations of body regions', 'ICD10_2010'), +('T00.9', 'Multiple superficial injuries, unspecified', 'ICD10_2010'), +('T01', 'Open wounds involving multiple body regions', 'ICD10_2010'), +('T01.0', 'Open wounds involving head with neck', 'ICD10_2010'), +('T01.1', 'Open wounds involving thorax wth abdomen, lower back and pelvis', 'ICD10_2010'), +('T01.2', 'Open wounds involving multiple regions of upper limb(s)', 'ICD10_2010'), +('T01.3', 'Open wounds involving multiple regions of lower limb(s)', 'ICD10_2010'), +('T01.6', 'Open wounds involving multiple regions of up limb(s) with low limb(s)', 'ICD10_2010'), +('T01.8', 'Open wounds involving other combinations of body regions', 'ICD10_2010'), +('T01.9', 'Multiple open wounds, unspecified', 'ICD10_2010'), +('T02', 'Fractures involving multiple body regions', 'ICD10_2010'), +('T02.0', 'Fractures involving head with neck', 'ICD10_2010'), +('T02.00', 'Fractures involving head with neck, closed', 'ICD10_2010'), +('T02.01', 'Fractures involving head with neck, open', 'ICD10_2010'), +('T02.1', 'Fractures involving thorax with lower back and pelvis', 'ICD10_2010'), +('T02.10', 'Fractures involving thorax with lower back and pelvis, closed', 'ICD10_2010'), +('T02.11', 'Fractures involving thorax with lower back and pelvis, open', 'ICD10_2010'), +('T02.2', 'Fractures involving multiple regions of one upper limb', 'ICD10_2010'), +('T02.20', 'Fractures involving multiple regions of one upper limb, closed', 'ICD10_2010'), +('T02.21', 'Fractures involving multiple regions of one upper limb, open', 'ICD10_2010'), +('T02.3', 'Fractures involving multiple regions of one lower limb', 'ICD10_2010'), +('T02.30', 'Fractures involving multiple regions of one lower limb, closed', 'ICD10_2010'), +('T02.31', 'Fractures involving multiple regions of one lower limb, open', 'ICD10_2010'), +('T02.4', 'Fractures involving multiple regions of both upper limbs', 'ICD10_2010'), +('T02.40', 'Fractures involving multiple regions of both upper limbs, closed', 'ICD10_2010'), +('T02.41', 'Fractures involving multiple regions of both upper limbs, open', 'ICD10_2010'), +('T02.5', 'Fractures involving multiple regions of both lower limbs', 'ICD10_2010'), +('T02.50', 'Fractures involving multiple regions of both lower limbs, closed', 'ICD10_2010'), +('T02.51', 'Fractures involving multiple regions of both lower limbs, open', 'ICD10_2010'), +('T02.6', 'Fractures involving multiple regions of up limb(s) with low limb(s)', 'ICD10_2010'), +('T02.60', 'Fractures involving multiple regions of up limb(s) with low limb(s), closed', 'ICD10_2010'), +('T02.61', 'Fractures involving multiple regions of up limb(s) with low limb(s), open', 'ICD10_2010'), +('T02.7', 'Fractures involving thorax with lower back and pelvis with limb(s)', 'ICD10_2010'), +('T02.70', 'Fractures involving thorax with lower back and pelvis with limb(s), closed', 'ICD10_2010'), +('T02.71', 'Fractures involving thorax with lower back and pelvis with limb(s), open', 'ICD10_2010'), +('T02.8', 'Fractures involving other combinations of body regions', 'ICD10_2010'), +('T02.80', 'Fractures involving other combinations of body regions, closed', 'ICD10_2010'), +('T02.81', 'Fractures involving other combinations of body regions, open', 'ICD10_2010'), +('T02.9', 'Multiple fractures, unspecified', 'ICD10_2010'), +('T02.90', 'Multiple fractures, unspecified, closed', 'ICD10_2010'), +('T02.91', 'Multiple fractures, unspecified, open', 'ICD10_2010'), +('T03', 'Dislocations, sprains and strains involving multiple body regions', 'ICD10_2010'), +('T03.0', 'Dislocations, sprains and strains involving head with neck', 'ICD10_2010'), +('T03.1', 'Dislocation sprains and strains involving thorax wth lower back and pelvis', 'ICD10_2010'), +('T03.2', 'Dislocation sprains and strains involving multiple regions upper limb(s)', 'ICD10_2010'), +('T03.3', 'Dislocation sprains and strains involving multiple reginns lower limb(s)', 'ICD10_2010'), +('T03.4', 'Dislocation sprains and strains involving multiple regions upper & lower limb(s)', 'ICD10_2010'), +('T03.8', 'Dislocation sprains and strains involving other combinations body regions', 'ICD10_2010'), +('T03.9', 'Multiple dislocations, sprains and strains, unspecified', 'ICD10_2010'), +('T04', 'Crushing injuries involving multiple body regions', 'ICD10_2010'), +('T04.0', 'Crushing injuries involving head with neck', 'ICD10_2010'), +('T04.1', 'Crush injuries involving thorax with abdomen lower back and pelvis', 'ICD10_2010'), +('T04.2', 'Crushing injuries involving multiple region of upper limb(s)', 'ICD10_2010'), +('T04.3', 'Crushing injuries involving multiple region of lower limb(s)', 'ICD10_2010'), +('T04.4', 'Crushing injuries involving multiple regions of upper limb(s) with lower limb(s)', 'ICD10_2010'), +('T04.7', 'Crushing injuries of thorax with abdomen, lower back and pelvis with limb(s)', 'ICD10_2010'), +('T04.8', 'Crushing injuries involving other combinations of body regions', 'ICD10_2010'), +('T04.9', 'Multiple crushing injuries, unspecified', 'ICD10_2010'), +('T05', 'Traumatic amputations involving multiple body regions', 'ICD10_2010'), +('T05.0', 'Traumatic amputation of both hands', 'ICD10_2010'), +('T05.1', 'Traumatic amputation of one hand and other arm [any level, except hand]', 'ICD10_2010'), +('T05.2', 'Traumatic amputation of both arms [any level]', 'ICD10_2010'), +('T05.3', 'Traumatic amputation of both feet', 'ICD10_2010'), +('T05.4', 'Traumatic amputation of one foot and other leg [any level except foot]', 'ICD10_2010'), +('T05.5', 'Traumatic amputation of both legs [any level]', 'ICD10_2010'), +('T05.6', 'Traumatic amputation of upper and lower limbs, any combination [any level]', 'ICD10_2010'), +('T05.8', 'Traumatic amputations involving other combinations of body regions', 'ICD10_2010'), +('T05.9', 'Multiple traumatic amputations, unspecified', 'ICD10_2010'), +('T06', 'Other injuries involving multiple body regions, not elsewhere classified', 'ICD10_2010'), +('T06.0', 'Injuries of brain and cranial nerve with injuries of nerves and spinal cord neck level', 'ICD10_2010'), +('T06.1', 'Injuries of nerves and spinal cord involving other multiple body regions', 'ICD10_2010'), +('T06.2', 'Injuries of nerves involving multiple body regions', 'ICD10_2010'), +('T06.3', 'Injuries of blood vessels involving multiple body regions', 'ICD10_2010'), +('T06.4', 'Injuries of muscles and tendons involving multiple body regions', 'ICD10_2010'), +('T06.5', 'Injuries of intrathoracic organ with intra-abdominal and pelvic organs', 'ICD10_2010'), +('T06.8', 'Other specified injuries involving multiple body regions', 'ICD10_2010'), +('T07', 'Unspecified multiple injuries', 'ICD10_2010'), +('T08', 'Fracture of spine, level unspecified', 'ICD10_2010'), +('T08.0', 'Fracture of spine, level unspecified , closed', 'ICD10_2010'), +('T08.1', 'Fracture of spine, level unspecified , open', 'ICD10_2010'), +('T09', 'Other injuries of spine and trunk, level unspecified', 'ICD10_2010'), +('T09.0', 'Superficial injury of trunk, level unspecified', 'ICD10_2010'), +('T09.1', 'Open wound of trunk, level unspecified', 'ICD10_2010'), +('T09.2', 'Dislocation sprain and strain unspec joint and ligament trunk', 'ICD10_2010'), +('T09.3', 'Injury of spinal cord, level unspecified', 'ICD10_2010'), +('T09.4', 'Injury unspecified nerve, spinal nerve root and plexus of trunk', 'ICD10_2010'), +('T09.5', 'Injury of unspecified muscle and tendon of trunk', 'ICD10_2010'), +('T09.6', 'Traumatic amputation of trunk, level unspecified', 'ICD10_2010'), +('T09.8', 'Other specified injuries of trunk, level unspecified', 'ICD10_2010'), +('T09.9', 'Unspecified injury of trunk, level unspecified', 'ICD10_2010'), +('T10', 'Fracture of upper limb, level unspecified', 'ICD10_2010'), +('T10.0', 'Fracture of upper limb, level unspecified , closed', 'ICD10_2010'), +('T10.1', 'Fracture of upper limb, level unspecified , open', 'ICD10_2010'), +('T11', 'Other injuries of upper limb, level unspecified', 'ICD10_2010'), +('T11.0', 'Superficial injury of upper limb, level unspecified', 'ICD10_2010'), +('T11.1', 'Open wound of upper limb, level unspecified', 'ICD10_2010'), +('T11.2', 'Disl\'n sprain/strain unsp joint & ligament upr limb lvl unsp', 'ICD10_2010'), +('T11.3', 'Injury of unspecified nerve of upper limb, level unspecified', 'ICD10_2010'), +('T11.4', 'Injury of unspec blood vessel of upper limb level unspec act', 'ICD10_2010'), +('T11.5', 'Injury of unspec muscle & tendon of upr limb level unspec act', 'ICD10_2010'), +('T11.6', 'Traumatic amputation of upper limb, level unspecified', 'ICD10_2010'), +('T11.8', 'Other specified injuries of upper limb, level unspecified', 'ICD10_2010'), +('T11.9', 'Unspecified injury of upper limb, level unspecified', 'ICD10_2010'), +('T12', 'Fracture of lower limb, level unspecified', 'ICD10_2010'), +('T12.0', 'Fracture of lower limb, level unspecified, closed', 'ICD10_2010'), +('T12.1', 'Fracture of lower limb, level unspecified, open', 'ICD10_2010'), +('T13', 'Other injuries of lower limb, level unspecified', 'ICD10_2010'), +('T13.0', 'Superficial injury of lower limb, level unspecified', 'ICD10_2010'), +('T13.1', 'Open wound of lower limb, level unspecified', 'ICD10_2010'), +('T13.2', 'Dislocation sprain and strain unspecified joint and ligament of lower limb, level unspecified', 'ICD10_2010'), +('T13.3', 'Injury of unspecified nerve of lower limb, level unspecified', 'ICD10_2010'), +('T13.4', 'Injury of unspecified blood vessel of lower limb level unspecified', 'ICD10_2010'), +('T13.5', 'Injury of unspecified muscle & tendon of lower limb, level unspecified', 'ICD10_2010'), +('T13.6', 'Traumatic amputation of lower limb, level unspecified', 'ICD10_2010'), +('T13.8', 'Other specified injuries of lower limb, level unspecified', 'ICD10_2010'), +('T13.9', 'Unspecified injury of lower limb, level unspecified', 'ICD10_2010'), +('T14', 'Injury of unspecified body region', 'ICD10_2010'), +('T14.0', 'Superficial injury of unspecified body region', 'ICD10_2010'), +('T14.1', 'Open wound of unspecified body region', 'ICD10_2010'), +('T14.2', 'Fracture of unspecified body region', 'ICD10_2010'), +('T14.20', 'Fracture of unspecified body region, closed', 'ICD10_2010'), +('T14.21', 'Fracture of unspecified body region, open', 'ICD10_2010'), +('T14.3', 'Dislocation, sprain and strain of unspecified body region', 'ICD10_2010'), +('T14.30', 'Dislocation, sprain and strain of unspecified body region, closed', 'ICD10_2010'), +('T14.31', 'Dislocation, sprain and strain of unspecified body region, open', 'ICD10_2010'), +('T14.4', 'Injury of nerve(s) of unspecified body region', 'ICD10_2010'), +('T14.40', 'Injury of nerve(s) of unspecified body region, closed', 'ICD10_2010'), +('T14.41', 'Injury of nerve(s) of unspecified body region, open', 'ICD10_2010'), +('T14.5', 'Injury of blood vessel(s) of unspecified body region', 'ICD10_2010'), +('T14.50', 'Injury of blood vessel(s) of unspecified body region, closed', 'ICD10_2010'), +('T14.51', 'Injury of blood vessel(s) of unspecified body region, open', 'ICD10_2010'), +('T14.6', 'Injury of muscles and tendons of unspecified body region', 'ICD10_2010'), +('T14.60', 'Injury of muscles and tendons of unspecified body region, closed', 'ICD10_2010'), +('T14.61', 'Injury of muscles and tendons of unspecified body region, open', 'ICD10_2010'), +('T14.7', 'Crush injury and traumatic amputation of unspec body region', 'ICD10_2010'), +('T14.70', 'Crush injury and traumatic amputation of unspec body region, closed', 'ICD10_2010'), +('T14.71', 'Crush injury and traumatic amputation of unspec body region, open', 'ICD10_2010'), +('T14.8', 'Other injuries of unspecified body region', 'ICD10_2010'), +('T14.80', 'Other injuries of unspecified body region, closed', 'ICD10_2010'), +('T14.81', 'Other injuries of unspecified body region, open', 'ICD10_2010'), +('T14.9', 'Injury, unspecified', 'ICD10_2010'), +('T14.90', 'Injury, unspecified, closed', 'ICD10_2010'), +('T14.91', 'Injury, unspecified, open', 'ICD10_2010'), +('T15', 'Foreign body on external eye', 'ICD10_2010'), +('T15.0', 'Foreign body in cornea', 'ICD10_2010'), +('T15.1', 'Foreign body in conjunctival sac', 'ICD10_2010'), +('T15.8', 'Foreign body in other and multiple parts of external eye', 'ICD10_2010'), +('T15.9', 'Foreign body on external eye, part unspecified', 'ICD10_2010'), +('T16', 'Foreign body in ear', 'ICD10_2010'), +('T17', 'Foreign body in respiratory tract', 'ICD10_2010'), +('T17.0', 'Foreign body in nasal sinus', 'ICD10_2010'), +('T17.1', 'Foreign body in nostril', 'ICD10_2010'), +('T17.2', 'Foreign body in pharynx', 'ICD10_2010'), +('T17.3', 'Foreign body in larynx', 'ICD10_2010'), +('T17.4', 'Foreign body in trachea', 'ICD10_2010'), +('T17.5', 'Foreign body in bronchus', 'ICD10_2010'), +('T17.8', 'Foreign body in other and multiple parts of respiratory tract', 'ICD10_2010'), +('T17.9', 'Foreign body in respiratory tract, part unspecified', 'ICD10_2010'), +('T18', 'Foreign body in alimentary tract', 'ICD10_2010'), +('T18.0', 'Foreign body in mouth', 'ICD10_2010'), +('T18.1', 'Foreign body in oesophagus', 'ICD10_2010'), +('T18.2', 'Foreign body in stomach', 'ICD10_2010'), +('T18.3', 'Foreign body in small intestine', 'ICD10_2010'), +('T18.4', 'Foreign body in colon', 'ICD10_2010'), +('T18.5', 'Foreign body in anus and rectum', 'ICD10_2010'), +('T18.8', 'Foreign body in other and multiple parts of alimentary tract', 'ICD10_2010'), +('T18.9', 'Foreign body in alimentary tract, part unspecified', 'ICD10_2010'), +('T19', 'Foreign body in genitourinary tract', 'ICD10_2010'), +('T19.0', 'Foreign body in urethra', 'ICD10_2010'), +('T19.1', 'Foreign body in bladder', 'ICD10_2010'), +('T19.2', 'Foreign body in vulva and vagina', 'ICD10_2010'), +('T19.3', 'Foreign body in uterus [any part]', 'ICD10_2010'), +('T19.8', 'Foreign body in oth and multiple part of genitourinary tract', 'ICD10_2010'), +('T19.9', 'Foreign body in genitourinary tract, part unspecified', 'ICD10_2010'), +('T20', 'Burn and corrosion of head and neck', 'ICD10_2010'), +('T20.0', 'Burn of unspecified degree of head and neck', 'ICD10_2010'), +('T20.1', 'Burn of first degree of head and neck', 'ICD10_2010'), +('T20.2', 'Burn of second degree of head and neck', 'ICD10_2010'), +('T20.3', 'Burn of third degree of head and neck', 'ICD10_2010'), +('T20.4', 'Corrosion of unspecified degree of head and neck', 'ICD10_2010'), +('T20.5', 'Corrosion of first degree of head and neck', 'ICD10_2010'), +('T20.6', 'Corrosion of second degree of head and neck', 'ICD10_2010'), +('T20.7', 'Corrosion of third degree of head and neck', 'ICD10_2010'), +('T21', 'Burn and corrosion of trunk', 'ICD10_2010'), +('T21.0', 'Burn of unspecified degree of trunk', 'ICD10_2010'), +('T21.1', 'Burn of first degree of trunk', 'ICD10_2010'), +('T21.2', 'Burn of second degree of trunk', 'ICD10_2010'), +('T21.3', 'Burn of third degree of trunk', 'ICD10_2010'), +('T21.4', 'Corrosion of unspecified degree of trunk', 'ICD10_2010'), +('T21.5', 'Corrosion of first degree of trunk', 'ICD10_2010'), +('T21.6', 'Corrosion of second degree of trunk', 'ICD10_2010'), +('T21.7', 'Corrosion of third degree of trunk', 'ICD10_2010'), +('T22', 'Burn and corrosion of shoulder and upper limb, except wrist and hand', 'ICD10_2010'), +('T22.0', 'Burn of unspecified degree of shoulder and upper limb except wrist and hand', 'ICD10_2010'), +('T22.1', 'Burn of first degree of shoulder and upper limb, except wrist and hand', 'ICD10_2010'), +('T22.2', 'Burn of secondary degree of shoulder and upper limb, except wrist and hand', 'ICD10_2010'), +('T22.3', 'Burn of third degree of shoulder and upper limb excpt wrist and hand', 'ICD10_2010'), +('T22.4', 'Corrosion unspecified degree of shoulder and upper limb except wrist and hand', 'ICD10_2010'), +('T22.5', 'Corrosion of first degree of shoulder and upper limb, except wrist and hand', 'ICD10_2010'), +('T22.6', 'Corrosion secondary degree shoulder and upper limb except wrist and hand', 'ICD10_2010'), +('T22.7', 'Corrosion of third degree shoulder and upper limb, except wrist and hand', 'ICD10_2010'), +('T23', 'Burn and corrosion of wrist and hand', 'ICD10_2010'), +('T23.0', 'Burn of unspecified degree of wrist and hand', 'ICD10_2010'), +('T23.1', 'Burn of first degree of wrist and hand', 'ICD10_2010'), +('T23.2', 'Burn of second degree of wrist and hand', 'ICD10_2010'), +('T23.3', 'Burn of third degree of wrist and hand', 'ICD10_2010'), +('T23.4', 'Corrosion of unspecified degree of wrist and hand', 'ICD10_2010'), +('T23.5', 'Corrosion of first degree of wrist and hand', 'ICD10_2010'), +('T23.6', 'Corrosion of second degree of wrist and hand', 'ICD10_2010'), +('T23.7', 'Corrosion of third degree of wrist and hand', 'ICD10_2010'), +('T24', 'Burn and corrosion of hip and lower limb, except ankle and foot', 'ICD10_2010'), +('T24.0', 'Burn of unspecified degree of hip and lower limb except ankle and foot', 'ICD10_2010'), +('T24.1', 'Burn of first degree hip and lower limb except ankle and foot', 'ICD10_2010'), +('T24.2', 'Burn of second degree hip and lower limb except ankle and foot', 'ICD10_2010'), +('T24.3', 'Burn of third degree hip and lower limb except ankle and foot', 'ICD10_2010'), +('T24.4', 'Corrosion of unspecified degree hip and lower limb except ankle & foot', 'ICD10_2010'), +('T24.5', 'Corrosion of first degree hip and lower limb, except ankle & foot', 'ICD10_2010'), +('T24.6', 'Corrosion of second degree hip and lower limb, except ankle and foot', 'ICD10_2010'), +('T24.7', 'Corrosion of third degree of hip and lower limb, except ankle and foot', 'ICD10_2010'), +('T25', 'Burn and corrosion of ankle and foot', 'ICD10_2010'), +('T25.0', 'Burn of unspecified degree of ankle and foot', 'ICD10_2010'), +('T25.1', 'Burn of first degree of ankle and foot', 'ICD10_2010'), +('T25.2', 'Burn of second degree of ankle and foot', 'ICD10_2010'), +('T25.3', 'Burn of third degree of ankle and foot', 'ICD10_2010'), +('T25.4', 'Corrosion of unspecified degree of ankle and foot', 'ICD10_2010'), +('T25.5', 'Corrosion of first degree of ankle and foot', 'ICD10_2010'), +('T25.6', 'Corrosion of second degree of ankle and foot', 'ICD10_2010'), +('T25.7', 'Corrosion of third degree of ankle and foot', 'ICD10_2010'), +('T26', 'Burn and corrosion confined to eye and adnexa', 'ICD10_2010'), +('T26.0', 'Burn of eyelid and periocular area', 'ICD10_2010'), +('T26.1', 'Burn of cornea and conjunctival sac', 'ICD10_2010'), +('T26.2', 'Burn with resulting rupture and destruction of eyeball', 'ICD10_2010'), +('T26.3', 'Burn of other parts of eye and adnexa', 'ICD10_2010'), +('T26.4', 'Burn of eye and adnexa, part unspecified', 'ICD10_2010'), +('T26.5', 'Corrosion of eyelid and periocular area', 'ICD10_2010'), +('T26.6', 'Corrosion of cornea and conjunctival sac', 'ICD10_2010'), +('T26.7', 'Corrosion with resulting rupture and destruction of eyeball', 'ICD10_2010'), +('T26.8', 'Corrosion of other parts of eye and adnexa', 'ICD10_2010'), +('T26.9', 'Corrosion of eye and adnexa, part unspecified', 'ICD10_2010'), +('T27', 'Burn and corrosion of respiratory tract', 'ICD10_2010'), +('T27.0', 'Burn of larynx and trachea', 'ICD10_2010'), +('T27.1', 'Burn involving larynx and trachea with lung', 'ICD10_2010'), +('T27.2', 'Burn of other parts of respiratory tract', 'ICD10_2010'), +('T27.3', 'Burn of respiratory tract, part unspecified', 'ICD10_2010'), +('T27.4', 'Corrosion of larynx and trachea', 'ICD10_2010'), +('T27.5', 'Corrosion involving larynx and trachea with lung', 'ICD10_2010'), +('T27.6', 'Corrosion of other parts of respiratory tract', 'ICD10_2010'), +('T27.7', 'Corrosion of respiratory tract, part unspecified', 'ICD10_2010'), +('T28', 'Burn and corrosion of other internal organs', 'ICD10_2010'), +('T28.0', 'Burn of mouth and pharynx', 'ICD10_2010'), +('T28.1', 'Burn of oesophagus', 'ICD10_2010'), +('T28.2', 'Burn of other parts of alimentary tract', 'ICD10_2010'), +('T28.3', 'Burn of internal genitourinary organs', 'ICD10_2010'), +('T28.4', 'Burn of other and unspecified internal organs', 'ICD10_2010'), +('T28.5', 'Corrosion of mouth and pharynx', 'ICD10_2010'), +('T28.6', 'Corrosion of oesophagus', 'ICD10_2010'), +('T28.7', 'Corrosion of other parts of alimentary tract', 'ICD10_2010'), +('T28.8', 'Corrosion of internal genitourinary organs', 'ICD10_2010'), +('T28.9', 'Corrosion of other and unspecified internal organs', 'ICD10_2010'), +('T29', 'Burns and corrosions of multiple body regions', 'ICD10_2010'), +('T29.0', 'Burns of multiple regions, unspecified degree', 'ICD10_2010'), +('T29.1', 'Burns multi regions no more than first-degree burns mentioned', 'ICD10_2010'), +('T29.2', 'Burns multi regions no more than second-degree burns mentioned', 'ICD10_2010'), +('T29.3', 'Burns multi regions at least one burn of third degree mentioned', 'ICD10_2010'), +('T29.4', 'Corrosions of multiple regions, unspecified degree', 'ICD10_2010'), +('T29.5', 'Corrosions of multiple regions, no more than first-deg corrosions mentioned', 'ICD10_2010'), +('T29.6', 'Corrosions of multiple regions, no more than second-degree corrosions mentioned', 'ICD10_2010'), +('T29.7', 'Corros multi reg at least one corros of third deg mentioned', 'ICD10_2010'), +('T30', 'Burn and corrosion, body region unspecified', 'ICD10_2010'), +('T30.0', 'Burn of unspecified body region, unspecified degree', 'ICD10_2010'), +('T30.1', 'Burn of first degree, body region unspecified', 'ICD10_2010'), +('T30.2', 'Burn of second degree, body region unspecified', 'ICD10_2010'), +('T30.3', 'Burn of third degree, body region unspecified', 'ICD10_2010'), +('T30.4', 'Corrosion of unspecified body region, unspecified degree', 'ICD10_2010'), +('T30.5', 'Corrosion of first degree, body region unspecified', 'ICD10_2010'), +('T30.6', 'Corrosion of second degree, body region unspecified', 'ICD10_2010'), +('T30.7', 'Corrosion of third degree, body region unspecified', 'ICD10_2010'), +('T31', 'Burns classified according to extent of body surface involved', 'ICD10_2010'), +('T31.0', 'Burns involving less than 10% of body surface', 'ICD10_2010'), +('T31.1', 'Burns involving 10-19% of body surface', 'ICD10_2010'), +('T31.2', 'Burns involving 20-29% of body surface', 'ICD10_2010'), +('T31.3', 'Burns involving 30-39% of body surface', 'ICD10_2010'), +('T31.4', 'Burns involving 40-49% of body surface', 'ICD10_2010'), +('T31.5', 'Burns involving 50-59% of body surface', 'ICD10_2010'), +('T31.6', 'Burns involving 60-69% of body surface', 'ICD10_2010'), +('T31.7', 'Burns involving 70-79% of body surface', 'ICD10_2010'), +('T31.8', 'Burns involving 80-89% of body surface', 'ICD10_2010'), +('T31.9', 'Burns involving 90% or more of body surface', 'ICD10_2010'), +('T32', 'Corrosions classified according to extent of body surface involved', 'ICD10_2010'), +('T32.0', 'Corrosions involving less than 10% of body surface', 'ICD10_2010'), +('T32.1', 'Corrosions involving 10-19% of body surface', 'ICD10_2010'), +('T32.2', 'Corrosions involving 20-29% of body surface', 'ICD10_2010'), +('T32.3', 'Corrosions involving 30-39% of body surface', 'ICD10_2010'), +('T32.4', 'Corrosions involving 40-49% of body surface', 'ICD10_2010'), +('T32.5', 'Corrosions involving 50-59% of body surface', 'ICD10_2010'), +('T32.6', 'Corrosions involving 60-69% of body surface', 'ICD10_2010'), +('T32.7', 'Corrosions involving 70-79% of body surface', 'ICD10_2010'), +('T32.8', 'Corrosions involving 80-89% of body surface', 'ICD10_2010'), +('T32.9', 'Corrosions involving 90% or more of body surface', 'ICD10_2010'), +('T33', 'Superficial frostbite', 'ICD10_2010'), +('T33.0', 'Superficial frostbite of head', 'ICD10_2010'), +('T33.1', 'Superficial frostbite of neck', 'ICD10_2010'), +('T33.2', 'Superficial frostbite of thorax', 'ICD10_2010'), +('T33.3', 'Superficial frostbite of abdominal wall, lower back and pelvis', 'ICD10_2010'), +('T33.4', 'Superficial frostbite of arm', 'ICD10_2010'), +('T33.5', 'Superficial frostbite of wrist and hand', 'ICD10_2010'), +('T33.6', 'Superficial frostbite of hip and thigh', 'ICD10_2010'), +('T33.7', 'Superficial frostbite of knee and lower leg', 'ICD10_2010'), +('T33.8', 'Superficial frostbite of ankle and foot', 'ICD10_2010'), +('T33.9', 'Superficial frostbite of other and unspecified sites', 'ICD10_2010'), +('T34', 'Frostbite with tissue necrosis', 'ICD10_2010'), +('T34.0', 'Frostbite with tissue necrosis of head', 'ICD10_2010'), +('T34.1', 'Frostbite with tissue necrosis of neck', 'ICD10_2010'), +('T34.2', 'Frostbite with tissue necrosis of thorax', 'ICD10_2010'), +('T34.3', 'Frostbite with tissue necrosis abdominal wall, lower back and pelvis', 'ICD10_2010'), +('T34.4', 'Frostbite with tissue necrosis of arm', 'ICD10_2010'), +('T34.5', 'Frostbite with tissue necrosis of wrist and hand', 'ICD10_2010'), +('T34.6', 'Frostbite with tissue necrosis of hip and thigh', 'ICD10_2010'), +('T34.7', 'Frostbite with tissue necrosis of knee and lower leg', 'ICD10_2010'), +('T34.8', 'Frostbite with tissue necrosis of ankle and foot', 'ICD10_2010'), +('T34.9', 'Frostbite with tissue necrosis of other and unspec sites', 'ICD10_2010'), +('T35', 'Frostbite involving multiple body regions and unspecified frostbite', 'ICD10_2010'), +('T35.0', 'Superficial frostbite involving multiple body regions', 'ICD10_2010'), +('T35.1', 'Frostbite with tissue necrosis involving multiple body regions', 'ICD10_2010'), +('T35.2', 'Unspecified frostbite of head and neck', 'ICD10_2010'), +('T35.3', 'Unspecified frostbite thorax, abdomen, lowerr back and pelvis', 'ICD10_2010'), +('T35.4', 'Unspecified frostbite of upper limb', 'ICD10_2010'), +('T35.5', 'Unspecified frostbite of lower limb', 'ICD10_2010'), +('T35.6', 'Unspecified frostbite involving multiple body regions', 'ICD10_2010'), +('T35.7', 'Unspecified frostbite of unspecified site', 'ICD10_2010'), +('T36', 'Poisoning by systemic antibiotics', 'ICD10_2010'), +('T36.0', 'Poisoning, penicillins', 'ICD10_2010'), +('T36.1', 'Poisoning, cefalosporins and other beta-lactam antibiotics', 'ICD10_2010'), +('T36.2', 'Poisoning, chloramphenicol group', 'ICD10_2010'), +('T36.3', 'Poisoning, macrolides', 'ICD10_2010'), +('T36.4', 'Poisoning, tetracyclines', 'ICD10_2010'), +('T36.5', 'Poisoning, aminoglycosides', 'ICD10_2010'), +('T36.6', 'Poisoning, rifamycins', 'ICD10_2010'), +('T36.7', 'Poisoning, antifungal antibiotics, systemically used', 'ICD10_2010'), +('T36.8', 'Poisoning, other systemic antibiotics', 'ICD10_2010'), +('T36.9', 'Poisoning, systemic antibiotic, unspecified', 'ICD10_2010'), +('T37', 'Poisoning by other systemic anti-infectives and antiparasitics', 'ICD10_2010'), +('T37.0', 'Poisoning, sulfonamides', 'ICD10_2010'), +('T37.1', 'Poisoning, antimycobacterial drugs', 'ICD10_2010'), +('T37.2', 'Poisoning, antimalarials and drugs acting on other blood protozoa', 'ICD10_2010'), +('T37.3', 'Poisoning, other antiprotozoal drugs', 'ICD10_2010'), +('T37.4', 'Poisoning, anthelminthics', 'ICD10_2010'), +('T37.5', 'Poisoning, antiviral drugs', 'ICD10_2010'), +('T37.8', 'Poisoning, other specified systemic anti-infectives and antiparasitics', 'ICD10_2010'), +('T37.9', 'Poisoning, systemic anti-infective and antiparasitic, unspecified', 'ICD10_2010'), +('T38', 'Poisoning by hormones and their synthetic substitutes and antagonists, not elsewhere classified', 'ICD10_2010'), +('T38.0', 'Poisoning, glucocorticoids and synthetic analogues', 'ICD10_2010'), +('T38.1', 'Poisoning, thyroid hormones and substitutes', 'ICD10_2010'), +('T38.2', 'Poisoning, antithyroid drugs', 'ICD10_2010'), +('T38.3', 'Poisoning, insulin and oral hypoglycaemic [antidiabetic] drugs', 'ICD10_2010'), +('T38.4', 'Poisoning, oral contraceptives', 'ICD10_2010'), +('T38.5', 'Poisoning, other estrogens and progestogens', 'ICD10_2010'), +('T38.6', 'Poisoning, antigonadotropins, antiestrogens, antiandrogens nec', 'ICD10_2010'), +('T38.7', 'Poisoning, androgens and anabolic congeners', 'ICD10_2010'), +('T38.8', 'Poisoning, other and unspecified hormones and their synthetic substitutes', 'ICD10_2010'), +('T38.9', 'Poisoning, other and unspecified hormone antagonists', 'ICD10_2010'), +('T39', 'Poisoning by nonopioid analgesics, antipyretics and antirheumatics', 'ICD10_2010'), +('T39.0', 'Poisoning, salicylates', 'ICD10_2010'), +('T39.1', 'Poisoning, 4-aminophenol derivatives', 'ICD10_2010'), +('T39.2', 'Poisoning, pyrazolone derivatives', 'ICD10_2010'), +('T39.3', 'Poisoning, other nonsteroidal anti-inflammatory drugs [NSAID]', 'ICD10_2010'), +('T39.4', 'Poisoning, antirheumatics, not elsewhere classified', 'ICD10_2010'), +('T39.8', 'Poisoning, other nonopiod analgesics and antipyretics nec', 'ICD10_2010'), +('T39.9', 'Poisoning, nonopioid analgesic, antipyretic and antirheumatic unspec act', 'ICD10_2010'), +('T40', 'Poisoning by narcotics and psychodysleptics [hallucinogens]', 'ICD10_2010'), +('T40.0', 'Poisoning, opium', 'ICD10_2010'), +('T40.1', 'Poisoning, heroin', 'ICD10_2010'), +('T40.2', 'Poisoning, other opioids', 'ICD10_2010'), +('T40.3', 'Poisoning, methadone', 'ICD10_2010'), +('T40.4', 'Poisoning, other synthetic narcotics', 'ICD10_2010'), +('T40.5', 'Poisoning, cocaine', 'ICD10_2010'), +('T40.6', 'Poisoning, other and unspecified narcotics', 'ICD10_2010'), +('T40.7', 'Poisoning, cannabis (derivatives)', 'ICD10_2010'), +('T40.8', 'Poisoning, lysergide [lsd]', 'ICD10_2010'), +('T40.9', 'Poisoning, other and unspecified psychodysleptics [hallucinogens]', 'ICD10_2010'), +('T41', 'Poisoning by anaesthetics and therapeutic gases', 'ICD10_2010'), +('T41.0', 'Poisoning, inhaled anaesthetics', 'ICD10_2010'), +('T41.1', 'Poisoning, intravenous anaesthetics', 'ICD10_2010'), +('T41.2', 'Poisoning, other and unspecified general anaesthetics', 'ICD10_2010'), +('T41.3', 'Poisoning, local anaesthetics', 'ICD10_2010'), +('T41.4', 'Poisoning, anaesthetic, unspecified', 'ICD10_2010'), +('T41.5', 'Poisoning, therapeutic gases', 'ICD10_2010'), +('T42', 'Poisoning by antiepileptic, sedative-hypnotic and antiparkinsonism drugs', 'ICD10_2010'), +('T42.0', 'Poisoning, hydantoin derivatives', 'ICD10_2010'), +('T42.1', 'Poisoning, iminostilbenes', 'ICD10_2010'), +('T42.2', 'Poisoning, succinimides and oxazolidinediones', 'ICD10_2010'), +('T42.3', 'Poisoning, barbiturates', 'ICD10_2010'), +('T42.4', 'Poisoning, benzodiazepines', 'ICD10_2010'), +('T42.5', 'Poisoning, mixed antiepileptics, not elsewhere classified', 'ICD10_2010'), +('T42.6', 'Poisoning, other antiepileptic and sedative-hypnotic drugs', 'ICD10_2010'), +('T42.7', 'Poisoning, antiepileptic and sedative-hypnotic drugs, unspecified', 'ICD10_2010'), +('T42.8', 'Poisoning, antiparkinson drug and other central muscle-tone depressant', 'ICD10_2010'), +('T43', 'Poisoning by psychotropic drugs, not elsewhere classified', 'ICD10_2010'), +('T43.0', 'Poisoning, tricyclic and tetracyclic antidepressants', 'ICD10_2010'), +('T43.1', 'Poisoning, monoamine-oxidase-inhibitor antidepressants', 'ICD10_2010'), +('T43.2', 'Poisoning, other and unspecified antidepressants', 'ICD10_2010'), +('T43.3', 'Poisoning, phenothiazine antipsychotics and neuroleptics', 'ICD10_2010'), +('T43.4', 'Poisoning, butyrophenone and thioxanthene neuroleptics', 'ICD10_2010'), +('T43.5', 'Poisoning, other and unspecified antipsychotics and neuroleptics', 'ICD10_2010'), +('T43.6', 'Poisoning, psychostimulants with abuse potential', 'ICD10_2010'), +('T43.8', 'Poisoning, other psychotropic drugs, not elsewhere classified', 'ICD10_2010'), +('T43.9', 'Poisoning, psychotropic drug, unspecified', 'ICD10_2010'), +('T44', 'Poisoning by drugs primarily affecting the autonomic nervous system', 'ICD10_2010'), +('T44.0', 'Poisoning, anticholinesterase agents', 'ICD10_2010'), +('T44.1', 'Poisoning, other parasympathomimetics [cholinergics]', 'ICD10_2010'), +('T44.2', 'Poisoning, ganglionic blocking drugs, not elsewhere classified', 'ICD10_2010'), +('T44.3', 'Poisoning, oth parasympatholy [antichol and antimusc] spasmolytics nec', 'ICD10_2010'), +('T44.4', 'Poisoning, predominantly alpha-adrenoreceptor agonists nec', 'ICD10_2010'), +('T44.5', 'Poisoning, predominantly beta-adrenreceptor agonists nec', 'ICD10_2010'), +('T44.6', 'Poisoning, alpha-adrenoreceptor agonists nec', 'ICD10_2010'), +('T44.7', 'Poisoning, beta-adrenreceptor agonists nec', 'ICD10_2010'), +('T44.8', 'Poisoning, centrally acting and adrenergic-neuron-blocking agents nec', 'ICD10_2010'), +('T44.9', 'Poisoning, other unspecified drugs primarily affect the autonomic nervous system', 'ICD10_2010'), +('T45', 'Poisoning by primarily systemic and haematological agents, not elsewhere classified', 'ICD10_2010'), +('T45.0', 'Poisoning, antiallergic and antiemetic drugs', 'ICD10_2010'), +('T45.1', 'Poisoning, antineoplastic and immunosuppressive drugs', 'ICD10_2010'), +('T45.2', 'Poisoning, vitamins, not elsewhere classified', 'ICD10_2010'), +('T45.3', 'Poisoning, enzymes, not elsewhere classified', 'ICD10_2010'), +('T45.4', 'Poisoning, iron and its compounds', 'ICD10_2010'), +('T45.5', 'Poisoning, anticoagulants', 'ICD10_2010'), +('T45.6', 'Poisoning, fibrinolysis-affecting drugs', 'ICD10_2010'), +('T45.7', 'Poisoning, anticoagulant antagonists, vitamin k and other coagulants', 'ICD10_2010'), +('T45.8', 'Poisoning, other primarily systemic and haematological agents', 'ICD10_2010'), +('T45.9', 'Poisoning, primarily systemic and haematological agent, unspecified', 'ICD10_2010'), +('T46', 'Poisoning by agents primarily affecting the cardiovascular system', 'ICD10_2010'), +('T46.0', 'Poisoning, cardiac-stimulant glycosides and drugs of similar action', 'ICD10_2010'), +('T46.1', 'Poisoning, calcium-channel blockers', 'ICD10_2010'), +('T46.2', 'Poisoning, other antidysrhythmic drugs, not elsewhere classified', 'ICD10_2010'), +('T46.3', 'Poisoning, coronary vasodilators, not elsewhere classified', 'ICD10_2010'), +('T46.4', 'Poisoning, angiotensin-converting-enzyme inhibitors', 'ICD10_2010'), +('T46.5', 'Poisoning, other antihypertensive drugs, not elsewhere classified', 'ICD10_2010'), +('T46.6', 'Poisoning, antihyperlipidaemic and antiarteriosclerotic drugs', 'ICD10_2010'), +('T46.7', 'Poisoning, peripheral vasodilators', 'ICD10_2010'), +('T46.8', 'Poisoning, antivaricose drugs, including sclerosing agents', 'ICD10_2010'), +('T46.9', 'Poisoning, oth and unspec agent primarily affect the cardiovascular sys', 'ICD10_2010'), +('T47', 'Poisoning by agents primarily affecting the gastrointestinal system', 'ICD10_2010'), +('T47.0', 'Poisoning, histamine h2-receptor antagonists', 'ICD10_2010'), +('T47.1', 'Poisoning, other antacids and anti-gastric-secretion drugs', 'ICD10_2010'), +('T47.2', 'Poisoning, stimulant laxatives', 'ICD10_2010'), +('T47.3', 'Poisoning, saline and osmotic laxatives', 'ICD10_2010'), +('T47.4', 'Poisoning, other laxatives', 'ICD10_2010'), +('T47.5', 'Poisoning, digestants', 'ICD10_2010'), +('T47.6', 'Poisoning, antidiarrhoeal drugs', 'ICD10_2010'), +('T47.7', 'Poisoning, emetics', 'ICD10_2010'), +('T47.8', 'Poisoning, other agents primarily affecting the gastrointestinal system', 'ICD10_2010'), +('T47.9', 'Poisoning, agent primarily affecting the gastrointestinal syst unspec act', 'ICD10_2010'), +('T48', 'Poisoning by agents primarily acting on smooth and skeletal muscles and the respiratory system', 'ICD10_2010'), +('T48.0', 'Poisoning, oxytocic drugs', 'ICD10_2010'), +('T48.1', 'Poisoning, skeletal muscle relaxants [neuromuscular blocking agents]', 'ICD10_2010'), +('T48.2', 'Poisoning, other and unspecified agents primarily acting on muscles', 'ICD10_2010'), +('T48.3', 'Poisoning, antitussives', 'ICD10_2010'), +('T48.4', 'Poisoning, expectorants', 'ICD10_2010'), +('T48.5', 'Poisoning, anti-common-cold drugs', 'ICD10_2010'), +('T48.6', 'Poisoning, antiasthmatics, not elsewhere classified', 'ICD10_2010'), +('T48.7', 'Poisoning, other and unspec agents primarily acting on the respiratory system', 'ICD10_2010'), +('T49', 'Poisoning by topical agents primarily affecting skin and mucous membrane and by ophthalmological, otorhinolaryngological and dental drugs', 'ICD10_2010'), +('T49.0', 'Poisoning, loc antifungal anti-infective & anti-inflammatory drug nec', 'ICD10_2010'), +('T49.1', 'Poisoning, antipruritics', 'ICD10_2010'), +('T49.2', 'Poisoning, local astringents and local detergents', 'ICD10_2010'), +('T49.3', 'Poisoning, emollients, demulcents and protectants', 'ICD10_2010'), +('T49.4', 'Poisoning, keratolytics keratoplastics oth hair treat drugs and preps', 'ICD10_2010'), +('T49.5', 'Poisoning, ophthalmological drugs and preparations', 'ICD10_2010'), +('T49.6', 'Poisoning, otorhinolaryngological drugs and preparations', 'ICD10_2010'), +('T49.7', 'Poisoning, dental drugs, topically applied', 'ICD10_2010'), +('T49.8', 'Poisoning, other topical agents', 'ICD10_2010'), +('T49.9', 'Poisoning, topical agent, unspecified', 'ICD10_2010'), +('T50', 'Poisoning by diuretics and other and unspecified drugs, medicaments and biological substances', 'ICD10_2010'), +('T50.0', 'Poisoning, mineralocorticoids and their antagonists', 'ICD10_2010'), +('T50.1', 'Poisoning, loop [high-ceiling] diuretics', 'ICD10_2010'), +('T50.2', 'Poisoning, carbonic-anhydrase inhibitors benzothiadiazide oth diuretic', 'ICD10_2010'), +('T50.3', 'Poisoning, electrolytic, caloric and water-balance agents', 'ICD10_2010'), +('T50.4', 'Poisoning, drugs affecting uric acid metabolism', 'ICD10_2010'), +('T50.5', 'Poisoning, appetite depressants', 'ICD10_2010'), +('T50.6', 'Poisoning, antidotes and chelating agents, not elsewhere classified', 'ICD10_2010'), +('T50.7', 'Poisoning, analeptics and opioid receptor antagonists', 'ICD10_2010'), +('T50.8', 'Poisoning, diagnostic agents', 'ICD10_2010'), +('T50.9', 'Poisoning, other and unspec drugs medicaments & biological subs', 'ICD10_2010'), +('T51', 'Toxic effect of alcohol', 'ICD10_2010'), +('T51.0', 'Toxic effect, ethanol', 'ICD10_2010'), +('T51.1', 'Toxic effect, methanol', 'ICD10_2010'), +('T51.2', 'Toxic effect, 2-propanol', 'ICD10_2010'), +('T51.3', 'Toxic effect, fusel oil', 'ICD10_2010'), +('T51.8', 'Toxic effect, other alcohols', 'ICD10_2010'), +('T51.9', 'Toxic effect, alcohol, unspecified', 'ICD10_2010'), +('T52', 'Toxic effect of organic solvents', 'ICD10_2010'), +('T52.0', 'Toxic effect, petroleum products', 'ICD10_2010'), +('T52.1', 'Toxic effect, benzene', 'ICD10_2010'), +('T52.2', 'Toxic effect, homologues of benzene', 'ICD10_2010'), +('T52.3', 'Toxic effect, glycols', 'ICD10_2010'), +('T52.4', 'Toxic effect, ketones', 'ICD10_2010'), +('T52.8', 'Toxic effect, other organic solvents', 'ICD10_2010'), +('T52.9', 'Toxic effect, organic solvent, unspecified', 'ICD10_2010'), +('T53', 'Toxic effect of halogen derivatives of aliphatic and aromatic hydrocarbons', 'ICD10_2010'), +('T53.0', 'Toxic effect, carbon tetrachloride', 'ICD10_2010'); +INSERT INTO `icd10` (`ID_ICD10`, `Diagnosa`, `Versi_ICD10`) VALUES +('T53.1', 'Toxic effect, chloroform', 'ICD10_2010'), +('T53.2', 'Toxic effect, trichloroethylene', 'ICD10_2010'), +('T53.3', 'Toxic effect, tetrachloroethylene', 'ICD10_2010'), +('T53.4', 'Toxic effect, dichloromethane', 'ICD10_2010'), +('T53.5', 'Toxic effect, chlorofluorocarbons', 'ICD10_2010'), +('T53.6', 'Toxic effect, other halogen derivatives of aliphatic hydrocarbons', 'ICD10_2010'), +('T53.7', 'Toxic effect, other halogen derivatives of aromatic hydrocarbons', 'ICD10_2010'), +('T53.9', 'Toxic effect, halogen derivative of aliphatic and aromatic hydrocarbons', 'ICD10_2010'), +('T54', 'Toxic effect of corrosive substances', 'ICD10_2010'), +('T54.0', 'Toxic effect, phenol and phenol homologues', 'ICD10_2010'), +('T54.1', 'Toxic effect, other corrosive organic compounds', 'ICD10_2010'), +('T54.2', 'Toxic effect, corrosive acids and acid-like substances', 'ICD10_2010'), +('T54.3', 'Toxic effect, corrosive alkalis and alkali-like substances', 'ICD10_2010'), +('T54.9', 'Toxic effect, corrosive substance, unspecified', 'ICD10_2010'), +('T55', 'Toxic effect of soaps and detergents', 'ICD10_2010'), +('T56', 'Toxic effect of metals', 'ICD10_2010'), +('T56.0', 'Toxic effect, lead and its compounds', 'ICD10_2010'), +('T56.1', 'Toxic effect, mercury and its compounds', 'ICD10_2010'), +('T56.2', 'Toxic effect, chromium and its compounds', 'ICD10_2010'), +('T56.3', 'Toxic effect, cadmium and its compounds', 'ICD10_2010'), +('T56.4', 'Toxic effect, copper and its compounds', 'ICD10_2010'), +('T56.5', 'Toxic effect, zinc and its compounds', 'ICD10_2010'), +('T56.6', 'Toxic effect, tin and its compounds', 'ICD10_2010'), +('T56.7', 'Toxic effect, beryllium and its compounds', 'ICD10_2010'), +('T56.8', 'Toxic effect, other metals', 'ICD10_2010'), +('T56.9', 'Toxic effect, metal, unspecified', 'ICD10_2010'), +('T57', 'Toxic effect of other inorganic substances', 'ICD10_2010'), +('T57.0', 'Toxic effect, arsenic and its compounds', 'ICD10_2010'), +('T57.1', 'Toxic effect, phosphorus and its compounds', 'ICD10_2010'), +('T57.2', 'Toxic effect, manganese and its compounds', 'ICD10_2010'), +('T57.3', 'Toxic effect, hydrogen cyanide', 'ICD10_2010'), +('T57.8', 'Toxic effect, other specified inorganic substances', 'ICD10_2010'), +('T57.9', 'Toxic effect, inorganic substance, unspecified', 'ICD10_2010'), +('T58', 'Toxic effect of carbon monoxide', 'ICD10_2010'), +('T59', 'Toxic effect of other gases, fumes and vapours', 'ICD10_2010'), +('T59.0', 'Toxic effect, nitrogen oxides', 'ICD10_2010'), +('T59.1', 'Toxic effect, sulfur dioxide', 'ICD10_2010'), +('T59.2', 'Toxic effect, formaldehyde', 'ICD10_2010'), +('T59.3', 'Toxic effect, lacrimogenic gas', 'ICD10_2010'), +('T59.4', 'Toxic effect, chlorine gas', 'ICD10_2010'), +('T59.5', 'Toxic effect, fluorine gas and hydrogen fluoride', 'ICD10_2010'), +('T59.6', 'Toxic effect, hydrogen sulfide', 'ICD10_2010'), +('T59.7', 'Toxic effect, carbon dioxide', 'ICD10_2010'), +('T59.8', 'Toxic effect, other specified gases, fumes and vapours', 'ICD10_2010'), +('T59.9', 'Toxic effect, gases, fumes and vapours, unspecified', 'ICD10_2010'), +('T60', 'Toxic effect of pesticides', 'ICD10_2010'), +('T60.0', 'Toxic effect, organophosphate and carbamate insecticides', 'ICD10_2010'), +('T60.1', 'Toxic effect, halogenated insecticides', 'ICD10_2010'), +('T60.2', 'Toxic effect, other insecticides', 'ICD10_2010'), +('T60.3', 'Toxic effect, herbicides and fungicides', 'ICD10_2010'), +('T60.4', 'Toxic effect, rodenticides', 'ICD10_2010'), +('T60.8', 'Toxic effect, other pesticides', 'ICD10_2010'), +('T60.9', 'Toxic effect, pesticide, unspecified', 'ICD10_2010'), +('T61', 'Toxic effect of noxious substances eaten as seafood', 'ICD10_2010'), +('T61.0', 'Toxic effect, ciguatera fish poisoning', 'ICD10_2010'), +('T61.1', 'Toxic effect, scombroid fish poisoning', 'ICD10_2010'), +('T61.2', 'Toxic effect, other fish and shellfish poisoning', 'ICD10_2010'), +('T61.8', 'Toxic effect of other seafoods', 'ICD10_2010'), +('T61.9', 'Toxic effect of unspecified seafood', 'ICD10_2010'), +('T62', 'Toxic effect of other noxious substances eaten as food', 'ICD10_2010'), +('T62.0', 'Toxic effect, ingested mushrooms', 'ICD10_2010'), +('T62.1', 'Toxic effect, ingested berries', 'ICD10_2010'), +('T62.2', 'Toxic effect, other ingested (parts of) plant(s)', 'ICD10_2010'), +('T62.8', 'Toxic effect, other specified noxious substances eaten as food', 'ICD10_2010'), +('T62.9', 'Toxic effect, noxious substance eaten as food, unspecified', 'ICD10_2010'), +('T63', 'Toxic effect of contact with venomous animals', 'ICD10_2010'), +('T63.0', 'Toxic effect, snake venom', 'ICD10_2010'), +('T63.1', 'Toxic effect, venom of other reptiles', 'ICD10_2010'), +('T63.2', 'Toxic effect, venom of scorpion', 'ICD10_2010'), +('T63.3', 'Toxic effect, venom of spider', 'ICD10_2010'), +('T63.4', 'Toxic effect, venom of other arthropods', 'ICD10_2010'), +('T63.5', 'Toxic effect of contact with fish', 'ICD10_2010'), +('T63.6', 'Toxic effect of contact with other marine animals', 'ICD10_2010'), +('T63.8', 'Toxic effect of contact with other venomous animals', 'ICD10_2010'), +('T63.9', 'Toxic effect of contact with unspecified venomous animal', 'ICD10_2010'), +('T64', 'Toxic effect of aflatoxin and other mycotoxin food contams', 'ICD10_2010'), +('T65', 'Toxic effect of other and unspecified substances', 'ICD10_2010'), +('T65.0', 'Toxic effect, cyanides', 'ICD10_2010'), +('T65.1', 'Toxic effect, strychnine and its salts', 'ICD10_2010'), +('T65.2', 'Toxic effect, tobacco and nicotine', 'ICD10_2010'), +('T65.3', 'Toxic effect, nitroderivs and aminoderivs of benzene and its homologues', 'ICD10_2010'), +('T65.4', 'Toxic effect, carbon disulfide', 'ICD10_2010'), +('T65.5', 'Toxic effect, nitroglycerin and other nitric acids and esters', 'ICD10_2010'), +('T65.6', 'Toxic effect, paints and dyes, not elsewhere classified', 'ICD10_2010'), +('T65.8', 'Toxic effect of other specified substances', 'ICD10_2010'), +('T65.9', 'Toxic effect of unspecified substance', 'ICD10_2010'), +('T66', 'Unspecified effects of radiation', 'ICD10_2010'), +('T67', 'Effects of heat and light', 'ICD10_2010'), +('T67.0', 'Heatstroke and sunstroke', 'ICD10_2010'), +('T67.1', 'Heat syncope', 'ICD10_2010'), +('T67.2', 'Heat cramp', 'ICD10_2010'), +('T67.3', 'Heat exhaustion, anhydrotic', 'ICD10_2010'), +('T67.4', 'Heat exhaustion due to salt depletion', 'ICD10_2010'), +('T67.5', 'Heat exhaustion, unspecified', 'ICD10_2010'), +('T67.6', 'Heat fatigue, transient', 'ICD10_2010'), +('T67.7', 'Heat oedema', 'ICD10_2010'), +('T67.8', 'Other effects of heat and light', 'ICD10_2010'), +('T67.9', 'Effect of heat and light, unspecified', 'ICD10_2010'), +('T68', 'Hypothermia', 'ICD10_2010'), +('T69', 'Other effects of reduced temperature', 'ICD10_2010'), +('T69.0', 'Immersion hand and foot', 'ICD10_2010'), +('T69.1', 'Chilblains', 'ICD10_2010'), +('T69.8', 'Other specified effects of reduced temperature', 'ICD10_2010'), +('T69.9', 'Effect of reduced temperature, unspecified', 'ICD10_2010'), +('T70', 'Effects of air pressure and water pressure', 'ICD10_2010'), +('T70.0', 'Otitic barotrauma', 'ICD10_2010'), +('T70.1', 'Sinus barotrauma', 'ICD10_2010'), +('T70.2', 'Other and unspecified effects of high altitude', 'ICD10_2010'), +('T70.3', 'Caisson disease [decompression sickness]', 'ICD10_2010'), +('T70.4', 'Effects of high-pressure fluids', 'ICD10_2010'), +('T70.8', 'Other effects of air pressure and water pressure', 'ICD10_2010'), +('T70.9', 'Effect of air pressure and water pressure, unspecified', 'ICD10_2010'), +('T71', 'Asphyxiation', 'ICD10_2010'), +('T73', 'Effects of other deprivation', 'ICD10_2010'), +('T73.0', 'Effects of hunger', 'ICD10_2010'), +('T73.1', 'Effects of thirst', 'ICD10_2010'), +('T73.2', 'Exhaustion due to exposure', 'ICD10_2010'), +('T73.3', 'Exhaustion due to excessive exertion', 'ICD10_2010'), +('T73.8', 'Other effects of deprivation', 'ICD10_2010'), +('T73.9', 'Effect of deprivation, unspecified', 'ICD10_2010'), +('T74', 'Maltreatment syndromes', 'ICD10_2010'), +('T74.0', 'Neglect or abandonment', 'ICD10_2010'), +('T74.1', 'Physical abuse', 'ICD10_2010'), +('T74.2', 'Sexual abuse', 'ICD10_2010'), +('T74.3', 'Psychological abuse', 'ICD10_2010'), +('T74.8', 'Other maltreatment syndromes', 'ICD10_2010'), +('T74.9', 'Maltreatment syndrome, unspecified', 'ICD10_2010'), +('T75', 'Effects of other external causes', 'ICD10_2010'), +('T75.0', 'Effects of lightning', 'ICD10_2010'), +('T75.1', 'Drowning and nonfatal submersion', 'ICD10_2010'), +('T75.2', 'Effects of vibration', 'ICD10_2010'), +('T75.3', 'Motion sickness', 'ICD10_2010'), +('T75.4', 'Effects of electric current', 'ICD10_2010'), +('T75.8', 'Other specified effects of external causes', 'ICD10_2010'), +('T78', 'Adverse effects, not elsewhere classified', 'ICD10_2010'), +('T78.0', 'Anaphylactic shock due to adverse food reaction', 'ICD10_2010'), +('T78.1', 'Other adverse food reactions, not elsewhere classified', 'ICD10_2010'), +('T78.2', 'Anaphylactic shock, unspecified', 'ICD10_2010'), +('T78.3', 'Angioneurotic oedema', 'ICD10_2010'), +('T78.4', 'Allergy, unspecified', 'ICD10_2010'), +('T78.8', 'Other adverse effects, not elsewhere classified', 'ICD10_2010'), +('T78.9', 'Adverse effect, unspecified', 'ICD10_2010'), +('T79', 'Certain early complications of trauma, not elsewhere classified', 'ICD10_2010'), +('T79.0', 'Air embolism (traumatic)', 'ICD10_2010'), +('T79.1', 'Fat embolism (traumatic)', 'ICD10_2010'), +('T79.2', 'Traumatic secondary and recurrent haemorrhage', 'ICD10_2010'), +('T79.3', 'Post-traumatic wound infection, not elsewhere classified', 'ICD10_2010'), +('T79.4', 'Traumatic shock', 'ICD10_2010'), +('T79.5', 'Traumatic anuria', 'ICD10_2010'), +('T79.6', 'Traumatic ischaemia of muscle', 'ICD10_2010'), +('T79.7', 'Traumatic subcutaneous emphysema', 'ICD10_2010'), +('T79.8', 'Other early complications of trauma', 'ICD10_2010'), +('T79.9', 'Unspecified early complication of trauma', 'ICD10_2010'), +('T80', 'Complications following infusion, transfusion and therapeutic injection', 'ICD10_2010'), +('T80.0', 'Air embolism following infusion transfusion and therapeutic inject', 'ICD10_2010'), +('T80.1', 'Vasc comps following infusion transfusion and therapeutic inject', 'ICD10_2010'), +('T80.2', 'Infections following infusion transfusion and therapeutic inject', 'ICD10_2010'), +('T80.3', 'ABO incompatibility reaction', 'ICD10_2010'), +('T80.4', 'Rh incompatibility reaction', 'ICD10_2010'), +('T80.5', 'Anaphylactic shock due to serum', 'ICD10_2010'), +('T80.6', 'Other serum reactions', 'ICD10_2010'), +('T80.8', 'Other complications following infusion transfusion & therap inject', 'ICD10_2010'), +('T80.9', 'Unspecified complication following infusion transfusion and therapeutic inject', 'ICD10_2010'), +('T81', 'Complications of procedures, not elsewhere classified', 'ICD10_2010'), +('T81.0', 'Haemorrhage and haematoma complicating a procedure nec', 'ICD10_2010'), +('T81.1', 'Shock during or resulting from a procedure nec', 'ICD10_2010'), +('T81.2', 'Accidental puncture and laceration during a procedure nec', 'ICD10_2010'), +('T81.3', 'Disruption of operation wound, not elsewhere classified', 'ICD10_2010'), +('T81.4', 'Infection following a procedure, not elsewhere classified', 'ICD10_2010'), +('T81.5', 'Foreign body accidentally left in body cavity or operation wound following a procedure', 'ICD10_2010'), +('T81.6', 'Acute reaction to foreign substance accident left during a procedures', 'ICD10_2010'), +('T81.7', 'Vascular complications following a procedure', 'ICD10_2010'), +('T81.8', 'Other complications of procedures, not elsewhere classified', 'ICD10_2010'), +('T81.9', 'Unspecified complication of procedure', 'ICD10_2010'), +('T82', 'Complications of cardiac and vascular prosthetic devices, implants and grafts', 'ICD10_2010'), +('T82.0', 'Mechanical complication of heart valve prosthesis', 'ICD10_2010'), +('T82.1', 'Mechanical complication of cardiac electronic device', 'ICD10_2010'), +('T82.2', 'Mech complication of coronary artery bypass and valve grafts', 'ICD10_2010'), +('T82.3', 'Mechanical complication of other vascular grafts', 'ICD10_2010'), +('T82.4', 'Mechanical complication of vascular dialysis catheter', 'ICD10_2010'), +('T82.5', 'Mechanical complication of other cardiac and vascular devices and implants', 'ICD10_2010'), +('T82.6', 'Infection and inflammatory reaction due to cardiac valve prosthesis', 'ICD10_2010'), +('T82.7', 'Infection and inflammatory reaction due other cardiac and vascular devices, implant and grafts', 'ICD10_2010'), +('T82.8', 'Other complications of cardic and vascular prosthetic devices, implants and grafts', 'ICD10_2010'), +('T82.9', 'Unspecified complications of cardiac and vascular prosthetic devices, implants and grafts', 'ICD10_2010'), +('T83', 'Complications of genitourinary prosthetic devices, implants and grafts', 'ICD10_2010'), +('T83.0', 'Mechanical complication of urinary (indwelling) catheter', 'ICD10_2010'), +('T83.1', 'Mechanical complication of other urinary devices and implants', 'ICD10_2010'), +('T83.2', 'Mechanical complication of graft of urinary organ', 'ICD10_2010'), +('T83.3', 'Mechanical complication of intrauterine contraceptive device', 'ICD10_2010'), +('T83.4', 'Mechanical complication of other prosthetic devices, implants and grafts in genital tract', 'ICD10_2010'), +('T83.5', 'Infection and inflammatory reaction due to prosthetic devices, implant and graft urinary system', 'ICD10_2010'), +('T83.6', 'Infection inflammatory reaction due to prosthetic device, implant and graft in genital tract', 'ICD10_2010'), +('T83.8', 'Others complications of genitourinary prosthetic device, implants and grafts', 'ICD10_2010'), +('T83.9', 'Unspecified complication of genitourinary prosthetic devices, implant and graft', 'ICD10_2010'), +('T84', 'Complications of internal orthopaedic prosthetic devices, implants and grafts', 'ICD10_2010'), +('T84.0', 'Mechanical complication of internal joint prosthesis', 'ICD10_2010'), +('T84.1', 'Mechanical complication of internal fixation device of bones of limb', 'ICD10_2010'), +('T84.2', 'Mechanical complication of internal fixation device of other bones', 'ICD10_2010'), +('T84.3', 'Mechanical complication other bone devices implants and grafts', 'ICD10_2010'), +('T84.4', 'Mechanical complication of other internal orthopaedic devices, implants and grafts', 'ICD10_2010'), +('T84.5', 'Infection and inflammatory reaction due to internal joint pros', 'ICD10_2010'), +('T84.6', 'Infection and inflammatory reaction due internal fixation device [any site]', 'ICD10_2010'), +('T84.7', 'Infection and inflammatory reaction due to other internal orthopedic prosthetic devices, implants and grafts', 'ICD10_2010'), +('T84.8', 'Other complications of internal orthopaedic prosthtic devices, implants & grafts', 'ICD10_2010'), +('T84.9', 'Unspecified complication of internal othopaedic prosthetic device, implant & graft', 'ICD10_2010'), +('T85', 'Complications of other internal prosthetic devices, implants and grafts', 'ICD10_2010'), +('T85.0', 'Mechanical complication of ventricular intracranial (communicating) shunt', 'ICD10_2010'), +('T85.1', 'Mechanical complication implanted electronic stimulator of nervous system', 'ICD10_2010'), +('T85.2', 'Mechanical complication of intraocular lens', 'ICD10_2010'), +('T85.3', 'Mechanical complication of other ocular prosthetic devices, implants and grafts', 'ICD10_2010'), +('T85.4', 'Mechanical complication of breast prosthesis and implant', 'ICD10_2010'), +('T85.5', 'Mechanical complication of gastrointestinal prosthetic devices, implants and grafts', 'ICD10_2010'), +('T85.6', 'Mechanical complication of other specified internal prosthetic devices, implants and grafts', 'ICD10_2010'), +('T85.7', 'Infection inflammatory reaction due to other internal prosthetic devices, implants and grafts', 'ICD10_2010'), +('T85.8', 'Other complications of internal prosthetic devices, implants and grafts nec', 'ICD10_2010'), +('T85.9', 'Unspecified complication of internal prosthetic device, implant and graft', 'ICD10_2010'), +('T86', 'Failure and rejection of transplanted organs and tissues', 'ICD10_2010'), +('T86.0', 'Bone-marrow transplant rejection', 'ICD10_2010'), +('T86.1', 'Kidney transplant failure and rejection', 'ICD10_2010'), +('T86.2', 'Heart transplant failure and rejection', 'ICD10_2010'), +('T86.3', 'Heart-lung transplant failure and rejection', 'ICD10_2010'), +('T86.4', 'Liver transplant failure and rejection', 'ICD10_2010'), +('T86.8', 'Failure and reject of other transplanted organs and tissues', 'ICD10_2010'), +('T86.9', 'Failure and reject of unspecified transplanted organ and tissue', 'ICD10_2010'), +('T87', 'Complications peculiar to reattachment and amputation', 'ICD10_2010'), +('T87.0', 'Complications of reattached (part of) upper extremity', 'ICD10_2010'), +('T87.1', 'Complications of reattached (part of) lower extremity', 'ICD10_2010'), +('T87.2', 'Complications of other reattached body part', 'ICD10_2010'), +('T87.3', 'Neuroma of amputation stump', 'ICD10_2010'), +('T87.4', 'Infection of amputation stump', 'ICD10_2010'), +('T87.5', 'Necrosis of amputation stump', 'ICD10_2010'), +('T87.6', 'Other and unspecified complications of amputation stump', 'ICD10_2010'), +('T88', 'Other complications of surgical and medical care, not elsewhere classified', 'ICD10_2010'), +('T88.0', 'Infection following immunization', 'ICD10_2010'), +('T88.1', 'Other complications following immunization nec', 'ICD10_2010'), +('T88.2', 'Shock due to anaesthesia', 'ICD10_2010'), +('T88.3', 'Malignant hyperthermia due to anaesthesia', 'ICD10_2010'), +('T88.4', 'Failed or difficult intubation', 'ICD10_2010'), +('T88.5', 'Other complications of anaesthesia', 'ICD10_2010'), +('T88.6', 'Anaphylactic shock due adverse effect of correct drug or medicament properly administered', 'ICD10_2010'), +('T88.7', 'Unspecified adverse effect of drug or medicament', 'ICD10_2010'), +('T88.8', 'Other specified complications of surgical and medical care nec', 'ICD10_2010'), +('T88.9', 'Complication of surgical and medical care, unspecified', 'ICD10_2010'), +('T90', 'Sequelae of injuries of head', 'ICD10_2010'), +('T90.0', 'Sequelae of superficial injury of head', 'ICD10_2010'), +('T90.1', 'Sequelae of open wound of head', 'ICD10_2010'), +('T90.2', 'Sequelae of fracture of skull and facial bones', 'ICD10_2010'), +('T90.3', 'Sequelae of injury of cranial nerves', 'ICD10_2010'), +('T90.4', 'Sequelae of injury of eye and orbit', 'ICD10_2010'), +('T90.5', 'Sequelae of intracranial injury', 'ICD10_2010'), +('T90.8', 'Sequelae of other specified injuries of head', 'ICD10_2010'), +('T90.9', 'Sequelae of unspecified injury of head', 'ICD10_2010'), +('T91', 'Sequelae of injuries of neck and trunk', 'ICD10_2010'), +('T91.0', 'Sequelae of superficial injury and open wound of neck and trunk', 'ICD10_2010'), +('T91.1', 'Sequelae of fracture of spine', 'ICD10_2010'), +('T91.2', 'Sequelae of other fracture of thorax and pelvis', 'ICD10_2010'), +('T91.3', 'Sequelae of injury of spinal cord', 'ICD10_2010'), +('T91.4', 'Sequelae of injury of intrathoracic organs', 'ICD10_2010'), +('T91.5', 'Sequelae of injury of intra-abdominal and pelvic organs', 'ICD10_2010'), +('T91.8', 'Sequelae of other specified injuries of neck and trunk', 'ICD10_2010'), +('T91.9', 'Sequelae of unspecified injury of neck and trunk', 'ICD10_2010'), +('T92', 'Sequelae of injuries of upper limb', 'ICD10_2010'), +('T92.0', 'Sequelae of open wound of upper limb', 'ICD10_2010'), +('T92.1', 'Sequelae of fracture of arm', 'ICD10_2010'), +('T92.2', 'Sequelae of fracture at wrist and hand level', 'ICD10_2010'), +('T92.3', 'Sequelae of dislocation, sprain and strain of upper limb', 'ICD10_2010'), +('T92.4', 'Sequelae of injury of nerve of upper limb', 'ICD10_2010'), +('T92.5', 'Sequelae of injury of muscle and tendon of upper limb', 'ICD10_2010'), +('T92.6', 'Sequelae of crushing injury and traumatic amputation of upper limb', 'ICD10_2010'), +('T92.8', 'Sequelae of other specified injuries of upper limb', 'ICD10_2010'), +('T92.9', 'Sequelae of unspecified injury of upper limb', 'ICD10_2010'), +('T93', 'Sequelae of injuries of lower limb', 'ICD10_2010'), +('T93.0', 'Sequelae of open wound of lower limb', 'ICD10_2010'), +('T93.1', 'Sequelae of fracture of femur', 'ICD10_2010'), +('T93.2', 'Sequelae of other fractures of lower limb', 'ICD10_2010'), +('T93.3', 'Sequelae of dislocation, sprain and strain of lower limb', 'ICD10_2010'), +('T93.4', 'Sequelae of injury of nerve of lower limb', 'ICD10_2010'), +('T93.5', 'Sequelae of injury of muscle and tendon of lower limb', 'ICD10_2010'), +('T93.6', 'Sequelae of crush injury and traumatic amputation of lower limb', 'ICD10_2010'), +('T93.8', 'Sequelae of other specified injuries of lower limb', 'ICD10_2010'), +('T93.9', 'Sequelae of unspecified injury of lower limb', 'ICD10_2010'), +('T94', 'Sequelae of injuries involving multiple and unspecified body regions', 'ICD10_2010'), +('T94.0', 'Sequelae of injuries involving multiple body regions', 'ICD10_2010'), +('T94.1', 'Sequelae of injuries, not specified by body region', 'ICD10_2010'), +('T95', 'Sequelae of burns, corrosions and frostbite', 'ICD10_2010'), +('T95.0', 'Sequelae of burn, corrosion and frostbite of head and neck', 'ICD10_2010'), +('T95.1', 'Sequelae of burn, corrosion and frostbite of trunk', 'ICD10_2010'), +('T95.2', 'Sequelae of burn, corrosion and frostbite of upper limb', 'ICD10_2010'), +('T95.3', 'Sequelae of burn, corrosion and frostbite of lower limb', 'ICD10_2010'), +('T95.4', 'Seq burn and corros class only accord extent body surf involved', 'ICD10_2010'), +('T95.8', 'Sequelae of other specified burn, corrosion and frostbite', 'ICD10_2010'), +('T95.9', 'Sequelae of unspecified burn, corrosion and frostbite', 'ICD10_2010'), +('T96', 'Sequelae of poisoning by drugs medicaments and biological substances', 'ICD10_2010'), +('T97', 'Sequelae of toxic effects substances chiefly nonmedicinal as to source', 'ICD10_2010'), +('T98', 'Sequelae of other and unspecified effects of external causes', 'ICD10_2010'), +('T98.0', 'Sequelae of effects foreign body entering through natural orifice', 'ICD10_2010'), +('T98.1', 'Sequelae of other and unspecified effects of external causes', 'ICD10_2010'), +('T98.2', 'Sequelae of certain early complications of trauma', 'ICD10_2010'), +('T98.3', 'Sequelae of complications of surgical and medical care nec', 'ICD10_2010'), +('U04', 'Severe acute respiratory syndrome [SARS]', 'ICD10_2010'), +('U04.9', 'Severe acute respiratory syndrome [SARS], unspecified', 'ICD10_2010'), +('U07.1', 'COVID-19, virus identified', 'ICD10_2010'), +('U07.2', 'COVID-19, virus not identified', 'ICD10_2010'), +('U11.9', 'Need for immunization against COVID-19, unspecified', 'ICD10_2010'), +('U12.9', 'COVID-19 vacciness causing adverse effects in therapeutic use', 'ICD10_2010'), +('U80', 'Agent resistant to penicillin and related antibiotics', 'ICD10_2010'), +('U80.0', 'Penicillin resistant agent', 'ICD10_2010'), +('U80.1', 'Methicillin resistant agent', 'ICD10_2010'), +('U80.8', 'Agent resistant to other penicillin-related antibiotic', 'ICD10_2010'), +('U81', 'Agent resistant to vancomycin and related antibiotics', 'ICD10_2010'), +('U81.0', 'Vancomycin resistant agent', 'ICD10_2010'), +('U81.8', 'Agent resistant to other penicillin-related antibiotic', 'ICD10_2010'), +('U88', 'Agent resistant to multiple antibiotics', 'ICD10_2010'), +('U89', 'Agent resistant to other and unspecified antibiotics', 'ICD10_2010'), +('U89.8', 'Agent resistant to other single specified antibiotic', 'ICD10_2010'), +('U89.9', 'Agent resistant to unspecified antibiotic', 'ICD10_2010'), +('V01', 'Pedestrian injured in collision with pedal cycle', 'ICD10_2010'), +('V01.0', 'Pedestrian injured in collision with pedal cycle: Nontraffic accident', 'ICD10_2010'), +('V01.1', 'Pedestrian injured in collision with pedal cycle: Traffic accident', 'ICD10_2010'), +('V01.9', 'Pedestrian injured in collision with pedal cycle: Unspecified whether traffic or nontraffic accident', 'ICD10_2010'), +('V02', 'Pedestrian injured in collision with two- or three-wheeled motor vehicle', 'ICD10_2010'), +('V02.0', 'Pedestrian injured in collision with two- or three-wheeled motor vehicle: Nontraffic accident', 'ICD10_2010'), +('V02.1', 'Pedestrian injured in collision with two- or three-wheeled motor vehicle: Traffic accident', 'ICD10_2010'), +('V02.9', 'Pedestrian injured in collision with two- or three-wheeled motor vehicle: Unspecified whether traffic or nontraffic accident', 'ICD10_2010'), +('V03', 'Pedestrian injured in collision with car, pick-up truck or van', 'ICD10_2010'), +('V03.0', 'Pedestrian injured in collision with car, pick-up truck or van: Nontraffic accident', 'ICD10_2010'), +('V03.1', 'Pedestrian injured in collision with car, pick-up truck or van: Traffic accident', 'ICD10_2010'), +('V03.9', 'Pedestrian injured in collision with car, pick-up truck or van: Unspecified whether traffic or nontraffic accident', 'ICD10_2010'), +('V04', 'Pedestrian injured in collision with heavy transport vehicle or bus', 'ICD10_2010'), +('V04.0', 'Pedestrian injured in collision with heavy transport vehicle or bus: Nontraffic accident', 'ICD10_2010'), +('V04.1', 'Pedestrian injured in collision with heavy transport vehicle or bus: Traffic accident', 'ICD10_2010'), +('V04.9', 'Pedestrian injured in collision with heavy transport vehicle or bus: Unspecified whether traffic or nontraffic accident', 'ICD10_2010'), +('V05', 'Pedestrian injured in collision with railway train or railway vehicle', 'ICD10_2010'), +('V05.0', 'Pedestrian injured in collision with railway train or railway vehicle: Nontraffic accident', 'ICD10_2010'), +('V05.1', 'Pedestrian injured in collision with railway train or railway vehicle: Traffic accident', 'ICD10_2010'), +('V05.9', 'Pedestrian injured in collision with railway train or railway vehicle: Unspecified whether traffic or nontraffic accident', 'ICD10_2010'), +('V06', 'Pedestrian injured in collision with other nonmotor vehicle', 'ICD10_2010'), +('V06.0', 'Pedestrian injured in collision with other nonmotor vehicle: Nontraffic accident', 'ICD10_2010'), +('V06.1', 'Pedestrian injured in collision with other nonmotor vehicle: Traffic accident', 'ICD10_2010'), +('V06.9', 'Pedestrian injured in collision with other nonmotor vehicle: Unspecified whether traffic or nontraffic accident', 'ICD10_2010'), +('V09', 'Pedestrian injured in other and unspecified transport accidents', 'ICD10_2010'), +('V09.0', 'Pedestrian injured in nontraffic accident involving other and unspecified motor vehicles', 'ICD10_2010'), +('V09.1', 'Pedestrian injured in unspecified nontraffic accident', 'ICD10_2010'), +('V09.2', 'Pedestrian injured in traffic accident involving other and unspecified motor vehicles', 'ICD10_2010'), +('V09.3', 'Pedestrian injured in unspecified traffic accident', 'ICD10_2010'), +('V09.9', 'Pedestrian injured in unspecified transport accident', 'ICD10_2010'), +('V10', 'Pedal cyclist injured in collision with pedestrian or animal', 'ICD10_2010'), +('V10.0', 'Pedal cyclist injured in collision with pedestrian or animal: Driver injured in nontraffic accident', 'ICD10_2010'), +('V10.1', 'Pedal cyclist injured in collision with pedestrian or animal: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V10.2', 'Pedal cyclist injured in collision with pedestrian or animal: Unspecified pedal cyclist injured in nontraffic accident', 'ICD10_2010'), +('V10.3', 'Pedal cyclist injured in collision with pedestrian or animal: Person injured while boarding or alighting', 'ICD10_2010'), +('V10.4', 'Pedal cyclist injured in collision with pedestrian or animal: Driver injured in traffic accident', 'ICD10_2010'), +('V10.5', 'Pedal cyclist injured in collision with pedestrian or animal: Passenger injured in traffic accident', 'ICD10_2010'), +('V10.9', 'Pedal cyclist injured in collision with pedestrian or animal: Unspecified pedal cyclist injured in traffic accident', 'ICD10_2010'), +('V11', 'Pedal cyclist injured in collision with other pedal cycle', 'ICD10_2010'), +('V11.0', 'Pedal cyclist injured in collision with other pedal cycle: Driver injured in nontraffic accident', 'ICD10_2010'), +('V11.1', 'Pedal cyclist injured in collision with other pedal cycle: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V11.2', 'Pedal cyclist injured in collision with other pedal cycle: Unspecified pedal cyclist injured in nontraffic accident', 'ICD10_2010'), +('V11.3', 'Pedal cyclist injured in collision with other pedal cycle: Person injured while boarding or alighting', 'ICD10_2010'), +('V11.4', 'Pedal cyclist injured in collision with other pedal cycle: Driver injured in traffic accident', 'ICD10_2010'), +('V11.5', 'Pedal cyclist injured in collision with other pedal cycle: Passenger injured in traffic accident', 'ICD10_2010'), +('V11.9', 'Pedal cyclist injured in collision with other pedal cycle: Unspecified pedal cyclist injured in traffic accident', 'ICD10_2010'), +('V12', 'Pedal cyclist injured in collision with two- or three-wheeled motor vehicle', 'ICD10_2010'), +('V12.0', 'Pedal cyclist injured in collision with two- or three-wheeled motor vehicle: Driver injured in nontraffic accident', 'ICD10_2010'), +('V12.1', 'Pedal cyclist injured in collision with two- or three-wheeled motor vehicle: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V12.2', 'Pedal cyclist injured in collision with two- or three-wheeled motor vehicle: Unspecified pedal cyclist injured in nontraffic accident', 'ICD10_2010'), +('V12.3', 'Pedal cyclist injured in collision with two- or three-wheeled motor vehicle: Person injured while boarding or alighting', 'ICD10_2010'), +('V12.4', 'Pedal cyclist injured in collision with two- or three-wheeled motor vehicle: Driver injured in traffic accident', 'ICD10_2010'), +('V12.5', 'Pedal cyclist injured in collision with two- or three-wheeled motor vehicle: Passenger injured in traffic accident', 'ICD10_2010'), +('V12.9', 'Pedal cyclist injured in collision with two- or three-wheeled motor vehicle: Unspecified pedal cyclist injured in traffic accident', 'ICD10_2010'), +('V13', 'Pedal cyclist injured in collision with car, pick-up truck or van', 'ICD10_2010'), +('V13.0', 'Pedal cyclist injured in collision with car, pick-up truck or van: Driver injured in nontraffic accident', 'ICD10_2010'), +('V13.1', 'Pedal cyclist injured in collision with car, pick-up truck or van: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V13.2', 'Pedal cyclist injured in collision with car, pick-up truck or van: Unspecified pedal cyclist injured in nontraffic accident', 'ICD10_2010'), +('V13.3', 'Pedal cyclist injured in collision with car, pick-up truck or van: Person injured while boarding or alighting', 'ICD10_2010'), +('V13.4', 'Pedal cyclist injured in collision with car, pick-up truck or van: Driver injured in traffic accident', 'ICD10_2010'), +('V13.5', 'Pedal cyclist injured in collision with car, pick-up truck or van: Passenger injured in traffic accident', 'ICD10_2010'), +('V13.9', 'Pedal cyclist injured in collision with car, pick-up truck or van: Unspecified pedal cyclist injured in traffic accident', 'ICD10_2010'), +('V14', 'Pedal cyclist injured in collision with heavy transport vehicle or bus', 'ICD10_2010'), +('V14.0', 'Pedal cyclist injured in collision with heavy transport vehicle or bus: Driver injured in nontraffic accident', 'ICD10_2010'), +('V14.1', 'Pedal cyclist injured in collision with heavy transport vehicle or bus: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V14.2', 'Pedal cyclist injured in collision with heavy transport vehicle or bus: Unspecified pedal cyclist injured in nontraffic accident', 'ICD10_2010'), +('V14.3', 'Pedal cyclist injured in collision with heavy transport vehicle or bus: Person injured while boarding or alighting', 'ICD10_2010'), +('V14.4', 'Pedal cyclist injured in collision with heavy transport vehicle or bus: Driver injured in traffic accident', 'ICD10_2010'), +('V14.5', 'Pedal cyclist injured in collision with heavy transport vehicle or bus: Passenger injured in traffic accident', 'ICD10_2010'), +('V14.9', 'Pedal cyclist injured in collision with heavy transport vehicle or bus: Unspecified pedal cyclist injured in traffic accident', 'ICD10_2010'), +('V15', 'Pedal cyclist injured in collision with railway train or railway vehicle', 'ICD10_2010'), +('V15.0', 'Pedal cyclist injured in collision with railway train or railway vehicle: Driver injured in nontraffic accident', 'ICD10_2010'), +('V15.1', 'Pedal cyclist injured in collision with railway train or railway vehicle: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V15.2', 'Pedal cyclist injured in collision with railway train or railway vehicle: Unspecified pedal cyclist injured in nontraffic accident', 'ICD10_2010'), +('V15.3', 'Pedal cyclist injured in collision with railway train or railway vehicle: Person injured while boarding or alighting', 'ICD10_2010'), +('V15.4', 'Pedal cyclist injured in collision with railway train or railway vehicle: Driver injured in traffic accident', 'ICD10_2010'), +('V15.5', 'Pedal cyclist injured in collision with railway train or railway vehicle: Passenger injured in traffic accident', 'ICD10_2010'), +('V15.9', 'Pedal cyclist injured in collision with railway train or railway vehicle: Unspecified pedal cyclist injured in traffic accident', 'ICD10_2010'), +('V16', 'Pedal cyclist injured in collision with other nonmotor vehicle', 'ICD10_2010'), +('V16.0', 'Pedal cyclist injured in collision with other nonmotor vehicle: Driver injured in nontraffic accident', 'ICD10_2010'), +('V16.1', 'Pedal cyclist injured in collision with other nonmotor vehicle: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V16.2', 'Pedal cyclist injured in collision with other nonmotor vehicle: Unspecified pedal cyclist injured in nontraffic accident', 'ICD10_2010'), +('V16.3', 'Pedal cyclist injured in collision with other nonmotor vehicle: Person injured while boarding or alighting', 'ICD10_2010'), +('V16.4', 'Pedal cyclist injured in collision with other nonmotor vehicle: Driver injured in traffic accident', 'ICD10_2010'), +('V16.5', 'Pedal cyclist injured in collision with other nonmotor vehicle: Passenger injured in traffic accident', 'ICD10_2010'), +('V16.9', 'Pedal cyclist injured in collision with other nonmotor vehicle: Unspecified pedal cyclist injured in traffic accident', 'ICD10_2010'), +('V17', 'Pedal cyclist injured in collision with fixed or stationary object', 'ICD10_2010'), +('V17.0', 'Pedal cyclist injured in collision with fixed or stationary object: Driver injured in nontraffic accident', 'ICD10_2010'), +('V17.1', 'Pedal cyclist injured in collision with fixed or stationary object: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V17.2', 'Pedal cyclist injured in collision with fixed or stationary object: Unspecified pedal cyclist injured in nontraffic accident', 'ICD10_2010'), +('V17.3', 'Pedal cyclist injured in collision with fixed or stationary object: Person injured while boarding or alighting', 'ICD10_2010'), +('V17.4', 'Pedal cyclist injured in collision with fixed or stationary object: Driver injured in traffic accident', 'ICD10_2010'), +('V17.5', 'Pedal cyclist injured in collision with fixed or stationary object: Passenger injured in traffic accident', 'ICD10_2010'), +('V17.9', 'Pedal cyclist injured in collision with fixed or stationary object: Unspecified pedal cyclist injured in traffic accident', 'ICD10_2010'), +('V18', 'Pedal cyclist injured in noncollision transport accident', 'ICD10_2010'), +('V18.0', 'Pedal cyclist injured in noncollision transport accident: Driver injured in nontraffic accident', 'ICD10_2010'), +('V18.1', 'Pedal cyclist injured in noncollision transport accident: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V18.2', 'Pedal cyclist injured in noncollision transport accident: Unspecified pedal cyclist injured in nontraffic accident', 'ICD10_2010'), +('V18.3', 'Pedal cyclist injured in noncollision transport accident: Person injured while boarding or alighting', 'ICD10_2010'), +('V18.4', 'Pedal cyclist injured in noncollision transport accident: Driver injured in traffic accident', 'ICD10_2010'), +('V18.5', 'Pedal cyclist injured in noncollision transport accident: Passenger injured in traffic accident', 'ICD10_2010'), +('V18.9', 'Pedal cyclist injured in noncollision transport accident: Unspecified pedal cyclist injured in traffic accident', 'ICD10_2010'), +('V19', 'Pedal cyclist injured in other and unspecified transport accidents', 'ICD10_2010'), +('V19.0', 'Driver injured in collision with other and unspecified motor vehicles in nontraffic accident', 'ICD10_2010'), +('V19.1', 'Passenger injured in collision with other and unspecified motor vehicles in nontraffic accident', 'ICD10_2010'), +('V19.2', 'Unspecified pedal cyclist injured in collision with other and unspecified motor vehicles in nontraffic accident', 'ICD10_2010'), +('V19.3', 'Pedal cyclist [any] injured in unspecified nontraffic accident', 'ICD10_2010'), +('V19.4', 'Driver injured in collision with other and unspecified motor vehicles in traffic accident', 'ICD10_2010'), +('V19.5', 'Passenger injured in collision with other and unspecified motor vehicles in traffic accident', 'ICD10_2010'), +('V19.6', 'Unspecified pedal cyclist injured in collision with other and unspecified motor vehicles in traffic accident', 'ICD10_2010'), +('V19.8', 'Pedal cyclist [any] injured in other specified transport accidents', 'ICD10_2010'), +('V19.9', 'Pedal cyclist [any] injured in unspecified traffic accident', 'ICD10_2010'), +('V20', 'Motorcycle rider injured in collision with pedestrian or animal', 'ICD10_2010'), +('V20.0', 'Motorcycle rider injured in collision with pedestrian or animal: Driver injured in nontraffic accident', 'ICD10_2010'), +('V20.1', 'Motorcycle rider injured in collision with pedestrian or animal: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V20.2', 'Motorcycle rider injured in collision with pedestrian or animal: Unspecified motorcycle rider injured in nontraffic accident', 'ICD10_2010'), +('V20.3', 'Motorcycle rider injured in collision with pedestrian or animal: Person injured while boarding or alighting', 'ICD10_2010'), +('V20.4', 'Motorcycle rider injured in collision with pedestrian or animal: Driver injured in traffic accident', 'ICD10_2010'), +('V20.5', 'Motorcycle rider injured in collision with pedestrian or animal: Passenger injured in traffic accident', 'ICD10_2010'), +('V20.9', 'Motorcycle rider injured in collision with pedestrian or animal: Unspecified motorcycle rider injured in traffic accident', 'ICD10_2010'), +('V21', 'Motorcycle rider injured in collision with pedal cycle', 'ICD10_2010'), +('V21.0', 'Motorcycle rider injured in collision with pedal cycle: Driver injured in nontraffic accident', 'ICD10_2010'), +('V21.1', 'Motorcycle rider injured in collision with pedal cycle: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V21.2', 'Motorcycle rider injured in collision with pedal cycle: Unspecified motorcycle rider injured in nontraffic accident', 'ICD10_2010'), +('V21.3', 'Motorcycle rider injured in collision with pedal cycle: Person injured while boarding or alighting', 'ICD10_2010'), +('V21.4', 'Motorcycle rider injured in collision with pedal cycle: Driver injured in traffic accident', 'ICD10_2010'), +('V21.5', 'Motorcycle rider injured in collision with pedal cycle: Passenger injured in traffic accident', 'ICD10_2010'), +('V21.9', 'Motorcycle rider injured in collision with pedal cycle: Unspecified motorcycle rider injured in traffic accident', 'ICD10_2010'), +('V22', 'Motorcycle rider injured in collision with two- or three-wheeled motor vehicle', 'ICD10_2010'), +('V22.0', 'Motorcycle rider injured in collision with two- or three-wheeled motor vehicle: Driver injured in nontraffic accident', 'ICD10_2010'), +('V22.1', 'Motorcycle rider injured in collision with two- or three-wheeled motor vehicle: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V22.2', 'Motorcycle rider injured in collision with two- or three-wheeled motor vehicle: Unspecified motorcycle rider injured in nontraffic accident', 'ICD10_2010'), +('V22.3', 'Motorcycle rider injured in collision with two- or three-wheeled motor vehicle: Person injured while boarding or alighting', 'ICD10_2010'), +('V22.4', 'Motorcycle rider injured in collision with two- or three-wheeled motor vehicle: Driver injured in traffic accident', 'ICD10_2010'), +('V22.5', 'Motorcycle rider injured in collision with two- or three-wheeled motor vehicle: Passenger injured in traffic accident', 'ICD10_2010'), +('V22.9', 'Motorcycle rider injured in collision with two- or three-wheeled motor vehicle: Unspecified motorcycle rider injured in traffic accident', 'ICD10_2010'), +('V23', 'Motorcycle rider injured in collision with car, pick-up truck or van', 'ICD10_2010'), +('V23.0', 'Motorcycle rider injured in collision with car, pick-up truck or van: Driver injured in nontraffic accident', 'ICD10_2010'), +('V23.1', 'Motorcycle rider injured in collision with car, pick-up truck or van: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V23.2', 'Motorcycle rider injured in collision with car, pick-up truck or van: Unspecified motorcycle rider injured in nontraffic accident', 'ICD10_2010'), +('V23.3', 'Motorcycle rider injured in collision with car, pick-up truck or van: Person injured while boarding or alighting', 'ICD10_2010'), +('V23.4', 'Motorcycle rider injured in collision with car, pick-up truck or van: Driver injured in traffic accident', 'ICD10_2010'), +('V23.5', 'Motorcycle rider injured in collision with car, pick-up truck or van: Passenger injured in traffic accident', 'ICD10_2010'), +('V23.9', 'Motorcycle rider injured in collision with car, pick-up truck or van: Unspecified motorcycle rider injured in traffic accident', 'ICD10_2010'), +('V24', 'Motorcycle rider injured in collision with heavy transport vehicle or bus', 'ICD10_2010'), +('V24.0', 'Motorcycle rider injured in collision with heavy transport vehicle or bus: Driver injured in nontraffic accident', 'ICD10_2010'), +('V24.1', 'Motorcycle rider injured in collision with heavy transport vehicle or bus: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V24.2', 'Motorcycle rider injured in collision with heavy transport vehicle or bus: Unspecified motorcycle rider injured in nontraffic accident', 'ICD10_2010'), +('V24.3', 'Motorcycle rider injured in collision with heavy transport vehicle or bus: Person injured while boarding or alighting', 'ICD10_2010'), +('V24.4', 'Motorcycle rider injured in collision with heavy transport vehicle or bus: Driver injured in traffic accident', 'ICD10_2010'), +('V24.5', 'Motorcycle rider injured in collision with heavy transport vehicle or bus: Passenger injured in traffic accident', 'ICD10_2010'), +('V24.9', 'Motorcycle rider injured in collision with heavy transport vehicle or bus: Unspecified motorcycle rider injured in traffic accident', 'ICD10_2010'), +('V25', 'Motorcycle rider injured in collision with railway train or railway vehicle', 'ICD10_2010'), +('V25.0', 'Motorcycle rider injured in collision with railway train or railway vehicle: Driver injured in nontraffic accident', 'ICD10_2010'), +('V25.1', 'Motorcycle rider injured in collision with railway train or railway vehicle: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V25.2', 'Motorcycle rider injured in collision with railway train or railway vehicle: Unspecified motorcycle rider injured in nontraffic accident', 'ICD10_2010'), +('V25.3', 'Motorcycle rider injured in collision with railway train or railway vehicle: Person injured while boarding or alighting', 'ICD10_2010'), +('V25.4', 'Motorcycle rider injured in collision with railway train or railway vehicle: Driver injured in traffic accident', 'ICD10_2010'), +('V25.5', 'Motorcycle rider injured in collision with railway train or railway vehicle: Passenger injured in traffic accident', 'ICD10_2010'), +('V25.9', 'Motorcycle rider injured in collision with railway train or railway vehicle: Unspecified motorcycle rider injured in traffic accident', 'ICD10_2010'), +('V26', 'Motorcycle rider injured in collision with other nonmotor vehicle', 'ICD10_2010'), +('V26.0', 'Motorcycle rider injured in collision with other nonmotor vehicle: Driver injured in nontraffic accident', 'ICD10_2010'), +('V26.1', 'Motorcycle rider injured in collision with other nonmotor vehicle: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V26.2', 'Motorcycle rider injured in collision with other nonmotor vehicle: Unspecified motorcycle rider injured in nontraffic accident', 'ICD10_2010'), +('V26.3', 'Motorcycle rider injured in collision with other nonmotor vehicle: Person injured while boarding or alighting', 'ICD10_2010'), +('V26.4', 'Motorcycle rider injured in collision with other nonmotor vehicle: Driver injured in traffic accident', 'ICD10_2010'), +('V26.5', 'Motorcycle rider injured in collision with other nonmotor vehicle: Passenger injured in traffic accident', 'ICD10_2010'), +('V26.9', 'Motorcycle rider injured in collision with other nonmotor vehicle: Unspecified motorcycle rider injured in traffic accident', 'ICD10_2010'), +('V27', 'Motorcycle rider injured in collision with fixed or stationary object', 'ICD10_2010'), +('V27.0', 'Motorcycle rider injured in collision with fixed or stationary object: Driver injured in nontraffic accident', 'ICD10_2010'), +('V27.1', 'Motorcycle rider injured in collision with fixed or stationary object: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V27.2', 'Motorcycle rider injured in collision with fixed or stationary object: Unspecified motorcycle rider injured in nontraffic accident', 'ICD10_2010'), +('V27.3', 'Motorcycle rider injured in collision with fixed or stationary object: Person injured while boarding or alighting', 'ICD10_2010'), +('V27.4', 'Motorcycle rider injured in collision with fixed or stationary object: Driver injured in traffic accident', 'ICD10_2010'), +('V27.5', 'Motorcycle rider injured in collision with fixed or stationary object: Passenger injured in traffic accident', 'ICD10_2010'), +('V27.9', 'Motorcycle rider injured in collision with fixed or stationary object: Unspecified motorcycle rider injured in traffic accident', 'ICD10_2010'), +('V28', 'Motorcycle rider injured in noncollision transport accident', 'ICD10_2010'), +('V28.0', 'Motorcycle rider injured in noncollision transport accident: Driver injured in nontraffic accident', 'ICD10_2010'), +('V28.1', 'Motorcycle rider injured in noncollision transport accident: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V28.2', 'Motorcycle rider injured in noncollision transport accident: Unspecified motorcycle rider injured in nontraffic accident', 'ICD10_2010'), +('V28.3', 'Motorcycle rider injured in noncollision transport accident: Person injured while boarding or alighting', 'ICD10_2010'), +('V28.4', 'Motorcycle rider injured in noncollision transport accident: Driver injured in traffic accident', 'ICD10_2010'), +('V28.5', 'Motorcycle rider injured in noncollision transport accident: Passenger injured in traffic accident', 'ICD10_2010'), +('V28.9', 'Motorcycle rider injured in noncollision transport accident: Unspecified motorcycle rider injured in traffic accident', 'ICD10_2010'), +('V29', 'Motorcycle rider injured in other and unspecified transport accidents', 'ICD10_2010'), +('V29.0', 'Driver injured in collision with other and unspecified motor vehicles in nontraffic accident', 'ICD10_2010'), +('V29.1', 'Passenger injured in collision with other and unspecified motor vehicles in nontraffic accident', 'ICD10_2010'), +('V29.2', 'Unspecified motorcycle rider injured in collision with other and unspecified motor vehicles in nontraffic accident', 'ICD10_2010'), +('V29.3', 'Motorcycle rider [any] injured in unspecified nontraffic accident', 'ICD10_2010'), +('V29.4', 'Driver injured in collision with other and unspecified motor vehicles in traffic accident', 'ICD10_2010'), +('V29.5', 'Passenger injured in collision with other and unspecified motor vehicles in traffic accident', 'ICD10_2010'), +('V29.6', 'Unspecified motorcycle rider injured in collision with other and unspecified motor vehicles in traffic accident', 'ICD10_2010'), +('V29.8', 'Motorcycle rider [any] injured in other specified transport accidents', 'ICD10_2010'), +('V29.9', 'Motorcycle rider [any] injured in unspecified traffic accident', 'ICD10_2010'), +('V30', 'Occupant of three-wheeled motor vehicle injured in collision with pedestrian or animal', 'ICD10_2010'), +('V30.0', 'Occupant of three-wheeled motor vehicle injured in collision with pedestrian or animal: Driver injured in nontraffic accident', 'ICD10_2010'), +('V30.1', 'Occupant of three-wheeled motor vehicle injured in collision with pedestrian or animal: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V30.2', 'Occupant of three-wheeled motor vehicle injured in collision with pedestrian or animal: Person on outside of vehicle injured in nontraffic accident', 'ICD10_2010'), +('V30.3', 'Occupant of three-wheeled motor vehicle injured in collision with pedestrian or animal: Unspecified occupant of three-wheeled motor vehicle injured in', 'ICD10_2010'), +('V30.4', 'Occupant of three-wheeled motor vehicle injured in collision with pedestrian or animal: Person injured while boarding or alighting', 'ICD10_2010'), +('V30.5', 'Occupant of three-wheeled motor vehicle injured in collision with pedestrian or animal: Driver injured in traffic accident', 'ICD10_2010'), +('V30.6', 'Occupant of three-wheeled motor vehicle injured in collision with pedestrian or animal: Passenger injured in traffic accident', 'ICD10_2010'), +('V30.7', 'Occupant of three-wheeled motor vehicle injured in collision with pedestrian or animal: Person on outside of vehicle injured in traffic accident', 'ICD10_2010'), +('V30.9', 'Occupant of three-wheeled motor vehicle injured in collision with pedestrian or animal: Unspecified occupant of three-wheeled motor vehicle injured in', 'ICD10_2010'), +('V31', 'Occupant of three-wheeled motor vehicle injured in collision with pedal cycle', 'ICD10_2010'), +('V31.0', 'Occupant of three-wheeled motor vehicle injured in collision with pedal cycle: Driver injured in nontraffic accident', 'ICD10_2010'), +('V31.1', 'Occupant of three-wheeled motor vehicle injured in collision with pedal cycle: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V31.2', 'Occupant of three-wheeled motor vehicle injured in collision with pedal cycle: Person on outside of vehicle injured in nontraffic accident', 'ICD10_2010'), +('V31.3', 'Occupant of three-wheeled motor vehicle injured in collision with pedal cycle: Unspecified occupant of three-wheeled motor vehicle injured in nontraff', 'ICD10_2010'), +('V31.4', 'Occupant of three-wheeled motor vehicle injured in collision with pedal cycle: Person injured while boarding or alighting', 'ICD10_2010'), +('V31.5', 'Occupant of three-wheeled motor vehicle injured in collision with pedal cycle: Driver injured in traffic accident', 'ICD10_2010'); +INSERT INTO `icd10` (`ID_ICD10`, `Diagnosa`, `Versi_ICD10`) VALUES +('V31.6', 'Occupant of three-wheeled motor vehicle injured in collision with pedal cycle: Passenger injured in traffic accident', 'ICD10_2010'), +('V31.7', 'Occupant of three-wheeled motor vehicle injured in collision with pedal cycle: Person on outside of vehicle injured in traffic accident', 'ICD10_2010'), +('V31.9', 'Occupant of three-wheeled motor vehicle injured in collision with pedal cycle: Unspecified occupant of three-wheeled motor vehicle injured in traffic ', 'ICD10_2010'), +('V32', 'Occupant of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle', 'ICD10_2010'), +('V32.0', 'Occupant of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle: Driver injured in nontraffic accident', 'ICD10_2010'), +('V32.1', 'Occupant of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle: Passenger injured in nontraffic accident', 'ICD10_2010'), +('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 nontraf', 'ICD10_2010'), +('V32.3', 'Occupant of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle: Unspecified occupant of three-wheeled motor veh', 'ICD10_2010'), +('V32.4', 'Occupant of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle: Person injured while boarding or alighting', 'ICD10_2010'), +('V32.5', 'Occupant of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle: Driver injured in traffic accident', 'ICD10_2010'), +('V32.6', 'Occupant of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle: Passenger injured in traffic accident', 'ICD10_2010'), +('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', 'ICD10_2010'), +('V32.9', 'Occupant of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle: Unspecified occupant of three-wheeled motor veh', 'ICD10_2010'), +('V33', 'Occupant of three-wheeled motor vehicle injured in collision with car, pick-up truck or van', 'ICD10_2010'), +('V33.0', 'Occupant of three-wheeled motor vehicle injured in collision with car, pick-up truck or van: Driver injured in nontraffic accident', 'ICD10_2010'), +('V33.1', 'Occupant of three-wheeled motor vehicle injured in collision with car, pick-up truck or van: Passenger injured in nontraffic accident', 'ICD10_2010'), +('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 accide', 'ICD10_2010'), +('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 injur', 'ICD10_2010'), +('V33.4', 'Occupant of three-wheeled motor vehicle injured in collision with car, pick-up truck or van: Person injured while boarding or alighting', 'ICD10_2010'), +('V33.5', 'Occupant of three-wheeled motor vehicle injured in collision with car, pick-up truck or van: Driver injured in traffic accident', 'ICD10_2010'), +('V33.6', 'Occupant of three-wheeled motor vehicle injured in collision with car, pick-up truck or van: Passenger injured in traffic accident', 'ICD10_2010'), +('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', 'ICD10_2010'), +('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 injur', 'ICD10_2010'), +('V34', 'Occupant of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus', 'ICD10_2010'), +('V34.0', 'Occupant of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus: Driver injured in nontraffic accident', 'ICD10_2010'), +('V34.1', 'Occupant of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus: Passenger injured in nontraffic accident', 'ICD10_2010'), +('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 a', 'ICD10_2010'), +('V34.3', 'Occupant of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus: Unspecified occupant of three-wheeled motor vehicle ', 'ICD10_2010'), +('V34.4', 'Occupant of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus: Person injured while boarding or alighting', 'ICD10_2010'), +('V34.5', 'Occupant of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus: Driver injured in traffic accident', 'ICD10_2010'), +('V34.6', 'Occupant of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus: Passenger injured in traffic accident', 'ICD10_2010'), +('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 acci', 'ICD10_2010'), +('V34.9', 'Occupant of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus: Unspecified occupant of three-wheeled motor vehicle ', 'ICD10_2010'), +('V35', 'Occupant of three-wheeled motor vehicle injured in collision with railway train or railway vehicle', 'ICD10_2010'), +('V35.0', 'Occupant of three-wheeled motor vehicle injured in collision with railway train or railway vehicle: Driver injured in nontraffic accident', 'ICD10_2010'), +('V35.1', 'Occupant of three-wheeled motor vehicle injured in collision with railway train or railway vehicle: Passenger injured in nontraffic accident', 'ICD10_2010'), +('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', 'ICD10_2010'), +('V35.3', 'Occupant of three-wheeled motor vehicle injured in collision with railway train or railway vehicle: Unspecified occupant of three-wheeled motor vehicl', 'ICD10_2010'), +('V35.4', 'Occupant of three-wheeled motor vehicle injured in collision with railway train or railway vehicle: Person injured while boarding or alighting', 'ICD10_2010'), +('V35.5', 'Occupant of three-wheeled motor vehicle injured in collision with railway train or railway vehicle: Driver injured in traffic accident', 'ICD10_2010'), +('V35.6', 'Occupant of three-wheeled motor vehicle injured in collision with railway train or railway vehicle: Passenger injured in traffic accident', 'ICD10_2010'), +('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 ac', 'ICD10_2010'), +('V35.9', 'Occupant of three-wheeled motor vehicle injured in collision with railway train or railway vehicle: Unspecified occupant of three-wheeled motor vehicl', 'ICD10_2010'), +('V36', 'Occupant of three-wheeled motor vehicle injured in collision with other nonmotor vehicle', 'ICD10_2010'), +('V36.0', 'Occupant of three-wheeled motor vehicle injured in collision with other nonmotor vehicle: Driver injured in nontraffic accident', 'ICD10_2010'), +('V36.1', 'Occupant of three-wheeled motor vehicle injured in collision with other nonmotor vehicle: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V36.2', 'Occupant of three-wheeled motor vehicle injured in collision with other nonmotor vehicle: Person on outside of vehicle injured in nontraffic accident', 'ICD10_2010'), +('V36.3', 'Occupant of three-wheeled motor vehicle injured in collision with other nonmotor vehicle: Unspecified occupant of three-wheeled motor vehicle injured ', 'ICD10_2010'), +('V36.4', 'Occupant of three-wheeled motor vehicle injured in collision with other nonmotor vehicle: Person injured while boarding or alighting', 'ICD10_2010'), +('V36.5', 'Occupant of three-wheeled motor vehicle injured in collision with other nonmotor vehicle: Driver injured in traffic accident', 'ICD10_2010'), +('V36.6', 'Occupant of three-wheeled motor vehicle injured in collision with other nonmotor vehicle: Passenger injured in traffic accident', 'ICD10_2010'), +('V36.7', 'Occupant of three-wheeled motor vehicle injured in collision with other nonmotor vehicle: Person on outside of vehicle injured in traffic accident', 'ICD10_2010'), +('V36.9', 'Occupant of three-wheeled motor vehicle injured in collision with other nonmotor vehicle: Unspecified occupant of three-wheeled motor vehicle injured ', 'ICD10_2010'), +('V37', 'Occupant of three-wheeled motor vehicle injured in collision with fixed or stationary object', 'ICD10_2010'), +('V37.0', 'Occupant of three-wheeled motor vehicle injured in collision with fixed or stationary object: Driver injured in nontraffic accident', 'ICD10_2010'), +('V37.1', 'Occupant of three-wheeled motor vehicle injured in collision with fixed or stationary object: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V37.2', 'Occupant of three-wheeled motor vehicle injured in collision with fixed or stationary object: Person on outside of vehicle injured in nontraffic accid', 'ICD10_2010'), +('V37.3', 'Occupant of three-wheeled motor vehicle injured in collision with fixed or stationary object: Unspecified occupant of three-wheeled motor vehicle inju', 'ICD10_2010'), +('V37.4', 'Occupant of three-wheeled motor vehicle injured in collision with fixed or stationary object: Person injured while boarding or alighting', 'ICD10_2010'), +('V37.5', 'Occupant of three-wheeled motor vehicle injured in collision with fixed or stationary object: Driver injured in traffic accident', 'ICD10_2010'), +('V37.6', 'Occupant of three-wheeled motor vehicle injured in collision with fixed or stationary object: Passenger injured in traffic accident', 'ICD10_2010'), +('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', 'ICD10_2010'), +('V37.9', 'Occupant of three-wheeled motor vehicle injured in collision with fixed or stationary object: Unspecified occupant of three-wheeled motor vehicle inju', 'ICD10_2010'), +('V38', 'Occupant of three-wheeled motor vehicle injured in noncollision transport accident', 'ICD10_2010'), +('V38.0', 'Occupant of three-wheeled motor vehicle injured in noncollision transport accident: Driver injured in nontraffic accident', 'ICD10_2010'), +('V38.1', 'Occupant of three-wheeled motor vehicle injured in noncollision transport accident: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V38.2', 'Occupant of three-wheeled motor vehicle injured in noncollision transport accident: Person on outside of vehicle injured in nontraffic accident', 'ICD10_2010'), +('V38.3', 'Occupant of three-wheeled motor vehicle injured in noncollision transport accident: Unspecified occupant of three-wheeled motor vehicle injured in non', 'ICD10_2010'), +('V38.4', 'Occupant of three-wheeled motor vehicle injured in noncollision transport accident: Person injured while boarding or alighting', 'ICD10_2010'), +('V38.5', 'Occupant of three-wheeled motor vehicle injured in noncollision transport accident: Driver injured in traffic accident', 'ICD10_2010'), +('V38.6', 'Occupant of three-wheeled motor vehicle injured in noncollision transport accident: Passenger injured in traffic accident', 'ICD10_2010'), +('V38.7', 'Occupant of three-wheeled motor vehicle injured in noncollision transport accident: Person on outside of vehicle injured in traffic accident', 'ICD10_2010'), +('V38.9', 'Occupant of three-wheeled motor vehicle injured in noncollision transport accident: Unspecified occupant of three-wheeled motor vehicle injured in tra', 'ICD10_2010'), +('V39', 'Occupant of three-wheeled motor vehicle injured in other and unspecified transport accidents', 'ICD10_2010'), +('V39.0', 'Driver injured in collision with other and unspecified motor vehicles in nontraffic accident', 'ICD10_2010'), +('V39.1', 'Passenger injured in collision with other and unspecified motor vehicles in nontraffic accident', 'ICD10_2010'), +('V39.2', 'Unspecified occupant of three-wheeled motor vehicle injured in collision with other and unspecified motor vehicles in nontraffic accident', 'ICD10_2010'), +('V39.3', 'Occupant [any] of three-wheeled motor vehicle injured in unspecified nontraffic accident', 'ICD10_2010'), +('V39.4', 'Driver injured in collision with other and unspecified motor vehicles in traffic accident', 'ICD10_2010'), +('V39.5', 'Passenger injured in collision with other and unspecified motor vehicles in traffic accident', 'ICD10_2010'), +('V39.6', 'Unspecified occupant of three-wheeled motor vehicle injured in collision with other and unspecified motor vehicles in traffic accident', 'ICD10_2010'), +('V39.8', 'Occupant [any] of three-wheeled motor vehicle injured in other specified transport accidents', 'ICD10_2010'), +('V39.9', 'Occupant [any] of three-wheeled motor vehicle injured in unspecified traffic accident', 'ICD10_2010'), +('V40', 'Car occupant injured in collision with pedestrian or animal', 'ICD10_2010'), +('V40.0', 'Car occupant injured in collision with pedestrian or animal: Driver injured in nontraffic accident', 'ICD10_2010'), +('V40.1', 'Car occupant injured in collision with pedestrian or animal: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V40.2', 'Car occupant injured in collision with pedestrian or animal: Person on outside of vehicle injured in nontraffic accident', 'ICD10_2010'), +('V40.3', 'Car occupant injured in collision with pedestrian or animal: Unspecified car occupant injured in nontraffic accident', 'ICD10_2010'), +('V40.4', 'Car occupant injured in collision with pedestrian or animal: Person injured while boarding or alighting', 'ICD10_2010'), +('V40.5', 'Car occupant injured in collision with pedestrian or animal: Driver injured in traffic accident', 'ICD10_2010'), +('V40.6', 'Car occupant injured in collision with pedestrian or animal: Passenger injured in traffic accident', 'ICD10_2010'), +('V40.7', 'Car occupant injured in collision with pedestrian or animal: Person on outside of vehicle injured in traffic accident', 'ICD10_2010'), +('V40.9', 'Car occupant injured in collision with pedestrian or animal: Unspecified car occupant injured in traffic accident', 'ICD10_2010'), +('V41', 'Car occupant injured in collision with pedal cycle', 'ICD10_2010'), +('V41.0', 'Car occupant injured in collision with pedal cycle: Driver injured in nontraffic accident', 'ICD10_2010'), +('V41.1', 'Car occupant injured in collision with pedal cycle: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V41.2', 'Car occupant injured in collision with pedal cycle: Person on outside of vehicle injured in nontraffic accident', 'ICD10_2010'), +('V41.3', 'Car occupant injured in collision with pedal cycle: Unspecified car occupant injured in nontraffic accident', 'ICD10_2010'), +('V41.4', 'Car occupant injured in collision with pedal cycle: Person injured while boarding or alighting', 'ICD10_2010'), +('V41.5', 'Car occupant injured in collision with pedal cycle: Driver injured in traffic accident', 'ICD10_2010'), +('V41.6', 'Car occupant injured in collision with pedal cycle: Passenger injured in traffic accident', 'ICD10_2010'), +('V41.7', 'Car occupant injured in collision with pedal cycle: Person on outside of vehicle injured in traffic accident', 'ICD10_2010'), +('V41.9', 'Car occupant injured in collision with pedal cycle: Unspecified car occupant injured in traffic accident', 'ICD10_2010'), +('V42', 'Car occupant injured in collision with two- or three-wheeled motor vehicle', 'ICD10_2010'), +('V42.0', 'Car occupant injured in collision with two- or three-wheeled motor vehicle: Driver injured in nontraffic accident', 'ICD10_2010'), +('V42.1', 'Car occupant injured in collision with two- or three-wheeled motor vehicle: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V42.2', 'Car occupant injured in collision with two- or three-wheeled motor vehicle: Person on outside of vehicle injured in nontraffic accident', 'ICD10_2010'), +('V42.3', 'Car occupant injured in collision with two- or three-wheeled motor vehicle: Unspecified car occupant injured in nontraffic accident', 'ICD10_2010'), +('V42.4', 'Car occupant injured in collision with two- or three-wheeled motor vehicle: Person injured while boarding or alighting', 'ICD10_2010'), +('V42.5', 'Car occupant injured in collision with two- or three-wheeled motor vehicle: Driver injured in traffic accident', 'ICD10_2010'), +('V42.6', 'Car occupant injured in collision with two- or three-wheeled motor vehicle: Passenger injured in traffic accident', 'ICD10_2010'), +('V42.7', 'Car occupant injured in collision with two- or three-wheeled motor vehicle: Person on outside of vehicle injured in traffic accident', 'ICD10_2010'), +('V42.9', 'Car occupant injured in collision with two- or three-wheeled motor vehicle: Unspecified car occupant injured in traffic accident', 'ICD10_2010'), +('V43', 'Car occupant injured in collision with car, pick-up truck or van', 'ICD10_2010'), +('V43.0', 'Car occupant injured in collision with car, pick-up truck or van: Driver injured in nontraffic accident', 'ICD10_2010'), +('V43.1', 'Car occupant injured in collision with car, pick-up truck or van: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V43.2', 'Car occupant injured in collision with car, pick-up truck or van: Person on outside of vehicle injured in nontraffic accident', 'ICD10_2010'), +('V43.3', 'Car occupant injured in collision with car, pick-up truck or van: Unspecified car occupant injured in nontraffic accident', 'ICD10_2010'), +('V43.4', 'Car occupant injured in collision with car, pick-up truck or van: Person injured while boarding or alighting', 'ICD10_2010'), +('V43.5', 'Car occupant injured in collision with car, pick-up truck or van: Driver injured in traffic accident', 'ICD10_2010'), +('V43.6', 'Car occupant injured in collision with car, pick-up truck or van: Passenger injured in traffic accident', 'ICD10_2010'), +('V43.7', 'Car occupant injured in collision with car, pick-up truck or van: Person on outside of vehicle injured in traffic accident', 'ICD10_2010'), +('V43.9', 'Car occupant injured in collision with car, pick-up truck or van: Unspecified car occupant injured in traffic accident', 'ICD10_2010'), +('V44', 'Car occupant injured in collision with heavy transport vehicle or bus', 'ICD10_2010'), +('V44.0', 'Car occupant injured in collision with heavy transport vehicle or bus: Driver injured in nontraffic accident', 'ICD10_2010'), +('V44.1', 'Car occupant injured in collision with heavy transport vehicle or bus: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V44.2', 'Car occupant injured in collision with heavy transport vehicle or bus: Person on outside of vehicle injured in nontraffic accident', 'ICD10_2010'), +('V44.3', 'Car occupant injured in collision with heavy transport vehicle or bus: Unspecified car occupant injured in nontraffic accident', 'ICD10_2010'), +('V44.4', 'Car occupant injured in collision with heavy transport vehicle or bus: Person injured while boarding or alighting', 'ICD10_2010'), +('V44.5', 'Car occupant injured in collision with heavy transport vehicle or bus: Driver injured in traffic accident', 'ICD10_2010'), +('V44.6', 'Car occupant injured in collision with heavy transport vehicle or bus: Passenger injured in traffic accident', 'ICD10_2010'), +('V44.7', 'Car occupant injured in collision with heavy transport vehicle or bus: Person on outside of vehicle injured in traffic accident', 'ICD10_2010'), +('V44.9', 'Car occupant injured in collision with heavy transport vehicle or bus: Unspecified car occupant injured in traffic accident', 'ICD10_2010'), +('V45', 'Car occupant injured in collision with railway train or railway vehicle', 'ICD10_2010'), +('V45.0', 'Car occupant injured in collision with railway train or railway vehicle: Driver injured in nontraffic accident', 'ICD10_2010'), +('V45.1', 'Car occupant injured in collision with railway train or railway vehicle: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V45.2', 'Car occupant injured in collision with railway train or railway vehicle: Person on outside of vehicle injured in nontraffic accident', 'ICD10_2010'), +('V45.3', 'Car occupant injured in collision with railway train or railway vehicle: Unspecified car occupant injured in nontraffic accident', 'ICD10_2010'), +('V45.4', 'Car occupant injured in collision with railway train or railway vehicle: Person injured while boarding or alighting', 'ICD10_2010'), +('V45.5', 'Car occupant injured in collision with railway train or railway vehicle: Driver injured in traffic accident', 'ICD10_2010'), +('V45.6', 'Car occupant injured in collision with railway train or railway vehicle: Passenger injured in traffic accident', 'ICD10_2010'), +('V45.7', 'Car occupant injured in collision with railway train or railway vehicle: Person on outside of vehicle injured in traffic accident', 'ICD10_2010'), +('V45.9', 'Car occupant injured in collision with railway train or railway vehicle: Unspecified car occupant injured in traffic accident', 'ICD10_2010'), +('V46', 'Car occupant injured in collision with other nonmotor vehicle', 'ICD10_2010'), +('V46.0', 'Car occupant injured in collision with other nonmotor vehicle: Driver injured in nontraffic accident', 'ICD10_2010'), +('V46.1', 'Car occupant injured in collision with other nonmotor vehicle: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V46.2', 'Car occupant injured in collision with other nonmotor vehicle: Person on outside of vehicle injured in nontraffic accident', 'ICD10_2010'), +('V46.3', 'Car occupant injured in collision with other nonmotor vehicle: Unspecified car occupant injured in nontraffic accident', 'ICD10_2010'), +('V46.4', 'Car occupant injured in collision with other nonmotor vehicle: Person injured while boarding or alighting', 'ICD10_2010'), +('V46.5', 'Car occupant injured in collision with other nonmotor vehicle: Driver injured in traffic accident', 'ICD10_2010'), +('V46.6', 'Car occupant injured in collision with other nonmotor vehicle: Passenger injured in traffic accident', 'ICD10_2010'), +('V46.7', 'Car occupant injured in collision with other nonmotor vehicle: Person on outside of vehicle injured in traffic accident', 'ICD10_2010'), +('V46.9', 'Car occupant injured in collision with other nonmotor vehicle: Unspecified car occupant injured in traffic accident', 'ICD10_2010'), +('V47', 'Car occupant injured in collision with fixed or stationary object', 'ICD10_2010'), +('V47.0', 'Car occupant injured in collision with fixed or stationary object: Driver injured in nontraffic accident', 'ICD10_2010'), +('V47.1', 'Car occupant injured in collision with fixed or stationary object: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V47.2', 'Car occupant injured in collision with fixed or stationary object: Person on outside of vehicle injured in nontraffic accident', 'ICD10_2010'), +('V47.3', 'Car occupant injured in collision with fixed or stationary object: Unspecified car occupant injured in nontraffic accident', 'ICD10_2010'), +('V47.4', 'Car occupant injured in collision with fixed or stationary object: Person injured while boarding or alighting', 'ICD10_2010'), +('V47.5', 'Car occupant injured in collision with fixed or stationary object: Driver injured in traffic accident', 'ICD10_2010'), +('V47.6', 'Car occupant injured in collision with fixed or stationary object: Passenger injured in traffic accident', 'ICD10_2010'), +('V47.7', 'Car occupant injured in collision with fixed or stationary object: Person on outside of vehicle injured in traffic accident', 'ICD10_2010'), +('V47.9', 'Car occupant injured in collision with fixed or stationary object: Unspecified car occupant injured in traffic accident', 'ICD10_2010'), +('V48', 'Car occupant injured in noncollision transport accident', 'ICD10_2010'), +('V48.0', 'Car occupant injured in noncollision transport accident: Driver injured in nontraffic accident', 'ICD10_2010'), +('V48.1', 'Car occupant injured in noncollision transport accident: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V48.2', 'Car occupant injured in noncollision transport accident: Person on outside of vehicle injured in nontraffic accident', 'ICD10_2010'), +('V48.3', 'Car occupant injured in noncollision transport accident: Unspecified car occupant injured in nontraffic accident', 'ICD10_2010'), +('V48.4', 'Car occupant injured in noncollision transport accident: Person injured while boarding or alighting', 'ICD10_2010'), +('V48.5', 'Car occupant injured in noncollision transport accident: Driver injured in traffic accident', 'ICD10_2010'), +('V48.6', 'Car occupant injured in noncollision transport accident: Passenger injured in traffic accident', 'ICD10_2010'), +('V48.7', 'Car occupant injured in noncollision transport accident: Person on outside of vehicle injured in traffic accident', 'ICD10_2010'), +('V48.9', 'Car occupant injured in noncollision transport accident: Unspecified car occupant injured in traffic accident', 'ICD10_2010'), +('V49', 'Car occupant injured in other and unspecified transport accidents', 'ICD10_2010'), +('V49.0', 'Driver injured in collision with other and unspecified motor vehicles in nontraffic accident', 'ICD10_2010'), +('V49.1', 'Passenger injured in collision with other and unspecified motor vehicles in nontraffic accident', 'ICD10_2010'), +('V49.2', 'Unspecified car occupant injured in collision with other and unspecified motor vehicles in nontraffic accident', 'ICD10_2010'), +('V49.3', 'Car occupant [any] injured in unspecified nontraffic accident', 'ICD10_2010'), +('V49.4', 'Driver injured in collision with other and unspecified motor vehicles in traffic accident', 'ICD10_2010'), +('V49.5', 'Passenger injured in collision with other and unspecified motor vehicles in traffic accident', 'ICD10_2010'), +('V49.6', 'Unspecified car occupant injured in collision with other and unspecified motor vehicles in traffic accident', 'ICD10_2010'), +('V49.8', 'Car occupant [any] injured in other specified transport accidents', 'ICD10_2010'), +('V49.9', 'Car occupant [any] injured in unspecified traffic accident', 'ICD10_2010'), +('V50', 'Occupant of pick-up truck or van injured in collision with pedestrian or animal', 'ICD10_2010'), +('V50.0', 'Occupant of pick-up truck or van injured in collision with pedestrian or animal: Driver injured in nontraffic accident', 'ICD10_2010'), +('V50.1', 'Occupant of pick-up truck or van injured in collision with pedestrian or animal: Passenger injured in nontraffic accident', 'ICD10_2010'), +('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', 'ICD10_2010'), +('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 ac', 'ICD10_2010'), +('V50.4', 'Occupant of pick-up truck or van injured in collision with pedestrian or animal: Person injured while boarding or alighting', 'ICD10_2010'), +('V50.5', 'Occupant of pick-up truck or van injured in collision with pedestrian or animal: Driver injured in traffic accident', 'ICD10_2010'), +('V50.6', 'Occupant of pick-up truck or van injured in collision with pedestrian or animal: Passenger injured in traffic accident', 'ICD10_2010'), +('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', 'ICD10_2010'), +('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 accid', 'ICD10_2010'), +('V51', 'Occupant of pick-up truck or van injured in collision with pedal cycle', 'ICD10_2010'), +('V51.0', 'Occupant of pick-up truck or van injured in collision with pedal cycle: Driver injured in nontraffic accident', 'ICD10_2010'), +('V51.1', 'Occupant of pick-up truck or van injured in collision with pedal cycle: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V51.2', 'Occupant of pick-up truck or van injured in collision with pedal cycle: Person on outside of vehicle injured in nontraffic accident', 'ICD10_2010'), +('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', 'ICD10_2010'), +('V51.4', 'Occupant of pick-up truck or van injured in collision with pedal cycle: Person injured while boarding or alighting', 'ICD10_2010'), +('V51.5', 'Occupant of pick-up truck or van injured in collision with pedal cycle: Driver injured in traffic accident', 'ICD10_2010'), +('V51.6', 'Occupant of pick-up truck or van injured in collision with pedal cycle: Passenger injured in traffic accident', 'ICD10_2010'), +('V51.7', 'Occupant of pick-up truck or van injured in collision with pedal cycle: Person on outside of vehicle injured in traffic accident', 'ICD10_2010'), +('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', 'ICD10_2010'), +('V52', 'Occupant of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle', 'ICD10_2010'), +('V52.0', 'Occupant of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle: Driver injured in nontraffic accident', 'ICD10_2010'), +('V52.1', 'Occupant of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle: Passenger injured in nontraffic accident', 'ICD10_2010'), +('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 acc', 'ICD10_2010'), +('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 i', 'ICD10_2010'), +('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', 'ICD10_2010'), +('V52.5', 'Occupant of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle: Driver injured in traffic accident', 'ICD10_2010'), +('V52.6', 'Occupant of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle: Passenger injured in traffic accident', 'ICD10_2010'), +('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 accide', 'ICD10_2010'), +('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 i', 'ICD10_2010'), +('V53', 'Occupant of pick-up truck or van injured in collision with car, pick-up truck or van', 'ICD10_2010'), +('V53.0', 'Occupant of pick-up truck or van injured in collision with car, pick-up truck or van: Driver injured in nontraffic accident', 'ICD10_2010'), +('V53.1', 'Occupant of pick-up truck or van injured in collision with car, pick-up truck or van: Passenger injured in nontraffic accident', 'ICD10_2010'), +('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', 'ICD10_2010'), +('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 nontraff', 'ICD10_2010'), +('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', 'ICD10_2010'), +('V53.5', 'Occupant of pick-up truck or van injured in collision with car, pick-up truck or van: Driver injured in traffic accident', 'ICD10_2010'), +('V53.6', 'Occupant of pick-up truck or van injured in collision with car, pick-up truck or van: Passenger injured in traffic accident', 'ICD10_2010'), +('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', 'ICD10_2010'), +('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 ', 'ICD10_2010'), +('V54', 'Occupant of pick-up truck or van injured in collision with heavy transport vehicle or bus', 'ICD10_2010'), +('V54.0', 'Occupant of pick-up truck or van injured in collision with heavy transport vehicle or bus: Driver injured in nontraffic accident', 'ICD10_2010'), +('V54.1', 'Occupant of pick-up truck or van injured in collision with heavy transport vehicle or bus: Passenger injured in nontraffic accident', 'ICD10_2010'), +('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', 'ICD10_2010'), +('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 non', 'ICD10_2010'), +('V54.4', 'Occupant of pick-up truck or van injured in collision with heavy transport vehicle or bus: Person injured while boarding or alighting', 'ICD10_2010'), +('V54.5', 'Occupant of pick-up truck or van injured in collision with heavy transport vehicle or bus: Driver injured in traffic accident', 'ICD10_2010'), +('V54.6', 'Occupant of pick-up truck or van injured in collision with heavy transport vehicle or bus: Passenger injured in traffic accident', 'ICD10_2010'), +('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', 'ICD10_2010'), +('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 tra', 'ICD10_2010'), +('V55', 'Occupant of pick-up truck or van injured in collision with railway train or railway vehicle', 'ICD10_2010'), +('V55.0', 'Occupant of pick-up truck or van injured in collision with railway train or railway vehicle: Driver injured in nontraffic accident', 'ICD10_2010'), +('V55.1', 'Occupant of pick-up truck or van injured in collision with railway train or railway vehicle: Passenger injured in nontraffic accident', 'ICD10_2010'), +('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 accide', 'ICD10_2010'), +('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 n', 'ICD10_2010'), +('V55.4', 'Occupant of pick-up truck or van injured in collision with railway train or railway vehicle: Person injured while boarding or alighting', 'ICD10_2010'), +('V55.5', 'Occupant of pick-up truck or van injured in collision with railway train or railway vehicle: Driver injured in traffic accident', 'ICD10_2010'), +('V55.6', 'Occupant of pick-up truck or van injured in collision with railway train or railway vehicle: Passenger injured in traffic accident', 'ICD10_2010'), +('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', 'ICD10_2010'), +('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 t', 'ICD10_2010'), +('V56', 'Occupant of pick-up truck or van injured in collision with other nonmotor vehicle', 'ICD10_2010'), +('V56.0', 'Occupant of pick-up truck or van injured in collision with other nonmotor vehicle: Driver injured in nontraffic accident', 'ICD10_2010'), +('V56.1', 'Occupant of pick-up truck or van injured in collision with other nonmotor vehicle: Passenger injured in nontraffic accident', 'ICD10_2010'), +('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', 'ICD10_2010'), +('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 ', 'ICD10_2010'), +('V56.4', 'Occupant of pick-up truck or van injured in collision with other nonmotor vehicle: Person injured while boarding or alighting', 'ICD10_2010'), +('V56.5', 'Occupant of pick-up truck or van injured in collision with other nonmotor vehicle: Driver injured in traffic accident', 'ICD10_2010'), +('V56.6', 'Occupant of pick-up truck or van injured in collision with other nonmotor vehicle: Passenger injured in traffic accident', 'ICD10_2010'), +('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', 'ICD10_2010'), +('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 acc', 'ICD10_2010'), +('V57', 'Occupant of pick-up truck or van injured in collision with fixed or stationary object', 'ICD10_2010'), +('V57.0', 'Occupant of pick-up truck or van injured in collision with fixed or stationary object: Driver injured in nontraffic accident', 'ICD10_2010'), +('V57.1', 'Occupant of pick-up truck or van injured in collision with fixed or stationary object: Passenger injured in nontraffic accident', 'ICD10_2010'), +('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', 'ICD10_2010'), +('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 nontraf', 'ICD10_2010'), +('V57.4', 'Occupant of pick-up truck or van injured in collision with fixed or stationary object: Person injured while boarding or alighting', 'ICD10_2010'), +('V57.5', 'Occupant of pick-up truck or van injured in collision with fixed or stationary object: Driver injured in traffic accident', 'ICD10_2010'), +('V57.6', 'Occupant of pick-up truck or van injured in collision with fixed or stationary object: Passenger injured in traffic accident', 'ICD10_2010'), +('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', 'ICD10_2010'), +('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', 'ICD10_2010'), +('V58', 'Occupant of pick-up truck or van injured in noncollision transport accident', 'ICD10_2010'), +('V58.0', 'Occupant of pick-up truck or van injured in noncollision transport accident: Driver injured in nontraffic accident', 'ICD10_2010'), +('V58.1', 'Occupant of pick-up truck or van injured in noncollision transport accident: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V58.2', 'Occupant of pick-up truck or van injured in noncollision transport accident: Person on outside of vehicle injured in nontraffic accident', 'ICD10_2010'), +('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 accide', 'ICD10_2010'), +('V58.4', 'Occupant of pick-up truck or van injured in noncollision transport accident: Person injured while boarding or alighting', 'ICD10_2010'), +('V58.5', 'Occupant of pick-up truck or van injured in noncollision transport accident: Driver injured in traffic accident', 'ICD10_2010'), +('V58.6', 'Occupant of pick-up truck or van injured in noncollision transport accident: Passenger injured in traffic accident', 'ICD10_2010'), +('V58.7', 'Occupant of pick-up truck or van injured in noncollision transport accident: Person on outside of vehicle injured in traffic accident', 'ICD10_2010'), +('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', 'ICD10_2010'), +('V59', 'Occupant of pick-up truck or van injured in other and unspecified transport accidents', 'ICD10_2010'), +('V59.0', 'Driver injured in collision with other and unspecified motor vehicles in nontraffic accident', 'ICD10_2010'), +('V59.1', 'Passenger injured in collision with other and unspecified motor vehicles in nontraffic accident', 'ICD10_2010'), +('V59.2', 'Unspecified occupant of pick-up truck or van injured in collision with other and unspecified motor vehicles in nontraffic accident', 'ICD10_2010'), +('V59.3', 'Occupant [any] of pick-up truck or van injured in unspecified nontraffic accident', 'ICD10_2010'), +('V59.4', 'Driver injured in collision with other and unspecified motor vehicles in traffic accident', 'ICD10_2010'), +('V59.5', 'Passenger injured in collision with other and unspecified motor vehicles in traffic accident', 'ICD10_2010'), +('V59.6', 'Unspecified occupant of pick-up truck or van injured in collision with other and unspecified motor vehicles in traffic accident', 'ICD10_2010'), +('V59.8', 'Occupant [any] of pick-up truck or van injured in other specified transport accidents', 'ICD10_2010'), +('V59.9', 'Occupant [any] of pick-up truck or van injured in unspecified traffic accident', 'ICD10_2010'), +('V60', 'Occupant of heavy transport vehicle injured in collision with pedestrian or animal', 'ICD10_2010'), +('V60.0', 'Occupant of heavy transport vehicle injured in collision with pedestrian or animal: Driver injured in nontraffic accident', 'ICD10_2010'), +('V60.1', 'Occupant of heavy transport vehicle injured in collision with pedestrian or animal: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V60.2', 'Occupant of heavy transport vehicle injured in collision with pedestrian or animal: Person on outside of vehicle injured in nontraffic accident', 'ICD10_2010'), +('V60.3', 'Occupant of heavy transport vehicle injured in collision with pedestrian or animal: Unspecified occupant of heavy transport vehicle injured in nontraf', 'ICD10_2010'), +('V60.4', 'Occupant of heavy transport vehicle injured in collision with pedestrian or animal: Person injured while boarding or alighting', 'ICD10_2010'), +('V60.5', 'Occupant of heavy transport vehicle injured in collision with pedestrian or animal: Driver injured in traffic accident', 'ICD10_2010'), +('V60.6', 'Occupant of heavy transport vehicle injured in collision with pedestrian or animal: Passenger injured in traffic accident', 'ICD10_2010'), +('V60.7', 'Occupant of heavy transport vehicle injured in collision with pedestrian or animal: Person on outside of vehicle injured in traffic accident', 'ICD10_2010'), +('V60.9', 'Occupant of heavy transport vehicle injured in collision with pedestrian or animal: Unspecified occupant of heavy transport vehicle injured in traffic', 'ICD10_2010'), +('V61', 'Occupant of heavy transport vehicle injured in collision with pedal cycle', 'ICD10_2010'), +('V61.0', 'Occupant of heavy transport vehicle injured in collision with pedal cycle: Driver injured in nontraffic accident', 'ICD10_2010'), +('V61.1', 'Occupant of heavy transport vehicle injured in collision with pedal cycle: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V61.2', 'Occupant of heavy transport vehicle injured in collision with pedal cycle: Person on outside of vehicle injured in nontraffic accident', 'ICD10_2010'), +('V61.3', 'Occupant of heavy transport vehicle injured in collision with pedal cycle: Unspecified occupant of heavy transport vehicle injured in nontraffic accid', 'ICD10_2010'), +('V61.4', 'Occupant of heavy transport vehicle injured in collision with pedal cycle: Person injured while boarding or alighting', 'ICD10_2010'), +('V61.5', 'Occupant of heavy transport vehicle injured in collision with pedal cycle: Driver injured in traffic accident', 'ICD10_2010'), +('V61.6', 'Occupant of heavy transport vehicle injured in collision with pedal cycle: Passenger injured in traffic accident', 'ICD10_2010'), +('V61.7', 'Occupant of heavy transport vehicle injured in collision with pedal cycle: Person on outside of vehicle injured in traffic accident', 'ICD10_2010'), +('V61.9', 'Occupant of heavy transport vehicle injured in collision with pedal cycle: Unspecified occupant of heavy transport vehicle injured in traffic accident', 'ICD10_2010'), +('V62', 'Occupant of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle', 'ICD10_2010'), +('V62.0', 'Occupant of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle: Driver injured in nontraffic accident', 'ICD10_2010'), +('V62.1', 'Occupant of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle: Passenger injured in nontraffic accident', 'ICD10_2010'), +('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 ', 'ICD10_2010'), +('V62.3', 'Occupant of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle: Unspecified occupant of heavy transport vehicle inj', 'ICD10_2010'), +('V62.4', 'Occupant of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle: Person injured while boarding or alighting', 'ICD10_2010'), +('V62.5', 'Occupant of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle: Driver injured in traffic accident', 'ICD10_2010'), +('V62.6', 'Occupant of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle: Passenger injured in traffic accident', 'ICD10_2010'), +('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 acc', 'ICD10_2010'), +('V62.9', 'Occupant of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle: Unspecified occupant of heavy transport vehicle inj', 'ICD10_2010'), +('V63', 'Occupant of heavy transport vehicle injured in collision with car, pick-up truck or van', 'ICD10_2010'), +('V63.0', 'Occupant of heavy transport vehicle injured in collision with car, pick-up truck or van: Driver injured in nontraffic accident', 'ICD10_2010'), +('V63.1', 'Occupant of heavy transport vehicle injured in collision with car, pick-up truck or van: Passenger injured in nontraffic accident', 'ICD10_2010'), +('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', 'ICD10_2010'), +('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 no', 'ICD10_2010'), +('V63.4', 'Occupant of heavy transport vehicle injured in collision with car, pick-up truck or van: Person injured while boarding or alighting', 'ICD10_2010'), +('V63.5', 'Occupant of heavy transport vehicle injured in collision with car, pick-up truck or van: Driver injured in traffic accident', 'ICD10_2010'), +('V63.6', 'Occupant of heavy transport vehicle injured in collision with car, pick-up truck or van: Passenger injured in traffic accident', 'ICD10_2010'), +('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', 'ICD10_2010'), +('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 tr', 'ICD10_2010'), +('V64', 'Occupant of heavy transport vehicle injured in collision with heavy transport vehicle or bus', 'ICD10_2010'), +('V64.0', 'Occupant of heavy transport vehicle injured in collision with heavy transport vehicle or bus: Driver injured in nontraffic accident', 'ICD10_2010'), +('V64.1', 'Occupant of heavy transport vehicle injured in collision with heavy transport vehicle or bus: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V64.2', 'Occupant of heavy transport vehicle injured in collision with heavy transport vehicle or bus: Person on outside of vehicle injured in nontraffic accid', 'ICD10_2010'), +('V64.3', 'Occupant of heavy transport vehicle injured in collision with heavy transport vehicle or bus: Unspecified occupant of heavy transport vehicle injured ', 'ICD10_2010'), +('V64.4', 'Occupant of heavy transport vehicle injured in collision with heavy transport vehicle or bus: Person injured while boarding or alighting', 'ICD10_2010'), +('V64.5', 'Occupant of heavy transport vehicle injured in collision with heavy transport vehicle or bus: Driver injured in traffic accident', 'ICD10_2010'), +('V64.6', 'Occupant of heavy transport vehicle injured in collision with heavy transport vehicle or bus: Passenger injured in traffic accident', 'ICD10_2010'), +('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', 'ICD10_2010'), +('V64.9', 'Occupant of heavy transport vehicle injured in collision with heavy transport vehicle or bus: Unspecified occupant of heavy transport vehicle injured ', 'ICD10_2010'), +('V65', 'Occupant of heavy transport vehicle injured in collision with railway train or railway vehicle', 'ICD10_2010'), +('V65.0', 'Occupant of heavy transport vehicle injured in collision with railway train or railway vehicle: Driver injured in nontraffic accident', 'ICD10_2010'), +('V65.1', 'Occupant of heavy transport vehicle injured in collision with railway train or railway vehicle: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V65.2', 'Occupant of heavy transport vehicle injured in collision with railway train or railway vehicle: Person on outside of vehicle injured in nontraffic acc', 'ICD10_2010'); +INSERT INTO `icd10` (`ID_ICD10`, `Diagnosa`, `Versi_ICD10`) VALUES +('V65.3', 'Occupant of heavy transport vehicle injured in collision with railway train or railway vehicle: Unspecified occupant of heavy transport vehicle injure', 'ICD10_2010'), +('V65.4', 'Occupant of heavy transport vehicle injured in collision with railway train or railway vehicle: Person injured while boarding or alighting', 'ICD10_2010'), +('V65.5', 'Occupant of heavy transport vehicle injured in collision with railway train or railway vehicle: Driver injured in traffic accident', 'ICD10_2010'), +('V65.6', 'Occupant of heavy transport vehicle injured in collision with railway train or railway vehicle: Passenger injured in traffic accident', 'ICD10_2010'), +('V65.7', 'Occupant of heavy transport vehicle injured in collision with railway train or railway vehicle: Person on outside of vehicle injured in traffic accide', 'ICD10_2010'), +('V65.9', 'Occupant of heavy transport vehicle injured in collision with railway train or railway vehicle: Unspecified occupant of heavy transport vehicle injure', 'ICD10_2010'), +('V66', 'Occupant of heavy transport vehicle injured in collision with other nonmotor vehicle', 'ICD10_2010'), +('V66.0', 'Occupant of heavy transport vehicle injured in collision with other nonmotor vehicle: Driver injured in nontraffic accident', 'ICD10_2010'), +('V66.1', 'Occupant of heavy transport vehicle injured in collision with other nonmotor vehicle: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V66.2', 'Occupant of heavy transport vehicle injured in collision with other nonmotor vehicle: Person on outside of vehicle injured in nontraffic accident', 'ICD10_2010'), +('V66.3', 'Occupant of heavy transport vehicle injured in collision with other nonmotor vehicle: Unspecified occupant of heavy transport vehicle injured in nontr', 'ICD10_2010'), +('V66.4', 'Occupant of heavy transport vehicle injured in collision with other nonmotor vehicle: Person injured while boarding or alighting', 'ICD10_2010'), +('V66.5', 'Occupant of heavy transport vehicle injured in collision with other nonmotor vehicle: Driver injured in traffic accident', 'ICD10_2010'), +('V66.6', 'Occupant of heavy transport vehicle injured in collision with other nonmotor vehicle: Passenger injured in traffic accident', 'ICD10_2010'), +('V66.7', 'Occupant of heavy transport vehicle injured in collision with other nonmotor vehicle: Person on outside of vehicle injured in traffic accident', 'ICD10_2010'), +('V66.9', 'Occupant of heavy transport vehicle injured in collision with other nonmotor vehicle: Unspecified occupant of heavy transport vehicle injured in traff', 'ICD10_2010'), +('V67', 'Occupant of heavy transport vehicle injured in collision with fixed or stationary object', 'ICD10_2010'), +('V67.0', 'Occupant of heavy transport vehicle injured in collision with fixed or stationary object: Driver injured in nontraffic accident', 'ICD10_2010'), +('V67.1', 'Occupant of heavy transport vehicle injured in collision with fixed or stationary object: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V67.2', 'Occupant of heavy transport vehicle injured in collision with fixed or stationary object: Person on outside of vehicle injured in nontraffic accident', 'ICD10_2010'), +('V67.3', 'Occupant of heavy transport vehicle injured in collision with fixed or stationary object: Unspecified occupant of heavy transport vehicle injured in n', 'ICD10_2010'), +('V67.4', 'Occupant of heavy transport vehicle injured in collision with fixed or stationary object: Person injured while boarding or alighting', 'ICD10_2010'), +('V67.5', 'Occupant of heavy transport vehicle injured in collision with fixed or stationary object: Driver injured in traffic accident', 'ICD10_2010'), +('V67.6', 'Occupant of heavy transport vehicle injured in collision with fixed or stationary object: Passenger injured in traffic accident', 'ICD10_2010'), +('V67.7', 'Occupant of heavy transport vehicle injured in collision with fixed or stationary object: Person on outside of vehicle injured in traffic accident', 'ICD10_2010'), +('V67.9', 'Occupant of heavy transport vehicle injured in collision with fixed or stationary object: Unspecified occupant of heavy transport vehicle injured in t', 'ICD10_2010'), +('V68', 'Occupant of heavy transport vehicle injured in noncollision transport accident', 'ICD10_2010'), +('V68.0', 'Occupant of heavy transport vehicle injured in noncollision transport accident: Driver injured in nontraffic accident', 'ICD10_2010'), +('V68.1', 'Occupant of heavy transport vehicle injured in noncollision transport accident: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V68.2', 'Occupant of heavy transport vehicle injured in noncollision transport accident: Person on outside of vehicle injured in nontraffic accident', 'ICD10_2010'), +('V68.3', 'Occupant of heavy transport vehicle injured in noncollision transport accident: Unspecified occupant of heavy transport vehicle injured in nontraffic ', 'ICD10_2010'), +('V68.4', 'Occupant of heavy transport vehicle injured in noncollision transport accident: Person injured while boarding or alighting', 'ICD10_2010'), +('V68.5', 'Occupant of heavy transport vehicle injured in noncollision transport accident: Driver injured in traffic accident', 'ICD10_2010'), +('V68.6', 'Occupant of heavy transport vehicle injured in noncollision transport accident: Passenger injured in traffic accident', 'ICD10_2010'), +('V68.7', 'Occupant of heavy transport vehicle injured in noncollision transport accident: Person on outside of vehicle injured in traffic accident', 'ICD10_2010'), +('V68.9', 'Occupant of heavy transport vehicle injured in noncollision transport accident: Unspecified occupant of heavy transport vehicle injured in traffic acc', 'ICD10_2010'), +('V69', 'Occupant of heavy transport vehicle injured in other and unspecified transport accidents', 'ICD10_2010'), +('V69.0', 'Driver injured in collision with other and unspecified motor vehicles in nontraffic accident', 'ICD10_2010'), +('V69.1', 'Passenger injured in collision with other and unspecified motor vehicles in nontraffic accident', 'ICD10_2010'), +('V69.2', 'Unspecified occupant of heavy transport vehicle injured in collision with other and unspecified motor vehicles in nontraffic accident', 'ICD10_2010'), +('V69.3', 'Occupant [any] of heavy transport vehicle injured in unspecified nontraffic accident', 'ICD10_2010'), +('V69.4', 'Driver injured in collision with other and unspecified motor vehicles in traffic accident', 'ICD10_2010'), +('V69.5', 'Passenger injured in collision with other and unspecified motor vehicles in traffic accident', 'ICD10_2010'), +('V69.6', 'Unspecified occupant of heavy transport vehicle injured in collision with other and unspecified motor vehicles in traffic accident', 'ICD10_2010'), +('V69.8', 'Occupant [any] of heavy transport vehicle injured in other specified transport accidents', 'ICD10_2010'), +('V69.9', 'Occupant [any] of heavy transport vehicle injured in unspecified traffic accident', 'ICD10_2010'), +('V70', 'Bus occupant injured in collision with pedestrian or animal', 'ICD10_2010'), +('V70.0', 'Bus occupant injured in collision with pedestrian or animal: Driver injured in nontraffic accident', 'ICD10_2010'), +('V70.1', 'Bus occupant injured in collision with pedestrian or animal: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V70.2', 'Bus occupant injured in collision with pedestrian or animal: Person on outside of vehicle injured in nontraffic accident', 'ICD10_2010'), +('V70.3', 'Bus occupant injured in collision with pedestrian or animal: Unspecified bus occupant injured in nontraffic accident', 'ICD10_2010'), +('V70.4', 'Bus occupant injured in collision with pedestrian or animal: Person injured while boarding or alighting', 'ICD10_2010'), +('V70.5', 'Bus occupant injured in collision with pedestrian or animal: Driver injured in traffic accident', 'ICD10_2010'), +('V70.6', 'Bus occupant injured in collision with pedestrian or animal: Passenger injured in traffic accident', 'ICD10_2010'), +('V70.7', 'Bus occupant injured in collision with pedestrian or animal: Person on outside of vehicle injured in traffic accident', 'ICD10_2010'), +('V70.9', 'Bus occupant injured in collision with pedestrian or animal: Unspecified bus occupant injured in traffic accident', 'ICD10_2010'), +('V71', 'Bus occupant injured in collision with pedal cycle', 'ICD10_2010'), +('V71.0', 'Bus occupant injured in collision with pedal cycle: Driver injured in nontraffic accident', 'ICD10_2010'), +('V71.1', 'Bus occupant injured in collision with pedal cycle: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V71.2', 'Bus occupant injured in collision with pedal cycle: Person on outside of vehicle injured in nontraffic accident', 'ICD10_2010'), +('V71.3', 'Bus occupant injured in collision with pedal cycle: Unspecified bus occupant injured in nontraffic accident', 'ICD10_2010'), +('V71.4', 'Bus occupant injured in collision with pedal cycle: Person injured while boarding or alighting', 'ICD10_2010'), +('V71.5', 'Bus occupant injured in collision with pedal cycle: Driver injured in traffic accident', 'ICD10_2010'), +('V71.6', 'Bus occupant injured in collision with pedal cycle: Passenger injured in traffic accident', 'ICD10_2010'), +('V71.7', 'Bus occupant injured in collision with pedal cycle: Person on outside of vehicle injured in traffic accident', 'ICD10_2010'), +('V71.9', 'Bus occupant injured in collision with pedal cycle: Unspecified bus occupant injured in traffic accident', 'ICD10_2010'), +('V72', 'Bus occupant injured in collision with two- or three-wheeled motor vehicle', 'ICD10_2010'), +('V72.0', 'Bus occupant injured in collision with two- or three-wheeled motor vehicle: Driver injured in nontraffic accident', 'ICD10_2010'), +('V72.1', 'Bus occupant injured in collision with two- or three-wheeled motor vehicle: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V72.2', 'Bus occupant injured in collision with two- or three-wheeled motor vehicle: Person on outside of vehicle injured in nontraffic accident', 'ICD10_2010'), +('V72.3', 'Bus occupant injured in collision with two- or three-wheeled motor vehicle: Unspecified bus occupant injured in nontraffic accident', 'ICD10_2010'), +('V72.4', 'Bus occupant injured in collision with two- or three-wheeled motor vehicle: Person injured while boarding or alighting', 'ICD10_2010'), +('V72.5', 'Bus occupant injured in collision with two- or three-wheeled motor vehicle: Driver injured in traffic accident', 'ICD10_2010'), +('V72.6', 'Bus occupant injured in collision with two- or three-wheeled motor vehicle: Passenger injured in traffic accident', 'ICD10_2010'), +('V72.7', 'Bus occupant injured in collision with two- or three-wheeled motor vehicle: Person on outside of vehicle injured in traffic accident', 'ICD10_2010'), +('V72.9', 'Bus occupant injured in collision with two- or three-wheeled motor vehicle: Unspecified bus occupant injured in traffic accident', 'ICD10_2010'), +('V73', 'Bus occupant injured in collision with car, pick-up truck or van', 'ICD10_2010'), +('V73.0', 'Bus occupant injured in collision with car, pick-up truck or van: Driver injured in nontraffic accident', 'ICD10_2010'), +('V73.1', 'Bus occupant injured in collision with car, pick-up truck or van: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V73.2', 'Bus occupant injured in collision with car, pick-up truck or van: Person on outside of vehicle injured in nontraffic accident', 'ICD10_2010'), +('V73.3', 'Bus occupant injured in collision with car, pick-up truck or van: Unspecified bus occupant injured in nontraffic accident', 'ICD10_2010'), +('V73.4', 'Bus occupant injured in collision with car, pick-up truck or van: Person injured while boarding or alighting', 'ICD10_2010'), +('V73.5', 'Bus occupant injured in collision with car, pick-up truck or van: Driver injured in traffic accident', 'ICD10_2010'), +('V73.6', 'Bus occupant injured in collision with car, pick-up truck or van: Passenger injured in traffic accident', 'ICD10_2010'), +('V73.7', 'Bus occupant injured in collision with car, pick-up truck or van: Person on outside of vehicle injured in traffic accident', 'ICD10_2010'), +('V73.9', 'Bus occupant injured in collision with car, pick-up truck or van: Unspecified bus occupant injured in traffic accident', 'ICD10_2010'), +('V74', 'Bus occupant injured in collision with heavy transport vehicle or bus', 'ICD10_2010'), +('V74.0', 'Bus occupant injured in collision with heavy transport vehicle or bus: Driver injured in nontraffic accident', 'ICD10_2010'), +('V74.1', 'Bus occupant injured in collision with heavy transport vehicle or bus: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V74.2', 'Bus occupant injured in collision with heavy transport vehicle or bus: Person on outside of vehicle injured in nontraffic accident', 'ICD10_2010'), +('V74.3', 'Bus occupant injured in collision with heavy transport vehicle or bus: Unspecified bus occupant injured in nontraffic accident', 'ICD10_2010'), +('V74.4', 'Bus occupant injured in collision with heavy transport vehicle or bus: Person injured while boarding or alighting', 'ICD10_2010'), +('V74.5', 'Bus occupant injured in collision with heavy transport vehicle or bus: Driver injured in traffic accident', 'ICD10_2010'), +('V74.6', 'Bus occupant injured in collision with heavy transport vehicle or bus: Passenger injured in traffic accident', 'ICD10_2010'), +('V74.7', 'Bus occupant injured in collision with heavy transport vehicle or bus: Person on outside of vehicle injured in traffic accident', 'ICD10_2010'), +('V74.9', 'Bus occupant injured in collision with heavy transport vehicle or bus: Unspecified bus occupant injured in traffic accident', 'ICD10_2010'), +('V75', 'Bus occupant injured in collision with railway train or railway vehicle', 'ICD10_2010'), +('V75.0', 'Bus occupant injured in collision with railway train or railway vehicle: Driver injured in nontraffic accident', 'ICD10_2010'), +('V75.1', 'Bus occupant injured in collision with railway train or railway vehicle: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V75.2', 'Bus occupant injured in collision with railway train or railway vehicle: Person on outside of vehicle injured in nontraffic accident', 'ICD10_2010'), +('V75.3', 'Bus occupant injured in collision with railway train or railway vehicle: Unspecified bus occupant injured in nontraffic accident', 'ICD10_2010'), +('V75.4', 'Bus occupant injured in collision with railway train or railway vehicle: Person injured while boarding or alighting', 'ICD10_2010'), +('V75.5', 'Bus occupant injured in collision with railway train or railway vehicle: Driver injured in traffic accident', 'ICD10_2010'), +('V75.6', 'Bus occupant injured in collision with railway train or railway vehicle: Passenger injured in traffic accident', 'ICD10_2010'), +('V75.7', 'Bus occupant injured in collision with railway train or railway vehicle: Person on outside of vehicle injured in traffic accident', 'ICD10_2010'), +('V75.9', 'Bus occupant injured in collision with railway train or railway vehicle: Unspecified bus occupant injured in traffic accident', 'ICD10_2010'), +('V76', 'Bus occupant injured in collision with other nonmotor vehicle', 'ICD10_2010'), +('V76.0', 'Bus occupant injured in collision with other nonmotor vehicle: Driver injured in nontraffic accident', 'ICD10_2010'), +('V76.1', 'Bus occupant injured in collision with other nonmotor vehicle: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V76.2', 'Bus occupant injured in collision with other nonmotor vehicle: Person on outside of vehicle injured in nontraffic accident', 'ICD10_2010'), +('V76.3', 'Bus occupant injured in collision with other nonmotor vehicle: Unspecified bus occupant injured in nontraffic accident', 'ICD10_2010'), +('V76.4', 'Bus occupant injured in collision with other nonmotor vehicle: Person injured while boarding or alighting', 'ICD10_2010'), +('V76.5', 'Bus occupant injured in collision with other nonmotor vehicle: Driver injured in traffic accident', 'ICD10_2010'), +('V76.6', 'Bus occupant injured in collision with other nonmotor vehicle: Passenger injured in traffic accident', 'ICD10_2010'), +('V76.7', 'Bus occupant injured in collision with other nonmotor vehicle: Person on outside of vehicle injured in traffic accident', 'ICD10_2010'), +('V76.9', 'Bus occupant injured in collision with other nonmotor vehicle: Unspecified bus occupant injured in traffic accident', 'ICD10_2010'), +('V77', 'Bus occupant injured in collision with fixed or stationary object', 'ICD10_2010'), +('V77.0', 'Bus occupant injured in collision with fixed or stationary object: Driver injured in nontraffic accident', 'ICD10_2010'), +('V77.1', 'Bus occupant injured in collision with fixed or stationary object: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V77.2', 'Bus occupant injured in collision with fixed or stationary object: Person on outside of vehicle injured in nontraffic accident', 'ICD10_2010'), +('V77.3', 'Bus occupant injured in collision with fixed or stationary object: Unspecified bus occupant injured in nontraffic accident', 'ICD10_2010'), +('V77.4', 'Bus occupant injured in collision with fixed or stationary object: Person injured while boarding or alighting', 'ICD10_2010'), +('V77.5', 'Bus occupant injured in collision with fixed or stationary object: Driver injured in traffic accident', 'ICD10_2010'), +('V77.6', 'Bus occupant injured in collision with fixed or stationary object: Passenger injured in traffic accident', 'ICD10_2010'), +('V77.7', 'Bus occupant injured in collision with fixed or stationary object: Person on outside of vehicle injured in traffic accident', 'ICD10_2010'), +('V77.9', 'Bus occupant injured in collision with fixed or stationary object: Unspecified bus occupant injured in traffic accident', 'ICD10_2010'), +('V78', 'Bus occupant injured in noncollision transport accident', 'ICD10_2010'), +('V78.0', 'Bus occupant injured in noncollision transport accident: Driver injured in nontraffic accident', 'ICD10_2010'), +('V78.1', 'Bus occupant injured in noncollision transport accident: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V78.2', 'Bus occupant injured in noncollision transport accident: Person on outside of vehicle injured in nontraffic accident', 'ICD10_2010'), +('V78.3', 'Bus occupant injured in noncollision transport accident: Unspecified bus occupant injured in nontraffic accident', 'ICD10_2010'), +('V78.4', 'Bus occupant injured in noncollision transport accident: Person injured while boarding or alighting', 'ICD10_2010'), +('V78.5', 'Bus occupant injured in noncollision transport accident: Driver injured in traffic accident', 'ICD10_2010'), +('V78.6', 'Bus occupant injured in noncollision transport accident: Passenger injured in traffic accident', 'ICD10_2010'), +('V78.7', 'Bus occupant injured in noncollision transport accident: Person on outside of vehicle injured in traffic accident', 'ICD10_2010'), +('V78.9', 'Bus occupant injured in noncollision transport accident: Unspecified bus occupant injured in traffic accident', 'ICD10_2010'), +('V79', 'Bus occupant injured in other and unspecified transport accidents', 'ICD10_2010'), +('V79.0', 'Driver injured in collision with other and unspecified motor vehicles in nontraffic accident', 'ICD10_2010'), +('V79.1', 'Passenger injured in collision with other and unspecified motor vehicles in nontraffic accident', 'ICD10_2010'), +('V79.2', 'Unspecified bus occupant injured in collision with other and unspecified motor vehicles in nontraffic accident', 'ICD10_2010'), +('V79.3', 'Bus occupant [any] injured in unspecified nontraffic accident', 'ICD10_2010'), +('V79.4', 'Driver injured in collision with other and unspecified motor vehicles in traffic accident', 'ICD10_2010'), +('V79.5', 'Passenger injured in collision with other and unspecified motor vehicles in traffic accident', 'ICD10_2010'), +('V79.6', 'Unspecified bus occupant injured in collision with other and unspecified motor vehicles in traffic accident', 'ICD10_2010'), +('V79.8', 'Bus occupant [any] injured in other specified transport accidents', 'ICD10_2010'), +('V79.9', 'Bus occupant [any] injured in unspecified traffic accident', 'ICD10_2010'), +('V80', 'Animal-rider or occupant of animal-drawn vehicle injured in transport accident', 'ICD10_2010'), +('V80.0', 'Rider or occupant injured by fall from or being thrown from animal or animal-drawn vehicle in noncollision accident', 'ICD10_2010'), +('V80.1', 'Rider or occupant injured in collision with pedestrian or animal', 'ICD10_2010'), +('V80.2', 'Rider or occupant injured in collision with pedal cycle', 'ICD10_2010'), +('V80.3', 'Rider or occupant injured in collision with two- or three-wheeled motor vehicle', 'ICD10_2010'), +('V80.4', 'Rider or occupant injured in collision with car, pick-up truck, van, heavy transport vehicle or bus', 'ICD10_2010'), +('V80.5', 'Rider or occupant injured in collision with other specified motor vehicle', 'ICD10_2010'), +('V80.6', 'Rider or occupant injured in collision with railway train or railway vehicle', 'ICD10_2010'), +('V80.7', 'Rider or occupant injured in collision with other nonmotor vehicle', 'ICD10_2010'), +('V80.8', 'Rider or occupant injured in collision with fixed or stationary object', 'ICD10_2010'), +('V80.9', 'Rider or occupant injured in other and unspecified transport accidents', 'ICD10_2010'), +('V81', 'Occupant of railway train or railway vehicle injured in transport accident', 'ICD10_2010'), +('V81.0', 'Occupant of railway train or railway vehicle injured in collision with motor vehicle in nontraffic accident', 'ICD10_2010'), +('V81.1', 'Occupant of railway train or railway vehicle injured in collision with motor vehicle in traffic accident', 'ICD10_2010'), +('V81.2', 'Occupant of railway train or railway vehicle injured in collision with or hit by rolling stock', 'ICD10_2010'), +('V81.3', 'Occupant of railway train or railway vehicle injured in collision with other object', 'ICD10_2010'), +('V81.4', 'Person injured while boarding or alighting from railway train or railway vehicle', 'ICD10_2010'), +('V81.5', 'Occupant of railway train or railway vehicle injured by fall in railway train or railway vehicle', 'ICD10_2010'), +('V81.6', 'Occupant of railway train or railway vehicle injured by fall from railway train or railway vehicle', 'ICD10_2010'), +('V81.7', 'Occupant of railway train or railway vehicle injured in derailment without antecedent collision', 'ICD10_2010'), +('V81.8', 'Occupant of railway train or railway vehicle injured in other specified railway accidents', 'ICD10_2010'), +('V81.9', 'Occupant of railway train or railway vehicle injured in unspecified railway accident', 'ICD10_2010'), +('V82', 'Occupant of streetcar injured in transport accident', 'ICD10_2010'), +('V82.0', 'Occupant of streetcar injured in collision with motor vehicle in nontraffic accident', 'ICD10_2010'), +('V82.1', 'Occupant of streetcar injured in collision with motor vehicle in traffic accident', 'ICD10_2010'), +('V82.2', 'Occupant of streetcar injured in collision with or hit by rolling stock', 'ICD10_2010'), +('V82.3', 'Occupant of streetcar injured in collision with other object', 'ICD10_2010'), +('V82.4', 'Person injured while boarding or alighting from streetcar', 'ICD10_2010'), +('V82.5', 'Occupant of streetcar injured by fall in streetcar', 'ICD10_2010'), +('V82.6', 'Occupant of streetcar injured by fall from streetcar', 'ICD10_2010'), +('V82.7', 'Occupant of streetcar injured in derailment without antecedent collision', 'ICD10_2010'), +('V82.8', 'Occupant of streetcar injured in other specified transport accidents', 'ICD10_2010'), +('V82.9', 'Occupant of streetcar injured in unspecified traffic accident', 'ICD10_2010'), +('V83', 'Occupant of special vehicle mainly used on industrial premises injured in transport accident', 'ICD10_2010'), +('V83.0', 'Driver of special industrial vehicle injured in traffic accident', 'ICD10_2010'), +('V83.1', 'Passenger of special industrial vehicle injured in traffic accident', 'ICD10_2010'), +('V83.2', 'Person on outside of special industrial vehicle injured in traffic accident', 'ICD10_2010'), +('V83.3', 'Unspecified occupant of special industrial vehicle injured in traffic accident', 'ICD10_2010'), +('V83.4', 'Person injured while boarding or alighting from special industrial vehicle', 'ICD10_2010'), +('V83.5', 'Driver of special industrial vehicle injured in nontraffic accident', 'ICD10_2010'), +('V83.6', 'Passenger of special industrial vehicle injured in nontraffic accident', 'ICD10_2010'), +('V83.7', 'Person on outside of special industrial vehicle injured in nontraffic accident', 'ICD10_2010'), +('V83.9', 'Unspecified occupant of special industrial vehicle injured in nontraffic accident', 'ICD10_2010'), +('V84', 'Occupant of special vehicle mainly used in agriculture injured in transport accident', 'ICD10_2010'), +('V84.0', 'Driver of special agricultural vehicle injured in traffic accident', 'ICD10_2010'), +('V84.1', 'Passenger of special agricultural vehicle injured in traffic accident', 'ICD10_2010'), +('V84.2', 'Person on outside of special agricultural vehicle injured in traffic accident', 'ICD10_2010'), +('V84.3', 'Unspecified occupant of special agricultural vehicle injured in traffic accident', 'ICD10_2010'), +('V84.4', 'Person injured while boarding or alighting from special agricultural vehicle', 'ICD10_2010'), +('V84.5', 'Driver of special agricultural vehicle injured in nontraffic accident', 'ICD10_2010'), +('V84.6', 'Passenger of special agricultural vehicle injured in nontraffic accident', 'ICD10_2010'), +('V84.7', 'Person on outside of special agricultural vehicle injured in nontraffic accident', 'ICD10_2010'), +('V84.9', 'Unspecified occupant of special agricultural vehicle injured in nontraffic accident', 'ICD10_2010'), +('V85', 'Occupant of special construction vehicle injured in transport accident', 'ICD10_2010'), +('V85.0', 'Driver of special construction vehicle injured in traffic accident', 'ICD10_2010'), +('V85.1', 'Passenger of special construction vehicle injured in traffic accident', 'ICD10_2010'), +('V85.2', 'Person on outside of special construction vehicle injured in traffic accident', 'ICD10_2010'), +('V85.3', 'Unspecified occupant of special construction vehicle injured in traffic accident', 'ICD10_2010'), +('V85.4', 'Person injured while boarding or alighting from special construction vehicle', 'ICD10_2010'), +('V85.5', 'Driver of special construction vehicle injured in nontraffic accident', 'ICD10_2010'), +('V85.6', 'Passenger of special construction vehicle injured in nontraffic accident', 'ICD10_2010'), +('V85.7', 'Person on outside of special construction vehicle injured in nontraffic accident', 'ICD10_2010'), +('V85.9', 'Unspecified occupant of special construction vehicle injured in nontraffic accident', 'ICD10_2010'), +('V86', 'Occupant of special all-terrain or other motor vehicle designed primarily for off-road use, injured in transport accident', 'ICD10_2010'), +('V86.0', 'Driver of all-terrain or other off-road motor vehicle injured in traffic accident', 'ICD10_2010'), +('V86.1', 'Passenger of all-terrain or other off-road motor vehicle injured in traffic accident', 'ICD10_2010'), +('V86.2', 'Person on outside of all-terrain or other off-road motor vehicle injured in traffic accident', 'ICD10_2010'), +('V86.3', 'Unspecified occupant of all-terrain or other off-road motor vehicle injured in traffic accident', 'ICD10_2010'), +('V86.4', 'Person injured while boarding or alighting from all-terrain or other off-road motor vehicle', 'ICD10_2010'), +('V86.5', 'Driver of all-terrain or other off-road motor vehicle injured in nontraffic accident', 'ICD10_2010'), +('V86.6', 'Passenger of all-terrain or other off-road motor vehicle injured in nontraffic accident', 'ICD10_2010'), +('V86.7', 'Person on outside of all-terrain or other off-road motor vehicle injured in nontraffic accident', 'ICD10_2010'), +('V86.9', 'Unspecified occupant of all-terrain or other off-road motor vehicle injured in nontraffic accident', 'ICD10_2010'), +('V87', 'Traffic accident of specified type but victim\'s mode of transport unknown', 'ICD10_2010'), +('V87.0', 'Person injured in collision between car and two- or three-wheeled motor vehicle (traffic)', 'ICD10_2010'), +('V87.1', 'Person injured in collision between other motor vehicle and two- or three-wheeled motor vehicle (traffic)', 'ICD10_2010'), +('V87.2', 'Person injured in collision between car and pick-up truck or van (traffic)', 'ICD10_2010'), +('V87.3', 'Person injured in collision between car and bus (traffic)', 'ICD10_2010'), +('V87.4', 'Person injured in collision between car and heavy transport vehicle (traffic)', 'ICD10_2010'), +('V87.5', 'Person injured in collision between heavy transport vehicle and bus (traffic)', 'ICD10_2010'), +('V87.6', 'Person injured in collision between railway train or railway vehicle and car (traffic)', 'ICD10_2010'), +('V87.7', 'Person injured in collision between other specified motor vehicles (traffic)', 'ICD10_2010'), +('V87.8', 'Person injured in other specified noncollision transport accidents involving motor vehicle (traffic)', 'ICD10_2010'), +('V87.9', 'Person injured in other specified (collision)(noncollision) transport accidents involving nonmotor vehicle (traffic)', 'ICD10_2010'), +('V88', 'Nontraffic accident of specified type but victim\'s mode of transport unknown', 'ICD10_2010'), +('V88.0', 'Person injured in collision between car and two- or three-wheeled motor vehicle, nontraffic', 'ICD10_2010'), +('V88.1', 'Person injured in collision between other motor vehicle and two- or three-wheeled motor vehicle, nontraffic', 'ICD10_2010'), +('V88.2', 'Person injured in collision between car and pick-up truck or van, nontraffic', 'ICD10_2010'), +('V88.3', 'Person injured in collision between car and bus, nontraffic', 'ICD10_2010'), +('V88.4', 'Person injured in collision between car and heavy transport vehicle, nontraffic', 'ICD10_2010'), +('V88.5', 'Person injured in collision between heavy transport vehicle and bus, nontraffic', 'ICD10_2010'), +('V88.6', 'Person injured in collision between railway train or railway vehicle and car, nontraffic', 'ICD10_2010'), +('V88.7', 'Person injured in collision between other specified motor vehicles, nontraffic', 'ICD10_2010'), +('V88.8', 'Person injured in other specified noncollision transport accidents involving motor vehicle, nontraffic', 'ICD10_2010'), +('V88.9', 'Person injured in other specified (collision)(noncollision) transport accidents involving nonmotor vehicle, nontraffic', 'ICD10_2010'), +('V89', 'Motor- or nonmotor-vehicle accident, type of vehicle unspecified', 'ICD10_2010'), +('V89.0', 'Person injured in unspecified motor-vehicle accident, nontraffic', 'ICD10_2010'), +('V89.1', 'Person injured in unspecified nonmotor-vehicle accident, nontraffic', 'ICD10_2010'), +('V89.2', 'Person injured in unspecified motor-vehicle accident, traffic', 'ICD10_2010'), +('V89.3', 'Person injured in unspecified nonmotor-vehicle accident, traffic', 'ICD10_2010'), +('V89.9', 'Person injured in unspecified vehicle accident', 'ICD10_2010'), +('V90', 'Accident to watercraft causing drowning and submersion', 'ICD10_2010'), +('V90.0', 'Accident to watercraft causing drowning and submersion: Merchant ship', 'ICD10_2010'), +('V90.1', 'Accident to watercraft causing drowning and submersion: Passenger ship', 'ICD10_2010'), +('V90.2', 'Accident to watercraft causing drowning and submersion: Fishing boat', 'ICD10_2010'), +('V90.3', 'Accident to watercraft causing drowning and submersion: Other powered watercraft', 'ICD10_2010'), +('V90.4', 'Accident to watercraft causing drowning and submersion: Sailboat', 'ICD10_2010'), +('V90.5', 'Accident to watercraft causing drowning and submersion: Canoe or kayak', 'ICD10_2010'), +('V90.6', 'Accident to watercraft causing drowning and submersion: Inflatable craft (nonpowered)', 'ICD10_2010'), +('V90.7', 'Accident to watercraft causing drowning and submersion: Water-skis', 'ICD10_2010'), +('V90.8', 'Accident to watercraft causing drowning and submersion: Other unpowered watercraft', 'ICD10_2010'), +('V90.9', 'Accident to watercraft causing drowning and submersion: Unspecified watercraft', 'ICD10_2010'), +('V91', 'Accident to watercraft causing other injury', 'ICD10_2010'), +('V91.0', 'Accident to watercraft causing other injury: Merchant ship', 'ICD10_2010'), +('V91.1', 'Accident to watercraft causing other injury: Passenger ship', 'ICD10_2010'), +('V91.2', 'Accident to watercraft causing other injury: Fishing boat', 'ICD10_2010'), +('V91.3', 'Accident to watercraft causing other injury: Other powered watercraft', 'ICD10_2010'), +('V91.4', 'Accident to watercraft causing other injury: Sailboat', 'ICD10_2010'), +('V91.5', 'Accident to watercraft causing other injury: Canoe or kayak', 'ICD10_2010'), +('V91.6', 'Accident to watercraft causing other injury: Inflatable craft (nonpowered)', 'ICD10_2010'), +('V91.7', 'Accident to watercraft causing other injury: Water-skis', 'ICD10_2010'), +('V91.8', 'Accident to watercraft causing other injury: Other unpowered watercraft', 'ICD10_2010'), +('V91.9', 'Accident to watercraft causing other injury: Unspecified watercraft', 'ICD10_2010'), +('V92', 'Water-transport-related drowning and submersion without accident to watercraft', 'ICD10_2010'), +('V92.0', 'Water-transport-related drowning and submersion without accident to watercraft: Merchant ship', 'ICD10_2010'), +('V92.1', 'Water-transport-related drowning and submersion without accident to watercraft: Passenger ship', 'ICD10_2010'), +('V92.2', 'Water-transport-related drowning and submersion without accident to watercraft: Fishing boat', 'ICD10_2010'), +('V92.3', 'Water-transport-related drowning and submersion without accident to watercraft: Other powered watercraft', 'ICD10_2010'), +('V92.4', 'Water-transport-related drowning and submersion without accident to watercraft: Sailboat', 'ICD10_2010'), +('V92.5', 'Water-transport-related drowning and submersion without accident to watercraft: Canoe or kayak', 'ICD10_2010'), +('V92.6', 'Water-transport-related drowning and submersion without accident to watercraft: Inflatable craft (nonpowered)', 'ICD10_2010'), +('V92.7', 'Water-transport-related drowning and submersion without accident to watercraft: Water-skis', 'ICD10_2010'), +('V92.8', 'Water-transport-related drowning and submersion without accident to watercraft: Other unpowered watercraft', 'ICD10_2010'), +('V92.9', 'Water-transport-related drowning and submersion without accident to watercraft: Unspecified watercraft', 'ICD10_2010'), +('V93', 'Accident on board watercraft without accident to watercraft, not causing drowning and submersion', 'ICD10_2010'), +('V93.0', 'Accident on board watercraft without accident to watercraft, not causing drowning and submersion: Merchant ship', 'ICD10_2010'), +('V93.1', 'Accident on board watercraft without accident to watercraft, not causing drowning and submersion: Passenger ship', 'ICD10_2010'), +('V93.2', 'Accident on board watercraft without accident to watercraft, not causing drowning and submersion: Fishing boat', 'ICD10_2010'), +('V93.3', 'Accident on board watercraft without accident to watercraft, not causing drowning and submersion: Other powered watercraft', 'ICD10_2010'), +('V93.4', 'Accident on board watercraft without accident to watercraft, not causing drowning and submersion: Sailboat', 'ICD10_2010'), +('V93.5', 'Accident on board watercraft without accident to watercraft, not causing drowning and submersion: Canoe or kayak', 'ICD10_2010'), +('V93.6', 'Accident on board watercraft without accident to watercraft, not causing drowning and submersion: Inflatable craft (nonpowered)', 'ICD10_2010'), +('V93.7', 'Accident on board watercraft without accident to watercraft, not causing drowning and submersion: Water-skis', 'ICD10_2010'), +('V93.8', 'Accident on board watercraft without accident to watercraft, not causing drowning and submersion: Other unpowered watercraft', 'ICD10_2010'), +('V93.9', 'Accident on board watercraft without accident to watercraft, not causing drowning and submersion: Unspecified watercraft', 'ICD10_2010'), +('V94', 'Other and unspecified water transport accidents', 'ICD10_2010'), +('V94.0', 'Other and unspecified water transport accidents: Merchant ship', 'ICD10_2010'), +('V94.1', 'Other and unspecified water transport accidents: Passenger ship', 'ICD10_2010'), +('V94.2', 'Other and unspecified water transport accidents: Fishing boat', 'ICD10_2010'), +('V94.3', 'Other and unspecified water transport accidents: Other powered watercraft', 'ICD10_2010'), +('V94.4', 'Other and unspecified water transport accidents: Sailboat', 'ICD10_2010'), +('V94.5', 'Other and unspecified water transport accidents: Canoe or kayak', 'ICD10_2010'), +('V94.6', 'Other and unspecified water transport accidents: Inflatable craft (nonpowered)', 'ICD10_2010'), +('V94.7', 'Other and unspecified water transport accidents: Water-skis', 'ICD10_2010'), +('V94.8', 'Other and unspecified water transport accidents: Other unpowered watercraft', 'ICD10_2010'), +('V94.9', 'Other and unspecified water transport accidents: Unspecified watercraft', 'ICD10_2010'), +('V95', 'Accident to powered aircraft causing injury to occupant', 'ICD10_2010'), +('V95.0', 'Helicopter accident injuring occupant', 'ICD10_2010'), +('V95.1', 'Ultralight, microlight or powered-glider accident injuring occupant', 'ICD10_2010'), +('V95.2', 'Accident to other private fixed-wing aircraft, injuring occupant', 'ICD10_2010'), +('V95.3', 'Accident to commercial fixed-wing aircraft, injuring occupant', 'ICD10_2010'), +('V95.4', 'Spacecraft accident injuring occupant', 'ICD10_2010'), +('V95.8', 'Other aircraft accidents injuring occupant', 'ICD10_2010'), +('V95.9', 'Unspecified aircraft accident injuring occupant', 'ICD10_2010'), +('V96', 'Accident to nonpowered aircraft causing injury to occupant', 'ICD10_2010'), +('V96.0', 'Balloon accident injuring occupant', 'ICD10_2010'), +('V96.1', 'Hang-glider accident injuring occupant', 'ICD10_2010'), +('V96.2', 'Glider (nonpowered) accident injuring occupant', 'ICD10_2010'), +('V96.8', 'Other nonpowered-aircraft accidents injuring occupant', 'ICD10_2010'), +('V96.9', 'Unspecified nonpowered-aircraft accident injuring occupant', 'ICD10_2010'), +('V97', 'Other specified air transport accidents', 'ICD10_2010'), +('V97.0', 'Occupant of aircraft injured in other specified air transport accidents', 'ICD10_2010'), +('V97.1', 'Person injured while boarding or alighting from aircraft', 'ICD10_2010'), +('V97.2', 'Parachutist injured in air transport accident', 'ICD10_2010'), +('V97.3', 'Person on ground injured in air transport accident', 'ICD10_2010'), +('V97.8', 'Other air transport accidents, not elsewhere classified', 'ICD10_2010'), +('V98', 'Other specified transport accidents', 'ICD10_2010'), +('V99', 'Unspecified transport accident', 'ICD10_2010'), +('W00', 'Fall on same level involving ice and snow', 'ICD10_2010'), +('W00.0', 'Fall on same level involving ice and snow, Home', 'ICD10_2010'), +('W00.1', 'Fall on same level involving ice and snow, Residential Institution', 'ICD10_2010'), +('W00.2', 'Fall on same level involving ice and snow, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W00.3', 'Fall on same level involving ice and snow, Sports and Athletic Areas', 'ICD10_2010'), +('W00.4', 'Fall on same level involving ice and snow, Street and Highway', 'ICD10_2010'), +('W00.5', 'Fall on same level involving ice and snow, Trade and Service Area', 'ICD10_2010'), +('W00.6', 'Fall on same level involving ice and snow, Industrial and Construction Area', 'ICD10_2010'), +('W00.7', 'Fall on same level involving ice and snow, Farm', 'ICD10_2010'), +('W00.8', 'Fall on same level involving ice and snow, Other Specified Area', 'ICD10_2010'), +('W00.9', 'Fall on same level involving ice and snow, Unspecified Place', 'ICD10_2010'), +('W01', 'Fall on same level from slipping, tripping and stumbling', 'ICD10_2010'), +('W01.0', 'Fall on same level from slipping, tripping and stumbling, Home', 'ICD10_2010'), +('W01.1', 'Fall on same level from slipping, tripping and stumbling, Residential Institution', 'ICD10_2010'), +('W01.2', 'Fall on same level from slipping, tripping and stumbling, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W01.3', 'Fall on same level from slipping, tripping and stumbling, Sports and Athletic Areas', 'ICD10_2010'), +('W01.4', 'Fall on same level from slipping, tripping and stumbling, Street and Highway', 'ICD10_2010'), +('W01.5', 'Fall on same level from slipping, tripping and stumbling, Trade and Service Area', 'ICD10_2010'), +('W01.6', 'Fall on same level from slipping, tripping and stumbling, Industrial and Construction Area', 'ICD10_2010'), +('W01.7', 'Fall on same level from slipping, tripping and stumbling, Farm', 'ICD10_2010'), +('W01.8', 'Fall on same level from slipping, tripping and stumbling, Other Specified Area', 'ICD10_2010'), +('W01.9', 'Fall on same level from slipping, tripping and stumbling, Unspecified Place', 'ICD10_2010'), +('W02', 'Fall involving ice-skates, skis, roller-skates or skateboards', 'ICD10_2010'), +('W02.0', 'Fall involving ice-skates, skis, roller-skates or skateboards, Home', 'ICD10_2010'), +('W02.1', 'Fall involving ice-skates, skis, roller-skates or skateboards, Residential Institution', 'ICD10_2010'), +('W02.2', 'Fall involving ice-skates, skis, roller-skates or skateboards, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W02.3', 'Fall involving ice-skates, skis, roller-skates or skateboards, Sports and Athletic Areas', 'ICD10_2010'), +('W02.4', 'Fall involving ice-skates, skis, roller-skates or skateboards, Street and Highway', 'ICD10_2010'), +('W02.5', 'Fall involving ice-skates, skis, roller-skates or skateboards, Trade and Service Area', 'ICD10_2010'), +('W02.6', 'Fall involving ice-skates, skis, roller-skates or skateboards, Industrial and Construction Area', 'ICD10_2010'), +('W02.7', 'Fall involving ice-skates, skis, roller-skates or skateboards, Farm', 'ICD10_2010'), +('W02.8', 'Fall involving ice-skates, skis, roller-skates or skateboards, Other Specified Area', 'ICD10_2010'), +('W02.9', 'Fall involving ice-skates, skis, roller-skates or skateboards, Unspecified Place', 'ICD10_2010'), +('W03', 'Other fall on same level due to collision with, or pushing by, another person', 'ICD10_2010'), +('W03.0', 'Other fall on same level due to collision with, or pushing by, another person, Home', 'ICD10_2010'), +('W03.1', 'Other fall on same level due to collision with, or pushing by, another person, Residential Institution', 'ICD10_2010'), +('W03.2', 'Other fall on same level due to collision with, or pushing by, another person, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W03.3', 'Other fall on same level due to collision with, or pushing by, another person, Sports and Athletic Areas', 'ICD10_2010'), +('W03.4', 'Other fall on same level due to collision with, or pushing by, another person, Street and Highway', 'ICD10_2010'), +('W03.5', 'Other fall on same level due to collision with, or pushing by, another person, Trade and Service Area', 'ICD10_2010'), +('W03.6', 'Other fall on same level due to collision with, or pushing by, another person, Industrial and Construction Area', 'ICD10_2010'), +('W03.7', 'Other fall on same level due to collision with, or pushing by, another person, Farm', 'ICD10_2010'), +('W03.8', 'Other fall on same level due to collision with, or pushing by, another person, Other Specified Area', 'ICD10_2010'), +('W03.9', 'Other fall on same level due to collision with, or pushing by, another person, Unspecified Place', 'ICD10_2010'), +('W04', 'Fall while being carried or supported by other persons', 'ICD10_2010'), +('W04.0', 'Fall while being carried or supported by other persons, Home', 'ICD10_2010'), +('W04.1', 'Fall while being carried or supported by other persons, Residential Institution', 'ICD10_2010'), +('W04.2', 'Fall while being carried or supported by other persons, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W04.3', 'Fall while being carried or supported by other persons, Sports and Athletic Areas', 'ICD10_2010'), +('W04.4', 'Fall while being carried or supported by other persons, Street and Highway', 'ICD10_2010'), +('W04.5', 'Fall while being carried or supported by other persons, Trade and Service Area', 'ICD10_2010'), +('W04.6', 'Fall while being carried or supported by other persons, Industrial and Construction Area', 'ICD10_2010'), +('W04.7', 'Fall while being carried or supported by other persons, Farm', 'ICD10_2010'), +('W04.8', 'Fall while being carried or supported by other persons, Other Specified Area', 'ICD10_2010'), +('W04.9', 'Fall while being carried or supported by other persons, Unspecified Place', 'ICD10_2010'), +('W05', 'Fall involving wheelchair', 'ICD10_2010'), +('W05.0', 'Fall involving wheelchair, Home', 'ICD10_2010'), +('W05.1', 'Fall involving wheelchair, Residential Institution', 'ICD10_2010'), +('W05.2', 'Fall involving wheelchair, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W05.3', 'Fall involving wheelchair, Sports and Athletic Areas', 'ICD10_2010'), +('W05.4', 'Fall involving wheelchair, Street and Highway', 'ICD10_2010'), +('W05.5', 'Fall involving wheelchair, Trade and Service Area', 'ICD10_2010'), +('W05.6', 'Fall involving wheelchair, Industrial and Construction Area', 'ICD10_2010'), +('W05.7', 'Fall involving wheelchair, Farm', 'ICD10_2010'), +('W05.8', 'Fall involving wheelchair, Other Specified Area', 'ICD10_2010'), +('W05.9', 'Fall involving wheelchair, Unspecified Place', 'ICD10_2010'), +('W06', 'Fall involving bed', 'ICD10_2010'), +('W06.0', 'Fall involving bed, Home', 'ICD10_2010'), +('W06.1', 'Fall involving bed, Residential Institution', 'ICD10_2010'), +('W06.2', 'Fall involving bed, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W06.3', 'Fall involving bed, Sports and Athletic Areas', 'ICD10_2010'), +('W06.4', 'Fall involving bed, Street and Highway', 'ICD10_2010'), +('W06.5', 'Fall involving bed, Trade and Service Area', 'ICD10_2010'), +('W06.6', 'Fall involving bed, Industrial and Construction Area', 'ICD10_2010'), +('W06.7', 'Fall involving bed, Farm', 'ICD10_2010'), +('W06.8', 'Fall involving bed, Other Specified Area', 'ICD10_2010'), +('W06.9', 'Fall involving bed, Unspecified Place', 'ICD10_2010'), +('W07', 'Fall involving chair', 'ICD10_2010'), +('W07.0', 'Fall involving chair, Home', 'ICD10_2010'), +('W07.1', 'Fall involving chair, Residential Institution', 'ICD10_2010'), +('W07.2', 'Fall involving chair, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W07.3', 'Fall involving chair, Sports and Athletic Areas', 'ICD10_2010'), +('W07.4', 'Fall involving chair, Street and Highway', 'ICD10_2010'), +('W07.5', 'Fall involving chair, Trade and Service Area', 'ICD10_2010'), +('W07.6', 'Fall involving chair, Industrial and Construction Area', 'ICD10_2010'), +('W07.7', 'Fall involving chair, Farm', 'ICD10_2010'), +('W07.8', 'Fall involving chair, Other Specified Area', 'ICD10_2010'), +('W07.9', 'Fall involving chair, Unspecified Place', 'ICD10_2010'), +('W08', 'Fall involving other furniture', 'ICD10_2010'), +('W08.0', 'Fall involving other furniture, Home', 'ICD10_2010'), +('W08.1', 'Fall involving other furniture, Residential Institution', 'ICD10_2010'), +('W08.2', 'Fall involving other furniture, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W08.3', 'Fall involving other furniture, Sports and Athletic Areas', 'ICD10_2010'), +('W08.4', 'Fall involving other furniture, Street and Highway', 'ICD10_2010'), +('W08.5', 'Fall involving other furniture, Trade and Service Area', 'ICD10_2010'), +('W08.6', 'Fall involving other furniture, Industrial and Construction Area', 'ICD10_2010'), +('W08.7', 'Fall involving other furniture, Farm', 'ICD10_2010'), +('W08.8', 'Fall involving other furniture, Other Specified Area', 'ICD10_2010'), +('W08.9', 'Fall involving other furniture, Unspecified Place', 'ICD10_2010'), +('W09', 'Fall involving playground equipment', 'ICD10_2010'), +('W09.0', 'Fall involving playground equipment, Home', 'ICD10_2010'), +('W09.1', 'Fall involving playground equipment, Residential Institution', 'ICD10_2010'), +('W09.2', 'Fall involving playground equipment, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W09.3', 'Fall involving playground equipment, Sports and Athletic Areas', 'ICD10_2010'), +('W09.4', 'Fall involving playground equipment, Street and Highway', 'ICD10_2010'), +('W09.5', 'Fall involving playground equipment, Trade and Service Area', 'ICD10_2010'), +('W09.6', 'Fall involving playground equipment, Industrial and Construction Area', 'ICD10_2010'), +('W09.7', 'Fall involving playground equipment, Farm', 'ICD10_2010'), +('W09.8', 'Fall involving playground equipment, Other Specified Area', 'ICD10_2010'), +('W09.9', 'Fall involving playground equipment, Unspecified Place', 'ICD10_2010'), +('W10', 'Fall on and from stairs and steps', 'ICD10_2010'), +('W10.0', 'Fall on and from stairs and steps, Home', 'ICD10_2010'), +('W10.1', 'Fall on and from stairs and steps, Residential Institution', 'ICD10_2010'), +('W10.2', 'Fall on and from stairs and steps, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W10.3', 'Fall on and from stairs and steps, Sports and Athletic Areas', 'ICD10_2010'), +('W10.4', 'Fall on and from stairs and steps, Street and Highway', 'ICD10_2010'), +('W10.5', 'Fall on and from stairs and steps, Trade and Service Area', 'ICD10_2010'), +('W10.6', 'Fall on and from stairs and steps, Industrial and Construction Area', 'ICD10_2010'), +('W10.7', 'Fall on and from stairs and steps, Farm', 'ICD10_2010'), +('W10.8', 'Fall on and from stairs and steps, Other Specified Area', 'ICD10_2010'), +('W10.9', 'Fall on and from stairs and steps, Unspecified Place', 'ICD10_2010'), +('W11', 'Fall on and from ladder', 'ICD10_2010'), +('W11.0', 'Fall on and from ladder, Home', 'ICD10_2010'), +('W11.1', 'Fall on and from ladder, Residential Institution', 'ICD10_2010'), +('W11.2', 'Fall on and from ladder, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W11.3', 'Fall on and from ladder, Sports and Athletic Areas', 'ICD10_2010'), +('W11.4', 'Fall on and from ladder, Street and Highway', 'ICD10_2010'), +('W11.5', 'Fall on and from ladder, Trade and Service Area', 'ICD10_2010'), +('W11.6', 'Fall on and from ladder, Industrial and Construction Area', 'ICD10_2010'), +('W11.7', 'Fall on and from ladder, Farm', 'ICD10_2010'), +('W11.8', 'Fall on and from ladder, Other Specified Area', 'ICD10_2010'), +('W11.9', 'Fall on and from ladder, Unspecified Place', 'ICD10_2010'); +INSERT INTO `icd10` (`ID_ICD10`, `Diagnosa`, `Versi_ICD10`) VALUES +('W12', 'Fall on and from scaffolding', 'ICD10_2010'), +('W12.0', 'Fall on and from scaffolding, Home', 'ICD10_2010'), +('W12.1', 'Fall on and from scaffolding, Residential Institution', 'ICD10_2010'), +('W12.2', 'Fall on and from scaffolding, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W12.3', 'Fall on and from scaffolding, Sports and Athletic Areas', 'ICD10_2010'), +('W12.4', 'Fall on and from scaffolding, Street and Highway', 'ICD10_2010'), +('W12.5', 'Fall on and from scaffolding, Trade and Service Area', 'ICD10_2010'), +('W12.6', 'Fall on and from scaffolding, Industrial and Construction Area', 'ICD10_2010'), +('W12.7', 'Fall on and from scaffolding, Farm', 'ICD10_2010'), +('W12.8', 'Fall on and from scaffolding, Other Specified Area', 'ICD10_2010'), +('W12.9', 'Fall on and from scaffolding, Unspecified Place', 'ICD10_2010'), +('W13', 'Fall from, out of or through building or structure', 'ICD10_2010'), +('W13.0', 'Fall from, out of or through building or structure, Home', 'ICD10_2010'), +('W13.1', 'Fall from, out of or through building or structure, Residential Institution', 'ICD10_2010'), +('W13.2', 'Fall from, out of or through building or structure, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W13.3', 'Fall from, out of or through building or structure, Sports and Athletic Areas', 'ICD10_2010'), +('W13.4', 'Fall from, out of or through building or structure, Street and Highway', 'ICD10_2010'), +('W13.5', 'Fall from, out of or through building or structure, Trade and Service Area', 'ICD10_2010'), +('W13.6', 'Fall from, out of or through building or structure, Industrial and Construction Area', 'ICD10_2010'), +('W13.7', 'Fall from, out of or through building or structure, Farm', 'ICD10_2010'), +('W13.8', 'Fall from, out of or through building or structure, Other Specified Area', 'ICD10_2010'), +('W13.9', 'Fall from, out of or through building or structure, Unspecified Place', 'ICD10_2010'), +('W14', 'Fall from tree', 'ICD10_2010'), +('W14.0', 'Fall from tree, Home', 'ICD10_2010'), +('W14.1', 'Fall from tree, Residential Institution', 'ICD10_2010'), +('W14.2', 'Fall from tree, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W14.3', 'Fall from tree, Sports and Athletic Areas', 'ICD10_2010'), +('W14.4', 'Fall from tree, Street and Highway', 'ICD10_2010'), +('W14.5', 'Fall from tree, Trade and Service Area', 'ICD10_2010'), +('W14.6', 'Fall from tree, Industrial and Construction Area', 'ICD10_2010'), +('W14.7', 'Fall from tree, Farm', 'ICD10_2010'), +('W14.8', 'Fall from tree, Other Specified Area', 'ICD10_2010'), +('W14.9', 'Fall from tree, Unspecified Place', 'ICD10_2010'), +('W15', 'Fall from cliff', 'ICD10_2010'), +('W15.0', 'Fall from cliff, Home', 'ICD10_2010'), +('W15.1', 'Fall from cliff, Residential Institution', 'ICD10_2010'), +('W15.2', 'Fall from cliff, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W15.3', 'Fall from cliff, Sports and Athletic Areas', 'ICD10_2010'), +('W15.4', 'Fall from cliff, Street and Highway', 'ICD10_2010'), +('W15.5', 'Fall from cliff, Trade and Service Area', 'ICD10_2010'), +('W15.6', 'Fall from cliff, Industrial and Construction Area', 'ICD10_2010'), +('W15.7', 'Fall from cliff, Farm', 'ICD10_2010'), +('W15.8', 'Fall from cliff, Other Specified Area', 'ICD10_2010'), +('W15.9', 'Fall from cliff, Unspecified Place', 'ICD10_2010'), +('W16', 'Diving or jumping into water causing injury other than drowning or submersion', 'ICD10_2010'), +('W16.0', 'Diving or jumping into water causing injury other than drowning or submersion, Home', 'ICD10_2010'), +('W16.1', 'Diving or jumping into water causing injury other than drowning or submersion, Residential Institution', 'ICD10_2010'), +('W16.2', 'Diving or jumping into water causing injury other than drowning or submersion, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W16.3', 'Diving or jumping into water causing injury other than drowning or submersion, Sports and Athletic Areas', 'ICD10_2010'), +('W16.4', 'Diving or jumping into water causing injury other than drowning or submersion, Street and Highway', 'ICD10_2010'), +('W16.5', 'Diving or jumping into water causing injury other than drowning or submersion, Trade and Service Area', 'ICD10_2010'), +('W16.6', 'Diving or jumping into water causing injury other than drowning or submersion, Industrial and Construction Area', 'ICD10_2010'), +('W16.7', 'Diving or jumping into water causing injury other than drowning or submersion, Farm', 'ICD10_2010'), +('W16.8', 'Diving or jumping into water causing injury other than drowning or submersion, Other Specified Area', 'ICD10_2010'), +('W16.9', 'Diving or jumping into water causing injury other than drowning or submersion, Unspecified Place', 'ICD10_2010'), +('W17', 'Other fall from one level to another', 'ICD10_2010'), +('W17.0', 'Other fall from one level to another, Home', 'ICD10_2010'), +('W17.1', 'Other fall from one level to another, Residential Institution', 'ICD10_2010'), +('W17.2', 'Other fall from one level to another, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W17.3', 'Other fall from one level to another, Sports and Athletic Areas', 'ICD10_2010'), +('W17.4', 'Other fall from one level to another, Street and Highway', 'ICD10_2010'), +('W17.5', 'Other fall from one level to another, Trade and Service Area', 'ICD10_2010'), +('W17.6', 'Other fall from one level to another, Industrial and Construction Area', 'ICD10_2010'), +('W17.7', 'Other fall from one level to another, Farm', 'ICD10_2010'), +('W17.8', 'Other fall from one level to another, Other Specified Area', 'ICD10_2010'), +('W17.9', 'Other fall from one level to another, Unspecified Place', 'ICD10_2010'), +('W18', 'Other fall on same level', 'ICD10_2010'), +('W18.0', 'Other fall on same level, Home', 'ICD10_2010'), +('W18.1', 'Other fall on same level, Residential Institution', 'ICD10_2010'), +('W18.2', 'Other fall on same level, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W18.3', 'Other fall on same level, Sports and Athletic Areas', 'ICD10_2010'), +('W18.4', 'Other fall on same level, Street and Highway', 'ICD10_2010'), +('W18.5', 'Other fall on same level, Trade and Service Area', 'ICD10_2010'), +('W18.6', 'Other fall on same level, Industrial and Construction Area', 'ICD10_2010'), +('W18.7', 'Other fall on same level, Farm', 'ICD10_2010'), +('W18.8', 'Other fall on same level, Other Specified Area', 'ICD10_2010'), +('W18.9', 'Other fall on same level, Unspecified Place', 'ICD10_2010'), +('W19', 'Unspecified fall', 'ICD10_2010'), +('W19.0', 'Unspecified fall, Home', 'ICD10_2010'), +('W19.1', 'Unspecified fall, Residential Institution', 'ICD10_2010'), +('W19.2', 'Unspecified fall, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W19.3', 'Unspecified fall, Sports and Athletic Areas', 'ICD10_2010'), +('W19.4', 'Unspecified fall, Street and Highway', 'ICD10_2010'), +('W19.5', 'Unspecified fall, Trade and Service Area', 'ICD10_2010'), +('W19.6', 'Unspecified fall, Industrial and Construction Area', 'ICD10_2010'), +('W19.7', 'Unspecified fall, Farm', 'ICD10_2010'), +('W19.8', 'Unspecified fall, Other Specified Area', 'ICD10_2010'), +('W19.9', 'Unspecified fall, Unspecified Place', 'ICD10_2010'), +('W20', 'Struck by thrown, projected or falling object', 'ICD10_2010'), +('W20.0', 'Struck by thrown, projected or falling object, Home', 'ICD10_2010'), +('W20.1', 'Struck by thrown, projected or falling object, Residential Institution', 'ICD10_2010'), +('W20.2', 'Struck by thrown, projected or falling object, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W20.3', 'Struck by thrown, projected or falling object, Sports and Athletic Areas', 'ICD10_2010'), +('W20.4', 'Struck by thrown, projected or falling object, Street and Highway', 'ICD10_2010'), +('W20.5', 'Struck by thrown, projected or falling object, Trade and Service Area', 'ICD10_2010'), +('W20.6', 'Struck by thrown, projected or falling object, Industrial and Construction Area', 'ICD10_2010'), +('W20.7', 'Struck by thrown, projected or falling object, Farm', 'ICD10_2010'), +('W20.8', 'Struck by thrown, projected or falling object, Other Specified Area', 'ICD10_2010'), +('W20.9', 'Struck by thrown, projected or falling object, Unspecified Place', 'ICD10_2010'), +('W21', 'Striking against or struck by sports equipment', 'ICD10_2010'), +('W21.0', 'Striking against or struck by sports equipment, Home', 'ICD10_2010'), +('W21.1', 'Striking against or struck by sports equipment, Residential Institution', 'ICD10_2010'), +('W21.2', 'Striking against or struck by sports equipment, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W21.3', 'Striking against or struck by sports equipment, Sports and Athletic Areas', 'ICD10_2010'), +('W21.4', 'Striking against or struck by sports equipment, Street and Highway', 'ICD10_2010'), +('W21.5', 'Striking against or struck by sports equipment, Trade and Service Area', 'ICD10_2010'), +('W21.6', 'Striking against or struck by sports equipment, Industrial and Construction Area', 'ICD10_2010'), +('W21.7', 'Striking against or struck by sports equipment, Farm', 'ICD10_2010'), +('W21.8', 'Striking against or struck by sports equipment, Other Specified Area', 'ICD10_2010'), +('W21.9', 'Striking against or struck by sports equipment, Unspecified Place', 'ICD10_2010'), +('W22', 'Striking against or struck by other objects', 'ICD10_2010'), +('W22.0', 'Striking against or struck by other objects, Home', 'ICD10_2010'), +('W22.1', 'Striking against or struck by other objects, Residential Institution', 'ICD10_2010'), +('W22.2', 'Striking against or struck by other objects, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W22.3', 'Striking against or struck by other objects, Sports and Athletic Areas', 'ICD10_2010'), +('W22.4', 'Striking against or struck by other objects, Street and Highway', 'ICD10_2010'), +('W22.5', 'Striking against or struck by other objects, Trade and Service Area', 'ICD10_2010'), +('W22.6', 'Striking against or struck by other objects, Industrial and Construction Area', 'ICD10_2010'), +('W22.7', 'Striking against or struck by other objects, Farm', 'ICD10_2010'), +('W22.8', 'Striking against or struck by other objects, Other Specified Area', 'ICD10_2010'), +('W22.9', 'Striking against or struck by other objects, Unspecified Place', 'ICD10_2010'), +('W23', 'Caught, crushed, jammed or pinched in or between objects', 'ICD10_2010'), +('W23.0', 'Caught, crushed, jammed or pinched in or between objects, Home', 'ICD10_2010'), +('W23.1', 'Caught, crushed, jammed or pinched in or between objects, Residential Institution', 'ICD10_2010'), +('W23.2', 'Caught, crushed, jammed or pinched in or between objects, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W23.3', 'Caught, crushed, jammed or pinched in or between objects, Sports and Athletic Areas', 'ICD10_2010'), +('W23.4', 'Caught, crushed, jammed or pinched in or between objects, Street and Highway', 'ICD10_2010'), +('W23.5', 'Caught, crushed, jammed or pinched in or between objects, Trade and Service Area', 'ICD10_2010'), +('W23.6', 'Caught, crushed, jammed or pinched in or between objects, Industrial and Construction Area', 'ICD10_2010'), +('W23.7', 'Caught, crushed, jammed or pinched in or between objects, Farm', 'ICD10_2010'), +('W23.8', 'Caught, crushed, jammed or pinched in or between objects, Other Specified Area', 'ICD10_2010'), +('W23.9', 'Caught, crushed, jammed or pinched in or between objects, Unspecified Place', 'ICD10_2010'), +('W24', 'Contact with lifting and transmission devices, not elsewhere classified', 'ICD10_2010'), +('W24.0', 'Contact with lifting and transmission devices, not elsewhere classified, Home', 'ICD10_2010'), +('W24.1', 'Contact with lifting and transmission devices, not elsewhere classified, Residential Institution', 'ICD10_2010'), +('W24.2', 'Contact with lifting and transmission devices, not elsewhere classified, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W24.3', 'Contact with lifting and transmission devices, not elsewhere classified, Sports and Athletic Areas', 'ICD10_2010'), +('W24.4', 'Contact with lifting and transmission devices, not elsewhere classified, Street and Highway', 'ICD10_2010'), +('W24.5', 'Contact with lifting and transmission devices, not elsewhere classified, Trade and Service Area', 'ICD10_2010'), +('W24.6', 'Contact with lifting and transmission devices, not elsewhere classified, Industrial and Construction Area', 'ICD10_2010'), +('W24.7', 'Contact with lifting and transmission devices, not elsewhere classified, Farm', 'ICD10_2010'), +('W24.8', 'Contact with lifting and transmission devices, not elsewhere classified, Other Specified Area', 'ICD10_2010'), +('W24.9', 'Contact with lifting and transmission devices, not elsewhere classified, Unspecified Place', 'ICD10_2010'), +('W25', 'Contact with sharp glass', 'ICD10_2010'), +('W25.0', 'Contact with sharp glass, Home', 'ICD10_2010'), +('W25.1', 'Contact with sharp glass, Residential Institution', 'ICD10_2010'), +('W25.2', 'Contact with sharp glass, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W25.3', 'Contact with sharp glass, Sports and Athletic Areas', 'ICD10_2010'), +('W25.4', 'Contact with sharp glass, Street and Highway', 'ICD10_2010'), +('W25.5', 'Contact with sharp glass, Trade and Service Area', 'ICD10_2010'), +('W25.6', 'Contact with sharp glass, Industrial and Construction Area', 'ICD10_2010'), +('W25.7', 'Contact with sharp glass, Farm', 'ICD10_2010'), +('W25.8', 'Contact with sharp glass, Other Specified Area', 'ICD10_2010'), +('W25.9', 'Contact with sharp glass, Unspecified Place', 'ICD10_2010'), +('W26', 'Contact with knife, sword or dagger', 'ICD10_2010'), +('W26.0', 'Contact with knife, sword or dagger, Home', 'ICD10_2010'), +('W26.1', 'Contact with knife, sword or dagger, Residential Institution', 'ICD10_2010'), +('W26.2', 'Contact with knife, sword or dagger, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W26.3', 'Contact with knife, sword or dagger, Sports and Athletic Areas', 'ICD10_2010'), +('W26.4', 'Contact with knife, sword or dagger, Street and Highway', 'ICD10_2010'), +('W26.5', 'Contact with knife, sword or dagger, Trade and Service Area', 'ICD10_2010'), +('W26.6', 'Contact with knife, sword or dagger, Industrial and Construction Area', 'ICD10_2010'), +('W26.7', 'Contact with knife, sword or dagger, Farm', 'ICD10_2010'), +('W26.8', 'Contact with knife, sword or dagger, Other Specified Area', 'ICD10_2010'), +('W26.9', 'Contact with knife, sword or dagger, Unspecified Place', 'ICD10_2010'), +('W27', 'Contact with nonpowered hand tool', 'ICD10_2010'), +('W27.0', 'Contact with nonpowered hand tool, Home', 'ICD10_2010'), +('W27.1', 'Contact with nonpowered hand tool, Residential Institution', 'ICD10_2010'), +('W27.2', 'Contact with nonpowered hand tool, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W27.3', 'Contact with nonpowered hand tool, Sports and Athletic Areas', 'ICD10_2010'), +('W27.4', 'Contact with nonpowered hand tool, Street and Highway', 'ICD10_2010'), +('W27.5', 'Contact with nonpowered hand tool, Trade and Service Area', 'ICD10_2010'), +('W27.6', 'Contact with nonpowered hand tool, Industrial and Construction Area', 'ICD10_2010'), +('W27.7', 'Contact with nonpowered hand tool, Farm', 'ICD10_2010'), +('W27.8', 'Contact with nonpowered hand tool, Other Specified Area', 'ICD10_2010'), +('W27.9', 'Contact with nonpowered hand tool, Unspecified Place', 'ICD10_2010'), +('W28', 'Contact with powered lawnmower', 'ICD10_2010'), +('W28.0', 'Contact with powered lawnmower, Home', 'ICD10_2010'), +('W28.1', 'Contact with powered lawnmower, Residential Institution', 'ICD10_2010'), +('W28.2', 'Contact with powered lawnmower, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W28.3', 'Contact with powered lawnmower, Sports and Athletic Areas', 'ICD10_2010'), +('W28.4', 'Contact with powered lawnmower, Street and Highway', 'ICD10_2010'), +('W28.5', 'Contact with powered lawnmower, Trade and Service Area', 'ICD10_2010'), +('W28.6', 'Contact with powered lawnmower, Industrial and Construction Area', 'ICD10_2010'), +('W28.7', 'Contact with powered lawnmower, Farm', 'ICD10_2010'), +('W28.8', 'Contact with powered lawnmower, Other Specified Area', 'ICD10_2010'), +('W28.9', 'Contact with powered lawnmower, Unspecified Place', 'ICD10_2010'), +('W29', 'Contact with other powered hand tools and household machinery', 'ICD10_2010'), +('W29.0', 'Contact with other powered hand tools and household machinery, Home', 'ICD10_2010'), +('W29.1', 'Contact with other powered hand tools and household machinery, Residential Institution', 'ICD10_2010'), +('W29.2', 'Contact with other powered hand tools and household machinery, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W29.3', 'Contact with other powered hand tools and household machinery, Sports and Athletic Areas', 'ICD10_2010'), +('W29.4', 'Contact with other powered hand tools and household machinery, Street and Highway', 'ICD10_2010'), +('W29.5', 'Contact with other powered hand tools and household machinery, Trade and Service Area', 'ICD10_2010'), +('W29.6', 'Contact with other powered hand tools and household machinery, Industrial and Construction Area', 'ICD10_2010'), +('W29.7', 'Contact with other powered hand tools and household machinery, Farm', 'ICD10_2010'), +('W29.8', 'Contact with other powered hand tools and household machinery, Other Specified Area', 'ICD10_2010'), +('W29.9', 'Contact with other powered hand tools and household machinery, Unspecified Place', 'ICD10_2010'), +('W30', 'Contact with agricultural machinery', 'ICD10_2010'), +('W30.0', 'Contact with agricultural machinery, Home', 'ICD10_2010'), +('W30.1', 'Contact with agricultural machinery, Residential Institution', 'ICD10_2010'), +('W30.2', 'Contact with agricultural machinery, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W30.3', 'Contact with agricultural machinery, Sports and Athletic Areas', 'ICD10_2010'), +('W30.4', 'Contact with agricultural machinery, Street and Highway', 'ICD10_2010'), +('W30.5', 'Contact with agricultural machinery, Trade and Service Area', 'ICD10_2010'), +('W30.6', 'Contact with agricultural machinery, Industrial and Construction Area', 'ICD10_2010'), +('W30.7', 'Contact with agricultural machinery, Farm', 'ICD10_2010'), +('W30.8', 'Contact with agricultural machinery, Other Specified Area', 'ICD10_2010'), +('W30.9', 'Contact with agricultural machinery, Unspecified Place', 'ICD10_2010'), +('W31', 'Contact with other and unspecified machinery', 'ICD10_2010'), +('W31.0', 'Contact with other and unspecified machinery, Home', 'ICD10_2010'), +('W31.1', 'Contact with other and unspecified machinery, Residential Institution', 'ICD10_2010'), +('W31.2', 'Contact with other and unspecified machinery, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W31.3', 'Contact with other and unspecified machinery, Sports and Athletic Areas', 'ICD10_2010'), +('W31.4', 'Contact with other and unspecified machinery, Street and Highway', 'ICD10_2010'), +('W31.5', 'Contact with other and unspecified machinery, Trade and Service Area', 'ICD10_2010'), +('W31.6', 'Contact with other and unspecified machinery, Industrial and Construction Area', 'ICD10_2010'), +('W31.7', 'Contact with other and unspecified machinery, Farm', 'ICD10_2010'), +('W31.8', 'Contact with other and unspecified machinery, Other Specified Area', 'ICD10_2010'), +('W31.9', 'Contact with other and unspecified machinery, Unspecified Place', 'ICD10_2010'), +('W32', 'Handgun discharge', 'ICD10_2010'), +('W32.0', 'Handgun discharge, Home', 'ICD10_2010'), +('W32.1', 'Handgun discharge, Residential Institution', 'ICD10_2010'), +('W32.2', 'Handgun discharge, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W32.3', 'Handgun discharge, Sports and Athletic Areas', 'ICD10_2010'), +('W32.4', 'Handgun discharge, Street and Highway', 'ICD10_2010'), +('W32.5', 'Handgun discharge, Trade and Service Area', 'ICD10_2010'), +('W32.6', 'Handgun discharge, Industrial and Construction Area', 'ICD10_2010'), +('W32.7', 'Handgun discharge, Farm', 'ICD10_2010'), +('W32.8', 'Handgun discharge, Other Specified Area', 'ICD10_2010'), +('W32.9', 'Handgun discharge, Unspecified Place', 'ICD10_2010'), +('W33', 'Rifle, shotgun and larger firearm discharge', 'ICD10_2010'), +('W33.0', 'Rifle, shotgun and larger firearm discharge, Home', 'ICD10_2010'), +('W33.1', 'Rifle, shotgun and larger firearm discharge, Residential Institution', 'ICD10_2010'), +('W33.2', 'Rifle, shotgun and larger firearm discharge, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W33.3', 'Rifle, shotgun and larger firearm discharge, Sports and Athletic Areas', 'ICD10_2010'), +('W33.4', 'Rifle, shotgun and larger firearm discharge, Street and Highway', 'ICD10_2010'), +('W33.5', 'Rifle, shotgun and larger firearm discharge, Trade and Service Area', 'ICD10_2010'), +('W33.6', 'Rifle, shotgun and larger firearm discharge, Industrial and Construction Area', 'ICD10_2010'), +('W33.7', 'Rifle, shotgun and larger firearm discharge, Farm', 'ICD10_2010'), +('W33.8', 'Rifle, shotgun and larger firearm discharge, Other Specified Area', 'ICD10_2010'), +('W33.9', 'Rifle, shotgun and larger firearm discharge, Unspecified Place', 'ICD10_2010'), +('W34', 'Discharge from other and unspecified firearms', 'ICD10_2010'), +('W34.0', 'Discharge from other and unspecified firearms, Home', 'ICD10_2010'), +('W34.1', 'Discharge from other and unspecified firearms, Residential Institution', 'ICD10_2010'), +('W34.2', 'Discharge from other and unspecified firearms, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W34.3', 'Discharge from other and unspecified firearms, Sports and Athletic Areas', 'ICD10_2010'), +('W34.4', 'Discharge from other and unspecified firearms, Street and Highway', 'ICD10_2010'), +('W34.5', 'Discharge from other and unspecified firearms, Trade and Service Area', 'ICD10_2010'), +('W34.6', 'Discharge from other and unspecified firearms, Industrial and Construction Area', 'ICD10_2010'), +('W34.7', 'Discharge from other and unspecified firearms, Farm', 'ICD10_2010'), +('W34.8', 'Discharge from other and unspecified firearms, Other Specified Area', 'ICD10_2010'), +('W34.9', 'Discharge from other and unspecified firearms, Unspecified Place', 'ICD10_2010'), +('W35', 'Explosion and rupture of boiler', 'ICD10_2010'), +('W35.0', 'Explosion and rupture of boiler, Home', 'ICD10_2010'), +('W35.1', 'Explosion and rupture of boiler, Residential Institution', 'ICD10_2010'), +('W35.2', 'Explosion and rupture of boiler, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W35.3', 'Explosion and rupture of boiler, Sports and Athletic Areas', 'ICD10_2010'), +('W35.4', 'Explosion and rupture of boiler, Street and Highway', 'ICD10_2010'), +('W35.5', 'Explosion and rupture of boiler, Trade and Service Area', 'ICD10_2010'), +('W35.6', 'Explosion and rupture of boiler, Industrial and Construction Area', 'ICD10_2010'), +('W35.7', 'Explosion and rupture of boiler, Farm', 'ICD10_2010'), +('W35.8', 'Explosion and rupture of boiler, Other Specified Area', 'ICD10_2010'), +('W35.9', 'Explosion and rupture of boiler, Unspecified Place', 'ICD10_2010'), +('W36', 'Explosion and rupture of gas cylinder', 'ICD10_2010'), +('W36.0', 'Explosion and rupture of gas cylinder, Home', 'ICD10_2010'), +('W36.1', 'Explosion and rupture of gas cylinder, Residential Institution', 'ICD10_2010'), +('W36.2', 'Explosion and rupture of gas cylinder, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W36.3', 'Explosion and rupture of gas cylinder, Sports and Athletic Areas', 'ICD10_2010'), +('W36.4', 'Explosion and rupture of gas cylinder, Street and Highway', 'ICD10_2010'), +('W36.5', 'Explosion and rupture of gas cylinder, Trade and Service Area', 'ICD10_2010'), +('W36.6', 'Explosion and rupture of gas cylinder, Industrial and Construction Area', 'ICD10_2010'), +('W36.7', 'Explosion and rupture of gas cylinder, Farm', 'ICD10_2010'), +('W36.8', 'Explosion and rupture of gas cylinder, Other Specified Area', 'ICD10_2010'), +('W36.9', 'Explosion and rupture of gas cylinder, Unspecified Place', 'ICD10_2010'), +('W37', 'Explosion and rupture of pressurized tyre, pipe or hose', 'ICD10_2010'), +('W37.0', 'Explosion and rupture of pressurized tyre, pipe or hose, Home', 'ICD10_2010'), +('W37.1', 'Explosion and rupture of pressurized tyre, pipe or hose, Residential Institution', 'ICD10_2010'), +('W37.2', 'Explosion and rupture of pressurized tyre, pipe or hose, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W37.3', 'Explosion and rupture of pressurized tyre, pipe or hose, Sports and Athletic Areas', 'ICD10_2010'), +('W37.4', 'Explosion and rupture of pressurized tyre, pipe or hose, Street and Highway', 'ICD10_2010'), +('W37.5', 'Explosion and rupture of pressurized tyre, pipe or hose, Trade and Service Area', 'ICD10_2010'), +('W37.6', 'Explosion and rupture of pressurized tyre, pipe or hose, Industrial and Construction Area', 'ICD10_2010'), +('W37.7', 'Explosion and rupture of pressurized tyre, pipe or hose, Farm', 'ICD10_2010'), +('W37.8', 'Explosion and rupture of pressurized tyre, pipe or hose, Other Specified Area', 'ICD10_2010'), +('W37.9', 'Explosion and rupture of pressurized tyre, pipe or hose, Unspecified Place', 'ICD10_2010'), +('W38', 'Explosion and rupture of other specified pressurized devices', 'ICD10_2010'), +('W38.0', 'Explosion and rupture of other specified pressurized devices, Home', 'ICD10_2010'), +('W38.1', 'Explosion and rupture of other specified pressurized devices, Residential Institution', 'ICD10_2010'), +('W38.2', 'Explosion and rupture of other specified pressurized devices, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W38.3', 'Explosion and rupture of other specified pressurized devices, Sports and Athletic Areas', 'ICD10_2010'), +('W38.4', 'Explosion and rupture of other specified pressurized devices, Street and Highway', 'ICD10_2010'), +('W38.5', 'Explosion and rupture of other specified pressurized devices, Trade and Service Area', 'ICD10_2010'), +('W38.6', 'Explosion and rupture of other specified pressurized devices, Industrial and Construction Area', 'ICD10_2010'), +('W38.7', 'Explosion and rupture of other specified pressurized devices, Farm', 'ICD10_2010'), +('W38.8', 'Explosion and rupture of other specified pressurized devices, Other Specified Area', 'ICD10_2010'), +('W38.9', 'Explosion and rupture of other specified pressurized devices, Unspecified Place', 'ICD10_2010'), +('W39', 'Discharge of firework', 'ICD10_2010'), +('W39.0', 'Discharge of firework, Home', 'ICD10_2010'), +('W39.1', 'Discharge of firework, Residential Institution', 'ICD10_2010'), +('W39.2', 'Discharge of firework, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W39.3', 'Discharge of firework, Sports and Athletic Areas', 'ICD10_2010'), +('W39.4', 'Discharge of firework, Street and Highway', 'ICD10_2010'), +('W39.5', 'Discharge of firework, Trade and Service Area', 'ICD10_2010'), +('W39.6', 'Discharge of firework, Industrial and Construction Area', 'ICD10_2010'), +('W39.7', 'Discharge of firework, Farm', 'ICD10_2010'), +('W39.8', 'Discharge of firework, Other Specified Area', 'ICD10_2010'), +('W39.9', 'Discharge of firework, Unspecified Place', 'ICD10_2010'), +('W40', 'Explosion of other materials', 'ICD10_2010'), +('W40.0', 'Explosion of other materials, Home', 'ICD10_2010'), +('W40.1', 'Explosion of other materials, Residential Institution', 'ICD10_2010'), +('W40.2', 'Explosion of other materials, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W40.3', 'Explosion of other materials, Sports and Athletic Areas', 'ICD10_2010'), +('W40.4', 'Explosion of other materials, Street and Highway', 'ICD10_2010'), +('W40.5', 'Explosion of other materials, Trade and Service Area', 'ICD10_2010'), +('W40.6', 'Explosion of other materials, Industrial and Construction Area', 'ICD10_2010'), +('W40.7', 'Explosion of other materials, Farm', 'ICD10_2010'), +('W40.8', 'Explosion of other materials, Other Specified Area', 'ICD10_2010'), +('W40.9', 'Explosion of other materials, Unspecified Place', 'ICD10_2010'), +('W41', 'Exposure to high-pressure jet', 'ICD10_2010'), +('W41.0', 'Exposure to high-pressure jet, Home', 'ICD10_2010'), +('W41.1', 'Exposure to high-pressure jet, Residential Institution', 'ICD10_2010'), +('W41.2', 'Exposure to high-pressure jet, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W41.3', 'Exposure to high-pressure jet, Sports and Athletic Areas', 'ICD10_2010'), +('W41.4', 'Exposure to high-pressure jet, Street and Highway', 'ICD10_2010'), +('W41.5', 'Exposure to high-pressure jet, Trade and Service Area', 'ICD10_2010'), +('W41.6', 'Exposure to high-pressure jet, Industrial and Construction Area', 'ICD10_2010'), +('W41.7', 'Exposure to high-pressure jet, Farm', 'ICD10_2010'), +('W41.8', 'Exposure to high-pressure jet, Other Specified Area', 'ICD10_2010'), +('W41.9', 'Exposure to high-pressure jet, Unspecified Place', 'ICD10_2010'), +('W42', 'Exposure to noise', 'ICD10_2010'), +('W42.0', 'Exposure to noise, Home', 'ICD10_2010'), +('W42.1', 'Exposure to noise, Residential Institution', 'ICD10_2010'), +('W42.2', 'Exposure to noise, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W42.3', 'Exposure to noise, Sports and Athletic Areas', 'ICD10_2010'), +('W42.4', 'Exposure to noise, Street and Highway', 'ICD10_2010'), +('W42.5', 'Exposure to noise, Trade and Service Area', 'ICD10_2010'), +('W42.6', 'Exposure to noise, Industrial and Construction Area', 'ICD10_2010'), +('W42.7', 'Exposure to noise, Farm', 'ICD10_2010'), +('W42.8', 'Exposure to noise, Other Specified Area', 'ICD10_2010'), +('W42.9', 'Exposure to noise, Unspecified Place', 'ICD10_2010'), +('W43', 'Exposure to vibration', 'ICD10_2010'), +('W43.0', 'Exposure to vibration, Home', 'ICD10_2010'), +('W43.1', 'Exposure to vibration, Residential Institution', 'ICD10_2010'), +('W43.2', 'Exposure to vibration, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W43.3', 'Exposure to vibration, Sports and Athletic Areas', 'ICD10_2010'), +('W43.4', 'Exposure to vibration, Street and Highway', 'ICD10_2010'), +('W43.5', 'Exposure to vibration, Trade and Service Area', 'ICD10_2010'), +('W43.6', 'Exposure to vibration, Industrial and Construction Area', 'ICD10_2010'), +('W43.7', 'Exposure to vibration, Farm', 'ICD10_2010'), +('W43.8', 'Exposure to vibration, Other Specified Area', 'ICD10_2010'), +('W43.9', 'Exposure to vibration, Unspecified Place', 'ICD10_2010'), +('W44', 'Foreign body entering into or through eye or natural orifice', 'ICD10_2010'), +('W44.0', 'Foreign body entering into or through eye or natural orifice, Home', 'ICD10_2010'), +('W44.1', 'Foreign body entering into or through eye or natural orifice, Residential Institution', 'ICD10_2010'), +('W44.2', 'Foreign body entering into or through eye or natural orifice, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W44.3', 'Foreign body entering into or through eye or natural orifice, Sports and Athletic Areas', 'ICD10_2010'), +('W44.4', 'Foreign body entering into or through eye or natural orifice, Street and Highway', 'ICD10_2010'), +('W44.5', 'Foreign body entering into or through eye or natural orifice, Trade and Service Area', 'ICD10_2010'), +('W44.6', 'Foreign body entering into or through eye or natural orifice, Industrial and Construction Area', 'ICD10_2010'), +('W44.7', 'Foreign body entering into or through eye or natural orifice, Farm', 'ICD10_2010'), +('W44.8', 'Foreign body entering into or through eye or natural orifice, Other Specified Area', 'ICD10_2010'), +('W44.9', 'Foreign body entering into or through eye or natural orifice, Unspecified Place', 'ICD10_2010'), +('W45', 'Foreign body or object entering through skin', 'ICD10_2010'), +('W45.0', 'Foreign body or object entering through skin, Home', 'ICD10_2010'), +('W45.1', 'Foreign body or object entering through skin, Residential Institution', 'ICD10_2010'), +('W45.2', 'Foreign body or object entering through skin, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W45.3', 'Foreign body or object entering through skin, Sports and Athletic Areas', 'ICD10_2010'), +('W45.4', 'Foreign body or object entering through skin, Street and Highway', 'ICD10_2010'), +('W45.5', 'Foreign body or object entering through skin, Trade and Service Area', 'ICD10_2010'), +('W45.6', 'Foreign body or object entering through skin, Industrial and Construction Area', 'ICD10_2010'), +('W45.7', 'Foreign body or object entering through skin, Farm', 'ICD10_2010'), +('W45.8', 'Foreign body or object entering through skin, Other Specified Area', 'ICD10_2010'), +('W45.9', 'Foreign body or object entering through skin, Unspecified Place', 'ICD10_2010'), +('W46', 'Contact with hypodermic needle', 'ICD10_2010'), +('W46.0', 'Contact with hypodermic needle, Home', 'ICD10_2010'), +('W46.1', 'Contact with hypodermic needle, Residential Institution', 'ICD10_2010'), +('W46.2', 'Contact with hypodermic needle, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W46.3', 'Contact with hypodermic needle, Sports and Athletic Areas', 'ICD10_2010'), +('W46.4', 'Contact with hypodermic needle, Street and Highway', 'ICD10_2010'), +('W46.5', 'Contact with hypodermic needle, Trade and Service Area', 'ICD10_2010'), +('W46.6', 'Contact with hypodermic needle, Industrial and Construction Area', 'ICD10_2010'), +('W46.7', 'Contact with hypodermic needle, Farm', 'ICD10_2010'), +('W46.8', 'Contact with hypodermic needle, Other Specified Area', 'ICD10_2010'), +('W46.9', 'Contact with hypodermic needle, Unspecified Place', 'ICD10_2010'), +('W49', 'Exposure to other and unspecified inanimate mechanical forces', 'ICD10_2010'), +('W49.0', 'Exposure to other and unspecified inanimate mechanical forces, Home', 'ICD10_2010'), +('W49.1', 'Exposure to other and unspecified inanimate mechanical forces, Residential Institution', 'ICD10_2010'), +('W49.2', 'Exposure to other and unspecified inanimate mechanical forces, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W49.3', 'Exposure to other and unspecified inanimate mechanical forces, Sports and Athletic Areas', 'ICD10_2010'), +('W49.4', 'Exposure to other and unspecified inanimate mechanical forces, Street and Highway', 'ICD10_2010'), +('W49.5', 'Exposure to other and unspecified inanimate mechanical forces, Trade and Service Area', 'ICD10_2010'), +('W49.6', 'Exposure to other and unspecified inanimate mechanical forces, Industrial and Construction Area', 'ICD10_2010'), +('W49.7', 'Exposure to other and unspecified inanimate mechanical forces, Farm', 'ICD10_2010'), +('W49.8', 'Exposure to other and unspecified inanimate mechanical forces, Other Specified Area', 'ICD10_2010'), +('W49.9', 'Exposure to other and unspecified inanimate mechanical forces, Unspecified Place', 'ICD10_2010'), +('W50', 'Hit, struck, kicked, twisted, bitten or scratched by another person', 'ICD10_2010'), +('W50.0', 'Hit, struck, kicked, twisted, bitten or scratched by another person, Home', 'ICD10_2010'), +('W50.1', 'Hit, struck, kicked, twisted, bitten or scratched by another person, Residential Institution', 'ICD10_2010'), +('W50.2', 'Hit, struck, kicked, twisted, bitten or scratched by another person, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W50.3', 'Hit, struck, kicked, twisted, bitten or scratched by another person, Sports and Athletic Areas', 'ICD10_2010'), +('W50.4', 'Hit, struck, kicked, twisted, bitten or scratched by another person, Street and Highway', 'ICD10_2010'), +('W50.5', 'Hit, struck, kicked, twisted, bitten or scratched by another person, Trade and Service Area', 'ICD10_2010'), +('W50.6', 'Hit, struck, kicked, twisted, bitten or scratched by another person, Industrial and Construction Area', 'ICD10_2010'), +('W50.7', 'Hit, struck, kicked, twisted, bitten or scratched by another person, Farm', 'ICD10_2010'), +('W50.8', 'Hit, struck, kicked, twisted, bitten or scratched by another person, Other Specified Area', 'ICD10_2010'), +('W50.9', 'Hit, struck, kicked, twisted, bitten or scratched by another person, Unspecified Place', 'ICD10_2010'), +('W51', 'Striking against or bumped into by another person', 'ICD10_2010'), +('W51.0', 'Striking against or bumped into by another person, Home', 'ICD10_2010'), +('W51.1', 'Striking against or bumped into by another person, Residential Institution', 'ICD10_2010'), +('W51.2', 'Striking against or bumped into by another person, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W51.3', 'Striking against or bumped into by another person, Sports and Athletic Areas', 'ICD10_2010'), +('W51.4', 'Striking against or bumped into by another person, Street and Highway', 'ICD10_2010'), +('W51.5', 'Striking against or bumped into by another person, Trade and Service Area', 'ICD10_2010'), +('W51.6', 'Striking against or bumped into by another person, Industrial and Construction Area', 'ICD10_2010'), +('W51.7', 'Striking against or bumped into by another person, Farm', 'ICD10_2010'), +('W51.8', 'Striking against or bumped into by another person, Other Specified Area', 'ICD10_2010'), +('W51.9', 'Striking against or bumped into by another person, Unspecified Place', 'ICD10_2010'), +('W52', 'Crushed, pushed or stepped on by crowd or human stampede', 'ICD10_2010'), +('W52.0', 'Crushed, pushed or stepped on by crowd or human stampede, Home', 'ICD10_2010'), +('W52.1', 'Crushed, pushed or stepped on by crowd or human stampede, Residential Institution', 'ICD10_2010'), +('W52.2', 'Crushed, pushed or stepped on by crowd or human stampede, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W52.3', 'Crushed, pushed or stepped on by crowd or human stampede, Sports and Athletic Areas', 'ICD10_2010'), +('W52.4', 'Crushed, pushed or stepped on by crowd or human stampede, Street and Highway', 'ICD10_2010'), +('W52.5', 'Crushed, pushed or stepped on by crowd or human stampede, Trade and Service Area', 'ICD10_2010'), +('W52.6', 'Crushed, pushed or stepped on by crowd or human stampede, Industrial and Construction Area', 'ICD10_2010'), +('W52.7', 'Crushed, pushed or stepped on by crowd or human stampede, Farm', 'ICD10_2010'), +('W52.8', 'Crushed, pushed or stepped on by crowd or human stampede, Other Specified Area', 'ICD10_2010'), +('W52.9', 'Crushed, pushed or stepped on by crowd or human stampede, Unspecified Place', 'ICD10_2010'), +('W53', 'Bitten by rat', 'ICD10_2010'), +('W53.0', 'Bitten by rat, Home', 'ICD10_2010'), +('W53.1', 'Bitten by rat, Residential Institution', 'ICD10_2010'), +('W53.2', 'Bitten by rat, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W53.3', 'Bitten by rat, Sports and Athletic Areas', 'ICD10_2010'), +('W53.4', 'Bitten by rat, Street and Highway', 'ICD10_2010'), +('W53.5', 'Bitten by rat, Trade and Service Area', 'ICD10_2010'), +('W53.6', 'Bitten by rat, Industrial and Construction Area', 'ICD10_2010'), +('W53.7', 'Bitten by rat, Farm', 'ICD10_2010'), +('W53.8', 'Bitten by rat, Other Specified Area', 'ICD10_2010'), +('W53.9', 'Bitten by rat, Unspecified Place', 'ICD10_2010'), +('W54', 'Bitten or struck by dog', 'ICD10_2010'), +('W54.0', 'Bitten or struck by dog, Home', 'ICD10_2010'), +('W54.1', 'Bitten or struck by dog, Residential Institution', 'ICD10_2010'), +('W54.2', 'Bitten or struck by dog, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W54.3', 'Bitten or struck by dog, Sports and Athletic Areas', 'ICD10_2010'), +('W54.4', 'Bitten or struck by dog, Street and Highway', 'ICD10_2010'), +('W54.5', 'Bitten or struck by dog, Trade and Service Area', 'ICD10_2010'), +('W54.6', 'Bitten or struck by dog, Industrial and Construction Area', 'ICD10_2010'), +('W54.7', 'Bitten or struck by dog, Farm', 'ICD10_2010'), +('W54.8', 'Bitten or struck by dog, Other Specified Area', 'ICD10_2010'), +('W54.9', 'Bitten or struck by dog, Unspecified Place', 'ICD10_2010'), +('W55', 'Bitten or struck by other mammals', 'ICD10_2010'), +('W55.0', 'Bitten or struck by other mammals, Home', 'ICD10_2010'), +('W55.1', 'Bitten or struck by other mammals, Residential Institution', 'ICD10_2010'), +('W55.2', 'Bitten or struck by other mammals, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W55.3', 'Bitten or struck by other mammals, Sports and Athletic Areas', 'ICD10_2010'), +('W55.4', 'Bitten or struck by other mammals, Street and Highway', 'ICD10_2010'), +('W55.5', 'Bitten or struck by other mammals, Trade and Service Area', 'ICD10_2010'), +('W55.6', 'Bitten or struck by other mammals, Industrial and Construction Area', 'ICD10_2010'), +('W55.7', 'Bitten or struck by other mammals, Farm', 'ICD10_2010'), +('W55.8', 'Bitten or struck by other mammals, Other Specified Area', 'ICD10_2010'), +('W55.9', 'Bitten or struck by other mammals, Unspecified Place', 'ICD10_2010'), +('W56', 'Contact with marine animal', 'ICD10_2010'), +('W56.0', 'Contact with marine animal, Home', 'ICD10_2010'), +('W56.1', 'Contact with marine animal, Residential Institution', 'ICD10_2010'), +('W56.2', 'Contact with marine animal, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W56.3', 'Contact with marine animal, Sports and Athletic Areas', 'ICD10_2010'), +('W56.4', 'Contact with marine animal, Street and Highway', 'ICD10_2010'), +('W56.5', 'Contact with marine animal, Trade and Service Area', 'ICD10_2010'), +('W56.6', 'Contact with marine animal, Industrial and Construction Area', 'ICD10_2010'), +('W56.7', 'Contact with marine animal, Farm', 'ICD10_2010'), +('W56.8', 'Contact with marine animal, Other Specified Area', 'ICD10_2010'), +('W56.9', 'Contact with marine animal, Unspecified Place', 'ICD10_2010'), +('W57', 'Bitten or stung by nonvenomous insect and other nonvenomous arthropods', 'ICD10_2010'), +('W57.0', 'Bitten or stung by nonvenomous insect and other nonvenomous arthropods, Home', 'ICD10_2010'), +('W57.1', 'Bitten or stung by nonvenomous insect and other nonvenomous arthropods, Residential Institution', 'ICD10_2010'), +('W57.2', 'Bitten or stung by nonvenomous insect and other nonvenomous arthropods, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W57.3', 'Bitten or stung by nonvenomous insect and other nonvenomous arthropods, Sports and Athletic Areas', 'ICD10_2010'), +('W57.4', 'Bitten or stung by nonvenomous insect and other nonvenomous arthropods, Street and Highway', 'ICD10_2010'), +('W57.5', 'Bitten or stung by nonvenomous insect and other nonvenomous arthropods, Trade and Service Area', 'ICD10_2010'), +('W57.6', 'Bitten or stung by nonvenomous insect and other nonvenomous arthropods, Industrial and Construction Area', 'ICD10_2010'), +('W57.7', 'Bitten or stung by nonvenomous insect and other nonvenomous arthropods, Farm', 'ICD10_2010'), +('W57.8', 'Bitten or stung by nonvenomous insect and other nonvenomous arthropods, Other Specified Area', 'ICD10_2010'), +('W57.9', 'Bitten or stung by nonvenomous insect and other nonvenomous arthropods, Unspecified Place', 'ICD10_2010'), +('W58', 'Bitten or struck by crocodile or alligator', 'ICD10_2010'), +('W58.0', 'Bitten or struck by crocodile or alligator, Home', 'ICD10_2010'), +('W58.1', 'Bitten or struck by crocodile or alligator, Residential Institution', 'ICD10_2010'), +('W58.2', 'Bitten or struck by crocodile or alligator, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W58.3', 'Bitten or struck by crocodile or alligator, Sports and Athletic Areas', 'ICD10_2010'), +('W58.4', 'Bitten or struck by crocodile or alligator, Street and Highway', 'ICD10_2010'), +('W58.5', 'Bitten or struck by crocodile or alligator, Trade and Service Area', 'ICD10_2010'), +('W58.6', 'Bitten or struck by crocodile or alligator, Industrial and Construction Area', 'ICD10_2010'), +('W58.7', 'Bitten or struck by crocodile or alligator, Farm', 'ICD10_2010'), +('W58.8', 'Bitten or struck by crocodile or alligator, Other Specified Area', 'ICD10_2010'), +('W58.9', 'Bitten or struck by crocodile or alligator, Unspecified Place', 'ICD10_2010'), +('W59', 'Bitten or crushed by other reptiles', 'ICD10_2010'), +('W59.0', 'Bitten or crushed by other reptiles, Home', 'ICD10_2010'), +('W59.1', 'Bitten or crushed by other reptiles, Residential Institution', 'ICD10_2010'), +('W59.2', 'Bitten or crushed by other reptiles, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W59.3', 'Bitten or crushed by other reptiles, Sports and Athletic Areas', 'ICD10_2010'), +('W59.4', 'Bitten or crushed by other reptiles, Street and Highway', 'ICD10_2010'), +('W59.5', 'Bitten or crushed by other reptiles, Trade and Service Area', 'ICD10_2010'), +('W59.6', 'Bitten or crushed by other reptiles, Industrial and Construction Area', 'ICD10_2010'), +('W59.7', 'Bitten or crushed by other reptiles, Farm', 'ICD10_2010'), +('W59.8', 'Bitten or crushed by other reptiles, Other Specified Area', 'ICD10_2010'), +('W59.9', 'Bitten or crushed by other reptiles, Unspecified Place', 'ICD10_2010'), +('W60', 'Contact with plant thorns and spines and sharp leaves', 'ICD10_2010'), +('W60.0', 'Contact with plant thorns and spines and sharp leaves, Home', 'ICD10_2010'), +('W60.1', 'Contact with plant thorns and spines and sharp leaves, Residential Institution', 'ICD10_2010'), +('W60.2', 'Contact with plant thorns and spines and sharp leaves, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W60.3', 'Contact with plant thorns and spines and sharp leaves, Sports and Athletic Areas', 'ICD10_2010'), +('W60.4', 'Contact with plant thorns and spines and sharp leaves, Street and Highway', 'ICD10_2010'), +('W60.5', 'Contact with plant thorns and spines and sharp leaves, Trade and Service Area', 'ICD10_2010'), +('W60.6', 'Contact with plant thorns and spines and sharp leaves, Industrial and Construction Area', 'ICD10_2010'), +('W60.7', 'Contact with plant thorns and spines and sharp leaves, Farm', 'ICD10_2010'), +('W60.8', 'Contact with plant thorns and spines and sharp leaves, Other Specified Area', 'ICD10_2010'), +('W60.9', 'Contact with plant thorns and spines and sharp leaves, Unspecified Place', 'ICD10_2010'), +('W64', 'Exposure to other and unspecified animate mechanical forces', 'ICD10_2010'), +('W64.0', 'Exposure to other and unspecified animate mechanical forces, Home', 'ICD10_2010'), +('W64.1', 'Exposure to other and unspecified animate mechanical forces, Residential Institution', 'ICD10_2010'), +('W64.2', 'Exposure to other and unspecified animate mechanical forces, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W64.3', 'Exposure to other and unspecified animate mechanical forces, Sports and Athletic Areas', 'ICD10_2010'), +('W64.4', 'Exposure to other and unspecified animate mechanical forces, Street and Highway', 'ICD10_2010'), +('W64.5', 'Exposure to other and unspecified animate mechanical forces, Trade and Service Area', 'ICD10_2010'), +('W64.6', 'Exposure to other and unspecified animate mechanical forces, Industrial and Construction Area', 'ICD10_2010'), +('W64.7', 'Exposure to other and unspecified animate mechanical forces, Farm', 'ICD10_2010'), +('W64.8', 'Exposure to other and unspecified animate mechanical forces, Other Specified Area', 'ICD10_2010'), +('W64.9', 'Exposure to other and unspecified animate mechanical forces, Unspecified Place', 'ICD10_2010'), +('W65', 'Drowning and submersion while in bath-tub', 'ICD10_2010'), +('W65.0', 'Drowning and submersion while in bath-tub, Home', 'ICD10_2010'), +('W65.1', 'Drowning and submersion while in bath-tub, Residential Institution', 'ICD10_2010'), +('W65.2', 'Drowning and submersion while in bath-tub, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W65.3', 'Drowning and submersion while in bath-tub, Sports and Athletic Areas', 'ICD10_2010'), +('W65.4', 'Drowning and submersion while in bath-tub, Street and Highway', 'ICD10_2010'), +('W65.5', 'Drowning and submersion while in bath-tub, Trade and Service Area', 'ICD10_2010'), +('W65.6', 'Drowning and submersion while in bath-tub, Industrial and Construction Area', 'ICD10_2010'), +('W65.7', 'Drowning and submersion while in bath-tub, Farm', 'ICD10_2010'), +('W65.8', 'Drowning and submersion while in bath-tub, Other Specified Area', 'ICD10_2010'), +('W65.9', 'Drowning and submersion while in bath-tub, Unspecified Place', 'ICD10_2010'), +('W66', 'Drowning and submersion following fall into bath-tub', 'ICD10_2010'), +('W66.0', 'Drowning and submersion following fall into bath-tub, Home', 'ICD10_2010'), +('W66.1', 'Drowning and submersion following fall into bath-tub, Residential Institution', 'ICD10_2010'), +('W66.2', 'Drowning and submersion following fall into bath-tub, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W66.3', 'Drowning and submersion following fall into bath-tub, Sports and Athletic Areas', 'ICD10_2010'), +('W66.4', 'Drowning and submersion following fall into bath-tub, Street and Highway', 'ICD10_2010'), +('W66.5', 'Drowning and submersion following fall into bath-tub, Trade and Service Area', 'ICD10_2010'), +('W66.6', 'Drowning and submersion following fall into bath-tub, Industrial and Construction Area', 'ICD10_2010'), +('W66.7', 'Drowning and submersion following fall into bath-tub, Farm', 'ICD10_2010'), +('W66.8', 'Drowning and submersion following fall into bath-tub, Other Specified Area', 'ICD10_2010'), +('W66.9', 'Drowning and submersion following fall into bath-tub, Unspecified Place', 'ICD10_2010'), +('W67', 'Drowning and submersion while in swimming-pool', 'ICD10_2010'), +('W67.0', 'Drowning and submersion while in swimming-pool, Home', 'ICD10_2010'), +('W67.1', 'Drowning and submersion while in swimming-pool, Residential Institution', 'ICD10_2010'), +('W67.2', 'Drowning and submersion while in swimming-pool, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W67.3', 'Drowning and submersion while in swimming-pool, Sports and Athletic Areas', 'ICD10_2010'), +('W67.4', 'Drowning and submersion while in swimming-pool, Street and Highway', 'ICD10_2010'), +('W67.5', 'Drowning and submersion while in swimming-pool, Trade and Service Area', 'ICD10_2010'), +('W67.6', 'Drowning and submersion while in swimming-pool, Industrial and Construction Area', 'ICD10_2010'), +('W67.7', 'Drowning and submersion while in swimming-pool, Farm', 'ICD10_2010'), +('W67.8', 'Drowning and submersion while in swimming-pool, Other Specified Area', 'ICD10_2010'), +('W67.9', 'Drowning and submersion while in swimming-pool, Unspecified Place', 'ICD10_2010'); +INSERT INTO `icd10` (`ID_ICD10`, `Diagnosa`, `Versi_ICD10`) VALUES +('W68', 'Drowning and submersion following fall into swimming-pool', 'ICD10_2010'), +('W68.0', 'Drowning and submersion following fall into swimming-pool, Home', 'ICD10_2010'), +('W68.1', 'Drowning and submersion following fall into swimming-pool, Residential Institution', 'ICD10_2010'), +('W68.2', 'Drowning and submersion following fall into swimming-pool, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W68.3', 'Drowning and submersion following fall into swimming-pool, Sports and Athletic Areas', 'ICD10_2010'), +('W68.4', 'Drowning and submersion following fall into swimming-pool, Street and Highway', 'ICD10_2010'), +('W68.5', 'Drowning and submersion following fall into swimming-pool, Trade and Service Area', 'ICD10_2010'), +('W68.6', 'Drowning and submersion following fall into swimming-pool, Industrial and Construction Area', 'ICD10_2010'), +('W68.7', 'Drowning and submersion following fall into swimming-pool, Farm', 'ICD10_2010'), +('W68.8', 'Drowning and submersion following fall into swimming-pool, Other Specified Area', 'ICD10_2010'), +('W68.9', 'Drowning and submersion following fall into swimming-pool, Unspecified Place', 'ICD10_2010'), +('W69', 'Drowning and submersion while in natural water', 'ICD10_2010'), +('W69.0', 'Drowning and submersion while in natural water, Home', 'ICD10_2010'), +('W69.1', 'Drowning and submersion while in natural water, Residential Institution', 'ICD10_2010'), +('W69.2', 'Drowning and submersion while in natural water, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W69.3', 'Drowning and submersion while in natural water, Sports and Athletic Areas', 'ICD10_2010'), +('W69.4', 'Drowning and submersion while in natural water, Street and Highway', 'ICD10_2010'), +('W69.5', 'Drowning and submersion while in natural water, Trade and Service Area', 'ICD10_2010'), +('W69.6', 'Drowning and submersion while in natural water, Industrial and Construction Area', 'ICD10_2010'), +('W69.7', 'Drowning and submersion while in natural water, Farm', 'ICD10_2010'), +('W69.8', 'Drowning and submersion while in natural water, Other Specified Area', 'ICD10_2010'), +('W69.9', 'Drowning and submersion while in natural water, Unspecified Place', 'ICD10_2010'), +('W70', 'Drowning and submersion following fall into natural water', 'ICD10_2010'), +('W70.0', 'Drowning and submersion following fall into natural water, Home', 'ICD10_2010'), +('W70.1', 'Drowning and submersion following fall into natural water, Residential Institution', 'ICD10_2010'), +('W70.2', 'Drowning and submersion following fall into natural water, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W70.3', 'Drowning and submersion following fall into natural water, Sports and Athletic Areas', 'ICD10_2010'), +('W70.4', 'Drowning and submersion following fall into natural water, Street and Highway', 'ICD10_2010'), +('W70.5', 'Drowning and submersion following fall into natural water, Trade and Service Area', 'ICD10_2010'), +('W70.6', 'Drowning and submersion following fall into natural water, Industrial and Construction Area', 'ICD10_2010'), +('W70.7', 'Drowning and submersion following fall into natural water, Farm', 'ICD10_2010'), +('W70.8', 'Drowning and submersion following fall into natural water, Other Specified Area', 'ICD10_2010'), +('W70.9', 'Drowning and submersion following fall into natural water, Unspecified Place', 'ICD10_2010'), +('W73', 'Other specified drowning and submersion', 'ICD10_2010'), +('W73.0', 'Other specified drowning and submersion, Home', 'ICD10_2010'), +('W73.1', 'Other specified drowning and submersion, Residential Institution', 'ICD10_2010'), +('W73.2', 'Other specified drowning and submersion, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W73.3', 'Other specified drowning and submersion, Sports and Athletic Areas', 'ICD10_2010'), +('W73.4', 'Other specified drowning and submersion, Street and Highway', 'ICD10_2010'), +('W73.5', 'Other specified drowning and submersion, Trade and Service Area', 'ICD10_2010'), +('W73.6', 'Other specified drowning and submersion, Industrial and Construction Area', 'ICD10_2010'), +('W73.7', 'Other specified drowning and submersion, Farm', 'ICD10_2010'), +('W73.8', 'Other specified drowning and submersion, Other Specified Area', 'ICD10_2010'), +('W73.9', 'Other specified drowning and submersion, Unspecified Place', 'ICD10_2010'), +('W74', 'Unspecified drowning and submersion', 'ICD10_2010'), +('W74.0', 'Unspecified drowning and submersion, Home', 'ICD10_2010'), +('W74.1', 'Unspecified drowning and submersion, Residential Institution', 'ICD10_2010'), +('W74.2', 'Unspecified drowning and submersion, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W74.3', 'Unspecified drowning and submersion, Sports and Athletic Areas', 'ICD10_2010'), +('W74.4', 'Unspecified drowning and submersion, Street and Highway', 'ICD10_2010'), +('W74.5', 'Unspecified drowning and submersion, Trade and Service Area', 'ICD10_2010'), +('W74.6', 'Unspecified drowning and submersion, Industrial and Construction Area', 'ICD10_2010'), +('W74.7', 'Unspecified drowning and submersion, Farm', 'ICD10_2010'), +('W74.8', 'Unspecified drowning and submersion, Other Specified Area', 'ICD10_2010'), +('W74.9', 'Unspecified drowning and submersion, Unspecified Place', 'ICD10_2010'), +('W75', 'Accidental suffocation and strangulation in bed', 'ICD10_2010'), +('W75.0', 'Accidental suffocation and strangulation in bed, Home', 'ICD10_2010'), +('W75.1', 'Accidental suffocation and strangulation in bed, Residential Institution', 'ICD10_2010'), +('W75.2', 'Accidental suffocation and strangulation in bed, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W75.3', 'Accidental suffocation and strangulation in bed, Sports and Athletic Areas', 'ICD10_2010'), +('W75.4', 'Accidental suffocation and strangulation in bed, Street and Highway', 'ICD10_2010'), +('W75.5', 'Accidental suffocation and strangulation in bed, Trade and Service Area', 'ICD10_2010'), +('W75.6', 'Accidental suffocation and strangulation in bed, Industrial and Construction Area', 'ICD10_2010'), +('W75.7', 'Accidental suffocation and strangulation in bed, Farm', 'ICD10_2010'), +('W75.8', 'Accidental suffocation and strangulation in bed, Other Specified Area', 'ICD10_2010'), +('W75.9', 'Accidental suffocation and strangulation in bed, Unspecified Place', 'ICD10_2010'), +('W76', 'Other accidental hanging and strangulation', 'ICD10_2010'), +('W76.0', 'Other accidental hanging and strangulation, Home', 'ICD10_2010'), +('W76.1', 'Other accidental hanging and strangulation, Residential Institution', 'ICD10_2010'), +('W76.2', 'Other accidental hanging and strangulation, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W76.3', 'Other accidental hanging and strangulation, Sports and Athletic Areas', 'ICD10_2010'), +('W76.4', 'Other accidental hanging and strangulation, Street and Highway', 'ICD10_2010'), +('W76.5', 'Other accidental hanging and strangulation, Trade and Service Area', 'ICD10_2010'), +('W76.6', 'Other accidental hanging and strangulation, Industrial and Construction Area', 'ICD10_2010'), +('W76.7', 'Other accidental hanging and strangulation, Farm', 'ICD10_2010'), +('W76.8', 'Other accidental hanging and strangulation, Other Specified Area', 'ICD10_2010'), +('W76.9', 'Other accidental hanging and strangulation, Unspecified Place', 'ICD10_2010'), +('W77', 'Threat to breathing due to cave-in, falling earth and other substances', 'ICD10_2010'), +('W77.0', 'Threat to breathing due to cave-in, falling earth and other substances, Home', 'ICD10_2010'), +('W77.1', 'Threat to breathing due to cave-in, falling earth and other substances, Residential Institution', 'ICD10_2010'), +('W77.2', 'Threat to breathing due to cave-in, falling earth and other substances, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W77.3', 'Threat to breathing due to cave-in, falling earth and other substances, Sports and Athletic Areas', 'ICD10_2010'), +('W77.4', 'Threat to breathing due to cave-in, falling earth and other substances, Street and Highway', 'ICD10_2010'), +('W77.5', 'Threat to breathing due to cave-in, falling earth and other substances, Trade and Service Area', 'ICD10_2010'), +('W77.6', 'Threat to breathing due to cave-in, falling earth and other substances, Industrial and Construction Area', 'ICD10_2010'), +('W77.7', 'Threat to breathing due to cave-in, falling earth and other substances, Farm', 'ICD10_2010'), +('W77.8', 'Threat to breathing due to cave-in, falling earth and other substances, Other Specified Area', 'ICD10_2010'), +('W77.9', 'Threat to breathing due to cave-in, falling earth and other substances, Unspecified Place', 'ICD10_2010'), +('W78', 'Inhalation of gastric contents', 'ICD10_2010'), +('W78.0', 'Inhalation of gastric contents, Home', 'ICD10_2010'), +('W78.1', 'Inhalation of gastric contents, Residential Institution', 'ICD10_2010'), +('W78.2', 'Inhalation of gastric contents, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W78.3', 'Inhalation of gastric contents, Sports and Athletic Areas', 'ICD10_2010'), +('W78.4', 'Inhalation of gastric contents, Street and Highway', 'ICD10_2010'), +('W78.5', 'Inhalation of gastric contents, Trade and Service Area', 'ICD10_2010'), +('W78.6', 'Inhalation of gastric contents, Industrial and Construction Area', 'ICD10_2010'), +('W78.7', 'Inhalation of gastric contents, Farm', 'ICD10_2010'), +('W78.8', 'Inhalation of gastric contents, Other Specified Area', 'ICD10_2010'), +('W78.9', 'Inhalation of gastric contents, Unspecified Place', 'ICD10_2010'), +('W79', 'Inhalation and ingestion of food causing obstruction of respiratory tract', 'ICD10_2010'), +('W79.0', 'Inhalation and ingestion of food causing obstruction of respiratory tract, Home', 'ICD10_2010'), +('W79.1', 'Inhalation and ingestion of food causing obstruction of respiratory tract, Residential Institution', 'ICD10_2010'), +('W79.2', 'Inhalation and ingestion of food causing obstruction of respiratory tract, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W79.3', 'Inhalation and ingestion of food causing obstruction of respiratory tract, Sports and Athletic Areas', 'ICD10_2010'), +('W79.4', 'Inhalation and ingestion of food causing obstruction of respiratory tract, Street and Highway', 'ICD10_2010'), +('W79.5', 'Inhalation and ingestion of food causing obstruction of respiratory tract, Trade and Service Area', 'ICD10_2010'), +('W79.6', 'Inhalation and ingestion of food causing obstruction of respiratory tract, Industrial and Construction Area', 'ICD10_2010'), +('W79.7', 'Inhalation and ingestion of food causing obstruction of respiratory tract, Farm', 'ICD10_2010'), +('W79.8', 'Inhalation and ingestion of food causing obstruction of respiratory tract, Other Specified Area', 'ICD10_2010'), +('W79.9', 'Inhalation and ingestion of food causing obstruction of respiratory tract, Unspecified Place', 'ICD10_2010'), +('W80', 'Inhalation and ingestion of other objects causing obstruction of respiratory tract', 'ICD10_2010'), +('W80.0', 'Inhalation and ingestion of other objects causing obstruction of respiratory tract, Home', 'ICD10_2010'), +('W80.1', 'Inhalation and ingestion of other objects causing obstruction of respiratory tract, Residential Institution', 'ICD10_2010'), +('W80.2', 'Inhalation and ingestion of other objects causing obstruction of respiratory tract, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W80.3', 'Inhalation and ingestion of other objects causing obstruction of respiratory tract, Sports and Athletic Areas', 'ICD10_2010'), +('W80.4', 'Inhalation and ingestion of other objects causing obstruction of respiratory tract, Street and Highway', 'ICD10_2010'), +('W80.5', 'Inhalation and ingestion of other objects causing obstruction of respiratory tract, Trade and Service Area', 'ICD10_2010'), +('W80.6', 'Inhalation and ingestion of other objects causing obstruction of respiratory tract, Industrial and Construction Area', 'ICD10_2010'), +('W80.7', 'Inhalation and ingestion of other objects causing obstruction of respiratory tract, Farm', 'ICD10_2010'), +('W80.8', 'Inhalation and ingestion of other objects causing obstruction of respiratory tract, Other Specified Area', 'ICD10_2010'), +('W80.9', 'Inhalation and ingestion of other objects causing obstruction of respiratory tract, Unspecified Place', 'ICD10_2010'), +('W81', 'Confined to or trapped in a low-oxygen environment', 'ICD10_2010'), +('W81.0', 'Confined to or trapped in a low-oxygen environment, Home', 'ICD10_2010'), +('W81.1', 'Confined to or trapped in a low-oxygen environment, Residential Institution', 'ICD10_2010'), +('W81.2', 'Confined to or trapped in a low-oxygen environment, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W81.3', 'Confined to or trapped in a low-oxygen environment, Sports and Athletic Areas', 'ICD10_2010'), +('W81.4', 'Confined to or trapped in a low-oxygen environment, Street and Highway', 'ICD10_2010'), +('W81.5', 'Confined to or trapped in a low-oxygen environment, Trade and Service Area', 'ICD10_2010'), +('W81.6', 'Confined to or trapped in a low-oxygen environment, Industrial and Construction Area', 'ICD10_2010'), +('W81.7', 'Confined to or trapped in a low-oxygen environment, Farm', 'ICD10_2010'), +('W81.8', 'Confined to or trapped in a low-oxygen environment, Other Specified Area', 'ICD10_2010'), +('W81.9', 'Confined to or trapped in a low-oxygen environment, Unspecified Place', 'ICD10_2010'), +('W83', 'Other specified threats to breathing', 'ICD10_2010'), +('W83.0', 'Other specified threats to breathing, Home', 'ICD10_2010'), +('W83.1', 'Other specified threats to breathing, Residential Institution', 'ICD10_2010'), +('W83.2', 'Other specified threats to breathing, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W83.3', 'Other specified threats to breathing, Sports and Athletic Areas', 'ICD10_2010'), +('W83.4', 'Other specified threats to breathing, Street and Highway', 'ICD10_2010'), +('W83.5', 'Other specified threats to breathing, Trade and Service Area', 'ICD10_2010'), +('W83.6', 'Other specified threats to breathing, Industrial and Construction Area', 'ICD10_2010'), +('W83.7', 'Other specified threats to breathing, Farm', 'ICD10_2010'), +('W83.8', 'Other specified threats to breathing, Other Specified Area', 'ICD10_2010'), +('W83.9', 'Other specified threats to breathing, Unspecified Place', 'ICD10_2010'), +('W84', 'Unspecified threat to breathing', 'ICD10_2010'), +('W84.0', 'Unspecified threat to breathing, Home', 'ICD10_2010'), +('W84.1', 'Unspecified threat to breathing, Residential Institution', 'ICD10_2010'), +('W84.2', 'Unspecified threat to breathing, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W84.3', 'Unspecified threat to breathing, Sports and Athletic Areas', 'ICD10_2010'), +('W84.4', 'Unspecified threat to breathing, Street and Highway', 'ICD10_2010'), +('W84.5', 'Unspecified threat to breathing, Trade and Service Area', 'ICD10_2010'), +('W84.6', 'Unspecified threat to breathing, Industrial and Construction Area', 'ICD10_2010'), +('W84.7', 'Unspecified threat to breathing, Farm', 'ICD10_2010'), +('W84.8', 'Unspecified threat to breathing, Other Specified Area', 'ICD10_2010'), +('W84.9', 'Unspecified threat to breathing, Unspecified Place', 'ICD10_2010'), +('W85', 'Exposure to electric transmission lines', 'ICD10_2010'), +('W85.0', 'Exposure to electric transmission lines, Home', 'ICD10_2010'), +('W85.1', 'Exposure to electric transmission lines, Residential Institution', 'ICD10_2010'), +('W85.2', 'Exposure to electric transmission lines, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W85.3', 'Exposure to electric transmission lines, Sports and Athletic Areas', 'ICD10_2010'), +('W85.4', 'Exposure to electric transmission lines, Street and Highway', 'ICD10_2010'), +('W85.5', 'Exposure to electric transmission lines, Trade and Service Area', 'ICD10_2010'), +('W85.6', 'Exposure to electric transmission lines, Industrial and Construction Area', 'ICD10_2010'), +('W85.7', 'Exposure to electric transmission lines, Farm', 'ICD10_2010'), +('W85.8', 'Exposure to electric transmission lines, Other Specified Area', 'ICD10_2010'), +('W85.9', 'Exposure to electric transmission lines, Unspecified Place', 'ICD10_2010'), +('W86', 'Exposure to other specified electric current', 'ICD10_2010'), +('W86.0', 'Exposure to other specified electric current, Home', 'ICD10_2010'), +('W86.1', 'Exposure to other specified electric current, Residential Institution', 'ICD10_2010'), +('W86.2', 'Exposure to other specified electric current, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W86.3', 'Exposure to other specified electric current, Sports and Athletic Areas', 'ICD10_2010'), +('W86.4', 'Exposure to other specified electric current, Street and Highway', 'ICD10_2010'), +('W86.5', 'Exposure to other specified electric current, Trade and Service Area', 'ICD10_2010'), +('W86.6', 'Exposure to other specified electric current, Industrial and Construction Area', 'ICD10_2010'), +('W86.7', 'Exposure to other specified electric current, Farm', 'ICD10_2010'), +('W86.8', 'Exposure to other specified electric current, Other Specified Area', 'ICD10_2010'), +('W86.9', 'Exposure to other specified electric current, Unspecified Place', 'ICD10_2010'), +('W87', 'Exposure to unspecified electric current', 'ICD10_2010'), +('W87.0', 'Exposure to unspecified electric current, Home', 'ICD10_2010'), +('W87.1', 'Exposure to unspecified electric current, Residential Institution', 'ICD10_2010'), +('W87.2', 'Exposure to unspecified electric current, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W87.3', 'Exposure to unspecified electric current, Sports and Athletic Areas', 'ICD10_2010'), +('W87.4', 'Exposure to unspecified electric current, Street and Highway', 'ICD10_2010'), +('W87.5', 'Exposure to unspecified electric current, Trade and Service Area', 'ICD10_2010'), +('W87.6', 'Exposure to unspecified electric current, Industrial and Construction Area', 'ICD10_2010'), +('W87.7', 'Exposure to unspecified electric current, Farm', 'ICD10_2010'), +('W87.8', 'Exposure to unspecified electric current, Other Specified Area', 'ICD10_2010'), +('W87.9', 'Exposure to unspecified electric current, Unspecified Place', 'ICD10_2010'), +('W88', 'Exposure to ionizing radiation', 'ICD10_2010'), +('W88.0', 'Exposure to ionizing radiation, Home', 'ICD10_2010'), +('W88.1', 'Exposure to ionizing radiation, Residential Institution', 'ICD10_2010'), +('W88.2', 'Exposure to ionizing radiation, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W88.3', 'Exposure to ionizing radiation, Sports and Athletic Areas', 'ICD10_2010'), +('W88.4', 'Exposure to ionizing radiation, Street and Highway', 'ICD10_2010'), +('W88.5', 'Exposure to ionizing radiation, Trade and Service Area', 'ICD10_2010'), +('W88.6', 'Exposure to ionizing radiation, Industrial and Construction Area', 'ICD10_2010'), +('W88.7', 'Exposure to ionizing radiation, Farm', 'ICD10_2010'), +('W88.8', 'Exposure to ionizing radiation, Other Specified Area', 'ICD10_2010'), +('W88.9', 'Exposure to ionizing radiation, Unspecified Place', 'ICD10_2010'), +('W89', 'Exposure to man-made visible and ultraviolet light', 'ICD10_2010'), +('W89.0', 'Exposure to man-made visible and ultraviolet light, Home', 'ICD10_2010'), +('W89.1', 'Exposure to man-made visible and ultraviolet light, Residential Institution', 'ICD10_2010'), +('W89.2', 'Exposure to man-made visible and ultraviolet light, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W89.3', 'Exposure to man-made visible and ultraviolet light, Sports and Athletic Areas', 'ICD10_2010'), +('W89.4', 'Exposure to man-made visible and ultraviolet light, Street and Highway', 'ICD10_2010'), +('W89.5', 'Exposure to man-made visible and ultraviolet light, Trade and Service Area', 'ICD10_2010'), +('W89.6', 'Exposure to man-made visible and ultraviolet light, Industrial and Construction Area', 'ICD10_2010'), +('W89.7', 'Exposure to man-made visible and ultraviolet light, Farm', 'ICD10_2010'), +('W89.8', 'Exposure to man-made visible and ultraviolet light, Other Specified Area', 'ICD10_2010'), +('W89.9', 'Exposure to man-made visible and ultraviolet light, Unspecified Place', 'ICD10_2010'), +('W90', 'Exposure to other nonionizing radiation', 'ICD10_2010'), +('W90.0', 'Exposure to other nonionizing radiation, Home', 'ICD10_2010'), +('W90.1', 'Exposure to other nonionizing radiation, Residential Institution', 'ICD10_2010'), +('W90.2', 'Exposure to other nonionizing radiation, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W90.3', 'Exposure to other nonionizing radiation, Sports and Athletic Areas', 'ICD10_2010'), +('W90.4', 'Exposure to other nonionizing radiation, Street and Highway', 'ICD10_2010'), +('W90.5', 'Exposure to other nonionizing radiation, Trade and Service Area', 'ICD10_2010'), +('W90.6', 'Exposure to other nonionizing radiation, Industrial and Construction Area', 'ICD10_2010'), +('W90.7', 'Exposure to other nonionizing radiation, Farm', 'ICD10_2010'), +('W90.8', 'Exposure to other nonionizing radiation, Other Specified Area', 'ICD10_2010'), +('W90.9', 'Exposure to other nonionizing radiation, Unspecified Place', 'ICD10_2010'), +('W91', 'Exposure to unspecified type of radiation', 'ICD10_2010'), +('W91.0', 'Exposure to unspecified type of radiation, Home', 'ICD10_2010'), +('W91.1', 'Exposure to unspecified type of radiation, Residential Institution', 'ICD10_2010'), +('W91.2', 'Exposure to unspecified type of radiation, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W91.3', 'Exposure to unspecified type of radiation, Sports and Athletic Areas', 'ICD10_2010'), +('W91.4', 'Exposure to unspecified type of radiation, Street and Highway', 'ICD10_2010'), +('W91.5', 'Exposure to unspecified type of radiation, Trade and Service Area', 'ICD10_2010'), +('W91.6', 'Exposure to unspecified type of radiation, Industrial and Construction Area', 'ICD10_2010'), +('W91.7', 'Exposure to unspecified type of radiation, Farm', 'ICD10_2010'), +('W91.8', 'Exposure to unspecified type of radiation, Other Specified Area', 'ICD10_2010'), +('W91.9', 'Exposure to unspecified type of radiation, Unspecified Place', 'ICD10_2010'), +('W92', 'Exposure to excessive heat of man-made origin', 'ICD10_2010'), +('W92.0', 'Exposure to excessive heat of man-made origin, Home', 'ICD10_2010'), +('W92.1', 'Exposure to excessive heat of man-made origin, Residential Institution', 'ICD10_2010'), +('W92.2', 'Exposure to excessive heat of man-made origin, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W92.3', 'Exposure to excessive heat of man-made origin, Sports and Athletic Areas', 'ICD10_2010'), +('W92.4', 'Exposure to excessive heat of man-made origin, Street and Highway', 'ICD10_2010'), +('W92.5', 'Exposure to excessive heat of man-made origin, Trade and Service Area', 'ICD10_2010'), +('W92.6', 'Exposure to excessive heat of man-made origin, Industrial and Construction Area', 'ICD10_2010'), +('W92.7', 'Exposure to excessive heat of man-made origin, Farm', 'ICD10_2010'), +('W92.8', 'Exposure to excessive heat of man-made origin, Other Specified Area', 'ICD10_2010'), +('W92.9', 'Exposure to excessive heat of man-made origin, Unspecified Place', 'ICD10_2010'), +('W93', 'Exposure to excessive cold of man-made origin', 'ICD10_2010'), +('W93.0', 'Exposure to excessive cold of man-made origin, Home', 'ICD10_2010'), +('W93.1', 'Exposure to excessive cold of man-made origin, Residential Institution', 'ICD10_2010'), +('W93.2', 'Exposure to excessive cold of man-made origin, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W93.3', 'Exposure to excessive cold of man-made origin, Sports and Athletic Areas', 'ICD10_2010'), +('W93.4', 'Exposure to excessive cold of man-made origin, Street and Highway', 'ICD10_2010'), +('W93.5', 'Exposure to excessive cold of man-made origin, Trade and Service Area', 'ICD10_2010'), +('W93.6', 'Exposure to excessive cold of man-made origin, Industrial and Construction Area', 'ICD10_2010'), +('W93.7', 'Exposure to excessive cold of man-made origin, Farm', 'ICD10_2010'), +('W93.8', 'Exposure to excessive cold of man-made origin, Other Specified Area', 'ICD10_2010'), +('W93.9', 'Exposure to excessive cold of man-made origin, Unspecified Place', 'ICD10_2010'), +('W94', 'Exposure to high and low air pressure and changes in air pressure', 'ICD10_2010'), +('W94.0', 'Exposure to high and low air pressure and changes in air pressure, Home', 'ICD10_2010'), +('W94.1', 'Exposure to high and low air pressure and changes in air pressure, Residential Institution', 'ICD10_2010'), +('W94.2', 'Exposure to high and low air pressure and changes in air pressure, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W94.3', 'Exposure to high and low air pressure and changes in air pressure, Sports and Athletic Areas', 'ICD10_2010'), +('W94.4', 'Exposure to high and low air pressure and changes in air pressure, Street and Highway', 'ICD10_2010'), +('W94.5', 'Exposure to high and low air pressure and changes in air pressure, Trade and Service Area', 'ICD10_2010'), +('W94.6', 'Exposure to high and low air pressure and changes in air pressure, Industrial and Construction Area', 'ICD10_2010'), +('W94.7', 'Exposure to high and low air pressure and changes in air pressure, Farm', 'ICD10_2010'), +('W94.8', 'Exposure to high and low air pressure and changes in air pressure, Other Specified Area', 'ICD10_2010'), +('W94.9', 'Exposure to high and low air pressure and changes in air pressure, Unspecified Place', 'ICD10_2010'), +('W99', 'Exposure to other and unspecified man-made environmental factors', 'ICD10_2010'), +('W99.0', 'Exposure to other and unspecified man-made environmental factors, Home', 'ICD10_2010'), +('W99.1', 'Exposure to other and unspecified man-made environmental factors, Residential Institution', 'ICD10_2010'), +('W99.2', 'Exposure to other and unspecified man-made environmental factors, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W99.3', 'Exposure to other and unspecified man-made environmental factors, Sports and Athletic Areas', 'ICD10_2010'), +('W99.4', 'Exposure to other and unspecified man-made environmental factors, Street and Highway', 'ICD10_2010'), +('W99.5', 'Exposure to other and unspecified man-made environmental factors, Trade and Service Area', 'ICD10_2010'), +('W99.6', 'Exposure to other and unspecified man-made environmental factors, Industrial and Construction Area', 'ICD10_2010'), +('W99.7', 'Exposure to other and unspecified man-made environmental factors, Farm', 'ICD10_2010'), +('W99.8', 'Exposure to other and unspecified man-made environmental factors, Other Specified Area', 'ICD10_2010'), +('W99.9', 'Exposure to other and unspecified man-made environmental factors, Unspecified Place', 'ICD10_2010'), +('X00', 'Exposure to uncontrolled fire in building or structure', 'ICD10_2010'), +('X00.0', 'Exposure to uncontrolled fire in building or structure, Home', 'ICD10_2010'), +('X00.1', 'Exposure to uncontrolled fire in building or structure, Residential Institution', 'ICD10_2010'), +('X00.2', 'Exposure to uncontrolled fire in building or structure, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X00.3', 'Exposure to uncontrolled fire in building or structure, Sports and Athletic Areas', 'ICD10_2010'), +('X00.4', 'Exposure to uncontrolled fire in building or structure, Street and Highway', 'ICD10_2010'), +('X00.5', 'Exposure to uncontrolled fire in building or structure, Trade and Service Area', 'ICD10_2010'), +('X00.6', 'Exposure to uncontrolled fire in building or structure, Industrial and Construction Area', 'ICD10_2010'), +('X00.7', 'Exposure to uncontrolled fire in building or structure, Farm', 'ICD10_2010'), +('X00.8', 'Exposure to uncontrolled fire in building or structure, Other Specified Area', 'ICD10_2010'), +('X00.9', 'Exposure to uncontrolled fire in building or structure, Unspecified Place', 'ICD10_2010'), +('X01', 'Exposure to uncontrolled fire, not in building or structure', 'ICD10_2010'), +('X01.0', 'Exposure to uncontrolled fire, not in building or structure, Home', 'ICD10_2010'), +('X01.1', 'Exposure to uncontrolled fire, not in building or structure, Residential Institution', 'ICD10_2010'), +('X01.2', 'Exposure to uncontrolled fire, not in building or structure, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X01.3', 'Exposure to uncontrolled fire, not in building or structure, Sports and Athletic Areas', 'ICD10_2010'), +('X01.4', 'Exposure to uncontrolled fire, not in building or structure, Street and Highway', 'ICD10_2010'), +('X01.5', 'Exposure to uncontrolled fire, not in building or structure, Trade and Service Area', 'ICD10_2010'), +('X01.6', 'Exposure to uncontrolled fire, not in building or structure, Industrial and Construction Area', 'ICD10_2010'), +('X01.7', 'Exposure to uncontrolled fire, not in building or structure, Farm', 'ICD10_2010'), +('X01.8', 'Exposure to uncontrolled fire, not in building or structure, Other Specified Area', 'ICD10_2010'), +('X01.9', 'Exposure to uncontrolled fire, not in building or structure, Unspecified Place', 'ICD10_2010'), +('X02', 'Exposure to controlled fire in building or structure', 'ICD10_2010'), +('X02.0', 'Exposure to controlled fire in building or structure, Home', 'ICD10_2010'), +('X02.1', 'Exposure to controlled fire in building or structure, Residential Institution', 'ICD10_2010'), +('X02.2', 'Exposure to controlled fire in building or structure, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X02.3', 'Exposure to controlled fire in building or structure, Sports and Athletic Areas', 'ICD10_2010'), +('X02.4', 'Exposure to controlled fire in building or structure, Street and Highway', 'ICD10_2010'), +('X02.5', 'Exposure to controlled fire in building or structure, Trade and Service Area', 'ICD10_2010'), +('X02.6', 'Exposure to controlled fire in building or structure, Industrial and Construction Area', 'ICD10_2010'), +('X02.7', 'Exposure to controlled fire in building or structure, Farm', 'ICD10_2010'), +('X02.8', 'Exposure to controlled fire in building or structure, Other Specified Area', 'ICD10_2010'), +('X02.9', 'Exposure to controlled fire in building or structure, Unspecified Place', 'ICD10_2010'), +('X03', 'Exposure to controlled fire, not in building or structure', 'ICD10_2010'), +('X03.0', 'Exposure to controlled fire, not in building or structure, Home', 'ICD10_2010'), +('X03.1', 'Exposure to controlled fire, not in building or structure, Residential Institution', 'ICD10_2010'), +('X03.2', 'Exposure to controlled fire, not in building or structure, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X03.3', 'Exposure to controlled fire, not in building or structure, Sports and Athletic Areas', 'ICD10_2010'), +('X03.4', 'Exposure to controlled fire, not in building or structure, Street and Highway', 'ICD10_2010'), +('X03.5', 'Exposure to controlled fire, not in building or structure, Trade and Service Area', 'ICD10_2010'), +('X03.6', 'Exposure to controlled fire, not in building or structure, Industrial and Construction Area', 'ICD10_2010'), +('X03.7', 'Exposure to controlled fire, not in building or structure, Farm', 'ICD10_2010'), +('X03.8', 'Exposure to controlled fire, not in building or structure, Other Specified Area', 'ICD10_2010'), +('X03.9', 'Exposure to controlled fire, not in building or structure, Unspecified Place', 'ICD10_2010'), +('X04', 'Exposure to ignition of highly flammable material', 'ICD10_2010'), +('X04.0', 'Exposure to ignition of highly flammable material, Home', 'ICD10_2010'), +('X04.1', 'Exposure to ignition of highly flammable material, Residential Institution', 'ICD10_2010'), +('X04.2', 'Exposure to ignition of highly flammable material, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X04.3', 'Exposure to ignition of highly flammable material, Sports and Athletic Areas', 'ICD10_2010'), +('X04.4', 'Exposure to ignition of highly flammable material, Street and Highway', 'ICD10_2010'), +('X04.5', 'Exposure to ignition of highly flammable material, Trade and Service Area', 'ICD10_2010'), +('X04.6', 'Exposure to ignition of highly flammable material, Industrial and Construction Area', 'ICD10_2010'), +('X04.7', 'Exposure to ignition of highly flammable material, Farm', 'ICD10_2010'), +('X04.8', 'Exposure to ignition of highly flammable material, Other Specified Area', 'ICD10_2010'), +('X04.9', 'Exposure to ignition of highly flammable material, Unspecified Place', 'ICD10_2010'), +('X05', 'Exposure to ignition or melting of nightwear', 'ICD10_2010'), +('X05.0', 'Exposure to ignition or melting of nightwear, Home', 'ICD10_2010'), +('X05.1', 'Exposure to ignition or melting of nightwear, Residential Institution', 'ICD10_2010'), +('X05.2', 'Exposure to ignition or melting of nightwear, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X05.3', 'Exposure to ignition or melting of nightwear, Sports and Athletic Areas', 'ICD10_2010'), +('X05.4', 'Exposure to ignition or melting of nightwear, Street and Highway', 'ICD10_2010'), +('X05.5', 'Exposure to ignition or melting of nightwear, Trade and Service Area', 'ICD10_2010'), +('X05.6', 'Exposure to ignition or melting of nightwear, Industrial and Construction Area', 'ICD10_2010'), +('X05.7', 'Exposure to ignition or melting of nightwear, Farm', 'ICD10_2010'), +('X05.8', 'Exposure to ignition or melting of nightwear, Other Specified Area', 'ICD10_2010'), +('X05.9', 'Exposure to ignition or melting of nightwear, Unspecified Place', 'ICD10_2010'), +('X06', 'Exposure to ignition or melting of other clothing and apparel', 'ICD10_2010'), +('X06.0', 'Exposure to ignition or melting of other clothing and apparel, Home', 'ICD10_2010'), +('X06.1', 'Exposure to ignition or melting of other clothing and apparel, Residential Institution', 'ICD10_2010'), +('X06.2', 'Exposure to ignition or melting of other clothing and apparel, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X06.3', 'Exposure to ignition or melting of other clothing and apparel, Sports and Athletic Areas', 'ICD10_2010'), +('X06.4', 'Exposure to ignition or melting of other clothing and apparel, Street and Highway', 'ICD10_2010'), +('X06.5', 'Exposure to ignition or melting of other clothing and apparel, Trade and Service Area', 'ICD10_2010'), +('X06.6', 'Exposure to ignition or melting of other clothing and apparel, Industrial and Construction Area', 'ICD10_2010'), +('X06.7', 'Exposure to ignition or melting of other clothing and apparel, Farm', 'ICD10_2010'), +('X06.8', 'Exposure to ignition or melting of other clothing and apparel, Other Specified Area', 'ICD10_2010'), +('X06.9', 'Exposure to ignition or melting of other clothing and apparel, Unspecified Place', 'ICD10_2010'), +('X08', 'Exposure to other specified smoke, fire and flames', 'ICD10_2010'), +('X08.0', 'Exposure to other specified smoke, fire and flames, Home', 'ICD10_2010'), +('X08.1', 'Exposure to other specified smoke, fire and flames, Residential Institution', 'ICD10_2010'), +('X08.2', 'Exposure to other specified smoke, fire and flames, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X08.3', 'Exposure to other specified smoke, fire and flames, Sports and Athletic Areas', 'ICD10_2010'), +('X08.4', 'Exposure to other specified smoke, fire and flames, Street and Highway', 'ICD10_2010'), +('X08.5', 'Exposure to other specified smoke, fire and flames, Trade and Service Area', 'ICD10_2010'), +('X08.6', 'Exposure to other specified smoke, fire and flames, Industrial and Construction Area', 'ICD10_2010'), +('X08.7', 'Exposure to other specified smoke, fire and flames, Farm', 'ICD10_2010'), +('X08.8', 'Exposure to other specified smoke, fire and flames, Other Specified Area', 'ICD10_2010'), +('X08.9', 'Exposure to other specified smoke, fire and flames, Unspecified Place', 'ICD10_2010'), +('X09', 'Exposure to unspecified smoke, fire and flames', 'ICD10_2010'), +('X09.0', 'Exposure to unspecified smoke, fire and flames, Home', 'ICD10_2010'), +('X09.1', 'Exposure to unspecified smoke, fire and flames, Residential Institution', 'ICD10_2010'), +('X09.2', 'Exposure to unspecified smoke, fire and flames, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X09.3', 'Exposure to unspecified smoke, fire and flames, Sports and Athletic Areas', 'ICD10_2010'), +('X09.4', 'Exposure to unspecified smoke, fire and flames, Street and Highway', 'ICD10_2010'), +('X09.5', 'Exposure to unspecified smoke, fire and flames, Trade and Service Area', 'ICD10_2010'), +('X09.6', 'Exposure to unspecified smoke, fire and flames, Industrial and Construction Area', 'ICD10_2010'), +('X09.7', 'Exposure to unspecified smoke, fire and flames, Farm', 'ICD10_2010'), +('X09.8', 'Exposure to unspecified smoke, fire and flames, Other Specified Area', 'ICD10_2010'), +('X09.9', 'Exposure to unspecified smoke, fire and flames, Unspecified Place', 'ICD10_2010'), +('X10', 'Contact with hot drinks, food, fats and cooking oils', 'ICD10_2010'), +('X10.0', 'Contact with hot drinks, food, fats and cooking oils, Home', 'ICD10_2010'), +('X10.1', 'Contact with hot drinks, food, fats and cooking oils, Residential Institution', 'ICD10_2010'), +('X10.2', 'Contact with hot drinks, food, fats and cooking oils, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X10.3', 'Contact with hot drinks, food, fats and cooking oils, Sports and Athletic Areas', 'ICD10_2010'), +('X10.4', 'Contact with hot drinks, food, fats and cooking oils, Street and Highway', 'ICD10_2010'), +('X10.5', 'Contact with hot drinks, food, fats and cooking oils, Trade and Service Area', 'ICD10_2010'), +('X10.6', 'Contact with hot drinks, food, fats and cooking oils, Industrial and Construction Area', 'ICD10_2010'), +('X10.7', 'Contact with hot drinks, food, fats and cooking oils, Farm', 'ICD10_2010'), +('X10.8', 'Contact with hot drinks, food, fats and cooking oils, Other Specified Area', 'ICD10_2010'), +('X10.9', 'Contact with hot drinks, food, fats and cooking oils, Unspecified Place', 'ICD10_2010'), +('X11', 'Contact with hot tap-water', 'ICD10_2010'), +('X11.0', 'Contact with hot tap-water, Home', 'ICD10_2010'), +('X11.1', 'Contact with hot tap-water, Residential Institution', 'ICD10_2010'), +('X11.2', 'Contact with hot tap-water, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X11.3', 'Contact with hot tap-water, Sports and Athletic Areas', 'ICD10_2010'), +('X11.4', 'Contact with hot tap-water, Street and Highway', 'ICD10_2010'), +('X11.5', 'Contact with hot tap-water, Trade and Service Area', 'ICD10_2010'), +('X11.6', 'Contact with hot tap-water, Industrial and Construction Area', 'ICD10_2010'), +('X11.7', 'Contact with hot tap-water, Farm', 'ICD10_2010'), +('X11.8', 'Contact with hot tap-water, Other Specified Area', 'ICD10_2010'), +('X11.9', 'Contact with hot tap-water, Unspecified Place', 'ICD10_2010'), +('X12', 'Contact with other hot fluids', 'ICD10_2010'), +('X12.0', 'Contact with other hot fluids, Home', 'ICD10_2010'), +('X12.1', 'Contact with other hot fluids, Residential Institution', 'ICD10_2010'), +('X12.2', 'Contact with other hot fluids, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X12.3', 'Contact with other hot fluids, Sports and Athletic Areas', 'ICD10_2010'), +('X12.4', 'Contact with other hot fluids, Street and Highway', 'ICD10_2010'), +('X12.5', 'Contact with other hot fluids, Trade and Service Area', 'ICD10_2010'), +('X12.6', 'Contact with other hot fluids, Industrial and Construction Area', 'ICD10_2010'), +('X12.7', 'Contact with other hot fluids, Farm', 'ICD10_2010'), +('X12.8', 'Contact with other hot fluids, Other Specified Area', 'ICD10_2010'), +('X12.9', 'Contact with other hot fluids, Unspecified Place', 'ICD10_2010'), +('X13', 'Contact with steam and hot vapours', 'ICD10_2010'), +('X13.0', 'Contact with steam and hot vapours, Home', 'ICD10_2010'), +('X13.1', 'Contact with steam and hot vapours, Residential Institution', 'ICD10_2010'), +('X13.2', 'Contact with steam and hot vapours, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X13.3', 'Contact with steam and hot vapours, Sports and Athletic Areas', 'ICD10_2010'), +('X13.4', 'Contact with steam and hot vapours, Street and Highway', 'ICD10_2010'), +('X13.5', 'Contact with steam and hot vapours, Trade and Service Area', 'ICD10_2010'), +('X13.6', 'Contact with steam and hot vapours, Industrial and Construction Area', 'ICD10_2010'), +('X13.7', 'Contact with steam and hot vapours, Farm', 'ICD10_2010'), +('X13.8', 'Contact with steam and hot vapours, Other Specified Area', 'ICD10_2010'), +('X13.9', 'Contact with steam and hot vapours, Unspecified Place', 'ICD10_2010'), +('X14', 'Contact with hot air and gases', 'ICD10_2010'), +('X14.0', 'Contact with hot air and gases, Home', 'ICD10_2010'), +('X14.1', 'Contact with hot air and gases, Residential Institution', 'ICD10_2010'), +('X14.2', 'Contact with hot air and gases, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X14.3', 'Contact with hot air and gases, Sports and Athletic Areas', 'ICD10_2010'), +('X14.4', 'Contact with hot air and gases, Street and Highway', 'ICD10_2010'), +('X14.5', 'Contact with hot air and gases, Trade and Service Area', 'ICD10_2010'), +('X14.6', 'Contact with hot air and gases, Industrial and Construction Area', 'ICD10_2010'), +('X14.7', 'Contact with hot air and gases, Farm', 'ICD10_2010'), +('X14.8', 'Contact with hot air and gases, Other Specified Area', 'ICD10_2010'), +('X14.9', 'Contact with hot air and gases, Unspecified Place', 'ICD10_2010'), +('X15', 'Contact with hot household appliances', 'ICD10_2010'), +('X15.0', 'Contact with hot household appliances, Home', 'ICD10_2010'), +('X15.1', 'Contact with hot household appliances, Residential Institution', 'ICD10_2010'), +('X15.2', 'Contact with hot household appliances, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X15.3', 'Contact with hot household appliances, Sports and Athletic Areas', 'ICD10_2010'), +('X15.4', 'Contact with hot household appliances, Street and Highway', 'ICD10_2010'), +('X15.5', 'Contact with hot household appliances, Trade and Service Area', 'ICD10_2010'), +('X15.6', 'Contact with hot household appliances, Industrial and Construction Area', 'ICD10_2010'), +('X15.7', 'Contact with hot household appliances, Farm', 'ICD10_2010'), +('X15.8', 'Contact with hot household appliances, Other Specified Area', 'ICD10_2010'), +('X15.9', 'Contact with hot household appliances, Unspecified Place', 'ICD10_2010'), +('X16', 'Contact with hot heating appliances, radiators and pipes', 'ICD10_2010'), +('X16.0', 'Contact with hot heating appliances, radiators and pipes, Home', 'ICD10_2010'), +('X16.1', 'Contact with hot heating appliances, radiators and pipes, Residential Institution', 'ICD10_2010'), +('X16.2', 'Contact with hot heating appliances, radiators and pipes, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X16.3', 'Contact with hot heating appliances, radiators and pipes, Sports and Athletic Areas', 'ICD10_2010'), +('X16.4', 'Contact with hot heating appliances, radiators and pipes, Street and Highway', 'ICD10_2010'), +('X16.5', 'Contact with hot heating appliances, radiators and pipes, Trade and Service Area', 'ICD10_2010'), +('X16.6', 'Contact with hot heating appliances, radiators and pipes, Industrial and Construction Area', 'ICD10_2010'), +('X16.7', 'Contact with hot heating appliances, radiators and pipes, Farm', 'ICD10_2010'), +('X16.8', 'Contact with hot heating appliances, radiators and pipes, Other Specified Area', 'ICD10_2010'), +('X16.9', 'Contact with hot heating appliances, radiators and pipes, Unspecified Place', 'ICD10_2010'), +('X17', 'Contact with hot engines, machinery and tools', 'ICD10_2010'), +('X17.0', 'Contact with hot engines, machinery and tools, Home', 'ICD10_2010'), +('X17.1', 'Contact with hot engines, machinery and tools, Residential Institution', 'ICD10_2010'), +('X17.2', 'Contact with hot engines, machinery and tools, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X17.3', 'Contact with hot engines, machinery and tools, Sports and Athletic Areas', 'ICD10_2010'), +('X17.4', 'Contact with hot engines, machinery and tools, Street and Highway', 'ICD10_2010'), +('X17.5', 'Contact with hot engines, machinery and tools, Trade and Service Area', 'ICD10_2010'), +('X17.6', 'Contact with hot engines, machinery and tools, Industrial and Construction Area', 'ICD10_2010'), +('X17.7', 'Contact with hot engines, machinery and tools, Farm', 'ICD10_2010'), +('X17.8', 'Contact with hot engines, machinery and tools, Other Specified Area', 'ICD10_2010'), +('X17.9', 'Contact with hot engines, machinery and tools, Unspecified Place', 'ICD10_2010'), +('X18', 'Contact with other hot metals', 'ICD10_2010'), +('X18.0', 'Contact with other hot metals, Home', 'ICD10_2010'), +('X18.1', 'Contact with other hot metals, Residential Institution', 'ICD10_2010'), +('X18.2', 'Contact with other hot metals, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X18.3', 'Contact with other hot metals, Sports and Athletic Areas', 'ICD10_2010'), +('X18.4', 'Contact with other hot metals, Street and Highway', 'ICD10_2010'), +('X18.5', 'Contact with other hot metals, Trade and Service Area', 'ICD10_2010'), +('X18.6', 'Contact with other hot metals, Industrial and Construction Area', 'ICD10_2010'), +('X18.7', 'Contact with other hot metals, Farm', 'ICD10_2010'), +('X18.8', 'Contact with other hot metals, Other Specified Area', 'ICD10_2010'), +('X18.9', 'Contact with other hot metals, Unspecified Place', 'ICD10_2010'), +('X19', 'Contact with other and unspecified heat and hot substances', 'ICD10_2010'), +('X19.0', 'Contact with other and unspecified heat and hot substances, Home', 'ICD10_2010'), +('X19.1', 'Contact with other and unspecified heat and hot substances, Residential Institution', 'ICD10_2010'), +('X19.2', 'Contact with other and unspecified heat and hot substances, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X19.3', 'Contact with other and unspecified heat and hot substances, Sports and Athletic Areas', 'ICD10_2010'), +('X19.4', 'Contact with other and unspecified heat and hot substances, Street and Highway', 'ICD10_2010'), +('X19.5', 'Contact with other and unspecified heat and hot substances, Trade and Service Area', 'ICD10_2010'), +('X19.6', 'Contact with other and unspecified heat and hot substances, Industrial and Construction Area', 'ICD10_2010'), +('X19.7', 'Contact with other and unspecified heat and hot substances, Farm', 'ICD10_2010'), +('X19.8', 'Contact with other and unspecified heat and hot substances, Other Specified Area', 'ICD10_2010'), +('X19.9', 'Contact with other and unspecified heat and hot substances, Unspecified Place', 'ICD10_2010'), +('X20', 'Contact with venomous snakes and lizards', 'ICD10_2010'), +('X20.0', 'Contact with venomous snakes and lizards, Home', 'ICD10_2010'), +('X20.1', 'Contact with venomous snakes and lizards, Residential Institution', 'ICD10_2010'), +('X20.2', 'Contact with venomous snakes and lizards, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X20.3', 'Contact with venomous snakes and lizards, Sports and Athletic Areas', 'ICD10_2010'), +('X20.4', 'Contact with venomous snakes and lizards, Street and Highway', 'ICD10_2010'), +('X20.5', 'Contact with venomous snakes and lizards, Trade and Service Area', 'ICD10_2010'), +('X20.6', 'Contact with venomous snakes and lizards, Industrial and Construction Area', 'ICD10_2010'), +('X20.7', 'Contact with venomous snakes and lizards, Farm', 'ICD10_2010'), +('X20.8', 'Contact with venomous snakes and lizards, Other Specified Area', 'ICD10_2010'), +('X20.9', 'Contact with venomous snakes and lizards, Unspecified Place', 'ICD10_2010'), +('X21', 'Contact with venomous spiders', 'ICD10_2010'), +('X21.0', 'Contact with venomous spiders, Home', 'ICD10_2010'), +('X21.1', 'Contact with venomous spiders, Residential Institution', 'ICD10_2010'), +('X21.2', 'Contact with venomous spiders, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X21.3', 'Contact with venomous spiders, Sports and Athletic Areas', 'ICD10_2010'), +('X21.4', 'Contact with venomous spiders, Street and Highway', 'ICD10_2010'), +('X21.5', 'Contact with venomous spiders, Trade and Service Area', 'ICD10_2010'), +('X21.6', 'Contact with venomous spiders, Industrial and Construction Area', 'ICD10_2010'), +('X21.7', 'Contact with venomous spiders, Farm', 'ICD10_2010'), +('X21.8', 'Contact with venomous spiders, Other Specified Area', 'ICD10_2010'), +('X21.9', 'Contact with venomous spiders, Unspecified Place', 'ICD10_2010'), +('X22', 'Contact with scorpions', 'ICD10_2010'), +('X22.0', 'Contact with scorpions, Home', 'ICD10_2010'), +('X22.1', 'Contact with scorpions, Residential Institution', 'ICD10_2010'), +('X22.2', 'Contact with scorpions, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X22.3', 'Contact with scorpions, Sports and Athletic Areas', 'ICD10_2010'), +('X22.4', 'Contact with scorpions, Street and Highway', 'ICD10_2010'), +('X22.5', 'Contact with scorpions, Trade and Service Area', 'ICD10_2010'), +('X22.6', 'Contact with scorpions, Industrial and Construction Area', 'ICD10_2010'), +('X22.7', 'Contact with scorpions, Farm', 'ICD10_2010'), +('X22.8', 'Contact with scorpions, Other Specified Area', 'ICD10_2010'), +('X22.9', 'Contact with scorpions, Unspecified Place', 'ICD10_2010'), +('X23', 'Contact with hornets, wasps and bees', 'ICD10_2010'), +('X23.0', 'Contact with hornets, wasps and bees, Home', 'ICD10_2010'), +('X23.1', 'Contact with hornets, wasps and bees, Residential Institution', 'ICD10_2010'), +('X23.2', 'Contact with hornets, wasps and bees, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X23.3', 'Contact with hornets, wasps and bees, Sports and Athletic Areas', 'ICD10_2010'), +('X23.4', 'Contact with hornets, wasps and bees, Street and Highway', 'ICD10_2010'), +('X23.5', 'Contact with hornets, wasps and bees, Trade and Service Area', 'ICD10_2010'), +('X23.6', 'Contact with hornets, wasps and bees, Industrial and Construction Area', 'ICD10_2010'), +('X23.7', 'Contact with hornets, wasps and bees, Farm', 'ICD10_2010'), +('X23.8', 'Contact with hornets, wasps and bees, Other Specified Area', 'ICD10_2010'), +('X23.9', 'Contact with hornets, wasps and bees, Unspecified Place', 'ICD10_2010'), +('X24', 'Contact with centipedes and venomous millipedes (tropical)', 'ICD10_2010'); +INSERT INTO `icd10` (`ID_ICD10`, `Diagnosa`, `Versi_ICD10`) VALUES +('X24.0', 'Contact with centipedes and venomous millipedes (tropical), Home', 'ICD10_2010'), +('X24.1', 'Contact with centipedes and venomous millipedes (tropical), Residential Institution', 'ICD10_2010'), +('X24.2', 'Contact with centipedes and venomous millipedes (tropical), School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X24.3', 'Contact with centipedes and venomous millipedes (tropical), Sports and Athletic Areas', 'ICD10_2010'), +('X24.4', 'Contact with centipedes and venomous millipedes (tropical), Street and Highway', 'ICD10_2010'), +('X24.5', 'Contact with centipedes and venomous millipedes (tropical), Trade and Service Area', 'ICD10_2010'), +('X24.6', 'Contact with centipedes and venomous millipedes (tropical), Industrial and Construction Area', 'ICD10_2010'), +('X24.7', 'Contact with centipedes and venomous millipedes (tropical), Farm', 'ICD10_2010'), +('X24.8', 'Contact with centipedes and venomous millipedes (tropical), Other Specified Area', 'ICD10_2010'), +('X24.9', 'Contact with centipedes and venomous millipedes (tropical), Unspecified Place', 'ICD10_2010'), +('X25', 'Contact with other venomous arthropods', 'ICD10_2010'), +('X25.0', 'Contact with other venomous arthropods, Home', 'ICD10_2010'), +('X25.1', 'Contact with other venomous arthropods, Residential Institution', 'ICD10_2010'), +('X25.2', 'Contact with other venomous arthropods, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X25.3', 'Contact with other venomous arthropods, Sports and Athletic Areas', 'ICD10_2010'), +('X25.4', 'Contact with other venomous arthropods, Street and Highway', 'ICD10_2010'), +('X25.5', 'Contact with other venomous arthropods, Trade and Service Area', 'ICD10_2010'), +('X25.6', 'Contact with other venomous arthropods, Industrial and Construction Area', 'ICD10_2010'), +('X25.7', 'Contact with other venomous arthropods, Farm', 'ICD10_2010'), +('X25.8', 'Contact with other venomous arthropods, Other Specified Area', 'ICD10_2010'), +('X25.9', 'Contact with other venomous arthropods, Unspecified Place', 'ICD10_2010'), +('X26', 'Contact with venomous marine animals and plants', 'ICD10_2010'), +('X26.0', 'Contact with venomous marine animals and plants, Home', 'ICD10_2010'), +('X26.1', 'Contact with venomous marine animals and plants, Residential Institution', 'ICD10_2010'), +('X26.2', 'Contact with venomous marine animals and plants, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X26.3', 'Contact with venomous marine animals and plants, Sports and Athletic Areas', 'ICD10_2010'), +('X26.4', 'Contact with venomous marine animals and plants, Street and Highway', 'ICD10_2010'), +('X26.5', 'Contact with venomous marine animals and plants, Trade and Service Area', 'ICD10_2010'), +('X26.6', 'Contact with venomous marine animals and plants, Industrial and Construction Area', 'ICD10_2010'), +('X26.7', 'Contact with venomous marine animals and plants, Farm', 'ICD10_2010'), +('X26.8', 'Contact with venomous marine animals and plants, Other Specified Area', 'ICD10_2010'), +('X26.9', 'Contact with venomous marine animals and plants, Unspecified Place', 'ICD10_2010'), +('X27', 'Contact with other specified venomous animals', 'ICD10_2010'), +('X27.0', 'Contact with other specified venomous animals, Home', 'ICD10_2010'), +('X27.1', 'Contact with other specified venomous animals, Residential Institution', 'ICD10_2010'), +('X27.2', 'Contact with other specified venomous animals, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X27.3', 'Contact with other specified venomous animals, Sports and Athletic Areas', 'ICD10_2010'), +('X27.4', 'Contact with other specified venomous animals, Street and Highway', 'ICD10_2010'), +('X27.5', 'Contact with other specified venomous animals, Trade and Service Area', 'ICD10_2010'), +('X27.6', 'Contact with other specified venomous animals, Industrial and Construction Area', 'ICD10_2010'), +('X27.7', 'Contact with other specified venomous animals, Farm', 'ICD10_2010'), +('X27.8', 'Contact with other specified venomous animals, Other Specified Area', 'ICD10_2010'), +('X27.9', 'Contact with other specified venomous animals, Unspecified Place', 'ICD10_2010'), +('X28', 'Contact with other specified venomous plants', 'ICD10_2010'), +('X28.0', 'Contact with other specified venomous plants, Home', 'ICD10_2010'), +('X28.1', 'Contact with other specified venomous plants, Residential Institution', 'ICD10_2010'), +('X28.2', 'Contact with other specified venomous plants, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X28.3', 'Contact with other specified venomous plants, Sports and Athletic Areas', 'ICD10_2010'), +('X28.4', 'Contact with other specified venomous plants, Street and Highway', 'ICD10_2010'), +('X28.5', 'Contact with other specified venomous plants, Trade and Service Area', 'ICD10_2010'), +('X28.6', 'Contact with other specified venomous plants, Industrial and Construction Area', 'ICD10_2010'), +('X28.7', 'Contact with other specified venomous plants, Farm', 'ICD10_2010'), +('X28.8', 'Contact with other specified venomous plants, Other Specified Area', 'ICD10_2010'), +('X28.9', 'Contact with other specified venomous plants, Unspecified Place', 'ICD10_2010'), +('X29', 'Contact with unspecified venomous animal or plant', 'ICD10_2010'), +('X29.0', 'Contact with unspecified venomous animal or plant, Home', 'ICD10_2010'), +('X29.1', 'Contact with unspecified venomous animal or plant, Residential Institution', 'ICD10_2010'), +('X29.2', 'Contact with unspecified venomous animal or plant, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X29.3', 'Contact with unspecified venomous animal or plant, Sports and Athletic Areas', 'ICD10_2010'), +('X29.4', 'Contact with unspecified venomous animal or plant, Street and Highway', 'ICD10_2010'), +('X29.5', 'Contact with unspecified venomous animal or plant, Trade and Service Area', 'ICD10_2010'), +('X29.6', 'Contact with unspecified venomous animal or plant, Industrial and Construction Area', 'ICD10_2010'), +('X29.7', 'Contact with unspecified venomous animal or plant, Farm', 'ICD10_2010'), +('X29.8', 'Contact with unspecified venomous animal or plant, Other Specified Area', 'ICD10_2010'), +('X29.9', 'Contact with unspecified venomous animal or plant, Unspecified Place', 'ICD10_2010'), +('X30', 'Exposure to excessive natural heat', 'ICD10_2010'), +('X30.0', 'Exposure to excessive natural heat, Home', 'ICD10_2010'), +('X30.1', 'Exposure to excessive natural heat, Residential Institution', 'ICD10_2010'), +('X30.2', 'Exposure to excessive natural heat, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X30.3', 'Exposure to excessive natural heat, Sports and Athletic Areas', 'ICD10_2010'), +('X30.4', 'Exposure to excessive natural heat, Street and Highway', 'ICD10_2010'), +('X30.5', 'Exposure to excessive natural heat, Trade and Service Area', 'ICD10_2010'), +('X30.6', 'Exposure to excessive natural heat, Industrial and Construction Area', 'ICD10_2010'), +('X30.7', 'Exposure to excessive natural heat, Farm', 'ICD10_2010'), +('X30.8', 'Exposure to excessive natural heat, Other Specified Area', 'ICD10_2010'), +('X30.9', 'Exposure to excessive natural heat, Unspecified Place', 'ICD10_2010'), +('X31', 'Exposure to excessive natural cold', 'ICD10_2010'), +('X31.0', 'Exposure to excessive natural cold, Home', 'ICD10_2010'), +('X31.1', 'Exposure to excessive natural cold, Residential Institution', 'ICD10_2010'), +('X31.2', 'Exposure to excessive natural cold, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X31.3', 'Exposure to excessive natural cold, Sports and Athletic Areas', 'ICD10_2010'), +('X31.4', 'Exposure to excessive natural cold, Street and Highway', 'ICD10_2010'), +('X31.5', 'Exposure to excessive natural cold, Trade and Service Area', 'ICD10_2010'), +('X31.6', 'Exposure to excessive natural cold, Industrial and Construction Area', 'ICD10_2010'), +('X31.7', 'Exposure to excessive natural cold, Farm', 'ICD10_2010'), +('X31.8', 'Exposure to excessive natural cold, Other Specified Area', 'ICD10_2010'), +('X31.9', 'Exposure to excessive natural cold, Unspecified Place', 'ICD10_2010'), +('X32', 'Exposure to sunlight', 'ICD10_2010'), +('X32.0', 'Exposure to sunlight, Home', 'ICD10_2010'), +('X32.1', 'Exposure to sunlight, Residential Institution', 'ICD10_2010'), +('X32.2', 'Exposure to sunlight, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X32.3', 'Exposure to sunlight, Sports and Athletic Areas', 'ICD10_2010'), +('X32.4', 'Exposure to sunlight, Street and Highway', 'ICD10_2010'), +('X32.5', 'Exposure to sunlight, Trade and Service Area', 'ICD10_2010'), +('X32.6', 'Exposure to sunlight, Industrial and Construction Area', 'ICD10_2010'), +('X32.7', 'Exposure to sunlight, Farm', 'ICD10_2010'), +('X32.8', 'Exposure to sunlight, Other Specified Area', 'ICD10_2010'), +('X32.9', 'Exposure to sunlight, Unspecified Place', 'ICD10_2010'), +('X33', 'Victim of lightning', 'ICD10_2010'), +('X33.0', 'Victim of lightning, Home', 'ICD10_2010'), +('X33.1', 'Victim of lightning, Residential Institution', 'ICD10_2010'), +('X33.2', 'Victim of lightning, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X33.3', 'Victim of lightning, Sports and Athletic Areas', 'ICD10_2010'), +('X33.4', 'Victim of lightning, Street and Highway', 'ICD10_2010'), +('X33.5', 'Victim of lightning, Trade and Service Area', 'ICD10_2010'), +('X33.6', 'Victim of lightning, Industrial and Construction Area', 'ICD10_2010'), +('X33.7', 'Victim of lightning, Farm', 'ICD10_2010'), +('X33.8', 'Victim of lightning, Other Specified Area', 'ICD10_2010'), +('X33.9', 'Victim of lightning, Unspecified Place', 'ICD10_2010'), +('X34', 'Victim of earthquake', 'ICD10_2010'), +('X34.0', 'Victim of earthquake, Home', 'ICD10_2010'), +('X34.1', 'Victim of earthquake, Residential Institution', 'ICD10_2010'), +('X34.2', 'Victim of earthquake, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X34.3', 'Victim of earthquake, Sports and Athletic Areas', 'ICD10_2010'), +('X34.4', 'Victim of earthquake, Street and Highway', 'ICD10_2010'), +('X34.5', 'Victim of earthquake, Trade and Service Area', 'ICD10_2010'), +('X34.6', 'Victim of earthquake, Industrial and Construction Area', 'ICD10_2010'), +('X34.7', 'Victim of earthquake, Farm', 'ICD10_2010'), +('X34.8', 'Victim of earthquake, Other Specified Area', 'ICD10_2010'), +('X34.9', 'Victim of earthquake, Unspecified Place', 'ICD10_2010'), +('X35', 'Victim of volcanic eruption', 'ICD10_2010'), +('X35.0', 'Victim of volcanic eruption, Home', 'ICD10_2010'), +('X35.1', 'Victim of volcanic eruption, Residential Institution', 'ICD10_2010'), +('X35.2', 'Victim of volcanic eruption, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X35.3', 'Victim of volcanic eruption, Sports and Athletic Areas', 'ICD10_2010'), +('X35.4', 'Victim of volcanic eruption, Street and Highway', 'ICD10_2010'), +('X35.5', 'Victim of volcanic eruption, Trade and Service Area', 'ICD10_2010'), +('X35.6', 'Victim of volcanic eruption, Industrial and Construction Area', 'ICD10_2010'), +('X35.7', 'Victim of volcanic eruption, Farm', 'ICD10_2010'), +('X35.8', 'Victim of volcanic eruption, Other Specified Area', 'ICD10_2010'), +('X35.9', 'Victim of volcanic eruption, Unspecified Place', 'ICD10_2010'), +('X36', 'Victim of avalanche, landslide and other earth movements', 'ICD10_2010'), +('X36.0', 'Victim of avalanche, landslide and other earth movements, Home', 'ICD10_2010'), +('X36.1', 'Victim of avalanche, landslide and other earth movements, Residential Institution', 'ICD10_2010'), +('X36.2', 'Victim of avalanche, landslide and other earth movements, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X36.3', 'Victim of avalanche, landslide and other earth movements, Sports and Athletic Areas', 'ICD10_2010'), +('X36.4', 'Victim of avalanche, landslide and other earth movements, Street and Highway', 'ICD10_2010'), +('X36.5', 'Victim of avalanche, landslide and other earth movements, Trade and Service Area', 'ICD10_2010'), +('X36.6', 'Victim of avalanche, landslide and other earth movements, Industrial and Construction Area', 'ICD10_2010'), +('X36.7', 'Victim of avalanche, landslide and other earth movements, Farm', 'ICD10_2010'), +('X36.8', 'Victim of avalanche, landslide and other earth movements, Other Specified Area', 'ICD10_2010'), +('X36.9', 'Victim of avalanche, landslide and other earth movements, Unspecified Place', 'ICD10_2010'), +('X37', 'Victim of cataclysmic storm', 'ICD10_2010'), +('X37.0', 'Victim of cataclysmic storm, Home', 'ICD10_2010'), +('X37.1', 'Victim of cataclysmic storm, Residential Institution', 'ICD10_2010'), +('X37.2', 'Victim of cataclysmic storm, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X37.3', 'Victim of cataclysmic storm, Sports and Athletic Areas', 'ICD10_2010'), +('X37.4', 'Victim of cataclysmic storm, Street and Highway', 'ICD10_2010'), +('X37.5', 'Victim of cataclysmic storm, Trade and Service Area', 'ICD10_2010'), +('X37.6', 'Victim of cataclysmic storm, Industrial and Construction Area', 'ICD10_2010'), +('X37.7', 'Victim of cataclysmic storm, Farm', 'ICD10_2010'), +('X37.8', 'Victim of cataclysmic storm, Other Specified Area', 'ICD10_2010'), +('X37.9', 'Victim of cataclysmic storm, Unspecified Place', 'ICD10_2010'), +('X38', 'Victim of flood', 'ICD10_2010'), +('X38.0', 'Victim of flood, Home', 'ICD10_2010'), +('X38.1', 'Victim of flood, Residential Institution', 'ICD10_2010'), +('X38.2', 'Victim of flood, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X38.3', 'Victim of flood, Sports and Athletic Areas', 'ICD10_2010'), +('X38.4', 'Victim of flood, Street and Highway', 'ICD10_2010'), +('X38.5', 'Victim of flood, Trade and Service Area', 'ICD10_2010'), +('X38.6', 'Victim of flood, Industrial and Construction Area', 'ICD10_2010'), +('X38.7', 'Victim of flood, Farm', 'ICD10_2010'), +('X38.8', 'Victim of flood, Other Specified Area', 'ICD10_2010'), +('X38.9', 'Victim of flood, Unspecified Place', 'ICD10_2010'), +('X39', 'Exposure to other and unspecified forces of nature', 'ICD10_2010'), +('X39.0', 'Exposure to other and unspecified forces of nature, Home', 'ICD10_2010'), +('X39.1', 'Exposure to other and unspecified forces of nature, Residential Institution', 'ICD10_2010'), +('X39.2', 'Exposure to other and unspecified forces of nature, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X39.3', 'Exposure to other and unspecified forces of nature, Sports and Athletic Areas', 'ICD10_2010'), +('X39.4', 'Exposure to other and unspecified forces of nature, Street and Highway', 'ICD10_2010'), +('X39.5', 'Exposure to other and unspecified forces of nature, Trade and Service Area', 'ICD10_2010'), +('X39.6', 'Exposure to other and unspecified forces of nature, Industrial and Construction Area', 'ICD10_2010'), +('X39.7', 'Exposure to other and unspecified forces of nature, Farm', 'ICD10_2010'), +('X39.8', 'Exposure to other and unspecified forces of nature, Other Specified Area', 'ICD10_2010'), +('X39.9', 'Exposure to other and unspecified forces of nature, Unspecified Place', 'ICD10_2010'), +('X40', 'Accidental poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics', 'ICD10_2010'), +('X40.0', 'Accidental poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, Home', 'ICD10_2010'), +('X40.1', 'Accidental poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, Residential Institution', 'ICD10_2010'), +('X40.2', 'Accidental poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, School, Other Institution and Public Admimistration Are', 'ICD10_2010'), +('X40.3', 'Accidental poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, Sports and Athletic Areas', 'ICD10_2010'), +('X40.4', 'Accidental poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, Street and Highway', 'ICD10_2010'), +('X40.5', 'Accidental poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, Trade and Service Area', 'ICD10_2010'), +('X40.6', 'Accidental poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, Industrial and Construction Area', 'ICD10_2010'), +('X40.7', 'Accidental poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, Farm', 'ICD10_2010'), +('X40.8', 'Accidental poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, Other Specified Area', 'ICD10_2010'), +('X40.9', 'Accidental poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, Unspecified Place', 'ICD10_2010'), +('X41', 'Accidental poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified', 'ICD10_2010'), +('X41.0', 'Accidental poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, Home', 'ICD10_2010'), +('X41.1', 'Accidental poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, Residenti', 'ICD10_2010'), +('X41.2', 'Accidental poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, School, O', 'ICD10_2010'), +('X41.3', 'Accidental poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, Sports an', 'ICD10_2010'), +('X41.4', 'Accidental poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, Street an', 'ICD10_2010'), +('X41.5', 'Accidental poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, Trade and', 'ICD10_2010'), +('X41.6', 'Accidental poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, Industria', 'ICD10_2010'), +('X41.7', 'Accidental poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, Farm', 'ICD10_2010'), +('X41.8', 'Accidental poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, Other Spe', 'ICD10_2010'), +('X41.9', 'Accidental poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, Unspecifi', 'ICD10_2010'), +('X42', 'Accidental poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified', 'ICD10_2010'), +('X42.0', 'Accidental poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, Home', 'ICD10_2010'), +('X42.1', 'Accidental poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, Residential Institution', 'ICD10_2010'), +('X42.2', 'Accidental poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, School, Other Institution and Public', 'ICD10_2010'), +('X42.3', 'Accidental poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, Sports and Athletic Areas', 'ICD10_2010'), +('X42.4', 'Accidental poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, Street and Highway', 'ICD10_2010'), +('X42.5', 'Accidental poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, Trade and Service Area', 'ICD10_2010'), +('X42.6', 'Accidental poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, Industrial and Construction Area', 'ICD10_2010'), +('X42.7', 'Accidental poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, Farm', 'ICD10_2010'), +('X42.8', 'Accidental poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, Other Specified Area', 'ICD10_2010'), +('X42.9', 'Accidental poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, Unspecified Place', 'ICD10_2010'), +('X43', 'Accidental poisoning by and exposure to other drugs acting on the autonomic nervous system', 'ICD10_2010'), +('X43.0', 'Accidental poisoning by and exposure to other drugs acting on the autonomic nervous system, Home', 'ICD10_2010'), +('X43.1', 'Accidental poisoning by and exposure to other drugs acting on the autonomic nervous system, Residential Institution', 'ICD10_2010'), +('X43.2', 'Accidental poisoning by and exposure to other drugs acting on the autonomic nervous system, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X43.3', 'Accidental poisoning by and exposure to other drugs acting on the autonomic nervous system, Sports and Athletic Areas', 'ICD10_2010'), +('X43.4', 'Accidental poisoning by and exposure to other drugs acting on the autonomic nervous system, Street and Highway', 'ICD10_2010'), +('X43.5', 'Accidental poisoning by and exposure to other drugs acting on the autonomic nervous system, Trade and Service Area', 'ICD10_2010'), +('X43.6', 'Accidental poisoning by and exposure to other drugs acting on the autonomic nervous system, Industrial and Construction Area', 'ICD10_2010'), +('X43.7', 'Accidental poisoning by and exposure to other drugs acting on the autonomic nervous system, Farm', 'ICD10_2010'), +('X43.8', 'Accidental poisoning by and exposure to other drugs acting on the autonomic nervous system, Other Specified Area', 'ICD10_2010'), +('X43.9', 'Accidental poisoning by and exposure to other drugs acting on the autonomic nervous system, Unspecified Place', 'ICD10_2010'), +('X44', 'Accidental poisoning by and exposure to other and unspecified drugs, medicaments and biological substances', 'ICD10_2010'), +('X44.0', 'Accidental poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, Home', 'ICD10_2010'), +('X44.1', 'Accidental poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, Residential Institution', 'ICD10_2010'), +('X44.2', 'Accidental poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, School, Other Institution and Public Admim', 'ICD10_2010'), +('X44.3', 'Accidental poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, Sports and Athletic Areas', 'ICD10_2010'), +('X44.4', 'Accidental poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, Street and Highway', 'ICD10_2010'), +('X44.5', 'Accidental poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, Trade and Service Area', 'ICD10_2010'), +('X44.6', 'Accidental poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, Industrial and Construction Area', 'ICD10_2010'), +('X44.7', 'Accidental poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, Farm', 'ICD10_2010'), +('X44.8', 'Accidental poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, Other Specified Area', 'ICD10_2010'), +('X44.9', 'Accidental poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, Unspecified Place', 'ICD10_2010'), +('X45', 'Accidental poisoning by and exposure to alcohol', 'ICD10_2010'), +('X45.0', 'Accidental poisoning by and exposure to alcohol, Home', 'ICD10_2010'), +('X45.1', 'Accidental poisoning by and exposure to alcohol, Residential Institution', 'ICD10_2010'), +('X45.2', 'Accidental poisoning by and exposure to alcohol, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X45.3', 'Accidental poisoning by and exposure to alcohol, Sports and Athletic Areas', 'ICD10_2010'), +('X45.4', 'Accidental poisoning by and exposure to alcohol, Street and Highway', 'ICD10_2010'), +('X45.5', 'Accidental poisoning by and exposure to alcohol, Trade and Service Area', 'ICD10_2010'), +('X45.6', 'Accidental poisoning by and exposure to alcohol, Industrial and Construction Area', 'ICD10_2010'), +('X45.7', 'Accidental poisoning by and exposure to alcohol, Farm', 'ICD10_2010'), +('X45.8', 'Accidental poisoning by and exposure to alcohol, Other Specified Area', 'ICD10_2010'), +('X45.9', 'Accidental poisoning by and exposure to alcohol, Unspecified Place', 'ICD10_2010'), +('X46', 'Accidental poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours', 'ICD10_2010'), +('X46.0', 'Accidental poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, Home', 'ICD10_2010'), +('X46.1', 'Accidental poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, Residential Institution', 'ICD10_2010'), +('X46.2', 'Accidental poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, School, Other Institution and Public Admimist', 'ICD10_2010'), +('X46.3', 'Accidental poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, Sports and Athletic Areas', 'ICD10_2010'), +('X46.4', 'Accidental poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, Street and Highway', 'ICD10_2010'), +('X46.5', 'Accidental poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, Trade and Service Area', 'ICD10_2010'), +('X46.6', 'Accidental poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, Industrial and Construction Area', 'ICD10_2010'), +('X46.7', 'Accidental poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, Farm', 'ICD10_2010'), +('X46.8', 'Accidental poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, Other Specified Area', 'ICD10_2010'), +('X46.9', 'Accidental poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, Unspecified Place', 'ICD10_2010'), +('X47', 'Accidental poisoning by and exposure to other gases and vapours', 'ICD10_2010'), +('X47.0', 'Accidental poisoning by and exposure to other gases and vapours, Home', 'ICD10_2010'), +('X47.1', 'Accidental poisoning by and exposure to other gases and vapours, Residential Institution', 'ICD10_2010'), +('X47.2', 'Accidental poisoning by and exposure to other gases and vapours, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X47.3', 'Accidental poisoning by and exposure to other gases and vapours, Sports and Athletic Areas', 'ICD10_2010'), +('X47.4', 'Accidental poisoning by and exposure to other gases and vapours, Street and Highway', 'ICD10_2010'), +('X47.5', 'Accidental poisoning by and exposure to other gases and vapours, Trade and Service Area', 'ICD10_2010'), +('X47.6', 'Accidental poisoning by and exposure to other gases and vapours, Industrial and Construction Area', 'ICD10_2010'), +('X47.7', 'Accidental poisoning by and exposure to other gases and vapours, Farm', 'ICD10_2010'), +('X47.8', 'Accidental poisoning by and exposure to other gases and vapours, Other Specified Area', 'ICD10_2010'), +('X47.9', 'Accidental poisoning by and exposure to other gases and vapours, Unspecified Place', 'ICD10_2010'), +('X48', 'Accidental poisoning by and exposure to pesticides', 'ICD10_2010'), +('X48.0', 'Accidental poisoning by and exposure to pesticides, Home', 'ICD10_2010'), +('X48.1', 'Accidental poisoning by and exposure to pesticides, Residential Institution', 'ICD10_2010'), +('X48.2', 'Accidental poisoning by and exposure to pesticides, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X48.3', 'Accidental poisoning by and exposure to pesticides, Sports and Athletic Areas', 'ICD10_2010'), +('X48.4', 'Accidental poisoning by and exposure to pesticides, Street and Highway', 'ICD10_2010'), +('X48.5', 'Accidental poisoning by and exposure to pesticides, Trade and Service Area', 'ICD10_2010'), +('X48.6', 'Accidental poisoning by and exposure to pesticides, Industrial and Construction Area', 'ICD10_2010'), +('X48.7', 'Accidental poisoning by and exposure to pesticides, Farm', 'ICD10_2010'), +('X48.8', 'Accidental poisoning by and exposure to pesticides, Other Specified Area', 'ICD10_2010'), +('X48.9', 'Accidental poisoning by and exposure to pesticides, Unspecified Place', 'ICD10_2010'), +('X49', 'Accidental poisoning by and exposure to other and unspecified chemicals and noxious substances', 'ICD10_2010'), +('X49.0', 'Accidental poisoning by and exposure to other and unspecified chemicals and noxious substances, Home', 'ICD10_2010'), +('X49.1', 'Accidental poisoning by and exposure to other and unspecified chemicals and noxious substances, Residential Institution', 'ICD10_2010'), +('X49.2', 'Accidental poisoning by and exposure to other and unspecified chemicals and noxious substances, School, Other Institution and Public Admimistration Ar', 'ICD10_2010'), +('X49.3', 'Accidental poisoning by and exposure to other and unspecified chemicals and noxious substances, Sports and Athletic Areas', 'ICD10_2010'), +('X49.4', 'Accidental poisoning by and exposure to other and unspecified chemicals and noxious substances, Street and Highway', 'ICD10_2010'), +('X49.5', 'Accidental poisoning by and exposure to other and unspecified chemicals and noxious substances, Trade and Service Area', 'ICD10_2010'), +('X49.6', 'Accidental poisoning by and exposure to other and unspecified chemicals and noxious substances, Industrial and Construction Area', 'ICD10_2010'), +('X49.7', 'Accidental poisoning by and exposure to other and unspecified chemicals and noxious substances, Farm', 'ICD10_2010'), +('X49.8', 'Accidental poisoning by and exposure to other and unspecified chemicals and noxious substances, Other Specified Area', 'ICD10_2010'), +('X49.9', 'Accidental poisoning by and exposure to other and unspecified chemicals and noxious substances, Unspecified Place', 'ICD10_2010'), +('X50', 'Overexertion and strenuous or repetitive movements', 'ICD10_2010'), +('X50.0', 'Overexertion and strenuous or repetitive movements, Home', 'ICD10_2010'), +('X50.1', 'Overexertion and strenuous or repetitive movements, Residential Institution', 'ICD10_2010'), +('X50.2', 'Overexertion and strenuous or repetitive movements, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X50.3', 'Overexertion and strenuous or repetitive movements, Sports and Athletic Areas', 'ICD10_2010'), +('X50.4', 'Overexertion and strenuous or repetitive movements, Street and Highway', 'ICD10_2010'), +('X50.5', 'Overexertion and strenuous or repetitive movements, Trade and Service Area', 'ICD10_2010'), +('X50.6', 'Overexertion and strenuous or repetitive movements, Industrial and Construction Area', 'ICD10_2010'), +('X50.7', 'Overexertion and strenuous or repetitive movements, Farm', 'ICD10_2010'), +('X50.8', 'Overexertion and strenuous or repetitive movements, Other Specified Area', 'ICD10_2010'), +('X50.9', 'Overexertion and strenuous or repetitive movements, Unspecified Place', 'ICD10_2010'), +('X51', 'Travel and motion', 'ICD10_2010'), +('X51.0', 'Travel and motion, Home', 'ICD10_2010'), +('X51.1', 'Travel and motion, Residential Institution', 'ICD10_2010'), +('X51.2', 'Travel and motion, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X51.3', 'Travel and motion, Sports and Athletic Areas', 'ICD10_2010'), +('X51.4', 'Travel and motion, Street and Highway', 'ICD10_2010'), +('X51.5', 'Travel and motion, Trade and Service Area', 'ICD10_2010'), +('X51.6', 'Travel and motion, Industrial and Construction Area', 'ICD10_2010'), +('X51.7', 'Travel and motion, Farm', 'ICD10_2010'), +('X51.8', 'Travel and motion, Other Specified Area', 'ICD10_2010'), +('X51.9', 'Travel and motion, Unspecified Place', 'ICD10_2010'), +('X52', 'Prolonged stay in weightless environment', 'ICD10_2010'), +('X52.0', 'Prolonged stay in weightless environment, Home', 'ICD10_2010'), +('X52.1', 'Prolonged stay in weightless environment, Residential Institution', 'ICD10_2010'), +('X52.2', 'Prolonged stay in weightless environment, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X52.3', 'Prolonged stay in weightless environment, Sports and Athletic Areas', 'ICD10_2010'), +('X52.4', 'Prolonged stay in weightless environment, Street and Highway', 'ICD10_2010'), +('X52.5', 'Prolonged stay in weightless environment, Trade and Service Area', 'ICD10_2010'), +('X52.6', 'Prolonged stay in weightless environment, Industrial and Construction Area', 'ICD10_2010'), +('X52.7', 'Prolonged stay in weightless environment, Farm', 'ICD10_2010'), +('X52.8', 'Prolonged stay in weightless environment, Other Specified Area', 'ICD10_2010'), +('X52.9', 'Prolonged stay in weightless environment, Unspecified Place', 'ICD10_2010'), +('X53', 'Lack of food', 'ICD10_2010'), +('X53.0', 'Lack of food, Home', 'ICD10_2010'), +('X53.1', 'Lack of food, Residential Institution', 'ICD10_2010'), +('X53.2', 'Lack of food, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X53.3', 'Lack of food, Sports and Athletic Areas', 'ICD10_2010'), +('X53.4', 'Lack of food, Street and Highway', 'ICD10_2010'), +('X53.5', 'Lack of food, Trade and Service Area', 'ICD10_2010'), +('X53.6', 'Lack of food, Industrial and Construction Area', 'ICD10_2010'), +('X53.7', 'Lack of food, Farm', 'ICD10_2010'), +('X53.8', 'Lack of food, Other Specified Area', 'ICD10_2010'), +('X53.9', 'Lack of food, Unspecified Place', 'ICD10_2010'), +('X54', 'Lack of water', 'ICD10_2010'), +('X54.0', 'Lack of water, Home', 'ICD10_2010'), +('X54.1', 'Lack of water, Residential Institution', 'ICD10_2010'), +('X54.2', 'Lack of water, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X54.3', 'Lack of water, Sports and Athletic Areas', 'ICD10_2010'), +('X54.4', 'Lack of water, Street and Highway', 'ICD10_2010'), +('X54.5', 'Lack of water, Trade and Service Area', 'ICD10_2010'), +('X54.6', 'Lack of water, Industrial and Construction Area', 'ICD10_2010'), +('X54.7', 'Lack of water, Farm', 'ICD10_2010'), +('X54.8', 'Lack of water, Other Specified Area', 'ICD10_2010'), +('X54.9', 'Lack of water, Unspecified Place', 'ICD10_2010'), +('X57', 'Unspecified privation', 'ICD10_2010'), +('X57.0', 'Unspecified privation, Home', 'ICD10_2010'), +('X57.1', 'Unspecified privation, Residential Institution', 'ICD10_2010'), +('X57.2', 'Unspecified privation, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X57.3', 'Unspecified privation, Sports and Athletic Areas', 'ICD10_2010'), +('X57.4', 'Unspecified privation, Street and Highway', 'ICD10_2010'), +('X57.5', 'Unspecified privation, Trade and Service Area', 'ICD10_2010'), +('X57.6', 'Unspecified privation, Industrial and Construction Area', 'ICD10_2010'), +('X57.7', 'Unspecified privation, Farm', 'ICD10_2010'), +('X57.8', 'Unspecified privation, Other Specified Area', 'ICD10_2010'), +('X57.9', 'Unspecified privation, Unspecified Place', 'ICD10_2010'), +('X58', 'Exposure to other specified factors', 'ICD10_2010'), +('X58.0', 'Exposure to other specified factors, Home', 'ICD10_2010'), +('X58.1', 'Exposure to other specified factors, Residential Institution', 'ICD10_2010'), +('X58.2', 'Exposure to other specified factors, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X58.3', 'Exposure to other specified factors, Sports and Athletic Areas', 'ICD10_2010'), +('X58.4', 'Exposure to other specified factors, Street and Highway', 'ICD10_2010'), +('X58.5', 'Exposure to other specified factors, Trade and Service Area', 'ICD10_2010'), +('X58.6', 'Exposure to other specified factors, Industrial and Construction Area', 'ICD10_2010'), +('X58.7', 'Exposure to other specified factors, Farm', 'ICD10_2010'), +('X58.8', 'Exposure to other specified factors, Other Specified Area', 'ICD10_2010'), +('X58.9', 'Exposure to other specified factors, Unspecified Place', 'ICD10_2010'), +('X59', 'Exposure to unspecified factor', 'ICD10_2010'), +('X59.0', 'Exposure to unspecified factor, Home', 'ICD10_2010'), +('X59.1', 'Exposure to unspecified factor, Residential Institution', 'ICD10_2010'), +('X59.2', 'Exposure to unspecified factor, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X59.3', 'Exposure to unspecified factor, Sports and Athletic Areas', 'ICD10_2010'), +('X59.4', 'Exposure to unspecified factor, Street and Highway', 'ICD10_2010'), +('X59.5', 'Exposure to unspecified factor, Trade and Service Area', 'ICD10_2010'), +('X59.6', 'Exposure to unspecified factor, Industrial and Construction Area', 'ICD10_2010'), +('X59.7', 'Exposure to unspecified factor, Farm', 'ICD10_2010'), +('X59.8', 'Exposure to unspecified factor, Other Specified Area', 'ICD10_2010'), +('X59.9', 'Exposure to unspecified factor, Unspecified Place', 'ICD10_2010'), +('X60', 'Intentional self-poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics', 'ICD10_2010'), +('X60.0', 'Intentional self-poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, Home', 'ICD10_2010'), +('X60.1', 'Intentional self-poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, Residential Institution', 'ICD10_2010'), +('X60.2', 'Intentional self-poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, School, Other Institution and Public Admimistrati', 'ICD10_2010'), +('X60.3', 'Intentional self-poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, Sports and Athletic Areas', 'ICD10_2010'), +('X60.4', 'Intentional self-poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, Street and Highway', 'ICD10_2010'), +('X60.5', 'Intentional self-poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, Trade and Service Area', 'ICD10_2010'), +('X60.6', 'Intentional self-poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, Industrial and Construction Area', 'ICD10_2010'), +('X60.7', 'Intentional self-poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, Farm', 'ICD10_2010'), +('X60.8', 'Intentional self-poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, Other Specified Area', 'ICD10_2010'), +('X60.9', 'Intentional self-poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, Unspecified Place', 'ICD10_2010'), +('X61', 'Intentional self-poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified', 'ICD10_2010'), +('X61.0', 'Intentional self-poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, Hom', 'ICD10_2010'), +('X61.1', 'Intentional self-poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, Res', 'ICD10_2010'), +('X61.2', 'Intentional self-poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, Sch', 'ICD10_2010'), +('X61.3', 'Intentional self-poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, Spo', 'ICD10_2010'), +('X61.4', 'Intentional self-poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, Str', 'ICD10_2010'), +('X61.5', 'Intentional self-poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, Tra', 'ICD10_2010'), +('X61.6', 'Intentional self-poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, Ind', 'ICD10_2010'), +('X61.7', 'Intentional self-poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, Far', 'ICD10_2010'), +('X61.8', 'Intentional self-poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, Oth', 'ICD10_2010'), +('X61.9', 'Intentional self-poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, Uns', 'ICD10_2010'), +('X62', 'Intentional self-poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified', 'ICD10_2010'), +('X62.0', 'Intentional self-poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, Home', 'ICD10_2010'), +('X62.1', 'Intentional self-poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, Residential Institution', 'ICD10_2010'), +('X62.2', 'Intentional self-poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, School, Other Institution and ', 'ICD10_2010'), +('X62.3', 'Intentional self-poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, Sports and Athletic Areas', 'ICD10_2010'), +('X62.4', 'Intentional self-poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, Street and Highway', 'ICD10_2010'), +('X62.5', 'Intentional self-poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, Trade and Service Area', 'ICD10_2010'), +('X62.6', 'Intentional self-poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, Industrial and Construction Ar', 'ICD10_2010'), +('X62.7', 'Intentional self-poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, Farm', 'ICD10_2010'), +('X62.8', 'Intentional self-poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, Other Specified Area', 'ICD10_2010'), +('X62.9', 'Intentional self-poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, Unspecified Place', 'ICD10_2010'), +('X63', 'Intentional self-poisoning by and exposure to other drugs acting on the autonomic nervous system', 'ICD10_2010'), +('X63.0', 'Intentional self-poisoning by and exposure to other drugs acting on the autonomic nervous system, Home', 'ICD10_2010'), +('X63.1', 'Intentional self-poisoning by and exposure to other drugs acting on the autonomic nervous system, Residential Institution', 'ICD10_2010'), +('X63.2', 'Intentional self-poisoning by and exposure to other drugs acting on the autonomic nervous system, School, Other Institution and Public Admimistration ', 'ICD10_2010'), +('X63.3', 'Intentional self-poisoning by and exposure to other drugs acting on the autonomic nervous system, Sports and Athletic Areas', 'ICD10_2010'), +('X63.4', 'Intentional self-poisoning by and exposure to other drugs acting on the autonomic nervous system, Street and Highway', 'ICD10_2010'), +('X63.5', 'Intentional self-poisoning by and exposure to other drugs acting on the autonomic nervous system, Trade and Service Area', 'ICD10_2010'), +('X63.6', 'Intentional self-poisoning by and exposure to other drugs acting on the autonomic nervous system, Industrial and Construction Area', 'ICD10_2010'), +('X63.7', 'Intentional self-poisoning by and exposure to other drugs acting on the autonomic nervous system, Farm', 'ICD10_2010'), +('X63.8', 'Intentional self-poisoning by and exposure to other drugs acting on the autonomic nervous system, Other Specified Area', 'ICD10_2010'), +('X63.9', 'Intentional self-poisoning by and exposure to other drugs acting on the autonomic nervous system, Unspecified Place', 'ICD10_2010'), +('X64', 'Intentional self-poisoning by and exposure to other and unspecified drugs, medicaments and biological substances', 'ICD10_2010'), +('X64.0', 'Intentional self-poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, Home', 'ICD10_2010'), +('X64.1', 'Intentional self-poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, Residential Institution', 'ICD10_2010'), +('X64.2', 'Intentional self-poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, School, Other Institution and Public', 'ICD10_2010'), +('X64.3', 'Intentional self-poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, Sports and Athletic Areas', 'ICD10_2010'), +('X64.4', 'Intentional self-poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, Street and Highway', 'ICD10_2010'), +('X64.5', 'Intentional self-poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, Trade and Service Area', 'ICD10_2010'), +('X64.6', 'Intentional self-poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, Industrial and Construction Area', 'ICD10_2010'), +('X64.7', 'Intentional self-poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, Farm', 'ICD10_2010'), +('X64.8', 'Intentional self-poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, Other Specified Area', 'ICD10_2010'), +('X64.9', 'Intentional self-poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, Unspecified Place', 'ICD10_2010'), +('X65', 'Intentional self-poisoning by and exposure to alcohol', 'ICD10_2010'), +('X65.0', 'Intentional self-poisoning by and exposure to alcohol, Home', 'ICD10_2010'), +('X65.1', 'Intentional self-poisoning by and exposure to alcohol, Residential Institution', 'ICD10_2010'), +('X65.2', 'Intentional self-poisoning by and exposure to alcohol, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X65.3', 'Intentional self-poisoning by and exposure to alcohol, Sports and Athletic Areas', 'ICD10_2010'), +('X65.4', 'Intentional self-poisoning by and exposure to alcohol, Street and Highway', 'ICD10_2010'), +('X65.5', 'Intentional self-poisoning by and exposure to alcohol, Trade and Service Area', 'ICD10_2010'), +('X65.6', 'Intentional self-poisoning by and exposure to alcohol, Industrial and Construction Area', 'ICD10_2010'), +('X65.7', 'Intentional self-poisoning by and exposure to alcohol, Farm', 'ICD10_2010'), +('X65.8', 'Intentional self-poisoning by and exposure to alcohol, Other Specified Area', 'ICD10_2010'), +('X65.9', 'Intentional self-poisoning by and exposure to alcohol, Unspecified Place', 'ICD10_2010'), +('X66', 'Intentional self-poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours', 'ICD10_2010'), +('X66.0', 'Intentional self-poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, Home', 'ICD10_2010'), +('X66.1', 'Intentional self-poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, Residential Institution', 'ICD10_2010'), +('X66.2', 'Intentional self-poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, School, Other Institution and Public Ad', 'ICD10_2010'), +('X66.3', 'Intentional self-poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, Sports and Athletic Areas', 'ICD10_2010'), +('X66.4', 'Intentional self-poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, Street and Highway', 'ICD10_2010'), +('X66.5', 'Intentional self-poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, Trade and Service Area', 'ICD10_2010'), +('X66.6', 'Intentional self-poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, Industrial and Construction Area', 'ICD10_2010'), +('X66.7', 'Intentional self-poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, Farm', 'ICD10_2010'), +('X66.8', 'Intentional self-poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, Other Specified Area', 'ICD10_2010'), +('X66.9', 'Intentional self-poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, Unspecified Place', 'ICD10_2010'), +('X67', 'Intentional self-poisoning by and exposure to other gases and vapours', 'ICD10_2010'), +('X67.0', 'Intentional self-poisoning by and exposure to other gases and vapours, Home', 'ICD10_2010'), +('X67.1', 'Intentional self-poisoning by and exposure to other gases and vapours, Residential Institution', 'ICD10_2010'), +('X67.2', 'Intentional self-poisoning by and exposure to other gases and vapours, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X67.3', 'Intentional self-poisoning by and exposure to other gases and vapours, Sports and Athletic Areas', 'ICD10_2010'), +('X67.4', 'Intentional self-poisoning by and exposure to other gases and vapours, Street and Highway', 'ICD10_2010'), +('X67.5', 'Intentional self-poisoning by and exposure to other gases and vapours, Trade and Service Area', 'ICD10_2010'), +('X67.6', 'Intentional self-poisoning by and exposure to other gases and vapours, Industrial and Construction Area', 'ICD10_2010'), +('X67.7', 'Intentional self-poisoning by and exposure to other gases and vapours, Farm', 'ICD10_2010'), +('X67.8', 'Intentional self-poisoning by and exposure to other gases and vapours, Other Specified Area', 'ICD10_2010'), +('X67.9', 'Intentional self-poisoning by and exposure to other gases and vapours, Unspecified Place', 'ICD10_2010'), +('X68', 'Intentional self-poisoning by and exposure to pesticides', 'ICD10_2010'), +('X68.0', 'Intentional self-poisoning by and exposure to pesticides, Home', 'ICD10_2010'), +('X68.1', 'Intentional self-poisoning by and exposure to pesticides, Residential Institution', 'ICD10_2010'), +('X68.2', 'Intentional self-poisoning by and exposure to pesticides, School, Other Institution and Public Admimistration Area', 'ICD10_2010'); +INSERT INTO `icd10` (`ID_ICD10`, `Diagnosa`, `Versi_ICD10`) VALUES +('X68.3', 'Intentional self-poisoning by and exposure to pesticides, Sports and Athletic Areas', 'ICD10_2010'), +('X68.4', 'Intentional self-poisoning by and exposure to pesticides, Street and Highway', 'ICD10_2010'), +('X68.5', 'Intentional self-poisoning by and exposure to pesticides, Trade and Service Area', 'ICD10_2010'), +('X68.6', 'Intentional self-poisoning by and exposure to pesticides, Industrial and Construction Area', 'ICD10_2010'), +('X68.7', 'Intentional self-poisoning by and exposure to pesticides, Farm', 'ICD10_2010'), +('X68.8', 'Intentional self-poisoning by and exposure to pesticides, Other Specified Area', 'ICD10_2010'), +('X68.9', 'Intentional self-poisoning by and exposure to pesticides, Unspecified Place', 'ICD10_2010'), +('X69', 'Intentional self-poisoning by and exposure to other and unspecified chemicals and noxious substances', 'ICD10_2010'), +('X69.0', 'Intentional self-poisoning by and exposure to other and unspecified chemicals and noxious substances, Home', 'ICD10_2010'), +('X69.1', 'Intentional self-poisoning by and exposure to other and unspecified chemicals and noxious substances, Residential Institution', 'ICD10_2010'), +('X69.2', 'Intentional self-poisoning by and exposure to other and unspecified chemicals and noxious substances, School, Other Institution and Public Admimistrat', 'ICD10_2010'), +('X69.3', 'Intentional self-poisoning by and exposure to other and unspecified chemicals and noxious substances, Sports and Athletic Areas', 'ICD10_2010'), +('X69.4', 'Intentional self-poisoning by and exposure to other and unspecified chemicals and noxious substances, Street and Highway', 'ICD10_2010'), +('X69.5', 'Intentional self-poisoning by and exposure to other and unspecified chemicals and noxious substances, Trade and Service Area', 'ICD10_2010'), +('X69.6', 'Intentional self-poisoning by and exposure to other and unspecified chemicals and noxious substances, Industrial and Construction Area', 'ICD10_2010'), +('X69.7', 'Intentional self-poisoning by and exposure to other and unspecified chemicals and noxious substances, Farm', 'ICD10_2010'), +('X69.8', 'Intentional self-poisoning by and exposure to other and unspecified chemicals and noxious substances, Other Specified Area', 'ICD10_2010'), +('X69.9', 'Intentional self-poisoning by and exposure to other and unspecified chemicals and noxious substances, Unspecified Place', 'ICD10_2010'), +('X70', 'Intentional self-harm by hanging, strangulation and suffocation', 'ICD10_2010'), +('X70.0', 'Intentional self-harm by hanging, strangulation and suffocation, Home', 'ICD10_2010'), +('X70.1', 'Intentional self-harm by hanging, strangulation and suffocation, Residential Institution', 'ICD10_2010'), +('X70.2', 'Intentional self-harm by hanging, strangulation and suffocation, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X70.3', 'Intentional self-harm by hanging, strangulation and suffocation, Sports and Athletic Areas', 'ICD10_2010'), +('X70.4', 'Intentional self-harm by hanging, strangulation and suffocation, Street and Highway', 'ICD10_2010'), +('X70.5', 'Intentional self-harm by hanging, strangulation and suffocation, Trade and Service Area', 'ICD10_2010'), +('X70.6', 'Intentional self-harm by hanging, strangulation and suffocation, Industrial and Construction Area', 'ICD10_2010'), +('X70.7', 'Intentional self-harm by hanging, strangulation and suffocation, Farm', 'ICD10_2010'), +('X70.8', 'Intentional self-harm by hanging, strangulation and suffocation, Other Specified Area', 'ICD10_2010'), +('X70.9', 'Intentional self-harm by hanging, strangulation and suffocation, Unspecified Place', 'ICD10_2010'), +('X71', 'Intentional self-harm by drowning and submersion', 'ICD10_2010'), +('X71.0', 'Intentional self-harm by drowning and submersion, Home', 'ICD10_2010'), +('X71.1', 'Intentional self-harm by drowning and submersion, Residential Institution', 'ICD10_2010'), +('X71.2', 'Intentional self-harm by drowning and submersion, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X71.3', 'Intentional self-harm by drowning and submersion, Sports and Athletic Areas', 'ICD10_2010'), +('X71.4', 'Intentional self-harm by drowning and submersion, Street and Highway', 'ICD10_2010'), +('X71.5', 'Intentional self-harm by drowning and submersion, Trade and Service Area', 'ICD10_2010'), +('X71.6', 'Intentional self-harm by drowning and submersion, Industrial and Construction Area', 'ICD10_2010'), +('X71.7', 'Intentional self-harm by drowning and submersion, Farm', 'ICD10_2010'), +('X71.8', 'Intentional self-harm by drowning and submersion, Other Specified Area', 'ICD10_2010'), +('X71.9', 'Intentional self-harm by drowning and submersion, Unspecified Place', 'ICD10_2010'), +('X72', 'Intentional self-harm by handgun discharge', 'ICD10_2010'), +('X72.0', 'Intentional self-harm by handgun discharge, Home', 'ICD10_2010'), +('X72.1', 'Intentional self-harm by handgun discharge, Residential Institution', 'ICD10_2010'), +('X72.2', 'Intentional self-harm by handgun discharge, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X72.3', 'Intentional self-harm by handgun discharge, Sports and Athletic Areas', 'ICD10_2010'), +('X72.4', 'Intentional self-harm by handgun discharge, Street and Highway', 'ICD10_2010'), +('X72.5', 'Intentional self-harm by handgun discharge, Trade and Service Area', 'ICD10_2010'), +('X72.6', 'Intentional self-harm by handgun discharge, Industrial and Construction Area', 'ICD10_2010'), +('X72.7', 'Intentional self-harm by handgun discharge, Farm', 'ICD10_2010'), +('X72.8', 'Intentional self-harm by handgun discharge, Other Specified Area', 'ICD10_2010'), +('X72.9', 'Intentional self-harm by handgun discharge, Unspecified Place', 'ICD10_2010'), +('X73', 'Intentional self-harm by rifle, shotgun and larger firearm discharge', 'ICD10_2010'), +('X73.0', 'Intentional self-harm by rifle, shotgun and larger firearm discharge, Home', 'ICD10_2010'), +('X73.1', 'Intentional self-harm by rifle, shotgun and larger firearm discharge, Residential Institution', 'ICD10_2010'), +('X73.2', 'Intentional self-harm by rifle, shotgun and larger firearm discharge, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X73.3', 'Intentional self-harm by rifle, shotgun and larger firearm discharge, Sports and Athletic Areas', 'ICD10_2010'), +('X73.4', 'Intentional self-harm by rifle, shotgun and larger firearm discharge, Street and Highway', 'ICD10_2010'), +('X73.5', 'Intentional self-harm by rifle, shotgun and larger firearm discharge, Trade and Service Area', 'ICD10_2010'), +('X73.6', 'Intentional self-harm by rifle, shotgun and larger firearm discharge, Industrial and Construction Area', 'ICD10_2010'), +('X73.7', 'Intentional self-harm by rifle, shotgun and larger firearm discharge, Farm', 'ICD10_2010'), +('X73.8', 'Intentional self-harm by rifle, shotgun and larger firearm discharge, Other Specified Area', 'ICD10_2010'), +('X73.9', 'Intentional self-harm by rifle, shotgun and larger firearm discharge, Unspecified Place', 'ICD10_2010'), +('X74', 'Intentional self-harm by other and unspecified firearm discharge', 'ICD10_2010'), +('X74.0', 'Intentional self-harm by other and unspecified firearm discharge, Home', 'ICD10_2010'), +('X74.1', 'Intentional self-harm by other and unspecified firearm discharge, Residential Institution', 'ICD10_2010'), +('X74.2', 'Intentional self-harm by other and unspecified firearm discharge, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X74.3', 'Intentional self-harm by other and unspecified firearm discharge, Sports and Athletic Areas', 'ICD10_2010'), +('X74.4', 'Intentional self-harm by other and unspecified firearm discharge, Street and Highway', 'ICD10_2010'), +('X74.5', 'Intentional self-harm by other and unspecified firearm discharge, Trade and Service Area', 'ICD10_2010'), +('X74.6', 'Intentional self-harm by other and unspecified firearm discharge, Industrial and Construction Area', 'ICD10_2010'), +('X74.7', 'Intentional self-harm by other and unspecified firearm discharge, Farm', 'ICD10_2010'), +('X74.8', 'Intentional self-harm by other and unspecified firearm discharge, Other Specified Area', 'ICD10_2010'), +('X74.9', 'Intentional self-harm by other and unspecified firearm discharge, Unspecified Place', 'ICD10_2010'), +('X75', 'Intentional self-harm by explosive material', 'ICD10_2010'), +('X75.0', 'Intentional self-harm by explosive material, Home', 'ICD10_2010'), +('X75.1', 'Intentional self-harm by explosive material, Residential Institution', 'ICD10_2010'), +('X75.2', 'Intentional self-harm by explosive material, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X75.3', 'Intentional self-harm by explosive material, Sports and Athletic Areas', 'ICD10_2010'), +('X75.4', 'Intentional self-harm by explosive material, Street and Highway', 'ICD10_2010'), +('X75.5', 'Intentional self-harm by explosive material, Trade and Service Area', 'ICD10_2010'), +('X75.6', 'Intentional self-harm by explosive material, Industrial and Construction Area', 'ICD10_2010'), +('X75.7', 'Intentional self-harm by explosive material, Farm', 'ICD10_2010'), +('X75.8', 'Intentional self-harm by explosive material, Other Specified Area', 'ICD10_2010'), +('X75.9', 'Intentional self-harm by explosive material, Unspecified Place', 'ICD10_2010'), +('X76', 'Intentional self-harm by smoke, fire and flames', 'ICD10_2010'), +('X76.0', 'Intentional self-harm by smoke, fire and flames, Home', 'ICD10_2010'), +('X76.1', 'Intentional self-harm by smoke, fire and flames, Residential Institution', 'ICD10_2010'), +('X76.2', 'Intentional self-harm by smoke, fire and flames, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X76.3', 'Intentional self-harm by smoke, fire and flames, Sports and Athletic Areas', 'ICD10_2010'), +('X76.4', 'Intentional self-harm by smoke, fire and flames, Street and Highway', 'ICD10_2010'), +('X76.5', 'Intentional self-harm by smoke, fire and flames, Trade and Service Area', 'ICD10_2010'), +('X76.6', 'Intentional self-harm by smoke, fire and flames, Industrial and Construction Area', 'ICD10_2010'), +('X76.7', 'Intentional self-harm by smoke, fire and flames, Farm', 'ICD10_2010'), +('X76.8', 'Intentional self-harm by smoke, fire and flames, Other Specified Area', 'ICD10_2010'), +('X76.9', 'Intentional self-harm by smoke, fire and flames, Unspecified Place', 'ICD10_2010'), +('X77', 'Intentional self-harm by steam, hot vapours and hot objects', 'ICD10_2010'), +('X77.0', 'Intentional self-harm by steam, hot vapours and hot objects, Home', 'ICD10_2010'), +('X77.1', 'Intentional self-harm by steam, hot vapours and hot objects, Residential Institution', 'ICD10_2010'), +('X77.2', 'Intentional self-harm by steam, hot vapours and hot objects, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X77.3', 'Intentional self-harm by steam, hot vapours and hot objects, Sports and Athletic Areas', 'ICD10_2010'), +('X77.4', 'Intentional self-harm by steam, hot vapours and hot objects, Street and Highway', 'ICD10_2010'), +('X77.5', 'Intentional self-harm by steam, hot vapours and hot objects, Trade and Service Area', 'ICD10_2010'), +('X77.6', 'Intentional self-harm by steam, hot vapours and hot objects, Industrial and Construction Area', 'ICD10_2010'), +('X77.7', 'Intentional self-harm by steam, hot vapours and hot objects, Farm', 'ICD10_2010'), +('X77.8', 'Intentional self-harm by steam, hot vapours and hot objects, Other Specified Area', 'ICD10_2010'), +('X77.9', 'Intentional self-harm by steam, hot vapours and hot objects, Unspecified Place', 'ICD10_2010'), +('X78', 'Intentional self-harm by sharp object', 'ICD10_2010'), +('X78.0', 'Intentional self-harm by sharp object, Home', 'ICD10_2010'), +('X78.1', 'Intentional self-harm by sharp object, Residential Institution', 'ICD10_2010'), +('X78.2', 'Intentional self-harm by sharp object, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X78.3', 'Intentional self-harm by sharp object, Sports and Athletic Areas', 'ICD10_2010'), +('X78.4', 'Intentional self-harm by sharp object, Street and Highway', 'ICD10_2010'), +('X78.5', 'Intentional self-harm by sharp object, Trade and Service Area', 'ICD10_2010'), +('X78.6', 'Intentional self-harm by sharp object, Industrial and Construction Area', 'ICD10_2010'), +('X78.7', 'Intentional self-harm by sharp object, Farm', 'ICD10_2010'), +('X78.8', 'Intentional self-harm by sharp object, Other Specified Area', 'ICD10_2010'), +('X78.9', 'Intentional self-harm by sharp object, Unspecified Place', 'ICD10_2010'), +('X79', 'Intentional self-harm by blunt object', 'ICD10_2010'), +('X79.0', 'Intentional self-harm by blunt object, Home', 'ICD10_2010'), +('X79.1', 'Intentional self-harm by blunt object, Residential Institution', 'ICD10_2010'), +('X79.2', 'Intentional self-harm by blunt object, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X79.3', 'Intentional self-harm by blunt object, Sports and Athletic Areas', 'ICD10_2010'), +('X79.4', 'Intentional self-harm by blunt object, Street and Highway', 'ICD10_2010'), +('X79.5', 'Intentional self-harm by blunt object, Trade and Service Area', 'ICD10_2010'), +('X79.6', 'Intentional self-harm by blunt object, Industrial and Construction Area', 'ICD10_2010'), +('X79.7', 'Intentional self-harm by blunt object, Farm', 'ICD10_2010'), +('X79.8', 'Intentional self-harm by blunt object, Other Specified Area', 'ICD10_2010'), +('X79.9', 'Intentional self-harm by blunt object, Unspecified Place', 'ICD10_2010'), +('X80', 'Intentional self-harm by jumping from a high place', 'ICD10_2010'), +('X80.0', 'Intentional self-harm by jumping from a high place, Home', 'ICD10_2010'), +('X80.1', 'Intentional self-harm by jumping from a high place, Residential Institution', 'ICD10_2010'), +('X80.2', 'Intentional self-harm by jumping from a high place, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X80.3', 'Intentional self-harm by jumping from a high place, Sports and Athletic Areas', 'ICD10_2010'), +('X80.4', 'Intentional self-harm by jumping from a high place, Street and Highway', 'ICD10_2010'), +('X80.5', 'Intentional self-harm by jumping from a high place, Trade and Service Area', 'ICD10_2010'), +('X80.6', 'Intentional self-harm by jumping from a high place, Industrial and Construction Area', 'ICD10_2010'), +('X80.7', 'Intentional self-harm by jumping from a high place, Farm', 'ICD10_2010'), +('X80.8', 'Intentional self-harm by jumping from a high place, Other Specified Area', 'ICD10_2010'), +('X80.9', 'Intentional self-harm by jumping from a high place, Unspecified Place', 'ICD10_2010'), +('X81', 'Intentional self-harm by jumping or lying before moving object', 'ICD10_2010'), +('X81.0', 'Intentional self-harm by jumping or lying before moving object, Home', 'ICD10_2010'), +('X81.1', 'Intentional self-harm by jumping or lying before moving object, Residential Institution', 'ICD10_2010'), +('X81.2', 'Intentional self-harm by jumping or lying before moving object, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X81.3', 'Intentional self-harm by jumping or lying before moving object, Sports and Athletic Areas', 'ICD10_2010'), +('X81.4', 'Intentional self-harm by jumping or lying before moving object, Street and Highway', 'ICD10_2010'), +('X81.5', 'Intentional self-harm by jumping or lying before moving object, Trade and Service Area', 'ICD10_2010'), +('X81.6', 'Intentional self-harm by jumping or lying before moving object, Industrial and Construction Area', 'ICD10_2010'), +('X81.7', 'Intentional self-harm by jumping or lying before moving object, Farm', 'ICD10_2010'), +('X81.8', 'Intentional self-harm by jumping or lying before moving object, Other Specified Area', 'ICD10_2010'), +('X81.9', 'Intentional self-harm by jumping or lying before moving object, Unspecified Place', 'ICD10_2010'), +('X82', 'Intentional self-harm by crashing of motor vehicle', 'ICD10_2010'), +('X82.0', 'Intentional self-harm by crashing of motor vehicle, Home', 'ICD10_2010'), +('X82.1', 'Intentional self-harm by crashing of motor vehicle, Residential Institution', 'ICD10_2010'), +('X82.2', 'Intentional self-harm by crashing of motor vehicle, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X82.3', 'Intentional self-harm by crashing of motor vehicle, Sports and Athletic Areas', 'ICD10_2010'), +('X82.4', 'Intentional self-harm by crashing of motor vehicle, Street and Highway', 'ICD10_2010'), +('X82.5', 'Intentional self-harm by crashing of motor vehicle, Trade and Service Area', 'ICD10_2010'), +('X82.6', 'Intentional self-harm by crashing of motor vehicle, Industrial and Construction Area', 'ICD10_2010'), +('X82.7', 'Intentional self-harm by crashing of motor vehicle, Farm', 'ICD10_2010'), +('X82.8', 'Intentional self-harm by crashing of motor vehicle, Other Specified Area', 'ICD10_2010'), +('X82.9', 'Intentional self-harm by crashing of motor vehicle, Unspecified Place', 'ICD10_2010'), +('X83', 'Intentional self-harm by other specified means', 'ICD10_2010'), +('X83.0', 'Intentional self-harm by other specified means, Home', 'ICD10_2010'), +('X83.1', 'Intentional self-harm by other specified means, Residential Institution', 'ICD10_2010'), +('X83.2', 'Intentional self-harm by other specified means, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X83.3', 'Intentional self-harm by other specified means, Sports and Athletic Areas', 'ICD10_2010'), +('X83.4', 'Intentional self-harm by other specified means, Street and Highway', 'ICD10_2010'), +('X83.5', 'Intentional self-harm by other specified means, Trade and Service Area', 'ICD10_2010'), +('X83.6', 'Intentional self-harm by other specified means, Industrial and Construction Area', 'ICD10_2010'), +('X83.7', 'Intentional self-harm by other specified means, Farm', 'ICD10_2010'), +('X83.8', 'Intentional self-harm by other specified means, Other Specified Area', 'ICD10_2010'), +('X83.9', 'Intentional self-harm by other specified means, Unspecified Place', 'ICD10_2010'), +('X84', 'Intentional self-harm by unspecified means', 'ICD10_2010'), +('X84.0', 'Intentional self-harm by unspecified means, Home', 'ICD10_2010'), +('X84.1', 'Intentional self-harm by unspecified means, Residential Institution', 'ICD10_2010'), +('X84.2', 'Intentional self-harm by unspecified means, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X84.3', 'Intentional self-harm by unspecified means, Sports and Athletic Areas', 'ICD10_2010'), +('X84.4', 'Intentional self-harm by unspecified means, Street and Highway', 'ICD10_2010'), +('X84.5', 'Intentional self-harm by unspecified means, Trade and Service Area', 'ICD10_2010'), +('X84.6', 'Intentional self-harm by unspecified means, Industrial and Construction Area', 'ICD10_2010'), +('X84.7', 'Intentional self-harm by unspecified means, Farm', 'ICD10_2010'), +('X84.8', 'Intentional self-harm by unspecified means, Other Specified Area', 'ICD10_2010'), +('X84.9', 'Intentional self-harm by unspecified means, Unspecified Place', 'ICD10_2010'), +('X85', 'Assault by drugs, medicaments and biological substances', 'ICD10_2010'), +('X85.0', 'Assault by drugs, medicaments and biological substances, Home', 'ICD10_2010'), +('X85.1', 'Assault by drugs, medicaments and biological substances, Residential Institution', 'ICD10_2010'), +('X85.2', 'Assault by drugs, medicaments and biological substances, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X85.3', 'Assault by drugs, medicaments and biological substances, Sports and Athletic Areas', 'ICD10_2010'), +('X85.4', 'Assault by drugs, medicaments and biological substances, Street and Highway', 'ICD10_2010'), +('X85.5', 'Assault by drugs, medicaments and biological substances, Trade and Service Area', 'ICD10_2010'), +('X85.6', 'Assault by drugs, medicaments and biological substances, Industrial and Construction Area', 'ICD10_2010'), +('X85.7', 'Assault by drugs, medicaments and biological substances, Farm', 'ICD10_2010'), +('X85.8', 'Assault by drugs, medicaments and biological substances, Other Specified Area', 'ICD10_2010'), +('X85.9', 'Assault by drugs, medicaments and biological substances, Unspecified Place', 'ICD10_2010'), +('X86', 'Assault by corrosive substance', 'ICD10_2010'), +('X86.0', 'Assault by corrosive substance, Home', 'ICD10_2010'), +('X86.1', 'Assault by corrosive substance, Residential Institution', 'ICD10_2010'), +('X86.2', 'Assault by corrosive substance, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X86.3', 'Assault by corrosive substance, Sports and Athletic Areas', 'ICD10_2010'), +('X86.4', 'Assault by corrosive substance, Street and Highway', 'ICD10_2010'), +('X86.5', 'Assault by corrosive substance, Trade and Service Area', 'ICD10_2010'), +('X86.6', 'Assault by corrosive substance, Industrial and Construction Area', 'ICD10_2010'), +('X86.7', 'Assault by corrosive substance, Farm', 'ICD10_2010'), +('X86.8', 'Assault by corrosive substance, Other Specified Area', 'ICD10_2010'), +('X86.9', 'Assault by corrosive substance, Unspecified Place', 'ICD10_2010'), +('X87', 'Assault by pesticides', 'ICD10_2010'), +('X87.0', 'Assault by pesticides, Home', 'ICD10_2010'), +('X87.1', 'Assault by pesticides, Residential Institution', 'ICD10_2010'), +('X87.2', 'Assault by pesticides, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X87.3', 'Assault by pesticides, Sports and Athletic Areas', 'ICD10_2010'), +('X87.4', 'Assault by pesticides, Street and Highway', 'ICD10_2010'), +('X87.5', 'Assault by pesticides, Trade and Service Area', 'ICD10_2010'), +('X87.6', 'Assault by pesticides, Industrial and Construction Area', 'ICD10_2010'), +('X87.7', 'Assault by pesticides, Farm', 'ICD10_2010'), +('X87.8', 'Assault by pesticides, Other Specified Area', 'ICD10_2010'), +('X87.9', 'Assault by pesticides, Unspecified Place', 'ICD10_2010'), +('X88', 'Assault by gases and vapours', 'ICD10_2010'), +('X88.0', 'Assault by gases and vapours, Home', 'ICD10_2010'), +('X88.1', 'Assault by gases and vapours, Residential Institution', 'ICD10_2010'), +('X88.2', 'Assault by gases and vapours, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X88.3', 'Assault by gases and vapours, Sports and Athletic Areas', 'ICD10_2010'), +('X88.4', 'Assault by gases and vapours, Street and Highway', 'ICD10_2010'), +('X88.5', 'Assault by gases and vapours, Trade and Service Area', 'ICD10_2010'), +('X88.6', 'Assault by gases and vapours, Industrial and Construction Area', 'ICD10_2010'), +('X88.7', 'Assault by gases and vapours, Farm', 'ICD10_2010'), +('X88.8', 'Assault by gases and vapours, Other Specified Area', 'ICD10_2010'), +('X88.9', 'Assault by gases and vapours, Unspecified Place', 'ICD10_2010'), +('X89', 'Assault by other specified chemicals and noxious substances', 'ICD10_2010'), +('X89.0', 'Assault by other specified chemicals and noxious substances, Home', 'ICD10_2010'), +('X89.1', 'Assault by other specified chemicals and noxious substances, Residential Institution', 'ICD10_2010'), +('X89.2', 'Assault by other specified chemicals and noxious substances, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X89.3', 'Assault by other specified chemicals and noxious substances, Sports and Athletic Areas', 'ICD10_2010'), +('X89.4', 'Assault by other specified chemicals and noxious substances, Street and Highway', 'ICD10_2010'), +('X89.5', 'Assault by other specified chemicals and noxious substances, Trade and Service Area', 'ICD10_2010'), +('X89.6', 'Assault by other specified chemicals and noxious substances, Industrial and Construction Area', 'ICD10_2010'), +('X89.7', 'Assault by other specified chemicals and noxious substances, Farm', 'ICD10_2010'), +('X89.8', 'Assault by other specified chemicals and noxious substances, Other Specified Area', 'ICD10_2010'), +('X89.9', 'Assault by other specified chemicals and noxious substances, Unspecified Place', 'ICD10_2010'), +('X90', 'Assault by unspecified chemical or noxious substance', 'ICD10_2010'), +('X90.0', 'Assault by unspecified chemical or noxious substance, Home', 'ICD10_2010'), +('X90.1', 'Assault by unspecified chemical or noxious substance, Residential Institution', 'ICD10_2010'), +('X90.2', 'Assault by unspecified chemical or noxious substance, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X90.3', 'Assault by unspecified chemical or noxious substance, Sports and Athletic Areas', 'ICD10_2010'), +('X90.4', 'Assault by unspecified chemical or noxious substance, Street and Highway', 'ICD10_2010'), +('X90.5', 'Assault by unspecified chemical or noxious substance, Trade and Service Area', 'ICD10_2010'), +('X90.6', 'Assault by unspecified chemical or noxious substance, Industrial and Construction Area', 'ICD10_2010'), +('X90.7', 'Assault by unspecified chemical or noxious substance, Farm', 'ICD10_2010'), +('X90.8', 'Assault by unspecified chemical or noxious substance, Other Specified Area', 'ICD10_2010'), +('X90.9', 'Assault by unspecified chemical or noxious substance, Unspecified Place', 'ICD10_2010'), +('X91', 'Assault by hanging, strangulation and suffocation', 'ICD10_2010'), +('X91.0', 'Assault by hanging, strangulation and suffocation, Home', 'ICD10_2010'), +('X91.1', 'Assault by hanging, strangulation and suffocation, Residential Institution', 'ICD10_2010'), +('X91.2', 'Assault by hanging, strangulation and suffocation, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X91.3', 'Assault by hanging, strangulation and suffocation, Sports and Athletic Areas', 'ICD10_2010'), +('X91.4', 'Assault by hanging, strangulation and suffocation, Street and Highway', 'ICD10_2010'), +('X91.5', 'Assault by hanging, strangulation and suffocation, Trade and Service Area', 'ICD10_2010'), +('X91.6', 'Assault by hanging, strangulation and suffocation, Industrial and Construction Area', 'ICD10_2010'), +('X91.7', 'Assault by hanging, strangulation and suffocation, Farm', 'ICD10_2010'), +('X91.8', 'Assault by hanging, strangulation and suffocation, Other Specified Area', 'ICD10_2010'), +('X91.9', 'Assault by hanging, strangulation and suffocation, Unspecified Place', 'ICD10_2010'), +('X92', 'Assault by drowning and submersion', 'ICD10_2010'), +('X92.0', 'Assault by drowning and submersion, Home', 'ICD10_2010'), +('X92.1', 'Assault by drowning and submersion, Residential Institution', 'ICD10_2010'), +('X92.2', 'Assault by drowning and submersion, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X92.3', 'Assault by drowning and submersion, Sports and Athletic Areas', 'ICD10_2010'), +('X92.4', 'Assault by drowning and submersion, Street and Highway', 'ICD10_2010'), +('X92.5', 'Assault by drowning and submersion, Trade and Service Area', 'ICD10_2010'), +('X92.6', 'Assault by drowning and submersion, Industrial and Construction Area', 'ICD10_2010'), +('X92.7', 'Assault by drowning and submersion, Farm', 'ICD10_2010'), +('X92.8', 'Assault by drowning and submersion, Other Specified Area', 'ICD10_2010'), +('X92.9', 'Assault by drowning and submersion, Unspecified Place', 'ICD10_2010'), +('X93', 'Assault by handgun discharge', 'ICD10_2010'), +('X93.0', 'Assault by handgun discharge, Home', 'ICD10_2010'), +('X93.1', 'Assault by handgun discharge, Residential Institution', 'ICD10_2010'), +('X93.2', 'Assault by handgun discharge, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X93.3', 'Assault by handgun discharge, Sports and Athletic Areas', 'ICD10_2010'), +('X93.4', 'Assault by handgun discharge, Street and Highway', 'ICD10_2010'), +('X93.5', 'Assault by handgun discharge, Trade and Service Area', 'ICD10_2010'), +('X93.6', 'Assault by handgun discharge, Industrial and Construction Area', 'ICD10_2010'), +('X93.7', 'Assault by handgun discharge, Farm', 'ICD10_2010'), +('X93.8', 'Assault by handgun discharge, Other Specified Area', 'ICD10_2010'), +('X93.9', 'Assault by handgun discharge, Unspecified Place', 'ICD10_2010'), +('X94', 'Assault by rifle, shotgun and larger firearm discharge', 'ICD10_2010'), +('X94.0', 'Assault by rifle, shotgun and larger firearm discharge, Home', 'ICD10_2010'), +('X94.1', 'Assault by rifle, shotgun and larger firearm discharge, Residential Institution', 'ICD10_2010'), +('X94.2', 'Assault by rifle, shotgun and larger firearm discharge, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X94.3', 'Assault by rifle, shotgun and larger firearm discharge, Sports and Athletic Areas', 'ICD10_2010'), +('X94.4', 'Assault by rifle, shotgun and larger firearm discharge, Street and Highway', 'ICD10_2010'), +('X94.5', 'Assault by rifle, shotgun and larger firearm discharge, Trade and Service Area', 'ICD10_2010'), +('X94.6', 'Assault by rifle, shotgun and larger firearm discharge, Industrial and Construction Area', 'ICD10_2010'), +('X94.7', 'Assault by rifle, shotgun and larger firearm discharge, Farm', 'ICD10_2010'), +('X94.8', 'Assault by rifle, shotgun and larger firearm discharge, Other Specified Area', 'ICD10_2010'), +('X94.9', 'Assault by rifle, shotgun and larger firearm discharge, Unspecified Place', 'ICD10_2010'), +('X95', 'Assault by other and unspecified firearm discharge', 'ICD10_2010'), +('X95.0', 'Assault by other and unspecified firearm discharge, Home', 'ICD10_2010'), +('X95.1', 'Assault by other and unspecified firearm discharge, Residential Institution', 'ICD10_2010'), +('X95.2', 'Assault by other and unspecified firearm discharge, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X95.3', 'Assault by other and unspecified firearm discharge, Sports and Athletic Areas', 'ICD10_2010'), +('X95.4', 'Assault by other and unspecified firearm discharge, Street and Highway', 'ICD10_2010'), +('X95.5', 'Assault by other and unspecified firearm discharge, Trade and Service Area', 'ICD10_2010'), +('X95.6', 'Assault by other and unspecified firearm discharge, Industrial and Construction Area', 'ICD10_2010'), +('X95.7', 'Assault by other and unspecified firearm discharge, Farm', 'ICD10_2010'), +('X95.8', 'Assault by other and unspecified firearm discharge, Other Specified Area', 'ICD10_2010'), +('X95.9', 'Assault by other and unspecified firearm discharge, Unspecified Place', 'ICD10_2010'), +('X96', 'Assault by explosive material', 'ICD10_2010'), +('X96.0', 'Assault by explosive material, Home', 'ICD10_2010'), +('X96.1', 'Assault by explosive material, Residential Institution', 'ICD10_2010'), +('X96.2', 'Assault by explosive material, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X96.3', 'Assault by explosive material, Sports and Athletic Areas', 'ICD10_2010'), +('X96.4', 'Assault by explosive material, Street and Highway', 'ICD10_2010'), +('X96.5', 'Assault by explosive material, Trade and Service Area', 'ICD10_2010'), +('X96.6', 'Assault by explosive material, Industrial and Construction Area', 'ICD10_2010'), +('X96.7', 'Assault by explosive material, Farm', 'ICD10_2010'), +('X96.8', 'Assault by explosive material, Other Specified Area', 'ICD10_2010'), +('X96.9', 'Assault by explosive material, Unspecified Place', 'ICD10_2010'), +('X97', 'Assault by smoke, fire and flames', 'ICD10_2010'), +('X97.0', 'Assault by smoke, fire and flames, Home', 'ICD10_2010'), +('X97.1', 'Assault by smoke, fire and flames, Residential Institution', 'ICD10_2010'), +('X97.2', 'Assault by smoke, fire and flames, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X97.3', 'Assault by smoke, fire and flames, Sports and Athletic Areas', 'ICD10_2010'), +('X97.4', 'Assault by smoke, fire and flames, Street and Highway', 'ICD10_2010'), +('X97.5', 'Assault by smoke, fire and flames, Trade and Service Area', 'ICD10_2010'), +('X97.6', 'Assault by smoke, fire and flames, Industrial and Construction Area', 'ICD10_2010'), +('X97.7', 'Assault by smoke, fire and flames, Farm', 'ICD10_2010'), +('X97.8', 'Assault by smoke, fire and flames, Other Specified Area', 'ICD10_2010'), +('X97.9', 'Assault by smoke, fire and flames, Unspecified Place', 'ICD10_2010'), +('X98', 'Assault by steam, hot vapours and hot objects', 'ICD10_2010'), +('X98.0', 'Assault by steam, hot vapours and hot objects, Home', 'ICD10_2010'), +('X98.1', 'Assault by steam, hot vapours and hot objects, Residential Institution', 'ICD10_2010'), +('X98.2', 'Assault by steam, hot vapours and hot objects, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X98.3', 'Assault by steam, hot vapours and hot objects, Sports and Athletic Areas', 'ICD10_2010'), +('X98.4', 'Assault by steam, hot vapours and hot objects, Street and Highway', 'ICD10_2010'), +('X98.5', 'Assault by steam, hot vapours and hot objects, Trade and Service Area', 'ICD10_2010'), +('X98.6', 'Assault by steam, hot vapours and hot objects, Industrial and Construction Area', 'ICD10_2010'), +('X98.7', 'Assault by steam, hot vapours and hot objects, Farm', 'ICD10_2010'), +('X98.8', 'Assault by steam, hot vapours and hot objects, Other Specified Area', 'ICD10_2010'), +('X98.9', 'Assault by steam, hot vapours and hot objects, Unspecified Place', 'ICD10_2010'), +('X99', 'Assault by sharp object', 'ICD10_2010'), +('X99.0', 'Assault by sharp object, Home', 'ICD10_2010'), +('X99.1', 'Assault by sharp object, Residential Institution', 'ICD10_2010'), +('X99.2', 'Assault by sharp object, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X99.3', 'Assault by sharp object, Sports and Athletic Areas', 'ICD10_2010'), +('X99.4', 'Assault by sharp object, Street and Highway', 'ICD10_2010'), +('X99.5', 'Assault by sharp object, Trade and Service Area', 'ICD10_2010'), +('X99.6', 'Assault by sharp object, Industrial and Construction Area', 'ICD10_2010'), +('X99.7', 'Assault by sharp object, Farm', 'ICD10_2010'), +('X99.8', 'Assault by sharp object, Other Specified Area', 'ICD10_2010'), +('X99.9', 'Assault by sharp object, Unspecified Place', 'ICD10_2010'), +('Y00', 'Assault by blunt object', 'ICD10_2010'), +('Y00.0', 'Assault by blunt object, Home', 'ICD10_2010'), +('Y00.1', 'Assault by blunt object, Residential Institution', 'ICD10_2010'), +('Y00.2', 'Assault by blunt object, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('Y00.3', 'Assault by blunt object, Sports and Athletic Areas', 'ICD10_2010'), +('Y00.4', 'Assault by blunt object, Street and Highway', 'ICD10_2010'), +('Y00.5', 'Assault by blunt object, Trade and Service Area', 'ICD10_2010'), +('Y00.6', 'Assault by blunt object, Industrial and Construction Area', 'ICD10_2010'), +('Y00.7', 'Assault by blunt object, Farm', 'ICD10_2010'), +('Y00.8', 'Assault by blunt object, Other Specified Area', 'ICD10_2010'), +('Y00.9', 'Assault by blunt object, Unspecified Place', 'ICD10_2010'), +('Y01', 'Assault by pushing from high place', 'ICD10_2010'), +('Y01.0', 'Assault by pushing from high place, Home', 'ICD10_2010'), +('Y01.1', 'Assault by pushing from high place, Residential Institution', 'ICD10_2010'), +('Y01.2', 'Assault by pushing from high place, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('Y01.3', 'Assault by pushing from high place, Sports and Athletic Areas', 'ICD10_2010'), +('Y01.4', 'Assault by pushing from high place, Street and Highway', 'ICD10_2010'), +('Y01.5', 'Assault by pushing from high place, Trade and Service Area', 'ICD10_2010'), +('Y01.6', 'Assault by pushing from high place, Industrial and Construction Area', 'ICD10_2010'), +('Y01.7', 'Assault by pushing from high place, Farm', 'ICD10_2010'), +('Y01.8', 'Assault by pushing from high place, Other Specified Area', 'ICD10_2010'), +('Y01.9', 'Assault by pushing from high place, Unspecified Place', 'ICD10_2010'), +('Y02', 'Assault by pushing or placing victim before moving object', 'ICD10_2010'), +('Y02.0', 'Assault by pushing or placing victim before moving object, Home', 'ICD10_2010'), +('Y02.1', 'Assault by pushing or placing victim before moving object, Residential Institution', 'ICD10_2010'), +('Y02.2', 'Assault by pushing or placing victim before moving object, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('Y02.3', 'Assault by pushing or placing victim before moving object, Sports and Athletic Areas', 'ICD10_2010'), +('Y02.4', 'Assault by pushing or placing victim before moving object, Street and Highway', 'ICD10_2010'), +('Y02.5', 'Assault by pushing or placing victim before moving object, Trade and Service Area', 'ICD10_2010'), +('Y02.6', 'Assault by pushing or placing victim before moving object, Industrial and Construction Area', 'ICD10_2010'), +('Y02.7', 'Assault by pushing or placing victim before moving object, Farm', 'ICD10_2010'), +('Y02.8', 'Assault by pushing or placing victim before moving object, Other Specified Area', 'ICD10_2010'), +('Y02.9', 'Assault by pushing or placing victim before moving object, Unspecified Place', 'ICD10_2010'), +('Y03', 'Assault by crashing of motor vehicle', 'ICD10_2010'), +('Y03.0', 'Assault by crashing of motor vehicle, Home', 'ICD10_2010'), +('Y03.1', 'Assault by crashing of motor vehicle, Residential Institution', 'ICD10_2010'), +('Y03.2', 'Assault by crashing of motor vehicle, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('Y03.3', 'Assault by crashing of motor vehicle, Sports and Athletic Areas', 'ICD10_2010'), +('Y03.4', 'Assault by crashing of motor vehicle, Street and Highway', 'ICD10_2010'), +('Y03.5', 'Assault by crashing of motor vehicle, Trade and Service Area', 'ICD10_2010'), +('Y03.6', 'Assault by crashing of motor vehicle, Industrial and Construction Area', 'ICD10_2010'), +('Y03.7', 'Assault by crashing of motor vehicle, Farm', 'ICD10_2010'), +('Y03.8', 'Assault by crashing of motor vehicle, Other Specified Area', 'ICD10_2010'), +('Y03.9', 'Assault by crashing of motor vehicle, Unspecified Place', 'ICD10_2010'), +('Y04', 'Assault by bodily force', 'ICD10_2010'), +('Y04.0', 'Assault by bodily force, Home', 'ICD10_2010'), +('Y04.1', 'Assault by bodily force, Residential Institution', 'ICD10_2010'), +('Y04.2', 'Assault by bodily force, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('Y04.3', 'Assault by bodily force, Sports and Athletic Areas', 'ICD10_2010'), +('Y04.4', 'Assault by bodily force, Street and Highway', 'ICD10_2010'), +('Y04.5', 'Assault by bodily force, Trade and Service Area', 'ICD10_2010'), +('Y04.6', 'Assault by bodily force, Industrial and Construction Area', 'ICD10_2010'), +('Y04.7', 'Assault by bodily force, Farm', 'ICD10_2010'), +('Y04.8', 'Assault by bodily force, Other Specified Area', 'ICD10_2010'), +('Y04.9', 'Assault by bodily force, Unspecified Place', 'ICD10_2010'), +('Y05', 'Sexual assault by bodily force', 'ICD10_2010'), +('Y05.0', 'Sexual assault by bodily force, Home', 'ICD10_2010'), +('Y05.1', 'Sexual assault by bodily force, Residential Institution', 'ICD10_2010'), +('Y05.2', 'Sexual assault by bodily force, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('Y05.3', 'Sexual assault by bodily force, Sports and Athletic Areas', 'ICD10_2010'), +('Y05.4', 'Sexual assault by bodily force, Street and Highway', 'ICD10_2010'), +('Y05.5', 'Sexual assault by bodily force, Trade and Service Area', 'ICD10_2010'), +('Y05.6', 'Sexual assault by bodily force, Industrial and Construction Area', 'ICD10_2010'), +('Y05.7', 'Sexual assault by bodily force, Farm', 'ICD10_2010'), +('Y05.8', 'Sexual assault by bodily force, Other Specified Area', 'ICD10_2010'), +('Y05.9', 'Sexual assault by bodily force, Unspecified Place', 'ICD10_2010'), +('Y06', 'Neglect and abandonment', 'ICD10_2010'), +('Y06.0', 'By spouse or partner', 'ICD10_2010'), +('Y06.1', 'By parent', 'ICD10_2010'), +('Y06.2', 'By acquaintance or friend', 'ICD10_2010'), +('Y06.8', 'By other specified persons', 'ICD10_2010'), +('Y06.9', 'By unspecified person', 'ICD10_2010'), +('Y07', 'Other maltreatment', 'ICD10_2010'), +('Y07.0', 'By spouse or partner', 'ICD10_2010'), +('Y07.1', 'By parent', 'ICD10_2010'), +('Y07.2', 'By acquaintance or friend', 'ICD10_2010'), +('Y07.3', 'By official authorities', 'ICD10_2010'), +('Y07.8', 'By other specified persons', 'ICD10_2010'), +('Y07.9', 'By unspecified person', 'ICD10_2010'), +('Y08', 'Assault by other specified means', 'ICD10_2010'), +('Y08.0', 'Assault by other specified means, Home', 'ICD10_2010'), +('Y08.1', 'Assault by other specified means, Residential Institution', 'ICD10_2010'), +('Y08.2', 'Assault by other specified means, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('Y08.3', 'Assault by other specified means, Sports and Athletic Areas', 'ICD10_2010'), +('Y08.4', 'Assault by other specified means, Street and Highway', 'ICD10_2010'), +('Y08.5', 'Assault by other specified means, Trade and Service Area', 'ICD10_2010'), +('Y08.6', 'Assault by other specified means, Industrial and Construction Area', 'ICD10_2010'), +('Y08.7', 'Assault by other specified means, Farm', 'ICD10_2010'), +('Y08.8', 'Assault by other specified means, Other Specified Area', 'ICD10_2010'), +('Y08.9', 'Assault by other specified means, Unspecified Place', 'ICD10_2010'), +('Y09', 'Assault by unspecified means', 'ICD10_2010'), +('Y09.0', 'Assault by unspecified means, Home', 'ICD10_2010'), +('Y09.1', 'Assault by unspecified means, Residential Institution', 'ICD10_2010'), +('Y09.2', 'Assault by unspecified means, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('Y09.3', 'Assault by unspecified means, Sports and Athletic Areas', 'ICD10_2010'), +('Y09.4', 'Assault by unspecified means, Street and Highway', 'ICD10_2010'), +('Y09.5', 'Assault by unspecified means, Trade and Service Area', 'ICD10_2010'), +('Y09.6', 'Assault by unspecified means, Industrial and Construction Area', 'ICD10_2010'), +('Y09.7', 'Assault by unspecified means, Farm', 'ICD10_2010'), +('Y09.8', 'Assault by unspecified means, Other Specified Area', 'ICD10_2010'), +('Y09.9', 'Assault by unspecified means, Unspecified Place', 'ICD10_2010'), +('Y10', 'Poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, undetermined intent', 'ICD10_2010'), +('Y10.0', 'Poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, undetermined intent, Home', 'ICD10_2010'), +('Y10.1', 'Poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, undetermined intent, Residential Institution', 'ICD10_2010'), +('Y10.2', 'Poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, undetermined intent, School, Other Institution and Public Admimist', 'ICD10_2010'), +('Y10.3', 'Poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, undetermined intent, Sports and Athletic Areas', 'ICD10_2010'), +('Y10.4', 'Poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, undetermined intent, Street and Highway', 'ICD10_2010'), +('Y10.5', 'Poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, undetermined intent, Trade and Service Area', 'ICD10_2010'), +('Y10.6', 'Poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, undetermined intent, Industrial and Construction Area', 'ICD10_2010'), +('Y10.7', 'Poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, undetermined intent, Farm', 'ICD10_2010'), +('Y10.8', 'Poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, undetermined intent, Other Specified Area', 'ICD10_2010'), +('Y10.9', 'Poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, undetermined intent, Unspecified Place', 'ICD10_2010'), +('Y11', 'Poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, undetermined intent', 'ICD10_2010'), +('Y11.0', 'Poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, undetermined intent,', 'ICD10_2010'), +('Y11.1', 'Poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, undetermined intent,', 'ICD10_2010'), +('Y11.2', 'Poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, undetermined intent,', 'ICD10_2010'), +('Y11.3', 'Poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, undetermined intent,', 'ICD10_2010'), +('Y11.4', 'Poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, undetermined intent,', 'ICD10_2010'), +('Y11.5', 'Poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, undetermined intent,', 'ICD10_2010'), +('Y11.6', 'Poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, undetermined intent,', 'ICD10_2010'), +('Y11.7', 'Poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, undetermined intent,', 'ICD10_2010'), +('Y11.8', 'Poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, undetermined intent,', 'ICD10_2010'), +('Y11.9', 'Poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, undetermined intent,', 'ICD10_2010'), +('Y12', 'Poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, undetermined intent', 'ICD10_2010'), +('Y12.0', 'Poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, undetermined intent, Home', 'ICD10_2010'), +('Y12.1', 'Poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, undetermined intent, Residential Institution', 'ICD10_2010'), +('Y12.2', 'Poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, undetermined intent, School, Other Institution ', 'ICD10_2010'), +('Y12.3', 'Poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, undetermined intent, Sports and Athletic Areas', 'ICD10_2010'), +('Y12.4', 'Poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, undetermined intent, Street and Highway', 'ICD10_2010'), +('Y12.5', 'Poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, undetermined intent, Trade and Service Area', 'ICD10_2010'), +('Y12.6', 'Poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, undetermined intent, Industrial and Constructio', 'ICD10_2010'), +('Y12.7', 'Poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, undetermined intent, Farm', 'ICD10_2010'), +('Y12.8', 'Poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, undetermined intent, Other Specified Area', 'ICD10_2010'), +('Y12.9', 'Poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, undetermined intent, Unspecified Place', 'ICD10_2010'), +('Y13', 'Poisoning by and exposure to other drugs acting on the autonomic nervous system, undetermined intent', 'ICD10_2010'), +('Y13.0', 'Poisoning by and exposure to other drugs acting on the autonomic nervous system, undetermined intent, Home', 'ICD10_2010'), +('Y13.1', 'Poisoning by and exposure to other drugs acting on the autonomic nervous system, undetermined intent, Residential Institution', 'ICD10_2010'), +('Y13.2', 'Poisoning by and exposure to other drugs acting on the autonomic nervous system, undetermined intent, School, Other Institution and Public Admimistrat', 'ICD10_2010'), +('Y13.3', 'Poisoning by and exposure to other drugs acting on the autonomic nervous system, undetermined intent, Sports and Athletic Areas', 'ICD10_2010'), +('Y13.4', 'Poisoning by and exposure to other drugs acting on the autonomic nervous system, undetermined intent, Street and Highway', 'ICD10_2010'), +('Y13.5', 'Poisoning by and exposure to other drugs acting on the autonomic nervous system, undetermined intent, Trade and Service Area', 'ICD10_2010'), +('Y13.6', 'Poisoning by and exposure to other drugs acting on the autonomic nervous system, undetermined intent, Industrial and Construction Area', 'ICD10_2010'), +('Y13.7', 'Poisoning by and exposure to other drugs acting on the autonomic nervous system, undetermined intent, Farm', 'ICD10_2010'), +('Y13.8', 'Poisoning by and exposure to other drugs acting on the autonomic nervous system, undetermined intent, Other Specified Area', 'ICD10_2010'), +('Y13.9', 'Poisoning by and exposure to other drugs acting on the autonomic nervous system, undetermined intent, Unspecified Place', 'ICD10_2010'), +('Y14', 'Poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, undetermined intent', 'ICD10_2010'), +('Y14.0', 'Poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, undetermined intent, Home', 'ICD10_2010'), +('Y14.1', 'Poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, undetermined intent, Residential Institution', 'ICD10_2010'), +('Y14.2', 'Poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, undetermined intent, School, Other Institution and Pu', 'ICD10_2010'), +('Y14.3', 'Poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, undetermined intent, Sports and Athletic Areas', 'ICD10_2010'), +('Y14.4', 'Poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, undetermined intent, Street and Highway', 'ICD10_2010'), +('Y14.5', 'Poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, undetermined intent, Trade and Service Area', 'ICD10_2010'), +('Y14.6', 'Poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, undetermined intent, Industrial and Construction Area', 'ICD10_2010'), +('Y14.7', 'Poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, undetermined intent, Farm', 'ICD10_2010'), +('Y14.8', 'Poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, undetermined intent, Other Specified Area', 'ICD10_2010'), +('Y14.9', 'Poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, undetermined intent, Unspecified Place', 'ICD10_2010'); +INSERT INTO `icd10` (`ID_ICD10`, `Diagnosa`, `Versi_ICD10`) VALUES +('Y15', 'Poisoning by and exposure to alcohol, undetermined intent', 'ICD10_2010'), +('Y15.0', 'Poisoning by and exposure to alcohol, undetermined intent, Home', 'ICD10_2010'), +('Y15.1', 'Poisoning by and exposure to alcohol, undetermined intent, Residential Institution', 'ICD10_2010'), +('Y15.2', 'Poisoning by and exposure to alcohol, undetermined intent, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('Y15.3', 'Poisoning by and exposure to alcohol, undetermined intent, Sports and Athletic Areas', 'ICD10_2010'), +('Y15.4', 'Poisoning by and exposure to alcohol, undetermined intent, Street and Highway', 'ICD10_2010'), +('Y15.5', 'Poisoning by and exposure to alcohol, undetermined intent, Trade and Service Area', 'ICD10_2010'), +('Y15.6', 'Poisoning by and exposure to alcohol, undetermined intent, Industrial and Construction Area', 'ICD10_2010'), +('Y15.7', 'Poisoning by and exposure to alcohol, undetermined intent, Farm', 'ICD10_2010'), +('Y15.8', 'Poisoning by and exposure to alcohol, undetermined intent, Other Specified Area', 'ICD10_2010'), +('Y15.9', 'Poisoning by and exposure to alcohol, undetermined intent, Unspecified Place', 'ICD10_2010'), +('Y16', 'Poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, undetermined intent', 'ICD10_2010'), +('Y16.0', 'Poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, undetermined intent, Home', 'ICD10_2010'), +('Y16.1', 'Poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, undetermined intent, Residential Institution', 'ICD10_2010'), +('Y16.2', 'Poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, undetermined intent, School, Other Institution and Publi', 'ICD10_2010'), +('Y16.3', 'Poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, undetermined intent, Sports and Athletic Areas', 'ICD10_2010'), +('Y16.4', 'Poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, undetermined intent, Street and Highway', 'ICD10_2010'), +('Y16.5', 'Poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, undetermined intent, Trade and Service Area', 'ICD10_2010'), +('Y16.6', 'Poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, undetermined intent, Industrial and Construction Area', 'ICD10_2010'), +('Y16.7', 'Poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, undetermined intent, Farm', 'ICD10_2010'), +('Y16.8', 'Poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, undetermined intent, Other Specified Area', 'ICD10_2010'), +('Y16.9', 'Poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, undetermined intent, Unspecified Place', 'ICD10_2010'), +('Y17', 'Poisoning by and exposure to other gases and vapours, undetermined intent', 'ICD10_2010'), +('Y17.0', 'Poisoning by and exposure to other gases and vapours, undetermined intent, Home', 'ICD10_2010'), +('Y17.1', 'Poisoning by and exposure to other gases and vapours, undetermined intent, Residential Institution', 'ICD10_2010'), +('Y17.2', 'Poisoning by and exposure to other gases and vapours, undetermined intent, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('Y17.3', 'Poisoning by and exposure to other gases and vapours, undetermined intent, Sports and Athletic Areas', 'ICD10_2010'), +('Y17.4', 'Poisoning by and exposure to other gases and vapours, undetermined intent, Street and Highway', 'ICD10_2010'), +('Y17.5', 'Poisoning by and exposure to other gases and vapours, undetermined intent, Trade and Service Area', 'ICD10_2010'), +('Y17.6', 'Poisoning by and exposure to other gases and vapours, undetermined intent, Industrial and Construction Area', 'ICD10_2010'), +('Y17.7', 'Poisoning by and exposure to other gases and vapours, undetermined intent, Farm', 'ICD10_2010'), +('Y17.8', 'Poisoning by and exposure to other gases and vapours, undetermined intent, Other Specified Area', 'ICD10_2010'), +('Y17.9', 'Poisoning by and exposure to other gases and vapours, undetermined intent, Unspecified Place', 'ICD10_2010'), +('Y18', 'Poisoning by and exposure to pesticides, undetermined intent', 'ICD10_2010'), +('Y18.0', 'Poisoning by and exposure to pesticides, undetermined intent, Home', 'ICD10_2010'), +('Y18.1', 'Poisoning by and exposure to pesticides, undetermined intent, Residential Institution', 'ICD10_2010'), +('Y18.2', 'Poisoning by and exposure to pesticides, undetermined intent, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('Y18.3', 'Poisoning by and exposure to pesticides, undetermined intent, Sports and Athletic Areas', 'ICD10_2010'), +('Y18.4', 'Poisoning by and exposure to pesticides, undetermined intent, Street and Highway', 'ICD10_2010'), +('Y18.5', 'Poisoning by and exposure to pesticides, undetermined intent, Trade and Service Area', 'ICD10_2010'), +('Y18.6', 'Poisoning by and exposure to pesticides, undetermined intent, Industrial and Construction Area', 'ICD10_2010'), +('Y18.7', 'Poisoning by and exposure to pesticides, undetermined intent, Farm', 'ICD10_2010'), +('Y18.8', 'Poisoning by and exposure to pesticides, undetermined intent, Other Specified Area', 'ICD10_2010'), +('Y18.9', 'Poisoning by and exposure to pesticides, undetermined intent, Unspecified Place', 'ICD10_2010'), +('Y19', 'Poisoning by and exposure to other and unspecified chemicals and noxious substances, undetermined intent', 'ICD10_2010'), +('Y19.0', 'Poisoning by and exposure to other and unspecified chemicals and noxious substances, undetermined intent, Home', 'ICD10_2010'), +('Y19.1', 'Poisoning by and exposure to other and unspecified chemicals and noxious substances, undetermined intent, Residential Institution', 'ICD10_2010'), +('Y19.2', 'Poisoning by and exposure to other and unspecified chemicals and noxious substances, undetermined intent, School, Other Institution and Public Admimis', 'ICD10_2010'), +('Y19.3', 'Poisoning by and exposure to other and unspecified chemicals and noxious substances, undetermined intent, Sports and Athletic Areas', 'ICD10_2010'), +('Y19.4', 'Poisoning by and exposure to other and unspecified chemicals and noxious substances, undetermined intent, Street and Highway', 'ICD10_2010'), +('Y19.5', 'Poisoning by and exposure to other and unspecified chemicals and noxious substances, undetermined intent, Trade and Service Area', 'ICD10_2010'), +('Y19.6', 'Poisoning by and exposure to other and unspecified chemicals and noxious substances, undetermined intent, Industrial and Construction Area', 'ICD10_2010'), +('Y19.7', 'Poisoning by and exposure to other and unspecified chemicals and noxious substances, undetermined intent, Farm', 'ICD10_2010'), +('Y19.8', 'Poisoning by and exposure to other and unspecified chemicals and noxious substances, undetermined intent, Other Specified Area', 'ICD10_2010'), +('Y19.9', 'Poisoning by and exposure to other and unspecified chemicals and noxious substances, undetermined intent, Unspecified Place', 'ICD10_2010'), +('Y20', 'Hanging, strangulation and suffocation, undetermined intent', 'ICD10_2010'), +('Y20.0', 'Hanging, strangulation and suffocation, undetermined intent, Home', 'ICD10_2010'), +('Y20.1', 'Hanging, strangulation and suffocation, undetermined intent, Residential Institution', 'ICD10_2010'), +('Y20.2', 'Hanging, strangulation and suffocation, undetermined intent, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('Y20.3', 'Hanging, strangulation and suffocation, undetermined intent, Sports and Athletic Areas', 'ICD10_2010'), +('Y20.4', 'Hanging, strangulation and suffocation, undetermined intent, Street and Highway', 'ICD10_2010'), +('Y20.5', 'Hanging, strangulation and suffocation, undetermined intent, Trade and Service Area', 'ICD10_2010'), +('Y20.6', 'Hanging, strangulation and suffocation, undetermined intent, Industrial and Construction Area', 'ICD10_2010'), +('Y20.7', 'Hanging, strangulation and suffocation, undetermined intent, Farm', 'ICD10_2010'), +('Y20.8', 'Hanging, strangulation and suffocation, undetermined intent, Other Specified Area', 'ICD10_2010'), +('Y20.9', 'Hanging, strangulation and suffocation, undetermined intent, Unspecified Place', 'ICD10_2010'), +('Y21', 'Drowning and submersion, undetermined intent', 'ICD10_2010'), +('Y21.0', 'Drowning and submersion, undetermined intent, Home', 'ICD10_2010'), +('Y21.1', 'Drowning and submersion, undetermined intent, Residential Institution', 'ICD10_2010'), +('Y21.2', 'Drowning and submersion, undetermined intent, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('Y21.3', 'Drowning and submersion, undetermined intent, Sports and Athletic Areas', 'ICD10_2010'), +('Y21.4', 'Drowning and submersion, undetermined intent, Street and Highway', 'ICD10_2010'), +('Y21.5', 'Drowning and submersion, undetermined intent, Trade and Service Area', 'ICD10_2010'), +('Y21.6', 'Drowning and submersion, undetermined intent, Industrial and Construction Area', 'ICD10_2010'), +('Y21.7', 'Drowning and submersion, undetermined intent, Farm', 'ICD10_2010'), +('Y21.8', 'Drowning and submersion, undetermined intent, Other Specified Area', 'ICD10_2010'), +('Y21.9', 'Drowning and submersion, undetermined intent, Unspecified Place', 'ICD10_2010'), +('Y22', 'Handgun discharge, undetermined intent', 'ICD10_2010'), +('Y22.0', 'Handgun discharge, undetermined intent, Home', 'ICD10_2010'), +('Y22.1', 'Handgun discharge, undetermined intent, Residential Institution', 'ICD10_2010'), +('Y22.2', 'Handgun discharge, undetermined intent, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('Y22.3', 'Handgun discharge, undetermined intent, Sports and Athletic Areas', 'ICD10_2010'), +('Y22.4', 'Handgun discharge, undetermined intent, Street and Highway', 'ICD10_2010'), +('Y22.5', 'Handgun discharge, undetermined intent, Trade and Service Area', 'ICD10_2010'), +('Y22.6', 'Handgun discharge, undetermined intent, Industrial and Construction Area', 'ICD10_2010'), +('Y22.7', 'Handgun discharge, undetermined intent, Farm', 'ICD10_2010'), +('Y22.8', 'Handgun discharge, undetermined intent, Other Specified Area', 'ICD10_2010'), +('Y22.9', 'Handgun discharge, undetermined intent, Unspecified Place', 'ICD10_2010'), +('Y23', 'Rifle, shotgun and larger firearm discharge, undetermined intent', 'ICD10_2010'), +('Y23.0', 'Rifle, shotgun and larger firearm discharge, undetermined intent, Home', 'ICD10_2010'), +('Y23.1', 'Rifle, shotgun and larger firearm discharge, undetermined intent, Residential Institution', 'ICD10_2010'), +('Y23.2', 'Rifle, shotgun and larger firearm discharge, undetermined intent, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('Y23.3', 'Rifle, shotgun and larger firearm discharge, undetermined intent, Sports and Athletic Areas', 'ICD10_2010'), +('Y23.4', 'Rifle, shotgun and larger firearm discharge, undetermined intent, Street and Highway', 'ICD10_2010'), +('Y23.5', 'Rifle, shotgun and larger firearm discharge, undetermined intent, Trade and Service Area', 'ICD10_2010'), +('Y23.6', 'Rifle, shotgun and larger firearm discharge, undetermined intent, Industrial and Construction Area', 'ICD10_2010'), +('Y23.7', 'Rifle, shotgun and larger firearm discharge, undetermined intent, Farm', 'ICD10_2010'), +('Y23.8', 'Rifle, shotgun and larger firearm discharge, undetermined intent, Other Specified Area', 'ICD10_2010'), +('Y23.9', 'Rifle, shotgun and larger firearm discharge, undetermined intent, Unspecified Place', 'ICD10_2010'), +('Y24', 'Other and unspecified firearm discharge, undetermined intent', 'ICD10_2010'), +('Y24.0', 'Other and unspecified firearm discharge, undetermined intent, Home', 'ICD10_2010'), +('Y24.1', 'Other and unspecified firearm discharge, undetermined intent, Residential Institution', 'ICD10_2010'), +('Y24.2', 'Other and unspecified firearm discharge, undetermined intent, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('Y24.3', 'Other and unspecified firearm discharge, undetermined intent, Sports and Athletic Areas', 'ICD10_2010'), +('Y24.4', 'Other and unspecified firearm discharge, undetermined intent, Street and Highway', 'ICD10_2010'), +('Y24.5', 'Other and unspecified firearm discharge, undetermined intent, Trade and Service Area', 'ICD10_2010'), +('Y24.6', 'Other and unspecified firearm discharge, undetermined intent, Industrial and Construction Area', 'ICD10_2010'), +('Y24.7', 'Other and unspecified firearm discharge, undetermined intent, Farm', 'ICD10_2010'), +('Y24.8', 'Other and unspecified firearm discharge, undetermined intent, Other Specified Area', 'ICD10_2010'), +('Y24.9', 'Other and unspecified firearm discharge, undetermined intent, Unspecified Place', 'ICD10_2010'), +('Y25', 'Contact with explosive material, undetermined intent', 'ICD10_2010'), +('Y25.0', 'Contact with explosive material, undetermined intent, Home', 'ICD10_2010'), +('Y25.1', 'Contact with explosive material, undetermined intent, Residential Institution', 'ICD10_2010'), +('Y25.2', 'Contact with explosive material, undetermined intent, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('Y25.3', 'Contact with explosive material, undetermined intent, Sports and Athletic Areas', 'ICD10_2010'), +('Y25.4', 'Contact with explosive material, undetermined intent, Street and Highway', 'ICD10_2010'), +('Y25.5', 'Contact with explosive material, undetermined intent, Trade and Service Area', 'ICD10_2010'), +('Y25.6', 'Contact with explosive material, undetermined intent, Industrial and Construction Area', 'ICD10_2010'), +('Y25.7', 'Contact with explosive material, undetermined intent, Farm', 'ICD10_2010'), +('Y25.8', 'Contact with explosive material, undetermined intent, Other Specified Area', 'ICD10_2010'), +('Y25.9', 'Contact with explosive material, undetermined intent, Unspecified Place', 'ICD10_2010'), +('Y26', 'Exposure to smoke, fire and flames, undetermined intent', 'ICD10_2010'), +('Y26.0', 'Exposure to smoke, fire and flames, undetermined intent, Home', 'ICD10_2010'), +('Y26.1', 'Exposure to smoke, fire and flames, undetermined intent, Residential Institution', 'ICD10_2010'), +('Y26.2', 'Exposure to smoke, fire and flames, undetermined intent, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('Y26.3', 'Exposure to smoke, fire and flames, undetermined intent, Sports and Athletic Areas', 'ICD10_2010'), +('Y26.4', 'Exposure to smoke, fire and flames, undetermined intent, Street and Highway', 'ICD10_2010'), +('Y26.5', 'Exposure to smoke, fire and flames, undetermined intent, Trade and Service Area', 'ICD10_2010'), +('Y26.6', 'Exposure to smoke, fire and flames, undetermined intent, Industrial and Construction Area', 'ICD10_2010'), +('Y26.7', 'Exposure to smoke, fire and flames, undetermined intent, Farm', 'ICD10_2010'), +('Y26.8', 'Exposure to smoke, fire and flames, undetermined intent, Other Specified Area', 'ICD10_2010'), +('Y26.9', 'Exposure to smoke, fire and flames, undetermined intent, Unspecified Place', 'ICD10_2010'), +('Y27', 'Contact with steam, hot vapours and hot objects, undetermined intent', 'ICD10_2010'), +('Y27.0', 'Contact with steam, hot vapours and hot objects, undetermined intent, Home', 'ICD10_2010'), +('Y27.1', 'Contact with steam, hot vapours and hot objects, undetermined intent, Residential Institution', 'ICD10_2010'), +('Y27.2', 'Contact with steam, hot vapours and hot objects, undetermined intent, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('Y27.3', 'Contact with steam, hot vapours and hot objects, undetermined intent, Sports and Athletic Areas', 'ICD10_2010'), +('Y27.4', 'Contact with steam, hot vapours and hot objects, undetermined intent, Street and Highway', 'ICD10_2010'), +('Y27.5', 'Contact with steam, hot vapours and hot objects, undetermined intent, Trade and Service Area', 'ICD10_2010'), +('Y27.6', 'Contact with steam, hot vapours and hot objects, undetermined intent, Industrial and Construction Area', 'ICD10_2010'), +('Y27.7', 'Contact with steam, hot vapours and hot objects, undetermined intent, Farm', 'ICD10_2010'), +('Y27.8', 'Contact with steam, hot vapours and hot objects, undetermined intent, Other Specified Area', 'ICD10_2010'), +('Y27.9', 'Contact with steam, hot vapours and hot objects, undetermined intent, Unspecified Place', 'ICD10_2010'), +('Y28', 'Contact with sharp object, undetermined intent', 'ICD10_2010'), +('Y28.0', 'Contact with sharp object, undetermined intent, Home', 'ICD10_2010'), +('Y28.1', 'Contact with sharp object, undetermined intent, Residential Institution', 'ICD10_2010'), +('Y28.2', 'Contact with sharp object, undetermined intent, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('Y28.3', 'Contact with sharp object, undetermined intent, Sports and Athletic Areas', 'ICD10_2010'), +('Y28.4', 'Contact with sharp object, undetermined intent, Street and Highway', 'ICD10_2010'), +('Y28.5', 'Contact with sharp object, undetermined intent, Trade and Service Area', 'ICD10_2010'), +('Y28.6', 'Contact with sharp object, undetermined intent, Industrial and Construction Area', 'ICD10_2010'), +('Y28.7', 'Contact with sharp object, undetermined intent, Farm', 'ICD10_2010'), +('Y28.8', 'Contact with sharp object, undetermined intent, Other Specified Area', 'ICD10_2010'), +('Y28.9', 'Contact with sharp object, undetermined intent, Unspecified Place', 'ICD10_2010'), +('Y29', 'Contact with blunt object, undetermined intent', 'ICD10_2010'), +('Y29.0', 'Contact with blunt object, undetermined intent, Home', 'ICD10_2010'), +('Y29.1', 'Contact with blunt object, undetermined intent, Residential Institution', 'ICD10_2010'), +('Y29.2', 'Contact with blunt object, undetermined intent, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('Y29.3', 'Contact with blunt object, undetermined intent, Sports and Athletic Areas', 'ICD10_2010'), +('Y29.4', 'Contact with blunt object, undetermined intent, Street and Highway', 'ICD10_2010'), +('Y29.5', 'Contact with blunt object, undetermined intent, Trade and Service Area', 'ICD10_2010'), +('Y29.6', 'Contact with blunt object, undetermined intent, Industrial and Construction Area', 'ICD10_2010'), +('Y29.7', 'Contact with blunt object, undetermined intent, Farm', 'ICD10_2010'), +('Y29.8', 'Contact with blunt object, undetermined intent, Other Specified Area', 'ICD10_2010'), +('Y29.9', 'Contact with blunt object, undetermined intent, Unspecified Place', 'ICD10_2010'), +('Y30', 'Falling, jumping or pushed from a high place, undetermined intent', 'ICD10_2010'), +('Y30.0', 'Falling, jumping or pushed from a high place, undetermined intent, Home', 'ICD10_2010'), +('Y30.1', 'Falling, jumping or pushed from a high place, undetermined intent, Residential Institution', 'ICD10_2010'), +('Y30.2', 'Falling, jumping or pushed from a high place, undetermined intent, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('Y30.3', 'Falling, jumping or pushed from a high place, undetermined intent, Sports and Athletic Areas', 'ICD10_2010'), +('Y30.4', 'Falling, jumping or pushed from a high place, undetermined intent, Street and Highway', 'ICD10_2010'), +('Y30.5', 'Falling, jumping or pushed from a high place, undetermined intent, Trade and Service Area', 'ICD10_2010'), +('Y30.6', 'Falling, jumping or pushed from a high place, undetermined intent, Industrial and Construction Area', 'ICD10_2010'), +('Y30.7', 'Falling, jumping or pushed from a high place, undetermined intent, Farm', 'ICD10_2010'), +('Y30.8', 'Falling, jumping or pushed from a high place, undetermined intent, Other Specified Area', 'ICD10_2010'), +('Y30.9', 'Falling, jumping or pushed from a high place, undetermined intent, Unspecified Place', 'ICD10_2010'), +('Y31', 'Falling, lying or running before or into moving object, undetermined intent', 'ICD10_2010'), +('Y31.0', 'Falling, lying or running before or into moving object, undetermined intent, Home', 'ICD10_2010'), +('Y31.1', 'Falling, lying or running before or into moving object, undetermined intent, Residential Institution', 'ICD10_2010'), +('Y31.2', 'Falling, lying or running before or into moving object, undetermined intent, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('Y31.3', 'Falling, lying or running before or into moving object, undetermined intent, Sports and Athletic Areas', 'ICD10_2010'), +('Y31.4', 'Falling, lying or running before or into moving object, undetermined intent, Street and Highway', 'ICD10_2010'), +('Y31.5', 'Falling, lying or running before or into moving object, undetermined intent, Trade and Service Area', 'ICD10_2010'), +('Y31.6', 'Falling, lying or running before or into moving object, undetermined intent, Industrial and Construction Area', 'ICD10_2010'), +('Y31.7', 'Falling, lying or running before or into moving object, undetermined intent, Farm', 'ICD10_2010'), +('Y31.8', 'Falling, lying or running before or into moving object, undetermined intent, Other Specified Area', 'ICD10_2010'), +('Y31.9', 'Falling, lying or running before or into moving object, undetermined intent, Unspecified Place', 'ICD10_2010'), +('Y32', 'Crashing of motor vehicle, undetermined intent', 'ICD10_2010'), +('Y32.0', 'Crashing of motor vehicle, undetermined intent, Home', 'ICD10_2010'), +('Y32.1', 'Crashing of motor vehicle, undetermined intent, Residential Institution', 'ICD10_2010'), +('Y32.2', 'Crashing of motor vehicle, undetermined intent, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('Y32.3', 'Crashing of motor vehicle, undetermined intent, Sports and Athletic Areas', 'ICD10_2010'), +('Y32.4', 'Crashing of motor vehicle, undetermined intent, Street and Highway', 'ICD10_2010'), +('Y32.5', 'Crashing of motor vehicle, undetermined intent, Trade and Service Area', 'ICD10_2010'), +('Y32.6', 'Crashing of motor vehicle, undetermined intent, Industrial and Construction Area', 'ICD10_2010'), +('Y32.7', 'Crashing of motor vehicle, undetermined intent, Farm', 'ICD10_2010'), +('Y32.8', 'Crashing of motor vehicle, undetermined intent, Other Specified Area', 'ICD10_2010'), +('Y32.9', 'Crashing of motor vehicle, undetermined intent, Unspecified Place', 'ICD10_2010'), +('Y33', 'Other specified events, undetermined intent', 'ICD10_2010'), +('Y33.0', 'Other specified events, undetermined intent, Home', 'ICD10_2010'), +('Y33.1', 'Other specified events, undetermined intent, Residential Institution', 'ICD10_2010'), +('Y33.2', 'Other specified events, undetermined intent, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('Y33.3', 'Other specified events, undetermined intent, Sports and Athletic Areas', 'ICD10_2010'), +('Y33.4', 'Other specified events, undetermined intent, Street and Highway', 'ICD10_2010'), +('Y33.5', 'Other specified events, undetermined intent, Trade and Service Area', 'ICD10_2010'), +('Y33.6', 'Other specified events, undetermined intent, Industrial and Construction Area', 'ICD10_2010'), +('Y33.7', 'Other specified events, undetermined intent, Farm', 'ICD10_2010'), +('Y33.8', 'Other specified events, undetermined intent, Other Specified Area', 'ICD10_2010'), +('Y33.9', 'Other specified events, undetermined intent, Unspecified Place', 'ICD10_2010'), +('Y34', 'Unspecified event, undetermined intent', 'ICD10_2010'), +('Y34.0', 'Unspecified event, undetermined intent, Home', 'ICD10_2010'), +('Y34.1', 'Unspecified event, undetermined intent, Residential Institution', 'ICD10_2010'), +('Y34.2', 'Unspecified event, undetermined intent, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('Y34.3', 'Unspecified event, undetermined intent, Sports and Athletic Areas', 'ICD10_2010'), +('Y34.4', 'Unspecified event, undetermined intent, Street and Highway', 'ICD10_2010'), +('Y34.5', 'Unspecified event, undetermined intent, Trade and Service Area', 'ICD10_2010'), +('Y34.6', 'Unspecified event, undetermined intent, Industrial and Construction Area', 'ICD10_2010'), +('Y34.7', 'Unspecified event, undetermined intent, Farm', 'ICD10_2010'), +('Y34.8', 'Unspecified event, undetermined intent, Other Specified Area', 'ICD10_2010'), +('Y34.9', 'Unspecified event, undetermined intent, Unspecified Place', 'ICD10_2010'), +('Y35', 'Legal intervention', 'ICD10_2010'), +('Y35.0', 'Legal intervention involving firearm discharge', 'ICD10_2010'), +('Y35.1', 'Legal intervention involving explosives', 'ICD10_2010'), +('Y35.2', 'Legal intervention involving gas', 'ICD10_2010'), +('Y35.3', 'Legal intervention involving blunt objects', 'ICD10_2010'), +('Y35.4', 'Legal intervention involving sharp objects', 'ICD10_2010'), +('Y35.5', 'Legal execution', 'ICD10_2010'), +('Y35.6', 'Legal intervention involving other specified means', 'ICD10_2010'), +('Y35.7', 'Legal intervention, means unspecified', 'ICD10_2010'), +('Y36', 'Operations of war', 'ICD10_2010'), +('Y36.0', 'War operations involving explosion of marine weapons', 'ICD10_2010'), +('Y36.1', 'War operations involving destruction of aircraft', 'ICD10_2010'), +('Y36.2', 'War operations involving other explosions and fragments', 'ICD10_2010'), +('Y36.3', 'War operations involving fires, conflagrations and hot substances', 'ICD10_2010'), +('Y36.4', 'War operations involving firearm discharge and other forms of conventional warfare', 'ICD10_2010'), +('Y36.5', 'War operations involving nuclear weapons', 'ICD10_2010'), +('Y36.6', 'War operations involving biological weapons', 'ICD10_2010'), +('Y36.7', 'War operations involving chemical weapons and other forms of unconventional warfare', 'ICD10_2010'), +('Y36.8', 'War operations occurring after cessation of hostilities', 'ICD10_2010'), +('Y36.9', 'War operations, unspecified', 'ICD10_2010'), +('Y40', 'Systemic antibiotics', 'ICD10_2010'), +('Y40.0', 'Penicillins', 'ICD10_2010'), +('Y40.1', 'Cefalosporins and other beta-lactam antibiotics', 'ICD10_2010'), +('Y40.2', 'Chloramphenicol group', 'ICD10_2010'), +('Y40.3', 'Macrolides', 'ICD10_2010'), +('Y40.4', 'Tetracyclines', 'ICD10_2010'), +('Y40.5', 'Aminoglycosides', 'ICD10_2010'), +('Y40.6', 'Rifamycins', 'ICD10_2010'), +('Y40.7', 'Antifungal antibiotics, systemically used', 'ICD10_2010'), +('Y40.8', 'Other systemic antibiotics', 'ICD10_2010'), +('Y40.9', 'Systemic antibiotic, unspecified', 'ICD10_2010'), +('Y41', 'Other systemic anti-infectives and antiparasitics', 'ICD10_2010'), +('Y41.0', 'Sulfonamides', 'ICD10_2010'), +('Y41.1', 'Antimycobacterial drugs', 'ICD10_2010'), +('Y41.2', 'Antimalarials and drugs acting on other blood protozoa', 'ICD10_2010'), +('Y41.3', 'Other antiprotozoal drugs', 'ICD10_2010'), +('Y41.4', 'Anthelminthics', 'ICD10_2010'), +('Y41.5', 'Antiviral drugs', 'ICD10_2010'), +('Y41.8', 'Other specified systemic anti-infectives and antiparasitics', 'ICD10_2010'), +('Y41.9', 'Systemic anti-infective and antiparasitic, unspecified', 'ICD10_2010'), +('Y42', 'Hormones and their synthetic substitutes and antagonists, not elsewhere classified', 'ICD10_2010'), +('Y42.0', 'Glucocorticoids and synthetic analogues', 'ICD10_2010'), +('Y42.1', 'Thyroid hormones and substitutes', 'ICD10_2010'), +('Y42.2', 'Antithyroid drugs', 'ICD10_2010'), +('Y42.3', 'Insulin and oral hypoglycaemic [antidiabetic] drugs', 'ICD10_2010'), +('Y42.4', 'Oral contraceptives', 'ICD10_2010'), +('Y42.5', 'Other estrogens and progestogens', 'ICD10_2010'), +('Y42.6', 'Antigonadotrophins, antiestrogens, antiandrogens, not elsewhere classified', 'ICD10_2010'), +('Y42.7', 'Androgens and anabolic congeners', 'ICD10_2010'), +('Y42.8', 'Other and unspecified hormones and their synthetic substitutes', 'ICD10_2010'), +('Y42.9', 'Other and unspecified hormone antagonists', 'ICD10_2010'), +('Y43', 'Primarily systemic agents', 'ICD10_2010'), +('Y43.0', 'Antiallergic and antiemetic drugs', 'ICD10_2010'), +('Y43.1', 'Antineoplastic antimetabolites', 'ICD10_2010'), +('Y43.2', 'Antineoplastic natural products', 'ICD10_2010'), +('Y43.3', 'Other antineoplastic drugs', 'ICD10_2010'), +('Y43.4', 'Immunosuppressive agents', 'ICD10_2010'), +('Y43.5', 'Acidifying and alkalizing agents', 'ICD10_2010'), +('Y43.6', 'Enzymes, not elsewhere classified', 'ICD10_2010'), +('Y43.8', 'Other primarily systemic agents, not elsewhere classified', 'ICD10_2010'), +('Y43.9', 'Primarily systemic agent, unspecified', 'ICD10_2010'), +('Y44', 'Agents primarily affecting blood constituents', 'ICD10_2010'), +('Y44.0', 'Iron preparations and other anti-hypochromic-anaemia preparations', 'ICD10_2010'), +('Y44.1', 'Vitamin B12, folic acid and other anti-megaloblastic-anaemia preparations', 'ICD10_2010'), +('Y44.2', 'Anticoagulants', 'ICD10_2010'), +('Y44.3', 'Anticoagulant antagonists, vitamin K and other coagulants', 'ICD10_2010'), +('Y44.4', 'Antithrombotic drugs [platelet-aggregation inhibitors]', 'ICD10_2010'), +('Y44.5', 'Thrombolytic drugs', 'ICD10_2010'), +('Y44.6', 'Natural blood and blood products', 'ICD10_2010'), +('Y44.7', 'Plasma substitutes', 'ICD10_2010'), +('Y44.9', 'Other and unspecified agents affecting blood constituents', 'ICD10_2010'), +('Y45', 'Analgesics, antipyretics and anti-inflammatory drugs', 'ICD10_2010'), +('Y45.0', 'Opioids and related analgesics', 'ICD10_2010'), +('Y45.1', 'Salicylates', 'ICD10_2010'), +('Y45.2', 'Propionic acid derivatives', 'ICD10_2010'), +('Y45.3', 'Other nonsteroidal anti-inflammatory drugs [NSAID]', 'ICD10_2010'), +('Y45.4', 'Antirheumatics', 'ICD10_2010'), +('Y45.5', '4-Aminophenol derivatives', 'ICD10_2010'), +('Y45.8', 'Other analgesics and antipyretics', 'ICD10_2010'), +('Y45.9', 'Analgesic, antipyretic and anti-inflammatory drug, unspecified', 'ICD10_2010'), +('Y46', 'Antiepileptics and antiparkinsonism drugs', 'ICD10_2010'), +('Y46.0', 'Succinimides', 'ICD10_2010'), +('Y46.1', 'Oxazolidinediones', 'ICD10_2010'), +('Y46.2', 'Hydantoin derivatives', 'ICD10_2010'), +('Y46.3', 'Deoxybarbiturates', 'ICD10_2010'), +('Y46.4', 'Iminostilbenes', 'ICD10_2010'), +('Y46.5', 'Valproic acid', 'ICD10_2010'), +('Y46.6', 'Other and unspecified antiepileptics', 'ICD10_2010'), +('Y46.7', 'Antiparkinsonism drugs', 'ICD10_2010'), +('Y46.8', 'Antispasticity drugs', 'ICD10_2010'), +('Y47', 'Sedatives, hypnotics and antianxiety drugs', 'ICD10_2010'), +('Y47.0', 'Barbiturates, not elsewhere classified', 'ICD10_2010'), +('Y47.1', 'Benzodiazepines', 'ICD10_2010'), +('Y47.2', 'Cloral derivatives', 'ICD10_2010'), +('Y47.3', 'Paraldehyde', 'ICD10_2010'), +('Y47.4', 'Bromine compounds', 'ICD10_2010'), +('Y47.5', 'Mixed sedatives and hypnotics, not elsewhere classified', 'ICD10_2010'), +('Y47.8', 'Other sedatives, hypnotics and antianxiety drugs', 'ICD10_2010'), +('Y47.9', 'Sedative, hypnotic and antianxiety drug, unspecified', 'ICD10_2010'), +('Y48', 'Anaesthetics and therapeutic gases', 'ICD10_2010'), +('Y48.0', 'Inhaled anaesthetics', 'ICD10_2010'), +('Y48.1', 'Parenteral anaesthetics', 'ICD10_2010'), +('Y48.2', 'Other and unspecified general anaesthetics', 'ICD10_2010'), +('Y48.3', 'Local anaesthetics', 'ICD10_2010'), +('Y48.4', 'Anaesthetic, unspecified', 'ICD10_2010'), +('Y48.5', 'Therapeutic gases', 'ICD10_2010'), +('Y49', 'Psychotropic drugs, not elsewhere classified', 'ICD10_2010'), +('Y49.0', 'Tricyclic and tetracyclic antidepressants', 'ICD10_2010'), +('Y49.1', 'Monoamine-oxidase-inhibitor antidepressants', 'ICD10_2010'), +('Y49.2', 'Other and unspecified antidepressants', 'ICD10_2010'), +('Y49.3', 'Phenothiazine antipsychotics and neuroleptics', 'ICD10_2010'), +('Y49.4', 'Butyrophenone and thioxanthene neuroleptics', 'ICD10_2010'), +('Y49.5', 'Other antipsychotics and neuroleptics', 'ICD10_2010'), +('Y49.6', 'Psychodysleptics [hallucinogens]', 'ICD10_2010'), +('Y49.7', 'Psychostimulants with abuse potential', 'ICD10_2010'), +('Y49.8', 'Other psychotropic drugs, not elsewhere classified', 'ICD10_2010'), +('Y49.9', 'Psychotropic drug, unspecified', 'ICD10_2010'), +('Y50', 'Central nervous system stimulants, not elsewhere classified', 'ICD10_2010'), +('Y50.0', 'Analeptics', 'ICD10_2010'), +('Y50.1', 'Opioid receptor antagonists', 'ICD10_2010'), +('Y50.2', 'Methylxanthines, not elsewhere classified', 'ICD10_2010'), +('Y50.8', 'Other central nervous system stimulants', 'ICD10_2010'), +('Y50.9', 'Central nervous system stimulant, unspecified', 'ICD10_2010'), +('Y51', 'Drugs primarily affecting the autonomic nervous system', 'ICD10_2010'), +('Y51.0', 'Anticholinesterase agents', 'ICD10_2010'), +('Y51.1', 'Other parasympathomimetics [cholinergics]', 'ICD10_2010'), +('Y51.2', 'Ganglionic blocking drugs, not elsewhere classified', 'ICD10_2010'), +('Y51.3', 'Other parasympatholytics [anticholinergics and antimuscarinics] and spasmolytics, not elsewhere classified', 'ICD10_2010'), +('Y51.4', 'Predominantly alpha-adrenoreceptor agonists, not elsewhere classified', 'ICD10_2010'), +('Y51.5', 'Predominantly beta-adrenoreceptor agonists, not elsewhere classified', 'ICD10_2010'), +('Y51.6', 'Alpha-adrenoreceptor antagonists, not elsewhere classified', 'ICD10_2010'), +('Y51.7', 'Beta-adrenoreceptor antagonists, not elsewhere classified', 'ICD10_2010'), +('Y51.8', 'Centrally acting and adrenergic-neuron-blocking agents, not elsewhere classified', 'ICD10_2010'), +('Y51.9', 'Other and unspecified drugs primarily affecting the autonomic nervous system', 'ICD10_2010'), +('Y52', 'Agents primarily affecting the cardiovascular system', 'ICD10_2010'), +('Y52.0', 'Cardiac-stimulant glycosides and drugs of similar action', 'ICD10_2010'), +('Y52.1', 'Calcium-channel blockers', 'ICD10_2010'), +('Y52.2', 'Other antidysrhythmic drugs, not elsewhere classified', 'ICD10_2010'), +('Y52.3', 'Coronary vasodilators, not elsewhere classified', 'ICD10_2010'), +('Y52.4', 'Angiotensin-converting-enzyme inhibitors', 'ICD10_2010'), +('Y52.5', 'Other antihypertensive drugs, not elsewhere classified', 'ICD10_2010'), +('Y52.6', 'Antihyperlipidaemic and antiarteriosclerotic drugs', 'ICD10_2010'), +('Y52.7', 'Peripheral vasodilators', 'ICD10_2010'), +('Y52.8', 'Antivaricose drugs, including sclerosing agents', 'ICD10_2010'), +('Y52.9', 'Other and unspecified agents primarily affecting the cardiovascular system', 'ICD10_2010'), +('Y53', 'Agents primarily affecting the gastrointestinal system', 'ICD10_2010'), +('Y53.0', 'Histamine H2-receptor antagonists', 'ICD10_2010'), +('Y53.1', 'Other antacids and anti-gastric-secretion drugs', 'ICD10_2010'), +('Y53.2', 'Stimulant laxatives', 'ICD10_2010'), +('Y53.3', 'Saline and osmotic laxatives', 'ICD10_2010'), +('Y53.4', 'Other laxatives', 'ICD10_2010'), +('Y53.5', 'Digestants', 'ICD10_2010'), +('Y53.6', 'Antidiarrhoeal drugs', 'ICD10_2010'), +('Y53.7', 'Emetics', 'ICD10_2010'), +('Y53.8', 'Other agents primarily affecting the gastrointestinal system', 'ICD10_2010'), +('Y53.9', 'Agent primarily affecting the gastrointestinal system, unspecified', 'ICD10_2010'), +('Y54', 'Agents primarily affecting water-balance and mineral and uric acid metabolism', 'ICD10_2010'), +('Y54.0', 'Mineralocorticoids', 'ICD10_2010'), +('Y54.1', 'Mineralocorticoid antagonists [aldosterone antagonists]', 'ICD10_2010'), +('Y54.2', 'Carbonic-anhydrase inhibitors', 'ICD10_2010'), +('Y54.3', 'Benzothiadiazine derivatives', 'ICD10_2010'), +('Y54.4', 'Loop [high-ceiling] diuretics', 'ICD10_2010'), +('Y54.5', 'Other diuretics', 'ICD10_2010'), +('Y54.6', 'Electrolytic, caloric and water-balance agents', 'ICD10_2010'), +('Y54.7', 'Agents affecting calcification', 'ICD10_2010'), +('Y54.8', 'Agents affecting uric acid metabolism', 'ICD10_2010'), +('Y54.9', 'Mineral salts, not elsewhere classified', 'ICD10_2010'), +('Y55', 'Agents primarily acting on smooth and skeletal muscles and the respiratory system', 'ICD10_2010'), +('Y55.0', 'Oxytocic drugs', 'ICD10_2010'), +('Y55.1', 'Skeletal muscle relaxants [neuromuscular blocking agents]', 'ICD10_2010'), +('Y55.2', 'Other and unspecified agents primarily acting on muscles', 'ICD10_2010'), +('Y55.3', 'Antitussives', 'ICD10_2010'), +('Y55.4', 'Expectorants', 'ICD10_2010'), +('Y55.5', 'Anti-common-cold drugs', 'ICD10_2010'), +('Y55.6', 'Antiasthmatics, not elsewhere classified', 'ICD10_2010'), +('Y55.7', 'Other and unspecified agents primarily acting on the respiratory system', 'ICD10_2010'), +('Y56', 'Topical agents primarily affecting skin and mucous membrane and ophthalmological, otorhinolaryngological and dental drugs', 'ICD10_2010'), +('Y56.0', 'Local antifungal, anti-infective and anti-inflammatory drugs, not elsewhere classified', 'ICD10_2010'), +('Y56.1', 'Antipruritics', 'ICD10_2010'), +('Y56.2', 'Local astringents and local detergents', 'ICD10_2010'), +('Y56.3', 'Emollients, demulcents and protectants', 'ICD10_2010'), +('Y56.4', 'Keratolytics, keratoplastics and other hair treatment drugs and preparations', 'ICD10_2010'), +('Y56.5', 'Ophthalmological drugs and preparations', 'ICD10_2010'), +('Y56.6', 'Otorhinolaryngological drugs and preparations', 'ICD10_2010'), +('Y56.7', 'Dental drugs, topically applied', 'ICD10_2010'), +('Y56.8', 'Other topical agents', 'ICD10_2010'), +('Y56.9', 'Topical agent, unspecified', 'ICD10_2010'), +('Y57', 'Other and unspecified drugs and medicaments', 'ICD10_2010'), +('Y57.0', 'Appetite depressants [anorectics]', 'ICD10_2010'), +('Y57.1', 'Lipotropic drugs', 'ICD10_2010'), +('Y57.2', 'Antidotes and chelating agents, not elsewhere classified', 'ICD10_2010'), +('Y57.3', 'Alcohol deterrents', 'ICD10_2010'), +('Y57.4', 'Pharmaceutical excipients', 'ICD10_2010'), +('Y57.5', 'X-ray contrast media', 'ICD10_2010'), +('Y57.6', 'Other diagnostic agents', 'ICD10_2010'), +('Y57.7', 'Vitamins, not elsewhere classified', 'ICD10_2010'), +('Y57.8', 'Other drugs and medicaments', 'ICD10_2010'), +('Y57.9', 'Drug or medicament, unspecified', 'ICD10_2010'), +('Y58', 'Bacterial vaccines', 'ICD10_2010'), +('Y58.0', 'BCG vaccine', 'ICD10_2010'), +('Y58.1', 'Typhoid and paratyphoid vaccine', 'ICD10_2010'), +('Y58.2', 'Cholera vaccine', 'ICD10_2010'), +('Y58.3', 'Plague vaccine', 'ICD10_2010'), +('Y58.4', 'Tetanus vaccine', 'ICD10_2010'), +('Y58.5', 'Diphtheria vaccine', 'ICD10_2010'), +('Y58.6', 'Pertussis vaccine, including combinations with a pertussis component', 'ICD10_2010'), +('Y58.8', 'Mixed bacterial vaccines, except combinations with a pertussis component', 'ICD10_2010'), +('Y58.9', 'Other and unspecified bacterial vaccines', 'ICD10_2010'), +('Y59', 'Other and unspecified vaccines and biological substances', 'ICD10_2010'), +('Y59.0', 'Viral vaccines', 'ICD10_2010'), +('Y59.1', 'Rickettsial vaccines', 'ICD10_2010'), +('Y59.2', 'Protozoal vaccines', 'ICD10_2010'), +('Y59.3', 'Immunoglobulin', 'ICD10_2010'), +('Y59.8', 'Other specified vaccines and biological substances', 'ICD10_2010'), +('Y59.9', 'Vaccine or biological substance, unspecified', 'ICD10_2010'), +('Y60', 'Unintentional cut, puncture, perforation or haemorrhage during surgical and medical care', 'ICD10_2010'), +('Y60.0', 'During surgical operation', 'ICD10_2010'), +('Y60.1', 'During infusion or transfusion', 'ICD10_2010'), +('Y60.2', 'During kidney dialysis or other perfusion', 'ICD10_2010'), +('Y60.3', 'During injection or immunization', 'ICD10_2010'), +('Y60.4', 'During endoscopic examination', 'ICD10_2010'), +('Y60.5', 'During heart catheterization', 'ICD10_2010'), +('Y60.6', 'During aspiration, puncture and other catheterization', 'ICD10_2010'), +('Y60.7', 'During administration of enema', 'ICD10_2010'), +('Y60.8', 'During other surgical and medical care', 'ICD10_2010'), +('Y60.9', 'During unspecified surgical and medical care', 'ICD10_2010'), +('Y61', 'Foreign object accidentally left in body during surgical and medical care', 'ICD10_2010'), +('Y61.0', 'During surgical operation', 'ICD10_2010'), +('Y61.1', 'During infusion or transfusion', 'ICD10_2010'), +('Y61.2', 'During kidney dialysis or other perfusion', 'ICD10_2010'), +('Y61.3', 'During injection or immunization', 'ICD10_2010'), +('Y61.4', 'During endoscopic examination', 'ICD10_2010'), +('Y61.5', 'During heart catheterization', 'ICD10_2010'), +('Y61.6', 'During aspiration, puncture and other catheterization', 'ICD10_2010'), +('Y61.7', 'During removal of catheter or packing', 'ICD10_2010'), +('Y61.8', 'During other surgical and medical care', 'ICD10_2010'), +('Y61.9', 'During unspecified surgical and medical care', 'ICD10_2010'), +('Y62', 'Failure of sterile precautions during surgical and medical care', 'ICD10_2010'), +('Y62.0', 'During surgical operation', 'ICD10_2010'), +('Y62.1', 'During infusion or transfusion', 'ICD10_2010'), +('Y62.2', 'During kidney dialysis or other perfusion', 'ICD10_2010'), +('Y62.3', 'During injection or immunization', 'ICD10_2010'), +('Y62.4', 'During endoscopic examination', 'ICD10_2010'), +('Y62.5', 'During heart catheterization', 'ICD10_2010'), +('Y62.6', 'During aspiration, puncture and other catheterization', 'ICD10_2010'), +('Y62.8', 'During other surgical and medical care', 'ICD10_2010'), +('Y62.9', 'During unspecified surgical and medical care', 'ICD10_2010'), +('Y63', 'Failure in dosage during surgical and medical care', 'ICD10_2010'), +('Y63.0', 'Excessive amount of blood or other fluid given during transfusion or infusion', 'ICD10_2010'), +('Y63.1', 'Incorrect dilution of fluid used during infusion', 'ICD10_2010'), +('Y63.2', 'Overdose of radiation given during therapy', 'ICD10_2010'), +('Y63.3', 'Inadvertent exposure of patient to radiation during medical care', 'ICD10_2010'), +('Y63.4', 'Failure in dosage in electroshock or insulin-shock therapy', 'ICD10_2010'), +('Y63.5', 'Inappropriate temperature in local application and packing', 'ICD10_2010'), +('Y63.6', 'Nonadministration of necessary drug, medicament or biological substance', 'ICD10_2010'), +('Y63.8', 'Failure in dosage during other surgical and medical care', 'ICD10_2010'), +('Y63.9', 'Failure in dosage during unspecified surgical and medical care', 'ICD10_2010'), +('Y64', 'Contaminated medical or biological substances', 'ICD10_2010'), +('Y64.0', 'Contaminated medical or biological substance, transfused or infused', 'ICD10_2010'), +('Y64.1', 'Contaminated medical or biological substance, injected or used for immunization', 'ICD10_2010'), +('Y64.8', 'Contaminated medical or biological substance administered by other means', 'ICD10_2010'), +('Y64.9', 'Contaminated medical or biological substance administered by unspecified means', 'ICD10_2010'), +('Y65', 'Other misadventures during surgical and medical care', 'ICD10_2010'), +('Y65.0', 'Mismatched blood used in transfusion', 'ICD10_2010'), +('Y65.1', 'Wrong fluid used in infusion', 'ICD10_2010'), +('Y65.2', 'Failure in suture or ligature during surgical operation', 'ICD10_2010'), +('Y65.3', 'Endotracheal tube wrongly placed during anaesthetic procedure', 'ICD10_2010'), +('Y65.4', 'Failure to introduce or to remove other tube or instrument', 'ICD10_2010'), +('Y65.5', 'Performance of inappropriate operation', 'ICD10_2010'), +('Y65.8', 'Other specified misadventures during surgical and medical care', 'ICD10_2010'), +('Y66', 'Nonadministration of surgical and medical care', 'ICD10_2010'), +('Y69', 'Unspecified misadventure during surgical and medical care', 'ICD10_2010'), +('Y70', 'Anaesthesiology devices associated with adverse incidents', 'ICD10_2010'), +('Y70.0', 'Anaesthesiology devices associated with adverse incidents: Diagnostic and monitoring devices', 'ICD10_2010'), +('Y70.1', 'Anaesthesiology devices associated with adverse incidents: Therapeutic (nonsurgical) and rehabilitative devices', 'ICD10_2010'), +('Y70.2', 'Anaesthesiology devices associated with adverse incidents: Prosthetic and other implants, materials and accessory devices', 'ICD10_2010'), +('Y70.3', 'Anaesthesiology devices associated with adverse incidents: Surgical instruments, materials and devices (including sutures)', 'ICD10_2010'), +('Y70.8', 'Anaesthesiology devices associated with adverse incidents: Miscellaneous devices, not elsewhere classified', 'ICD10_2010'), +('Y71', 'Cardiovascular devices associated with adverse incidents', 'ICD10_2010'), +('Y71.0', 'Cardiovascular devices associated with adverse incidents: Diagnostic and monitoring devices', 'ICD10_2010'), +('Y71.1', 'Cardiovascular devices associated with adverse incidents: Therapeutic (nonsurgical) and rehabilitative devices', 'ICD10_2010'), +('Y71.2', 'Cardiovascular devices associated with adverse incidents: Prosthetic and other implants, materials and accessory devices', 'ICD10_2010'), +('Y71.3', 'Cardiovascular devices associated with adverse incidents: Surgical instruments, materials and devices (including sutures)', 'ICD10_2010'), +('Y71.8', 'Cardiovascular devices associated with adverse incidents: Miscellaneous devices, not elsewhere classified', 'ICD10_2010'), +('Y72', 'Otorhinolaryngological devices associated with adverse incidents', 'ICD10_2010'), +('Y72.0', 'Otorhinolaryngological devices associated with adverse incidents: Diagnostic and monitoring devices', 'ICD10_2010'), +('Y72.1', 'Otorhinolaryngological devices associated with adverse incidents: Therapeutic (nonsurgical) and rehabilitative devices', 'ICD10_2010'), +('Y72.2', 'Otorhinolaryngological devices associated with adverse incidents: Prosthetic and other implants, materials and accessory devices', 'ICD10_2010'), +('Y72.3', 'Otorhinolaryngological devices associated with adverse incidents: Surgical instruments, materials and devices (including sutures)', 'ICD10_2010'), +('Y72.8', 'Otorhinolaryngological devices associated with adverse incidents: Miscellaneous devices, not elsewhere classified', 'ICD10_2010'), +('Y73', 'Gastroenterology and urology devices associated with adverse incidents', 'ICD10_2010'), +('Y73.0', 'Gastroenterology and urology devices associated with adverse incidents: Diagnostic and monitoring devices', 'ICD10_2010'), +('Y73.1', 'Gastroenterology and urology devices associated with adverse incidents: Therapeutic (nonsurgical) and rehabilitative devices', 'ICD10_2010'), +('Y73.2', 'Gastroenterology and urology devices associated with adverse incidents: Prosthetic and other implants, materials and accessory devices', 'ICD10_2010'), +('Y73.3', 'Gastroenterology and urology devices associated with adverse incidents: Surgical instruments, materials and devices (including sutures)', 'ICD10_2010'), +('Y73.8', 'Gastroenterology and urology devices associated with adverse incidents: Miscellaneous devices, not elsewhere classified', 'ICD10_2010'), +('Y74', 'General hospital and personal-use devices associated with adverse incidents', 'ICD10_2010'), +('Y74.0', 'General hospital and personal-use devices associated with adverse incidents: Diagnostic and monitoring devices', 'ICD10_2010'), +('Y74.1', 'General hospital and personal-use devices associated with adverse incidents: Therapeutic (nonsurgical) and rehabilitative devices', 'ICD10_2010'), +('Y74.2', 'General hospital and personal-use devices associated with adverse incidents: Prosthetic and other implants, materials and accessory devices', 'ICD10_2010'), +('Y74.3', 'General hospital and personal-use devices associated with adverse incidents: Surgical instruments, materials and devices (including sutures)', 'ICD10_2010'), +('Y74.8', 'General hospital and personal-use devices associated with adverse incidents: Miscellaneous devices, not elsewhere classified', 'ICD10_2010'), +('Y75', 'Neurological devices associated with adverse incidents', 'ICD10_2010'), +('Y75.0', 'Neurological devices associated with adverse incidents: Diagnostic and monitoring devices', 'ICD10_2010'), +('Y75.1', 'Neurological devices associated with adverse incidents: Therapeutic (nonsurgical) and rehabilitative devices', 'ICD10_2010'), +('Y75.2', 'Neurological devices associated with adverse incidents: Prosthetic and other implants, materials and accessory devices', 'ICD10_2010'), +('Y75.3', 'Neurological devices associated with adverse incidents: Surgical instruments, materials and devices (including sutures)', 'ICD10_2010'), +('Y75.8', 'Neurological devices associated with adverse incidents: Miscellaneous devices, not elsewhere classified', 'ICD10_2010'), +('Y76', 'Obstetric and gynaecological devices associated with adverse incidents', 'ICD10_2010'), +('Y76.0', 'Obstetric and gynaecological devices associated with adverse incidents: Diagnostic and monitoring devices', 'ICD10_2010'), +('Y76.1', 'Obstetric and gynaecological devices associated with adverse incidents: Therapeutic (nonsurgical) and rehabilitative devices', 'ICD10_2010'), +('Y76.2', 'Obstetric and gynaecological devices associated with adverse incidents: Prosthetic and other implants, materials and accessory devices', 'ICD10_2010'), +('Y76.3', 'Obstetric and gynaecological devices associated with adverse incidents: Surgical instruments, materials and devices (including sutures)', 'ICD10_2010'), +('Y76.8', 'Obstetric and gynaecological devices associated with adverse incidents: Miscellaneous devices, not elsewhere classified', 'ICD10_2010'), +('Y77', 'Ophthalmic devices associated with adverse incidents', 'ICD10_2010'), +('Y77.0', 'Ophthalmic devices associated with adverse incidents: Diagnostic and monitoring devices', 'ICD10_2010'), +('Y77.1', 'Ophthalmic devices associated with adverse incidents: Therapeutic (nonsurgical) and rehabilitative devices', 'ICD10_2010'), +('Y77.2', 'Ophthalmic devices associated with adverse incidents: Prosthetic and other implants, materials and accessory devices', 'ICD10_2010'), +('Y77.3', 'Ophthalmic devices associated with adverse incidents: Surgical instruments, materials and devices (including sutures)', 'ICD10_2010'), +('Y77.8', 'Ophthalmic devices associated with adverse incidents: Miscellaneous devices, not elsewhere classified', 'ICD10_2010'), +('Y78', 'Radiological devices associated with adverse incidents', 'ICD10_2010'), +('Y78.0', 'Radiological devices associated with adverse incidents: Diagnostic and monitoring devices', 'ICD10_2010'), +('Y78.1', 'Radiological devices associated with adverse incidents: Therapeutic (nonsurgical) and rehabilitative devices', 'ICD10_2010'), +('Y78.2', 'Radiological devices associated with adverse incidents: Prosthetic and other implants, materials and accessory devices', 'ICD10_2010'), +('Y78.3', 'Radiological devices associated with adverse incidents: Surgical instruments, materials and devices (including sutures)', 'ICD10_2010'), +('Y78.8', 'Radiological devices associated with adverse incidents: Miscellaneous devices, not elsewhere classified', 'ICD10_2010'), +('Y79', 'Orthopaedic devices associated with adverse incidents', 'ICD10_2010'), +('Y79.0', 'Orthopaedic devices associated with adverse incidents: Diagnostic and monitoring devices', 'ICD10_2010'), +('Y79.1', 'Orthopaedic devices associated with adverse incidents: Therapeutic (nonsurgical) and rehabilitative devices', 'ICD10_2010'), +('Y79.2', 'Orthopaedic devices associated with adverse incidents: Prosthetic and other implants, materials and accessory devices', 'ICD10_2010'), +('Y79.3', 'Orthopaedic devices associated with adverse incidents: Surgical instruments, materials and devices (including sutures)', 'ICD10_2010'), +('Y79.8', 'Orthopaedic devices associated with adverse incidents: Miscellaneous devices, not elsewhere classified', 'ICD10_2010'), +('Y80', 'Physical medicine devices associated with adverse incidents', 'ICD10_2010'); +INSERT INTO `icd10` (`ID_ICD10`, `Diagnosa`, `Versi_ICD10`) VALUES +('Y80.0', 'Physical medicine devices associated with adverse incidents: Diagnostic and monitoring devices', 'ICD10_2010'), +('Y80.1', 'Physical medicine devices associated with adverse incidents: Therapeutic (nonsurgical) and rehabilitative devices', 'ICD10_2010'), +('Y80.2', 'Physical medicine devices associated with adverse incidents: Prosthetic and other implants, materials and accessory devices', 'ICD10_2010'), +('Y80.3', 'Physical medicine devices associated with adverse incidents: Surgical instruments, materials and devices (including sutures)', 'ICD10_2010'), +('Y80.8', 'Physical medicine devices associated with adverse incidents: Miscellaneous devices, not elsewhere classified', 'ICD10_2010'), +('Y81', 'General- and plastic-surgery devices associated with adverse incidents', 'ICD10_2010'), +('Y81.0', 'General- and plastic-surgery devices associated with adverse incidents: Diagnostic and monitoring devices', 'ICD10_2010'), +('Y81.1', 'General- and plastic-surgery devices associated with adverse incidents: Therapeutic (nonsurgical) and rehabilitative devices', 'ICD10_2010'), +('Y81.2', 'General- and plastic-surgery devices associated with adverse incidents: Prosthetic and other implants, materials and accessory devices', 'ICD10_2010'), +('Y81.3', 'General- and plastic-surgery devices associated with adverse incidents: Surgical instruments, materials and devices (including sutures)', 'ICD10_2010'), +('Y81.8', 'General- and plastic-surgery devices associated with adverse incidents: Miscellaneous devices, not elsewhere classified', 'ICD10_2010'), +('Y82', 'Other and unspecified medical devices associated with adverse incidents', 'ICD10_2010'), +('Y82.0', 'Other and unspecified medical devices associated with adverse incidents: Diagnostic and monitoring devices', 'ICD10_2010'), +('Y82.1', 'Other and unspecified medical devices associated with adverse incidents: Therapeutic (nonsurgical) and rehabilitative devices', 'ICD10_2010'), +('Y82.2', 'Other and unspecified medical devices associated with adverse incidents: Prosthetic and other implants, materials and accessory devices', 'ICD10_2010'), +('Y82.3', 'Other and unspecified medical devices associated with adverse incidents: Surgical instruments, materials and devices (including sutures)', 'ICD10_2010'), +('Y82.8', 'Other and unspecified medical devices associated with adverse incidents: Miscellaneous devices, not elsewhere classified', 'ICD10_2010'), +('Y83', 'Surgical operation and other surgical procedures as the cause of abnormal reaction of the patient, or of later complication, without mention of misadv', 'ICD10_2010'), +('Y83.0', 'Surgical operation with transplant of whole organ', 'ICD10_2010'), +('Y83.1', 'Surgical operation with implant of artificial internal device', 'ICD10_2010'), +('Y83.2', 'Surgical operation with anastomosis, bypass or graft', 'ICD10_2010'), +('Y83.3', 'Surgical operation with formation of external stoma', 'ICD10_2010'), +('Y83.4', 'Other reconstructive surgery', 'ICD10_2010'), +('Y83.5', 'Amputation of limb(s)', 'ICD10_2010'), +('Y83.6', 'Removal of other organ (partial) (total)', 'ICD10_2010'), +('Y83.8', 'Other surgical procedures', 'ICD10_2010'), +('Y83.9', 'Surgical procedure, unspecified', 'ICD10_2010'), +('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 th', 'ICD10_2010'), +('Y84.0', 'Cardiac catheterization', 'ICD10_2010'), +('Y84.1', 'Kidney dialysis', 'ICD10_2010'), +('Y84.2', 'Radiological procedure and radiotherapy', 'ICD10_2010'), +('Y84.3', 'Shock therapy', 'ICD10_2010'), +('Y84.4', 'Aspiration of fluid', 'ICD10_2010'), +('Y84.5', 'Insertion of gastric or duodenal sound', 'ICD10_2010'), +('Y84.6', 'Urinary catheterization', 'ICD10_2010'), +('Y84.7', 'Blood-sampling', 'ICD10_2010'), +('Y84.8', 'Other medical procedures', 'ICD10_2010'), +('Y84.9', 'Medical procedure, unspecified', 'ICD10_2010'), +('Y85', 'Sequelae of transport accidents', 'ICD10_2010'), +('Y85.0', 'Sequelae of motor-vehicle accident', 'ICD10_2010'), +('Y85.9', 'Sequelae of other and unspecified transport accidents', 'ICD10_2010'), +('Y86', 'Sequelae of other accidents', 'ICD10_2010'), +('Y87', 'Sequelae of intentional self-harm, assault and events of undetermined intent', 'ICD10_2010'), +('Y87.0', 'Sequelae of intentional self-harm', 'ICD10_2010'), +('Y87.1', 'Sequelae of assault', 'ICD10_2010'), +('Y87.2', 'Sequelae of events of undetermined intent', 'ICD10_2010'), +('Y88', 'Sequelae with surgical and medical care as external cause', 'ICD10_2010'), +('Y88.0', 'Sequelae of adverse effects caused by drugs, medicaments and biological substances in therapeutic use', 'ICD10_2010'), +('Y88.1', 'Sequelae of misadventures to patients during surgical and medical procedures', 'ICD10_2010'), +('Y88.2', 'Sequelae of adverse incidents associated with medical devices in diagnostic and therapeutic use', 'ICD10_2010'), +('Y88.3', 'Sequelae of surgical and medical procedures as the cause of abnormal reaction of the patient, or of later complication, without mention of misadventur', 'ICD10_2010'), +('Y89', 'Sequelae of other external causes', 'ICD10_2010'), +('Y89.0', 'Sequelae of legal intervention', 'ICD10_2010'), +('Y89.1', 'Sequelae of war operations', 'ICD10_2010'), +('Y89.9', 'Sequelae of unspecified external cause', 'ICD10_2010'), +('Y90', 'Evidence of alcohol involvement determined by blood alcohol level', 'ICD10_2010'), +('Y90.0', 'Blood alcohol level of less than 20 mg/100 ml', 'ICD10_2010'), +('Y90.1', 'Blood alcohol level of 20-39 mg/100 ml', 'ICD10_2010'), +('Y90.2', 'Blood alcohol level of 40-59 mg/100 ml', 'ICD10_2010'), +('Y90.3', 'Blood alcohol level of 60-79 mg/100 ml', 'ICD10_2010'), +('Y90.4', 'Blood alcohol level of 80-99 mg/100 ml', 'ICD10_2010'), +('Y90.5', 'Blood alcohol level of 100-119 mg/100 ml', 'ICD10_2010'), +('Y90.6', 'Blood alcohol level of 120-199 mg/100 ml', 'ICD10_2010'), +('Y90.7', 'Blood alcohol level of 200-239 mg/100 ml', 'ICD10_2010'), +('Y90.8', 'Blood alcohol level of 240 mg/100 ml or more', 'ICD10_2010'), +('Y90.9', 'Presence of alcohol in blood, level not specified', 'ICD10_2010'), +('Y91', 'Evidence of alcohol involvement determined by level of intoxication', 'ICD10_2010'), +('Y91.0', 'Mild alcohol intoxication', 'ICD10_2010'), +('Y91.1', 'Moderate alcohol intoxication', 'ICD10_2010'), +('Y91.2', 'Severe alcohol intoxication', 'ICD10_2010'), +('Y91.3', 'Very severe alcohol intoxication', 'ICD10_2010'), +('Y91.9', 'Alcohol involvement, not otherwise specified', 'ICD10_2010'), +('Y95', 'Nosocomial condition', 'ICD10_2010'), +('Y96', 'Work-related condition', 'ICD10_2010'), +('Y97', 'Environmental-pollution-related condition', 'ICD10_2010'), +('Y98', 'Lifestyle-related condition', 'ICD10_2010'), +('Z00', 'General examination and investigation of persons without complaint and reported diagnosis', 'ICD10_2010'), +('Z00.0', 'General medical examination', 'ICD10_2010'), +('Z00.1', 'Routine child health examination', 'ICD10_2010'), +('Z00.2', 'Examination for period of rapid growth in childhood', 'ICD10_2010'), +('Z00.3', 'Examination for adolescent development state', 'ICD10_2010'), +('Z00.4', 'General psychiatric examination, nec', 'ICD10_2010'), +('Z00.5', 'Examination of potential donor of organ and tissue', 'ICD10_2010'), +('Z00.6', 'Exam normal comparison and control in clin research program', 'ICD10_2010'), +('Z00.8', 'Other general examinations', 'ICD10_2010'), +('Z01', 'Other special examinations and investigations of persons without complaint or reported diagnosis', 'ICD10_2010'), +('Z01.0', 'Examination of eyes and vision', 'ICD10_2010'), +('Z01.1', 'Examination of ears and hearing', 'ICD10_2010'), +('Z01.2', 'Dental examination', 'ICD10_2010'), +('Z01.3', 'Examination of blood pressure', 'ICD10_2010'), +('Z01.4', 'Gynaecological examination (general)(routine)', 'ICD10_2010'), +('Z01.5', 'Diagnostic skin and sensitization tests', 'ICD10_2010'), +('Z01.6', 'Radiological examination, nec', 'ICD10_2010'), +('Z01.7', 'Laboratory examination', 'ICD10_2010'), +('Z01.8', 'Other specified special examinations', 'ICD10_2010'), +('Z01.9', 'Special examination, unspecified', 'ICD10_2010'), +('Z02', 'Examination and encounter for administrative purposes', 'ICD10_2010'), +('Z02.0', 'Examination for admission to educational institution', 'ICD10_2010'), +('Z02.1', 'Pre-employment examination', 'ICD10_2010'), +('Z02.2', 'Examination for admission to residential institutions', 'ICD10_2010'), +('Z02.3', 'Examination for recruitment to armed forces', 'ICD10_2010'), +('Z02.4', 'Examination for driving licence', 'ICD10_2010'), +('Z02.5', 'Examination for participation in sport', 'ICD10_2010'), +('Z02.6', 'Examination for insurance purposes', 'ICD10_2010'), +('Z02.7', 'Issue of medical certificate', 'ICD10_2010'), +('Z02.8', 'Other examinations for administrative purposes', 'ICD10_2010'), +('Z02.9', 'Examination for administrative purposes, unspecified', 'ICD10_2010'), +('Z03', 'Medical observation and evaluation for suspected diseases and conditions', 'ICD10_2010'), +('Z03.0', 'Observation for suspected tuberculosis', 'ICD10_2010'), +('Z03.1', 'Observation for suspected malignant neoplasm', 'ICD10_2010'), +('Z03.2', 'Observation for suspected mental and behavioural disorders', 'ICD10_2010'), +('Z03.3', 'Observation for suspected nervous system disorder', 'ICD10_2010'), +('Z03.4', 'Observation for suspected myocardial infarction', 'ICD10_2010'), +('Z03.5', 'Observation for other suspected cardiovascular diseases', 'ICD10_2010'), +('Z03.6', 'Observation for suspected toxic effect from ingested substances', 'ICD10_2010'), +('Z03.8', 'Observation for other suspected diseases and conditions', 'ICD10_2010'), +('Z03.9', 'Observation for suspected disease or condition, unspecified', 'ICD10_2010'), +('Z04', 'Examination and observation for other reasons', 'ICD10_2010'), +('Z04.0', 'Blood-alcohol and blood-drug test', 'ICD10_2010'), +('Z04.1', 'Examination and observation following transport accident', 'ICD10_2010'), +('Z04.2', 'Examination and observation following work accident', 'ICD10_2010'), +('Z04.3', 'Examination and observation following other accident', 'ICD10_2010'), +('Z04.4', 'Exam and observation following alleged rape and seduction', 'ICD10_2010'), +('Z04.5', 'Examination and observation following other inflicted injury', 'ICD10_2010'), +('Z04.6', 'General psychiatric examination, requested by authority', 'ICD10_2010'), +('Z04.8', 'Examination and observation for other specified reasons', 'ICD10_2010'), +('Z04.9', 'Examination and observation for unspecified reason', 'ICD10_2010'), +('Z08', 'Follow-up examination after treatment for malignant neoplasms', 'ICD10_2010'), +('Z08.0', 'Follow-up examination after surgery for malignant neoplasm', 'ICD10_2010'), +('Z08.1', 'Follow-up examination after radiotherapy for malignant neoplasm', 'ICD10_2010'), +('Z08.2', 'Follow-up examination after chemotherapy for malignant neoplasm', 'ICD10_2010'), +('Z08.7', 'Follow-up examination after combined treatment for malig neoplasm', 'ICD10_2010'), +('Z08.8', 'Follow-up examination after other treatment for malignant neoplasm', 'ICD10_2010'), +('Z08.9', 'Follow-up examination after unspecified treatment for malignant neoplasm', 'ICD10_2010'), +('Z09', 'Follow-up examination after treatment for conditions other than malignant neoplasms', 'ICD10_2010'), +('Z09.0', 'Follow-up examination after surgery for other conditions', 'ICD10_2010'), +('Z09.1', 'Follow-up examination after radiotherapy for oth conditions', 'ICD10_2010'), +('Z09.2', 'Follow-up examination after chemotherapy for oth conditions', 'ICD10_2010'), +('Z09.3', 'Follow-up examination after psychotherapy', 'ICD10_2010'), +('Z09.4', 'Follow-up examination after treatment of fracture', 'ICD10_2010'), +('Z09.7', 'Follow-up exam after combined treatment for other conditions', 'ICD10_2010'), +('Z09.8', 'Follow-up exam after other treatment for other conditions', 'ICD10_2010'), +('Z09.9', 'Follow-up exam after unspecified treatment for other conditions', 'ICD10_2010'), +('Z10', 'Routine general health check-up of defined subpopulation', 'ICD10_2010'), +('Z10.0', 'Occupational health examination', 'ICD10_2010'), +('Z10.1', 'Routine gen health check-up of inhabitants of institutions', 'ICD10_2010'), +('Z10.2', 'Routine general health check-up of armed forces', 'ICD10_2010'), +('Z10.3', 'Routine general health check-up of sports teams', 'ICD10_2010'), +('Z10.8', 'Routine general health check-up of other defined subpopulations', 'ICD10_2010'), +('Z11', 'Special screening examination for infectious and parasitic diseases', 'ICD10_2010'), +('Z11.0', 'Special screening examination for intestinal infectious diseases', 'ICD10_2010'), +('Z11.1', 'Special screening examination for respiratory tuberculosis', 'ICD10_2010'), +('Z11.2', 'Special screening examination for other bacterial diseases', 'ICD10_2010'), +('Z11.3', 'Special screening examination infection with predominantly sexual mode transmis', 'ICD10_2010'), +('Z11.4', 'Special screening examination for human immunodeficiency virus [hiv]', 'ICD10_2010'), +('Z11.5', 'Special screening examination for other viral diseases', 'ICD10_2010'), +('Z11.6', 'Special screening examination for oth protozoal dis and helminthiases', 'ICD10_2010'), +('Z11.8', 'Special screening examination for other infectious and parasitic diseases', 'ICD10_2010'), +('Z11.9', 'Special screening examination for infectious and parasitic disease unspecified', 'ICD10_2010'), +('Z12', 'Special screening examination for neoplasms', 'ICD10_2010'), +('Z12.0', 'Special screening examination for neoplasm of stomach', 'ICD10_2010'), +('Z12.1', 'Special screening examination for neoplasm of intestinal tract', 'ICD10_2010'), +('Z12.2', 'Special screening examination for neoplasm of respiratory organs', 'ICD10_2010'), +('Z12.3', 'Special screening examination for neoplasm of breast', 'ICD10_2010'), +('Z12.4', 'Special screening examination for neoplasm of cervix', 'ICD10_2010'), +('Z12.5', 'Special screening examination for neoplasm of prostate', 'ICD10_2010'), +('Z12.6', 'Special screening examination for neoplasm of bladder', 'ICD10_2010'), +('Z12.8', 'Special screening examination for neoplasms of other sites', 'ICD10_2010'), +('Z12.9', 'Special screening examination for neoplasm, unspecified', 'ICD10_2010'), +('Z13', 'Special screening examination for other diseases and disorders', 'ICD10_2010'), +('Z13.0', 'Special screening examination disease blood and blood forming organs and certain disoders involving the immune mechanism', 'ICD10_2010'), +('Z13.1', 'Special screening examination for diabetes mellitus', 'ICD10_2010'), +('Z13.2', 'Special screening examination for nutritional disorders', 'ICD10_2010'), +('Z13.3', 'Special screening examination for mental and behavioural disorders', 'ICD10_2010'), +('Z13.4', 'Special screening examination certain development disorders in childhood', 'ICD10_2010'), +('Z13.5', 'Special screening examination for eye and ear disorders', 'ICD10_2010'), +('Z13.6', 'Special screening examination for cardiovascular disorders', 'ICD10_2010'), +('Z13.7', 'Special screening examination for congenital malformations, deformations and chromosomal abnormalities', 'ICD10_2010'), +('Z13.8', 'Special screening examination for other specified diseases and disorders', 'ICD10_2010'), +('Z13.9', 'Special screening examination, unspecified', 'ICD10_2010'), +('Z20', 'Contact with and exposure to communicable diseases', 'ICD10_2010'), +('Z20.0', 'Contact with and exposure to intestinal infectious diseases', 'ICD10_2010'), +('Z20.1', 'Contact with and exposure to tuberculosis', 'ICD10_2010'), +('Z20.2', 'Contact with and exposure infection with a predominantly sex mode transmission', 'ICD10_2010'), +('Z20.3', 'Contact with and exposure to rabies', 'ICD10_2010'), +('Z20.4', 'Contact with and exposure to rubella', 'ICD10_2010'), +('Z20.5', 'Contact with and exposure to viral hepatitis', 'ICD10_2010'), +('Z20.6', 'Contact with and exposure to human immunodefic virus [HIV]', 'ICD10_2010'), +('Z20.7', 'Contact with and exposure pediculosis acariasis and other infestations', 'ICD10_2010'), +('Z20.8', 'Contact with and exposure to other communicable diseases', 'ICD10_2010'), +('Z20.9', 'Contact with and exposure to unspecified communicable disease', 'ICD10_2010'), +('Z21', 'Asymptomatic human immunodefic virus [hiv] infect status', 'ICD10_2010'), +('Z22', 'Carrier of infectious disease', 'ICD10_2010'), +('Z22.0', 'Carrier of typhoid', 'ICD10_2010'), +('Z22.1', 'Carrier of other intestinal infectious diseases', 'ICD10_2010'), +('Z22.2', 'Carrier of diphtheria', 'ICD10_2010'), +('Z22.3', 'Carrier of other specified bacterial diseases', 'ICD10_2010'), +('Z22.4', 'Carrier of infections with a predom sexual mode of transmission', 'ICD10_2010'), +('Z22.5', 'Carrier of viral hepatitis', 'ICD10_2010'), +('Z22.6', 'Carrier of human T-lymphotropic virus type-1 [HTLV-1] infection', 'ICD10_2010'), +('Z22.8', 'Carrier of other infectious diseases', 'ICD10_2010'), +('Z22.9', 'Carrier of infectious disease, unspecified', 'ICD10_2010'), +('Z23', 'Need for immunization against single bacterial diseases', 'ICD10_2010'), +('Z23.0', 'Need for immunization against cholera alone', 'ICD10_2010'), +('Z23.1', 'Need for immuniz against typhoid-paratyphoid alone [TAB]', 'ICD10_2010'), +('Z23.2', 'Need for immunization against tuberculosis [BCG]', 'ICD10_2010'), +('Z23.3', 'Need for immunization against plague', 'ICD10_2010'), +('Z23.4', 'Need for immunization against tularaemia', 'ICD10_2010'), +('Z23.5', 'Need for immunization against tetanus alone', 'ICD10_2010'), +('Z23.6', 'Need for immunization against diphtheria alone', 'ICD10_2010'), +('Z23.7', 'Need for immunization against pertussis alone', 'ICD10_2010'), +('Z23.8', 'Need for immunization against other single bacterial diseases', 'ICD10_2010'), +('Z24', 'Need for immunization against certain single viral diseases', 'ICD10_2010'), +('Z24.0', 'Need for immunization against poliomyelitis', 'ICD10_2010'), +('Z24.1', 'Need for immunization against arthropod-borne viral encephalitis', 'ICD10_2010'), +('Z24.2', 'Need for immunization against rabies', 'ICD10_2010'), +('Z24.3', 'Need for immunization against yellow fever', 'ICD10_2010'), +('Z24.4', 'Need for immunization against measles alone', 'ICD10_2010'), +('Z24.5', 'Need for immunization against rubella alone', 'ICD10_2010'), +('Z24.6', 'Need for immunization against viral hepatitis', 'ICD10_2010'), +('Z25', 'Need for immunization against other single viral diseases', 'ICD10_2010'), +('Z25.0', 'Need for immunization against mumps alone', 'ICD10_2010'), +('Z25.1', 'Need for immunization against influenza', 'ICD10_2010'), +('Z25.8', 'Need for immunization against oth specified single viral diseases', 'ICD10_2010'), +('Z26', 'Need for immunization against other single infectious diseases', 'ICD10_2010'), +('Z26.0', 'Need for immunization against leishmaniasis', 'ICD10_2010'), +('Z26.8', 'Need for immunization against other specified single infectious diseases', 'ICD10_2010'), +('Z26.9', 'Need for immunization against unspecified infectious disease', 'ICD10_2010'), +('Z27', 'Need for immunization against combinations of infectious diseases', 'ICD10_2010'), +('Z27.0', 'Need for immunization against cholera with typhoid-paratyphoid [cholera + TAB]', 'ICD10_2010'), +('Z27.1', 'Need for immunization against diphtheria-tetanus-pertussis combined [DTP]', 'ICD10_2010'), +('Z27.2', 'Need for immunization against diphtheria-tetanus-pertussis with typhoid-paratyph [DTP + TAB]', 'ICD10_2010'), +('Z27.3', 'Need for immunization against diphtheria-tetanus-pertussis with poliomyelitis [DTP + polio]', 'ICD10_2010'), +('Z27.4', 'Need for immunization against measles-mumps-rubella [MMR]', 'ICD10_2010'), +('Z27.8', 'Need for immunization against other combinations of infectious diseases', 'ICD10_2010'), +('Z27.9', 'Need for immunization against unspec combs of infectious diseases', 'ICD10_2010'), +('Z28', 'Immunization not carried out', 'ICD10_2010'), +('Z28.0', 'Immunization not carried out because of contraindication', 'ICD10_2010'), +('Z28.1', 'Immunization not carried out because of patient\'s decision for reason of belief or group pressure', 'ICD10_2010'), +('Z28.2', 'Immunization not carried out because patient\'s decision for other unspecified reasons', 'ICD10_2010'), +('Z28.8', 'Immunization not carried out for other reasons', 'ICD10_2010'), +('Z28.9', 'Immunization not carried out for unspecified reason', 'ICD10_2010'), +('Z29', 'Need for other prophylactic measures', 'ICD10_2010'), +('Z29.0', 'Isolation', 'ICD10_2010'), +('Z29.1', 'Prophylactic immunotherapy', 'ICD10_2010'), +('Z29.2', 'Other prophylactic chemotherapy', 'ICD10_2010'), +('Z29.8', 'Other specified prophylactic measures', 'ICD10_2010'), +('Z29.9', 'Prophylactic measure, unspecified', 'ICD10_2010'), +('Z30', 'Contraceptive management', 'ICD10_2010'), +('Z30.0', 'General counselling and advice on contraception', 'ICD10_2010'), +('Z30.1', 'Insertion of (intrauterine) contraceptive device', 'ICD10_2010'), +('Z30.2', 'Sterilization', 'ICD10_2010'), +('Z30.3', 'Menstrual extraction', 'ICD10_2010'), +('Z30.4', 'Surveillance of contraceptive drugs', 'ICD10_2010'), +('Z30.5', 'Surveillance of (intrauterine) contraceptive device', 'ICD10_2010'), +('Z30.8', 'Other contraceptive management', 'ICD10_2010'), +('Z30.9', 'Contraceptive management, unspecified', 'ICD10_2010'), +('Z31', 'Procreative management', 'ICD10_2010'), +('Z31.0', 'Tuboplasty or vasoplasty after previous sterilization', 'ICD10_2010'), +('Z31.1', 'Artificial insemination', 'ICD10_2010'), +('Z31.2', 'In vitro fertilization', 'ICD10_2010'), +('Z31.3', 'Other assisted fertilization methods', 'ICD10_2010'), +('Z31.4', 'Procreative investigation and testing', 'ICD10_2010'), +('Z31.5', 'Genetic counselling', 'ICD10_2010'), +('Z31.6', 'General counselling and advice on procreation', 'ICD10_2010'), +('Z31.8', 'Other procreative management', 'ICD10_2010'), +('Z31.9', 'Procreative management, unspecified', 'ICD10_2010'), +('Z32', 'Pregnancy examination and test', 'ICD10_2010'), +('Z32.0', 'Pregnancy, not (yet) confirmed', 'ICD10_2010'), +('Z32.1', 'Pregnancy confirmed', 'ICD10_2010'), +('Z33', 'Pregnant state, incidental', 'ICD10_2010'), +('Z34', 'Supervision of normal pregnancy', 'ICD10_2010'), +('Z34.0', 'Supervision of normal first pregnancy', 'ICD10_2010'), +('Z34.8', 'Supervision of other normal pregnancy', 'ICD10_2010'), +('Z34.9', 'Supervision of normal pregnancy, unspecified', 'ICD10_2010'), +('Z35', 'Supervision of high-risk pregnancy', 'ICD10_2010'), +('Z35.0', 'Supervision of pregnancy with history of infertility', 'ICD10_2010'), +('Z35.1', 'Supervision of pregnancy with history of abortive outcome', 'ICD10_2010'), +('Z35.2', 'Supervision of pregnancy with other poor reproductive or obstetric history', 'ICD10_2010'), +('Z35.3', 'Supervision of pregnancy with history insufficient antenatal care', 'ICD10_2010'), +('Z35.4', 'Supervision of pregnancy with grand multiparity', 'ICD10_2010'), +('Z35.5', 'Supervision of elderly primigravida', 'ICD10_2010'), +('Z35.6', 'Supervision of very young primigravida', 'ICD10_2010'), +('Z35.7', 'Supervision of high-risk pregnancy due to social problems', 'ICD10_2010'), +('Z35.8', 'Supervision of other high-risk pregnancies', 'ICD10_2010'), +('Z35.9', 'Supervision of high-risk pregnancy, unspecified', 'ICD10_2010'), +('Z36', 'Antenatal screening', 'ICD10_2010'), +('Z36.0', 'Antenatal screening for chromosomal anomalies', 'ICD10_2010'), +('Z36.1', 'Antenatal screening for raised alphafetoprotein level', 'ICD10_2010'), +('Z36.2', 'Other antenatal screening based on amniocentesis', 'ICD10_2010'), +('Z36.3', 'Antenatal screening malformation using ultrasound and other physical methods', 'ICD10_2010'), +('Z36.4', 'Antenatal screening fetal growth retardation using ultrasound oth physical methods', 'ICD10_2010'), +('Z36.5', 'Antenatal screening for isoimmunization', 'ICD10_2010'), +('Z36.8', 'Other antenatal screening', 'ICD10_2010'), +('Z36.9', 'Antenatal screening, unspecified', 'ICD10_2010'), +('Z37', 'Outcome of delivery', 'ICD10_2010'), +('Z37.0', 'Single live birth', 'ICD10_2010'), +('Z37.1', 'Single stillbirth', 'ICD10_2010'), +('Z37.2', 'Twins, both liveborn', 'ICD10_2010'), +('Z37.3', 'Twins, one liveborn and one stillborn', 'ICD10_2010'), +('Z37.4', 'Twins, both stillborn', 'ICD10_2010'), +('Z37.5', 'Other multiple births, all liveborn', 'ICD10_2010'), +('Z37.6', 'Other multiple births, some liveborn', 'ICD10_2010'), +('Z37.7', 'Other multiple births, all stillborn', 'ICD10_2010'), +('Z37.9', 'Outcome of delivery, unspecified', 'ICD10_2010'), +('Z38', 'Liveborn infants according to place of birth', 'ICD10_2010'), +('Z38.0', 'Singleton, born in hospital', 'ICD10_2010'), +('Z38.1', 'Singleton, born outside hospital', 'ICD10_2010'), +('Z38.2', 'Singleton, unspecified as to place of birth', 'ICD10_2010'), +('Z38.3', 'Twin, born in hospital', 'ICD10_2010'), +('Z38.4', 'Twin, born outside hospital', 'ICD10_2010'), +('Z38.5', 'Twin, unspecified as to place of birth', 'ICD10_2010'), +('Z38.6', 'Other multiple, born in hospital', 'ICD10_2010'), +('Z38.7', 'Other multiple, born outside hospital', 'ICD10_2010'), +('Z38.8', 'Other multiple, unspecified as to place of birth', 'ICD10_2010'), +('Z39', 'Postpartum care and examination', 'ICD10_2010'), +('Z39.0', 'Care and examination immediately after delivery', 'ICD10_2010'), +('Z39.1', 'Care and examination of lactating mother', 'ICD10_2010'), +('Z39.2', 'Routine postpartum follow-up', 'ICD10_2010'), +('Z40', 'Prophylactic surgery', 'ICD10_2010'), +('Z40.0', 'Prophyl surgery for risk-factors related to mal neoplasms', 'ICD10_2010'), +('Z40.8', 'Other prophylactic surgery', 'ICD10_2010'), +('Z40.9', 'Prophylactic surgery, unspecified', 'ICD10_2010'), +('Z41', 'Procedures for purposes other than remedying health state', 'ICD10_2010'), +('Z41.0', 'Hair transplant', 'ICD10_2010'), +('Z41.1', 'Other plastic surgery for unacceptable cosmetic appearance', 'ICD10_2010'), +('Z41.2', 'Routine and ritual circumcision', 'ICD10_2010'), +('Z41.3', 'Ear piercing', 'ICD10_2010'), +('Z41.8', 'Other procedures for purposes other than remedying health state', 'ICD10_2010'), +('Z41.9', 'Procedures for purposes other than remedying health state, unspecified', 'ICD10_2010'), +('Z42', 'Follow-up care involving plastic surgery', 'ICD10_2010'), +('Z42.0', 'Follow-up care involving plastic surgery of head and neck', 'ICD10_2010'), +('Z42.1', 'Follow-up care involving plastic surgery of breast', 'ICD10_2010'), +('Z42.2', 'Follow-up care involving plastic surgery of ther parts of trunk', 'ICD10_2010'), +('Z42.3', 'Follow-up care involving plastic surgery of upper extremity', 'ICD10_2010'), +('Z42.4', 'Follow-up care involving plastic surgery of lower extremity', 'ICD10_2010'), +('Z42.8', 'Follow-up care involving plastic surgery of other body part', 'ICD10_2010'), +('Z42.9', 'Follow-up care involving plastic surgery, unspecified', 'ICD10_2010'), +('Z43', 'Attention to artificial openings', 'ICD10_2010'), +('Z43.0', 'Attention to tracheostomy', 'ICD10_2010'), +('Z43.1', 'Attention to gastrostomy', 'ICD10_2010'), +('Z43.2', 'Attention to ileostomy', 'ICD10_2010'), +('Z43.3', 'Attention to colostomy', 'ICD10_2010'), +('Z43.4', 'Attention to other artificial openings of digestive tract', 'ICD10_2010'), +('Z43.5', 'Attention to cystostomy', 'ICD10_2010'), +('Z43.6', 'Attention to other artificial openings of urinary tract', 'ICD10_2010'), +('Z43.7', 'Attention to artificial vagina', 'ICD10_2010'), +('Z43.8', 'Attention to other artificial openings', 'ICD10_2010'), +('Z43.9', 'Attention to unspecified artificial opening', 'ICD10_2010'), +('Z44', 'Fitting and adjustment of external prosthetic device', 'ICD10_2010'), +('Z44.0', 'Fitting and adjustment of artificial arm (complete)(partial)', 'ICD10_2010'), +('Z44.1', 'Fitting and adjustment of artificial leg (complete)(partial)', 'ICD10_2010'), +('Z44.2', 'Fitting and adjustment of artificial eye', 'ICD10_2010'), +('Z44.3', 'Fitting and adjustment of external breast prosthesis', 'ICD10_2010'), +('Z44.8', 'Fitting and adjustment of other external prosthetic devices', 'ICD10_2010'), +('Z44.9', 'Fitting and adjustment of unspecified external prosthetic device', 'ICD10_2010'), +('Z45', 'Adjustment and management of implanted device', 'ICD10_2010'), +('Z45.0', 'Adjustment and management of cardiac pacemaker', 'ICD10_2010'), +('Z45.1', 'Adjustment and management of infusion pump', 'ICD10_2010'), +('Z45.2', 'Adjustment and management of vascular access device', 'ICD10_2010'), +('Z45.3', 'Adjustment and management of implanted hearing device', 'ICD10_2010'), +('Z45.8', 'Adjustment and management of other implanted devices', 'ICD10_2010'), +('Z45.9', 'Adjustment and management of unspecified implanted device', 'ICD10_2010'), +('Z46', 'Fitting and adjustment of other devices', 'ICD10_2010'), +('Z46.0', 'Fitting and adjustment of spectacles and contact lenses', 'ICD10_2010'), +('Z46.1', 'Fitting and adjustment of hearing aid', 'ICD10_2010'), +('Z46.2', 'Fitting and adjustment of other devicess related to nervous system and special senses', 'ICD10_2010'), +('Z46.3', 'Fitting and adjustment of dental prosthetic device', 'ICD10_2010'), +('Z46.4', 'Fitting and adjustment of orthodontic device', 'ICD10_2010'), +('Z46.5', 'Fitting and adjustment of ileostomy and oth intestinal appliances', 'ICD10_2010'), +('Z46.6', 'Fitting and adjustment of urinary device', 'ICD10_2010'), +('Z46.7', 'Fitting and adjustment of orthopaedic device', 'ICD10_2010'), +('Z46.8', 'Fitting and adjustment of other specified devices', 'ICD10_2010'), +('Z46.9', 'Fitting and adjustment of unspecified device', 'ICD10_2010'), +('Z47', 'Other orthopaedic follow-up care', 'ICD10_2010'), +('Z47.0', 'Follow-up care involving removal of fracture plate and other internal fixation device', 'ICD10_2010'), +('Z47.8', 'Other specified orthopaedic follow-up care', 'ICD10_2010'), +('Z47.9', 'Orthopaedic follow-up care, unspecified', 'ICD10_2010'), +('Z48', 'Other surgical follow-up care', 'ICD10_2010'), +('Z48.0', 'Attention to surgical dressings and sutures', 'ICD10_2010'), +('Z48.8', 'Other specified surgical follow-up care', 'ICD10_2010'), +('Z48.9', 'Surgical follow-up care, unspecified', 'ICD10_2010'), +('Z49', 'Care involving dialysis', 'ICD10_2010'), +('Z49.0', 'Preparatory care for dialysis', 'ICD10_2010'), +('Z49.1', 'Extracorporeal dialysis', 'ICD10_2010'), +('Z49.2', 'Other dialysis', 'ICD10_2010'), +('Z50', 'Care involving use of rehabilitation procedures', 'ICD10_2010'), +('Z50.0', 'Cardiac rehabilitation', 'ICD10_2010'), +('Z50.1', 'Other physical therapy', 'ICD10_2010'), +('Z50.2', 'Alcohol rehabilitation', 'ICD10_2010'), +('Z50.3', 'Drug rehabilitation', 'ICD10_2010'), +('Z50.4', 'Psychotherapy, nec', 'ICD10_2010'), +('Z50.5', 'Speech therapy', 'ICD10_2010'), +('Z50.6', 'Orthoptic training', 'ICD10_2010'), +('Z50.7', 'Occupational therapy and vocational rehabilitation nec', 'ICD10_2010'), +('Z50.8', 'Care involving use of other rehabilitation procedures', 'ICD10_2010'), +('Z50.9', 'Care involving use of rehabilitation procedure, unspecified', 'ICD10_2010'), +('Z51', 'Other medical care', 'ICD10_2010'), +('Z51.0', 'Radiotherapy session', 'ICD10_2010'), +('Z51.1', 'Chemotherapy session for neoplasm', 'ICD10_2010'), +('Z51.2', 'Other chemotherapy', 'ICD10_2010'), +('Z51.3', 'Blood transfusion without reported diagnosis', 'ICD10_2010'), +('Z51.4', 'Preparatory care for subsequent treatment nec', 'ICD10_2010'), +('Z51.5', 'Palliative care', 'ICD10_2010'), +('Z51.6', 'Desensitization to allergens', 'ICD10_2010'), +('Z51.8', 'Other specified medical care', 'ICD10_2010'), +('Z51.9', 'Medical care, unspecified', 'ICD10_2010'), +('Z52', 'Donors of organs and tissues', 'ICD10_2010'), +('Z52.0', 'Blood donor', 'ICD10_2010'), +('Z52.1', 'Skin donor', 'ICD10_2010'), +('Z52.2', 'Bone donor', 'ICD10_2010'), +('Z52.3', 'Bone marrow donor', 'ICD10_2010'), +('Z52.4', 'Kidney donor', 'ICD10_2010'), +('Z52.5', 'Cornea donor', 'ICD10_2010'), +('Z52.6', 'Liver donor', 'ICD10_2010'), +('Z52.7', 'Heart donor', 'ICD10_2010'), +('Z52.8', 'Donor of other organs and tissues', 'ICD10_2010'), +('Z52.9', 'Donor of unspecified organ or tissue', 'ICD10_2010'), +('Z53', 'Persons encountering health services for specific procedures, not carried out', 'ICD10_2010'), +('Z53.0', 'Procedure not carried out because of contraindication', 'ICD10_2010'), +('Z53.1', 'Procedure not carried out bacause patient\'s decision reasons belief and group pressure', 'ICD10_2010'), +('Z53.2', 'Procedure not carried out because patient\'s decision for other unspecified reasons', 'ICD10_2010'), +('Z53.8', 'Procedure not carried out for other reasons', 'ICD10_2010'), +('Z53.9', 'Procedure not carried out, unspecified reason', 'ICD10_2010'), +('Z54', 'Convalescence', 'ICD10_2010'), +('Z54.0', 'Convalescence following surgery', 'ICD10_2010'), +('Z54.1', 'Convalescence following radiotherapy', 'ICD10_2010'), +('Z54.2', 'Convalescence following chemotherapy', 'ICD10_2010'), +('Z54.3', 'Convalescence following psychotherapy', 'ICD10_2010'), +('Z54.4', 'Convalescence following treatment of fracture', 'ICD10_2010'), +('Z54.7', 'Convalescence following combined treatment', 'ICD10_2010'), +('Z54.8', 'Convalescence following other treatment', 'ICD10_2010'), +('Z54.9', 'Convalescence following unspecified treatment', 'ICD10_2010'), +('Z55', 'Problems related to education and literacy', 'ICD10_2010'), +('Z55.0', 'Illiteracy and low-level literacy', 'ICD10_2010'), +('Z55.1', 'Schooling unavailable and unattainable', 'ICD10_2010'), +('Z55.2', 'Failed examinations', 'ICD10_2010'), +('Z55.3', 'Underachievement in school', 'ICD10_2010'), +('Z55.4', 'Education maladjustment and discord with teachers and classmates', 'ICD10_2010'), +('Z55.8', 'Other problems related to education and literacy', 'ICD10_2010'), +('Z55.9', 'Problem related to education and literacy, unspecified', 'ICD10_2010'), +('Z56', 'Problems related to employment and unemployment', 'ICD10_2010'), +('Z56.0', 'Unemployment, unspecified', 'ICD10_2010'), +('Z56.1', 'Change of job', 'ICD10_2010'), +('Z56.2', 'Threat of job loss', 'ICD10_2010'), +('Z56.3', 'Stressful work schedule', 'ICD10_2010'), +('Z56.4', 'Discord with boss and workmates', 'ICD10_2010'), +('Z56.5', 'Uncongenial work', 'ICD10_2010'), +('Z56.6', 'Other physical and mental strain related to work', 'ICD10_2010'), +('Z56.7', 'Other and unspecified problems related to employment', 'ICD10_2010'), +('Z57', 'Occupational exposure to risk-factors', 'ICD10_2010'), +('Z57.0', 'Occupational exposure to noise', 'ICD10_2010'), +('Z57.1', 'Occupational exposure to radiation', 'ICD10_2010'), +('Z57.2', 'Occupational exposure to dust', 'ICD10_2010'), +('Z57.3', 'Occupational exposure to other air contaminants', 'ICD10_2010'), +('Z57.4', 'Occupational exposure to toxic agents in agriculture', 'ICD10_2010'), +('Z57.5', 'Occupational exposure to toxic agents in other industries', 'ICD10_2010'), +('Z57.6', 'Occupational exposure to extreme temperature', 'ICD10_2010'), +('Z57.7', 'Occupational exposure to vibration', 'ICD10_2010'), +('Z57.8', 'Occupational exposure to other risk-factors', 'ICD10_2010'), +('Z57.9', 'Occupational exposure to unspecified risk-factor', 'ICD10_2010'), +('Z58', 'Problems related to physical environment', 'ICD10_2010'), +('Z58.0', 'Exposure to noise', 'ICD10_2010'), +('Z58.1', 'Exposure to air pollution', 'ICD10_2010'), +('Z58.2', 'Exposure to water pollution', 'ICD10_2010'), +('Z58.3', 'Exposure to soil pollution', 'ICD10_2010'), +('Z58.4', 'Exposure to radiation', 'ICD10_2010'), +('Z58.5', 'Exposure to other pollution', 'ICD10_2010'), +('Z58.6', 'Inadequate drinking-water supply', 'ICD10_2010'), +('Z58.7', 'Exposure to tobacco smoke', 'ICD10_2010'), +('Z58.8', 'Other problems related to physical environment', 'ICD10_2010'), +('Z58.9', 'Problem related to physical environment, unspecified', 'ICD10_2010'), +('Z59', 'Problems related to housing and economic circumstances', 'ICD10_2010'), +('Z59.0', 'Homelessness', 'ICD10_2010'), +('Z59.1', 'Inadequate housing', 'ICD10_2010'), +('Z59.2', 'Discord with neighbours, lodgers and landlord', 'ICD10_2010'), +('Z59.3', 'Problems related to living in residential institution', 'ICD10_2010'), +('Z59.4', 'Lack of adequate food', 'ICD10_2010'), +('Z59.5', 'Extreme poverty', 'ICD10_2010'), +('Z59.6', 'Low income', 'ICD10_2010'), +('Z59.7', 'Insufficient social insurance and welfare support', 'ICD10_2010'), +('Z59.8', 'Other problems related to housing and economic circumstances', 'ICD10_2010'), +('Z59.9', 'Problem related to housing and economic circumstances, unspecified', 'ICD10_2010'), +('Z60', 'Problems related to social environment', 'ICD10_2010'), +('Z60.0', 'Problems of adjustment to life-cycle transitions', 'ICD10_2010'), +('Z60.1', 'Atypical parenting situation', 'ICD10_2010'), +('Z60.2', 'Living alone', 'ICD10_2010'), +('Z60.3', 'Acculturation difficulty', 'ICD10_2010'), +('Z60.4', 'Social exclusion and rejection', 'ICD10_2010'), +('Z60.5', 'Target of perceived adverse discrimination and persecution', 'ICD10_2010'), +('Z60.8', 'Other problems related to social environment', 'ICD10_2010'), +('Z60.9', 'Problem related to social environment, unspecified', 'ICD10_2010'), +('Z61', 'Problems related to negative life events in childhood', 'ICD10_2010'), +('Z61.0', 'Loss of love relationship in childhood', 'ICD10_2010'), +('Z61.1', 'Removal from home in childhood', 'ICD10_2010'), +('Z61.2', 'Altered pattern of family relationships in childhood', 'ICD10_2010'), +('Z61.3', 'Events resulting in loss of self-esteem in childhood', 'ICD10_2010'), +('Z61.4', 'Problems related to alleged sexual abuse of child by person within primary support group', 'ICD10_2010'), +('Z61.5', 'Problems related to alleged sexual abuse of child by person out primary support group', 'ICD10_2010'), +('Z61.6', 'Problems related to alleged physical abuse of child', 'ICD10_2010'), +('Z61.7', 'Personal frightening experience in childhood', 'ICD10_2010'), +('Z61.8', 'Other negative life events in childhood', 'ICD10_2010'), +('Z61.9', 'Negative life event in childhood, unspecified', 'ICD10_2010'), +('Z62', 'Other problems related to upbringing', 'ICD10_2010'), +('Z62.0', 'Inadequate parental supervision and control', 'ICD10_2010'), +('Z62.1', 'Parental overprotection', 'ICD10_2010'), +('Z62.2', 'Institutional upbringing', 'ICD10_2010'), +('Z62.3', 'Hostility towards and scapegoating of child', 'ICD10_2010'), +('Z62.4', 'Emotional neglect of child', 'ICD10_2010'), +('Z62.5', 'Other problems related to neglect in upbringing', 'ICD10_2010'), +('Z62.6', 'Inappropriate parental pressure and other abnormal qualities of upbringing', 'ICD10_2010'), +('Z62.8', 'Other specified problems related to upbringing', 'ICD10_2010'), +('Z62.9', 'Problem related to upbringing, unspecified', 'ICD10_2010'), +('Z63', 'Other problems related to primary support group, including family circumstances', 'ICD10_2010'), +('Z63.0', 'Problems in relationship with spouse or partner', 'ICD10_2010'), +('Z63.1', 'Problems in relationship with parents and in-laws', 'ICD10_2010'), +('Z63.2', 'Inadequate family support', 'ICD10_2010'), +('Z63.3', 'Absence of family member', 'ICD10_2010'), +('Z63.4', 'Disappearance and death of family member', 'ICD10_2010'), +('Z63.5', 'Disruption of family by separation and divorce', 'ICD10_2010'), +('Z63.6', 'Dependent relative needing care at home', 'ICD10_2010'), +('Z63.7', 'Other stressful life events affecting family and household', 'ICD10_2010'), +('Z63.8', 'Other specified problems related to primary support group', 'ICD10_2010'), +('Z63.9', 'Problem related to primary support group, unspecified', 'ICD10_2010'), +('Z64', 'Problems related to certain psychosocial circumstances', 'ICD10_2010'), +('Z64.0', 'Problems related to unwanted pregnancy', 'ICD10_2010'), +('Z64.1', 'Problems related to multiparity', 'ICD10_2010'), +('Z64.2', 'Seeking and accepting physical, nutritional and chemical intervention known to be hazardous harmful', 'ICD10_2010'), +('Z64.3', 'Seeking and accepting behavioural and psychological intervention known hazard and harmful', 'ICD10_2010'), +('Z64.4', 'Discord with counsellors', 'ICD10_2010'), +('Z65', 'Problems related to other psychosocial circumstances', 'ICD10_2010'), +('Z65.0', 'Conviction in civil and criminal proceedings without imprisonment', 'ICD10_2010'), +('Z65.1', 'Imprisonment and other incarceration', 'ICD10_2010'), +('Z65.2', 'Problems related to release from prison', 'ICD10_2010'), +('Z65.3', 'Problems related to other legal circumstances', 'ICD10_2010'), +('Z65.4', 'Victim of crime and terrorism', 'ICD10_2010'), +('Z65.5', 'Exposure to disaster, war and other hostilities', 'ICD10_2010'), +('Z65.8', 'Other specif problems related to psychosocial circumstances', 'ICD10_2010'), +('Z65.9', 'Problem related to unspecified psychosocial circumstances', 'ICD10_2010'), +('Z70', 'Counselling related to sexual attitude, behaviour and orientation', 'ICD10_2010'), +('Z70.0', 'Counselling related to sexual attitude', 'ICD10_2010'), +('Z70.1', 'Counselling related to patient\'s sexual behavior and orientation', 'ICD10_2010'), +('Z70.2', 'Counselling related to patient\'s sexual behavior and orientation of third party', 'ICD10_2010'), +('Z70.3', 'Counselling related to combined concerns regarding sexual attitude, behaviour and orientation', 'ICD10_2010'), +('Z70.8', 'Other sex counselling', 'ICD10_2010'), +('Z70.9', 'Sex counselling, unspecified', 'ICD10_2010'), +('Z71', 'Persons encountering health services for other counselling and medical advice, not elsewhere classified', 'ICD10_2010'), +('Z71.0', 'Person consulting on behalf of another person', 'ICD10_2010'), +('Z71.1', 'Person with feared complaint in whom no diagnosis is made', 'ICD10_2010'), +('Z71.2', 'Person consulting for explanation of investigation findings', 'ICD10_2010'), +('Z71.3', 'Dietary counselling and surveillance', 'ICD10_2010'), +('Z71.4', 'Alcohol abuse counselling and surveillance', 'ICD10_2010'), +('Z71.5', 'Drug abuse counselling and surveillance', 'ICD10_2010'), +('Z71.6', 'Tobacco abuse counselling', 'ICD10_2010'), +('Z71.7', 'Human immunodeficiency virus [HIV] counselling', 'ICD10_2010'), +('Z71.8', 'Other specified counselling', 'ICD10_2010'), +('Z71.9', 'Counselling, unspecified', 'ICD10_2010'), +('Z72', 'Problems related to lifestyle', 'ICD10_2010'), +('Z72.0', 'Tobacco use', 'ICD10_2010'), +('Z72.1', 'Alcohol use', 'ICD10_2010'), +('Z72.2', 'Drug use', 'ICD10_2010'), +('Z72.3', 'Lack of physical exercise', 'ICD10_2010'), +('Z72.4', 'Inappropriate diet and eating habits', 'ICD10_2010'), +('Z72.5', 'High-risk sexual behaviour', 'ICD10_2010'), +('Z72.6', 'Gambling and betting', 'ICD10_2010'), +('Z72.8', 'Other problems related to lifestyle', 'ICD10_2010'), +('Z72.9', 'Problem related to lifestyle, unspecified', 'ICD10_2010'), +('Z73', 'Problems related to life-management difficulty', 'ICD10_2010'), +('Z73.0', 'Burn-out', 'ICD10_2010'), +('Z73.1', 'Accentuation of personality traits', 'ICD10_2010'), +('Z73.2', 'Lack of relaxation and leisure act', 'ICD10_2010'), +('Z73.3', 'Stress, nec', 'ICD10_2010'), +('Z73.4', 'Inadequate social skills, nec', 'ICD10_2010'), +('Z73.5', 'Social role conflict, nec', 'ICD10_2010'), +('Z73.6', 'Limitation of activities due to disability', 'ICD10_2010'), +('Z73.8', 'Other problems related to life-management difficulty', 'ICD10_2010'), +('Z73.9', 'Problem related to life-management difficulty, unspecified', 'ICD10_2010'), +('Z74', 'Problems related to care-provider dependency', 'ICD10_2010'), +('Z74.0', 'Reduced mobility', 'ICD10_2010'), +('Z74.1', 'Need for assistance with personal care', 'ICD10_2010'), +('Z74.2', 'Need for assistance at home and no other household member able render care', 'ICD10_2010'), +('Z74.3', 'Need for continuous supervision', 'ICD10_2010'), +('Z74.8', 'Other problems related to care-provider dependency', 'ICD10_2010'), +('Z74.9', 'Problem related to care-provider dependency, unspecified', 'ICD10_2010'), +('Z75', 'Problems related to medical facilities and other health care', 'ICD10_2010'), +('Z75.0', 'Medical services not available in home', 'ICD10_2010'), +('Z75.1', 'Person awaiting admission to adequate facility elsewhere', 'ICD10_2010'), +('Z75.2', 'Other waiting period for investigation and treatment', 'ICD10_2010'), +('Z75.3', 'Unavailability and inaccessibility of health-care facilities', 'ICD10_2010'), +('Z75.4', 'Unavailability and inaccessibility of other helping agencies', 'ICD10_2010'), +('Z75.5', 'Holiday relief care', 'ICD10_2010'), +('Z75.8', 'Other problems related to medical facilities and other health care', 'ICD10_2010'), +('Z75.9', 'Unspecified problem related to medical facilities and other health care', 'ICD10_2010'), +('Z76', 'Persons encountering health services in other circumstances', 'ICD10_2010'), +('Z76.0', 'Issue of repeat prescription', 'ICD10_2010'), +('Z76.1', 'Health supervision and care of foundling', 'ICD10_2010'), +('Z76.2', 'Health supervision and care of other healthy infant and child', 'ICD10_2010'), +('Z76.3', 'Healthy person accompanying sick person', 'ICD10_2010'), +('Z76.4', 'Other boarder in health-care facility', 'ICD10_2010'), +('Z76.5', 'Malingerer [conscious simulation]', 'ICD10_2010'), +('Z76.8', 'Persons encountering health services in other specified circumstances', 'ICD10_2010'), +('Z76.9', 'Person encountering health services in unspecified circumstances', 'ICD10_2010'), +('Z80', 'Family history of malignant neoplasm', 'ICD10_2010'), +('Z80.0', 'Family history of malignant neoplasm of digestive organs', 'ICD10_2010'), +('Z80.1', 'Family history of malignant neoplasm of trachea, bronchus and lung', 'ICD10_2010'), +('Z80.2', 'Family history of malignant neoplasm of other respiratory and intrathoracic orgs', 'ICD10_2010'), +('Z80.3', 'Family history of malignant neoplasm of breast', 'ICD10_2010'), +('Z80.4', 'Family history of malignant neoplasm of genital organs', 'ICD10_2010'), +('Z80.5', 'Family history of malignant neoplasm of urinary tract', 'ICD10_2010'), +('Z80.6', 'Family history of leukaemia', 'ICD10_2010'), +('Z80.7', 'Famly history of other malignant neoplasms of lymphoid, heematopoietic and and related tissues', 'ICD10_2010'), +('Z80.8', 'Family history of malignant neoplasm of other organs or systems', 'ICD10_2010'), +('Z80.9', 'Family history of malignant neoplasm, unspecified', 'ICD10_2010'), +('Z81', 'Family history of mental and behavioural disorders', 'ICD10_2010'), +('Z81.0', 'Family history of mental retardation', 'ICD10_2010'), +('Z81.1', 'Family history of alcohol abuse', 'ICD10_2010'), +('Z81.2', 'Family history of tobacco abuse', 'ICD10_2010'), +('Z81.3', 'Family history of other psychoactive substance abuse', 'ICD10_2010'), +('Z81.4', 'Family history of other substance abuse', 'ICD10_2010'), +('Z81.8', 'Family history of other mental and behavioural disorders', 'ICD10_2010'), +('Z82', 'Family history of certain disabilities and chronic diseases leading to disablement', 'ICD10_2010'), +('Z82.0', 'Family history of epilepsy and other dis of the nervous sys', 'ICD10_2010'), +('Z82.1', 'Family history of blindness and visual loss', 'ICD10_2010'), +('Z82.2', 'Family history of deafness and hearing loss', 'ICD10_2010'), +('Z82.3', 'Family history of stroke', 'ICD10_2010'), +('Z82.4', 'Family history ischaemic heart disease and other disease of the circulatory system', 'ICD10_2010'), +('Z82.5', 'Family history of asthma and other chronic lower respiratory disease', 'ICD10_2010'), +('Z82.6', 'Family history of arthritis and other disease musculoskeletal system and connective tissue', 'ICD10_2010'), +('Z82.7', 'Family history of congenital malformations, deformation and chromosomal abnorms', 'ICD10_2010'), +('Z82.8', 'Family history of other disabilities and chronic disease leading disablement nec', 'ICD10_2010'), +('Z83', 'Family history of other specific disorders', 'ICD10_2010'), +('Z83.0', 'Family history of human immunodeficiency virus [HIV] disease', 'ICD10_2010'), +('Z83.1', 'Family history of other infectious and parasitic diseases', 'ICD10_2010'), +('Z83.2', 'Family history of disease of the blood and blood forming organs and certain disorder involving immune mechanism', 'ICD10_2010'), +('Z83.3', 'Family history of diabetes mellitus', 'ICD10_2010'), +('Z83.4', 'Fam hist of other endocrine, nutritional and metabolic diseases', 'ICD10_2010'), +('Z83.5', 'Family history of eye and ear disorders', 'ICD10_2010'), +('Z83.6', 'Family history of diseases of the respiratory system', 'ICD10_2010'), +('Z83.7', 'Family history of diseases of the digestive system', 'ICD10_2010'), +('Z84', 'Family history of other conditions', 'ICD10_2010'), +('Z84.0', 'Family history of diseases of the skin and subcutaneous tissue', 'ICD10_2010'), +('Z84.1', 'Family history of disorders of kidney and ureter', 'ICD10_2010'), +('Z84.2', 'Family history of other diseases of the genitourinary system', 'ICD10_2010'), +('Z84.3', 'Family history of consanguinity', 'ICD10_2010'), +('Z84.8', 'Family history of other specified conditions', 'ICD10_2010'), +('Z85', 'Personal history of malignant neoplasm', 'ICD10_2010'), +('Z85.0', 'Personal history of malignant neoplasm of digestive organs', 'ICD10_2010'), +('Z85.1', 'Personal history of malignant neoplasm of trachea, bronchus and lung', 'ICD10_2010'), +('Z85.2', 'Personal history malignant neoplasm of other respiratory and intrathoracic organs', 'ICD10_2010'), +('Z85.3', 'Personal history of malignant neoplasm of breast', 'ICD10_2010'), +('Z85.4', 'Personal history of malignant neoplasm of genital organs', 'ICD10_2010'), +('Z85.5', 'Personal history of malignant neoplasm of urinary tract', 'ICD10_2010'), +('Z85.6', 'Personal history of leukaemia', 'ICD10_2010'), +('Z85.7', 'Personal history of other malignant neoplasms of lymphoid haematopoietic and related tissue', 'ICD10_2010'), +('Z85.8', 'Personal history of malignant neoplasms of other organs and system', 'ICD10_2010'), +('Z85.9', 'Personal history of malignant neoplasm, unspecified', 'ICD10_2010'), +('Z86', 'Personal history of certain other diseases', 'ICD10_2010'), +('Z86.0', 'Personal history of other neoplasms', 'ICD10_2010'), +('Z86.1', 'Personal history of infectious and parasitic diseases', 'ICD10_2010'), +('Z86.2', 'Personal history of disease of the blood and blood-forming organs and certain disorders involving the immune mechanism', 'ICD10_2010'), +('Z86.3', 'Personal history of endocrine, nutritional and metabolic diseases', 'ICD10_2010'), +('Z86.4', 'Personal history of psychoactive substance abuse', 'ICD10_2010'), +('Z86.5', 'Personal history of other mental and behavioural disorders', 'ICD10_2010'), +('Z86.6', 'Personal history of disease of the nervous system and sense organs', 'ICD10_2010'), +('Z86.7', 'Personal history of diseases of the circulatory system', 'ICD10_2010'), +('Z87', 'Personal history of other diseases and conditions', 'ICD10_2010'), +('Z87.0', 'Personal history of diseases of the respiratory system', 'ICD10_2010'), +('Z87.1', 'Personal history of diseases of the digestive system', 'ICD10_2010'), +('Z87.2', 'Personal history of disease of the skin and subcutaneous tissue', 'ICD10_2010'), +('Z87.3', 'Personal history of disease of the musculoskeletal system and connective tissue', 'ICD10_2010'), +('Z87.4', 'Personal history of diseases of the genitourinary system', 'ICD10_2010'), +('Z87.5', 'Personal history complications of pregnancy, childbirth and the puerperium', 'ICD10_2010'), +('Z87.6', 'Personal history of certain conditions arising in perinatal period', 'ICD10_2010'), +('Z87.7', 'Personal history of congenital malformations, deformations and chromosomal abnomalities', 'ICD10_2010'); +INSERT INTO `icd10` (`ID_ICD10`, `Diagnosa`, `Versi_ICD10`) VALUES +('Z87.8', 'Personal history of other specified conditions', 'ICD10_2010'), +('Z88', 'Personal history of allergy to drugs, medicaments and biological substances', 'ICD10_2010'), +('Z88.0', 'Personal history of allergy to penicillin', 'ICD10_2010'), +('Z88.1', 'Personal history of allergy to other antibiotic agents', 'ICD10_2010'), +('Z88.2', 'Personal history of allergy to sulfonamides', 'ICD10_2010'), +('Z88.3', 'Personal history of allergy to other anti-infective agents', 'ICD10_2010'), +('Z88.4', 'Personal history of allergy to anaesthetic agent', 'ICD10_2010'), +('Z88.5', 'Personal history of allergy to narcotic agent', 'ICD10_2010'), +('Z88.6', 'Personal history of allergy to analgesic agent', 'ICD10_2010'), +('Z88.7', 'Personal history of allergy to serum and vaccine', 'ICD10_2010'), +('Z88.8', 'Personal history of allergy to other drugs, medicaments and biological substances', 'ICD10_2010'), +('Z88.9', 'Personal history of allergy to unspecified drugs, medicaments and biological substances', 'ICD10_2010'), +('Z89', 'Acquired absence of limb', 'ICD10_2010'), +('Z89.0', 'Acquired absence of finger(s) [including thumb], unilateral', 'ICD10_2010'), +('Z89.1', 'Acquired absence of hand and wrist', 'ICD10_2010'), +('Z89.2', 'Acquired absence of upper limb above wrist', 'ICD10_2010'), +('Z89.3', 'Acquired absence of both upper limbs [any level]', 'ICD10_2010'), +('Z89.4', 'Acquired absence of foot and ankle', 'ICD10_2010'), +('Z89.5', 'Acquired absence of leg at or below knee', 'ICD10_2010'), +('Z89.6', 'Acquired absence of leg above knee', 'ICD10_2010'), +('Z89.7', 'Acquired absence of both lower limbs [any level, except toes alone]', 'ICD10_2010'), +('Z89.8', 'Acquired absence of upper and lower limbs [any level]', 'ICD10_2010'), +('Z89.9', 'Acquired absence of limb, unspecified', 'ICD10_2010'), +('Z90', 'Acquired absence of organs, not elsewhere classified', 'ICD10_2010'), +('Z90.0', 'Acquired absence of part of head and neck', 'ICD10_2010'), +('Z90.1', 'Acquired absence of breast(s)', 'ICD10_2010'), +('Z90.2', 'Acquired absence of lung [part of]', 'ICD10_2010'), +('Z90.3', 'Acquired absence of part of stomach', 'ICD10_2010'), +('Z90.4', 'Acquired absence of other parts of digestive tract', 'ICD10_2010'), +('Z90.5', 'Acquired absence of kidney', 'ICD10_2010'), +('Z90.6', 'Acquired absence of other organs of urinary tract', 'ICD10_2010'), +('Z90.7', 'Acquired absence of genital organ(s)', 'ICD10_2010'), +('Z90.8', 'Acquired absence of other organs', 'ICD10_2010'), +('Z91', 'Personal history of risk-factors, not elsewhere classified', 'ICD10_2010'), +('Z91.0', 'Personal hist of allergy oth than to drugs and biol subs', 'ICD10_2010'), +('Z91.1', 'Personal hist noncompliance with med treatment and regimen', 'ICD10_2010'), +('Z91.2', 'Personal history of poor personal hygiene', 'ICD10_2010'), +('Z91.3', 'Personal history of unhealthy sleep-wake schedule', 'ICD10_2010'), +('Z91.4', 'Personal history of psychological trauma nec', 'ICD10_2010'), +('Z91.5', 'Personal history of self-harm', 'ICD10_2010'), +('Z91.6', 'Personal history of other physical trauma', 'ICD10_2010'), +('Z91.8', 'Personal history of other specified risk-factors nec', 'ICD10_2010'), +('Z92', 'Personal history of medical treatment', 'ICD10_2010'), +('Z92.0', 'Personal history of contraception', 'ICD10_2010'), +('Z92.1', 'Personal history long -term (current) use of anticoagulants', 'ICD10_2010'), +('Z92.2', 'Personal history of long-term use of other medicaments', 'ICD10_2010'), +('Z92.3', 'Personal history of irradiation', 'ICD10_2010'), +('Z92.4', 'Personal history of major surgery, nec', 'ICD10_2010'), +('Z92.5', 'Personal history of rehabilitation measures', 'ICD10_2010'), +('Z92.6', 'Personal history of chemotheraphy for neoplastic disease', 'ICD10_2010'), +('Z92.8', 'Personal history of other medical treatment', 'ICD10_2010'), +('Z92.9', 'Personal history of medical treatment, unspecified', 'ICD10_2010'), +('Z93', 'Artificial opening status', 'ICD10_2010'), +('Z93.0', 'Tracheostomy status', 'ICD10_2010'), +('Z93.1', 'Gastrostomy status', 'ICD10_2010'), +('Z93.2', 'Ileostomy status', 'ICD10_2010'), +('Z93.3', 'Colostomy status', 'ICD10_2010'), +('Z93.4', 'Other artificial openings of gastrointestinal tract status', 'ICD10_2010'), +('Z93.5', 'Cystostomy status', 'ICD10_2010'), +('Z93.6', 'Other artificial openings of urinary tract status', 'ICD10_2010'), +('Z93.8', 'Other artificial opening status', 'ICD10_2010'), +('Z93.9', 'Artificial opening status, unspecified', 'ICD10_2010'), +('Z94', 'Transplanted organ and tissue status', 'ICD10_2010'), +('Z94.0', 'Kidney transplant status', 'ICD10_2010'), +('Z94.1', 'Heart transplant status', 'ICD10_2010'), +('Z94.2', 'Lung transplant status', 'ICD10_2010'), +('Z94.3', 'Heart and lungs transplant status', 'ICD10_2010'), +('Z94.4', 'Liver transplant status', 'ICD10_2010'), +('Z94.5', 'Skin transplant status', 'ICD10_2010'), +('Z94.6', 'Bone transplant status', 'ICD10_2010'), +('Z94.7', 'Corneal transplant status', 'ICD10_2010'), +('Z94.8', 'Other transplanted organ and tissue status', 'ICD10_2010'), +('Z94.9', 'Transplanted organ and tissue status, unspecified', 'ICD10_2010'), +('Z95', 'Presence of cardiac and vascular implants and grafts', 'ICD10_2010'), +('Z95.0', 'Presence of cardiac pacemaker', 'ICD10_2010'), +('Z95.1', 'Presence of aortocoronary bypass graft', 'ICD10_2010'), +('Z95.2', 'Presence of prosthetic heart valve', 'ICD10_2010'), +('Z95.3', 'Presence of xenogenic heart valve', 'ICD10_2010'), +('Z95.4', 'Presence of other heart-valve replacement', 'ICD10_2010'), +('Z95.5', 'Presence of coronary angioplasty implant and graft', 'ICD10_2010'), +('Z95.8', 'Presence of other cardiac and vascular implants and grafts', 'ICD10_2010'), +('Z95.9', 'Presence of cardiac and vascular implant and graft unspec act', 'ICD10_2010'), +('Z96', 'Presence of other functional implants', 'ICD10_2010'), +('Z96.0', 'Presence of urogenital implants', 'ICD10_2010'), +('Z96.1', 'Presence of intraocular lens', 'ICD10_2010'), +('Z96.2', 'Presence of otological and audiological implants', 'ICD10_2010'), +('Z96.3', 'Presence of artificial larynx', 'ICD10_2010'), +('Z96.4', 'Presence of endocrine implants', 'ICD10_2010'), +('Z96.5', 'Presence of tooth-root and mandibular implants', 'ICD10_2010'), +('Z96.6', 'Presence of orthopaedic joint implants', 'ICD10_2010'), +('Z96.7', 'Presence of other bone and tendon implants', 'ICD10_2010'), +('Z96.8', 'Presence of other specified functional implants', 'ICD10_2010'), +('Z96.9', 'Presence of functional implant, unspecified', 'ICD10_2010'), +('Z97', 'Presence of other devices', 'ICD10_2010'), +('Z97.0', 'Presence of artificial eye', 'ICD10_2010'), +('Z97.1', 'Presence of artificial limb (complete)(partial)', 'ICD10_2010'), +('Z97.2', 'Presence of dental prosthetic device (complete)(partial)', 'ICD10_2010'), +('Z97.3', 'Presence of spectacles and contact lenses', 'ICD10_2010'), +('Z97.4', 'Presence of external hearing-aid', 'ICD10_2010'), +('Z97.5', 'Presence of (intrauterine) contraceptive device', 'ICD10_2010'), +('Z97.8', 'Presence of other specified devices', 'ICD10_2010'), +('Z98', 'Other postsurgical states', 'ICD10_2010'), +('Z98.0', 'Intestinal bypass and anastomosis status', 'ICD10_2010'), +('Z98.1', 'Arthrodesis status', 'ICD10_2010'), +('Z98.2', 'Presence of cerebrospinal fluid drainage device', 'ICD10_2010'), +('Z98.8', 'Other specified postsurgical states', 'ICD10_2010'), +('Z99', 'Dependence on enabling machines and devices, not elsewhere classified', 'ICD10_2010'), +('Z99.0', 'Dependence on aspirator', 'ICD10_2010'), +('Z99.1', 'Dependence on respirator', 'ICD10_2010'), +('Z99.2', 'Dependence on renal dialysis', 'ICD10_2010'), +('Z99.3', 'Dependence on wheelchair', 'ICD10_2010'), +('Z99.8', 'Dependence on other enabling machines and devices', 'ICD10_2010'), +('Z99.9', 'Dependence on unspecified enabling machine and device', 'ICD10_2010'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `ina_cbg_rawatinap` +-- + +CREATE TABLE `ina_cbg_rawatinap` ( + `ID_INACBG_RI` varchar(20) NOT NULL, + `Tindakan_RI` varchar(150) DEFAULT NULL, + `Tarif_Kelas_3` decimal(15,2) DEFAULT NULL, + `Tarif_Kelas_2` decimal(15,2) DEFAULT NULL, + `Tarif_Kelas_1` decimal(15,2) DEFAULT NULL +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; + +-- +-- Dumping data for table `ina_cbg_rawatinap` +-- + +INSERT INTO `ina_cbg_rawatinap` (`ID_INACBG_RI`, `Tindakan_RI`, `Tarif_Kelas_3`, `Tarif_Kelas_2`, `Tarif_Kelas_1`) VALUES +('A-4-10-I', 'SEPTIKEMIA (RINGAN)', 3702300.00, 4313200.00, 4924100.00), +('A-4-10-II', 'SEPTIKEMIA (SEDANG)', 6323900.00, 7367300.00, 8410800.00), +('A-4-10-III', 'SEPTIKEMIA (BERAT)', 8526600.00, 9933500.00, 11340400.00), +('A-4-11-I', 'INFEKSI SESUDAH OPERASI & TRAUMA (RINGAN)', 4917700.00, 5729100.00, 6540500.00), +('A-4-11-II', 'INFEKSI SESUDAH OPERASI & TRAUMA (SEDANG)', 6465700.00, 7532500.00, 8599300.00), +('A-4-11-III', 'INFEKSI SESUDAH OPERASI & TRAUMA (BERAT)', 8841500.00, 10300300.00, 11759200.00), +('A-4-12-I', 'DEMAM YANG TIDAK DITENTUKAN (RINGAN)', 2927100.00, 3410100.00, 3893100.00), +('A-4-12-II', 'DEMAM YANG TIDAK DITENTUKAN (SEDANG)', 5052600.00, 5886300.00, 6720000.00), +('A-4-12-III', 'DEMAM YANG TIDAK DITENTUKAN (BERAT)', 7279900.00, 8481100.00, 9682300.00), +('A-4-13-I', 'INFEKSI VIRAL & NON-BAKTERIAL LAIN (RINGAN)', 2178600.00, 2538100.00, 2897600.00), +('A-4-13-II', 'INFEKSI VIRAL & NON-BAKTERIAL LAIN (SEDANG)', 3850100.00, 4485400.00, 5120700.00), +('A-4-13-III', 'INFEKSI VIRAL & NON-BAKTERIAL LAIN (BERAT)', 4620100.00, 5382400.00, 6144800.00), +('A-4-14-I', 'PENYAKIT INFEKSI BAKTERI DAN PARASIT LAIN-LAIN (RINGAN)', 2449100.00, 2853200.00, 3257300.00), +('A-4-14-II', 'PENYAKIT INFEKSI BAKTERI DAN PARASIT LAIN-LAIN (SEDANG)', 4106400.00, 4784000.00, 5461500.00), +('A-4-14-III', 'PENYAKIT INFEKSI BAKTERI DAN PARASIT LAIN-LAIN (BERAT)', 4927700.00, 5740800.00, 6553800.00), +('A-4-15-I', 'INFEKSI HIV (RINGAN)', 19053700.00, 22197500.00, 25341300.00), +('A-4-15-II', 'INFEKSI HIV (SEDANG)', 23728100.00, 27643200.00, 31558300.00), +('A-4-15-III', 'INFEKSI HIV (BERAT)', 26806100.00, 31229100.00, 35652100.00), +('B-1-01-I', 'PENCANGKOKAN HATI (RINGAN)', 300709600.00, 350326600.00, 399943700.00), +('B-1-01-II', 'PENCANGKOKAN HATI (SEDANG)', 303348900.00, 353401500.00, 403454000.00), +('B-1-01-III', 'PENCANGKOKAN HATI (BERAT)', 306473400.00, 357041500.00, 407609600.00), +('B-1-10-I', 'PROSEDUR HATI DAN PANKREAS (RINGAN)', 13222300.00, 15404000.00, 17585700.00), +('B-1-10-II', 'PROSEDUR HATI DAN PANKREAS (SEDANG)', 20950400.00, 24407200.00, 27864000.00), +('B-1-10-III', 'PROSEDUR HATI DAN PANKREAS (BERAT)', 37209400.00, 43348900.00, 49488500.00), +('B-1-11-I', 'PROSEDUR SALURAN EMPEDU KOMPLEK (RINGAN)', 33886600.00, 39477900.00, 45069200.00), +('B-1-11-II', 'PROSEDUR SALURAN EMPEDU KOMPLEK (SEDANG)', 40377600.00, 47039900.00, 53702300.00), +('B-1-11-III', 'PROSEDUR SALURAN EMPEDU KOMPLEK (BERAT)', 62394800.00, 72689900.00, 82985100.00), +('B-1-12-I', 'CHOLESISTEKTOMI TANPA LAPAROSKOPIK (RINGAN)', 9971600.00, 11616900.00, 13262300.00), +('B-1-12-II', 'CHOLESISTEKTOMI TANPA LAPAROSKOPIK (SEDANG)', 11090300.00, 12920200.00, 14750100.00), +('B-1-12-III', 'CHOLESISTEKTOMI TANPA LAPAROSKOPIK (BERAT)', 17349400.00, 20212100.00, 23074800.00), +('B-1-13-I', 'PROSEDUR PANKREAS DAN HEPATOBILLIARI LAIN-LAIN (RINGAN)', 9781900.00, 11395900.00, 13009900.00), +('B-1-13-II', 'PROSEDUR PANKREAS DAN HEPATOBILLIARI LAIN-LAIN (SEDANG)', 13771600.00, 16043900.00, 18316100.00), +('B-1-13-III', 'PROSEDUR PANKREAS DAN HEPATOBILLIARI LAIN-LAIN (BERAT)', 20430100.00, 23801000.00, 27172000.00), +('B-1-14-I', 'CHOLESISTEKTOMI DENGAN LAPAROSKOPIK (RINGAN)', 20809300.00, 24242800.00, 27676400.00), +('B-1-14-II', 'CHOLESISTEKTOMI DENGAN LAPAROSKOPIK (SEDANG)', 21855600.00, 25461800.00, 29068000.00), +('B-1-14-III', 'CHOLESISTEKTOMI DENGAN LAPAROSKOPIK (BERAT)', 38688200.00, 45071800.00, 51455400.00), +('B-4-10-I', 'SIROSIS HATI DAN HEPATITIS ALKOHOLIK (RINGAN)', 4394400.00, 5119500.00, 5844500.00), +('B-4-10-II', 'SIROSIS HATI DAN HEPATITIS ALKOHOLIK (SEDANG)', 5729800.00, 6675200.00, 7620700.00), +('B-4-10-III', 'SIROSIS HATI DAN HEPATITIS ALKOHOLIK (BERAT)', 8692500.00, 10126700.00, 11561000.00), +('B-4-11-I', 'TUMOR SISTEM HEPATOBILLIARI DAN PANCREAS (RINGAN)', 7119100.00, 8293800.00, 9468500.00), +('B-4-11-II', 'TUMOR SISTEM HEPATOBILLIARI DAN PANCREAS (SEDANG)', 9966900.00, 11611400.00, 13256000.00), +('B-4-11-III', 'TUMOR SISTEM HEPATOBILLIARI DAN PANCREAS (BERAT)', 12074700.00, 14067000.00, 16059400.00), +('B-4-12-I', 'GANGGUAN PANKREAS SELAIN TUMOR (RINGAN)', 6935700.00, 8080100.00, 9224500.00), +('B-4-12-II', 'GANGGUAN PANKREAS SELAIN TUMOR (SEDANG)', 10075800.00, 11738300.00, 13400800.00), +('B-4-12-III', 'GANGGUAN PANKREAS SELAIN TUMOR (BERAT)', 13636000.00, 15885900.00, 18135900.00), +('B-4-13-I', 'GANGGUAN HATI LAIN-LAIN (RINGAN)', 6139900.00, 7153000.00, 8166100.00), +('B-4-13-II', 'GANGGUAN HATI LAIN-LAIN (SEDANG)', 7152800.00, 8333000.00, 9513200.00), +('B-4-13-III', 'GANGGUAN HATI LAIN-LAIN (BERAT)', 9853500.00, 11479300.00, 13105200.00), +('B-4-14-I', 'GANGGUAN SALURAN EMPEDU LAIN-LAIN (RINGAN)', 6133400.00, 7145400.00, 8157400.00), +('B-4-14-II', 'GANGGUAN SALURAN EMPEDU LAIN-LAIN (SEDANG)', 7155300.00, 8335900.00, 9516600.00), +('B-4-14-III', 'GANGGUAN SALURAN EMPEDU LAIN-LAIN (BERAT)', 9584700.00, 11166200.00, 12747700.00), +('C-4-10-I', 'LEUKEMIA AKUT (RINGAN)', 12422400.00, 14472100.00, 16521800.00), +('C-4-10-II', 'LEUKEMIA AKUT (SEDANG)', 19978600.00, 23275100.00, 26571600.00), +('C-4-10-III', 'LEUKEMIA AKUT (BERAT)', 37433400.00, 43609900.00, 49786400.00), +('C-4-11-I', 'LIMFOMA & LEUKEMIA NON AKUT (RINGAN)', 6466300.00, 7533200.00, 8600200.00), +('C-4-11-II', 'LIMFOMA & LEUKEMIA NON AKUT (SEDANG)', 8652800.00, 10080500.00, 11508300.00), +('C-4-11-III', 'LIMFOMA & LEUKEMIA NON AKUT (BERAT)', 13303800.00, 15498900.00, 17694100.00), +('C-4-12-I', 'RADIOTERAPI (RINGAN)', 7256600.00, 8453900.00, 9651200.00), +('C-4-12-II', 'RADIOTERAPI (SEDANG)', 13001300.00, 15146400.00, 17291600.00), +('C-4-12-III', 'RADIOTERAPI (BERAT)', 21779100.00, 25372600.00, 28966200.00), +('C-4-13-I', 'KEMOTERAPI (RINGAN)', 3236800.00, 3770900.00, 4305000.00), +('C-4-13-II', 'KEMOTERAPI (SEDANG)', 6091700.00, 7096800.00, 8102000.00), +('C-4-13-III', 'KEMOTERAPI (BERAT)', 8246100.00, 9606700.00, 10967400.00), +('C-4-14-I', 'TUMOR MYELOPROLIFERATIF LAIN-LAIN (RINGAN)', 5719900.00, 6663600.00, 7607400.00), +('C-4-14-II', 'TUMOR MYELOPROLIFERATIF LAIN-LAIN (SEDANG)', 7604800.00, 8859600.00, 10114400.00), +('C-4-14-III', 'TUMOR MYELOPROLIFERATIF LAIN-LAIN (BERAT)', 11241000.00, 13095800.00, 14950600.00), +('D-1-10-I', 'PENCANGKOKAN SUMSUM TULANG (RINGAN)', 32492900.00, 37854200.00, 43215600.00), +('D-1-10-II', 'PENCANGKOKAN SUMSUM TULANG (SEDANG)', 49488900.00, 57654600.00, 65820300.00), +('D-1-10-III', 'PENCANGKOKAN SUMSUM TULANG (BERAT)', 70923000.00, 82625300.00, 94327600.00), +('D-1-11-I', 'PROSEDUR LIMPA (RINGAN)', 11289200.00, 13151900.00, 15014600.00), +('D-1-11-II', 'PROSEDUR LIMPA (SEDANG)', 22214300.00, 25879700.00, 29545000.00), +('D-1-11-III', 'PROSEDUR LIMPA (BERAT)', 28868400.00, 33631700.00, 38395000.00), +('D-1-20-I', 'PROSEDUR PADA DARAH DAN ORGAN PEMBENTUK DARAH LAIN-LAIN (RINGAN)', 7541600.00, 8786000.00, 10030400.00), +('D-1-20-II', 'PROSEDUR PADA DARAH DAN ORGAN PEMBENTUK DARAH LAIN-LAIN (SEDANG)', 20783600.00, 24212900.00, 27642200.00), +('D-1-20-III', 'PROSEDUR PADA DARAH DAN ORGAN PEMBENTUK DARAH LAIN-LAIN (BERAT)', 32968800.00, 38408600.00, 43848500.00), +('D-4-10-I', 'AGRANULOSITOSIS (RINGAN)', 3290400.00, 3833300.00, 4376200.00), +('D-4-10-II', 'AGRANULOSITOSIS (SEDANG)', 5185200.00, 6040700.00, 6896300.00), +('D-4-10-III', 'AGRANULOSITOSIS (BERAT)', 7981500.00, 9298400.00, 10615400.00), +('D-4-11-I', 'GANGGUAN PEMBEKUAN DARAH (RINGAN)', 5904100.00, 6878300.00, 7852500.00), +('D-4-11-II', 'GANGGUAN PEMBEKUAN DARAH (SEDANG)', 10609400.00, 12359900.00, 14110500.00), +('D-4-11-III', 'GANGGUAN PEMBEKUAN DARAH (BERAT)', 14574600.00, 16979400.00, 19384300.00), +('D-4-12-I', 'KRISIS ANEMIA SEL SICKLE (RINGAN)', 5264500.00, 6133100.00, 7001700.00), +('D-4-12-II', 'KRISIS ANEMIA SEL SICKLE (SEDANG)', 7301900.00, 8506700.00, 9711600.00), +('D-4-12-III', 'KRISIS ANEMIA SEL SICKLE (BERAT)', 10841100.00, 12629900.00, 14418700.00), +('D-4-13-I', 'GANGGUAN SEL DARAH MERAH SELAIN KRISIS ANEMIA SEL SICKLE (RINGAN)', 4362200.00, 5081900.00, 5801700.00), +('D-4-13-II', 'GANGGUAN SEL DARAH MERAH SELAIN KRISIS ANEMIA SEL SICKLE (SEDANG)', 6173900.00, 7192600.00, 8211300.00), +('D-4-13-III', 'GANGGUAN SEL DARAH MERAH SELAIN KRISIS ANEMIA SEL SICKLE (BERAT)', 7896600.00, 9199500.00, 10502500.00), +('D-4-14-I', 'GANGGUAN PADA DARAH & ORGAN PEMBENTUK DARAH LAIN-LAIN (RINGAN)', 4678500.00, 5450500.00, 6222500.00), +('D-4-14-II', 'GANGGUAN PADA DARAH & ORGAN PEMBENTUK DARAH LAIN-LAIN (SEDANG)', 7660000.00, 8923900.00, 10187800.00), +('D-4-14-III', 'GANGGUAN PADA DARAH & ORGAN PEMBENTUK DARAH LAIN-LAIN (BERAT)', 9368900.00, 10914800.00, 12460700.00), +('E-1-01-I', 'PROSEDUR KELENJAR PITUITARI DAN PINEAL (RINGAN)', 18442100.00, 21485100.00, 24528000.00), +('E-1-01-II', 'PROSEDUR KELENJAR PITUITARI DAN PINEAL (SEDANG)', 21095200.00, 24575900.00, 28056600.00), +('E-1-01-III', 'PROSEDUR KELENJAR PITUITARI DAN PINEAL (BERAT)', 36392700.00, 42397500.00, 48402300.00), +('E-1-10-I', 'PROSEDUR KELENJAR ADRENAL (RINGAN)', 13969800.00, 16274800.00, 18579800.00), +('E-1-10-II', 'PROSEDUR KELENJAR ADRENAL (SEDANG)', 18368700.00, 21399500.00, 24430400.00), +('E-1-10-III', 'PROSEDUR KELENJAR ADRENAL (BERAT)', 32880000.00, 38305200.00, 43730400.00), +('E-1-20-I', 'PROSEDUR PADA TIROID, PARATIROID DAN SALURAN TIROGLOSAL (RINGAN)', 10976800.00, 12788000.00, 14599200.00), +('E-1-20-II', 'PROSEDUR PADA TIROID, PARATIROID DAN SALURAN TIROGLOSAL (SEDANG)', 14774500.00, 17212300.00, 19650100.00), +('E-1-20-III', 'PROSEDUR PADA TIROID, PARATIROID DAN SALURAN TIROGLOSAL (BERAT)', 20362200.00, 23722000.00, 27081800.00), +('E-4-10-I', 'PENYAKIT KENCING MANIS & GANGGUAN NUTRISI/ METABOLIK (RINGAN)', 3884700.00, 4525700.00, 5166700.00), +('E-4-10-II', 'PENYAKIT KENCING MANIS & GANGGUAN NUTRISI/ METABOLIK (SEDANG)', 7524000.00, 8765400.00, 10006900.00), +('E-4-10-III', 'PENYAKIT KENCING MANIS & GANGGUAN NUTRISI/ METABOLIK (BERAT)', 12607200.00, 14687400.00, 16767600.00), +('E-4-11-I', 'HIPOVOLEMIA & GANGGUAN ELEKROLIT (RINGAN)', 4315200.00, 5027200.00, 5739300.00), +('E-4-11-II', 'HIPOVOLEMIA & GANGGUAN ELEKROLIT (SEDANG)', 6578900.00, 7664400.00, 8750000.00), +('E-4-11-III', 'HIPOVOLEMIA & GANGGUAN ELEKROLIT (BERAT)', 8914900.00, 10385800.00, 11856800.00), +('E-4-12-I', 'GANGGUAN METABOLIK BAWAAN (RINGAN)', 4958100.00, 5776200.00, 6594300.00), +('E-4-12-II', 'GANGGUAN METABOLIK BAWAAN (SEDANG)', 8586200.00, 10002900.00, 11419700.00), +('E-4-12-III', 'GANGGUAN METABOLIK BAWAAN (BERAT)', 10177800.00, 11857100.00, 13536500.00), +('E-4-13-I', 'GANGGUAN KELENJAR ENDOKRIN LAIN-LAIN (RINGAN)', 5399200.00, 6290100.00, 7181000.00), +('E-4-13-II', 'GANGGUAN KELENJAR ENDOKRIN LAIN-LAIN (SEDANG)', 7908800.00, 9213800.00, 10518800.00), +('E-4-13-III', 'GANGGUAN KELENJAR ENDOKRIN LAIN-LAIN (BERAT)', 10338500.00, 12044300.00, 13750200.00), +('F-4-10-I', 'SCHIZOFRENIA (RINGAN)', 5748200.00, 6696600.00, 7645100.00), +('F-4-10-II', 'SCHIZOFRENIA (SEDANG)', 6606300.00, 7696300.00, 8786400.00), +('F-4-10-III', 'SCHIZOFRENIA (BERAT)', 7927600.00, 9235600.00, 10543700.00), +('F-4-11-I', 'DEPRESI MAYOR (RINGAN)', 6309700.00, 7350800.00, 8391900.00), +('F-4-11-II', 'DEPRESI MAYOR (SEDANG)', 6477300.00, 7546000.00, 8614800.00), +('F-4-11-III', 'DEPRESI MAYOR (BERAT)', 8306200.00, 9676700.00, 11047300.00), +('F-4-12-I', 'GANGGUAN PERSONALITI & KONTROL IMPULSE (RINGAN)', 3679400.00, 4286500.00, 4893600.00), +('F-4-12-II', 'GANGGUAN PERSONALITI & KONTROL IMPULSE (SEDANG)', 5410900.00, 6303600.00, 7196400.00), +('F-4-12-III', 'GANGGUAN PERSONALITI & KONTROL IMPULSE (BERAT)', 10826100.00, 12612400.00, 14398700.00), +('F-4-13-I', 'GANGGUAN BIPOLAR (RINGAN)', 4478200.00, 5217100.00, 5956100.00), +('F-4-13-II', 'GANGGUAN BIPOLAR (SEDANG)', 7285300.00, 8487300.00, 9689400.00), +('F-4-13-III', 'GANGGUAN BIPOLAR (BERAT)', 9298600.00, 10832800.00, 12367100.00), +('F-4-14-I', 'DEPRESI (RINGAN)', 2555100.00, 2976700.00, 3398300.00), +('F-4-14-II', 'DEPRESI (SEDANG)', 3277200.00, 3817900.00, 4358700.00), +('F-4-14-III', 'DEPRESI (BERAT)', 5117700.00, 5962100.00, 6806500.00), +('F-4-15-I', 'FOBIA,ANXIETAS DAN NEUROSIS LAIN-LAIN (RINGAN)', 4069100.00, 4740500.00, 5411900.00), +('F-4-15-II', 'FOBIA,ANXIETAS DAN NEUROSIS LAIN-LAIN (SEDANG)', 6063400.00, 7063900.00, 8064400.00), +('F-4-15-III', 'FOBIA,ANXIETAS DAN NEUROSIS LAIN-LAIN (BERAT)', 8005600.00, 9326500.00, 10647500.00), +('F-4-16-I', 'GANGGUAN ORGANIK LAIN-LAIN TERMASUK KETERBELAKANGAN MENTAL (RINGAN)', 8006100.00, 9327100.00, 10648100.00), +('F-4-16-II', 'GANGGUAN ORGANIK LAIN-LAIN TERMASUK KETERBELAKANGAN MENTAL (SEDANG)', 9308300.00, 10844200.00, 12380100.00), +('F-4-16-III', 'GANGGUAN ORGANIK LAIN-LAIN TERMASUK KETERBELAKANGAN MENTAL (BERAT)', 12425000.00, 14475100.00, 16525300.00), +('F-4-17-I', 'GANGGUAN MENTAL PADA KANAK-KANAK (RINGAN)', 2551000.00, 2971900.00, 3392800.00), +('F-4-17-II', 'GANGGUAN MENTAL PADA KANAK-KANAK (SEDANG)', 6706600.00, 7813200.00, 8919800.00), +('F-4-17-III', 'GANGGUAN MENTAL PADA KANAK-KANAK (BERAT)', 7201300.00, 8389500.00, 9577800.00), +('F-4-18-I', 'GANGGUAN NUTRISI KOMPULSIF (RINGAN)', 6956700.00, 8104500.00, 9252400.00), +('F-4-18-II', 'GANGGUAN NUTRISI KOMPULSIF (SEDANG)', 8702300.00, 10138100.00, 11574000.00), +('F-4-18-III', 'GANGGUAN NUTRISI KOMPULSIF (BERAT)', 13490400.00, 15716300.00, 17942200.00), +('F-4-19-I', 'GANGGUAN MENTAL LAIN-LAIN (RINGAN)', 5982700.00, 6969900.00, 7957000.00), +('F-4-19-II', 'GANGGUAN MENTAL LAIN-LAIN (SEDANG)', 6808100.00, 7931400.00, 9054800.00), +('F-4-19-III', 'GANGGUAN MENTAL LAIN-LAIN (BERAT)', 8476000.00, 9874500.00, 11273100.00), +('G-1-01-I', 'PROSEDUR PADA PEMBULUH DARAH INTRA KRANIAL (RINGAN)', 32973800.00, 38414400.00, 43855100.00), +('G-1-01-II', 'PROSEDUR PADA PEMBULUH DARAH INTRA KRANIAL (SEDANG)', 38138900.00, 44431800.00, 50724700.00), +('G-1-01-III', 'PROSEDUR PADA PEMBULUH DARAH INTRA KRANIAL (BERAT)', 60188500.00, 70119600.00, 80050600.00), +('G-1-10-I', 'KRANIOTOMI (RINGAN)', 35066200.00, 40852100.00, 46638000.00), +('G-1-10-II', 'KRANIOTOMI (SEDANG)', 42947300.00, 50033600.00, 57119900.00), +('G-1-10-III', 'KRANIOTOMI (BERAT)', 52776400.00, 61484500.00, 70192600.00), +('G-1-11-I', 'PROSEDUR VENTRICULAR SHUNT (RINGAN)', 17260000.00, 20107900.00, 22955800.00), +('G-1-11-II', 'PROSEDUR VENTRICULAR SHUNT (SEDANG)', 31555200.00, 36761800.00, 41968400.00), +('G-1-11-III', 'PROSEDUR VENTRICULAR SHUNT (BERAT)', 50707800.00, 59074600.00, 67441400.00), +('G-1-12-I', 'PROSEDUR PEMBULUH DARAH EXTRA KRANIAL (RINGAN)', 7463000.00, 8694400.00, 9925800.00), +('G-1-12-II', 'PROSEDUR PEMBULUH DARAH EXTRA KRANIAL (SEDANG)', 13509100.00, 15738100.00, 17967200.00), +('G-1-12-III', 'PROSEDUR PEMBULUH DARAH EXTRA KRANIAL (BERAT)', 18410400.00, 21448100.00, 24485800.00), +('G-1-13-I', 'PROSEDUR CARPAL TUNNEL RELEASE (RINGAN)', 3781100.00, 4405000.00, 5028800.00), +('G-1-13-II', 'PROSEDUR CARPAL TUNNEL RELEASE (SEDANG)', 6212200.00, 7237200.00, 8262200.00), +('G-1-13-III', 'PROSEDUR CARPAL TUNNEL RELEASE (BERAT)', 13174000.00, 15347700.00, 17521400.00), +('G-1-20-I', 'PROSEDUR SARAF KRANIAL DAN PERIFER (RINGAN)', 12204900.00, 14218700.00, 16232500.00), +('G-1-20-II', 'PROSEDUR SARAF KRANIAL DAN PERIFER (SEDANG)', 19456300.00, 22666600.00, 25876900.00), +('G-1-20-III', 'PROSEDUR SARAF KRANIAL DAN PERIFER (BERAT)', 31491000.00, 36687000.00, 41883100.00), +('G-1-30-I', 'PROSEDUR TULANG BELAKANG (RINGAN)', 30405500.00, 35422400.00, 40439300.00), +('G-1-30-II', 'PROSEDUR TULANG BELAKANG (SEDANG)', 40994000.00, 47758000.00, 54522000.00), +('G-1-30-III', 'PROSEDUR TULANG BELAKANG (BERAT)', 61559500.00, 71716800.00, 81874200.00), +('G-4-10-I', 'KECEDERAAN & GANGGUAN TULANG BELAKANG (RINGAN)', 6186100.00, 7206800.00, 8227600.00), +('G-4-10-II', 'KECEDERAAN & GANGGUAN TULANG BELAKANG (SEDANG)', 7561600.00, 8809200.00, 10056900.00), +('G-4-10-III', 'KECEDERAAN & GANGGUAN TULANG BELAKANG (BERAT)', 10375700.00, 12087700.00, 13799700.00), +('G-4-11-I', 'TUMOR SISTEM PERSARAFAN & GANGGUAN DEGENERATIF (RINGAN)', 6475900.00, 7544400.00, 8613000.00), +('G-4-11-II', 'TUMOR SISTEM PERSARAFAN & GANGGUAN DEGENERATIF (SEDANG)', 8602500.00, 10021900.00, 11441300.00), +('G-4-11-III', 'TUMOR SISTEM PERSARAFAN & GANGGUAN DEGENERATIF (BERAT)', 12639900.00, 14725500.00, 16811100.00), +('G-4-12-I', 'SKLEROSIS MULTIPLE & ATAXIA CEREBELAR (RINGAN)', 7184300.00, 8369700.00, 9555100.00), +('G-4-12-II', 'SKLEROSIS MULTIPLE & ATAXIA CEREBELAR (SEDANG)', 9364800.00, 10910000.00, 12455200.00), +('G-4-12-III', 'SKLEROSIS MULTIPLE & ATAXIA CEREBELAR (BERAT)', 15118400.00, 17612900.00, 20107500.00), +('G-4-13-I', 'PERDARAHAN INTRA KRANIAL BUKAN TRAUMATIK (RINGAN)', 5115400.00, 5959400.00, 6803400.00), +('G-4-13-II', 'PERDARAHAN INTRA KRANIAL BUKAN TRAUMATIK (SEDANG)', 7525800.00, 8767500.00, 10009200.00), +('G-4-13-III', 'PERDARAHAN INTRA KRANIAL BUKAN TRAUMATIK (BERAT)', 10230000.00, 11917900.00, 13605800.00), +('G-4-14-I', 'KECEDERAAN PEMBULUH DARAH OTAK DENGAN INFARK (RINGAN)', 7321100.00, 8529100.00, 9737100.00), +('G-4-14-II', 'KECEDERAAN PEMBULUH DARAH OTAK DENGAN INFARK (SEDANG)', 9787700.00, 11402700.00, 13017700.00), +('G-4-14-III', 'KECEDERAAN PEMBULUH DARAH OTAK DENGAN INFARK (BERAT)', 12284700.00, 14311700.00, 16338700.00), +('G-4-15-I', 'KECEDERAAN PEMBULUH DARAH OTAK NON SPESIFIK & PENYUMBATAN PRE-CEREBRAL TANPA INFARK (RINGAN)', 5982100.00, 6969100.00, 7956100.00), +('G-4-15-II', 'KECEDERAAN PEMBULUH DARAH OTAK NON SPESIFIK & PENYUMBATAN PRE-CEREBRAL TANPA INFARK (SEDANG)', 7139200.00, 8317200.00, 9495100.00), +('G-4-15-III', 'KECEDERAAN PEMBULUH DARAH OTAK NON SPESIFIK & PENYUMBATAN PRE-CEREBRAL TANPA INFARK (BERAT)', 10076400.00, 11739000.00, 13401500.00), +('G-4-16-I', 'ISKEMIK TRANSIENT (RINGAN)', 4931300.00, 5745000.00, 6558700.00), +('G-4-16-II', 'ISKEMIK TRANSIENT (SEDANG)', 6547000.00, 7627200.00, 8707500.00), +('G-4-16-III', 'ISKEMIK TRANSIENT (BERAT)', 9323400.00, 10861800.00, 12400200.00), +('G-4-17-I', 'GANGUAN PERSARAFAN KRANIAL DAN PERIFER (RINGAN)', 6568200.00, 7651900.00, 8735700.00), +('G-4-17-II', 'GANGUAN PERSARAFAN KRANIAL DAN PERIFER (SEDANG)', 8612300.00, 10033300.00, 11454400.00), +('G-4-17-III', 'GANGUAN PERSARAFAN KRANIAL DAN PERIFER (BERAT)', 10821800.00, 12607400.00, 14393000.00), +('G-4-18-I', 'INFEKSI BAKTERI SISTEM PERSARAFAN (RINGAN)', 6472500.00, 7540400.00, 8608400.00), +('G-4-18-II', 'INFEKSI BAKTERI SISTEM PERSARAFAN (SEDANG)', 8967600.00, 10447300.00, 11926900.00), +('G-4-18-III', 'INFEKSI BAKTERI SISTEM PERSARAFAN (BERAT)', 9935000.00, 11574300.00, 13213600.00), +('G-4-19-I', 'INFEKSI NON BAKTERI SISTEM PERSARAFAN (TIDAK TERMASUK MENINGITIS VIRUS) (RINGAN)', 5397000.00, 6287500.00, 7178000.00), +('G-4-19-II', 'INFEKSI NON BAKTERI SISTEM PERSARAFAN (TIDAK TERMASUK MENINGITIS VIRUS) (SEDANG)', 9122100.00, 10627200.00, 12132400.00), +('G-4-19-III', 'INFEKSI NON BAKTERI SISTEM PERSARAFAN (TIDAK TERMASUK MENINGITIS VIRUS) (BERAT)', 11976900.00, 13953100.00, 15929300.00), +('G-4-20-I', 'MENINGITIS VIRUS (RINGAN)', 4354700.00, 5073200.00, 5791700.00), +('G-4-20-II', 'MENINGITIS VIRUS (SEDANG)', 6395600.00, 7450800.00, 8506100.00), +('G-4-20-III', 'MENINGITIS VIRUS (BERAT)', 9987700.00, 11635700.00, 13283600.00), +('G-4-21-I', 'KOMA & STUPOR NON TRAUMA (RINGAN)', 4306200.00, 5016700.00, 5727200.00), +('G-4-21-II', 'KOMA & STUPOR NON TRAUMA (SEDANG)', 6654100.00, 7752000.00, 8850000.00), +('G-4-21-III', 'KOMA & STUPOR NON TRAUMA (BERAT)', 7820100.00, 9110400.00, 10400800.00), +('G-4-22-I', 'SERANGAN KEJANG (RINGAN)', 3251900.00, 3788400.00, 4325000.00), +('G-4-22-II', 'SERANGAN KEJANG (SEDANG)', 5216400.00, 6077100.00, 6937900.00), +('G-4-22-III', 'SERANGAN KEJANG (BERAT)', 8228500.00, 9586200.00, 10943900.00), +('G-4-23-I', 'MIGREN DAN SAKIT KEPALA LAIN (RINGAN)', 3870200.00, 4508800.00, 5147400.00), +('G-4-23-II', 'MIGREN DAN SAKIT KEPALA LAIN ((SEDANG)', 4855800.00, 5657000.00, 6458200.00), +('G-4-23-III', 'MIGREN DAN SAKIT KEPALA LAIN (BERAT)', 6913400.00, 8054100.00, 9194900.00), +('G-4-24-I', 'TRAUMA KEPALA (RINGAN)', 4310800.00, 5022100.00, 5733400.00), +('G-4-24-II', 'TRAUMA KEPALA (SEDANG)', 5553800.00, 6470200.00, 7386600.00), +('G-4-24-III', 'TRAUMA KEPALA (BERAT)', 8972500.00, 10452900.00, 11933400.00), +('G-4-25-I', 'GEGAR OTAK (RINGAN)', 3683500.00, 4291300.00, 4899100.00), +('G-4-25-II', 'GEGAR OTAK (SEDANG)', 4658200.00, 5426800.00, 6195500.00), +('G-4-25-III', 'GEGAR OTAK (BERAT)', 6173100.00, 7191600.00, 8210200.00), +('G-4-26-I', 'GANGGUAN - PENYAKIT SISTEM PERSARAFAN LAIN-LAIN (RINGAN)', 4199500.00, 4892400.00, 5585400.00), +('G-4-26-II', 'GANGGUAN - PENYAKIT SISTEM PERSARAFAN LAIN-LAIN (SEDANG)', 4885300.00, 5691400.00, 6497500.00), +('G-4-26-III', 'GANGGUAN - PENYAKIT SISTEM PERSARAFAN LAIN-LAIN (BERAT)', 7305000.00, 8510300.00, 9715700.00), +('H-1-20-I', 'PROSEDUR EKSTRAOKULER DAN ORBITA (RINGAN)', 12422200.00, 14471800.00, 16521400.00), +('H-1-20-II', 'PROSEDUR EKSTRAOKULER DAN ORBITA (SEDANG)', 13728400.00, 15993600.00, 18258700.00), +('H-1-20-III', 'PROSEDUR EKSTRAOKULER DAN ORBITA (BERAT)', 18669800.00, 21750300.00, 24830800.00), +('H-1-30-I', 'PROSEDUR LENSA DAN INTRA OKULER (RINGAN)', 8464600.00, 9861300.00, 11258000.00), +('H-1-30-II', 'PROSEDUR LENSA DAN INTRA OKULER (SEDANG)', 10516400.00, 12251600.00, 13986900.00), +('H-1-30-III', 'PROSEDUR LENSA DAN INTRA OKULER (BERAT)', 14729800.00, 17160200.00, 19590700.00), +('H-4-10-I', 'INFEKSI MATA AKUT MAYOR (RINGAN)', 4530100.00, 5277500.00, 6025000.00), +('H-4-10-II', 'INFEKSI MATA AKUT MAYOR (SEDANG)', 6089400.00, 7094200.00, 8099000.00), +('H-4-10-III', 'INFEKSI MATA AKUT MAYOR (BERAT)', 11969100.00, 13944000.00, 15918900.00), +('H-4-11-I', 'GANGGUAN PERSARAFAN MATA (RINGAN)', 4303700.00, 5013800.00, 5723900.00), +('H-4-11-II', 'GANGGUAN PERSARAFAN MATA (SEDANG)', 4909100.00, 5719100.00, 6529200.00), +('H-4-11-III', 'GANGGUAN PERSARAFAN MATA (BERAT)', 7029600.00, 8189500.00, 9349400.00), +('H-4-12-I', 'GANGGUAN MATA LAIN-LAIN (RINGAN)', 5074100.00, 5911300.00, 6748600.00), +('H-4-12-II', 'GANGGUAN MATA LAIN-LAIN (SEDANG)', 6062500.00, 7062800.00, 8063200.00), +('H-4-12-III', 'GANGGUAN MATA LAIN-LAIN (BERAT)', 10159700.00, 11836100.00, 13512500.00), +('I-1-01-I', 'TRANPLANTASI PARU ATAU/DAN JANTUNG (RINGAN)', 301625300.00, 351393400.00, 401161600.00), +('I-1-01-II', 'TRANPLANTASI PARU ATAU/DAN JANTUNG (SEDANG)', 308979700.00, 359961300.00, 410942900.00), +('I-1-01-III', 'TRANPLANTASI PARU ATAU/DAN JANTUNG (BERAT)', 315528400.00, 367590600.00, 419652800.00), +('I-1-02-I', 'PROSEDUR KATUP JANTUNG DENGAN KATETERISASI (RINGAN)', 72665800.00, 84655700.00, 96645500.00), +('I-1-02-II', 'PROSEDUR KATUP JANTUNG DENGAN KATETERISASI (SEDANG)', 90540100.00, 105479300.00, 120418400.00), +('I-1-02-III', 'PROSEDUR KATUP JANTUNG DENGAN KATETERISASI (BERAT)', 136616100.00, 159157700.00, 181699400.00), +('I-1-03-I', 'OPERASI KARDIOTORASIK KOMPLEKS PADA JANTUNG ANOMALI (RINGAN)', 47918300.00, 55824800.00, 63731300.00), +('I-1-03-II', 'OPERASI KARDIOTORASIK KOMPLEKS PADA JANTUNG ANOMALI (SEDANG)', 66424600.00, 77384700.00, 88344800.00), +('I-1-03-III', 'OPERASI KARDIOTORASIK KOMPLEKS PADA JANTUNG ANOMALI (BERAT)', 82896100.00, 96573900.00, 110251800.00), +('I-1-04-I', 'PROSEDUR KATUP JANTUNG TANPA KATETERISASI JANTUNG (RINGAN)', 71944100.00, 83814800.00, 95685600.00), +('I-1-04-II', 'PROSEDUR KATUP JANTUNG TANPA KATETERISASI JANTUNG (SEDANG)', 89776200.00, 104589300.00, 119402300.00), +('I-1-04-III', 'PROSEDUR KATUP JANTUNG TANPA KATETERISASI JANTUNG (BERAT)', 135487100.00, 157842500.00, 180197900.00), +('I-1-05-I', 'PEMBEDAHAN BYPASS PEMBULUH KORONER DENGAN KATETERISASI JANTUNG (RINGAN)', 89014800.00, 103702200.00, 118389700.00), +('I-1-05-II', 'PEMBEDAHAN BYPASS PEMBULUH KORONER DENGAN KATETERISASI JANTUNG (SEDANG)', 108795800.00, 126747100.00, 144698500.00), +('I-1-05-III', 'PEMBEDAHAN BYPASS PEMBULUH KORONER DENGAN KATETERISASI JANTUNG (BERAT)', 149841500.00, 174565400.00, 199289200.00), +('I-1-06-I', 'PROSEDUR KARDIOTORASIK LAIN (RINGAN)', 50834000.00, 59221600.00, 67609200.00), +('I-1-06-II', 'PROSEDUR KARDIOTORASIK LAIN (SEDANG)', 73637100.00, 85787200.00, 97937400.00), +('I-1-06-III', 'PROSEDUR KARDIOTORASIK LAIN (BERAT)', 87862700.00, 102360000.00, 116857400.00), +('I-1-07-I', 'PROSEDUR BYPASS KORONER TANPA KATETERISASI JANTUNG (RINGAN)', 79304100.00, 92389300.00, 105474400.00), +('I-1-07-II', 'PROSEDUR BYPASS KORONER TANPA KATETERISASI JANTUNG (SEDANG)', 98905300.00, 115224700.00, 131544100.00), +('I-1-07-III', 'PROSEDUR BYPASS KORONER TANPA KATETERISASI JANTUNG (BERAT)', 148357900.00, 172837000.00, 197316100.00), +('I-1-11-I', 'DEFIBRILATOR JANTUNG DAN PEMASANGAN SISTEM BANTUAN JANTUNG (RINGAN)', 5925200.00, 6902800.00, 7880500.00), +('I-1-11-II', 'DEFIBRILATOR JANTUNG DAN PEMASANGAN SISTEM BANTUAN JANTUNG (SEDANG)', 6619200.00, 7711300.00, 8803500.00), +('I-1-11-III', 'DEFIBRILATOR JANTUNG DAN PEMASANGAN SISTEM BANTUAN JANTUNG (BERAT)', 8766800.00, 10213300.00, 11659900.00), +('I-1-12-I', 'PROSEDUR PEMBULUH DARAH TORASIK KOMPLEKS (RINGAN)', 17055400.00, 19869500.00, 22683700.00), +('I-1-12-II', 'PROSEDUR PEMBULUH DARAH TORASIK KOMPLEKS (SEDANG)', 27854800.00, 32450800.00, 37046900.00), +('I-1-12-III', 'PROSEDUR PEMBULUH DARAH TORASIK KOMPLEKS (BERAT)', 36647200.00, 42694000.00, 48740800.00), +('I-1-13-I', 'PROSEDUR PEMBULUH DARAH ABDOMINAL KOMPLEK (RINGAN)', 16543400.00, 19273100.00, 22002800.00), +('I-1-13-II', 'PROSEDUR PEMBULUH DARAH ABDOMINAL KOMPLEK (SEDANG)', 22451900.00, 26156400.00, 29861000.00), +('I-1-13-III', 'PROSEDUR PEMBULUH DARAH ABDOMINAL KOMPLEK (BERAT)', 27478900.00, 32012900.00, 36546900.00), +('I-1-14-I', 'PEMASANGAN PACEMAKER JANTUNG PERMANEN (RINGAN)', 33860400.00, 39447300.00, 45034300.00), +('I-1-14-II', 'PEMASANGAN PACEMAKER JANTUNG PERMANEN (SEDANG)', 42083400.00, 49027200.00, 55971000.00), +('I-1-14-III', 'PEMASANGAN PACEMAKER JANTUNG PERMANEN (BERAT)', 55143800.00, 64242500.00, 73341300.00), +('I-1-15-I', 'KATETERISASI JANTUNG (RINGAN)', 7075800.00, 8243300.00, 9410800.00), +('I-1-15-II', 'KATETERISASI JANTUNG (SEDANG)', 8982900.00, 10465100.00, 11947200.00), +('I-1-15-III', 'KATETERISASI JANTUNG (BERAT)', 17297400.00, 20151500.00, 23005500.00), +('I-1-16-I', 'REVISI DEFIBRILATOR & PACEMAKER JANTUNG TIDAK TERMASUK PENGGANTIAN ALAT (RINGAN)', 16675400.00, 19426800.00, 22178300.00), +('I-1-16-II', 'REVISI DEFIBRILATOR & PACEMAKER JANTUNG TIDAK TERMASUK PENGGANTIAN ALAT (SEDANG)', 37729600.00, 43955000.00, 50180400.00), +('I-1-16-III', 'REVISI DEFIBRILATOR & PACEMAKER JANTUNG TIDAK TERMASUK PENGGANTIAN ALAT (BERAT)', 43520500.00, 50701400.00, 57882300.00), +('I-1-17-I', 'LIGASI DAN STRIPPING PEMBULUH DARAH VENA (RINGAN)', 19308500.00, 22494400.00, 25680300.00), +('I-1-17-II', 'LIGASI DAN STRIPPING PEMBULUH DARAH VENA (SEDANG)', 24176100.00, 28165100.00, 32154200.00), +('I-1-17-III', 'LIGASI DAN STRIPPING PEMBULUH DARAH VENA (BERAT)', 29905400.00, 34839800.00, 39774200.00), +('I-1-20-I', 'PROSEDUR SISTIM PEREDARAN DARAH LAIN-LAIN (RINGAN)', 21764000.00, 25355000.00, 28946100.00), +('I-1-20-II', 'PROSEDUR SISTIM PEREDARAN DARAH LAIN-LAIN (SEDANG)', 27189200.00, 31675400.00, 36161700.00), +('I-1-20-III', 'PROSEDUR SISTIM PEREDARAN DARAH LAIN-LAIN (BERAT)', 32022200.00, 37305900.00, 42589600.00), +('I-1-30-I', 'PENGGANTIAN ALAT DEFIBRILATOR DAN PACEMAKER JANTUNG (RINGAN)', 26861900.00, 31294100.00, 35726300.00), +('I-1-30-II', 'PENGGANTIAN ALAT DEFIBRILATOR DAN PACEMAKER JANTUNG (SEDANG)', 35549300.00, 41415000.00, 47280600.00), +('I-1-30-III', 'PENGGANTIAN ALAT DEFIBRILATOR DAN PACEMAKER JANTUNG (BERAT)', 53070700.00, 61827400.00, 70584100.00), +('I-1-40-I', 'PROSEDUR KARDIOVASKULAR PERKUTAN (RINGAN)', 17668500.00, 20583800.00, 23499100.00), +('I-1-40-II', 'PROSEDUR KARDIOVASKULAR PERKUTAN (SEDANG)', 37561600.00, 43759300.00, 49957000.00), +('I-1-40-III', 'PROSEDUR KARDIOVASKULAR PERKUTAN (BERAT)', 50169600.00, 58447600.00, 66725600.00), +('I-4-10-I', 'INFARK MYOKARD AKUT (RINGAN)', 6013500.00, 7005800.00, 7998000.00), +('I-4-10-II', 'INFARK MYOKARD AKUT (SEDANG)', 10226500.00, 11913900.00, 13601200.00), +('I-4-10-III', 'INFARK MYOKARD AKUT (BERAT)', 14735000.00, 17166300.00, 19597500.00), +('I-4-11-I', 'ENDOKARDITIS AKUT DAN SUBAKUT (RINGAN)', 8811300.00, 10265100.00, 11719000.00), +('I-4-11-II', 'ENDOKARDITIS AKUT DAN SUBAKUT (SEDANG)', 10904000.00, 12703100.00, 14502300.00), +('I-4-11-III', 'ENDOKARDITIS AKUT DAN SUBAKUT (BERAT)', 20171100.00, 23499300.00, 26827600.00), +('I-4-12-I', 'KEGAGALAN JANTUNG (RINGAN)', 5120700.00, 5965600.00, 6810500.00), +('I-4-12-II', 'KEGAGALAN JANTUNG (SEDANG)', 5871300.00, 6840100.00, 7808900.00), +('I-4-12-III', 'KEGAGALAN JANTUNG (BERAT)', 7045500.00, 8208000.00, 9370600.00), +('I-4-13-I', 'THROMBOPHLEBITIS PADA PEMBULUH DARAH VENA (RINGAN)', 5154500.00, 6005000.00, 6855500.00), +('I-4-13-II', 'THROMBOPHLEBITIS PADA PEMBULUH DARAH VENA (SEDANG)', 9203900.00, 10722500.00, 12241200.00), +('I-4-13-III', 'THROMBOPHLEBITIS PADA PEMBULUH DARAH VENA (BERAT)', 13261500.00, 15449600.00, 17637800.00), +('I-4-14-I', 'CARDIAC ARREST DAN LAIN-LAIN (RINGAN)', 4867500.00, 5670600.00, 6473800.00), +('I-4-14-II', 'CARDIAC ARREST DAN LAIN-LAIN (SEDANG)', 5179400.00, 6034000.00, 6888600.00), +('I-4-14-III', 'CARDIAC ARREST DAN LAIN-LAIN (BERAT)', 8826400.00, 10282700.00, 11739100.00), +('I-4-15-I', 'PENYAKIT PEMBULUH DARAH DAN LAIN-LAIN (RINGAN)', 4971200.00, 5791400.00, 6611600.00), +('I-4-15-II', 'PENYAKIT PEMBULUH DARAH DAN LAIN-LAIN (SEDANG)', 9374000.00, 10920700.00, 12467400.00), +('I-4-15-III', 'PENYAKIT PEMBULUH DARAH DAN LAIN-LAIN (BERAT)', 11248800.00, 13104900.00, 14960900.00), +('I-4-16-I', 'ATHEROSKLEROSIS (RINGAN)', 3225800.00, 3758000.00, 4290200.00), +('I-4-16-II', 'ATHEROSKLEROSIS (SEDANG)', 4933100.00, 5747000.00, 6560900.00), +('I-4-16-III', 'ATHEROSKLEROSIS (BERAT)', 5919700.00, 6896400.00, 7873100.00), +('I-4-17-I', 'HIPERTENSI (RINGAN)', 2153700.00, 2509100.00, 2864400.00), +('I-4-17-II', 'HIPERTENSI (SEDANG)', 3310000.00, 3856100.00, 4402200.00), +('I-4-17-III', 'HIPERTENSI (BERAT)', 4633900.00, 5398500.00, 6163000.00), +('I-4-18-I', 'PENYAKIT JANTUNG KONGENITAL DAN KATUP JANTUNG (RINGAN)', 5972300.00, 6957700.00, 7943100.00), +('I-4-18-II', 'PENYAKIT JANTUNG KONGENITAL DAN KATUP JANTUNG (SEDANG)', 9022200.00, 10510900.00, 11999600.00), +('I-4-18-III', 'PENYAKIT JANTUNG KONGENITAL DAN KATUP JANTUNG (BERAT)', 12249100.00, 14270200.00, 16291400.00), +('I-4-19-I', 'GANGGUAN KONDUKSI & ARITMIA JANTUNG (RINGAN)', 5717200.00, 6660500.00, 7603900.00), +('I-4-19-II', 'GANGGUAN KONDUKSI & ARITMIA JANTUNG (SEDANG)', 8924900.00, 10397500.00, 11870100.00), +('I-4-19-III', 'GANGGUAN KONDUKSI & ARITMIA JANTUNG (BERAT)', 10654600.00, 12412600.00, 14170600.00), +('I-4-20-I', 'ANGINA PEKTORIS DAN NYERI DADA (RINGAN)', 5953400.00, 6935700.00, 7917900.00), +('I-4-20-II', 'ANGINA PEKTORIS DAN NYERI DADA (SEDANG)', 6876100.00, 8010600.00, 9145100.00), +('I-4-20-III', 'ANGINA PEKTORIS DAN NYERI DADA (BERAT)', 10281100.00, 11977500.00, 13673800.00), +('I-4-21-I', 'SYNCOPE & COLLAPSE (RINGAN)', 4009400.00, 4670900.00, 5332500.00), +('I-4-21-II', 'SYNCOPE & COLLAPSE (SEDANG)', 5079900.00, 5918100.00, 6756300.00), +('I-4-21-III', 'SYNCOPE & COLLAPSE (BERAT)', 7332200.00, 8542000.00, 9751900.00), +('I-4-22-I', 'KARDIOMIOPATHI (RINGAN)', 3869400.00, 4507800.00, 5146300.00), +('I-4-22-II', 'KARDIOMIOPATHI (SEDANG)', 4546800.00, 5297000.00, 6047300.00), +('I-4-22-III', 'KARDIOMIOPATHI (BERAT)', 6706800.00, 7813400.00, 8920000.00), +('I-4-23-I', 'MALFUNGSI, REAKSI DAN KOMPLIKASI DARI ALAT ATAU PROSEDUR KARDIOVASKULER (RINGAN)', 4886800.00, 5693100.00, 6499500.00), +('I-4-23-II', 'MALFUNGSI, REAKSI DAN KOMPLIKASI DARI ALAT ATAU PROSEDUR KARDIOVASKULER (SEDANG)', 6867900.00, 8001100.00, 9134400.00), +('I-4-23-III', 'MALFUNGSI, REAKSI DAN KOMPLIKASI DARI ALAT ATAU PROSEDUR KARDIOVASKULER (BERAT)', 11722800.00, 13657100.00, 15591400.00), +('I-4-24-I', 'GANGGUAN SISTEM PEMBULUH DARAH LAIN-LAIN (RINGAN)', 3364700.00, 3919800.00, 4475000.00), +('I-4-24-II', 'GANGGUAN SISTEM PEMBULUH DARAH LAIN-LAIN (SEDANG)', 7480400.00, 8714600.00, 9948900.00), +('I-4-24-III', 'GANGGUAN SISTEM PEMBULUH DARAH LAIN-LAIN (BERAT)', 9376600.00, 10923700.00, 12470900.00), +('J-1-01-I', 'VENTILASI MEKANIKAL LONG TERM DENGAN TRAKEOSTOMI (RINGAN)', 100590700.00, 117188200.00, 133785700.00), +('J-1-01-II', 'VENTILASI MEKANIKAL LONG TERM DENGAN TRAKEOSTOMI (SEDANG)', 113837100.00, 132620200.00, 151403400.00), +('J-1-01-III', 'VENTILASI MEKANIKAL LONG TERM DENGAN TRAKEOSTOMI (BERAT)', 156147200.00, 181911500.00, 207675800.00), +('J-1-02-I', 'VENTILASI MEKANIKAL LONG TERM TANPA TRAKEOSTOMI (RINGAN)', 62014000.00, 72246300.00, 82478600.00), +('J-1-02-II', 'VENTILASI MEKANIKAL LONG TERM TANPA TRAKEOSTOMI (SEDANG)', 78249600.00, 91160800.00, 104072000.00), +('J-1-02-III', 'VENTILASI MEKANIKAL LONG TERM TANPA TRAKEOSTOMI (BERAT)', 91540900.00, 106645200.00, 121749400.00), +('J-1-10-I', 'PROSEDUR SISTEM PERNAFASAN SANGAT KOMPLEKS (RINGAN)', 35651800.00, 41534400.00, 47416900.00), +('J-1-10-II', 'PROSEDUR SISTEM PERNAFASAN SANGAT KOMPLEKS (SEDANG)', 39314400.00, 45801300.00, 52288200.00), +('J-1-10-III', 'PROSEDUR SISTEM PERNAFASAN SANGAT KOMPLEKS (BERAT)', 46983600.00, 54735800.00, 62488100.00), +('J-1-20-I', 'PROSEDUR SISTEM PERNAFASAN NON-KOMPLEKS (RINGAN)', 35243900.00, 41059100.00, 46874400.00), +('J-1-20-II', 'PROSEDUR SISTEM PERNAFASAN NON-KOMPLEKS (SEDANG)', 36905100.00, 42994400.00, 49083800.00), +('J-1-20-III', 'PROSEDUR SISTEM PERNAFASAN NON-KOMPLEKS (BERAT)', 46515700.00, 54190700.00, 61865800.00), +('J-1-30-I', 'PROSEDUR SISTEM PERNAFASAN KOMPLEKS (RINGAN)', 10676600.00, 12438200.00, 14199900.00), +('J-1-30-II', 'PROSEDUR SISTEM PERNAFASAN KOMPLEKS (SEDANG)', 23742000.00, 27659500.00, 31576900.00), +('J-1-30-III', 'PROSEDUR SISTEM PERNAFASAN KOMPLEKS (BERAT)', 44660300.00, 52029300.00, 59398200.00), +('J-4-10-I', 'KISTA FIBROSIS (RINGAN)', 5851900.00, 6817400.00, 7783000.00), +('J-4-10-II', 'KISTA FIBROSIS (SEDANG)', 8443800.00, 9837000.00, 11230200.00), +('J-4-10-III', 'KISTA FIBROSIS (BERAT)', 10286800.00, 11984100.00, 13681500.00), +('J-4-11-I', 'KEGAGALAN PERNAFASAN (RINGAN)', 4121100.00, 4801000.00, 5481000.00), +('J-4-11-II', 'KEGAGALAN PERNAFASAN (SEDANG)', 5946400.00, 6927500.00, 7908600.00), +('J-4-11-III', 'KEGAGALAN PERNAFASAN (BERAT)', 7269300.00, 8468700.00, 9668200.00), +('J-4-12-I', 'EMBOLI PARU (RINGAN)', 6613500.00, 7704700.00, 8796000.00), +('J-4-12-II', 'EMBOLI PARU (SEDANG)', 7659300.00, 8923100.00, 10186900.00), +('J-4-12-III', 'EMBOLI PARU (BERAT)', 10754500.00, 12529000.00, 14303500.00), +('J-4-13-I', 'TRAUMA DADA (RINGAN)', 5847500.00, 6812300.00, 7777200.00), +('J-4-13-II', 'TRAUMA DADA (SEDANG)', 8139500.00, 9482500.00, 10825600.00), +('J-4-13-III', 'TRAUMA DADA (BERAT)', 15185600.00, 17691200.00, 20196900.00), +('J-4-14-I', 'TUMOR PARU (RINGAN)', 6447000.00, 7510700.00, 8574400.00), +('J-4-14-II', 'TUMOR PARU (SEDANG)', 10491100.00, 12222100.00, 13953100.00), +('J-4-14-III', 'TUMOR PARU (BERAT)', 12412000.00, 14460000.00, 16507900.00), +('J-4-15-I', 'PERADANGAN DAN INFEKSI PERNAFASAN (RINGAN)', 4665100.00, 5434800.00, 6204600.00), +('J-4-15-II', 'PERADANGAN DAN INFEKSI PERNAFASAN (SEDANG)', 7725400.00, 9000100.00, 10274800.00), +('J-4-15-III', 'PERADANGAN DAN INFEKSI PERNAFASAN (BERAT)', 14031600.00, 16346800.00, 18662000.00), +('J-4-16-I', 'SIMPLE PNEUMONIA & WHOOPING COUGH (RINGAN)', 3887000.00, 4528400.00, 5169800.00), +('J-4-16-II', 'SIMPLE PNEUMONIA & WHOOPING COUGH (SEDANG)', 7571200.00, 8820400.00, 10069700.00), +('J-4-16-III', 'SIMPLE PNEUMONIA & WHOOPING COUGH (BERAT)', 12923000.00, 15055300.00, 17187600.00), +('J-4-17-I', 'PENYAKIT PARU OBSTRUKTIF KRONIS (RINGAN)', 5387100.00, 6276000.00, 7164800.00), +('J-4-17-II', 'PENYAKIT PARU OBSTRUKTIF KRONIS (SEDANG)', 6451200.00, 7515600.00, 8580000.00), +('J-4-17-III', 'PENYAKIT PARU OBSTRUKTIF KRONIS (BERAT)', 8465800.00, 9862700.00, 11259500.00), +('J-4-18-I', 'ASTHMA & BRONKIOLITIS (RINGAN)', 2394600.00, 2789700.00, 3184800.00), +('J-4-18-II', 'ASTHMA & BRONKIOLITIS (SEDANG)', 4565100.00, 5318300.00, 6071600.00), +('J-4-18-III', 'ASTHMA & BRONKIOLITIS (BERAT)', 6487300.00, 7557700.00, 8628100.00), +('J-4-19-I', 'PENYAKIT PARU INTERSTITIAL (RINGAN)', 6829100.00, 7955900.00, 9082700.00), +('J-4-19-II', 'PENYAKIT PARU INTERSTITIAL (SEDANG)', 7744600.00, 9022400.00, 10300300.00), +('J-4-19-III', 'PENYAKIT PARU INTERSTITIAL (BERAT)', 8552900.00, 9964100.00, 11375400.00), +('J-4-20-I', 'PLEURAL EFUSI DAN PNEUMOTORAK (RINGAN)', 5640300.00, 6570900.00, 7501500.00), +('J-4-20-II', 'PLEURAL EFUSI DAN PNEUMOTORAK (SEDANG)', 7985100.00, 9302600.00, 10620100.00), +('J-4-20-III', 'PLEURAL EFUSI DAN PNEUMOTORAK (BERAT)', 8946000.00, 10422100.00, 11898100.00), +('J-4-21-I', 'GEJALA, TANDA DAN DIAGNOSIS SISTEM PERNAFASAN LAIN-LAIN (RINGAN)', 3103700.00, 3615800.00, 4127900.00), +('J-4-21-II', 'GEJALA, TANDA DAN DIAGNOSIS SISTEM PERNAFASAN LAIN-LAIN (SEDANG)', 6930400.00, 8073900.00, 9217500.00), +('J-4-21-III', 'GEJALA, TANDA DAN DIAGNOSIS SISTEM PERNAFASAN LAIN-LAIN (BERAT)', 13055600.00, 15209800.00, 17364000.00), +('K-1-10-I', 'PROSEDUR NON KOMPLEKS USUS HALUS & USUS BESAR (RINGAN)', 11598200.00, 13511900.00, 15425600.00), +('K-1-10-II', 'PROSEDUR NON KOMPLEKS USUS HALUS & USUS BESAR (SEDANG)', 14985300.00, 17457800.00, 19930400.00), +('K-1-10-III', 'PROSEDUR NON KOMPLEKS USUS HALUS & USUS BESAR (BERAT)', 17375100.00, 20241900.00, 23108800.00), +('K-1-11-I', 'ADHESIOLISIS PERITONEAL (RINGAN)', 10892100.00, 12689300.00, 14486500.00), +('K-1-11-II', 'ADHESIOLISIS PERITONEAL (SEDANG)', 14300000.00, 16659500.00, 19019000.00), +('K-1-11-III', 'ADHESIOLISIS PERITONEAL (BERAT)', 28265200.00, 32928900.00, 37592700.00), +('K-1-12-I', 'PROSEDUR HERNIA TIDAK TERMASUK INGUINAL & FEMORAL (RINGAN)', 6945300.00, 8091300.00, 9237200.00), +('K-1-12-II', 'PROSEDUR HERNIA TIDAK TERMASUK INGUINAL & FEMORAL (SEDANG)', 8436900.00, 9829000.00, 11221100.00), +('K-1-12-III', 'PROSEDUR HERNIA TIDAK TERMASUK INGUINAL & FEMORAL (BERAT)', 15851200.00, 18466700.00, 21082100.00), +('K-1-13-I', 'PROSEDUR APPENDIK (RINGAN)', 5891300.00, 6863300.00, 7835300.00), +('K-1-13-II', 'PROSEDUR APPENDIK (SEDANG)', 7014800.00, 8172200.00, 9329600.00), +('K-1-13-III', 'PROSEDUR APPENDIK (BERAT)', 9648800.00, 11240800.00, 12832800.00), +('K-1-14-I', 'PROSEDUR HERNIA INGUINAL DAN FEMORAL (RINGAN)', 8016000.00, 9338600.00, 10661300.00), +('K-1-14-II', 'PROSEDUR HERNIA INGUINAL DAN FEMORAL (SEDANG)', 9394500.00, 10944600.00, 12494700.00), +('K-1-14-III', 'PROSEDUR HERNIA INGUINAL DAN FEMORAL (BERAT)', 16400100.00, 19106100.00, 21812100.00), +('K-1-20-I', 'PROSEDUR INTESTINAL KOMPLEKS (RINGAN)', 17246000.00, 20091600.00, 22937200.00), +('K-1-20-II', 'PROSEDUR INTESTINAL KOMPLEKS (SEDANG)', 24088800.00, 28063400.00, 32038100.00), +('K-1-20-III', 'PROSEDUR INTESTINAL KOMPLEKS (BERAT)', 35172200.00, 40975600.00, 46779000.00), +('K-1-30-I', 'PROSEDUR DUODENUM, ESOFAGUS & LAMBUNG NON KOMPLEKS (RINGAN)', 11089400.00, 12919100.00, 14748900.00), +('K-1-30-II', 'PROSEDUR DUODENUM, ESOFAGUS & LAMBUNG NON KOMPLEKS (SEDANG)', 18113500.00, 21102200.00, 24091000.00), +('K-1-30-III', 'PROSEDUR DUODENUM, ESOFAGUS & LAMBUNG NON KOMPLEKS (BERAT)', 24924400.00, 29036900.00, 33149500.00), +('K-1-40-I', 'PROSEDUR SISTEM PENCERNAAN LAIN-LAIN (RINGAN)', 11379900.00, 13257600.00, 15135300.00), +('K-1-40-II', 'PROSEDUR SISTEM PENCERNAAN LAIN-LAIN (SEDANG)', 12546700.00, 14616900.00, 16687200.00), +('K-1-40-III', 'PROSEDUR SISTEM PENCERNAAN LAIN-LAIN (BERAT)', 21262200.00, 24770500.00, 28278800.00), +('K-1-50-I', 'PROSEDUR ANAL (RINGAN)', 8695500.00, 10130200.00, 11564900.00), +('K-1-50-II', 'PROSEDUR ANAL (SEDANG)', 11292200.00, 13155400.00, 15018500.00), +('K-1-50-III', 'PROSEDUR ANAL (BERAT)', 15957800.00, 18590800.00, 21223800.00), +('K-4-10-I', 'TUMOR PENCERNAAN (RINGAN)', 7178500.00, 8363000.00, 9547500.00), +('K-4-10-II', 'TUMOR PENCERNAAN (SEDANG)', 10314500.00, 12016400.00, 13718300.00), +('K-4-10-III', 'TUMOR PENCERNAAN (BERAT)', 15723800.00, 18318200.00, 20912700.00), +('K-4-11-I', 'GASTRITIS & ULKUS PEPTIKUM (RINGAN)', 3397500.00, 3958000.00, 4518600.00), +('K-4-11-II', 'GASTRITIS & ULKUS PEPTIKUM (SEDANG)', 5902600.00, 6876600.00, 7850500.00), +('K-4-11-III', 'GASTRITIS & ULKUS PEPTIKUM (BERAT)', 6994500.00, 8148600.00, 9302600.00), +('K-4-12-I', 'GANGGUAN ESOFAGUS (RINGAN)', 4315200.00, 5027200.00, 5739300.00), +('K-4-12-II', 'GANGGUAN ESOFAGUS (SEDANG)', 5807000.00, 6765100.00, 7723300.00), +('K-4-12-III', 'GANGGUAN ESOFAGUS (BERAT)', 9606600.00, 11191700.00, 12776800.00), +('K-4-13-I', 'DIVERTIKULITIS, DIVERTIKULOSIS DAN PENYAKIT PERADANGAN USUS BESAR (RINGAN)', 5856300.00, 6822600.00, 7788900.00), +('K-4-13-II', 'DIVERTIKULITIS, DIVERTIKULOSIS DAN PENYAKIT PERADANGAN USUS BESAR (SEDANG)', 8450000.00, 9844300.00, 11238500.00), +('K-4-13-III', 'DIVERTIKULITIS, DIVERTIKULOSIS DAN PENYAKIT PERADANGAN USUS BESAR (BERAT)', 11800500.00, 13747600.00, 15694600.00), +('K-4-14-I', 'GANGGUAN PEMBULUH DARAH GASTROINTERTINAL (RINGAN)', 3319400.00, 3867100.00, 4414800.00), +('K-4-14-II', 'GANGGUAN PEMBULUH DARAH GASTROINTERTINAL (SEDANG)', 4455600.00, 5190800.00, 5926000.00), +('K-4-14-III', 'GANGGUAN PEMBULUH DARAH GASTROINTERTINAL (BERAT)', 7149500.00, 8329200.00, 9508900.00), +('K-4-15-I', 'OBSTRUKSI SALURAN GASTROINTESTINAL (RINGAN)', 4731300.00, 5512000.00, 6292700.00), +('K-4-15-II', 'OBSTRUKSI SALURAN GASTROINTESTINAL (SEDANG)', 7286700.00, 8489000.00, 9691300.00), +('K-4-15-III', 'OBSTRUKSI SALURAN GASTROINTESTINAL (BERAT)', 10371600.00, 12082900.00, 13794300.00), +('K-4-16-I', 'INFEKSI-INFEKSI GASTROINTESTINAL (RINGAN)', 4407600.00, 5134900.00, 5862100.00), +('K-4-16-II', 'INFEKSI-INFEKSI GASTROINTESTINAL (SEDANG)', 5754600.00, 6704100.00, 7653600.00), +('K-4-16-III', 'INFEKSI-INFEKSI GASTROINTESTINAL (BERAT)', 8194100.00, 9546100.00, 10898100.00), +('K-4-17-I', 'NYERI ABDOMEN & GASTROENTERITIS LAIN-LAIN (RINGAN)', 2101900.00, 2448700.00, 2795400.00), +('K-4-17-II', 'NYERI ABDOMEN & GASTROENTERITIS LAIN-LAIN (SEDANG)', 2588400.00, 3015500.00, 3442500.00), +('K-4-17-III', 'NYERI ABDOMEN & GASTROENTERITIS LAIN-LAIN (BERAT)', 3128400.00, 3644600.00, 4160700.00), +('K-4-18-I', 'GANGGUAN SISTEM PENCERNAAN LAIN-LAIN (RINGAN)', 1905800.00, 2220200.00, 2534700.00), +('K-4-18-II', 'GANGGUAN SISTEM PENCERNAAN LAIN-LAIN (SEDANG)', 3125500.00, 3641200.00, 4157000.00), +('K-4-18-III', 'GANGGUAN SISTEM PENCERNAAN LAIN-LAIN (BERAT)', 3750600.00, 4369400.00, 4988300.00), +('L-1-20-I', 'PEMINDAHAN KULIT PADA LUKA BAKAR (RINGAN)', 27496600.00, 32033500.00, 36570500.00), +('L-1-20-II', 'PEMINDAHAN KULIT PADA LUKA BAKAR (SEDANG)', 41505400.00, 48353800.00, 55202200.00), +('L-1-20-III', 'PEMINDAHAN KULIT PADA LUKA BAKAR (BERAT)', 59373200.00, 69169800.00, 78966400.00), +('L-1-30-I', 'PEMINDAHAN KULIT TANPA LUKA BAKAR (RINGAN)', 12973200.00, 15113800.00, 17254400.00), +('L-1-30-II', 'PEMINDAHAN KULIT TANPA LUKA BAKAR (SEDANG)', 22261100.00, 25934200.00, 29607300.00), +('L-1-30-III', 'PEMINDAHAN KULIT TANPA LUKA BAKAR (BERAT)', 27637500.00, 32197700.00, 36757900.00), +('L-1-40-I', 'PROSEDUR PADA KULIT, JARINGAN) BAWAH KULIT (RINGAN)', 7270600.00, 8470200.00, 9669800.00), +('L-1-40-II', 'PROSEDUR PADA KULIT, JARINGAN) BAWAH KULIT (SEDANG)', 12533300.00, 14601300.00, 16669200.00), +('L-1-40-III', 'PROSEDUR PADA KULIT, JARINGAN) BAWAH KULIT (BERAT)', 20585100.00, 23981600.00, 27378100.00), +('L-1-50-I', 'PROSEDUR PADA PAYUDARA (RINGAN)', 9544700.00, 11119600.00, 12694500.00), +('L-1-50-II', 'PROSEDUR PADA PAYUDARA (SEDANG)', 15361100.00, 17895700.00, 20430300.00), +('L-1-50-III', 'PROSEDUR PADA PAYUDARA (BERAT)', 21972500.00, 25598000.00, 29223500.00), +('L-4-10-I', 'PENYAKIT KULIT MAYOR (RINGAN)', 2754100.00, 3208500.00, 3662900.00), +('L-4-10-II', 'PENYAKIT KULIT MAYOR (SEDANG)', 3424400.00, 3989400.00, 4554500.00), +('L-4-10-III', 'PENYAKIT KULIT MAYOR (BERAT)', 3922200.00, 4569300.00, 5216500.00), +('L-4-11-I', 'TUMOR PAYUDARA (RINGAN)', 5228000.00, 6090600.00, 6953300.00), +('L-4-11-II', 'TUMOR PAYUDARA (SEDANG)', 7185400.00, 8371000.00, 9556600.00), +('L-4-11-III', 'TUMOR PAYUDARA (BERAT)', 16327400.00, 19021400.00, 21715500.00), +('L-4-12-I', 'PERADANGAN KULIT/CELLULITIS (RINGAN)', 2821600.00, 3287100.00, 3752600.00), +('L-4-12-II', 'PERADANGAN KULIT/CELLULITIS (SEDANG)', 3940700.00, 4590900.00, 5241000.00), +('L-4-12-III', 'PERADANGAN KULIT/CELLULITIS (BERAT)', 10858500.00, 12650100.00, 14441700.00), +('L-4-13-I', 'TRAUMA PADA KULIT, JA(RINGAN) BAWAH KULIT DAN PAYUDARA (RINGAN)', 3560200.00, 4147600.00, 4735100.00), +('L-4-13-II', 'TRAUMA PADA KULIT, JA(RINGAN) BAWAH KULIT DAN PAYUDARA (SEDANG)', 4789000.00, 5579200.00, 6369400.00), +('L-4-13-III', 'TRAUMA PADA KULIT, JA(RINGAN) BAWAH KULIT DAN PAYUDARA (BERAT)', 8555500.00, 9967200.00, 11378900.00), +('L-4-14-I', 'GANGGUAN PADA KULIT & PAYUDARA LAIN-LAIN (RINGAN)', 4299400.00, 5008800.00, 5718200.00), +('L-4-14-II', 'GANGGUAN PADA KULIT & PAYUDARA LAIN-LAIN (SEDANG)', 6457800.00, 7523300.00, 8588900.00), +('L-4-14-III', 'GANGGUAN PADA KULIT & PAYUDARA LAIN-LAIN (BERAT)', 9103100.00, 10605100.00, 12107100.00), +('M-1-01-I', 'PROSEDUR BILATERAL DAN MULTIPLE PADA SENDI TUNGKAI BAWAH (RINGAN)', 15197800.00, 17705400.00, 20213100.00), +('M-1-01-II', 'PROSEDUR BILATERAL DAN MULTIPLE PADA SENDI TUNGKAI BAWAH (SEDANG)', 21813200.00, 25412300.00, 29011500.00), +('M-1-01-III', 'PROSEDUR BILATERAL DAN MULTIPLE PADA SENDI TUNGKAI BAWAH (BERAT)', 35374200.00, 41211000.00, 47047700.00), +('M-1-02-I', 'AMPUTASI (RINGAN)', 13470100.00, 15692600.00, 17915200.00), +('M-1-02-II', 'AMPUTASI (SEDANG)', 22097000.00, 25743000.00, 29389100.00), +('M-1-02-III', 'AMPUTASI (BERAT)', 37542300.00, 43736800.00, 49931300.00), +('M-1-03-I', 'PROSEDUR FUSI TULANG BELAKANG PADA LENGKUNGAN TULANG BELAKANG (RINGAN)', 53844600.00, 62728900.00, 71613200.00), +('M-1-03-II', 'PROSEDUR FUSI TULANG BELAKANG PADA LENGKUNGAN TULANG BELAKANG (SEDANG)', 62979000.00, 73370500.00, 83762000.00), +('M-1-03-III', 'PROSEDUR FUSI TULANG BELAKANG PADA LENGKUNGAN TULANG BELAKANG (BERAT)', 77947000.00, 90808300.00, 103669500.00), +('M-1-04-I', 'PROSEDUR PADA SENDI TUNGKAI BAWAH (RINGAN)', 31713400.00, 36946100.00, 42178700.00), +('M-1-04-II', 'PROSEDUR PADA SENDI TUNGKAI BAWAH (SEDANG)', 38971000.00, 45401200.00, 51831400.00), +('M-1-04-III', 'PROSEDUR PADA SENDI TUNGKAI BAWAH (BERAT)', 46205800.00, 53829800.00, 61453700.00), +('M-1-05-I', 'PROSEDUR PADA SENDI TUNGKAI ATAS (RINGAN)', 16970900.00, 19771000.00, 22571200.00), +('M-1-05-II', 'PROSEDUR PADA SENDI TUNGKAI ATAS (SEDANG)', 21554700.00, 25111200.00, 28667700.00), +('M-1-05-III', 'PROSEDUR PADA SENDI TUNGKAI ATAS (BERAT)', 25632200.00, 29861500.00, 34090800.00), +('M-1-07-I', 'PROSEDUR FUSI TULANG BELAKANG SELAIN LENGKUNGAN TULANG BELAKANG (RINGAN)', 27367500.00, 31883100.00, 36398700.00), +('M-1-07-II', 'PROSEDUR FUSI TULANG BELAKANG SELAIN LENGKUNGAN TULANG BELAKANG (SEDANG)', 32349500.00, 37687200.00, 43024800.00), +('M-1-07-III', 'PROSEDUR FUSI TULANG BELAKANG SELAIN LENGKUNGAN TULANG BELAKANG (BERAT)', 41077100.00, 47854800.00, 54632500.00), +('M-1-10-I', 'PROSEDUR KRANIAL DAN REKONSTRUKSI TULANG WAJAH (RINGAN)', 23703800.00, 27614900.00, 31526000.00), +('M-1-10-II', 'PROSEDUR KRANIAL DAN REKONSTRUKSI TULANG WAJAH (SEDANG)', 55375100.00, 64512000.00, 73648900.00), +('M-1-10-III', 'PROSEDUR KRANIAL DAN REKONSTRUKSI TULANG WAJAH (BERAT)', 119438900.00, 139146300.00, 158853800.00), +('M-1-20-I', 'PROSEDUR PADA PAHA DAN SENDI PANGGUL (RINGAN)', 18047500.00, 21025300.00, 24003200.00), +('M-1-20-II', 'PROSEDUR PADA PAHA DAN SENDI PANGGUL (SEDANG)', 23061000.00, 26866100.00, 30671200.00), +('M-1-20-III', 'PROSEDUR PADA PAHA DAN SENDI PANGGUL (BERAT)', 57406100.00, 66878100.00, 76350100.00), +('M-1-30-I', 'PROSEDUR KAKI (RINGAN)', 12381000.00, 14423900.00, 16466800.00), +('M-1-30-II', 'PROSEDUR KAKI (SEDANG)', 20062300.00, 23372600.00, 26682900.00), +('M-1-30-III', 'PROSEDUR KAKI (BERAT)', 28687300.00, 33420700.00, 38154200.00), +('M-1-40-I', 'EKSISI LOKAL DAN PENGANGKATAN ALAT FIKSASI INTERNAL (RINGAN)', 7562900.00, 8810800.00, 10058700.00), +('M-1-40-II', 'EKSISI LOKAL DAN PENGANGKATAN ALAT FIKSASI INTERNAL (SEDANG)', 11177100.00, 13021300.00, 14865600.00), +('M-1-40-III', 'EKSISI LOKAL DAN PENGANGKATAN ALAT FIKSASI INTERNAL (BERAT)', 16521300.00, 19247300.00, 21973300.00), +('M-1-50-I', 'PROSEDUR JARINGAN LUNAK (RINGAN)', 7552600.00, 8798800.00, 10044900.00), +('M-1-50-II', 'PROSEDUR JARINGAN LUNAK (SEDANG)', 13786600.00, 16061400.00, 18336200.00), +('M-1-50-III', 'PROSEDUR JARINGAN LUNAK (BERAT)', 22643600.00, 26379800.00, 30116000.00), +('M-1-60-I', 'PROSEDUR SISTEM MUSKULOSKLETAL & JARINGAN PENGHUBUNG LAIN-LAIN (RINGAN)', 11664200.00, 13588800.00, 15513400.00), +('M-1-60-II', 'PROSEDUR SISTEM MUSKULOSKLETAL & JARINGAN PENGHUBUNG LAIN-LAIN (SEDANG)', 14664600.00, 17084200.00, 19503900.00), +('M-1-60-III', 'PROSEDUR SISTEM MUSKULOSKLETAL & JARINGAN PENGHUBUNG LAIN-LAIN (BERAT)', 22152600.00, 25807800.00, 29463000.00), +('M-1-70-I', 'PROSEDUR LUTUT DAN TUNGKAI BAWAH SELAIN KAKI (RINGAN)', 21610100.00, 25175700.00, 28741400.00), +('M-1-70-II', 'PROSEDUR LUTUT DAN TUNGKAI BAWAH SELAIN KAKI (SEDANG)', 23771000.00, 27693200.00, 31615500.00), +('M-1-70-III', 'PROSEDUR LUTUT DAN TUNGKAI BAWAH SELAIN KAKI (BERAT)', 27214600.00, 31705000.00, 36195500.00), +('M-1-80-I', 'PROSEDUR ANGGOTA TUBUH ATAS (RINGAN)', 12284500.00, 14311400.00, 16338300.00), +('M-1-80-II', 'PROSEDUR ANGGOTA TUBUH ATAS (SEDANG)', 14588900.00, 16996100.00, 19403200.00), +('M-1-80-III', 'PROSEDUR ANGGOTA TUBUH ATAS (BERAT)', 29552700.00, 34428900.00, 39305100.00), +('M-4-10-I', 'FRAKTUR FEMUR (RINGAN)', 4327300.00, 5041300.00, 5755400.00), +('M-4-10-II', 'FRAKTUR FEMUR (SEDANG)', 6886700.00, 8023000.00, 9159300.00), +('M-4-10-III', 'FRAKTUR FEMUR (BERAT)', 13390300.00, 15599700.00, 17809000.00), +('M-4-11-I', 'FRAKTUR PELVIS ATAU DISLOKASI SENDI PANGGUL (RINGAN)', 5903500.00, 6877500.00, 7851600.00), +('M-4-11-II', 'FRAKTUR PELVIS ATAU DISLOKASI SENDI PANGGUL (SEDANG)', 11822300.00, 13773000.00, 15723700.00), +('M-4-11-III', 'FRAKTUR PELVIS ATAU DISLOKASI SENDI PANGGUL (BERAT)', 17093100.00, 19913400.00, 22733800.00), +('M-4-12-I', 'FRAKTUR/DISLOKASI SELAIN FEMUR DAN PELVIS (RINGAN)', 4304300.00, 5014500.00, 5724700.00), +('M-4-12-II', 'FRAKTUR/DISLOKASI SELAIN FEMUR DAN PELVIS (SEDANG)', 7159100.00, 8340400.00, 9521700.00), +('M-4-12-III', 'FRAKTUR/DISLOKASI SELAIN FEMUR DAN PELVIS (BERAT)', 9576100.00, 11156200.00, 12736300.00), +('M-4-13-I', 'TUMOR MUSKULOSKLETAL,JARINGAN KONEKTIF DAN FRAKTUR PATOLOGIS (RINGAN)', 7167000.00, 8349600.00, 9532200.00), +('M-4-13-II', 'TUMOR MUSKULOSKLETAL,JARINGAN KONEKTIF DAN FRAKTUR PATOLOGIS (SEDANG)', 10768100.00, 12544800.00, 14321600.00), +('M-4-13-III', 'TUMOR MUSKULOSKLETAL,JARINGAN KONEKTIF DAN FRAKTUR PATOLOGIS (BERAT)', 21008300.00, 24474700.00, 27941100.00), +('M-4-14-I', 'OSTEOMIELITIS (RINGAN)', 8387500.00, 9771400.00, 11155300.00), +('M-4-14-II', 'OSTEOMIELITIS (SEDANG)', 10081100.00, 11744500.00, 13407900.00), +('M-4-14-III', 'OSTEOMIELITIS (BERAT)', 15148900.00, 17648500.00, 20148100.00), +('M-4-15-I', 'ARTRITIS SEPSIS (RINGAN)', 5227400.00, 6089900.00, 6952400.00), +('M-4-15-II', 'ARTRITIS SEPSIS (SEDANG)', 7392400.00, 8612100.00, 9831900.00), +('M-4-15-III', 'ARTRITIS SEPSIS (BERAT)', 14660600.00, 17079600.00, 19498600.00); +INSERT INTO `ina_cbg_rawatinap` (`ID_INACBG_RI`, `Tindakan_RI`, `Tarif_Kelas_3`, `Tarif_Kelas_2`, `Tarif_Kelas_1`) VALUES +('M-4-16-I', 'GANGGUAN JARINGAN KONEKTIF (RINGAN)', 4149700.00, 4834400.00, 5519000.00), +('M-4-16-II', 'GANGGUAN JARINGAN KONEKTIF (SEDANG)', 6645200.00, 7741600.00, 8838000.00), +('M-4-16-III', 'GANGGUAN JARINGAN KONEKTIF (BERAT)', 11721500.00, 13655500.00, 15589500.00), +('M-4-17-I', 'MASALAH BAGIAN PUNGGUNG/PINGGANG BELAKANG (RINGAN)', 4847000.00, 5646800.00, 6446600.00), +('M-4-17-II', 'MASALAH BAGIAN PUNGGUNG/PINGGANG BELAKANG (SEDANG)', 6779100.00, 7897700.00, 9016300.00), +('M-4-17-III', 'MASALAH BAGIAN PUNGGUNG/PINGGANG BELAKANG (BERAT)', 9466600.00, 11028600.00, 12590600.00), +('M-4-18-I', 'PENYAKIT TULANG DAN SENDI LAIN-LAIN (RINGAN)', 4070700.00, 4742400.00, 5414100.00), +('M-4-18-II', 'PENYAKIT TULANG DAN SENDI LAIN-LAIN (SEDANG)', 6134700.00, 7146900.00, 8159200.00), +('M-4-18-III', 'PENYAKIT TULANG DAN SENDI LAIN-LAIN (BERAT)', 7386400.00, 8605200.00, 9824000.00), +('M-4-19-I', 'MALFUNGSI, REAKSI ATAU KOMPLIKASI DARI PROSEDUR ATAU PEMASANGAN ALAT ORTOPEDIK (RINGAN)', 6345700.00, 7392800.00, 8439800.00), +('M-4-19-II', 'MALFUNGSI, REAKSI ATAU KOMPLIKASI DARI PROSEDUR ATAU PEMASANGAN ALAT ORTOPEDIK (SEDANG)', 11036200.00, 12857200.00, 14678100.00), +('M-4-19-III', 'MALFUNGSI, REAKSI ATAU KOMPLIKASI DARI PROSEDUR ATAU PEMASANGAN ALAT ORTOPEDIK (BERAT)', 13965000.00, 16269200.00, 18573500.00), +('M-4-20-I', 'TANDA, GEJALA & PERADANGAN MUSKULOSKELETAL (RINGAN)', 3854000.00, 4489900.00, 5125800.00), +('M-4-20-II', 'TANDA, GEJALA & PERADANGAN MUSKULOSKELETAL (SEDANG)', 5643400.00, 6574500.00, 7505700.00), +('M-4-20-III', 'TANDA, GEJALA & PERADANGAN MUSKULOSKELETAL (BERAT)', 6466300.00, 7533300.00, 8600200.00), +('M-4-21-I', 'GANGGUAN SISTEM MUSKULOSKELETAL & JA(RINGAN) PENYAMBUNG LAIN-LAIN (RINGAN)', 5043700.00, 5875900.00, 6708000.00), +('M-4-21-II', 'GANGGUAN SISTEM MUSKULOSKELETAL & JA(RINGAN) PENYAMBUNG LAIN-LAIN (SEDANG)', 6150000.00, 7164700.00, 8179400.00), +('M-4-21-III', 'GANGGUAN SISTEM MUSKULOSKELETAL & JA(RINGAN) PENYAMBUNG LAIN-LAIN (BERAT)', 10881500.00, 12676900.00, 14472300.00), +('N-1-01-I', 'TRANSPLANTASI GINJAL (RINGAN)', 298446200.00, 347689800.00, 396933500.00), +('N-1-01-II', 'TRANSPLANTASI GINJAL (SEDANG)', 299938400.00, 349428300.00, 398918100.00), +('N-1-01-III', 'TRANSPLANTASI GINJAL (BERAT)', 300973400.00, 350634000.00, 400294600.00), +('N-1-11-I', 'PROSEDUR KANDUNG KEMIH KOMPLEK (RINGAN)', 12437100.00, 14489200.00, 16541400.00), +('N-1-11-II', 'PROSEDUR KANDUNG KEMIH KOMPLEK (SEDANG)', 19666100.00, 22911000.00, 26156000.00), +('N-1-11-III', 'PROSEDUR KANDUNG KEMIH KOMPLEK (BERAT)', 30659400.00, 35718200.00, 40777100.00), +('N-1-12-I', 'MEMBUAT BARU, MEREVISI DAN MEMINDAHKAN ALAT DIALISIS (RINGAN)', 8495400.00, 9897100.00, 11298800.00), +('N-1-12-II', 'MEMBUAT BARU, MEREVISI DAN MEMINDAHKAN ALAT DIALISIS (SEDANG)', 13530700.00, 15763300.00, 17995800.00), +('N-1-12-III', 'MEMBUAT BARU, MEREVISI DAN MEMINDAHKAN ALAT DIALISIS (BERAT)', 27385600.00, 31904200.00, 36422800.00), +('N-1-20-I', 'PROSEDUR SALURAN URIN ATAS (RINGAN)', 13859000.00, 16145700.00, 18432500.00), +('N-1-20-II', 'PROSEDUR SALURAN URIN ATAS (SEDANG)', 19394900.00, 22595100.00, 25795300.00), +('N-1-20-III', 'PROSEDUR SALURAN URIN ATAS (BERAT)', 27140800.00, 31619000.00, 36097300.00), +('N-1-30-I', 'PROSEDUR KANDUNG KEMIH DAN SALURAN URIN BAWAH (RINGAN)', 12683400.00, 14776200.00, 16869000.00), +('N-1-30-II', 'PROSEDUR KANDUNG KEMIH DAN SALURAN URIN BAWAH (SEDANG)', 19187500.00, 22353400.00, 25519400.00), +('N-1-30-III', 'PROSEDUR KANDUNG KEMIH DAN SALURAN URIN BAWAH (BERAT)', 22083000.00, 25726700.00, 29370400.00), +('N-1-40-I', 'PROSEDUR PADA URETRA DAN TRANSURETRA (RINGAN)', 11390700.00, 13270200.00, 15149600.00), +('N-1-40-II', 'PROSEDUR PADA URETRA DAN TRANSURETRA (SEDANG)', 15468200.00, 18020500.00, 20572700.00), +('N-1-40-III', 'PROSEDUR PADA URETRA DAN TRANSURETRA (BERAT)', 18003100.00, 20973600.00, 23944000.00), +('N-4-10-I', 'TUMOR GINJAL & SALURAN URIN & GAGAL GINJAL (RINGAN)', 4839500.00, 5638000.00, 6436500.00), +('N-4-10-II', 'TUMOR GINJAL & SALURAN URIN & GAGAL GINJAL (SEDANG)', 5853500.00, 6819300.00, 7785100.00), +('N-4-10-III', 'TUMOR GINJAL & SALURAN URIN & GAGAL GINJAL (BERAT)', 8609500.00, 10030100.00, 11450600.00), +('N-4-11-I', 'PERADANGAN GINJAL (RINGAN)', 3715100.00, 4328100.00, 4941100.00), +('N-4-11-II', 'PERADANGAN GINJAL (SEDANG)', 6490700.00, 7561600.00, 8632600.00), +('N-4-11-III', 'PERADANGAN GINJAL (BERAT)', 8075800.00, 9408300.00, 10740800.00), +('N-4-12-I', 'INFEKSI GINJAL DAN SALURAN URIN (RINGAN)', 2801100.00, 3263300.00, 3725400.00), +('N-4-12-II', 'INFEKSI GINJAL DAN SALURAN URIN (SEDANG)', 6620000.00, 7712300.00, 8804500.00), +('N-4-12-III', 'INFEKSI GINJAL DAN SALURAN URIN (BERAT)', 9455800.00, 11016000.00, 12576100.00), +('N-4-13-I', 'BATU URIN (RINGAN)', 3790400.00, 4415800.00, 5041100.00), +('N-4-13-II', 'BATU URIN (SEDANG)', 6336600.00, 7382100.00, 8427600.00), +('N-4-13-III', 'BATU URIN (BERAT)', 13109000.00, 15272000.00, 17434900.00), +('N-4-14-I', 'MALFUNGSI, REAKSI ATAU KOMPLIKASI DARI PEMASANGAN ALAT SALURAN URIN, PEMINDAHAN KULIT ATAU\nPENCAKOKAN (RINGAN)', 4814800.00, 5609200.00, 6403700.00), +('N-4-14-II', 'MALFUNGSI, REAKSI ATAU KOMPLIKASI DARI PEMASANGAN ALAT SALURAN URIN, PEMINDAHAN KULIT ATAU\nPENCAKOKAN (SEDANG)', 7494300.00, 8730800.00, 9967400.00), +('N-4-14-III', 'MALFUNGSI, REAKSI ATAU KOMPLIKASI DARI PEMASANGAN ALAT SALURAN URIN, PEMINDAHAN KULIT ATAU\nPENCAKOKAN (BERAT)', 9951400.00, 11593400.00, 13235400.00), +('N-4-15-I', 'GEJALA, TANDA-TANDA PADA GINJAL DAN SALURAN URIN (RINGAN)', 4407900.00, 5135200.00, 5862500.00), +('N-4-15-II', 'GEJALA, TANDA-TANDA PADA GINJAL DAN SALURAN URIN (SEDANG)', 5469400.00, 6371800.00, 7274300.00), +('N-4-15-III', 'GEJALA, TANDA-TANDA PADA GINJAL DAN SALURAN URIN (BERAT)', 6241500.00, 7271300.00, 8301200.00), +('N-4-16-I', 'PENYAKIT GINJAL DAN SALURAN URIN LAIN-LAIN (RINGAN)', 5397400.00, 6288000.00, 7178600.00), +('N-4-16-II', 'PENYAKIT GINJAL DAN SALURAN URIN LAIN-LAIN (SEDANG)', 7703800.00, 8974900.00, 10246100.00), +('N-4-16-III', 'PENYAKIT GINJAL DAN SALURAN URIN LAIN-LAIN (BERAT)', 10254300.00, 11946300.00, 13638300.00), +('O-6-10-I', 'OPERASI PEMBEDAHAN CAESAR (RINGAN)', 5532400.00, 6445200.00, 7358100.00), +('O-6-10-II', 'OPERASI PEMBEDAHAN CAESAR (SEDANG)', 7121000.00, 8296000.00, 9470900.00), +('O-6-10-III', 'OPERASI PEMBEDAHAN CAESAR (BERAT)', 11225100.00, 13077200.00, 14929400.00), +('O-6-11-I', 'PERSALINAN VAGINAL DENGAN STERILISASI &/ DILATASI & KURET (RINGAN)', 5121500.00, 5966500.00, 6811500.00), +('O-6-11-II', 'PERSALINAN VAGINAL DENGAN STERILISASI &/ DILATASI & KURET (SEDANG)', 5738800.00, 6685700.00, 7632600.00), +('O-6-11-III', 'PERSALINAN VAGINAL DENGAN STERILISASI &/ DILATASI & KURET (BERAT)', 7502700.00, 8740600.00, 9978500.00), +('O-6-12-I', 'PERSALINAN VAGINAL DENGAN PROSEDUR SELAIN STERILISASI &/ DILATASI &KURET (RINGAN)', 3668800.00, 4274200.00, 4879500.00), +('O-6-12-II', 'PERSALINAN VAGINAL DENGAN PROSEDUR SELAIN STERILISASI &/ DILATASI & KURET (SEDANG)', 4426100.00, 5156400.00, 5886700.00), +('O-6-12-III', 'PERSALINAN VAGINAL DENGAN PROSEDUR SELAIN STERILISASI &/ DILATASI & KURET (BERAT)', 7211700.00, 8401600.00, 9591500.00), +('O-6-13-I', 'PERSALINAN VAGINAL (RINGAN)', 2613500.00, 3044700.00, 3475900.00), +('O-6-13-II', 'PERSALINAN VAGINAL (SEDANG)', 3343300.00, 3894900.00, 4446500.00), +('O-6-13-III', 'PERSALINAN VAGINAL (BERAT)', 4186800.00, 4877600.00, 5568400.00), +('P-8-01-I', 'NEONATAL DENGAN PENCANGKOKAN ORGAN ATAU OKSIGENASI SELAPUT EKSTRAKORPORAL (RINGAN)', 79373700.00, 92470400.00, 105567100.00), +('P-8-01-II', 'NEONATAL DENGAN PENCANGKOKAN ORGAN ATAU OKSIGENASI SELAPUT EKSTRAKORPORAL (SEDANG)', 98213100.00, 114418300.00, 130623500.00), +('P-8-01-III', 'NEONATAL DENGAN PENCANGKOKAN ORGAN ATAU OKSIGENASI SELAPUT EKSTRAKORPORAL (BERAT)', 115274600.00, 134294900.00, 153315200.00), +('P-8-02-I', 'NEONATAL, BERAT BADAN LAHIR GROUP-1 DENGAN PROSEDUR MAYOR (RINGAN)', 108341400.00, 126217700.00, 144094100.00), +('P-8-02-II', 'NEONATAL, BERAT BADAN LAHIR GROUP-1 DENGAN PROSEDUR MAYOR (SEDANG)', 124278500.00, 144784400.00, 165290400.00), +('P-8-02-III', 'NEONATAL, BERAT BADAN LAHIR GROUP-1 DENGAN PROSEDUR MAYOR (BERAT)', 141997000.00, 165426500.00, 188856000.00), +('P-8-03-I', 'NEONATAL, BERAT BADAN LAHIR GROUP-1 TANPA PROSEDUR MAYOR (RINGAN)', 16251100.00, 18932500.00, 21614000.00), +('P-8-03-II', 'NEONATAL, BERAT BADAN LAHIR GROUP-1 TANPA PROSEDUR MAYOR (SEDANG)', 21510600.00, 25059800.00, 28609100.00), +('P-8-03-III', 'NEONATAL, BERAT BADAN LAHIR GROUP-1 TANPA PROSEDUR MAYOR (BERAT)', 32580600.00, 37956400.00, 43332200.00), +('P-8-04-I', 'NEONATAL, BERAT BADAN LAHIR GROUP-2 DENGAN PROSEDUR MAYOR (RINGAN)', 52369900.00, 61010900.00, 69652000.00), +('P-8-04-II', 'NEONATAL, BERAT BADAN LAHIR GROUP-2 DENGAN PROSEDUR MAYOR (SEDANG)', 67964800.00, 79179000.00, 90393200.00), +('P-8-04-III', 'NEONATAL, BERAT BADAN LAHIR GROUP-2 DENGAN PROSEDUR MAYOR (BERAT)', 97444400.00, 113522700.00, 129601100.00), +('P-8-05-I', 'NEONATAL, BERAT BADAN LAHIR GROUP-3 DENGAN PROSEDUR MAYOR (RINGAN)', 28477100.00, 33175800.00, 37874600.00), +('P-8-05-II', 'NEONATAL, BERAT BADAN LAHIR GROUP-3 DENGAN PROSEDUR MAYOR (SEDANG)', 43930900.00, 51179500.00, 58428100.00), +('P-8-05-III', 'NEONATAL, BERAT BADAN LAHIR GROUP-3 DENGAN PROSEDUR MAYOR (BERAT)', 59468500.00, 69280800.00, 79093100.00), +('P-8-06-I', 'NEONATAL, BERAT BADAN LAHIR GROUP-4 DENGAN PROSEDUR MAYOR (RINGAN)', 14270900.00, 16625600.00, 18980300.00), +('P-8-06-II', 'NEONATAL, BERAT BADAN LAHIR GROUP-4 DENGAN PROSEDUR MAYOR (SEDANG)', 28411600.00, 33099600.00, 37787500.00), +('P-8-06-III', 'NEONATAL, BERAT BADAN LAHIR GROUP-4 DENGAN PROSEDUR MAYOR (BERAT)', 38767600.00, 45164200.00, 51560900.00), +('P-8-07-I', 'NEONATAL, BERAT BADAN LAHIR GROUP-5 DENGAN PROSEDUR MAYOR (RINGAN)', 12610400.00, 14691100.00, 16771800.00), +('P-8-07-II', 'NEONATAL, BERAT BADAN LAHIR GROUP-5 DENGAN PROSEDUR MAYOR (SEDANG)', 25795500.00, 30051800.00, 34308100.00), +('P-8-07-III', 'NEONATAL, BERAT BADAN LAHIR GROUP-5 DENGAN PROSEDUR MAYOR (BERAT)', 38674600.00, 45056000.00, 51437300.00), +('P-8-08-I', 'NEONATAL, BERAT BADAN LAHIR GROUP-5 DENGAN SINDROMA DISTRES PERNAFASAN (RINGAN)', 5276500.00, 6147100.00, 7017700.00), +('P-8-08-II', 'NEONATAL, BERAT BADAN LAHIR GROUP-5 DENGAN SINDROMA DISTRES PERNAFASAN (SEDANG)', 7472500.00, 8705400.00, 9938300.00), +('P-8-08-III', 'NEONATAL, BERAT BADAN LAHIR GROUP-5 DENGAN SINDROMA DISTRES PERNAFASAN (BERAT)', 14536800.00, 16935400.00, 19333900.00), +('P-8-11-I', 'NEONATAL, BBL 1000 - 1499 GR TANPA PROSEDUR MAYOR (RINGAN)', 13542600.00, 15777100.00, 18011700.00), +('P-8-11-II', 'NEONATAL, BBL 1000 - 1499 GR TANPA PROSEDUR MAYOR (SEDANG)', 20597100.00, 23995600.00, 27394100.00), +('P-8-11-III', 'NEONATAL, BBL 1000 - 1499 GR TANPA PROSEDUR MAYOR (BERAT)', 27821900.00, 32412500.00, 37003100.00), +('P-8-12-I', 'NEONATAL, BBL 1500 - 1999 GR TANPA PROSEDUR MAYOR (RINGAN)', 12311600.00, 14343000.00, 16374300.00), +('P-8-12-II', 'NEONATAL, BBL 1500 - 1999 GR TANPA PROSEDUR MAYOR (SEDANG)', 15044100.00, 17526400.00, 20008600.00), +('P-8-12-III', 'NEONATAL, BBL 1500 - 1999 GR TANPA PROSEDUR MAYOR (BERAT)', 21916700.00, 25532900.00, 29149100.00), +('P-8-13-I', 'NEONATAL, BBL 2000 - 2499 GR TANPA PROSEDUR MAYOR (RINGAN)', 6839700.00, 7968300.00, 9096900.00), +('P-8-13-II', 'NEONATAL, BBL 2000 - 2499 GR TANPA PROSEDUR MAYOR (SEDANG)', 10670000.00, 12430500.00, 14191100.00), +('P-8-13-III', 'NEONATAL, BBL 2000 - 2499 GR TANPA PROSEDUR MAYOR (BERAT)', 16858900.00, 19640600.00, 22422400.00), +('P-8-14-I', 'NEONATAL, BBL > 2499 GR DENGAN ANOMALI MAYOR ATAU KONDISI HEREDITER (RINGAN)', 7851700.00, 9147300.00, 10442800.00), +('P-8-14-II', 'NEONATAL, BBL > 2499 GR DENGAN ANOMALI MAYOR ATAU KONDISI HEREDITER (SEDANG)', 15881500.00, 18501900.00, 21122400.00), +('P-8-14-III', 'NEONATAL, BBL > 2499 GR DENGAN ANOMALI MAYOR ATAU KONDISI HEREDITER (BERAT)', 41206600.00, 48005700.00, 54804800.00), +('P-8-15-I', 'NEONATAL, BBL > 2499 GR DENGAN SINDROMA ASPIRASI (RINGAN)', 3883000.00, 4523700.00, 5164400.00), +('P-8-15-II', 'NEONATAL, BBL > 2499 GR DENGAN SINDROMA ASPIRASI (SEDANG)', 7795400.00, 9081600.00, 10367900.00), +('P-8-15-III', 'NEONATAL, BBL > 2499 GR DENGAN SINDROMA ASPIRASI (BERAT)', 9123400.00, 10628800.00, 12134200.00), +('P-8-16-I', 'NEONATAL, BBL > 2499 GR DENGAN KONGENITAL/INFEKSI PERINATAL (RINGAN)', 3514200.00, 4094000.00, 4673800.00), +('P-8-16-II', 'NEONATAL, BBL > 2499 GR DENGAN KONGENITAL/INFEKSI PERINATAL (SEDANG)', 6753000.00, 7867200.00, 8981400.00), +('P-8-16-III', 'NEONATAL, BBL > 2499 GR DENGAN KONGENITAL/INFEKSI PERINATAL (BERAT)', 15836700.00, 18449700.00, 21062700.00), +('P-8-17-I', 'NEONATAL, BBL > 2499 GR TANPA PROSEDUR MAYOR (RINGAN)', 4559800.00, 5312200.00, 6064600.00), +('P-8-17-II', 'NEONATAL, BBL > 2499 GR TANPA PROSEDUR MAYOR (SEDANG)', 8207600.00, 9561900.00, 10916200.00), +('P-8-17-III', 'NEONATAL, BBL > 2499 GR TANPA PROSEDUR MAYOR (BERAT)', 14049100.00, 16367200.00, 18685300.00), +('S-4-10-I', 'KECEDERAAN PADA TEMPAT YANG TAK SPESIFIK ATAU BANYAK TEMPAT (RINGAN)', 3962200.00, 4615900.00, 5269700.00), +('S-4-10-II', 'KECEDERAAN PADA TEMPAT YANG TAK SPESIFIK ATAU BANYAK TEMPAT (SEDANG)', 4910200.00, 5720400.00, 6530600.00), +('S-4-10-III', 'KECEDERAAN PADA TEMPAT YANG TAK SPESIFIK ATAU BANYAK TEMPAT (BERAT)', 6682800.00, 7785500.00, 8888200.00), +('S-4-11-I', 'REAKSI ALLERGI (RINGAN)', 2296000.00, 2674800.00, 3053700.00), +('S-4-11-II', 'REAKSI ALLERGI (SEDANG)', 3701000.00, 4311600.00, 4922300.00), +('S-4-11-III', 'REAKSI ALLERGI (BERAT)', 8539100.00, 9948100.00, 11357100.00), +('S-4-12-I', 'EFEK TOKSIK DAN KERACUNAN OBAT (RINGAN)', 2913000.00, 3393600.00, 3874300.00), +('S-4-12-II', 'EFEK TOKSIK DAN KERACUNAN OBAT (SEDANG)', 3877000.00, 4516700.00, 5156500.00), +('S-4-12-III', 'EFEK TOKSIK DAN KERACUNAN OBAT (BERAT)', 6720900.00, 7829800.00, 8938800.00), +('S-4-13-I', 'KOMPLIKASI DARI PENATALAKSANAAN PASIEN (RINGAN)', 4643200.00, 5409300.00, 6175400.00), +('S-4-13-II', 'KOMPLIKASI DARI PENATALAKSANAAN PASIEN (SEDANG)', 7631500.00, 8890700.00, 10149900.00), +('S-4-13-III', 'KOMPLIKASI DARI PENATALAKSANAAN PASIEN (BERAT)', 12386700.00, 14430500.00, 16474400.00), +('S-4-14-I', 'SINDROMA MALTREATMENT PADA DEWASA ATAU KANAK-KANAK (RINGAN)', 2177000.00, 2536200.00, 2895400.00), +('S-4-14-II', 'SINDROMA MALTREATMENT PADA DEWASA ATAU KANAK-KANAK (SEDANG)', 4624000.00, 5386900.00, 6149900.00), +('S-4-14-III', 'SINDROMA MALTREATMENT PADA DEWASA ATAU KANAK-KANAK (BERAT)', 8768700.00, 10215500.00, 11662400.00), +('S-4-15-I', 'LUKA BAKAR, DIRUJUK KE FASILITAS PERAWATAN AKUT YANG LAIN (RINGAN)', 1457400.00, 1697900.00, 1938400.00), +('S-4-15-II', 'LUKA BAKAR, DIRUJUK KE FASILITAS PERAWATAN AKUT YANG LAIN (SEDANG)', 2750400.00, 3204200.00, 3658000.00), +('S-4-15-III', 'LUKA BAKAR, DIRUJUK KE FASILITAS PERAWATAN AKUT YANG LAIN (BERAT)', 3562300.00, 4150000.00, 4737800.00), +('S-4-16-I', 'LUKA BAKAR (RINGAN)', 7555800.00, 8802500.00, 10049200.00), +('S-4-16-II', 'LUKA BAKAR (SEDANG)', 10126900.00, 11797800.00, 13468700.00), +('S-4-16-III', 'LUKA BAKAR (BERAT)', 14635800.00, 17050700.00, 19465600.00), +('S-4-17-I', 'DIAGNOSIS KECEDERAAN, KERACUNAN DAN EFEK TOKSIK LAIN-LAIN (RINGAN)', 3661200.00, 4265300.00, 4869400.00), +('S-4-17-II', 'DIAGNOSIS KECEDERAAN, KERACUNAN DAN EFEK TOKSIK LAIN-LAIN (SEDANG)', 5392900.00, 6282700.00, 7172600.00), +('S-4-17-III', 'DIAGNOSIS KECEDERAAN, KERACUNAN DAN EFEK TOKSIK LAIN-LAIN (BERAT)', 6486100.00, 7556300.00, 8626600.00), +('T-1-10-I', 'TERAPI REHABILITASI &/ DETOKSIKASI ALKOHOL & OBAT (RINGAN)', 2431300.00, 2832500.00, 3233700.00), +('T-1-10-II', 'TERAPI REHABILITASI &/ DETOKSIKASI ALKOHOL & OBAT (SEDANG)', 3265500.00, 3804300.00, 4343200.00), +('T-1-10-III', 'TERAPI REHABILITASI &/ DETOKSIKASI ALKOHOL & OBAT (BERAT)', 5940400.00, 6920600.00, 7900800.00), +('T-4-10-I', 'PENYALAHGUNAAN & KETERGANTUNGAN OBAT DAN ALKOHOL, MENOLAK NASEHAT DOKTER (RINGAN)', 1331300.00, 1551000.00, 1770700.00), +('T-4-10-II', 'PENYALAHGUNAAN & KETERGANTUNGAN OBAT DAN ALKOHOL, MENOLAK NASEHAT DOKTER (SEDANG)', 2536700.00, 2955300.00, 3373900.00), +('T-4-10-III', 'PENYALAHGUNAAN & KETERGANTUNGAN OBAT DAN ALKOHOL, MENOLAK NASEHAT DOKTER (BERAT)', 3687200.00, 4295600.00, 4904000.00), +('T-4-11-I', 'PENYALAHGUNAAN & KETERGANTUNGAN ALKOHOL,OPIUM DAN KOKAIN (RINGAN)', 1285700.00, 1497800.00, 1710000.00), +('T-4-11-II', 'PENYALAHGUNAAN & KETERGANTUNGAN ALKOHOL,OPIUM DAN KOKAIN (SEDANG)', 2023400.00, 2357200.00, 2691100.00), +('T-4-11-III', 'PENYALAHGUNAAN & KETERGANTUNGAN ALKOHOL,OPIUM DAN KOKAIN (BERAT)', 3259000.00, 3796700.00, 4334500.00), +('T-4-12-I', 'PENYALAHGUNAAN & KETERGANTUNGAN OBAT LAIN-LAIN (RINGAN)', 3012500.00, 3509500.00, 4006600.00), +('T-4-12-II', 'PENYALAHGUNAAN & KETERGANTUNGAN OBAT LAIN-LAIN (SEDANG)', 4547600.00, 5298000.00, 6048400.00), +('T-4-12-III', 'PENYALAHGUNAAN & KETERGANTUNGAN OBAT LAIN-LAIN (BERAT)', 7039000.00, 8200400.00, 9361900.00), +('U-1-10-I', 'PROSEDUR KOMPLEKS LARING (RINGAN)', 14162500.00, 16499300.00, 18836100.00), +('U-1-10-II', 'PROSEDUR KOMPLEKS LARING (SEDANG)', 22918700.00, 26700300.00, 30481900.00), +('U-1-10-III', 'PROSEDUR KOMPLEKS LARING (BERAT)', 36030300.00, 41975300.00, 47920300.00), +('U-1-11-I', 'PROSEDUR KOMPLEK LEHER DAN KEPALA LAIN-LAIN (RINGAN)', 12665900.00, 14755800.00, 16845700.00), +('U-1-11-II', 'PROSEDUR KOMPLEK LEHER DAN KEPALA LAIN-LAIN (SEDANG)', 18911900.00, 22032400.00, 25152900.00), +('U-1-11-III', 'PROSEDUR KOMPLEK LEHER DAN KEPALA LAIN-LAIN (BERAT)', 25240300.00, 29404900.00, 33569500.00), +('U-1-12-I', 'PROSEDUR MASTOID DAN SINUS (RINGAN)', 9604400.00, 11189100.00, 12773900.00), +('U-1-12-II', 'PROSEDUR MASTOID DAN SINUS (SEDANG)', 14727800.00, 17157900.00, 19588000.00), +('U-1-12-III', 'PROSEDUR MASTOID DAN SINUS (BERAT)', 21632000.00, 25201300.00, 28770600.00), +('U-1-13-I', 'PROSEDUR KELENJAR LUDAH (RINGAN)', 9611000.00, 11196800.00, 12782700.00), +('U-1-13-II', 'PROSEDUR KELENJAR LUDAH (SEDANG)', 11198300.00, 13046000.00, 14893800.00), +('U-1-13-III', 'PROSEDUR KELENJAR LUDAH (BERAT)', 18563300.00, 21626200.00, 24689200.00), +('U-1-14-I', 'OPERASI BIBIR SUMBING & LANGIT-LANGIT MULUT (RINGAN)', 6484500.00, 7554400.00, 8624300.00), +('U-1-14-II', 'OPERASI BIBIR SUMBING & LANGIT-LANGIT MULUT (SEDANG)', 9271000.00, 10800700.00, 12330400.00), +('U-1-14-III', 'OPERASI BIBIR SUMBING & LANGIT-LANGIT MULUT (BERAT)', 10888100.00, 12684700.00, 14481200.00), +('U-1-15-I', 'PROSEDUR TONSIL & ADENOID (RINGAN)', 4953900.00, 5771300.00, 6588700.00), +('U-1-15-II', 'PROSEDUR TONSIL & ADENOID (SEDANG)', 6427100.00, 7487600.00, 8548100.00), +('U-1-15-III', 'PROSEDUR TONSIL & ADENOID (BERAT)', 9790500.00, 11405900.00, 13021400.00), +('U-1-20-I', 'PROSEDUR TENGGOROKAN, MULUT, HIDUNG DAN TELINGA LAIN-LAIN (RINGAN)', 9169300.00, 10682200.00, 12195100.00), +('U-1-20-II', 'PROSEDUR TENGGOROKAN, MULUT, HIDUNG DAN TELINGA LAIN-LAIN (SEDANG)', 14398800.00, 16774600.00, 19150300.00), +('U-1-20-III', 'PROSEDUR TENGGOROKAN, MULUT, HIDUNG DAN TELINGA LAIN-LAIN (BERAT)', 26800200.00, 31222300.00, 35644300.00), +('U-1-30-I', 'PROSEDUR MULUT (RINGAN)', 7519700.00, 8760400.00, 10001200.00), +('U-1-30-II', 'PROSEDUR MULUT (SEDANG)', 10196300.00, 11878700.00, 13561100.00), +('U-1-30-III', 'PROSEDUR MULUT (BERAT)', 19939200.00, 23229200.00, 26519200.00), +('U-4-10-I', 'NEOPLASMA TELIGA, HIDUNG, MULUT DAN TENGGOROKAN (RINGAN)', 5411500.00, 6304400.00, 7197300.00), +('U-4-10-II', 'NEOPLASMA TELIGA, HIDUNG, MULUT DAN TENGGOROKAN (SEDANG)', 12388400.00, 14432500.00, 16476600.00), +('U-4-10-III', 'NEOPLASMA TELIGA, HIDUNG, MULUT DAN TENGGOROKAN (BERAT)', 19020100.00, 22158400.00, 25296700.00), +('U-4-11-I', 'DYSEQUILIBRIUM (RINGAN)', 2009400.00, 2341000.00, 2672500.00), +('U-4-11-II', 'DYSEQUILIBRIUM (SEDANG)', 3005100.00, 3500900.00, 3996800.00), +('U-4-11-III', 'DYSEQUILIBRIUM (BERAT)', 3294900.00, 3838500.00, 4382100.00), +('U-4-12-I', 'EPISTAKSIS/PERDARAHAN HIDUNG (RINGAN)', 3116900.00, 3631100.00, 4145400.00), +('U-4-12-II', 'EPISTAKSIS/PERDARAHAN HIDUNG (SEDANG)', 4531900.00, 5279700.00, 6027500.00), +('U-4-12-III', 'EPISTAKSIS/PERDARAHAN HIDUNG (BERAT)', 7936700.00, 9246300.00, 10555900.00), +('U-4-13-I', 'PERADANGAN EPIGLOTIS, TELINGA TENGAH, ISPA DAN LARINGOTRAKEITIS (RINGAN)', 2130300.00, 2481800.00, 2833200.00), +('U-4-13-II', 'PERADANGAN EPIGLOTIS, TELINGA TENGAH, ISPA DAN LARINGOTRAKEITIS (SEDANG)', 3481000.00, 4055300.00, 4629600.00), +('U-4-13-III', 'PERADANGAN EPIGLOTIS, TELINGA TENGAH, ISPA DAN LARINGOTRAKEITIS (BERAT)', 5620600.00, 6548000.00, 7475300.00), +('U-4-14-I', 'PENYAKIT MULUT DAN GIGI (RINGAN)', 5879400.00, 6849500.00, 7819500.00), +('U-4-14-II', 'PENYAKIT MULUT DAN GIGI (SEDANG)', 7830800.00, 9122900.00, 10414900.00), +('U-4-14-III', 'PENYAKIT MULUT DAN GIGI (BERAT)', 10831300.00, 12618500.00, 14405600.00), +('U-4-15-I', 'PENYAKIT TELINGA, HIDUNG, MULUT DAN TENGGOROKAN LAIN-LAIN (RINGAN)', 4689600.00, 5463400.00, 6237200.00), +('U-4-15-II', 'PENYAKIT TELINGA, HIDUNG, MULUT DAN TENGGOROKAN LAIN-LAIN (SEDANG)', 5393500.00, 6283500.00, 7173400.00), +('U-4-15-III', 'PENYAKIT TELINGA, HIDUNG, MULUT DAN TENGGOROKAN LAIN-LAIN (BERAT)', 7541100.00, 8785400.00, 10029700.00), +('V-1-10-I', 'PROSEDUR PENGANGKATAN PROSTAT KOMPLEK (RINGAN)', 9256700.00, 10784000.00, 12311400.00), +('V-1-10-II', 'PROSEDUR PENGANGKATAN PROSTAT KOMPLEK (SEDANG)', 14531700.00, 16929400.00, 19327200.00), +('V-1-10-III', 'PROSEDUR PENGANGKATAN PROSTAT KOMPLEK (BERAT)', 17821100.00, 20761600.00, 23702100.00), +('V-1-11-I', 'PROSEDUR PADA PENIS (RINGAN)', 13420700.00, 15635100.00, 17849500.00), +('V-1-11-II', 'PROSEDUR PADA PENIS (SEDANG)', 15324700.00, 17853300.00, 20381900.00), +('V-1-11-III', 'PROSEDUR PADA PENIS (BERAT)', 23999100.00, 27959000.00, 31918900.00), +('V-1-12-I', 'PROSEDUR PADA SKROTUM DAN PROSTAT KOMPLEK-MODERAT (RINGAN)', 12617900.00, 14699900.00, 16781900.00), +('V-1-12-II', 'PROSEDUR PADA SKROTUM DAN PROSTAT KOMPLEK-MODERAT (SEDANG)', 17230800.00, 20073900.00, 22917000.00), +('V-1-12-III', 'PROSEDUR PADA SKROTUM DAN PROSTAT KOMPLEK-MODERAT (BERAT)', 21840300.00, 25443900.00, 29047600.00), +('V-1-13-I', 'PROSEDUR PADA SKROTUM DAN PROSTAT NON KOMPLEK (RINGAN)', 6581700.00, 7667700.00, 8753700.00), +('V-1-13-II', 'PROSEDUR PADA SKROTUM DAN PROSTAT NON KOMPLEK (SEDANG)', 12575500.00, 14650400.00, 16725400.00), +('V-1-13-III', 'PROSEDUR PADA SKROTUM DAN PROSTAT NON KOMPLEK (BERAT)', 19729300.00, 22984600.00, 26240000.00), +('V-1-14-I', 'PENGANGKATAN PROSTAT MELALUI URETRA (RINGAN)', 12906700.00, 15036300.00, 17165900.00), +('V-1-14-II', 'PENGANGKATAN PROSTAT MELALUI URETRA (SEDANG)', 18753000.00, 21847200.00, 24941500.00), +('V-1-14-III', 'PENGANGKATAN PROSTAT MELALUI URETRA (BERAT)', 23416400.00, 27280100.00, 31143900.00), +('V-1-15-I', 'SIRKUMSISI (RINGAN)', 2078700.00, 2421700.00, 2764700.00), +('V-1-15-II', 'SIRKUMSISI (SEDANG)', 2514400.00, 2929300.00, 3344200.00), +('V-1-15-III', 'SIRKUMSISI (BERAT)', 3078400.00, 3586400.00, 4094300.00), +('V-4-10-I', 'TUMOR PADA SISTEM REPRODUKSI LAKI-LAKI (RINGAN)', 5617300.00, 6544200.00, 7471100.00), +('V-4-10-II', 'TUMOR PADA SISTEM REPRODUKSI LAKI-LAKI (SEDANG)', 9330700.00, 10870200.00, 12409800.00), +('V-4-10-III', 'TUMOR PADA SISTEM REPRODUKSI LAKI-LAKI (BERAT)', 15382900.00, 17921100.00, 20459300.00), +('V-4-11-I', 'PENYAKIT SISTEM REPRODUKSI LAKI-LAKI SELAIN TUMOR (RINGAN)', 5393000.00, 6282800.00, 7172700.00), +('V-4-11-II', 'PENYAKIT SISTEM REPRODUKSI LAKI-LAKI SELAIN TUMOR (SEDANG)', 7236000.00, 8429900.00, 9623900.00), +('V-4-11-III', 'PENYAKIT SISTEM REPRODUKSI LAKI-LAKI SELAIN TUMOR (BERAT)', 9692700.00, 11292000.00, 12891300.00), +('W-1-01-I', 'OPERASI PENGANGKATAN RAHIM DAN VULVA RADIKAL & EVISCERASI (RINGAN)', 14699400.00, 17124800.00, 19550200.00), +('W-1-01-II', 'OPERASI PENGANGKATAN RAHIM DAN VULVA RADIKAL & EVISCERASI (SEDANG)', 17852000.00, 20797600.00, 23743200.00), +('W-1-01-III', 'OPERASI PENGANGKATAN RAHIM DAN VULVA RADIKAL & EVISCERASI (BERAT)', 25140700.00, 29288900.00, 33437100.00), +('W-1-10-I', 'PROSEDUR ABORSI (RINGAN)', 3284600.00, 3826500.00, 4368400.00), +('W-1-10-II', 'PROSEDUR ABORSI (SEDANG)', 5723500.00, 6667900.00, 7612200.00), +('W-1-10-III', 'PROSEDUR ABORSI (BERAT)', 5925500.00, 6903200.00, 7880800.00), +('W-1-11-I', 'PROSEDUR DILATASI, KURET, INTRAUTERIN & SERVIK (RINGAN)', 3259100.00, 3796800.00, 4334500.00), +('W-1-11-II', 'PROSEDUR DILATASI, KURET, INTRAUTERIN & SERVIK (SEDANG)', 5347600.00, 6229900.00, 7112200.00), +('W-1-11-III', 'PROSEDUR DILATASI, KURET, INTRAUTERIN & SERVIK (BERAT)', 5843600.00, 6807800.00, 7771900.00), +('W-1-12-I', 'PROSEDUR PADAA TUBA FALOPII (RINGAN)', 4528700.00, 5275900.00, 6023100.00), +('W-1-12-II', 'PROSEDUR PADAA TUBA FALOPII (SEDANG)', 6687100.00, 7790500.00, 8893900.00), +('W-1-12-III', 'PROSEDUR PADAA TUBA FALOPII (BERAT)', 9351400.00, 10894400.00, 12437400.00), +('W-1-13-I', 'INTERUPSI TUBA DENGAN ENDOSKOP (RINGAN)', 3603900.00, 4198500.00, 4793200.00), +('W-1-13-II', 'INTERUPSI TUBA DENGAN ENDOSKOP (SEDANG)', 3912600.00, 4558200.00, 5203800.00), +('W-1-13-III', 'INTERUPSI TUBA DENGAN ENDOSKOP (BERAT)', 5255600.00, 6122800.00, 6990000.00), +('W-1-20-I', 'PROSEDUR PADA RAHIM & ADNEKSA (RINGAN)', 12068900.00, 14060300.00, 16051700.00), +('W-1-20-II', 'PROSEDUR PADA RAHIM & ADNEKSA (SEDANG)', 15080200.00, 17568400.00, 20056700.00), +('W-1-20-III', 'PROSEDUR PADA RAHIM & ADNEKSA (BERAT)', 17481800.00, 20366300.00, 23250800.00), +('W-1-30-I', 'PROSEDUR PADA VAGINA, SERVIK & VULVA (RINGAN)', 6813100.00, 7937200.00, 9061400.00), +('W-1-30-II', 'PROSEDUR PADA VAGINA, SERVIK & VULVA (SEDANG)', 10866800.00, 12659800.00, 14452900.00), +('W-1-30-III', 'PROSEDUR PADA VAGINA, SERVIK & VULVA (BERAT)', 26662200.00, 31061500.00, 35460800.00), +('W-4-10-I', 'TUMOR SISTEM REPRODUKSI WANITA (RINGAN)', 5076400.00, 5914000.00, 6751700.00), +('W-4-10-II', 'TUMOR SISTEM REPRODUKSI WANITA (SEDANG)', 7525600.00, 8767300.00, 10009100.00), +('W-4-10-III', 'TUMOR SISTEM REPRODUKSI WANITA (BERAT)', 14872100.00, 17326000.00, 19779900.00), +('W-4-11-I', 'INFEKSI SISTEM REPRODUKSI WANITA (RINGAN)', 4155000.00, 4840600.00, 5526200.00), +('W-4-11-II', 'INFEKSI SISTEM REPRODUKSI WANITA (SEDANG)', 6307900.00, 7348700.00, 8389600.00), +('W-4-11-III', 'INFEKSI SISTEM REPRODUKSI WANITA (BERAT)', 7677900.00, 8944800.00, 10211700.00), +('W-4-12-I', 'GANGGUAN MENSTRUASI & SISTEM REPRODUKSI WANITA LAIN-LAIN (RINGAN)', 3115700.00, 3629800.00, 4143900.00), +('W-4-12-II', 'GANGGUAN MENSTRUASI & SISTEM REPRODUKSI WANITA LAIN-LAIN (SEDANG)', 5929200.00, 6907500.00, 7885900.00), +('W-4-12-III', 'GANGGUAN MENSTRUASI & SISTEM REPRODUKSI WANITA LAIN-LAIN (BERAT)', 8725200.00, 10164900.00, 11604600.00), +('W-4-13-I', 'ABORTUS (RINGAN)', 1816400.00, 2116100.00, 2415900.00), +('W-4-13-II', 'ABORTUS (SEDANG)', 2742200.00, 3194700.00, 3647100.00), +('W-4-13-III', 'ABORTUS (BERAT)', 3133500.00, 3650500.00, 4167500.00), +('W-4-14-I', 'ABORTUS MENGANCAM (RINGAN)', 2427500.00, 2828000.00, 3228500.00), +('W-4-14-II', 'ABORTUS MENGANCAM (SEDANG)', 2889400.00, 3366100.00, 3842800.00), +('W-4-14-III', 'ABORTUS MENGANCAM (BERAT)', 4428800.00, 5159500.00, 5890200.00), +('W-4-15-I', 'PERSALINAN FALSE LABOR (RINGAN)', 2198300.00, 2561000.00, 2923700.00), +('W-4-15-II', 'PERSALINAN FALSE LABOR (SEDANG)', 2904200.00, 3383300.00, 3862500.00), +('W-4-15-III', 'PERSALINAN FALSE LABOR (BERAT)', 5044300.00, 5876600.00, 6708900.00), +('W-4-16-I', 'GANGGUAN ANTEPARTUM (RINGAN)', 2332700.00, 2717600.00, 3102400.00), +('W-4-16-II', 'GANGGUAN ANTEPARTUM (SEDANG)', 4323700.00, 5037100.00, 5750400.00), +('W-4-16-III', 'GANGGUAN ANTEPARTUM (BERAT)', 7910800.00, 9216100.00, 10521300.00), +('W-4-17-I', 'GANGGUAN POSTPARTUM (RINGAN)', 2320900.00, 2703900.00, 3086800.00), +('W-4-17-II', 'GANGGUAN POSTPARTUM (SEDANG)', 4307500.00, 5018200.00, 5729000.00), +('W-4-17-III', 'GANGGUAN POSTPARTUM (BERAT)', 8597500.00, 10016100.00, 11434700.00), +('Z-4-10-I', 'REHABILITASI (RINGAN)', 5119200.00, 5963900.00, 6808600.00), +('Z-4-10-II', 'REHABILITASI (SEDANG)', 6794600.00, 7915700.00, 9036800.00), +('Z-4-10-III', 'REHABILITASI (BERAT)', 9652900.00, 11245600.00, 12838400.00), +('Z-4-11-I', 'GEJALA-GEJALA DAN TANDA-TANDA (RINGAN)', 3332600.00, 3882500.00, 4432400.00), +('Z-4-11-II', 'GEJALA-GEJALA DAN TANDA-TANDA (SEDANG)', 4002600.00, 4663000.00, 5323500.00), +('Z-4-11-III', 'GEJALA-GEJALA DAN TANDA-TANDA (BERAT)', 5501900.00, 6409700.00, 7317500.00), +('Z-4-12-I', 'FAKTOR-FAKTOR YANG MEMPENGARUHI STATUS KESEHATAN LAIN-LAIN (RINGAN)', 2480100.00, 2889300.00, 3298500.00), +('Z-4-12-II', 'FAKTOR-FAKTOR YANG MEMPENGARUHI STATUS KESEHATAN LAIN-LAIN (SEDANG)', 4444500.00, 5177800.00, 5911100.00), +('Z-4-12-III', 'FAKTOR-FAKTOR YANG MEMPENGARUHI STATUS KESEHATAN LAIN-LAIN (BERAT)', 9330700.00, 10870300.00, 12409800.00); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `ina_cbg_rawatjalan` +-- + +CREATE TABLE `ina_cbg_rawatjalan` ( + `ID_INACBG_RJ` varchar(20) NOT NULL, + `Tindakan_RJ` varchar(150) DEFAULT NULL, + `Tarif_RJ` decimal(15,2) DEFAULT NULL +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; + +-- +-- Dumping data for table `ina_cbg_rawatjalan` +-- + +INSERT INTO `ina_cbg_rawatjalan` (`ID_INACBG_RJ`, `Tindakan_RJ`, `Tarif_RJ`) VALUES +('B-2-10-0', 'RUMAH SAKIT KELAS A PEMERINTAH', 1390000.00), +('B-2-11-0', 'RAWAT JALAN', 1803000.00), +('B-2-12-0', 'PROSEDUR KOLESISTEKTOMI TANPA LAPAROSKOPI', 3352900.00), +('B-2-13-0', 'PROSEDUR LAIN-LAIN PADA HEPATOBILIARI & PANKREAS', 3463500.00), +('B-2-14-0', 'PROSEDUR KOLESISTEKTOMI DENGAN LAPAROSKOPI', 3705500.00), +('B-3-10-0', 'PROSEDUR PADA PERKUTAN HATI & SALURAN EMPEDU', 1290400.00), +('B-3-11-0', 'PROSEDUR ENDOSKOPI SALURAN EMPEDU', 1677500.00), +('B-3-12-0', 'PROSEDUR LAIN-LAIN PADA SISTEM HEPATOBILIARI DAN PANKREAS', 517900.00), +('C-3-10-0', 'PROSEDUR RADIOTERAPI', 1144400.00), +('C-3-11-0', 'KEMOTERAPI PADA TUMOR PARU & KANDUNG KEMIH', 1036000.00), +('C-3-12-0', 'KEMOTERAPI PADA TUMOR KOLON', 1128300.00), +('C-3-13-0', 'KEMOTERAPI PADA TUMOR PAYUDARA ATAU OVARIUM', 1674900.00), +('C-3-14-0', 'KEMOTERAPI PADA TUMOR GASTROINTESTINAL', 2284500.00), +('C-3-15-0', 'KEMOTERAPI PADA TUMOR MELANOMA, GINJAL ATAU PROSTAT', 2093800.00), +('C-3-16-0', 'KEMOTERAPI PADA TUMOR OTAK', 786800.00), +('C-3-17-0', 'KEMOTERAPI PADA TUMOR KEPALA ATAU LEHER', 1598500.00), +('C-3-18-0', 'KEMOTERAPI PADA LEUKEMIA AKUT', 731400.00), +('C-3-19-0', 'KEMOTERAPI PADA TUMOR LIMFOMA, MYELOMA ATAU TESTIS', 1325200.00), +('C-3-20-0', 'KEMOTERAPI PADA TUMOR KULIT', 2969800.00), +('C-3-21-0', 'KEMOTERAPI PADA TUMOR GINEKOLOGI', 1416500.00), +('C-3-22-0', 'KEMOTERAPI PADA TUMOR METASTASE', 2511700.00), +('C-3-23-0', 'KEMOTERAPI PADA TUMOR LAIN-LAIN', 612800.00), +('D-2-10-0', 'PROSEDUR PENCANGKOKAN SUMSUM TULANG', 1787000.00), +('D-2-11-0', 'PROSEDUR LIMPA', 2558500.00), +('D-2-21-0', 'PROSEDUR BESAR PADA NODUL LIMPA DAN TYMUS', 2556500.00), +('D-2-22-0', 'PROSEDUR KECIL PADA NODUL LIMPA DAN TYMUS', 628400.00), +('D-3-10-0', 'PROSEDUR TRANSFUSI & TERAPI SUMSUM TULANG', 1509000.00), +('D-3-11-0', 'PROSEDUR DIAGNOSTIK DARAH DAN ORGAN PEMBENTUK DARAH', 1234000.00), +('E-2-10-0', 'PROSEDUR PADA KELENJAR ADRENAL', 741500.00), +('E-2-21-0', 'PROSEDUR BESAR PADA KELENJAR TIROID DAN PARATIROID', 927600.00), +('E-2-22-0', 'PROSEDUR KECIL PADA KELENJAR TIROID,PARATIROID DAN SALURAN THYROGLOSSAL', 722400.00), +('E-3-10-0', 'PROSEDUR DIAGNOSTIK PADA KELENJAR ENDOKRIN', 634200.00), +('F-3-10-0', 'TERAPI SHOCK', 690800.00), +('F-5-10-0', 'PELAYANAN KESEHATAN MENTAL EKSTENSIF', 471500.00), +('F-5-11-0', 'TERAPI KELOMPOK', 512600.00), +('F-5-12-0', 'PROSEDUR TES DIAGNOSTIK KESEHATAN JIWA', 418100.00), +('F-5-13-0', 'PSIKOTERAPI INDIVIDU DEWASA AKUT', 683700.00), +('F-5-14-0', 'PSIKOTHERAPI INDIVIDU DEWASA BUKAN AKUT', 354400.00), +('F-5-15-0', 'PENGOBATAN INDIVIDU KETERBELAKANGAN MENTAL', 351700.00), +('F-5-16-0', 'PSIKOTHERAPI INDIVIDU PADA KANAK-KANAK MASALAH KESEHATAN MENTAL', 372500.00), +('G-2-10-0', 'PROSEDUR KRANIOTOMI', 8183600.00), +('G-2-11-0', 'PROSEDUR SHUNT VENTRIKEL', 3942200.00), +('G-2-12-0', 'PROSEDUR PADA PEMBULUH DARAH EKSTRAKRANIAL', 3281600.00), +('G-2-13-0', 'PROSEDUR CARPAL TUNNEL RELEASE', 1141900.00), +('G-2-21-0', 'PROSEDUR BESAR PADA SARAF PERIFER', 2581400.00), +('G-2-22-0', 'PROSEDUR KECIL PADA SARAF PERIFER', 1447300.00), +('G-2-31-0', 'PROSEDUR BESAR PADA TULANG BELAKANG', 2584000.00), +('G-2-32-0', 'PROSEDUR KECIL PADA TULANG BELAKANG', 1756200.00), +('G-3-10-0', 'PROSEDUR TAP & INJEKSI PADA SPINAL', 794000.00), +('G-3-11-0', 'PROSEDUR INJEKSI PADA SARAF PERIFER', 574500.00), +('G-3-12-0', 'PROSEDUR PEMERIKSAAN NEUROLOGIS LAIN', 786100.00), +('G-3-13-0', 'PROSEDUR ELEKROENSEFALOGRAFI (EEG)', 596500.00), +('G-5-17-0', 'PENYAKIT SARAF KRANIAL DAN SARAF PERIFER LAIN-LAIN', 371500.00), +('H-2-21-0', 'PROSEDUR BESAR PADA MATA', 3623600.00), +('H-2-22-0', 'PROSEDUR SEDANG PADA MATA', 1791600.00), +('H-2-23-0', 'PROSEDUR KECIL PADA MATA', 966300.00), +('H-2-31-0', 'PROSEDUR BESAR PADA SEGMEN ANTERIOR MATA', 4036200.00), +('H-2-32-0', 'PROSEDUR SEDANG PADA SEGMEN ANTERIOR MATA', 2731800.00), +('H-2-33-0', 'PROSEDUR KECIL PADA SEGMEN ANTERIOR MATA', 509900.00), +('H-2-34-0', 'PROSEDUR BESAR PADA SEGMEN POSTERIOR MATA', 4086400.00), +('H-2-35-0', 'PROSEDUR KECIL PADA SEGMEN POSTERIOR MATA', 3081700.00), +('H-2-36-0', 'PROSEDUR OPERASI KATARAK', 4410000.00), +('H-2-37-0', 'PROSEDUR PHOTOKOAGULASI DAN KRIOTHERAPI PADA RETINA', 1662000.00), +('H-3-10-0', 'PROSEDUR LASER SEDANG PADA MATA', 1007200.00), +('H-3-11-0', 'PROSEDUR KECIL PADA EKTRAOKULER', 424100.00), +('H-3-12-0', 'PROSEDUR LAIN-LAIN PADA MATA', 384800.00), +('H-3-13-0', 'PROSEDUR DIAGNOSTIK & IMAGING PADA MATA', 401900.00), +('I-2-11-0', 'PEMASANGAN/PENYISIPAN DEFIBRILATOR JANTUNG & SISTEM BANTU JANTUNG', 5570300.00), +('I-2-12-0', 'PROSEDUR BESAR PADA PEMBULUH DARAH TORASIK', 3125100.00), +('I-2-13-0', 'PROSEDUR BESAR PADA PEMBULUH DARAH ABDOMEN', 3446100.00), +('I-2-14-0', 'PROSEDUR PEMASANGAN/PENYISIPAN ALAT PACU PERMANEN PADA JANTUNG', 7046700.00), +('I-2-15-0', 'PROSEDUR KATETERISASI JANTUNG', 6479700.00), +('I-2-16-0', 'PROSEDUR REVISI DEFIBRILATOR DAN ALAT PACU JANTUNG TIDAK TERMASUK PENGGANTIAN ALAT', 3852100.00), +('I-2-17-0', 'PROSEDUR LIGASI DAN STRIPPING PEMBULUH DARAH VENA', 1274400.00), +('I-2-21-0', 'ANGIOGRAFI ARTERI BUKAN JANTUNG', 4287500.00), +('I-2-22-0', 'PROSEDUR SEDANG PADA PEMBULUH DARAH', 2799500.00), +('I-2-23-0', 'PROSEDUR KECIL PADA PEMBULUH DARAH', 751800.00), +('I-2-31-0', 'PEMASANGAN ATAU PENGGANTIAN ALAT DEFIBRILATOR JANTUNG', 7437500.00), +('I-2-32-0', 'PEMASANGAN ATAU PENGGANTIAN ALAT PACU JANTUNG', 6733000.00), +('I-2-41-0', 'PROSEDUR ELEKTROFISIOLOGIK', 4514500.00), +('I-2-42-0', 'PROSEDUR ANGIOPLASTI PEMBULUH DARAH KORONER DAN KARDIOVASKULAR PERKUTAN LAIN', 4303800.00), +('I-3-10-0', 'PROSEDUR RESUSITASI', 1030700.00), +('I-3-11-0', 'PROSEDUR KARDIOVERSI', 935000.00), +('I-3-12-0', 'PROSEDUR KECIL LAIN-LAIN PADA JANTUNG', 1768900.00), +('I-3-13-0', 'PROSEDUR EKOKARDIOGRAFI', 515800.00), +('I-3-14-0', 'PROSEDUR STRESS TESTING', 475100.00), +('I-3-15-0', 'PROSEDUR PENGAWASAN FUNGSI KARDIOVASKULAR', 476000.00), +('J-2-10-0', 'PROSEDUR BESAR PADA SISTEM SALURAN PERNAFASAN', 2394000.00), +('J-2-21-0', 'PROSEDUR VENTILASI MEKANIKAL JANGKA PENDEK', 2477100.00), +('J-2-22-0', 'PROSEDUR PADA LARING DAN TRAKEA', 1949400.00), +('J-2-31-0', 'PROSEDUR THORAKOSKOPI/MEDIASTINOSKOPI', 2182900.00), +('J-2-32-0', 'PROSEDUR DADA INTERMEDIATE', 1303300.00), +('J-3-10-0', 'PROSEDUR PADA DINDING DADA', 883700.00), +('J-3-11-0', 'PROSEDUR PEMASANGAN/PENYISIPAN TUBE PADA DADA', 1150500.00), +('J-3-12-0', 'PROSEDUR THORACENTESIS', 792100.00), +('J-3-13-0', 'PROSEDUR TERAPI SALURAN PERNAFASAN', 473300.00), +('J-3-14-0', 'PROSEDUR BIOPSI PERKUTAN DAN ASPIRASI', 762100.00), +('J-3-15-0', 'PROSEDUR BRONKOSKOPI', 586500.00), +('J-3-16-0', 'PROSEDUR UJI FUNGSI PARU', 667700.00), +('J-3-17-0', 'PROSEDUR LAIN-LAIN PADA SISTEM SALURAN PERNAFASAN', 391400.00), +('K-2-10-0', 'PROSEDUR KECIL PADA USUS BESAR DAN KECIL', 1123400.00), +('K-2-11-0', 'PROSEDUR ADHESIOLYSIS PADA PERITONEUM', 2110000.00), +('K-2-12-0', 'PROSEDUR PADA HERNIA TIDAK TERMASUK HERNIA INGUINALIS DAN FEMORALIS', 1571600.00), +('K-2-13-0', 'PROSEDUR PADA USUS BUNTU', 3694800.00), +('K-2-14-0', 'PROSEDUR PADA HERNIA INGUINALIS DAN FEMORALIS', 804700.00), +('K-2-21-0', 'PROSEDUR BESAR PADA USUS HALUS DAN USUS BESAR', 932700.00), +('K-2-22-0', 'PROSEDUR BESAR PADA GASTROINTESTINAL ATAS', 4267700.00), +('K-2-31-0', 'PROSEDUR SEDANG PADA GASTROINTESTINAL ATAS', 1985300.00), +('K-2-32-0', 'PROSEDUR LAIN-LAIN PADA GASTROINTESTINAL ATAS', 688900.00), +('K-2-41-0', 'PROSEDUR LAPAROSKOPI', 2132900.00), +('K-2-42-0', 'PROSEDUR LAPAROTOMI & GASTROINTESTINAL LAINNYA', 4576800.00), +('K-2-51-0', 'PROSEDUR UNTUK WASIR', 1050800.00), +('K-2-52-0', 'PROSEDUR SEDANG PADA ANUS & REKTUM', 1157000.00), +('K-2-53-0', 'PROSEDUR KECIL PADA ANUS & REKTUM', 444600.00), +('K-3-10-0', 'PROSEDUR KECIL LAIN-LAIN PADA GASTROINTESTINAL', 366000.00), +('K-3-11-0', 'PROSEDUR KECIL PADA ANUS & REKTUM', 549000.00), +('K-3-12-0', 'PROSEDUR SIGMOIDOSKOPI DAN ANOSKOPI', 1049200.00), +('K-3-13-0', 'PROSEDUR KOLONOSKOPI', 2678200.00), +('K-3-14-0', 'PROSEDUR ENDOSKOPI BESAR PADA GASTROINTESTINAL ATAS', 2177800.00), +('K-3-15-0', 'PROSEDUR ENDOSKOPI KECIL PADA GASTROINTESTINAL ATAS', 1679000.00), +('K-3-16-0', 'PROSEDUR LAIN-LAIN PADA GASTROINTESTINAL', 675000.00), +('K-5-18-0', 'PENYAKIT SISTEM PENCERNAAN LAIN-LAIN', 371500.00), +('L-2-21-0', 'PROSEDUR BESAR PEMINDAHAN KULIT PADA LUKA BAKAR', 2243700.00), +('L-2-22-0', 'PROSEDUR KECIL PEMINDAHAN KULIT PADA LUKA BAKAR', 1438300.00), +('L-2-31-0', 'PROSEDUR BESAR PEMINDAHAN KULIT TANPA LUKA BAKAR', 1026900.00), +('L-2-32-0', 'PROSEDUR KECIL PEMINDAHAN KULIT TANPA LUKA BAKAR', 844100.00), +('L-2-41-0', 'PROSEDUR BEDAH PLASTIK', 2011400.00), +('L-2-42-0', 'PROSEDUR LAIN-LAIN PADA KULIT DAN JARINGAN BAWAH KULIT', 619800.00), +('L-2-51-0', 'PROSEDUR PENGANGKATAN PAYUDARA', 2615200.00), +('L-2-52-0', 'PROSEDUR BESAR PADA PAYUDARA TANPA PENGANGKATAN PAYUDARA', 1965200.00), +('L-2-53-0', 'PROSEDUR KECIL PADA PAYUDARA TANPA PENGANGKATAN PAYUDARA', 1007900.00), +('L-3-10-0', 'PROSEDUR KECIL LAIN-LAIN PADA PAYUDARA', 696400.00), +('L-3-11-0', 'PROSEDUR BESAR PADA KULIT', 570100.00), +('L-3-12-0', 'PROSEDUR KECIL PADA KULIT', 442400.00), +('M-2-10-0', 'PROSEDUR REKONTRUKSI TULANG KRANIAL DAN WAJAH', 2141200.00), +('M-2-21-0', 'PROSEDUR BESAR PADA SENDI PANGGUL DAN PAHA', 2353500.00), +('M-2-22-0', 'PROSEDUR KECIL PADA SENDI PANGGUL DAN PAHA', 501800.00), +('M-2-31-0', 'PROSEDUR BUNION', 1429500.00), +('M-2-32-0', 'PROSEDUR LAIN-LAIN PADA KAKI', 566200.00), +('M-2-41-0', 'PROSEDUR EKSISI, INSISI DAN ARTHROTOMI TULANG', 798600.00), +('M-2-42-0', 'PROSEDUR PEMINDAHAN ALAT IMPLAN', 557300.00), +('M-2-51-0', 'PROSEDUR BESAR PADA JARINGAN LUNAK', 1199900.00), +('M-2-52-0', 'PROSEDUR KECIL PADA JARINGAN LUNAK', 921000.00), +('M-2-61-0', 'PROSEDUR ARTROSKOPI', 1632700.00), +('M-2-62-0', 'PROSEDUR LAIN-LAIN PADA SENDI & TULANG', 560700.00), +('M-2-63-0', 'PROSEDUR INSISI, BIOPSI DAN GRAFT PADA TULANG', 1478700.00), +('M-2-64-0', 'PROSEDUR BESAR PADA TULANG KEPALA & WAJAH', 2238700.00), +('M-2-65-0', 'PROSEDUR KECIL PADA TULANG KEPALA & WAJAH', 477900.00), +('M-2-71-0', 'PROSEDUR BESAR PADA LUTUT & TUNGKAI BAWAH', 2387300.00), +('M-2-72-0', 'PROSEDUR KECIL PADA LUTUT & TUNGKAI BAWAH', 1293700.00), +('M-2-81-0', 'PROSEDUR BESAR PADA LENGAN, SIKU & BAHU', 2795700.00), +('M-2-82-0', 'PROSEDUR KECIL PADA LENGAN, SIKU & BAHU', 1411300.00), +('M-2-83-0', 'PROSEDUR BESAR PADA TANGAN & PERGELANGAN TANGAN', 1074700.00), +('M-2-84-0', 'PROSEDUR KECIL PADA TANGAN & PERGELANGAN TANGAN', 699900.00), +('M-3-10-0', 'PROSEDUR MANIPULATIVE OSTEOPATHIC', 165700.00), +('M-3-11-0', 'PROSEDUR DIAGNOSTIK DAN TERAPEUTIK MUSKULOSKELETAL', 621400.00), +('M-3-12-0', 'PROSEDUR BIOPSI SENDI DAN TRAKSI SKELETAL', 1404100.00), +('M-3-13-0', 'PROSEDUR REDUKSI FRAKTUR TERTUTUP', 728000.00), +('M-3-14-0', 'PROSEDUR REDUKSI FRAKTUR WAJAH TERTUTUP', 739100.00), +('M-3-15-0', 'PROSEDUR APLIKASI CASTS DAN SPLINTS', 485600.00), +('M-3-16-0', 'PROSEDUR THERAPI FISIK DAN PROSEDUR KECIL MUSKULOSKLETAL', 201000.00), +('M-3-17-0', 'PROSEDUR PEMASANGAN ALAT PROSTETIK', 426800.00), +('N-2-11-0', 'PROSEDUR BESAR PADA KANDUNG KEMIH', 6356400.00), +('N-2-12-0', 'PROSEDUR MEMBUAT BARU, MEREVISI DAN MEMINDAHKAN ALAT DIALISIS', 4483300.00), +('N-2-21-0', 'EXTRACORPOREAL SHOCKWAVE LITHOTRIPSY (ESWL) PADA SALURAN KEMIH', 6211300.00), +('N-2-22-0', 'PROSEDUR BESAR PADA GINJAL DAN URETER', 2378000.00), +('N-2-23-0', 'PROSEDUR SEDANG PADA GINJAL DAN URETER', 1540900.00), +('N-2-24-0', 'PROSEDUR KECIL PADA GINJAL DAN URETER', 1089800.00), +('N-2-31-0', 'PROSEDUR BESAR PADA KANDUNG KEMIH DAN URETHRA', 1365300.00), +('N-2-32-0', 'PROSEDUR KECIL PADA KANDUNG KEMIH DAN URETHRA', 815600.00), +('N-2-41-0', 'PROSEDUR BESAR PADA URETHRA DAN TRANSURETHRA', 1612800.00), +('N-2-42-0', 'PROSEDUR KECIL PADA URETHRA DAN TRANSURETHRA', 957600.00), +('N-3-10-0', 'PROSEDUR PADA GINJAL DAN URETER', 524700.00), +('N-3-11-0', 'PROSEDUR DIAGNOSTIK LAIN PADA STUDI SALURAN KEMIH', 783300.00), +('N-3-12-0', 'PROSEDUR CYSTOSCOPI & PROSEDUR KECIL ENDOSKOPI SALURAN KEMIH', 1085200.00), +('N-3-13-0', 'PROSEDUR BESAR ENDOSKOPI PADA SALURAN KEMIH', 1245400.00), +('N-3-14-0', 'PROSEDUR KECIL ENDOSKOPI PADA SALURAN KEMIH', 522800.00), +('N-3-15-0', 'PROSEDUR DIALISIS', 992300.00), +('O-7-10-0', 'PROSEDUR PERSALINAN DENGAN BEDAH CAESAR', 2665200.00), +('O-7-11-0', 'PERSALINAN VAGINAL DENGAN STERILISASI DAN ATAU PELEBARAN DAN KURETASE', 2388300.00), +('O-7-12-0', 'PROSEDUR PERSALINAN VAGINAL DENGAN PROSEDUR SELAIN STERILISASI DAN ATAU PELEBARAN DAN KURETASE', 2110400.00), +('O-7-13-0', 'PROSEDUR PERSALINAN MELALUI VAGINAL/JALAN LAHIR', 1601400.00), +('P-9-11-0', 'NEONATAL, BBL GROUP-2', 515900.00), +('P-9-12-0', 'NEONATAL, BBL GROUP-3', 499900.00), +('P-9-13-0', 'NEONATAL, BBL GROUP-4', 453200.00), +('P-9-14-0', 'NEONATAL, BBL GROUP-5 DENGAN ANOMALI MAYOR ATAU KONDISI HEREDITER', 432300.00), +('P-9-15-0', 'NEONATAL, BBL GROUP-5 DENGAN SINDROM ASPIRASI', 372400.00), +('P-9-16-0', 'NEONATAL, BBL GROUP-5 DENGAN KONGENITAL/INFEKSI PERINATAL', 423200.00), +('P-9-17-0', 'NEONATAL, BBL GROUP-5', 451300.00), +('Q-5-10-0', 'PENYALAHGUNAAN ZAT KIMIA AKUT', 488100.00), +('Q-5-11-0', 'PENYALAHGUNAAN ZAT KIMIA BUKAN AKUT', 359500.00), +('Q-5-12-0', 'GIGI', 318400.00), +('Q-5-13-0', 'MEDICAL CHECK-UP', 149400.00), +('Q-5-14-0', 'RONGENT (PLAIN FILM)', 197400.00), +('Q-5-15-0', 'ELEKTROKARDIOGRAM (ECG)', 100500.00), +('Q-5-16-0', 'VAKSINASI', 114800.00), +('Q-5-17-0', 'PASANG INFUS', 112600.00), +('Q-5-18-0', 'KONSULTASI ATAU PEMERIKSAAN LAIN-LAIN', 369200.00), +('Q-5-19-0', 'KONTAK PELAYANAN KESEHATAN LAIN-LAIN', 195000.00), +('Q-5-20-0', 'ABORSI MENGANCAM', 252200.00), +('Q-5-21-0', 'ABORSI', 276800.00), +('Q-5-22-0', 'PERSALINAN YANG SUKAR (FALSE LABOR)', 167200.00), +('Q-5-23-0', 'PEMERIKSAAN ANTEPARTUM', 178800.00), +('Q-5-24-0', 'PEMERIKSAAN POSTPARTUM', 113700.00), +('Q-5-25-0', 'GASTROINTESTINAL AKUT', 182200.00), +('Q-5-26-0', 'BRONKIAL AKUT', 231400.00), +('Q-5-27-0', 'SISTEM PERSARAFAN PUSAT AKUT', 173800.00), +('Q-5-28-0', 'KECEDERAAN SISTEM PERSARAFAN PUSAT', 282900.00), +('Q-5-29-0', 'GAGAL JANTUNG KONGESTIF DAN KONDISI JANTUNG LAIN-LAIN', 799600.00), +('Q-5-30-0', 'INFARK MIOKARD AKUT DAN ARITMIA', 927000.00), +('Q-5-31-0', 'FRAKTUR', 220600.00), +('Q-5-32-0', 'SALURAN KEMIH AKUT', 384800.00), +('Q-5-33-0', 'HEMATOLOGI AKUT', 218300.00), +('Q-5-34-0', 'INFEKSI VIRUS HIV', 263100.00), +('Q-5-35-0', 'INFEKSI AKUT', 647300.00), +('Q-5-36-0', 'KEKACAUAN METABOLIK AKUT', 554100.00), +('Q-5-37-0', 'CARDIAC ARREST, RESPIRATORY ARREST & SHOCK', 447400.00), +('Q-5-38-0', 'PARU AKUT', 377200.00), +('Q-5-39-0', 'KECEDERAAN BESAR PADA JARINGAN LUNAK', 207600.00), +('Q-5-40-0', 'INFEKSI SALURAN KEMIH AKUT', 176800.00), +('Q-5-41-0', 'PENYAKIT AKUT BESAR LAIN-LAIN', 444100.00), +('Q-5-42-0', 'PENYAKIT AKUT KECIL LAIN-LAIN', 332900.00), +('Q-5-43-0', 'PENYAKIT KRONIS BESAR LAIN-LAIN', 477500.00), +('Q-5-44-0', 'PENYAKIT KRONIS KECIL LAIN-LAIN', 377100.00), +('T-2-10-0', 'PEMULIHAN ALKOHOL, OBAT DAN ATAU TERAPI DETOKSIKASI', 217800.00), +('U-2-10-0', 'PROSEDUR BESAR PADA LARING', 3492100.00), +('U-2-11-0', 'PROSEDUR BESAR LAIN-LAIN PADA KEPALA & LEHER', 2873600.00), +('U-2-12-0', 'PROSEDUR PADA SINUS & MASTOID', 612400.00), +('U-2-13-0', 'PROSEDUR KELENJAR LUDAH', 821200.00), +('U-2-14-0', 'PROSEDUR OPERASI BIBIR SUMBING & LANGIT-LANGIT MULUT', 1614900.00), +('U-2-15-0', 'PROSEDUR OPERASI TONSIL & AMANDEL', 1561800.00), +('U-2-21-0', 'PROSEDUR BESAR PADA TELINGA, HIDUNG, MULUT DAN TENGGOROKAN', 1157600.00), +('U-2-22-0', 'PROSEDUR SEDANG PADA TELINGA, HIDUNG, MULUT DAN TENGGOROKAN', 598000.00), +('U-2-23-0', 'PROSEDUR PERBAIKAN HIDUNG (RHINOPLASTY)', 1863500.00), +('U-2-24-0', 'PROSEDUR KECIL PADA HIDUNG', 330600.00), +('U-2-25-0', 'PROSEDUR PADA TELINGA TENGAH', 486000.00), +('U-2-31-0', 'PROSEDUR BESAR PADA MULUT DAN LIDAH', 782500.00), +('U-2-32-0', 'PROSEDUR KECIL PADA MULUT DAN LIDAH', 488200.00), +('U-3-10-0', 'PROSEDUR SEDANG LAIN-LAIN PADA TELINGA, HIDUNG, MULUT DAN TENGGOROKAN', 493100.00), +('U-3-11-0', 'PROSEDUR KECIL LAIN-LAIN PADA TELINGA, HIDUNG, MULUT DAN TENGGOROKAN', 466700.00), +('U-3-12-0', 'PROSEDUR KAUTERISASI & PACKING PADA RONGGA HIDUNG', 276000.00), +('U-3-13-0', 'PROSEDUR DIAGNOSTIK LAIN-LAIN PADA TELINGA, HIDUNG, MULUT DAN TENGGOROKAN', 480300.00), +('U-3-14-0', 'PROSEDUR TES FUNGSI PADA TELINGA, HIDUNG, MULUT DAN TENGGOROKAN', 434800.00), +('U-3-15-0', 'PROSEDUR LAIN-LAIN PADA TELINGA, HIDUNG, MULUT DAN TENGGOROKAN', 385100.00), +('U-3-16-0', 'PROSEDUR PADA GIGI', 446500.00), +('V-2-10-0', 'PROSEDUR BESAR PADA PENGANGKATAN PROSTAT', 3605600.00), +('V-2-11-0', 'PROSEDUR PADA PENIS', 625700.00), +('V-2-12-0', 'PROSEDUR SEDANG PADA PROSTAT DAN SKROTUM', 1297600.00), +('V-2-13-0', 'PROSEDUR KECIL PADA PROSTAT DAN SKROTUM', 472000.00), +('V-2-14-0', 'PENGANGKATAN PROSTAT MELALUI TRANSURETHRAL', 834700.00), +('V-2-15-0', 'SIRKUMSISI/SUNAT', 543500.00), +('V-3-10-0', 'PROSEDUR STERILISASI PADA LAKI-LAKI', 478200.00), +('V-3-11-0', 'PROSEDUR DIAGNOSTIK DAN TERAPEUTIK PADA ALAT GENITAL LAKI-LAKI', 1165500.00), +('V-3-12-0', 'PROSEDUR LAIN PADA ALAT GENITAL LAKI-LAKI', 1154000.00), +('W-2-10-0', 'PROSEDUR ABORSI', 1583700.00), +('W-2-11-0', 'PROSEDUR PELEBARAN, KURETASE DALAM RAHIM & LEHER RAHIM', 1412900.00), +('W-2-12-0', 'PROSEDUR MEMBUKA TUBA YANG TERHALANG/TERGANGGU', 1586700.00), +('W-2-13-0', 'PROSEDUR ENDOSKOPI TUBA YANG TERHALANG/TERGANGGU', 1139900.00), +('W-2-21-0', 'PROSEDUR BESAR PADA FRAKTUR RONGGA PANGGUL TERBUKA', 2782800.00), +('W-2-22-0', 'PROSEDUR KECIL PADA FRAKTUR RONGGA PANGGUL TERBUKA', 671800.00), +('W-2-23-0', 'PROSEDUR LAPAROSKOPI GINEKOLOGI', 1501000.00), +('W-2-31-0', 'PROSEDUR PEMBUANGAN RAHIM MELALUI JALAN LAHIR', 3205800.00), +('W-2-32-0', 'PROSEDUR PERBAIKAN CYSTOCELE DAN VULVOVAGINAL INTERMEDIATE', 2965400.00), +('W-2-33-0', 'PROSEDUR KECIL VULVOVAGINAL', 1306400.00), +('W-2-34-0', 'PROSEDUR GINEKOLOGI LAIN-LAIN', 551700.00), +('W-3-10-0', 'PROSEDUR KECIL GINEKOLOGI & ENDOSKOPI', 1102000.00), +('W-3-11-0', 'PROSEDUR SEDANG GINEKOLOGI', 912000.00), +('W-3-12-0', 'PROSEDUR KECIL GINEKOLOGI', 422700.00), +('Z-3-10-0', 'PROSEDUR RADIOSURGICAL', 3313100.00), +('Z-3-11-0', 'EXTRACORPOREAL SHOCKWAVE LITHOTRIPSY (ESWL) SELAIN URINARI DAN SALURAN EMPEDU', 3205400.00), +('Z-3-12-0', 'PROSEDUR REHABILITASI', 241200.00), +('Z-3-13-0', 'PROSEDUR KECIL PELAYANAN PENUNJANG LAIN-LAIN', 207200.00), +('Z-3-14-0', 'DIAGNOSTIK TIDUR', 501400.00), +('Z-3-15-0', 'IMAGING NUKLIR JANTUNG', 615700.00), +('Z-3-16-0', 'PROSEDUR MAGNETIC RESONANCE IMAGING (MRI)', 1436700.00), +('Z-3-17-0', 'PENGOBATAN NUKLIR', 1646300.00), +('Z-3-18-0', 'CT-SCAN KEPALA', 1405100.00), +('Z-3-19-0', 'CT SCAN LAIN-LAIN', 1703300.00), +('Z-3-20-0', 'IMAGING KONTRAS SALURAN URINARI', 852100.00), +('Z-3-21-0', 'IMAGING KONTRAS PEMBULUH DARAH', 1264500.00), +('Z-3-22-0', 'IMAGING KONTRAS LAIN-LAIN', 819100.00), +('Z-3-23-0', 'PROSEDUR ULTRASOUND LAIN-LAIN', 655700.00), +('Z-3-24-0', 'PROSEDUR ULTRASOUND PEMBULUH DARAH', 790600.00), +('Z-3-25-0', 'PROSEDUR ULTRASOUND GINEKOLOGIK', 454900.00), +('Z-3-26-0', 'PROSEDUR BESAR RADIOGRAFI', 1075400.00), +('Z-3-27-0', 'PERAWATAN LUKA', 222200.00), +('Z-3-28-0', 'IMAGING PAYUDARA', 851100.00), +('Z-3-29-0', 'IMAGING LAIN-LAIN', 1810900.00), +('Z-3-30-0', 'FOTOTERAPI', 122700.00); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `pasien` +-- + +CREATE TABLE `pasien` ( + `ID_Pasien` int(11) NOT NULL, + `Nama_Pasien` varchar(100) NOT NULL, + `Jenis_Kelamin` enum('Laki-laki','Perempuan') NOT NULL, + `Usia` int(11) DEFAULT NULL, + `Ruangan` varchar(100) DEFAULT NULL, + `Kelas` enum('1','2','3') DEFAULT NULL +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; + +-- +-- Dumping data for table `pasien` +-- + +INSERT INTO `pasien` (`ID_Pasien`, `Nama_Pasien`, `Jenis_Kelamin`, `Usia`, `Ruangan`, `Kelas`) VALUES +(1, 'mahdi Jamaludin', 'Laki-laki', 21, 'R. Nusa Dua', '2'), +(2, 'yeston', 'Laki-laki', 15, 'R. Gili Trawangan', '3'), +(3, 'rocket', 'Laki-laki', 15, 'R. Gili Trawangan', '1'), +(4, 'Angger', 'Laki-laki', 55, 'R. Gili Trawangan', '3'), +(5, 'hartono', 'Laki-laki', 23, 'R. Gili Trawangan', '1'), +(6, 'jamal', 'Laki-laki', 23, 'R. Gili Trawangan', '1'), +(11, 'sabiru', 'Laki-laki', 18, 'R. Nusa Dua', '1'), +(12, 'samerah', 'Laki-laki', 14, 'R. Parangtritis', '3'), +(13, 'sujono binti sujii', '', 26, 'Ruang Tondano', '3'), +(14, 'mr x', '', 50, 'R. Gili Trawangan', '1'), +(15, 'mr y', '', 62, 'R. HCU Ciliwung', '1'), +(16, 'mr a', '', 35, 'R. HCU Mahakam', '1'), +(17, 'membran racing', 'Laki-laki', 26, 'R. HCU Ciliwung', '1'), +(18, 'mr z', 'Perempuan', 32, 'R. HCU Brantas', '3'), +(19, 'mamanracing', 'Laki-laki', 25, 'Ruang Rinjani', '3'), +(20, 'kurama', 'Laki-laki', 29, 'Ruang Kerinci', '3'), +(21, 'yusuf', 'Laki-laki', 31, 'R. Nusa Dua', '3'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `ruangan` +-- + +CREATE TABLE `ruangan` ( + `ID_Ruangan` int(11) NOT NULL, + `Jenis_Ruangan` varchar(100) DEFAULT NULL, + `Nama_Ruangan` varchar(100) DEFAULT NULL, + `keterangan` varchar(100) DEFAULT NULL, + `kategori_ruangan` varchar(100) DEFAULT NULL +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; + +-- +-- Dumping data for table `ruangan` +-- + +INSERT INTO `ruangan` (`ID_Ruangan`, `Jenis_Ruangan`, `Nama_Ruangan`, `keterangan`, `kategori_ruangan`) VALUES +(2, 'Rawat Inap Kelas I', 'R. Gili Trawangan', 'Pasien psikiatri', 'IRNA 1Rawat Inap I (Penyakit Dalam)'), +(3, 'Rawat Inap Kelas I', 'R. Nusa Dua', 'Ruang perawatan L/P raber', 'IRNA 1Rawat Inap I (Penyakit Dalam)'), +(4, 'Rawat Inap Kelas II', 'R. Gili Trawangan', 'Pasien psikiatri', 'IRNA 1Rawat Inap I (Penyakit Dalam)'), +(5, 'Rawat Inap Kelas II', 'R. Bunaken & R. Jimbaran', 'Ruang perawatan L/P raber', 'IRNA 1Rawat Inap I (Penyakit Dalam)'), +(6, 'Rawat Inap Kelas II', 'R. HCU Mahakam', 'Pasien Stroke', 'IRNA 1Rawat Inap I (Penyakit Dalam)'), +(7, 'Rawat Inap Kelas II', 'R. HCU Ciliwung', 'Pasien HCU (IPD) infeksi & non infeksi, medical bedah.', 'IRNA 1Rawat Inap I (Penyakit Dalam)'), +(8, 'Rawat Inap Kelas II', 'R. HCU Brantas', 'Pasien HCU (Paru) TB dan Non TB', 'IRNA 1Rawat Inap I (Penyakit Dalam)'), +(9, 'Rawat Inap Kelas II', 'R. HCU Cisadane', 'HCU Bedah L/P', 'IRNA 1Rawat Inap I (Penyakit Dalam)'), +(10, 'Rawat Inap Kelas III', 'R. Bunaken & R. Losari', 'Ruang perawatan L/P raber', 'IRNA 1Rawat Inap I (Penyakit Dalam)'), +(11, 'Rawat Inap Kelas III', 'R. Parangtritis', 'Pasien Perempuan raber', 'IRNA 1Rawat Inap I (Penyakit Dalam)'), +(12, 'Rawat Inap Kelas III', 'R. Pangandaran', 'Pasien Laki-laki raber', 'IRNA 1Rawat Inap I (Penyakit Dalam)'), +(13, 'Rawat Inap Kelas III', 'R. Gili Trawangan', 'Psikiatri (L/P) & medical bedah', 'IRNA 1Rawat Inap I (Penyakit Dalam)'), +(14, 'Tindakan', 'R. Apharesis', 'R. Apharesis', 'IRNA 1Rawat Inap I (Penyakit Dalam)'), +(15, 'Tindakan', 'R. FOB (OK Paru)', 'R. FOB (OK Paru)', 'IRNA 1Rawat Inap I (Penyakit Dalam)'), +(16, 'R. Endoscopy', 'R. Endoscopy', 'Endoscopy Diagnostik dan Endoscopy Therapy dengan GA.', 'IRNA 1Rawat Inap I (Penyakit Dalam)'), +(17, 'Tindakan', 'R. Neuro diagnostic', 'Ruang EEG, EMG, PSG, TCD', 'IRNA 1Rawat Inap I (Penyakit Dalam)'), +(18, 'Tindakan', 'R. Tindakan Non Bedah', 'Pasien yang membutuhkan USG', 'IRNA 1Rawat Inap I (Penyakit Dalam)'), +(19, 'Ruang Rawat Inap Barito', 'Ruang Rawat Inap Barito', '17 tempat tidur', 'Ruang Pelayanan IPJVT'), +(20, 'Ruang Rawat Inap Bengawan Solo', 'Ruang Rawat Inap Bengawan Solo', '10 tempat tidur', 'Ruang Pelayanan IPJVT'), +(21, 'Ruang VIP', 'Ruang VIP', '4 tempat tidur', 'Ruang Pelayanan IPJVT'), +(22, 'Ruang Cardiovascular Care Unit (CVCU)', 'Ruang Cardiovascular Care Unit (CVCU)', '13 tempat tidur', 'Ruang Pelayanan IPJVT'), +(23, 'Ruang Non Invasif (echocardiografi, holter, tilt table test, dupplex- vascular, dan plathysmogr', 'Ruang Non Invasif (echocardiografi, holter, tilt table test, dupplex- vascular, dan plathysmogr', 'Ruang Tindakan', 'Ruang Pelayanan IPJVT'), +(24, 'Ruang Rehabilitasi Jantung', 'Ruang Rehabilitasi Jantung', 'Ruang Tindakan', 'Ruang Pelayanan IPJVT'), +(25, 'Ruang Kateterisasi Jantung', 'Ruang Kateterisasi Jantung', 'Ruang Tindakan', 'Ruang Pelayanan IPJVT'), +(26, 'Ruang Rinjani', 'Ruang Rinjani', 'Ruang perawatan bedah anak laki-laki dan perempuan (Kelas I,II dan III)', 'IRNA 2-Instalasi Rawat Inap II (Bedah)'), +(27, 'Ruang Bromo', 'Ruang Bromo', 'Ruang perawatan Bedah lakiโ€“laki dan perempuan', 'IRNA 2-Instalasi Rawat Inap II (Bedah)'), +(28, 'Ruang HCU Kawi', 'Ruang HCU Kawi', 'Ruang perawatan HCU luka bakar (Combustio)', 'IRNA 2-Instalasi Rawat Inap II (Bedah)'), +(29, 'Ruang Kerinci', 'Ruang Kerinci', 'Ruang perawatan lakiโ€“laki dan perempuan', 'IRNA 2-Instalasi Rawat Inap II (Bedah)'), +(30, 'Ruang Galunggung', 'Ruang Galunggung', 'Ruang perawatan lakiโ€“laki dan perempuan', 'IRNA 2-Instalasi Rawat Inap II (Bedah)'), +(31, 'Ruang Semeru', 'Ruang Semeru', 'Ruang perawatan kemoterapi terpadu kelas III lakiโ€“laki dan perempuan.', 'IRNA 2-Instalasi Rawat Inap II (Bedah)'), +(32, 'Ruang Tindakan', 'Ruang Tindakan', '๏‚ง Ruang Tindakan THT, ruang tindakan lokal anestesi. ๏‚ง Ruang tindakan Mata. ๏‚ง Ruang tindakan E', 'IRNA 2-Instalasi Rawat Inap II (Bedah)'), +(33, 'Tindakan', 'Tindakan', 'Ruang tindakan untuk persalinan', 'IRNA 3-Instalasi Rawat Inap III (Obgyn)'), +(34, 'Kelas VIP, I, II, II', 'Kelas VIP, I, II, II', 'Untuk pelayanan onstetri, ginekologi, onkologi, dan rawat gabungan', 'IRNA 3-Instalasi Rawat Inap III (Obgyn)'), +(35, 'Kelas II', 'Kelas II', 'Untuk pelayanan onstetri, ginekologi, onkologi, dan rawat gabungan', 'IRNA 3-Instalasi Rawat Inap III (Obgyn)'), +(36, 'Kelas III', 'Kelas III', 'Spesifikasi pelayanan pasien kanker kandungan dan ginekologi', 'IRNA 3-Instalasi Rawat Inap III (Obgyn)'), +(37, 'Ruang Kelimutu', 'Ruang Kelimutu', 'Ruang perawatan anak dan kemoterapi', 'IRNA 4-Instalasi Rawat Inap IV (Anak)'), +(38, 'Ruang HCU Sarangan', 'Ruang HCU Sarangan', 'Ruang High Care Unit (HCU) Anak', 'IRNA 4-Instalasi Rawat Inap IV (Anak)'), +(39, 'Ruang Tondano', 'Ruang Tondano', 'Ruang perawatan anak dan kemoterapi', 'IRNA 4-Instalasi Rawat Inap IV (Anak)'), +(40, 'Ruang HCU Ranu Pani', 'Ruang HCU Ranu Pani', 'Ruang High Care Unit (HCU) perawatan neonatal', 'IRNA 4-Instalasi Rawat Inap IV (Anak)'), +(41, 'Ruang NICU Maninjau', 'Ruang NICU Maninjau', 'Ruang Intensif Care Unit (NICU) untuk Neonatal', 'IRNA 4-Instalasi Rawat Inap IV (Anak)'), +(42, 'Rawat Inap Kelas VIP/VVIP', 'Rawat Inap Kelas VIP/VVIP', 'Rawat Inap Kelas VIP/VVIP', 'Rawat Inap Gran Paviliun'), +(43, 'Rawat Inap Kelas Utama', 'Rawat Inap Kelas Utama', 'Rawat Inap Kelas Utama', 'Rawat Inap Gran Paviliun'), +(44, 'Ruang Bougenvill', 'Ruang Bougenvill', 'ruang rawat inap khusus airbone bertekanan negatif', 'Rawat inap Instalasi Pelayanan Infeksi Terpadu'), +(45, 'Ruang Dahlia', 'Ruang Dahlia', 'ruang rawat inap infeksi non airbone maupun non infeksi', 'Rawat inap Instalasi Pelayanan Infeksi Terpadu'), +(46, 'Ruang Mawar', 'Ruang Mawar', 'ruang rawat inap infeksi non airbone maupun non infeksi', 'Rawat inap Instalasi Pelayanan Infeksi Terpadu'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `tarif_rs` +-- + +CREATE TABLE `tarif_rs` ( + `ID_Tarif_RS` varchar(20) NOT NULL, + `Tindakan_RS` varchar(255) DEFAULT NULL, + `Tarif_RS` int(11) DEFAULT NULL, + `Kategori_RS` varchar(255) DEFAULT NULL +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; + +-- +-- Dumping data for table `tarif_rs` +-- + +INSERT INTO `tarif_rs` (`ID_Tarif_RS`, `Tindakan_RS`, `Tarif_RS`, `Kategori_RS`) VALUES +('DAR.001', 'PEMERIKSAAN', 80000, 'RAWAT DARURAT'), +('DAR.002', 'KONSULTASI', 70000, 'RAWAT DARURAT'), +('KFM.001', 'AMPHETHAMINE', 77000, 'PEMULASARAAN JENAZAH'), +('KFM.002', 'BARBITURATE', 77000, 'PEMULASARAAN JENAZAH'), +('KFM.003', 'BENZODIAZEPANES', 77000, 'PEMULASARAAN JENAZAH'), +('KFM.004', 'BERCAK DARAH BASAH', 139000, 'PEMULASARAAN JENAZAH'), +('KFM.005', 'BERCAK DARAH KERING', 139000, 'PEMULASARAAN JENAZAH'), +('KFM.006', 'BERCAK DARAH PAKAIAN', 139000, 'PEMULASARAAN JENAZAH'), +('KFM.007', 'BERCAK DARAH TEST BENZIDINE', 139000, 'PEMULASARAAN JENAZAH'), +('KFM.008', 'BERCAK DARAH TEST LMG ALDRIEN', 139000, 'PEMULASARAAN JENAZAH'), +('KFM.009', 'BERCAK DARAH TEST LUMINOL', 139000, 'PEMULASARAAN JENAZAH'), +('KFM.010', 'BERCAK DARAH TEST PADA KERTAS', 139000, 'PEMULASARAAN JENAZAH'), +('KFM.011', 'BERCAK DARAH TEST PADA BATU', 139000, 'PEMULASARAAN JENAZAH'), +('KFM.012', 'BERCAK DARAH TEST PADA KAPAS', 139000, 'PEMULASARAAN JENAZAH'), +('KFM.013', 'BERCAK DARAH TEST PADA KAYU', 139000, 'PEMULASARAAN JENAZAH'), +('KFM.014', 'BERCAK DARAH TEST PADA PAKAIAN / KAIN', 139000, 'PEMULASARAAN JENAZAH'), +('KFM.015', 'BERCAK DARAH TEST PADA SENJATA TAJAM', 139000, 'PEMULASARAAN JENAZAH'), +('KFM.016', 'BERCAK DARAH TEST PADA SENJATA TUMPUL (PALU)', 139000, 'PEMULASARAAN JENAZAH'), +('KFM.017', 'BERCAK DARAH TEST PADA TISSUE', 139000, 'PEMULASARAAN JENAZAH'), +('KFM.018', 'BERCAK DARAH TEST PHENOLPHITHALIN', 139000, 'PEMULASARAAN JENAZAH'), +('KFM.019', 'BERCAK DARAH TEST TAKAYAMA', 139000, 'PEMULASARAAN JENAZAH'), +('KFM.020', 'BERCAK DARAH TEST TEICHMANN', 139000, 'PEMULASARAAN JENAZAH'), +('KFM.021', 'COCAINE', 77000, 'PEMULASARAAN JENAZAH'), +('KFM.022', 'IDENTIFIKASI RAMBUT MIKROSKOPIS', 139000, 'PEMULASARAAN JENAZAH'), +('KFM.023', 'IDENTIFIKASI SISIK RAMBUT', 139000, 'PEMULASARAAN JENAZAH'), +('KFM.024', 'KETERANGAN BAP', 660000, 'PEMULASARAAN JENAZAH'), +('KFM.025', 'KONSERVASI JENAZAH ( PENGAWETAN JENAZAH )', 3466000, 'PEMULASARAAN JENAZAH'), +('KFM.026', 'KONSULTASI MEDIK', 264000, 'PEMULASARAAN JENAZAH'), +('KFM.027', 'METHAMPHETAMINE', 77000, 'PEMULASARAAN JENAZAH'), +('KFM.028', 'OPIUM / MORPHINE / MOP', 77000, 'PEMULASARAAN JENAZAH'), +('KFM.029', 'OTOPSI JENAZAH LUAR NEGERI', 1452000, 'PEMULASARAAN JENAZAH'), +('KFM.030', 'OTOPSI REPOT JENAZAH LUAR NEGERI', 1386000, 'PEMULASARAAN JENAZAH'), +('KFM.031', 'PEMERIKSAAN BARBITURATE', 35000, 'PEMULASARAAN JENAZAH'), +('KFM.032', 'PEMERIKSAAN FORENSIK KLINIK DAN PEMBUATAN VISUM ET REPERTUM', 462000, 'PEMULASARAAN JENAZAH'), +('KFM.033', 'PEMERIKSAAN JENAZAH DAN PEMBUATAN VISUM ET REPERTUM', 1003000, 'PEMULASARAAN JENAZAH'), +('KFM.034', 'PEMERIKSAAN NARKOBA TOKSIKOLOGI (5 ITEM)', 277000, 'PEMULASARAAN JENAZAH'), +('KFM.035', 'PEMERIKSAAN RACUN ALKOHOL SECARA KUALITATIF', 42000, 'PEMULASARAAN JENAZAH'), +('KFM.036', 'PEMERIKSAAN RACUN ALKOHOL SECARA KUANTITATIF', 55000, 'PEMULASARAAN JENAZAH'), +('KFM.037', 'PEMERIKSAAN RACUN ARSENIKUM', 35000, 'PEMULASARAAN JENAZAH'), +('KFM.038', 'PEMERIKSAAN RACUN CREOLIN', 35000, 'PEMULASARAAN JENAZAH'), +('KFM.039', 'PEMERIKSAAN RACUN CYANIDA', 42000, 'PEMULASARAAN JENAZAH'), +('KFM.040', 'PEMERIKSAAN RACUN FENOL', 35000, 'PEMULASARAAN JENAZAH'), +('KFM.041', 'PEMERIKSAAN RACUN IKAN TONGKOL', 42000, 'PEMULASARAAN JENAZAH'), +('KFM.042', 'PEMERIKSAAN RACUN INSEKTISIDA', 70000, 'PEMULASARAAN JENAZAH'), +('KFM.043', 'PEMERIKSAAN RACUN KARBONDIOKSIDA', 28000, 'PEMULASARAAN JENAZAH'), +('KFM.044', 'PEMERIKSAAN RACUN KARBONMONOKSIDA', 28000, 'PEMULASARAAN JENAZAH'), +('KFM.045', 'PEMERIKSAAN RACUN LOGAM BERAT', 35000, 'PEMULASARAAN JENAZAH'), +('KFM.046', 'PEMERIKSAAN RACUN MAKANAN', 42000, 'PEMULASARAAN JENAZAH'), +('KFM.047', 'PEMERIKSAAN RACUN MINYAK TANAH', 70000, 'PEMULASARAAN JENAZAH'), +('KFM.048', 'PEMERIKSAAN RACUN OBAT SALISILAT', 35000, 'PEMULASARAAN JENAZAH'), +('KFM.049', 'PEMERIKSAAN RACUN SINGKONG ATAU UBI-UBIAN', 42000, 'PEMULASARAAN JENAZAH'), +('KFM.050', 'PEMERIKSAAN TOKSIKOLOGI LAINNYA', 139000, 'PEMULASARAAN JENAZAH'), +('KFM.051', 'PENGAWETAN JENAZAH FORMULA', 6930000, 'PEMULASARAAN JENAZAH'), +('KFM.052', 'PENGAWETAN JENAZAH LUAR NEGERI', 4158000, 'PEMULASARAAN JENAZAH'), +('KFM.053', 'PENGAWETAN JENAZAH MENULAR', 6930000, 'PEMULASARAAN JENAZAH'), +('KFM.054', 'PENGGALIAN JENAZAH', 6930000, 'PEMULASARAAN JENAZAH'), +('KFM.055', 'PERAWATAN JENAZAH HIV / AIDS', 1016000, 'PEMULASARAAN JENAZAH'), +('KFM.056', 'PERAWATAN JENAZAH LUAR NEGERI', 218000, 'PEMULASARAAN JENAZAH'), +('KFM.057', 'PERAWATAN JENAZAH MENULAR DAN MENGKAFANI JENAZAH', 1320000, 'PEMULASARAAN JENAZAH'), +('KFM.058', 'PERAWATAN JENAZAH MENULAR, MENGKAFANI DENGAN PETI', 3168000, 'PEMULASARAAN JENAZAH'), +('KFM.059', 'PERAWATAN JENAZAH TIDAK MENULAR', 396000, 'PEMULASARAAN JENAZAH'), +('KFM.060', 'PERAWATAN JENAZAH TIDAK MENULAR DAN MENGKAFANI JENAZAH', 541000, 'PEMULASARAAN JENAZAH'), +('KFM.061', 'PENGAWETAN JENAZAH DENGAN KAMAR PENDINGIN', 88000, 'PEMULASARAAN JENAZAH'), +('KFM.062', 'TEST DNA', 6930000, 'PEMULASARAAN JENAZAH'), +('KFM.063', 'TEST APUNG DIATOMEA', 139000, 'PEMULASARAAN JENAZAH'), +('KFM.064', 'TEST APUNG GETAH PARU', 139000, 'PEMULASARAAN JENAZAH'), +('KFM.065', 'TEST CAIRAN ANALISA SWAB ANUS', 209000, 'PEMULASARAAN JENAZAH'), +('KFM.066', 'TEST CAIRAN ANALISA SPERMA BAHAN BERCAK PAKAIAN', 209000, 'PEMULASARAAN JENAZAH'), +('KFM.067', 'TEST CAIRAN ANALISA SPERMA BAHAN CAIRAN VAGINA', 209000, 'PEMULASARAAN JENAZAH'), +('KFM.068', 'TEST CAIRAN ANALISA SPERMA BAHAN RAMBUT', 209000, 'PEMULASARAAN JENAZAH'), +('KFM.069', 'TEST CAIRAN ANALISA SPERMA BAHAN RAMBUT', 209000, 'PEMULASARAAN JENAZAH'), +('KFM.070', 'TEST CAIRAN ANALISA SWAB VAGINA', 209000, 'PEMULASARAAN JENAZAH'), +('KFM.071', 'TEST GOLONGAN DARAH BAHAN BERCAK PAKAIAN', 139000, 'PEMULASARAAN JENAZAH'), +('KFM.072', 'TEST GOLONGAN DARAH BAHAN DARAH KERING', 139000, 'PEMULASARAAN JENAZAH'), +('KFM.073', 'TEST GOLONGAN DARAH BAHAN DARAH RUSAK', 139000, 'PEMULASARAAN JENAZAH'), +('KFM.074', 'TEST GOLONGAN DARAH BAHAN GIGI', 209000, 'PEMULASARAAN JENAZAH'), +('KFM.075', 'TEST GOLONGAN DARAH BAHAN KERINGAT', 209000, 'PEMULASARAAN JENAZAH'), +('KFM.076', 'TEST GOLONGAN DARAH BAHAN KUKU', 139000, 'PEMULASARAAN JENAZAH'), +('KFM.077', 'TEST GOLONGAN DARAH BAHAN RAMBUT', 139000, 'PEMULASARAAN JENAZAH'), +('KFM.078', 'TEST GOLONGAN DARAH BAHAN RAMBUT & KULIT KEPALA BAYI', 209000, 'PEMULASARAAN JENAZAH'), +('KFM.079', 'TEST GOLONGAN DARAH BAHAN SALIVA', 209000, 'PEMULASARAAN JENAZAH'), +('KFM.080', 'TEST GOLONGAN DARAH BAHAN SPERMATOZOA', 209000, 'PEMULASARAAN JENAZAH'), +('KFM.081', 'TEST GOLONGAN DARAH BAHAN TULANG DADA', 139000, 'PEMULASARAAN JENAZAH'), +('KFM.082', 'TEST GOLONGAN DARAH BAHAN TULANG IGA', 139000, 'PEMULASARAAN JENAZAH'), +('KFM.083', 'TEST GOLONGAN DARAH BAHAN TULANG KERANGKA', 139000, 'PEMULASARAAN JENAZAH'), +('KFM.084', 'TEST GOLONGAN DARAH BAHAN TULANG SELANGKA', 139000, 'PEMULASARAAN JENAZAH'), +('KFM.085', 'TEST GOLONGAN DARAH ABO', 12000, 'PEMULASARAAN JENAZAH'), +('KFM.086', 'TEST GOLONGAN DARAH RHESUS', 12000, 'PEMULASARAAN JENAZAH'), +('KFM.087', 'TEST MIKROBIOLOGI (DAHAK)', 139000, 'PEMULASARAAN JENAZAH'), +('KFM.088', 'TEST MIKROBIOLOGI (LAINNYA)', 139000, 'PEMULASARAAN JENAZAH'), +('KFM.089', 'TEST MIKROBIOLOGI (SWAB VAGINA) / ANALISA SPERMATOZOA', 139000, 'PEMULASARAAN JENAZAH'), +('KFM.090', 'TEST PARASITOLOGI (TELUR, LARVA, LALAT FILARIA TEST)', 174000, 'PEMULASARAAN JENAZAH'), +('KFM.091', 'TEST PRESIPITAN', 173000, 'PEMULASARAAN JENAZAH'), +('KFM.092', 'THC / CANNABINOID', 77000, 'PEMULASARAAN JENAZAH'), +('KFM.093', 'PENGAWETAN ORGAN DENGAN KAMAR PENDINGIN', 42000, 'PEMULASARAAN JENAZAH'), +('KODE', 'URAIAN', 0, 'TINDAKAN OPERATIF'), +('R.AKO.001', 'JASA AKOMODASI - KELAS 3', 150000, 'RAWAT INAP'), +('R.AKO.002', 'JASA AKOMODASI - KELAS 2', 200000, 'RAWAT INAP'), +('R.AKO.003', 'JASA AKOMODASI - KELAS 1', 250000, 'RAWAT INAP'), +('R.AKO.004', 'JASA AKOMODASI BAYI - KELAS 3 (RAWAT GABUNG)', 75000, 'RAWAT INAP'), +('R.AKO.005', 'JASA AKOMODASI BAYI - KELAS 2 (RAWAT GABUNG)', 100000, 'RAWAT INAP'), +('R.AKO.006', 'JASA AKOMODASI BAYI - KELAS 1 (RAWAT GABUNG)', 125000, 'RAWAT INAP'), +('R.DRH.001', 'BLOOD TAP (PHLEBOTOMI)', 95000, 'PELAYANAN DARAH'), +('R.DRH.002', 'DIREK COOBS TEST', 86000, 'PELAYANAN DARAH'), +('R.DRH.003', 'GOLONGAN DARAH ABO', 23000, 'PELAYANAN DARAH'), +('R.DRH.004', 'GOLONGAN DARAH NEWBORN', 167000, 'PELAYANAN DARAH'), +('R.DRH.005', 'GOLONGAN DARAH RHESUS', 23000, 'PELAYANAN DARAH'), +('R.DRH.006', 'IDENTIFIKASI ANTIBODI GOLONGAN DARAH', 661000, 'PELAYANAN DARAH'), +('R.DRH.007', 'IMMEDIATE SPIN', 14000, 'PELAYANAN DARAH'), +('R.DRH.008', 'KOMPONEN DARAH', 436000, 'PELAYANAN DARAH'), +('R.DRH.009', 'KOMPONEN DARAH AFERESES', 4140000, 'PELAYANAN DARAH'), +('R.DRH.010', 'KOMPONEN DARAH PRC LEUKOREDUCED', 802000, 'PELAYANAN DARAH'), +('R.DRH.011', 'KOMPONEN DARAH PRC LEUKOREDUCED PEDIATRI', 403000, 'PELAYANAN DARAH'), +('R.DRH.012', 'PEMERIKSAAN PRA TRANSFUSI', 205000, 'PELAYANAN DARAH'), +('R.DRH.013', 'PRC LEUKODEPLETED', 926000, 'PELAYANAN DARAH'), +('R.DRH.014', 'SKRINING ANTIBODI GOLONGAN DARAH PASIEN', 159000, 'PELAYANAN DARAH'), +('R.DRH.015', 'TES UJI SILANG SERASI', 98000, 'PELAYANAN DARAH'), +('R.DRH.016', 'WASHED ERYTHROCYTE 250 CC', 1484000, 'PELAYANAN DARAH'), +('R.DRH.017', 'JASA KONSULTASI', 100000, 'PELAYANAN DARAH'), +('R.FAR.0001', 'ASUHAN KEFARMASIAN SELAMA PERAWATAN - RAWAT INAP', 150000, 'PELAYANAN FARMASI'), +('R.FAR.0002', 'KONSELING FARMASI - RAWAT JALAN', 35000, 'PELAYANAN FARMASI'), +('R.FAR.0003', 'PRODUKSI STERIL DAN NON STERIL', 250000, 'PELAYANAN FARMASI'), +('R.FAR.0004', 'REKONSTITUSI SITOSTATIKA', 25000, 'PELAYANAN FARMASI'), +('R.FAR.0005', 'REPACKING (KEMAS ULANG) SEDIAAN INJEKSI', 160000, 'PELAYANAN FARMASI'), +('R.GZ.0001', 'ASUHAN GIZI SELAMA PERAWATAN - RAWAT INAP', 150000, 'PELAYANAN GIZI'), +('R.GZ.0002', 'KONSELING GIZI - RAWAT JALAN', 35000, 'PELAYANAN GIZI'), +('R.JAL.001', 'PEMERIKSAAN', 50000, 'RAWAT JALAN'), +('R.JAL.002', 'KONSULTASI', 40000, 'RAWAT JALAN'), +('R.KSL.001', 'JASA KONSULTASI - REGULER', 100000, 'RAWAT INAP'), +('R.LMK.001', 'BIAKAN AEROB + UJI KEPEKAAN (AUTOMATIC)', 362000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.002', 'BIAKAN AEROB SPECIMEN CAIRAN TUBUH (SELAIN DARAH)', 362000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.003', 'BIAKAN AEROB SPECIMEN DARAH (PAKET 2 BACTEC) + IDE', 478000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.004', 'BIAKAN AEROB SPECIMEN FECES + UJI KEPEKAAN (OTOMATIS)', 315000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.005', 'BIAKAN AEROB SPECIMEN PUS + UJI KEPEKAAN (OTOMATIS)', 362000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.006', 'BIAKAN AEROB SPECIMEN SPUTUM NON SPESIFIK + UJI KE', 362000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.007', 'BIAKAN AEROB SPECIMEN SWAB + UJI KEPEKAAN (OTOMATIS)', 362000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.008', 'BIAKAN AEROB SPECIMEN URINE + UJI KEPEKAAN (OTOMATIS)', 362000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.009', 'BIAKAN KHUSUS C DIPHTERIAE', 137000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.010', 'BIAKAN KHUSUS H.INFLUENZAE', 274000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.011', 'BIAKAN KHUSUS H.PYLORI', 315000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.012', 'BIAKAN KHUSUS JAMUR', 137000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.013', 'BIAKAN KHUSUS LEPTOSPIRA', 137000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.014', 'BIAKAN KHUSUS MYCOBACTERIUM + UJI KEPEKAAN (KONVEN', 274000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.015', 'BIAKAN KHUSUS MYCOBACTERIUM + UJI KEPEKAAN (MGIT)', 315000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.016', 'BIAKAN KHUSUS N. GO', 274000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.017', 'BIOMOLEKULER CHLAMYDIA', 274000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.018', 'BIOMOLEKULER CYTOMEGALOVIRUS', 1045000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.019', 'BIOMOLEKULER HCV (GENOTYPING)', 1045000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.020', 'BIOMOLEKULER HCV (KUALITATIF)', 660000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.021', 'BIOMOLEKULER HCV (KUANTITATIF)', 1463000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.022', 'BIOMOLEKULER HIV KUANTITATIF', 1045000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.023', 'BIOMOLEKULER HUMAN PAPILOMAVIRUS (KUALITATIF)', 660000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.024', 'BIOMOLEKULER HUMAN PAPILOMAVIRUS (KUANTITATIF)', 1463000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.025', 'BIOMOLEKULER M. TBC', 362000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.026', 'BIOMOLEKULER MOTT (MYCOBACTERIUM OTHER THAN TUBERC', 315000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.027', 'BTA CAIRAN ASCITES', 219000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.028', 'BTA CAIRAN CAPD', 219000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.029', 'BTA CAIRAN DRAIN', 219000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.030', 'BTA CAIRAN PERICARD', 219000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.031', 'BTA CAIRAN PERITONEUM', 219000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.032', 'BTA CAIRAN PLEURA', 219000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.033', 'BTA CAIRAN SENDI', 219000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.034', 'BTA FECES', 219000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.035', 'BTA PUS', 219000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.036', 'CCI', 219000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.037', 'KULTUR ANAEROB', 792000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.038', 'Kultur anaerob +AST', 792000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.039', 'KULTUR BTA TANPA UJI RESISTENSI', 274000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.040', 'KULTUR CAIRAN CAPD', 416000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.041', 'KULTUR CAIRAN CAPD +AST', 416000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.042', 'KULTUR CAIRAN DRAIN', 416000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.043', 'KULTUR CAIRAN OTAK & UJI KEPEKAAN AB', 416000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.044', 'KULTUR CAIRAN PERICARDIUM & UJI KEPEKAAN AB', 416000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.045', 'KULTUR CAIRAN PERITONEUM & UJI KEPEKAAN AB', 416000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.046', 'KULTUR CAIRAN PLEURA & UJI KEPEKAAN AB', 416000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.047', 'KULTUR CAIRAN SENDI & UJI KEPEKAAN AB', 416000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.048', 'KULTUR CAIRAN STERIL LAIN', 416000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.049', 'KULTUR DARAH AEROB & UJI KEPEKAAN AB', 550000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.050', 'Kultur Darah Anaerob', 550000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.051', 'Kultur Darah Jamur', 550000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.052', 'KULTUR DIFTERI TANPA UJI RESISTENSI', 219000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.053', 'KULTUR FESES AEROB & UJI KEPEKAAN AB', 416000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.054', 'Kultur Helicobacter pylori + AST', 416000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.055', 'KULTUR IDENTIFIKASI TANPA TES SENSITIFITAS ANTIBIOTIK', 871000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.056', 'KULTUR JAMUR CAIRAN ASCITES', 478000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.057', 'KULTUR JAMUR CAIRAN DRAIN', 478000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.058', 'KULTUR JAMUR CAIRAN OTAK', 478000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.059', 'KULTUR JAMUR CAIRAN PERITONEUM', 478000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.060', 'KULTUR JAMUR CAIRAN PLEURA', 478000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.061', 'KULTUR JAMUR CAIRAN SENDI', 478000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.062', 'KULTUR JAMUR CAPD', 478000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.063', 'KULTUR JAMUR PUS', 478000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.064', 'KULTUR JAMUR SPUTUM', 478000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.065', 'KULTUR JAMUR SWAB', 478000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.066', 'KULTUR JAMUR URINE', 478000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.067', 'KULTUR JAMUR YEAST DAN UJI SENSITIVITAS ANTI JAMUR', 478000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.068', 'KULTUR Neisseria gonorrhoeae + AST', 416000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.069', 'KULTUR PUS AEROB & UJI KEPEKAAN AB', 416000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.070', 'KULTUR SPUTUM AEROB NON SPESIFIK & UJI KEPEKAAN AB', 416000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.071', 'KULTUR SWAB HIDUNG & UJI KEPEKAAN AB', 416000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.072', 'KULTUR SWAB MATA & UJI KEPEKAAN AB', 416000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.073', 'KULTUR SWAB TELINGA & UJI KEPEKAAN AB', 416000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.074', 'KULTUR SWAB TENGGOROK & UJI KEPEKAAN AB', 416000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.075', 'KULTUR SWAB VAGINA & UJI KEPEKAAN AB', 416000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.076', 'KULTUR TB DENGAN METODE MGIT TANPA ADA UJI KEPEKAAN', 550000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.077', 'KULTUR URINE AEROB & UJI KEPEKAAN AB', 416000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.078', 'Negative staining', 478000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.079', 'PEMERIKSAAN BTA CAIRAN OTAK', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.080', 'PEMERIKSAAN BTA CAIRAN TUBUH', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.081', 'PEMERIKSAAN BTA LEPRA HIDUNG', 137000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.082', 'PEMERIKSAAN BTA LEPRA KEROKAN KULIT', 137000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.083', 'PEMERIKSAAN BTA REITZ SERUM LEPRA TELINGA', 137000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.084', 'PEMERIKSAAN BTA SPS', 72000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.085', 'PEMERIKSAAN BTA SPUTUM', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.086', 'PEMERIKSAAN BTA URINE', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.087', 'PEMERIKSAAN CHLAMYDIA TRACHOMATIS Ag', 274000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.088', 'PEMERIKSAAN CRYPTOCOCCUS Ag', 315000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.089', 'PEMERIKSAAN DIFTERI NEISSER', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.090', 'PEMERIKSAAN GENE EXPERT', 871000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.091', 'PEMERIKSAAN INFLUENZA A & B VIRUS Ag', 478000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.092', 'PEMERIKSAAN JAMUR CAIRAN OTAK', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.093', 'PEMERIKSAAN JAMUR CAIRAN PERICADIUM', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.094', 'PEMERIKSAAN JAMUR CAIRAN PERITONEUM', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.095', 'PEMERIKSAAN JAMUR CAIRAN PLEURA', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.096', 'PEMERIKSAAN JAMUR CAIRAN SENDI', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.097', 'PEMERIKSAAN JAMUR DARAH', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.098', 'PEMERIKSAAN JAMUR KEROKAN KULIT', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.099', 'PEMERIKSAAN JAMUR PUS', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.100', 'PEMERIKSAAN JAMUR SPUTUM', 72000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.101', 'PEMERIKSAAN LEGIONELLA Ig G', 274000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.102', 'PEMERIKSAAN LEGIONELLA Ig M', 274000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.103', 'PEMERIKSAAN LEPTOSPIRA Ig G', 219000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.104', 'PEMERIKSAAN LEPTOSPIRA Ig M', 219000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.105', 'PEMERIKSAAN MIKROSKOP FLUORESCENT CHLAMYDIA TRACHO', 416000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.106', 'PEMERIKSAAN MIKROSKOP FLUORESCENT CMV', 550000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.107', 'PEMERIKSAAN MIKROSKOP FLUORESCENT H.PYLOR', 362000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.108', 'PEMERIKSAAN MIKROSKOP FLUORESCENT LEGIONELA', 416000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.109', 'PEMERIKSAAN MIKROSKOP FLUORESCENT STREPTOCOCCUS PN', 550000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.110', 'PEMERIKSAAN ROTAVIRUS Ag', 315000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.111', 'PEMERIKSAAN VAGINOSIS BAKTERIALIS (CLUE CELLS)', 72000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.112', 'PEMERIKSAAN VIRAL LOAD HIV', 478000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.113', 'PENGAMBILAN DARAH VENA', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.114', 'PENGAMBILAN SAMPEL USAP NASOFARING', 137000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.115', 'PENGAMBILAN SAMPEL USAP OROFARING', 137000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.116', 'PETA KUMAN >30 - 50 ISOLAT', 660000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.117', 'PETA KUMAN >50 ISOLAT', 792000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.118', 'PETA KUMAN 1 - 30 ISOLAT', 660000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.119', 'PEWARNAAN DLM GRAM', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.120', 'PEWARNAAN GIEMSA', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.121', 'PEWARNAAN GRAM CAIRAN ASCITES', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.122', 'PEWARNAAN GRAM CAIRAN CAPD', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.123', 'PEWARNAAN GRAM CAIRAN DRAIN', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.124', 'PEWARNAAN GRAM CAIRAN OTAK', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.125', 'PEWARNAAN GRAM CAIRAN PERICARD', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.126', 'PEWARNAAN GRAM CAIRAN PERITONEUM', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.127', 'PEWARNAAN GRAM CAIRAN SENDI', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.128', 'PEWARNAAN GRAM CAIRAN STERIL LAIN', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.129', 'PEWARNAAN GRAM DARAH', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.130', 'PEWARNAAN GRAM PUS', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.131', 'PEWARNAAN GRAM SPUTUM', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.132', 'PEWARNAAN GRAM SWAB HIDUNG', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.133', 'PEWARNAAN GRAM SWAB MATA', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.134', 'PEWARNAAN GRAM SWAB TELINGA', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.135', 'PEWARNAAN GRAM SWAB TENGGOROK', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.136', 'PEWARNAAN GRAM SWAB VAGINA', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.137', 'PEWARNAAN GRAM URINE', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.138', 'PEWARNAAN KOH', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.139', 'PEWARNAAN KOH CAIRAN DRAIN', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.140', 'PEWARNAAN KOH CAIRAN LAIN', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.141', 'PEWARNAAN KOH CAIRAN OTAK', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.142', 'PEWARNAAN KOH CAIRAN PERITONEUM', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.143', 'PEWARNAAN KOH CAIRAN PLEURA', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.144', 'PEWARNAAN KOH CAIRAN SENDI', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.145', 'PEWARNAAN KOH CAPD', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.146', 'PEWARNAAN KOH DARAH', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.147', 'PEWARNAAN KOH PUS', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.148', 'PEWARNAAN KOH SPUTUM', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.149', 'PEWARNAAN KOH SWAB', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.150', 'PEWARNAAN KOH URINE', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.151', 'PEWARNAAN NEISSER', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.152', 'pewarnaan PAS', 219000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.153', 'PEWARNAAN SPORA', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.154', 'PEWARNAAN ZN', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.155', 'Rapid urease Test Helicobacter pylori', 219000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.156', 'SKRINING MRSA', 219000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.157', 'TCM CLAMYDIA TRACHOMATIS DAN MEISSERIA GONORRAE BHP', 1045000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.158', 'TCM HBV NON PROGRAM', 792000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.159', 'TCM HBV VIRAL LOAD', 792000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.160', 'TCM HBV VL', 792000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.161', 'TCM HCV VIRAL LOAD NON PROGRAM', 871000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.162', 'TCM HCV VIRAL LOAD PROGRAM', 871000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.163', 'TCM HIV VIRAL LOAD PROGRAM', 871000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.164', 'TCM HIV VL non program', 871000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.165', 'TCM HPV (HUMAN PAPILLOMA VIRUS)', 871000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.166', 'TCM Sarscov2 + Influenza AB + RSV', 871000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.167', 'TCM TB PROGRAM', 871000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.168', 'UJI MIKROBIOLOGI RUANG OPERASI PER METER PER SEGI', 478000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.169', 'UJI POTENSI DESINFEKTAN / ANTISEPTIK PER SAMPEL', 478000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.170', 'JASA KONSULTASI', 100000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.171', 'TCM HCV VIRAL LOAD PROGRAM', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.172', 'TCM HIV VIRAL LOAD PROGRAM', 25000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.173', 'TCM TB PROGRAM', 25000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LPA.001', 'C1q-FITC ANTIBODY', 967000, 'TINDAKAN/PEMERIKSAAN PATOLOGI ANATOMI'), +('R.LPA.002', 'C3c-FITC ANTIBODY', 967000, 'TINDAKAN/PEMERIKSAAN PATOLOGI ANATOMI'), +('R.LPA.003', 'C4c-FITC ANTIBODY', 967000, 'TINDAKAN/PEMERIKSAAN PATOLOGI ANATOMI'), +('R.LPA.004', 'C4d-FITC ANTIBODY', 967000, 'TINDAKAN/PEMERIKSAAN PATOLOGI ANATOMI'), +('R.LPA.005', 'FIBRINOGEN', 967000, 'TINDAKAN/PEMERIKSAAN PATOLOGI ANATOMI'), +('R.LPA.006', 'IgA', 967000, 'TINDAKAN/PEMERIKSAAN PATOLOGI ANATOMI'), +('R.LPA.007', 'IgG', 967000, 'TINDAKAN/PEMERIKSAAN PATOLOGI ANATOMI'), +('R.LPA.008', 'IgM', 967000, 'TINDAKAN/PEMERIKSAAN PATOLOGI ANATOMI'), +('R.LPA.009', 'KAPPA LIGHT CHAIN', 967000, 'TINDAKAN/PEMERIKSAAN PATOLOGI ANATOMI'), +('R.LPA.010', 'KONSUL DISERTAI PEMBUATAN SLIDE', 170000, 'TINDAKAN/PEMERIKSAAN PATOLOGI ANATOMI'), +('R.LPA.011', 'LAMBDA LIGHT CHAIN', 967000, 'TINDAKAN/PEMERIKSAAN PATOLOGI ANATOMI'), +('R.LPA.012', 'SITOLOGI FNAB KIRIMAN SLIDE', 272000, 'TINDAKAN/PEMERIKSAAN PATOLOGI ANATOMI'), +('R.LPA.013', 'KONSULTASI / SECOND OPINION', 100000, 'TINDAKAN/PEMERIKSAAN PATOLOGI ANATOMI'), +('R.LPA.014', 'PEMERIKSAAN HISTOPATOLOGI', 900000, 'TINDAKAN/PEMERIKSAAN PATOLOGI ANATOMI'), +('R.LPA.015', 'PEMERIKSAAN SITOLOGI', 450000, 'TINDAKAN/PEMERIKSAAN PATOLOGI ANATOMI'), +('R.LPA.016', 'PEMERIKSAAN FNAB TANPA TUNTUNAN', 800000, 'TINDAKAN/PEMERIKSAAN PATOLOGI ANATOMI'), +('R.LPA.017', 'PEMERIKSAAN FNAB DENGAN TUNTUNAN (USG / CT SCAN)', 1000000, 'TINDAKAN/PEMERIKSAAN PATOLOGI ANATOMI'), +('R.LPA.018', 'PEMERIKSAAN FROZEN SECTION (VC) NON RADIKALITAS', 1000000, 'TINDAKAN/PEMERIKSAAN PATOLOGI ANATOMI'), +('R.LPA.019', 'HISTOKIMIA 1 REAGEN', 500000, 'TINDAKAN/PEMERIKSAAN PATOLOGI ANATOMI'), +('R.LPA.020', 'HISTOKIMIA 2 REAGEN', 1000000, 'TINDAKAN/PEMERIKSAAN PATOLOGI ANATOMI'), +('R.LPA.021', 'HISTOKIMIA 3 REAGEN', 1500000, 'TINDAKAN/PEMERIKSAAN PATOLOGI ANATOMI'), +('R.LPA.022', 'PEMERIKSAAN IMMUNOHISTOKIMIA 1 ANTIBODI', 750000, 'TINDAKAN/PEMERIKSAAN PATOLOGI ANATOMI'), +('R.LPA.023', 'PEMERIKSAAN IMMUNOHISTOKIMIA 2 ANTIBODI', 1500000, 'TINDAKAN/PEMERIKSAAN PATOLOGI ANATOMI'), +('R.LPA.024', 'PEMERIKSAAN IMMUNOHISTOKIMIA 3 ANTIBODI', 2250000, 'TINDAKAN/PEMERIKSAAN PATOLOGI ANATOMI'), +('R.LPA.025', 'PEMERIKSAAN IMMUNOHISTOKIMIA 4 ANTIBODI', 3000000, 'TINDAKAN/PEMERIKSAAN PATOLOGI ANATOMI'), +('R.LPA.026', 'PEMERIKSAAN IMMUNOHISTOKIMIA 5 ANTIBODI', 3750000, 'TINDAKAN/PEMERIKSAAN PATOLOGI ANATOMI'), +('R.LPA.027', 'PEMERIKSAAN EGFR', 1500000, 'TINDAKAN/PEMERIKSAAN PATOLOGI ANATOMI'), +('R.LPA.028', 'JASA KONSULTASI', 100000, 'TINDAKAN/PEMERIKSAAN PATOLOGI ANATOMI'), +('R.LPK.001', 'ACTIVATED CLOTING TIME (ACT)', 413000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.002', 'AFP', 197000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.003', 'ALBUMIN DARAH', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.004', 'ALKALI FOSFATASE', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.005', 'Amilase Pankreatik', 114000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.006', 'ANA TES ELISA', 359000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.007', 'ANALISA BATU', 137000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.008', 'ANALISA CAIRAN CAPD', 164000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.009', 'ANALISA CAIRAN PERITONEUM', 164000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.010', 'Analisa Cairan XT 4000 i', 79000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.011', 'ANALISA SPERMA', 628000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.012', 'ANALISIS CACING', 271000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.013', 'ANALISIS LARVA', 271000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.014', 'Anti Cardiolipin IgG', 359000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.015', 'Anti Cardiolipin IgM', 359000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.016', 'Anti CCP 3', 628000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.017', 'Anti DS DNA', 359000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.018', 'Anti HAV IgM Elecsys', 312000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.019', 'Anti HBc Elecsys', 312000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.020', 'ANTI HBC IgM', 546000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.022', 'Anti HCV', 312000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.023', 'Anti HCV Elecsys', 312000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.024', 'Anti HSV-1 IgG', 359000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.025', 'Anti HSV-1 IgM', 359000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.026', 'Anti HSV-2 IgG', 359000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.027', 'Anti HSV-2 IgM', 359000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.028', 'Anti MCV', 359000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.029', 'Anti SARS CoV-2 Kuantitatif (Post Vaksin)', 359000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.030', 'APTT', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.031', 'APTT CS 2100', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.032', 'Asam Laktat', 475000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.033', 'ASAM URAT', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.034', 'ASTO', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.035', 'bcr - ABL Quantitatif', 1836000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.036', 'BCR ABL Kualitatif', 1412000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.037', 'BENCE JONES PROTEIN URINE', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.038', 'BGA LACTAD', 236000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.039', 'BGA NOVA', 164000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.040', 'B-HCG', 197000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.041', 'BILIRUBIN DIREK', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.042', 'BILIRUBIN TOTAL', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.043', 'Billirubin Cairan Empedu', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.044', 'BJ PLASMA / SERUM', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.045', 'BMP', 546000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.046', 'C.K. NAC', 79000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.047', 'C.K.M.B.', 95000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.048', 'C3', 475000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.049', 'CA 125', 413000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.050', 'CA 125 Elecsys', 413000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.051', 'CA 15-3', 413000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.052', 'CA 15-3 Elecsys', 413000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.053', 'CA 19-9', 413000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.055', 'Cairan Asites', 197000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.056', 'Cairan L.C.S', 164000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.057', 'Cairan Perikardium', 197000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.058', 'Cairan Peritoneum', 197000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.059', 'Cairan Pleura', 197000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.060', 'Cairan Sendi', 197000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.061', 'Calcium Urine', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.062', 'CALSIUM SERUM', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.063', 'CALSIUM URINE', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.064', 'CAPD', 197000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.065', 'CBC 5 diff 4 EHD', 79000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.066', 'CBC Diff (EHD) XN', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.067', 'CBC XN', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.068', 'CCT', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.069', 'CD - 4', 359000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.070', 'CDC Cross Match (Limfosit T/B)', 2754000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.071', 'CDC CROSSMATCH', 1086000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.072', 'CEA', 197000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.073', 'CEA Elecsys', 236000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.074', 'CHOLESTEROL HDL DIREK', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.075', 'CHOLESTEROL TOTAL', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.076', 'CMV Ig G', 197000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.077', 'CMV Ig M', 197000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.078', 'CMV IgG Elecsys', 236000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.079', 'CMV IgM Elecsys', 236000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.080', 'COLLUM CHROMATO Hb A2', 475000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.081', 'Complement C4', 475000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.082', 'COOMB?S TEST', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.083', 'Cortisol', 271000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.084', 'C-peptide', 271000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.085', 'CREATININE DARAH', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.086', 'CREATININE URINE', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.087', 'CRP KUANTITATIF', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.088', 'D\'dimer', 546000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.089', 'Ds DNA IGG', 359000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.090', 'Ds DNA IGM', 359000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.091', 'Ds DNA Total', 359000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.092', 'EHD AEROSPRAY', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.093', 'Ekatraksi DNA', 475000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.094', 'Ekstraksi DNA & QPCR premix', 628000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.095', 'ELEKTROFORESE Hb', 475000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.096', 'ELEKTROFORESE PROTEIN', 312000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.097', 'ESBACH', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.098', 'Estradiol ( E2 )', 312000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.099', 'EVALUASI HAPUSAN DARAH', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.100', 'FAECES LENGKAP/ TINJA LENGKAP', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.101', 'Ferritin Elecsys', 197000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.102', 'Fibrinogen CS 2100', 197000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.103', 'FILARIA', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.104', 'Filaria Filter', 312000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.105', 'FOBT', 137000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.106', 'FOSFOR SERUM', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.107', 'Free PSA', 312000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.108', 'Free PSA Elecsys', 312000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.109', 'FREE T4 (MEIA)', 197000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.110', 'Fruktosamin', 95000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.111', 'FSH', 271000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.112', 'GAMMA-GT', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.113', 'Glocosa POCT', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.114', 'GLUKOSA URINE', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.115', 'GOL DARAH A, B, O', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.116', 'GULA DARAH', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.117', 'GULA DARAH 2', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.118', 'Gula Darah Sewaktu', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.119', 'Hb Cairan', 79000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.120', 'HbA 1 C', 236000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.121', 'Hbe Ag Elecsys', 312000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.122', 'HBe ANTIBODI (MEIA)', 312000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.123', 'HBe ANTIGEN (MEIA)', 312000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.124', 'HBs Ag Elecsys', 164000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.125', 'HBs ANTIBODI (MEIA)', 137000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.126', 'HBs ANTIGEN (MEIA)', 114000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.127', 'HBV DNA Kuantitatif', 1836000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.128', 'HCV RNA Kuantitatif', 2754000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.129', 'HIV DETERMINE', 114000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.130', 'HIV VIRAL LOAD', 754000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.131', 'HLA ANTIBODI', 10465000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.132', 'HLA ANTIBODI POST TRANSPLANT', 10465000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.133', 'HLA TYPING', 10465000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.134', 'IgA', 271000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.135', 'IgE', 164000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.136', 'Igm anti HAV', 312000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.137', 'IgM Salmonella', 312000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.138', 'IL - 6', 312000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.139', 'Inclusion Body', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.140', 'insulin', 197000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.141', 'IT rasio', 114000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.142', 'K+ Na+ Cl+ ION (ELEKTROLIT)', 114000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.143', 'KETON POCT', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.144', 'Kolesterol LDL Plus Vers 2', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.145', 'Kontrol PCR', 359000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.146', 'Kreatinin Cairan Drain', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.147', 'LAJU ENDAP DARAH (LED)', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.148', 'LDH', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.149', 'LE-CELL', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.150', 'LED Alifax', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.151', 'Leptospira', 114000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.152', 'LH', 236000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.153', 'Lipase', 137000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.154', 'Magnesium', 114000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.155', 'Malaria Hapusan ( tetes tipis )', 114000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.156', 'MALARIA ICT', 312000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.157', 'MALARIA TETES TEBAL', 114000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.158', 'MASA PEMBEKUAN', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.159', 'MASA PERDARAHAN', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.160', 'Mikroskopik Urine', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.161', 'MIRNA + EKSTRAKSI DNA PER SAMPEL PER PAKET 50', 2754000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.162', 'MIRNA PER MARKER PER PAKET 50', 1836000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.163', 'MIRNA PER MARKER PER SAMPEL', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.164', 'N S E', 754000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.165', 'NONNE', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.166', 'NS-1', 312000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.167', 'OCCULT BLOOD TEST/ BENZIDIN', 114000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.168', 'PANDY', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.169', 'Panel Auto Antobodi ANA', 1086000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.170', 'PANEL FLOWCYTOMETRI LEUKEMIA AKUT PAKET EGIL-MPAL', 1836000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.171', 'PANEL FLOWCYTOMETRI LEUKEMIA AKUT PAKET MYELOID', 1412000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.172', 'PANEL FLOWCYTOMETRI LEUKIMIA AKUT PAKET LIMFOID', 1412000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.173', 'PANEL HLA TYPING LOKUS SPESIFIK', 1836000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.174', 'PANEL LEUKIMIA AKUT FLOWCYTOMETRI', 1836000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.175', 'PANEL TES ALERGI', 1412000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.176', 'PCR KONVENSIONAL + EKSTRAKSI DNA PER MARKER PER\nPAKET 50', 2754000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.177', 'PCR KONVENSIONAL PER MARKER PER PAKET 50', 1086000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.178', 'PCR KONVENSIONAL PER MARKER PER SAMPEL', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.179', 'PCR REAL TIME + EKSTRAKSI DNA PER MARKER PER PAKET 50', 2754000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.180', 'PCR REAL TIME PER MARKER PER PAKET 50', 905000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.181', 'PCR REAL TIME PER MARKER PER SAMPEL', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.182', 'PCR SARS Cov-2 MANDIRI', 546000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.183', 'PEMERIKSAAN ELISA PER MARKER PER PAKET 48', 413000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.184', 'PEMERIKSAAN ELISA PER MARKER PER PAKET 96', 905000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.185', 'PEMERIKSAAN ELISA PER SAMPEL', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.186', 'PEMERIKSAAN HUMAN LEUCOCYTE ANTIBODY TYPING', 10465000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.187', 'PEMERIKSAAN PAKET SKRINNING TRANSPLANTASI GINJAL', 21977000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.188', 'PEMERIKSAAN PANEL REACTIVE ANTIBODY', 10465000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.189', 'PEMR. NARKOBA COCAINE', 114000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.190', 'PEMR. NARKOBA MARIYUANA', 114000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.191', 'PEMR. NARKOBA METAMPHETAMINE', 114000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.192', 'PEMR. NARKOBA MORPHINE', 114000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.193', 'Pemr.NARKOBA THC', 114000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.194', 'PENELITIAN DATA SEKUNDER PADA LIS PER PASIEN', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.195', 'PENGECATAN BESI', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.196', 'PENGECATAN GRAM', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.197', 'PENGECATAN WRIGHT', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.198', 'PENGECATATAN VVP', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.199', 'PENYIMPANAN SAMPEL BOX BESAR MAKS. UK. 30x30x10 CM\nPER BULAN', 164000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.200', 'PENYIMPANAN SAMPEL BOX KECIL MAKS. UK. 20x20x5 CM\nPER BULAN', 114000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.201', 'PHLEBOTOMI', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.202', 'Platelete Rich Plasma ( PRP )', 114000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.203', 'PLTF XN + CBC Diff (EHD) XN', 95000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.204', 'PPT CS 2100', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.205', 'Prealbumin', 271000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.206', 'PREPARASI SAMPEL (SERUM / PLASMA) PER SAMPEL', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.207', 'Pro BNP', 754000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.208', 'Procalcitonin', 754000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.209', 'Progesteron', 236000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.210', 'Prolaktin', 236000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.211', 'PRP', 79000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.212', 'PSA', 312000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.213', 'PSA Elecsys', 312000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.214', 'Q-PCR premix', 359000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.215', 'RA FAKTOR', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.216', 'RAPID ANTIGEN SARS Cov-2', 164000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.217', 'Rasio protein urine dan kreatinin urine', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.218', 'RETIKULOSIT', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.219', 'Retikulosit + CBC Diff (EHD) XN', 79000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.220', 'RETIKULOSIT XT', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.221', 'RHESUS', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.222', 'Rheumatoid Factor IgG', 359000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.223', 'Rheumatoid Factor IgM', 359000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.224', 'Rubella Ig G', 312000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.225', 'Rubella Ig M', 312000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.226', 'Rubella IgG Elecsys', 312000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.227', 'Rubella IgM Elecsys', 312000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.228', 'RUMATAN METHADON', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.229', 'S 100 B', 754000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.230', 'S.I.', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.231', 'SAAG', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.232', 'SCRENING TRANSPLANTASI GINJAL', 21977000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.233', 'SEDIMEN URINE', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.234', 'Sel sezary', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.235', 'Serum Elektrolit Urine', 114000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.236', 'Serum Mata', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.237', 'SGOT', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.238', 'SGPT', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.239', 'T.I.B.C.', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.240', 'T3 TOTAL (MEIA)', 164000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.241', 'TACROLIMUS', 905000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.242', 'TB IGRA', 905000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.243', 'TB-DOT', 236000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.244', 'Tes Alergi', 1086000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.245', 'TES KEHAMILAN', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.246', 'TES KEHAMILAN TITRASI', 95000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.247', 'TES SEROLOGI ANT1BODI SARS CoV-2 ECLIA', 164000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.248', 'Test ANA (Cytobead IF)', 754000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.249', 'Testosteron', 236000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.250', 'THROMBOELASTOGRAFI (TEG) TABUNG HEPARIN', 905000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.251', 'THROMBOELASTOGRAFI (TEG) TABUNG PLAIN', 754000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.252', 'TINJA LENGKAP (FL)', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.253', 'TOTAL PROTEIN', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.254', 'TOXOPLASMA IgG (MEIA)', 197000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.255', 'TOXOPLASMA IgM (MEIA)', 197000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.256', 'TPHA', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.257', 'TRIGLISERIDA', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.258', 'TROPONIN I', 413000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'); +INSERT INTO `tarif_rs` (`ID_Tarif_RS`, `Tindakan_RS`, `Tarif_RS`, `Kategori_RS`) VALUES +('R.LPK.259', 'TSH (MEIA)', 164000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.260', 'UACR KUANTITATIF', 236000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.261', 'UACR SEMI KUANTITATIF', 164000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.262', 'UJI KONFIRMATIF HIV', 312000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.263', 'UJI PERFORMA ALAT BESAR UKURAN WATT > 1000 VA', 905000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.264', 'UJI PERFORMA ALAT KECIL UKURAN WATT < 1000 VA', 905000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.265', 'UREUM DARAH', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.266', 'UREUM URINE', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.267', 'URINE LENGKAP', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.268', 'Urine Lengkap Clinitex Adventus', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.269', 'Urine Lengkap UX2000', 95000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.270', 'VDRL', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.271', 'vitamin D', 413000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.272', 'WIDAL', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.273', 'WPC + CBC Diff (EHD) XN', 95000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.274', 'ANALISA KROMOSOM', 2754000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.275', 'PCR URIN', 1836000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.276', '17-OHP', 1412000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.277', 'FAKTOR VIII', 1412000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.278', 'FAKTOR IX', 1412000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.279', 'ALDOSTERON', 2754000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.280', 'IGRA', 1412000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.281', 'ASAM AMINO', 2754000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.282', 'GAD 65', 2754000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.283', 'FENITOIN', 1412000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.284', 'FENOBARBITAL', 2754000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.285', 'PTH INTACT', 1086000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.286', 'LUPUS ANTIKOAGULAN', 905000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.287', 'GROWTH HORMON', 2754000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.288', 'G6PD', 475000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.289', 'TRAb', 905000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.290', 'Anti TPO', 1412000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.291', 'NMDAR', 4600000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.292', 'IMUNOHISTOTYPING', 1836000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.293', 'JAK 2 MUTATION', 1086000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.294', 'Vitamin B12', 1412000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.295', 'Vitamin B1', 905000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.296', 'Cd8', 413000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.297', 'Anca', 754000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.298', 'Igg', 905000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.299', 'Igm', 905000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.300', 'Kadar digoxin darah', 1836000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.301', 'VMA Urin', 197000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.302', 'AMH', 1086000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.303', 'SRY', 1836000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.304', 'JASA KONSULTASI', 100000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.305', 'ALBUMIN DARAH', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.306', 'Anti CCP 3', 546000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.307', 'Anti DS DNA', 312000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.308', 'ANTI HBC IgM', 475000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.309', 'Anti HBc IgM', 546000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.310', 'Anti HCV', 271000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.311', 'Anti HCV Elecsys', 271000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.312', 'Anti HSV-1 IgG', 312000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.313', 'Anti HSV-1 IgM', 312000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.314', 'Anti HSV-2 IgG', 312000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.315', 'Anti HSV-2 IgM', 312000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.316', 'ASAM URAT', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.317', 'BGA LACTAD', 359000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.318', 'BILIRUBIN DIREK', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.319', 'BILIRUBIN TOTAL', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.320', 'Billirubin Cairan Empedu', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.321', 'BMP', 1836000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.322', 'CA 125', 359000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.323', 'CA 125 Elecsys', 359000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.324', 'CA 15-3', 359000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.325', 'CA 15-3 Elecsys', 359000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.326', 'CA 19-9', 359000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.327', 'CA 19-9', 413000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.328', 'CBC 5 diff 4 EHD', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.329', 'CBC Diff (EHD) XN', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.330', 'CBC XN', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.331', 'CD - 4', 312000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.332', 'CEA Elecsys', 197000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.333', 'CHOLESTEROL HDL DIREK', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.334', 'CHOLESTEROL TOTAL', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.335', 'CMV IgG Elecsys', 197000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.336', 'CMV IgM Elecsys', 197000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.337', 'CREATININE DARAH', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.338', 'CREATININE URINE', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.339', 'D\'dimer', 475000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.340', 'Ds DNA IGG', 312000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.341', 'Ds DNA IGM', 312000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.342', 'Ds DNA Total', 312000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.343', 'ELEKTROFORESE Hb', 413000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.344', 'ELEKTROFORESE PROTEIN', 271000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.345', 'Estradiol ( E2 )', 271000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.346', 'EVALUASI HAPUSAN DARAH', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.347', 'Fibrinogen CS 2100', 164000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.348', 'FREE T4 (MEIA)', 164000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.349', 'FSH', 236000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.350', 'Glocosa POCT', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.351', 'GLUKOSA URINE', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.352', 'GOL DARAH A, B, O', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.353', 'GULA DARAH', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.354', 'GULA DARAH 2', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.355', 'Gula Darah Sewaktu', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.356', 'HbA 1 C', 197000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.357', 'Hbe Ag Elecsys', 271000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.358', 'HBe ANTIBODI (MEIA)', 271000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.359', 'HBe ANTIGEN (MEIA)', 271000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.360', 'IgA', 754000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.361', 'Igm anti HAV', 271000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.362', 'IgM Salmonella', 271000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.363', 'KETON POCT', 79000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.364', 'Kolesterol LDL Plus Vers 2', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.365', 'Kreatinin Cairan Drain', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.366', 'MALARIA ICT', 271000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.367', 'NS-1', 271000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.368', 'PCR SARS Cov-2 MANDIRI', 312000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.369', 'PEMERIKSAAN ELISA PER MARKER PER PAKET 48', 359000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.370', 'PEMERIKSAAN ELISA PER MARKER PER PAKET 96', 754000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.371', 'PEMR. NARKOBA COCAINE', 95000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.372', 'PEMR. NARKOBA MARIYUANA', 95000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.373', 'PEMR. NARKOBA METAMPHETAMINE', 95000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.374', 'PEMR. NARKOBA MORPHINE', 95000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.375', 'Pemr.NARKOBA THC', 95000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.376', 'PHLEBOTOMI', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.377', 'PLTF XN + CBC Diff (EHD) XN', 79000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.378', 'Pro BNP', 628000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.379', 'Procalcitonin', 628000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.380', 'PRP', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.381', 'PSA Elecsys', 271000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.382', 'RAPID ANTIGEN SARS Cov-2', 95000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.383', 'RHESUS', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.384', 'Rubella Ig G', 271000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.385', 'Rubella Ig M', 271000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.386', 'Rubella IgG Elecsys', 271000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.387', 'Rubella IgM Elecsys', 271000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.388', 'SGOT', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.389', 'SGPT', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.390', 'T3 TOTAL (MEIA)', 137000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.391', 'Test ANA (Cytobead IF)', 1086000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.392', 'TOTAL PROTEIN', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.393', 'TRIGLISERIDA', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.394', 'TROPONIN I', 359000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.395', 'TSH (MEIA)', 137000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.396', 'UREUM DARAH', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.397', 'UREUM URINE', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.398', 'URINE LENGKAP', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.399', 'VDRL', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.400', 'vitamin D', 359000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.401', 'ANALISA KROMOSOM', 3663000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.402', 'FENITOIN', 1836000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.403', 'G6PD', 546000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.404', 'NMDAR', 5359000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.405', 'IgM & Anti Dengue', 236000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.406', 'IgG Anti Dengue', 236000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.407', 'Magnesium Urin', 114000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.408', 'Syphilis', 197000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.409', 'Anti Tyroglubulin', 754000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.410', 'B2 Microglobulin', 1412000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.411', 'Renin Activity Plasma', 1836000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.412', 'Inhibator Faktor VIII', 1412000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.413', 'Faktor VII', 1836000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.414', 'Panel POCT', 905000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.415', 'BGA POCT iStat', 475000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.416', 'Amonia (NH3)', 1086000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.417', 'Tyroglobulin', 905000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.PAT.0001', 'PELAYANAN ADVOKASI DONOR TRANSPLANTASI', 8500000, 'TINDAKAN NON OPERATIF'), +('R.RDL.001', 'ABDOMEN 1', 85000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.002', 'ABDOMEN 2', 85000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.003', 'ABDOMEN 3 POSISI 1', 205000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.004', 'ABDOMEN 3 POSISI 2', 128000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.005', 'ANTEBRACHI 1 AP/LAT', 205000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.006', 'ANTEBRACHI 2 AP/LAT', 205000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.007', 'ARTERIOGRAFI PERIPER', 1021000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.008', 'ARTHROGRAFI', 1021000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.009', 'BACA ULANG FOTO CT SCAN ABDOMEN', 503000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.010', 'BACA ULANG FOTO CT SCAN KEPALA', 359000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.011', 'BACA ULANG FOTO CT SCAN THORAX', 359000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.012', 'BACA ULANG FOTO THORAX', 65000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.013', 'BACA ULANG MRI ABDOMEN', 503000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.014', 'BACA ULANG MRI KEPALA', 359000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.015', 'BASIS CRANI', 65000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.016', 'BONE MINERAL DENSITOMETRI (BMD)', 1021000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.017', 'BRAIN TUMOR SCREENING (MINI MRI)', 503000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.018', 'C-ARM < 3 JAM', 359000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.019', 'C-ARM > 3 JAM', 503000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.020', 'CAUDOGRAFI', 1429000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.021', 'CERVICAL 1 4 X', 128000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.022', 'CERVICAL 2 4 X', 128000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.023', 'CERVICAL AP/LAT 1', 128000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.024', 'CERVICAL AP/LAT 2', 85000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.025', 'CETAK ULANG FOTO', 65000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.026', 'CETAK ULANG FOTO CT SCAN ABDOMEN', 359000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.027', 'CETAK ULANG FOTO CT SCAN KEPALA', 128000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.028', 'CETAK ULANG FOTO CT SCAN THORAX', 205000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.029', 'CETAK ULANG FOTO MRI ABDOMEN DENGAN KONTRAS', 654000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.030', 'CETAK ULANG FOTO MRI DENGAN KONTRAS', 503000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.031', 'CETAK ULANG FOTO MRI KEPALA', 359000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.032', 'CHOLECYSTOGRAFI', 1021000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.033', 'CLAVICULA 1', 85000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.034', 'CLAVICULA 2', 65000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.035', 'COLON INLOOP 1', 1021000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.036', 'COLON INLOOP 2', 654000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.037', 'COR ANALYSE', 785000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.038', 'CRURIS 1 AP/LAT', 205000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.039', 'CRURIS 2 AP/LAT', 205000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.040', 'CT SCAN ABDOMEN', 1858000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.041', 'CT SCAN ABDOMEN 2 FASE DENGAN KONTRAS', 3055000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.042', 'CT SCAN ABDOMEN 3 FASE DENGAN KONTRAS', 3697000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.043', 'CT SCAN AGIOGRAFI DENGAN KONTRAS', 3361000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.044', 'CT SCAN CA SCORING', 1429000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.045', 'CT SCAN EXTREMITAS', 1429000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.046', 'CT SCAN EXTREMITAS DENGAN KONTRAS', 1858000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.047', 'CT SCAN EXTREMITAS DENGAN REKONSTRUKSI', 2415000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.048', 'CT SCAN EXTREMITAS DENGAN REKONSTRUKSI + C', 2777000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.049', 'CT SCAN FNAB', 1021000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.050', 'CT SCAN JANTUNG DENGAN KONTRAS', 4474000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.051', 'CT SCAN KEPALA', 1021000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.052', 'CT SCAN KEPALA DENGAN KONTRAS', 1429000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.053', 'CT SCAN MASTOID', 1429000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.054', 'CT SCAN MASTOID DENGAN KONTRAS', 1858000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.055', 'CT SCAN NASOPHARING', 1429000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.056', 'CT SCAN NASOPHARING DENGAN KONTRAS', 1858000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.057', 'CT SCAN ORBITA DENGAN KONTRAS', 1858000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.058', 'CT SCAN PLANNING', 1021000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.059', 'CT SCAN PLANNING DENGAN KONTRAS', 1429000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.060', 'CT SCAN THORAX', 1858000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.061', 'CT SCAN THORAX DENGAN KONTRAS', 3055000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.062', 'CT SCAN TYROID', 1429000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.063', 'CT SCAN TYROID DENGAN KONTRAS', 1858000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.064', 'CT SCAN UROLOGI DENGAN KONTRAS', 3361000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.065', 'CT SCAN VERTEBRA', 1429000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.066', 'CT SCAN VERTEBRA DENGAN KONTRAS', 1858000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.067', 'CT SCAN VERTEBRA DENGAN REKONSTRUKSI', 2415000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.068', 'CT SCAN VERTEBRA DENGAN REKONSTRUKSI + C', 2777000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.069', 'CT. SCAN ORBITA', 1429000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.070', 'CT.SCAN KEPALA 3 D', 1429000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.071', 'CT.SCAN TELINGA', 1021000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.072', 'CT.SCAN TELINGA - DENGAN KONTRAS', 1858000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.073', 'CT.SCAN THORACAL / LUMBAL SPINE', 1429000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.074', 'CT.SCAN THORACAL / LUMBAL SPINE DG KONTRAS', 1858000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.075', 'CT.SCAN THYROID DGN.KONTRAS', 1858000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.076', 'CYSTOOGRAFI', 1021000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.077', 'DACRIOCYSTOGRAFI', 785000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.078', 'FEMUR 1 AP/LAT', 205000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.079', 'FEMUR 2 AP/LAT', 205000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.080', 'FISTULOGRAFI', 654000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.081', 'GENU 1 AP/LAT', 205000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.082', 'GENU 2 AP/LAT', 205000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.083', 'H S G', 654000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.084', 'HUMERIS 1', 85000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.085', 'HUMERIS 2', 65000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.086', 'I V P 1', 1021000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.087', 'I V P 2', 1021000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.088', 'I V P INFUSION', 2415000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.089', 'KEPALA AP/LAT 1', 128000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.090', 'KEPALA AP/LAT 2', 85000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.091', 'KEPALA AP/LAT.IRD', 205000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.092', 'KONSULTASI RADIOLOGI', 128000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.093', 'LOPOGRAFI', 785000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.094', 'LUMBO SACRAL 1', 128000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.095', 'LUMBO SACRAL 2', 128000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.096', 'LYMPHOGRAFI', 1021000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.097', 'MAAG FOTO / UGI 1', 785000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.098', 'MAMOGRAPHY', 359000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.099', 'MR NAVIGASI NON CONTRAST (GK)', 2415000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.100', 'MR NAVIGASI CONTRAST (GK)', 2415000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.101', 'MRA 3T ABDOMINALIS CONTRAST ENHANCED', 4067000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.102', 'MRA 3T CONTRAST', 3697000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.103', 'MRA 3T EXTREMITAS ATAS (HUMERUS/ANTEBRATA)', 4067000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.104', 'MRA 3T EXTREMITAS BAWAH (FEMUR/CRURIS)', 4067000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.105', 'MRA 3T NON CONTRAST', 2777000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.106', 'MRA 3T RUN OFF EXTREMITAS BAWAH', 4067000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.107', 'MRA 3T THORACALIS CONTRAST ENHANCED', 4067000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.108', 'MRA TOTAL BODY IMAGING CONTRAST', 6688000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.109', 'MRI 3T + MRA 3T HEAD CONTRAST', 4067000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.110', 'MRI 3T + MRA 3T HEAD NON CONTRAST', 3361000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.111', 'MRI 3T ANKLE JOINT CONTRAST', 3361000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.112', 'MRI 3T ANKLE JOINT NON CONTRAST', 2777000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.113', 'MRI 3T BREAST CONTRAST', 3361000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.114', 'MRI 3T BREAST NON CONTRAST', 2777000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.115', 'MRI 3T CARDIAC CORONARY NON CONTRAST', 4474000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.116', 'MRI 3T CARDIAC FUNCTION CONTRAST', 4474000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.117', 'MRI 3T CARDIAC PERFUSION CONTRAST', 4474000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.118', 'MRI 3T CAROTIS CONTRAST ENHANCED', 3361000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.119', 'MRI 3T CAROTIS NON CONTRAST', 2777000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.120', 'MRI 3T CAROTIS-CIRCULUS WILLISI CONTRAST', 4067000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.121', 'MRI 3T CAROTIS-CIRCULUS WILLISI NON CONTRAST', 2777000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.122', 'MRI 3T CERVICAL CONTRAST', 3361000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.123', 'MRI 3T CERVICAL NON CONTRAST', 2777000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.124', 'MRI 3T CONTRAST', 3697000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.125', 'MRI 3T ELBOW CONTRAST', 3361000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.126', 'MRI 3T ELBOW NON CONTRAST', 2777000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.127', 'MRI 3T EXREMITAS NON CONTRAST', 2777000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.128', 'MRI 3T EXREMITAS CONTRAST', 4067000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.129', 'MRI 3T EXREMITAS PERFUSION', 3361000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.130', 'MRI 3T HEAD + BOLD (BRAIN OXYGEN)', 2415000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.131', 'MRI 3T HEAD + DTI/FIBRE TRACT/TRACTOGRA', 2415000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.132', 'MRI 3T HEAD + PERFUSION', 3361000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.133', 'MRI 3T HEAD + SPECTROSCOPY', 3697000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.134', 'MRI 3T HEAD + VESTIBULOCOHCLEAR CONTRAST', 3055000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.135', 'MRI 3T HEAD + VESTIBULOCOHCLEAR NON CONTRAST', 2415000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.136', 'MRI 3T HEAD CONTRAST', 3361000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.137', 'MRI 3T HEAD CONTRAST ENHANCED', 3361000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.138', 'MRI 3T HEAD EARLY STROKE PACKAGE (SPECIAL)', 2415000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.139', 'MRI 3T HEAD NON CONTRAST', 2777000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.140', 'MRI 3T HEAD SCREENING STROKE PACKAGE', 2415000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.141', 'MRI 3T HIP JOINT CONTRAST', 3361000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.142', 'MRI 3T HIP JOINT NON CONTRAST', 2777000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.143', 'MRI 3T KNEE JOINT CONTRAST', 3361000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.144', 'MRI 3T KNEE JOINT NON CONTRAST', 2777000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.145', 'MRI 3T LARYNX CONTRAST', 3361000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.146', 'MRI 3T LARYNX NON CONTRAST', 2777000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.147', 'MRI 3T LIVER CONTRAST', 6688000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.148', 'MRI 3T LIVER NON CONTRAST', 2415000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.149', 'MRI 3T LUMBAL CONTRAST', 3361000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.150', 'MRI 3T LUMBAL NON CONTRAST', 2777000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.151', 'MRI 3T MASTOID CONTRAST', 3361000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.152', 'MRI 3T MASTOID NON CONTRAST', 2777000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.153', 'MRI 3T MRCP (CHOLANGIO PANREATOGRAPHY)', 2777000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.154', 'MRI 3T MRCP (CHOLANGIO PANREATOGRAPHY) CONTRAST', 3361000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.155', 'MRI 3T NASOPHARYNK CONTRAST', 3361000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.156', 'MRI 3T NASOPHARYNK NON CONTRAST', 2777000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.157', 'MRI 3T NAVIGASI CONTRAST', 3361000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.158', 'MRI 3T NAVIGASI NON CONTRAST', 2777000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.159', 'MRI 3T NECK ANTERIOR CONTRAST', 3361000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.160', 'MRI 3T NECK ANTERIOR NON CONTRAST', 2415000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.161', 'MRI 3T NON CONTRAST', 2777000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.162', 'MRI 3T ORBITA CONTRAST', 3361000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.163', 'MRI 3T ORBITA NON CONTRAST', 2777000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.164', 'MRI 3T PEDIS CONTRAST', 3361000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.165', 'MRI 3T PEDIS NON CONTRAST', 2777000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.166', 'MRI 3T PELVIS CONTRAST', 4067000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.167', 'MRI 3T PELVIS NON CONTRAST', 2777000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.168', 'MRI 3T PLANNING ABDOMEN DENGAN KONTRAS', 4474000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.169', 'MRI 3T PLANNING ABDOMEN NON KONTRAS', 2777000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.170', 'MRI 3T PLANNING CERVICAL DENGAN KONTRAS', 3697000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.171', 'MRI 3T PLANNING CERVICAL NON KONTRAS', 2777000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.172', 'MRI 3T PLANNING EKSTRIMITAS DENGAN KONTRAS', 4474000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.173', 'MRI 3T PLANNING EKSTRIMITAS NON KONTRAS', 2777000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.174', 'MRI 3T PLANNING HEAD DENGAN KONTRAS', 3697000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.175', 'MRI 3T PLANNING HEAD NON KONTRAS', 2777000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.176', 'MRI 3T PLANNING PELVIS DENGAN KONTRAS', 4474000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.177', 'MRI 3T PLANNING PELVIS NON KONTRAS', 2777000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.178', 'MRI 3T PLANNING THORAX DENGAN KONTRAS', 4067000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.179', 'MRI 3T PLANNING THORAX NON KONTRAS', 2777000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.180', 'MRI 3T RUN OFF EXTREMITAS BAWAH', 4067000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.181', 'MRI 3T SHOULDER CONTRAST', 3361000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.182', 'MRI 3T SHOULDER NON CONTRAST', 2777000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.183', 'MRI 3T SINUS PARANASALIS CONTRAST', 3361000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.184', 'MRI 3T SINUS PARANASALIS NON CONTRAST', 2415000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.185', 'MRI 3T THORACAL CONTRAST', 4067000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.186', 'MRI 3T THORACAL NON CONTRAST', 3055000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.187', 'MRI 3T THORAX CONTRAST', 3361000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.188', 'MRI 3T THORAX NON CONTRAST', 2777000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.189', 'MRI 3T TOTAL SPINE CONTRAST', 5816000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.190', 'MRI 3T TOTAL SPINE NON CONTRAST', 4474000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.191', 'MRI 3T UPPER ABDOMEN + PELVIS CONTRAST', 4474000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.192', 'MRI 3T UPPER ABDOMEN + PELVIS NON CONTRAST', 4067000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.193', 'MRI 3T UPPER ABDOMEN CONTRAST', 4067000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.194', 'MRI 3T UPPER ABDOMEN NON CONTRAST', 2777000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.195', 'MRI 3T WRIST JOIN CONTRAST', 3361000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.196', 'MRI 3T WRIST JOIN NON CONTRAST', 2777000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.197', 'MRI TOTAL BODY IMAGING CONTRAST', 9363000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.198', 'MRI TOTAL BODY IMAGING NON CONTRAST', 5816000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.199', 'MYLOGRAFI', 1429000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.200', 'OESOPHAGUS', 503000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.201', 'PANAROMIC', 65000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.202', 'PEDIS 1 AP/LAT', 205000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.203', 'PEDIS 2 AP/LAT', 128000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.204', 'PELVIS 1 AP/LAT', 205000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.205', 'PELVIS 2 AP/LAT', 205000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.206', 'PHLEBOGRAFI', 1021000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.207', 'R P G / A P G', 1021000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.208', 'RONTGEN FOTO INTRA ORAL (PER GIGI)', 65000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.209', 'SIALOGRAFI', 1021000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.210', 'T.TUBE CHOLEDOCHOGRAFI', 785000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.211', 'TANGEN 1 AP/LAT', 205000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.212', 'TANGEN 2 AP/LAT', 128000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.213', 'THORACO LUMBAL 1', 128000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.214', 'THORACO LUMBAL 2', 128000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.215', 'THORAX 1', 85000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.216', 'THORAX 2', 85000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.217', 'THORAX 3', 85000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.218', 'THORAX AP/LAT 1', 205000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.219', 'THORAX AP/LAT 2', 128000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.220', 'THORAX AP/LAT 3', 85000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.221', 'U G I 2', 785000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.222', 'URETHROGRAFI', 654000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.223', 'USG', 205000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.225', 'USG.COLOR DOPPLER ( PER ORGAN)', 654000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.226', 'WATERS / SINUS', 85000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.227', 'JASA KONSULTASI', 100000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.228', 'CEPHALOMETRI', 65000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.229', 'ANKLE AP LAT', 205000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.230', 'WRIST AP LAT', 85000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.231', 'MANUS AP LAT', 85000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.232', 'ELBOW AP LAT', 205000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.233', 'SHOULDER', 85000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.234', 'SCHULLER', 128000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.235', 'TMJ (TEMPORO MANDIBULA JOINT)', 128000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.236', 'CUBITI', 205000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.237', 'BONE AGE', 85000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.238', 'THORACOABDOMINAL', 128000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.239', 'TIBIA', 205000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.240', 'MORTIS VIEW', 205000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.241', 'CALCANEUS', 205000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.242', 'GLENO HUMERAL JOINT', 85000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.243', 'DYNAMIC VIEW', 128000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.244', 'BARIUM ESOFAGUSGRAM', 503000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.245', 'APPENDICOGRAM', 654000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.246', 'REFLUX STUDY', 654000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.247', 'BVCUG (BIPOLAR VOIDING CYSTOURETROGRAFI)', 1021000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.248', 'BARIUM INTAKE', 785000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.249', 'GENITOGRAFI', 654000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.250', 'SPLINTOGRAFI', 1021000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.251', 'GENU SUNRISE VIEW', 205000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.252', 'BABY GRAM', 85000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.253', 'COXAE', 205000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.254', 'ABDOMEN 2 POSISI', 85000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.255', 'BONE SURVEY', 785000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.256', 'SCANOGRAM', 654000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.257', 'SCOLIOSIS SERIES', 503000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.258', 'WHOLESPINE', 503000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.259', 'VCUG (VOIDING CYSTOURETROGRAFI)', 1021000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RHM.001', 'AUDIO VISUAL TACTILE STIMULATION', 535000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.002', 'B M D TEST', 113000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.003', 'BIO FEED BACK TRAINER (MYOMED)', 446000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.004', 'CHEST PHYSICAL THERAPHY', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.005', 'COGNITIVE TRAINING', 446000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.006', 'CONTINUOUS PASSIVE MOVEMENT', 94000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.007', 'EMG BIOFEEDBACK', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.008', 'ERGOCYCLE', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.009', 'HOTPACK', 49000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.010', 'ICING/CRYOJET', 49000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.011', 'INFRARED', 49000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.012', 'INJEKSI EKSTRAARTIKULAR', 124000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.013', 'INJEKSI INTRAARTIKULAR', 124000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.014', 'INJEKSI PROLOTERAPI', 124000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.015', 'INJEKSI SOFT TISSUE', 124000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.016', 'INJEKSI STEROID', 124000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.017', 'IVES', 124000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.018', 'KINETIZER', 103000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.019', 'LASER THERAPY UNIT', 94000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.020', 'LATIHAN A D L', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.021', 'LATIHAN AMBULASI', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.022', 'LATIHAN ARTIKULASI', 49000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.023', 'LATIHAN BAHASA', 64000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.024', 'LATIHAN CEREBRAL PALSY', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.025', 'LATIHAN ENDURANCE', 85000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.026', 'LATIHAN FEEDING/ORAL STIMULASI', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.027', 'LATIHAN FUNGSI TANGAN', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.028', 'LATIHAN KESEIMBANGAN', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.029', 'LATIHAN KETANGKASAN/AGILITY', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.030', 'LATIHAN KOORDINASI', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.031', 'LATIHAN LBP (WILLIAM FLEXION)', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.032', 'LATIHAN LUAS GERAK SENDI', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.033', 'LATIHAN NECK CALLIET', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.034', 'LATIHAN OSTEOPOROSIS', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.035', 'LATIHAN PADA BAYI', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.036', 'LATIHAN PARKINSON', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.037', 'LATIHAN PENGUATAN', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.038', 'LATIHAN PEREGANGAN', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.039', 'LATIHAN SCI (SPINAL CORD INJURY)', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.040', 'LATIHAN SENSORY INTEGRASI', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.041', 'LATIHAN SKOLIOSIS', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.042', 'LATIHAN STROKE', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.043', 'LATIHAN SUARA', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.044', 'LATIHAN VERTIGO', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.045', 'LATIHAN VOKASIONAL', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.046', 'LOTCA', 1027000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.047', 'LYMPHASTIM', 1027000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.048', 'M W D', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.049', 'MAGNETO THERAPY UNIT', 103000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.050', 'MANUAL MANIPULASI', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.051', 'MANUAL MUSCLE TEST', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.052', 'MASAGE', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.053', 'NEBULIZER ULTRASONIC MOBILE', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.054', 'OVERHEAD PULLEY', 64000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.055', 'PARAFINE BATH', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.056', 'PEAK FLOW METER', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.057', 'PEMASANGAN NEUROMUSCULAR TAPPING', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.058', 'PEMERIKSAAN EVALUASI ORTESA', 223000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.059', 'PEMERIKSAAN EVALUASI PROTESA', 223000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.060', 'PEMERIKSAAN UJI FUNGSI KARDIORESPIRASI', 223000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.061', 'PEMERIKSAAN UJI KEKUATAN OTOT', 223000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.062', 'PEMERIKSAAN UJI KEMAMPUAN FUNGSIONAL DAN PERAWATAN', 223000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.063', 'PEMERIKSAAN / SKRINING MASALAH SOSIAL', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.064', 'POSTURAL DRAINAGE', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.065', 'PRESSO/COMPRESSI EXTREMITER', 103000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.066', 'QUADRICEP EXERCISE', 64000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.067', 'REHAB JANTUNG', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.068', 'REHAB PARU', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.069', 'REHABILITASI STROKE', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.070', 'S W D', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.071', 'SENAM ASMA', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.072', 'SENAM BEDAH CAESAR', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.073', 'SENAM HAMIL', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.074', 'SENAM NIFAS', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.075', 'SENSORY RESENSITIZATION', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.076', 'SNOOZELLEN ROOM THERAPHY', 113000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.077', 'STEP LADDER', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.078', 'TENS/ES/FARADISASI', 56000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.079', 'TERAPI CBT (COGNITIVE BEHAVIOR THERAPY)', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.080', 'TERAPI CTS', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.081', 'TERAPI MEMORI', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.082', 'TERAPI OKUPASI', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.083', 'TERAPI PERILAKU', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.084', 'TERAPI VOCASTIM', 446000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.085', 'TERAPI WICARA', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.086', 'TEST KECERDASAN/PERILAKU', 94000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.087', 'THUMP SPLINT', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.088', 'TILT TABLE', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.089', 'TRAKSI CERVICAL LISTRIK', 103000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.090', 'TRAKSI PELVIS LISTRIK', 103000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.091', 'TREADMILL W./ STRESS TEST ECG', 136000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.092', 'U S D', 94000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.093', 'WHIRL POLL', 94000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.094', 'WHOLEBODY TRAINING', 94000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.095', 'PEMERIKSAAN ORTOTIK PROSTETIK', 223000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.096', 'PENGUKURAN ALAT ORTOSIS', 223000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.097', 'PENGUKURAN ALAT PROSTESIS', 223000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.098', 'PEMASANGAN DAN LATIHAN PENGGUNAAN ORTOSIS', 446000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.099', 'PEMASANGAN DAN LATIHAN PENGGUNAAN PROSTESIS', 446000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.100', 'EVALUASI PEMAKAIAN ORTOSIS', 535000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.101', 'EVALUASI PEMAKAIAN PROSTESIS', 535000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.102', 'JASA KONSULTASI', 100000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.103', 'INJEKSI PROLOTERAPI II', 223000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.104', 'INJEKSI PROLOTERAPI III', 446000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.105', 'TERAPI TRAKSI CERVICAL', 49000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.106', 'TERAPI LUMBAL', 49000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.107', 'TERAPI SPINAL DECOMPRESSION', 124000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.108', 'TERAPI HIGH INTENSITY LASER', 446000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.109', 'TERAPI LOW INTENSITY LASER', 49000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.110', 'TERAPI PNEUMATIC COMPRESSION', 124000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.111', 'TERAPI VITALSTIM', 124000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.112', 'TERAPI EMSELA', 1027000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RTP.001', 'ALAT BANTU LAIN / BOLUS / WAX', 390000, 'TINDAKAN/PEMERIKSAAN RADIOTERAPI'), +('R.RTP.002', 'ALAT BANTU MOULDING BLOK INDIVIDUAL', 1676000, 'TINDAKAN/PEMERIKSAAN RADIOTERAPI'), +('R.RTP.003', 'ALAT BANTU MOULDING KONTUR', 449000, 'TINDAKAN/PEMERIKSAAN RADIOTERAPI'), +('R.RTP.004', 'ALAT BANTU MOULDING MASKER BESAR', 1676000, 'TINDAKAN/PEMERIKSAAN RADIOTERAPI'), +('R.RTP.005', 'ALAT BANTU MOULDING MASKER KECIL', 1214000, 'TINDAKAN/PEMERIKSAAN RADIOTERAPI'), +('R.RTP.006', 'C-ARM BRACHY TERAPI < 3 JAM', 390000, 'TINDAKAN/PEMERIKSAAN RADIOTERAPI'), +('R.RTP.007', 'C-ARM BRACHY TERAPI > 3 JAM', 449000, 'TINDAKAN/PEMERIKSAAN RADIOTERAPI'), +('R.RTP.008', 'CT SIMULATOR DENGAN KONTRAS', 1457000, 'TINDAKAN/PEMERIKSAAN RADIOTERAPI'), +('R.RTP.009', 'CT SIMULATOR TANPA KONTRAS', 1214000, 'TINDAKAN/PEMERIKSAAN RADIOTERAPI'), +('R.RTP.010', 'EKSTERNAL RADIASI COBALT - 60', 674000, 'TINDAKAN/PEMERIKSAAN RADIOTERAPI'), +('R.RTP.011', 'EKSTERNAL RADIASI COBALT - 60 PALIATIF', 809000, 'TINDAKAN/PEMERIKSAAN RADIOTERAPI'), +('R.RTP.012', 'EKSTERNAL RADIASI LINAC', 1214000, 'TINDAKAN/PEMERIKSAAN RADIOTERAPI'), +('R.RTP.013', 'PEMASANGAN APLIKASI LENGKAP', 2849000, 'TINDAKAN/PEMERIKSAAN RADIOTERAPI'), +('R.RTP.014', 'PEMASANGAN APLIKASI TIDAK LENGKAP', 1457000, 'TINDAKAN/PEMERIKSAAN RADIOTERAPI'), +('R.RTP.015', 'RADIOAKTIF IRIDIUM - 192', 674000, 'TINDAKAN/PEMERIKSAAN RADIOTERAPI'), +('R.RTP.016', 'RADIOTERAPI RINGAN', 2849000, 'TINDAKAN/PEMERIKSAAN RADIOTERAPI'), +('R.RTP.017', 'RAWAT LUKA SINAR', 130000, 'TINDAKAN/PEMERIKSAAN RADIOTERAPI'), +('R.RTP.018', 'SIMULATOR DENGAN KONTRAS', 809000, 'TINDAKAN/PEMERIKSAAN RADIOTERAPI'), +('R.RTP.019', 'SIMULATOR TANPA KONTRAS', 674000, 'TINDAKAN/PEMERIKSAAN RADIOTERAPI'), +('R.RTP.020', 'TPS ( TREATMENT PLANNING SYTEM ) 2D', 390000, 'TINDAKAN/PEMERIKSAAN RADIOTERAPI'), +('R.RTP.021', 'TPS ( TREATMENT PLANNING SYTEM ) 3D', 674000, 'TINDAKAN/PEMERIKSAAN RADIOTERAPI'), +('R.RTP.022', 'TPS ( TREATMENT PLANNING SYTEM ) KONFORMAL', 809000, 'TINDAKAN/PEMERIKSAAN RADIOTERAPI'), +('R.RTP.023', 'TREATMENT PLANNING SYSTEM (TPS) IMRT', 1457000, 'TINDAKAN/PEMERIKSAAN RADIOTERAPI'), +('R.RTP.024', 'JASA KONSULTASI', 100000, 'TINDAKAN/PEMERIKSAAN RADIOTERAPI'), +('R.TDE.001', 'AMBULATORY CARDIAC MONITORING', 372000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.002', 'AUTOREFRAKTOMETRI', 103000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.003', 'CARDIAC MONITOR - PER HARI', 124000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.004', 'COLOR VISION STUDY - 9506', 179000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.005', 'COMPREHENSIVE EYE EXAMINATION - 9502', 179000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.006', 'CONTINUOUS POSITIVE AIRWAY PRESSURE (CIPAP) - 93.90', 535000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.007', 'CYCLOPLEGI', 310000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.008', 'DARK ADAPTATION STUDY - 9507', 179000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.009', 'DISPENSING OF OTHER LOW VISION AIDS - 9533', 642000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.010', 'DRY EYE EXAMINATION', 179000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.011', 'E E C P', 1916000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.012', 'ECHOCARDIOGRAFI', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.013', 'ECHOCARDIOGRAFI BUBBLE TEST', 642000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.014', 'ECHOCARDIOGRAFI DOPPLER VASCULER', 642000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.015', 'EEG (ELECTROENCEFALOGRAFI)', 924000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.016', 'EKG', 86000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.017', 'ELECTROCARDIOGRAM', 149000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.018', 'ELECTROMYOGRAM OF EYE [EMG] - 9525', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.019', 'ELECTRONYSTAGMOGRAM [ENG] - 9524', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.020', 'ELECTRO-OCULOGRAM [EOG] - 9522', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.021', 'ELECTRORETINOGRAM [ERG] - 9521', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.022', 'EMG ) ELECTROMYOGRAFI > 6 OTOT', 1109000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.023', 'EMG 1 - 6 OTOT + TIDAKAN LAIN', 1109000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.024', 'EMG ELECTROMYOGRAFI 1 - 6 OTOT', 924000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.025', 'EMG LEBIH 6 OTOT + TIDAKAN LAIN', 1109000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'); +INSERT INTO `tarif_rs` (`ID_Tarif_RS`, `Tindakan_RS`, `Tarif_RS`, `Kategori_RS`) VALUES +('R.TDE.026', 'EXTENDED OPHTHALMOLOGIC WORK-UP - 9503', 215000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.027', 'EYE EXAMINATION UNDER ANESTHESIA - 9504', 1109000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.028', 'EYE EXAMINATION, NOT OTHERWISE SPECIFIED - 9509', 215000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.029', 'FITTING AND DISPENSING OF SPECTACLES - 9531', 310000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.030', 'FLUORESCEIN ANGIOGRAPHY OR ANGIOSCOPY OF EYE - 9512', 1109000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.031', 'FUNDUS PHOTOGRAPHY - 9511', 310000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.032', 'INFANT WARMER - PER HARI', 50000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.033', 'INFUSION PUMP ANAK - PER HARI', 50000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.034', 'INFUSION PUMP DEWASA - PER HARI', 50000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.035', 'KERATOMETRI', 103000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.036', 'LENSOMETRI', 103000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.037', 'LIMITED EYE EXAMINATION - 9501', 103000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.038', 'MANTOUX TEST - ANAK', 50000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.039', 'MONITORING SaO2 (OXYMETRI)', 86000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.040', 'MONITORING TTV ATAU CARDIAC - PER HARI', 50000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.041', 'OCT POSTERIOR', 535000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.042', 'OCULAR MOTILITY STUDY - 9515', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.043', 'OCULAR PROSTHETICS - 9534', 535000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.044', 'OPHTHALMOLOGIC COUNSELING AND INSTRUCTION - 9536', 535000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.045', 'ORTHOPTIC TRAINING - 9535', 642000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.046', 'P32 AND OTHER TRACER STUDIES OF EYE - 9516', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.047', 'PEMAKAIAN ANUSKOPI', 50000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.048', 'PEMAKAIAN INFUSION PUMP - PER HARI', 149000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.049', 'PEMAKAIAN INKUBATOR', 50000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.050', 'PEMAKAIAN MONITOR TINDAKAN - PER HARI', 86000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.051', 'PEMAKAIAN PEAK FLOW', 50000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.052', 'PEMAKAIAN VENTILATOR MEKANIK - PER HARI', 906000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.053', 'PEMAKAIAN WARM FLUID', 50000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.054', 'PEMANTAUAN VITAL SIGN - HARI', 86000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.055', 'PEMASANGAN BANDAGE PELVIS', 60000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.056', 'PEMASANGAN BANDAGE WOUND', 60000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.057', 'PRESCRIPTION, FITTING, AND DISPENSING OF CONT - 9532', 642000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.058', 'RETINOMETRI', 103000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.059', 'STREAK RETINOSKOPI', 310000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.060', 'SYNOPTOPHORE', 310000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.061', 'SYRINGE PUMP - PER HARI', 50000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.062', 'SYRINGE PUMP ANAK - PER HARI', 50000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.063', 'SYRINGE PUMP DEWASA - PER HARI', 50000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.064', 'ULTRASOUND STUDY OF EYE - 9513', 215000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.066', 'USG 4 D', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.068', 'VISUAL EVOKED POTENTIAL [VEP] - 9523', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.069', 'VISUAL FIELD STUDY - 9505', 310000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.070', 'ABLB (AUDIOMETRY) - 95.41', 372000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.071', 'ACROMIO-CLAVICULAR JOINT USG', 258000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.072', 'AIDED ASSR (OTHER AUDITORY AND VESTIBULAR FUNCTION\nTESTS) - 95.46', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.073', 'AIDED AUDIOMETRY (OTHER AUDITORY AND VESTIBULAR\nFUNCTION TESTS) - 95.46', 215000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.074', 'ASSR (OTHER AUDITORY AND VESTIBULAR FUNCTION TESTS) -\n95.46', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.075', 'AUDIOMETRI NADA MURNI / AUDIOMETRY - 95.41', 215000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.076', 'AUDIOMETRI TES GLISEROL / AUDIOMETRY (WITH GLISEROL) -\n95.41', 215000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.077', 'AUDIOMETRI TUTUR (SPEECH AUDIOMETRY) - 95.41', 258000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.078', 'AUDIOMETRI TUTUR DALAM BISING (AUDIOMETRY OF SPEECH\nIN NOISE) - 95.41', 372000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.079', 'AUDITORY CORTICAL TESTING (OTHER AUDITORY AND\nVESTIBULAR FUNCTION TESTS) - 95.46', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.080', 'BAKER?S CYST USG', 258000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.081', 'BALLON TEST OCCLUSION', 3311000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.082', 'BEHAVIORAL OBSERVATION AUDIOMETRY (OTHER AUDITORY\nAND VESTIBULAR FUNCTION TESTS) - 95.46', 215000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.083', 'BERA (OTHER AUDITORY AND VESTIBULAR FUNCTION TESTS) -\n95.46', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.084', 'BLINK REFLEX.', 310000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.085', 'BRAINSTEM AUDITORY EVOKED POTENTIAL (BAEP).', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.086', 'BRONKODILATOR TES - 89,383', 72000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.087', 'CAROTID DOPLER', 3311000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.088', 'CARPAL TUNNEL SYNDROME USG', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.089', 'CENTRAL MOTOR CONDUCTION TIME (CMCT)', 103000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.090', 'CONDITIONED ORIENTATION REFLEX (OTHER AUDITORY AND\nVESTIBULAR FUNCTION TESTS) - 95.46', 215000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.091', 'CONDITIONED PLAY AUDIOMETRY (OTHER AUDITORY AND\nVESTIBULAR FUNCTION TESTS) - 95.46', 372000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.092', 'CRITICAL CARE ULTRASOUND - 88.72', 1109000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.093', 'DE QUERVAIN SYNDROME USG', 258000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.094', 'DERMOSCOPY - 86.19', 103000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.095', 'DESENSITIZATION - 99.12', 179000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.096', 'DOPPLER VERTEBRALIS', 3311000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.097', 'DUPPLEX PERIFER', 3311000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.098', 'EABR (OTHER AUDITORY AND VESTIBULAR FUNCTION TESTS) -\n95.46', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.099', 'ECG - 89.52', 124000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.100', 'EEG (ICU/HCU)', 179000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.101', 'EEG CHALLENGE DIAZEPAM', 179000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.102', 'EEG INTRACORTICAL (ELECTRO CORTICO GRAPHY)', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.103', 'EEG INTRACRANIAL (LONG TERM)', 215000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.104', 'EEG MOBILE', 1331000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.105', 'EEG PREMEDIKASI', 1331000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.106', 'EEG RUTIN', 1331000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.107', 'EEG SLEEP DEPRIVASI', 124000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.108', 'EEG WADA TEST', 179000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.109', 'EKOKARDIOGRAFI TRANSESOFAGEAL (TEE) DENGAN ANESTESI\nUMUM - 88.72', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.110', 'EKOKARDIOGRAFI TRANSESOFAGEAL (TEE) LANJUT - 88.72', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.111', 'EKOKARDIOGRAFI TRANSESOFAGEAL (TEE) LANJUT + BUBBLE\nTEST - 88.72', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.112', 'EKOKARDIOGRAFI TRANSESOFAGEAL (TEE) PADA PROSEDUR\nBEDAH/NON BEDAH - 88.72', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.113', 'EKOKARDIOGRAFI TRANSESOFAGUS (TEE) DENGAN ANESTESI\nUMUM - 88.72', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.114', 'EKOKARDIOGRAFI TRANSESOFAGUS (TEE) LANJUT - 88.72', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.115', 'EKOKARDIOGRAFI TRANSESOFAGUS (TEE) LANJUT + BUBBLE -\n88.72', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.116', 'EKOKARDIOGRAFI TRANSESOFAGUS (TEE) PADA PROSEDUR\nINTERVENSI BEDAH/NON BEDAH - 88.72', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.117', 'EKOKARDIOGRAFI TRANSTORAKAL (TTE) DENGAN BUBBLE TEST -\n88.72', 924000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.118', 'EKOKARDIOGRAFI TRANSTORAKAL (TTE) DENGAN KONTRAS\n(NON-BUBBLE) - 88.72', 924000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.119', 'EKOKARDIOGRAFI TRANSTORAKAL (TTE) DENGAN KONTRAS\n(NON-BUBBLE) - 88.72', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.120', 'EKOKARDIOGRAFI TRANSTORAKAL (TTE) LANJUT (STRAIN / 3D/\nEVALUASI RV) - 88.72', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.121', 'EKOKARDIOGRAFI TRANSTORAKAL (TTE) LANJUT (STRAIN / 3D/\nEVALUASI RV) - 88.72', 924000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.122', 'EKOKARDIOGRAFI TRANSTORAKAL (TTE) PADA PROSEDUR\nINTERVENSI BEDAH/NON BEDAH - 88.72', 924000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.123', 'EKOKARDIOGRAFI TRANSTORAKAL (TTE) PADA PROSEDUR\nINTERVENSI NON BEDAH - 88.72', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.124', 'ELECTROCOCHLEOGRAPHY - 20.31', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.125', 'ELECTROMYOGRAPHY (EMG) 1 EKSTREMITAS DENGAN NEEDLE.', 86000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.126', 'ELECTROMYOGRAPHY (EMG) 2 EKSTREMITAS DENGAN NEEDLE.', 86000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.127', 'ELECTROMYOGRAPHY (EMG) 3 EKSTREMITAS DENGAN NEEDLE.', 103000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.128', 'ELECTROMYOGRAPHY (EMG) BULBAR DENGAN NEEDLE.', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.129', 'ELECTROMYOGRAPHY (EMG) DIAFRAGMA DENGAN NEEDLE.', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.130', 'ELECTROMYOGRAPHY (EMG) FASIALIS DENGAN NEEDLE.', 103000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.131', 'ELECTROMYOGRAPHY (EMG) RECTUM DENGAN NEEDLE.', 103000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.132', 'ELECTROMYOGRAPHY (EMG) TRUNKAL DENGAN NEEDLE.', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.133', 'ELECTRONEUROGRAPHY (ENOG) FASIALIS.', 310000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.134', 'ELECTRONYSTAGMOGRAM [ENG] - 95.24', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.135', 'EUSTACHIAN TUBE FUCTION TEST (AUDIOMETRY) - 95.41', 215000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.136', 'EXERCISE ABI - 89.44', 372000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.137', 'EXERCISE STRESS ECHOCARDIOGRAPHY DENGAN TREADMILL -\n88.72', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.138', 'FASCITIS PLANTARIS USG', 258000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.139', 'FEMORAL ENTRAPMENT USG', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.140', 'FITTING OF HEARING AID - 95.48', 372000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.141', 'FUNCTIONAL TCD', 86000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.142', 'GASTRIC LAVAGE - 96.33', 72000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.143', 'GENE EXPERT - 011.14', 124000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.144', 'GENERAL PHYSICAL EXAMINATION - 89.70', 86000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.145', 'GLENO-HUMERAL USG', 258000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.146', 'GOLFER ELBOW USG', 258000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.147', 'GUYON SYNDROME USG', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.148', 'HOLTER MONITORING - 89.5', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.149', 'H-REFLEX.', 103000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.150', 'ICP CATHETER INSERTION - 01.19', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.151', 'IMPINGEMENT USG', 258000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.152', 'INDUKSI SPUTUM - 786.4', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.153', 'INFUSION PUMP PADA PASIEN KRITIS - 86.06', 103000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.154', 'INTERVIEW AND EVALUATION, DESCRIBED AS COMPREHENSIVE\n- 89.03', 72000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.155', 'INTRA CARDIAC ECHOCARDIOGRAPHY - 37.28', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.156', 'INTRAARTIKULER 1 USG', 258000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.157', 'INTRAARTIKULER 2 USG', 258000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.158', 'INTRADERMAL SKIN TEST - 99.1', 179000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.159', 'JAW REFLEX.', 310000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.160', 'KECEPATAN HANTAR SARAF (KHS) 1 EKSTREMITAS DAN LATE\nRESPONSE.', 535000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.161', 'KECEPATAN HANTAR SARAF (KHS) 1 EKSTREMITAS.', 535000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.162', 'KECEPATAN HANTAR SARAF (KHS) 2 EKSTREMITAS DAN LATE\nRESPONSE.', 179000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.163', 'KECEPATAN HANTAR SARAF (KHS) 2 EKSTREMITAS.', 60000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.164', 'KECEPATAN HANTAR SARAF (KHS) 3 EKSTREMITAS DAN LATE\nRESPONSE.', 103000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.165', 'KECEPATAN HANTAR SARAF (KHS) 3 EKSTREMITAS.', 103000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.166', 'KECEPATAN HANTAR SARAF (KHS) FASIALIS.', 103000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.167', 'KECEPATAN HANTAR SARAF (KHS) FRENIKUS/ DIAFRAGMA.', 372000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.168', 'LATE RESPONSE F-WAVE.', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.169', 'LONG EXERCISE TEST ELECTROMYOGRAPHY.', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.170', 'LONG TERM MONITORING EEG', 1331000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.171', 'LUMBAL PUNKSI', 86000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.172', 'LUMBAL PUNKSI USG GUIDED', 103000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.173', 'LUMBAR DRAINAGE CATHETER INSERTION - 01.19', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.174', 'LUMBAR FACET JOINT INJECTION USG', 372000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.175', 'LUMBAR INTERLAMINAR INJECTION USG', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.176', 'LUMBAR MEDIAN BRANCH INJECTION USG', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.177', 'LUMBAR SYMPATHETIC INJECTION USG', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.178', 'LUMBAR TRANSFORAMINAL INJECTION USG', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.179', 'MAPPING COCHLEAR IMPLAN (OTHER NONOPERATIVE\nPROCEDURES RELATED TO HEARING) - 95.49', 372000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.180', 'MASSETER INHIBITORY REFLEX.', 310000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.181', 'MEXAMETER EXAMINATION - 86.19', 103000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.182', 'MONITORING BRAIN FISIOLOGI INVASIF - 01.19', 3311000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.183', 'MONITORING BRAIN FISIOLOGI NON INVASIF - 01.19', 2299000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.184', 'MONITORING EMBOLIC DETECTION - TCD', 3311000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.185', 'MOTOR EVOKED POTENTIAL (MEP) DENGAN TRANSCRANIAL\nMAGNETIC STIMULATION (TMS) EKSTREMITAS ATAS DAN BAWAH.', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.186', 'MOTOR EVOKED POTENTIAL (MEP) DENGAN TRANSCRANIAL MAGNETIC STIMULATION (TMS) EKSTREMITAS ATAS.', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.187', 'MOTOR EVOKED POTENTIAL (MEP) DENGAN TRANSCRANIAL MAGNETIC STIMULATION (TMS) EKSTREMITAS BAWAH.', 103000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.188', 'NASAL FUNCTION STUDY RHINOMANOMETRY - 89.12', 215000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.189', 'NEBULIZER PADA PASIEN KRITIS - 93.94', 103000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.190', 'NEURAL RESPON THRESHOLD (OTHER AUDITORY AND\nVESTIBULAR FUNCTION TESTS) - 95.46', 372000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.191', 'NMES (NEUROMUSCULAR ELECTRICAL STIMULATION)', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.192', 'NO - FOTO FUNDUS', 258000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.193', 'NO - FUNDUSKOPI', 86000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.194', 'NO - NEUROOPHTALMOLOGY', 103000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.195', 'NO- KAMPIMETRI', 179000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.196', 'OPTIMALISASI CRT GUIDED EKG - V53.31', 372000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.197', 'OSCILOMETRI - 89,382', 535000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.198', 'OTO-ACOUSTIC EMISSION (OTHER AUDITORY AND VESTIBULAR\nFUNCTION TESTS) - 95.46', 215000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.199', 'P300 (OTHER AUDITORY AND VESTIBULAR FUNCTION TESTS) -\n95.46', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.200', 'P300 EVOKED RESPONSE POTENTIAL.', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.201', 'PAIRED-PULSE H-REFLEX.', 310000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.202', 'PEAK FLOW METER (PEF) - 89,382', 72000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.203', 'PEMERIKSAAN AUSPITZ - 91.61', 50000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.204', 'PEMERIKSAAN BASAH - 91.44', 50000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.205', 'PEMERIKSAAN HAPUSAN KULIT - 70.01', 50000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.206', 'PEMERIKSAAN KAARSVLEK - 91.61', 50000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.207', 'PEMERIKSAAN MONOFILAMEN - 92.26', 50000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.208', 'PEMERIKSAAN NO + KAMPIMETRI + FOTO FUNDUS', 179000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.209', 'PENGAMBILAN DAHAK UTK GENE EXPERT - 96.53', 60000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.210', 'PENILAIAN FUNGSI SISTEM SARAF OTONOM (HRV) - 94.08', 50000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.211', 'PERONEAL ENTRAPMENT USG', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.212', 'PHARMACOLOGIC STRESS ECHOCARDIOGRAPHY :\nDOBUTAMIN/ADENOSINE/DIPIRIDAMOLE STRESS ECHOCARDIOGRAPHY - 88.72', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.213', 'PIRIFORMIS SYNDROME USG', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.214', 'PLETHYSMOGRAFI/ABI/TBI - 89.58', 372000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.215', 'POCUS ALIRAN ARTERI DAN VENA ORGAN-ORGAN\nABDOMEN/SPLANCHNIK PADA PASIEN KRITIS - 88.77', 642000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.216', 'POCUS JANTUNG TEE NEONATUS - ANAK PADA PASIEN KRITIS -\n88.72', 642000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.217', 'POCUS JANTUNG TEE 2D DEWASA PADA PASIEN KRITIS - 88.72', 642000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.218', 'POCUS JANTUNG TEE 2D DIAGNOSTIK PASIEN KRITIS - 88.72', 642000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.219', 'POCUS JANTUNG TEE 3D ECHO INTRAPROSEDURAL INTERVENSI\nPADA PASIEN KRITIS - 88.72', 642000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.220', 'POCUS NERVUS OPTICUS - 88.71', 642000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.221', 'POCUS RETROPERITONEAL (RENAL, AORTA, KGB), B-SCAN\nDAN/ATAU REAL TIME PADA PASIEN KRITIS - 88.76', 642000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.222', 'POCUS TRANSCRANIAL DOPPLER (TCD) - 88.71', 642000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.223', 'POPLITEAL ENTRAPMENT USG', 258000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.224', 'PRPP INJECTION USG', 258000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.225', 'PUDENDAL REFLEX SURFACE.', 310000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.226', 'PUDENDAL REFLEX WITH NEEDLE.', 310000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.227', 'RADIOFREKUENS ILUMBOSACRAL USG', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.228', 'RADIOFREKWENSI SERVIKAL USG', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.229', 'REFLEKS STAPEDIUS IPSILATERAL / KONTRALATERAL\n(AUDIOMETRY) - 95.41', 215000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.230', 'REHABILITASI JANTUNG /KALI - 93.36', 215000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.231', 'REPETITIVE NERVE STIMULATION (RNS).', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.232', 'REPROGRAM ICD/CRT - 89.49', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.233', 'REPROGRAM PACEMAKER - 89.46', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.234', 'SACRAL EPIDURAL INJECTION USG', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.235', 'SACRAL TRANSFORAMINAL INJECTION USG', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.236', 'SACROILIAC JOINT DYSFUNCTION USG', 372000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.237', 'SEBUMETER EXAMINATION - 86.19', 103000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.238', 'SEDIAAN BASAH - 91.44', 50000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.239', 'SEDIAAN GIEMSA - 91.65', 50000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.240', 'SEDIAAN GRAM - 91.61', 50000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.241', 'SEDIAAN SCRAPPING ECTOPARASIT - 91.64', 50000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.242', 'SERVIKAL FACET JOINT INJECTION USG', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.243', 'SERVIKAL INTERLAMINAR INJECTION USG', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.244', 'SERVIKAL MEDIAN BRANCH INJECTION USG', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.245', 'SERVIKAL SYMPATHETIC INJECTION USG', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.246', 'SHORT EXERCISE TEST ELECTROMYOGRAPHY.', 103000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.247', 'SHORT LATENCY AFFERENT INHIBITION', 103000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.248', 'SINGLE FIBER ELECTROMYOGRAPHY (SF-EMG) DENGAN\nNEEDLE.', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.249', 'SISI (AUDIOMETRY) - 95.41', 372000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.250', 'SJVO2 CATHETER INSERTION DENGAN USG - 01.19', 642000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.251', 'SJVO2 CATHETER INSERTION TANPA USG - 01.19', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.252', 'SKIN PROVOCATION TEST - 86.19', 179000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.253', 'SMWT DENGAN TELEMETRI - 89.44', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.254', 'SOMATO-SENSORY EVOKED POTENTIAL (SSEP) EKSTREMITAS\nATAS DAN BAWAH.', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.255', 'SOMATO-SENSORY EVOKED POTENTIAL (SSEP) EKSTREMITAS\nATAS.', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.256', 'SOMATO-SENSORY EVOKED POTENTIAL (SSEP) EKSTREMITAS\nBAWAH.', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.257', 'SOMATO-SENSORY EVOKED POTENTIAL (SSEP) PUDENDAL.', 103000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.258', 'STRESS MRI JANTUNG - 88.72', 2759000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.259', 'SUPRA SCAPULAR USG', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.260', 'SURFACE ELECTROMYOGRAPHY 1 CHANNEL.', 535000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.261', 'SURFACE ELECTROMYOGRAPHY 2 CHANNEL.', 179000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.262', 'SURFACE ELECTROMYOGRAPHY 3 CHANNEL.', 103000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.263', 'SYMPATHETIC SKIN RESPONSE', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.264', 'SYRINGE PUMP PADA PASIEN KRITIS - 86.06', 103000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.265', 'TARSAL TUNNEL SYNDROME USG', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.266', 'TCD (TRANSCRANIAL DOPPLER)', 86000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.267', 'TCD (TRANSCRANIAL DOPPLER)', 3311000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.268', 'TCD BUBBLE CONTRAST', 3311000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.269', 'TCD BUBLE CONTRAST', 103000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.270', 'TEE PJB KOMPLEKS DENGAN SEDASI - 88.72', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.271', 'TEE PJB SIMPEL (ASD, VSD, PDA, POST DEVICE CLOSURE)\nDENGAN ANESTESI - 88.72', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.272', 'TEE PJB SIMPEL (ASD, VSD, PDA, POST DEVICE CLOSURE)\nDENGAN SEDASI - 88.72', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.273', 'TEE PJB SIMPEL (ASD, VSD, PDA, POST DEVICE CLOSURE) TANPA\nSEDASI - 88.72', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.274', 'TENDINITIS BICIPITALIS USG', 258000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.275', 'TENDINITIS PATELLA USG', 258000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.276', 'TENNIS ELBOW USG', 258000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.277', 'TERAPI HYPEROSMOLAR - 01.19', 372000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.278', 'TERES MAYOR USG', 258000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.279', 'TEST PROVOKASI BRONCHIAL - 89.390', 535000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.280', 'TEWAMETER EXAMINATION - 86.19', 103000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.281', 'TIBIAL ENTRAPMENT USG', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.282', 'TILT TABLE TEST - 89.59', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.283', 'TILT TABLE TEST WITH STRESS TEST - 89.44', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.284', 'TIMPANOMETRI (AUDIOMETRY) - 95.41', 215000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.285', 'TONE DECAY (AUDIOMETRY) - 95.41', 372000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.286', 'TRANSESOPHAGEAL ECHOCARDIOGRAPHY (TEE) INTRAPROCEDURE INTERVENTION PERKUTAN /BEDAH - 88.73', 3311000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.287', 'TRANSTHORACAL ECHOCARDIOGRAPHY PEDIATRIK KOMPLEK -\n88.72', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.288', 'TRANSTHORACAL ECHOCARDIOGRAPHY PEDIATRIK SIMPLE -\n88.72', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.289', 'TRANSTORAKAL EKOKARDIOGRAFI (TTE) DENGAN BUBBLE TEST -\n88.72', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.290', 'TRANSVENOUS PACEMAKER INSERTION PASIEN KRITIS - 37.78', 924000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.291', 'TRIGGER FINGER USG', 258000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.292', 'TRIGGER POINT USG', 103000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.293', 'TTE PJB ADVANCE (3D, 4D, STRAIN) DENGAN SEDASI - 88.72', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.294', 'TTE PJB KOMPLEKS DENGAN ANESTESI - 88.72', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.295', 'TTE PJB KOMPLEKS DENGAN SEDASI - 88.72', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.296', 'TTE PJB KOMPLEKS TANPA SEDASI - 88.72', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.297', 'TTE PJB SIMPEL (ASD, VSD, PDA, POST DEVICE CLOSURE)\nDENGAN ANESTESI - 88.72', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.298', 'TTE PJB SIMPEL (ASD, VSD, PDA, POST DEVICE CLOSURE)\nDENGAN SEDASI - 88.72', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.299', 'TTE PJB SIMPEL (ASD, VSD, PDA, POST DEVICE CLOSURE) TANPA\nSEDASI - 88.72', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.300', 'ULTRASOUND GUIDING COMPRESSION THERAPY - 0.03', 1331000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.301', 'USG GUIDE INJEKSI INTRAARTIKULER - 88.79', 535000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.302', 'USG GUIDE INJEKSI STRUKTUR PERIARTIKULER - 88.79', 535000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.303', 'USG PEMBULUH DARAH', 3311000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.304', 'USG TIROID - 88.71', 310000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.305', 'USG TIROID - 88.71', 310000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.306', 'VENTILASI MEKANIK AMBULATOAR - 96.70', 2299000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.307', 'VESTIBULAR EVOKED MYOGENIC POTENSIAL (OTHER AUDITORY\nAND VESTIBULAR FUNCTION TESTS) - 95.46', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.308', 'VESTIBULAR EVOKED MYOGENIC POTENTIAL (VEMP).', 103000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.309', 'VIDEO HEAD IMPULSE TEST (OTHER AUDITORY AND\nVESTIBULAR FUNCTION TESTS) - 95.46', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.310', 'VISUAL EVOKED POTENTIAL (VEP)', 103000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.311', 'VISUAL REINFORCEMENT AUDIOMETRY (OTHER AUDITORY AND\nVESTIBULAR FUNCTION TESTS) - 95.46', 372000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.312', 'TREADMILL', 770000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TNO.0001', 'DIRECT PULP CAPPING PASIEN HANDCAPPED CHILDREN (PER\nGIGI)', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0002', 'EKSTRAKSI GIGI SULUNG DGN INFILTRASI ANASTESI (PER GIGI)', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0003', 'FISSURE SEALANT PASIEN HANDCAPPED CHILDREN (PER GIGI)', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0004', 'PERITONEAL EQUILIBRIUM TEST ( PET )', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0005', 'PULPECTOMI GIGI SULUNG POSTERIOR (PER GIGI) PASIEN', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0006', 'REPOSISI DISLOKASI MANDUBULA SECARA MANUAL', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0007', '[ENDOSCOPIC] POLYPECTOMY OF RECTUM', 6598000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0008', '04.81 BLOK DIAGNOSTIK PADA SARAF PERIFER', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0009', '6 MINUTES WALK TEST', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0011', '83.94 ASPIRASI CAIRAN BURSA', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0015', '9401 ADMINISTRATION OF INTELLIGENCE TEST', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0016', '9402 ADMINISTRATION OF PSYCHOLOGIC TEST', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0017', '9403 CHARACTER ANALYSIS', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0018', '9408 OTHER PSYCHOLOGIC EVALUATION AND TESTING', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0019', '9409 PSYCHOLOGIC MENTAL STATUS DETERMINATION, NOS', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0020', '9411 PSYCHIATRIC MENTAL STATUS DETERMINATION', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0021', '9423 NEUROLEPTIC THERAPY', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0022', '9425 OTHERPSYCHIATRIC DRUG THERAPY', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0023', '9426 SUBCONVULSIVE ELECTROSHOCKTHERAPY', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0024', '9427 OTHER ELECTROSHOCK THERAPY', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0025', '9429 OTHER PSYCHIATRIC SOMATOTHERAPY', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0026', '9432 HYPNOTHERAPY', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0027', '9433 BEHAVIOR THERAPY', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0028', '9436 PLAY PSYCHOTHERAPY', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0029', '9437 EXPLORATORY VERBAL PSYCHOTHERAPY', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0030', '9438 SUPPORTIVE VERBAL PSYCHOTHERAPY', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0031', '9439 OTHER INDIVIDUAL PSYCHOTHERAPY', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0032', '9441 GROUP THERAPY FOR PSYCHOSEXUAL DYSFUNCTION', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0033', '9442 FAMILY THERAPY', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0034', '9443 PSYCHODRAMA', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0035', '9444 OTHER GROUP THERAPY', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0036', 'ABOVE ELBOW CAST', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0037', 'ABR SWT', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0038', 'ABR UM', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0039', 'ABSES DOUGLAS - PUNKSI, DRAIN, LA', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0040', 'ACUPUNCTURE FOR ANESTHESIA', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0041', 'ACUTE PAIN SERVICE', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0042', 'AFF DRAIN / WSD / CVC', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0043', 'AFF DRAIN ORBITA', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0044', 'AFF JAHITAN', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0045', 'AFF JAHITAN KORNEO SKLERA', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0046', 'AFF JAHITAN ORBITA', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0047', 'AFF JAHITAN PALPEBRA', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0048', 'ALERGI SKIN TEST', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0049', 'ALVEOLEKTOMI (PER REGIO)', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0050', 'AMALGAM KLAS I (PER GIGI)', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0051', 'AMALGAM KLAS I PADA PASIEN HANDCAPPED CHILDREN', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0052', 'AMALGAM KLAS II DO/MO (PER GIGI)', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0053', 'AMALGAM KLAS II DO/MO PADA PASIEN HANDCAPPED\nCHILDREN', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0054', 'AMALGAM KLS II MOD (PER GIGI)', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0055', 'AMALGAM KLS II MOD PADA PASIEN HANDCAPPED CHILDREN', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0056', 'AMBIL DARAH VENA PD ANAK-ANAK', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0057', 'ANAL FISTULECTOMY', 3818000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0058', 'ANAL FISTULOTOMY', 3818000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0059', 'ANEL', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0060', 'ANESTESI LUAR OK PROSEDUR DIAGNOSTIK RESIKO BESAR', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0061', 'ANESTESI LUAR OK PROSEDUR DIAGNOSTIK RESIKO KECIL', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0062', 'ANESTESI LUAR OK PROSEDUR DIAGNOSTIK RESIKO SEDANG', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0063', 'ANESTESI LUAR OK PROSEDUR INTERVENSIONAL KHUSUS', 2652000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0064', 'ANESTESI LUAR OK PROSEDUR INTERVENSIONAL RESIKO\nBESAR', 2210000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0065', 'ANESTESI LUAR OK PROSEDUR INTERVENSIONAL RESIKO KECIL', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0066', 'ANESTESI LUAR OK PROSEDUR INTERVENSIONAL RESIKO\nSEDANG', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0067', 'ANGIOGRAFI ARTERI/VENA PERIFER', 3818000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0068', 'ANGIOPLASTI ARTERI/VENA PERIFER', 4582000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0069', 'ANGIOPLASTY DAN STENTING PADA AV SHUNT STENOSIS', 7918000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0070', 'ANGKAT ARCH BARR', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0071', 'ANGKAT DRAIN', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0072', 'ANGKAT DRAIN DI WAJAH', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0073', 'ANGKAT DRAIN DILUARWAJAH', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0074', 'ANGKAT DRAIN ORBITA', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0075', 'ANGKAT IMF', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0076', 'ANGKAT INTER DENTAL WIRING (IDW) (PER RAHANG)', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0077', 'ANGKAT INTER OSEUS WIRING (IOW) (PER RAHANG)', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0078', 'ANGKAT JAHITAN : >20 JAHITAN', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0079', 'ANGKAT JAHITAN : 01 - 05 JAHITAN', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0080', 'ANGKAT JAHITAN : 01 - 10 JAHITAN', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0081', 'ANGKAT JAHITAN : 01 - 20 JAHITAN', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0082', 'ANGKAT JAHITAN BOLA MATA', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0083', 'ANGKAT JAHITAN CONJUNTIVA / CORNEA', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0084', 'ANGKAT JAHITAN DILUAR WAJAH : > 20 JAHITAN', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0085', 'ANGKAT JAHITAN DILUAR WAJAH : 01 - 05 JAHITAN', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0086', 'ANGKAT JAHITAN DILUAR WAJAH : 01 - 10 JAHITAN', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0087', 'ANGKAT JAHITAN DILUAR WAJAH : 01 - 20 JAHITAN', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0088', 'ANGKAT JAHITAN PALPEBRA', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0089', 'ANGKAT JAHITAN POST OPERASI (PER RAHANG)', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0090', 'ANGKAT JAHITAN STSG : > 20 JAHITAN', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0091', 'ANGKAT JAHITAN STSG : 01 - 05 JAHITAN', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0092', 'ANGKAT JAHITAN STSG : 01 - 10 JAHITAN', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0093', 'ANGKAT JAHITAN STSG : 01 - 20 JAHITAN', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0094', 'ANGKAT JAHITAN WAJAH : > 20 JAHITAN', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0095', 'ANGKAT JAHITAN WAJAH : 01 - 05 JAHITAN', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0096', 'ANGKAT JAHITAN WAJAH : 01 - 10 JAHITAN', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0097', 'ANGKAT JAHITAN WAJAH : 01 - 20 JAHITAN', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0098', 'ANGKAT PERIODONTAL PACK', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0099', 'ANGKAT TAMPON HIDUNG', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0100', 'ANGKAT WIRE', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0101', 'ANOSCOPY', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0102', 'ANTENATAL CARE', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0103', 'ANUSKOPI/PROKTOSKOPI RIGID', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0104', 'APEK RESEKSI (PER GIGI)', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0105', 'APEKSIFIKASI (PER GIGI)', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0106', 'APEKSIFIKASI PADA PASIEN HANDCAPPED CHILDREN (PER\nGIGI)', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0107', 'APIKOEKTOMI (PER GIGI)', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0108', 'APT.DOWNEY TEST', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0109', 'ARTERIOGRAFI', 5498000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0110', 'ASPIRASI ABSES HATI', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0111', 'ASPIRATION OF THYROID FIELD', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0112', 'ASSESMEN DAN PENYUSUNAN RENCANA TERAPI', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0113', 'ASSESMENT NEUROBEHAVIOR', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0114', 'ASSESMENT PSIKOGERIATRI', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0115', 'ASSESSMENT BEDAH KOSMETIK', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0116', 'ASSESSMENT GERIATRI KOMPREHENSIF', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0117', 'ASSESSMENT KAKI DIABETIK', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0118', 'ATROPINISASI', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0119', 'AUDIOMETRI DNG / TANPA PEM. TAMBAHAN', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0120', 'AUDITORY STEADY STATE RESPONSE (ASSR)', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0121', 'BACK SLAB', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0122', 'BED SITE MONITOR SELAMA PERAWATAN', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0123', 'BEDAH LASER SEDERHANA BESAR', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0124', 'BEDAH LASER SEDERHANA KECIL', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0125', 'BEDAH LASER SEDERHANA SEDANG', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0126', 'BELLOQUE TAMPON', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0127', 'BELOW ELBOW CAST', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0128', 'BELOW KNEE (ANAK)', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0129', 'BELOW KNEE (DEWASA)', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0130', 'BELOW KNEE CAST', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0131', 'BGA', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0132', 'BIER\'S BLOCK', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0133', 'BILASAN BRONKUS', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0134', 'BIOMATIKLIPOMETRI', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0135', 'BIOMETRI + KERATOMETRI', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0136', 'BIOPSI BESAR', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0137', 'BIOPSI EXSISI', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0138', 'BIOPSI GASTER COLON', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0139', 'BIOPSI GINJAL ANAK', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0140', 'BIOPSI GINJAL DEWASA', 2210000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0141', 'BIOPSI HATI / FUNGSI ABSES HATI', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0142', 'BIOPSI KECIL', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0143', 'BIOPSI KULIT', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0144', 'BIOPSI LIVER', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0145', 'BIOPSI PARU', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0146', 'BIOPSI REKTUM', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0147', 'BIOPSI SEDANG', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0148', 'BIOPSI SERVIKS', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0149', 'BIOPSY OF ABDOMINAL WALL OR UMBILICUS', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0150', 'BIOPSY OF ANUS', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0151', 'BIOPSY OF PERIANAL TISSUE', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0152', 'BIOPSY OF PERIRECTAL TISSUE', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0153', 'BLANKET ROLL PENDINGIN / PEMANAS - PER HARI', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0154', 'BLEACING EKTERNAL', 3818000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0155', 'BLEACING INTERNAL', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0156', 'BOA, VIRA, TYMPAND', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0157', 'BODY JACKET - ANAK', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0158', 'BODY JACKET - DEWASA', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0159', 'BODYPLETHYSMOGRAPHY', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0160', 'BONE MARROW ASPIRATION (BMA)', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0161', 'BONE MARROW PUNCTURE (BMP)', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0162', 'BONGKAR DENTURE (GTC) (PER RAHANG)', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0163', 'BONGKAR RESTORASI (PER GIGI)', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0164', 'BONGKAR RESTORASI PASIEN HANDCAPPED CHILDREN (PER\nGIGI)', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0165', 'BREAST SIZING', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0166', 'BRONCHIAL TOILET - PER HARI', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0167', 'BRONCHOSCOPY', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0168', 'BRONKODILATOR TES', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0169', 'BUKA GIPS - ANAK', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0170', 'BUKA GIPS - DEWASA', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0171', 'BUSINASI ANUS / REKTUM', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0172', 'BUSINASI HURST', 3818000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0174', 'BWCK DIGITAL', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0175', 'CARDIOPULMONARY RESUSCITATION ( TERMASUK INTUBASI)', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0176', 'CATHETER UMBLICALIS', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0177', 'CEMENTING (CROWN & BRIDGE & PIN & RESTORASI YANG\nLEPAS)', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0178', 'CEPHALOMETRY ASSESSMENT', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0179', 'CETAK (SINGLE IPRESSION)', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0180', 'CETAK HIDUNG', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0181', 'CHARACTER ANALYSIS - 9403', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0182', 'CHEMICAL CAUTER KULIT (TCA)', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0183', 'CHEMICAL PEELING (AHA)', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0184', 'CHEMICAL RESURFASING (TCA)', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0187', 'CHEST FISIOTERAPI', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0188', 'CHEST TUBE INSERTION', 2210000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0190', 'CHLORETHYL SPRY', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0191', 'CIRCUMSISI ANAK', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0192', 'CIRCUMSISI DEWASA', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0193', 'CISTOTOMY', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0194', 'CLOSED (PERCUTANEOUS) [NEEDLE] BIOPSY OF LIVER', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0195', 'CLOSED [ENDOSCOPIC] BIOPSY OF ESOPHAGUS', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0196', 'CLOSED [ENDOSCOPIC] BIOPSY OF LARGE INTESTINE', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0197', 'CLOSED [ENDOSCOPIC] BIOPSY OF RECTUM', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0198', 'CLOSED [ENDOSCOPIC] BIOPSY OF SMALL INTESTINE', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0199', 'CLOSED [ENDOSCOPIC] BIOPSY OF STOMACH', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0200', 'CLOSED PERCUTANEUS NEEDLE BIOPSY OF THYROID GLAND', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0201', 'CO ANALYZER', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0202', 'COLAR & CUP', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0203', 'COLONOSCOPI', 4582000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0204', 'CONTOURING PER RAHANG', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0205', 'CONTRAST SENSITIVITY', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0206', 'COOLING TERAPHY SELAMA PERAWATAN', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0207', 'CORSET - ANAK', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0208', 'CORSET - DEWASA', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0209', 'COUTERISASI KOMPLEK', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0210', 'COUTERISASI SEDERHANA', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0211', 'CPR - PER 30 MENIT', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0212', 'CPX', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0213', 'CRANIAL PUNKSI', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0214', 'CROSS INSISI', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0215', 'CRYO COLPOSCOPY', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0216', 'CRYO SURGERY', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0217', 'CUKUR CILIA', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0218', 'DARK FIELD MOCROKOP', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0219', 'DC SHOCK - CARDIOVERSI', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0220', 'DEFIBRILASI', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0221', 'DEKTOSIFIKASI LAMBUNG / KULIT', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0222', 'DERMABRASI', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0223', 'DESENSITISASI', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0224', 'DEVITAL PULPOTOMI / MUMIFIKASI (PER GIGI)', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0225', 'DEVITAL PULPOTOMI / MUMIFIKASI PASIEN HANDCAPPED\nCHILDREN', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0226', 'DIAGNOSTIC ULTRASOUND OF ABDOMEN AND\nRETROPERITONE', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0227', 'DIGITAL EXAMINATION OF ENTEROSTOMY STOMA', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0228', 'DIGITAL EXAMINATION OF RECTUM', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0229', 'DILATACT PHYMOHSIS', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0230', 'DILATASI', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0231', 'DILATION OF ANAL SPHINCTER', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0232', 'DILATION OF ESOPHAGUS', 3182000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0233', 'DILATION OF RECTUM', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0234', 'DIRECT PULP CAPPING (PER GIGI)', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0235', 'DIRECT PULP CAPPING PASIEN HANDCAPPED CHILDREN (PER\nGIGI)', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0236', 'DORSUMSISI ANAK', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0237', 'DORSUMSISI DEWASA', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0238', 'DOUBLE LUMEN TUBE INSERTION', 2652000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0239', 'DRAINAGE ABSES HATI', 2652000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0240', 'DRAINASE', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0241', 'DRAINASE SEROMA SKIN GRAFTING', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0242', 'DUNLOP TRAKSI', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0243', 'E C T ( 1 PAKET )', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0244', 'EAR PIERCING PASCALOBULOPLASTY', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0245', 'ECG (MDR TB)', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0246', 'EGD DENGAN POLIPEKTOMI KECIL', 5498000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0247', 'EGD DENGAN POLIPEKTOMI SEDANG', 6598000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0248', 'EKSISI / EKSTERPASI BESAR', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0249', 'EKSISI / EKSTERPASI KECIL', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0250', 'EKSISI / EKSTERPASI SEDANG', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0251', 'EKSISI OPERKULUM / OPERKULEKTOMI (PER GIGI)', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0252', 'EKSISIONAL BIOPSI', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0253', 'EKSTERPASI - KULIT', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0254', 'EKSTERPASI CORPUS ALIENUM CONJUNCTIVA / CORNEA', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0255', 'EKSTERPASI LITHIASIS / GRANULOMA', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0256', 'EKSTERPASI POLIP', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0257', 'EKSTIRPASI CORPUS ALIENUM', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0258', 'EKSTIRPASI EPULIS (PER REGIO)', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0259', 'EKSTIRPASI FIBROMA (PER REGIO)', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0260', 'EKSTIRPASI KISTA RADIKULARIS (PER GIGI)', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0261', 'EKSTIRPASI MUKOKEL (PER MUKOKEL)', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0262', 'EKSTIRPASI ODONTOMA/OSTEOMA/TORUS (PER REGIO)', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0263', 'EKSTRAKSI CORPUS HIDUNG', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0264', 'EKSTRAKSI CORPUS MATA', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0265', 'EKSTRAKSI CORPUS PADA OTOT/JARINGAN', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0266', 'EKSTRAKSI GIGI PERMANEN DENGAN PENYULIT (PER GIGI)', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0267', 'EKSTRAKSI GIGI PERMANEN TANPA PENYULIT (PER GIGI)', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0268', 'EKSTRAKSI GIGI SULUNG DGN INFILTRASI ANASTESI (PER GIGI)', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0269', 'EKSTRAKSI GIGI SULUNG DGN TOPIKAL ANASTESI (PER GIGI)', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0270', 'EKSTRAKSI KORPUS ALIENUM THT DERAJAT 1', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0271', 'EKSTRAKSI KORPUS ALIENUM THT DERAJAT 2', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0272', 'EKSTRAKSI KUKU (ROSERPLASTY)', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0273', 'EKSTRAKSI PREMATUR GIGI SULUNG (DIRUANG BAYI) (PER\nGIGI)', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0274', 'EKSTUBASI ENDOTRAKEA', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0275', 'ELASTIC BANDAGE', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0276', 'ELIMINASI RACUN PADA INTOKSIKASI', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0277', 'ENDO INTRAKANAL ANTERIOR (PER GIGI)', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0278', 'ENDO INTRAKANAL ANTERIOR PASIEN HANDCAPPED\nCHILDREN', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0279', 'ENDO INTRAKANAL POSTERIOR (PER GIGI)', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0280', 'ENDO INTRAKANAL POSTERIOR PASIEN HANDCAPPED\nCHILDREN', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0281', 'ENDOSCOPIC CONTROL OF GASTRIC OR DUODENAL BLEEDING', 6598000, 'TINDAKAN NON OPERATIF'); +INSERT INTO `tarif_rs` (`ID_Tarif_RS`, `Tindakan_RS`, `Tarif_RS`, `Kategori_RS`) VALUES +('R.TNO.0282', 'ENDOSCOPIC POLYPECTOMY OF LARGE INTESTINE', 7918000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0283', 'ENDOSCOPIC RETROGRADE CHOLANGIOGRAPHY [ERC]', 9502000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0284', 'ENDOSCOPY OF SMALL INTESTINE THROUGH ARTIFICIAL ST', 3818000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0285', 'ENDOSKOPI', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0286', 'ENDOSKOPI ESOPHAGUS GASTRODUODENOUSCOPY', 3818000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0287', 'ENUKLEASI KISTA RAHANG (PER REGIO)', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0288', 'EPILASI', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0289', 'ERCP DIAGNOSTIK', 9502000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0290', 'ERCP TERAPEUTIK', 9502000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0291', 'ERGOCYCLE / EXCUSICE TEST', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0292', 'ERYTHROCYTAFARESIS', 6598000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0293', 'ESOPHAGEAL MANOMETRY', 5498000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0294', 'ESOPHAGOGASTRODUODENOSCOPY [EGD] WITH CLOSED\nBIOPSI', 3818000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0295', 'EVACUATION OF THROMBOSED HEMORRHOIDS', 2652000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0296', 'EVAKUASI CAIRAN PLEURA (THORACO CENCIS)', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0297', 'EVAKUASI MANUAL SKIBALA/FEKALIT', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0298', 'EVAKUASI PLEURA EFUSI', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0299', 'EVAKUASI-DRAINASE HEMATOM', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0300', 'EVALUASI GRAFT', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0301', 'EVISERASI', 2210000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0302', 'EXCHANGE TRANSFUSION', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0303', 'EXCISION OF HEMORRHOIDS', 2652000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0304', 'EXCOCHLEASI BESAR', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0305', 'EXCOCHLEASI KECIL', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0306', 'EXCOCHLEASI SEDANG', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0307', 'EXPLORASI', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0308', 'EXTUBASI ETT', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0309', 'EYCOCHEASI', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0310', 'F O B', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0311', 'F.N.A.B.', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0312', 'FAAL PARU', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0313', 'FFA', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0314', 'FIBEROPTIK BRONKOSKOPI', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0315', 'FIBROSCAN', 2652000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0316', 'FIKSASI JARI', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0317', 'FIKSASI LUAR HIDUNG', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0318', 'FISIOTERAPI DADA ANAK SELAMA PERAWATAN', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0319', 'FISIOTERAPI DADA PER EPISODE', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0320', 'FISSURE SEALANT (PER GIGI)', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0321', 'FISSURE SEALANT PASIEN HANDCAPPED CHILDREN (PER GIGI)', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0322', 'FITTING LENSA KONTAK', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0323', 'FIXASI FRAKTUR COSTAE', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0324', 'FLEXIBLE SIGMOIDOSCOPY', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0325', 'FLOURESCEIN TEST', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0326', 'FLUROSKOPI', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0327', 'FORCE SLAB', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0328', 'FORCEPS EXTERPASI / VACUM', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0329', 'FOTO FUNDUS', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0330', 'FOTO TERAPI / NB UVB', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0331', 'FOTO TERAPI BESAR - PER HARI', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0332', 'FOTO TERAPI KECIL - PER HARI', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0333', 'FOTO TERAPI SEDANG - PER HARI', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0334', 'FRAKTUR PROS.DENTOALV. DENGAN IDW (PER RAHANG)', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0335', 'FRAKTUR RAHANG REDUKSI TERBUKA +IOW+IDW (PER\nRAHANG)', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0336', 'FRAKTUR RAHANG REDUKSI TERBUKA +IOW+IDW+IMW(RA &\nRB)', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0337', 'FRAKTUR RAHANG REDUKSI TERTUTUP +IDW+IMW (PER\nRAHANG)', 2652000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0338', 'FRAKTUR RAHANG REDUKSI TERTUTUP +IMW (PER RAHANG)', 2210000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0339', 'FRAKTUR SENDI REDUKSI TERTUTUP +IMW+PESAWAT\nMONOBLOK', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0340', 'FRENECTOMY', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0341', 'FULGURASI', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0342', 'FULL CAST CROWN (PER GIGI)', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0343', 'FULL CAST CROWN (PER GIGI) PASIEN HANDCAPPED CHILD', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0344', 'FULL DENTURE 1 RAHANG RA & RB', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0345', 'FULL DENTURE 2 RAHANG RA & RB', 3818000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0346', 'FULL DENTURE,MUKOSA FLABBY/RIDGE DATAR', 5498000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0347', 'FUNDUSKOPI', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0348', 'FUNGSI ASITES', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0349', 'FUNGSI GENU ( SENDI )', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0350', 'GALVANIC IONTOPHORESIS', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0351', 'GANTI DRAIN POST PERAWATAN ABSES', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0352', 'GANTI HAS POST EKTIRPASI KISTA/TUMOR', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0353', 'GANTI KARET ARCH BARR', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0354', 'GANTI TAMPON HIDUNG', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0355', 'GASTRIC COOLING', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0356', 'GASTRIC FREEZING', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0357', 'GASTRIC LAVAGE', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0358', 'GEMELLI SPONTAN, SPONTAN', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0359', 'GEMELLI SPONTAN, TINDAKAN PARABDOMINAL', 2210000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0360', 'GEMELLI SPONTAN, TINDAKAN PERVAGINA', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0361', 'GIGI TIRUAN BERIKUTNYA', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0362', 'GIGI TIRUAN CEKAT PORSELEN (FUSE MENTAL) PER GIGI', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0363', 'GIGI TIRUAN CEKAT PORSELEN ALL CERAMIC (ANTERIOR)', 3818000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0364', 'GIGI TIRUAN CEKAT PORSELEN ALL CERAMIC (POSTERIOR)', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0365', 'GIGI TIRUAN VALPLAST PLUS 1 GIGI', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0366', 'GINGIVAL TIRUAN PER REGIO', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0367', 'GINGIVEKTOMI (PER REGIO)', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0368', 'GINGIVOPLASTI (PER REGIO)', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0369', 'GIPS JARI TANGAN', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0370', 'GIPS SEPATU - ANAK', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0371', 'GIPS SEPATU - DEWASA', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0372', 'GIPS SEPATU / WALKING CAST', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0373', 'GLASS IONOMER CEMENT KLS I', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0374', 'GLASS IONOMER CEMENT KLS I PASIEN HANDCAPPED\nCHILDREN', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0375', 'GLASS IONOMER CEMENT KLS II MESIAL/DISTAL', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0376', 'GLASS IONOMER CEMENT KLS III MESIAL/DISTAL', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0377', 'GLASS IONOMER CEMENT KLS IV MESIAL/DISTAL', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0378', 'GLASS IONOMER CEMENT KLS V\nBUKAL/PALATAL/LINGUAL/LABIAL/SERVIKAL', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0379', 'GLISON TRAKSI', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0380', 'GONIOSCOPY / THREE MIRROR LENS', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0381', 'GRAM + BASAH', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0382', 'GROSS DECONTAMINATION', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0383', 'GTSL GIGI BERIKUTNYA (PER GIGI)', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0384', 'GTSL 1 GIGI PERTAMA', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0385', 'GTSL 1 GIGI PERTAMA AKRILIK', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0386', 'GTSL DGN RIDGE ALVEOLAR DATAR/MUKOSA FLABBY (GIGI)', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0387', 'GTSL FRAME METAL (4 GIGI PERTAMA) VALPLAST', 3818000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0388', 'GTSL FRAME METAL 1 GIGI PERTAMA', 2652000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0389', 'GTSL FRAME METAL DGN RIDGE ALVEOLAR DATAR/MUKOSA\nFLABBY', 2210000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0390', 'GTSL FRAME METAL GIGI BERIKUTNYA (PER GIGI) AKRILI', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0391', 'GTSL FRAME METAL GIGI BERIKUTNYA (PER GIGI) VALPLA', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0392', 'HEATHING PERINEUM', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0393', 'HEATING SEKUNDER', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0394', 'HEATING TENDON', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0395', 'HECHTING : > 20 JAHITAN', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0396', 'HECHTING : 01 - 05 JAHITAN', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0397', 'HECHTING : 01 - 10 JAHITAN', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0398', 'HECHTING : 01 - 20 JAHITAN', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0399', 'HECTING - KOSMETIC : > 15 JAHITAN', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0400', 'HECTING - KOSMETIC : 01 - 05 JAHITAN', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0401', 'HECTING - KOSMETIC : 01 - 10 JAHITAN', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0402', 'HECTING - KOSMETIC : 01 - 15 JAHITAN', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0403', 'HELMET REMOVAL', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0404', 'HEMI SPICA - ANAK', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0405', 'HEMI SPICA - DEWASA', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0406', 'HEMISEKSI DENTAL (PER GIGI)', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0407', 'HEMODIAFILTRASI', 2652000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0409', 'HEPARINISASI (LMWH)', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0410', 'HEPARINISASI (UNFRACTIONATED HEPARIN)', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0411', 'HOLDER / BP.MONITOR', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0412', 'HYDROTUBASI, LA', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0413', 'HYPNOTHERAPY', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0414', 'IABP - INSERTION AND REMOVAL', 4582000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0415', 'IMMEDIATE DENTURE', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0416', 'IMMEDIATE OVER DENTURE', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0417', 'IMMUNISASI / VAKSINASI', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0418', 'IMMUNOFENOTYPING SUMSUM TULANG/DARAH TEPI/KGB', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0419', 'IMMUNOSUPRESIVE PULSE', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0420', 'IMUNISASI (DEWASA)', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0421', 'IMUNISASI BCG', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0422', 'IMUNISASI CAMPAK', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0423', 'IMUNISASI DPT COMBO', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0424', 'IMUNISASI DT', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0425', 'IMUNISASI HB', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0426', 'IMUNISASI TD', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0427', 'IMUNISASI TT / Ca CERVIX', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0428', 'IMUNOTERAPY', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0429', 'INCLINE BITE PLANE : PELEPASAN INCLINE BITE PLANE', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0430', 'INCLINE BITE PLANE : PEMASANGAN INCLINE BITE PLANE', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0431', 'INCUBASI ENDOTRACHEAL', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0432', 'INCUBATOR - PER HARI', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0433', 'INDDIRECT PULP CAPPING (PER GIGI)', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0434', 'INDDIRECT PULP CAPPING (PER GIGI) PASIEN HANDCAPPED', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0435', 'INDIRECT OPHTHALMOSCOPY', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0436', 'INFULTRASI ANASTHESI', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0437', 'INFUS STEROID MEGADOSE', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0438', 'INFUS+ DRIP+ TRANFUSI', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0439', 'INJECTIE (MDR TB)', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0440', 'INJECTION OF HEMORRHOIDS', 2652000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0441', 'INJECTION OF INSULIN (CONTINUOUS INSULIN TREATMENT)', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0442', 'INJEKSI', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0443', 'INJEKSI ANTIBIOTIKA SUB ESCHAR (KLISIS)', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0444', 'INJEKSI BOTOX BESAR', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0445', 'INJEKSI BOTOX KECIL', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0446', 'INJEKSI BOTOX SEDANG', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0447', 'INJEKSI EPO SUBCUTAN', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0448', 'INJEKSI ETHANOL INTRATHYROID DGN TUNTUNAN USG', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0449', 'INJEKSI FERUS SULFAT', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0450', 'INJEKSI IMUNOLOGI', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0451', 'INJEKSI INTRA ARTIKULER', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0452', 'INJEKSI INTRALESI BESAR', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0453', 'INJEKSI INTRALESI KECIL', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0454', 'INJEKSI INTRALESI SEDANG', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0455', 'INJEKSI KASUS NYERI SEDERHANA', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0456', 'INJEKSI KEMOTERAPI INTRATEKAL', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0457', 'INJEKSI KHUSUS KASUS NEUROLOGI', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0458', 'INJEKSI KORTIKOSTEROID STRUKTUR PERIARTIKULAR', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0459', 'INJEKSI PRAMEDIKASI', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0460', 'INJEKSI SCLEROTHERAPY', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0461', 'INJEKSI SITOSTATIKA', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0462', 'INJEKSI SLEROTING AGENT', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0463', 'INJEKSI TESTOSTERON', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0464', 'INJEKSI TRIAMCINOLONE', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0465', 'INLAY KOMPOSIT DO/MO (PER GIGI)', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0466', 'INLAY KOMPOSIT DO/MO (PER GIGI) PASIEN HANDCAPPED', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0467', 'INLAY KOMPOSIT MOD (PER GIGI)', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0468', 'INLAY KOMPOSIT MOD (PER GIGI) PASIEN HANDCAPPED\nCHILDREN', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0469', 'INLAY LOGAM DO/MO (PER GIGI PASIEN HANDCAPPED\nCHILDREN', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0470', 'INLAY LOGAM DO/MO (PER GIGI)', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0471', 'INLAY LOGAM MOD (PER GIGI)', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0472', 'INLAY LOGAM MOD (PER GIGI) PASIEN HANDCAPPED\nCHILDREN', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0473', 'INLAY PORCELAIN DO/MO (PER GIGI)', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0474', 'INLAY PORCELAIN DO/MO (PER GIGI) PASIEN HANDCAPPED', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0475', 'INLAY PORCELAIN MOD (PER GIGI)', 3182000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0476', 'INLAY PORCELAIN MOD (PER GIGI) PASIEN HANDCAPPED\nCHILDREN', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0477', 'INSERI CVP', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0478', 'INSERSI KATETER VENA SENTRAL DENGAN USG', 2210000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0479', 'INSERSI KATETER VENA SENTRAL TANPA USG', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0480', 'INSERSI KATETER VENA SENTRAL UNTUK HEMODIALISA', 2652000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0481', 'INSERSI NASOGASTRIC TUBE DENGAN PENYULIT', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0482', 'INSERSI NASOGASTRIC TUBE DENGAN SEDASI', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0483', 'INSERSI NASOGASTRIC TUBE TANPA PENYULIT', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0484', 'INSERSI PICC CAVAVIX', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0485', 'INSERTI / EKSTRAKSI IUD', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0486', 'INSERTI EKSTRAKSI NORPLANT', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0487', 'INSERTION OF (NASO-)INTESTINAL TUBE', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0488', 'INSERTION OF OTHER (NASO-)GASTRIC TUBE', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0489', 'INSERTION OF RECTAL TUBE', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0490', 'INSERTION OF SENGSTAKEN TUBE', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0491', 'INSISI ABSCES', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0492', 'INSISI ABSES BARTHOLINI', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0493', 'INSISI ABSES BESAR', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0494', 'INSISI ABSES EKTRA / INTRA ORAL', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0495', 'INSISI ABSES KECIL', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0496', 'INSISI ABSES KOMPLEKS', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0497', 'INSISI ABSES SEDANG', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0498', 'INSISI BARTOLINI', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0499', 'INSISI BESAR', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0500', 'INSISI CHALAZION / HORDEOLUM / MILIA', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0501', 'INSISI KECIL', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0502', 'INSISI KOMPLEKS', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0503', 'INSISI SEDANG', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0504', 'INSISI THT', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0505', 'INSISI/EKSISI BIOPSI INTRA/EXTRA ORAL', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0506', 'INSISIONAL BIOPSY', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0507', 'INSPECULO', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0508', 'INTERCOSTAL NERVE BLOCK', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0509', 'INTERVENSI KATUP (PTMC, BVP, DLL)', 9502000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0510', 'INTERVENSI KONGINETAL (ADO, ASO, DLL)', 9502000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0511', 'INTERVENSI PERIFER (PTA, PTRA )', 9502000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0512', 'INTESTINAL BIOPSY, SITE UNSPECIFIED', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0513', 'INTRA AORTIC BALLOON PUMP', 6598000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0514', 'INTRA OSSEUS', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0515', 'INTRA-ARTERIAL LINE INSERTION', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0516', 'INTRACRANIAL PRESSURE MONITOR INSERTION', 6598000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0517', 'INTRATECAL SITOSTATIKA - PER HARI', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0518', 'INTUBASI (PASANG ETT)', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0519', 'INTUBASI DAN EKSTUBASI ETT', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0520', 'INTUBASI DAN EKSTUBASI PIPA ENDOTRAKEAL', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0521', 'INTUBASI ENDOTRACHEAL', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0522', 'INTUBASI ENDOTRAKHEAL DENGAN PENYULIT', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0523', 'INTUBASI ENDOTRAKHEAL TANPA PENYULIT', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0524', 'INTUBASI NASOTRAKEA', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0525', 'IRIGASI MATA', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0526', 'IRIGASI TELINGA', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0527', 'IRIGASI TRAUMA KIMIA', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0528', 'IRRIGATION OF GASTROSTOMY OR ENTEROSTOMY', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0529', 'IV A, DETEKSI DINI KANKER', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0530', 'JAHIT LUKA SEKUNDER', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0531', 'KATERISASI DIAGNOSTIK KONGINETAL', 5498000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0532', 'KATERISASI INVASIF MONITOR - PER HARI', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0533', 'KATERISASI JANTUNG ANGIOGRAFI KORONER', 9502000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0534', 'KATERISASI JANTUNG ANGIOPLASTI KORONER', 9502000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0535', 'KATERISASI JANTUNG BMV', 9502000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0536', 'KATERISASI JANTUNG DIAGNOSTIK NON KORONER', 5498000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0537', 'KATETERISASI PENUTUPAN ASD/VSD/PDA', 4582000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0538', 'KATETERISASI RET. URINE', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0539', 'KATETERISASI/ANGIOGRAFI KORONER /DIAGNOSTIK', 5498000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0540', 'KAUSTIK KONKA', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0541', 'KAUTER ELEKTRIK (ELECTRIC CAUTER) BESAR', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0542', 'KAUTER ELEKTRIK (ELECTRIC CAUTER) KECIL', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0543', 'KAUTER ELEKTRIK (ELECTRIC CAUTER) SEDANG', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0544', 'KAUTERISASI CHEMIS (CHEMOCAUTER)', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0545', 'KEGAWATAN PSIKIATRI', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0546', 'KEMOTERAPI', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0547', 'KENACORT -A. ID ( OBAT BELI SENDIRI )', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0548', 'KOCHER - ANAK', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0549', 'KOCHER CAST', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0550', 'KOCHER - DEWASA', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0551', 'KOLPOSKOPI', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0552', 'KOMPLIKASI EKTRAKSI GIGI DGN OBAT-OBATAN (PER GIGI)', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0553', 'KOMPLIKASI EKTRAKSI GIGI DGN TINDAKAN BEDAH (PER GIGI)', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0554', 'KOMPOSIT LC KLS I (PER GIGI)', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0555', 'KOMPOSIT LC KLS I (PER GIGI) PASIEN HANDCAPPED\nCHILDREN', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0556', 'KOMPOSIT LC KLS II DO/MO (PER GIGI)', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0557', 'KOMPOSIT LC KLS II DO/MO (PER GIGI) PASIEN HANDCAPPED', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0558', 'KOMPOSIT LC KLS II MOD (PER GIGI)', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0559', 'KOMPOSIT LC KLS II MOD (PER GIGI) PASIEN HANDCAPPED', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0560', 'KOMPOSIT LC KLS III DISTAL/MESIAL (PER GIGI)', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0561', 'KOMPOSIT LC KLS III DISTAL/MESIAL (PER GIGI)', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0562', 'KOMPOSIT LC KLS IV DISTAL/MESIAL (PER GIGI)', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0563', 'KOMPOSIT LC KLS IV DISTAL/MESIAL (PER GIGI) PASIEN', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0564', 'KOMPOSIT LC KLS V BUKAL/LABIAL/LINGUAL/PALATAL (PER\nGIGI)', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0565', 'KOMPOSIT LC KLS VI (PER GIGI)', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0566', 'KOMPOSIT LC KLS VI (PER GIGI) PASIEN HANDCAPPED\nCHILDREN', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0567', 'KOMPRES HANGAT / DINGIN', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0568', 'KOMPRESI BIMANUIL', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0569', 'KONSELING DASAR ADIKSI NAPZA', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0570', 'KONSELING HIV', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0571', 'KONSELING POLI VCT (PER KALI)', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0572', 'KONSULTASI DAN PENDAMPINGAN TINDAKAN OPERASI\nREGUL', 2210000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0573', 'KONTROL GRINDING', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0574', 'KONTROL IUD', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0575', 'KUMBAH LAMBUNG PER EPISODE', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0576', 'KURETASE PER REGIO', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0577', 'KURETASE PERIODONTAL >1/4 s/d 1/2 RAHANG', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0578', 'KURETASE PERIODONTAL < 1/4 RAHANG', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0579', 'KURETASE PERIODONTAL > 1/2 RAHANG', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0580', 'LABIAL VENEER/KOMPOSIT (PER GIGI)', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0581', 'LABIAL VENEER/KOMPOSIT (PER GIGI) PASIEN HANDCAPPED', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0582', 'LARVA MIGRAN CRYOTHERAPI', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0583', 'LASER', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0584', 'LASER CO 2 ABLASI', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0585', 'LASER CO 2 RESURFASING', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0586', 'LATIHAN VERTIGO', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0587', 'LAVEMENT / STERILISASI USUS', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0588', 'LAVEMENT ANAK', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0589', 'LEEP', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0590', 'LEKOPHARESIS', 3818000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0591', 'LEPAS IUD', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0592', 'LEPAS PESSARIUM', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0593', 'LEPAS SUSUK', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0594', 'LEUCOREDUCTION (LEUCOFARESIS)', 6598000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0595', 'LIGASI VARICES ESOPHAGUS', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0596', 'LIGATION OF ESOPHAGEAL VARICES', 5498000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0597', 'LIGATION OF GASTRIC VARICES', 6598000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0598', 'LIGATION OF HEMORRHOIDS', 2652000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0599', 'LOADING DOSE PHENYTOIN', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0600', 'LOBULOPLASTI', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0601', 'LOCAL EXCISION OF RECTAL LESION OR TISSUE', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0602', 'LONG ARM CAST', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0603', 'LONG LEG CAST ANAK', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0604', 'LONG LEG CAST DEWASA', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0605', 'LOUSET MAURESEAU', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0606', 'LOW VISION (VISUS + STREAK + KONTRAS + KONFRONTASI)', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0607', 'LUMBAL PUNKSI - ANAK', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0608', 'LUMBAL PUNKSI - DEWASA', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0609', 'MAHKOTA AKRILIK 1 GIGI', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0610', 'MAHKOTA AKRILIK 1 GIGI PASIEN HANDCAPPED CHILDREN', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0611', 'MAHKOTA LOGAM 1 GIGI', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0612', 'MAHKOTA LOGAM 1 GIGI PASIEN HANDCAPPED CHILDREN', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0613', 'MAHKOTA PIGURA 1 GIGI', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0614', 'MAHKOTA PIGURA 1 GIGI PASIEN HANDCAPPED CHILDREN', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0615', 'MAHKOTA PORSELEN (FUSE MENTAL) PER GIGI', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0616', 'MAHKOTA PORSELEN ALL CERAMIC (POSTERIOR)', 2210000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0617', 'MAHKOTA SEMENTARA 1 GIGI', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0618', 'MAHKOTA SEMENTARA 1 GIGI PASIEN HANDCAPPED\nCHILDREN', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0619', 'MAJELIS PENGUJI KESEHATAN JIWA (MPK) DAN VISUM ET', 2210000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0620', 'MANDIBULAR BANDAGE', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0621', 'MANTOUX TEST - DEWASA', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0622', 'MANTOUXT TEST', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0623', 'MANUAL PLACENTA', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0624', 'MANUAL REDUCTION OF ENTEROSTOMY PROLAPSE', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0625', 'MANUAL REDUCTION OF RECTAL PROLAPSE', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0626', 'MARSUPIALISASI', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0627', 'MARSUPIALISASI KISTA/RANULA (WINDOW) (PER GIGI)', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0628', 'MATRAS ANTI DECUBITUS - PER HARI', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0629', 'MAXILLOMANDIBULAR RELATIONSHIP', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0630', 'MELAKUKAN BAGGING SELAMA PERAWATAN', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0631', 'MELAKUKAN DEFIBRILASI/CARDIOVERSI', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0632', 'MELAKUKAN INJEKSI IM/IV/SC/IC', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0633', 'MELEPAS ICP', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0634', 'MELEPAS ARTERIAL LINE', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0635', 'MELEPAS CVP', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0636', 'MELEPAS DOWER KATETER', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0637', 'MELEPAS FOWLEY KATETER', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0638', 'MELEPAS INFUS/IV LINE', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0639', 'MELEPAS KATETER URETRA', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0640', 'MELEPAS KATETER URETROPLASTY', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0641', 'MELEPAS NGT', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0642', 'MELEPAS SKIN TRAKSI', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0643', 'MELEPAS SPLINT DNL', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0644', 'MELEPAS TAMPON', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0645', 'MELEPAS TRACHEOSTOMI', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0646', 'MELEPAS WSD', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0647', 'MEMASANG DARMBUIS', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0648', 'MEMASANG DOLLES VERBAND', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0649', 'MEMASANG DOWER KATETER', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0650', 'MEMASANG FOWLEY KATETER', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0651', 'MEMASANG GIPS NASLE', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0652', 'MEMASANG GIPS PALK', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0653', 'MEMASANG GLISON TAKSI', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0654', 'MEMASANG INFUS ANAK - PER HARI', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0655', 'MEMASANG KATETER ANAK', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0656', 'MEMASANG MATRAS ANTIDECUBITUS - PER EPISODE', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0657', 'MEMASANG NGT', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0658', 'MEMASANG OROFARINGEAL / NASOFARINGEAL TUBE', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0659', 'MEMASANG PELVIS SLING', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0660', 'MEMASANG PLUG', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0661', 'MEMASANG RANSEL VERBAND', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0662', 'MEMASANG SKELETAL TRAKSI', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0663', 'MEMASANG SKIN TRAKSI', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0664', 'MEMASANG TAMPON', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0665', 'MEMASANG THORAKS DRAIN', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0666', 'MEMASANG THORAKS FIXATION', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0667', 'MEMASANG U-SLAB', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0668', 'MEMASANG VELLPEAU VERBAND', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0669', 'MEMASUKKAN OBAT SITOSTATIKA - PER 1 PROGRAM', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0670', 'MEMASUKKAN OBAT STREPTOKINASE', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0671', 'MEMBERIKAN NEBULIZER LEWAT VENTILATOR - PER EPISODE', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0672', 'MEMBERIKAN TRANSFUSI DARAH', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0673', 'MEMBUAT GIPS PALK', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0674', 'MEMOTONG COLOSTOMI', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0675', 'MEMPERTAHANKAN SUHU TUBUH', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0676', 'MENCABUT CYSTOTOMI', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0677', 'MENCABUT WSD', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0678', 'MENDAMPINGI PASIEN KRITIS UNTUK TINDAKAN DIAGNOSTIK', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0679', 'MENGAMBIL SPESIMEN DARAH/URINE/SPUTUM/PUS/\nCAIRAN', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0680', 'MENGAMBIL SPESIMEN SPUTUM MELALUI ETT', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0681', 'MENGAMBIL SPESIMEN DARAH / URINE / SPUTUM PER HARI', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0682', 'MENGHITUNG KEBUTUHAN KALORI PER EPISODE', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0683', 'MENGHITUNG OSMOLARITAS PLASMA PER EPISODE', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0684', 'MENGUKUR CVP - PER EPISODE', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0685', 'MENIMBANG BERAT BADAN DENGAN PASIEN DIATAS TEMPAT', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0686', 'MENOMETRORAGHIA', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0687', 'MENYELENGGARAKAN FAMILY MEETING', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0688', 'MENYUNTIK KELOID', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0689', 'MERAWAT ARTERIAL LINE', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0690', 'MERAWAT COLOSTOMY/BOGOTA BAG - PER EPISODE', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0691', 'MERAWAT DEKUBITUS - PER HARI', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0692', 'MERAWAT ICP', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0693', 'MERAWAT JENAZAH', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0694', 'MERAWAT LUKA TANPA HECHTING', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0695', 'MERAWAT POTONG POST COLOSTOMY', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0696', 'MEREKAM DAN INTEPRETASI ECG', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0697', 'METHYLPREDNISOLONE MEGA DOSE IV', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0698', 'METODE KANGGURU', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0699', 'MICRONEEDLE BESAR', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0700', 'MICRONEEDLE KECIL', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0701', 'MICRONEEDLE SEDANG', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0702', 'MIKRO DERMABRASI DIAMOND', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0703', 'MIKRO DERMABRASI KRISTAL', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0704', 'MIKRO DERMOBRASI DIAMOND', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0705', 'MIKRO DERMOBRASI KRISTAL', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0706', 'MIKROSKOP TELINGA', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0707', 'MINERVA ANAK', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0708', 'MINERVA DEWASA', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0709', 'MONITORING INVASIF BLOOD PRESSURE PER EPISODE', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0710', 'MONITORING ANESTESIA CARE DENGAN PENYULIT', 2210000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0711', 'MONITORING ANESTESIA CARE TANPA PENYULIT', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0712', 'MONITORING PASIEN CPAP PER EPISODE', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0713', 'MONITORING PASIEN SELAMA PEMAKAIAN CRRT PER EPISODE', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0714', 'MORFOLOGI DARAH TEPI', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0715', 'MULTIPLE INCISI', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0716', 'NASOENDOSKOPI', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0717', 'NCT (NON CONTACT TONOMETRI)', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0719', 'NEBULIZER - PER HARI', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0720', 'NEEDLE DECOMPRESSION', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0721', 'NEKROTOMI', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0722', 'NIGHT GUARD PER RAHANG', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0723', 'NON INVASIVE VENTILATION (EPANFAREOLIS)', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0724', 'NON INVASIVE VENTILATION W/PEEP (ASCICTED) / JAM', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0725', 'NST / AT', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0726', 'OAE SWT', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0727', 'OAE UM', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0728', 'OBSERVASI 12 JAM', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0729', 'OBSERVASI 24 JAM', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0730', 'OBSERVASI HIS, DJJ - PER HARI', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0731', 'OBSEVASI PASIEN - PER 2 JAM', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0732', 'OBTURATOR BAYI (AKRILIK)', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0733', 'OBTURATOR BAYI (SILIKON)', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0734', 'OBTURATOR TANPA GIGI', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0735', 'OCCLUSAL ADJUSMENT', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0736', 'OCT ANTERIOR', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0737', 'ODONTEKTOMI BERAT DGN ANAESTESI LOKAL (PER GIGI)', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0738', 'ODONTEKTOMI RINGAN DGN ANAESTESI LOKAL (PER GIGI)', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0739', 'ODONTEKTOMI SEDANG DGN ANAESTESI LOKAL (PER GIGI)', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0740', 'OKLUSAI ADJUSTMENT RAHANG ATAS DAN RAHANG BAWAH', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0741', 'ONE VISIT ENDODONTIK ANTERIOR (PER GIGI)', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0742', 'ONE VISIT ENDODONTIK ANTERIOR (PER GIGI) PASIEN\nHANDCAPPED', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0743', 'ONE VISIT ENDODONTIK POSTERIOR (PER GIGI)', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0744', 'ONLAY/UPLAY (PER GIGI)', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0745', 'ONLAY/UPLAY (PER GIGI) PASIEN HANDCAPPED CHILDREN', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0746', 'ORAL HYGIENE PASIEN TOTAL CARE', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0747', 'ORTODONTIK : PAKET ORTODONTIK LEPASAN (PER RAHANG)', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0748', 'ORTODONTIK : PAKET ORTODONTIK REMOFIX (PER RAHANG)', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0749', 'ORTODONTIK : KONTROL ORTODONTIK CEKAT', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0750', 'ORTODONTIK : KONTROL ORTODONTIK LEPASAN', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0751', 'ORTODONTIK : KONTROL ORTODONTIK REMOFIX', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0752', 'ORTODONTIK : PASANG BREKET GIGI IMPAKSI (PER RAHANG', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0753', 'ORTODONTIK : PASANG MINISCREW (PER RAHANG)', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0754', 'ORTODONTIK : PASANG WAFER (PER RAHANG)', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0755', 'ORTODONTIK : PELEPASAN ALAT ORTODONTIK CEKAT (PER\nRAHANG)', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0756', 'ORTODONTIK : PELEPASAN ALAT ORTODONTIK REMOFIX (PER\nRAHANG)', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0757', 'ORTODONTIK : PEMBUATAN ALAT ORTODONTIK LEPASAN\n(PER RAHANG)', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0758', 'ORTODONTIK : REPARASI ALAT ORTODONTIK LEPASAN (PER\nRAHANG)', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0759', 'OTHER DIAGNOSTIC PROCEDURES ON LARGE INTESTINE', 2652000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0760', 'OTHER ENDOSCOPY OF SMALL INTESTINE', 4582000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0761', 'OTHER INJECTION OF THERAPEUTIC SUBSTANCE INTO LIVE', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0762', 'OTHER IRRIGATION OF (NASO-)GASTRIC TUBE', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0763', 'OTHER PROCEDURES ON HEMORRHOIDS', 2652000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0764', 'OTHER PSYCHOLOGIC EVALUATION AND TESTING - 9408', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0765', 'OTHER TRANSANAL ENEMA (LAVEMEN)', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0766', 'OVER DENTURE DGN MAGNET', 3182000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0767', 'OXYMETRI', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0768', 'PACE MAKER TEMPORER', 3818000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0769', 'PACU JANTUNG PERMANENT', 6598000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0770', 'PAKET PILKADA (FIT & PROPER TEST)', 2210000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0771', 'PAP SMEAR', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0772', 'PARASENTESE', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0773', 'PARASINTESIS BANYAK (2000 S/D 4000 CC)', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0774', 'PARASINTESIS SEDIKIT (<2000 CC)', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0775', 'PARASINTESIS TOTAL (LARGE PARACYNTESIS)', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0776', 'PARTUS NORMAL', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0777', 'PARTUS NORMAL DENGAN DRIP', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0778', 'PARTUS PRESIPILATUS', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0779', 'PARTUS SPONTAN', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0780', 'PASAK RICHMOND(MAHKOTA PORSELEN)', 2210000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0781', 'PASAK TUANG LOGAM', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0782', 'PASAK TUANG LOGAM GANDA', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0783', 'PASAK/POST GANDA (FABRICATED)', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0784', 'PASAK/POST TUNGGAL (FABRICATED)', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0785', 'PASANG GIPS KECIL DEWASA', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0786', 'PASANG COLAR AND CUFF', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0787', 'PASANG COLAR IN CUP', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0788', 'PASANG GIPS BESAR ANAK', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0789', 'PASANG GIPS BESAR DEWASA', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0790', 'PASANG GIPS KECIL ANAK', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0791', 'PASANG GIPS KECIL DEWASA', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0792', 'PASANG GIPS SEDANG ANAK', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0793', 'PASANG GIPS SEDANG DEWASA', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0794', 'PASANG IUD', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0795', 'PASANG NOSTRIL RETAINER', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0796', 'PASANG PACU JANTUNG PERMANEN', 9502000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0797', 'PASANG PACU JANTUNG TEMPORER', 5498000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0798', 'PASANG PESSARIUM', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0799', 'PASANG PIG TAIL KATHETER THORAK', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0800', 'PASANG RANSEL VERBAN', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0801', 'PASANG SLING/ BANDAGE', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0802', 'PASANG SUSUK', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0803', 'PASANG VELPEAU VERBAN', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0804', 'PEAK FLOW METER (PEF)', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0805', 'PELEPASAN ORTODONTI CEKAT PADA JENAZAH', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0806', 'PELVIC SLING', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0808', 'PEMAKAIAN SYRING PUMP - PER HARI', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0809', 'PEMAKAIAN C-ARM', 3182000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0810', 'PEMAKAIAN INFANT WARMER - PER HARI', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0811', 'PEMAKAIAN MATRAS DEKUBITUS - PER HARI', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0813', 'PEMANTAUAN PEMBERIAN VASOPRESSIN / INOTROPIC\n(INFUS)', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0814', 'PEMANTAUAN VITAL SIGN/SPO2/LEVEL NYERI - PER EPISODE', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0815', 'PEMASANGAN BIDAI', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0816', 'PEMASANGAN CATHETER UMBLICALIS', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0817', 'PEMASANGAN CVP', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0818', 'PEMASANGAN ETT', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0819', 'PEMASANGAN FLOW-CARE SECARA ENDOSKOPIK', 4582000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0820', 'PEMASANGAN GIPS SPALK', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0821', 'PEMASANGAN IABP', 6598000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0822', 'PEMASANGAN INFUS', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0823', 'PEMASANGAN IV PLUG', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0824', 'PEMASANGAN KATETER INTRAVENA (IV LINE)', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0825', 'PEMASANGAN KATETER SEMI PERMANEN UTK HEMODIALISIS', 6598000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0826', 'PEMASANGAN KATETER VENA SENTRAL (CVC)', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0827', 'PEMASANGAN LMA', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0828', 'PEMASANGAN LONG LINE / VENA SEKSI', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0829', 'PEMASANGAN MAYO', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0831', 'PEMASANGAN NUTRICATH', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0832', 'PEMASANGAN PICC', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0833', 'PEMASANGAN PIPA NASOFARING OROFARING', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0834', 'PEMASANGAN PIPA NASOGASTRIK', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0836', 'PEMASANGAN RANCEL VERBAND', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0837', 'PEMASANGAN SB TUBE', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0838', 'PEMASANGAN SCEW IMPLANT (PER GIGI)', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0839', 'PEMASANGAN SELANG REKTUM (RECTAL TUBE)', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0840', 'PEMASANGAN SWAN GANZ KATETER', 6598000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0841', 'PEMASANGAN TAMPON NASAL', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0842', 'PEMASANGAN TENCHKOFF CATHETER UNTUK PERITONEAL\nDIALISIS', 9502000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0843', 'PEMASANGAN TENCHKOFF UTK CAPD DGN TEKNIK SELDINGER', 7918000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0844', 'PEMASANGAN TRACHEOSTOMY', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0845', 'PEMASANGAN U-SLAP', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0846', 'PEMASANGAN WSD', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0847', 'PEMBERIAN ANTIDOTUM', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0848', 'PEMBERIAN ATROPINIRASI', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0849', 'PEMBERIAN CHARCOAL', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0850', 'PEMBERIAN IVIG', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0852', 'PEMBERIAN OBAT RECTAL', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0853', 'PEMBERIAN OBAT SEDASI', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0854', 'PEMBUATAN BASE PLATE PER RAHANG', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0855', 'PEMBUATAN WINDOW ERUPSI', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0856', 'PEMERIKSAAN DARAH STIK', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0857', 'PEMERIKSAAN FAAL PARU (SPIROMETRI)', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0858', 'PEMERIKSAAN FITTING CONTCT LENS', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0859', 'PEMERIKSAAN FLUORESCINE (FL)', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0860', 'PEMERIKSAAN FUNDOSKOPI (F)', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0861', 'PEMERIKSAAN MIDRIATIK SIKLOPLEGIA (M)', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0862', 'PEMERIKSAAN PAKET FL + SL', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0863', 'PEMERIKSAAN PAKET T + M + F', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0864', 'PEMERIKSAAN PAKET V+R+AR+T+F+SL+M (PAKET\nPEMERIKSAAN MATA DASAR)', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0865', 'PEMERIKSAAN PAKET V+R+AR+T+F+SL+M+BW (PAKET\nPEMERIKSAAN KIR MATA)', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0866', 'PEMERIKSAAN REFRAKSI (R)', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0867', 'PEMERIKSAAN SLITLAMP (SL)', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0868', 'PEMERIKSAAN AIR MATA', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0869', 'PEMERIKSAAN AUTOPERIMETRI', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0870', 'PEMERIKSAAN AUTOREFRAKSI (AR)', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0871', 'PEMERIKSAAN BMD', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0872', 'PEMERIKSAAN BTA', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0873', 'PEMERIKSAAN BUTA WARNA (BW)', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0874', 'PEMERIKSAAN DARKFIELD MICROSCOPE', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0875', 'PEMERIKSAAN DIRECT SWAB', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0876', 'PEMERIKSAAN DOPPLER VASCULAR', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0877', 'PEMERIKSAAN FITTING PROSTHESIS', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0878', 'PEMERIKSAAN FUNDUSKOPI', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0879', 'PEMERIKSAAN GDA STICK', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0880', 'PEMERIKSAAN GENITALIA WANITA', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0881', 'PEMERIKSAAN GIEMSA', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0882', 'PEMERIKSAAN GRAM', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0883', 'PEMERIKSAAN H PYLORI DGN BIOPSI', 2652000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0884', 'PEMERIKSAAN KOH', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0885', 'PEMERIKSAAN LENGKAP DEMENSIA', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0886', 'PEMERIKSAAN PASIEN SESUDAH PROSES PENYAPIHAN - PER\nEPISODE', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0887', 'PEMERIKSAAN SKRINING DEMENSIA', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0888', 'PEMERIKSAAN TONOMETRI (T)', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0889', 'PEMERIKSAAN URINE ALISIS OPIAT ( 3 JENIS )', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0890', 'PEMERIKSAAN VISUS (V)', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0891', 'PENANGANAN GANGGUAN CAIRAN DAN ELEKTROLIT', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0892', 'PENANGANAN KEDARURATAN DELIRIUM/ACUTE\nCONFUSIONAL', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0893', 'PENCABUTAN DOUBLE LUMEN KATETER SEMI PERMANEN', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0894', 'PENCABUTAN DOUBLE LUMEN KATETER TEMPORER HD', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0895', 'PENCABUTAN DRAIN\nINTRA/RETROPERITONEAL/EKSTRAPERITONEAL', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0896', 'PENCABUTAN KATETER TENCHKOFF CAPD', 2652000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0897', 'PENCETAKAN DOUBLE IMPRESSION PER RAHANG', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0898', 'PENCETAKAN POLYVINYL SILOXANE MONOPHASE PER\nRAHANG', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0899', 'PENDAMPINGAN TINDAKAN BRACHI TERAPI', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0900', 'PENDAMPINGAN TINDAKAN KEMOTERAPI', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0901', 'PENDAMPINGAN TINDAKAN OPERASI CYTO', 3182000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0902', 'PENDAMPINGAN TINDAKAN RADIOTERAPI', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0903', 'PENDAMPINGAN TINDAKAN REHABILITASI', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0904', 'PENDAMPINGAN TINDAKAN STRESS TESTING', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0905', 'PENDAMPINGAN TRANSPORTASI ANTAR KOTA PER JAM', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0906', 'PENDAMPINGAN TRANSPORTASI DALAM KOTA PER JAM', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0907', 'PENDAMPINGAN TRANSPORTASI LUAR NEGERI PER HARI', 4582000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0908', 'PENGAMBILAN BAHAN PAP-SMEAR (VVP)', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0909', 'PENGAMBILAN BAHAN POST-COITAL', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0910', 'PENGAMBILAN BAHAN SITOHORMONAL', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0911', 'PENGAMBILAN DARAH / BGA', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0912', 'PENGAMBILAN DARAH ARTERI', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0913', 'PENGAMBILAN SEDIAAN FNAB', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0914', 'PENGAWASAN MINUM OBAT (MDR TB)', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0915', 'PENGERATAN CUTTING SETON', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0916', 'PENGGANTIAN KATETER SISTOSTOMI', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0917', 'PENGGANTIAN KATETER URETRA', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0918', 'PENGGANTIAN KATETER/TUBE ENTEROSTOMI', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0919', 'PENILAIAN RESIKO JATUH', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0920', 'PENILAIAN RESIKO TROMBOSIS', 101000, 'TINDAKAN NON OPERATIF'); +INSERT INTO `tarif_rs` (`ID_Tarif_RS`, `Tindakan_RS`, `Tarif_RS`, `Kategori_RS`) VALUES +('R.TNO.0921', 'PENILAIAN STATUS FUNGSIONAL', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0922', 'PENILAIAN STATUS GIZI', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0923', 'PENILAIAN STATUS KOGNITIF', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0925', 'PENUTUPAN PERFORASI SINUS MAKSILARIS;FISTULA OROAN', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0926', 'PENUTUPAN PERFORASI SINUS MAKSILARIS;FISTULA\nOROANTRAL', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0927', 'PERAWATAN DIAHPERAS', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0928', 'PERAWATAN ETT', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0929', 'PERAWATAN TRACHEO CANULE', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0930', 'PERAWATAN ARCHBARR (GANTIKARET)', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0931', 'PERAWATAN CATETER UMBILICAL PER EPISODE', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0932', 'PERAWATAN CATHETER TEMPORER / CAPD', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0933', 'PERAWATAN CHEST TUBE', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0934', 'PERAWATAN COVIS PER HARI', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0935', 'PERAWATAN CVP', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0936', 'PERAWATAN DECUBITES', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0937', 'PERAWATAN GANGGREN', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0938', 'PERAWATAN GIGI HIPERSENSITIF PER REGIO', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0939', 'PERAWATAN GLANULOMA', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0940', 'PERAWATAN ICP MONITOR', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0941', 'PERAWATAN INFUS', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0942', 'PERAWATAN INKUBATOR', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0943', 'PERAWATAN JENAZAH', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0944', 'PERAWATAN KAKI DIABETES BESAR', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0945', 'PERAWATAN KAKI DIABETES KECIL', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0946', 'PERAWATAN KAKI DIABETES SEDANG', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0947', 'PERAWATAN KATETER URETROPLASTY', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0948', 'PERAWATAN LUKA GANGREN', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0949', 'PERAWATAN LUKA MENINGOPLASTY', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0950', 'PERAWATAN LUKA NON DEKUBITUS / NON DIABET', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0951', 'PERAWATAN LUKA POST INSISI ABSES', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0952', 'PERAWATAN LUKA TRAKEOSTOMY', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0953', 'PERAWATAN LUKA TRAUMA JAR.LUNAK DEBRIDEMEN DGN\nJAHIT', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0954', 'PERAWATAN LUKA TRAUMA JAR.LUNAK DEBRIDEMEN TANPA\nJAR. LUNAK DEBRIDEMEN TANPA JAHIT', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0955', 'PERAWATAN MATA - PER EPISODE', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0956', 'PERAWATAN MIKROGRAFTING', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0957', 'PERAWATAN MOUNIALIASIS', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0958', 'PERAWATAN NEONATUS', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0959', 'PERAWATAN ORTO CEKAT (PER PAKET)', 2652000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0960', 'PERAWATAN ORTO CEKAT (PER TINDAKAN)', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0961', 'PERAWATAN PERDARAHAN DGN MEDIKAMENTOSA', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0962', 'PERAWATAN PERDARAHAN DGN TINDAKAN BEDAH (PER\nREGIO)', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0963', 'PERAWATAN TALI PUSAT', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0964', 'PERAWATAN TRACHEOSTOMI - PER HARI', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0965', 'PERAWATAN TRISMUS DENGAN RETRAKSI', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0966', 'PERAWATAN TRISMUS DENGAN SOLUKS', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0967', 'PERAWATAN WSD - PER HARI', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0968', 'PERCUTANEOUS (ENDOSCOPIC) JEJUNOSTOMY [PEJ]', 9502000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0969', 'PERCUTANEOUS [ENDOSCOPIC] GASTROJEJUNOSTOMY', 9502000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0970', 'PERCUTANEOUS [ENDOSCOPIC] GASTROSTOMY [PEG]', 9502000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0971', 'PERCUTANEOUS ABLATION OF LIVER LESION OR TISSUE', 5498000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0972', 'PERCUTANEOUS ASPIRATION OF GALLBLADDER', 5498000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0973', 'PERCUTANEOUS ASPIRATION OF LIVER', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0974', 'PERCUTANEUS TRACHEOSTOMI', 3182000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0975', 'PERFORASI + CRANIOCLASI/ CUNAM MUZEAUX, LA', 4582000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0976', 'PERICARDIOCENTESIS', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0977', 'PERITONEAL EQUILIBRIUM TEST ( PET )', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0978', 'PERITONIAL DIALISA', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0979', 'PERSPIRASI TEST', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0980', 'PFR', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0981', 'PH METRI', 4582000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0982', 'PHLEBOTOMI', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0983', 'PHONOCARDIOGRAFI', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0984', 'PIN RETAINED', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0985', 'PIN RETAINED PASIEN HANDCAPPED CHILDREN', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0986', 'PLASMAPHARESIS', 5498000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0987', 'PLEURODESIS', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0988', 'POLYSOMNOGRAFI', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0989', 'PREMEDIKASI PRO KEMO', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0990', 'PROCTOSCOPY', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0991', 'PROCTOSIGMOIDOSCOPY THROUGH ARTIFICIAL STOMA', 3818000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0992', 'PROEF PUNCTI', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0993', 'PROOF ABSES/KISTA HATI', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0994', 'PROOF PUNKSI', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0995', 'PROS.DENTOALV. KOMPLEK DENGAN IDW (PER RAHANG)', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0996', 'PROSTIGMIN/TENSILON TEST', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0997', 'PSIKO TEST PER-ITEM : M M P I', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0998', 'PSIKOTERAPI - PER TERAPI', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1000', 'PSIKOTEST ADVANCE', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1002', 'PSIKOTEST BASIC', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1003', 'PSIKOTEST INTERMEDIET', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1004', 'PSIKOTEST MMPI-2', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1005', 'PSIKOTEST RUTIN', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1006', 'PSYCHIATRIC MENTAL STATUS DETERMINATION - 9411', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1007', 'PSYCOLOGIC MENTAL STATUS DETERMINATION, NOS - 9409', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1008', 'PTB CAST / SARMENTO CAST', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1009', 'PULPECTOMI ANTERIOR (PER GIGI)', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1010', 'PULPECTOMI ANTERIOR (PER GIGI) PASIEN HANDCAPPED\nCHILDREN', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1011', 'PULPECTOMI GIGI SULUNG ANTERIOR (PER GIGI)', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1012', 'PULPECTOMI GIGI SULUNG POSTERIOR (PER GIGI)', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1013', 'PULPECTOMI POSTERIOR (PER GIGI)', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1014', 'PULPECTOMI POSTERIOR (PER GIGI) PASIEN HANDCAPPED', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1015', 'PULSE IMMUNOSUPPRESIVE', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1016', 'PUNKSI ABSES HATI (DENGAN TUNTUNAN USG)', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1017', 'PUNKSI ASCITES', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1018', 'PUNKSI PERICARD', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1019', 'PUNKSI PLEURA', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1020', 'PUNKSI SENDI BESAR', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1021', 'PUNKSI SENDI KECIL', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1022', 'PUNKSI SEROMA', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1024', 'PUNKSI THORAX', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1025', 'PUNKSI VENA - PER HARI', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1026', 'RANSEL VERBAN', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1027', 'RAWAT ABSCES', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1028', 'RAWAT KOLOSTOMI', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1029', 'RAWAT LUKA (PASIEN UMUM)', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1030', 'RAWAT LUKA BAKAR / RENDAM BERAT', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1031', 'RAWAT LUKA BAKAR / RENDAM KECIL', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1032', 'RAWAT LUKA BAKAR / RENDAM SEDANG', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1033', 'RAWAT LUKA BAKAR RAW SURFACE <10 %', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1034', 'RAWAT LUKA BAKAR RAW SURFACE 10-15%', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1035', 'RAWAT LUKA BESAR', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1036', 'RAWAT LUKA BOLA MATA', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1037', 'RAWAT LUKA DENGAN MODERN DRESSING', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1038', 'RAWAT LUKA KANKER PAYUDARA', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1039', 'RAWAT LUKA KECIL', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1040', 'RAWAT LUKA KOMPLEKS', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1041', 'RAWAT LUKA SEDANG', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1042', 'RAWAT LUKA SOCKET', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1043', 'RAWAT LUKA SOCKET ANOPHTHALMIA', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1044', 'RAWAT STOMA', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1045', 'RAWAT TRACHEOSTOMI', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1046', 'RAWAT URETHROPLASTY', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1047', 'REBASING ACRILIC', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1048', 'REBASING FULL DENTURE', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1049', 'REBASING SOFT LINER', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1050', 'RECTAL MASSAGE (FOR LEVATOR SPASM)', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1051', 'RECTAL TOUCHER', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1052', 'RECTOSCOPY', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1053', 'REHAB MENTAL SELAMA PERAWATAN', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1054', 'REHABILITASI LOW VISION (NEAR READING + FAR READING\nTEST)', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1055', 'REHABILITASI PASIF', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1056', 'REHIDRASI', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1057', 'REINSERTEN BRACKET ORTODONTIK', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1058', 'REINSERTEN MOLAR TUBE ORTODONTIK', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1059', 'REINSERTEN WIRE ORTO', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1060', 'REKTOSKOPI', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1061', 'RELIEF OF PAIN', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1062', 'RELINING', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1063', 'REMOVAL OF IMPACTED FECES', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1064', 'REMOVAL OF INTRALUMINAL FOREIGN BODY FROM\nESOPHAGUS', 5498000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1065', 'REMOVAL SUB UNGUAL HEMATOMA', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1066', 'REPAIR GIPS STUWING', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1067', 'REPAIR PERINEUM', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1069', 'REPAIR POST CIRCUMCICI', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1070', 'REPAIR STUMB', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1071', 'REPARASI GELIGI TIRUAN', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1072', 'REPLACEMENT OF (NASO-)GASTRIC OR ESOPHAGOSTOMY\nTUBE', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1073', 'REPLACEMENT OF CENTAL VENOUS CATHETER', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1074', 'REPLACEMENT OF GASTROSTOMY TUBE', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1075', 'REPLACEMENT OF TUBE OR ENTEROSTOMY DEVICE OF LARGE', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1076', 'REPLACEMENT OF TUBE OR ENTEROSTOMY DEVICE OF SMALL', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1077', 'REPOSISI DISLOKASI DGN INJEKSI ANAESTESI INTRA KONPILAR', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1078', 'REPOSISI DISLOKASI MANDUBULA SECARA MANUAL', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1079', 'REPOSISI DISLOKASI TMJ HABITUAL', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1080', 'REPOSISI THORAK KATHETER', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1081', 'RESUSITASI', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1082', 'RESUSITASI CAIRAN / REHIDRASI CEPAT', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1083', 'RESUSITASI CAIRAN ANAK SELAMA PERAWATAN', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1084', 'RETREATMENT GIGI ANTERIOR (PER GIGI)', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1085', 'RETREATMENT GIGI POSTERIOR (PER GIGI)', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1086', 'RING HEMOROID', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1087', 'RING PEMOVAL', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1088', 'RONTGEN FOTO INTRA ORAL (PER GIGI)', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1089', 'ROUZERPLASTY', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1090', 'RUMATAN METADON', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1091', 'S T E', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1092', 'SADDLE', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1093', 'SALUT POSISI', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1094', 'SCALING PER RAHANG', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1095', 'SCRAPPING ECTOPARASIT', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1096', 'SCRATCH TEST', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1097', 'SCUREN GENITAL', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1098', 'SCUREN KEPALA', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1099', 'SEDIAAN BTA', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1100', 'SEDIAAN KOH', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1101', 'SEDIMEN + GRAM', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1102', 'SEP ( SENSORY EVOKED POTENSIAL )', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1103', 'SERIAL CAST', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1104', 'SETING MESIN CPAP', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1105', 'SHAKE TEST', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1106', 'SIKATAN BRONKUS', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1107', 'SIMPATEKTOMI ARTERI RENALIS', 7918000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1108', 'SITOGENETIKA SUMSUM TULANG/DARAH TEPI', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1109', 'SITOKIMIA SUMSUM TULANG', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1110', 'SITOLOGI SUMSUM TULANG', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1111', 'SITOSTATIKA - PER 1 KALI', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1112', 'SITOSTATIKA DRIP AMBULATOR', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1113', 'SIX MINUTE WALKING TEST', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1114', 'SKELETAL TRAKSI', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1115', 'SKIN PRICK TEST', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1116', 'SKIN TEST - PER 1 KALI', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1117', 'SKIREN KEPALA', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1118', 'SKLEROTERAPI HEMOROID INTERNAL', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1119', 'SKLEROTERAPI VARISES ESOFAGUS', 5498000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1120', 'SLEM / PNEUMO SUCTION - PER HARI', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1121', 'SLEM SUCTION', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1122', 'SLIM ZUIKKER SELAMA PERAWATAN', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1123', 'SLIMING & FIRMING', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1124', 'SLING / BANDAGE', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1125', 'SONOTROMBOLISIS', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1126', 'SPACE MAINTAINER CEKAT', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1127', 'SPACE MAINTAINER LEPASAN', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1128', 'SPACE MAINTAINER LEPASAN FUNCTIONAL GIGI BERIKUTNYA', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1129', 'SPACE MAINTAINER LEPASAN FUNCTIONAL GIGI PERTAMA', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1130', 'SPACE REGAINER CEKAT', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1131', 'SPACE REGAINER LEPASAN', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1132', 'SPALK HIDUNG', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1133', 'SPEECH TERAPI', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1134', 'SPILNTING FRAKTUR', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1135', 'SPIROMETRI', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1137', 'SPIROMETRI + DLCO', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1138', 'SPLINTING FIBER PER REGIO', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1139', 'SPLINTING HIDUNG', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1140', 'SPLINTING NASAL', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1141', 'SPOELING PIG TAIL', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1142', 'SPONDILOTOMI', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1143', 'SPONTAN BRACHT', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1144', 'SPOOLING CHATETER POST TUR/B/P', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1145', 'SPOOLING KATETER - PER EPISODE', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1146', 'SPOOLING KATHETER', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1147', 'SPT BRACHT', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1148', 'SPT GEMELLI', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1149', 'SPULING ANUS', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1150', 'SRAPPING BIOPSI', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1151', 'STREAK RETINOSCOPY', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1152', 'SUCTION PUMP - PER HARI', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1153', 'SUNTIK OBAT UMUM ( OBAT DARI RS)', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1154', 'SURFACE COOLING', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1155', 'TAMPON BELOG', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1156', 'TAMPON HIDUNG ANTERIOR', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1157', 'TAMPON TELINGA LUAR', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1158', 'TARSORAPPHY', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1159', 'TELEMENTRI', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1160', 'TENSI OCULI,VISUS SENTRALIS', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1161', 'TENSI OKULI', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1162', 'TENSILON TEST', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1163', 'TERAPI ADIKSI - PER TERAPI', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1164', 'TERAPI AKTIFITAS KELOMPOK - PER TERAPI', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1165', 'TERAPI BERMAIN (PLAY TERAPI)', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1166', 'TERAPI GESTALT - PER TERAPI', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1167', 'TERAPI KELUARGA - PER TERAPI', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1168', 'TERAPI KERJA - PER TERAPI', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1169', 'TERAPI MARITAL - PER TERAPI', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1170', 'TERAPI MEDIKA', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1171', 'TERAPI NUTRISI', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1172', 'TERAPI OKUPASIONAL - PER TERAPI', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1173', 'TERAPI PSICHOSEXUAL DYSFUNCTION - PER TERAPI', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1174', 'TERAPI SIMTOMATIK', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1175', 'TERAPI SUPPORTIVE - PER TERAPI', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1176', 'TERAPI SURFAKTAN SELAMA PERAWATAN', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1177', 'TERAPI VOKASIONAL - PER TERAPI', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1178', 'TES ALERGI - ANAK', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1179', 'TES ALERGI - DEWASA', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1180', 'TES ALERGI PARU', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1181', 'TES ALLERGI / SKIN TEST', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1182', 'TES AUDIOVISUAL RUANGAN', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1183', 'TES MENELAN', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1184', 'TES NEUROLOGI ANAK LENGKAP AWAL', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1185', 'TES NEUROLOGI ANAK LENGKAP LANJUTAN', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1186', 'TES NEUROREHABILITASI', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1187', 'TES PATEN SINEOURETRA', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1188', 'TES PATENSI VELOFARINGEAL', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1189', 'TES PERSPIRASI', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1190', 'TES PERTUMBUHAN AWAL', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1191', 'TES PERTUMBUHAN LANJUTAN', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1192', 'TES SUARA HIPERNASAL', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1193', 'TES SUPRESI DEKSAMETASONE', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1194', 'TES TOLERANSI GLUKOSA ORAL', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1195', 'TEST ALERGI ( PATCH TEST)', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1196', 'TEST ALERGI ( PRICK TEST)', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1197', 'TEST BENDER GESTALT', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1198', 'TEST BISIK', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1199', 'TEST CPM', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1201', 'TEST EPPS', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1202', 'TEST FLUOROSENT', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1203', 'TEST GRAFIS', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1204', 'TEST IST', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1206', 'TEST KEPRIBADIAN', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1207', 'TEST KESEIMBANGAN', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1209', 'TEST KREAPLIN', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1210', 'TEST PAULI', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1211', 'TEST PROVOKASI BRONCHIAL', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1212', 'TEST RORCHSACH', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1213', 'TEST SKRINING PERKEMBANGAN AWAL', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1214', 'TEST SKRINING PERKEMBANGAN LANJUTAN', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1215', 'TEST SKRINING PERKEMBANGAN REMAJA (GANGGUAN TIDUR)', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1216', 'TEST WAIS', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1217', 'TEST WARTEGG', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1218', 'TEST WISC', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1219', 'THORACENTESIS', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1220', 'THORACENTESIS GUIDING USG', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1221', 'THORACOCINTESIS', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1222', 'THROMBOPARESIS', 3818000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1223', 'THROMBOREDUCTION (THROMBOFARESIS)', 6598000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1224', 'TIMPANOMETRI', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1225', 'TINDAKAN KEGAWATAN PSIKIATRI', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1226', 'TINDAKAN PARABDOMINAL', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1227', 'TINDAKAN PERVAG.+TIND. PER.ABDOMINAL', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1228', 'TINDAKAN PERVAG.+TINDAKAN PERVAGINAL', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1229', 'TINDAKAN PTCA DENGAN STENT', 9502000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1230', 'TINDAKAN PTCA TANPA STENT', 9502000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1231', 'TINDIK', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1232', 'TONOMETRI APPLANASI', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1233', 'TOPIKAL ANTIBIOTIK PER REGIO', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1234', 'TRAKEOSTOMI', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1235', 'TRANCUTANEUS PACING', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1236', 'TRANFUSI', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1237', 'TRANSBRONKIAL BIOPSI', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1238', 'TRANSCRANIAL DOPLER (TCD) DIAGNOSTIK', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1239', 'TRANSCRANIAL DOPLER (TCD) EVALUASI EMBOLIK', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1240', 'TRANSESOFAGEAL ECHOCARDIOGRAFI', 2652000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1241', 'TRANSVENOUS PACING WIRE INSERTION', 6598000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1242', 'TREADMILL', 2210000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1243', 'TUBE THORACOSTOMY', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1244', 'TUMPATAN SEMENTARA', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1245', 'U - SLEB', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1246', 'URODINAMIK', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1247', 'UROFLOWMETRI', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1248', 'USCOM', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1251', 'USG MUSKULOSKELETAL', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1255', 'VAC TERAPI', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1256', 'VACUM EKSTRAKSI', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1257', 'VAGAL MANUVER', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1258', 'VAGINAL TOUCHER', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1259', 'VAKSINASI DEWASA', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1260', 'VELPEU VERBAN', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1261', 'VENA PUNCTURE (MDR TB)', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1262', 'VENA PUNKSI - PER HARI', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1263', 'VENA SEKSI', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1264', 'VENEER PORCELAIN', 2652000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1265', 'VENIPUNCTURE', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1266', 'VEP (VISUAL EVOKED POT\'AL )', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1267', 'VEXATIE JARI', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1268', 'VIRGIN ASSESSMENT', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1269', 'VISUM PERKOSAAN', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1270', 'VISUM, KLL', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1271', 'VISUS EVALUASI', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1272', 'WARMER TRANFUSION', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1273', 'WATER DEPRIVATION TEST', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1274', 'WEDGING ANAK', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1275', 'WEDGING DEWASA', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1276', 'WOOD LAMP', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1277', 'WOOD LAMP + KOH (DERMATOMI KOSIR)', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1278', 'WORTH FOUR DOT TEST', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1279', 'WOUND TOILET', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1280', 'MANAJEMEN CENTRAL VENOUS MONITORING - PER EPISODE', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1281', 'MANAJEMEN TOTAL PARENTERAL NUTRITION (TPN)', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1282', 'MANAJEMEN INTRAVASCULAR ARTERIAL PRESSURE\nMONITORING', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1283', 'MANAJEMEN SWANZ GANZ MONITORING PER EPISODE', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1284', 'MANAJEMEN TOTAL PARENTERAL NUTRITION ( TPN ) PER\nEPISODE', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1285', 'TATALAKSANA DAN MONITORING CONTINOUS\nINTRAARTERIAL BLOOD GAS (CIABG)', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1286', 'TATALAKSANA DAN MONITORING PULMUNARY ARTERIAL\nWEDGE PRESSURE (PAP) SWANZ GANZ', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1287', 'MANAJEMEN PASIEN KRITIS DENGAN POTENSI GAGAL ORGAN', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1288', 'MANAJEMEN PASIEN KRITIS DENGAN 1 ATAU 2 GAGAL ORGAN', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1289', 'MANAJEMEN INTRACRANIAL PRESSURE MONITORING - PER\nEPISODE', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1290', 'MANAJEMEN INOTROPES', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1291', 'TATALAKSANA DAN MONITORING PASIEN KRITIS DENGAN\nATAU LEBIH 3 GAGAL ORGAN', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1292', 'MANAJEMEN SEDATION / PARALYSIS / ANALGESIA - PER\nEPISODE', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1293', 'INTRA-AORTIC BALLOON PUMP ( IABP ) ? PER EPISODE', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1294', 'TATALAKSANA DAN MONITORING CONTINOUS REPLACEMENT\nRENAL THERAPY (CRRT)', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1295', 'TATALAKSANA INOTOPIC / CARDIAC OUTPUT PROBLEM', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1296', 'INJECTION OF STEROID', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1297', 'INJEKSI KASUS NYERI SEDANG (INTRARTIKULER ATAU\nEKSTRATIKULER)', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1298', 'REDUCTION OF INTUSSUSCEPTION OF ALIMENTARY TRACT', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1299', 'REPLACEMENT OF STENT (TUBE) IN BILIARY OR PANCREAT', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1300', 'CLOSED [PERCUTANEOUS] [NEEDLE] BIOPSY OF INTRA-ABD', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1301', 'REPLACEMENT OF CENTAL VENOUS CATHETER FOR HEMODIAL', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1302', 'SKIN FLAP SEDERHANA', 2210000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1303', 'CENTRAL VENOUS PRESSURE / DIALYSIS CATHETER INSERT', 2652000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1304', 'ENDOSCOPY OF LARGE INTESTINE THROUGH ARTIFICIAL ST', 3182000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1305', 'PULMONARY ARTERY CATHETER INSERTION / PICCO CATHET', 4582000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1306', 'PEMASANGAN KATHETER TEMPORER UNTUK DIALYSIS PADA V', 5498000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1307', 'REMOVAL OF INTRALUMINAL FOREIGN BODY FROM LARGE IN', 6598000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1308', 'REMOVAL OF INTRALUMINAL FOREIGN BODY FROM RECTUM\nA', 6598000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1309', 'ANGIOPLASTY DAN STENTING PADA RAS', 7918000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1310', '3 STEP TEST', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1311', 'ACUTE PERITONEAL DIALYSIS - 54.98', 7918000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1312', 'AFF BEBAT PENIS', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1313', 'AKSES INTRAOSSEUS -', 5498000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1314', 'ALAT RETENSI CLEAR PER RAHANG', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1315', 'ALAT RETENSI HAWLEY PER RAHANG', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1316', 'ANGKAT PERIODONTAL PACK', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1317', 'ANGKAT TAMPON HIDUNG ANTERIOR UNILATERAL /\nREMOVAL OF NASAL PACKING (2 SIDE) - 97.32', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1318', 'ANTROPOMETRI ( BB, PB, LK, LL) - 89.07', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1319', 'APUS HIDUNG / OTHER DIAGNOSTIC PROCEDURES ON NOSE\n(NASAL SWAB) - 21.29', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1320', 'APUS TELINGA / OTHER DIAGNOSTIC PROCEDURES ON\nEXTERNAL EAR (EAR SWAB) - 18.19', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1321', 'APUS TENGGOROK / OTHER DIAGNOSTIC PROCEDURES ON\nPHARYNX (FARING SWAB) - 29.19', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1322', 'ASPIRASI ABSES - 86.01', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1323', 'ASPIRASI SEROMA - 86.01', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1324', 'ASSESSMENT OF: OTHER PERIPHERAL VESSELS VESSELS OF\nARM(S) VESSELS OF LEG(S)', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1325', 'ASUHAN KEPERAWATAN MINIMAL CARE PER HARI', 100000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1326', 'ASUHAN KEPERAWATAN PARTIAL CARE PER HARI', 125000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1327', 'ASUHAN KEPERAWATAN TOTAL CARE PER HARI', 150000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1328', 'ASUHAN NUTRISI PEDIATRI DENGAN PENYAKIT TERTENTU -', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1329', 'BAKER?S CYST MANUAL (TANPA PANDUAN)', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1330', 'BIOPSI PLEURA - 34.24', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1331', 'BODY MEASUREMENT - 93.07', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1332', 'BOTULINUM TOXIN INJECTION ( 26 - 50 IU)', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1333', 'BOTULINUM TOXIN INJECTION ( 51 ? 100 IU)', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1334', 'BOTULINUM TOXIN INJECTION (< 10 IU)', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1335', 'BOTULINUM TOXIN INJECTION 10 ? 25 IU', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1336', 'BOTULINUM TOXIN INJECTION GUIDED EMG', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1337', 'BOTULINUM TOXIN INJECTION GUIDED USG', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1338', 'BRAIN AUDITORY STIMULATION', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1339', 'BRAIN COGNITIVE STIMULATION', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1340', 'BRAIN DYNAMIC MIND CONDITIONING (HYPNOTHERAPY)', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1341', 'BRAINWAVE MODULATION (AUDITORI, VISUAL)', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1342', 'BRONCHOSCOPY DAN TOILETING TRAKEOSTOMI PADA PASIEN\nKRITIS - 33.22;96.55', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1343', 'CANALITH REPOSITIONAL THERAPY (CRT) / REHABILITATION,\nNOT ELSEWHERE CLASSIFIED - 93.89', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1344', 'CARDIAC OUTPUT STUDY NON INVASIVE AND MANAGEMENT\n(TERMASUK USCOM, ICON, DSB) - 88.72', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1345', 'CARDIOPULMONARY RESUSCITATION (TERMASUK INTUBASI) DAN ADVANCED LIFE SUPPORT PASIEN KRITIS - 99.60;96.04', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1346', 'CARPAL TUNNEL SYNDROME MANUAL (TANPA PANDUAN)', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1347', 'CAUDAL BLOCK - 03.91', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1348', 'CAUDAL BLOCK CONTINUOUS - 03.90', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1349', 'CENTRAL VENOUS DIALYSIS CATHETER INSERTION TANPA\nUSG PADA PASIEN KRITIS - 38.95', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1350', 'CENTRAL VENOUS INSERTION WITH USG PADA PASIEN KRITIS\n38.90', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1351', 'CENTRAL VENOUS CATHETER INSERTION TANPA USG PADA\nPASIEN KRITIS - 38.93', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1352', 'CENTRAL VENOUS DYALISIS CATHETER INSERTION WITH USG\nPADA PASIEN KRITIS - 38.90', 2210000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1353', 'CENTRAL VENOUS PRESSURE MONITORING - 89.62', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1354', 'CETAK PADA PASIEN DENGAN FRAKTUR / HANDICAPPED PER\nRAHANG', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1355', 'CHORDOTOMY - 03.21', 7918000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1356', 'CIC/EDUKASI CIC', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1357', 'CIMT (CONSTRAINT MOVEMENT THERAPY)', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1358', 'CLOSED REDUCTION OF TEMPOROMANDIBULAR DISLOCATION\n- 76.93', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1359', 'CONSULTATION, DESCRIBED AS COMPREHENSIVE - 89.07', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1360', 'CONTINOUS RENAL REPLACEMENT THERAPY (CRRT) PASIEN\nKRITIS (PER PRESKRIPSI) - 39.95', 7918000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1361', 'CORE BIOPSI PARU - 33.26', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1362', 'CPR - 99.6', 2210000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1363', 'CRANIAL NERVE RADIOFREQUENCY (RF) - 04.2', 4582000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1364', 'CRANIAL NERVE REGENERATIVE PAIN THERAPY - 04.81;03.91', 3182000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1365', 'CRANIAL NERVE TEST BLOCK - 04.81;03.91', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1366', 'CRYO SURGERY BESAR - 86.3', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1367', 'CRYO SURGERY KECIL - 86.3', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1368', 'CRYO SURGERY SEDANG - 86.3', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1369', 'CUCI KANUL TRAKEOSTOMI PADA MUCOUS PLUG / OTHER IRRIGATION OF WOUND (TRACHEA) - 96.59', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1370', 'CUCI LUKA (OPERASI HIDUNG / TELINGA) / OTHER IRRIGATION OF WOUND (HEAD AND NECK) - 96.59', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1371', 'DE QUERVAIN SYNDROME MANUAL (TANPA PANDUAN)', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1372', 'DEBRIDEMANT LUKA PASCA PDT - 96.56;33.22', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1373', 'DEEP BRAIN STIMULATION PROGRAMMING', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1374', 'DEKANULASI PASCA PDT - 96.57;33.22', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1375', 'DESENSITIZATION - 99.12', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1376', 'DESENSITIZATION - 99.12', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1377', 'DESENSITIZATION ADS (BESREDKA ADS) - 99.12', 7918000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1378', 'DESENSITIZATION ATS (BESREDEKA ATS) - 99.12', 7918000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1379', 'DILATASI URETRA', 2210000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1380', 'DIRECT VIDEOLARYNGOSCOPE - 96.04', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1381', 'DOUBLE LUMEN TUBE INTUBATION PADA PASIEN KRITIS -\n96.05', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1382', 'DRY NEEDLING (PAKET 1)', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1383', 'DRY NEEDLING (PAKET 2)', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1384', 'DRY NEEDLING (PAKET 3)', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1385', 'EKSTRAKSI / IRIGASI SERUMEN BILATERAL / IRRIGATION OF\nEAR (BILATERAL) - 96.52', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1386', 'EKSTRAKSI / IRIGASI SERUMEN DENGAN PENYULIT BILATERAL\n/ IRRIGATION OF EAR (COMPLICATED BILATERAL) - 96.52', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1387', 'EKSTRAKSI / IRIGASI SERUMEN DENGAN PENYULIT UNILATERAL / IRRIGATION OF EAR (COMPLICATED\nUNILATERAL) - 96.52', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1388', 'EKSTRAKSI / IRIGASI SERUMEN UNILATERAL / IRRIGATION OF\nEAR (UNILATERAL) - 96.52', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1389', 'EKSTRAKSI BENDA ASING FARING DENGAN ENDOSKOPI / REMOVAL OF INTRALUMINAL FOREIGN BODY FROM PHARYNX\nWITHOUT INCISION (WITH ENDOSCOPY) - 98.13', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1390', 'EKSTRAKSI BENDA ASING HIDUNG /REMOVAL OF INTRALUMINAL FOREIGN BODY FROM NOSE WITHOUT\nINCISION - 98.12', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1391', 'EKSTRAKSI BENDA ASING MULUT /REMOVAL OF INTRALUMINAL FOREIGN BODY FROM MOUTH WITHOUT\nINCISION - 98.01', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1392', 'EKSTRAKSI BENDA ASING TELINGA / REMOVAL OF INTRALUMINAL FOREIGN BODY FROM EAR WITHOUT INCISION\n(COMPLICATED) - 98.11', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1393', 'EKSTRAKSI BENDA ASING TELINGA DENGAN PENYULIT / REMOVAL OF INTRALUMINAL FOREIGN BODY FROM EAR\nWITHOUT INCISION - 98.11', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1394', 'EKSTRAKSI BENDA ASING TONSIL-FARING / REMOVAL OF INTRALUMINAL FOREIGN BODY FROM PHARYNX WITHOUT\nINCISION - 98.13', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1395', 'EKSTRAKSI DENGAN FLAP', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1396', 'EKSTUBASI PIPA ENDOTRAKEAL PASIEN KRITIS - 96.04', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1397', 'ENDOKSOPI TELINGA / OTHER DIAGNOSTIC PROCEDURES ON\nEXTERNAL EAR (ENDOSCOPE) - 18.19', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1398', 'ENTERAL INFUSION OF CONCENTRATED NUTRITIONAL\nSUBSTANCES - 99.6', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1399', 'EPIDURAL BLOCK - 03.91', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1400', 'EPIDURAL BLOCK CONTINUOUS - 03.90', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1401', 'ESWL', 9502000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1402', 'EUS-FNA', 2210000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1403', 'EXCHANGE TRANSFUSION PADA PASIEN KRITIS - 99.01', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1404', 'FASCITIS PLANTARIS MANUAL (TANPA PANDUAN)', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1405', 'FEMORAL ENTRAPMENT MANUAL (TANPA PANDUAN)', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1406', 'FIBER POST', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1407', 'FISIOTERAPI DADA - 93.18', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1408', 'FIT AND PROPER TEST', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1409', 'FIXED LINGUAL RETAINER PER RAHANG', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1410', 'FLEXIBLE ENDOSCOPIC EVALUATION OF SWALLOWING / OTHER DIAGNOSTIC PROCEDURES ON PHARYNX (FEES) - 29.19', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1411', 'FLEXIBLE VIDEOLARYNGOBRONCOSCOPY - 96.05', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1412', 'FORCED DUCTION TEST, ACTIVE FORCE GENERATION &\nSACCADIC', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1413', 'FRENEKTOMI LABIAL', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1414', 'FRENEKTOMI LINGUL', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1415', 'FUNGSI LUHUR BEDSIDE', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1416', 'FUNGSI LUHUR DIAGNOSTIC', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1417', 'FUNGSI LUHUR GLOBAL (MMSE, MOCA, VCAT)', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1418', 'FUNGSI LUHUR GLOBAL + CERAD', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1419', 'FUNGSI LUHUR LEGAL', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1420', 'FUNGSI LUHUR OKUPASIONAL', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1421', 'FUNGSI LUHUR TERAPEUTIK', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1422', 'GANTI NGT / REPLACEMENT NASOGRASTIC TUBE - 97.01', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1423', 'GANTI VERBAN / REPLACEMENT OF WOUND PACKING OR\nDRAIN - 97.16', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1424', 'GLENO-HUMERAL C ARM (DI RUANG OPERASI)', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1425', 'GOLFER ELBOW MANUAL (TANPA PANDUAN)', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1426', 'GREAT OCCIPITAL NERVE BLOCKADE (GONB)', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1427', 'GUYON SYNDROME MANUAL (TANPA PANDUAN)', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1428', 'HESS SCREEN TEST', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1429', 'HIFEM', 6598000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1430', 'HIPODERMOKLISIS / TERAPI SUBKUTAN - 99.29', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1431', 'IMUNISASI PCV - 99.55', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1432', 'IMUNISASI POLIO (IPV, OPV) - 99.41', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1433', 'IMUNISASI ROTAVIRUS - 99.55', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1434', 'IMUNOTERAPI / IMMUNIZATION FOR ALLERGY - 99.12', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1435', 'INCISI EKSTRA ORAL', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1436', 'INCISI INTRA ORAL', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1437', 'INFUSION OF VASOPRESSOR AGENT - 00.17', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1438', 'INJECTION OF THERAPEUTIC SUBSTANCE INTO\nTEMPOROMANDIBULAR JOINT.', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1439', 'INJECTION SYMPATHETIC NERVE/ GANGLION', 7918000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1440', 'INJEKSI AGEN BIOLOGIS - 99.28', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1441', 'INJEKSI AGEN PRP/PRF - 86.02', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1442', 'INJEKSI ANTIDOTUM PADA KERACUNAN - 99.16', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1443', 'INJEKSI HISTOAKRIL', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1444', 'INJEKSI IMUNOTERAPI - 99.12', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1445', 'INJEKSI INTRALESI - 83.98', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1446', 'INJEKSI IVIG', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1447', 'INJEKSI OBAT ANTI HEMOFILIA (TRANSFUSION OF\nCOAGULATION FACTORS) - 99.06', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1448', 'INJEKSI OBAT KHUSUS GCSF (TRANSFUSSION OF\nGRANULOCYTES) - 99.09', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1449', 'INJEKSI/KOREKSI INFUS ELEKTROLIT - 99.18', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1450', 'INSERT GASTRIC TUBE (DECOMPRESION) - 96.07', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1451', 'INSERT RECTAL TUBE - 96.09', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1452', 'INSISI DENGAN DRAINASE - 86.04', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1453', 'INTER PROXIMAL REDUCTION', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1454', 'INTERFASCIA NERVE BLOCK - 04.81', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1455', 'INTERFASCIA NERVE BLOCK CONTINUOUS - 03.90', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1456', 'INTRAARTIKULER 1 MANUAL (TANPA PANDUAN)', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1457', 'INTRAARTIKULER 2 MANUAL (TANPA PANDUAN)', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1458', 'INTRACOMPARTEMENT NERVE BLOCK - 04.81', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1459', 'INTRACOMPARTEMENT NERVE BLOCK CONTINUOUS - 03.90', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1460', 'INTRACRANIAL OXYGEN MONITORING (NIRS) PER 24 JAM -\n01.16', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1461', 'INTRACRANIAL PRESSURE MONITOR PASIEN KRITIS (PER HARI)\n- 01.19', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1462', 'INTRADERMAL SKIN TEST - 99.1', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1463', 'INTRAOPERATIVE MONITORING DENGAN ALAT - 794.02', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1464', 'INTRAOSSEUS ACCESS PADA PASIEN KRITIS - 99.18', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1465', 'INTRAVENOUS TROMBOLITIK - 99.1', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1466', 'INTUBASI PIPA ENDOTRAKEAL PASIEN KRITIS - 96.04', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1467', 'IOM HNP LUMBAL SAKRAL', 5498000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1468', 'IOM HNP SERVIKAL', 5498000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1469', 'IOM PLEKSUS BRACHIALIS/N. FASIALIS', 5498000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1470', 'IOM SKOLIOSIS', 5498000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1471', 'IOM TUMOR FOSA ANTERIOR KORTIKAL MAPPING', 5498000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1472', 'IOM TUMOR FOSA POSTERIOR', 5498000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1473', 'IOM TUMOR MEDULA SPINALIS', 5498000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1474', 'IRIGASI / CUCI HIDUNG / LAVAGE OF NOSE - 96.53', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1475', 'IVES', 2652000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1476', 'KARDIOVERSI PADA PASIEN KRITIS - 99.62', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1477', 'KAUSTIK FARING / OTHER EXCISION OR DESTRUCTION OF LESION OR TISSUE OF PHARYNX (LARYNX CAUSTIC) - 29.39', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1478', 'KAUSTIK HIDUNG EPISTAXIS / CONTROL OF EPISTAXIS BY\nCAUTERIZATION (AND PACKING) - 21.03', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1479', 'KONSELING ( SECARA UMUM ) MEDIKOLEGAL - 65.40', 2652000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1480', 'KONSELING KEHAMILAN DENGAN IMS - 65.45', 2652000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1481', 'LANG TEST', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1482', 'LARYNGOSCOPY AND OTHER TRACHEOSCOPY - 31.42', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1483', 'LASER BEAM - 86.3', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1484', 'LASER EXCIMER BESAR - 99.82', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1485', 'LASER EXCIMER BESAR - 99.82', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1486', 'LASER EXCIMER KECIL - 99.82', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1487', 'LASER EXCIMER KECIL - 99.82', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1488', 'LASER EXCIMER SEDANG - 99.82', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1489', 'LASER EXCIMER SEDANG - 99.82', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1490', 'LASER FOTONA (ND:YAG - ER:YAG) - BESAR - 86.3', 2210000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1491', 'LASER FOTONA (ND:YAG - ER:YAG) - KECIL - 86.3', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1492', 'LASER FOTONA (ND:YAG - ER:YAG) - SEDANG - 86.3', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1493', 'LASER HAIR REMOVAL - BESAR - 86.3', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1494', 'LASER HAIR REMOVAL - KECIL - 86.3', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1495', 'LASER HAIR REMOVAL - SEDANG - 86.3', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1496', 'LASER IPL - BESAR - 86.3', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1497', 'LASER IPL - KECIL - 86.3', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1498', 'LASER IPL - SEDANG - 86.3', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1499', 'LASER ND-YAG LONG PULSE - BESAR - 86.3', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1500', 'LASER ND-YAG LONG PULSE - KECIL - 86.3', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1501', 'LASER ND-YAG LONG PULSE - SEDANG - 86.3', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1502', 'LASER ND-YAG Q-SWITCHED - BESAR - 86.3', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1503', 'LASER ND-YAG Q-SWITCHED - KECIL - 86.3', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1504', 'LASER ND-YAG Q-SWITCHED - SEDANG - 86.3', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1505', 'LEPAS CHEST TUBE - WSD - 97.41', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1506', 'LEVODOPA CHALLENGE TEST', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1507', 'LUMBAL PUNKSI DIAKDOSTIK', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1508', 'LUMBAL PUNKSI TERAPETIK', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1509', 'LUMBAR FACET JOINT INJECTION C ARM (DI RUANG OPERASI)', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1510', 'LUMBAR INTERLAMINAR INJECTION C ARM (DI RUANG\nOPERASI)', 3182000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1511', 'LUMBAR MEDIAN BRANCH INJECTION C ARM (DI RUANG\nOPERASI)', 3182000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1512', 'LUMBAR SYMPATHETIC INJECTION C ARM (DI RUANG\nOPERASI)', 7918000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1513', 'LUMBAR TRANSFORAMINAL INJECTION C ARM (DI RUANG\nOPERASI)', 7918000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1514', 'MAHKOTA PORCELAINE EMAX', 3818000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1515', 'MAHKOTA PORCELAINE ZIRCONIA', 4582000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1516', 'MANAJEMEN PERIOPERATIF PADA PASIEN GERIATRI', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1517', 'MANAJEMEN PREOPERATIF - 72.84', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1518', 'MANAJEMEN TOTAL PARENTERAL NUTRITION (TPN) - 99.15', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1519', 'MASSIVE TRANFUSION - 99.0', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1520', 'MEDIKAMEN DENGAN PERIODONTAL PACK', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1521', 'MIKROSKOP TELINGA LUAR BIILATERAL / OTHER DIAGNOSTIC PROCEDURES ON EXTERNAL EAR (BILATERAL) - 18.19', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1522', 'MIKROSKOP TELINGA LUAR UNILATERAL / OTHER DIAGNOSTIC PROCEDURES ON EXTERNAL EAR (UNILATERAL) - 18.19', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1523', 'MIKROSKOP TELINGA TENGAH BIILATERAL / OTHER\nDIAGNOSTIC PROCEDURES ON MIDDLE AND INNER EAR (BILATERAL) - 20.39', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1524', 'MIKROSKOP TELINGA TENGAH UNILATERAL / OTHER\nDIAGNOSTIC PROCEDURES ON MIDDLE AND INNER EAR (UNILATERAL) - 20.39', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1525', 'MIRROR TERAPI', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1526', 'MULLER MANUVER / OTHER DIAGNOSTIC PROCEDURES ON\nPHARYNX (MULLER MANUVER) - 29.19', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1527', 'MUSCULOSCELETAL (BURSA, TENDON, JARINGAN LUNAK,\nSENDI, OTOT, LIGAMENT) INJECTION LOCAL ANAESTHESIA + SUBSTANCE - 81.92;83.98;83.97', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1528', 'MUSCULOSKELETAL PERIFERAL NERVE INJECTION OF LOCAL\nANAESTHESIA + SUBSTANCE - 04.81;03.91', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1529', 'MUSCULOSKELETAL PERIFERAL NERVE PULSE\nRADIOFREQUENCY (PRF) - 04.2', 5498000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1530', 'MUSCULOSKELETAL PERIFERAL NERVE REGENERATIVE PAIN\nTHERAPY - 81.92;83.98', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1531', 'MUSCULOSKELETAL PERIFERAL NERVE TEST BLOCK -\n04.81;03.91', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1532', 'NASOENDOSCOPY / OTHER DIAGNOSTIC PROCEDURES ON\nNASAL SINUSES - 22.19', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1533', 'NASOENDOSKOPI FLEKSIBEL / OTHER DIAGNOSTIC\nPROCEDURES ON NASAL SINUSES (FLEXIBLE NASOENDOSCOPY) - 22.19', 287000, 'TINDAKAN NON OPERATIF'); +INSERT INTO `tarif_rs` (`ID_Tarif_RS`, `Tindakan_RS`, `Tarif_RS`, `Kategori_RS`) VALUES +('R.TNO.1534', 'NASOOROGRASTRIC CATHERTER INSERTION - 96.6', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1535', 'ND YAG LASER PADA PASIEN ANAK', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1536', 'NEEDLE THORACOCENTESIS - 96.72', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1537', 'NEURAXIAL ANALGESIA TERMASUK ILA, DLL - 03.91', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1538', 'NEUROAKSIAL CERVICAL NEUROLYSIS - 05.32', 3818000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1539', 'NEUROAKSIAL CERVICAL RADIOFREQUENCY - 04.2', 5498000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1540', 'NEUROAKSIAL CERVICAL REGENERATIVE PAIN THERAPY -\n81.92;83.98', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1541', 'NEUROAKSIAL CERVICAL TEST BLOCK - 04.81;03.91', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1542', 'NEUROAKSIAL LUMBAL NEUROLYSIS - 05.32', 3818000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1543', 'NEUROAKSIAL LUMBAL RADIOFREQUENCY - 04.2', 5498000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1544', 'NEUROAKSIAL LUMBAL REGENERATIVE PAIN THERAPY -\n81.92;83.98', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1545', 'NEUROAKSIAL LUMBAL TEST BLOCK - 04.81;03.91', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1546', 'NEUROAKSIAL SACROCOXIGEAL NEUROLYSIS - 05.32', 3818000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1547', 'NEUROAKSIAL SACROCOXIGEAL RADIOFREQUENCY - 04.2', 5498000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1548', 'NEUROAKSIAL SACROCOXIGEAL REGENERATIVE PAIN THERAPY\n- 81.92;83.98', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1549', 'NEUROAKSIAL SACROCOXIGEAL TEST BLOCK - 04.81;03.91', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1550', 'NEUROAKSIAL THORACAL NEUROLYSIS - 05.32', 3818000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1551', 'NEUROAKSIAL THORACAL RADIOFREQUENCY - 04.2', 5498000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1552', 'NEUROAKSIAL THORACAL REGENERATIVE PAIN THERAPY -\n81.92;83.98', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1553', 'NEUROAKSIAL THORACAL TEST BLOCK - 04.81;03.91', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1554', 'NEUROLOGY MUSIC THERAPY', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1555', 'NEUROMUSCULAR TAPPING (<2.5 M)', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1556', 'NEUROMUSCULAR TAPPING (> 2.5 M)', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1557', 'NEURORESTORASI (DIAGNOSTIK)', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1558', 'NEURORESTORASI ROBOTIK', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1559', 'NIGHT GUARD', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1560', 'NON INVASIVE MECH VENT (CPAP, NIPPV, NEOPUFF) 24 JAM -\n93.90', 4582000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1561', 'NON MECHAN RESUSCITATION (NEONATUS RESUSCITATION) -\n93.93', 4582000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1562', 'NON-INVASIVE MECHANICAL VENTILATION - 93.90', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1563', 'NOT - PEMERIKSAAN VERTIGO', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1564', 'NOT - TERAPI REHABILITATIVE VESTIBULAR', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1565', 'NOT ? TERAPI REPOSISI OTOLITH', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1566', 'OCCLUSAL ADJUSMENT RA RB', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1567', 'OPEN THORACOCENTESIS - 96.72', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1568', 'OTHER PHOTOTHERAPY - 99.83', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1569', 'PASANG ENDOSKOPI DENGAN ENDOSKOPI / INSERTION OF OTHER (NASO-)GASTRIC TUBE (WITH ENDOSCOPY) - 96.07', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1570', 'PASANG GUEDEL OPA/NPA PADA PASIEN KRITIS - 96.02', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1571', 'PASANG TAMPON ANTERIOR HIDUNG BILATERAL / CONTROL\nOF EPISTAXIS BY ANTERIOR NASAL PACKING (BILATERAL) - 21.01', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1572', 'PASANG TAMPON ANTERIOR HIDUNG UNILATERAL / CONTROL\nOF EPISTAXIS BY ANTERIOR NASAL PACKING (UNILATERAL) - 21.01', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1573', 'PASANG TAMPON POSTERIOR HIDUNG / CONTROL OF EPISTAXIS BY POSTERIOR (AND ANTERIOR) PACKING - 21.02', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1574', 'PASANG TAMPON TELINGA BILATERAL / PACKING OF\nEXTERNAL AUDITORY CANAL (BILATERAL) - 96.11', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1575', 'PASANG TAMPON TELINGA UNILATERAL / PACKING OF\nEXTERNAL AUDITORY CANAL (UNILATERAL) - 96.11', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1576', 'PATCH TEST TELINGA BILATERAL / OTHER DIAGNOSTIC\nPROCEDURES ON EXTERNAL EAR (PATCH TEST BILATERAL) - 18.19', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1577', 'PATCH TEST TELINGA UNILATERAL / OTHER DIAGNOSTIC\nPROCEDURES ON EXTERNAL EAR (PATCH TEST UNILATERAL) - 18.19', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1578', 'PEMAKAIAN OKSIGEN VIA ETT PER HARI', 200000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1579', 'PEMAKAIAN OKSIGEN VIA NASAL CANULE PER HARI', 25000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1580', 'PEMAKAIAN OKSIGEN VIA NRBM PER HARI', 50000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1581', 'PEMAKAIAN OKSIGEN VIA SIMPLE MASK PER HARI', 50000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1582', 'PEMASANGAN BLANKET PADA PASIEN KRITIS - 93.35', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1583', 'PEMASANGAN CATHETER DOUBLE LUMEN (CDL) UNTUK\nDIALISI, PLASMAFERESIS DENGAN USG -', 5498000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1584', 'PEMASANGAN CATHETER DOUBLE LUMEN (CDL) UNTUK\nDIALYSIS, PLASMAFERESIS -', 5498000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1585', 'PEMASANGAN CVC - 38.97', 2210000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1586', 'PEMASANGAN EXTRA CORPOREAL MEMBRAN OXYGEN\n(ECMO)/FILTER PADA PASIEN KRITIS - 39.65', 9502000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1587', 'PEMASANGAN KATETER URIN PADA PASIEN KRITIS - 59.8', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1588', 'PEMASANGAN MONITORING INVASIF KONTINYU (PICCO)/24\nJAM PADA PASIEN KRITIS - 89.68', 4582000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1589', 'PEMASANGAN NGT PADA PASIEN KRITIS - 96.07', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1590', 'PEMASANGAN PICC - 38.93', 5498000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1591', 'PEMASANGAN PICC DENGAN GUIDE USG -', 5498000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1592', 'PEMASANGAN PULMONARI ARTERI CATHETER (SWAN-GANS)\nPADA PASIEN KRITIS - 89.63', 3818000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1593', 'PEMBERIAN IMUNOTERAPI (NON STEROID)', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1594', 'PEMBERIAN NUTRISI ENTERAL/SONDE VIA NGT PADA PASIEN\nKRITIS - 96.60', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1595', 'PEMBERIAN STEROID PULSE DOSES', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1596', 'PEMBERIAN TERAPI BISFOSFONAT DAN OBAT RESORPTIF\nLAINNYA - 93.37', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1597', 'PEMBERIAN TERAPI DMARD BIOLOGIK (SUBKUTAN) - 00.18', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1598', 'PEMBERIAN TERAPI INTRAVENA DMARD BIOLOGIK - 00.18', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1599', 'PEMERIKSAAN BASAH - 91.44', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1600', 'PEMERIKSAAN DAN PENCEGAHAN KOMPLIKASI IMOBILITAS', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1601', 'PEMERIKSAAN DAN TALAKSANA PALIATIF GERIATRI', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1602', 'PEMERIKSAAN DUKUNGAN BAGI CAREGIVER', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1603', 'PEMERIKSAAN DUKUNGAN SOSIAL', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1604', 'PEMERIKSAAN ELDER MISTREATMENT', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1605', 'PEMERIKSAAN FRAILITY (STATUS KERENTANAN)', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1606', 'PEMERIKSAAN GERIATRIC KOMPREHENSIF', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1607', 'PEMERIKSAAN HAPUSAN KULIT - 70.01', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1608', 'PEMERIKSAAN IADL-ADL', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1609', 'PEMERIKSAAN INKONTINENSIA URIN', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1610', 'PEMERIKSAAN INKONTINESIA ALVI', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1611', 'PEMERIKSAAN KLINIS NEUROLOGI UMUM', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1612', 'PEMERIKSAAN KUALITAS HIDUP', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1613', 'PEMERIKSAAN MONOFILAMEN - 92.26', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1614', 'PEMERIKSAAN NYERI', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1615', 'PEMERIKSAAN PACHYMETRY', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1616', 'PEMERIKSAAN PERAWATAN PATENSI PASCA PDT -\n96.55;33.22', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1617', 'PEMERIKSAAN POSISI BOLA MATA (COVER, UNCOVER,\nKRIMSKY, HIRSCHBERG, ACT, PCT)', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1618', 'PEMERIKSAAN SARKOPENIA', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1619', 'PEMERIKSAAN SINDROMA DELIRIUM AKUT', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1620', 'PENANGANAN KEDARURATAN DELIRIUM / ACITE CONFUSION', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1621', 'PENDAMPINGAN AKHIR HAYAT', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1622', 'PENDAMPINGAN/MONITORING KARIOVASKULAR DAN/ATAU PEMBACAAN HASIL PEMERIKSAAN NUKLIR JANTUNG - 88.72', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1623', 'PENDAMPINGAN/MONITORING KARIOVASKULAR DAN/ATAU PEMBACAAN HASIL PEMERIKSAAN RADIOLOGI ( CT SCAN ANGIOGRAFI KORONER DAN CT SCAN JANTUNG) - 88.72', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1624', 'PENDAMPINGAN/MONITORING KARIOVASKULAR DAN/ATAU\nPEMBACAAN HASIL PEMERIKSAAN RADIOLOGI ( MRI JANTUNG) - 88.72', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1625', 'PENGANGKATAN KATETER SALURAN EMPEDU - 51.95', 2210000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1626', 'PENGANGKATAN TUBE DRAINAGE INTRAABDOMEN - 54.91', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1627', 'PENGELUPASAN KIMIAWI BHA (SA) - 86.24', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1628', 'PENGELUPASAN KIMIAWI BIBIR - 86.24', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1629', 'PENGELUPASAN KIMIAWI DADA - 86.24', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1630', 'PENGELUPASAN KIMIAWI KELOPAK MATA ATAS - 86.24', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1631', 'PENGELUPASAN KIMIAWI KELOPAK MATA BAWAH - 86.24', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1632', 'PENGELUPASAN KIMIAWI KETIAK - 86.24', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1633', 'PENGELUPASAN KIMIAWI LEHER - 86.24', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1634', 'PENGELUPASAN KIMIAWI PUNGGUNG - 86.24', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1635', 'PENGELUPASAN KIMIAWI PUNGGUNG KAKI - 86.24', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1636', 'PENGELUPASAN KIMIAWI PUNGGUNG TANGAN - 86.24', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1637', 'PENGELUPASAN KIMIAWI SELANGKANGAN - 86.24', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1638', 'PENGELUPASAN KIMIAWI TUNGKAI ATAS - 86.24', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1639', 'PENGELUPASAN KIMIAWI TUNGKAI BAWAH - 86.24', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1640', 'PENGGANTIAN BRACKET / BUCCAL TUBE BARU', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1641', 'PENGGANTIAN KATETER NEFROSTOMY', 2210000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1642', 'PENGGANTIAN KATETER SALURAN EMPEDU - 51.95', 3818000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1643', 'PENGGANTIAN KATETER UCS (URETEROKUTANEOSTOMI)', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1644', 'PENGGANTIAN MOLAR BAND BARU', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1645', 'PENILAIAN PSIKOMETRIK UNTUK AXIETAS, DEPRESI, GANGGUAN PSIKOSOMATIK, KUALITAS HIDUP (HADS, BDI,\nDASS, SCL 90, HRS DLL) - 94.09', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1646', 'PENILAIAN STATUS ANTROPOMETRI ANAK - 93.07', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1647', 'PENINGGIAN GIGIT', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1648', 'PENUTUPANSTROMA TRAKEOSTOMI / CLOSURE OF EXTERNAL\nFISTULA OF TRACHEA - 31.72', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1649', 'PERAWATAN DENTIN HIPERSENSITIF PER REGIO', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1650', 'PERCUTANEUS DENERVATION OF FACET - 03.96', 3182000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1651', 'PERCUTANEUS DILATATION TRACHEOSTOMY (PDT) PADA\nPASIEN KRITIS - 31.1', 3182000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1652', 'PERIBULBAR BLOCK - 04.81', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1653', 'PERIFERAL NERVE BLOCK - 04.81', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1654', 'PERIFERAL NERVE BLOCK CONTINUOUS - 04.81', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1655', 'PERIFERAL NERVE HYDRODESECTION - 03.6', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1656', 'PERIFERAL NERVE NEUROLYSIS - 04.2', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1657', 'PERIOPERATIVE AUTOLOGOUS TRANSFUSION OF WHOLE BLOOD OR BLOOD COMPONENTS; INTRAOPERATIVE BLOOD COLLECTION; POSTOPERATIVE BLOOD COLLECTION; SALVAGE -\n99.00', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1658', 'PERIPHERAL MAGNETIC STIMULATION', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1659', 'PERONEAL ENTRAPMENT MANUAL (TANPA PANDUAN)', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1660', 'PERSIAPAN TERAPI KANKER USIA LANJUT', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1661', 'PHOTOTHERAPY - BLUE LIGHT - 99.82', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1662', 'PHOTOTHERAPY - RED LIGHT - 99.82', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1663', 'PICC INSERTION TANPA/WITH USG PADA PASIEN KRITIS -\n39.90', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1664', 'PIRIFORMIS SYNDROME C ARM (DI RUANG OPERASI)', 2652000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1665', 'PLDD (PERCUTANEOUS LASER DISC DECOMPRESSION) - 80.59', 7918000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1666', 'POCUS DIAGNOSTIK JANTUNG PADA PASIEN KRITIS - 88.72', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1667', 'POCUS GINJAL PADA PASIEN KRITIS - 88.75', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1668', 'POCUS ABDOMEN PADA PASIEN KRITIS - 88.76', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1669', 'POCUS THORAKS DAN PARU PADA PASIEN KRITIS - 88.73', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1670', 'POPLITEAL ENTRAPMENT MANUAL (TANPA PANDUAN)', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1671', 'PRONE MECHANICAL VENTILATION - 96.70', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1672', 'PROSEDUR INTERVENSI NYERI NEUROMUSCULOSCELETAL\nDENGAN USG - 81.92;83.98;83.97', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1673', 'PROSEDUR INTERVENSI NYERI NEUROMUSCULOSCELETAL\nTANPA USG - 81.92;83.98;83.97', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1674', 'PROSEDUR RELEASE PERIFERAL NERVE INTRAPMENT -\n81.92;83.98', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1675', 'PROSEDUR TRIGGER POINT PAIN INJECTION -\n81.92;83.98;83.99', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1676', 'PRPP INJECTION C ARM (DI RUANG OPERASI)', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1677', 'PRPP INJECTION MANUAL (TANPA PANDUAN)', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1678', 'PSIKOTERAPI INDIVIDU PADA ANAK-ANAK MASALAH\nKESEHATAN MENTAL - 94.3', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1679', 'PUNGSI SENDI - 81.91', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1680', 'RADIOFREKUENSI LUMBOSACRAL C ARM (DI RUANG OPERASI)', 7918000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1681', 'RADIOFREKWENSI SERVIKAL C ARM (DI RUANG OPERASI)', 7918000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1682', 'RECRUITMENT MANUEVER - 96.72', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1683', 'REIMPLANTASI GIGI DENGAN BRACKET ANTERIOR', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1684', 'REINSERSI BRACKET LEPAS', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1685', 'REPETITIVE TRANSCRANIAL MAGNETIC STIMULATION\n(TERAPEUTIK)', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1686', 'REPETITIVE TRANSCRANIAL MAGNETIC STIMULATION\n(TERAPEUTIK) DENGAN ROBOTIK', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1687', 'RESEMENTASI BAND ORTO PER RAHANG', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1688', 'RESUSITASI PASIEN KRITIS DENGAN 1 ATAU 2 GAGAL ORGAN\n(SOFA SCORE 6 - 15 (PER HARI) - 93.93', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1689', 'RESUSITASI PASIEN KRITIS DENGAN 3 ATAU LEBIH GAGAL\nORGAN (SOFA SCORE > 15 (PER HARI) - 93.93', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1690', 'RESUSITASI PASIEN KRITIS DENGAN POTENSI GAGAL ORGAN\n(SOFA SCORE < 6 (PER HARI) - 93.93', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1691', 'RIGID VIDEOLARYNGOSCOPY - 96.04', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1692', 'SACRAL EPIDURAL INJECTION C ARM (DI RUANG OPERASI)', 7918000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1693', 'SACRAL TRANSFORAMINAL INJECTION C ARM (DI RUANG\nOPERASI)', 7918000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1694', 'SACROILIAC JOINT DYSFUNCTION C ARM (DI RUANG OPERASI)', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1695', 'SAKARIN TES', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1696', 'SCALLING PER RAHANG', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1697', 'SCALP BLOCK DENGAN USG - 04.81', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1698', 'SCALP BLOCK TANPA USG - 04.81', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1699', 'SCREENING RETINOPATHY OF PREMATURITY', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1700', 'SEDASI DILUAR KAMAR OPERASI - 89.50', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1701', 'SEDATION, PARALYSIS, ANALGESIA PASIEN PERAWATAN KRITIS\n- 99.21', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1702', 'SEDATION/ PARALYSIS/ ANALGESIA PADA PASIEN KRITIS (PER\nHARI) - 99.26;04.81', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1703', 'SEDIAAN BASAH - 91.44', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1704', 'SEDIAAN GIEMSA - 91.65', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1705', 'SEDIAAN GRAM - 91.61', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1706', 'SEDIAAN SCRAPPING ECTOPARASIT - 91.64', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1707', 'SERVIKAL FACET JOINT INJECTION C ARM (DI RUANG OPERASI)', 7918000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1708', 'SERVIKAL INTERLAMINAR INJECTION C ARM (DI RUANG\nOPERASI)', 7918000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1709', 'SERVIKAL MEDIAN BRANCH INJECTION C ARM (DI RUANG\nOPERASI)', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1710', 'SERVIKAL SYMPATHETIC INJECTION C ARM (DI RUANG\nOPERASI)', 7918000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1711', 'SINGLE PULSE TRANSCRANIAL MAGNETIC STIMULATION\n(DIAGNOSTIK)', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1712', 'SKIN AUGMENTATION - FILLER HA - BESAR - 86.93', 5498000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1713', 'SKIN AUGMENTATION - FILLER HA - KECIL - 86.93', 3818000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1714', 'SKIN AUGMENTATION - FILLER HA - SEDANG - 86.93', 4582000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1715', 'SKIN AUGMENTATION - FILLER PRF - BESAR - 86.93', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1716', 'SKIN AUGMENTATION - FILLER PRF - KECIL - 86.93', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1717', 'SKIN AUGMENTATION - FILLER PRF - SEDANG - 86.93', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1718', 'SKIN AUGMENTATION - FILLER PRP - BESAR - 86.93', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1719', 'SKIN AUGMENTATION - FILLER PRP - KECIL - 86.93', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1720', 'SKIN AUGMENTATION - FILLER PRP - SEDANG - 86.93', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1721', 'SKIN PRICK TEST / OTHER DIAGNOSTIC PROCEDURES ON SKIN\nAND SUBCUTANEOUS TISSUE - 86.19', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1722', 'SKIN PROVOCATION TEST - 86.19', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1723', 'SMELL TEST (TES AMBANG ALKOHOL) / OTHER DIAGNOSTIC\nPROCEDURES ON NOSE (SMELL TEST) - 21.29', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1724', 'SNIFFIN STICK TEST', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1725', 'SPINAL BLOOD PATCH - 03.95', 3182000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1726', 'SPINAL CORD STIMULATION - 03.93', 7918000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1727', 'SPLINTING FIBER PER GIGI', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1728', 'STEREOSKOPIS DENGAN BUTTERFLY', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1729', 'STEREOSKOPIS DENGAN TNO', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1730', 'SUB ARACHNOID BLOCK - 03.91', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1731', 'SUB ARACHNOID BLOCK CONTINUOUS - 03.90', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1732', 'SUBTENON BLOCK - 04.81', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1733', 'SYMPATHETIC NERVE NEUROLYSIS - 05.31;05.32', 5498000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1734', 'TAPPING/ PHLEBOTOMI (TERAPEUTIK DAN DIAGNOSTIK) -\n38.99', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1735', 'TARSAL TUNNEL SYNDROME MANUAL (TANPA PANDUAN)', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1736', 'TBS (INTERMITTENT THETA BURST STIMULATION)', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1737', 'TENDINITIS BICIPITALIS MANUAL (TANPA PANDUAN)', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1738', 'TENDINITIS PATELLA MANUAL (TANPA PANDUAN)', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1739', 'TENNIS ELBOW MANUAL (TANPA PANDUAN)', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1740', 'TERAPI PLASMAPHERESIS PASIEN KRITIS (PER HARI) - 99.7', 7918000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1741', 'TERAPI ANTIANGIOGENIK BEVACIZUMAB IV', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1742', 'TERAPI BISPHOSPHONATE IV', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1743', 'TERAPI FISIK NEURORESTORASI (NEUROFASILITASI)', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1744', 'TERAPI HYPOTHERMIA - 99.21', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1745', 'TERAPI OKUPASI NEURORESTORASI (NEUROFASILITASI)', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1746', 'TERAPI SURFAKTAN - 93.94', 6598000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1747', 'TERAPI WICARA NEURORESTORASI (NEUROFASILITASI)', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1748', 'TERES MAYOR MANUAL (TANPA PANDUAN)', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1749', 'TES ALERGI (SKINPRCK TES) - 86.12', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1750', 'TES BISIK / CLINICAL TEST OF HEARING - 95.42', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1751', 'TES BUCKNER', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1752', 'TES DIX HALLPIKE DENGAN FRENZEL / OTHER AUDITORY AND\nVESTIBULAR FUNCTION TESTS (DIX HALLPIKE) - 95.46', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1753', 'TES FUNGSI N VII / OTHER NONOPERATIVE NEUROLOGIC\nFUNCTION TESTS (N. VII TEST) - 89.15', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1754', 'TES GARPUTALA / CLINICAL TEST OF HEARING (TUNING FORK) -\n95.42', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1755', 'TES KALORI / VESTIBULER KLINIS / CLINICAL VESTIBULAR\nFUNCTION TESTS (CALORY TEST) - 95.44', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1756', 'TES KESEIMBANGAN SEDERHANA / CLINICAL VESTIBULAR\nFUNCTION TEST - 95.44', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1757', 'TES TOPOGNOSTIK SARAF FACIALIS / CLINICAL VESTIBULAR\nFUNCTION TESTS - 95.44', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1758', 'TEST SKREENING PERKEMBANGAN ANAK AWAL - 94.1', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1759', 'TEST SKREENING PERKEMBANGAN ANAK LANJUTAN - 94.19', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1760', 'TIBIAL ENTRAPMENT MANUAL (TANPA PANDUAN)', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1761', 'TINDAKAN KOREKSI ALBUMIN INTRAVENA PADA PASIEN\nKRITIS - 99.15', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1762', 'TINDAKAN KOREKSI ASAM BASA PADA PASIEN KRITIS -\n99.18;99.15', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1763', 'TINDAKAN KOREKSI ELEKTROLIT PADA PASIEN KRITIS - 99.18', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1764', 'TINDAKAN SUCTION TRAKEA/ORAL PADA PASIEN KRITIS -\n96.56', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1765', 'TINDAKAN THERAPEUTIC PLASMA EXCHANGE ( TPE ) PADA\nPASIEN KRITIS - 99.71', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1766', 'TOPIKAL ANTIBIOTIK PER REGIO', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1767', 'TOPIKAL HYALURONIC ACID GEL', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1768', 'TOTAL PARENTERAL NUTRITION (TPN) PASIEN KRITIS (PER\nHARI) - 99.15', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1769', 'TRAKEOSKOPI FLEKSIBEL / TRACHEOSCOPY THROUGH\nARTIFICIAL STOMA - 31.41', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1770', 'TRANCRANIAL MAGNETIC STIMULATION CENTRAL', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1771', 'TRANS NASAL ESOFAGOSKOPI FLEKSIBEL / OTHER DIAGNOSTIC\nPROCEDURES ON PHARYNX (TRANS NASAL FLEXIBLE ENDOSCOPY) - 29.19', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1772', 'TRANSCRANIAL DIRECT CURRENT STIMULATION (TDCS)', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1773', 'TRANSCRANIAL PULSE STIMULATION', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1774', 'TRANSFUSION OF OTHER SERUM/PLASMA - 99.07', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1775', 'TRANSFUSION OF PACKED CELLS - 99.04', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1776', 'TRANSFUSION OF PLATELETS - 99.05', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1777', 'TRANSFUSION OF PREVIOUSLY COLLECTED AUTOLOGOUS\nBLOOD - 99.02', 7918000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1778', 'TRIGGER FINGER MANUAL (TANPA PANDUAN)', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1779', 'TRIGGER POINT MANUAL (TANPA PANDUAN)', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1780', 'UMBILICAL VEIN CATHETER - 38.92', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1781', 'VESTIBULER REHABILITATION THERAPY - 93.89', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1782', 'VRT (VIRTUAL REALITY THERAPY)', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1783', 'WOUND TOILET/RAWAT LUKA', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1784', 'LASER MATA', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1785', 'HEMODIALISA', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1786', 'AKUPUNKTUR RINGAN', 30000, 'TINDAKAN KOMPLEMENTER'), +('R.TNO.1787', 'AKUPUNKTUR SEDANG', 40000, 'TINDAKAN KOMPLEMENTER'), +('R.TNO.1788', 'AKUPUNKTUR BERAT', 60000, 'TINDAKAN KOMPLEMENTER'), +('R.TNO.1789', 'LASERPUNKTUR RINGAN', 40000, 'TINDAKAN KOMPLEMENTER'), +('R.TNO.1790', 'LASERPUNKTUR SEDANG', 60000, 'TINDAKAN KOMPLEMENTER'), +('R.TNO.1791', 'LASERPUNKTUR BERAT', 80000, 'TINDAKAN KOMPLEMENTER'), +('R.TNO.1792', 'TENS', 60000, 'TINDAKAN KOMPLEMENTER'), +('R.TNO.1793', 'TDP', 60000, 'TINDAKAN KOMPLEMENTER'), +('R.TNO.1794', 'AKUPRESSURE RINGAN', 40000, 'TINDAKAN KOMPLEMENTER'), +('R.TNO.1795', 'AKUPRESSURE SEDANG', 50000, 'TINDAKAN KOMPLEMENTER'), +('R.TNO.1796', 'AKUPRESSURE BERAT', 60000, 'TINDAKAN KOMPLEMENTER'), +('R.TNO.1797', 'MEDICAL CHECK UP BEBAS KETUNAAN', 200000, 'MEDICAL CHECK UP'), +('R.TNO.1798', 'MEDICAL CHECK UP BEBAS KETUNAAN DENGAN AUDIOMETRI', 301000, 'MEDICAL CHECK UP'), +('R.TNO.1799', 'MEDICAL CHECK UP BEBAS KETUNAAN DAN BEBAS TB PARU', 200000, 'MEDICAL CHECK UP'), +('R.TNO.1800', 'MEDICAL CHECK UP PELAJAR', 200000, 'MEDICAL CHECK UP'), +('R.TNO.1801', 'MEDICAL CHECK UP CALON MAHASISWA BARU', 200000, 'MEDICAL CHECK UP'), +('R.TNO.1802', 'MEDICAL CHECK UP CALON KARYAWAN', 326000, 'MEDICAL CHECK UP'), +('R.TNO.1803', 'MEDICAL CHECK UP SEKOLAH KEDINASAN', 326000, 'MEDICAL CHECK UP'), +('R.TNO.1804', 'MEDICAL CHECK UP CALON JEMAAH HAJI KHUSUS LAKI - LAKI DAN JEMAAH HAJI KHUSUS PEREMPUAN USIA > 60 TAHUN', 624000, 'MEDICAL CHECK UP'), +('R.TNO.1805', 'MEDICAL CHECK UP CALON JEMAAH HAJI KHUSUS PEREMPUAN\nUSIA < 60 TAHUN', 624000, 'MEDICAL CHECK UP'), +('R.TNO.1806', 'MEDICAL CHECK UP KELAYAKAN TUGAS PNS / KARYAWAN NON\nPNS', 326000, 'MEDICAL CHECK UP'), +('R.TNO.1807', 'MEDICAL CHECK UP PERSYARATAN STUDI KE LUAR NEGERI', 427000, 'MEDICAL CHECK UP'), +('R.TNO.1808', 'MEDICAL CHECK UP PERSYARATAN SELEKSI JABATAN', 2778000, 'MEDICAL CHECK UP'), +('R.TNO.1809', 'MEDICAL CHECK UP PERSYARATAN BEKERJA KE LUAR NEGERI', 568000, 'MEDICAL CHECK UP'), +('R.TNO.1810', 'MEDICAL CHECK UP SELEKSI PPDS', 326000, 'MEDICAL CHECK UP'), +('R.TNO.1811', 'MEDICAL CHECK UP SELEKSI PPDS PRODI JANTUNG DAN PEMBULUH DARAH', 427000, 'MEDICAL CHECK UP'), +('R.TNO.1812', 'MEDICAL CHECK UP UNTUK USIA > 18 TAHUN', 126000, 'MEDICAL CHECK UP'), +('R.TNO.1813', 'MEDICAL CHECK UP PENGANGKATAN PNS', 587000, 'MEDICAL CHECK UP'), +('R.TNO.1814', 'MEDICAL CHECK UP JASMANI DAN ROHANI UMUM', 221000, 'MEDICAL CHECK UP'), +('R.TNO.1815', 'MEDICAL CHECK UP JASMANI DAN ROHANI KHUSUS', 442000, 'MEDICAL CHECK UP'), +('R.TNO.1816', 'MEDICAL CHECK UP JASMANI DAN ROHANI LENGKAP', 574000, 'MEDICAL CHECK UP'), +('R.TNO.1817', 'MEDICAL CHECK UP JASMANI DAN ROHANI UNTUK ADOPSI DAN HAK ASUH ANAK', 663000, 'MEDICAL CHECK UP'), +('R.TNO.1818', 'MEDICAL CHECK UP JASMANI DAN ROHANI UMUM DAN BEBAS NAPZA', 221000, 'MEDICAL CHECK UP'), +('R.TNO.1819', 'MEDICAL CHECK UP JASMANI DAN ROHANI UNTUK CALON PPDS ATAU STAF BARU BIDANG MEDIS', 858000, 'MEDICAL CHECK UP'), +('R.TNO.1820', 'MEDICAL CHECK UP JASMANI DAN ROHANI KHUSUS DAN BEBAS NAPZA', 442000, 'MEDICAL CHECK UP'), +('R.TNO.1821', 'MEDICAL CHECK UP JASMANI DAN ROHANI LENGKAP DAN BEBAS NAPZA', 574000, 'MEDICAL CHECK UP'), +('R.TNO.1822', 'MEDICAL CHECK UP JASMANI DAN ROHANI UNTUK CALON PPDS ATAU STAF BARU BIDANG MEDIS DAN BEBAS NAPZA', 858000, 'MEDICAL CHECK UP'), +('R.TNO.1823', 'MEDICAL CHECK UP JASMANI & ROHANI UNTUK SELEKSI JABATAN', 1851000, 'MEDICAL CHECK UP'), +('R.TNO.1824', 'MEDICAL CHECK UP JASMANI DAN ROHANI UNTUK KASUS HUKUM / LEGAL', 1630000, 'MEDICAL CHECK UP'), +('R.TNO.1825', 'MEDICAL CHECK UP JASMANI DAN ROHANI UNTUK SELEKSI JABATAN DAN BEBAS NAPZA', 1851000, 'MEDICAL CHECK UP'), +('R.TO.0001', 'ABDOMEN, LAPAROTOMY, TRAUMA REOPERATION', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0002', 'ABDOMEN, LAPAROTOMY, TRAUMA, DAMAGE CONTROL,\nHAEMOSTASIS, PACKING', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0003', 'ABDOMEN, MAJOR/MULTIPLE ORGAN REPAIR (TRAUMA)', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0004', 'ABDOMEN, PERITONEAL CAVITY, ASCITES/FLUID/ABSCESS COLLECTION, IMAGING GUIDED PERCUTANEOUS ASPIRATION/DIAGNOSTIC\nTAP/CATHETER', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0005', 'ABDOMEN, RETROPERITONEUM, ABSCESS, DRAINAGE\nWITH/WITHOUT LAPAROTOMY', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0006', 'ABDOMEN, RETROPERITONEUM, TUMOR, REMOVAL', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0007', 'ABDOMEN/PELVIS, CATHETER BLOCKAGE, IMAGING GUIDED CATHETER CHANGE/CATHETER\nADJUSTMENT/CHECK TUBE', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.0008', 'ABDOMEN/PELVIS, VARIOUS LESIONS, IMAGING GUIDED\nPERCUTANEOUS BIOPSY', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.0009', 'ABDOMEN/PELVIS, VARIOUS LESIONS, INSERTION OF\nPERITONEAL DIALYSIS CATHETER', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.0010', 'ABDOMEN/PELVIS, VARIOUS LESIONS, REMOVAL OF\nPERITONEAL DIALYSIS CATHETER', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.0011', 'ABDOMINAL CAVITY, ADHESIONS (EXTENSIVE), LYSIS AS PRIMARY PROCEDURE, EXTENSIVE WITH OR WITHOUT BOWEL RESECTION (MIS/OPEN) WHERE TIME TAKEN IS\nMORE THAN 2HOURS', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0012', 'ABDOMINAL CAVITY, ADHESIONS (LIMITED), LYSIS AS PRIMARY PROCEDURE (MIS/OPEN) WHERE TIME TAKEN IS LESS THAN\n2HOURS', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0013', 'ABDOMINAL CAVITY, LYMPHOMA,FOR GRADING LYMPHOMA WITH SPLENECTOMY/LIVER/LYMPH NODE BIOPSY (MIS/OPEN)', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0014', 'ABDOMINAL CAVITY, MULTIPLE RUPTURES, MAJOR\nREPAIR/REMOVAL', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0015', 'ABDOMINAL CAVITY, NEONATAL ALIMENTARY OBSTRUCTION,\nLAPAROTOMY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0016', 'ABDOMINAL CAVITY, RECURRENT ABDOMINAL TUMOR, RESECTION WITH COMPLETE ABDOMINOPELVIC PERITONECTOMY AND HYPERTHERMIC INTRAOPERATIVE\nCHEMOTHERAPY', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.0017', 'ABDOMINAL CAVITY, RUPTURED VISCUS, SIMPLE REPAIR', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0018', 'ABDOMINAL CAVITY, SUBPHRENIC ABSCESS, DRAINAGE', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0019', 'ABDOMINAL CAVITY, VARIOUS LESIONS, EXPLORATORY\nLAPAROTOMY (MIS/OPEN)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0020', 'ABDOMINAL CAVITY, VARIOUS LESIONS, INCLUDING\nCOLOSTOMY/ENTEROSTOMY/GASTROSTOMY (MIS/OPEN)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0021', 'ABDOMINAL CAVITY, VARIOUS LESIONS, NOT CLASSIFIED\nELSEWHERE (MIS/OPEN)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0022', 'ABDOMINAL WALL, BURST ABDOMEN, REPAIR', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0023', 'ABDOMINAL WALL, EPIGASTRIC/UMBILICAL HERNIA, REPAIR\n(MIS/OPEN)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0024', 'ABDOMINAL WALL, EXOMPHALOS/GASTROSCHISIS, OPERATING\nBY PLASTIC FLAP', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.0025', 'ABDOMINAL WALL, EXOMPHALOS/GASTROSCHISIS, REPAIR', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0026', 'ABDOMINAL WALL, INGUINAL HERNIA (INFANTS & CHILDREN),\nHERNIOTOMY (BILATERAL)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0027', 'ABDOMINAL WALL, INGUINAL HERNIA (INFANTS & CHILDREN),\nHERNIOTOMY (UNILATERAL)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0028', 'ABDOMINAL WALL, INGUINAL HERNIA (NEONATES),\nHERNIOTOMY (BILATERAL)', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.0029', 'ABDOMINAL WALL, INGUINAL HERNIA (NEONATES),\nHERNIOTOMY (UNILATERAL)', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0030', 'ABDOMINAL WALL, INGUINAL/FEMORAL HERNIA, BILATERAL\nHERNIORRHAPHY (MIS/OPEN)', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.0031', 'ABDOMINAL WALL, INGUINAL/FEMORAL HERNIA, UNILATERAL\nHERNIORRHAPHY (MIS/OPEN)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0032', 'ABDOMINAL WALL, STRANGULATED/OBSTRUCTED HERNIA,\nREPAIR WITH BOWEL RESECTION', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.0033', 'ABDOMINAL WALL, STRANGULATED/OBSTRUCTED HERNIA,\nREPAIR WITHOUT BOWEL RESECTION', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0034', 'ABDOMINAL WALL, VENTRAL/INCISIONAL/RECURRENT HERNIA,\nREPAIR (MIS/OPEN)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0035', 'ABDOMINAL/RETROPERITONEAL TUMOUR, RECURRENT RESECTION WITH OR WITHOUT VASCULAR INVOLVEMENT AND\nVASCULAR REPAIR', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0036', 'ADENOIDS, VARIOUS LESIONS, REMOVAL', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0037', 'ADRENAL, VARIOUS LESIONS, ADRENAL VENOUS SAMPLING', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0038', 'ADRENALS, VARIOUS LESIONS, BIOPSY/EXCISION (OPEN OR LAP)', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0039', 'ANAL INCONTINENCE, ARTIFICIAL BOWEL SPHINCTER INSERTION', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0040', 'ANAL INCONTINENCE, COMPLEX PROCEDURES INCLUDING\nMUSCLE TRANSPOSITION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0041', 'ANAL SPHINCTER BULKING INJECTION WITH OR WITHOUT\nRECTAL ULTRASOUND GUIDANCE', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0042', 'ANGIOEMBOLISATION FOR TRAUMA', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0043', 'ANKLE, ANKLE FRACTURE, BIMALLEOLAR, ORIF', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0044', 'ANKLE, ANKLE FRACTURE, UNIMALLEOLAR, ORIF', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0045', 'ANKLE, COMMINUTED PLAFOND FRACTURE ORIF', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0046', 'ANKLE, DISLOCATION, OPEN REDUCTION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0047', 'ANKLE, LIGAMENTOUS INSTABILITY, RECONSTRUCTION OF\nLIGAMENTS (EG. BOSTROM, CHRISMAN-SNOOK)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0048', 'ANKLE, THERAPEUTIC ARTHROSCOPY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0049', 'ANKLE, VARIOUS LESIONS, ARTHRODESIS (SURGICAL FUSION)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0050', 'ANKLE, VARIOUS LESIONS, OPEN EXCISION/INTERPOSITION\nARTHROPLASTY, WITH OR WITHOUT RESURFACING', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.0051', 'ANKLE, VARIOUS LESIONS, PRIMARY TOTAL JOINT\nREPLACEMENT WITH AUGMENTATION, REQUIRING EXTRA IMPLANTS OR BONE GRAFTS, OPEN/MIS/NAVIGATED', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0052', 'ANKLE, VARIOUS LESIONS, PRIMARY TOTAL JOINT\nREPLACEMENT, OPEN/MIS/NAVIGATED', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.0053', 'ANKLE, VARIOUS LESIONS, REPAIR OF LIGAMENTS', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0054', 'ANKLE, VARIOUS LESIONS, REVISION TOTAL JOINT\nREPLACEMENT, OPEN/MIS/NAVIGATED', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.0055', 'ANKLE, VARIOUS LESIONS, SYNOVECTOMIES', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0056', 'ANTERIOR CHAMBER PARACENTESIS, IRRIGATION OR\nREFORMATION', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0057', 'ANTERIOR CHAMBER, VARIOUS LESIONS, VITREOUS REMOVAL', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0058', 'ANUS, ANO-RECTAL MALFORMATION\n(CLOACA/ABDOMINOPERINEAL)', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.0059', 'ANUS, ANO-RECTAL MALFORMATION, ANOPLASTY', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0060', 'ANUS, ANO-RECTAL MALFORMATION, ANORECTOPLASTY (MIS)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0061', 'ANUS, ANO-RECTAL MALFORMATION, LIMITED POSTERIOR\nSAGITTAL ANORECTOPLASTY (PSARP)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0062', 'ANUS, ANO-RECTAL MALFORMATION, POSTERIOR SAGITTAL\nANORECTOPLASTY (PSARP)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0063', 'ANUS, ANO-RECTAL PROLAPSE, CIRCUMANAL SUTURE', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.0064', 'ANUS, ANO-RECTAL PROLAPSE, INJECTION', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.0065', 'ANUS, ANO-RECTAL PROLAPSE, RADICAL OPERATION WITH\nRESECTION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0066', 'ANUS, ANO-RECTAL PROLAPSE, RADICAL OPERATION WITHOUT\nRESECTION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0067', 'ANUS, FISSURE, EXCISION/LATERAL SPHINCTEROTOMY', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.0068', 'ANUS, FISTULA-IN-ANO (HIGH), COMPLEX AND RECURRENT\nFISTULECTOMY', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0069', 'ANUS, FISTULA-IN-ANO, EXCISION/ FISTULECTOMY', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.0070', 'ANUS, FISTULA-IN-ANO, INSERTION OF SETON', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.0071', 'ANUS, HEMORRHOIDS, CRYOSURGERY', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.0072', 'ANUS, HEMORRHOIDS, HEMORRHOIDECTOMY WITH OR\nWITHOUT SIGMOIDOSCOPY', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0073', 'ANUS, HEMORRHOIDS, REMOVAL OF EXTERNAL ANAL TAGS', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0074', 'ANUS, HEMORRHOIDS, TRANSANAL HAEMORRHOIDAL\nDEARTERIALIZATION (THD)', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0075', 'ANUS, HEMORRHOIDS,STAPLED HAEMORRHOIDECTOMY', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0076', 'ANUS, INCONTINENCE, OPERATION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0077', 'ANUS, ISCHIORECTAL ABSCESS, SAUCERISATION', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0078', 'ANUS, PERINEAL ABSCESS, SAUCERISATION/DRAINAGE', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0079', 'ANUS, SPHINCTEROPLASTY FOR ANAL INCONTINENCE', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0080', 'ANUS, STRICTURE, DILATATION', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0081', 'ANUS, STRICTURE, REPAIR', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0082', 'ANUS, TUMOR, ABDOMINO-PERINEAL RESECTION (OPEN OR\nLAP)', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0083', 'ANUS, VARIOUS LESIONS, BIOPSY OF MUSCLE/MUCOSA', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0084', 'AORTA, ABDOMINAL AORTIC ANEURYSM, ENDOVASCULAR\nANEURYSM REPAIR (EVAR)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0085', 'AORTA, ABDOMINAL AORTIC ANEURYSM, EXCISION AND\nINSERTION OF GRAFT', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0086', 'AORTA, ANEURYSM, JUXTARENAL TYPE', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0087', 'AORTA, COARCTATION, ENDOVASCULAR STENT PLACEMENT', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.0088', 'AORTA, DESCENDING AORTIC ANEURYSM, EXCISION AND\nINSERTION OF GRAFT', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.0089', 'AORTA, RUPTURED ABDOMINAL AORTIC ANEURYSM, EXCISION\nAND INSERTION OF GRAFT', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0090', 'AORTA, RUPTURED AORTIC ANEURYSM (THORACIC OR\nABDOMINAL), ENDO-VASCULAR AORTIC REPAIR (EVAR)', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.0091', 'AORTA, THORACIC AORTIC ANEURYSM, THORACIC\nENDOVASCULAR ANEURYSM REPAIR (TEVAR)', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.0092', 'AORTA, THORACO-ABDOMINAL ANEURYSM, EXCISION AND\nINSERTION OF GRAFT', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.0093', 'AORTA, THORACOABDOMINAL AORTIC ANEURYSM,\nENDOVASCULAR ANEURYSM REPAIR (EVAR)', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.0094', 'AORTA, TOTAL ARCH REPLACEMENT', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.0095', 'AORTA, VARIOUS LESIONS, INSERTION/REMOVAL OF INTRA\nAORTIC BALLOON', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0096', 'AORTIC DISSECTION, ENDOVASCULAR FENESTRATION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0097', 'AORTIC DISSECTION, ENDOVASCULAR STENT GRAFT REPAIR', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0098', 'APPENDIX, ABSCESS, DRAINAGE ONLY', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0099', 'APPENDIX, TUMOR, RIGHT HEMICOLECTOMY WITH/WITHOUT\nADHESIOLYSIS (OPEN OR LAP)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0100', 'APPENDIX, VARIOUS LESIONS, APPENDICECTOMY WITHOUT\nDRAINAGE, MIS/OPEN', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0101', 'APPENDIX, VARIOUS LESIONS/ABSCESS, APPENDICECTOMY\nWITH DRAINAGE (MIS/OPEN)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0102', 'ARRHYTHMIA SURGERY MAZE (INCLUDES THE MINI- MAZE\nPROCEDURE WITH RADIOFREQUENCY CLAM)', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0103', 'ARTERIOVENOUS FISTULA GRAFT, THROMBECTOMY', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0104', 'ARTERIOVENOUS FISTULA, ANGIOGRAM', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.0105', 'ARTERIOVENOUS FISTULA, ANGIOPLASTY WITH/WITHOUT\nSTENTING', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0106', 'ARTERIOVENOUS FISTULA, LIGATION OF SIDE BRANCH', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.0107', 'ARTERIOVENOUS FISTULA, SYNTHETIC GRAFT', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0108', 'ARTERY (DISTAL EXTREMITY/DIGIT), VARIOUS LESIONS,\nMICROVASCULAR REPAIR', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0109', 'ARTERY (EXTREMITY), THROMBOSIS, ENDARTERECTOMY', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.0110', 'ARTERY (FEMORAL/ILIAC), THROMBOSIS, ENDARTERECTOMY', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.0111', 'ARTERY (LARGE), VARIOUS LESIONS, LIGATION', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0112', 'ARTERY (MAJOR), ANEURYSM, EXCISION AND INSERTION OF\nGRAFT', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0113', 'ARTERY (MAJOR), TRAUMA, REPAIR', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0114', 'ARTERY (NECK AND EXTREMITIES), EMBOLISM, EMBOLECTOMY', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0115', 'ARTERY (OTHERS), THROMBOSIS, ENDARTERECTOMY', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.0116', 'ARTERY (TEMPORAL), VARIOUS LESIONS, BIOPSY', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.0117', 'ARTERY (TRUNK), EMBOLISM, EMBOLECTOMY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0118', 'ARTERY, ARTERIO-VENOUS FISTULA (LARGE), EXCISION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0119', 'ARTERY, ARTERIO-VENOUS FISTULA (SMALL), EXCISION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0120', 'ARTERY, ARTERIO-VENOUS FISTULA, DISSECTION AND REPAIR\nWITH RESTORATION OF CONTINUITY', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0121', 'ARTERY, ARTERIO-VENOUS FISTULA, LIGATION', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.0122', 'ARTERY, BYPASS, ABOVE/BELOW-KNEE WITH VEIN', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0123', 'ARTERY, BYPASS, DISTAL LEG/PEDAL WITH VEIN', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0124', 'ARTERY, BYPASS, VISCERAL, MULTIPLE', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.0125', 'ARTERY, BYPASS, VISCERAL, SINGLE', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0126', 'ARTERY, CAROTICO-CAVERNOUS FISTULA, EMBOLISATION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0127', 'ARTERY, DEFECT, ARTERIAL PATCH GRAFT', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0128', 'ARTERY, EXTRACRANIAL, VARIOUS LESIONS, BALLOON TEST\nOCCLUSION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0129', 'ARTERY, EXTRACRANIAL, VARIOUS LESIONS, DIAGNOSTIC\nEXTRACRANIAL ANGIOGRAPHY', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0130', 'ARTERY, EXTRACRANIAL, VARIOUS LESIONS, INFUSION', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0131', 'ARTERY, EXTRACRANIAL, VARIOUS LESIONS, PERCUTANEOUS\nTRANSCATHETER EMBOLIZATION', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0132', 'ARTERY, EXTRACRANIAL, VARIOUS LESIONS, PERCUTANEOUS\nTRANSLUMINAL ANGIOPLASTY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0133', 'ARTERY, EXTRACRANIAL, VARIOUS LESIONS, STENTING', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0134', 'ARTERY, INTRACRANIAL, ANEURYSM/ARTERIO-VENOUS\nMALFORMATION, EMBOLISATION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0135', 'ARTERY, INTRACRANIAL, THROMBOSIS, PERCUTANEOUS\nCATHETER DIRECTED THROMBOLYSIS/THROMBECTOMY', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0136', 'ARTERY, INTRACRANIAL, TUMOUR, PERCUTANEOUS\nTRANSCATHETER EMBOLIZATION', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0137', 'ARTERY, INTRACRANIAL, VARIOUS LESIONS, DIAGNOSTIC\nCEREBRAL ANGIOGRAPHY', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0138', 'ARTERY, INTRACRANIAL, VARIOUS LESIONS, PERCUTANEOUS\nTRANSLUMINAL ANGIOPLASTY', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.0139', 'ARTERY, INTRACRANIAL, VARIOUS LESIONS, STENTING', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0140', 'ARTERY, PULMONARY, ENDOVASCULAR STENT PLACEMENT', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0141', 'ARTERY, SMALL, INJURY, REPAIR (SINGLE)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0142', 'ARTERY, SPINAL, ANEURYSM/ARTERIO-VENOUS\nMALFORMATION, EMBOLISATION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0143', 'ARTERY, SPINAL, TUMOUR, PERCUTANEOUS TRANSCATHETER\nEMBOLIZATION', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0144', 'ARTERY, SPINAL, VARIOUS LESIONS, DIAGNOSTIC ANGIOGRAPHY', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0145', 'ARTERY, STENOSIS/OCCLUSION (E.G. PULMONARY, COARCTATION, SUBINTIMAL, BELOW KNEE),\nPERCUTANEOUS ANGIOPLASTY (PTA), DIFFICULT', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0146', 'ARTERY, STENOSIS/OCCLUSION, PERCUTANEOUS\nATHERECTOMY (MECHANICAL OR LASER)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0147', 'ARTERY, STENOSIS/OCCLUSION, PERCUTANEOUS\nTRANSLUMINAL ANGIOPLASTY (PTA), SIMPLE', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0148', 'ARTERY, THROMBOSIS, PERCUTANEOUS CATHETER DIRECTED THROMBOLYSIS, WITH OR WITHOUT ANGIOPLASTY/STENTING', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0149', 'ARTERY, TRAUMA/RESECTION, ARTERIAL ANASTOMOSIS', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0150', 'ARTERY, TRAUMA/RESECTION, MICRO-VASCULAR GRAFT', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0151', 'ARTERY, TUMOUR, TRANS-ARTERIAL CHEMO- EMBOLIZATION\n(TACE)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0152', 'ARTERY, TUMOUR, TRANS-ARTERIAL RADIO NUCLIDE INFUSION', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0153', 'ARTERY, VARIOUS LESIONS, ARTERIO-VENUOUS FISTULA\nCREATION', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0154', 'ARTERY, VARIOUS LESIONS, ARTERIO-VENUOUS FISTULA,\nCORRECTION AT ORIGINAL SITE', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0155', 'ARTERY, VARIOUS LESIONS, AXILLARY- FEMORAL/SUBCLAVIAN-\nFEMORAL BY-PASS', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0156', 'ARTERY, VARIOUS LESIONS, BY-PASS/GRAFT', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0157', 'ARTERY, VARIOUS LESIONS, DIAGNOSTIC ANGIOGRAM OF\nMULTIPLE VESSELS', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0158', 'ARTERY, VARIOUS LESIONS, DIAGNOSTIC ANGIOGRAM USING MICROCATHETER, WITH OR WITHOUT INTRAVASCULAR\nIMAGING', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0159', 'ARTERY, VARIOUS LESIONS, ENDOVASCULAR STENT GRAFT /\nCOVERED STENT PLACEMENT', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0160', 'ARTERY, VARIOUS LESIONS, ENDOVASCULAR STENT PLACEMENT', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0161', 'ARTERY, VARIOUS LESIONS, FLUSH AORTOGRAM OR SINGLE\nVESSEL DIAGNOSTIC ANGIOGRAM', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0162', 'ARTERY, VARIOUS LESIONS, INTRA-ARTERIAL INFUSION', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0163', 'ARTERY, VARIOUS LESIONS, LIGATION (INCLUDE REPAIR OF\nARTIFICIAL ARTERIO-VENOUS FISTULA)', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.0164', 'ARTERY, VARIOUS LESIONS, PERCUTANEOUS TRANSCATHETER\nEMBOLISATION OF 1 TO 2 VESSELS', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0165', 'ARTERY, VARIOUS LESIONS, PERCUTANEOUS TRANSCATHETER EMBOLISATION OF MORE THAN 2\nVESSELS', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0166', 'ARTERY, VARIOUS LESIONS, TRANSLUMINAL ARTERIOPLASTY', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0167', 'ARTERY,LARGE, INJURY, REPAIR WITH GRAFTING', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0168', 'ARTERY,SMALL, INJURY, REPAIR (MULTIPLE)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0169', 'ARTERY-CAROTID, ANEURYSM-REPAIR/GRAFTING', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.0170', 'ARTERY-CAROTID, ARTERIO-OCCLUSIVE LESIONS, EXTERNAL\nCAROTID INTERNAL CAROTID BYPASS, COMPLEX', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.0171', 'ARTERY-CAROTID, ARTERIO-OCCLUSIVE LESIONS, EXTERNAL CAROTID INTERNAL CAROTID BYPASS,\nSIMPLE', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0172', 'ARTERY-CAROTID, ATHEROSCLEROSIS, CAROTID\nENDARTERECTOMY', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0173', 'ARTERY-CAROTID, CAROTID BODY TUMOR, EXCISION', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.0174', 'ARTERY-CAROTID, THROMBOSIS, ENDARTERECTOMY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0175', 'ARTERY-PROFUNDA FEMORIS, STENOSIS, PROFUNDOPLASTY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0176', 'ARTERY-PSEUDOANEURYSM, EXCISION AND LIGATION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0177', 'ARTERY-PSEUDOANEURYSM, EXCISION AND PATCH REPAIR', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0178', 'ARTERY-PSEUDOANEURYSM, THROMBIN INJECTION', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.0179', 'ARTERY-PULMONARY, PULMONARY EMBOLISM, PULMONARY EMBOLECTOMY USING CARDIOPULMONARY BYPASS', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.0180', 'ARTERY-VISCERAL, STENOSIS, ANGIOPLASTY OF VISCERAL\nARTERY', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0181', 'ARTERY-VISCERAL, STENOSIS, STENTING', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0182', 'ASPIRATION, DEEP MUSCULOSKELETAL TISSUES, UNDER\nRADIOLOGICAL GUIDANCE', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.0183', 'AUTOFLUORESCENCE/ NARROW BAND IMAGING (NBI)\nBRONCHOSCOPY', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0184', 'BILE DUCT, BILIARY ATRESIA, PORTO-ENTEROSTOMY', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0185', 'BILE DUCT, ENDOSCOPIC RETROGRADE\nCHOLANGIOPANCREATOGRAPHY (ERCP)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0186', 'BILE DUCT, VARIOUS LESIONS, CHOLEDOCHO-\nDUODENOSTOMY/CHOLEDOCHO-GASTROSTOMY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0187', 'BILE DUCT, VARIOUS LESIONS, CHOLEDOCHO- JEJUNOSTOMY', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.0188', 'BILE DUCT, VARIOUS LESIONS, CHOLEDOCHOTOMY\n(EXPLORATION COMMON BILE DUCT ONLY)', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.0189', 'BILE DUCT, VARIOUS LESIONS, HEPATICOJEJUNOSTOMY INVOLVING ANASTOMOSIS TO HEPATIC DUCTS BUT WITHOUT\nLIVER RESECTION', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.0190', 'BILE DUCT, VARIOUS LESIONS, OPERATIVE CHOLEDOCHOSCOPY', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0191', 'BILE DUCT, VARIOUS LESIONS, REVISION HIGH BILIARY\nSTRICTURE/ RADICAL RESECTION', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.0192', 'BILE DUCT, VARIOUS LESIONS, TRANSDUODENAL\nSPHINCTEROPLASTY/ SPHINCTEROTOMY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0193', 'BILE DUCT, VARIOUS LESIONS. EXCISION OF LOWER 1/3 OF COMMON BILE DUCT BUT WITH PRESERVATION OF\nPANCREATIC HEAD', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.0194', 'BILE DUCT, VARIOUS LESIONS. HEPATICOJEJUNOSTOMY UP TO BUT NOT INCLUDING THE CONFLUENCE OF THE\nHEPATIC DUCTS', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0195', 'BILE DUCT/GALL BLADDER, ENDOSCOPIC DILATION OF BILIARY\nSTRICTURE', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0196', 'BILE DUCT/GALL BLADDER, ENDOSCOPIC RETROGRADE CHOLANGIOPANCREATOGRAPHY (ERCP) WITH INSERTION OF\nNASOBILIARY DRAIN', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0197', 'BILE DUCT/GALL BLADDER, ENDOSCOPY, ENDOSCOPIC\nSPHINCTEROTOMY +/- EXTRACTION OF STONE', 10268000, 'TINDAKAN OPERATIF'); +INSERT INTO `tarif_rs` (`ID_Tarif_RS`, `Tindakan_RS`, `Tarif_RS`, `Kategori_RS`) VALUES +('R.TO.0198', 'BILE DUCTS, CATHETER BLOCKAGE, IMAGING GUIDED CATHETER CHANGE / CATHETER ADJUSTMENT / CHECK\nCHOLANGIOGRAM', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.0199', 'BILE DUCTS, STONES, PERCUTANEOUS TRANSHEPATIC BILIARY\nSTONES REMOVAL', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0200', 'BILE DUCTS, STRICTURE, PERCUTANEOUS TRANSHEPATIC\nBALLOON DILATATION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0201', 'BILE DUCTS, STRICTURE, PERCUTANEOUS TRANSHEPATIC\nBILIARY STENT PLACEMENT', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0202', 'BILE DUCTS, VARIOUS LESIONS, CHECK CHOLANGIOGRAM', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.0203', 'BILE DUCTS, VARIOUS LESIONS, PERCUTANEOUS TRANSHEPATIC\nCHOLANGIOGRAPHY (PTC)', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0204', 'BILE DUCTS, VARIOUS LESIONS, PERCUTANEOUS TRANSHEPATIC CHOLANGIOGRAPHY AND DRAINAGE\nCATHETER INSERTION (PTC AND DRAINAGE)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0205', 'BIOPSY: CORNEAL, LIMBAL, ORAL, CONJUNCTIVA', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0206', 'BLADDER, BLADDER NECK CONTRACTURE,\n(ACQUIRED/CONGENITAL), WEDGE EXCISION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0207', 'BLADDER, CALCULUS, VESICOLITHOTOMY/LITHOLAPAXY/ULTRASONIC LITHOTRIPSY', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0208', 'BLADDER, CUTANEOUS FISTULA, CLOSURE', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0209', 'BLADDER, CYSTOSCOPIC INTRADETRUSOR INJECTION OF\nBOTULINUM', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0210', 'BLADDER, CYSTOSCOPY, EXTERNAL SPHINCTEROTOMY FOR\nNEUROGENIC BLADDER NECK OBSTRUCTION', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0211', 'BLADDER, CYSTOSCOPY, REMOVAL OF FOREIGN\nBODY/URETERIC STENT', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.0212', 'BLADDER, CYSTOSCOPY, WITH CONTROLLED HYDRODILATATION\nOF THE BLADDER', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0213', 'BLADDER, CYSTOSCOPY, WITH ENDOSCOPIC\nREMOVAL/MANIPULATION OF URETERIC CALCULUS', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0214', 'BLADDER, CYSTOSCOPY, WITH ENDOSCOPIC\nRESECTION/INCISION OF BLADDER NECK', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0215', 'BLADDER, CYSTOSCOPY, WITH OR WITHOUT BIOPSY', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0216', 'BLADDER, CYSTOSCOPY, WITH URETERIC MEATOTOMY/WITH\nRESECTION OF URETEROCELE', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0217', 'BLADDER, DIVERTICULUM, MIS EXCISION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0218', 'BLADDER, DIVERTICULUM, OPEN EXCISION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0219', 'BLADDER, ECTOPIA VESICAE/ECTOPIA CLOACAE WITH CONGENITAL INCONTINENCE, SPHINCTER\nRECONSTRUCTION', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.0220', 'BLADDER, INCONTINENCE, CORRECTION, ABDOMINAL\nAPPROACH', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0221', 'BLADDER, MILD STRESS INCONTINENCE, CYCTOSCOPIC\nINJECTION OF COLLAGEN', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0222', 'BLADDER, RETENTION OF URINE, SUPRAPUBIC CYSTOSTOMY', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0223', 'BLADDER, STANDARD URODYNAMICS STUDY, COMPLEX (WITH\nVIDEO)', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.0224', 'BLADDER, STANDARD URODYNAMICS STUDY, SIMPLE\n(WITHOUT VIDEO)', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.0225', 'BLADDER, TUMOR, ANTERIOR EXENTERATION (FEMALE)', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0226', 'BLADDER, URACHAL FISTULA, MIS EXCISION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0227', 'BLADDER, URACHAL FISTULA, OPEN EXCISION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0228', 'BLADDER, VARIOUS LESIONS, ENLARGEMENT CYSTOPLASTY\nWITH BOWEL', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0229', 'BLADDER, VARIOUS LESIONS, IMAGE GUIDED SUPRAPUBIC\nCYSTOSTOMY', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.0230', 'BLADDER, VARIOUS LESIONS, MIS PARTIAL EXCISION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0231', 'BLADDER, VARIOUS LESIONS, OPEN PARTIAL EXCISION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0232', 'BLADDER, VARIOUS LESIONS, TOTAL CYSTECTOMY WITH ILEAL\nCONDUIT', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0233', 'BLADDER, VARIOUS LESIONS, TOTAL RADICAL CYSTECTOMY,\nFOR MALIGNANCY + CREATION OF ILEAL NEOBLADDER', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.0234', 'BLADDER, VESICO-INTESTINAL FISTULA, CLOSURE', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0235', 'BLADDER, VESICOSTOMY', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0236', 'BLADDER, VESICO-VAGINAL FISTULA, CLOSURE BY ABDOMINAL\nROUTE', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0237', 'BLADDER, VESICO-VAGINAL FISTULA, CORRECTION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0238', 'BLADDER/URETER, CYSTOSCOPY, WITH URETERIC\nCATHETERISATION', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.0239', 'BLADDER/URETER, LYMPHOLYSIS FOR CHYLURIA, MIS', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0240', 'BLADDER/URETHRA, CYSTOSCOPY, WITH URETHRAL\nDILATATION', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.0241', 'BLADDER/URETHRA, TRANSURETHRAL RESECTION OF BLADDER\nTUMOUR (<3CM)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0242', 'BLADDER/URETHRA, TRANSURETHRAL RESECTION OF BLADDER\nTUMOUR (>3CM)', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0243', 'BLOOD VESSELS (LARGE), DISRUPTION/OBSTRUCTION, REPAIR\nWITH AUTOGENOUS VEIN GRAFTING', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0244', 'BLOOD VESSELS, DEFECT, MAJOR GRAFTS (MULTIPLE)', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0245', 'BLOOD VESSELS, HICKMAN LINE INSERTION', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.0246', 'BLOOD VESSELS, PULMONARY EMBOLECTOMY', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0247', 'BLOOD VESSELS, RENAL ANGIOGRAPHY', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0248', 'BLOOD VESSELS, SAPHENOUS VEIN, HARVEST, MINIMALLY\nINVASIVE ENDOSCOPIC', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0249', 'BLOOD VESSELS, SUBCUTANEOUS IMPLANTED VASCULAR PORT,\nINSERTION', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0250', 'BLOOD VESSELS, SUBCUTANEOUS IMPLANTED VASCULAR PORT,\nREMOVAL', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0251', 'BLOOD VESSELS, VASCULAR INTERVENTION, RADIOLOGY,\nINTRAVASCULAR FOREIGN BODY RETRIEVAL', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0252', 'BONE (LOWER LIMB), DEFECT/NON UNION, IMPLANTATION OF\nBONE STIMULATOR', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0253', 'BONE (LOWER LIMB), DEFORMITIES, CORRECTIVE SURGERY WITH INTERNAL FIXATION WITH OR WITHOUT\nFLUOROSCOPY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0254', 'BONE (LOWER LIMB), DEFORMITIES, CORRECTIVE SURGERY\nWITH OSTEOTOMY ALONE', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0255', 'BONE (LOWER LIMB), FRACTURE/DISLOCATION, MANIPULATION\nAND KIRSCHNER WIRE FIXATION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0256', 'BONE (LOWER LIMB), GRADE 1 AND 2 OPEN FRACTURES/OPEN DISLOCATION OR OPEN FRACTURE-\nDISLOCATION WOUND DEBRIDEMENT', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.0257', 'BONE (LOWER LIMB), OSTEOMYELITIS, DRAINAGE WITH\nCURETTAGE AND IRRIGATION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0258', 'BONE (LOWER LIMB), OSTEOMYELITIS, SIMPLE DRAINAGE', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.0259', 'BONE (LOWER LIMB), TUMOR (BENIGN), <3 CM WITH BONE GRAFTING +/- RECONSTRUCTION/INTERNAL\nFIXATION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0260', 'BONE (LOWER LIMB), TUMOR (BENIGN), >3 CM WITH BONE GRAFTING +/- RECONSTRUCTION/INTERNAL\nFIXATION', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0261', 'BONE (LOWER LIMB), TUMOR (MALIGNANT), RADICAL EXCISION (<6CM) WITH RECONSTRUCTION AND BONE GRAFTING', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0262', 'BONE (LOWER LIMB), TUMOR (MALIGNANT), RADICAL EXCISION\n>6CM WITH RECONSTRUCTION AND BONE GRAFT', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.0263', 'BONE (LOWER LIMB), VARIOUS LESIONS, EPIPHYSIOLYSIS\nWITH/WITHOUT MICROSURGERY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0264', 'BONE (SKULL), TUMOR (LARGE>3CM) EXCISION WITH\nCRANIOPLASTY', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0265', 'BONE (SKULL), TUMOR (LARGE>3CM), EXCISION AND EXTENSIVE\nRECONSTRUCTION (DURA, SKULL, SKIN)', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.0266', 'BONE (SKULL), TUMOR (MALIGNANT), WIDE EXCISION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0267', 'BONE (SKULL), TUMOR (SMALL<3CM) EXCISION WITH\nCRANIOPLASTY', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.0268', 'BONE (UPPER LIMB), DEFORMITIES, CORRECTIVE SURGERY', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0269', 'BONE (UPPER LIMB), GRADE 1 AND 2 OPEN FRACTURES/OPEN DISLOCATION OR OPEN FRACTURE- DISLOCATION, WOUND\nDEBRIDEMENT', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.0270', 'BONE (UPPER LIMB), OSTEOMYELITIS SIMPLE DRAINAGE', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.0271', 'BONE (UPPER LIMB), OSTEOMYELITIS, EXTENSIVE\nCURETTAGE/DEBRIDEMENT AND IRRIGATION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0272', 'BONE (UPPER LIMB), TUMOR (BENIGN), MAJOR EXCISION\n<3 CM WITH BONE GRAFTING +/- RECONSTRUCTION/INTERNAL FIXATION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0273', 'BONE (UPPER LIMB), TUMOR (BENIGN), MAJOR EXCISION\n>3 CM WITH BONE GRAFTING +/- RECONSTRUCTION/INTERNAL FIXATION', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0274', 'BONE (UPPER LIMB), TUMOR (MALIGNANT), RADICAL EXCISION\nWITH RECONSTRUCTION/INTERNAL FIXATION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0275', 'BONE (UPPER LIMB), TUMOUR (MALIGNANT), WIDE EXCISION\nWITH RECONSTRUCTION/INTERNAL FIXATION', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0276', 'BONE (UPPER LIMB/LOWER LIMB), VARIOUS LESIONS,\nVASCULARISED BONE TRANSFER', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.0277', 'BONE (UPPER/LOWER LIMB), BONE LOSS/NONUNION, BONE\nGRAFTING', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0278', 'BONE (UPPER/LOWER LIMB), EXOSTOSIS, EXCISION BIOPSY\n(MORE THAN1/ BILATERAL)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0279', 'BONE (UPPER/LOWER LIMB), EXOSTOSIS, EXCISION BIOPSY\n(SINGLE)', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0280', 'BONE (UPPER/LOWER LIMB), VARIOUS LESIONS, BONE LOSS,\nBONE TRANSFER', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.0281', 'BONE AND JOINTS (LOWER LIMB), PLATES AND SCREWS/NAILS,\nREMOVAL', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.0282', 'BONE AND JOINTS (LOWER LIMB), REMOVAL OF SIMPLE IMPLANTS (E.G. RUSH RODS/WIRES/K- WIRES/PINS/SCREWS)', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.0283', 'BONE AND JOINTS (UPPER LIMB), DEFORMITIES, OSTEOTOMIES AND FIXATION WITH OR WITHOUT\nFLUOROSCOPY/BONE GRAFT', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0284', 'BONE AND JOINTS (UPPER LIMB), PLATES AND SCREWS,\nREMOVAL', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.0285', 'BONE AND JOINTS (UPPER LIMB), REMOVAL OF SIMPLE IMPLANTS (E.G. RUSH RODS/WIRES/K- WIRES/PINS/SCREWS)', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.0286', 'BONE, CYST/TUMOUR BENIGN/BENIGN AGGRESSIVE,\nCURRETTAGE/BURRING/BONE GRAFTING/CEMENTING', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0287', 'BONE, TUMOR (MALIGNANT), AROUND JOINTS WITH LIMB\nRECONSTRUCTION AND JOINT REPLACEMENT', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.0288', 'BONE, TUMOR (MALIGNANT), WIDE/MAJOR RESECTION AND\nRECONSTRUCTION (NON VASCULARISED BONE GRAFT)', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0289', 'BONE, TUMOUR (MALIGNANT), WIDE/MAJOR RESECTION AND\nRECONSTRUCTION (VASCULARISED BONE GRAFT)', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.0290', 'BONE, TUMOUR, IMAGING GUIDED PERCUTANEOUS LOCAL\nABLATION (RADIOFREQUENCY, CRYOTHERAPY, MICROWAVE, LASER, ALCOHOL,ETC) , SINGLE LESION', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0291', 'BONE, TUMOUR, IMAGING GUIDED PERCUTANEOUS LOCAL\nABLATION, COMPLEX, > 1 LESION (RADIOFREQUENCY, CRYOTHERAPY, MICROWAVE, LASER, ALCOHOL, ETC)', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0292', 'BONE, TUMOUR, IMAGING GUIDED PERCUTANEOUS LOCAL\nABLATION, SIMPLE, > 1 LESION (RADIOFREQUENCY, CRYOTHERAPY, MICROWAVE, LASER, ALCOHOL, ETC)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0293', 'BONE, VARIOUS LESIONS, BIOPSY', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0294', 'BONE, VARIOUS LESIONS, OPEN BIOPSY, CEMENTING/PLATE\nFIXATION', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0295', 'BONE/ SOFT TISSUE, VARIOUS LESIONS, IMAGING GUIDED\nPERCUTANEOUS BIOPSY', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.0296', 'BONE/JOINTS (LOWER LIMB), MAJOR CRUSH INJURIES, WOUND\nDEBRIDEMENT', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0297', 'BONE/SOFT TISSUE, VARIOUS LESIONS, TRUCUT BIOPSY', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0298', 'BOWEL (ESOPHAGUS, STOMACH, DUODENUM, COLON, RECTUM), STRICTURE, IMAGING GUIDED BALLOON\nDILATATION', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0299', 'BOWEL (ESOPHAGUS, STOMACH, DUODENUM, COLON,\nRECTUM), STRICTURE, IMAGING GUIDED STENT PLACEMENT', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0300', 'BOWELS, ENDOSCOPIC ULTRASOUND WITH COELIAC AXIS\nNEUROLYSIS', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0301', 'BOWELS, ENDOSCOPIC ULTRASOUND WITH FINE NEEDLE\nASPIRATION', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0302', 'BOWELS, ENDOSCOPIC ULTRASOUND WITH PSEUDOCYST\nDRAINAGE', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0303', 'BOWELS, ENDOSCOPIC ULTRASOUND WITH STENT INSERTION', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0304', 'BOWELS, ENDOSCOPIC ULTRASOUND WITHOUT FINE NEEDLE\nASPIRATION', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0305', 'BOWELS, SINGLE/DOUBLE BALLOON ENTEROSCOPY,\nDIAGNOSTIC', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0306', 'BOWELS, SINGLE/DOUBLE BALLOON ENTEROSCOPY,\nTHERAPEUTIC', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0307', 'BRACHIAL PLEXUS, BLOCK, CATHETER', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.0308', 'BRACHIAL PLEXUS, BLOCK, NO CATHETER', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0309', 'BRACHIAL PLEXUS, EXPLORATION AND NEUROLYSIS', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.0310', 'BRACHIAL PLEXUS, EXPLORATION AND/OR NEUROTISATION AND/OR MULTIPLE NERVE\nGRAFTING/CROSSED NERVE TRANSFERS', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0311', 'BRAIN AND SPINE, ARACHNOIDAL CYST, OPERATION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0312', 'BRAIN, ACOUSTIC TUMOR/CEREBELLO-PONTINE ANGLE TUMOR,\nEXCISION, COMPLEX', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.0313', 'BRAIN, ACOUSTIC TUMOR/CEREBELLO-PONTINE ANGLE TUMOR,\nEXCISION, SIMPLE', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.0314', 'BRAIN, ANEURYSM/ARTERIO-VENOUS MALFORMATION,\nCLIPPING/EXCISION, COMPLEX', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.0315', 'BRAIN, ANEURYSM/ARTERIO-VENOUS MALFORMATION,\nCLIPPING/EXCISION, SIMPLE', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.0316', 'BRAIN, CAROTICO-CAVERNOUS FISTULA, EXTRACRANIAL AND\nINTRACRANIAL TRAPPING', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.0317', 'BRAIN, CORTICAL STIMULATION/MAPPING FOR FUNCTIONAL\nNEUROSURGERY', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.0318', 'BRAIN, DEEP BRAIN STIMULATION, BILATERAL', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.0319', 'BRAIN, DEEP BRAIN STIMULATION, UNILATERAL', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.0320', 'BRAIN, EPILEPSY, CRANIOTOMY, COMPLEX (AWAKE\nCRANIOTOMY)', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.0321', 'BRAIN, EPILEPSY, CRANIOTOMY, SIMPLE', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0322', 'BRAIN, HYDROCEPHALUS AND OTHER LESIONS,\nVENTRICULOATRIAL/VENTRICULOPERITONEAL SHUNT', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0323', 'BRAIN, HYDROCEPHALUS AND OTHER LESIONS,\nVENTRICULOATRIAL/VENTRICULOPERITONEAL SHUNT, BILATERAL', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.0324', 'BRAIN, HYDROCEPHALUS, EXTERNAL VENTRICULAR DRAINAGE,\nBILATERAL', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0325', 'BRAIN, HYDROCEPHALUS, EXTERNAL VENTRICULAR DRAINAGE,\nUNILATERAL', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0326', 'BRAIN, HYDROCEPHALUS, REVISION/REMOVAL OF SHUNT', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0327', 'BRAIN, HYDROCEPHALUS, SPINO-PERITONEAL SHUNT', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0328', 'BRAIN, HYDROCEPHALUS, THIRD VENTRICULOSTOMY', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.0329', 'BRAIN, INTRACEREBRAL TUMOR, BIOPSY AND/OR\nDECOMPRESSION/REMOVAL VIA CRANIOTOMY, COMPLEX', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.0330', 'BRAIN, INTRACEREBRAL TUMOR, BIOPSY AND/OR\nDECOMPRESSION/REMOVAL VIA CRANIOTOMY, SIMPLE', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0331', 'BRAIN, INTRACRANIAL ABSCESS, CRANIECTOMY AND DRAINAGE', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.0332', 'BRAIN, INTRACRANIAL ABSCESS, DRAINAGE VIA BURR- HOLE', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0333', 'BRAIN, INTRACRANIAL ABSCESS, EXCISION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0334', 'BRAIN, INTRACRANIAL EXTRACEREBRAL TUMOR, CRANIOTOMY\n& REMOVAL, COMPLEX', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.0335', 'BRAIN, INTRACRANIAL EXTRACEREBRAL TUMOR, CRANIOTOMY\n& REMOVAL, SIMPLE', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0336', 'BRAIN, INTRACRANIAL EXTRACEREBRAL TUMOR,\nCRANIOTOMY/HEMISPHERECTOMY', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0337', 'BRAIN, INTRACRANIAL TUMOR/INTRACRANIAL CYST,\nBIOPSY/DRAINAGE VIA BURR-HOLE', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0338', 'BRAIN, TUMOR, VENTRICULAR PUNCTURE THROUGH BURR-\nHOLE', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.0339', 'BRAIN, VARIOUS LESIONS, INSERTION OF OMMAYA RESERVOIR', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0340', 'BRAIN, VARIOUS LESIONS, PALLIDOTOMY/THALAMOTOMY/OTHER STEREOTACTIC\nPROCEDURE - BILATERAL', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.0341', 'BRAIN, VARIOUS LESIONS,\nPALLIDOTOMY/THALAMOTOMY/OTHER STEREOTACTIC PROCEDURE - UNILATERAL', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.0342', 'BRAIN/SPINE ENDOSCOPIC CSF (CEREBROSPINAL FLUID LEAK)\nLEAK REPAIR', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0343', 'BREAST (NIPPLE), VARIOUS LESIONS, GRAFT AND/OR FLAP\nRECONSTRUCTION (BILATERAL)', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0344', 'BREAST (NIPPLE), VARIOUS LESIONS, GRAFT AND/OR FLAP\nRECONSTRUCTION (UNILATERAL)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0345', 'BREAST, DIFFUSE HYPERTROPHY, REDUCTION >250G\n(UNILATERAL)', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0346', 'BREAST, DIFFUSE HYPERTROPHY, REDUCTION MAMMOPLASTY\n>500G (BILATERAL)', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.0347', 'BREAST, DROOPING, MASTOPEXY/REDUCTION (BILATERAL)', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.0348', 'BREAST, DROOPING, MASTOPEXY/REDUCTION (UNILATERAL)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0349', 'BREAST, DUCTAL LESIONS, MICRODOCHECTOMY (BILATERAL)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0350', 'BREAST, DUCTAL LESIONS, MICRODOCHECTOMY (UNILATERAL)', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0351', 'BREAST, GYNECOMASTIA, REDUCTION (BILATERAL)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0352', 'BREAST, GYNECOMASTIA, REDUCTION (UNILATERAL)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0353', 'BREAST, HYPOPLASIA, AUGMENTATION MAMMOPLASTY\n(PROSTHETIC AND BILATERAL)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0354', 'BREAST, HYPOPLASIA, AUGMENTATION MAMMOPLASTY\n(PROSTHETIC AND UNILATERAL)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0355', 'BREAST, INVERTED NIPPLE, SURGICAL EVERSION (UNILATERAL)', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0356', 'BREAST, INVERTED NIPPLES, SURGICAL EVERSION (BILATERAL)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0357', 'BREAST, LUMP (REMOVAL) WITH PARENCHYMAL FLAP CLOSURE\n(UNILATERAL/BILATERAL)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0358', 'BREAST, LUMP (SINGLE), EXCISION BIOPSY', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0359', 'BREAST, LUMPS (MULTIPLE/BILATERAL), EXCISION BIOPSY', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0360', 'BREAST, LUMPS, IMAGING GUIDED VACUUM ASSISTED BIOPSY,\n> 1 LESIONS', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0361', 'BREAST, LUMPS, IMAGING GUIDED VACUUM ASSISTED BIOPSY,\nSINGLE LESION', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.0362', 'BREAST, POST MASTECTOMY, IMPLANT/EXPANDER\nRECONSTRUCTION (BILATERAL)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0363', 'BREAST, POST MASTECTOMY, IMPLANT/EXPANDER\nRECONSTRUCTION (UNILATERAL)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0364', 'BREAST, POST MASTECTOMY, LATISSMUS DORSI PEDICLED FLAP WITH OR WITHOUT IMPLANT RECONSTRUCTION (BILATERAL)', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.0365', 'BREAST, POST MASTECTOMY, LATISSMUS DORSI PEDICLED FLAP WITH OR WITHOUT IMPLANT RECONSTRUCTION (UNILATERAL)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0366', 'BREAST, POST MASTECTOMY, RECONSTRUCTION USING FREE\nFLAP (UNILATERAL)', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.0367', 'BREAST, POST MASTECTOMY, RECONSTRUCTION USING PEDICLED TRANSVERSE RECTUS ABDOMINIS\nMUSCULOCUTANEOUS FLAP (UNILATERAL)', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.0368', 'BREAST, POST MASTECTOMY, RECONSTRUCTION USING\nPEDICLED TRANSVERSE RECTUS ABDOMINIS MUSCULOCUTANEOUS FLAP (BILATERAL)', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.0369', 'BREAST, POST PROSTHETIC CONTRACTION, CAPSULOTOMY\n(BILATERAL)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0370', 'BREAST, POST PROSTHETIC CONTRACTION, CAPSULOTOMY\n(UNILATERAL)', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0371', 'BREAST, TUMOR (MALIGNANT), NIPPLE/SKIN SPARING\nMASTECTOMY', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.0372', 'BREAST, TUMOR (MALIGNANT), NIPPLE/SKIN SPARING\nMASTECTOMY WITH AXILIARY CLEARANCE, WITH/WITHOUT SENTINEL NODE BIOPSY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0373', 'BREAST, TUMOR (MALIGNANT), NIPPLE/SKIN SPARING\nMASTECTOMY WITH SENTINEL NODE BIOPSY/AXILIARY NODE SAMPLING', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0374', 'BREAST, TUMOR (MALIGNANT), RADICAL MASTECTOMY\nWITH/WITHOUT AXILIARY CLEARANCE', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0375', 'BREAST, TUMOR (MALIGNANT), SIMPLE MASTECTOMY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0376', 'BREAST, TUMOR (MALIGNANT), SIMPLE MASTECTOMY WITH AXILIARY CLEARANCE, WITH/WITHOUT SENTINEL\nNODE BIOPSY', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0377', 'BREAST, TUMOR (MALIGNANT), SIMPLE MASTECTOMY WITH\nSENTINEL NODE BIOPSY/ AXILIARY NODE SAMPLING', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.0378', 'BREAST, TUMOR (MALIGNANT), WIDE EXCISION/ LUMPECTOMY/SEGMENTAL MASTECTOMY/ PARTIAL MASTECTOMY, WITH AXILIARY CLEARANCE, WITH/WITHOUT\nSENTINEL NODE BIOPSY', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.0379', 'BREAST, TUMOR (MALIGNANT), WIDE EXCISION/ LUMPECTOMY/SEGMENTAL MASTECTOMY/ PARTIAL\nMASTECTOMY', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0380', 'BREAST, TUMOR (MALIGNANT), WIDE EXCISION/ LUMPECTOMY/SEGMENTAL MASTECTOMY/ PARTIAL MASTECTOMY, WITH SENTINEL NODE BIOPSY/ AXILIARY NODE\nSAMPLING', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0381', 'BREAST, VARIOUS LESIONS, SUBCUTANEOUS MASTECTOMY\nBILATERAL, EXCLUDING GYNAECOMASTIA', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0382', 'BREAST, VARIOUS LESIONS, SUBCUTANEOUS MASTECTOMY UNILATERAL, EXCLUDING\nGYNAECOMASTIA', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0383', 'BREAST, VARIOUS LESIONS, TRUCUT BIOPSY', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.0384', 'BREAST, VARIOUS LESIONS, TRUCUT BIOPSY, ULTRASOUND\nGUIDED OR STEREOTACTIC (MULTIPLE)', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.0385', 'BREAST, VARIOUS LESIONS, TRUCUT BIOPSY, ULTRASOUND\nGUIDED OR STEREOTACTIC (SINGLE)', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0386', 'BREAST, VARIOUS LESIONS, WIRE LOCALISATION, EXCISION\n(MULTIPLE)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0387', 'BREAST, VARIOUS LESIONS, WIRE LOCALISATION, EXCISION\n(SINGLE)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0388', 'BRONCHUS, FOREIGN BODY, REMOVAL VIA BRONCHOTOMY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0389', 'BRONCHUS, VARIOUS LESIONS, BRONCHIAL\nTHERMOPLASTY/BRONCHUS RADIOFREQUENCY ABLATION', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0390', 'BRONCHUS, VARIOUS LESIONS, BRONCHOPLASTIC PROCEDURE', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0391', 'BRONCHUS/LUNG, BRONCHOSCOPY WITH BIOPSY,\nBRONCHOALVEOLAR LAVAGE', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.0392', 'BRONCHUS/LUNG, BRONCHOSCOPY WITH/WITHOUT BIOPSY', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0393', 'BRONCHUS/LUNG, BRONCHOSCOPY, BLIND TRANSBRONCHIAL\nLUNG BIOPSY FOR DIFFUSE DISEASE', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.0394', 'BRONCHUS/LUNG, BRONCHOSCOPY, TARGETED\nTRANSBRONCHIAL LUNG BIOPSY FOR FOCAL LESIONS (IMAGING- GUIDED)', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0395', 'BRONCHUS/LUNG, BRONCHOSCOPY, WITH DILATATION OF\nTRACHEAL AND BRONCHIAL STRICTURE', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0396', 'BRONCHUS/LUNG, TRANSBRONCHIAL NEEDLE ASPIRATION OF\nMEDIASTINAL LYMPH NODES, WITH OR WITHOUT ENDOBRONCHIAL ULTRASOUND (EBUS)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0397', 'BRONCHUS/TRACHEA, VARIOUS LESIONS, LASER APPLICATION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0398', 'BROW, BROWLIFT, ENDOSCOPIC, BILATERAL', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0399', 'BROW, BROWLIFT, ENDOSCOPIC, BILATERAL WITH MID- FACE\nLIFT', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0400', 'BROW, BROWLIFT, ENDOSCOPIC, UNILATERAL', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0401', 'BROW, DIRECT BROWPLASTY, BILATERAL', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0402', 'BROW, DIRECT BROWPLASTY, UNILATERAL', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0403', 'BURSA, BURSITIS, EXCISION BIOPSY (MORE THAN\n1/BILATERAL)', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0404', 'BURSA, BURSITIS, EXCISION BIOPSY (SINGLE)', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.0405', 'CALCANEUM FRACTURE EXTRA-ARTICULAR OPEN REDUCTION\nINTERNAL FIXATION', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0406', 'CAPSULE ENDOSCOPY', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0407', 'CARPUS, DELAYED/NON UNION, RECONSTRUCTION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0408', 'CARPUS, FRACTURE/DISLOCATION, OPEN REDUCTION AND\nINTERNAL FIXATION', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0409', 'CERVICAL SPINE, APPLICATION OF HALO DEVICE WITHOUT\nOTHER PROCEDURES', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.0410', 'CERVICAL SPINE, CLOSED REDUCTION WITH APPLICATION OF\nSKULL DEVICES BUT WITHOUT OTHER PROCEDURES', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.0411', 'CERVICAL SPINE, EXCISION OF CERVICAL RIB', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.0412', 'CERVICAL SPINE, VARIOUS LESIONS - ANTERIOR\nDECOMPRESSION AND FUSION OR DISC REPLACEMENT (1 SEGMENT)', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.0413', 'CERVICAL SPINE, VARIOUS LESIONS - ANTERIOR DECOMPRESSION AND FUSION OR DISC REPLACEMENT (2\nSEGMENTS)', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0414', 'CERVICAL SPINE, VARIOUS LESIONS, LAMINOPLASTY (WITHOUT\nINSTRUMENTATION)', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0415', 'CERVICAL SPINE, VARIOUS LESIONS,ANTERIOR DECOMPRESSION AND FUSION OR DISC REPLACEMENT\n(3 OR MORE SEGMENTS)', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.0416', 'CERVIX, CANCER, RADICAL TRACHELECTOMY WITH/WITHOUT\nLYMPHADENECTOMY', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.0417', 'CERVIX, CERVICAL INCOMPETENCE, CERCLAGE', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.0418', 'CERVIX, CERVICAL INCOMPETENCE, REMOVAL OF SUTURE', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.0419', 'CERVIX, CERVICAL INTRAEPITHELIAL NEOPLASIA, CONE BIOPSY\nWITH/WITHOUT LASER', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0420', 'CERVIX, ECTROPION, AMPUTATION/REPAIR OF CERVIX\n(TRACHELORRHAPHY)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0421', 'CERVIX, POLYP, EXCISION/EROSION (COMPLICATED) INCLUDES\nD&C WITH BIOPSY', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.0422', 'CERVIX, POLYP, EXCISION/EROSION (SIMPLE) WITH BIOPSY', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0423', 'CERVIX, POLYP/EROSION, LASER THERAPY WITHOUT\nCOLPOSCOPY', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0424', 'CERVIX, STENOSIS, DILATATION', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0425', 'CERVIX, TEAR, REPAIR UNDER ANESTHESIA', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.0426', 'CERVIX, TRANSCERVICAL RESECTION (TCR) MYOMA (<3CM),\nHYSTEROSCOPIC', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0427', 'CERVIX, TRANSCERVICAL RESECTION (TCR) MYOMA (>3CM),\nHYSTEREOSCOPIC', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0428', 'CERVIX, TRANSCERVICAL RESECTION (TCR) POLYP (<2CM),\nHYSTEROSCOPIC', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.0429', 'CERVIX, TRANSCERVICAL RESECTION (TCR) POLYP (>2CM),\nHYSTEROSCOPIC', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0430', 'CERVIX, TRANSCERVICAL RESECTION (TCR) SEPTUM,\nHYSTEROSCOPIC', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0431', 'CERVIX, VARIOUS LESIONS, COLPOSCOPY AND BIOPSY', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.0432', 'CERVIX, VARIOUS LESIONS, COLPOSCOPY, ABLATIONAL AND/OR EXCISIONAL TREATMENT (E.G. LASER VAPOURISATION/LOOP ELECTROSURGICAL EXCISION PROCEDURE/LASER EXCISION OF TRANSFORMATION ZONE WITH BIOPSY)', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.0433', 'CERVIX, VARIOUS LESIONS, PUNCH BIOPSY', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.0434', 'CLAVICLE, CLAVICLE FRACTURE, COMMINUTED PLATING WITH\nOR WITHOUT BONE GRAFTING', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0435', 'CLAVICLE, CLAVICLE FRACTURE, DELAYED UNION/REVISION AND\nORIF WITH/WITHOUT BONE GRAFTING', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0436', 'CLAVICLE, CLAVICLE FRACTURE, SIMPLE', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0437', 'CLITORIS, CLITOROMEGALY, AMPUTATION', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0438', 'COCCYX, VARIOUS LESIONS, EXCISION', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0439', 'COELIAC PLEXUS, BLOCK, ANAESTHETIC', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.0440', 'COELIAC PLEXUS, BLOCK, NEUROLYTIC', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.0441', 'COLON, ANTERIOR RESECTION (OPEN/MIS)', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.0442', 'COLON, COLONOSCOPY (SCREENING), FIBREOPTIC WITH REMOVAL OF POLYP (SINGLE OR MULTIPLE LESS THAN\n1CM)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0443', 'COLON, COLONOSCOPY (SCREENING), FIBREOPTIC WITH\nREMOVAL OF POLYPS (MULTIPLE MORE THAN 1CM)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0444', 'COLON, COLONOSCOPY (SCREENING), FIBREOPTIC\nWITH/WITHOUT BIOPSY', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0445', 'COLON, COLONOSCOPY WITH ENDOSCOPIC MUCOSAL\nRESECTION (EMR) OF LARGE POLYPS (>3CM)', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0446', 'COLON, COLONOSCOPY WITH ENDOSCOPIC SUBMUCOSAL\nDISSECTION (ESD) OF LARGE POLYPS (>3CM)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0447', 'COLON, COLONOSCOPY, FIBREOPTIC WITH REMOVAL OF POLYP\n(SINGLE OR MULTIPLE LESS THAN 1CM)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0448', 'COLON, COLONOSCOPY, FIBREOPTIC WITH REMOVAL OF POLYPS\n(MULTIPLE MORE THAN 1CM)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0449', 'COLON, COLONOSCOPY, FIBREOPTIC WITH/WITHOUT\nBIOPSY', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0450', 'COLON, COLOSTOMY, CLOSURE WITHOUT RESECTION OF\nBOWEL', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0451', 'COLON, HIRSCHSPRUNG?S DISEASE, ENDORECTAL\nPULLTHROUGH (MIS)', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.0452', 'COLON, HIRSCHSPRUNG\'S DISEASE, PULLTHROUGH FOR LONG\nSEGMENT DISEASE (MIS/OPEN)', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.0453', 'COLON, SIGMOID, SIGMOIDOSCOPY (FLEXIBLE), FIBREOPTIC\nWITH/WITHOUT BIOPSY', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0454', 'COLON, SIGMOID, SIGMOIDOSCOPY WITH POLYPECTOMY WITH\nBIOPSY', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.0455', 'COLON, TOTAL COLECTOMY / SUBTOTAL COLECTOMY', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.0456', 'COLON, TOTAL PROCTOCOLECTOMY & ILEO-ANAL POUCH\nRECONSTRUCTION', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.0457', 'COLON, VARIOUS LESIONS, COLOSTOMY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0458', 'COLON, VARIOUS LESIONS, RIGHT/LEFT HEMICOLECTOMY\n(MIS/OPEN)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0459', 'COLON, VARIOUS LESIONS, TOTAL COLECTOMY WITH\nILEORECTAL ANASTOMOSIS/ILEOSTOMY', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.0460', 'COLON, VARIOUS LESIONS, TOTAL PROCTO-COLECTOMY AND\nILEOSTOMY', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0461', 'COLON, VARIOUS LESIONS, TRANVERSE/SIGMOID COLECTOMY\n(MIS/OPEN)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0462', 'CONJUNCTIVA, EXCISION OF PTERYGIUM, BARE SCLERA', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.0463', 'CONJUNCTIVA, LIMBIC TUMOR, REMOVAL', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0464', 'CONJUNCTIVA, NAEVUS, REMOVAL', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0465', 'CONJUNCTIVA, PINGUECULA, REMOVAL', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0466', 'CONJUNCTIVA, PTERYGIUM, REMOVAL WITH CONJUNCTIVAL\nGRAFT', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0467', 'CONJUNCTIVA, PTERYGIUM, REMOVAL, COMPLEX (RECURRENT,\nDOUBLE, SYMBLEPHARON), WITH OR WITHOUT AMNIOTIC MEMBRANE TRANSPLANT', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0468', 'CONTRALATERAL MASTOPEXY/REDUCTION FOLLOWING BREAST, TUMOUR (MALIGNANT) WIDE EXCISION/LUMPECTOMY/SEGMENTAL OR PARTIAL MASTECTOMY, WITH OR WITHOUT SENTINEL NODE BIOPSY\nAND/OR AXILLARY CLEARANCE', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0469', 'CORNEA, ASTIGMATIC KERATOTOMY (WITH OR WITHOUT LIMBAL RELAXING INCISIONS / GRAFT REFRACTIVE\nSURGERY)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0470', 'CORNEA, BAND KERATOPATHY, REMOVAL WITH ETHYLENE\nDIAMINE TETRA-ACETIC ACID', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.0471', 'CORNEA, DESCEMET\'S MEMBRANE ENDOTHELIAL\nKERATOPLASTY (DMEK)', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0472', 'CORNEA, LACERATION, CONJUNCTIVAL GRAFT OVER CORNEA', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0473', 'CORNEA, LACERATION, CONJUNCTIVAL PERITOMY/REPAIR BY\nCONJUNCTIVAL FLAP', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0474', 'CORNEA, MYOPIA, PHOTOTHERAPEUTIC KERATECTOMY/LASER\nIN-SITU KERATOMILEUSIS', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0475', 'CORNEA, RIBOFLAVIN-UVA INDUCED COLLAGEN CROSSLINKING TREATMENT FOR CORNEAL ECTASIA (CXL-CROSSLINKING LASER/POST LASIK KERATECTOMY/KERATITIS)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0476', 'CORNEA, SUPERFICIAL KERATECTOMY', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.0477', 'CORNEA, VARIOUS LESIONS, KERATOPLASTY, COMPLEX\n(TECTONIC, THERAPEUTIC, LAMELLAR, DESCEMET STRIPPING AUTOMATED ENDOTHELIAL KERATOPLASTY)', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.0478', 'CORNEA, VARIOUS LESIONS, TRANSPLANTATION\n(SUPERFICIAL/LAMELLAR/FULL THICKNESS)', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.0479', 'CORNEA, VARIOUS LESIONS, TRANSPLANTATION WITH\nCATARACT EXTRACTION AND INTRA-OCULAR LENS IMPLANTATION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0480', 'CORNEA/CONJUNCTIVA, GUNDERSON FLAP', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0481', 'CORNEAL/OCULAR SURFACE, OSTEO-ODONTO-\nKERATOPROSTHESIS STAGE 1', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.0482', 'CORNEAL/OCULAR SURFACE, OSTEO-ODONTO-\nKERATOPROSTHESIS STAGE 2', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0483', 'DIAPHRAGM, DIAPHRAGMATIC/HIATUS HERNIA, REPAIR\n(MIS/OPEN)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0484', 'DIAPHRAGM, TUMOR, EXCISION', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0485', 'DIAPHRAGM, TUMOR, EXCISION WITH WEDGE RESECTION OF\nLUNG', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0486', 'DIGIT(S), NAIL BED, DEFORMITY/DEFECT, RECONSTRUCTION', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0487', 'DIGIT(S), NAILBED LACERATION, NAILBED GRAFTING', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0488', 'DIGIT(S), SOFT TISSUE DEFECT, COMPLEX SMALL SKIN FLAPS,\nMULTIPLE FLAPS', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0489', 'DIGIT(S), SOFT TISSUE DEFECT, LARGE COMPLEX PEDICLED\nFLAPS', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0490', 'DIGIT(S), SOFT TISSUE DEFECT, SIMPLE SKIN FLAP', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0491', 'DUODENUM, TRAUMA, BYPASS OPERATION', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0492', 'DUODENUM, TUMOR, PANCREATICO-DUODENECTOMY', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.0493', 'DUODENUM, TUMOUR, PANCREAS PRESERVING\nDUODENECTOMY WITH RECONSTRUCTION OF AMPULLA', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.0494', 'DUODENUM, ULCER, PARTIAL GASTRECTOMY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0495', 'DUODENUM, ULCER, VAGOTOMY - ALL TYPES', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0496', 'DUODENUM, VARIOUS LESIONS,\nGASTROENTEROSTOMY/GASTRODUODENOSTOMY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0497', 'EAR (MIDDLE), ABSCESS/INFLAMMATION, OPERATION', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0498', 'EAR (MIDDLE), COCHLEAR IMPLANT', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.0499', 'EAR (MIDDLE), MIDDLE EAR IMPLANT SURGERY', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.0500', 'EAR (MIDDLE), ROUND WINDOW PERFORATION, REPAIR', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0501', 'EAR (MIDDLE), VARIOUS LESIONS (BENIGN CONDITION),\nEXCISION BIOPSY', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.0502', 'EAR (MIDDLE), VARIOUS LESIONS, EXPLORATION AND\nTYMPANOTOMY', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0503', 'EAR (MIDDLE), VARIOUS LESIONS, STAPEDECTOMY', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0504', 'EAR, AUDITORY MEATUS (INTERNAL), TUMOR, TRANSMASTOID REMOVAL WITH EXTENDED\nMASTOIDECTOMY', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0505', 'EAR, BILATERAL PREAURICULAR SINUS EXCISION', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0506', 'EAR, CAULIFLOWER EAR, CORRECTION', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0507', 'EAR, CONGENITAL ATRESIA, RECONSTRUCTION OF EXTERNAL\nAUDITORY CANAL AND MIDDLE EAR', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0508', 'EAR, DEFORMITY, COMPOSITE GRAFT', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0509', 'EAR, DEFORMITY, CORRECTION (BILATERAL)', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0510', 'EAR, DEFORMITY, CORRECTION (UNILATERAL)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0511', 'EAR, DEFORMITY, LOBULE RECONSTRUCTION (BILATERAL)', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0512', 'EAR, DEFORMITY, LOBULE RECONSTRUCTION (UNILATERAL)', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.0513', 'EAR, EUSTACHIAN TUBE, VARIOUS LESIONS,\nCATHETERISATION/INFLATION', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.0514', 'EAR, EXCISION PSEUDOCYST PINNA', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.0515', 'EAR, EXOSTOSIS OBTURANS, EXCISION BIOPSY', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0516', 'EAR, FOREIGN BODY, COMPLEX REMOVAL/EXCISION\n(EMBEDDED/LARGE)', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0517', 'EAR, HEMATOMA/SEROMA, EVACUATION/INCISION &\nDRAINAGE', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0518', 'EAR, IMPLANTATION OF BONE-ANCHORED HEARING AID', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0519', 'EAR, KERATOSIS OBTURANS MODERATE/SEVERE, EXCISION\nBIOPSY UNDER GA', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.0520', 'EAR, LACERATION (FULL THICKNESS), REPAIR > 3CM', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0521', 'EAR, MICROTIA, CREATION OF POST-AURICULAR SULCUS WITH\nSKIN GRAFT', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0522', 'EAR, MICROTIA, INSERTION OF CARTILAGE/SILASTIC\nFRAMEWORK', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0523', 'EAR, MICROTIA, REPOSITIONING OF LOBULE', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.0524', 'EAR, PARTIAL AMPUTATION, RECONSTRUCTION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0525', 'EAR, POLYP, REMOVAL', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0526', 'EAR, SEBACEOUS CYST, EXCISION', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0527', 'EAR, TOTAL AMPUTATION, MICROVASCULAR RECONSTRUCTION', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.0528', 'EAR, TOTAL AMPUTATION, STAGED RECONSTRUCTION (EACH\nSTAGE)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0529', 'EAR, TYMPANIC MEMBRANE, BILATERAL MYRINGOTOMY WITH\nTUBE', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.0530', 'EAR, TYMPANIC MEMBRANE, BILATERAL MYRINGOTOMY\nWITHOUT TUBE', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.0531', 'EAR, TYMPANIC MEMBRANE, PERFORATION,\nCAUTERISATION/DIATHERMY', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0532', 'EAR, TYMPANIC MEMBRANE, PERFORATION, ROUND WINDOW\nREPAIR', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0533', 'EAR, TYMPANIC MEMBRANE, UNILATERAL MYRINGOTOMY\nWITH TUBE', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.0534', 'EAR, TYMPANIC MEMBRANE, UNILATERAL, TRANSTYMPANIC PERFUSION OF DRUGS, WITH INJECTIONS/MYRINGOTOMY INCLUDING REPEAT\nPROCEDURES DURING A 90-DAY PERIOD IN THE SAME EAR', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.0535', 'EAR, TYMPANIC MEMBRANE, UNILATERAL,MYRINGOTOMY\nWITHOUT TUBE', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0536', 'EAR, UNILATERAL PRE AURICULAR SINUS EXCISION', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.0537', 'EAR, VARIOUS LESIONS, MEATOPLASTY/CANALPLASTY WITH /\nWITHOUT SPLIT SKIN GRAFT', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0538', 'EAR, VARIOUS LESIONS, MIDDLE FOSSA EXTRA-DURAL APPROACH TO TEMPORAL BONE WITH/WITHOUT\nTRANSMASTOID APPROACH COMBINED ACCESS', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0539', 'EAR, VARIOUS LESIONS, MYRINGOPLASTY (LATERAL GRAFT/ONLAY GRAFT TECHNIQUE) WITH/WITHOUT\nCANALPLASTY', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0540', 'EAR, VARIOUS LESIONS, MYRINGOPLASTY (POST-\nAURAL/ENDAURAL APPROACH)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0541', 'EAR, VARIOUS LESIONS, MYRINGOPLASTY (SIMPLE)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0542', 'EAR, VARIOUS LESIONS, OSSICULAR CHAIN RECONSTRUCTION\nWITH/WITHOUT MYRINGOPLASTY', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0543', 'EAR, VARIOUS LESIONS, VARIOUS GRAFT TO FENESTRATION\nCAVITY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0544', 'ELBOW (MEDIAL EPICONDYLE), FRACTURE, EXCISION BONY\nFRAGMENT', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.0545', 'ELBOW, CONDYLE/RADIAL HEAD FRACTURE, RADIAL HEAD\nEXCISION/CONDYLE/ARTHROPLASTY', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0546', 'ELBOW, CORONOID FRACTURE, ORIF', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0547', 'ELBOW, DISLOCATION , LIGAMENT REPAIR (COMPLEX,\nWITH/WITHOUT IMPLANT)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0548', 'ELBOW, DISLOCATION , LIGAMENT REPAIR (SINGLE)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0549', 'ELBOW, FRACTURE/ DISLOCATION, REPAIR OF LIGAMENTS/ ORIF', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0550', 'ELBOW, FRACTURE/DISLOCATION, OPEN REDUCTION AND\nINTERNAL FIXATION (ORIF)', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0551', 'ELBOW, SUPRACONDYLAR FRACTURE, M&R, PERCUTANEOUS\nPINNING', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0552', 'ELBOW, TENNIS ELBOW, RELEASE', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.0553', 'ELBOW, VARIOUS LESIONS, PRIMARY TOTAL JOINT ARTHROPLASTY WITH AUGMENTATION, REQUIRING EXTRA\nIMPLANTS OR BONE GRAFTS, OPEN/MIS/NAVIGATED', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0554', 'ELBOW, VARIOUS LESIONS, PRIMARY TOTAL JOINT\nARTHROPLASTY, OPEN/MIS/NAVIGATED', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.0555', 'ELBOW, VARIOUS LESIONS, RECONSTRUCTION WITH OR\nWITHOUT SYNOVECTOMY', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0556', 'ELBOW, VARIOUS LESIONS, REVISION TOTAL JOINT\nARTHROPLASTY, OPEN/MIS/NAVIGATED', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.0557', 'ELBOW,THERAPEUTIC ARTHROSCOPY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0558', 'ENDOLYMPHATIC SAC, VARIOUS LESIONS, TRANSMASTOID\nSHUNT PROCEDURE', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0559', 'ENDOSCOPIC RETROGRADE CHOLANGIOPANCREATOGRAPHY (ERCP) WITH\nSPHINCTEROTOMY/REMOVAL OF STONE/INSERTION OF\nBILIARY STENT', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0560', 'ESOPHAGUS, ACHALASIA, CARDIOMYOTOMY (OPEN/MIS)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0561', 'ESOPHAGUS, ATRESIA, REPAIR AND ANASTOMOSIS', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0562', 'ESOPHAGUS, BENIGN TUMOUR, RESECTION (MIS/OPEN)', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.0563', 'ESOPHAGUS, DIVERTICULUM, EXCISION (MIS/OPEN)', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.0564', 'ESOPHAGUS, MOTILITY DISORDER, LONG MYOTOMY\n(MIS/OPEN)', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0565', 'ESOPHAGUS, STRICTURE, DILATATION (ENDOSCOPIC)', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.0566', 'ESOPHAGUS, TUMOR, ALLISON/IVOR-LEWIS OPERATION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0567', 'ESOPHAGUS, TUMOR, BYPASS WITH STOMACH/INTESTINE\n(MIS/OPEN)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0568', 'ESOPHAGUS, TUMOR, CERVICAL/LARYNGOPHARYNGECTOMY WITH\nTRACHEOSTOMY WITH/WITHOUT PLASTIC\nRECONSTRUCTION', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.0569', 'ESOPHAGUS, TUMOR, TOTAL ESOPHAGECTOMY', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.0570', 'ESOPHAGUS, VARICES, ESOPHAGEAL/TRANSECTION WITH\nSPLENECTOMY', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0571', 'ESOPHAGUS, VARICES, GASTRO ESOPHAGEAL\nDEVASCULARISATION WITH ESOPHAGEAL TRANSECTION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0572', 'ESOPHAGUS, VARIOUS LESIONS, CERVICAL ESOPHAGOSTOMY', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0573', 'ESOPHAGUS/INTESTINE/STOMACH, UPPER GI ENDOSCOPY WITH COMPLICATED POLYPECTOMY (E.G.\nLARGE POLYP REQUIRING MULTIPLE PIECEMEAL RESECTIONS, MULTIPLE POLYPS >2, OR POLYPS WITH COMPLICATIONS SUCH AS BLEEDING) OR ENDOSCOPIC\nMUCOSAL RESECTION', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0574', 'ESOPHAGUS/INTESTINE/STOMACH, UPPER GI ENDOSCOPY\nWITH ENDOSCOPIC SUBMUCOSAL DISSECTION', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0575', 'ESOPHAGUS/INTESTINE/STOMACH, UPPER GL ENDOSCOPY\nWITH INSERTION OF PROSTHESIS', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0576', 'ESOPHAGUS/STOMACH, GASTROSCOPY AND DILATATION', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0577', 'ESOPHAGUS/STOMACH, GASTROSCOPY WITH THERAPY EG. APC-\nFULGARISATION OF TUMOR', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0578', 'ESOPHAGUS/STOMACH/COLON, GASTROINTESTINAL\nENDOSCOPY, ABLATIVE TREATMENT', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0579', 'EXAMINATION UNDER ANAESTHESIA (GENERAL OR REGIONAL)\nWITHOUT OTHER SURGICAL PROCEDURES', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.0580', 'EYE, EXOPHTHALMOS DUE TO THYROTOXICOSIS, RETRACTOR\nRECESSIONS (BILATERAL)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0581', 'EYE, EXOPHTHALMOS DUE TO THYROTOXICOSIS, RETRACTOR\nRECESSIONS (UNILATERAL)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0582', 'EYE, GLAUCOMA DRAINAGE IMPLANTS EG. AHMED VALVE\nIMPLANT, MOLTENO IMPLANT , BAERVELDT TUBE SHUNT', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0583', 'EYE, GLAUCOMA, CYCLODESTRUCTIVE PROCEDURES', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0584', 'EYE, GLAUCOMA, FILTERING AND ALLIED OPERATIONS\n(INCLUDING TRABECULECTOMY / SCLERECTOMY)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0585', 'EYE, GLAUCOMA, FILTERING AND ALLIED OPERATIONS\n(INCLUDING TRABECULECTOMY / SCLERECTOMY) WITH ANTI-METABOLITES', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0586', 'EYE, GLAUCOMA, FILTERING AND ALLIED OPERATIONS AND\nCATARACT SURGERY, WITH OR WITHOUT INTRAOCULAR LENS IMPLANT', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0587', 'EYE, GLAUCOMA, GONIOSYNECHIOLYSIS', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0588', 'EYE, GLAUCOMA, GONIOTOMY/TRABECULOTOMY (BILATERAL)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0589', 'EYE, GLAUCOMA, GONIOTOMY/TRABECULOTOMY (BILATERAL) -\nPAEDIATRIC', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0590', 'EYE, GLAUCOMA, GONIOTOMY/TRABECULOTOMY\n(UNILATERAL)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0591', 'EYE, GLAUCOMA, GONIOTOMY/TRABECULOTOMY\n(UNILATERAL) - PAEDIATRIC', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0592', 'EYE, GLAUCOMA, SELECTIVE LASER TRABECULOPLASTY\n(BILATERAL)', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0593', 'EYE, GLAUCOMA, SELECTIVE LASER TRABECULOPLASTY\n(UNILATERAL)', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.0594', 'EYE, INTRAOCULAR FOREIGN BODY, REMOVAL FROM ANTERIOR\nSEGMENT', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0595', 'EYE, INTRAOCULAR FOREIGN BODY, REMOVAL FROM\nPOSTERIOR SEGMENT', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0596', 'EYE, MEDIAL CANTHAL RECONSTRUCTION, BILATERAL', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0597', 'EYE, MEDIAL CANTHAL RECONSTRUCTION, UNILATERAL', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0598', 'EYE, NEEDLING OF BLEBS WITH ANTI-METABOLITES', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.0599', 'EYE, PERFORATING WOUND (NOT INVOLVING INTRAOCULAR\nSTRUCTURES), REPAIR', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0600', 'EYE, PERFORATING WOUND (WITH INCARCERATION/PROLAPSE OF UVEAL TISSUE/LENS/VITREOUS), REPAIR', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0601', 'EYE, SOCKET, COMPLEX ANOPHTHALMIC SOCKET\nRECONSTRUCTION', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0602', 'EYE, SQUINT, COMPLEX STRABISMUS SURGERY (4 OR MORE\nMUSCLES, TRANSPOSITION, MUSCLE SPLITTING)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0603', 'EYE, SQUINT, COMPLEX STRABISMUS SURGERY (VESSEL SPARING SX, PARALYTIC AND RESTRICTIVE STRABISMUS,\nHORIZONTAL COMBINED WITH OBLIQUE/VERTICAL', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.0604', 'EYE, SQUINT, OPERATION (ONE/BOTH EYES - 2 MUSCLES)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0605', 'EYE, SQUINT, OPERATION (ONE/BOTH EYES - 3 MUSCLES OR\nMORE)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0606', 'EYE, SQUINT, OPERATION (ONE/BOTH EYES - ADJUSTABLE\nSUTURES)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0607', 'EYE, SQUINT, OPERATION (ONE/BOTH EYES - TRANSPOSITION)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0608', 'EYE, THERMAL PHOTOCOAGULATION OF CHOROIDAL\nNEOVASCULARIZATION AND ALLIED CONDITIONS', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0609', 'EYE, VARIOUS LESIONS, ENUCLEATION WITHOUT IMPLANT', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0610', 'EYE, VARIOUS LESIONS, EVISCERATION', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0611', 'EYE, VARIOUS LESIONS, RESUTURING OF WOUND FOLLOWING\nINTRAOCULAR PROCEDURES', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.0612', 'EYEBALL, ENUCLEATION WITH ACRYLIC & SCLERAL BALL\nIMPLANT', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.0613', 'EYELID LOWERING (GOLD WEIGHT IMPLANT), BILATERAL', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0614', 'EYELID LOWERING (GOLD WEIGHT IMPLANT), UNILATERAL', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0615', 'EYELID, INVOLUTIONAL ENTROPION / ECTROPION CORRECTION\n(UNILATERAL)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0616', 'EYELID, PTOSIS, CONJUNCTIVAL MULLERECTOMY (BILATERAL)', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0617', 'EYELID, PTOSIS, CONJUNCTIVAL MULLERECTOMY (UNILATERAL)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0618', 'EYELIDS, BOTOX INJECTIONS FOR BLEPHAROSPASM &\nHEMIFACIAL SPASM', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.0619', 'EYELIDS, CHALAZION OR STYE EXCISION UNDER GENERAL\nANAESTHESIA', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.0620', 'EYELIDS, EXPOSURE, TARSORRHAPHY (PERMANENT)', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0621', 'EYELIDS, EXPOSURE, TARSORRHAPHY (TEMPORARY)', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.0622', 'EYELIDS, FULL THICKNESS LACERATION, REPAIR', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0623', 'EYELIDS, HEMANGIOMA, INTRA-LESION INJECTIONS (FULL\nCOURSE)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0624', 'EYELIDS, INVOLUTIONAL ECTROPION/ ENTROPION CORRECTION\n(BILATERAL)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0625', 'EYELIDS, NON-INVOLUTIONAL ECTROPION/ ENTROPION,\nCORRECTION (BILATERAL)', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0626', 'EYELIDS, NON-INVOLUTIONAL ENTROPION/ ECTROPION\nCORRECTION (UNILATERAL)', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0627', 'EYELIDS, PTOSIS, CORRECTION FASANELLA (BILATERAL)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0628', 'EYELIDS, PTOSIS, CORRECTION FASANELLA (UNILATERAL)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0629', 'EYELIDS, PTOSIS, CORRECTION LEVATOR PALPEBRAE SUPERIORIS\nRESECTION (BILATERAL)', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.0630', 'EYELIDS, PTOSIS, CORRECTION LEVATOR PALPEBRAE SUPERIORIS\nRESECTION (UNILATERAL)', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0631', 'EYELIDS, PTOSIS, CORRECTION WITH FASCIA LATA GRAFT\n(BILATERAL)', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.0632', 'EYELIDS, PTOSIS, CORRECTION WITH FASCIA LATA GRAFT\n(UNILATERAL)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0633', 'EYELIDS, SIMPLE LACERATION, REPAIR', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0634', 'EYELIDS, TRICHIASIS, CRYOTHERAPY', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0635', 'EYELIDS, TUMOR, EXCISION AND REPAIR WITH FULL THICKNESS\nSKIN GRAFTING', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0636', 'EYELIDS, TUMOR, EXCISION AND REPAIR WITH LOCAL FLAP', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0637', 'EYELIDS, TUMOR, SHAVING EXCISION', 2600000, 'TINDAKAN OPERATIF'); +INSERT INTO `tarif_rs` (`ID_Tarif_RS`, `Tindakan_RS`, `Tarif_RS`, `Kategori_RS`) VALUES +('R.TO.0638', 'EYELIDS, VARIOUS LESIONS, CANTHOPLASTY (MEDIAL/LATERAL)', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.0639', 'EYELIDS, VARIOUS LESIONS, COMPOSITE GRAFT (CHONDRO-\nCUTANEOUS/CHONDRO-MUCOSAL)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0640', 'EYELIDS, VARIOUS LESIONS, FULL THICKNESS WEDGE RESECTION\nWITH REPAIR', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0641', 'EYELIDS, VARIOUS LESIONS, MAJOR RECONSTRUCTION, INVOLVING ANTERIOR AND POSTERIOR LAMELLA AND MORE\nTHAN 1/3 LID', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.0642', 'EYELIDS, VARIOUS LESIONS, MULTIPLE PLASTIC LID PROCEDURES', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.0643', 'EYELIDS, VARIOUS LESIONS, RECONSTRUCTION USING FULL\nTHICKNESS FLAP', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0644', 'EYELIDS, VARIOUS LESIONS, UPPER BLEPHAROPLASTY,\nBILATERAL', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0645', 'EYELIDS, VARIOUS LESIONS, UPPER BLEPHAROPLASTY,\nUNILATERAL', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0646', 'EYELIDS, VARIOUS LESIONS, WHOLE THICKNESS\nRECONSTRUCTION (OTHER THAN DIRECT SUTURE ONLY)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0647', 'FACE, CONTOUR DEFECT, RECONSTRUCTION / INSERTION OF\nIMPLANT(S)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0648', 'FACE, DEFECT / DEFORMITY, RECONSTRUCTION / INSERTION OF\nIMPLANT', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0649', 'FACE, FRACTURE, ENDOSCOPIC REDUCTION AND FIXATION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0650', 'FACE, FRACTURES (MORE THAN 2), OPEN REDUCTION AND\nINTERNAL FIXATION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0651', 'FACE, FRACTURES (PANFACIAL), OPEN REDUCTION AND\nINTERNAL FIXATION', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.0652', 'FACE, INFECTION / OSTEOMYELITIS, MAJOR\nDRAINAGE/SEQUESTRECTOMY', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0653', 'FACE, INFECTION / OSTEOMYELITIS, SIMPLE DRAINAGE\n/SEQUESTRECTOMY', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0654', 'FACE, INTRAOSSEOUS TUMOR (LARGE), EXCISION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0655', 'FACE, INTRAOSSEOUS TUMOR (SMALL), EXCISION', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0656', 'FACIAL, TRIGEMINAL GANGLION BLOCK, ANAESTHETIC', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0657', 'FACIAL, TRIGEMINAL GANGLION BLOCK, NEUROLYTIC', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0658', 'FACIAL, TRIGEMINAL NERVE BLOCK, ANAESTHETIC', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0659', 'FACIAL, TRIGEMINAL NERVE BLOCK, NEUROLYTIC', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.0660', 'FALLOPIAN TUBE, BLOCKED TUBE, FLUOROSCOPIC TRANSCERVICAL FALLOPIAN TUBAL RECANALISATION\n(FTR)', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0661', 'FALLOPIAN TUBE, BLOCKED TUBES, CORNUAL REANASTOMOSIS\n(MICROSURGERY/MIS)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0662', 'FALLOPIAN TUBE, BLOCKED TUBES, PLASTIC REPAIR\n(MICROSURGERY/MIS)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0663', 'FALLOPIAN TUBE, BLOCKED TUBES, PLASTIC REPAIR /\nSALPINGOSTOMY (MACROSURGERY)', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.0664', 'FALLOPIAN TUBE, BLOCKED TUBES, TUBAL REANASTOMOSIS,\nMIS', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0665', 'FALLOPIAN TUBE, BLOCKED TUBES, TUBOPLASTY,\nRECANALISATION, HYSTEROSCOPIC', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0666', 'FALLOPIAN TUBE, COMPLETED FAMILY, DIVISION/LIGATION', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.0667', 'FALLOPIAN TUBE, FALLOPOSCOPY', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.0668', 'FALLOPIAN TUBE, PERITUBAL ADHESIONS, SALPINGOLYSIS\n(MICROSURGERY/MIS)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0669', 'FALLOPIAN TUBE, PERITUBAL ADHESIONS,\nSALPINGOLYSIS (MACROSURGERY)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0670', 'FALLOPIAN TUBE, REMOVAL OF ECTOPIC GESTATION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0671', 'FALLOPIAN TUBE, STERILIZATION, HYSTEROSCOPIC', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.0672', 'FALLOPIAN TUBE, STERILIZATION, MIS', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.0673', 'FALLOPIAN TUBE, TUBAL PATHOLOGY OTHER THAN ECTOPIC,\nSALPINGECTOMY/ SALPINGOSTOMY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0674', 'FALLOPIAN TUBE, TUBAL PATHOLOGY, SALPINGECTOMY, MIS', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0675', 'FALLOPIAN TUBE, TUBO-OVARIAN ABSCESS,\nDRAINAGE(TRANSABDOMINAL)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0676', 'FALLOPIAN TUBE/UTERUS/OVARY, LAPAROSCOPY, DIAGNOSTIC,\nWITH HYDROTUBATION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0677', 'FALLOPIAN TUBE/UTERUS/OVARY, LAPAROSCOPY,\nTHERAPEUTIC', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0678', 'FASCIA (DEEP), RUPTURE WITH HERNIATED MUSCLE, REPAIR', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0679', 'FASCIA PALMAR, DUPUYTREN\'S CONTRACTURE, FASCIECTOMY\n(MULTIPLE)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0680', 'FASCIA PALMAR, DUPUYTREN\'S CONTRACTURE, FASCIECTOMY\n(SINGLE)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0681', 'FAT TRANSFER, CORRECTION OF CONTOURS/CONGENITAL DEFORMITIES, RECONSTRUCTION POST ABLATIVE SURGERY/TRAUMA,\n<=50CC', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.0682', 'FAT TRANSFER, CORRECTION OF CONTOURS/CONGENITAL DEFORMITIES,\nRECONSTRUCTION POST ABLATIVE SURGERY/TRAUMA,\n>= 100CC', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0683', 'FAT TRANSFER, CORRECTION OF CONTOURS/CONGENITAL DEFORMITIES,\nRECONSTRUCTION POST ABLATIVE SURGERY/TRAUMA,\n50 - 100CC', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0684', 'FEMALE GENITALIA, TRANSSEXUALISM (TRANSVESTISM), SEX\nREASSIGNMENT (FEMALE TO MALE)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0685', 'FEMALE GENITALIA, TRANSSEXUALISM (TRANSVESTISM), SEX REASSIGNMENT WITH MASTECTOMY (FEMALE TO\nMALE)', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0686', 'FEMUR, DELAYED/NON UNION, WITH BONE GRATING', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0687', 'FEMUR, DELAYED/NON UNION, WITH RE-INTERNAL FIXATION\nAND BONE GRAFTING', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0688', 'FEMUR, FRACTURE (COMPLEX INTRA-ARTICULAR), OPEN\nREDUCTION AND INTERNAL FIXATION (ORIF) WITH PLATE AND SCREWS', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0689', 'FEMUR, FRACTURE (FEMUR SHAFT), INTRAMEDULLARY\nNAILING/ROD (WITH OR WITHOUT LOCKING)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0690', 'FEMUR, FRACTURE (INTERCONDYLAR), OPEN REDUCTION AND\nINTERNAL FIXATION (ORIF)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0691', 'FEMUR, FRACTURE (MULTIFRAGMENTARY), INTRAMEDULLARY\nNAILING (WITH OR WITHOUT LOCKING)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0692', 'FEMUR, FRACTURE (PAEDIATRIC SHAFT), INTRAMEDULLARY\nFLEXIBLE NAILING', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0693', 'FEMUR, FRACTURE (SINGLE CONDYLAR), OPEN REDUCTION AND\nINTERNAL FIXATION (ORIF)', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0694', 'FEMUR, FRACTURE, OPEN REDUCTION AND INTERNAL FIXATION\nWITH PLATE AND SCREWS', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0695', 'FEMUR, NECK OF FEMUR FRACTURE (PAEDIATRIC), PIN\nFIXATION', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0696', 'FEMUR, SLIPPED CAPITAL FEMORAL EPIPHYSIS (SCFE), SCREW\nFIXATION', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0697', 'FINGER, DEFECT/CONTRACTURE (MULTIPLE), RECONSTRUCTION', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.0698', 'FINGER, DEFECT/CONTRACTURE (SINGLE), RECONSTRUCTION', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0699', 'FINGER, DEFORMITIES, CORRECTION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0700', 'FINGER, INJURY, DEBRIDEMENT', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0701', 'FINGER, MACRODACTYLY, SURGICAL REDUCTION OF ENLARGED\nELEMENTS, MULTIPLE DIGITS', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0702', 'FINGER, MACRODACTYLY, SURGICAL REDUCTION OF ENLARGED\nELEMENTS, SINGLE DIGIT', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0703', 'FINGER, RING CONSTRICTION (MULTIPLE), CORRECTION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0704', 'FINGER, RING CONSTRICTION (SINGLE), CORRECTION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0705', 'FINGER, SWAN NECK/BOUTONNIERE DEFORMITY (SINGLE),\nCORRECTION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0706', 'FINGER, SYNDACTYLY (MULTIPLE), SEPARATION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0707', 'FINGER, SYNDACTYLY (SINGLE), CORRECTION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0708', 'FINGER, TRAUMA, REPLANTATION (MULTIPLE)', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.0709', 'FINGER, TRAUMA, REPLANTATION/TRANSPLANTATION (SINGLE)', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0710', 'FINGER, TRAUMA, TERMINALISATION (MULTIPLE)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0711', 'FINGER, TRAUMA, TERMINALISATION (SINGLE)', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0712', 'FINGER, VARIOUS LESIONS, AMPUTATION (MULTIPLE)', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0713', 'FINGER, VARIOUS LESIONS, AMPUTATION (SINGLE)', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.0714', 'FINGER, VARIOUS LESIONS, RAY AMPUTATION (MULTIPLE)', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0715', 'FINGER, VARIOUS LESIONS, RAY AMPUTATION (SINGLE)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0716', 'FINGER, VARIOUS LESIONS, SYNOVECTOMY WITH SOFT TISSUE\nRECONSTRUCTION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0717', 'FOOT, ACHILLES TENDON RECONSTRUCTION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0718', 'FOOT, CONGENITAL TALIPES EQUINOVARUS (CTEV), BILATERAL\nRELEASE', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.0719', 'FOOT, CONGENITAL TALIPES EQUINOVARUS (CTEV), MEDIAL\nRELEASE', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0720', 'FOOT, CONGENITAL TALIPES EQUINOVARUS (CTEV), POST\nMEDIAL RELEASE', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.0721', 'FOOT, CONGENITAL TALIPES EQUINOVARUS (CTEV), POST\nRELEASE', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0722', 'FOOT, CONGENITAL TALIPES EQUINOVARUS (CTEV), POSTERIOR\nMEDIAL RELEASE WITH REVISION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0723', 'FOOT, CRUSH INJURIES (COMPLEX), WOUND DEBRIDEMENT', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0724', 'FOOT, CRUSH INJURIES (SIMPLE), WOUND DEBRIDEMENT', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0725', 'FOOT, FRACTURES, COMPLEX, MULTIPLE, INCLUDING TALUS AND CALCANEUM, OPEN REDUCTION AND INTERNAL FIXATION', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0726', 'FOOT, FRACTURES, SIMPLE, SINGLE', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0727', 'FOOT, HAGLUND\'S DEFORMITY, OSTEOTOMY', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0728', 'FOOT, HALLUX VALGUS/HAMMER TOE, PROXIMAL OSTEOTOMY, WITH OR WITHOUT SOFT TISSUE\nRECONSTRUCTION', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0729', 'FOOT, HALLUX VALGUS/HAMMER TOE, SOFT TISSUE\nRECONSTRUCTION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0730', 'FOOT, MULTIPLE FOOT OSTEOTOMIES', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0731', 'FOOT, ONE BONE OSTEOTOMY WITH SOFT TISSUE\nRELEASE, CUBOID', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0732', 'FOOT, ONE BONE OSTEOTOMY WITH SOFT TISSUE\nRELEASE, DWYER?S (CALCANEAL)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0733', 'FOOT, POLYDACTYLY, EXCISION', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.0734', 'FOOT, POLYDACTYLY, EXCISION WITH RECONSTRUCTION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0735', 'FOOT, POSTERIOR TIBIAL TENDON DYSFUNCTION (PTTD),\nPOSTERIOR TIBIALIS RECONSTRUCTION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0736', 'FOOT, TENDON TRANSFERS, SPLIT TIBIALIS ANTERIOR TENDON\nTRANSFER (SPLATT)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0737', 'FOOT, TENDON TRANSFERS, SPLIT TIBIALIS POSTERIOR TENDON\nTRANSFER (SPLOTT)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0738', 'FOOT, TENDON TRANSFERS, TIBIA ANTERIOR TRANSFER', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0739', 'FOOT, VARIOUS LESIONS, MORE THAN ONE JOINT,\nARTHRODESIS', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0740', 'FOOT, VARIOUS LESIONS, OSTEOTOMY, WITH OR WITHOUT\nTENDON RECONSTRUCTION', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0741', 'FOREARM, RADIAL HEAD FRACTURE, OPEN REDUCTION OF\nRADIAL HEAD FOR MISSED MONTEGGIA', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0742', 'FOREARM, RADIUS/ULNA SHAFT FRACTURE, INTRAMEDULLARY\nROD', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0743', 'GALLBLADDER (ACUTE/COMPLICATED), OPEN OR\nLAPARASCOPIC CHOLECYESTECTOMY', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.0744', 'GALLBLADDER, CHOLECYSTITIS, IMAGING GUIDED\nPERCUTANEOUS CHOLECYSTOSTOMY', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0745', 'GALLBLADDER, TUMOUR, RADICAL CHOLECYSTECTOMY WITH SEGMENT 4B AND 5 LIVER RESECTION AND\nRADICAL LYMPHADENECTOMY', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.0746', 'GALLBLADDER, TUMOUR, RADICAL CHOLECYSTECTOMY WITH SEGMENT 4B AND 5 LIVER RESECTION AND\nRADICAL LYMPHADENECTOMY AND CHOLEDOCHECTOMY WITH\nHEPATICO-ENTERIC ANASTOMOSIS', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.0747', 'GALLBLADDER, VARIOUS LESIONS, CHOLECYSTECTOMY (OPEN\nOR LAP)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0748', 'GALLBLADDER, VARIOUS LESIONS, CHOLECYSTECTOMY AND\nCHOLEDOCHO- JEJUNOSTOMY/DUODENOSTOMY/GASTROSTOMY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0749', 'GALLBLADDER, VARIOUS LESIONS, CHOLECYSTECTOMY AND\nREPAIR OF CHOLECYSTO-ENTERIC/ CHOLECYSTO- CHOLEDOCHAL FISTULA (OPEN OR LAP)', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.0750', 'GALLBLADDER, VARIOUS LESIONS, CHOLECYSTECTOMY WITH\nINTRAOPERATIVE CHOLANGIOGRAM (OPEN OR LAP)', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0751', 'GALLBLADDER, VARIOUS LESIONS, CHOLECYSTECTOMY,\nCHOLEDOCHOTOMY, COMMON BILE DUCT EXPLORATION WITH CHOLEDOCHO-DUODENOSTOMY (OPEN OR LAP)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0752', 'GALLBLADDER, VARIOUS LESIONS, CHOLECYSTO-\nDUODENOSTOMY/CHOLECYSTO- GASTRECTOMY/CHOLECYSTO-JEJUNOSTOMY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0753', 'GALLBLADDER, VARIOUS LESIONS, CHOLECYSTOSTOMY\n(PARTIAL, OPEN)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0754', 'GALLBLADDER, VARIOUS LESIONS, MIS/OPEN\nCHOLECYSTECTOMY AND TRANSCYSTIC COMMON BILE DUCT EXPLORATION', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0755', 'GENITAL TRACT, CANCER, STAGING UNDER GENERAL ANESTHESIA (INCLUDES CYSTOSCOPY/DILATATION &\nCURETTAGE/BIOPSY)', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.0756', 'GENITAL TRACT, PELVIC CYST, ULTRASOUND GUIDED\nPROCEDURE-ASPIRATION', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0757', 'HAND AND WRIST, RHEUMATOID HAND RECONSTRUCTION\nINCLUDING MULTIPLE JOINT SYNOVECTOMY, BONE/JOINT PROCEDURES WITH ARTHROPLASTY (MULTIPLE) AND SOFT TISSUE PROCEDURES', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.0758', 'HAND AND WRIST, RHEUMATOID HAND RECONSTRUCTION\nINCLUDING SYNOVECTOMY,\nBONE/JOINT PROCEDURES WITH/WITHOUT REPLACEMENT ARTHROPLASTY, AND SOFT TISSUE PROCEDURES', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0759', 'HAND, AMPUTATED DIGIT(S), TOE TO HAND TRANSFER', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.0760', 'HAND, BURNS (MAJOR), EXCISION AND SPLIT SKIN GRAFT', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0761', 'HAND, CLOSED FRACTURE, ORIF (MULTIPLE), JOINT', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0762', 'HAND, CLOSED FRACTURE, ORIF (MULTIPLE), NON-JOINT', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0763', 'HAND, CLOSED FRACTURE, ORIF WITH K- WIRE/CERCLAGE WIRE\nFIXATION', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0764', 'HAND, CLOSED FRACTURE, ORIF/PLATE AND SCREWS (SINGLE),\nJOINT/NON-JOINT', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0765', 'HAND, CLOSED FRACTURE/DISLOCATION, OPEN REDUCTION\nAND FIXATION (SINGLE)', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0766', 'HAND, COMPLEX INJURIES, DEBRIDEMENT WITH\nREPAIR/RECONSTRUCTION (1-2 TENDONS INVOLVED OR 1-2 FRACTURES)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0767', 'HAND, COMPLEX INJURIES, DEBRIDEMENT WITH\nREPAIR/RECONSTRUCTION (MORE THAN 2 TENDONS INVOLVED OR MORE THAN 2 FRACTURES)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0768', 'HAND, COMPLEX INJURIES, MICROSURGICAL\nREPAIR/RECONSTRUCTION, >1 DIGIT', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0769', 'HAND, COMPLEX INJURIES, MICROSURGICAL\nREPAIR/RECONSTRUCTION, SINGLE DIGIT', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0770', 'HAND, CRUSH INJURIES (COMPLEX), WOUND DEBRIDEMENT', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0771', 'HAND, CRUSH INJURIES (SIMPLE), WOUND DEBRIDEMENT', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.0772', 'HAND, DEEP INFECTION, DRAINAGE', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0773', 'HAND, DEFORMITIES, MAJOR RECONSTRUCTIVE PROCEDURES', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0774', 'HAND, DEFORMITIES, OSTEOTOMY', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0775', 'HAND, DEFORMITY, INTRINSIC MUSCLE\nRELEASE/TRANSFER/EXTENSOR RELOCATION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0776', 'HAND, EXTRA DIGIT, AMPUTATION/STUMP REVISION', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.0777', 'HAND, FLEXOR TENDON INJURIES, INSERTION OF SILASTIC\nROD(S)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0778', 'HAND, FLEXOR TENDON, PULLEY RECONSTRUCTION', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0779', 'HAND, FLEXOR TENDON, TRIGGER FINGER (MULTIPLE), RELEASE', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0780', 'HAND, FLEXOR TENDON, TRIGGER FINGER (SINGLE), RELEASE', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.0781', 'HAND, FOREIGN BODY (DEEP), REMOVAL WITH MOBILISATION\nOF NEUROVASCULAR BUNDLE', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0782', 'HAND, FOREIGN BODY (SUPERFICIAL), REMOVAL WITH\nMOBILISATION OF NEUROVASCULAR BUNDLE', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.0783', 'HAND, FRACTURE OF FINGERS/METACARPALS, EXTERNAL\nFIXATION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0784', 'HAND, FRACTURE OF FINGERS/METACARPALS, NON- UNION,\nBONE-GRAFTING AND FIXATION (MULTIPLE)', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.0785', 'HAND, FRACTURE OF FINGERS/METACARPALS, NON- UNION,\nBONE-GRAFTING AND FIXATION (SINGLE)', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0786', 'HAND, FRACTURES/DISLOCATION, OPEN REDUCTION AND\nINTERNAL FIXATION (MULTIPLE)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0787', 'HAND, FREE TOE PULP TRANSFER', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.0788', 'HAND, OPEN FRACTURE, DEBRIDEMENT AND ORIF (MULTIPLE),\nJOINT', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.0789', 'HAND, OPEN FRACTURE, DEBRIDEMENT AND ORIF (MULTIPLE),\nNON-JOINT', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.0790', 'HAND, OPEN FRACTURE, DEBRIDEMENT AND ORIF (SINGLE),\nJOINT', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0791', 'HAND, OPEN FRACTURE, DEBRIDEMENT AND ORIF (SINGLE),\nNON-JOINT', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0792', 'HAND, POLYDACTYLY, AMPUTATION WITH RECONSTRUCTION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0793', 'HAND, SCAR, REVISION', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0794', 'HAND, SOFT TISSUE TUMOR, EXCISION <1.5CM', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.0795', 'HAND, SOFT TISSUE TUMOR, EXCISION >1.5CM SIZE', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0796', 'HAND, SUPERFICIAL INFECTION, DRAINAGE', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.0797', 'HAND, TUMORS, EXCISION WITH DISSECTION OF\nNEUROVASCULAR BUNDLE', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0798', 'HAND, WART/CORN/NAEVUS, EXCISION', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0799', 'HEAD, VARIOUS LESIONS, CRANIOFACIAL RESECTION AND\nRECONSTRUCTION', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.0800', 'HEAD-FACE, SOFT TISSUE TUMORS (SMALL), EXCISION', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0801', 'HEAD-FACE, TRAUMA, CRANIOFACIAL APPROACH REDUCTION\nAND FIXATION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0802', 'HEAD-FACE, TRAUMA, CRANIOFACIAL APPROACH REDUCTION\nAND FIXATION WITH BONE GRAFT', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.0803', 'HEAD-FACE, VARIOUS LESIONS, MAJOR CORRECTIVE SURGERY', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.0804', 'HEART (GREAT VESSELS), VARIOUS LESIONS, INTRATHORACIC\nOPERATION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0805', 'HEART, AORTIC/MITRAL VALVE LESIONS, BALLOON\nVALVULOPLASTY', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0806', 'HEART, ARRHYTHMIA, IMPLANTABLE CARDIOVERTER\nDEFIBRILLATOR (ICD) IMPLANTATION', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.0807', 'HEART, AUTOMATIC IMPLANTABLE CARDIOVERTER\nDEFIBRILLATOR (AICD)/PACEMAKER LEAD EXTRACTION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0808', 'HEART, AUTOMATIC IMPLANTABLE CARDIOVERTER\nDEFRIBRILLATOR DUAL CHAMBER (INCLUSIVE OF DEFIBRILLATION THRESHOLD TESTING (DFT))', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.0809', 'HEART, AUTOMATIC IMPLANTABLE CARDIOVERTER\nDEFRIBRILLATOR SINGLE CHAMBER (INCLUSIVE OF DFT)', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0810', 'HEART, BIVENT AUTOMATIC IMPLANTABLE CARDIOVERTER\nDEFRIBRILLATOR (INCLUSIVE OF DFT)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0811', 'HEART, BIVENTRICULAR PACING', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0812', 'HEART, CARDIAC CATHETERISATION (LEFT & RIGHT), INVOLVING\nPRESSURE OR SATURATION MEASUREMENT (WITH LEFT AND/OR RIGHT VENTRICULOGRAPHY)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0813', 'HEART, CARDIAC CATHETERISATION (LEFT) AND INTRACORONARY PHYSIOLOGICAL ASSESSMENT (INCLUSIVE OF PRESSURE WIRE) WITHOUT PERCUTANEOUS\nTRANSLUMINAL CORONARY ANGIOPLASTY (PTCA)', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0814', 'HEART, CAROTID ANGIOPLASTY AND STENTING (WITH EMBOLIC\nPROTECTION)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0815', 'HEART, CONGENITAL HEART DISEASE (COMPLEX), OPEN HEART\nSURGERY', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.0816', 'HEART, CONGENITAL HEART DISEASE, BLALOCK- TAUSSIG\nOPERATION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0817', 'HEART, CONGENITAL HEART DISEASE, OPEN HEART SURGERY', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.0818', 'HEART, CORONARY ANGIOGRAPHY', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0819', 'HEART, CORONARY ARTERY BYPASS GRAFT AND VALVE\nSURGERY', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.0820', 'HEART, CORONARY ARTERY DISEASE, CARDIAC CATHERISATION\nAND CORONARY ANGIOGRAM WITH/WITHOUT CORONARY GRAFT ANGIOGRAPHY', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0821', 'HEART, CORONARY DISEASE, CORONARY ANGIOPLASTY\n(TRANSLUMINAL), WITH/WITHOUT ANGIOCARDIOGRAPHY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0822', 'HEART, CORONARY DISEASE, CORONARY ARTERY BYPASS GRAFT\n(OPEN/MIS/OFF PUMP)', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.0823', 'HEART, CORONARY GRAFT ANGIOGRAPHY WITH/WITHOUT\nANGIOGRAPHY OF NATIVE CORONARY ARTERIES', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0824', 'HEART, ELECTROPHYSIOLOGY STUDY WITHOUT ABLATION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0825', 'HEART, HEART BLOCK, REPLACEMENT OF TRANSVENOUS\nELECTRODE', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0826', 'HEART, HEART BLOCK/ARRHYTHMIA, INSERTION OF DUAL\nCHAMBER PACEMAKER (PERMANENT)', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0827', 'HEART, HEART BLOCK/ARRHYTHMIA, INSERTION OF SINGLE\nCHAMBER PACEMAKER (PERMANENT)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0828', 'HEART, IMPLANT OF EPICARDIAL LEADS FOR PERMANENT\nPACEMAKERS', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0829', 'HEART, IMPLANTATION OF MECHANICAL HEART DEVICE (LEFT\nVENTRICULAR ASSIST DEVICE IMPLANT)', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.0830', 'HEART, INSERTABLE LOOP RECORDER', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0831', 'HEART, INVASIVE INTRAVASCULAR IMAGING/VISUALIZATION, INCLUSIVE OF IV U/S AND OCT, WITHOUT PERCUTAENOUS TRANSLUMINAL CORONARY\nANGIOPLASTY (PTCA)', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0832', 'HEART, LEFT ATRIAL APPENDAGE CLOSURE WITH/WITHOUT\nWATCHMAN DEVICE IMPLANTATION', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0833', 'HEART, LEFT VENTRICULAR ANEURYSM, RESECTION WITHOUT\nCORONARY ARTERY BYPASS', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.0834', 'HEART, LUNG, EXTRA CORPOREAL MEMBRANE OXYGENATION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0835', 'HEART, MAPPING AND PERCUTANEOUS ABLATION OF VENTRICULAR ARRHYTHMIA CIRCUITS OR FOCI, INCLUDING ALL ASSOCIATED ELECTROPHYSIOLOGICAL\nSTUDIES PERFORMED ON THE SAME DAY', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0836', 'HEART, PATENT DUCTUS ARTERIOSUS, LIGATION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0837', 'HEART, PERCUTANEOUS ABLATION OF ARRHYTHMIA CIRCUIT OR FOCUS OR ISOLATION PROCEDURE\nINVOLVING 1 ATRIAL CHAMBER', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0838', 'HEART, PERCUTANEOUS ABLATION OF ARRHYTHMIA CIRCUITS OR FOCI, OR ISOLATION PROCEDURE\nINVOLVING BOTH ATRIAL CHAMBERS AND INCLUDING CURATIVE PROCEDURES FOR ATRIAL FIBRILLATION AND/OR ALL ASSOCIATED ELECTROPHYSIOLOGICAL STUDIES PERFORMED ON\nTHE SAME DAY', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.0839', 'HEART, PERCUTANEOUS CLOSURE OF CONGENITAL HEART\nDEFECT', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0840', 'HEART, PERCUTANEOUS TRANSLUMINAL CORONARY\nANGIOPLASTY (PTCA) + ARTERECTOMY (E.G ROTABLATION)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0841', 'HEART, PERCUTANEOUS TRANSLUMINAL CORONARY ANGIOPLASTY (PTCA) + STENTING (1 VESSEL), COMPLEX (E.G. RETROGRADE CTO INTERVENTION, COMPLEX BIFURCATION/TRIFURCATION, IABP, IMPELLA, LVAD), WITH/WITHOUT IVUS/FFR OR OTHER PHYSIOLOGICAL STUDIES2', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0842', 'HEART, PERCUTANEOUS TRANSLUMINAL CORONARY ANGIOPLASTY (PTCA) + STENTING (MORE THAN 1\nVESSEL), WITH/WITHOUT IVUS/FFR OR OTHER PHYSIOLOGICAL\nSTUDIES', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0843', 'HEART, PERICARDIAL DISEASE, PERICARDIECTOMY', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0844', 'HEART, PERICARDIAL EFFUSION, PARACENTESIS', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.0845', 'HEART, PERICARDIAL EFFUSION, TRANSTHORACIC DRAINAGE', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0846', 'HEART, PLACEMENT OF EPICARDIAL PACING WIRES (OPEN AND\nVIDEO-ASSISTED THORACIC SURGERY (VATS))', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0847', 'HEART, PRIMARY PERCUTANEOUS TRANSLUMINAL CORONARY ANGIOPLASTY FOR ST-ELEVATION MYOCARDIAL INFARCTION', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0848', 'HEART, PROXIMAL AORTIC ANEURYSM, AORTIC ROOT\nREPLACEMENT WITH CORONARY ARTERY REIMPLANTATION', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.0849', 'HEART, PULMONARY INCOMPETENCE, PULMONARY ARTERY\nBANDING', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0850', 'HEART, PULMONARY VALVE LESIONS, BALLOON\nVALVULOPLASTY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0851', 'HEART, REPLACEMENT OF PACEMAKER', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.0852', 'HEART, SEPTAL DEFECTS (ATRIAL/VENTRICULAR)/PATENT FORAMEN OVALE (PFO)\nDEFECT CLOSURE', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0853', 'HEART, SIMPLE CONGENITAL OPEN-HEART SURGERY (ATRIAL SEPTAL DEFECT & VENTRICULAR SEPTAL\nDEFECT)', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0854', 'HEART, SYNCHRONISED CARDIOVERSION', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.0855', 'HEART, TRANS-CATHETAR PERCUTANEOUS PATENT DUCTUS\nARTERIOSUS (PDA) OCCLUSION', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0856', 'HEART, TRANS-MYOCARDIAL REVASCULARISATION (TMR) AS A\nSOLE PROCEDURE', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0857', 'HEART, TRANS-MYOCARDIAL REVASCULARISATION (TMR) AS AN\nADJUNCT PROCEDURE', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0858', 'HEART, VALVE (REPAIR / REPLACEMENT), 1 VALVE', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.0859', 'HEART, VALVE (REPAIR / REPLACEMENT), MORE THAN 1\nVALVE', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.0860', 'HEART, VARIOUS LESIONS, ANEURYSMECTOMY AND/OR COMBINED VALVE REPLACEMENT AND/OR REPAIR AND\nCORONARY BYPASS GRAFTING', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.0861', 'HEART, VARIOUS LESIONS, BALLOON ATRIAL SEPTOSTOMY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0862', 'HEART, VARIOUS LESIONS, CARDIAC BIOPSY', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.0863', 'HEART, VARIOUS LESIONS, HEART TRANSPLANTATION', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.0864', 'HEART, VARIOUS LESIONS, OPEN HEART SURGERY (ONE\nPROCEDURE)', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.0865', 'HEART, VARIOUS LESIONS, OPEN HEART SURGERY ON COMBINED SURGERY, TWO PROCEDURES AT ONE\nSITTING', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.0866', 'HEART, VARIOUS LESIONS, RIGHT HEART CATHETERISATION WITH LEFT HEART\nCATHETERISATION (INDIRECT)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0867', 'HEART, VARIOUS LESIONS, RIGHT/LEFT HEART\nCATHETERIZATION', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0868', 'HEART/LUNG, VARIOUS LESIONS, CARDIOPULMONARY\nPERFUSION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0869', 'HEART/LUNG, VARIOUS LESIONS, HEART AND LUNG\nTRANSPLANTATION', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.0870', 'HEART-ATRIUM, ARRHYTHMIA, ARRHYTHMIA SURGERY', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0871', 'HEART-VENTRICLE, ARRHYTHMIA, ARRHYTHMIA SURGERY', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.0872', 'HIP, ACETABULUM, FRACTURE, DOUBLE COLUMN FIXATION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0873', 'HIP, ACETABULUM, FRACTURE, SINGLE COLUMN FIXATION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0874', 'HIP, AVASCULAR NECROSIS, CORE DECOMPRESSION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0875', 'HIP, AVASCULAR NECROSIS, CORE DECOMPRESSION WITH\nGRAFTING/BONE SUBSTITUTE/BONE CEMENT', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0876', 'HIP, CONGENITAL DISLOCATION, OPEN REDUCTION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0877', 'HIP, CONGENITAL DISLOCATION, OPEN REDUCTION INCLUDING\nRECONSTRUCTION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0878', 'HIP, DISLOCATION, MANIPULATION AND REDUCTION', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0879', 'HIP, DISLOCATION, OPEN REDUCTION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0880', 'HIP, OPEN REDUCTION WITH ACETABULAR OR FEMORAL\nOSTEOTOMIES', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.0881', 'HIP, SNAPPING SYNDROME, RELEASE', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0882', 'HIP, SOFT TISSUE RELEASE AND OPEN REDUCTION ONLY', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.0883', 'HIP, VARIOUS LESIONS, APPLICATION OF HIP SPICAS', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0884', 'HIP, VARIOUS LESIONS, ARTHRODESIS', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0885', 'HIP, VARIOUS LESIONS, ARTHROTOMY', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0886', 'HIP, VARIOUS LESIONS, ARTHROTOMY AND SYNOVECTOMY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0887', 'HIP, VARIOUS LESIONS, EXCISION/INTERPOSITION\nARTHROPLASTY', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0888', 'HIP, VARIOUS LESIONS, HEMI-ARTHROPLASTY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0889', 'HIP, VARIOUS LESIONS, PRIMARY TOTAL JOINT REPLACEMENT WITH AUGMENTATION, REQUIRING\nEXTRA IMPLANTS OR BONE GRAFTS, OPEN/MIS/NAVIGATED', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0890', 'HIP, VARIOUS LESIONS, PRIMARY TOTAL JOINT REPLACEMENT,\nOPEN/MIS/NAVIGATED', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.0891', 'HIP, VARIOUS LESIONS, REVISION TOTAL JOINT REPLACEMENT,\nOPEN/MIS/NAVIGATED', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.0892', 'HIP/KNEE, REMOVAL OF PROSTHESES WITH OR\nWITHOUT SPACER', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0893', 'HIP/KNEE, THERAPEUTIC ARTHROSCOPY, WITH/WITHOUT SYNOVECTOMY/ LABRAL REPAIR /FAI RESECTION FOR\nHIP', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0894', 'HUMERUS SUPRACONDYLAR AND INTERCONDYLAR FRACTURE', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0895', 'HUMERUS, CUBITUS VARUS, CORRECTIVE OSTEOTOMY WITH\nCAST OR PINNING', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0896', 'HUMERUS, CUBITUS VARUS, CORRECTIVE OSTEOTOMY WITH\nPLATING', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0897', 'HUMERUS, DELAYED/NON-UNION, RECONSTRUCTION WITH\nBONE GRAFTING WITHOUT INTERNAL FIXATION', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0898', 'HUMERUS, DELAYED/NON-UNION, RECONSTRUCTION WITH\nINTERNAL FIXATION AND BONE GRAFTING', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.0899', 'HUMERUS, HUMERUS SHAFT FRACTURE, CLOSED\nINTERLOCKING INTRAMEDULLARY NAIL', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0900', 'HUMERUS, HUMERUS SHAFT FRACTURE, COMPLEX MULTI-\nFRAGMENTARY INTRAMEDULLARY NAIL', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.0901', 'HUMERUS, PROXIMAL HUMERUS OR SUPRACONDYLAR\nFRACTURE, ORIF', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0902', 'INFERIOR TURBINATE REDUCTION (SUBMUCOUS\nDIATHERMY/RADIOFREQUENCY)', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.0903', 'INTERCOSTAL NERVE, BLOCK, ANAESTHETIC (MORE THAN 3\nLEVELS)', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.0904', 'INTERCOSTAL NERVE, BLOCK, ANAESTHETIC (UP TO 3\nLEVELS)', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0905', 'INTERCOSTAL NERVE, BLOCK, NEUROLYTIC (MORE THAN\n3 LEVELS)', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0906', 'INTERCOSTAL NERVE, BLOCK, NEUROLYTIC (UP TO 3\nLEVELS)', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.0907', 'INTERPLEURAL SPACE, BLOCK, CATHETER', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.0908', 'INTERPLEURAL SPACE, BLOCK, NO CATHETER', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0909', 'INTESTINE, BLEEDING GIT, MESENTERIC ARTERY EMBOLISATION', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0910', 'INTESTINE, ENTEROSTOMY, CLOSURE', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0911', 'INTESTINE, INTUSSUSCEPTION, REDUCTION (OPEN/MIS)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0912', 'INTESTINE, INTUSSUSCEPTION, REDUCTION BY FLUID', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.0913', 'INTESTINE, INTUSSUSCEPTION, RESECTION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0914', 'INTESTINE, MECKEL\'S DIVERTICULUM, VARIOUS LESIONS,\nRESECTION (LAP/OPEN)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0915', 'INTESTINE, SMALL BOWEL, ILEOSTOMY STENOSIS, REVISION', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0916', 'INTESTINE, SMALL BOWEL, VARIOUS LESIONS, ENTEROSTOMY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0917', 'INTESTINE, SMALL BOWEL, VARIOUS LESIONS, EXTENSIVE\nRESECTION WITH ANASTOMOSES, WITH OR WITHOUT STOMA (MIS/OPEN)', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.0918', 'INTESTINE, SMALL BOWEL, VARIOUS LESIONS, INTUBATION\nWITH/WITHOUT BIOPSY', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0919', 'INTESTINE, SMALL BOWEL, VARIOUS LESIONS, SIMPLE RESECTION WITH ANASTOMOSES, WITH OR WITHOUT\nSTOMA (MIS/OPEN)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0920', 'INTESTINE, SMALL BOWEL, VITELLO-INTESTINAL FISTULA,\nEXCISION', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0921', 'INTESTINE, TOTAL AGANGLIONOSIS, RECONSTRUCTION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0922', 'INTESTINE/STOMACH, UPPER GI ENDOSCOPY WITH POLYPECTOMY/REMOVAL OF FOREIGN BODY/DIATHERMY OF BLEEDING LESIONS/INJECTION OF\nVARICES/REMOVAL OF SINGLE POLYP3', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0923', 'INTESTINE/STOMACH, UPPER GI ENDOSCOPY WITH/WITHOUT\nBIOPSY4', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0924', 'IPSILATERAL MASTOPEXY/REDUCTION FOLLOWING BREAST, TUMOUR (MALIGNANT) WIDE EXCISION/LUMPECTOMY/SEGMENTAL OR PARTIAL MASTECTOMY, WITH OR WITHOUT SENTINEL NODE BIOPSY\nAND/OR AXILLARY CLEARANCE', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0925', 'IRIS RECONSTRUCTION / PUPILLOPLASTY', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0926', 'IRIS, TUMOR, EXCISION', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0927', 'IRIS, VARIOUS LESIONS, IRIDECTOMY/IRIDOTOMY', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0928', 'JOINT, VARIOUS LESIONS, JOINT\nASPIRATION/ARTHROCENTESIS/INJECTION', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.0929', 'JOINTS (FINGER), CONTRACTURE,\nCAPSULECTOMY/CAPSULOTOMY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0930', 'JOINTS (FINGER), VARIOUS LESIONS, ARTHRODESIS', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0931', 'JOINTS (FINGER), VARIOUS LESIONS, EXCISION ARTHROPLASTY', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0932', 'JOINTS (FINGER), VARIOUS LESIONS, REPLACEMENT\nARTHROPLASTY', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.0933', 'JOINTS (FINGER, INTERPHALANGEAL JOINTS, METACARPOPHALANGEAL JOINTS), SYNOVITIS, SYNOVECTOMY', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0934', 'JOINTS (FOOT EXCLUDING ANKLE), SYNOVITIS, SYNOVECTOMY', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0935', 'JOINTS (LOWER LIMB), DEFORMITIES, CORRECTIVE SURGERY\nWITH OSTEOTOMY ALONE', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0936', 'JOINTS (LOWER LIMB), DEFORMITIES, CORRECTIVE SURGERY\nWITH PLATE FIXATION AND FLUOROSCOPY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0937', 'JOINTS (LOWER LIMB), DISLOCATIONS, MANIPULATION AND\nKIRSCHNER WIRE FIXATION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0938', 'JOINTS (LOWER LIMB), DISLOCATIONS, WOUND DEBRIDEMENT', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.0939', 'JOINTS (LOWER LIMB), LOOSE BODIES, REMOVAL', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0940', 'JOINTS (LOWER LIMB), SMALL, VARIOUS LESIONS,\nARTHROPLASTY', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0941', 'JOINTS (LOWER LIMB), VARIOUS LESIONS, EPIPHYSIOLYSIS\nWITH/WITHOUT MICROSURGERY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0942', 'JOINTS (LOWER LIMB, EXCEPT HIP), SEPTIC ARTHRITIS,\nDRAINAGE WITH CURETTAGE AND DEBRIDEMENT', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0943', 'JOINTS (LOWER LIMB, EXCEPT HIP), SEPTIC ARTHRITIS, SIMPLE\nDRAINAGE', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.0944', 'JOINTS (LOWER LIMB, HIP), SEPTIC ARTHRITIS,\nCURETTAGE/DEBRIDEMENT AND IRRIGATION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0945', 'JOINTS (LOWER LIMB, HIP), SEPTIC ARTHRITIS, SIMPLE\nDRAINAGE', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0946', 'JOINTS (OTHER THAN FINGER), VARIOUS LESIONS, TOTAL JOINT\nREPLACEMENT', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.0947', 'JOINTS (OTHER THAN HAND AND WRIST), VARIOUS LESIONS,\nARTHRODESIS', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0948', 'JOINTS (SHOULDER), VARIOUS LESIONS, IMPINGEMENT\nSYNDROME', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0949', 'JOINTS (TEMPORO-MANDIBULAR), DISLOCATION,\nREDUCTION UNDER GENERAL ANAESTHESIA', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.0950', 'JOINTS (TEMPOROMANDIBULAR), VARIOUS LESIONS,\nARTHROCENTESIS (BILATERAL)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0951', 'JOINTS (TEMPOROMANDIBULAR), VARIOUS LESIONS,\nARTHROCENTESIS (UNILATERAL)', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.0952', 'JOINTS (TEMPOROMANDIBULAR), VARIOUS LESIONS,\nARTHROSCOPY (BILATERAL)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0953', 'JOINTS (TEMPOROMANDIBULAR), VARIOUS LESIONS,\nARTHROSCOPY (UNILATERAL)', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0954', 'JOINTS (TEMPORO-MANDIBULAR), VARIOUS LESIONS,\nCONDYLECTOMY WITH RECONSTRUCTION (BILATERAL)', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.0955', 'JOINTS (TEMPORO-MANDIBULAR), VARIOUS LESIONS,\nCONDYLECTOMY WITH RECONSTRUCTION (UNILATERAL)', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0956', 'JOINTS (TEMPORO-MANDIBULAR), VARIOUS LESIONS,\nCONDYLECTOMY/CORONOIDECTOMY/MENISECTOMY', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0957', 'JOINTS (TEMPORO-MANDIBULAR), VARIOUS LESIONS,\nCONDYLOTOMY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0958', 'JOINTS (TEMPORO-MANDIBULAR), VARIOUS LESIONS,\nPLICATION OF DISC', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0959', 'JOINTS (TEMPORO-MANDIBULAR), VARIOUS LESIONS,\nRECONSTRUCTION (BILATERAL)', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.0960', 'JOINTS (TEMPORO-MANDIBULAR), VARIOUS LESIONS,\nRECONSTRUCTION (UNILATERAL)', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0961', 'JOINTS (UPPER LIMB), CONTRACTURE,\nCAPSULECTOMY/CAPSULOTOMY (MULTIPLE)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0962', 'JOINTS (UPPER LIMB), DEFORMITIES/CONTRACTURE,\nCORRECTIVE SURGERY', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0963', 'JOINTS (UPPER LIMB), VARIOUS LESIONS, VASCULARISED JOINT\nTRANSFER', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.0964', 'JOINTS (UPPER LIMB), VASCULAR INJURY, MAJOR VASCULAR\nRECONSTRUCTION/ANASTOMOSIS/GRAFT', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0965', 'JOINTS (UPPER LIMB, EXCEPT SHOULDER), SEPTIC ARTHRITIS, DRAINAGE WITH CURRETAGE AND DEBRIDEMENT', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0966', 'JOINTS (UPPER LIMB, EXCEPT SHOULDER), SEPTIC ARTHRITIS,\nSIMPLE DRAINAGE', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.0967', 'JOINTS (UPPER LIMB, SHOULDER), SEPTIC ARTHRITIS/EFFUSION, CURETTAGE/DEBRIDEMENT AND IRRIGATION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0968', 'JOINTS (UPPER LIMB, SHOULDER), SEPTIC ARTHRITIS/EFFUSION,\nSIMPLE DRAINAGE', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0969', 'JOINTS (WRIST), VARIOUS LESIONS, ARTHRODESIS', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0970', 'JOINTS (WRIST, DISTAL RADIOULNAR JOINT), SYNOVITIS,\nSYNOVECTOMY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0971', 'JOINTS, ARTHROSCOPY, DIAGNOSTIC', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0972', 'JOINTS, MAJOR INTRA-ARTICULAR FRACTURE WITH DISCONTINUITY OR BONE LOSS, RECONSTRUCTION (FOR\nLOWER LIMB)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0973', 'JOINTS, MAJOR INTRA-ARTICULAR FRACTURE WITH DISCONTINUITY OR BONE LOSS, RECONSTRUCTION (FOR\nUPPER LIMB)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0974', 'JOINTS, VARIOUS LESIONS, PRIMARY TOTAL JOINT REPLACEMENT WITH AUGMENTATION, REQUIRING EXTRA\nIMPLANTS OR BONE GRAFTS, OPEN/MIS/NAVIGATED', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0975', 'JOINTS, VARIOUS LESIONS, REVISION TOTAL JOINT\nREPLACEMENT, OPEN/MIS/NAVIGATED', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.0976', 'KIDNEY AND URETER, VARIOUS LESIONS,\nNEPHROURETERECTOMY OPEN', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0977', 'KIDNEY AND URETER, VARIOUS LESIONS,\nNEPHROURETERECTOMY, MIS', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.0978', 'KIDNEY TRANSPLANT, DONATION (CADAVERIC DONOR)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0979', 'KIDNEY TRANSPLANT, DONATION (LIVE DONOR), OPEN/MIS', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0980', 'KIDNEY TRANSPLANT, RECIPIENT', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.0981', 'KIDNEY TRANSPLANT, RECIPIENT, DUAL KIDNEY TRANSPLANT\n(MARGINAL DONOR)', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.0982', 'KIDNEY, BLOCKED NEPHROSTOMY TUBE, CHANGE', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.0983', 'KIDNEY, CALCULUS, EXTRA CORPOREAL SHOCKWAVE\nLITHOTRIPSY (ESWL)', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0984', 'KIDNEY, CALCULUS, NEPHROLITHOTOMY/PYELOLITHOTOMY', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0985', 'KIDNEY, CALCULUS, PERCUTANEOUS NEPHROLITHOTOMY OR\nPERCUTANEOUS NEPHROSTOLITHOTOMY (PCNL)', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.0986', 'KIDNEY, CATHETER BLOCKAGE, IMAGING GUIDED NEPHROSTOMY CATHETER CHANGE/CATHETER\nADJUSTMENT', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.0987', 'KIDNEY, CYST, EXCISION', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0988', 'KIDNEY, CYST, IMAGING GUIDED PERCUTANEOUS ALCOHOL\nABLATION', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.0989', 'KIDNEY, CYST, IMAGING GUIDED PERCUTANEOUS ASPIRATION', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.0990', 'KIDNEY, CYST, MARSUPIALISATION, MIS', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0991', 'KIDNEY, HYDRONEPHROSIS, PERCUTANEOUS NEPHROSTOMY AND DRAINAGE CATHETER INSERTION\n(PCN AND DRAINAGE)', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.0992', 'KIDNEY, INJURY, REPAIR', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0993', 'KIDNEY, NEPHROPTOSIS, NEPHROPEXY', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0994', 'KIDNEY, PELVI-URETERIC JUNCTION OBSTRUCTION, OPEN\nPYELOPLASTY/URETEROCALYCOSTOMY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0995', 'KIDNEY, PERINEPHRIC ABSCESS, DRAINAGE (OPEN)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0996', 'KIDNEY, PYONEPHROSIS, DRAINAGE (OPEN)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0997', 'KIDNEY, PYONEPHROSIS, NEPHROSTOMY/PYELOSTOMY (OPEN)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0998', 'KIDNEY, RENAL ABSCESS/PERINEPHRIC ABSCESS, IMAGING\nGUIDED PERCUTANEOUS ASPIRATION', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.0999', 'KIDNEY, RENAL ABSCESS/PERINEPHRIC ABSCESS, IMAGING\nGUIDED PERCUTANEOUS DRAINAGE', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1000', 'KIDNEY, STAGHORN CALCULUS, NEPHROLITHOTOMY OR\nPERCUTANEOUS NEPHROSTOLITHOTOMY (PCNL)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1001', 'KIDNEY, STONES, IMAGING GUIDED PERCUTANEOUS RENAL\nSTONES REMOVAL', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1002', 'KIDNEY, TUMOUR, IMAGING GUIDED PERCUTANEOUS LOCAL ABLATION, SIMPLE (RADIOFREQUENCY,\nMICROWAVE, ETHANOL)', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1003', 'KIDNEY, TUMOUR, MIS GUIDED PERCUTANEOUS LOCAL\nABLATION (RADIOFREQUENCY, CRYOTHERAPY ETC)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1004', 'KIDNEY, VARIOUS LESIONS, BIOPSY (CLOSED)', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1005', 'KIDNEY, VARIOUS LESIONS, BIOPSY (OPEN)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1006', 'KIDNEY, VARIOUS LESIONS, CHECK NEPHROSTOGRAM', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.1007', 'KIDNEY, VARIOUS LESIONS, EXPLORATION', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1008', 'KIDNEY, VARIOUS LESIONS, IMAGING GUIDED PERCUTANEOUS\nBIOPSY (FOCAL LESIONS, TARGETED)', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1009', 'KIDNEY, VARIOUS LESIONS, IMAGING GUIDED PERCUTANEOUS BIOPSY (RENAL PARENCHYMA, NON DIRECTED)', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.1010', 'KIDNEY, VARIOUS LESIONS, PARTIAL NEPHRECTOMY,\nLAPARASCOPIC', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.1011', 'KIDNEY, VARIOUS LESIONS, PARTIAL NEPHRECTOMY, OPEN', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1012', 'KIDNEY, VARIOUS LESIONS, PERCUTANEOUS ANTEGRADE\nNEPHROSTOGRAPHY (PCN)', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.1013', 'KIDNEY, VARIOUS LESIONS, RADICAL NEPHRECTOMY\n(OPEN/MIS) WITH/WITHOUT IVC THROMBECTOMY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1014', 'KIDNEY, VARIOUS LESIONS, SIMPLE NEPHRECTOMY,\nLAPROSCOPIC', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.1015', 'KIDNEY, VARIOUS LESIONS, SIMPLE NEPHRECTOMY, OPEN', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1016', 'KIDNEY/URETER, ENDOPYELOTOMY (PERCUTANEOUS)', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1017', 'KIDNEY/URETER, PYELOPLASTY, UNILATERAL MIS/OPEN', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1018', 'KIDNEY/URETER, RETROGRADE INTRARENAL SURGERY OR RIRS\nUSING FLEXIBLE URETEROSCOPY (DIAGNOSTIC)', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1019', 'KIDNEY/URETER, RETROGRADE INTRARENAL SURGERY OR RIRS USING FLEXIBLE URETEROSCOPY (THERAPEUTIC - E.G.\nLITHOTRIPSY AND/OR BASKET EXTRACTION OF STONES)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1020', 'KNEE LIGAMENTS, DISRUPTION, RECONSTRUCTION AND REPAIR', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1021', 'KNEE, ARTHROSCOPY, KNEE LIGAMENT RECONSTRUCTION (1 OR\nMORE)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1022', 'KNEE, DISLOCATION, OPEN REDUCTION WITH REPAIR OF\nLIGAMENTS', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1023', 'KNEE, HEMARTHROSIS, ASPIRATION UNDER GENERAL\nANESTHESIA', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.1024', 'KNEE, LIGAMENTS/MENISCUS/CARTILAGE/BONE COMBINED,\nAUTOLOGOUS CHONDROCYTE IMPLANTATION WITH OSTEOTOMY', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.1025', 'KNEE, LIGAMENTS/MENISCUS/CARTILAGE/BONE COMBINED,\nMIS ACL OR PCL RECONSTRUCTION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1026', 'KNEE, LIGAMENTS/MENISCUS/CARTILAGE/BONE COMBINED, MIS LIGAMENT RECONSTRUCTION WITH MENISCAL REPAIR', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1027', 'KNEE, LIGAMENTS/MENISCUS/CARTILAGE/BONE COMBINED, MIS LIGAMENT RECONSTRUCTION WITH\nMENISCECTOMY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1028', 'KNEE, LIGAMENTS/MENISCUS/CARTILAGE/BONE COMBINED, MIS LIGAMENT RECONSTRUCTION WITH\nMICROFRACTURE', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1029', 'KNEE, LIGAMENTS/MENISCUS/CARTILAGE/BONE COMBINED, MIS PRIMARY DOUBLE BUNDLE ACL OR PCL RECONSTRUCTION', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.1030', 'KNEE, LIGAMENTS/MENISCUS/CARTILAGE/BONE COMBINED,\nMIS REVISION ACL RECONSTRUCTION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1031', 'KNEE, LIGAMENTS/MENISCUS/CARTILAGE/BONE COMBINED,\nMIS REVISION PCL RECONSTRUCTION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1032', 'KNEE, LIGAMENTS/MENISCUS/CARTILAGE/BONE COMBINED,\nMOSAICPLASTY OR OSTEOARTICULAR TRANSFER SYSTEM (OATS) WITH OSTEOTOMY', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.1033', 'KNEE, LIGAMENTS/MENISCUS/CARTILAGE/BONE COMBINED, MULTI-LIGAMENTED KNEE\nRECONSTRUCTION (3 OR MORE LIGAMENTS)', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.1034', 'KNEE, MENISCUS/CARTILAGE (SMALL DEFECTS), MIS/OPEN\nMOSAICPLASTY OR OATS', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1035', 'KNEE, MENISCUS/CARTILAGE, MIS ASSISTED ALLOGRAFT\nMENISCAL TRANSPLANTATION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1036', 'KNEE, MENISCUS/CARTILAGE, MIS CARTILAGE HARVESTING', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1037', 'KNEE, MENISCUS/CARTILAGE, MIS MENISCAL REPAIR', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1038', 'KNEE, VARIOUS LESIONS, ARTHRODESIS', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1039', 'KNEE, VARIOUS LESIONS, ARTHROTOMY', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1040', 'KNEE, VARIOUS LESIONS, ARTHROTOMY AND SYNOVECTOMY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1041', 'KNEE, VARIOUS LESIONS, EXCISION/INTERPOSITION\nARTHROPLASTY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1042', 'KNEE, VARIOUS LESIONS, MENISCECTOMY WITH/WITHOUT\nARTHROSCOPY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1043', 'KNEE, VARIOUS LESIONS, PRIMARY TOTAL JOINT REPLACEMENT (UNILATERAL) WITH AUGMENTATION,\nREQUIRING EXTRA IMPLANTS OR BONE GRAFTS,\nOPEN/MIS/NAVIGATED', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1044', 'KNEE, VARIOUS LESIONS, PRIMARY TOTAL JOINT REPLACEMENT\n(UNILATERAL), OPEN/MIS/NAVIGATED', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.1045', 'KNEE, VARIOUS LESIONS, REVISION TOTAL JOINT REPLACEMENT,\nOPEN/MIS/NAVIGATED', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.1046', 'KNEE, VARIOUS LESIONS, TOTAL JOINT REPLACEMENT\n(BILATERAL)', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.1047', 'LABYRINTH, VARIOUS LESIONS,\nDESTRUCTION/LABYRINTHOTOMY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1048', 'LACRIMAL CANALICULUS REPAIR, VARIOUS LESIONS,\nIMMEDIATE REPAIR', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1049', 'LACRIMAL GLAND (LACRIMAL SAC), VARIOUS LESIONS, EXCISION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1050', 'LACRIMAL GLAND (PUNCTUM), VARIOUS LESIONS, SNIP\nOPERATION', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1051', 'LACRIMAL GLAND, OBSTRUCTION, PROBING ONE/BOTH DUCTS', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1052', 'LACRIMAL GLAND/DUCT, VARIOUS LESIONS,\nDACROCYSTORHINOSTOMY (ENDOSCOPIC/NON- ENDOSCOPIC) OR CONJUNCTIVAL-DCR (LESTER JONES TUBE)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1053', 'LAPAROSCOPY, THERAPEUTIC, EXCEPT FOR RETRIEVAL AND\nPLACEMENT OF GAMETES AND PLACEMENT OF EMBRYOS', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1054', 'LAPAROTOMY DEBULKING (ADVANCED DISEASE,\nPRIMARY/RECURRENT)', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.1055', 'LARYNGOSCOPY WITH REMOVAL OF TUMOUR/LESIONS', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1056', 'LARYNX AND ESOPHAGUS, TUMOR, ESOPHAGECTOMY (TOTAL)/\nLARYNGOPHARYNGECTOMY WITH RESTORATION OF ALIMENTARY CONTINUITY', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.1057', 'LARYNX AND PHARYNX, VARIOUS LESIONS, LASER APPLICATION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1058', 'LARYNX AND TRACHEA, VARIOUS LESIONS, MAJOR\nMICROSURGERY WITHOUT RECONSTRUCTION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1059', 'LARYNX AND TRACHEA, VARIOUS LESIONS, MAJOR PLASTIC\nOPERATION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1060', 'LARYNX, FRACTURES, OPERATION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1061', 'LARYNX, LARYNGECTOMY WITH BILATERAL NECK DISSECTION', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.1062', 'LARYNX, LARYNGECTOMY WITH UNILATERAL NECK DISSECTION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1063', 'LARYNX, LARYNOGOFISSURE, EXTERNAL OPERATION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1064', 'LARYNX, TRANSCUTANEOUS INJECTION OF LARYNX', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.1065', 'LARYNX, TUMOR, LARYNGECTOMY (TOTAL)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1066', 'LARYNX, TUMOR, PARTIAL LARYNGECTOMY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1067', 'LARYNX, TUMOR, PARTIAL LARYNGECTOMY WITH BLOCK NECK\nDISSECTION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1068', 'LARYNX, VARIOUS DISORDERS, LARYNGEAL FRAMEWORK\nSURGERY, THYROPLASTY TYPES I-IV INCLUDING OPEN MEDIALISATION', 13579000, 'TINDAKAN OPERATIF'); +INSERT INTO `tarif_rs` (`ID_Tarif_RS`, `Tindakan_RS`, `Tarif_RS`, `Kategori_RS`) VALUES +('R.TO.1069', 'LARYNX, VARIOUS LESIONS, DIRECT LARYNGOSCOPE\nEXAMINATION WITH/WITHOUT BIOPSY', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1070', 'LARYNX, VARIOUS LESIONS, HEMI/PARTIAL LARYNGECTOMY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1071', 'LARYNX, VARIOUS LESIONS, HEMI/PARTIAL LARYNGECTOMY\nWITH RADICAL NECK DISSECTION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1072', 'LENS, CATARACT (JUVENILE), REMOVAL AND NEEDLINGS', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1073', 'LENS, CATARACT (PAEDIATRIC), EXTRACTION WITH ANTERIOR\nVITRECTOMY', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1074', 'LENS, CATARACT (PAEDIATRIC), EXTRACTION WITH ANTERIOR\nVITRECTOMY - BILATERAL', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1075', 'LENS, CATARACT (PAEDIATRIC), EXTRACTION WITH ANTERIOR VITRECTOMY AND INTRAOCULAR LENS IMPLANTATION', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.1076', 'LENS, CATARACT (PAEDIATRIC), EXTRACTION WITH ANTERIOR VITRECTOMY AND INTRAOCULAR LENS\nIMPLANTATION - BILATERAL', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.1077', 'LENS, CATARACT, EXTRACTION WITH INTRA-OCULAR LENS\nIMPLANT (BILATERAL)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1078', 'LENS, CATARACT, EXTRACTION WITH INTRA-OCULAR LENS\nIMPLANT (UNILATERAL LEFT)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1079', 'LENS, CATARACT, EXTRACTION WITH INTRA-OCULAR LENS\nIMPLANT (UNILATERAL RIGHT)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1080', 'LENS, CATARACT, EXTRACTION WITH INTRA-OCULAR LENS\nIMPLANT AND TRABECULECTOMY WITH/WITHOUT ANTIMETABOLITES', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1081', 'LENS, CATARACT, EXTRACTION WITH TRABECULECTOMY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1082', 'LENS, COMBINED GLAUCOMA IMPLANTS WITH CATARACT EXTRACTION (WITH OR WITHOUT INTRAOCULAR LENS\nIMPLANTATION)', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.1083', 'LENS, COMPLICATED CATARACT EXTRACTION WITH INTRAOCULAR LENS IMPLANT (CAPSULAR TENSION\nRING/CAPSULAR TENSION SEGMENT/)', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.1084', 'LENS, IMPLANTATION OF POSTERIOR SEGMENT DRUG DELIVERY\nDEVICE', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1085', 'LENS, SECONDARY SCLERAL FIXATED INTRAOCULAR LENS\nIMPLANTATION', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1086', 'LENS, SECTORIAL LASER PHOTOCOAGULATION', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1087', 'LENS, VARIOUS LESIONS, EXTRACTION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1088', 'LENS, VARIOUS LESIONS, REMOVAL OF INTRA-OCULAR\nARTIFICIAL LENS', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1089', 'LENS, VARIOUS LESIONS, SECONDARY ANTERIOR CHAMBER INTRA-OCULAR LENS IMPLANTATION WITHOUT\nVITRECTOMY9', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1090', 'LENS, VARIOUS LESIONS, YAG LASER CAPSULOTOMY', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.1091', 'LIP, MUCOUS CYST/MUCOCELE, REMOVAL', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1092', 'LIP, VARIOUS LESIONS, FULL THICKNESS WEDGE EXCISION WITH\nREPAIR', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1093', 'LIP, VARIOUS LESIONS, RECONSTRUCTION USING FULL\nTHICKNESS FLAP', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1094', 'LIP, VARIOUS LESIONS, VERMILIONECTOMY', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1095', 'LIVER TRANSPLANT, DONATION (CADAVERIC DONOR)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1096', 'LIVER TRANSPLANT, DONATION (LIVE DONOR)', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1097', 'LIVER TRANSPLANT, RECIPIENT', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.1098', 'LIVER, ABSCESS, IMAGING GUIDED PERCUTANEOUS ASPIRATION', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1099', 'LIVER, ABSCESS, IMAGING GUIDED PERCUTANEOUS DRAINAGE\nCATHETER INSERTION', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1100', 'LIVER, ABSCESS, TRANS-ABDOMINAL DRAINAGE (OPEN OR LAP)', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1101', 'LIVER, HYDATID CYST, TRANS-ABDOMINAL DRAINAGE\n(PERCUTANEOUS)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1102', 'LIVER, OBSTRUCTIVE JAUNDICE, LONGMIRE\nOPERATION/CHLODEDOCHO JEJUNOSTOMY', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.1103', 'LIVER, PORTAL HYPERTENSION, TRANSJULAR INTRAHEPATIC PORTO-SYSTEMIC SHUNT CREATION\n(TIPSS)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1104', 'LIVER, TRAUMA, MAJOR REPAIR LACERATION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1105', 'LIVER, TRAUMA, MINOR REPAIR LACERATION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1106', 'LIVER, TRAUMA/TUMOR, EXTENDED LOBECTOMY (5\nSEGMENTS/MORE)', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.1107', 'LIVER, TRAUMA/TUMOR, HEPATIC ARTERY LIGATION', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1108', 'LIVER, TRAUMA/TUMOR, LIVER TRANSPLANT', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.1109', 'LIVER, TUMOUR, IMAGING GUIDED PERCUTANEOUS LOCAL\nABLATION, COMPLEX (RADIOFREQUENCY, CRYOTHERAPY, MICROWAVE, LASER, ALCOHOL, ETC)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1110', 'LIVER, TUMOUR, IMAGING GUIDED PERCUTANEOUS LOCAL\nABLATION, SIMPLE (RADIOFREQUENCY, CRYOTHERAPY, MICROWAVE, LASER, ALCOHOL, ETC)', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1111', 'LIVER, TUMOUR, TRANS-ARTERIAL CHEMO- EMBOLIZATION\n(TACE)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1112', 'LIVER, TUMOUR, TRANS-ARTERIAL RADIO NUCLIDE INFUSION', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1113', 'LIVER, VARIOUS LESIONS, IMAGING GUIDED PERCUTANEOUS\nBIOPSY (FOCAL LESIONS, TARGETED)', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1114', 'LIVER, VARIOUS LESIONS, IMAGING GUIDED PERCUTANEOUS BIOPSY (LIVER PARENCHYMA, NON\nDIRECTED)', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.1115', 'LIVER, VARIOUS LESIONS, LOBECTOMY (3 - 4 SEGMENTS), OPEN\nOR LAP', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1116', 'LIVER, VARIOUS LESIONS, MIS ULTRASOUND AND LOCAL\nABLATION INCLUDING RADIO-FREQUENCY ABLATION', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1117', 'LIVER, VARIOUS LESIONS, PARTIAL LOBECTOMY/SEGMENTAL\nRESECTION (OPEN OR LAP)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1118', 'LIVER, VARIOUS LESIONS, TRANSJUGULAR LIVER BIOPSY', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1119', 'LIVER, VARIOUS LESIONS, WEDGE/LOCAL EXCISION (OPEN OR\nLAP)', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.1120', 'LOWER LIMB, CRUSH INJURIES (EXTENSIVE), DEBRIDEMENT\nWITH REPAIR OF BONE AND SOFT TISSUES', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1121', 'LOWER LIMB, CRUSH INJURIES (LIMITED), DEBRIDEMENT WITH\nREPAIR OF BONE AND SOFT TISSUES', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1122', 'LOWER LIMB, DEFORMITIES, EPIPHYSIODESIS', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1123', 'LOWER LIMB, FRACTURES, OPEN REDUCTION AND FIXATION\nWITH REPAIR OF ARTERIAL INJURIES', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1124', 'LOWER LIMB, FRACTURES/DISLOCATION, MANIPULATION AND\nREDUCTION WITH/WITHOUT APPLICATION OF CAST', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1125', 'LOWER LIMB, ISCHEMIA, FASCIOTOMY', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1126', 'LOWER LIMB, LENGTH DISCREPANCIES, LENGTHENING\nPROCEDURES', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1127', 'LOWER LIMB, LENGTH DISCREPANCIES, SHORTENING\nPROCEDURES', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1128', 'LOWER LIMB, MUSCLE (QUADRICEPS)/TENDON (INCLUDING PATELLAR TENDON), DISRUPTION, REPAIR OR\nRECONSTRUCTION', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1129', 'LOWER LIMB, OPEN TENDON RELEASE (INCLUDING OPEN SOFT\nTISSUE RELEASES E.G. GASTROCNEMIUS RECESSION)', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1130', 'LOWER LIMB, OPEN TENDON RELEASES AND CAST\nAPPLICATION, HAMSTRING RELEASES', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1131', 'LOWER LIMB, PERCUTANEOUS TENOTOMY AND CAST\nAPPLICATION, ADDUCTOR TENOTOMY', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1132', 'LOWER LIMB, PERCUTANEOUS TENOTOMY AND CAST\nAPPLICATION, TA TENOTOMY', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1133', 'LOWER LIMB, TRAUMATIC AMPUTATION, MAJOR\nREPLANTATION', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.1134', 'LOWER LIMB, VARIOUS LESIONS, AMPUTATION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1135', 'LOWER LIMB, VARIOUS LESIONS, HINDQUARTER AMPUTATION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1136', 'LOWER LIMB, VARIOUS LESIONS, HIP DISARTICULATION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1137', 'LUMBAR PLEXUS, BLOCK, CATHETER', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.1138', 'LUMBAR PLEXUS, BLOCK, NO CATHETER', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1139', 'LUNG, BRONCHOSCOPY, INSERTION OF PROSTHESIS', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1140', 'LUNG, MASSIVE HEMOPTYSIS, BRONCHIAL ARTERY\nEMBOLISATION', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1141', 'LUNG, PULMONARY ENDARTERECTOMY WITH\nCARDIOPULMONARY BYPASS', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.1142', 'LUNG, TUMOUR, IMAGING GUIDED PERCUTANEOUS LOCAL\nABLATION, COMPLEX (RADIOFREQUENCY, CRYOTHERAPY, MICROWAVE, LASER, ALCOHOL, ETC)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1143', 'LUNG, TUMOUR, IMAGING GUIDED PERCUTANEOUS LOCAL\nABLATION, SIMPLE (RADIOFREQUENCY, CRYOTHERAPY, MICROWAVE, LASER, ALCOHOL, ETC)', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1144', 'LUNG, VARIOUS LESIONS, LUNG RESECTION WITH MEDIASTINAL\nRESECTION, ANY APPROACH', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.1145', 'LUNG, VARIOUS LESIONS,\nPNEUMONECTOMY/LOBECTOMY/SEGMENTAL RESECTION', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.1146', 'LUNG, VARIOUS LESIONS, REPEAT/MULTIPLE/COMPLEX\nRESECTIONS', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1147', 'LUNG, VARIOUS LESIONS, WEDGE RESECTION', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1148', 'LYMPH NODE (AXILLARY), VARIOUS LESIONS, LIMITED\nEXCISION/BIOPSY', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1149', 'LYMPH NODE (AXILLARY), VARIOUS LESIONS, RADICAL EXCISION/CLEARANCE WITH OR WITHOUT SENTINEL\nLYMPH NODE BIOPSY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1150', 'LYMPH NODE (AXILLARY), VARIOUS LESIONS, SENTINEL LN\nBIOPSY ONLY', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1151', 'LYMPH NODE (CERVICAL), DEEP, VARIOUS LESIONS, BIOPSY', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1152', 'LYMPH NODE (CERVICAL), RADICAL WITH FLAP\nRECONSTRUCTION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1153', 'LYMPH NODE (CERVICAL), SUPERFICIAL, VARIOUS LESIONS,\nBIOPSY', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1154', 'LYMPH NODE (CERVICAL), VARIOUS LESIONS, NECK DISSECTION\nBILATERAL 3 OR LESS LEVELS', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1155', 'LYMPH NODE (CERVICAL), VARIOUS LESIONS, NECK DISSECTION BILATERAL AT LEAST WITH ONE SIDE 4 TO 5\nLEVELS', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.1156', 'LYMPH NODE (CERVICAL), VARIOUS LESIONS, NECK DISSECTION\nUNILATERAL 1-3 LEVELS', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1157', 'LYMPH NODE (CERVICAL), VARIOUS LESIONS, NECK DISSECTION\nUNILATERAL 4-5 LEVELS', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1158', 'LYMPH NODE (CERVICAL), VARIOUS LESIONS, RADICAL NECK\nDISSECTION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1159', 'LYMPH NODE (INGUINAL), VARIOUS LESIONS, LIMITED EXCISION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1160', 'LYMPH NODE (INGUINAL), VARIOUS LESIONS, RADICAL EXCISION', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1161', 'LYMPH NODE (PELVIC) DISSECTION, MIS/OPEN', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1162', 'LYMPH NODE (RETROPERITONEAL), VARIOUS LESIONS, LIMITED\nEXCISION', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1163', 'LYMPH NODE (RETROPHARYNGEAL), NECK DISSECTION\n(OPEN/TRANSORAL)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1164', 'LYMPH NODE (SINGLE), VARIOUS LESIONS, EXCISION BIOPSY', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.1165', 'LYMPH NODE (SINGLE), VARIOUS LESIONS, EXCISION BIOPSY\n(MIS)', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.1166', 'LYMPH NODE EXCISION FOR MYCOBACTERIUM AVIARE\nINTRACELLULARE SCROPHYLLORIUM', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1167', 'LYMPH NODE, VARIOUS LESIONS, BIOPSY', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1168', 'LYMPH NODE, VARIOUS LESIONS, IMAGING GUIDED PERCUTANEOUS BIOPSY, DEEP\n(INTRATHORACIC/ABDOMINAL/PELVIC, RETROPERITONEAL)', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1169', 'LYMPH NODE, VARIOUS LESIONS, IMAGING GUIDED\nPERCUTANEOUS BIOPSY, SUPERFICIAL', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1170', 'LYMPHATICS (FACE & NECK), CYSTIC HYGROMA, EXCISION\n(LARGE)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1171', 'LYMPHATICS (FACE & NECK), CYSTIC HYGROMA, EXCISION\n(MODERATE)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1172', 'LYMPHATICS (FACE & NECK), CYSTIC HYGROMA, EXCISION\n(SMALL)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1173', 'LYMPHATICS (UPPER LIMB), LYMPHANGIOMA, EXCISION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1174', 'LYMPHATICS AND SUBCUTANEOUS TISSUE, LYMPHEDEMA,\nMAJOR EXCISION AND GRAFTING', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1175', 'LYMPHATICS, CYSTIC HYGROMA, EXCISION (EXTENSIVE)\nWITH/WITHOUT THORACOTOMY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1176', 'LYMPHATICS, LYMPHANGIECTASIS, LIMITED EXCISION', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1177', 'LYMPHATICS, LYMPHANGIECTASIS, RADICAL EXCISION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1178', 'LYMPHATICS, LYMPHEDEMA, EXCISION (EXTENSIVE AND\nCOMPLEX)', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.1179', 'LYMPHATICS, LYMPHEDEMA, EXCISION (LARGE & DEEP SEATED)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1180', 'LYMPHATICS, LYMPHEDEMA, EXCISION (LARGE)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1181', 'LYMPHATICS, LYMPHEDEMA, EXCISION (MODERATE)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1182', 'LYMPHATICS, LYMPHEDEMA, EXCISION (SMALL)', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1183', 'LYMPHATICS, LYMPHEDEMA, LYMPHO- VENOUS/LYMPHATICO- VENULAR ANASTOMOSES,\nUNILATERAL(MICROSURGERY)', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.1184', 'LYMPHATICS, LYMPHEDEMA, MAJOR EXCISION & GRAFTING', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1185', 'LYMPHATICS, LYMPHEDEMA, THOMSON\'S PROCEDURE', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1186', 'MALE GENITALIA, ELECTROEJECULATION', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.1187', 'MALE GENITALIA, TRANSSEXUALISM (TRANSVESTISM), SEX\nREASSIGNMENT (MALE TO FEMALE)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1188', 'MALE GENITALIA, TRANSSEXUALISM (TRANSVESTISM), SEX\nREASSIGNMENT WITH MAMMOPLASTY (MALE TO FEMALE)', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1189', 'MANDIBLE (EXCLUDING ALVEOLAR MARGINS), VARIOUS\nLESIONS, COMPLEX OSTEOTOMY/OSTECTOMY', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1190', 'MANDIBLE AND MAXILLA, OLD FRACTURES/OSTEOTOMY,\nREMOVAL OF PLATES OR WIRES', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1191', 'MANDIBLE AND MAXILLA, VARIOUS LESIONS, OSTEOTOMY AND INSERTION OF DEVICE FOR\nDISTRACTION OSTEOGENESIS', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.1192', 'MANDIBLE AND MAXILLA, VARIOUS LESIONS, OSTEOTOMY INCLUDING SEGMENTAL OSTEOTOMY\nWITH/WITHOUT GRAFTING', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.1193', 'MANDIBLE AND/OR MAXILLA, VARIOUS LESIONS, INSERTION OF TRANSMANDIBULAR IMPLANT/ SUBPERIOSTEAL IMPLANT/\nZYGOMATICUS IMPLANT', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1194', 'MANDIBLE OR MAXILLA, ALVEOLAR DEFECT/DEFORMITY, COMPLEX ALVEOLOPLASTY/UNILATERAL (LATERAL WINDOW) SINUS LIFT/RIDGE AUGMENTATION WITH GRAFTING', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1195', 'MANDIBLE OR MAXILLA, ALVEOLAR DEFECT/DEFORMITY,\nSIMPLE ALVEOLOPLASTY/BONE REGENERATIVE PROCEDURE', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1196', 'MANDIBLE OR MAXILLA, BONY PROTUBERANCE, EXCISION', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1197', 'MANDIBLE OR MAXILLA, DENTAL IMPLANT(S), OSSEOINTEGRATED, TREPHINE REMOVAL (X NUMBER OF\nIMPLANTS REMOVED)', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.1198', 'MANDIBLE OR MAXILLA, ODONTOGENIC CYST (10MM OR\nSMALLER), ENUCLEATION', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1199', 'MANDIBLE OR MAXILLA, ODONTOGENIC CYST (11- 20MM),\nENUCLEATION', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1200', 'MANDIBLE OR MAXILLA, ODONTOGENIC CYST (20MM OR\nLARGER OR MULTIPLE CYSTS), ENUCLEATION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1201', 'MANDIBLE OR MAXILLA, ODONTOGENIC CYST,\nMARSUPIALIZATION', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1202', 'MANDIBLE OR MAXILLA, OLD FRACTURES / OSTEOTOMY,\nREMOVAL OF PLATES OR WIRES', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1203', 'MANDIBLE OR MAXILLA, TUMOR, MARGINAL RESECTION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1204', 'MANDIBLE OR MAXILLA, TUMOR, MARGINAL RESECTION WITH\nBONE GRAFT', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1205', 'MANDIBLE OR MAXILLA, VARIOUS LESIONS, ALVEOLOPLASTY WITH EPITHELIAL GRAFT OR\nBILATERAL SINUS-LIFT PROCEDURE OR RIDGE AUGMENTATION\n(MULTIPLE QUADRANTS) WITH GRAFTING', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1206', 'MANDIBLE OR MAXILLA, VARIOUS LESIONS, DENTOALVEOLAR OSTEOTOMY AND INSERTION OF DEVICE FOR DISTRACTION\nOSTEOGENESIS', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1207', 'MANDIBLE OR MAXILLA, VARIOUS LESIONS, INSERTION OF ENDOSSEOUS DENTAL IMPLANT (SINGLE)(FOR\nMULTIPLE PLACEMENT OF IMPLANTS, NUMBER OF\nCLAIMS = NUMBER OF IMPLANTS PLACED )', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1208', 'MANDIBLE OR MAXILLA, VARIOUS LESIONS, SEGMENTAL OSTEOTOMY AND INSERTION OF DEVICE FOR\nDISTRACTION OSTEOGENESIS AND BONE TRANSPORT', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.1209', 'MANDIBLE OR MAXILLA, VARIOUS LESIONS, VESTIBULOPLASTY,\nCOMPLEX', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1210', 'MANDIBLE OR MAXILLA, VARIOUS LESIONS, VESTIBULOPLASTY,\nSIMPLE', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1211', 'MANDIBLE, ATROPHY, LATERALISATION OF INFERIOR DENTAL NERVE WITH IMPLANT FIXTURES PLACEMENT,\nBILATERAL.', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1212', 'MANDIBLE, ATROPHY, LATERALISATION OF INFERIOR DENTAL NERVE WITH IMPLANT FIXTURES PLACEMENT,\nUNILATERAL', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1213', 'MANDIBLE, FRACTURE (COMMINUTED), OPEN REDUCTION AND\nFIXATION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1214', 'MANDIBLE, FRACTURE, CLOSED REDUCTION AND FIXATION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1215', 'MANDIBLE, FRACTURE, OPEN REDUCTION AND FIXATION', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1216', 'MANDIBLE, VARIOUS LESIONS, ALVEOLECTOMY (PER\nQUADRANT)', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1217', 'MANDIBLE, VARIOUS LESIONS, BODY OR RAMUS OSTEOTOMY WITH INSERTION OF DISTRACTION\nOSTEOGENESIS DEVICE', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1218', 'MANDIBLE, VARIOUS LESIONS, GENIOPLASTY (COMPLEX\n- NOT AS A COMBINED PROCEDURE)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1219', 'MANDIBLE, VARIOUS LESIONS, GENIOPLASTY (SIMPLE - NOT AS\nA COMBINED PROCEDURE)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1220', 'MANDIBLE, VARIOUS LESIONS, MANDIBULAR RAMUS/BODY OSTECTOMY/OSTEOTOMY WITH\nSEGMENTAL OSTEOTOMY', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1221', 'MANDIBLE, VARIOUS LESIONS, MANDIBULAR RAMUS/BODY OSTECTOMY/OSTEOTOMY WITHOUT SEGMENTAL OSTEOTOMY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1222', 'MANDIBLE, VARIOUS LESIONS, RECONSTRUCTION WITH BONE', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1223', 'MANDIBLE, VARIOUS LESIONS, SEGMENTAL\nOSTECTOMY/OSTEOTOMY (ONE SEGMENT ONLY)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1224', 'MANDIBLE, VARIOUS LESIONS, SEGMENTAL RESECTION WITH\nBONE GRAFT', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1225', 'MARROW, FOR VARIOUS LESIONS, HARVESTING & GRAFTING', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1226', 'MARROW, VARIOUS LESIONS, DIAGNOSTIC ASPIRATION', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.1227', 'MASTOID, VARIOUS LESIONS, MASTOIDECTOMY (CORTICAL)', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1228', 'MASTOID, VARIOUS LESIONS, MASTOIDECTOMY (RADICAL/MODIFIED RADICAL) WITH MYRINGOPLASTY\nAND OSSICULAR CHAIN RECONSTRUCTION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1229', 'MASTOID, VARIOUS LESIONS, MASTOIDECTOMY\n(RADICAL/MODIFIED)', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1230', 'MASTOID, VARIOUS LESIONS, MASTOIDECTOMY\n(RADICAL/MODIFIED) WITH MYRINGOPLASTY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1231', 'MASTOID, VARIOUS LESIONS, OBLITERATION / REDUCTION OF\nCAVITY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1232', 'MASTOID, VARIOUS LESIONS, REVISION MASTOIDECTOMY', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1233', 'MAXILLA (EXCLUDING ALVEOLAR MARGINS) AND/OR ZYGOMA, VARIOUS LESIONS, COMPLEX\nOSTECTOMY/OSTEOTOMY', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1234', 'MAXILLA DEFORMITY, LE FORT II OSTEOTOMY AND INSERTION\nOF DISTRACTION OSTEOGENESIS DEVICE', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1235', 'MAXILLA DEFORMITY, LE FORT III OSTEOTOMY AND INSERTION\nOF DISTRACTION OSTEOGENESIS DEVICE', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.1236', 'MAXILLA, ALVEOLAR CLEFT (BILATERAL COMPLETE), BONE\nGRAFT AND CLOSURE OF NASO BUCCAL FISTULA', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1237', 'MAXILLA, ALVEOLAR CLEFT (UNILATERAL COMPLETE), BONE\nGRAFT AND CLOSURE OF NASO BUCCAL FISTULA', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.1238', 'MAXILLA, ALVEOLAR CLEFT (UNILATERAL INCOMPLETE), BONE\nGRAFT', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1239', 'MAXILLA, BILATERAL INCOMPLETE ALVEOLAR CLEFT, BONE\nGRAFT', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.1240', 'MAXILLA, DEFORMITY - LEFORT I, OSTEOTOMY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1241', 'MAXILLA, DEFORMITY - LEFORT II, OSTEOTOMY', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1242', 'MAXILLA, DEFORMITY - LEFORT III, OSTEOTOMY', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.1243', 'MAXILLA, DEFORMITY, LE FORT I OSTEOTOMY AND INSERTION\nOF DISTRACTION OSTEOGENESIS DEVICE', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1244', 'MAXILLA, FRACTURE - LEFORT I, CLOSED REDUCTION AND\nFIXATION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1245', 'MAXILLA, FRACTURE - LEFORT I, OPEN REDUCTION AND\nFIXATION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1246', 'MAXILLA, FRACTURE - LEFORT II (COMPLEX), OPEN REDUCTION\nAND FIXATION.', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1247', 'MAXILLA, FRACTURE - LEFORT II / III, CLOSED REDUCTION AND\nFIXATION.', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1248', 'MAXILLA, FRACTURE - LEFORT III, OPEN REDUCTION AND\nFIXATION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1249', 'MAXILLA, FRACTURE - LEFORT III, OPEN REDUCTION AND\nFIXATION USING CRANIOFACIAL APPROACH', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.1250', 'MAXILLA, SINUSES, SINOSCOPY', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1251', 'MAXILLA, VARIOUS LESIONS, OSTECTOMY/OSTEOTOMY (MORE\nTHAN 1 SEGMENT)', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1252', 'MAXILLA, VARIOUS LESIONS, OSTECTOMY/OSTEOTOMY (ONE\nSEGMENT ONLY)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1253', 'MAXILLA, VARIOUS LESIONS, RESECTION WITH\nRECONSTRUCTION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1254', 'MAXILLA, VARIOUS LESIONS, RESECTION/HEMIMAXILLECTOMY (OPEN OR ENDOSCOPIC METHOD)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1255', 'MENINGES, MYELOMENINGOCELE, EXCISION OF SAC', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.1256', 'MENINGES, MYELOMENINGOCELE, EXTENSIVE REPAIR WITH\nSKIN FLAPS/Z-PLASTY', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1257', 'MIS REPAIR OF ESOPHAGEAL FISTULA AND ESOPHAGEAL\nATRESIA', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1258', 'MOUTH, ABSCESS (DEEP), DRAINAGE (INCLUDES SUBMASSETERIC, SUBMANDIBULAR, TEMPORAL, AND\nPTERYGOMANDIBULAR SPACES)', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1259', 'MOUTH, ABSCESS, (SUPERFICIAL), DRAINAGE', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.1260', 'MOUTH, ANGULAR CLEFT WITH MACROSTOMIA (BILATERAL)\nREPAIR', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.1261', 'MOUTH, ANGULAR CLEFT WITH MACROSTOMIA (UNILATERAL)\nREPAIR', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.1262', 'MOUTH, CAUTERY OF SOFT PALATE /TONGUE BASE', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1263', 'MOUTH, CLEFT LIP, BILATERAL PRIMARY REPAIR', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.1264', 'MOUTH, CLEFT LIP, SECONDARY CORRECTION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1265', 'MOUTH, CLEFT LIP, SECONDARY CORRECTION (ABBE FLAP)', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.1266', 'MOUTH, CLEFT LIP, SECONDARY CORRECTION OF\nNOSTRIL/NASAL TIP', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1267', 'MOUTH, CLEFT LIP, UNILATERAL PRIMARY REPAIR', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.1268', 'MOUTH, DEFECT, MUCOUS MEMBRANE/CONNECTIVE TISSUE\nGRAFT', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1269', 'MOUTH, DISLOCATED TEETH/DENTO-ALVEOLAR FRACTURE,\nREDUCTION AND IMMOBILISATION', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1270', 'MOUTH, FRENAL ATTACHMENT, RELEASE', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1271', 'MOUTH, INTRA ORAL TUMOUR RADICAL EXCISION WITH RESECTION OF MANDIBLE AND BILATERAL NECK\nDISSECTION', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.1272', 'MOUTH, INTRA ORAL TUMOUR RADICAL EXCISION WITH RESECTION OF MANDIBLE AND UNILATERAL NECK DISSECTION', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.1273', 'MOUTH, LEUKOPLAKIA, LIMITED EXCISION', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1274', 'MOUTH, LEUKOPLAKIA, WIDE EXCISION AND SKIN GRAFTING', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1275', 'MOUTH, MACROCHEILIA AND MACROGLOSSIA,\nRECONSTRUCTION', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1276', 'MOUTH, MALIGNANT TUMOR, WIDE EXCISION AND MAJOR\nRECONSTRUCTION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1277', 'MOUTH, MUCOUS CYST/RANULA OF FLOOR OF MOUTH,\nEXCISION WITH/WITHOUT BIOPSY', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1278', 'MOUTH, MUCOUS CYST/RANULA OF FLOOR OF MOUTH,\nMARSUPIALIZATION /BIOPSY', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1279', 'MOUTH, NASOLABIAL CYST, EXCISION BIOPSY', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1280', 'MOUTH, ORO-ANTRAL FISTULA, REMOVAL OF TOOTH/ROOTS IN\nANTRUM AND CLOSURE', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1281', 'MOUTH, PERIODONTIUM (WITHIN 1 QUADRANT),\nPERIODONTITIS, OPEN FLAP DEBRIDEMENT', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1282', 'MOUTH, PERIODONTIUM (WITHIN 1 QUADRANT), SOFT TISSUE\nDEFECT/DEFORMITY, GINGIVOPLASTY', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1283', 'MOUTH, PERIODONTIUM (WITHIN 1 QUADRANT), SOFT TISSUE\nDEFECT/DEFORMITY, GINGIVOPLASTY WITH AUTOGENOUS SOFT/HARD TISSUE GRAFT', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1284', 'MOUTH, PERIODONTIUM (WITHIN 2 QUADRANTS),\nPERIODONTITIS, OPEN FLAP DEBRIDEMENT', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1285', 'MOUTH, PERIODONTIUM (WITHIN 2 QUADRANTS), SOFT TISSUE\nDEFECT/DEFORMITY, GINGIVOPLASTY', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1286', 'MOUTH, PERIODONTIUM (WITHIN 2 QUADRANTS), SOFT TISSUE\nDEFECT/DEFORMITY, GINGIVOPLASTY WITH AUTOGENOUS SOFT/HARD TISSUE GRAFT', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1287', 'MOUTH, PERIODONTIUM, BONE DEFECT/DEFORMITY,\nAUGMENTATION (AUTOGENOUS) /REGENERATION', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1288', 'MOUTH, PERIODONTIUM, BONE DEFECT/DEFORMITY,\nAUGMENTATION (NON-AUTOGENOUS) /REGENERATION', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1289', 'MOUTH, SMALL SOFT TISSUE TUMOR, EXCISION BIOPSY <\n3CM', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1290', 'MOUTH, SUBLINGUAL GLAND, TUMOR, EXCISION BIOPSY', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1291', 'MOUTH, SUBMANDIBULAR GLAND, CALCULUS (DEEP),\nREMOVAL BIOPSY', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1292', 'MOUTH, SUBMANDIBULAR GLAND, CALCULUS, REMOVAL WITH\nBIOPSY', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.1293', 'MOUTH, SUBMANDIBULAR GLAND, VARIOUS LESIONS,\nEXCISION WITH BIOPSY', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1294', 'MOUTH, SUBMUCOSAL RESECTION, ENDOSCOPIC EXCISION\nWITH BIOPSY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1295', 'MOUTH, TUMOR, RADICAL EXCISION BIOPSY WITH RESECTION OF MANDIBLE AND LYMPH NODES AND RECONSTRUCTION', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.1296', 'MOUTH, VARIOUS LESIONS OF ORAL MUCOSA (LARGE/MULTIPLE), CRYOSURGICAL/LASER APPLICATION\nWITH BIOPSY', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1297', 'MOUTH, VARIOUS LESIONS, LASER APPLICATION', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1298', 'MOUTH, VARIOUS LESIONS, PHARYNGOTOMY (LATERAL) WITH\nEXCISION OF TONGUE', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1299', 'MOUTH, VARIOUS LESIONS, UVULOTOMY', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1300', 'MOUTH, VARIOUS/PATHOLOGIC LESIONS OF ORAL MUCOSA, CRYOSURGICAL/LASER APPLICATION WITH BIOPSY', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1301', 'MOUTH, VARIOUS/PATHOLOGIC LESIONS OF ORAL MUCOSA,\nLASER APPLICATION', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1302', 'MUCOUS MEMBRANE (EAR/NOSE/EYELID) AVULSION/COMPLEX\nLACERATION, FULL THICKNESS REPAIR', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1303', 'MUCOUS MEMBRANE, DEEP LACERATION/MULTIPLE\nLACERATIONS, REPAIR', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1304', 'MUCOUS MEMBRANE, SUPERFICIAL LACERATION EQUAL/LESS\nTHAN 7CM, REPAIR', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1305', 'MUCOUS MEMBRANE, SUPERFICIAL LACERATION(S) MORE\nTHAN 7 CM, REPAIR', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1306', 'MUCOUS MEMBRANE, TUMOR/CYST/ULCER/SCAR, EXCISION', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1307', 'MUSCLE (LOWER LIMB), DEEP ABSCESS, DRAINAGE', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1308', 'MUSCLE (LOWER LIMB), RUPTURE, REPAIR', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1309', 'MUSCLE (LOWER LIMB), VARIOUS LESIONS, MARGINAL\nEXCISION', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1310', 'MUSCLE (LOWER LIMB), VARIOUS LESIONS, WIDE EXCISION', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1311', 'MUSCLE (UPPER LIMB), DEEP ABSCESS, INCISION AND\nDRAINAGE', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1312', 'MUSCLE (UPPER LIMB), RUPTURE, REPAIR', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1313', 'MUSCLE (UPPER LIMB), VARIOUS LESIONS, MARGINAL EXCISION', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1314', 'MUSCLE (UPPER LIMB), VARIOUS LESIONS, WIDE EXCISION', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1315', 'MUSCLE AND DEEP TISSUE, FOREIGN BODY, REMOVAL', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1316', 'MUSCULOSKELETAL SYSTEM, VARIOUS LESIONS, FREE\nCOMPOSITE TISSUE GRAFT', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.1317', 'NAIL BED, LACERATION, REPAIR (MULTIPLE)', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1318', 'NAIL BED, LACERATION, REPAIR (SINGLE)', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.1319', 'NAIL, INFECTION/INJURY, AVULSION', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.1320', 'NECK, BRANCHIAL CYST, REMOVAL WITH BIOPSY', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1321', 'NECK, BRANCHIAL FISTULA, REMOVAL', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1322', 'NECK, TORTICOLLIS, CORRECTION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1323', 'NERVE (LOWER LIMB), DISRUPTION, MAJOR RECONSTRUCTION WITH REPAIR AND/OR\nNEUROVASCULAR TRANSFER', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1324', 'NERVE (LOWER LIMB), DISRUPTION, MAJOR REPAIR (SINGLE)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1325', 'NERVE (LOWER LIMB), ENTRAPMENT SYNDROME,\nDECOMPRESSION', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1326', 'NERVE (OROFACIAL), DEFECT, GRAFT (MULTIPLE) USING\nMICROSURGICAL TECHNIQUES (INCLUDE HARVESTING)', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.1327', 'NERVE (OROFACIAL), DEFECT, GRAFT (SINGLE)/NERVE SHARE, USING MICROSURGICAL TECHNIQUES (INCLUDE HARVESTING)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1328', 'NERVE (OROFACIAL), INJURY, DECOMPRESSION\n(MULTIPLE/SINGLE INTRAOSSEOUS)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1329', 'NERVE (OROFACIAL), INJURY, DECOMPRESSION (SINGLE)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1330', 'NERVE (OROFACIAL), INJURY, MICROSURGICAL REPAIR\n(MULTIPLE/ SINGLE INTRAOSSEOUS)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1331', 'NERVE (OROFACIAL), INJURY, MICROSURGICAL REPAIR (SINGLE)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1332', 'NERVE (UPPER LIMB), CARPAL TUNNEL SYNDROME, RELEASE,\nBILATERAL, (WITH ENDONEUROLYSIS)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1333', 'NERVE (UPPER LIMB), CARPAL TUNNEL SYNDROME, RELEASE,\nUNILATERAL, (WITH ENDONEUROLYSIS)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1334', 'NERVE (UPPER LIMB), DEFECT, GRAFT (SINGLE) USING\nMICROSURGICAL TECHNIQUES', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1335', 'NERVE (UPPER LIMB), DEFECT, GRAFTING/INTERFASCICULAR REPAIR/NEUROVASCULAR TRANSFER', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1336', 'NERVE (UPPER LIMB), ENTRAPMENT SYNDROME (OTHERS),\nDECOMPRESSION (BILATERAL)', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1337', 'NERVE (UPPER LIMB), ENTRAPMENT SYNDROME (OTHERS),\nDECOMPRESSION (UNILATERAL)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1338', 'NERVE (UPPER LIMB), GUYON\'S TUNNEL SYNDROME, RELEASE\n(BILATERAL WITH ENDONEUROLYSIS)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1339', 'NERVE (UPPER LIMB), GUYON\'S TUNNEL SYNDROME, RELEASE\n(UNILATERAL)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1340', 'NERVE (UPPER LIMB)-MAJOR, INJURY, MICROSURGICAL REPAIR\n(MULTIPLE)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1341', 'NERVE (UPPER LIMB)-MAJOR, INJURY, MICROSURGICAL REPAIR\n(SINGLE)', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1342', 'NERVE DEFECT, PERIPHERAL GRAFT (MICROSURGERY)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1343', 'NERVE ROOT, BLOCK (INJECTION OF ANAESTHETIC,\nTHERAPEUTIC SUBSTANCE) - CERVICAL, > 1 LEVEL', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1344', 'NERVE ROOT, BLOCK (INJECTION OF ANAESTHETIC,\nTHERAPEUTIC SUBSTANCE) - CERVICAL, 1 LEVEL', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1345', 'NERVE ROOT, BLOCK (INJECTION OF ANAESTHETIC, THERAPEUTIC SUBSTANCE), LUMBAR/THORACIC, 1\nLEVEL', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.1346', 'NERVE ROOT, BLOCK (INJECTION OF ANAESTHETIC,\nTHERAPEUTIC SUBSTANCE), LUMBAR/THORACIC, > 1 LEVEL', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1347', 'NERVE ROOTS, DORSAL ROOT GANGLION, ANAESTHETIC, MORE\nTHAN TWO', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1348', 'NERVE ROOTS, DORSAL ROOT GANGLION, ANAESTHETIC, ONE\nTO TWO', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1349', 'NERVE ROOTS, DORSAL ROOT GANGLION, RADIOFREQUENCY,\nNEUROLYTIC, MORE THAN TWO', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.1350', 'NERVE ROOTS, DORSAL ROOT GANGLION, RADIOFREQUENCY,\nNEUROLYTIC, ONE TO TWO', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1351', 'NERVE, FAECAL INCONTINENCE OR OTHER, PERCUTANEOUS\nTIBIAL NERVE STIMULATION', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.1352', 'NERVE, ULNAR, ENTRAPMENT, TRANSPOSITION', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1353', 'NERVE, VAGUS NERVE STIMULATOR', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.1354', 'NERVE, VARIOUS LESIONS, BIOPSY', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1355', 'NERVE, VARIOUS LESIONS, PRIMARY/SECONDARY SUTURE', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1356', 'NERVE-CRANIAL, VARIOUS LESIONS, MICROVASCULAR\nDECOMPRESSION/NEURECTOMY', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1357', 'NERVE-CUTANEOUS, INJURY, PRIMARY SUTURE', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1358', 'NERVE-DIGITAL, INJURY, MICROSURGICAL REPAIR (MULTIPLE)', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1359', 'NERVE-DIGITAL, INJURY, MICROSURGICAL REPAIR (SINGLE)', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1360', 'NERVE-DIGITAL, INJURY, PRIMARY REPAIR', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1361', 'NERVE-FACIAL (MASTOID PORTION), ENTRAPMENT,\nDECOMPRESSION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1362', 'NERVE-FACIAL PARALYSIS, FREE FASCIA AND/OR NERVE GRAFT\n(MICROSURGICAL ? STAGE 1)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1363', 'NERVE-FACIAL PARALYSIS, FREE FASCIA SLING/GRAFT\n(SINGLE/UNILATERAL)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1364', 'NERVE-FACIAL PARALYSIS, FREE MUSCLE FLAP (MICROSURGICAL\n? STAGE 2)', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.1365', 'NERVE-FACIAL PARALYSIS, LOCAL MUSCLE TRANSFER', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1366', 'NERVE-FACIAL, VARIOUS LESIONS, COMBINED MIDDLE FOSA AND TRANSMASTOID FACIAL NERVE DECOMPRESSION', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.1367', 'NERVE-PERIPHERAL (DEEP), TUMOR, EXCISION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1368', 'NERVE-PERIPHERAL (SUPERFICIAL), TUMOR, EXCISION', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1369', 'NERVE-SYMPATHETIC, VARIOUS LESIONS, SYMPATHECTOMY, WITH/WITHOUT VIDEO-ASSISTANCE, BILATERAL', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1370', 'NERVE-SYMPATHETIC, VARIOUS LESIONS, SYMPATHECTOMY, WITH/WITHOUT VIDEO-ASSISTANCE,\nUNILATERAL', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1371', 'NERVE-TRIGEMINAL (GANGLION), NEUROLAGIA, INJECTION WITH ALCOHOL/RADIOFREQUENCY\nGANGLIONOTOMY, IMAGING GUIDED', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1372', 'NEUROSTIMULATOR, INSERTION OF INTERNAL PULSE GENERATOR, INVOLVES OPENING OF WOUND, TUNNELING, OPENING OF POUCH FOR IPG & TESTING OF\nSYSTEM', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1373', 'NEUROSTIMULATOR, REVISION/REPLACEMENT OF\nIMPLANTABLE PULSE GENERATOR (DOES NOT INVOLVE TUNNELING)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1374', 'NOSE, CHOANAL ATRESIA, PLASTIC REPAIR', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1375', 'NOSE, CHOANAL ATRESIA, REPAIR BY PUNCTURE AND\nDILATATION', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1376', 'NOSE, HEMATOMA/ABSCESS, EVACUATION/INCISION &\nDRAINAGE', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.1377', 'NOSE, HEMORRHAGE, HEMOSTASIS (PACKING)/CRYOTHERAPY)', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1378', 'NOSE, LACERATION FULL THICKNESS, REPAIR >3CM', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1379', 'NOSE, NASOENDOSCOPY/NASOPHARYNGOLARYNGOSCOPY (SINGLE OR REPEAT EXAMINATIONS, DURING A 90 DAY GLOBAL\nPERIOD)', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.1380', 'NOSE, POLYPI (COMPLEX), NASOENDOSCOPY WITH EXCISION\nBIOPSY, MORE THAN 2', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1381', 'NOSE, POLYPI (SIMPLE), NASOENDOSCOPY WITH EXCISION\nBIOPSY, 1 TO 2', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1382', 'NOSE, POST-NASAL SPACE, LASER APPLICATION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1383', 'NOSE, RHINOPHYMA, EXCISION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1384', 'NOSE, RHINOPHYMA, TOTAL CONSTRUCTION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1385', 'NOSE, RHINOPLASTY, CORRECTION OF LATERAL/ALAR CARTILAGE AND/OR SEPTAL STRUT (INCLUDING ALL GRAFTS, EXTRACORPOREAL SEPTOPLASTY), RECONSTRUCTION OF NASAL VALVE(S), AND/OR EXTRANASAL CARTILAGE HARVEST', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.1386', 'NOSE, SIMPLE FRACTURE, MANIPULATION', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1387', 'NOSE, VARIOUS LESIONS (POSTNASAL SPACE), DIRECT\nEXAMINATION WITH BIOPSY AND NASENDOSCOPY', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1388', 'NOSE, VARIOUS LESIONS (TURBINATES), TURBINECTOMY/TURBINOPLASTY/SUBMUCOUS RESECTION\n(WITH OR WITHOUT ENDOSCOPES)', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1389', 'NOSE, VARIOUS LESIONS, CAUTERISATION/DIATHERMY', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.1390', 'NOSE, VARIOUS LESIONS, COMPOSITE GRAFT (CHONDRO-\nCUTANEOUS/CHONDRO-MUCOSAL)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1391', 'NOSE, VARIOUS LESIONS, RHINOPLASTY (AUGMENTATION\nEXCLUDING COST OF IMPLANTS)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1392', 'NOSE, VARIOUS LESIONS, RHINOPLASTY (CORRECTION OF BONY\nVAULT ONLY)', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.1393', 'NOSE, VARIOUS LESIONS, RHINOPLASTY (RESTORATION OF THE FACE INVOLVING AUTOGENOUS BONE OR\nCOSTAL CARTILAGE GRAFT)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1394', 'NOSE, VARIOUS LESIONS, RHINOPLASTY (SECONDARY REVISION)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1395', 'NOSE, VARIOUS LESIONS, RHINOPLASTY (TOTAL) INCLUDING CORRECTION OF ALL BONY AND CARTILAGINOUS ELEMENTS', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1396', 'NOSE, VARIOUS LESIONS, SEPTOPLASTY/SUBMUCOUS\nRESECTION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1397', 'OCULAR SURFACE PROCEDURE INCLUDING AMNIOTIC\nMEMBRANE TRANSPLANT (COMPLEX, CULTURED GRAFTS/EXTENSIVE RECONSTRUCTION)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1398', 'OPTIC NERVE SHEATH FENESTRATION', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1399', 'ORAL CAVITY AND PHARYNX, FOREIGN BODY, REMOVAL', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1400', 'ORBIT, CONTRACTURE, RECONSTRUCTION INCLUDING MUCOUS\nMEMBRANE GRAFTING AND STENT MOULD', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1401', 'ORBIT, RECONSTRUCTION, EXTENSIVE FLOOR/MEDIAL WALL\nFRACTURE', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1402', 'ORBIT, TUMOR, EXENTERATION/FLAP RECONSTRUCTION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1403', 'ORBIT, TUMOUR, EXENTERATION WITH ORBITECTOMY &\nPRIMARY RECONSTRUCTION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1404', 'ORBIT, VARIOUS LESIONS OF MID TO POSTERIOR ORBIT,\nEXCISION', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.1405', 'ORBIT, VARIOUS LESIONS, ANTERIOR ORBITOTOMY', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1406', 'ORBIT, VARIOUS LESIONS, ANTERIOR ORBITOTOMY (EXTENSIVE)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1407', 'ORBIT, VARIOUS LESIONS, DECOMPRESSION (BILATERAL)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1408', 'ORBIT, VARIOUS LESIONS, DECOMPRESSION (UNILATERAL)', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1409', 'ORBIT, VARIOUS LESIONS, EXTENDED LATERAL\nORBITOTOMY', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.1410', 'ORBIT, VARIOUS LESIONS, LATERAL ORBITOTOMY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1411', 'ORBIT, VARIOUS LESIONS, OPTIC NERVE DECOMPRESSION\n(BILATERAL)', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.1412', 'ORBIT, VARIOUS LESIONS, OPTIC NERVE DECOMPRESSION\n(UNILATERAL)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1413', 'ORBIT, VARIOUS LESIONS, RECONSTRUCTION INCLUDING ORBITAL SHIFT AND SOFT TISSUE (CRANIOFACIAL APPROACH)', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.1414', 'ORBIT, VARIOUS LESIONS, RECONSTRUCTION OF FLOOR/ROOF\nWITH ALLOPLASTIC MATERIAL', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1415', 'ORBIT, VARIOUS LESIONS, RECONSTRUCTION OF FLOOR/ROOF\nWITH BONE GRAFT', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1416', 'ORBIT, VARIOUS LESIONS/TUMOURS, EXENTERATION/REMOVAL\nVIA CRANIOTOMY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1417', 'ORBITAL, ENUCLEATION WITH INTEGRATED ORBITAL IMPLANT', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1418', 'ORBITAL/SCLERAL, EVISCERATION WITH IMPLANT & SCLERAL\nBALL', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1419', 'ORGAN PROCUREMENT COSTS: CORNEA11', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1420', 'ORGAN PROCUREMENT COSTS: HEART', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1421', 'ORGAN PROCUREMENT COSTS: LUNG', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1422', 'OTHERS, AUTOLOGOUS CHONDROCYTE IMPLANTATION', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1423', 'OVARIAN VEINS, PELVIC CONGESTION SYNDROME, OVARIAN\nVEIN EMBOLISATION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1424', 'OVARY, MALIGNANT TUMOR/CYST, STAGING LAPAROTOMY, AS\nTHE ONLY PROCEDURE', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1425', 'OVARY, MALIGNANT TUMOR/CYST, TOTAL HYSTERECTOMY BILATERAL SALPINGO-OOPHORECTOMY WITH OMENTECTOMY, SURGICAL STAGING\nWITH/WITHOUT LYMPHADENECTOMY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1426', 'OVARY, TUMOR/CYST, ASPIRATION EXCEPT FOR OVUM\nRETRIEVAL', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1427', 'OVARY, TUMOR/CYST, CYSTECTOMY (COMPLICATED,\n>5CM)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1428', 'OVARY, TUMOR/CYST, CYSTECTOMY (SIMPLE, <5CM)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1429', 'OVARY, TUMOR/CYST, OOPHORECTOMY/SALPINGO-\nOOPHORECTOMY (COMPLICATED)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1430', 'OVARY, TUMOR/CYST, OOPHORECTOMY/SALPINGO-\nOOPHORECTOMY (SIMPLE)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1431', 'OVARY, VARIOUS LESIONS, BIOPSY', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1432', 'OVARY, VARIOUS LESIONS, OVARIOPEXY', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1433', 'OVARY, VARIOUS LESIONS, OVARIOPLASTY, LAPAROTOMY/MIS (USING MICROSURGICAL\nTECHNIQUES)', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1434', 'OVARY, VARIOUS LESIONS, WEDGE RESECTION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1435', 'PALATE, CLEFT (COMPLETE), PRIMARY REPAIR', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1436', 'PALATE, CLEFT (PARTIAL), PRIMARY REPAIR', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1437', 'PALATE, CLEFT, SECONDARY REPAIR (CLOSURE OF FISTULA)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1438', 'PALATE, CLEFT, UVULOPHARYNGOPLASTY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1439', 'PALATE, SECONDARY REPAIR (LENGTHENING PROCEDURE)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1440', 'PANCREAS, CYST/PSEUDOCYST, MIS/OPEN DRAINAGE AND\nANASTOMOSIS TO INTESTINE/STOMACH', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1441', 'PANCREAS, PSEUDOCYST/ABSCESS, IMAGING GUIDED\nPERCUTANEOUS DRAINAGE CATHETER INSERTION', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1442', 'PANCREAS, TRANSPLANT (DONATION - CADAVERIC DONOR)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1443', 'PANCREAS, TRANSPLANT (RECIPIENT)', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.1444', 'PANCREAS, TUMOUR, TRIPLE BYPASS', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1445', 'PANCREAS, VARIOUS LESIONS, DISTAL\nPANCREATECTOMY/ANASTOMOSIS OF PANCREATIC DUCT', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1446', 'PANCREAS, VARIOUS LESIONS, DUODENUM PRESERVING PANCREATIC HEAD RESECTION WITH LONGITUDINAL\nPANCREATICO-ENTERIC ANASTOMOSIS (FREY\'S OPERATION)', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.1447', 'PANCREAS, VARIOUS LESIONS, DUODENUM PRESERVING\nPANCREATIC HEAD RESECTION (BEGER\'S OPERATION)', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.1448', 'PANCREAS, VARIOUS LESIONS, ENUCLEATION OF LESIONS (1 TO\n2)', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.1449', 'PANCREAS, VARIOUS LESIONS, ENUCLEATION OF LESIONS (3 OR\nMORE)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1450', 'PANCREAS, VARIOUS LESIONS, EXTERNAL DRAINAGE (OPEN)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1451', 'PANCREAS, VARIOUS LESIONS, IMAGING GUIDED\nPERCUTANEOUS BIOPSY', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1452', 'PANCREAS, VARIOUS LESIONS, MIS/OPEN DISTAL\nPANCREATECTOMY AND SPLENECTOMY', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.1453', 'PANCREAS, VARIOUS LESIONS, MIS/OPEN SPLEEN- PRESERVING\nDISTAL PANCREATECTOMY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1454', 'PANCREAS, VARIOUS LESIONS, MIS/OPEN SUBTOTAL PANCREATECTOMY (EXTENDING TO THE NECK) AND\nSPLENECTOMY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1455', 'PANCREAS, VARIOUS LESIONS, PORTAL VENOUS SAMPLING', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1456', 'PANCREAS, VARIOUS LESIONS, SEGMENTAL PANCREATECTOMY WITH PANCREATICO-ENTERIC\nANASTOMOSIS', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1457', 'PANCREAS, VARIOUS LESIONS, WHIPPLE OPERATION/TOTAL\nPANCREATECTOMY', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.1458', 'PARATHYROID, VARIOUS LESIONS, EXCISION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1459', 'PARATHYROID, VARIOUS LESIONS, RE EXPLORATION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1460', 'PARAVERTEBRAL REGION, BLOCK, ANAESTHETIC (MORE THAN 2\nLEVELS)', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1461', 'PARAVERTEBRAL REGION, BLOCK, ANAESTHETIC (UP TO\n2 LEVELS)', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1462', 'PAROTID, CALCULUS (DEEP), REMOVAL', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1463', 'PAROTID, CALCULUS (SUPERFICIAL), REMOVAL', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.1464', 'PAROTID, FISTULA, REPAIR', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1465', 'PAROTID, TOTAL PAROTIDECTOMY WITH NECK DISSECTION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1466', 'PAROTID, TOTAL PAROTIDECTOMY, WITH/WITHOUT\nPRESERVATION OF FACIAL NERVE', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.1467', 'PAROTID, TUMOR, SUPERFICIAL PAROTIDECTOMY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1468', 'PAROTID, TUMOR, TOTAL PAROTIDECTOMY WITH\nPARAPHARYNGEAL SPACE RESECTION AND FLAP RECONSTRUCTION', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.1469', 'PAROTID, TUMOR, TOTAL PAROTIDECTOMY WITH RADICAL\nNECK DISSECTION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1470', 'PAROTID, TUMOUR, TOTAL PAROTIDECTOMY WITH\nRECONSTRUCTION FACIAL NERVE', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1471', 'PATELLA, FRACTURE, OPEN REDUCTION AND INTERNAL\nFIXATION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1472', 'PATELLA, HABITUAL DISLOCATION- LATERAL RELEASE, MEDIAL\nPLICATION', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1473', 'PATELLA, RECURRENT DISLOCATION/CHONDROMALACIA,\nRECONSTRUCTION', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1474', 'PATELLA, VARIOUS LESIONS, PATELLECTOMY', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1475', 'PELVIC FLOOR RECONSTRUCTION, MIS', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.1476', 'PELVIS, ARTERY/VEIN, LIGATION / OCCLUSION', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1477', 'PELVIS, FRACTURE (DOUBLE COLUMNS), OPEN REDUCTION AND\nINTERNAL FIXATION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1478', 'PELVIS, FRACTURE, FIXATION OF ANTERIOR AND POSTERIOR\nRING', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1479', 'PELVIS, FRACTURE, OPEN REDUCTION AND INTERNAL FIXATION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1480', 'PELVIS, FRACTURE, PLATE/SCREW FIXATION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1481', 'PELVIS, FROZEN/DENSE PELVIC ADHESIONS, CONSERVATIVE RECONSTRUCTION OF OVARIES, TUBES, UTERUS, PELVIC FLOOR', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1482', 'PELVIS, MALIGNANT, SECOND LOOK LAPAROTOMY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1483', 'PENIS, EPISPADIAS, REPAIR INVOLVING BLADDER NECK CLOSURE', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.1484', 'PENIS, EPISPADIAS, REPAIR NOT INVOLVING SPHINCTER (EACH\nSTAGE)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1485', 'PENIS, GLANULAR HYPOSPADIAS, MEATOPLASTY AND\nCIRCUMCISION', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1486', 'PENIS, HYPOSPADIAS, CORRECTION OF CHORDEE', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1487', 'PENIS, HYPOSPADIAS, CORRECTION OF CHORDEE WITH\nTRANSPLANTATION OF PREPUCE', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1488', 'PENIS, HYPOSPADIAS, MEATOTOMY & HEMICIRCUMCISION', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1489', 'PENIS, HYPOSPADIAS, SECONDARY CORRECTION', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1490', 'PENIS, HYPOSPADIAS, URETHRAL RECONSTRUCTION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1491', 'PENIS, HYPOSPADIAS, URETHRAL RECONSTRUCTION &\nCORRECTION OF CHORDEE', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1492', 'PENIS, PARAPHIMOSIS/PHIMOSIS/REDUCTION PREPUCE,\nCIRCUMCISION', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1493', 'PENIS, PENILE WARTS, LASER VAPORISATION', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1494', 'PENIS, PEYRONIE\'S DISEASE, INCISION AND GRAFTING', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1495', 'PENIS, PEYRONIE\'S DISEASE, OPERATION', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1496', 'PENIS, PRIAPISM, DECOMPRESSION (SHUNT OP)', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1497', 'PENIS, PRIAPISM, DECOMPRESSION (SINGLE)', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1498', 'PENIS, REMOVAL OF \"PENILE\" IMPLANT', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1499', 'PENIS, SEX REASSIGNMENT (FEMALE TO MALE), IMPLANTATION\nOF PENILE PROSTHESIS', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1500', 'PENIS, TRAUMA (AMPUTATION), MICROVASCULAR\nREATTACHMENT', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.1501', 'PENIS, TRAUMA, RECONSTRUCTION (1ST STAGE)', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1502', 'PENIS, TRAUMA, RECONSTRUCTION (2ND STAGE)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1503', 'PENIS, TRAUMA, REPAIR OF AVULSION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1504', 'PENIS, TRAUMA, REPAIR OF LACERATION/FRACTURE INVOLVING\nCAVERNOUS TISSUE', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1505', 'PENIS, TUMOR, AMPUTATION (PARTIAL) + BILATERAL RADICAL\nLN DISSECTION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1506', 'PENIS, TUMOR, AMPUTATION (TOTAL)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1507', 'PENIS, TUMOR, AMPUTATION (TOTAL) WITH BLOCK DISSECTION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1508', 'PENIS, TUMOUR, AMPUTATION (PARTIAL)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1509', 'PENIS, VARIOUS LESIONS, EXCISION', 3120000, 'TINDAKAN OPERATIF'); +INSERT INTO `tarif_rs` (`ID_Tarif_RS`, `Tindakan_RS`, `Tarif_RS`, `Kategori_RS`) VALUES +('R.TO.1510', 'PENIS, VARIOUS LESIONS, INSERTION OF PENILE PROSTHESIS', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1511', 'PERIPHERAL NERVE, BLOCK, ANAESTHETIC (MORE THAN\n2 NERVES)', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.1512', 'PERIPHERAL NERVE, BLOCK, ANAESTHETIC (UP TO 2\nNERVES)', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.1513', 'PERIPHERAL NERVE, BLOCK, NEUROLYTIC (MORE THAN 2\nNERVES)', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1514', 'PERIPHERAL NERVE, BLOCK, NEUROLYTIC (UP TO 2\nNERVES)', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1515', 'PHARYNX, ADHESIONS, DIVISION', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1516', 'PHARYNX, CYSTS/VALLECULAR, REMOVAL', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1517', 'PHARYNX, POUCH, REMOVAL', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1518', 'PHARYNX, TONGUE BASE, FOR OSA, EXCISION OF LINGUAL\nTONSILS', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1519', 'PHARYNX, TUMOR, PARTIAL PHARYNGECTOMY AND RADICAL\nNECK DISSECTION WITH FLAP', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.1520', 'PHARYNX, VARIOUS LESIONS, FLAP/PHARYNGOPLASTY', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1521', 'PHARYNX, VARIOUS LESIONS, PARTIAL\nPHARYNGECTOMY WITH PRIMARY CLOSURE', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1522', 'PHARYNX, VARIOUS LESIONS, PHARYNGOTOMY (LATERAL) WITH\nEXCISION OF TONGUE AND RECONSTRUCTION', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.1523', 'PHARYNX/LARYNX, PARAPHARYNGEAL SPACE TUMOR EXCISION', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.1524', 'PHOTODYNAMIC THERAPY', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1525', 'PHOTOREFRACTIVE KERATECTOMY/PHOTOTHERAPEUTIC KERATECTOMY\n(FOR DISEASED EYE)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1526', 'PITUITARY, VARIOUS LESIONS, TRANSPHENOIDAL/TRANSEPTAL EXCISION WITH/WITHOUT GRAFTING (OPEN/MIS)', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1527', 'PROSTATE GLAND, ABSCESS, RETROPUBIC/ENDOSCOPIC\nDRAINAGE', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1528', 'PROSTATE GLAND, HYPERTROPHY, INSERTION OF PROSTATIC\nSTENT', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1529', 'PROSTATE GLAND, LASER VAPORISATION OF PROSTATE', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1530', 'PROSTATE GLAND, PROSTATE IMRT (INTENSITY MODULATED\nRADIATION THERAPY) GOLD SEEDS INSERTION', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1531', 'PROSTATE GLAND, PROSTATE, BENIGN HYPERPLASIA,\nMINIMALLY INVASIVE ABLATION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1532', 'PROSTATE GLAND, SIMPLE PROSTATECTOMY (MIS/OPEN)', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1533', 'PROSTATE GLAND, VARIOUS LESIONS, RADICAL\nPROSTATECTOMY (MIS/OPEN)', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.1534', 'PROSTATE GLAND, VARIOUS LESIONS, SATURATION PROSTATE\nBIOPSY', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1535', 'PROSTATE GLAND, VARIOUS LESIONS, TRANS-RECTAL\nULTRASOUND (TRUS)', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.1536', 'PROSTATE GLAND, VARIOUS LESIONS, TRANS-RECTAL\nULTRASOUND (TRUS) GUIDED BIOPSY', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1537', 'PROSTATE GLAND, VARIOUS LESIONS, TRANSURETHRAL\nRESECTION OF PROSTATE (TURP) (LESS THAN 30 GM)', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1538', 'PROSTATE GLAND, VARIOUS LESIONS, TRANSURETHRAL\nRESECTION OF PROSTATE (TURP) (MORE THAN 30 GM)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1539', 'RADICAL CHOLEDOCHECTOMY WITH LIVER RESECTION (LESS\nTHAN 4 SEGMENTS)', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.1540', 'RADICAL CHOLEDOCHECTOMY WITH LIVER RESECTIONS (4 OR\nMORE SEGMENTS) OR WITH MULTIPLE HEPATICOENTERIC ANASTOMOSIS', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.1541', 'RADIOTHERAPY, ENDOLUMINAL BRACHYTHERAPY: OESOPHAGUS, NASOPHARYNGEAL CARCINOMA (NPC),\nHEPATOBILIARY, CARDIAC, LUNG, OTHERS', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1542', 'RADIOTHERAPY, INTERSTITIAL BRACHYTHERAPY\n(WITH/WITHOUT OPEN SURGERY)', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1543', 'RADIOTHERAPY, INTERSTITIAL BRACHYTHERAPY (WITHOUT\nOPEN SURGERY): PROSTATE', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1544', 'RADIOTHERAPY, INTRACAVITARY BRACHYTHERAPY (MULTI-\nCHANNEL): CERVIX, OTHERS', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1545', 'RADIOTHERAPY, INTRACAVITARY BRACHYTHERAPY (SINGLE\nCHANNEL): ENDOMETRIUM, OTHERS', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1546', 'RADIOTHERAPY, INTRA-OPERATIVE RADIOTHERAPY (ELECTRONS\nOR KILOVOLTAGE): BREAST, SARCOMA, UPPER GI, LOWER GI, OTHER SITES', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1547', 'RADIUS (HEAD), VARIOUS LESIONS, EXCISION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1548', 'RADIUS AND ULNA, FRACTURE/DISLOCATION, NON\nUNION/DELAYED UNION BONE GRAFTING AND RE- FIXATION', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1549', 'RADIUS AND ULNA, FRACTURE/DISLOCATION, NON\nUNION/DELAYED UNION BONE GRAFTING ONLY', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1550', 'RADIUS AND ULNA, FRACTURE/DISLOCATION, OPEN REDUCTION AND INTERNAL FIXATION WITH OR WITHOUT BONE GRAFTING', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1551', 'RECTUM, HIRSCHSPRUNG\'S DISEASE, ANAL SPHINCTEROTOMY', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1552', 'RECTUM, HIRSCHSPRUNG\'S DISEASE, RECTAL MYECTOMY', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1553', 'RECTUM, HIRSCHSPRUNG\'S DISEASE, RECTO- SIGMOIDECTOMY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1554', 'RECTUM, PERINEAL RECTOSIGMOIDECTOMY FOR RECTAL\nPROLAPSE', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1555', 'RECTUM, RESECTION - RECTOPEXY FOR RECTAL PROLAPSE\n(OPEN/MIS)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1556', 'RECTUM, STARR - STAPLED HEMORROIDECTOMY', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1557', 'RECTUM, STRICTURE, LASER TREATMENT', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.1558', 'RECTUM, TUMOR, ANTERIOR RESECTION/ABDOMINO- PERINEAL RESECTION WITH SALPINGO-OOPHORECTOMY AND\nTOTAL HYSTERECTOMY', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.1559', 'RECTUM, TUMOR, LASER VAPORISATION/ENDOSCOPIC\nFULGURATION', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1560', 'RECTUM, ULTRA-LOW ANTERIOR RESECTION (TOTAL\nMESORECTAL EXCISION) WITH/WITHOUT PLND', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.1561', 'RECTUM, VARIOUS LESIONS, ABDOMINO-PERINEAL PULL\nTHROUGH RESECTION WITH COLO-ANAL ANASTOMOSIS', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1562', 'RECTUM, VARIOUS LESIONS, HARTMANN\'S PROCEDURE', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1563', 'RECTUM, VARIOUS LESIONS, TRANSANAL REMOVAL WITH\nBIOPSY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1564', 'RETINA, DETACHMENT (COMPLEX), OPERATION (MORE THAN\nONE PLOMB/ENCIRCLAGE)10', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1565', 'RETINA, DETACHMENT, REMOVAL OF ENCIRCLING SILICONE\nBAND', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1566', 'RETINA, DETACHMENT, RESECTION/BUCKLING\nOPERATION/REVISION OPERATION WITH SINGLE PLOMB', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1567', 'RETINA, LASER RETINOPEXY, COMPLEX (SUBRETINAL FLUID,\nVITREOUS HAEMORRHAGE, MULTIPLE TEARS)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1568', 'RETINA, PAN RETINAL PHOTOCOAGULATION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1569', 'RETINA, PNEUMATIC RETINOPEXY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1570', 'RETINA, ROP (RETINOPATHY OF PREMATURITY) LASER\nPHOTOCOAGULATION', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1571', 'RETINA, TEARS, CRYOTHERAPY OR PHOTOCOAGULATION\n(LASER) (BILATERAL)', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1572', 'RETINA, TEARS, DIATHERMY/CRYOTHERAPY (UNILATERAL)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1573', 'RETINA, TEARS, PHOTOCOAGULATION (LASER) (UNILATERAL)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1574', 'RETINA, TRANS PARS PLANA POSTERIOR CAPSULECTOMY', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1575', 'RETINA/MACULA, GRID AND FOCAL LASER\nPHOTOCOAGULATION', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1576', 'SACRAL NERVE STIMULATION', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1577', 'SACRAL ROOT BLOCK, NEUROLYTIC, RADIOFREQUENCY,\nIMAGING GUIDED, MORE THAN 2', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1578', 'SACRAL ROOT BLOCK, NEUROLYTIC, RADIOFREQUENCY,\nIMAGING GUIDED, UP TO 2', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1579', 'SACRO-ILIAC JOINT, RADIOFREQUENCY, BILATERAL', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1580', 'SACRO-ILIAC JOINT, RADIOFREQUENCY, UNILATERAL', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1581', 'SACRO-ILIAC JOINT, SACROILIAC JOINT BLOCK (INJECTION OF\nANAESTHETIC, THERAPEUTIC SUBSTANCE), BILATERAL', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1582', 'SACRO-ILIAC JOINT, SACROILIAC JOINT BLOCK (INJECTION OF ANAESTHETIC, THERAPEUTIC\nSUBSTANCE), UNILATERAL', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1583', 'SACRUM & COCCYX, PILONIDAL SINUS/CYST, EXCISION WITH\nBIOPSY', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1584', 'SACRUM & COCCYX, TUMOR, EXCISION WITH BIOPSY', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1585', 'SACRUM, FRACTURE, OPEN REDUCTION AND INTERNAL\nFIXATION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1586', 'SACRUM, GANGLION IMPAR, BLOCK, ANAESTHETIC', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1587', 'SACRUM, GANGLION IMPAR, BLOCK, RADIOFREQUENCY,\nNEUROLYTIC', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1588', 'SCAPULA, COMPLEX SCAPULAR FRACTURE (WITH/WITHOUT GLENOHUMERAL JOINT INVOLVEMENT),\nOPEN REDUCTION AND INTERNAL FIXATION (ORIF)', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.1589', 'SCAPULA, SCAPULAR FRACTURE, OPEN REDUCTION AND\nINTERNAL FIXATION (ORIF) WITH PLATING', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1590', 'SCIATIC NERVE, BLOCK', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.1591', 'SCROTUM, EXPLORATION, DETORSION OF TESTIS AND\nBILATERAL TESTES FIXATION', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1592', 'SCROTUM, HYDROCELE/VARICOCELE (BILATERAL), EXCISION', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1593', 'SCROTUM, HYDROCELE/VARICOCELE (UNILATERAL), EXCISION', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1594', 'SHOULDER FRACTURE/DISLOCATION, OPEN REDUCTION AND\nINTERNAL FIXATION (2 PART FRACTURE)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1595', 'SHOULDER FRACTURE/DISLOCATION, OPEN REDUCTION AND\nINTERNAL FIXATION (3 OR MORE PART FRACTURE)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1596', 'SHOULDER, ACROMIOCLAVICULAR JOINT\nSTABILISATION/RECONSTRUCTION', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.1597', 'SHOULDER, DEFORMITIES, CORRECTIVE SURGERY, OSTEOTOMY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1598', 'SHOULDER, SHOULDER SOFT TISSUE INJURY, MIS/OPEN BANKART OR SUPERIOR LABRUM FROM ANTERIOR TO\nPOSTERIOR (SLAP) REPAIR', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1599', 'SHOULDER, SHOULDER SOFT TISSUE INJURY, MIS/OPEN BANKART REPAIR WITH SUPERIOR LABRUM FROM ANTERIOR TO POSTERIOR (SLAP) REPAIR/ROTATOR\nCUFF REPAIR', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.1600', 'SHOULDER, SHOULDER SOFT TISSUE INJURY, MIS/OPEN\nDECOMPRESSION ALONE', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1601', 'SHOULDER, SHOULDER SOFT TISSUE INJURY, MIS/OPEN\nDECOMPRESSION WITH CUFF REPAIR', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.1602', 'SHOULDER, SHOULDER SOFT TISSUE INJURY, MIS/OPEN\nDECOMPRESSION WITH CUFF REPAIR & EXCISION OF DISTAL CLAVICLE', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1603', 'SHOULDER, SHOULDER SOFT TISSUE INJURY, MIS/OPEN\nDECOMPRESSION WITH EXCISION OF DISTAL CLAVICLE', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1604', 'SHOULDER, SHOULDER SOFT TISSUE INJURY, SHOULDER RECONSTRUCTION (EG, BRISTOW/LATARJET\nPROCEDURE)', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.1605', 'SHOULDER, THERAPEUTIC ARTHROSCOPY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1606', 'SHOULDER, VARIOUS LESIONS, HEMIARTHROPLASTY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1607', 'SHOULDER, VARIOUS LESIONS, PRIMARY TOTAL JOINT REPLACEMENT WITH AUGMENTATION, REQUIRING EXTRA\nIMPLANTS OR BONE GRAFTS, OPEN/MIS/NAVIGATED', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1608', 'SHOULDER, VARIOUS LESIONS, PRIMARY TOTAL JOINT\nREPLACEMENT, OPEN/MIS/NAVIGATED', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.1609', 'SHOULDER, VARIOUS LESIONS, REVISION TOTAL JOINT\nREPLACEMENT,OPEN/MIS/NAVIGATED', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.1610', 'SINAL-NASAL, ENDOSCOPIC HEMOSTASIS (COMPLEX, UNDER\nGENERAL ANAESTHESIA)', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1611', 'SINUSES FRONTAL, VARIOUS LESIONS, CATHETERISATION', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.1612', 'SINUSES FRONTAL, VARIOUS LESIONS, RADICAL OBLITERATION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1613', 'SINUSES FRONTAL, VARIOUS LESIONS, TREPHINE', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1614', 'SINUSES, ETHMOIDAL, VARIOUS LESIONS, EXTERNAL\nOPERATION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1615', 'SINUSES, NASAL, FOREIGN BODY/OTHER LESIONS, INTRANASAL\nOPERATION/REMOVAL OF FOREIGN BODY', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1616', 'SINUSES, NASAL, HEMATOMA/ABSCESS, ANTRAL DRAINAGE', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1617', 'SINUSES, NASAL, INFECTION, FUNCTIONAL SINUSCOPIC\nDRAINAGE OF ETHMOIDAL/ MAXILLARY SINUSES', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1618', 'SINUSES, NASAL, INFECTION, FUNCTIONAL SINUSCOPIC\nETHMOIDECTOMY (BILATERAL)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1619', 'SINUSES, NASAL, INFECTION, FUNCTIONAL SINUSCOPIC\nETHMOIDECTOMY (UNILATERAL)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1620', 'SINUSES, NASAL, ORO-ANTRAL FISTULA, CLOSURE', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1621', 'SINUSES, NASAL, VARIOUS LESIONS OF ANTRUM, PROOF\nPUNCTURE AND/OR LAVAGE', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1622', 'SINUSES, NASAL, VARIOUS LESIONS, ANTROSTOMY (RADICAL)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1623', 'SINUSES, NASAL, VARIOUS LESIONS, FRONTO-\nETHMOIDECTOMY (RADICAL) WITH OSTEOPLASTIC FLAP', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1624', 'SINUSES, NASAL, VARIOUS LESIONS, FRONTO-NASAL\nETHMOIDECTOMY WITH/WITHOUT SPHENOIDOTOMY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1625', 'SINUSES, NASAL, VARIOUS LESIONS, INTRANASAL OPERATION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1626', 'SINUSES, SPHENOIDAL, VARIOUS LESIONS, INTRANASAL\nOPERATION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1627', 'SKIN & SUBCUTANEOUS, PRE-SEPTAL/PERI-ORBITAL\nDERMOID/LESION, EXCISION', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1628', 'SKIN & SUBCUTANEOUS, SCAR REVISION, FACE & NECK (< 3CM)', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.1629', 'SKIN (UPPER LIMB), OPEN WOUND, MAJOR DESLOUGHING', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1630', 'SKIN AND MUCOUS MEMBRANE, VARIOUS LESIONS, EXCISION\nBIOPSY', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.1631', 'SKIN AND SUBCUTANEOUS TISSUE (EAR/NOSE/EYELID/FACE),\nCOMPLEX LACERATIONS, REPAIR', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1632', 'SKIN AND SUBCUTANEOUS TISSUE (FACE AND NECK), SCAR OF\nMORE THAN 3CM, REVISION', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1633', 'SKIN AND SUBCUTANEOUS TISSUE, ARTEIOVENOUS MALFORMATION/HEMANGIOMA/LYMPHANGIOMA (LARGE AND DEEP-SEATED), EXCISION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1634', 'SKIN AND SUBCUTANEOUS TISSUE, ARTERIOVENOUS\nMALFORMATION/HEMANGIOMA/LYMPHANGIOMA (EXTENSIVE AND COMPLEX), EXCISION', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.1635', 'SKIN AND SUBCUTANEOUS TISSUE, ARTERIOVENOUS\nMALFORMATION/HEMANGIOMA/LYMPHANGIOMA <3CM EXCLUDING FACE, HANDS, GENITALIA, EXCISION', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1636', 'SKIN AND SUBCUTANEOUS TISSUE, ARTERIOVENOUS\nMALFORMATION/HEMANGIOMA/LYMPHANGIOMA >3CM EXCLUDING FACE, HANDS, GENITALIA, EXCISION', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1637', 'SKIN AND SUBCUTANEOUS TISSUE, ARTERIOVENOUS\nMALFORMATION/HEMANGIOMA/LYMPHANGIOMA ON FACE, HANDS, GENITALIA, EXCISION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1638', 'SKIN AND SUBCUTANEOUS TISSUE, BURNS, ESCHAROTOMY\n(EXTENSIVE)', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1639', 'SKIN AND SUBCUTANEOUS TISSUE, BURNS, ESCHAROTOMY\n(LIMITED)', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.1640', 'SKIN AND SUBCUTANEOUS TISSUE, BURNS, EXCISION AND\nMAJOR FLAP REPAIR', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1641', 'SKIN AND SUBCUTANEOUS TISSUE, BURNS, EXCISION AND\nMAJOR FULL THICKNESS GRAFT', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1642', 'SKIN AND SUBCUTANEOUS TISSUE, BURNS, EXCISION AND\nSMALL FULL THICKNESS GRAFT', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1643', 'SKIN AND SUBCUTANEOUS TISSUE, DEEP>3CM/EXTENSIVE CONTAMINATED WOUND,\nDEBRIDEMENT', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1644', 'SKIN AND SUBCUTANEOUS TISSUE, DEFECT (DEEP), DERMOFAT/FASCIA GRAFT (INCLUDING\nTRANSPLANT/MUSCLE FLAP)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1645', 'SKIN AND SUBCUTANEOUS TISSUE, DEFECT (DEEP), DIRECT FLAP (CROSS ARM/RADIAL FORE ARM/ABDOMINAL/SIMILAR)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1646', 'SKIN AND SUBCUTANEOUS TISSUE, DEFECT (DEEP), DIRECT FLAP\nREPAIR (CROSS LEG)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1647', 'SKIN AND SUBCUTANEOUS TISSUE, DEFECT (DEEP), FREE FLAPS', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.1648', 'SKIN AND SUBCUTANEOUS TISSUE, DEFECT (DEEP), FREE GRAFT (SPLIT SKIN GRAFT - EXTENSIVE/INLAY GRAFT USING A MOULD)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1649', 'SKIN AND SUBCUTANEOUS TISSUE, DEFECT (DEEP), STAGED\nDISTANT FLAP (DIVISION)', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1650', 'SKIN AND SUBCUTANEOUS TISSUE, DEFECT (MULTIPLE DIGITS),\nFREE FULL THICKNESS GRAFT', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1651', 'SKIN AND SUBCUTANEOUS TISSUE, DEFECT (MULTIPLE DIGITS),\nSTAGED LOCAL FLAP (DIVISION)', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1652', 'SKIN AND SUBCUTANEOUS TISSUE, DEFECT (SINGLE DIGIT), FREE\nFULL THICKNESS GRAFT', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1653', 'SKIN AND SUBCUTANEOUS TISSUE, DEFECT, DIRECT FLAP\n(CROSS FINGER/SIMILAR FLAPS)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1654', 'SKIN AND SUBCUTANEOUS TISSUE, DEFECT, FREE GRAFT (SPLIT\nSKIN GRAFT/PINCH GRAFTS UNDER 1/2%)', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1655', 'SKIN AND SUBCUTANEOUS TISSUE, DEFECT, FREE GRAFTS (SPLIT\nSKIN GRAFT 1/2 TO LESS THAN 2%)', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1656', 'SKIN AND SUBCUTANEOUS TISSUE, DEFECT, FREE GRAFTS (SPLIT\nSKIN GRAFT 2 TO LESS THAN 5%)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1657', 'SKIN AND SUBCUTANEOUS TISSUE, DEFECT, FREE GRAFTS (SPLIT\nSKIN GRAFT 5 TO 10%)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1658', 'SKIN AND SUBCUTANEOUS TISSUE, DEFECT, FREE GRAFTS (SPLIT\nSKIN GRAFT MORE THAN 10%)', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.1659', 'SKIN AND SUBCUTANEOUS TISSUE, DEFECT, LOCAL FLAP TO MULTIPLE DIGITS (CROSS\nFINGER/THENAR/FLAG/ROTATION FLAP)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1660', 'SKIN AND SUBCUTANEOUS TISSUE, DEFECT, SINGLE STAGE\nLOCAL FLAP (COMPLICATED/LARGE)', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.1661', 'SKIN AND SUBCUTANEOUS TISSUE, DEFECT, SINGLE STAGE\nLOCAL FLAP (SIMPLE/SMALL)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1662', 'SKIN AND SUBCUTANEOUS TISSUE, DEFECT, STAGED LOCAL\nFLAP(DIVISION)', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1663', 'SKIN AND SUBCUTANEOUS TISSUE, FOREIGN BODY\n(SUBCUTANEOUS), REMOVAL', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.1664', 'SKIN AND SUBCUTANEOUS TISSUE, HEMATOMA\n/CARBUNCLE CELLULITIS/SIMILAR LESION>3CM, SAUCERISATION/INCISION WITH DRAINAGE', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1665', 'SKIN AND SUBCUTANEOUS TISSUE, HEMATOMA,\nABSCESS/CELLULITIS/SIMILAR LESION<3CM, SAUCERISATION/INCISION & DRAINAGE', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.1666', 'SKIN AND SUBCUTANEOUS TISSUE, LACERATION (SUPERFICIAL)\nOF LESS THAN 7CM, REPAIR', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1667', 'SKIN AND SUBCUTANEOUS TISSUE, LACERATION (SUPERFICIAL)\nOF MORE THAN 7CM, REPAIR', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1668', 'SKIN AND SUBCUTANEOUS TISSUE, LACERATIONS (DEEP\n>3CM/MULTIPLE) LACERATIONS, REPAIR/TOILET & SUTURE, WITH/WITHOUT DEBRIDEMENT', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1669', 'SKIN AND SUBCUTANEOUS TISSUE, NEUROFIBROMATOSIS OF\nFACE AND NECK, EXCISION (LARGE)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1670', 'SKIN AND SUBCUTANEOUS TISSUE, NEUROFIBROMATOSIS OF\nFACE AND NECK, EXCISION (MODERATE)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1671', 'SKIN AND SUBCUTANEOUS TISSUE, NEUROFIBROMATOSIS OF FACE AND NECK, EXCISION\n(LARGE >3CM AND COMPLICATED/MULTIPLE)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1672', 'SKIN AND SUBCUTANEOUS TISSUE, NEUROFIBROMATOSIS OF FACE AND NECK, EXCISION\n(SMALL<3CM)', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1673', 'SKIN AND SUBCUTANEOUS TISSUE, SINUS (DEEP>3CM),\nEXCISION WITH/WITHOUT BIOPSY', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1674', 'SKIN AND SUBCUTANEOUS TISSUE, SINUS (SHALLOW<3CM),\nEXCISION WITH/WITHOUT BIOPSY', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1675', 'SKIN AND SUBCUTANEOUS TISSUE, TUMOR/CYST/ULCER/ SCAR, EXCISION/PUNCH/SHAVE BIOPSY, LESION SIZE UP\nTO AND INCLUDING 15MM IN DIAMETER', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.1676', 'SKIN AND SUBCUTANEOUS TISSUE, TUMOR/CYST/ULCER/SCAR, EXCISION BIOPSY, LESION SIZE MORE THAN 15MM IN DIAMETER', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1677', 'SKIN AND SUBCUTANEOUS TISSUE, TUMOR/CYST/ULCER/SCAR, EXCISION BIOPSY, REMOVAL\nOF 2 OR MORE OR RECURRENT OR COMPLICATED\n(ADHERENT), EXCISION', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1678', 'SKIN AND SUBCUTANEOUS TISSUE, TUMOUR (MALIGNANT), WIDE EXCISION AND RECONSTRUCTION\nAND LOCAL FLAP/SKIN GRAFT', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1679', 'SKIN AND SUBCUTANEOUS TISSUE, TUMOUR (MALIGNANT), WIDE EXCISION WITH IMMEDIATE BLOCK DISSECTION', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1680', 'SKIN AND SUBCUTANEOUS TISSUE, WOUND (LARGE>3CM),\nSECONDARY SUTURE', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1681', 'SKIN AND SUBCUTANEOUS TISSUE, WOUND, DEBRIDEMENT\n<3CM', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.1682', 'SKIN CANCER, MOHS MICROGRAPHIC SURGERY WITH\nRECONSTRUCTION/GRAFT/FLAP ( 5 TISSUE BLOCKS)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1684', 'SKIN CANCER, MOHS MICROGRAPHIC SURGERY WITHOUT\nRECONSTRUCTION', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1685', 'SKIN, ANGIOMA, CAUTERISATION/INJECTION', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.1686', 'SKIN, BURNS (2% TO 5%), EXCISION', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1687', 'SKIN, BURNS (LESS THAN 2%), EXCISION', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1688', 'SKIN, BURNS (MORE THAN 10%), DRESSING', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1689', 'SKIN, BURNS (MORE THAN 10%), EXCISION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1690', 'SKIN, BURNS (MORE THAN 5% TO 10%) EXCISION', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1691', 'SKIN, DEFECT, DISTANT SKIN FLAPS', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1692', 'SKIN, DEFECT, NEUROVASCULAR ISLAND FLAP', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1693', 'SKIN, KERATOSES/WARTS/TAGS/SIMILAR LESIONS, EXCISION (6 -\n10 LESIONS)', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1694', 'SKIN, KERATOSES/WARTS/TAGS/SIMILAR LESIONS, EXCISION\n(MORE THAN10 LESIONS)', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1695', 'SKIN, KERATOSES/WARTS/TAGS/SIMILAR LESIONS, EXCISION\n(NOT MORE THAN 5 LESIONS)', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.1696', 'SKIN, NEUROMAS/HEMANGIOMAS, EXCISION/VAPORISATION BY LASER AND OTHER\nABLATIVE MODALITIES, THERAPEUTIC', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.1697', 'SKIN, PLANTAR WART, EXCISION OR VAPORISATION BY LASER', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.1698', 'SKIN, PLANTAR WARTS (MULTIPLE), EXCISION', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1699', 'SKIN, PRE-MALIGNANT LESIONS, EXCISION/VAPORISATION BY LASER AND OTHER\nABLATIVE MODALITIES, THERAPEUTIC, UP TO 4 SESSIONS IN 12 MONTHS*\n*TO PROVIDE HISTOPATHOLOGY REPORT IF AUDITED', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1700', 'SKIN, SCAR (EXTENSIVE), REVISION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1701', 'SKIN, SCAR, REVISION WITH Z-PLASTY', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1702', 'SKIN, SCAR/VARIOUS LESION (SINGLE), REMOVAL OF TISSUE\nEXPANDER/PROSTHESIS AND REVISION OF SCAR', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1703', 'SKIN, SCARS/LESIONS (MULTIPLE), REMOVAL OF TISSUE\nEXPANDER/PROSTHESIS AND REVISION/EXCISION OF SCARS', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1704', 'SKIN, SUPERFICIAL NASAL DERMOID, EXCISION', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1705', 'SKIN, SURGICAL TREATMENT FOR VITILIGO (INVOLVING NON-\nCULTURED CELLULAR GRAFTING) (<20 SQ CM)', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1706', 'SKIN, SURGICAL TREATMENT FOR VITILIGO (INVOLVING NON-\nCULTURED CELLULAR GRAFTING) (>40 SQ CM)', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1707', 'SKIN, SURGICAL TREATMENT FOR VITILIGO (INVOLVING NON-\nCULTURED CELLULAR GRAFTING) (20-40 SQ CM)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1708', 'SKIN, TATTOO (1% TO 2%), LASER EXCISION', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1709', 'SKIN, TATTOO (LESS THAN 1%), LASER EXCISION', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.1710', 'SKIN, TATTOO (MULTIPLE/MORE THAN 2%), LASER EXCISION', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1711', 'SKIN, TATTOO, REPEAT LASER EXCISION', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.1712', 'SKIN, VARIOUS LESIONS OF FACE (2 TO 3), EXCISION\nBIOPSY', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1713', 'SKIN, VARIOUS LESIONS OF FACE (4 AND ABOVE), EXCISION\nBIOPSY', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1714', 'SKIN, VARIOUS LESIONS OF FACE (SINGLE), EXCISION/PUNCH/\nSHAVE BIOPSY', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.1715', 'SKIN, VARIOUS LESIONS, ABRASIVE THERAPY (EXTENSIVE)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1716', 'SKIN, VARIOUS LESIONS, ABRASIVE THERAPY (LIMITED)', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1717', 'SKIN, VARIOUS LESIONS, INSERTION OF TISSUE EXPANDER\n(MULTIPLE)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1718', 'SKIN, VARIOUS LESIONS, INSERTION OF TISSUE EXPANDER\n(SINGLE)', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1719', 'SKIN, VARIOUS LESIONS, TRIAL DERMABRASION', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.1720', 'SKIN, WRINKLES, PARTIAL RHYTIDECTOMY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1721', 'SKIN, WRINKLES, TOTAL RHYTIDECTOMY', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1722', 'SKULL, BASE, ENDOSCOPIC OR OPEN RESECTION OF SKULL BASE SOFT TISSUE TUMOURS WITH NO BONE\nINVOLVEMENT', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1723', 'SKULL, BASE, ENDOSCOPIC OR OPEN RESECTION OF SKULL BASE SOFT TISSUE TUMOURS WITH RESECTION OF BONE AND DURA (INTRADURAL, INCLUDING CLIVUS,\nPARASELLAR AREA OR CAVERNOUS SINUS) WITH SKULL\nBASE RECONSTRUCTION', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.1724', 'SKULL, BASE, ENDOSCOPIC OR OPEN RESECTION OF SKULL BASE SOFT TISSUE TUMOURS, (INCLUDING NASOPHARYNGECTOMY) WITH RESECTION OF BONE AND PRESERVATION OF DURA\n(EXTRADURAL)', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.1725', 'SKULL, BURR HOLE, INSERTION OF INTRACRANIAL PRESSURE\n(ICP) MONITOR', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1726', 'SKULL, CHIARI MALFORMATION/SYRINGOMYELIA, POSTERIOR\nFOSSA DECOMPRESSION WITH DURAPLASTY', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.1727', 'SKULL, COMPOUND FRACTURE WITH DURAL PENETRATION AND\nBRAIN DAMAGE, OPERATION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1728', 'SKULL, COMPOUND FRACTURE WITHOUT DURAL PENETRATION,\nOPERATION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1729', 'SKULL, CRANIOSTENOSIS (MULTIPLE SUTURE), OPERATION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1730', 'SKULL, CRANIOSTENOSIS (SINGLE SUTURE), OPERATION', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.1731', 'SKULL, CRANIOSTENOSIS, OPERATION, CRANIOFACIAL\nRECONSTRUCTION', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.1732', 'SKULL, DEFECT, CRANIOPLASTY (LARGE)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1733', 'SKULL, DEFECT, CRANIOPLASTY (SMALL)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1734', 'SKULL, DEPRESSED/COMMINUTED FRACTURE, ELEVATION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1735', 'SKULL, FRACTURE WITH RHINORRHOEA/OTORRHOEA,\nCRANIOPLASTY AND REPAIR', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1736', 'SKULL, INTRACRANIAL HEMORRHAGE, BURR-HOLE\nCRANIOTOMY, (UNILATERAL)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1737', 'SKULL, INTRACRANIAL HEMORRHAGE, BURR-HOLE\nCRANIOTOMY, BILATERAL', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1738', 'SKULL, INTRACRANIAL HEMORRHAGE, OSTEOPLASTIC\nCRANIOTOMY/EXTENSIVE CRANIECTOMY, BILATERAL', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.1739', 'SKULL, INTRACRANIAL HEMORRHAGE, OSTEOPLASTIC\nCRANIOTOMY/EXTENSIVE CRANIECTOMY, UNILATERAL', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1740', 'SKULL, OSTEOMYELITIS, CRANIECTOMY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1741', 'SKULL/FACE, MALIGNANT TUMOUR/TRAUMA, CRANIOFACIAL\nRESECTION', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.1742', 'SOFT TISSUE (LOWER LIMB), CONTRACTURE, MAJOR RELEASE', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1743', 'SOFT TISSUE (LOWER LIMB), CONTRACTURE, MINOR RELEASE', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1744', 'SOFT TISSUE (LOWER LIMB), OPEN WOUND/INFECTION, MAJOR\nDESLOUGHING', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1745', 'SOFT TISSUE (LOWER LIMB), SMALL TUMORS (BENIGN),\nEXCISION BIOPSY UNDER GENERAL ANESTHESIA', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1746', 'SOFT TISSUE (LOWER LIMB), TUMOR/TUMOR-LIKE LESIONS,\nMARGINAL EXCISION', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1747', 'SOFT TISSUE (LOWER LIMB), TUMORS (BENIGN), WIDE EXCISION\nBIOPSY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1748', 'SOFT TISSUE (LOWER LIMB), TUMORS (MALIGNANT), RADICAL\nEXCISION BIOPSY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1749', 'SOFT TISSUE (LOWER LIMB), VARIOUS LESIONS, MAJOR RELEASE', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1750', 'SOFT TISSUE (LOWER LIMB), VARIOUS LESIONS, MINOR RELEASE', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1751', 'SOFT TISSUE (PALMAR SPACE), ABSCESS, DRAINAGE', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1752', 'SOFT TISSUE (UPPER LIMB), TUMORS (BENIGN), MAJOR\nEXCISION BIOPSY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1753', 'SOFT TISSUE (UPPER LIMB), TUMORS (MALIGNANT), RADICAL\nEXCISION BIOPSY', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1754', 'SOFT TISSUE (UPPER LIMB), TUMORS (MALIGNANT), WIDE\nEXCISION BIOPSY', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1755', 'SOFT TISSUE, TUMOR (MALIGNANT), MAJOR RESECTION AND\nRECONSTRUCTION (MICROSURGICAL)', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.1756', 'SOFT TISSUE, TUMOR (MALIGNANT), RADICAL EXCISION BIOPSY\n>7CM OTHER THAN UPPER/LOWER LIMBS', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1757', 'SOFT TISSUE, TUMOR (MALIGNANT), WIDE EXCISION BIOPSY\n<7CM OTHER THAN UPPER/LOWER LIMBS', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1758', 'SPERMATIC CORD, SPERMATOCELE/EPIDIDYMAL CYST, EXCISION', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1759', 'SPERMATIC CORD, VARIOUS LESIONS, EPIDIDYMECTOMY', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1760', 'SPHENOPALATINE GANGLION - BLOCK, NEUROLYTIC', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1761', 'SPHENOPALATINE GANGLION, BLOCK, ANAESTHETIC', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1762', 'SPINAL CORD, ANEURYSM/ARTERIO-VENOUS MALFORMATION\nCLIPPING/ EXCISION', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.1763', 'SPINAL CORD, STIMULATION/MODULATION,\nOPEN/CLOSED/PERCUTANEOUS', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1764', 'SPINAL CORD, TUMOURS, LAMINECTOMY AND EXCISION\n(EXTRADURAL)', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1765', 'SPINAL CORD, TUMOURS, LAMINECTOMY AND EXCISION\n(INTRADURAL EXTRAMEDULLARY)', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.1766', 'SPINAL CORD, TUMOURS, LAMINECTOMY AND EXCISION\n(INTRADURAL INTRAMEDULLARY)', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.1767', 'SPINAL- IMPLANT OF ELECTRICAL PUMP DEVICE', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1768', 'SPINAL/EPIDURAL REMOVAL, REVISION OF IMPLANTED\nRESERVOIR DEVICE (E.G. PAR)', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1769', 'SPINAL/EPIDURAL, EPIDUROSCOPY', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1770', 'SPINE (EXCLUDING CERVICAL SPINE), VARIOUS LESIONS, ANTERIOR CORPECTOMY AND FUSION WITH/WITHOUT\nINSTRUMENTATION (SINGLE VERTEBRAE)', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.1771', 'SPINE (EXCLUDING CERVICAL SPINE), VARIOUS LESIONS, ANTERIOR CORPECTOMY AND FUSION WITH/WITHOUT\nINSTRUMENTATION (TWO OR MORE VERTEBRA)', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.1772', 'SPINE (EXCLUDING CERVICAL SPINE), VARIOUS LESIONS, INTERBODY FUSION (MULTIPLE SEGMENTS) WITH\nANTERIOR/POSTERIOR INSTRUMENTATION', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.1773', 'SPINE (EXCLUDING CERVICAL SPINE), VARIOUS LESIONS, INTERBODY FUSION (MULTIPLE SEGMENTS) WITHOUT\nANTERIOR/POSTERIOR INSTRUMENTATION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1774', 'SPINE (EXCLUDING CERVICAL SPINE), VARIOUS LESIONS, INTERBODY FUSION (SINGLE SEGMENT) WITH\nANTERIOR/POSTERIOR INSTRUMENTATION', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.1775', 'SPINE (EXCLUDING CERVICAL SPINE), VARIOUS LESIONS, INTERBODY FUSION (SINGLE SEGMENT) WITHOUT\nANTERIOR/POSTERIOR INSTRUMENTATION', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.1776', 'SPINE (EXCLUDING CERVICAL SPINE), VARIOUS LESIONS, POSTERIOR DECOMPRESSION AND/OR DISCECTOMY WITH INSERTION OF INTERSPINOUS DEVICE (1\nSEGMENT) WITHOUT INSTRUMENTED FUSION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1777', 'SPINE (EXCLUDING CERVICAL SPINE), VARIOUS LESIONS, POSTERIOR DECOMPRESSION AND/OR DISCECTOMY WITH INSERTION OF INTERSPINOUS DEVICE (2 OR MORE SEGMENTS)\nWITHOUT INSTRUMENTED FUSION', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.1778', 'SPINE (EXCLUDING CERVICAL SPINE), VARIOUS LESIONS, POSTERIOR DECOMPRESSION AND/OR DISCECTOMY WITHOUT INSERTION OF INTERSPINOUS DEVICE (1\nSEGMENT) WITHOUT INSTRUMENTED FUSION', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.1779', 'SPINE (EXCLUDING CERVICAL SPINE), VARIOUS LESIONS, POSTERIOR DECOMPRESSION AND/OR DISCECTOMY WITHOUT INSERTION OF INTERSPINOUS DEVICE (2 OR MORE SEGMENTS)\nWITHOUT INSTRUMENTED FUSION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1780', 'SPINE, CERVICAL, EPIDURAL ADHESIOLYSIS, MULTIPLE CATHETER', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.1781', 'SPINE, CERVICAL, EPIDURAL ADHESIOLYSIS, SINGLE CATHETER', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1782', 'SPINE, CERVICAL/THORACIC, INJECTION, EPIDURAL, WITHOUT\nOTHER PROCEDURES', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.1783', 'SPINE, CERVICAL/THORACIC, INJECTION, INTRATHECAL\nWITHOUT OTHER PROCEDURES', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1784', 'SPINE, DEFORMITIES, THREE-COLUMN OSTEOTOMY (SUCH AS PSO, VCR, TOTAL SPONDYLECTOMY OR THEIR EQUIVALENT)', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.1785', 'SPINE, DISCOGRAM (1 TO 2 LEVELS)', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1786', 'SPINE, DISCOGRAM (MORE THAN 2 LEVELS)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1787', 'SPINE, FACET JOINT BLOCK (INJECTION OF ANAESTHETIC OR\nTHERAPEUTIC SUBSTANCE), MORE THAN 3 JOINTS', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1788', 'SPINE, FACET JOINT BLOCK (INJECTION OF ANAESTHETIC OR THERAPEUTIC SUBSTANCE), UP TO 3\nJOINTS', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1789', 'SPINE, FACET JOINT, RADIOFREQUENCY, MORE THAN 3\nJOINTS', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1790', 'SPINE, FACET JOINT, RADIOFREQUENCY, UP TO 3 JOINTS', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1791', 'SPINE, FRACTURE-DISLOCATION, OPEN REDUCTION AND\nSTABILISATION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1792', 'SPINE, IMPLANTATION OF PORT E.G. PORT-A-CATH', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1793', 'SPINE, INFECTION, ANTERIOR DRAINAGE AND DEBRIDEMENT\nWITHOUT FUSION OR OTHER PROCEDURES', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1794', 'SPINE, INFECTION, ANTERIOR DRAINAGE, DEBRIDEMENT AND REMOVAL OF IMPLANTS WITHOUT FUSION OR\nOTHER PROCEDURES', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.1795', 'SPINE, INFECTION, POSTERIOR DRAINAGE AND DEBRIDEMENT WITHOUT FUSION OR OTHER\nPROCEDURES', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1796', 'SPINE, INFECTION, POSTERIOR DRAINAGE, DEBRIDEMENT AND REMOVAL OF IMPLANTS, WITHOUT FUSION OR OTHER\nPROCEDURES', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1797', 'SPINE, LUMBAR/SACRAL/CAUDAL, INJECTION, EPIDURAL,\nWITHOUT OTHER PROCEDURES', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.1798', 'SPINE, LUMBAR/SACRAL/CAUDAL, INJECTION, INTRATHECAL\nWITHOUT OTHER PROCEDURES', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1799', 'SPINE, PERCUTANEOUS DISC ABLATION, 2 OR MORE LEVELS (EG. IDET - INTRADISCAL ELECTROTHERMAL ANNULOPLASTY)', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.1800', 'SPINE, PERCUTANEOUS DISC ABLATION, SINGLE LEVEL (EG IDET -\nINTRADISCAL ELECTROTHERMAL ANNULOPLASTY)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1801', 'SPINE, PERCUTANEOUS IMPLANT OF SPINAL CORD\nSTIMULATOR, (TRIAL), DOUBLE LEADS', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1802', 'SPINE, PERCUTANEOUS IMPLANT OF SPINAL CORD\nSTIMULATOR, (TRIAL), SINGLE LEAD', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1803', 'SPINE, PROLAPSED DISC, NUCLEOPLASTY', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1804', 'SPINE, REMOVAL OF SPINAL CORD STIMULATOR ELECTRICAL\nGENERATOR', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1805', 'SPINE, REMOVAL OF SPINE IMPLANTS WITHOUT OTHER\nPROCEDURES (ANTERIOR APPROACH)', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1806', 'SPINE, REMOVAL OF SPINE IMPLANTS WITHOUT OTHER\nPROCEDURES (POSTERIOR APPROACH)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1807', 'SPINE, REPLACEMENT OF COMPUTERIZED RESERVOIR DEVICE\n(E.G. SYNCHROMED)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1808', 'SPINE, REPLACEMENT OF SPINAL CORD STIMULATOR,\nELECTRICAL GENERATOR', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1809', 'SPINE, SYRINGOMYELIA, LAMINECTOMY AND DRAINAGE', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1810', 'SPINE, THORACIC/LUMBAR, EPIDURAL ADHESIOLYSIS, MULTIPLE\nCATHETER', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1811', 'SPINE, THORACIC/LUMBAR, EPIDURAL ADHESIOLYSIS, SINGLE\nCATHETER', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1812', 'SPINE, VARIOUS LESIONS, ANTERIOR DECOMPRESSION,\nCORPECTOMY, DEBRIDEMENT, BIOPSY STABILISATION WITHOUT INSTRUMENTATION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1813', 'SPINE, VARIOUS LESIONS, POSTERIOR INSTRUMENTATION (1 SEGMENT) WITH/WITHOUT\nDECOMPRESSION AND WITHOUT INTERBODY FUSION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1814', 'SPINE, VARIOUS LESIONS, POSTERIOR INSTRUMENTATION (2 SEGMENTS) WITH/WITHOUT DECOMPRESSION AND WITHOUT\nINTERBODY FUSION', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.1815', 'SPINE, VARIOUS LESIONS, POSTERIOR INSTRUMENTATION (3 OR MORE SEGMENTS) WITH/WITHOUT DECOMPRESSION AND WITHOUT\nINTERBODY FUSION', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.1816', 'SPINE, VARIOUS LESIONS, REVISION SURGERY, DECOMPRESSION AND/OR DISCECTOMY, WITH REVISION\nOF INSTRUMENTATION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1817', 'SPINE, VARIOUS LESIONS, REVISION SURGERY, DECOMPRESSION AND/OR DISCECTOMY, WITHOUT\nINSTRUMENTATION', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.1818', 'SPINE, VARIOUS LESIONS, SPINAL RHIZOLYSIS INVOLVING\nEXPOSURE OF SPINAL NERVE ROOTS', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1819', 'SPINE, VARIOUS LESIONS, SYRINGO-\nARACHNOID/PLEURAL/PERITONEAL SHUNT', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.1820', 'SPINE, VERTEBROPLASTY OR KYPHOPLASTY (MULTIPLE LEVELS)', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.1821', 'SPINE, VERTEBROPLASTY OR KYPHOPLASTY (SINGLE LEVEL)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1822', 'SPLANCHNIC NERVES, BLOCK, ANAESTHETIC', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1823', 'SPLANCHNIC NERVES, BLOCK, NEUROLYTIC', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1824', 'SPLEEN, HYPERSPLENISM/MASSIVE ENLARGEMENT,\nSPLENECTOMY (MIS/OPEN)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1825', 'SPLEEN, TRAUMA, CONSERVATION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1826', 'SPLEEN, TRAUMA, SPLENECTOMY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1827', 'SPLEEN, VARIOUS NON-TRAUMATIC LESIONS, SPLENECTOMY\n(MIS/OPEN)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1828', 'STELLATE GANGLION, BLOCK, ANAESTHETIC', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1829', 'STELLATE GANGLION, BLOCK, NEUROLYTIC', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1830', 'STOMACH, GASTROESOPHAGEAL REFLUX, FUNDOPLICATION, MIS/OPEN, WITH/WITHOUT GASTROTOMY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1831', 'STOMACH, MORBID OBESITY, BYPASS ONLY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1832', 'STOMACH, MORBID OBESITY, REDUCTION AND BYPASS\n(MIS/OPEN)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1833', 'STOMACH, OBESITY, BILIOPANCREATIC DIVERSION\nWITH/WITHOUT DUODENAL SWITCH', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1834', 'STOMACH, OBESITY, GASTRIC BANDING (MIS)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1835', 'STOMACH, OBESITY, SLEEVE GASTRECTOMY (MIS/OPEN)', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.1836', 'STOMACH, PARTIAL/SUBTOTAL GASTRECTOMY FOR BENIGN\nGASTRIC DISEASES', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1837', 'STOMACH, PYLORIC STENOSIS, PYLOROPLASTY', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1838', 'STOMACH, PYLORIC TUMOR (INFANT),\nPYLOROPLASTY/PYLOROMYOTOMY', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1839', 'STOMACH, PYLOROMYOTOMY, MIS', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1840', 'STOMACH, TOTAL/PROXIMAL GASTRECTOMY FOR BENIGN\nGASTRIC DISEASES', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1841', 'STOMACH, TUMOR OF CARDIA, ENDOSCOPIC YAG LASER\nSURGERY/VAPORISATION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1842', 'STOMACH, TUMOR/ULCER, GASTROJEJUNOSTOMY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1843', 'STOMACH, TUMOUR, SUBTOTAL GASTRECTOMY AND RADICAL\nLYMPHADENECTOMY', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1844', 'STOMACH, TUMOUR, TOTAL GASTRECTOMY AND RADICAL\nLYMPHADENECTOMY', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1845', 'STOMACH, ULCERS, VAGOTOMY - ALL TYPES (MIS/OPEN)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1846', 'STOMACH, VARIOUS LESIONS, IMAGING GUIDED INSERTION OF\nNASO-GASTRIC TUBE/NASO-JEJUNAL TUBE', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.1847', 'STOMACH, VARIOUS LESIONS, PARTIAL/SUBTOTAL\nGASTRECTOMY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1848', 'STOMACH, VARIOUS LESIONS, PERCUTANEOUS\nGASTROSTOMY/JEJUNOSTOMY (WITH OR WITHOUT IMAGE GUIDANCE)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1849', 'STOMACH, VARIOUS LESIONS, TOTAL/PROXIMAL\nGASTRECTOMY WITH/WITHOUT SPLENECTOMY', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1850', 'STOMACH, VARIOUS LESIONS, WEDGE RESECTION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1851', 'STOMACH, VARIOUS LESIONS/POST-GASTRECTOMY\nCOMPLICATIONS, REVISION GASTRECTOMY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1852', 'STOMACH, WEDGE RESECTION/STOMACH FOR BENIGN GASTRIC\nDISEASES', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1853', 'STOMACH/DUODENUM, PERFORATED ULCER, REPAIR (MIS OR\nOPEN)', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1854', 'SUBCUTANEOUS TISSUE (ABDOMEN), OBESITY, LIPOSUCTION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1855', 'SUBCUTANEOUS TISSUE (BUTTOCKS), OBESITY, LIPOSUCTION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1856', 'SUBCUTANEOUS TISSUE (FACE), OBESITY, LIPOSUCTION', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1857', 'SUBCUTANEOUS TISSUE (THIGH), OBESITY, LIPOSUCTION', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1858', 'SUBCUTANEOUS TISSUE (UPPER LIMBS), OBESITY, LIPOSUCTION', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1859', 'SUBCUTANEOUS TISSUE, OBESITY, EXCISION/LIPECTOMY, LIMBS (UNILATERAL/BILATERAL) FOLLOWING WEIGHT LOSS SURGERY\n(SF702S/SF703S/SF713S/SF803S/SF804S)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1860', 'SUBCUTANEOUS TISSUE, OBESITY, EXCISION/LIPECTOMY, THORAX/BACK/BUTTOCKS,\nFOLLOWING WEIGHT LOSS SURGERY\n(SF702S/SF703S/SF713S/SF803S/SF804S)', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1861', 'SUBCUTANEOUS TISSUE, OBESITY, LIPECTOMY, EXCISION WITH UNDERMINING OF SKIN EDGES AND STRENGTHENING OF ABDOMINAL WALL/RADICAL ABDOMINOPLASTY WITH REPAIR OF ABDOMINAL WALL\nAND TRANSPOSITION OF UMBILICUS FOLLOWING WEIGHT\nLOSS SURGERY (SF702S/SF703S/SF713S/SF', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1862', 'SUBCUTANEOUS TISSUE, OBESITY, LIPECTOMY, TRANSVERSE WEDGE EXCISION OF ABDOMINAL APRON/LIPECTOMY WITH EXCISION OF SKIN, FOLLOWING\nWEIGHT LOSS SURGERY\n(SF702S/SF703S/SF713S/SF803S/SF804S)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1863', 'SUPERIOR HYPOGASTRIC PLEXUS, VARIOUS LESIONS, IMAGING\nGUIDED INJECTION OF ANAESTHETIC', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1864', 'SUPERIOR HYPOGASTRIC PLEXUS, VARIOUS LESIONS, IMAGING GUIDED INJECTION OF NEUROLYTIC, RADIOFREQUENCY', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1865', 'SURFACE LESIONS, ANGIOSARCOMA, WITH BIOPSY', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1866', 'SWEAT GLAND, AXILLARY HYPERHIDROSIS, WEDGE EXCISION\n(BILATERAL)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1867', 'SWEAT GLAND, AXILLARY HYPERHIDROSIS, WEDGE EXCISION\n(UNILATERAL)', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1868', 'SYMPATHETIC NERVES, BLOCK, ANAESTHETIC\n(UNILATERAL/BILATERAL)', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1869', 'SYMPATHETIC NERVES, BLOCK, CATHETER\n(UNILATERAL/BILATERAL)', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1870', 'SYMPATHETIC NERVES, BLOCK, NEUROLYTIC\n(UNILATERAL/BILATERAL)', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1871', 'TEETH (2 OR MORE) UNERUPTED/PARTIALLY\nERUPTED/IMPACTED, SURGICAL EXPOSURE', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1872', 'TEETH (2 TO 3), IMPACTED, EXCISION WITH REMOVAL OF BONE\n(WITHOUT TOOTH DIVISION)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1873', 'TEETH (2 TO 3), IMPACTED, EXCISION WITH REMOVAL OF BONE\nAND TOOTH DIVISION', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1874', 'TEETH (2 TO 3), UNERUPTED/PARTIALLY ERUPTED/IMPACTED,\nSURGICAL EXPOSURE AND BONDING FOR TRACTION AND ASSISTED ERUPTION', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1875', 'TEETH (4 OR MORE) UNERUPTED/ PARTIALLY ERUPTED/\nIMPACTED, SURGICAL EXPOSURE AND BONDING FOR TRACTION AND ASSISTED ERUPTION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1876', 'TEETH (4 OR MORE), IMPACTED, EXCISION WITH REMOVAL OF\nBONE (WITHOUT TOOTH DIVISION)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1877', 'TEETH (4 OR MORE), IMPACTED, EXCISION WITH REMOVAL OF\nBONE AND TOOTH DIVISION', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1878', 'TEMPORAL ARTERY BIOPSY', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1879', 'TENDON (PERONEAL), SUBLUXATION, RECONSTRUCTION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1880', 'TENDON (UPPER LIMB), BOWSTRINGING/ENTRAPMENT, PULLEY\nRECONSTRUCTION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1881', 'TENDON (UPPER LIMB), CONTRACTURE, TENOTOMY', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1882', 'TENDON (UPPER LIMB), VARIOUS LESIONS, TENDON TRANSFER\n(MULTIPLE)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1883', 'TENDON (UPPER LIMB), VARIOUS LESIONS, TENDON TRANSFER\n(SINGLE)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1884', 'TENDON SHEATH (UPPER LIMB), DE QUERVAIN\'S (BILATERAL),\nRELEASE', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1885', 'TENDON SHEATH (UPPER LIMB), DE QUERVAIN\'S (UNILATERAL),\nRELEASE', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1886', 'TENDON SHEATH (UPPER LIMB), GANGLION/VILLO- NODULAR\nSYNOVITIS, EXCISION', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1887', 'TENDON SHEATH (UPPER LIMB), TENOSYNOVITIS (MULTIPLE),\nDRAINAGE', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1888', 'TENDON SHEATH (UPPER LIMB), TENOSYNOVITIS (SINGLE),\nDRAINAGE', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1889', 'TENDON SHEATH AND SUBCUTANEOUS TISSUE,\nGANGLION/LARGE BURSA, (>3CM) EXCISION BIOPSY', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1890', 'TENDON SHEATH AND SUBCUTANEOUS TISSUE,\nGANGLION/SMALL BURSA, (<3CM) EXCISION BIOPSY', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.1891', 'TENDON, EXTENSOR (UPPER LIMB), DEFECT, GRAFTING\n(MULTIPLE)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1892', 'TENDON, EXTENSOR (UPPER LIMB), DEFECT, GRAFTING (SINGLE)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1893', 'TENDON-ACHILLES (LOWER LIMB), DISRUPTION, REPAIR', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1894', 'TENDON-EXTENSOR (UPPER LIMB), ADHESION, TENOLYSIS\n(MULTIPLE)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1895', 'TENDON-EXTENSOR (UPPER LIMB), ADHESION, TENOLYSIS\n(SINGLE)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1896', 'TENDON-EXTENSOR (UPPER LIMB), INJURY, REPAIR (MULTIPLE)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1897', 'TENDON-EXTENSOR (UPPER LIMB), INJURY, REPAIR (SINGLE)', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1898', 'TENDON-FLEXOR (LOWER LIMB), DISRUPTION, REPAIR (SINGLE)', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1899', 'TENDON-FLEXOR (UPPER LIMB), ADHESION, TENOLYSIS\n(MULTIPLE)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1900', 'TENDON-FLEXOR (UPPER LIMB), ADHESION, TENOLYSIS (SINGLE)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1901', 'TENDON-FLEXOR (UPPER LIMB), DEFECT, GRAFTING (MULTIPLE)', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1902', 'TENDON-FLEXOR (UPPER LIMB), DEFECT, GRAFTING (SINGLE)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1903', 'TENDON-FLEXOR (UPPER LIMB), INJURY, REPAIR (MULTIPLE)', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1904', 'TENDON-FLEXOR (UPPER LIMB), INJURY, REPAIR (SINGLE)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1905', 'TENDON-FLEXOR (UPPER LIMB), INJURY, TENDON GRAFT', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.1906', 'TENDONS-FLEXOR (LOWER LIMB), DISRUPTION, REPAIR\n(MULTIPLE)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1907', 'TESTIS, TORSION TESTIS, ORCHIDECTOMY DONE WITH FIXATION\nOF CONTRALATERAL TESTIS', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1908', 'TESTIS, TUMOR, RETROPERITONEAL LYMPH NODE DISSECTION\nFOLLOWING ORCHIDECTOMY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1909', 'TESTIS, UNDESCENDED/ECTOPIC (BILATERAL),\nORCHIDOPEXY/TRANSPLANTATION WITH HERNIA REPAIR', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1910', 'TESTIS, UNDESCENDED/ECTOPIC (UNILATERAL),\nORCHIDOPEXY/TRANSPLANTATION WITH HERNIA REPAIR', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1911', 'TESTIS, UNDESCENDED/ECTOPIC, ORCHIDOPEXY WITH\nMICROVASCULAR ANASTOMOSIS', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1912', 'TESTIS, VARIOCOELE, SPERMATIC VEIN EMBOLISATION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1913', 'TESTIS, VARIOUS LESIONS, BIOPSY OR ASPIRATION', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.1914', 'TESTIS, VARIOUS LESIONS, EXPLORATION/REPAIR', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.1915', 'TESTIS, VARIOUS LESIONS, INSERTION OF TESTICULAR\nPROSTHESIS', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1916', 'TESTIS, VARIOUS LESIONS, ORCHIDECTOMY (SIMPLE)', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1917', 'TESTIS, VARIOUS LESIONS, ORCHIDECTOMY (SIMPLE)\n(MIS)', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1918', 'TESTIS, VARIOUS LESIONS, ORCHIDECTOMY WITH COMPLETE\nEXCISION OF SPERMATIC CORD', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1919', 'TESTIS, VARIOUS LESIONS, ORCHIDOPLASTY', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.1920', 'THORAX, CATHETER BLOCKAGE, IMAGING GUIDED CATHETER\nCHANGE/CATHETER ADJUSTMENT/CHECK TUBE', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.1921', 'THORAX, COASTAL CARTILAGE, HARVEST AND CREATION OF EAR\nCARTILAGE FRAMEWORK', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1922', 'THORAX, EFFUSION/FLUID/ABSCESS COLLECTION, IMAGING\nGUIDED PERCUTANEOUS DRAINAGE CATHETER INSERTION', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.1923', 'THORAX, EFFUSION/FLUID/ABSCESS COLLECTION, IMAGING GUIDED PERCUTANEOUS\nASPIRATION/DIAGNOSTIC TAP', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.1924', 'THORAX, EMPYEMA, RESECTION OF RIB AND OPEN DRAINAGE', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1925', 'THORAX, EVACUATION OF RETAINED HAEMOTHORAX (OPEN\nAND THORASCOPIC)', 11808000, 'TINDAKAN OPERATIF'); +INSERT INTO `tarif_rs` (`ID_Tarif_RS`, `Tindakan_RS`, `Tarif_RS`, `Kategori_RS`) VALUES +('R.TO.1926', 'THORAX, MEDIASTINAL LESIONS, CERVICAL EXPLORATION\nWITH/WITHOUT BIOPSY', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.1927', 'THORAX, MEDIASTINUM, MEDIASTINOSCOPY WITH/WITHOUT\nBIOPSY', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1928', 'THORAX, MIS DECORTICATION', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.1929', 'THORAX, MIS PLEURODESIS BILATERAL', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1930', 'THORAX, MIS THYMECTOMY', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1931', 'THORAX, PECTUS EXCAVATUM/PECTUS CARINATUM, RADICAL\nCORRECTION', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1932', 'THORAX, PERICARDIAL WINDOW CREATION', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1933', 'THORAX, PLEURAL EFFUSION, ASPIRATION', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.1934', 'THORAX, PLEURAL EFFUSION, BIOPSY', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.1935', 'THORAX, RESUSCITATIVE TRAUMA THORACOTOMY\n(HAEMOSTASIS, DAMAGE CONTROL, ORGAN REPAIR)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1936', 'THORAX, RIBS, OPEN FIXATION OF RIB FRACTURES (>3\nRIBS)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1937', 'THORAX, RIBS, OPEN FIXATION OF RIB FRACTURES (1 - 3\nRIBS)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1938', 'THORAX, THORACOSCOPY FOR PLEURODESIS', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1939', 'THORAX, THORACOSCOPY, WITH/WITHOUT DIVISION OF\nPLEURAL ADHESIONS', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1940', 'THORAX, TRAUMA RELOOK THORACOTOMY (INCLUDES\nHAEMOSTASIS, REMOVAL OF PACKS)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1941', 'THORAX, TUMOR (MEDIASTINAL), COMPLEX RESECTION', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.1942', 'THORAX, TUMOR (MEDIASTINAL), RESECTION', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1943', 'THORAX, VARIOUS LESIONS, CHEST WALL RESECTION AND\nMAJOR RECONSTRUCTION', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.1944', 'THORAX, VARIOUS LESIONS, CHEST WALL RESECTION AND\nMINOR RECONSTRUCTION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1945', 'THORAX, VARIOUS LESIONS, IMAGING GUIDED PERCUTANEOUS\nBIOPSY', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1946', 'THORAX, VARIOUS LESIONS, INTERCOSTAL DRAIN (INSERTION\nWITHOUT RESECTION OF RIB)', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.1947', 'THORAX, VARIOUS LESIONS, INTRATHORACIC OPERATION ON\nLUNGS/BRONCHIAL TREE/MEDIASTINUM', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1948', 'THORAX, VARIOUS LESIONS, THORACOPLASTY (COMPLETE)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1949', 'THORAX, VARIOUS LESIONS, THORACOPLASTY (IN STAGES) -\nEACH STAGE', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1950', 'THORAX, VARIOUS LESIONS, THORACOTOMY (EXPLORATION)\nWITH/WITHOUT BIOPSY', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1951', 'THORAX, VARIOUS LESIONS, THORACOTOMY FOR PLEURECTOMY/PLEURODESIS/ ENUCLEATION HYDATID CYSTS', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1952', 'THORAX, VARIOUS LESIONS, THORACOTOMY WITH\nPULMONARY DECORTICATION, WITH OR WITHOUT THORACOPLASTY AND/OR MYOPLASTY', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1953', 'THROAT, HYOID SUSPENSION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1954', 'THROAT, PALATOPLASTY WITH/WITHOUT UVULOPLASTY, USING\nLASER OR OTHER MODALITIES', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1955', 'THROAT, UVULOPALATOPHARYNGOPLASTY (U3P)', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1956', 'THUMB, DEFORMITIES, CORRECTION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1957', 'THUMB, PARALYSIS, OPPONENS PLASTY', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1958', 'THUMB, VARIOUS LESIONS, POLLICISATION OR MICROSURGICAL\nRECONSTRUCTION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1959', 'THYROGLOSSAL CYST, SISTRUNK OPERATION WITH HYOID BONE\nREMOVAL', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1960', 'THYROGLOSSAL DUCT, CYST FISTULA, EXCISION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1961', 'THYROID, TUMOR, EXCISION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1962', 'THYROID, VARIOUS LESIONS, HEMITHYROIDECTOMY/PARTIAL\nTHYROIDECTOMY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1963', 'THYROID, VARIOUS LESIONS, IMAGING GUIDED PERCUTANEOUS\nASPIRATION/BIOPSY', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1964', 'THYROID, VARIOUS LESIONS, TOTAL THYROIDECTOMY,\nCOMPLEX (RECURRENCE), WITH/WITHOUT STERNAL SPLIT', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.1965', 'THYROID, VARIOUS LESIONS, TOTAL/SUBTOTAL\nTHYROIDECTOMY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1966', 'THYROID, VARIOUS LESIONS, TOTAL/SUBTOTAL\nTHYROIDECTOMY WITH NECK DISSECTION (BILATERAL)', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.1967', 'THYROID, VARIOUS LESIONS, TOTAL/SUBTOTAL\nTHYROIDECTOMY WITH NECK DISSECTION (UNILATERAL)', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.1968', 'TIBIA, DELAYED/NON-UNION, RECONSTRUCTION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1969', 'TIBIA, FRACTURE(S), OPEN REDUCTION AND INTERNAL FIXATION\nWITH INTRAMEDULLARY ROD', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1970', 'TIBIA, FRACTURE, OPEN REDUCTION AND INTERNAL FIXATION\nWITH PLATES AND SCREWS, COMMINUTED', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1971', 'TIBIA, FRACTURE, OPEN REDUCTION AND INTERNAL FIXATION\nWITH PLATES AND SCREWS, SIMPLE', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1972', 'TIBIA, TIBIAL PLATEAU, COMMINUTED BICONDYLAR, ORIF', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.1973', 'TIBIA, TIBIAL PLATEAU, UNICONDYLAR COMMINUTED/SIMPLE\nBICONDYLAR, ORIF', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1974', 'TIBIA, TIBIAL PLATEAU, UNICONDYLAR, ORIF', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1975', 'TIBIA, TIBIAL SHAFT FRACTURE, INTRAMEDULLARY NAILING\n(LOCKED/UNLOCKED)', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1976', 'TOES, TOE DEFORMITY', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.1977', 'TOES, TOE DEFORMITY, MULTIPLE/COMPLEX', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1978', 'TOES, VARIOUS LESIONS, ARTHRODESIS', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1979', 'TOES, VARIOUS LESIONS, RAY AMPUTATION (SINGLE)', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.1980', 'TOES, VARIOUS LESIONS, RAY AMPUTATION (TWO TO FOUR\nRAYS)', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1981', 'TOES, VARIOUS LESIONS, TOE AMPUTATION (SINGLE)', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.1982', 'TOES, VARIOUS LESIONS, TOE AMPUTATION (TWO TO FOUR\nTOES)', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1983', 'TONGUE SUSPENSION', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1984', 'TONGUE, TONGUE TIE, RELEASE', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.1985', 'TONGUE, TONGUE TIE, REVISION', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1986', 'TONGUE, TRANSORAL RESECTION OF TONGUE BASE MUSCLE\nWITH OR WITHOUT LINGUAL TONSIL EXCISION', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.1987', 'TONGUE, TUMOR, GLOSSECTOMY WITH RADICAL NECK\nDISSECTION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1988', 'TONGUE, TUMOR, HEMI-GLOSSECTOMY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1989', 'TONGUE, TUMOR, TOTAL GLOSSECTOMY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1990', 'TONGUE, VARIOUS LESIONS (BENIGN CONDITION), EXCISION\nBIOPSY <3CM', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1991', 'TONGUE, VARIOUS LESIONS, PARTIAL EXCISION', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1992', 'TONSILS, ABSCESS, DRAINAGE', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.1993', 'TONSILS, HEMORRHAGE, HEMOSTASIS', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1994', 'TONSILS, VARIOUS LESIONS, REMOVAL WITH/WITHOUT\nADENOIDECTOMY', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1995', 'TOOTH (DEEP, I.E. COMPLETELY BURIED IN BONE), EXCISION\nWITH REMOVAL OF BONE AND TOOTH DIVISION', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1996', 'TOOTH (MULTIPLE-ROOTED OR MORE THAN 1 TOOTH),\nVARIOUS LESIONS, PERI-RADICULAR SURGERY', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1997', 'TOOTH (SINGLE-ROOTED), VARIOUS LESIONS, PERI- RADICULAR\nSURGERY', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1998', 'TOOTH (SUPERFICIAL), UNERUPTED/PARTIALLY ERUPTED/IMPACTED, EXCISION WITH REMOVAL OF BONE\n(WITHOUT TOOTH DIVISION)', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1999', 'TOOTH (SUPERFICIAL), UNERUPTED/PARTIALLY ERUPTED/IMPACTED, EXCISION WITH REMOVAL OF BONE\nAND TOOTH DIVISION', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2000', 'TOOTH, DISLOCATION, REIMPLANTATION AND\nTRANSPLANTATION', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.2001', 'TOOTH, SIMPLE UNERUPTED/PARTIALLY ERUPTED/IMPACTED/FRACTURED, REMOVAL OF MULTIPLE\nROOTS', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2002', 'TOOTH, UNERUPTED/PARTIALLY ERUPTED/IMPACTED, EXCISION\nWITH RELEASE OF NEUROVASCULAR BUNDLE', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2003', 'TOOTH, UNERUPTED/PARTIALLY ERUPTED/IMPACTED,\nSURGICAL EXPOSURE', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.2004', 'TOOTH, UNERUPTED/PARTIALLY ERUPTED/IMPACTED, SURGICAL EXPOSURE AND BONDING FOR TRACTION AND\nASSISTED ERUPTION', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2005', 'TRACHEA, FOREIGN BODY, REMOVAL', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.2006', 'TRACHEA, TRACHEO-ESOPHAGEAL FISTULA, LIGATION AND\nDIVISION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2007', 'TRACHEA, TRACHEOSTOMY, REVISION AND REINSERTION', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2008', 'TRACHEA, VARIOUS LESIONS, TRACHEA RECONSTRUCTION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2009', 'TRACHEA, VARIOUS LESIONS, TRACHEOSTOMY', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2010', 'TRACHEA/BRONCHUS, STRICTURE, IMAGING GUIDED BALLOON\nDILATATION', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2011', 'TRACHEA/BRONCHUS, STRICTURE, IMAGING GUIDED STENT\nPLACEMENT', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.2012', 'TRANSCATHETER VALVE OR CLIP IMPLANTATION WITH/WITHOUT TEE GUIDANCE (ENDOVASCULAR APPROACH)', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2013', 'UPPER LIMB, CONGENITAL DEFORMITY, MAJOR\nRECONSTRUCTION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2014', 'UPPER LIMB, DEFORMITY, BONY AND SOFT TISSUE\nRECONSTRUCTION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2015', 'UPPER LIMB, FRACTURE/DISLOCATION, MANIPULATION AND\nREDUCTION', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.2016', 'UPPER LIMB, ISCHEMIA, FASCIOTOMY', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.2017', 'UPPER LIMB, TRAUMA, MAJOR REPLANTATION', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2018', 'UPPER LIMB, VARIOUS LESIONS, AMPUTATION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2019', 'UPPER LIMB, VARIOUS LESIONS, FOREQUARTER AMPUTATION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2020', 'UPPER LIMB, VARIOUS LESIONS, VASCULARISED FREE MUSCLE\nTRANSFER', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2021', 'UPPER LIMB/LOWER LIMB, CLOSED FRACTURES, EXTERNAL\nFIXATION WITHOUT DEBRIDEMENT OR OTHER PROCEDURES', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2022', 'UPPER LIMB/LOWER LIMB, FRACTURE, EXTERNAL FIXATION,\nMULTIPLE PLANES', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2023', 'UPPER LIMB/LOWER LIMB, MAJOR SOFT TISSUE DEFECTS, FREE\nFLAP', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.2024', 'UPPER LIMB/LOWER LIMB, MAJOR SOFT TISSUE DEFECTS,\nPEDICLED FLAP', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2025', 'UPPER LIMB/LOWER LIMB, MALIGNANT TUMOUR, SOFT TISSUE,\nRADICAL EXCISION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2026', 'UPPER LIMB/LOWER LIMB, OPEN FRACTURES WITH\nDEBRIDEMENT AND EXTERNAL FIXATION', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2027', 'UPPER LIMB/LOWER LIMB, UPPER LIMB FRACTURES,\nMINIMALLY INVASIVE FIXATION', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2028', 'URETER, CALCULUS, URETEROLITHOTOMY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2029', 'URETER, CALCULUS, URETEROLITHOTOMY (MIS)', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2030', 'URETER, CALCULUS, URETEROSCOPY AND LITHOTRIPSY\nWITH/WITHOUT ULTRASOUND', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2031', 'URETER, CUTANEOUS URETEROSTOMY, CLOSURE', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2032', 'URETER, CYSTOSCOPY AND INSERTION OF DOUBLE J STENT', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2033', 'URETER, EXTRA CORPOREAL SHOCKWAVE LITHOTRIPSY (ESWL)\nFOR URETERIC STONE', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2034', 'URETER, PREVIOUS DIVERSION, REVISION', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2035', 'URETER, STRICTURE, PERCUTANEOUS ANTEGRADE BALLOON\nDILATATION', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.2036', 'URETER, URETEROSCOPY', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2037', 'URETER, VARIOUS LESIONS, BOARI FLAP REIMPLANTATION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2038', 'URETER, VARIOUS LESIONS, INTESTINAL CONDUIT', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2039', 'URETER, VARIOUS LESIONS, PERCUTANEOUS ANTEGRADE\nINSERTION OF DOUBLE J STENT', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2040', 'URETER, VARIOUS LESIONS, REDUCTION URETEROPLASTY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2041', 'URETER, VARIOUS LESIONS, REIMPLANTATION, BILATERAL', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2042', 'URETER, VARIOUS LESIONS, REIMPLANTATION, UNILATERAL', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2043', 'URETER, VARIOUS LESIONS, REPAIR', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2044', 'URETER, VARIOUS LESIONS, REPLACEMENT BY BOWEL', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2045', 'URETER, VARIOUS LESIONS, URETEROCALYCOSTOMY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2046', 'URETER, VARIOUS LESIONS, URETEROSTOMY', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2047', 'URETER, VARIOUS LESIONS, URETEROTOMY/INSERTION OF\nDOUBLE J STENT', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2048', 'URETER, VARIOUS LESIONS, URETEROURETEROSTOMY', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2049', 'URETHRA , EXCISION OF URETHRAL DIVERTICULUM', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2050', 'URETHRA, CARUNCLE/POLYP, EXCISION/LASER VAPORISATION', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.2051', 'URETHRA, EXCISION OF URETHRAL DIVERTICULUM', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2052', 'URETHRA, FISTULA, CLOSURE', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2053', 'URETHRA, INJURY, REPAIR/URETHROPLASTY OF ANTERIOR\nURETHRA', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2054', 'URETHRA, MEATAL STENOSIS, MEATOTOMY', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.2055', 'URETHRA, MID-URETHRAL SLINGS', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.2056', 'URETHRA, PROLAPSE, EXCISION', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.2057', 'URETHRA, STENOSIS, DILATATION', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.2058', 'URETHRA, STRICTURE, URETHRAL WALL STENTING', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2059', 'URETHRA, STRICTURE, URETHROTOMY', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2060', 'URETHRA, SUBSTITUTION URETHROPLASTY, FLAP OR GRAFT', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2061', 'URETHRA, URETHRO-RECTAL FISTULA, CLOSURE', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2062', 'URETHRA, URETHROSCOPY, WITH RELATED PROCEDURES', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.2063', 'URETHRA, VALVES/MEMBRANE, RESECTION (ENDOSCOPIC)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2064', 'URETHRA, VALVES/MEMBRANE, RESECTION (OPEN)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2065', 'URETHRA, VARIOUS LESIONS, ANTERIOR URETHROPLASTY', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2066', 'URETHRA, VARIOUS LESIONS, EXCISION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2067', 'URETHRA, VARIOUS LESIONS, POSTERIOR URETHROPLASTY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2068', 'URETHRA, VARIOUS LESIONS, STAGED URETHROPLASTY (EACH\nSTAGE)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2069', 'URETHRA, VARIOUS LESIONS, TRANSPUBIC URETHROPLASTY', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2070', 'URETHRA, VARIOUS LESIONS, URETHROPEXY', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.2071', 'URETHRA, VARIOUS LESIONS, URETHROTOMY', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2072', 'UTERUS, BENIGN CONDITIONS, TOTAL ABDOMINAL HYSTERECTOMY WITH/WITHOUT SALPINGO- OOPHORECTOMY AND PELVIC FLOOR REPAIR (COMBINED OPERATION)', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2073', 'UTERUS, BROAD LIGAMENT TUMOR, HYSTERECTOMY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2074', 'UTERUS, CONGENITAL ORGAN ABNORMALITY, PLASTIC REPAIR\nINCLUDING METROPLASTY', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2075', 'UTERUS, DISPLACED INTRAUTERINE CONTRACEPTIVE DEVICE,\nREMOVAL UNDER GENERAL ANESTHESIA', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.2076', 'UTERUS, ELONGATED CERVIX, CYSTOCOELE, RECTOCOELE, AMPUTATION OF CERVIX + ANTERIOR REPAIR + POSTERIOR\nREPAIR', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2077', 'UTERUS, ENDOMETRIAL ABLATION (BALLOON)', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.2078', 'UTERUS, ENDOMETRIAL ABLATION (HYSTEROSCOPIC)', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2079', 'UTERUS, ENDOMETRIOSIS, HYSTERECTOMY WITH/WITHOUT\nSALPINGO-OOPHORECTOMY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2080', 'UTERUS, FETAL DISORDER, ULTRASOUND GUIDED FETAL BLOOD\nSAMPLING/CORDOCENTESIS', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2081', 'UTERUS, FETAL DISORDER, ULTRASOUND GUIDED FETAL\nTHERAPY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2082', 'UTERUS, FETAL SURGERY', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2083', 'UTERUS, FIBROIDS, MYOMECTOMY (COMPLICATED E.G.\n>5CM, MULTIPLE >2, CHALLENGING LOCATION)6', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2084', 'UTERUS, FIBROIDS, MYOMECTOMY (SIMPLE, <5CM)5', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2085', 'UTERUS, FIBROIDS, UTERINE ARTERY EMBOLIZATION', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2086', 'UTERUS, FOETOSCOPY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2087', 'UTERUS, GENETIC ABNORMALITY, ULTRASOUND GUIDED\nCHORIONIC BIOPSY', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.2088', 'UTERUS, GENETIC ABNORMALITY/FETAL MATURITY,\nWITH/WITHOUT ULTRASOUND GUIDED AMNIOCENTESIS', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.2089', 'UTERUS, GRAVID, EVACUATION (COMPLICATED)', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.2090', 'UTERUS, GRAVID, EVACUATION (COMPLICATED)', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.2091', 'UTERUS, GRAVID, EVACUATION (SIMPLE)', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.2092', 'UTERUS, GRAVID, EVACUATION (SIMPLE)', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.2093', 'UTERUS, GRAVID, HYSTERECTOMY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2094', 'UTERUS, GRAVID, HYSTEROTOMY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2095', 'UTERUS, HYSTERECTOMY, FROZEN PELVIS', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2096', 'UTERUS, INVERSION, REPOSITIONING', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2097', 'UTERUS, LYSIS OF ASHERMAN\'S (COMPLICATED),\nHYSTEROSCOPIC', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.2098', 'UTERUS, LYSIS OF ASHERMAN\'S (SIMPLE), HYSTEROSCOPIC', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2099', 'UTERUS, MALIGNANT CONDITION, ANTERIOR PELVIC\nEXENTERATION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2100', 'UTERUS, MALIGNANT CONDITION, POSTERIOR PELVIC\nEXENTERATION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2101', 'UTERUS, MALIGNANT CONDITION, RADICAL HYSTERECTOMY\nWITH/WITHOUT LYMPHADENECTOMY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2102', 'UTERUS, MALIGNANT CONDITION, TOTAL HYSTERECTOMY WITH/WITHOUT SALPINGO-\nOOPHORECTOMY, WITH/WITHOUT LYMPH NODE DISSECTION,\nMIS/OPEN', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2103', 'UTERUS, MALIGNANT CONDITIONS, TOTAL PELVIC\nEXENTERATION', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.2104', 'UTERUS, MALIGNANT CONDITIONS, WERTHEIM\'S OPERATION\nINCLUDING PELVIC LYMPHADENECTOMY', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2105', 'UTERUS, MIS ABLATION OF ENDOMETRIOSIS (SIMPLE) (AS\nSINGLE PROCEDURE, NOT INVOLVING RECTUM, URETER)', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2106', 'UTERUS, PERFORATION, REPAIR', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2107', 'UTERUS, PREGNANCY AND MULTIPARITY, COMPLICATED CAESAREAN SECTION AND TUBAL LIGATION (SEE FOOTNOTE\nFOR DEFINITION OF \'COMPLICATED\')', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2108', 'UTERUS, PREGNANCY AND MULTIPARITY, COMPLICATED CAESAREAN SECTION AND TUBAL LIGATION (SEE FOOTNOTE\nFOR DEFINITION OF \'COMPLICATED\')', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2109', 'UTERUS, PREGNANCY AND MULTIPARITY, UNCOMPLICATED\nCAESAREAN SECTION AND TUBAL LIGATION', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2110', 'UTERUS, PREGNANCY AND MULTIPARITY, UNCOMPLICATED CAESAREAN SECTION AND TUBAL\nLIGATION', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2111', 'UTERUS, PREGNANCY, CAESAREAN SECTION WITH\nHYSTERECTOMY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2112', 'UTERUS, PREGNANCY, CAESAREAN SECTION WITH\nHYSTERECTOMY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2113', 'UTERUS, PREGNANCY, COMPLICATED CAESAREAN SECTION (SEE FOOTNOTE FOR DEFINITION OF\n\'COMPLICATED\'7)', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2114', 'UTERUS, PREGNANCY, COMPLICATED CAESAREAN SECTION (SEE FOOTNOTE FOR DEFINITION OF\n\'COMPLICATED\'8)', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2115', 'UTERUS, PREGNANCY, COMPLICATED VAGINAL DELIVERY (E.G. TWINS, BREECH, INSTRUMENTAL\nDELIVERY)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.2116', 'UTERUS, PREGNANCY, COMPLICATED VAGINAL DELIVERY (E.G. TWINS, BREECH, INSTRUMENTAL\nDELIVERY)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.2117', 'UTERUS, PREGNANCY, UNCOMPLICATED CAESAREAN SECTION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2118', 'UTERUS, PREGNANCY, UNCOMPLICATED CAESAREAN SECTION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2119', 'UTERUS, PREGNANCY, VAGINAL DELIVERY (WITH OR WITHOUT\nEPISIOTOMY REPAIR)', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.2120', 'UTERUS, PREGNANCY, VAGINAL DELIVERY (WITH OR WITHOUT\nEPISIOTOMY REPAIR)', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.2121', 'UTERUS, PROLAPSE, CYSTOCOELE, RECTOCOELE, AMPUTATION OF CERVIX + VAGINAL SACROSPINOUS LIGAMENT HYSTEROPEXY\n+ ANTEIOR REPAIR + POSTERIOR REPAIR', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2122', 'UTERUS, PROLAPSE, CYSTOCOELE, RECTOCOELE,\nTRANSOBTURATOR MESH + TRANSSACROSPINOUS LIGAMENT MESH', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2123', 'UTERUS, PROLAPSE, CYSTOCOELE, RECTOCOELE, VAGINAL\nHYSTERECTOMY + ANTERIOR REPAIR + BILATERAL SALPINGO- OOPHORECTOMY ? POSTERIOR REPAIR', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2124', 'UTERUS, PROLAPSE, CYSTOCOELE, RECTOCOELE, VAGINAL\nSACROSPINOUS LIGAMENT HYSTEROPEXY + ANTERIOR REPAIR + POSTERIOR REPAIR', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2125', 'UTERUS, PROLAPSE, VAGINAL HYSTERECTOMY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2126', 'UTERUS, PROLAPSE, VAGINAL HYSTERECTOMY + BILATERAL\nSALPINGO-OOPHORECTOMY', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2127', 'UTERUS, RETAINED PLACENTA, MANUAL REMOVAL IN OT/GA', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.2128', 'UTERUS, RETROVERSION, VENTROSUSPENSION', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.2129', 'UTERUS, RUPTURED, REPAIR (COMPLICATED)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2130', 'UTERUS, RUPTURED, REPAIR (SIMPLE)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2131', 'UTERUS, SUB-TOTAL/TOTAL HYSTERECTOMY (<12\nWEEKS), WITH/WITHOUT SALPINGO-OOPHORECTOMY', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2132', 'UTERUS, SUB-TOTAL/TOTAL HYSTERECTOMY (?12\nWEEKS), WITH/WITHOUT SALPINGO-OOPHORECTOMY', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2133', 'UTERUS, VARIOUS LESIONS, CURETTAGE WITH\nCOLPOSCOPY/BIOPSY/DIATHERMY/ CRYOSURGERY/LASER THERAPY OF CERVIX', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2134', 'UTERUS, VARIOUS LESIONS, CURETTAGE WITH/WITHOUT\nDILATATION', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.2135', 'UTERUS/CERVIX, HYSTEROSCOPIC CANNULATION', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.2136', 'UTERUS/CERVIX, HYSTEROSCOPY, DIAGNOSTIC (WITH GENERAL\nANESTHESIA)', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.2137', 'UTERUS/CERVIX, HYSTEROSCOPY, DIAGNOSTIC (WITHOUT\nANAESTHESIA)', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.2138', 'UTERUS/CERVIX, HYSTEROSCOPY, DIAGNOSTIC, D&C', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.2139', 'UTERUS/VAGINA, MIS ASSISTED VAGINAL HYSTERECTOMY\n(LAVH) WITH/WITHOUT PELVIC FLOOR REPAIR (PFR)', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2140', 'UTERUS/VAGINA, MIS RECONSTRUCTION OF FROZEN PELVIS/LATERAL PELVIC WALL DISSECTION; EXTIRPATION OF\nRECTOVAGINAL ENDOMETRIOSIS', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2141', 'VAGINA, ATRESIA, VAGINOPLASTY', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2142', 'VAGINA, ATRESIA/STENOSIS, DILATATION', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.2143', 'VAGINA, CYSTOCOELE, ANTERIOR REPAIR/KELLY\'S OPERATION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2144', 'VAGINA, CYSTOCOELE, PARAVAGINAL DEFECT REPAIR\n(ABDOMINAL) / BURCH COLPOSUSPENSION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2145', 'VAGINA, CYSTOCOELE, RECTOCOELE, ANTERIOR REPAIR/KELLY\'S\nOPERATION + POSTERIOR REPAIR', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2146', 'VAGINA, CYSTOCOELE, TRANSOBTURATOR MESH', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2147', 'VAGINA, ENTEROCOELE, CYSTOCOELE, RECTOCOELE,\nABDOMINAL SACROCOLPOPEXY + PARAVAGINAL DEFECT REPAIR/BURCH COLPOSUSPENSION + POSTERIOR REPAIR', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2148', 'VAGINA, ENTEROCOELE, CYSTOCOELE, RECTOCOELE, VAGINAL\nSACROSPINOUS LIGAMENT/ILIOCOCCYGEUS FIXATION + ANTERIOR REPAIR + POSTERIOR REPAIR', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2149', 'VAGINA, ENTEROCOELE, REPAIR/VAGINAL VAULT SUSPENSION\n(ABDOMINAL)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2150', 'VAGINA, FISTULA, REPAIR (COMPLICATED/MULTIPLE)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2151', 'VAGINA, FISTULA, REPAIR (SIMPLE)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2152', 'VAGINA, FOREIGN BODY, REMOVAL', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.2153', 'VAGINA, INCARCERATED PESSARY, REMOVAL', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.2154', 'VAGINA, INTRA-EPITHELIAL NEOPLASIA COMPLETE/UPPER\nVAGINECTOMY', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2155', 'VAGINA, INTRA-EPITHELIAL NEOPLASIA VAGINECTOMY\n(PARTIAL)', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2156', 'VAGINA, LACERATIONS (COMPLEX AND INVOLVING ANAL\nSPHINCTER) AND DEBRIDEMENT/SUTURE UNDER GENERAL ANAESTHESIA', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2157', 'VAGINA, LACERATIONS (SIMPLE), DEBRIDEMENT/SUTURE\n(EXCLUDES EPISIOTOMY)', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.2158', 'VAGINA, MALIGNANT CONDITION, VAGINECTOMY', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2159', 'VAGINA, PELVIC ABSCESS, COLPOTOMY AND DRAINAGE', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2160', 'VAGINA, PROLAPSE, COLPORRHAPHY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2161', 'VAGINA, PROLAPSE, OBLITERATION (COLPOCLEISIS)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2162', 'VAGINA, RECTOCOELE, POSTERIOR REPAIR', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2163', 'VAGINA, SIMPLE TUMOR/GARTNER\'S CYST, REMOVAL WITH\nBIOPSY', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.2164', 'VAGINA, STRESS INCONTINENCE, ABDOMINAL\n/COMBINED ABDOMINOVAGINAL SLING OPERATIONS ( EG. WATKINS INTERPOSITION, ALDRIDGE SLING AND OTHER PUBOVAGINAL SLING OPERATIONS) +/- CYSTOSCOPY', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2165', 'VAGINA, STRESS INCONTINENCE, CYSTOCOELE, RECTOCOELE, MID-URETHRAL TAPE/SLING (?\nCYSTOSCOPY) + ANTERIOR REPAIR + POSTERIOR\nREPAIR', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2166', 'VAGINA, STRESS INCONTINENCE, KELLY\'S OPERATION +/-\nANTERIOR REPAIR.', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2167', 'VAGINA, TENSION FREE VAGINAL TAPE (TVT/TVTO)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2168', 'VAGINA, VARIOUS LESIONS, BIOPSY', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.2169', 'VAGINA/RECTUM, RECTO VAGINAL FISTULA, COMPLEX\nRECTAL/TRANSPERINEAL APPROACH WITH COLOSTOMY', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2170', 'VAGINA/RECTUM, RECTO VAGINAL FISTULA, COMPLEX RECTAL/TRANSPERINEAL APPROACH WITHOUT COLOSTOMY', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2171', 'VAGINAL HYSTERECTOMY + ANTERIOR REPAIR +/- POSTERIOR\nREPAIR', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2172', 'VAGINAL SEPTUM, EXCISION', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.2173', 'VAS DEFERENS, VARIOUS LESIONS, EXPLORATION\n(MICROSURGICAL) AND TESTICULAR BIOPSY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2174', 'VAS DEFERENS, VARIOUS LESIONS, REANASTOMOSIS\n(MICROSURGICAL)', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2175', 'VAS DEFERENS, VARIOUS LESIONS, VARICOCELECTOMY\n(MICROSURGICAL)', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2176', 'VAS DEFERENS, VARIOUS LESIONS, VASECTOMY', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.2177', 'VAS DEFERENS, VARIOUS LESIONS, VASOEPIDIDYMOGRAPHY &\nVASOVESICULOGRAPHY', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.2178', 'VAS DEFERENS, VARIOUS LESIONS, VASOEPIDIDYMOSTOMY\n(MICROSURGICAL)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2179', 'VEIN (DISTAL EXTREMITY/DIGIT), VARIOUS LESIONS,\nMICROVASCULAR REPAIR', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2180', 'VEIN (LARGE), VARIOUS LESIONS, LIGATION', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.2181', 'VEIN (MAJOR), TRAUMA, REPAIR', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2182', 'VEIN (SMALL), INJURY, REPAIR (SINGLE)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2183', 'VEIN, ARTERIO-VENOUS FISTULA, DISSECTION AND LIGATION', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.2184', 'VEIN, BLEEDING VARICOSITIES/VASCULAR MALFORMATION, IMAGE GUIDED SCLEROTHERAPY INJECTION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2185', 'VEIN, CATHETER BLOCKAGE, FIBRINSHEATH STRIPPING OR\nDISRUPTION', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.2186', 'VEIN, CATHETER BLOCKAGE, IMAGING GUIDED CATHETER\nCHANGE/CATHETER ADJUSTMENT', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.2187', 'VEIN, CENTRAL VEINS (SUPERIOR VENA CAVA, BRACHIOCEPHALIC VEINS, INFERIOR VENA CAVA, ILIAC VEINS)\nVARIOUS LESIONS, DIAGNOSTIC VENOGRAPHY', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.2188', 'VEIN, HEPATIC, PORTAL HYPERTENSION, DIAGNOSTIC HEPATIC VENOGRAPHY WITH OR WITHOUT PRESSURE MEASUREMENTS', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.2189', 'VEIN, INTRACRANIAL, VENOUS SAMPLING', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2190', 'VEIN, INTRAVENOUS SYMPATHETIC, BIER?S BLOCK', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.2191', 'VEIN, PERIPHERAL VEINS (UPPER/LOWER LIMBS/DIALYSIS ARTERIOVENUS\nFISTULA/ARTERIOVENUS GRAFT FISTULA), VARIOUS LESIONS,\nDIAGNOSTIC VENOGRAPHY', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.2192', 'VEIN, STENOSIS/OCCLUSION, PERCUTANEOUS TRANSLUMINAL\nANGIOPLASTY (PTA), DIFFICULT', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2193', 'VEIN, STENOSIS/OCCLUSION, PERCUTANEOUS TRANSLUMINAL\nANGIOPLASTY (PTA), SIMPLE', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.2194', 'VEIN, THROMBOSIS, PERCUTANEOUS CATHETER DIRECTED THROMBOLYSIS, WITH OR WITHOUT ANGIOPLASTY/STENTING', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2195', 'VEIN, VARICOSE VEINS, IMAGING GUIDED ENDOVENOUS LASER\nTREATMENT, 1 LEG', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2196', 'VEIN, VARICOSE VEINS, IMAGING GUIDED ENDOVENOUS LASER\nTREATMENT, 2 LEGS', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2197', 'VEIN, VARICOSITIES (RECURRENT) SURGERY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2198', 'VEIN, VARICOSITIES, ENDOVASCULAR LASER TREATMENT (1\nLEG)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2199', 'VEIN, VARICOSITY, BILATERAL STRIPPING/EXCISION/MULTIPLE\nLIGATIONS', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2200', 'VEIN, VARICOSITY, HIGH LIGATION AND COMPLETE\nSTRIPPING/EXCISION OF LONG/LONG & SHORT SAPHENOUS VEIN (ENDOSCOPIC)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2201', 'VEIN, VARICOSITY, HIGH LIGATION AND COMPLETE STRIPPING/EXCISION OF LONG/LONG AND SHORT SAPHENOUS\nVEIN', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2202', 'VEIN, VARICOSITY, HIGH LIGATION AND COMPLETE\nSTRIPPING/EXCISION OF SHORT SAPHENOUS VEIN', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2203', 'VEIN, VARICOSITY, HIGH LIGATION OF SHORT SAPHENOUS VEIN\nAT SAPHENO-POPLITEAL JUNCTION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2204', 'VEIN, VARICOSITY, MULTIPLE LIGATIONS WITH/WITHOUT LOCAL\nSTRIPPING/EXCISION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2205', 'VEIN, VARICOSITY, SUB-FASCIAL LIGATION OF MULTIPLE\nPERFORATOR (ENDOSCOPIC)', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2206', 'VEIN, VARICOSITY, SUB-FASCIAL LIGATION OF SINGLE DEEP\nPERFORATOR', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.2207', 'VEIN, VARICOSITY, SUB-FASCIAL LIGATION OF SINGLE DEEP\nPERFORATOR (ENDOSCOPIC)', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.2208', 'VEIN, VARIOUS LESIONS, BYPASS/GRAFT', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2209', 'VEIN, VARIOUS LESIONS, ENDOVASCULAR STENT GRAFT/STENT\nPLACEMENT', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2210', 'VEIN, VARIOUS LESIONS, IMAGING GUIDED INSERTION OF NON\nTUNNELLED CENTRAL VENOUS CATHETER', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.2211', 'VEIN, VARIOUS LESIONS, IMAGING GUIDED INSERTION OF\nTUNNELLED CENTRAL VENOUS CATHETER', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.2212', 'VEIN, VARIOUS LESIONS, IMAGING GUIDED PERIPHERAL\nINSERTION OF CENTRAL CATHETER (PICC)', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.2213', 'VEIN, VARIOUS LESIONS, IMAGING GUIDED VENOUS PORT\nINSERTION', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2214', 'VEIN, VARIOUS LESIONS, INSERTION OF CENTRAL VENOUS LINE', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.2215', 'VEIN, VARIOUS LESIONS, INSERTION OF INFERIOR VENA CAVAL\nFILTER', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2216', 'VEIN, VARIOUS LESIONS, INTRA-ARTERIAL INFUSION OF\nARTERIES OF NECK/THORAX/ABDOMEN', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.2217', 'VEIN, VARIOUS LESIONS, LIGATION (INCLUDE REPAIR OF\nARTIFICIAL ARTERIO-VENOUS FISTULA)', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.2218', 'VEIN, VARIOUS LESIONS, PERCUTANEOUS TRANSCATHETER EMBOLISATION OF MORE THAN 2\nVESSELS', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2219', 'VEIN, VARIOUS LESIONS, PERCUTANEOUS TRANSCATHETER\nEMBOLIZATION OF 1 TO 2 VESSELS', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2220', 'VEIN, VARIOUS LESIONS, RETRIEVAL OF INFERIOR VENA CAVAL\nFILTER', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.2221', 'VEIN, VARIOUS LESIONS, SAPHENOL FEMORAL/ACCELO\nFEMORAL BYPASS GRAFT', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2222', 'VEIN-PORTAL, PORTAL HYPERTENSION, BYPASS', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2223', 'VENA CAVA INFERIOR, VARIOUS LESIONS, PLICATION/LIGATION', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2224', 'VITREOUS, INTRAVITREAL INJECTIONS', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.2225', 'VITREOUS, VARIOUS LESIONS, COMPLEX POSTERIOR\nVITRECTOMY (PVR, GRT, TRAUMA)', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2226', 'VITREOUS, VARIOUS LESIONS, POSTERIOR VITRECTOMY (PARS PLANA/ SCLEROTOMY/ LENSECTOMY-EXTRACTION\nWITH INTRA-OCULAR LENS IMPLANT/ ENDOLASER/ MEMBRANE\nPEELS)', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2227', 'VITREOUS, VARIOUS LESIONS, SIMPLE VITRECTOMY (PARS\nPLANA OR VITREOUS WASHOUT)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2228', 'VITREOUS, VARIOUS LESIONS, VITRECTOMY (PARS\nPLANA/REMOVAL OF SILICONE OIL)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2229', 'VULVA, ABSCESS, INCISION', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.2230', 'VULVA, ATRESIA/ABSENCE, DETACHMENT OF SKIN PEDICLE\nAFTER VAGINOPLASTY', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.2231', 'VULVA, BARTHOLIN CYST, EXCISION WITH/WITHOUT USE OF\nLASER', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.2232', 'VULVA, BARTHOLIN CYST, INCISION/MARSUPIALIZATION WITH\nOR WITHOUT USE OF LASER', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.2233', 'VULVA, HEMATOMA, EVACUATION <5CM (SIMPLE)', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.2234', 'VULVA, HEMATOMA, EVACUATION > 5CM\n(COMPLICATED/MORE THAN 1)', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.2235', 'VULVA, IMPERFORATE HYMEN, HYMENECTOMY', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.2236', 'VULVA, LABIAL ABNORMALITY, HYMENOPLASTY', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.2237', 'VULVA, LABIAL ABNORMALITY, LABIOPLASTY', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.2238', 'VULVA, LACERATION, DEBRIDEMENT/SUTURE >5CM\n(COMPLICATED/ MORE THAN 1)', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.2239', 'VULVA, MALIGNANT CONDITION WIDE LOCAL EXCISION WITH\nSKIN FLAP CLOSURE', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2240', 'VULVA, MALIGNANT CONDITION, RADICAL VULVECTOMY +\nGROIN + PELVIC NODE DISSECTION', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2241', 'VULVA, MALIGNANT CONDITION, RADICAL VULVECTOMY WITH GROIN DISSECTION AND WITH OR WITHOUT SKIN\nFLAP CLOSURE', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2242', 'VULVA, MALIGNANT CONDITION, SIMPLE VULVECTOMY +\nGROIN DISSECTION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2243', 'VULVA, MALIGNANT CONDITION, SIMPLE VULVECTOMY WITH\nSKIN FLAP CLOSURE', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2244', 'VULVA, MALIGNANT CONDITION, WIDE LOCAL EXCISION', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2245', 'VULVA, TIGHT INTROITUS, FENTON\'S OPERATION', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.2246', 'VULVA, WARTS, LASER VAPORISATION', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.2247', 'VULVA/VAGINA, VARIOUS LESIONS, COLPOSCOPY AND LASER\nVAPORISATION', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.2248', 'WEDGE RESECTION OF TOE NAIL (MULTIPLE TOES), MEDIAL\nAND/OR LATERAL, SIMPLE OR COMPLEX', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.2249', 'WEDGE RESECTION OF TOE NAIL (SINGLE TOE), MEDIAL AND/OR\nLATERAL, SIMPLE OR COMPLEX', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.2250', 'WRIST, AVASCULAR NECROSIS, RADIAL RECESSION/ULNAR\nLENGTHENING,', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2251', 'WRIST, DISTAL OR RADIAL ULNAR JOINT (DRUJ) INSTABILITY,\nCOMPLEX LIGAMENT RECONSTRUCTION', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2252', 'WRIST, DISTAL OR RADIAL ULNAR JOINT (DRUJ) INSTABILITY,\nDARRACH OR SIMILAR PROCEDURE', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.2253', 'WRIST, DISTAL RADIUS FRACTURE, M&R, PERCUTANEOUS\nPINNING', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2254', 'WRIST, DISTAL RADIUS FRACTURE, OPEN REDUCTION AND INTERNAL FIXATION (ORIF) (COMPLEX, WITH AUTOLOGOUS\nBONE GRAFT)', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2255', 'WRIST, DISTAL RADIUS FRACTURE, OPEN REDUCTION AND INTERNAL FIXATION (ORIF) (SIMPLE OPEN\nREDUCTION AND PINNING)', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2256', 'WRIST, DISTAL RADIUS FRACTURE, OPEN REDUCTION AND INTERNAL FIXATION (ORIF) (WITH ULNAR HEAD/STYLOID\nFIXATION/TFCC REPAIR)', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2257', 'WRIST, JOINT, VARIOUS LESIONS, PROXIMAL ROW\nCARPECTOMY OR 4 CORNER FUSION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2258', 'WRIST, LUNATE DISLOCATION/PERILUNATE DISLOCATION/COMPLEX LIGAMENT INJURY, RECONSTRUCTION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2259', 'WRIST, SCAPHOID FRACTURE, OPEN REDUCTION AND INTERNAL\nFIXATION (ORIF) WITH BONE GRAFTING', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2260', 'WRIST, SCAPHOID OR CARPUS, VASCULARISED BONE GRAFT', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2261', 'WRIST, THERAPEUTIC ARTHROSCOPY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2262', 'WRIST, ULNAR HEAD/STYLOID FRACTURE, PERCUTANEOUS\nPINNING/FIXATION', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.2263', 'WRIST, VARIOUS LESIONS, PRIMARY TOTAL JOINT\nARTHROPLASTY WITH AUGMENTATION, REQUIRING EXTRA IMPLANTS OR BONE GRAFTS, OPEN/MIS/NAVIGATED', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2264', 'WRIST, VARIOUS LESIONS, PRIMARY TOTAL JOINT\nARTHROPLASTY, OPEN/MIS/NAVIGATED', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2265', 'WRIST, VARIOUS LESIONS, REVISION TOTAL JOINT\nARTHROPLASTY, OPEN/MIS/NAVIGATED', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2266', 'ZYGOMA, DOWN FRACTURE, OSTECTOMY/ARTICULAR\nEMINECTOMY/AUGMENTATION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2267', 'ZYGOMA, FRACTURE, ELEVATION', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2268', 'TINDAKAN ANESTESI ASA 1', 899000, 'TINDAKAN OPERATIF'), +('R.TO.2269', 'TINDAKAN ANESTESI ASA 2', 2716000, 'TINDAKAN OPERATIF'), +('R.TO.2270', 'TINDAKAN ANESTESI ASA 3', 6047000, 'TINDAKAN OPERATIF'), +('R.TO.2271', 'AMPUTATION OF PENIS - 64.3', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2272', 'ARTHROSCOPIC ANKLE & FOOT PROCEDURE', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2273', 'AUGMENTATION GENIOPLASTY - 76.68', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2274', 'BURSECTOMY OF HAND - 82.31', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2275', 'CLOSED REDUCTION OF MALAR AND ZYGOMATIC FRACTURE -\n76.71', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2276', 'CLOSED REDUCTION OF MANDIBULAR FRACTURE - 76.75', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2277', 'CLOSED REDUCTION OF MAXILLARY FRACTURE - 76.73', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2278', 'CONSTRUCTION OF PENIS - 64.43', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2279', 'DORSAL OR LATERAL SLIT OF PREPUCE - 64.91', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2280', 'EXCISION OR DESTRUCTION OF LESION OR TISSUE OF SCROTUM\n- 61.3', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2281', 'FITTING OF EXTERNAL PROSTHESIS OF PENIS - 64.94', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2282', 'HYMENOTOMY - 70.11', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2283', 'INCISION AND DRAINAGE OF SCROTUM AND TUNICA\nVAGINALIS - 61.0', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2284', 'INSERTION OF TESTICULAR PROSTHESIS - 62.7', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2285', 'INSERTION OR REPLACEMENT OF INFLATABLE PENILE\nPROSTHESIS - 64.97', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2286', 'INSERTION OR REPLACEMENT OF NON-INFLATABLE PENILE\nPROSTHESIS - 64.95', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2287', 'LOCAL EXCISION OR DESTRUCTION OF LESION OF FACIAL BONE -\n76.2', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2288', 'LOCAL EXCISION OR DESTRUCTION OF LESION OF PENIS - 64.2', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2289', 'MARSUPIALIZATION OF BARTHOLIN\'S GLAND (CYST) - 71.23', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2290', 'OBLITERATION AND TOTAL EXCISION OF VAGINA - 70.4', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2291', 'OPEN OSTEOPLASTY [OSTEOTOMY] OF MANDIBULAR RAMUS -\n76.62', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2292', 'OPEN REDUCTION OF MANDIBULAR FRACTURE - 76.76', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2293', 'OPEN REDUCTION OF MAXILLARY FRACTURE - 76.74', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2294', 'OPERATIONS FOR SEX TRANSFORMATION, NOT ELSEWHERE\nCLASSIFIED - 64.5', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2295', 'OPERATIONS ON CLITORIS - 71.4', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2296', 'OSTEOPLASTY [OSTEOTOMY] OF BODY OF MANDIBLE - 76.63', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2297', 'OTHER FACIAL BONE REPAIR - 76.69', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2298', 'OTHER OPEN REDUCTION OF FACIAL FRACTURE (OPEN\nREDUCTION OF ORBIT RIM OR WALL) - 76.79', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2299', 'OTHER OPERATIONS ON PENIS - 64.98', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2300', 'OTHER RECONSTRUCTION OF MANDIBLE - 76.43', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2301', 'OTHER RECONSTRUCTION OF OTHER FACIAL BONE - 76.46', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2302', 'OTHER REPAIR OF PENIS - 64.49', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2303', 'OTHER REPAIR OF URETHRA - 58.49', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2304', 'OTHER REPAIR OR PLASTIC OPERATIONS ON BONE - 78.4', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2305', 'OTHER TOTAL MANDIBULECTOMY - 76.42', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2306', 'PARTIAL MANDIBULECTOMY - 76.31', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2307', 'REANASTOMOSIS OF URETHRA - 58.44', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2308', 'REDUCTION GENIOPLASTY - 76.67', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2309', 'RELEASE OF CHORDEE - 64.42', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2310', 'REMOVAL OF INTERNAL PROSTHESIS OF PENIS - 64.96', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2311', 'REPAIR OF COLOVAGINAL FISTULA - 70.72', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2312', 'REPAIR OF FISTULA OF VULVA OR PERINEUM - 71.72', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2313', 'REPAIR OF HYPOSPADIAS OR EPISPADIAS - 58.45', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2314', 'REPAIR OF OTHER VAGINOENTERIC FISTULA - 70.74', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2315', 'REPAIR OF RECTOVAGINAL FISTULA - 70.73', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2316', 'REPLANTATION OF PENIS - 64.45', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2317', 'SEGMENTAL OSTEOPLASTY [OSTEOTOMY] OF MAXILLA - 76.65', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2318', 'SUTURE OF LACERATION OF PENIS - 64.41', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2319', 'SUTURE OF LACERATION OF SCROTUM AND TUNICA VAGINALIS\n- 61.41', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2320', 'SUTURE OF LACERATION OF TESTIS - 62.61', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2321', 'SUTURE OF LACERATION OF URETHRA - 58.41', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2322', 'SUTURE OF LACERATION OF VULVA OR PERINEUM - 71.71', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2323', 'TOTAL OSTECTOMY OF OTHER FACIAL BONE WITH\nSYNCHRONOUS RECONSTRUCTION - 76.44', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2324', 'TOTAL OSTEOPLASTY [OSTEOTOMY] OF MAXILLA - 76.66', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2325', 'URETHRAL MEATOTOMY - 58.1', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2326', 'VAGINAL CONSTRUCTION - 70.61', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2327', 'VAGINAL CONSTRUCTION WITH GRAFT OR PROSTHESIS - 70.63', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2328', 'VAGINAL SUSPENSION AND FIXATION - 70.77', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2329', '(AORTO)CORONARY BYPASS OF FOUR OR MORE CORONARY\nARTERIES - 36.14', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.2330', '(AORTO)CORONARY BYPASS OF ONE CORONARY ARTERY - 36.11', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.2331', '(AORTO)CORONARY BYPASS OF THREE CORONARY ARTERIES -\n36.13', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.2332', '(AORTO)CORONARY BYPASS OF TWO CORONARY ARTERIES -\n36.12', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.2333', 'ABDOMINAL DRAINAGE, GA - 54.25', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.2334', 'ABDOMINAL-CORONARY ARTERY BYPASS - 36.17', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.2335', 'ABDOMINOCENTESIS, LA - 54.91', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.2336', 'ABDOMINOPERINEAL PULL THROUGH ( MALFORMASI\nANORECTAL), GA - 54.11, 45.95', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.2337', 'ADENOIDEKTOMI - 28.6', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.2338', 'ADO DISERTAI DENGAN TEE 2D INTRAOPERATIF NON BEDAH -\n39.79', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2339', 'ADVANCEMENT OF TENDON - 83.71', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2340', 'ADVANCEMENT OF TENDON OF HAND - 82.51', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2341', 'ALCOHOL SEPTAL ABLATION - 37.34', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2342', 'AMPUTATION ABOVE KNEE - 84.17', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2343', 'AMPUTATION AND DISARTICULATION OF FINGER - 84.01', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2344', 'AMPUTATION AND DISARTICULATION OF THUMB - 84.02', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2345', 'AMPUTATION OF ANKLE THROUGH MALLEOLI OF TIBIA AND\nFIBULA - 84.14', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2346', 'AMPUTATION OF TOE - 84.11', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2347', 'AMPUTATION THROUGH FOOT - 84.12', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2348', 'AMPUTATION THROUGH FOREARM - 84.05', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2349', 'AMPUTATION THROUGH HAND - 84.03', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2350', 'AMPUTATION THROUGH HUMERUS - 84.07', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2351', 'AMPUTATION, NOT OTHERWISE SPECIFIED - 84.91', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2352', 'AMVO - 35.55', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.2353', 'ANAL FISTULA/SINUS OPERATION -', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2354', 'ANALISIS HEADACHE DIARY', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2355', 'ANASTOMOSIS SARAF ASESORIUS-FASIALIS - 04.72', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2356', 'ANASTOMOSIS SARAF ASESORIUS-HIPOGLOSUS - 04.73', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2357', 'ANASTOMOSIS SARAF HIPOGLOSUS-FASIALIS - 04.71', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2358', 'ANGIO & STENTING A. VERTEBRALIS', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2359', 'ANGIOGRAFI - SPINAL', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2360', 'ANGIOGRAFI - SPINAL DENGAN ANESTESI', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2361', 'ANGIOGRAFI 4 VESSEL - CRANIOCERVICAL', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2362', 'ANGIOGRAFI 4 VESSEL - CRANIOCERVICAL DENGAN ANESTESI', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2363', 'ANGIOGRAFI 6 VESSEL - CRANIOCERVICAL', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2364', 'ANGIOGRAFI 6 VESSEL - CRANIOCERVICAL DENGAN ANESTESI', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2365', 'ANGIOGRAFI SUPERSELEKTIF', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2366', 'ANGIOPLASTI + STENTING CAROTIS', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2367', 'ANGIOPLASTI + STENTING INTRAKRANIAL', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2368', 'ANGIOPLASTI A. VERTEBRALIS', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2369', 'ANGIOPLASTI CAROTIS', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2370', 'ANGIOPLASTI INTRAKRANIAL', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2371', 'ANGIOPLASTY OF OTHER NON-CORONARY VESSEL(S) - 39.50', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2372', 'ANKLE & FOOT DEFORMITY RECONSTRUCTION (HALLUX VALGUS, MAL UNION, VARUS VALGUS ANKLE DEFORMITY, DLL)', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2373', 'ANNULOPLASTY - 35.33', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.2374', 'ANOPLASTY - 49.99', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2375', 'ANTERIOR CHAMBER, HYPOPION ASPIRATION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2376', 'ANTERIOR CHAMBER, INTRACAMERAL INJECTION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2377', 'ANTESTERNAL ESOPHAGEAL ANASTOMOSIS WITH\nINTERPOSITION OF COLON - 42.65', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2378', 'ANTESTERNAL ESOPHAGEAL ANASTOMOSIS WITH\nINTERPOSITION OF SMALL BOWEL - 42.63', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2379', 'ANTESTERNAL ESOPHAGOESOPHAGOSTOMY - 42.61', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2380', 'ANTESTERNAL ESOPHAGOGASTROSTOMY - 42.62', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2381', 'ANTROTOMI INTRANASAL (FESS) - 22.2', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2382', 'AORTA-ILIAC-FEMORAL BYPASS - 39.25', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2383', 'AORTA-RENAL BYPASS - 39.24', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2384', 'AORTA-SUBCLAVIAN-CAROTID BYPASS - 39.22', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2385', 'AORTOCORONARY BYPASS FOR HEART REVASCULARIZATION,\nNOT OTHERWISE SPECIFIED - 36.10', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.2386', 'APPENDEKTOMI + PENYULIT PER-LAPAROSKOPIK, GA - 54.21,\n54.51, 47.01', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2387', 'APPENDEKTOMI DGN KOMPLIKASI, GA - 54.11, 54.59, 47.09', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2388', 'APPENDEKTOMI ELEKTIF / TANPA KOMPLIKASI, GA - 47.09', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2389', 'APPENDEKTOMI LAPAROSKOPIK, GA - 47.01', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2390', 'APPENDEKTOMI, GA - 47.09', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2391', 'ARITENOIDEKTOMI - 30.29', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2392', 'ARTERIAL CATHETERIZATION - 38.91', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2393', 'ARTERIAL OCCLUSION - SACRIFICE', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2394', 'ARTERIOVENOSTOMY FOR RENAL DIALYSIS - 39.27', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2395', 'ARTHROPLASTY OF CARPOCARPAL OR CARPOMETACARPAL\nJOINT WITH IMPLANT - 81.74', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2396', 'ARTHROPLASTY OF CARPOCARPAL OR CARPOMETACARPAL\nJOINT WITHOUT IMPLANT - 81.75', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2397', 'ARTHROPLASTY OF METACARPOPHALANGEAL AND\nINTERPHALANGEAL JOINT WITH IMPLANT - 81.71', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2398', 'ARTHROPLASTY OF METACARPOPHALANGEAL AND\nINTERPHALANGEAL JOINT WITHOUT IMPLANT - 81.72', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2399', 'ARTIFICIAL PNEUMOTHORAX FOR COLLAPSE OF LUNG - 33.32', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2400', 'ASO - 35.53', 33261000, 'TINDAKAN OPERATIF'); +INSERT INTO `tarif_rs` (`ID_Tarif_RS`, `Tindakan_RS`, `Tarif_RS`, `Kategori_RS`) VALUES +('R.TO.2401', 'ASO DISERTAI DENGAN TEE 2D INTRA OPERATIF NON BEDAH -\n35. 5', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2402', 'ASPIRATION OF BURSA OF HAND - 82.92', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2403', 'ASPIRATION OF OTHER SOFT TISSUE OF HAND - 82.93', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2404', 'ATIKOTOMI - 20.23', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2405', 'ATTICOANTROSTOMI / MASTOIDEKTOMI MODIFIKASI - 20.49', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2406', 'AVULSI KUKU - 86.23', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.2407', 'BALLON AORTA VULVULOPLASTY (BAV) - 35.96', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2408', 'BALLON ATRIAL SEPTOSTOMY (BAS) - 35.41', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2409', 'BALLON PULMONAL VULVULOPLASTY -', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2410', 'BALLON TEST OCCLUSION', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2411', 'BALLOON ATRIAL SEPTOSTOMY (BAS) (BEDSIDE) - 35.41', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2412', 'BALLOON DILATATION, ESOPHAGEAL STRICTURE - 45.13 & 42.92', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2413', 'BAS (DI CATHLAB) + ANESTESI - 35.41', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2414', 'BEDAH FLAP PERIODONTAL', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.2415', 'BILATERAL LUNG TRANSPLANTATION - 33.52', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2416', 'BILLROTH I & II/ RESEKSI GASTER PARSIAL - 43.6 / 43.7', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2417', 'BIOPSI EKSISI RONGGA MULUT - 29.29', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2418', 'BIOPSI GINJAL ANAK', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2419', 'BIOPSI GINJAL DEWASA', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2420', 'BIOPSI JANTUNG - 37.53', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.2421', 'BIOPSI KELENJAR HIPOFISIS TRANSSFENOID - 07.14', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2422', 'BIOPSI KELENJAR LIUR - 26.12', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2423', 'BIOPSI KELENJAR PARATIROID - 06.13', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2424', 'BIOPSI LESI JINAK SINONASAL DENGAN ENDOSKOPI - 22.11', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2425', 'BIOPSI LIANG TELINGA - 18.12', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.2426', 'BIOPSI NEOPLASMA BASIS LIDAH - 27.24', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2427', 'BIOPSI NEOPLASMA BIBIR - 27.23', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2428', 'BIOPSI NEOPLASMA BRONKUS DENGAN ENDOSKOPI - 33.24', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2429', 'BIOPSI NEOPLASMA CAVUM NASI - 21.22', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2430', 'BIOPSI NEOPLASMA ESOFAGUS DENGAN ENDOSKOPI FLEKSIBEL -\n42.24', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2431', 'BIOPSI NEOPLASMA ESOFAGUS DENGAN ENDOSKOPI RIGID -\n42.24', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2432', 'BIOPSI NEOPLASMA HIPOFARING - 29.12', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.2433', 'BIOPSI NEOPLASMA LARING DENGAN ENDOSKOPI - 31.44', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2434', 'BIOPSI NEOPLASMA LIDAH - 25.02', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2435', 'BIOPSI NEOPLASMA NASOFARING - 29.12', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2436', 'BIOPSI NEOPLASMA PALATUM DURUM - 27.21', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2437', 'BIOPSI NEOPLASMA RONGGA MULUT - 27.24', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2438', 'BIOPSI NEOPLASMA SINONASAL APP BUCOGINGIVAL - 22.61', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2439', 'BIOPSI NEOPLASMA SINONASAL DENGAN ENDOSKOPI - 22.11', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2440', 'BIOPSI NEOPLASMA TRAKEA DENGAN ENDOSKOPI - 31.44', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2441', 'BIOPSI NEOPLASMA UVULA DAN PALATUM MOLE - 27.22', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2442', 'BIOPSI PER-LAPAROTOMI - 54.11 & 54.4', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2443', 'BIOPSI PROSTAT TRANSPERINEAL', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2444', 'BIOPSI PROSTAT TRANSRECTAL', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2445', 'BIOPSI REKTUM, GA - 48.25', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2446', 'BIOPSI TELINGA TENGAH DAN DALAM - 20.32', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2447', 'BIOPSI TERBUKA LARING ATAU TRAKEA - 31.45', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2448', 'BIOPSI TONSIL DAN ADENOID - 28.11', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2449', 'BIOPSY OF BLOOD VESSEL - 38.21', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2450', 'BIOPSY OF CHEST WALL - 34.23', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2451', 'BIOPSY OF DIAPHRAGM - 34.27', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2452', 'BIOPSY OF HEART - 37.25', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2453', 'BIOPSY OF LYMPHATIC STRUCTURE - 40.11', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2454', 'BIOPSY OF PERICARDIUM - 37.24', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2455', 'BLADDER DISTROPHY WITH PELVIC DIASTASIS, OPEN\nREDUCTION + RING EXTERNAL FIXATION', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2456', 'B-LYNCH - 69.99', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2457', 'BONE / SOF TISSUE MARGINAL EXCISION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2458', 'BONE GRAFT TO FACIAL BONE - 76.80', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2459', 'BONY BLOCK FOR JOINT INSTABILITY UPPER LIMB', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2460', 'BRANCHIAL CYST, EXCISION - 29.2', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2461', 'BRONKOSKOPI - 33.23', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2462', 'BRONKOSKOPI EBUS - TBNA - 33.27', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.2463', 'BRONKOSKOPI FIBER OPTIK - 33.22', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2464', 'BRONKOSKOPI MELALUI STOMA - 33.21', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2465', 'BUNIONECTOMY WITH SOFT TISSUE CORRECTION AND\nARTHRODESIS - 77.52', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2466', 'BUNIONECTOMY WITH SOFT TISSUE CORRECTION AND\nOSTEOTOMY OF THE FIRST METATARSAL - 77.51', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2467', 'BURSECTOMY - 83.5', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2468', 'BURSOTOMY OF HAND - 82.03', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2469', 'BUSINASI ANUS, GA - 48.99', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.2470', 'CALDWELL LUC - 22.61', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.2471', 'CANNULATION OF THORACIC DUCT - 40.61', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2472', 'CARDIOPLEGIA - 39.63', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2473', 'CARDIOTOMY - 37.11', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2474', 'CAROTID/VERTEBRAL ARTERI STENTING', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2475', 'CAROTID/VERTEBRAL ARTERI STENTING DENGAN ANESTESI', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2476', 'CAVAL-PULMONARY ARTERY ANASTOMOSIS - 39.21 BCPS /\nGLENN SHUNT', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2477', 'CENTRAL VENOUS CATHETER PLACEMENT WITH GUIDANCE -\n38.97', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2478', 'CENTRAL VENOUS LINE CARDIOVASCULAR CARE UNIT - 89.62', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.2479', 'CENTRALIZATION RADIAL CLUB HAND', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2480', 'CEREBRAL PALSY, SINGLE EVENT MULTILEVEL SURGERY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2481', 'CHOLANGIOSCOPY IN HEPATO PANCREATICO BILIARY\nPROCEDUR (MIS/OPEN) (OTHER DIAGNOSTIC PROCEDURES ON BILIARY TRACT) - 51.19', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2482', 'CHOLECYSTECTOMY, LAPAROSCOPY - 51.23', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2483', 'CHOLECYSTECTOMY, OPEN - 51.22', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2484', 'CIRCUMCISI, GA - 64.0', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.2485', 'CLIPPING OF ANEURYSM - 39.51', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2486', 'CLOACOSCOPY - 70.21, 57.32, 48.23', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.2487', 'CLOSED OSTEOPLASTY [OSTEOTOMY] OF MANDIBULAR RAMUS -\n76.61', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2488', 'CLOSED REDUCTION OF DISLOCATION OF HAND AND FINGER -\n79.74', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2489', 'CLOSED REDUCTION OF TEMPOROMANDIBULAR DISLOCATION -\n76.82', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2490', 'CLOSURE OF BRONCHIAL FISTULA - 33.42', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2491', 'CLOSURE OF EXTERNAL FISTULA OF TRACHEA - 31.72', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2492', 'CLOSURE OF FISTULA OF DIAPHRAGM - 34.83', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2493', 'CLOSURE OF FISTULA OF LARYNX - 31.62', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2494', 'CLOSURE OF FISTULA OF THORACIC DUCT - 40.63', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2495', 'CLOSURE OF LACERATION OF LUNG - 33.43', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2496', 'CLOSURE OF OTHER FISTULA OF THORAX - 34.73', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2497', 'CLOSURE OF OTHER FISTULA OF TRACHEA - 31.73', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2498', 'CLOSURE OF OTHER FISTULA OF URETHRA - 58.43', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2499', 'CLOSURE OF THORACOSTOMY - 34.72', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2500', 'CLOSURE OF URETHROSTOMY - 58.42', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2501', 'CO ARCTATIO BALLON + STENTING - 35.96', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2502', 'COARCTATIO AORTA STENTING TRANSKATETER + ANESTESI -\n36.06', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2503', 'COILING ANEURISMA (STENT-ASSISTED ATAU BALLOON-\nASISTED)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2504', 'COILING ANEURISMA KOMPLEKS', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2505', 'COILING ANEURISMA MULTIPLE', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2506', 'COILING ANEURISMA SIMPEL', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2507', 'COLLING ANEURISMA INTRAKRANIAL', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2508', 'COMBINED HEART-LUNG TRANSPLANTATION - 33.6', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2509', 'COMPLETE SUBSTERNAL THYROIDECTOMY - 06.52', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2510', 'CONDUIT STENTING PERKUTAN + ANESTESI - 35.9', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2511', 'CONGENITAL PSEUDOARTHROSIS OF TIBIA, PALEY CROSSUNION\nPROCEDURE', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2512', 'CONJUNCTIVA, CONJUNCTIVAL RESECTION', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2513', 'CONJUNCTIVA, POSTERIOR SUBTENON INJECTION', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.2514', 'CONTROL OF HEMORRHAGE FOLLOWING VASCULAR SURGERY -\n39.41', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2515', 'CONTROL OF HEMORRHAGE, NOT OTHERWISE SPECIFIED - 39.98', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2516', 'CORECTIVE OSTEOTOMY MALUNION MULTIPLE UPOER LIMB', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2517', 'CORECTIVE OSTEOTOMY MALUNION SINGLE UPPER LIMB', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2518', 'CORNEA, AMNIOTIC MEMBRANE TRANSPLANTATION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2519', 'CORNEA, ANTERIOR STROMAL PUNCTURE', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.2520', 'CORNEA, INTRAL STROMAL INJECTION', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.2521', 'CREATION OF CONDUIT BETWEEN ATRIUM AND PULMONARY\nARTERY - 35.94', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.2522', 'CREATION OF CONDUIT BETWEEN LEFT VENTRICLE AND AORTA -\n35.93', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.2523', 'CREATION OF CONDUIT BETWEEN RIGHT VENTRICLE AND\nPULMONARY ARTERY - 35.92', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.2524', 'CREATION OF PLEUROPERITONEAL SHUNT - 34.05', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2525', 'CREATION OF SEPTAL DEFECT IN HEART - 35.42', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.2526', 'CROWN LENGHTENING DENGAN ASTEOKTOMI', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.2527', 'CROWN LENGHTENING TANPA OSTEOKTOMI', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.2528', 'CRYPTECTOMY / FISTULECTOMY, GA - 49.12', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.2529', 'CUCI TRAKEA DAN BRONKUS - 96.56', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2530', 'CYSTOJEJENOSTOMI, ROUX EN Y, PSEUDOKISTA PANKREAS -\n52.4, 45.91', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2531', 'DAKRIOSISTORINOSTOMI (DCR) - 04.42', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2532', 'DAWO / SAWO - 22.01', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.2533', 'DECOMPRESSION ENDOLYMPATIC SAC EXPOSURE - 20.93', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2534', 'DECORTICATION OF LUNG - 34.51', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2535', 'DEKOMPRESI SARAF FASIALIS - 04.42', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2536', 'DEKOMPRESI SARAF OPTIKUS - 04.42', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2537', 'DELAYED SUTURE OF FLEXOR TENDON OF HAND - 82.42', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2538', 'DELAYED SUTURE OF OTHER TENDON OF HAND - 82.43', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2539', 'DELAYED SUTURE OF TENDON - 83.62', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2540', 'DETORSI TESTIS, GA - 62.99', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.2541', 'DEVASCULARISATION OPERATION - 44.99', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2542', 'DEVELOPMENTAL DYSLPASIA OF HIP OSTEOTOMY OF HIP', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2543', 'DEVELOPMENTAL DYSLPASIA OF HIP OSTEOTOMY OF PROXIMAL\nFEMUR', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2544', 'DEVELOPMENTAL DYSLPASIA OF HIP, CLOSED REDUCTION +\nCAST', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2545', 'DEVELOPMENTAL DYSLPASIA OF HIP, OPEN REDUCTION + CAST', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2546', 'DILATASI DUKTUS FRONTONASAL - 96.21', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2547', 'DILATASI ESOFAGUS - 42.92', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2548', 'DILATASI KATUP AORTA (BALON AORTIC VALVULOTOMY /\nVALVULOPLASTY) DENGAN ANESTESI - 35.01', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2549', 'DILATASI KATUP MITRAL (BALON MITRAL VALVULOTOMY /\nVALVULOPLASTY) DENGAN TRANS ESOFAGEAL EKOKARDIOGRAFI (TEE) GUIDING DAN ANESTESI - 35.02', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2550', 'DILATASI KATUP PULMONAL (BALON PULMONAL VALVOTOMY) PADA CRITICAL PULMONARY STENOSIS + ANESTESI - 35.03', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2551', 'DILATASI KATUP PULMONAL (BALON PULMONAL VALVULOTOMY / VALVULOPLASTY) DENGAN ANESTESI - 35.03', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2552', 'DISARTICULATION OF ANKLE - 84.13', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2553', 'DISARTICULATION OF ELBOW - 84.06', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2554', 'DISARTICULATION OF KNEE - 84.16', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2555', 'DISARTICULATION OF WRIST - 84.04', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2556', 'DISEKSI LEHER RADIKAL - 40.42', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2557', 'DISEKSI LEHER RADIKAL MODIFIKASI - 40.41', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2558', 'DISEKSI LEHER SELEKTIF - 40.3', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2559', 'DIVERTIKULEKTOMI FARING - 29.32', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2560', 'DIVISION OF LARYNGEAL NERVE - 31.91', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2561', 'DIVISION OF MUSCLE OF HAND - 82.19', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2562', 'DIVISION OF PENILE ADHESIONS - 64.93', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2563', 'DORSUMSISI ANAK', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2564', 'DORSUMSISI DEWASA', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2565', 'DOUBLE INTERNAL MAMMARY-CORONARY ARTERY BYPASS -\n36.16', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.2566', 'DRAINAGE EKSTERNA KASUS BILIARIS, GA - 51.04', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2567', 'DRAINAGE EKSTERNA KISTA PANKREAS TERINFEKSI / IMMATURE\n- 52.01', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2568', 'DRAINAGE INTERNA KASUS BILIARIS, GA - 51.36', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2569', 'DSA KRANIOSERVIKAL', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2570', 'DSA SPINAL', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2571', 'DUODENODUODENOSTOMY, DUODENAL OBSTRUCTION - 45.90', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2572', 'DUODENOJEJUNOSTOMY, DUODENAL OBSTRUCTION - 45.90', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2573', 'EKSISI BAKER CYST, GA - 83.31', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2574', 'EKSISI DIVERTIKULUM ESOFAGUS - 42.31', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2575', 'EKSISI DUKTUS TIROGLOSUS - 06.7', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2576', 'EKSISI FISTEL / ABSES PREAURICULAR - 18.21', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.2577', 'EKSISI GANGLION, UPPER LIMB, GA - 83.31', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2578', 'EKSISI GRANULOMA UMBILICALIS - 54.3', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2579', 'EKSISI HEMANGIOMA BESAR/ MULTIPLE, GA - 86.4', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2580', 'EKSISI HEMANGIOMA DENGAN SKIN GRAFT STSG/FTSG, GA -\n86.4, 86.69', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2581', 'EKSISI HEMANGIOMA KECIL, GA - 86.3', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2582', 'EKSISI KISTA DUKTUS KOLEDOKUS + ROUX EN Y - 51.63, 51.37', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2583', 'EKSISI KULIT LUAS - 86.4', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2584', 'EKSISI LESI DI FARING - 29.39', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2585', 'EKSISI LESI DI TONSIL DAN ADENOID - 28.92', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2586', 'EKSISI LESI HIDUNG - 21.30', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.2587', 'EKSISI LESI LARING (PAPILOMA, NODUL) - 30.09', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2588', 'EKSISI LESI LIANG TELINGA - 18.29', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.2589', 'EKSISI LESI NEOPLASMA PALATUM DURUM - 27.31', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2590', 'EKSISI LESI TELINGA TENGAH - 20.51', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2591', 'EKSISI LESI TRAKEA - 31.5', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2592', 'EKSISI LUAS LIANG TELINGA - 18.31', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2593', 'EKSISI LUAS NEOPLASMA PALATUM DURUM - 27.32', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2594', 'EKSISI NEOPLASMA LARING DENGAN LASER - 31.69', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2595', 'EKSISI NEOPLASMA TELINGA - 18.12', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2596', 'EKSISI NEUROMA AKUSTIK - 04.01', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2597', 'EKSISI PARSIAL KELENJAR HIPOFISIS TRANSSFENOID - 07.62', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2598', 'EKSISI POLIP REKTI, GA - 48.35', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2599', 'EKSISI PSEUDOKISTA PANKREAS - 52.5', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2600', 'EKSISI TAG TONSIL - 28.4', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2601', 'EKSISI TERATOMA RETROPERITONEAL - 59.00', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2602', 'EKSISI TIROID LINGUAL - 06.6', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2603', 'EKSISI TONSIL LINGUAL - 28.3', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2604', 'EKSISI TOTAL KELENJAR HIPOFISIS TRANSSFENOID - 07.65', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2605', 'EKSISI UVULA - 27.72', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2606', 'EKSISI, GA - 83.39', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2607', 'EKSISI, LIGASI, KAUTERISASAI POLIP PER-KOLONOSKOPI - 48.36', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2608', 'EKSPLORASI ABSES MULTIPEL - 28.0', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2609', 'EKSPLORASI DAN REPARASI TRAUMA SARAF KRANIAL/PERIFER -\n04.76', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2610', 'EKSPLORASI LAPARATOMI - 54.11', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2611', 'EKSTIRPASI / EKSISI +/- STRIPPING, GA - 86.4', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2612', 'EKSTIRPASI / EKSISI, GA - 83.39', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2613', 'EKSTIRPASI ANGIOFIBROMA NASOFARING - 29.39', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2614', 'EKSTIRPASI KELENJAR SUBLINGUAL PARSIAL - 26.31', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2615', 'EKSTIRPASI KELENJAR SUBLINGUAL TOTAL - 26.32', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2616', 'EKSTIRPASI KELENJAR SUBMANDIBULA PARSIAL - 26.31', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2617', 'EKSTIRPASI KELENJAR SUBMANDIBULA TOTAL - 26.32', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2618', 'EKSTIRPASI KISTA BRAKIAL - 29.2', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2619', 'EKSTIRPASI MASSA SINONASAL DENGAN PENDEKATAN\nENDOSKOPI - 21.32', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2620', 'EKSTRAKSI BENDA ASING BRONKUS - 98.15', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2621', 'EKSTRAKSI BENDA ASING ESOFAGUS - 98.02', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2622', 'EKSTRAKSI BENDA ASING FARING - 98.13', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.2623', 'EKSTRAKSI BENDA ASING HIDUNG - 98.12', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.2624', 'EKSTRAKSI BENDA ASING LARING - 98.14', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2625', 'EKSTRAKSI BENDA ASING MULUT - 98.01', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.2626', 'EKSTRAKSI BENDA ASING TELINGA - 98.11', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.2627', 'EKSTRAKSI BENDA ASING TONSIL / ADENOID DENGAN INSISI -\n28.91', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2628', 'EKSTRAKSI BENDA ASING TRAKEA - 98.15', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2629', 'ELECTROPHYSIOLOGY STUDY / EPSL - 37.26', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2630', 'ELECTROPHYSIOLOGY STUDY / EPSL - 37.27', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2631', 'EMBOLISASI AVF KOMPLEKS', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2632', 'EMBOLISASI AVF SIMPLE', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2633', 'EMBOLISASI BALLON', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2634', 'EMBOLISASI BRAIN AVM KOMPLEKS KOMBINASI\nTRANSARTERIAL-TRANSVENA', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2635', 'EMBOLISASI BRAIN AVM KOMPLEKS TRANSARTERIAL', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2636', 'EMBOLISASI BRAIN AVM SIMPEL', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2637', 'EMBOLISASI CCF KOMPLEKS - BALLONING / COIL', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2638', 'EMBOLISASI CCF SIMPLE - BALLLOONING', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2639', 'EMBOLISASI CEREBRAL-GLUE', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2640', 'EMBOLISASI GLUE', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2641', 'EMBOLISASI KASUS TRAUMA NEUROVASKULAR', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2642', 'EMBOLISASI KASUS TUMOR OTAK HIPERVASKULER', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2643', 'EMBOLISASI ONYX', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2644', 'EMBOLISASI PERIOPERATIF', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2645', 'EMBOLISASI SPINAL AVM/AVF', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2646', 'EMBOLISASI SPINAL KOMPLEKS', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2647', 'EMBOLISASI SPINAL SIMPEL', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2648', 'EMBOLISASI TUMOR KOMPLEKS', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2649', 'EMBOLISASI TUMOR SIMPLE', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2650', 'EMBOLISASI/COILING FISTULA - 39.79', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2651', 'ENDARTERECTOMY, ABDOMINAL ARTERIES - 38.16', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2652', 'ENDARTERECTOMY, AORTA - 38.14', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2653', 'ENDARTERECTOMY, LOWER LIMB ARTERIES - 38.18', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2654', 'ENDARTERECTOMY, OTHER THORACIC VESSELS - 38.15', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2655', 'ENDARTERECTOMY, OTHER VESSELS OF HEAD AND NECK - 38.12', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2656', 'ENDARTERECTOMY, UNSPECIFIED SITE - 38.10', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2657', 'ENDARTERECTOMY, UPPER LIMB VESSELS - 38.13', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2658', 'ENDORECTAL PULL THROUGH (SOAVE- BOLLEY PROCEDURE) -\n48.41', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2659', 'ENDOSKOPI NASOFARINGEKTOMI - 29.39', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2660', 'ENDOVASCULAR (TOTAL) EMBOLIZATION OR OCCLUSION OF\nHEAD AND NECK VESSELS - 39.72', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2661', 'ENDOVASCULAR EMBOLIZATION OR OCCLUSION OF VESSEL(S)\nOF HEAD OR NECK USING BARE COILS - 39.75', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2662', 'ENDOVASCULAR EMBOLIZATION OR OCCLUSION OF VESSEL(S) OF HEAD OR NECK USING BIOACTIVE COILS - 39.76', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2663', 'ENDOVASCULAR IMPLANTATION OF BRANCHING OR\nFENESTRATED GRAFT(S) IN AORTA - 39.78', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2664', 'ENDOVASCULAR IMPLANTATION OF GRAFT IN THORACIC AORTA\n- 39.73', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2665', 'ENDOVASCULAR IMPLANTATION OF OTHER GRAFT IN\nABDOMINAL AORTA - 39.71', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2666', 'ENDOVASCULAR REMOVAL OF OBSTRUCTION FROM HEAD AND\nNECK VESSEL(S) - 39.74', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2667', 'ENLARGEMENT OF EXISTING ATRIAL SEPTAL DEFECT - 35.41', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.2668', 'EPIDURAL STEROID INJECTION (>1 LEVEL)', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.2669', 'EPIDURAL STEROID INJECTION (SINGLE LEVEL)', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.2670', 'EPIGLOTIKTOMI - 30.21', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2671', 'ESOFAGEAL MANOMETRI - 89.32', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2672', 'ESOFAGOSKOPI - 42.23', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2673', 'ESOFAGOSTOMI - 42.10', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2674', 'ESOFAGOSTOMI SERVIKAL - 42.11', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2675', 'ESOFAGOTOMI 1/3 PROKSIMAL - 42.0', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2676', 'ESOPHAGEAL REPLACEMENT PROCEDURE, ESOPHAGEAL\nATRESIA, COLONIC TRANSPOSITION - 42.55', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.2677', 'ESOPHAGEAL REPLACEMENT PROCEDURE, ESOPHAGEAL\nATRESIA, GASTRIC PULL-UP - 42.52 / 42.62', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2678', 'ESOPHAGECTOMY, NOT OTHERWISE SPECIFIED - 42.40', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2679', 'ESOPHAGOMYOTOMY (HELLER), GA - 42.7', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2680', 'ESOPHAGOSTOMY + GASTROSTOMY, ESOPHAGEAL ATRESIA, GA\n- 42.11 & 43.19', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2681', 'ESOPHAGOSTOMY + GASTROSTOMY, ESOPHAGEAL ATRESIA, LA -\n42.11 & 43.19', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2682', 'ESOPHAGOSTOMY, ESOPHAGEAL ATRESIA, GA - 42.11', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2683', 'ESOPHAGOSTOMY, ESOPHAGEAL ATRESIA, LA - 42.11', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2684', 'ETMOIDEKTOMI (FESS) - 22.63', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2685', 'ETMOIDEKTOMI EKSTERNAL - 22.51', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2686', 'EVAKUASI CAIRAN PERICARD - 37.0', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.2687', 'EVAR + PROSTHESIS - 39.71', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2688', 'EVENTRASIO DIAFRAGMA, PLIKASI - 53.81', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2689', 'EXCISION OF ANEURYSM OF HEART - 37.32', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.2690', 'EXCISION OF BONE FOR GRAFT - 77.7', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2691', 'EXCISION OF LESION OF MUSCLE - 83.32', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2692', 'EXCISION OF LESION OF MUSCLE OF HAND - 82.22', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2693', 'EXCISION OF LESION OF OTHER SOFT TISSUE - 83.39', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2694', 'EXCISION OF LESION OF TENDON SHEATH - 83.31', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2695', 'EXCISION OF LESION OF TENDON SHEATH OF HAND - 82.21', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2696', 'EXCISION OF LESION OR TISSUE OF DIAPHRAGM - 34.81', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2697', 'EXCISION OF MUSCLE OR FASCIA FOR GRAFT - 83.43', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2698', 'EXCISION OF MUSCLE OR FASCIA OF HAND FOR GRAFT - 82.34', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2699', 'EXCISION OF OTHER LESION OF SOFT TISSUE OF HAND - 82.23', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2700', 'EXCISION OF TENDON FOR GRAFT - 83.41', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2701', 'EXCISION OF TENDON OF HAND FOR GRAFT - 82.32', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2702', 'EXCISION OR CORRECTION OF BUNIONETTE - 77.54', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2703', 'EXCISION OR DESTRUCTION OF LESION OF CHEST WALL - 34.4', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2704', 'EXCISION OR DESTRUCTION OF LESION OR TISSUE OF\nMEDIASTINUM - 34.3', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2705', 'EXCISION OR DESTRUCTION OF LESION OR TISSUE OF URETHRA -\n58.3', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2706', 'EXCISION OR DESTRUCTION OF OTHER LESION OR TISSUE OF\nHEART, ENDOVASCULAR APPROACH - 37.34', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.2707', 'EXCISION OR DESTRUCTION OF OTHER LESION OR TISSUE OF\nHEART, OPEN APPROACH - 37.33', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.2708', 'EXCISION OR DESTRUCTION OF OTHER LESION OR TISSUE OF\nHEART, THORACOSCOPIC APPROACH - 37.37', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.2709', 'EXCISION OR OTHER DESTRUCTION OF BARTHOLIN\'S GLAND\n(CYST) - 71.24', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2710', 'EXCISION, DESTRUCTION, OR EXCLUSION OF LEFT ATRIAL\nAPPENDAGE (LAA) - 37.36', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.2711', 'EXPLORATION OF TENDON SHEATH OF HAND - 82.01', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2712', 'EXPLORATION OF THYMUS FIELD - 07.91', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2713', 'EXPLORATORY THORACOTOMY - 34.02', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2714', 'EXTRACORPOREAL CIRCULATION AUXILIARY TO OPEN HEART\nSURGERY - 39.61', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2715', 'EXTRACORPOREAL MEMBRANE OXYGENATION - ECMO - 39.65', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2716', 'EXTRACRANIAL-INTRACRANIAL (EC-IC) VASCULAR BYPASS -\n39.28', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2717', 'EYE, GLAUCOMA, GLAUCOMA DRAINAGE DEVICE / TUBE\nIMPLAN GLAUCOMA', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2718', 'EYE, GLAUKOMA, LASER INDOTOMY', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2719', 'FARINGEKTOMI - 29.33', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2720', 'FARINGOTOMI - 29.0', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2721', 'FASCIOTOMY - 83.14', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2722', 'FASCIOTOMY OF HAND - 82,12', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2723', 'FENESTRASI TELINGA DALAM - 20.61', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2724', 'FIBER-OPTIC BRONCHOSCOPY - 33.22', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2725', 'FISTULASASI TRAKEOESOFAGUS - 31.95', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2726', 'FISTULEKTOMI PERIANAL FISTEL, GA - 49.12', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.2727', 'FISTULIZATION OF THORACIC DUCT - 40.62', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2728', 'FLOW DIVERTER INTRAKRANIAL', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2729', 'FLOW DIVERTER STENT', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2730', 'FREE FUNCTIONAL MUSCLE TRANSFER FOR BRACHIAL PLEXUS\nINJURY', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2731', 'FREEING OF VESSEL - 39.91', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2732', 'FRENEKTOMI LINGUAL - 25.92', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.2733', 'FRONTAL SINUSOTOMI - 22.41', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2734', 'FRONTOETMOIDEKTOMI EKSTERNAL - 22.63', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2735', 'FUNDOPLIKASI GASTER - 44.66', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2736', 'GANGLION IMPAR BLOCK', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.2737', 'GANGLIONEKTOMI SFENOPALATINA - 05.21', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2738', 'GASTRIC REPAIR, GASTRIC PERFORATION - 44.41', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2739', 'GASTROPEXY, GASTRIC MALROTATION - 44.64', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2740', 'GASTROTOMY ANAK, GA - 43.19', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2741', 'GASTROTOMY ANAK, LA - 43.19', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2742', 'GASTROTOMY NEONATES, GA - 43.19', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2743', 'GASTROTOMY NEONATES, LA - 43.19', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2744', 'GENIOGLOSSUS ADVANCEMENT - 76.68', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2745', 'GENITOPLASTY (CLITOROPLASTY,VAGINOPLASTY,PHALIOPLASTY), GA - 71.4,\n70.61', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2746', 'GINGIVAL ABLASI', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.2747', 'GINGIVECTOMY / GINGIVOPLASTY', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.2748', 'GLOSEKTOMI PARSIAL / HEMIGLOSEKTOMI - 25.2', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2749', 'GLOSEKTOMI RADIKAL - 25.4', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2750', 'GLOSEKTOMI TOTAL - 25.3', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2751', 'GRAFT OF MUSCLE OR FASCIA - 83.82', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2752', 'GRAFT SARAF KRANIAL / PERIFER - 04.5', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2753', 'HAIR TRANSPLANT BESAR - 86.64', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2754', 'HAIR TRANSPLANT KECIL - 86.64', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2755', 'HAIR TRANSPLANT SEDANG - 86.64', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2756', 'HEART REVASCULARIZATION BY ARTERIAL IMPLANT - 36.2', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.2757', 'HEART TRANSPLANTATION - 37.51', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.2758', 'HECTING KELENJAR TIROID - 06.93', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2759', 'HECTING LASERASI FARING - 29.51', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.2760', 'HECTING LASERASI KELENJAR LIUR - 26.41', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.2761', 'HECTING LASERASI LARING - 27.53', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2762', 'HECTING LASERASI LIDAH - 25.51', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.2763', 'HECTING LASERASI PALATUM - 27.61', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.2764', 'HECTING LASERASI TELINGA LUAR - 18.4', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.2765', 'HEMIKOLEKTOMI DEKSTRA - EXTENDED, GA - 45.79', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2766', 'HEMIKOLEKTOMI DEKSTRA, GA - 45.73', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2767', 'HEMIKOLEKTOMI SINISTRA, GA - 45.75', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2768', 'HEMIKORDEKTOMI - 30.29', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2769', 'HEMILARINGEKTOMI - 30.1', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2770', 'HERNIA DIAFRAGMATIKA, REPAIR HERNIA - 53.72', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2771', 'HYMENORRHAPHY - 70.76', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2772', 'HYPOTHERMIA (SYSTEMIC) INCIDENTAL TO OPEN HEART\nSURGERY - 39.62', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2773', 'IMPLAN KOKLEA - 20.96', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2774', 'IMPLANT OF PULSATION BALLOON - 37.61', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2775', 'IMPLANT OF SINGLE VENTRICULAR (EXTRACORPOREAL)\nEXTERNAL HEART ASSIST SYSTEM - 37.65', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2776', 'IMPLANTASI PACU JANTUNG PERMANEN DUA CHAMBER - 00.50', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2777', 'IMPLANTASI PACU JANTUNG PERMANEN DUA CHAMBER (PPM\nDUAL CHAMBER) - 37.72', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.2778', 'IMPLANTASI PACU JANTUNG PERMANEN SATU CHAMBER -\n00.50', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2779', 'IMPLANTASI PACU JANTUNG PERMANEN SATU CHAMBER (PPM\nSINGLE CHAMBER) - 37.71', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.2780', 'IMPLANTASI PACU JANTUNG SEMENTARA - 00.50', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2781', 'IMPLANTASI PACU JANTUNG SEMENTARA (TPM) - 37.78', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2782', 'IMPLANTATION OF AUTOMATIC CARDIOVERTER/DEFIBRILLATOR\nLEAD(S) ONLY - 37.95', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2783', 'IMPLANTATION OF AUTOMATIC CARDIOVERTER/DEFIBRILLATOR PULSE GENERATOR ONLY - 37.96', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2784', 'IMPLANTATION OF CARDIOMYOSTIMULATION SYSTEM - 37.67', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2785', 'IMPLANTATION OF DIAPHRAGMATIC PACEMAKER - 34.85', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2786', 'IMPLANTATION OF PROSTHETIC CARDIAC SUPPORT DEVICE\nAROUND THE HEART - 37.41', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2787', 'IMPLANTATION OF TOTAL INTERNAL BIVENTRICULAR HEART\nREPLACEMENT SYSTEM - 37.52', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.2788', 'IMPLANTATION OR INSERTION OF BIVENTRICULAR EXTERNAL\nHEART ASSIST SYSTEM - 37.60', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2789', 'IMPLANTATION OR REPLACEMENT OF AUTOMATIC CARDIOVERTER/DEFIBRILLATOR, TOTAL SYSTEM - AICD - 37.94', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2790', 'IMPLANTATION OR REPLACEMENT OF CAROTID SINUS\nSTIMULATION DEVICE, TOTAL SYSTEM - 39.81', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2791', 'IMPLANTATION OR REPLACEMENT OF CAROTID SINUS\nSTIMULATION LEAD(S) ONLY - 39.82', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2792', 'IMPLANTATION OR REPLACEMENT OF CAROTID SINUS\nSTIMULATION PULSE GENERATOR ONLY - 39.83', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2793', 'INCISION AND DRAINAGE OF PALMAR OR THENAR SPACE - 82.04', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2794', 'INCISION OF BRONCHUS - 33.0', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2795', 'INCISION OF CHEST WALL - 34.01', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2796', 'INCISION OF HEART, NOT OTHERWISE SPECIFIED - 37.10', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2797', 'INCISION OF LUNG - 33.1', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2798', 'INCISION OF LYMPHATIC STRUCTURES - 40.0', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2799', 'INCISION OF MEDIASTINUM - 34.1', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2800', 'INCISION OF VESSEL, ABDOMINAL ARTERIES - 38.06', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2801', 'INCISION OF VESSEL, ABDOMINAL VEINS - 38.07', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2802', 'INCISION OF VESSEL, AORTA - 38.04', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2803', 'INCISION OF VESSEL, LOWER LIMB ARTERIES - 38.08', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2804', 'INCISION OF VESSEL, LOWER LIMB VEINS - 38.09', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2805', 'INCISION OF VESSEL, OTHER THORACIC VESSELS - 38.05', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2806', 'INCISION OF VESSEL, OTHER VESSELS OF HEAD AND NECK -\n38.02', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2807', 'INCISION OF VESSEL, UNSPECIFIED SITE - 38.00', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2808', 'INCISION OF VESSEL, UPPER LIMB VESSELS - 38.03', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2809', 'INDUKSI PROSTAGLANDIN ( INDUKSI PERSALINAN DENGAN\nMEDIKAMENTOSA) - 73.4', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.2810', 'INFUNDIBULECTOMY - 35.34', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.2811', 'INITIAL INSERTION OF DUAL-CHAMBER DEVICE - 37.83', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2812', 'INITIAL INSERTION OF SINGLE-CHAMBER DEVICE, NOT SPECIFIED\nAS RATE RESPONSIVE - 37.81', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2813', 'INITIAL INSERTION OF SINGLE-CHAMBER DEVICE, RATE\nRESPONSIVE - 37.82', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2814', 'INJECTION OF SCLEROSING AGENT INTO VEIN - 39.92', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2815', 'INJECTION OF THERAPEUTIC SUBSTANCE INTO BURSA OF HAND -\n82.94', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2816', 'INJECTION OF THERAPEUTIC SUBSTANCE INTO HEART - 37.92', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2817', 'INJECTION OF THERAPEUTIC SUBSTANCE INTO PERICARDIUM -\n37.93', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2818', 'INJECTION OF THERAPEUTIC SUBSTANCE INTO\nTEMPOROMANDIBULAR JOINT - 76.85', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2819', 'INJECTION OF THERAPEUTIC SUBSTANCE INTO TENDON OF\nHAND - 82.95', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2820', 'INJECTION OR INFUSION OF THROMBOLYTIC AGENT (RTPA)', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2821', 'INJEKSI LARING - 31.0', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2822', 'INJEKSI OBAT TEURAPETIK KE TRAKEA - 31.94', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2823', 'INJEKSI TELINGA DALAM - 20.72', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2824', 'INSERTION OF IMPLANTABLE HEART ASSIST SYSTEM - 37.66', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2825', 'INSERTION OF IMPLANTABLE PRESSURE SENSOR WITHOUT LEAD FOR INTRACARDIAC OR GREAT VESSEL HEMODYNAMIC\nMONITORING - 38.26', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2826', 'INSERTION OF INTERCOSTAL CATHETER FOR DRAINAGE - 34.04', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2827', 'INSERTION OF INTERCOSTAL CATHETER FOR DRAINAGE - 34.04', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2828', 'INSERTION OF LEFT ATRIAL APPENDAGE DEVICE - 37.90', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2829', 'INSERTION OF NON-DRUG-ELUTING PERIPHERAL (NON-\nCORONARY) VESSEL STENT(S) - 39.90', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2830', 'INSERTION OF PERMANENT PACEMAKER, INITIAL OR\nREPLACEMENT, TYPE OF DEVICE NOT SPECIFIED - 37.80', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2831', 'INSERTION OF SYNTHETIC IMPLANT IN FACIAL BONE - 76.81', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2832', 'INSERTION OF TEMPORARY NON-IMPLANTABLE\nEXTRACORPOREAL CIRCULATORY ASSIST DEVICE - 37.62', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2833', 'INSERTION OF TEMPORARY TRANSVENOUS PACEMAKER\nSYSTEM - 37.78', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2834', 'INSERTION OF VESSEL-TO-VESSEL CANNULA - 39.93', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2835', 'INSERTION OR REPLACEMENT OF EPICARDIAL LEAD -\nELECTRODE INTO EPICARDIUM - 37.74', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2836', 'INSISI ABSES HIDUNG / SEPTUM - 21.1', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.2837', 'INSISI ABSES PERIANAL, GA - 49.01', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.2838', 'INSISI DAN DRAINAGE ABSES PREAURIKULAR - 18.21', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.2839', 'INSISI DAN KOMPRESI PSEUDOKISTA / HEMATOMA AURIKULA -\n18.09', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2840', 'INSISI DRAINASE ABSES RETROAURIKULAR / MASTOID - 20.21', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2841', 'INSISI DRAINASE ABSES\nTONSIL/PERITONSIL/PARAFARING/RETROFARING - 28.0', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2842', 'INSISI DRAINASE ABSES WAJAH / SUBMANDIBULA / ANGINA\nLUDOVICI - 27.0', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2843', 'INSISI DRAINASE KELENJAR LIUR - 26.0', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.2844', 'INSISI DRAINASE LIANG TELINGA - 18.02', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.2845', 'INSISI DRAINASE/ DEBRIDEMENT ABSES, GA - 86.04', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.2846', 'INSISI PALATUM - 27.1', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2847', 'INSISI UVULA - 27.71', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2848', 'INSISI WEB ESOFAGUS - 42.01', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2849', 'INTERATRIAL STENTING PERKUTAN + ANESTESI - 36.06', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2850', 'INTERATRIAL TRANSPOSITION OF VENOUS RETURN - 35.91', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.2851', 'INTERRUPTION OF THE VENA CAVA - 38.7', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2852', 'INTRA ARTERIAL CEREBRAL STEM CELL', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2853', 'INTRA-ABDOMINAL VENOUS SHUNT - 39.1', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2854', 'INTRAARTERY CEREBRAL STEM CELL', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2855', 'INTRALESIONAL BIOPSY WITH VRIESCOUPE', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2856', 'INTRALESIONAL EXCISION TUMOR', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2857', 'INTRAOPERATIVE CARDIAC PACEMAKER - 39.64', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2858', 'INTRATHORACIC ESOPHAGEAL ANASTOMOSIS WITH\nINTERPOSITION OF COLON - 42.55', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2859', 'INTRATHORACIC ESOPHAGEAL ANASTOMOSIS WITH\nINTERPOSITION OF SMALL BOWEL - 42.53', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2860', 'INTRATHORACIC ESOPHAGEAL ANASTOMOSIS WITH OTHER\nINTERPOSITION - 42.58', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2861', 'INTRATHORACIC ESOPHAGOESOPHAGOSTOMY - 42.51', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2862', 'INTRATHORACIC ESOPHAGOGASTROSTOMY - 42.52', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2863', 'INTRAVASCULAR SPECTROSCOPY - 38.23', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2864', 'INTUBASI DENGAN BRONKOSKOPI FLEKSIBEL - 96.04', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2865', 'IRIGASI SINUS - 22.00', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.2866', 'IRIGASI SINUS DARI OSTIUM ALAMIAH - 22.02', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.2867', 'ISTHMUSEKTOMI - 06.31', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2868', 'IVA (INSPEKSI VISUAL ASETAT) PEMERIKSAAN CERVIX LAINNYA (\nIVA , PAP SMEAR) - 67.19', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.2869', 'JARI SYNDACTYLY (MULTIPLE), EKSISI, GA - 86.85', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2870', 'JARI, POLYDACTYLY, AMPUTASI WITH REKONTRUKSI, GA - 84.01', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2871', 'JARI, SYNDACTYLY (SINGLE), EKSISI, GA - 86.85', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2872', 'JEJUNOSTOMY FEEDING, GA - 46.01', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2873', 'KANALOPLASTI/MEATOPLASTY - 18.6', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2874', 'KATETERISASI ARTERI/VENA PERIFER DILANJUTKAN PIAT - 99.10', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2875', 'KATETERISASI ARTERI/VENA PERIFER DILANJUTKAN\nTROMBOSUCTION - 39.74', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2876', 'KATETERISASI DIAGNOSTIK KORONER - 88.55', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2877', 'KATETERISASI DIAGNOSTIK PEMBULUH DARAH ARTERI /VENA\nPERIFER - 88.40', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2878', 'KATETERISASI DIAGNOSTIK PEMBULUH DARAH ARTERI /VENA\nPERIFER DENGAN IVUS - 88.40', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2879', 'KIMURA PROCEDURE, DUODENAL OBSTRUCTION - 45.90', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2880', 'KISTOGASTROSTOMI, PSEUDOKISTA PANKREAS, LAPAROSKOPI -\n51.39', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2881', 'KISTOGASTROSTOMI, PSEUDOKISTA PANKREAS, OPEN - 52.4', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2882', 'KLITOROPLASTI, GA - 71.4', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2883', 'KOILING EMBOLISASI ARTERI/VENA PERIFER - 39.79', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2884', 'KOLOSTOMI ANAK - 46.11', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2885', 'KOLOSTOMI NEONATUS - 46.11', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2886', 'KOMPRESI BIMANUAL INTERNA/EKSTRNA', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.2887', 'KONKOTOMI - 21.62', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.2888', 'KONTROL EPISTAKSIS DENGAN EKSISI MUKOSA HIDUNG DAN\nGRAFT KULIT KE', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2889', 'KONTROL EPISTAKSIS DENGAN KAUTERISASI DAN TAMPON -\n21.03', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2890', 'KONTROL EPISTAKSIS DENGAN LIGASI ARTERI ETMOID /\nSFENOPALATINA - 21.04', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2891', 'KONTROL EPISTAKSIS DENGAN LIGASI ARTERI MAKSILARIS\nTRANSANTRAL - 21.05', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2892', 'KONTROL EPISTAKSIS DENGAN TAMPON ANTERIOR - 21.01', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.2893', 'KONTROL EPISTAKSIS DENGAN TAMPON POSTERIOR - 21.02', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.2894', 'KONTROL PERDARAHAN PASCA TONSILEKTOMI &\nADENOIDEKTOMI - 28.7', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.2895', 'KORDEKTOMI - 30.22', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2896', 'KOREKSI SCOLIOSIS >90 DERAJAT', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2897', 'KOREKSI SCOLIOSIS 50-90 DERAJAT', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2898', 'KURETASE JARINGAN GRANULASI CAE - 18.02', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2899', 'KURETASE PERIODONTAL PER REGIO', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.2900', 'LABIRINTECTOMY TRANSMASTOID - 20.79', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2901', 'LADD\'S PROCEDURE, MIDGUT MALROTATION - 54.11, 54.59,\n47.19, 46.62', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2902', 'LAPARATOMI APPENDEKTOMI, GA - 54.11, 47.09', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2903', 'LAPARATOMI EXPLORASI / DIAGNOSTIK - 54.11', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2904', 'LAPAROSCOPIC REPAIR OF DIAPHRAGMATIC HERNIA, WITH\nTHORACIC APPROACH - 53.83', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2905', 'LAPAROSKOPI ABLASI ENDOMETRIOSIS - 68.23', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2906', 'LAPAROSKOPI ADHESIOLISIS PADA OVARIUM DAN TUBA - 65.81', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2907', 'LAPAROSKOPI BILATERAL SALPHINGOOVOREKTOMI - 65.63', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2908', 'LAPAROSKOPI DIAGNOSTIK - 54.21', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2909', 'LAPAROSKOPI DIAGNOSTIK - 54.21', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2910', 'LAPAROSKOPI KISTEKTOMI - 65.25', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2911', 'LAPAROSKOPI LHCT - 66.18', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2912', 'LAPAROSKOPI MIEKTOMI - 68.29', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2913', 'LAPAROSKOPI OSHADA - 68.29', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2914', 'LAPAROSKOPI OVARIAN DRILLING - 65.99', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2915', 'LAPAROSKOPI PERITONEUM - 54.51', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2916', 'LAPAROSKOPI RH - 68.61', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2917', 'LAPAROSKOPI TAH-BSO - 68.41', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2918', 'LAPAROSKOPI TUBECTOMY - 66.29', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2919', 'LAPAROSKOPI UNILATERAL SALPHINGOOVOREKTOMI - 65.41', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2920', 'LAPAROSKOPIK DIAGNOSTIK - 54.21', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2921', 'LAPAROTOMI ABDOMINAL PREGNANCY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2922', 'LAPAROTOMI ADHESIOLISIS - 54 11 & 54.59', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2923', 'LAPAROTOMI ADHESIOLISIS + RESEKSI + ANASTOMOSIS - 54.11\n& 54.59 & 45.62 & 45.91', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2924', 'LAPAROTOMI ADHESIOLISIS + RESEKSI + ANASTOMOSIS,\nNEONATUS - 54.11 & 54.59 & 45.62 & 45.91', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.2925', 'LAPAROTOMI ADHESIOLISIS + RESEKSI + STOMA - 54.11 & 54.59\n& 45.62 & 46.20', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2926', 'LAPAROTOMI ADHESIOLISIS + RESEKSI + STOMA, NEONATUS -\n54.11 & 54.59 & 45.62 & 46.20', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2927', 'LAPAROTOMI ADHESIOLISIS, NEONATUS - 54 11 & 54.59', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2928', 'LAPAROTOMI ASSISTED SWENSON TRANSANAL - 48.50', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2929', 'LAPAROTOMI, AFF PACKING HEPAR, TRAUMA - 50.99', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2930', 'LAPAROTOMI, PACKING HEPAR, TRAUMA - 54.11, 50.69', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2931', 'LARINGEKTOMI PARSIAL - 30.29', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2932', 'LARINGEKTOMI RADIKAL - 30.4', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2933', 'LARINGEKTOMI TOTAL - 30.3', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2934', 'LARINGOFISURE . 31.6', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2935', 'LARINGOSKOPI DIRECT - 31.42', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.2936', 'LASER ENDOVENOUSE VEIN - 39.79', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2937', 'LASER HEMORRHOIDOPLASTY (CONTROL OF HAEMORRHAGE\nFOLLOWING VASCULAR SURGERY) - 39.41', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2938', 'LASER HEMORRHOIDOPLASTY (OTHER PROCEDURES ON\nHEMORRHOIDS) - 49.49', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2939', 'LASER IN ANAL FISTULA - 48.33', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2940', 'LASER LARYNGEAL SURGERY - 31.98', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2941', 'LEPAS TAMPON VAGINA - 97.75', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.2942', 'LIGAMENT TRANSFER FOR JOINT INSTABILITY MUKTIPLE UPPER\nLIMB', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2943', 'LIGAMENT TRANSFER FOR JOINT INSTABILITY UPPER LIMB', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2944', 'LIGASI ARTERI KAROTIS EKSTERNA - 21.06', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2945', 'LIGASI PEMBULUH DARAH TIROID - 06.92', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2946', 'LIGASI TINGGI, HYDROCELE - 61.2', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2947', 'LIGATION AND STRIPPING OF VARICOSE VEINS, ABDOMINAL\nVEINS - 38.57', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2948', 'LIGATION AND STRIPPING OF VARICOSE VEINS, LOWER LIMB\nVEINS - 38.59', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2949', 'LIGATION AND STRIPPING OF VARICOSE VEINS, OTHER\nTHORACIC VESSELS - 38.55', 30237000, 'TINDAKAN OPERATIF'); +INSERT INTO `tarif_rs` (`ID_Tarif_RS`, `Tindakan_RS`, `Tarif_RS`, `Kategori_RS`) VALUES +('R.TO.2950', 'LIGATION AND STRIPPING OF VARICOSE VEINS, OTHER VESSELS\nOF HEAD AND NECK - 38.52', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2951', 'LIGATION AND STRIPPING OF VARICOSE VEINS, UNSPECIFIED\nSITE - 38.50', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2952', 'LIGATION AND STRIPPING OF VARICOSE VEINS, UPPER LIMB\nVESSELS - 38.53', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2953', 'LIGATION OF BRONCHUS - 33.92', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2954', 'LIGATION OF THORACIC DUCT - 40.64', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2955', 'LIP TIE INCISION, GA - 27.91', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.2956', 'LIPOMA, ATHEROMA, EXCISI/EXTIRPASI, LA - 86.3', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.2957', 'LIPOSUCTION BESAR - 86.63', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2958', 'LIPOSUCTION KECIL - 86.63', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.2959', 'LIPOSUCTION SEDANG - 86.63', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2960', 'LISIS PENYEMPITAN TRAKEA / LARING - 31.92', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2961', 'LOBEKTOMI - 06.39', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2962', 'LOBEKTOMI / SEGMENTEKTOMI HEPAR - 50.3', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.2963', 'LOWER BLEPHAROPLASTY - 08.7', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2964', 'LOWER LIMB AMPUTATION, NOT OTHERWISE SPECIFIED - 84.10', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2965', 'LUMBAR SYMPATHECTOMY - 05.23', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2966', 'LUNG TRANSPLANTATION, NOT OTHERWISE SPECIFIED - 33.50', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2967', 'LUNG VOLUME REDUCTION SURGERY - 32.22', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2968', 'LYMPH NODE (AXILLARY), VARIOUS LESIONS, EXCISION - 40.51', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2969', 'LYMPHATICS (AXILLARY), DEBULKING - 83.39', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2970', 'LYMPHATICS (AXILLARY), EXCISION - 86.4', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2971', 'LYMPHATICS (AXILLARY), SCLEROTHERAPY, WITH USG - 39.92', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2972', 'LYMPHATICS (FACE & NECK), CYSTIC HYGROMA, BIOPSY - 40.19', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.2973', 'LYMPHATICS (FACE & NECK), CYSTIC HYGROMA, DEBULKING -\n83.39', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2974', 'LYMPHATICS (FACE & NECK), CYSTIC HYGROMA,\nSCLEROTHERAPY, WITH USG - 39.92', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2975', 'LYSIS OF ADHESIONS OF HAND - 82.91', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2976', 'LYSIS OF ADHESIONS OF MUSCLE, TENDON, FASCIA, AND BURSA\n- 83.91', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2977', 'LYSIS OF ADHESIONS OF TRACHEA OR LARYNX - 31.92', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2978', 'MACRODACTYLY RAY AMPUTATION', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2979', 'MAKSILEKTOMI MEDIAL - 22.31', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2980', 'MAKSILEKTOMI PARSIAL - 76.39', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2981', 'MAKSILEKTOMI RADIKAL - 76.39', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2982', 'MAKSILEKTOMI TERBATAS - 76.39', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2983', 'MAKSILEKTOMI TOTAL - 76.39', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2984', 'MANDIBULEKTOMI PARSIAL - 76.31', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2985', 'MANDIBULEKTOMI TOTAL - 76.41', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2986', 'MAPCA STENTING TRANSKATETER + ANESTESI - 36.06', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2987', 'MARSUPIALISASI BARTOLIN - 71.23', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.2988', 'MARSUPIALISASI KISTA KELENJAR LIUR - 26.21', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2989', 'MARSUPIALISASI KISTA LARING - 30.01', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2990', 'MARSUPIALISASI KISTA OVARIUM - 64.21', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.2991', 'MASTOIDEKTOMI RADIKAL - 20.42', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2992', 'MASTOIDEKTOMI REVISI - 20.92', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2993', 'MASTOIDEKTOMI SEDERHANA - 20.41', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2994', 'MEDIAL BRACNH BLOCK', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.2995', 'MEDIASTINOSCOPY - 34.22', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2996', 'MIDFASIAL DEGLOVING - 22.62', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2997', 'MILES PROCEDURE, GA - 49.6', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2998', 'MINI FACELIFT - 86.82', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2999', 'MINIMAL/ LIMITED PSARP - 45.95', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3000', 'MIOTOMI KRIKOFARING - 29.31', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.3001', 'MIRINGOTOMI - 20.09', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.3002', 'MODIFIKASI BOGOTA BAG/SILO BAG, GA - 54.99', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.3003', 'MODIFIKASI BOGOTA BAG/SILO BAG, LA - 54.99', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.3004', 'MOHS MICROGRAPHIC SURGERY BESAR - 86.4', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.3005', 'MOHS MICROGRAPHIC SURGERY KECIL - 86.4', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.3006', 'MOHS MICROGRAPHIC SURGERY SEDANG - 86.4', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.3007', 'MONITORING THROMBOLISIS INTRAVENA', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.3008', 'MUCOCELE/RANULA, EXTIRPATION - 26.29', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.3009', 'MUSCLE TRANSFER OR TRANSPLANTATION - 83.77', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3010', 'MUSCULAR DISTROPHY, OPEN BIOPSY', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3011', 'MYOTOMY OF HAND - 82.02', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3012', 'NASOFARINGEKTOMI - 29.39', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.3013', 'NEKROTOMI, GA - 86.22', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.3014', 'NERVE TRANSFER PROCEDURE FOR NERVE INJURY', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3015', 'NEUREKTOMI POSTERIOR - 05.25', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.3016', 'OBLITERASI MASTOID/PENUTUPAN FISTEL MASTOID - 19.9', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.3017', 'OBTURATOR INTERIN RESIK AKRILIK MODIFIKASI SILIKON\nDENGAN HOLLOW BULP', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.3018', 'OKLUSI ASD DENGAN AMPLATZER - 35.52', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3019', 'OKLUSI PDA DENGAN AMPLATZER, COIL, PFM, ADO2, GA - 39.79', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3020', 'OKLUSI VSD DENGANAMPLATZER, NIT, LIFETECH, - 35.55', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3021', 'OKLUSI VSD DENGANAMPLATZER, NIT, LIFETECH, - 35.55', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3022', 'OPEN ABLATION OF LUNG LESION OR TISSUE - 32.23', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3023', 'OPEN AND OTHER REPLACEMENT OF AORTIC VALVE - 35.22', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3024', 'OPEN AND OTHER REPLACEMENT OF AORTIC VALVE WITH\nTISSUE GRAFT - 35.21', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3025', 'OPEN AND OTHER REPLACEMENT OF MITRAL VALVE - 35.24', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3026', 'OPEN AND OTHER REPLACEMENT OF MITRAL VALVE WITH\nTISSUE GRAFT - 35.23', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3027', 'OPEN AND OTHER REPLACEMENT OF PULMONARY VALVE -\n35.26', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3028', 'OPEN AND OTHER REPLACEMENT OF PULMONARY VALVE WITH\nTISSUE GRAFT - 35.25', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3029', 'OPEN AND OTHER REPLACEMENT OF TRICUSPID VALVE - 35.28', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3030', 'OPEN AND OTHER REPLACEMENT OF TRICUSPID VALVE WITH\nTISSUE GRAFT - 35.27', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3031', 'OPEN AND OTHER REPLACEMENT OF UNSPECIFIED HEART\nVALVE - 35.20', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3032', 'OPEN BIOPSY OF BRONCHUS - 33.25', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3033', 'OPEN BIOPSY OF LUNG - 33.28', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3034', 'OPEN CHEST CARDIAC MASSAGE - 37.91', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3035', 'OPEN CHEST CORONARY ARTERY ANGIOPLASTY - 36.03', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3036', 'OPEN CHEST TRANSMYOCARDIAL REVASCULARIZATION - 36.31', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3037', 'OPEN HEART VALVULOPLASTY OF AORTIC VALVE WITHOUT\nREPLACEMENT - 35.11', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3038', 'OPEN HEART VALVULOPLASTY OF MITRAL VALVE WITHOUT\nREPLACEMENT - 35.12', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3039', 'OPEN HEART VALVULOPLASTY OF PULMONARY VALVE\nWITHOUT REPLACEMENT - 35.13', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3040', 'OPEN HEART VALVULOPLASTY OF TRICUSPID VALVE WITHOUT\nREPLACEMENT - 35.14', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3041', 'OPEN HEART VALVULOPLASTY WITHOUT REPLACEMENT,\nUNSPECIFIED VALVE - 35.10', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3042', 'OPEN MEDIASTINAL BIOPSY - 34.26', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3043', 'OPEN REDUCTION OF ALVEOLAR FRACTURE - 76.77', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3044', 'OPEN REDUCTION OF DISLOCATION OF HAND AND FINGER -\n79.84', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3045', 'OPEN REDUCTION OF FRACTURE WITH INTERNAL FIXATION,\nOTHER SPECIFIED BONE - 79.39', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3046', 'OPEN REDUCTION OF MALAR AND ZYGOMATIC FRACTURE -\n76.72', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3047', 'OPEN REDUCTION OF TEMPOROMANDIBULAR DISLOCATION -\n76.83', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3048', 'OPERASI STOMA YANG LAIN, ANAK - 46.21', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3049', 'OPERASI STOMA YANG LAIN, NEONATUS - 46.21', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3050', 'OPERASI TUBA EUSTACHIUS - 20.8', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.3051', 'OPERATIONS ON CHORDAE TENDINEAE - 35.32', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3052', 'OPERATIONS ON OTHER STRUCTURES ADJACENT TO VALVES OF\nHEART - 35.39', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3053', 'OPERATIONS ON PAPILLARY MUSCLE - 35.31', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3054', 'OPERATIONS ON TRABECULAE CARNEAE CORDIS - 35.35', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3055', 'ORCHIOPEXY - 62.5', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3056', 'ORCHYDECTOMY, GA - 62.3', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.3057', 'ORCHYDOPEXY ASSISTED LAPAROSKOPI, GA - 54.21, 62.5', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3058', 'ORCHYDOPEXY TANPA EKSPLORASI, GA - 62.5', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.3059', 'OSSICULOPLASTY - 19.0', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.3060', 'OSSICULOPLASTY TAHAP II - 19.3', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.3061', 'OSTEOGENESIS IMPREFECTA, MULTIPLE OSTEOTOMY +\nINTERNAL FIXATION', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3062', 'OTHER (PERIPHERAL) VASCULAR SHUNT OR BYPASS - 39.29', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3063', 'OTHER AMPUTATION BELOW KNEE - 84.15', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3064', 'OTHER AND OPEN REPAIR OF DIAPHRAGMATIC HERNIA, WITH\nTHORACIC APPROACH - 53.84', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3065', 'OTHER AND UNSPECIFIED PNEUMONECTOMY - 32.59', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3066', 'OTHER AND UNSPECIFIED REPAIR OF ATRIAL SEPTAL DEFECT -\n35.71', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3067', 'OTHER AND UNSPECIFIED REPAIR OF ENDOCARDIAL CUSHION\nDEFECT - 35.73', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3068', 'OTHER AND UNSPECIFIED REPAIR OF UNSPECIFIED SEPTAL\nDEFECT OF HEART - 35.70', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3069', 'OTHER AND UNSPECIFIED REPAIR OF VENTRICULAR SEPTAL\nDEFECT - 35.72', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3070', 'OTHER AND UNSPECIFIED SEGMENTAL RESECTION OF LUNG -\n32.39', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3071', 'OTHER AND UNSPECIFIED THORACOSCOPIC OPERATIONS ON\nTHYMUS - 07.98', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3072', 'OTHER ANTESTERNAL ANASTOMOSIS OF ESOPHAGUS - 42.69', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3073', 'OTHER ANTESTERNAL ESOPHAGEAL ANASTOMOSIS WITH\nINTERPOSITION - 42.68', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3074', 'OTHER ANTESTERNAL ESOPHAGOCOLOSTOMY - 42.66', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3075', 'OTHER ANTESTERNAL ESOPHAGOENTEROSTOMY - 42.64', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3076', 'OTHER BRONCHOSCOPY - 33.23', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3077', 'OTHER BUNIONECTOMY - 77.58', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3078', 'OTHER BUNIONECTOMY WITH SOFT TISSUE CORRECTION -\n77.53', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3079', 'OTHER BYPASS ANASTOMOSIS FOR HEART REVASCULARIZATION\n- 36.19', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3080', 'OTHER CHANGE IN HAND MUSCLE OR TENDON LENGTH - 82.55', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3081', 'OTHER CHANGE IN MUSCLE OR TENDON LENGTH - 83.85', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3082', 'OTHER CLOSED REDUCTION OF FACIAL FRACTURE ((CLOSED\nREDUCTION OF ORBITAL FRACTURE) - 76.78', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3083', 'OTHER DIAGNOSTIC PROCEDURES ON BLOOD VESSELS - 38.29', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3084', 'OTHER DIAGNOSTIC PROCEDURES ON CHEST WALL, PLEURA,\nAND DIAPHRAGM - 34.28', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3085', 'OTHER DIAGNOSTIC PROCEDURES ON LUNG OR BRONCHUS -\n33.29', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3086', 'OTHER DIAGNOSTIC PROCEDURES ON LYMPHATIC STRUCTURES -\n40.19', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3087', 'OTHER DIAGNOSTIC PROCEDURES ON MEDIASTINUM - 34.29', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3088', 'OTHER ENDOVASCULAR PROCEDURES ON OTHER VESSELS -\n39.79', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3089', 'OTHER EXCISION OF LUNG - 32.9', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3090', 'OTHER EXCISION OF PLEURA - 34.59', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3091', 'OTHER EXCISION OF SOFT TISSUE - 83.49', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3092', 'OTHER EXCISION OF SOFT TISSUE OF HAND - 82.39', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3093', 'OTHER EXCISION OF VESSELS, ABDOMINAL ARTERIES - 38.66', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3094', 'OTHER EXCISION OF VESSELS, ABDOMINAL VEINS - 38.67', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3095', 'OTHER EXCISION OF VESSELS, AORTA, ABDOMINAL - 38.64', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3096', 'OTHER EXCISION OF VESSELS, LOWER LIMB ARTERIES - 38.68', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3097', 'OTHER EXCISION OF VESSELS, LOWER LIMB VEINS - 38.69', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3098', 'OTHER EXCISION OF VESSELS, OTHER VESSELS OF HEAD AND\nNECK - 38.62', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3099', 'OTHER EXCISION OF VESSELS, THORACIC VESSELS - 38.65', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3100', 'OTHER EXCISION OF VESSELS, UNSPECIFIED SITE - 38.60', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3101', 'OTHER EXCISION OF VESSELS, UPPER LIMB VESSELS - 38.63', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3102', 'OTHER EXCISION, FUSION AND REPAIR OF TOES - 77.57', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3103', 'OTHER FASCIECTOMY - 83.44', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3104', 'OTHER FASCIECTOMY OF HAND - 82.35', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3105', 'OTHER HAND MUSCLE TRANSFER OR TRANSPLANTATION - 82.58', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3106', 'OTHER HAND MUSCLE TRANSPOSITION - 82.59', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3107', 'OTHER HAND TENDON TRANSFER OR TRANSPLANTATION -\n82.56', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3108', 'OTHER HAND TENDON TRANSPOSITION - 82.57', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3109', 'OTHER HEART REVASCULARIZATION - 36.39', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3110', 'OTHER INCISION OF PLEURA - 34.09', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3111', 'OTHER INCISION OF SOFT TISSUE OF HAND - 82.09', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3112', 'OTHER INJECTION OF LOCALLY-ACTING THERAPEUTIC\nSUBSTANCE INTO SOFT TISSUE OF HAND - 82.96', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3113', 'OTHER INTRA-ABDOMINAL VASCULAR SHUNT OR BYPASS -\n39.26', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3114', 'OTHER INTRATHORACIC ANASTOMOSIS OF ESOPHAGUS - 42.59', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3115', 'OTHER INTRATHORACIC ESOPHAGOCOLOSTOMY - 42.56', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3116', 'OTHER INTRATHORACIC ESOPHAGOENTEROSTOMY - 42.54', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3117', 'OTHER INTRATHORACIC VASCULAR SHUNT OR BYPASS - 39.23', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3118', 'OTHER LOBECTOMY OF LUNG - 32.49', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3119', 'OTHER MANIPULATION OF TEMPOROMANDIBULAR JOINT -\n76.84', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3120', 'OTHER MUSCLE TRANSPOSITION - 83.79', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3121', 'OTHER MYECTOMY - 83.45', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3122', 'OTHER MYECTOMY OF HAND - 82.36', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3123', 'OTHER OPERATIONS ON BRONCHUS - 33.98', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3124', 'OTHER OPERATIONS ON CAROTID BODY, CAROTID SINUS AND\nOTHER VASCULAR BODIES - 39.89', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3125', 'OTHER OPERATIONS ON DIAPHRAGM - 34.89', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3126', 'OTHER OPERATIONS ON HEART AND PERICARDIUM - 37.99', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3127', 'OTHER OPERATIONS ON LARYNX - 31.98', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3128', 'OTHER OPERATIONS ON LUNG - 33.99', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3129', 'OTHER OPERATIONS ON LYMPHATIC STRUCTURES - 40.9', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3130', 'OTHER OPERATIONS ON MUSCLE, TENDON, AND FASCIA OF\nHAND - 82.99', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3131', 'OTHER OPERATIONS ON SEPTA OF HEART - 35.98', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3132', 'OTHER OPERATIONS ON THORACIC DUCT - 40.69', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3133', 'OTHER OPERATIONS ON THORAX - 34.99', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3134', 'OTHER OPERATIONS ON TRACHEA - 31.99', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3135', 'OTHER OPERATIONS ON VALVES OF HEART - 35.99', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3136', 'OTHER OPERATIONS ON VESSELS - 39.99', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3137', 'OTHER OPERATIONS ON VESSELS OF HEART - 36.99', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3138', 'OTHER ORTHOGNATHIC SURGERY ON MANDIBLE - 76.64', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3139', 'OTHER PARTIAL EXCISION OF THYMUS - 07.81', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3140', 'OTHER PARTIAL OSTECTOMY - 77.8', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3141', 'OTHER PERFUSION - 39.97', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3142', 'OTHER PLASTIC OPERATIONS ON FASCIA - 83.89', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3143', 'OTHER PLASTIC OPERATIONS ON HAND - 82.89', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3144', 'OTHER PLASTIC OPERATIONS ON MUSCLE - 83.87', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3145', 'OTHER PLASTIC OPERATIONS ON TENDON - 83.88', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3146', 'OTHER PLEURAL BIOPSY - 34.24', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3147', 'OTHER PUNCTURE OF ARTERY - 38.98', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3148', 'OTHER PUNCTURE OF VEIN - 38.99', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3149', 'OTHER RECONSTRUCTION OF THUMB - 82.69', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3150', 'OTHER RECONSTRUCTION OF URETHRA - 58.46', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3151', 'OTHER REPAIR AND PLASTIC OPERATIONS ON BRONCHUS -\n33.48', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3152', 'OTHER REPAIR AND PLASTIC OPERATIONS ON LUNG - 33.49', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3153', 'OTHER REPAIR AND PLASTIC OPERATIONS ON TRACHEA - 31.79', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3154', 'OTHER REPAIR OF ANEURYSM - 39.52', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3155', 'OTHER REPAIR OF CHEST WALL - 34.79', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3156', 'OTHER REPAIR OF DIAPHRAGM - 34.84', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3157', 'OTHER REPAIR OF HAND, FINGERS AND WRIST - 81.79', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3158', 'OTHER REPAIR OF HEART AND PERICARDIUM - 37.49', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3159', 'OTHER REPAIR OF LARYNX - 31.69', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3160', 'OTHER REPAIR OF SCROTUM AND TUNICA VAGINALIS - 61.49', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3161', 'OTHER REPAIR OF TESTIS - 62.69', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3162', 'OTHER REPAIR OF VESSEL - 39.59', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3163', 'OTHER REVISION OF VASCULAR PROCEDURE - 39.49', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3164', 'OTHER SURGICAL COLLAPSE OF LUNG - 33.39', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3165', 'OTHER SURGICAL OCCLUSION OF VESSELS, ABDOMINAL\nARTERIES - 38.86', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3166', 'OTHER SURGICAL OCCLUSION OF VESSELS, ABDOMINAL VEINS -\n38.87', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3167', 'OTHER SURGICAL OCCLUSION OF VESSELS, AORTA, ABDOMINAL -\n38.84', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3168', 'OTHER SURGICAL OCCLUSION OF VESSELS, LOWER LIMB\nARTERIES - 38.88', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3169', 'OTHER SURGICAL OCCLUSION OF VESSELS, LOWER LIMB VEINS -\n38.89', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3170', 'OTHER SURGICAL OCCLUSION OF VESSELS, OTHER VESSELS OF\nHEAD AND NECK - 38.82', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3171', 'OTHER SURGICAL OCCLUSION OF VESSELS, THORACIC VESSELS -\n38.85', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3172', 'OTHER SURGICAL OCCLUSION OF VESSELS, UNSPECIFIED SITE -\n38.80', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3173', 'OTHER SURGICAL OCCLUSION OF VESSELS, UPPER LIMB VESSELS\n- 38.83', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3174', 'OTHER SUTURE OF FLEXOR TENDON OF HAND - 82.44', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3175', 'OTHER SUTURE OF MUSCLE OR FASCIA - 83.65', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.3176', 'OTHER SUTURE OF OTHER TENDON OF HAND - 82.45', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3177', 'OTHER SYMPATHECTOMY AND GANGLIONECTOMY - 05.29', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3178', 'OTHER TENDON TRANSPOSITION - 83.76', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3179', 'OTHER TENODESIS OF HAND - 82.85', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3180', 'OTHER TENONECTOMY - 83.42', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3181', 'OTHER TENONECTOMY OF HAND - 82.33', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3182', 'OTHER TENOPLASTY OF HAND - 82.86', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3183', 'OTHER TOTAL EXCISION OF THYMUS - 07.82', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3184', 'OTHER TOTAL OSTECTOMY OF OTHER FACIAL BONE - 76.45', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3185', 'OTHER TRANSMYOCARDIAL REVASCULARIZATION - 36.32', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3186', 'OTHER VAGINOTOMY - 70.14', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3187', 'PARASTOMAL HERNIA REPAIR - 53.82', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3188', 'PARATIROIDEKTOMI TOTAL - 06.81', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.3189', 'PAROTIDEKTOMI PARSIAL - 26.31', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.3190', 'PAROTIDEKTOMI SUPERFISIAL - 26.31', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.3191', 'PARTIAL ESOPHAGECTOMY - 42.41', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3192', 'PARTIAL OSTECTOMY OF OTHER FACIAL BONE - 76.39', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3193', 'PARTIAL SUBSTERNAL THYROIDECTOMY - 06.51', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3194', 'PARTIAL VENTRICULECTOMY - 37.35', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3195', 'PCI DENGAN IVUS /OCT/FFR - 00.66', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3196', 'PCI DENGAN THROMBOLYTIC AGENT - 00.66', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3197', 'PCI DENGAN THROMBOSUCTION - 00.66', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3198', 'PCI WITH STENT DES - 36.07', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3199', 'PCI WITHOUT STENT ( PTCA) - 00.66', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3200', 'PDA STENTING / BT SHUNT STENTING + ANESTESI - 36.06', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3201', 'PDA STENTING / BT SHUNT STENTING ADVANCED + ANESTESI -\n36.06', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3202', 'PELEPASAN GROMMET - 20.1', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.3203', 'PEMASANGAN BANTUAN EKSTRAKORPORAL - 37.62', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3204', 'PEMASANGAN BONE ANCHORED HEARING AID (BAHA) - 20.95', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.3205', 'PEMASANGAN CVP DENGAN BANTUAN USG - 38.97', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.3206', 'PEMASANGAN CVVH - 39.95', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.3207', 'PEMASANGAN DOUBLE LUMEN KATETER DENGAN LOCAL\nANASTESI, GA - 38.95', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.3208', 'PEMASANGAN DOUBLE LUMEN KATETER DENGAN LOCAL\nANASTESI, LA - 38.95', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.3209', 'PEMASANGAN GROMMET - 20.1', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.3210', 'PEMASANGAN IABP - 37.61', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3211', 'PEMASANGAN SWAN GANZ - 89.65', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.3212', 'PEMASANGAN T-TUBE / GANTI T STENT - 31.93', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.3213', 'PEMASSANGAN LONG LINE IV, GA - 38.93', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.3214', 'PEMBERSIHAN KANUL TRAKEOSTOMI - 96.55', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.3215', 'PENDEKATAN SUBLABIAL - 22.61', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.3216', 'PENGANGKATAN KANUL TRAKEOSTOMI - 97.37', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.3217', 'PENGANGKATAN TAMPON HIDUNG - 97.32', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.3218', 'PENGGANTIAN GENERATOR PACU JANTUNG DOUBLE CHAMBER\n- 37.87', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3219', 'PENGGANTIAN GENERATOR PACU JANTUNG SINGLE CHAMBER -\n37.85', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3220', 'PENGGANTIAN KANUL TRAKEOSTOMI - 97.23', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.3221', 'PENGGANTIAN NASOGASTRIC TUBE (NGT) - 97.01', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.3222', 'PENGGANTIAN STENT LARING / TRAKEA - 31.93', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.3223', 'PENGGANTIAN TAMPON HIDUNG - 97.21', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.3224', 'PENJAHITAN VULVA ATAU PERINEUM LAMA - 71.79', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.3225', 'PENUTUPAN AP WINDOW DENGAN DEVICE (IMPLANTASI\nOCCLUDER) DENGAN ANESTESI - 39.59', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3226', 'PENUTUPAN ARTERIOVENOUS MALFORMATION PULMONER\nDENGAN ANESTESI UMUM - 39.53', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3227', 'PENUTUPAN ASD DENGAN PH TRANSKATETER DENGAN DEVICE (IMPLANTASI OCCLUDER) DENGAN ANESTESI - 35.96', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3228', 'PENUTUPAN ASD TRANSKATETER DENGAN DEVICE (IMPLANTASI\nOCCLUDER) DENGAN ANESTESI - 35.96', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3229', 'PENUTUPAN AV MALFORMASI TRANSKATETER DENGAN DEVICE\n+ ANESTESI - 36.99', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3230', 'PENUTUPAN BT SHUNT TRANSKATETER DENGAN DEVICE\n(IMPLANTASI OCCLUDER) DENGAN ANESTESI - 35.96', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3231', 'PENUTUPAN FISTEL CELAH BRAKIAL - 29.52', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.3232', 'PENUTUPAN FISTEL FARING - 29.53', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.3233', 'PENUTUPAN FISTEL HIDUNG - 21.82', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.3234', 'PENUTUPAN FISTEL LARING - 31.62', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.3235', 'PENUTUPAN FISTEL MULUT - 27.53', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.3236', 'PENUTUPAN FISTEL SINUS - 22.71', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.3237', 'PENUTUPAN FISTEL TRAKEA - 31.72', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.3238', 'PENUTUPAN FISTULA KORONER DENGAN DEVICE (IMPLANTASI\nOCCLUDER) DENGAN ANESTESI - 36.99', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3239', 'PENUTUPAN PARAVALVULAR LEAKAGE DENGAN DEVICE\n(IMPLANTASI OCCLUDER) DENGAN ANESTESI - 35.70', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3240', 'PENUTUPAN PDA DENGAN PH TRANSKATETER DENGAN DEVICE (IMPLANTASI OCCLUDER) DENGAN ANESTESI - 35.96', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3241', 'PENUTUPAN PDA TRANSKATETER DENGAN DEVICE (IMPLANTASI\nOCCLUDER) DENGAN ANESTESI - 35.96', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3242', 'PENUTUPAN PFO TRANSKATETER DENGAN DEVICE (IMPLANTASI\nOCCLUDER) DENGAN ANESTESI DENGAN TRANSEPTAL PUNCTURE - 35.71', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3243', 'PENUTUPAN PFO TRANSKATETER DENGAN DEVICE (IMPLANTASI\nOCCLUDER) DENGAN ANESTESI TANPA TRANSEPTAL PUNCTURE - 35.71', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3244', 'PENUTUPAN SINUS VALSAVA RUPTURE DENGAN ANESTESI -\n35.39', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3245', 'PENUTUPAN SINUS VALSAVA RUPTURE DENGAN ANESTESI -\n35.39', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3246', 'PENUTUPAN SINUS VENOSUS DEFECT DENGAN DEVICE\n(IMPLANTASI COVERED STENT) DENGAN ANESTESI - 35.70', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3247', 'PENUTUPAN VSD DENGAN PH TRANSKATETER DENGAN DEVICE (IMPLANTASI OCCLUDER) DENGAN ANESTESI - 35.96', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3248', 'PENUTUPAN VSD TRANSKATETER DENGAN DEVICE (IMPLANTASI\nOCCLUDER) DENGAN ANESTESI - 35.96', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3249', 'PENYADAPAN KOMPLEKS (NEONATUS, VENTILATOR, CITO, BIUS\nUMUM, PJB KOMPLEKS) - 37.23', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.3250', 'PENYADAPAN SEDERHANA - 37.23', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.3251', 'PENYADAPAN SEMI KOMPLEKS (ON VENTILATOR PRO O2 TEST) -\n37.23', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.3252', 'PERCUTANEOUS ABLATION OF LUNG LESION OR TISSUE - 32.24', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3253', 'PERCUTANEOUS ANGIOSCOPY - 38.22', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3254', 'PERCUTANEOUS CARDIOPULMONARY BYPASS - 39.66', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3255', 'PERCUTANEUS INSTRUMENTATION (FLUOROSCOPY OR\nNAVIGATION)', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3256', 'PERCUTANEUS PULMONARY ANGIOPLASTY (PULMONARY PTA) PADA STENOSIS PERIFER PULMONAL + ANESTESI - 39.50', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3257', 'PERCUTANEUS PULMONARY INTERVENSI DENGAN STENT (PULMONARY PTA DENGAN STENT) PADA STENOSIS PERIFER\nPULMONAL + ANESTESI - 39.50', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3258', 'PERICARDIECTOMY - 37.31', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3259', 'PERICARDIOTOMY - 37.12', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3260', 'PETROSECTOMY - 20.59', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3261', 'PLASENTA ACCRETA WITH CONSERVATIVE SURGERY - 68.29', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3262', 'PLASENTA ACCRETA WITH HYSTERECTOMY ( SVH ) - 68.39', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3263', 'PLASENTA ACCRETA WITH HYSTERECTOMY ( TAH ) - 68.49', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3264', 'PLASTIC OPERATION ON HAND WITH GRAFT OF MUSCLE OR\nFASCIA - 82.72', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3265', 'PLASTIC OPERATION ON HAND WITH OTHER GRAFT OR\nIMPLANT - 82.79', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3266', 'PLICATION OF EMPHYSEMATOUS BLEB - 32.21', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3267', 'PLICATION OF THE DIAPHRAGM - 53.81', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3268', 'PNEUMOPERITONEUM FOR COLLAPSE OF LUNG - 33.33', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3269', 'POLIPEKTOMI NASAL - 21.31', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.3270', 'POLISIZATION FINGER TO THUMB TRANSFER', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3271', 'POLLICIZATION OPERATION CARRYING OVER NERVES AND\nBLOOD SUPPLY - 82.61', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3272', 'POSTERO SAGITAL ANORECTOVAGINOURETHROPLASTY/\nPSARVUP, GA - 45.95, 58.99, 70.62', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3273', 'POSTERO SAGITAL ANOREKTOPLASTI (PSARP) - 45.95', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3274', 'POTONG STUMP +/- PASANGN STAPPLER, GA - 48.69, 48.74', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.3275', 'PRIMARY CLOSURE GASTROSCHISIS, GA - 54.71', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3276', 'PRIMARY CLOSURE GASTROSCHISIS, LA - 54.71', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.3277', 'PROBING SALURAN LIUR - 26.91', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.3278', 'PROSEDUR 1 TAHAP KOREKSI HIPOSPADIA, GA - 58.46', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.3279', 'PROSEDUR DE LA TORRE PROLAPS RECTI / ALTEMEIER\nPROCEDURE - 48.69, 48.74', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.3280', 'PROSEDUR DEFINITIF HIRSCHSPRUNG ASSISTED LAPAROSKOPI -\n48.51', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3281', 'PROSEDUR DEFINITIF OMPHALOCELE, GA - 54.72', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3282', 'PROSEDUR DEFINITIF PENYAKIT HIRSCHSPRUNG (DUHAMEL) -\n48.65', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3283', 'PROSEDUR DEFINITIF PENYAKIT HIRSCHSPRUNG (TRANSANAL\nSWENSON) - 48.49', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3284', 'PROSEDUR DEFINITIF UDT, GA - 62.5', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.3285', 'PROSEDUR DEVASKULARISASI HIPERTENSI PORTAL, GA - 38.87', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3286', 'PROSEDUR KASAI + KOLANGIOGRAFI INTRAOPERATIF - 51.69,\n51.39, 87.53', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3287', 'PROSEDUR THIERSCH PADA PROLAP REKTI, GA - 49.72', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.3288', 'PROTESIS SUARA - 31.95', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.3289', 'PSARP + LAPAROTOMI, GA - 54.11, 45.95', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3290', 'PSARP + TUM - 45.95, 58.99, 70.62', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3291', 'PTA (ARTERI/ VENA PERIFER) - 39.50', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3292', 'PTA+STENTING (ARTERI /VENA PERIFER) - 39.90', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3293', 'PULMONARY VALVE REPLACEMENT PERKUTAN - 35.96', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3294', 'PUNCH GRAFTING BESAR - 86.63', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.3295', 'PUNCH GRAFTING KECIL - 86.63', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.3296', 'PUNCH GRAFTING SEDANG - 86.63', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.3297', 'PUNCTURE OF LUNG - 33.93', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3298', 'PYELOPLASTY, GA - 55.87', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3299', 'PYOLOROMYOTOMY (OPERASI FREDET RAMSTEDT),\nLAPAROSCOPIC - 54.21, 43.3', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.3300', 'PYOLOROMYOTOMY (OPERASI FREDET RAMSTEDT), OPEN - 43.3', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.3301', 'RADICAL DISSECTION OF THORACIC STRUCTURES - 32.6', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3302', 'RADIOFREKUENSI DASAR LIDAH - 27.99', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.3303', 'RADIOFREQUENCY ABLATION 2D - 37.34', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3304', 'RADIOFREQUENCY ABLATION 3D - 37.26', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3305', 'RADIOFREQUENCY ABLATION 3D ATRIAL FIBRILLASI - 35.42', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3306', 'REATTACHMENT OF MUSCLE - 83.74', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3307', 'REATTACHMENT OF MUSCLE OF HAND - 82.54', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3308', 'REATTACHMENT OF TENDON - 83.73', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3309', 'REATTACHMENT OF TENDON OF HAND - 82.53', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3310', 'RECESSION OF TENDON - 83.72', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3311', 'RECESSION OF TENDON OF HAND - 82.52', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3312', 'RECONSTRUCTION OF PENIS - 64.44', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3313', 'RECONSTRUCTION OF TRACHEA AND CONSTRUCTION OF\nARTIFICIAL LARYNX - 31.75', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3314', 'RECTOSCOPY, GA - 48.23', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.3315', 'REDUCTION OF FACIAL FRACTURE, NOT OTHERWISE SPECIFIED -\n76.70', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3316', 'REDUKSI FRAKTUR NASAL TERTUTUP - 22.71', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.3317', 'REDUKSI KONKA DENGAN KAUTER / RDF - 21.61', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.3318', 'RE-ENTRY OPERATION (AORTA) - 39.54', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3319', 'REIMPLANTATION OF ABERRANT RENAL VESSEL - 39.55', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3320', 'REKONSTRUKSI TRAKEA DAN KONSTRUKSI LARING - 31.75', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.3321', 'REKONSTRUKSI TRAUMA LEHER - 31.7', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.3322', 'RELEASE CHORDE, GA - 64.42', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3323', 'RELEASE SINEKIA VULVA, GA - 71.01', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.3324', 'REMOVAL OF ARTERIOVENOUS SHUNT FOR RENAL DIALYSIS -\n39.43', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3325', 'REMOVAL OF CAROTID SINUS STIMULATION DEVICE, TOTAL\nSYSTEM - 39.86', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3326', 'REMOVAL OF CAROTID SINUS STIMULATION LEAD(S) ONLY -\n39.87', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3327', 'REMOVAL OF CAROTID SINUS STIMULATION PULSE GENERATOR\nONLY - 39.88', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3328', 'REMOVAL OF EXTERNAL HEART ASSIST SYSTEM(S) OR DEVICE(S) -\n37.64', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3329', 'REMOVAL OF IMPLANTED DEVICES FROM BONE - 78.6', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3330', 'REMOVAL OF INTERNAL BIVENTRICULAR HEART REPLACEMENT\nSYSTEM - 37.55', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3331', 'REMOVAL OF INTERNAL FIXATION DEVICE FROM FACIAL BONE -\n76.86', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3332', 'REMOVAL OF LEAD(S) - ELECTRODE WITHOUT REPLACEMENT -\n37.77', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3333', 'REMOVAL OF MEDIASTINAL DRAIN - 97.42', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3334', 'REMOVAL OF OTHER DEVICE FROM THORAX - 97.49', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3335', 'REMOVAL OF SUTURES FROM THORAX - 97.43', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3336', 'REMOVAL OF THORACOTOMY TUBE OR PLEURAL CAVITY DRAIN -\n97.41', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3337', 'REMOVAL OF TRACHEOSTOMY TUBE - 97.37', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3338', 'RENAL DENERVASI - 05.25', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3339', 'REOPENING OF RECENT THORACOTOMY SITE - 34.03', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3340', 'REPAIR ATRESIA KOANA - 21.89', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.3341', 'REPAIR BLADDER EXTROPHY, GA - 57.86', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3342', 'REPAIR CLOACAL EXTROPHY, GA - 57.86, 45.52, 46.11', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3343', 'REPAIR DUKTUS URAKUS PERSISTEN - 57.51', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.3344', 'REPAIR FISTEL RECTOVAGINAL, GA - 70.73', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.3345', 'REPAIR HERNIA + LAPAROTOMY+ RESEKSI + STOMA - 53.02 &\n54.11 & 45.62 & 46.20', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3346', 'REPAIR HERNIA + LAPAROTOMY+ RESEKSI+ ANASTOMOSIS -\n53.02 & 54.11 & 45.62 & 45.91', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3347', 'REPAIR HERNIA INGUINAL BILATERAL - 53.12', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.3348', 'REPAIR HERNIA INGUINAL, LAPAROSKOPI - 17.12', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.3349', 'REPAIR HERNIA INGUINAL, UNILATERAL - 53.02', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.3350', 'REPAIR HERNIA RESIDIF - 53.02', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.3351', 'REPAIR HERNIA STRANGULATA - 53.02', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.3352', 'REPAIR HERNIA UMBILIKALIS - 53.49', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.3353', 'REPAIR OF ANEURYSM OF CORONARY VESSEL - 36.91', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3354', 'REPAIR OF ARTERIOVENOUS FISTULA - 39.53', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3355', 'REPAIR OF ATRIAL SEPTAL DEFECT WITH PROSTHESIS, OPEN\nTECHNIQUE - 35.51', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3356', 'REPAIR OF ATRIAL SEPTAL DEFECT WITH TISSUE GRAFT - 35.61', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3357', 'REPAIR OF BLOOD VESSEL WITH SYNTHETIC PATCH GRAFT -\n39.57', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3358', 'REPAIR OF BLOOD VESSEL WITH TISSUE PATCH GRAFT - 39.56', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3359', 'REPAIR OF BLOOD VESSEL WITH UNSPECIFIED TYPE OF PATCH\nGRAFT - 39.58', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3360', 'REPAIR OF CLAW TOE - 77.56', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3361', 'REPAIR OF CLEFT HAND - 82.82', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3362', 'REPAIR OF DIAPHRAGMATIC HERNIA WITH THORACIC\nAPPROACH, NOT OTHERWISE SPECIFIED - 53.80', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3363', 'REPAIR OF DIAPHRAGMATIC HERNIA, ABDOMINAL APPROACH,\nNOT OTHERWISE SPECIFIED - 53.75', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3364', 'REPAIR OF ENDOCARDIAL CUSHION DEFECT WITH PROSTHESIS -\n35.54', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3365', 'REPAIR OF ENDOCARDIAL CUSHION DEFECT WITH TISSUE GRAFT\n- 35.63', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3366', 'REPAIR OF HAMMER TOE - 77.55', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3367', 'REPAIR OF HEART ASSIST SYSTEM - 37.63', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3368', 'REPAIR OF LARYNGEAL FRACTURE - 31.64', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3369', 'REPAIR OF MACRODACTYLY - 82.83', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3370', 'REPAIR OF MALLET FINGER - 82.84', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3371', 'REPAIR OF OTHER FISTULA OF VAGINA - 70.75', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3372', 'REPAIR OF PARASTERNAL HERNIA - 53.82', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3373', 'REPAIR OF PECTUS DEFORMITY - 34.74', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3374', 'REPAIR OF PLEURA - 34.93', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3375', 'REPAIR OF SCROTAL FISTULA - 61.42', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3376', 'REPAIR OF UNSPECIFIED SEPTAL DEFECT OF HEART WITH\nPROSTHESIS - 35.50', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3377', 'REPAIR OF UNSPECIFIED SEPTAL DEFECT OF HEART WITH TISSUE\nGRAFT - 35.60', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3378', 'REPAIR OF URETHROCUTANEOUS FISTULE - 58.43', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.3379', 'REPAIR OF VENTRICULAR SEPTAL DEFECT WITH PROSTHESIS,\nOPEN TECHNIQUE - 35.53', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3380', 'REPAIR OF VENTRICULAR SEPTAL DEFECT WITH TISSUE GRAFT -\n35.62', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3381', 'REPAIR RUPTURE PERINEUM LAMA, GA - 71.71', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.3382', 'REPAIR STENOSIS SUBGLOTIS/TRAKEA - 31.98', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.3383', 'REPAIR UMBILICAL CORD HERNIA - 53.59', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3384', 'REPAIR VESIKA URINARIA, GA - 57.81', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.3385', 'REPARASI FISTEL ESOFAGUS - 42.84', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.3386', 'REPARASI FISTEL KEBOCORAN LCS - 02.12', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3387', 'REPARASI FRAKTUR LARING - 31.64', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.3388', 'REPARASI KEBOCORAN LCS DENGAN GRAFT ABDOMEN - 02.12', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3389', 'REPARASI OVAL/ROUND WINDOW - 20.93', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.3390', 'REPARASI STRIKTUR ESOFAGUS - 42.85', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.3391', 'REPLACEMENT OF ANY TYPE OF PACEMAKER DEVICE WITH\nSINGLE-CHAMBER DEVICE, RATE RESPONSIVE - 37.86', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3392', 'REPLACEMENT OF ANY TYPE PACEMAKER DEVICE WITH DUAL-\nCHAMBER DEVICE - 37.87', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3393', 'REPLACEMENT OF ANY TYPE PACEMAKER DEVICE WITH SINGLE- CHAMBER DEVICE, NOT SPECIFIED AS RATE RESPONSIVE - 37.85', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3394', 'REPLACEMENT OF AUTOMATIC CARDIOVERTER/DEFIBRILLATOR\nLEAD(S) ONLY - 37.97', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3395', 'REPLACEMENT OF AUTOMATIC CARDIOVERTER/DEFIBRILLATOR PULSE GENERATOR ONLY - 37.98', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3396', 'REPLACEMENT OF LARYNGEAL OR TRACHEAL STENT - 31.93', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3397', 'REPLACEMENT OF TRACHEOSTOMY TUBE - 97.23', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3398', 'REPLACEMENT OF TRANSVENOUS ATRIAL AND/OR\nVENTRICULAR LEAD(S) - ELECTRODE - 37.76', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3399', 'REPLACEMENT OF VESSEL-TO-VESSEL CANNULA - 39.94', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3400', 'REPLACEMENT OR REPAIR OF OTHER IMPLANTABLE COMPONENT OF (TOTAL) REPLACEMENT HEART SYSTEM - 37.54', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3401', 'REPLACEMENT OR REPAIR OF THORACIC UNIT OF (TOTAL)\nREPLACEMENT HEART SYSTEM - 37.53', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3402', 'RESECTION OF VESSEL WITH ANASTOMOSIS, ABDOMINAL\nARTERIES - 38.36', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3403', 'RESECTION OF VESSEL WITH ANASTOMOSIS, ABDOMINAL VEINS\n- 38.37', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3404', 'RESECTION OF VESSEL WITH ANASTOMOSIS, AORTA - 38.34', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3405', 'RESECTION OF VESSEL WITH ANASTOMOSIS, LOWER LIMB\nARTERIES - 38.38', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3406', 'RESECTION OF VESSEL WITH ANASTOMOSIS, LOWER LIMB VEINS\n- 38.39', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3407', 'RESECTION OF VESSEL WITH ANASTOMOSIS, OTHER THORACIC\nVESSELS - 38.35', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3408', 'RESECTION OF VESSEL WITH ANASTOMOSIS, OTHER VESSELS OF\nHEAD AND NECK - 38.32', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3409', 'RESECTION OF VESSEL WITH ANASTOMOSIS, UNSPECIFIED SITE -\n38.30', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3410', 'RESECTION OF VESSEL WITH ANASTOMOSIS, UPPER LIMB\nVESSELS - 38.33', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3411', 'RESECTION OF VESSEL WITH REPLACEMENT, ABDOMINAL\nARTERIES - 38.46', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3412', 'RESECTION OF VESSEL WITH REPLACEMENT, ABDOMINAL VEINS\n38.47', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3413', 'RESECTION OF VESSEL WITH REPLACEMENT, AORTA,\nABDOMINAL - 38.44', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3414', 'RESECTION OF VESSEL WITH REPLACEMENT, INTRACRANIAL\nVESSELS - 38.41', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3415', 'RESECTION OF VESSEL WITH REPLACEMENT, LOWER LIMB\nARTERIES - 38.48', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3416', 'RESECTION OF VESSEL WITH REPLACEMENT, LOWER LIMB VEINS\n- 38.49', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3417', 'RESECTION OF VESSEL WITH REPLACEMENT, OTHER VESSELS OF\nHEAD AND NECK - 38.42', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3418', 'RESECTION OF VESSEL WITH REPLACEMENT, THORACIC VESSELS\n38.45', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3419', 'RESECTION OF VESSEL WITH REPLACEMENT, UNSPECIFIED SITE -\n38.40', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3420', 'RESECTION OF VESSEL WITH REPLACEMENT, UPPER LIMB\nVESSELS - 38.43', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3421', 'RESEKSI ANASTOMOSIS, JEJUNOILEAL OBSTRUCTION,\nDUPLICATION. - 54.11, 45.62, 45.91', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3422', 'RESEKSI DENGAN STOMA, JEJUNOILEAL OBSTRUCTION,\nDUPLICATION. - 54.11, 45.62, 46.21', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3423', 'RESEKSI ESOFAGUS - 42.40', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.3424', 'RESEKSI HEPAR (TRAUMA, TUMOR) - 50.22', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3425', 'RESEKSI LOW ANTERIOR, GA - 48.62', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3426', 'RESEKSI NEUROBLASTOMA, GA - 07.22', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3427', 'RESEKSI SIGMOID, GA - 45.76', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.3428', 'RESEKSI TUMOR ABDOMEN, LAPAROTOMI - 54.11 & 54.4', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3429', 'RESEKSI TUMOR SACROCOCCYGEAL, GA - 80.99, 83.39', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3430', 'RESEKSI TUMOR WILM, GA - 55.51', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3431', 'REVISI FENESTRASI TELINGA DALAM - 20.62', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.3432', 'REVISI LARINGOSTOMI / REPAIR STOMA - 31.63', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.3433', 'REVISI OPERASI SARAF KRANIAL / PERIFER - 04.75', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.3434', 'REVISI POCKET / LEAD PACU JANTUNG PERMANEN TANPA\nPENGGANTIAN ALAT - 37.89', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.3435', 'REVISI SINEKIA HIDUNG - 21.91', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.3436', 'REVISI TRAKEOSTOMI - 31.74', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.3437', 'REVISION OF AMPUTATION STUMP - 84.3', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3438', 'REVISION OF ARTERIOVENOUS SHUNT FOR RENAL DIALYSIS -\n39.42', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3439', 'REVISION OF CAROTID SINUS STIMULATION LEAD(S) ONLY -\n39.84', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3440', 'REVISION OF CAROTID SINUS STIMULATION PULSE GENERATOR -\n39.85', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3441', 'REVISION OF CORRECTIVE PROCEDURE ON HEART - 35.95', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3442', 'REVISION OF LARYNGOSTOMY - 31.63', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3443', 'REVISION OF LEAD - ELECTRODE - 37.75', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3444', 'REVISION OF TRACHEOSTOMY - 31.74', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3445', 'REVISION OR RELOCATION OF CARDIAC DEVICE POCKET - 37.79', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3446', 'REVISION OR REMOVAL OF PACEMAKER DEVICE - 37.89', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3447', 'RHABDOMYOSARCOMA, SOFT TISSUE, EXTREMITY - 83.49', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3448', 'RHINOTOMI LATERAL - 21.30', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.3449', 'RVOT STENTING PERKUTAN + ANESTESI - 38.05', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3450', 'SACRECTOMY', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3451', 'SACRO-ILIAC JOINT BLOCK', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.3452', 'SALPINGO OOPHOREKTOMI BILATERAL, GA - 65.64', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3453', 'SALPINGO OOPHOREKTOMI BILATERAL, LAPAROSKOPI,GA -\n65.63', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3454', 'SALPINGO OOPHOREKTOMI UNILATERAL, GA - 65.49', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3455', 'SALPINGO OOPHOREKTOMI UNILATERAL, LAPAROSKOPI, GA -\n65.41', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3456', 'SCARIFICATION OF PLEURA - 34.6', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3457', 'SCLEROTHERAPY - 39.92', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3458', 'SEPTOPLASTI DENGAN ENDOSKOPI - 21.88', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.3459', 'SEPTUM & DINDING LATERAL HIDUNG - 21.07', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.3460', 'SFENOIDEKTOMI (FESS) - 22.64', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.3461', 'SFENOIDEKTOMI EKSTERNAL - 22.52', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.3462', 'SHUNT ENDOLIMFATIK - 20.71', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.3463', 'SIALENDOSKOPI DIAGNOSTIK - 26.19', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.3464', 'SIALENDOSKOPI DIAGNOSTIK DAN DILATASI - 26.91', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.3465', 'SIALENDOSKOPI DIAGNOSTIK DAN TERAPEUTIK - 26.99', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.3466', 'SIALOLITHEKTOMI - 26.29', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.3467', 'SINGLE INTERNAL MAMMARY-CORONARY ARTERY BYPASS -\n36.15', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3468', 'SINUSEKTOMI SINUS FRONTAL (FESS) - 22.42', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.3469', 'SIRKUMSISI ANAK', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.3470', 'SIRKUMSISI DEWASA', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.3471', 'SISTOSTOMI, GA - 57.17 / 57.18', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.3472', 'SLEEP ENDOSCOPY - 89.19', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.3473', 'SPINAL ENDOCOPIC DECOMPRESSION (>1 LEVEL)', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3474', 'SPINAL ENDOCOPIC DECOMPRESSION (SINGLE LEVEL)', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3475', 'SPINAL TUMOR EXCISION, EXTRA/INTRADURAL', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3476', 'SPINAL TUMOR EXCISION, EXTRADURA', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3477', 'SPINALCORD STIMULATION', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3478', 'SPLENEKTOMI PARSIEL / TOTAL, GA - 41.43 / 41.5', 30237000, 'TINDAKAN OPERATIF'); +INSERT INTO `tarif_rs` (`ID_Tarif_RS`, `Tindakan_RS`, `Tarif_RS`, `Kategori_RS`) VALUES +('R.TO.3479', 'STAPEDEKTOMI - 19.1', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.3480', 'STAPEDEKTOMI REVISI - 19.21', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.3481', 'STENTING PDA/ A. PULMONALIS - 39.90', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3482', 'STENTING SINUS VENA INTRAKRANIAL', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3483', 'STOMACH, MORBID OBESITY, CAPSULE/BALOONING\n(ENDOSCOPIC CONTROL OF GASTRIC OR DUODENAL BLEEDING) - 44.43', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3484', 'STOMACH, MORBID OBESSITY, GASNOPLASTY/SUTURE - 43.41', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3485', 'SUBCISION BESAR - 86.89', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.3486', 'SUBCISION KECIL - 86.89', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.3487', 'SUBCISION SEDANG - 86.89', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.3488', 'SUBMANDIBULAR MASS, EXCISION, BIOPSY - 26.12', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.3489', 'SUBSTERNAL THYROIDECTOMY, NOT OTHERWISE SPECIFIED -\n06.50', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3490', 'SUCTION RECTAL BIOPSY - 48.29', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.3491', 'SUPRACONDYLAR FRACTURE OF HUMERUS IN CHILDREN,\nCLOSED REDUCTION + CAST', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.3492', 'SUPRACONDYLAR FRACTURE OF HUMERUS IN CHILDREN, OPEN\nREDUCTION + INTERNAL FIXATION', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3493', 'SUPRAGLOTOPLASTY - 30.29', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.3494', 'SUTURE OF ARTERY - 39.31', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3495', 'SUTURE OF LACERATION OF BRONCHUS - 33.41', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3496', 'SUTURE OF LACERATION OF CHEST WALL - 34.71', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3497', 'SUTURE OF LACERATION OF DIAPHRAGM - 34.82', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3498', 'SUTURE OF LACERATION OF LARYNX - 31.61', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3499', 'SUTURE OF LACERATION OF TRACHEA - 31.71', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3500', 'SUTURE OF LACERATION OF VAGINA - 70.71', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3501', 'SUTURE OF MUSCLE OR FASCIA OF HAND - 82.46', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.3502', 'SUTURE OF TENDON SHEATH - 83.61', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.3503', 'SUTURE OF TENDON SHEATH OF HAND - 82.41', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.3504', 'SUTURE OF UNSPECIFIED BLOOD VESSEL - 39.30', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3505', 'SUTURE OF VEIN - 39.32', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3506', 'SYNDACTYLY RELEASE', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3507', 'SYSTEMIC TO PULMONARY ARTERY SHUNT - 39.0 BT SHUNT', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3508', 'TAMPON VAGINA - 96.14', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.3509', 'TEMPORARY (PARTIAL) THERAPEUTIC ENDOVASCULAR\nOCCLUSION OF VESSEL - 39.77', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3510', 'TEMPORARY TRACHEOSTOMY - 31.1', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3511', 'TEMPOROMANDIBULAR ARTHROPLASTY - 76.5', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3512', 'TENCKHOFF CATHETER INSERTION, LAPAROSCOPIC - 54.984', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3513', 'TENCKHOFF CATHETER INSERTION, OPEN - 54.981', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3514', 'TENDON GRAFT - 83.81', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3515', 'TENDON PULLEY RECONSTRUCTION - 82.71', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3516', 'TENDON PULLEY RECONSTRUCTION - 83.83', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3517', 'TENDON TRANSFER MULTIPLE', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3518', 'TENDON TRANSFER OR TRANSPLANTATION - 83.75', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3519', 'TENDON TRANSFER SINGLE', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3520', 'TENOTOMY OF HAND - 82.11', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3521', 'TEVAR + PROSTHESIS - 39.73', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3522', 'THORACENTESIS - 34.91', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3523', 'THORACENTESIS GUIDING USG - 88.73', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3524', 'THORACOPLASTY - 33.34', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3525', 'THORACOSCOPIC ABLATION OF LUNG LESION OR TISSUE - 32.25', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3526', 'THORACOSCOPIC DECORTICATION OF LUNG - 34.52', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3527', 'THORACOSCOPIC DRAINAGE OF PLEURAL CAVITY - 34.06', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3528', 'THORACOSCOPIC INCISION OF THYMUS - 07.95', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3529', 'THORACOSCOPIC LOBECTOMY OF LUNG - 32.41', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3530', 'THORACOSCOPIC LUNG BIOPSY - 33.20', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3531', 'THORACOSCOPIC PARTIAL EXCISION OF THYMUS - 07.83', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3532', 'THORACOSCOPIC PLEURAL BIOPSY - 34.20', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3533', 'THORACOSCOPIC PNEUMONECTOMY - 32.50', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3534', 'THORACOSCOPIC SEGMENTAL RESECTION OF LUNG - 32.30', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3535', 'THORACOSCOPIC TOTAL EXCISION OF THYMUS - 07.84', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3536', 'THORACOSCOPY, LIGASI FISTULA, ANASTOMOSIS ESOFAGUS,\nESOPHAGEAL ATRESIA - 34.21 & 42.51', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3537', 'THORACOTOMY, LIGASI FISTULA, ANASTOMOSIS ESOFAGUS,\nESOPHAGEAL ATRESIA - 42.51', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3538', 'THREAD LIFT - BESAR - 86.09', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.3539', 'THREAD LIFT - KECIL - 86.09', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.3540', 'THREAD LIFT - SEDANG - 86.09', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.3541', 'THYMECTOMY, NOT OTHERWISE SPECIFIED - 07.80', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3542', 'TIMPANOPLASTI REVISI - 19.6', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.3543', 'TIMPANOPLASTI TIPE I/MIRINGOPLASTI - 19.4', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.3544', 'TIMPANOPLASTI TIPE II - 19.52', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.3545', 'TIMPANOPLASTI TIPE III - 19.53', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.3546', 'TIMPANOPLASTI TIPE IV - 19.54', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.3547', 'TIMPANOPLASTI TIPE V - 19.55', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.3548', 'TINDAKAN DIAGNOSTIK PER-KOLONOSKOPI, GA - 45.23', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.3549', 'TINDAKAN ESOFAGUS KOMPLEKS (EKSISI, VARISES) - 42.33', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.3550', 'TINDAKAN FOB (SEDANG)/ BILASAN PARU (MEMBEBASKAN\nSUMBATAN)/SIKATAN BRONKUS - 33.22', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.3551', 'TINDIK TELINGA - 18.01', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.3552', 'TIROIDEKTOMI TOTAL - 06.4', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.3553', 'TONGUE TIE INCISION, GA - 25.91', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.3554', 'TONSILEKTOMI - 28.2', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.3555', 'TONSILEKTOMI DENGAN ADENOIDEKTOMI - 28.3', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.3556', 'TORAKOSKOPI - 34.21', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.3557', 'TOTAL BODY PERFUSION - 39.96', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3558', 'TOTAL CORRECTION OF TRANSPOSITION OF GREAT VESSELS,\nNOT ELSEWHERE CLASSIFIED - 35.84', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3559', 'TOTAL ESOPHAGECTOMY - 42.42', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3560', 'TOTAL GASTREKTOMI DAN REKONSTRUKSI - 43.91', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3561', 'TOTAL MANDIBULECTOMY WITH SYNCHRONOUS\nRECONSTRUCTION - 76.41', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3562', 'TOTAL OSTECTOMY - 77.9', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3563', 'TOTAL REPAIR OF TETRALOGY OF FALLOT - 35.81', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3564', 'TOTAL REPAIR OF TOTAL ANOMALOUS PULMONARY VENOUS\nCONNECTION - 35.82', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3565', 'TOTAL REPAIR OF TRUNCUS ARTERIOSUS - 35.83', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3566', 'TRACHEOESOPHAGEAL FISTULIZATION - 31.95', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3567', 'TRAKEOSKOPI MELALUI STOMA TRAKEA - 31.41', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.3568', 'TRAKEOSTOMI DENGAN PENYULIT - 31.1', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.3569', 'TRAKEOSTOMI PERMANEN - 31.29', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.3570', 'TRAKEOSTOMI TEMPORER - 31.1', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.3571', 'TRANSABDOMINAL CIRCLAGE - 67.51', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.3572', 'TRANSANAL MUCOSECTOMY, TEPT - 48.49', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3573', 'TRANSFER OF FINGER, EXCEPT THUMB - 82.81', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3574', 'TRANSPLEURAL THORACOSCOPY - 34.21', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3575', 'TRANSPOSISI SARAF KRANIAL / PERIFER - 04.6', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.3576', 'TREPANASI SINUS FRONTALIS - 31.63', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.3577', 'TROMBEKTOMI', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3578', 'TROMBEKTOMI INTRASINUS/VENA', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3579', 'TROMBEKTOMI STROKE', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3580', 'TROMBOLISIS INTRAARTERI', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3581', 'TROMBOLISIS INTRASINUS', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3582', 'TUTUP STOMA USUS, GA - 46.52 / 46.51', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3583', 'UMBILICAL VEIN CATHETERIZATION - 38.92', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3584', 'UNILATERAL LUNG TRANSPLANTATION - 33.51', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3585', 'UPPER BLEPHAROPLASTY - 08.3', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.3586', 'UPPER GI ENDOSCOPY, BIOPSY, GA - 45.16', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.3587', 'UPPER GI ENDOSCOPY, DIAGNOSTIC - 45.13', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.3588', 'UPPER GI ENDOSCOPY, FOREIGN BODY RETRIEVAL - 45.13 &\n98.03', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.3589', 'UPPER GI ENDOSCOPY, POLYPEKTOMY, GA - 45.14', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.3590', 'UPPER LIMB AMPUTATION, NOT OTHERWISE SPECIFIED - 84.00', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3591', 'URETERO NEOSISTOSTOMI, GA - 56.74', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3592', 'URETHRAL MEATOPLASTY - 58.47', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3593', 'URETHROPLASTY, GA - 58.45', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.3594', 'VAGINAL RECONSTRUCTION - 70.62', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3595', 'VAGINAL RECONSTRUCTION WITH GRAFT OR PROSTHESIS -\n70.64', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3596', 'VAGINAL SUSPENSION AND FIXATION WITH GRAFT OR\nPROSTHESIS - 70.78', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3597', 'VENA SEKSI DAN PASANG AKSES VASKULER, GA - 38.94', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.3598', 'VENA SEKSI DAN PASANG AKSES VASKULER, LA - 38.94', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.3599', 'VENOUS CATHETERIZATION FOR RENAL DIALYSIS - 38.95\nDOUBLE LUMEN INSERTION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3600', 'VENOUS CATHETERIZATION, NOT ELSEWHERE CLASSIFIED -\n38.93', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3601', 'VENOUS CUTDOWN - 38.94', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3602', 'VIDEO ASSIST FISTULOSCOPY -', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3603', 'VVP - 70.29', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.3604', 'WOUND DEHISCENCE, REPAIR - 86.59', 10268000, 'TINDAKAN OPERATIF'), +('R.TOKH.001', 'TRANSPLANTASI GINJAL - KELAS 3', 283524000, 'TRANSPLANTASI GINJAL'), +('R.TOKH.002', 'TRANSPLANTASI GINJAL - KELAS 2', 340259000, 'TRANSPLANTASI GINJAL'), +('R.TOKH.003', 'TRANSPLANTASI GINJAL - KELAS 1', 396933000, 'TRANSPLANTASI GINJAL'), +('R.TOKH.004', 'PROSEDUR SALURAN URINE ATAS - KELAS 3', 13166000, 'TRANSPLANTASI GINJAL'), +('R.TOKH.005', 'PROSEDUR SALURAN URINE ATAS - KELAS 2', 15799000, 'TRANSPLANTASI GINJAL'), +('R.TOKH.006', 'PROSEDUR SALURAN URINE ATAS - KELAS 1', 18432000, 'TRANSPLANTASI GINJAL'), +('R.VST.001', 'JASA VISITE - REGULER', 100000, 'RAWAT INAP'); + +-- +-- Indexes for dumped tables +-- + +-- +-- Indexes for table `admin_ruangan` +-- +ALTER TABLE `admin_ruangan` + ADD PRIMARY KEY (`ID_Admin`), + ADD KEY `ID_Ruangan` (`ID_Ruangan`); + +-- +-- Indexes for table `billing_dokter` +-- +ALTER TABLE `billing_dokter` + ADD KEY `ID_Dokter` (`ID_Dokter`), + ADD KEY `ID_Billing` (`ID_Billing`); + +-- +-- Indexes for table `billing_icd9` +-- +ALTER TABLE `billing_icd9` + ADD KEY `ID_Billing` (`ID_Billing`), + ADD KEY `ID_ICD9` (`ID_ICD9`); + +-- +-- Indexes for table `billing_icd10` +-- +ALTER TABLE `billing_icd10` + ADD KEY `ID_Billing` (`ID_Billing`), + ADD KEY `ID_ICD10` (`ID_ICD10`); + +-- +-- Indexes for table `billing_inacbg_ri` +-- +ALTER TABLE `billing_inacbg_ri` + ADD KEY `ID_Billing` (`ID_Billing`), + ADD KEY `ID_INACBG_RI` (`ID_INACBG_RI`); + +-- +-- Indexes for table `billing_inacbg_rj` +-- +ALTER TABLE `billing_inacbg_rj` + ADD KEY `ID_Billing` (`ID_Billing`), + ADD KEY `ID_INACBG_RJ` (`ID_INACBG_RJ`); + +-- +-- Indexes for table `billing_pasien` +-- +ALTER TABLE `billing_pasien` + ADD PRIMARY KEY (`ID_Billing`), + ADD KEY `ID_Pasien` (`ID_Pasien`); + +-- +-- Indexes for table `billing_tindakan` +-- +ALTER TABLE `billing_tindakan` + ADD KEY `ID_Billing` (`ID_Billing`), + ADD KEY `ID_Tarif_RS` (`ID_Tarif_RS`); + +-- +-- Indexes for table `dokter` +-- +ALTER TABLE `dokter` + ADD PRIMARY KEY (`ID_Dokter`); + +-- +-- Indexes for table `icd9` +-- +ALTER TABLE `icd9` + ADD PRIMARY KEY (`ID_ICD9`); + +-- +-- Indexes for table `icd10` +-- +ALTER TABLE `icd10` + ADD PRIMARY KEY (`ID_ICD10`); + +-- +-- Indexes for table `ina_cbg_rawatinap` +-- +ALTER TABLE `ina_cbg_rawatinap` + ADD PRIMARY KEY (`ID_INACBG_RI`); + +-- +-- Indexes for table `ina_cbg_rawatjalan` +-- +ALTER TABLE `ina_cbg_rawatjalan` + ADD PRIMARY KEY (`ID_INACBG_RJ`); + +-- +-- Indexes for table `pasien` +-- +ALTER TABLE `pasien` + ADD PRIMARY KEY (`ID_Pasien`); + +-- +-- Indexes for table `ruangan` +-- +ALTER TABLE `ruangan` + ADD PRIMARY KEY (`ID_Ruangan`); + +-- +-- Indexes for table `tarif_rs` +-- +ALTER TABLE `tarif_rs` + ADD PRIMARY KEY (`ID_Tarif_RS`); + +-- +-- AUTO_INCREMENT for dumped tables +-- + +-- +-- AUTO_INCREMENT for table `admin_ruangan` +-- +ALTER TABLE `admin_ruangan` + MODIFY `ID_Admin` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; + +-- +-- AUTO_INCREMENT for table `billing_pasien` +-- +ALTER TABLE `billing_pasien` + MODIFY `ID_Billing` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=25; + +-- +-- AUTO_INCREMENT for table `dokter` +-- +ALTER TABLE `dokter` + MODIFY `ID_Dokter` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=1156; + +-- +-- AUTO_INCREMENT for table `pasien` +-- +ALTER TABLE `pasien` + MODIFY `ID_Pasien` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=22; + +-- +-- AUTO_INCREMENT for table `ruangan` +-- +ALTER TABLE `ruangan` + MODIFY `ID_Ruangan` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=47; + +-- +-- Constraints for dumped tables +-- + +-- +-- Constraints for table `billing_dokter` +-- +ALTER TABLE `billing_dokter` + ADD CONSTRAINT `billing_dokter_ibfk_1` FOREIGN KEY (`ID_Dokter`) REFERENCES `dokter` (`ID_Dokter`), + ADD CONSTRAINT `billing_dokter_ibfk_2` FOREIGN KEY (`ID_Billing`) REFERENCES `billing_pasien` (`ID_Billing`); + +-- +-- Constraints for table `billing_icd9` +-- +ALTER TABLE `billing_icd9` + ADD CONSTRAINT `billing_icd9_ibfk_1` FOREIGN KEY (`ID_Billing`) REFERENCES `billing_pasien` (`ID_Billing`), + ADD CONSTRAINT `billing_icd9_ibfk_2` FOREIGN KEY (`ID_ICD9`) REFERENCES `icd9` (`ID_ICD9`); + +-- +-- Constraints for table `billing_icd10` +-- +ALTER TABLE `billing_icd10` + ADD CONSTRAINT `billing_icd10_ibfk_1` FOREIGN KEY (`ID_Billing`) REFERENCES `billing_pasien` (`ID_Billing`), + ADD CONSTRAINT `billing_icd10_ibfk_2` FOREIGN KEY (`ID_ICD10`) REFERENCES `icd10` (`ID_ICD10`); + +-- +-- Constraints for table `billing_inacbg_ri` +-- +ALTER TABLE `billing_inacbg_ri` + ADD CONSTRAINT `billing_inacbg_ri_ibfk_1` FOREIGN KEY (`ID_Billing`) REFERENCES `billing_pasien` (`ID_Billing`), + ADD CONSTRAINT `billing_inacbg_ri_ibfk_2` FOREIGN KEY (`ID_INACBG_RI`) REFERENCES `ina_cbg_rawatinap` (`ID_INACBG_RI`); + +-- +-- Constraints for table `billing_inacbg_rj` +-- +ALTER TABLE `billing_inacbg_rj` + ADD CONSTRAINT `billing_inacbg_rj_ibfk_1` FOREIGN KEY (`ID_Billing`) REFERENCES `billing_pasien` (`ID_Billing`), + ADD CONSTRAINT `billing_inacbg_rj_ibfk_2` FOREIGN KEY (`ID_INACBG_RJ`) REFERENCES `ina_cbg_rawatjalan` (`ID_INACBG_RJ`); + +-- +-- Constraints for table `billing_pasien` +-- +ALTER TABLE `billing_pasien` + ADD CONSTRAINT `billing_pasien_ibfk_1` FOREIGN KEY (`ID_Pasien`) REFERENCES `pasien` (`ID_Pasien`); + +-- +-- Constraints for table `billing_tindakan` +-- +ALTER TABLE `billing_tindakan` + ADD CONSTRAINT `billing_tindakan_ibfk_1` FOREIGN KEY (`ID_Billing`) REFERENCES `billing_pasien` (`ID_Billing`), + ADD CONSTRAINT `billing_tindakan_ibfk_2` FOREIGN KEY (`ID_Tarif_RS`) REFERENCES `tarif_rs` (`ID_Tarif_RS`); +COMMIT; + +/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; +/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; +/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; diff --git a/backendcareit_v4/sql/careit_db_v2.sql b/backendcareit_v4/sql/careit_db_v2.sql new file mode 100644 index 0000000..61901e7 --- /dev/null +++ b/backendcareit_v4/sql/careit_db_v2.sql @@ -0,0 +1,33719 @@ +-- phpMyAdmin SQL Dump +-- version 5.2.1 +-- https://www.phpmyadmin.net/ +-- +-- Host: 127.0.0.1 +-- Generation Time: Dec 23, 2025 at 07:46 AM +-- Server version: 10.4.32-MariaDB +-- PHP Version: 8.2.12 + +SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; +START TRANSACTION; +SET time_zone = "+00:00"; + + +/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; +/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; +/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; +/*!40101 SET NAMES utf8mb4 */; + +-- +-- Database: `care_it_data` +-- + +-- -------------------------------------------------------- + +-- +-- Table structure for table `admin_ruangan` +-- + +CREATE TABLE `admin_ruangan` ( + `ID_Admin` int(11) NOT NULL, + `Nama_Admin` varchar(100) NOT NULL, + `Password` varchar(255) NOT NULL, + `ID_Ruangan` int(11) DEFAULT NULL +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; + +-- +-- Dumping data for table `admin_ruangan` +-- + +INSERT INTO `admin_ruangan` (`ID_Admin`, `Nama_Admin`, `Password`, `ID_Ruangan`) VALUES +(1, 'admin', 'admin123', 1); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `billing_dokter` +-- + +CREATE TABLE `billing_dokter` ( + `ID_Dokter` int(11) NOT NULL, + `ID_Billing` int(11) NOT NULL, + `tanggal` date DEFAULT NULL +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; + +-- +-- Dumping data for table `billing_dokter` +-- + +INSERT INTO `billing_dokter` (`ID_Dokter`, `ID_Billing`, `tanggal`) VALUES +(2, 9, '2025-12-08'), +(5, 9, '2025-12-08'), +(12, 9, '2025-12-09'), +(1155, 10, '2025-12-11'), +(2, 11, '2025-12-11'), +(3, 12, '2025-12-11'), +(3, 13, '2025-12-11'), +(3, 14, '2025-12-11'), +(3, 15, '2025-12-11'), +(2, 14, '2025-12-11'), +(2, 15, '2025-12-11'), +(20, 16, '2025-12-11'), +(1155, 16, '2025-12-11'), +(2, 17, '2025-12-11'), +(2, 18, '2025-12-11'), +(2, 19, '2025-12-11'), +(2, 20, '2025-12-11'), +(2, 21, '2025-12-11'), +(2, 22, '2025-12-11'), +(124, 23, '2025-12-12'), +(321, 24, '2025-12-12'), +(1155, 23, '2025-12-12'), +(1155, 23, '2025-12-13'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `billing_icd9` +-- + +CREATE TABLE `billing_icd9` ( + `ID_Billing` int(11) NOT NULL, + `ID_ICD9` varchar(20) NOT NULL +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; + +-- +-- Dumping data for table `billing_icd9` +-- + +INSERT INTO `billing_icd9` (`ID_Billing`, `ID_ICD9`) VALUES +(1, '00.0'), +(1, '00'), +(2, '00'), +(2, '00.0'), +(2, '00.01'), +(3, '00'), +(4, '00.1'), +(4, '17.7'), +(4, '17.70'), +(5, '00.22'), +(5, '00.21'), +(6, '00'), +(6, '00.0'), +(7, '00.03'), +(7, '00.09'), +(8, '89.07'), +(8, '00.09'), +(8, '00.02'), +(8, '00.03'), +(8, '00.02'), +(9, '00.0'), +(9, '00'), +(9, '00.13'), +(9, '00.12'), +(9, '00.03'), +(9, '00.02'), +(10, '00.0'), +(11, '00.02'), +(12, '00'), +(13, '00.42'), +(14, '00.0'), +(15, '00.14'), +(14, '55'), +(14, '00'), +(14, '00'), +(14, '00'), +(15, '00.14'), +(15, '00.14'), +(15, '00.14'), +(15, '00.2'), +(15, '00.14'), +(15, '00.14'), +(15, '00.14'), +(15, '00.14'), +(15, '00.2'), +(15, '00.01'), +(15, '00.14'), +(15, '00.14'), +(15, '00.14'), +(15, '00.14'), +(15, '00.2'), +(15, '00.14'), +(15, '00.14'), +(15, '00.14'), +(15, '00.14'), +(15, '00.2'), +(15, '00.01'), +(15, '00.40'), +(15, '00.14'), +(15, '00.14'), +(15, '00.14'), +(15, '00.14'), +(15, '00.2'), +(15, '00.14'), +(15, '00.14'), +(15, '00.14'), +(15, '00.14'), +(15, '00.2'), +(15, '00.01'), +(15, '00.14'), +(15, '00.14'), +(15, '00.14'), +(15, '00.14'), +(15, '00.2'), +(15, '00.14'), +(15, '00.14'), +(15, '00.14'), +(15, '00.14'), +(15, '00.2'), +(15, '00.01'), +(15, '00.40'), +(15, '34.23'), +(15, '00.14'), +(15, '00.14'), +(15, '00.14'), +(15, '00.14'), +(15, '00.2'), +(15, '00.14'), +(15, '00.14'), +(15, '00.14'), +(15, '00.14'), +(15, '00.2'), +(15, '00.01'), +(15, '00.14'), +(15, '00.14'), +(15, '00.14'), +(15, '00.14'), +(15, '00.2'), +(15, '00.14'), +(15, '00.14'), +(15, '00.14'), +(15, '00.14'), +(15, '00.2'), +(15, '00.01'), +(15, '00.40'), +(15, '00.14'), +(15, '00.14'), +(15, '00.14'), +(15, '00.14'), +(15, '00.2'), +(15, '00.14'), +(15, '00.14'), +(15, '00.14'), +(15, '00.14'), +(15, '00.2'), +(15, '00.01'), +(15, '00.14'), +(15, '00.14'), +(15, '00.14'), +(15, '00.14'), +(15, '00.2'), +(15, '00.14'), +(15, '00.14'), +(15, '00.14'), +(15, '00.14'), +(15, '00.2'), +(15, '00.01'), +(15, '00.40'), +(15, '34.23'), +(15, '53'), +(16, '41.43'), +(16, '41.43'), +(16, '00.34'), +(17, '00.17'), +(19, '00'), +(19, '00'), +(19, '00'), +(19, '00'), +(21, '00.01'), +(21, '01.19'), +(21, '01.18'), +(23, '86.24'), +(24, '00.1'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `billing_icd10` +-- + +CREATE TABLE `billing_icd10` ( + `ID_Billing` int(11) NOT NULL, + `ID_ICD10` varchar(20) NOT NULL +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; + +-- +-- Dumping data for table `billing_icd10` +-- + +INSERT INTO `billing_icd10` (`ID_Billing`, `ID_ICD10`) VALUES +(1, 'A00'), +(1, 'A00.0'), +(2, 'A00'), +(2, 'A00.0'), +(2, 'A00.1'), +(3, 'A00'), +(4, 'A00'), +(4, 'A00.0'), +(4, 'A00.1'), +(5, 'A01.1'), +(5, 'A01.2'), +(6, 'A00'), +(6, 'A00.0'), +(7, 'A00.0'), +(7, 'A00.1'), +(8, 'A00.0'), +(8, 'A01.0'), +(8, 'A02.1'), +(8, 'A01'), +(8, 'A00.9'), +(9, 'A00'), +(9, 'A00.0'), +(9, 'A01'), +(9, 'A00.9'), +(9, 'A00.0'), +(9, 'A00'), +(10, 'A00.0'), +(11, 'A16.2'), +(12, 'A00'), +(13, 'A06.9'), +(14, 'A01.3'), +(15, 'A06.6'), +(14, 'C64'), +(14, 'A00'), +(14, 'A00'), +(14, 'A00'), +(15, 'A06.6'), +(15, 'A06.6'), +(15, 'A06.6'), +(15, 'A03.0'), +(15, 'A06.6'), +(15, 'A06.6'), +(15, 'A06.6'), +(15, 'A06.6'), +(15, 'A03.0'), +(15, 'A08.3'), +(15, 'A06.6'), +(15, 'A06.6'), +(15, 'A06.6'), +(15, 'A06.6'), +(15, 'A03.0'), +(15, 'A06.6'), +(15, 'A06.6'), +(15, 'A06.6'), +(15, 'A06.6'), +(15, 'A03.0'), +(15, 'A08.3'), +(15, 'A06.5'), +(15, 'A06.6'), +(15, 'A06.6'), +(15, 'A06.6'), +(15, 'A06.6'), +(15, 'A03.0'), +(15, 'A06.6'), +(15, 'A06.6'), +(15, 'A06.6'), +(15, 'A06.6'), +(15, 'A03.0'), +(15, 'A08.3'), +(15, 'A06.6'), +(15, 'A06.6'), +(15, 'A06.6'), +(15, 'A06.6'), +(15, 'A03.0'), +(15, 'A06.6'), +(15, 'A06.6'), +(15, 'A06.6'), +(15, 'A06.6'), +(15, 'A03.0'), +(15, 'A08.3'), +(15, 'A06.5'), +(15, 'M43.66'), +(15, 'A06.6'), +(15, 'A06.6'), +(15, 'A06.6'), +(15, 'A06.6'), +(15, 'A03.0'), +(15, 'A06.6'), +(15, 'A06.6'), +(15, 'A06.6'), +(15, 'A06.6'), +(15, 'A03.0'), +(15, 'A08.3'), +(15, 'A06.6'), +(15, 'A06.6'), +(15, 'A06.6'), +(15, 'A06.6'), +(15, 'A03.0'), +(15, 'A06.6'), +(15, 'A06.6'), +(15, 'A06.6'), +(15, 'A06.6'), +(15, 'A03.0'), +(15, 'A08.3'), +(15, 'A06.5'), +(15, 'A06.6'), +(15, 'A06.6'), +(15, 'A06.6'), +(15, 'A06.6'), +(15, 'A03.0'), +(15, 'A06.6'), +(15, 'A06.6'), +(15, 'A06.6'), +(15, 'A06.6'), +(15, 'A03.0'), +(15, 'A08.3'), +(15, 'A06.6'), +(15, 'A06.6'), +(15, 'A06.6'), +(15, 'A06.6'), +(15, 'A03.0'), +(15, 'A06.6'), +(15, 'A06.6'), +(15, 'A06.6'), +(15, 'A06.6'), +(15, 'A03.0'), +(15, 'A08.3'), +(15, 'A06.5'), +(15, 'M43.66'), +(15, 'M72.04'), +(16, 'I82'), +(16, 'I82'), +(16, 'A06.4'), +(17, 'A90'), +(17, 'A91'), +(18, 'A01.3'), +(18, 'A01.3'), +(18, 'A01.3'), +(18, 'A01.3'), +(19, 'A00'), +(20, 'A00'), +(19, 'A00'), +(19, 'A00'), +(19, 'A00'), +(19, 'A00'), +(19, 'A00'), +(19, 'A00'), +(19, 'A00'), +(21, 'A00.0'), +(21, 'A00.0'), +(21, 'A00.0'), +(21, 'A00.0'), +(22, 'A02.8'), +(21, 'A00.9'), +(21, 'A05.3'), +(23, 'C43.9'), +(23, 'C44'), +(24, 'A07.8'), +(23, 'A00'), +(23, 'A00'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `billing_inacbg_ri` +-- + +CREATE TABLE `billing_inacbg_ri` ( + `ID_Billing` int(11) NOT NULL, + `ID_INACBG_RI` varchar(20) NOT NULL +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; + +-- +-- Dumping data for table `billing_inacbg_ri` +-- + +INSERT INTO `billing_inacbg_ri` (`ID_Billing`, `ID_INACBG_RI`) VALUES +(5, 'A-4-15-I'), +(8, 'A-4-13-I'), +(8, 'A-4-13-II'), +(8, 'A-4-15-I'), +(8, 'A-4-13-I'), +(8, 'A-4-12-III'), +(8, 'A-4-14-I'), +(8, 'A-4-14-III'), +(8, 'A-4-14-II'), +(9, 'A-4-10-III'), +(14, 'A-4-10-III'), +(14, 'A-4-15-I'), +(14, 'A-4-10-III'), +(9, 'A-4-10-I'), +(9, 'A-4-15-I'), +(14, 'A-4-10-III'), +(9, 'A-4-10-I'), +(9, 'A-4-10-I'), +(4, 'C-4-10-III'), +(9, 'A-4-10-II'), +(1, 'C-4-13-II'), +(14, 'A-4-10-III'), +(14, 'D-1-11-III'), +(14, 'A-4-10-II'), +(14, 'A-4-10-III'), +(14, 'A-4-10-III'), +(14, 'A-4-15-III'), +(14, 'A-4-10-III'), +(14, 'B-1-13-III'), +(14, 'C-4-13-III'), +(1, 'A-4-10-III'), +(14, 'B-1-12-II'), +(14, 'A-4-10-III'), +(14, 'F-4-15-III'), +(15, 'A-4-11-III'), +(14, 'A-4-10-III'), +(14, 'A-4-15-III'), +(14, 'B-1-01-III'), +(14, 'L-1-30-III'), +(15, 'A-4-10-II'), +(15, 'A-4-15-II'), +(15, 'C-4-10-III'), +(15, 'K-4-10-III'), +(15, 'A-4-10-II'), +(15, 'E-1-01-II'), +(16, 'G-4-12-I'), +(16, 'D-4-11-I'), +(17, 'A-4-12-III'), +(23, 'A-4-10-I'), +(23, 'L-4-12-I'), +(24, 'F-4-19-I'), +(20, 'A-4-11-I'), +(22, 'S-4-12-I'), +(19, 'A-4-13-I'), +(21, 'A-4-10-I'), +(23, 'A-4-10-I'), +(23, 'A-4-10-I'), +(23, 'A-4-10-I'), +(2, 'A-4-10-I'), +(4, 'A-4-10-I'), +(6, 'A-4-10-I'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `billing_inacbg_rj` +-- + +CREATE TABLE `billing_inacbg_rj` ( + `ID_Billing` int(11) NOT NULL, + `ID_INACBG_RJ` varchar(20) NOT NULL +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; + +-- +-- Dumping data for table `billing_inacbg_rj` +-- + +INSERT INTO `billing_inacbg_rj` (`ID_Billing`, `ID_INACBG_RJ`) VALUES +(4, 'B-3-12-0'), +(3, 'D-2-11-0'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `billing_pasien` +-- + +CREATE TABLE `billing_pasien` ( + `ID_Billing` int(11) NOT NULL, + `ID_Pasien` int(11) NOT NULL, + `Cara_Bayar` enum('BPJS','Umum') DEFAULT NULL, + `Tanggal_Masuk` date DEFAULT NULL, + `Tanggal_Keluar` date DEFAULT NULL, + `Total_Tarif_RS` decimal(15,2) DEFAULT NULL, + `Total_Klaim` decimal(15,2) DEFAULT NULL, + `Billing_Sign` enum('Hijau','Kuning','Merah') DEFAULT 'Hijau' +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; + +-- +-- Dumping data for table `billing_pasien` +-- + +INSERT INTO `billing_pasien` (`ID_Billing`, `ID_Pasien`, `Cara_Bayar`, `Tanggal_Masuk`, `Tanggal_Keluar`, `Total_Tarif_RS`, `Total_Klaim`, `Billing_Sign`) VALUES +(1, 1, 'BPJS', '2025-12-01', '2025-12-11', 150000.00, 14618300.00, 'Hijau'), +(2, 2, 'BPJS', '2025-12-01', '2025-12-13', 227000.00, 3702300.00, 'Hijau'), +(3, 3, 'BPJS', '2025-12-01', '2025-12-15', 227000.00, 2558500.00, 'Hijau'), +(4, 4, 'BPJS', '2025-12-01', '2025-12-13', 417000.00, 41653600.00, 'Hijau'), +(5, 4, 'BPJS', '2025-12-02', '2025-12-05', 278000.00, 25341300.00, 'Hijau'), +(6, 4, 'BPJS', '2025-12-02', '2025-12-13', 150000.00, 3702300.00, 'Hijau'), +(7, 3, 'BPJS', '2025-12-02', '2025-12-02', 293000.00, 0.00, ''), +(8, 5, 'BPJS', '2025-12-02', NULL, 478000.00, 9034100.00, 'Hijau'), +(9, 6, 'BPJS', '2025-12-08', '2025-12-11', 451000.00, 36484500.00, ''), +(10, 7, 'BPJS', '2025-12-11', NULL, 70000.00, 0.00, ''), +(11, 8, 'BPJS', '2025-12-11', NULL, 478000.00, 0.00, ''), +(12, 9, 'BPJS', '2025-12-11', NULL, 80000.00, 0.00, ''), +(13, 10, 'BPJS', '2025-12-11', NULL, 42000.00, 0.00, ''), +(14, 11, 'BPJS', '2025-12-11', '2025-12-11', 296236000.00, 566480600.00, 'Merah'), +(15, 12, 'BPJS', '2025-12-11', '2025-12-11', 193278000.00, 119469800.00, 'Merah'), +(16, 13, 'BPJS', '2025-12-11', '2025-12-11', 3120000.00, 13088400.00, 'Kuning'), +(17, 14, 'BPJS', '2025-12-11', '2025-12-11', 297000.00, 7279900.00, 'Hijau'), +(18, 15, 'BPJS', '2025-12-11', NULL, 308000.00, 0.00, ''), +(19, 16, 'BPJS', '2025-12-11', '2025-12-12', 640000.00, 2897600.00, 'Kuning'), +(20, 17, 'BPJS', '2025-12-11', '2025-12-12', 80000.00, 6540500.00, 'Hijau'), +(21, 18, 'BPJS', '2025-12-11', '2025-12-12', 402000.00, 3702300.00, 'Hijau'), +(22, 19, 'BPJS', '2025-12-11', '2025-12-12', 139000.00, 2913000.00, 'Hijau'), +(23, 20, 'BPJS', '2025-12-12', '2025-12-13', 2820000.00, 17630800.00, 'Merah'), +(24, 21, 'BPJS', '2025-12-12', '2025-12-12', 231000.00, 5982700.00, 'Hijau'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `billing_tindakan` +-- + +CREATE TABLE `billing_tindakan` ( + `ID_Billing` int(11) NOT NULL, + `ID_Tarif_RS` varchar(20) NOT NULL +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; + +-- +-- Dumping data for table `billing_tindakan` +-- + +INSERT INTO `billing_tindakan` (`ID_Billing`, `ID_Tarif_RS`) VALUES +(1, 'DAR.001'), +(1, 'DAR.002'), +(2, 'DAR.001'), +(2, 'DAR.002'), +(2, 'KFM.001'), +(3, 'DAR.001'), +(3, 'DAR.002'), +(3, 'KFM.001'), +(4, 'KFM.006'), +(4, 'KFM.005'), +(4, 'KFM.004'), +(5, 'KFM.015'), +(5, 'KFM.014'), +(6, 'DAR.001'), +(6, 'DAR.002'), +(7, 'KFM.002'), +(7, 'KFM.003'), +(7, 'KFM.004'), +(8, 'DAR.001'), +(8, 'DAR.002'), +(8, 'KFM.003'), +(8, 'KFM.013'), +(8, 'KFM.042'), +(8, 'KFM.041'), +(9, 'DAR.002'), +(9, 'DAR.001'), +(9, 'KFM.002'), +(9, 'KFM.003'), +(9, 'DAR.002'), +(9, 'KFM.001'), +(10, 'DAR.002'), +(11, 'R.LMK.003'), +(12, 'DAR.001'), +(13, 'KFM.093'), +(14, 'DAR.002'), +(15, 'KFM.016'), +(14, 'DAR.002'), +(14, 'KFM.002'), +(14, 'KFM.032'), +(14, 'R.AKO.004'), +(14, 'R.TOKH.001'), +(14, 'DAR.002'), +(14, 'DAR.001'), +(14, 'R.TO.0893'), +(15, 'KFM.016'), +(15, 'KFM.031'), +(15, 'KFM.016'), +(15, 'KFM.016'), +(15, 'KFM.031'), +(15, 'KFM.017'), +(15, 'KFM.016'), +(15, 'KFM.016'), +(15, 'KFM.031'), +(15, 'KFM.016'), +(15, 'KFM.016'), +(15, 'KFM.031'), +(15, 'KFM.017'), +(15, 'KFM.045'), +(15, 'KFM.016'), +(15, 'KFM.016'), +(15, 'KFM.031'), +(15, 'KFM.016'), +(15, 'KFM.016'), +(15, 'KFM.031'), +(15, 'KFM.017'), +(15, 'KFM.016'), +(15, 'KFM.016'), +(15, 'KFM.031'), +(15, 'KFM.016'), +(15, 'KFM.016'), +(15, 'KFM.031'), +(15, 'KFM.017'), +(15, 'KFM.045'), +(15, 'KFM.063'), +(15, 'KFM.016'), +(15, 'KFM.016'), +(15, 'KFM.031'), +(15, 'KFM.016'), +(15, 'KFM.016'), +(15, 'KFM.031'), +(15, 'KFM.017'), +(15, 'KFM.016'), +(15, 'KFM.016'), +(15, 'KFM.031'), +(15, 'KFM.016'), +(15, 'KFM.016'), +(15, 'KFM.031'), +(15, 'KFM.017'), +(15, 'KFM.045'), +(15, 'KFM.016'), +(15, 'KFM.016'), +(15, 'KFM.031'), +(15, 'KFM.016'), +(15, 'KFM.016'), +(15, 'KFM.031'), +(15, 'KFM.017'), +(15, 'KFM.016'), +(15, 'KFM.016'), +(15, 'KFM.031'), +(15, 'KFM.016'), +(15, 'KFM.016'), +(15, 'KFM.031'), +(15, 'KFM.017'), +(15, 'KFM.045'), +(15, 'KFM.063'), +(15, 'KFM.053'), +(15, 'KFM.071'), +(15, 'R.TO.2289'), +(15, 'R.TO.0923'), +(15, 'R.TO.3316'), +(15, 'R.TO.0859'), +(15, 'KFM.016'), +(15, 'KFM.016'), +(15, 'KFM.031'), +(15, 'KFM.016'), +(15, 'KFM.016'), +(15, 'KFM.031'), +(15, 'KFM.017'), +(15, 'KFM.016'), +(15, 'KFM.016'), +(15, 'KFM.031'), +(15, 'KFM.016'), +(15, 'KFM.016'), +(15, 'KFM.031'), +(15, 'KFM.017'), +(15, 'KFM.045'), +(15, 'KFM.016'), +(15, 'KFM.016'), +(15, 'KFM.031'), +(15, 'KFM.016'), +(15, 'KFM.016'), +(15, 'KFM.031'), +(15, 'KFM.017'), +(15, 'KFM.016'), +(15, 'KFM.016'), +(15, 'KFM.031'), +(15, 'KFM.016'), +(15, 'KFM.016'), +(15, 'KFM.031'), +(15, 'KFM.017'), +(15, 'KFM.045'), +(15, 'KFM.063'), +(15, 'KFM.016'), +(15, 'KFM.016'), +(15, 'KFM.031'), +(15, 'KFM.016'), +(15, 'KFM.016'), +(15, 'KFM.031'), +(15, 'KFM.017'), +(15, 'KFM.016'), +(15, 'KFM.016'), +(15, 'KFM.031'), +(15, 'KFM.016'), +(15, 'KFM.016'), +(15, 'KFM.031'), +(15, 'KFM.017'), +(15, 'KFM.045'), +(15, 'KFM.016'), +(15, 'KFM.016'), +(15, 'KFM.031'), +(15, 'KFM.016'), +(15, 'KFM.016'), +(15, 'KFM.031'), +(15, 'KFM.017'), +(15, 'KFM.016'), +(15, 'KFM.016'), +(15, 'KFM.031'), +(15, 'KFM.016'), +(15, 'KFM.016'), +(15, 'KFM.031'), +(15, 'KFM.017'), +(15, 'KFM.045'), +(15, 'KFM.063'), +(15, 'KFM.053'), +(15, 'KFM.071'), +(15, 'R.TO.2289'), +(15, 'R.TO.0923'), +(15, 'R.TO.3316'), +(15, 'R.TO.0859'), +(15, 'R.TO.0471'), +(16, 'R.TNO.1747'), +(16, 'R.TNO.1747'), +(16, 'R.TDE.049'), +(17, 'DAR.001'), +(17, 'R.RDL.215'), +(17, 'R.LPK.118'), +(17, 'R.LPK.265'), +(18, 'KFM.003'), +(18, 'KFM.003'), +(18, 'KFM.003'), +(18, 'KFM.003'), +(19, 'DAR.001'), +(20, 'DAR.001'), +(19, 'DAR.001'), +(19, 'DAR.001'), +(19, 'DAR.001'), +(19, 'DAR.001'), +(19, 'DAR.001'), +(19, 'DAR.001'), +(19, 'DAR.001'), +(21, 'DAR.002'), +(21, 'DAR.002'), +(21, 'DAR.002'), +(21, 'DAR.002'), +(22, 'KFM.004'), +(21, 'DAR.001'), +(21, 'KFM.039'), +(23, 'R.TO.2414'), +(23, 'DAR.002'), +(24, 'DAR.001'), +(24, 'KFM.015'), +(24, 'KFM.085'), +(23, 'DAR.001'), +(23, 'DAR.002'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `dokter` +-- + +CREATE TABLE `dokter` ( + `ID_Dokter` int(11) NOT NULL, + `Nama_Dokter` varchar(100) NOT NULL, + `Status` enum('DPJP','PPDS') NOT NULL, + `KSM` varchar(100) DEFAULT NULL, + `Email_UB` varchar(100) DEFAULT NULL, + `Email_Pribadi` varchar(100) DEFAULT NULL +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; + +-- +-- Dumping data for table `dokter` +-- + +INSERT INTO `dokter` (`ID_Dokter`, `Nama_Dokter`, `Status`, `KSM`, `Email_UB`, `Email_Pribadi`) VALUES +(2, 'dr. Hajeng Wulandari, Sp.A, Mbiomed', 'DPJP', 'Anak', 'hajengwulandari.fk@ub.ac.id', 'hajeng.wulandari@gmail.com'), +(3, 'dr. Irfan Agus Salim, Sp.A, Mbiomed ', 'DPJP', 'Anak', 'irfanagus.fk@ub.ac.id', 'salim.dr87@gmail.com'), +(4, 'dr. Fadilah Muttaqin, Spp.A,MBiomed', 'DPJP', 'Anak', '-', 'fadilahmutaqin25888@gmail.com'), +(5, 'dr. Ery Olivianto, Sp. A (K)', 'DPJP', 'Anak', 'ery15.fk@ub.ac.id', 'ery_agustin@yahoo.com'), +(6, 'Dr.dr. Krisni Soebandijah, Sp.A(K)', 'DPJP', 'Anak', 'krisni19.fk@ub.ac.id', 'krisdika2002@yahoo.com'), +(7, 'dr. Astrid Kristina Kardani, Sp. A, MBiomed', 'DPJP', 'Anak', 'astridkardani.fk@ub.ac.id', '-'), +(8, 'dr. Nugroho Danu Tri Subroto, Sp.A(K)', 'DPJP', 'Anak', 'danu.dr@ub.ac.id', '-'), +(9, 'dr. Irene Ratridewi, Sp.A(K), M.Kes', 'DPJP', 'Anak', 'irene24.fk@ub.ac.id', 'irtridewi@yahoo.com'), +(10, 'dr.Savitri Laksmi Winaputri, Sp.A', 'DPJP', 'Anak', '-', 'wina.savitri@yahoo.com'), +(11, 'Dr.dr. Wisnu Barlianto, Sp.A(K), Msi.Med', 'DPJP', 'Anak', 'wisnu_barlian@ub.ac.id', '-'), +(12, 'dr. Desy Wulandari, Sp.A, M.Biomed', 'DPJP', 'Anak', 'desywulandari@ub.ac.id', 'deardesy@yahoo.com'), +(13, 'dr. Satrio Wibowo, Sp.A(K), Msi.Medย ', 'DPJP', 'Anak', 'satrio_wibowo@ub.ac.id', '-'), +(14, 'dr. Muhammad Irawan, Sp.A, MBiomed', 'DPJP', 'Anak', 'muhammadirawan.fk@ub.ac.id', 'muhammadirawan86@gmail.com'), +(15, 'dr. A. Susanto Nugroho, Sp.A(K)ย ', 'DPJP', 'Anak', 'susanto04.fk@ub.ac.id', 'susantonugroho.ns@gmail.com'), +(16, 'dr. Sonny Wicaksono, Sp. A, M.Kes', 'DPJP', 'Anak', '-', 'sonyfk@gmail.com'), +(17, 'dr. Brigitta Ida RVC, Sp.A(K), M.Kes', 'DPJP', 'Anak', 'briggita_vebi@ub.ac.id', 'brigitta_vebi@yahoo.com'), +(18, 'dr. Eko Sulistijono, Sp.A', 'DPJP', 'Anak', 'eko25.fk@ub.ac.id', 'ekosulistijono@yahoo.com'), +(19, 'Dr. dr. Ariani, M.Kes, Sp.A(K)', 'DPJP', 'Anak', 'arianidr@ub.ac.id', '-'), +(20, 'dr. Prasetya Ismail Permadi, Sp.A(K), M.Biomed', 'DPJP', 'Anak', 'prasetyapermadi@ub.ac.id', '-'), +(21, 'dr. Saptadi Yuliarto, M.Kes, Sp.A(K)', 'DPJP', 'Anak', 'saptadiy@ub.ac.id', '-'), +(22, 'Dr. dr. Harjoedi Adji Tjahjono, Sp.A(K)', 'DPJP', 'Anak', 'haryudi_aji2000@ub.ac.id', 'haryudi_aji2000@yahoo.com'), +(23, 'dr. Dyahris Koentartiwi, Sp.A(K)', 'DPJP', 'Anak', 'dyahris08.fk@ub.ac.id', 'risty.kuntartiwi@gmail.com'), +(24, 'dr. Muchammad Fahrul Udin, M.Kes, Sp.A, Subsp. Resp(K)', 'DPJP', 'Anak', 'udin24.fk@ub.ac.id', 'fahruludin@yahoo.com'), +(25, 'dr. Kurniawan Taufiq Kadafi, M.Biomed, Sp.A(K)', 'DPJP', 'Anak', 'kadafi12.fk@ub.ac.id', 'kurniawankadafi@gmail.com'), +(26, 'dr. Laurentia Ima Monica, Sp.A., M.Biomed.', 'DPJP', 'Anak', 'monicasutatnto@ub.ac.id', ''), +(27, 'dr. Setya Mithra Hartiastuti, MSi.Med, Sp.A(K)', 'DPJP', 'Anak', '-', 'setyamithra@gmail.com'), +(28, 'dr. Melany Farrahdilla, Sp.A, M.Kes', 'DPJP', 'Anak', '-', 'melany.f@gmail.com'), +(29, 'dr. Melinda, Sp.A, M.Biomed', 'DPJP', 'Anak', '-', 'melindarakhmat@gmail.com'), +(30, 'dr. Mochamad Chabibi, Sp.A, M.Biomed', 'DPJP', 'Anak', '-', 'putrablitar999@yahoo.com'), +(31, 'dr. Hidayati Utami Dewi, Sp.A', 'DPJP', 'Anak', '-', 'utami3dewi@gmail.com'), +(32, 'dr. Ardhanis Ramadhanti, Sp.A', 'DPJP', 'Anak', '-', 'ardhanis9@gmail.com'), +(33, 'dr. Emi Yulianti, Sp.A', 'DPJP', 'Anak', '-', 'meme_yulianti@yahoo.com; emi230576yulianti@gmail.com'), +(34, 'dr. Herlin Kristanti, Sp.A', 'DPJP', 'Anak', '-', 'herlinkristanti@yahoo.co.id'), +(35, 'dr. Zuhrotul Aini, Sp.A', 'DPJP', 'Anak', '-', 'ainizuhri74@gmail.com'), +(36, 'dr. Novi Efridayanti, Sp.A., M.Biomed', 'DPJP', 'Anak', '-', 'novi.evridayanti@gmail.com'), +(37, 'dr. Astri Proborini, Sp.A., M.Kes', 'DPJP', 'Anak', '-', 'astriporini@gmail.com'), +(38, 'dr. Charity Monica, Sp.A', 'DPJP', 'Anak', '-', '-'), +(39, 'dr.Dewangga Primananda Susanto, MMRS., Sp. A', 'DPJP', 'Anak', '-', '-'), +(40, 'dr. Tulus Sampurno, Sp.A', 'DPJP', 'Anak', '-', '-'), +(41, 'Ervan Aditya Putra Chafid', 'PPDS', 'Anak', 'ervanaditya5@student.ub.ac.id', '-'), +(42, 'RAYI IJQI ASASAIN', 'PPDS', 'Anak', 'rayi_ijqi@student.ub.ac.id', '-'), +(43, 'Prastiti Rahmanita', 'PPDS', 'Anak', 'prastitirhm@student.ub.ac.id', '-'), +(44, 'Tazkiyatul Firdaus', 'PPDS', 'Anak', 'tazkiya@student.ub.ac.id', '-'), +(45, 'Najwa Amalia', 'PPDS', 'Anak', 'najwaamalia@student.ub.ac.id', '-'), +(46, 'Erlisa Devi Saptirina Putri', 'PPDS', 'Anak', 'erlisadevi@student.ub.ac.id', '-'), +(47, 'Astika Jr Said', 'PPDS', 'Anak', 'astikajrsaid@student.ub.ac.id', '-'), +(48, 'Galing Chandika Putra', 'PPDS', 'Anak', 'galingchandika@student.ub.ac.id', '-'), +(49, 'Hernita Taurustya', 'PPDS', 'Anak', 'hernita_ika33@student.ub.ac.id', '-'), +(50, 'Sintya Dyliza', 'PPDS', 'Anak', 'sintyadyliza@student.ub.ac.id', '-'), +(51, 'SARAH ZORAYA MIRZA', 'PPDS', 'Anak', 'sarahmirza@student.ub.ac.id', '-'), +(52, 'dr. La Ode Purna Alam Firdaus', 'PPDS', 'Anak', 'alammaasara32@student.ub.ac.id', '-'), +(53, 'dr. Christian Nopiandi', 'PPDS', 'Anak', 'tian601184@student.ub.ac.id', '-'), +(54, 'dr. Fania Dora Aslamy', 'PPDS', 'Anak', 'faniadora@student.ub.ac.id', '-'), +(55, 'dr. Hardian Rakhmawardana', 'PPDS', 'Anak', 'hardian128@student.ub.ac.id', '-'), +(56, 'dr. Athira Fitriah', 'PPDS', 'Anak', 'fitriahathira27@student.ub.ac.id', '-'), +(57, 'dr. Nia Sahra Labetubun', 'PPDS', 'Anak', 'nialabetubun@student.ub.ac.id', '-'), +(58, 'dr. Meytrisna Ajeng Zwastica', 'PPDS', 'Anak', 'meytrisnaaz17@student.ub.ac.id', '-'), +(59, 'Stephanie Hellen Hartoyo', 'PPDS', 'Anak', 'drstephy89@student.ub.ac.id', '-'), +(60, 'Deddy Christian Aritonang', 'PPDS', 'Anak', 'deddyaritonang@student.ub.ac.id', '-'), +(61, 'Raden Rara Shinta Chandra Permata', 'PPDS', 'Anak', 'rrshintacp@student.ub.ac.id', '-'), +(62, 'Rima Nur Rahmawati', 'PPDS', 'Anak', 'rimanr@student.ub.ac.id', '-'), +(63, 'Angela Permera Tubuq', 'PPDS', 'Anak', 'permeradr@student.ub.ac.id', '-'), +(64, 'AULYA FARRA RAHMADANY', 'PPDS', 'Anak', 'aulyafr@student.ub.ac.id', '-'), +(65, 'Fitria Ummu Habibah', 'PPDS', 'Anak', 'fitriaummu@student.ub.ac.id', '-'), +(66, 'Yasmin Eka Aziza', 'PPDS', 'Anak', 'yasminekaaziza@student.ub.ac.id', '-'), +(67, 'Firmandiyara Angkasa', 'PPDS', 'Anak', 'diarakasa@student.ub.ac.id', '-'), +(68, 'Rifqi Syarif Rinanto', 'PPDS', 'Anak', 'rifqippds@student.ub.ac.id', '-'), +(69, 'Kienan Agni Dewanty', 'PPDS', 'Anak', 'kienanagnid@student.ub.ac.id', '-'), +(70, 'rayza swan awanti', 'PPDS', 'Anak', 'rayzaswan@student.ub.ac.id', '-'), +(71, 'Emiliana Susanti Foris', 'PPDS', 'Anak', 'emilianaforis@student.ub.ac.id', '-'), +(72, 'Victor Julius Imoek', 'PPDS', 'Anak', 'victorjulius@student.ub.ac.id', '-'), +(73, 'Gindy Aulia Mustikasari', 'PPDS', 'Anak', 'gindyaulia@student.ub.ac.id', '-'), +(74, 'Izdihar Rahmadinda', 'PPDS', 'Anak', 'izdiharr@student.ub.ac.id', '-'), +(75, 'Vennia Riskia Tristianti', 'PPDS', 'Anak', 'venniariskia@student.ub.ac.id', '-'), +(76, 'Nova Lestarina Ayu Aisyah', 'PPDS', 'Anak', 'novalestarina@student.ub.ac.id', '-'), +(77, 'Raymundus Florentino Mariano Pareira', 'PPDS', 'Anak', 'tanmundo@student.ub.ac.id', '-'), +(78, 'GALIH CAKRAYUDA THOHARI', 'PPDS', 'Anak', 'galihcakrayuda@student.ub.ac.id', '-'), +(79, 'Merisa Purnama Sari', 'PPDS', 'Anak', 'merisapurnama@student.ub.ac.id', '-'), +(80, 'Retna Gumilang', 'PPDS', 'Anak', 'retnagumilang@student.ub.ac.id', '-'), +(81, 'Hanum Afdhilla Lubis', 'PPDS', 'Anak', 'hanumafdhilla@student.ub.ac.id', '-'), +(82, 'Natashya Phillipa Nanda Ngasu', 'PPDS', 'Anak', 'natashyangasu17@student.ub.ac.id', '-'), +(83, 'Ari Viandri Wismananda', 'PPDS', 'Anak', 'ariviandri@student.ub.ac.id', '-'), +(84, 'Safira Nur Alita Putri', 'PPDS', 'Anak', 'safiranur@student.ub.ac.id', '-'), +(85, 'Annisa Setyautami', 'PPDS', 'Anak', 'asetyautami@student.ub.ac.id', '-'), +(86, 'Anindita Gatiningrum', 'PPDS', 'Anak', 'aninditagt96@student.ub.ac.id', '-'), +(87, 'Fakhri Abid Abdulhadi', 'PPDS', 'Anak', 'fakhriabid@student.ub.ac.id', '-'), +(88, 'Hashfi Mafazi', 'PPDS', 'Anak', 'hashfimafazi@student.ub.ac.id', '-'), +(89, 'Krist Nathania Benita', 'PPDS', 'Anak', 'drnathan@student.ub.ac.id', '-'), +(90, 'Desi Nur Anggraini', 'PPDS', 'Anak', 'desinanggraini@student.ub.ac.id', '-'), +(91, 'Adelia Listiana Dewi', 'PPDS', 'Anak', 'dewiadelinald@student.ub.ac.id', '-'), +(92, 'Bayu Satyawida Purwanto', 'PPDS', 'Anak', 'satyawida354@student.ub.ac.id', '-'), +(93, 'Della Wachdatul Angela Nurwakhid', 'PPDS', 'Anak', 'dellaangela@student.ub.ac.id', '-'), +(94, 'Gabriela Nativity', 'PPDS', 'Anak', 'gabrielanat@student.ub.ac.id', '-'), +(95, 'MUMTAZA NOOR ASHILA', 'PPDS', 'Anak', 'mumtazanoora@student.ub.ac.id', '-'), +(96, 'Arum Sulistyarini', 'PPDS', 'Anak', 'arumsulis7@student.ub.ac.id', '-'), +(97, 'Luisa Vinadiya', 'PPDS', 'Anak', 'luisavinadiya@student.ub.ac.id', '-'), +(98, 'Ikmalun Natiq', 'PPDS', 'Anak', 'ikmalun_natiq@student.ub.ac.id', '-'), +(99, 'Delfian Oktatugara Rayes', 'PPDS', 'Anak', 'delfianrayes@student.ub.ac.id', '-'), +(100, 'Almira Pramadhani', 'PPDS', 'Anak', 'almiraprama@student.ub.ac.id', '-'), +(101, 'Hardin Bin Baharuddin', 'PPDS', 'Anak', 'ardinneo19@student.ub.ac.id', '-'), +(102, 'dr. Artono Isharanto, Sp B,. Sp BTKV', 'DPJP', 'Bedah TKV', 'a.isharanto@ub.ac.id', 'a.isharanto@gmail.com'), +(103, 'dr. Koernia Kusuma Wardhana, Sp.BTKV(K)-VE', 'DPJP', 'Bedah TKV', 'masbobby1984@ub.ac.id', ''), +(104, 'dr Imam Suseno, Sp BTKV', 'DPJP', 'Bedah TKV', 'bayu_romanisti@ub.ac.id', '-'), +(105, 'dr.Gracelia Ruth Elisabeth D,Sp.B.TKV, M.Med.', 'DPJP', 'Bedah TKV', 'graceliadamanik@ub.ac.id', '-'), +(106, 'dr. Chaidar Muttaqin, Sp.B.T.K.V', 'DPJP', 'Bedah TKV', '-', 'chaidarmuttaqin@gmail.com'), +(107, 'Dr. dr. Farhad Baliatif, Sp BS (K)', 'DPJP', 'Bedah Syaraf Pediatri', '-', '-'), +(108, 'dr. Doni Wisnu Wardhana, Sp BS', 'DPJP', 'Bedah Syaraf Onkologi', '-', '-'), +(109, 'Dr. med. dr. Tommy Alfandy Nazwar, Sp.BS(K)', 'DPJP', 'Bedah Syaraf Spine', 'tommy@ub.ac.id', 'tommyns1311@yahoo.com\nbedahsarafmalang@yahoo.com'), +(110, 'Dr. dr. Farhad Bal\'Afif, Sp.BS', 'DPJP', 'Bedah Syaraf', 'farblf@ub.ac.id', 'farblf@rocketmail.com\nbedahsarafmalang@yahoo.com'), +(111, 'dr. Mohammad Zakaria Shahab, Sp.BS', 'DPJP', 'Bedah Syaraf', '-', 'dr.zakariaashahab2@gmail.com'), +(112, 'dr. Setyo Sugiharto, Sp. B-KBDย ', 'DPJP', 'Bedah Digestive', 'setyosugiarto@ub.ac.id', 'setyo.sugiharto77@gmail.com\ndigestif.malang@gmail.com'), +(113, 'Dr. dr. Aries Budianto, Sp.B-KBD', 'DPJP', 'Bedah Digestive', 'ariesb.bdmlg@ub.ac.id', 'ariesb.bdmlg@gmail.com\ndigestif.malang@gmail.com'), +(114, 'dr. Heru Sulistyo, Sp. B-KBD', 'DPJP', 'Bedah Digestive', 'herusulistyo70@ub.ac.id', 'herusulistyo70@gmail.com'), +(115, 'dr. M. S. Niam, M.Kes, Sp.B-KBD', 'DPJP', 'Bedah Digestive', 'm2sniam@ub.ac.id', 'm2sniam@yahoo.com'), +(116, 'dr. Dwicha Rahmawansa Siswardana, Sp.B-KBD', 'DPJP', 'Bedah Digestive', 'dwicha2783.fk@ub.ac.id', 'dwicha@yahoo.com'), +(117, 'dr. Wahyu Harisanyoto, Sp.B.KBD', 'DPJP', 'Bedah Digestive', '-', 'wahyu.harisanyoto@gmail.com'), +(118, 'dr. Herman Josep Limpat, Sp BP ย– RE', 'DPJP', 'Bedah Plastik', 'wihastyoko@ub.ac.id', 'wihastyoko@yahoo.com'), +(119, 'dr. Arviansyah, Sp BP, RE', 'DPJP', 'Bedah Plastik', 'arvianbedahplas@ub.ac.id', '-'), +(120, 'dr. Wilma Agustina, Sp.B.P.R.E', 'DPJP', 'Bedah Plastik', 'wilmaagustina@ub.ac.id', '-'), +(121, 'dr. Yudi Siswanto, MSc, M.Ked.Klin., Sp.B.P.R.Eย ', 'DPJP', 'Bedah Plastik', 'yudi.siswanto@ub.ac.id', '-'), +(122, 'dr. Elisabeth Prajanti Sintaningrum, Sp.B.P.R.E', 'DPJP', 'Bedah Plastik', 'sintaningrum@ub.ac.id', 'sintaningrum@yahoo.com'), +(123, 'dr. Santi Devina, Sp.BP-RE', 'DPJP', 'Bedah Plastik', '-', 'Devina.santi.dr@gmail.com'), +(124, 'dr. Robertus Arian Datusanantyo, MPH, MKed, Klin., SpBPRE, Subsp.K.M.(K)', 'DPJP', 'Bedah Plastik', 'arian@lec.ub.ac.id', '-'), +(125, 'dr. Lulik Inggarwati, Sp B,. Sp BA Anakย ', 'DPJP', 'Bedah Anak', 'matahari63@ub.ac.id', 'ell_ing@yahoo.co.id\nbedahanak_fkub@yahoo.com'), +(126, 'dr. Widanto, Sp B,. Sp BA', 'DPJP', 'Bedah Anak', 'widanto@ub.ac.id', 'widanto@ymail.com'), +(127, 'dr. Sinung Wikanandi, Sp. BA', 'DPJP', 'Bedah Anak', 'sinung.wikanadi@ub.ac.id', 'sinung.wikanadi@gmail.com'), +(128, 'dr. Ririd Tri Pitaka, Sp.BA', 'DPJP', 'Bedah Anak', '-', 'riridtripitaka@gmail.com'), +(129, 'Dr. dr. Mochamad Bachtiar Budianto, Sp.B(K)Onk', 'DPJP', 'Bedah Onkologi', 'bachtiarb@ub.ac.id', 'bachtiarbudianto@yahoo.com'), +(130, 'dr. Hery Susilo, Sp.B(K)Onk', 'DPJP', 'Bedah Onkologi', 'herysusilo@ub.ac.id', 'herysusilo_surgeon@yahoo.com'), +(131, 'dr. Sidho Hantoko, Sp.B(K)Onk', 'DPJP', 'Bedah Onkologi', 'sidhohantoko@ub.ac.id', 'sidhohantoko@yahoo.co.id'), +(132, 'dr. Dian Pratiwi, Sp.B., Subsp.Onk.(K)', 'DPJP', 'Bedah Onkologi', 'depe_1104@ub.ac.id', '-'), +(133, 'dr. Feri Nugroho, Sp.B(K)Onk', 'DPJP', 'Bedah Onkologi', '-', 'Ferinugrohobedah@gmail.com'), +(134, 'dr. Aditya Rachmat Febrianto, Sp.B.', 'DPJP', 'Bedah', 'adityaeref19@ub.ac.id', '-'), +(135, 'dr. Nurudin Syahadat, Sp.B', 'DPJP', 'Bedah', '-', 'nsyahadat@gmail.com'), +(136, 'dr. Hananta Sudibyoko, Sp.B', 'DPJP', 'Bedah', '-', 'hanantasudibyoko@yahoo.com'), +(137, 'dr. Rizki Hanifan Nugraha, Sp.B', 'DPJP', 'Bedah', '-', 'hanifansurgeon@gmail.com'), +(138, 'dr. Andreas Rendra, Sp.B', 'DPJP', 'Bedah', '-', 'andredoctor707707@gmail.com'), +(139, 'dr. Primana Setya Nugraha, MPH., Sp.B.', 'DPJP', 'Bedah', '-', 'dr.primana@gmail.com'), +(140, 'dr. Damian Dwi Rahadi, Sp.B.,M.Ked.Klin', 'DPJP', 'Bedah', '-', 'damian2rahadi@gmail.com'), +(141, 'dr. Albert Linardy, Sp.B', 'DPJP', 'Bedah', '-', 'docal291081@gmail.com'), +(142, 'dr. Zaki Yamani, Sp.B', 'DPJP', 'Bedah', '-', 'zakionesl1@gmail.com'), +(143, 'Rr. Theodora Ratih Labdagati Iswara', 'PPDS', 'Bedah Plastik Rekonstruksi dan Estetik', 'theodoraratih@student.ub.ac.id', '-'), +(144, 'Kinanti Ken Larasati', 'PPDS', 'Bedah Plastik Rekonstruksi dan Estetik', 'kenlarasati@student.ub.ac.id', '-'), +(145, 'Maria Karina Jaya Suwana', 'PPDS', 'Bedah Plastik Rekonstruksi dan Estetik', 'mariakarinajs@student.ub.ac.id', '-'), +(146, 'Mutiara Aprilia Senolinggi', 'PPDS', 'Bedah Plastik Rekonstruksi dan Estetik', 'mutiaraprilias@student.ub.ac.id', '-'), +(147, 'Angela Djunaedi', 'PPDS', 'Bedah Plastik Rekonstruksi dan Estetik', 'angeladjunaedi@student.ub.ac.id', '-'), +(148, 'Fitria Trisna Putri', 'PPDS', 'Bedah Plastik Rekonstruksi dan Estetik', 'fitriatrisnap@student.ub.ac.id', '-'), +(149, 'Michele Gondokesumo', 'PPDS', 'Bedah Plastik Rekonstruksi dan Estetik', 'michelegondo05@student.ub.ac.id', '-'), +(150, 'Wening Hapsari', 'PPDS', 'Bedah Plastik Rekonstruksi dan Estetik', 'weninghapsari@student.ub.ac.id', '-'), +(151, 'riestya arum pemata', 'PPDS', 'Bedah Plastik Rekonstruksi dan Estetik', 'riestyaarump@student.ub.ac.id', '-'), +(152, 'Marina Tandarto', 'PPDS', 'Bedah Plastik Rekonstruksi dan Estetik', 'rinatandarto@student.ub.ac.id', '-'), +(153, 'Farida Dwi Irnawati', 'PPDS', 'Ilmu Bedah', 'farida310792@student.ub.ac.id', '-'), +(154, 'Amrina Rosyada', 'PPDS', 'Ilmu Bedah', 'rosyadamrina@student.ub.ac.id', '-'), +(155, 'Dr. Etna Irianti Putri', 'PPDS', 'Ilmu Bedah', 'etnairianti@student.ub.ac.id', '-'), +(156, 'Kevin Horas', 'PPDS', 'Ilmu Bedah', 'kevinhoras@student.ub.ac.id', '-'), +(157, 'ERIC YAYANG SUHANDA', 'PPDS', 'Ilmu Bedah', 'ericyayang@student.ub.ac.id', '-'), +(158, 'Nan Bareno Chairus', 'PPDS', 'Ilmu Bedah', 'barenbareno@student.ub.ac.id', '-'), +(159, 'Akhmad Ferro Avisena', 'PPDS', 'Ilmu Bedah', 'ferroavisena@student.ub.ac.id', '-'), +(160, 'Sabrinadia H. Hantoko', 'PPDS', 'Ilmu Bedah', 'sabrinahanareta@student.ub.ac.id', '-'), +(161, 'IBRAHIM YUSUF NASUTION', 'PPDS', 'Ilmu Bedah', 'baimyusuf@student.ub.ac.id', '-'), +(162, 'dr. Polce Dicky Sampelimbong', 'PPDS', 'Ilmu Bedah', 'polcedicky@student.ub.ac.id', '-'), +(163, 'Faizal Makharim', 'PPDS', 'Ilmu Bedah', 'faizal93@student.ub.ac.id', '-'), +(164, 'Avan Guntur Satriawan', 'PPDS', 'Ilmu Bedah', 'avanguntur@student.ub.ac.id', '-'), +(165, 'Aprianda Saputra', 'PPDS', 'Ilmu Bedah', 'aprianda@student.ub.ac.id', '-'), +(166, 'Hari Sudrajat', 'PPDS', 'Ilmu Bedah', 'harisudrajat116@student.ub.ac.id', '-'), +(167, 'Fazlur Risyad Laochi', 'PPDS', 'Ilmu Bedah', 'risyadlaochi@student.ub.ac.id', '-'), +(168, 'Satria Candra Kusuma', 'PPDS', 'Ilmu Bedah', 'satriadiva2022@student.ub.ac.id', '-'), +(169, 'SOVIANA MAHDIYAKSA', 'PPDS', 'Ilmu Bedah', 'soviana89@student.ub.ac.id', '-'), +(170, 'Wahju Sigit Tjahjono Putro', 'PPDS', 'Ilmu Bedah', 'wahjusigit@student.ub.ac.id', '-'), +(171, 'Hanif Yusroni', 'PPDS', 'Ilmu Bedah', 'hanifyusroni@student.ub.ac.id', '-'), +(172, 'Kevin Octavian', 'PPDS', 'Ilmu Bedah', 'kevinocta08@student.ub.ac.id', '-'), +(173, 'Arief Suhadi', 'PPDS', 'Ilmu Bedah', 'ariefsuhadi@student.ub.ac.id', '-'), +(174, 'Andri Markhoni Permana', 'PPDS', 'Ilmu Bedah', 'andrimp@student.ub.ac.id', '-'), +(175, 'ARIF PRIANGGARA', 'PPDS', 'Ilmu Bedah', 'arifprianggara@student.ub.ac.id', '-'), +(176, 'Danar Fahmi Sudarsono', 'PPDS', 'Ilmu Bedah', 'danarfs@student.ub.ac.id', '-'), +(177, 'bramantya andyatma', 'PPDS', 'Ilmu Bedah', 'bramayu542019@student.ub.ac.id', '-'), +(178, 'M Arif Kurniawan', 'PPDS', 'Ilmu Bedah', 'marifkurniawan@student.ub.ac.id', '-'), +(179, 'Nugroho Sondrio Harsono', 'PPDS', 'Ilmu Bedah', 'sondrio@student.ub.ac.id', '-'), +(180, 'Kresna Ardinugraha Widayat', 'PPDS', 'Ilmu Bedah', 'kresna_widayat@student.ub.ac.id', '-'), +(181, 'Mohammad Rizki', 'PPDS', 'Ilmu Bedah', 'tigorrizky@student.ub.ac.id', '-'), +(182, 'Teuku Harmawansyah', 'PPDS', 'Ilmu Bedah', 'teukuh1992@student.ub.ac.id', '-'), +(183, 'Jessy Teressa Yang', 'PPDS', 'Ilmu Bedah', 'jessyteressa@student.ub.ac.id', '-'), +(184, 'Noerdian Syah', 'PPDS', 'Ilmu Bedah', 'noerdian@student.ub.ac.id', '-'), +(185, 'Jonathan Hartanto', 'PPDS', 'Ilmu Bedah', 'jonathan89@student.ub.ac.id', '-'), +(186, 'Koernia Hezkia Yonathan', 'PPDS', 'Ilmu Bedah', 'koerniahezkia@student.ub.ac.id', '-'), +(187, 'Muh. Kafabillah', 'PPDS', 'Ilmu Bedah', 'mkafabillah@student.ub.ac.id', '-'), +(188, 'Riz\'q Threevisca Chriswantara', 'PPDS', 'Ilmu Bedah', 'rizqtchris@student.ub.ac.id', '-'), +(189, 'Sebastian Ahmad', 'PPDS', 'Ilmu Bedah', 'sebastianahmad@student.ub.ac.id', '-'), +(190, 'Goustaf Pandy Hatta', 'PPDS', 'Ilmu Bedah', 'goustafpandy@student.ub.ac.id', '-'), +(191, 'muhammad hilman bimadi', 'PPDS', 'Ilmu Bedah', 'mhilmanbimadi@student.ub.ac.id', '-'), +(192, 'Dwi Cahya Ramadhan Pranoto', 'PPDS', 'Ilmu Bedah', 'yayanramadhan@student.ub.ac.id', '-'), +(193, 'Darmandaru Nugroho', 'PPDS', 'Ilmu Bedah', 'darmandarudr@student.ub.ac.id', '-'), +(194, 'Alvin Rifqy', 'PPDS', 'Ilmu Bedah', 'alvinrifqymd@student.ub.ac.id', '-'), +(195, 'Cindy Alverina', 'PPDS', 'Ilmu Bedah', 'cindyalv@student.ub.ac.id', '-'), +(196, 'Chelsea Gabriella Gunawan', 'PPDS', 'Ilmu Bedah', 'chelseagunawan@student.ub.ac.id', '-'), +(197, 'Tea Karina Sudharso', 'PPDS', 'Ilmu Bedah', 'tkarinas@student.ub.ac.id', '-'), +(198, 'Sely Maks', 'PPDS', 'Ilmu Bedah', 'selymaks@student.ub.ac.id', '-'), +(199, 'Amaro Yudho Wibowo', 'PPDS', 'Ilmu Bedah', 'amaroyudho@student.ub.ac.id', '-'), +(200, 'Aditya Arifudin Bachtiar', 'PPDS', 'Ilmu Bedah', 'aditya_ab@student.ub.ac.id', '-'), +(201, 'Shafri Nahdi', 'PPDS', 'Ilmu Bedah', 'shafrinahdi@student.ub.ac.id', '-'), +(202, 'Mudzakkir Taufiqur Rahman', 'PPDS', 'Ilmu Bedah', 'taufiqsurgeon@student.ub.ac.id', '-'), +(203, 'Putri Lissanawidya', 'PPDS', 'Ilmu Bedah', 'putrilissa@student.ub.ac.id', '-'), +(204, 'Geovan Hananto', 'PPDS', 'Ilmu Bedah', 'geohanantosurg@student.ub.ac.id', '-'), +(205, 'Imam Faiq Habibur Rohman', 'PPDS', 'Ilmu Bedah', 'faiqhr@student.ub.ac.id', '-'), +(206, 'Dr. dr. Arif Widiatmoko, Sp.KK(K)', 'DPJP', 'Dermatologi', 'arif_fk@ub.ac.id', '-'), +(207, 'Dr. dr. Sinta Murlistyarini, Sp.KK(K)', 'DPJP', 'Dermatologi', 'sintamur@ub.ac.id', '-'), +(208, 'dr. Dhany Prafita Ekasari, Sp.KK', 'DPJP', 'Dermatologi', 'dhany_prafita@ub.ac.id', 'dhanyprafita@yahoo.com'), +(209, 'dr. Herwinda Brahmanti, Sp.KK(K), M.Sc', 'DPJP', 'Dermatologi', 'dr_herwinda@ub.ac.id', '-'), +(210, 'dr. Anggun Putri Yuniaswan, Sp.KK', 'DPJP', 'Dermatologi', 'anggun@ub.ac.id', '-'), +(211, 'Dr. dr. Dhelya Widasmara, Sp.KK(K)', 'DPJP', 'Dermatologi', 'dhelyawidasmara@ub.ac.id', 'dhelyawidasmara@gmail.com'), +(212, 'Dr. dr. Boedhy Setyanto, Sp.KK', 'DPJP', 'Dermatologi', 'boedhysetyanto@ub.ac.id', 'dearenzy@yahoo.com'), +(213, 'dr. Intan Wasaputri Donoseputro, Sp.D.V.', 'DPJP', 'Dermatologi', 'intanwasap@ub.ac.id', ''), +(214, 'dr. Lita Setyowatie, Sp.KK(K)', 'DPJP', 'Dermatologi', 'lita84dv@ub.ac.id', 'lita_centik@yahoo.com'), +(215, 'dr. Suci Prawitasari, Sp.KK(K)', 'DPJP', 'Dermatologi', 'suci_prawitasari@ub.ac.id', 'dr.suci.p@gmail.com'), +(216, 'dr. Santosa Basuki, Sp.KK(K)', 'DPJP', 'Dermatologi', '-', 'sant911@yahoo.com'), +(217, 'dr. Sekar Puspita Lilasari, Sp.KK', 'DPJP', 'Dermatologi', '-', 'drsekarpuspita@gmail.com'), +(218, 'dr. Marta Dwi Rifka, Sp.KK', 'DPJP', 'Dermatologi', '-', 'dwirifkamarta@gmail.com'), +(219, 'dr. Adinda Amalia Dani, Sp.DV', 'DPJP', 'Dermatologi', '-', 'adinda.amaliadani@gmail.com'), +(220, 'dr. Aunur Rofiq, Sp.D.V.E., Subsp. D.A.I., FINSDV, FAADV', 'DPJP', 'Dermatologi', 'aunurrofiq.fk@ub.ac.id', 'aunurrofiq.fk@ub.ac.id\nqiphor@yahoo.com'), +(221, 'Dyah Ayu Sakinah', 'PPDS', 'Dermatologi', 'dyahayusakinah@student.ub.ac.id', '-'), +(222, 'Thalia Virgina Putri Suharli', 'PPDS', 'Dermatologi', 'thaliasuharli@student.ub.ac.id', '-'), +(223, 'Deriel Elka Hidayat', 'PPDS', 'Dermatologi', 'derielelka@student.ub.ac.id', '-'), +(224, 'Nadia Aprilia Fitriana', 'PPDS', 'Dermatologi', 'nadiaaprilia92@student.ub.ac.id', '-'), +(225, 'SEPTINA YOSEPHINE', 'PPDS', 'Dermatologi', 'josesamosir89@student.ub.ac.id', '-'), +(226, 'Mugi Restiana Utami', 'PPDS', 'Dermatologi', 'mugirestiana@student.ub.ac.id', '-'), +(227, 'Epifania Fitriana Adna', 'PPDS', 'Dermatologi', 'epifania@student.ub.ac.id', '-'), +(228, 'Arika Latashia Adelia', 'PPDS', 'Dermatologi', 'arikalatashia@student.ub.ac.id', '-'), +(229, 'Purna Dwi Saputra', 'PPDS', 'Dermatologi', 'purnasaputra@student.ub.ac.id', '-'), +(230, 'Rhea Tiara Dinata', 'PPDS', 'Dermatologi', 'drheatiara@student.ub.ac.id', '-'), +(231, 'M. Edel Dwiputra Prawira', 'PPDS', 'Dermatologi', 'edeldwiputra10@student.ub.ac.id', '-'), +(232, 'Fitriani Widhiastuti', 'PPDS', 'Dermatologi', 'fitrianiw150588@student.ub.ac.id', '-'), +(233, 'RASINTA AYUDYA DELTANIA, dr.', 'PPDS', 'Dermatologi', 'rasintadeltania@student.ub.ac.id', '-'), +(234, 'Pradissa Avia Emeralda', 'PPDS', 'Dermatologi', 'emeralda@student.ub.ac.id', '-'), +(235, 'Astrid Amanda Wahyu Putri', 'PPDS', 'Dermatologi', 'astridamandawp@student.ub.ac.id', '-'), +(236, 'Mita Permatasari Araminta', 'PPDS', 'Dermatologi', 'mita_pa97@student.ub.ac.id', '-'), +(237, 'Puspita Sari', 'PPDS', 'Dermatologi', 'puspitasari@student.ub.ac.id', '-'), +(238, 'Paul Michael Enrico Tansir', 'PPDS', 'Dermatologi', 'pauldvejan25@student.ub.ac.id', '-'), +(239, 'Alvina Ulfah Rusmayuni', 'PPDS', 'Dermatologi', 'alvinarusmayuni@student.ub.ac.id', '-'), +(240, 'Dedy Budi Kurniawan', 'PPDS', 'Dermatologi', 'dedybudik@student.ub.ac.id', '-'), +(241, 'TAVIA YULIASTUTI PRASTIKA', 'PPDS', 'Dermatologi', 'taviayp@student.ub.ac.id', '-'), +(242, 'Taneya Putri Zahra', 'PPDS', 'Dermatologi', 'taneyazahra@student.ub.ac.id', '-'), +(243, 'Detris Visiadina', 'PPDS', 'Dermatologi', 'detris@student.ub.ac.id', '-'), +(244, 'Safira Firdaus', 'PPDS', 'Dermatologi', 'safirafirdaus@student.ub.ac.id', '-'), +(245, 'Viga Resfikasari', 'PPDS', 'Dermatologi', 'resfika@student.ub.ac.id', '-'), +(246, 'Desty Permataningtyas', 'PPDS', 'Dermatologi', 'desty121290@student.ub.ac.id', '-'), +(247, 'Marshandyar Aisha Dwitarahma', 'PPDS', 'Dermatologi', 'marshandyarad26@student.ub.ac.id', '-'), +(248, 'Dr.dr. Tatit Nurseta, Sp.OG (K)ย ', '', 'Obsgyn', 'tns_obg.fk@ub.ac.id', ''), +(249, 'dr. Yahya Irwanto, Sp.OG (K)', '', 'Obsgyn', 'yahyairwanto50@ub.ac.id', ''), +(250, 'Dr.dr. I Wayan Arsana Wiyasa, Sp.OG (K)ย ', '', 'Obsgyn', 'arSp.OG.fk@ub.ac.id', ''), +(251, 'dr. Pande Made Dwi Jayasa, Sp.OG (K)ย ', '', 'Obsgyn', 'pmd_obg.fk@ub.ac.id', ''), +(252, 'dr. Sutrisno, Sp.OG (K)', '', 'Obsgyn', 'snoSp.OG.fk@ub.ac.id', ''), +(253, 'dr. Hermawan Wibisono, Sp.OG (K)PhD', '', 'Obsgyn', 'sonspog.fk@ub.ac.id', ''), +(254, 'Dr. dr. Bambang Rahardjo, Sp.OG (K)', '', 'Obsgyn', 'bar_obg.fk@ub.ac.id', ''), +(255, 'Dr. dr. Nugrahanti Prasetyorini, Sp.OG (K)ย ', '', 'Obsgyn', 'nuke_obg.fk@ub.ac.id', ''), +(256, 'dr. Mukhamad Nooryanto, Sp.OG (K)', '', 'Obsgyn', 'mor_feto.fk@ub.ac.id', ''), +(257, 'dr. Suheni Ninik Hariyati, Sp.OG', '', 'Obsgyn', 'suheni.fk@ub.ac.id', ''), +(258, 'dr. Anggia Prameswari, Sp. OG', '', 'Obsgyn', '-', ''), +(259, 'Dr. dr. Edi Mustofa, Sp.OG (K)', '', 'Obsgyn', '-', ''), +(260, 'DR. dr. Rahajeng, Sp. OG (K)ย ', '', 'Obsgyn', 'rahajeng.fk@ub.ac.id', ''), +(261, 'dr. Rudi Priyo Utomo, Sp.OG', '', 'Obsgyn', '-', ''), +(262, 'Dr. dr. I Wayan Agung Indrawan, Sp.OG(K)', '', 'Obsgyn', 'dr_iwa.fk@ub.ac.id', ''), +(263, 'dr. Adityo Prabowo, Sp.OG, M.Ked.Klin', '', 'Obsgyn', 'adityoprabowo@ub.ac.id', ''), +(264, 'dr. Arghya Wicaksana, Sp.OG.', '', 'Obsgyn', 'arghya@ub.ac.id', ''), +(265, 'dr. Cholid Rohman Riskianto, Sp.OG', '', 'Obsgyn', '-', ''), +(266, 'dr. Irfani Baihaqi, Sp.OG', '', 'Obsgyn', '-', ''), +(267, 'dr. Eka Nasrur Maulana, Sp.OG', '', 'Obsgyn', '-', ''), +(268, 'dr. Fatmasari Perdana Menur, Sp.OG', '', 'Obsgyn', '-', ''), +(269, 'dr. Nirmala Gina Prabawati, Sp.OG', '', 'Obsgyn', '-', ''), +(270, 'dr. Onni Dwi Arianto, Sp.OG', '', 'Obsgyn', '-', ''), +(271, 'dr. Puspita Handayani, Sp.OG(K)', '', 'Obsgyn', '-', ''), +(272, 'dr. Roni Subrata, Sp.OG', '', 'Obsgyn', '-', ''), +(273, 'dr. Teguh Wiyono, Sp.OG', '', 'Obsgyn', '-', ''), +(274, 'dr. Handi Firmansyah, Sp.OG, M.Ked.Klin', '', 'Obsgyn', '-', ''), +(275, 'dr. Dhian Eka Putri Harnandari, Sp.OG', '', 'Obsgyn', '-', ''), +(276, 'dr. Aditya Fendi Uji Pamungkas, Sp.OG', '', 'Obsgyn', '-', ''), +(277, 'dr. Mulyo Hadi Wibowo, Sp.OG', '', 'Obsgyn', '-', ''), +(278, 'dr. Adin Yan Permana, Sp.OG', '', 'Obsgyn', '-', ''), +(279, 'dr. Mochamad Putro Argo, Sp.OG', '', 'Obsgyn', '-', ''), +(280, 'dr. Margaretha Claudhya Febryanna, Sp.OG, M.Ked.Klin', '', 'Obsgyn', '-', ''), +(281, 'dr. Sasmojo Widito, SpJP (K)', '', 'Jantung', 'sasmojowidito@ub.ac.id', ''), +(282, 'dr. Valerinna Yogibuana Swastika Putri, SpJP(K)', '', 'Jantung', 'valerinnaysp@ub.ac.id', ''), +(283, 'Prof. dr. M. Saifur Rohman, SpJP (K), PhDย ', '', 'Jantung', 'ippoenk@ub.ac.id', ''), +(284, 'dr. Ardian Rizal, SpJP (K)', '', 'Jantung', 'drardianrizal@ub.ac.id', ''), +(285, 'dr. Anna Fuji Rahimah, SpJP (K)', '', 'Jantung', 'drannafuji@ub.ac.id', ''), +(286, 'dr. Cholid Tri Tjahjono, M.Kes, SpJP (K)', '', 'Jantung', 'cholidtri@ub.ac.id', ''), +(287, 'dr. Heny Martini, SpJP (K)ย ', '', 'Jantung', 'henymartini@ub.ac.id', ''), +(288, 'dr. Budi Satrijo, SpJP (K)', '', 'Jantung', 'budisatrijo@ub.ac.id', ''), +(289, 'dr. Novi Kurnianingsih, SpJP (K)ย ', '', 'Jantung', 'novikur@ub.ac.id', ''), +(290, 'dr. Indra Prasetya, SpJP (K)', '', 'Jantung', 'indraprasetya@ub.ac.id', ''), +(291, 'dr. Veny Mayangsari, SpJP', '', 'Jantung', '-', ''), +(292, 'dr. Setyasih Anjarwani, SpJP (K)', '', 'Jantung', 'setyasih@ub.ac.id', ''), +(293, 'dr. Adhika Prastya Wikananda, SpJPย ', '', 'Jantung', '-', ''), +(294, 'dr. Wella Karolina, SpJP (K)', '', 'Jantung', 'wella.karolina@ub.ac.id', ''), +(295, 'dr. Yoga Waranugraha, Sp.JP, Subp.Ar.(K)', '', 'Jantung', 'mr.waranugraha@ub.ac.id', ''), +(296, 'Prof. Dr. dr. Djanggan Sargowo, Sp.PD, Sp.JP(K)', '', 'Jantung', 'djanggan@ub.ac.id', ''), +(297, 'Dr. dr. Saskia Dyah Handari, Sp.JP(K)', '', 'Jantung', '-', ''), +(298, 'dr. Arief Wibisono, Sp.JP', '', 'Jantung', '-', ''), +(299, 'dr. Evit Ruspiono, Sp.JP', '', 'Jantung', '-', ''), +(300, 'dr. Tri Astiawaty, Sp.JP', '', 'Jantung', 'triastiawati@ub.ac.id', ''), +(301, 'dr. Adriyawan Widya Nugraha, Sp.JP(K)', '', 'Jantung', '-', ''), +(302, 'dr. Andi Wahjono Adi, Sp.JP(K)', '', 'Jantung', '-', ''), +(303, 'dr. Fitranti Suciati Laitupa, Sp.JP(K)', '', 'Jantung', '-', ''), +(304, 'dr. Dea Arie Kurniawan, Sp.JP', '', 'Jantung', 'dea.kurniawanlec.ub.ac.id', ''), +(305, 'Dr. dr. Susanthy Dj, Sp.P (K)ย ', '', 'Paru', 'susanthy@ub.ac.id', ''), +(306, 'dr. Aditya Sp.P', '', 'Paru', '-', ''), +(307, 'dr. Ungky Agus Setyawan, Sp.P (K)ย ', '', 'Paru', 'dr_ungky_paru@ub.ac.id', ''), +(308, 'dr. Suryanti Dwi Pratiwi, Sp.P (K)', '', 'Paru', 'suryanti@ub.ac.id', ''), +(309, 'dr. Ngakan Putu P Putra, Sp.P (K)', '', 'Paru', 'ngakanputu@ub.ac.id', ''), +(310, 'dr. Rezki Tantular, Sp.P (K)', '', 'Paru', '-', ''), +(311, 'dr. Triwahju Astuti, M.Kes, Sp.P (K)', '', 'Paru', 'astuti@ub.ac.id', ''), +(312, 'dr. Iin Noor Chozin, Sp.P', '', 'Paru', 'iin@ub.ac.id', ''), +(313, 'dr. Sastia Rakhma, Sp.P', '', 'Paru', 'sastiarakhma@ub.ac.id', ''), +(314, 'dr. Fitri Indah Sari, Sp.P', '', 'Paru', 'fitrindahs1705@ub.ac.id', ''), +(315, 'dr. Aditya Sri Listyoko, Sp.P(K)', '', 'Paru', 'adityalistyoko@ub.ac.id', ''), +(316, 'Dr. dr. Jani Jane Rosihaningsih Sugiri, Sp.P(K)', '', 'Paru', 'jani@ub.ac.id', ''), +(317, 'dr. Deden Permana, Sp.P', '', 'Paru', '-', ''), +(318, 'dr. Yunita Eka Wati, Sp.P', '', 'Paru', '-', ''), +(319, 'dr. Christian Surya Eka Putra, Sp.P', '', 'Paru', '-', ''), +(320, 'dr. Muhamad Yusuf Musthafa, Sp.P', '', 'Paru', '-', ''), +(321, 'dr. Didi Candradikusuma, Sp.P.D,K-PTIย ', '', 'IPD', 'didi_candradikusuma.fk@ub.ac.id', ''), +(322, 'Dr.dr. Cesarius Singgih Wahono, Sp.P.D,K-Rย ', '', 'IPD', 'singgih_wahono.fk@ub.ac.id', ''), +(323, 'Dr. dr. Sri Soenarti, Sp.P.D., K-Ger', '', 'IPD', 'sri_sunarti.fk@ub.ac.id', ''), +(324, 'dr. Laksmi Sasiarini, Sp.P.D., K-EMD', '', 'IPD', 'laksmi_sasiarini@ub.ac.id', ''), +(325, 'dr. Herwindo Pudjo Brahmantyo, Sp.P.D., K-HOMย ', '', 'IPD', 'herwindopudjo.ipd@ub.ac.id', ''), +(326, 'dr. Rulli Rosandi, Sp.P.D., K-EMD', '', 'IPD', 'rulliendokrin@ub.ac.id', ''), +(327, 'dr. Bagus Putu Putra Suryana, Sp.PD,K-R', '', 'IPD', 'putra_suryana@ub.ac.id', ''), +(328, 'dr. Syifa Mustika, Sp.P.D, K-GEH', '', 'IPD', 'drtika_78@ub.ac.id', ''), +(329, 'Dr. dr. Atma Gunawan, Sp.P.D., K-GHย ', '', 'IPD', 'atma_gunawan.fk@ub.ac.id', ''), +(330, 'Dr. dr. Supriono, Sp.P.D,K-GEH', '', 'IPD', 'supriono_ipd.fk@ub.ac.id', ''), +(331, 'dr. Siti Fatma Prehatiningsih, Sp.P.D.', '', 'IPD', '-', ''), +(332, 'dr. Heri Sutanto, Sp.P.D', '', 'IPD', 'herisutanto.ipd@ub.ac.id', ''), +(333, 'dr. Perdana Aditya Rahman, Sp.P.D., K-R', '', 'IPD', 'perdana.aditya@ub.ac.id', ''), +(334, 'dr. Eden Suryoiman Winoto, Sp.P.D', '', 'IPD', 'dreden86.ipd@ub.ac.id', ''), +(335, 'dr. Bogi Pratomo W., Sp.P.D. K-GEH', '', 'IPD', 'bogi_pratomo.fk@ub.ac.id', ''), +(336, 'Dr. dr. Shinta Oktya Wardhani, Sp.P.D., K-HOMย ', '', 'IPD', 'shinta_oktya.fk@ub.ac.id', ''), +(337, 'Dr. Achmad Rifai, Sp.P.D., K-GH', '', 'IPD', 'achmad_rifai.fk@ub.ac.id', ''), +(338, 'Dr. dr. Nur Samsu, Sp.P.D., K-GH', '', 'IPD', 'nur_samsu.fk@ub.ac.id', ''), +(339, 'dr. Nina Nurarifah, Sp.PD, K-HOM', '', 'IPD', 'ninanur@ub.ac.id', ''), +(340, 'dr. Muhammad Anshory, Sp.PD', '', 'IPD', 'muhammadanshory@ub.ac.id', ''), +(341, 'dr. Dewi Indiastari, Sp.PD., K-PTI.', '', 'IPD', 'indiastari@ub.ac.id', ''), +(342, 'dr. Nyoman Satvika Dharma Yudha, Sp.PD., KEMD', '', 'IPD', 'nyomansatvika27@ub.ac.id', ''), +(343, 'dr. Milanitalia Gadys Rosandy, Sp.PD', '', 'IPD', 'milanitalia@ub.ac.id', ''), +(344, 'dr. Mirza Zaka Pratama, M.Biomed, Sp.PD', '', 'IPD', 'mirzapratama@ub.ac.id', ''), +(345, 'dr. Djoko Heri Hermanto, Sp.PD, K-HOM', '', 'IPD', 'djoko_heri.fk@ub.ac.id', ''), +(346, 'Dr. dr. Niniek Budiarti, Sp.PD, K-PTI', '', 'IPD', 'niniek_budiarti.fk@ub.ac.id', ''), +(347, 'dr. Fajar Hadi Wijayanto, Sp.PD', '', 'IPD', 'fajarhadiw@ub.ac.id', ''), +(348, 'Prof. Dr. dr. Achmad Rudijanto, Sp.PD.KEMD', '', 'IPD', 'achmad_rudijanto.fk@ub.ac.id', ''), +(349, 'dr. Erdilian Jodi Putra Pratama, Sp.PD.', '', 'IPD', 'erdilianjodi90@ub.ac.id', ''), +(350, 'dr. Chrisandi Yusuf Rizqiansyah, Sp.PD.', '', 'IPD', 'chrisandi150824@ub.ac.id', ''), +(351, 'dr. Jonny Karunia Fajar, Sp.PD.', '', 'IPD', 'jonnykf@ub.ac.id', ''), +(352, 'dr. Rinadhi Reza Bramantya, Sp.PD, K-EMD', '', 'IPD', 'rezabramantya@ub.ac.id', ''), +(353, 'dr. Putu Moda Arsana, Sp.PD, K-EMD', '', 'IPD', 'putu_moda.fk@ub.ac.id', ''), +(354, 'dr. Mohamad Jasin Jachja, Sp.PD', '', 'IPD', '-', ''), +(355, 'dr. Nuraida Wisudani, Sp.PD', '', 'IPD', '-', ''), +(356, 'dr. Mochamad Fachrureza, Sp.PD', '', 'IPD', '-', ''), +(357, 'dr. Hesti Purwanti, Sp.PD', '', 'IPD', '-', ''), +(358, 'dr. Muhammad Hamdan Yuwaafi, Sp.PD', '', 'IPD', '-', ''), +(359, 'Prof. Dr. dr. Handono Kalim, Sp.PD, K-R', '', 'IPD', '-', ''), +(360, 'dr. Dewi Sri Wulandari, Sp.PD.', '', 'IPD', '-', ''), +(361, 'dr. Rezdy Tofan Bhaskara, Sp.PD.', '', 'IPD', '-', ''), +(362, 'dr. Surya Abadi Kristyoadi, Sp.PD', '', 'IPD', '-', ''), +(363, 'dr. Affa Kysa Waafi, Sp.PD', '', 'IPD', '-', ''), +(364, 'dr. Artono Isharanto, Sp B,. Sp BTKV', '', 'Bedah TKV', 'a.isharanto@ub.ac.id', ''), +(365, 'dr. Koernia Kusuma Wardhana, Sp.BTKV(K)-VE', '', 'Bedah TKV', 'masbobby1984@ub.ac.id', ''), +(366, 'dr Imam Suseno, Sp BTKV', '', 'Bedah TKV', 'bayu_romanisti@ub.ac.id', ''), +(367, 'dr.Gracelia Ruth Elisabeth D,Sp.B.TKV, M.Med.', '', 'Bedah TKV', 'graceliadamanik@ub.ac.id', ''), +(368, 'dr. Chaidar Muttaqin, Sp.B.T.K.V', '', 'Bedah TKV', '-', ''), +(369, 'Dr. dr. Farhad Baliatif, Sp BS (K)', '', 'Bedah Syaraf Pediatri', '-', ''), +(370, 'dr. Doni Wisnu Wardhana, Sp BS', '', 'Bedah Syaraf Onkologi', '-', ''), +(371, 'Dr. med. dr. Tommy Alfandy Nazwar, Sp.BS(K)', '', 'Bedah Syaraf Spine', 'tommy@ub.ac.id', ''), +(372, 'Dr. dr. Farhad Bal\'Afif, Sp.BS', '', 'Bedah Syaraf', 'farblf@ub.ac.id', ''), +(373, 'dr. Mohammad Zakaria Shahab, Sp.BS', '', 'Bedah Syaraf', '-', ''), +(374, 'dr. Setyo Sugiharto, Sp. B-KBDย ', '', 'Bedah Digestive', 'setyosugiarto@ub.ac.id', ''), +(375, 'Dr. dr. Aries Budianto, Sp.B-KBD', '', 'Bedah Digestive', 'ariesb.bdmlg@ub.ac.id', ''), +(376, 'dr. Heru Sulistyo, Sp. B-KBD', '', 'Bedah Digestive', 'herusulistyo70@ub.ac.id', ''), +(377, 'dr. M. S. Niam, M.Kes, Sp.B-KBD', '', 'Bedah Digestive', 'm2sniam@ub.ac.id', ''), +(378, 'dr. Dwicha Rahmawansa Siswardana, Sp.B-KBD', '', 'Bedah Digestive', 'dwicha2783.fk@ub.ac.id', ''), +(379, 'dr. Wahyu Harisanyoto, Sp.B.KBD', '', 'Bedah Digestive', '-', ''), +(380, 'dr. Herman Josep Limpat, Sp BP ย– RE', '', 'Bedah Plastik', 'wihastyoko@ub.ac.id', ''), +(381, 'dr. Arviansyah, Sp BP, RE', '', 'Bedah Plastik', 'arvianbedahplas@ub.ac.id', ''), +(382, 'dr. Wilma Agustina, Sp.B.P.R.E', '', 'Bedah Plastik', 'wilmaagustina@ub.ac.id', ''), +(383, 'dr. Yudi Siswanto, MSc, M.Ked.Klin., Sp.B.P.R.Eย ', '', 'Bedah Plastik', 'yudi.siswanto@ub.ac.id', ''), +(384, 'dr. Elisabeth Prajanti Sintaningrum, Sp.B.P.R.E', '', 'Bedah Plastik', 'sintaningrum@ub.ac.id', ''), +(385, 'dr. Santi Devina, Sp.BP-RE', '', 'Bedah Plastik', '-', ''), +(386, 'dr. Robertus Arian Datusanantyo, MPH, MKed, Klin., SpBPRE, Subsp.K.M.(K)', '', 'Bedah Plastik', 'arian@lec.ub.ac.id', ''), +(387, 'dr. Lulik Inggarwati, Sp B,. Sp BA Anakย ', '', 'Bedah Anak', 'matahari63@ub.ac.id', ''), +(388, 'dr. Widanto, Sp B,. Sp BA', '', 'Bedah Anak', 'widanto@ub.ac.id', ''), +(389, 'dr. Sinung Wikanandi, Sp. BA', '', 'Bedah Anak', 'sinung.wikanadi@ub.ac.id', ''), +(390, 'dr. Ririd Tri Pitaka, Sp.BA', '', 'Bedah Anak', '-', ''), +(391, 'Dr. dr. Mochamad Bachtiar Budianto, Sp.B(K)Onk', '', 'Bedah Onkologi', 'bachtiarb@ub.ac.id', ''), +(392, 'dr. Hery Susilo, Sp.B(K)Onk', '', 'Bedah Onkologi', 'herysusilo@ub.ac.id', ''), +(393, 'dr. Sidho Hantoko, Sp.B(K)Onk', '', 'Bedah Onkologi', 'sidhohantoko@ub.ac.id', ''), +(394, 'dr. Dian Pratiwi, Sp.B., Subsp.Onk.(K)', '', 'Bedah Onkologi', 'depe_1104@ub.ac.id', ''), +(395, 'dr. Feri Nugroho, Sp.B(K)Onk', '', 'Bedah Onkologi', '-', ''), +(396, 'dr. Aditya Rachmat Febrianto, Sp.B.', '', 'Bedah', 'adityaeref19@ub.ac.id', ''), +(397, 'dr. Nurudin Syahadat, Sp.B', '', 'Bedah', '-', ''), +(398, 'dr. Hananta Sudibyoko, Sp.B', '', 'Bedah', '-', ''), +(399, 'dr. Rizki Hanifan Nugraha, Sp.B', '', 'Bedah', '-', ''), +(400, 'dr. Andreas Rendra, Sp.B', '', 'Bedah', '-', ''), +(401, 'dr. Primana Setya Nugraha, MPH., Sp.B.', '', 'Bedah', '-', ''), +(402, 'dr. Damian Dwi Rahadi, Sp.B.,M.Ked.Klin', '', 'Bedah', '-', ''), +(403, 'dr. Albert Linardy, Sp.B', '', 'Bedah', '-', ''), +(404, 'dr. Zaki Yamani, Sp.B', '', 'Bedah', '-', ''), +(405, 'dr.Thomas Erwin CJ Huwae, Sp.OT (K)', '', 'Orthopedi', 'huwaethomas@ub.ac.id', ''), +(406, 'dr.Agung Riyanto Budi Santoso, Sp.OT (K)', '', 'Orthopedi', 'agung_riyanto@ub.ac.id', ''), +(407, 'dr.Istan Irmansyah Irsan, Sp.OT (K)ย ', '', 'Orthopedi', 'istan_irmansyah@ub.ac.id', ''), +(408, 'dr.Satria Pandu Persada Isma, Sp.OT (K)', '', 'Orthopedi', 'percyisma@ub.ac.id', ''), +(409, 'dr.Syaifullah Asmiragani, Sp.OT (K)ย ', '', 'Orthopedi', 'syaifullahag@ub.ac.id', ''), +(410, 'dr.Andhika Yudistira, Sp.OT (K)', '', 'Orthopedi', 'andhika.yudhistira@ub.ac.id', ''), +(411, 'dr. Ery Satriawan, Sp. OT', '', 'Orthopedi', '-', ''), +(412, 'Dr.dr.Edi Mustamsir, Sp.OT (K)ย ', '', 'Orthopedi', 'edimustamsir@ub.ac.id', ''), +(413, 'dr.Krisna Yuarno Patama, Sp.OT (K)', '', 'Orthopedi', 'krisnayuarno@ub.ac.id', ''), +(414, 'dr.Ananto Satya Pradana Drajat, Sp.OT', '', 'Orthopedi', 'satyapradana88@ub.ac.id', ''), +(415, 'Prof.Dr.dr.Respati S. Dradjat, Sp.OT (K)ย ', '', 'Orthopedi', 'respatisdradjat@ub.ac.id', ''), +(416, 'dr.Panji Sananta, M.Ked, Sp.OT (K)', '', 'Orthopedi', 'panjisananta@ub.ac.id', ''), +(417, 'dr. Domy Pradana Putra, Sp.OT', '', 'Orthopedi', 'domy_pradana@ub.ac.id', ''), +(418, 'dr. Adhi Satriyo Utomo, Sp.OT.', '', 'Orthopedi', 'sam.ortho@ub.ac.id', ''), +(419, 'dr. Rakhmad Aditya Hernawan, Sp.OT.', '', 'Orthopedi', 'aditflea@ub.ac.id', ''), +(420, 'dr. Indo Rizki Pramulia, Sp.OT', '', 'Orthopedi', '-', ''), +(421, 'dr. Arianto Prabowo, Sp.OT', '', 'Orthopedi', '-', ''), +(422, 'dr. Brian Dhananjaya, Sp.OT', '', 'Orthopedi', '-', ''), +(423, 'dr. Broto Suwadji, Sp.OT', '', 'Orthopedi', '-', ''), +(424, 'dr. Hamzah, Sp.OT', '', 'Orthopedi', '-', ''), +(425, 'dr. Johan Bastian, Sp.OT', '', 'Orthopedi', '-', ''), +(426, 'dr. Mujiyono, Sp.OT(K)', '', 'Orthopedi', '-', ''), +(427, 'dr. R. Satriyo Aji, Sp.OT(K)', '', 'Orthopedi', '-', ''), +(428, 'dr. Rangga Arieza Fachlevi, M.Kes, Sp.OT', '', 'Orthopedi', '-', ''), +(429, 'Prof. Dr. dr. Mohamad Hidajat, Sp.B, Sp.OT(K)', '', 'Orthopedi', '-', ''), +(430, 'dr. Donny Noerhadiono C., Sp.OT(K) Spine', '', 'Orthopedi', '-', ''), +(431, 'dr. Dandy Drestanto Adiwignyo, SpOT', '', 'Orthopedi', '-', ''), +(432, 'dr. Anindita Eka Pramana Wijaya, SpOT', '', 'Orthopedi', '-', ''), +(433, 'dr. Besut Daryanto, SpB, Sp.U (K)ย ', '', 'Urologi', 'urobes.fk@ub.ac.id', ''), +(434, 'dr. Pradana Nurhadi, Sp.U', '', 'Urologi', 'dan_uro.fk@ub.ac.id', ''), +(435, 'dr. Kurnia Penta Seputra, Sp.U (K)ย ', '', 'Urologi', 'uropnt.fk@ub.ac.id', ''), +(436, 'dr. Taufiq Nur Budaya, Sp.U', '', 'Urologi', 'taufiq_uro.fk@ub.ac.id', ''), +(437, 'dr. Paksi Satyagraha, M.Kes, Sp.Uย ', '', 'Urologi', 'uropas.fk@ub.ac.id', ''), +(438, 'dr. Edy Wibowo, Sp.U', '', 'Urologi', '-', ''), +(439, 'dr. Medianto, Sp.U', '', 'Urologi', '-', ''), +(440, 'dr. Andri Kustono, Sp.U', '', 'Urologi', 'kustono_andri.fk@ub.ac.id', ''), +(441, 'dr. Athaya Febriantyo Purnomo, Sp.U.', '', 'Urologi', 'athayafp@ub.ac.id', ''), +(442, 'dr. Martha Hendry, Sp.U(K), MARS', '', 'Urologi', '-', ''), +(443, 'dr. Andrie Rhomdhon Kurniawan, Sp.U', '', 'Urologi', '-', ''), +(444, 'dr. Anton Hermawan, Sp.U', '', 'Urologi', '-', ''), +(445, 'dr. Yudi Y. Ambeng, Sp.U', '', 'Urologi', '-', ''), +(446, 'dr. Deddy Rasyidan Yulizar, Sp.U', '', 'Urologi', '-', ''), +(447, 'dr. Neila Raisa, Sp. S (K)', '', 'Neurologi', 'neilaraisa@ub.ac.id', ''), +(448, 'dr. Eko Arisetijono, Sp. S (K)', '', 'Neurologi', 'drekoarisetijono.fk@ub.ac.id', ''), +(449, 'dr. Rodhiyan Rakhmatiar, Sp.S (K) M. Biomed', '', 'Neurologi', 'odhy_neuro@ub.ac.id', ''), +(450, 'dr. Zamroni A, Sp. S (K)', '', 'Neurologi', 'dr_zamroniafif@ub.ac.id', ''), +(451, 'dr. Machlusil Husna, Sp. S (K)ย ', '', 'Neurologi', 'machlusilhusna.fk@ub.ac.id', ''), +(452, 'dr. Sri Budhi Rianawati, Sp. S (K)', '', 'Neurologi', 'rien62.fk@ub.ac.id', ''), +(453, 'Dr. dr. Shahdevi Nandar K, Sp. S (K)', '', 'Neurologi', 'shahdevinandar@ub.ac.id', ''), +(454, 'dr. Catur Arisetianto, Sp. S (K)', '', 'Neurologi', 'catur-ari@ub.ac.id', ''), +(455, 'dr. Widodo Mardi Santoso, Sp. S (K)', '', 'Neurologi', 'widodotita.fk@ub.ac.id', ''), +(456, 'dr. Badrul Munir, Sp. S (K)', '', 'Neurologi', 'badroel2007@ub.ac.id', ''), +(457, 'dr. Dessika Rahmawati, Sp. S (K)', '', 'Neurologi', 'dessikasps@ub.ac.id', ''), +(458, 'dr. Ria Damayanti, M.Biomed, Sp.S(K)', '', 'Neurologi', 'dr.riadamayanti@ub.ac.id', ''), +(459, 'dr. Adecya Amaryllis Risa Putri, Sp.N', '', 'Neurologi', '-', ''), +(460, 'Dr. dr. Rini Andriani, Sp.S(K)', '', 'Neurologi', '-', ''), +(461, 'dr. Hajeng Wulandari, Sp.A, Mbiomed', '', 'Anak', 'hajengwulandari.fk@ub.ac.id', ''), +(462, 'dr. Irfan Agus Salim, Sp.A, Mbiomed ', '', 'Anak', 'irfanagus.fk@ub.ac.id', ''), +(463, 'dr. Fadilah Muttaqin, Spp.A,MBiomed', '', 'Anak', '-', ''), +(464, 'dr. Ery Olivianto, Sp. A (K)', '', 'Anak', 'ery15.fk@ub.ac.id', ''), +(465, 'Dr.dr. Krisni Soebandijah, Sp.A(K)', '', 'Anak', 'krisni19.fk@ub.ac.id', ''), +(466, 'dr. Astrid Kristina Kardani, Sp. A, MBiomed', '', 'Anak', 'astridkardani.fk@ub.ac.id', ''), +(467, 'dr. Nugroho Danu Tri Subroto, Sp.A(K)', '', 'Anak', 'danu.dr@ub.ac.id', ''), +(468, 'dr. Irene Ratridewi, Sp.A(K), M.Kes', '', 'Anak', 'irene24.fk@ub.ac.id', ''), +(469, 'dr.Savitri Laksmi Winaputri, Sp.A', '', 'Anak', '-', ''), +(470, 'Dr.dr. Wisnu Barlianto, Sp.A(K), Msi.Med', '', 'Anak', 'wisnu_barlian@ub.ac.id', ''), +(471, 'dr. Desy Wulandari, Sp.A, M.Biomed', '', 'Anak', 'desywulandari@ub.ac.id', ''), +(472, 'dr. Satrio Wibowo, Sp.A(K), Msi.Medย ', '', 'Anak', 'satrio_wibowo@ub.ac.id', ''), +(473, 'dr. Muhammad Irawan, Sp.A, MBiomed', '', 'Anak', 'muhammadirawan.fk@ub.ac.id', ''), +(474, 'dr. A. Susanto Nugroho, Sp.A(K)ย ', '', 'Anak', 'susanto04.fk@ub.ac.id', ''), +(475, 'dr. Sonny Wicaksono, Sp. A, M.Kes', '', 'Anak', '-', ''), +(476, 'dr. Brigitta Ida RVC, Sp.A(K), M.Kes', '', 'Anak', 'briggita_vebi@ub.ac.id', ''), +(477, 'dr. Eko Sulistijono, Sp.A', '', 'Anak', 'eko25.fk@ub.ac.id', ''), +(478, 'Dr. dr. Ariani, M.Kes, Sp.A(K)', '', 'Anak', 'arianidr@ub.ac.id', ''), +(479, 'dr. Prasetya Ismail Permadi, Sp.A(K), M.Biomed', '', 'Anak', 'prasetyapermadi@ub.ac.id', ''), +(480, 'dr. Saptadi Yuliarto, M.Kes, Sp.A(K)', '', 'Anak', 'saptadiy@ub.ac.id', ''), +(481, 'Dr. dr. Harjoedi Adji Tjahjono, Sp.A(K)', '', 'Anak', 'haryudi_aji2000@ub.ac.id', ''), +(482, 'dr. Dyahris Koentartiwi, Sp.A(K)', '', 'Anak', 'dyahris08.fk@ub.ac.id', ''), +(483, 'dr. Muchammad Fahrul Udin, M.Kes, Sp.A, Subsp. Resp(K)', '', 'Anak', 'udin24.fk@ub.ac.id', ''), +(484, 'dr. Kurniawan Taufiq Kadafi, M.Biomed, Sp.A(K)', '', 'Anak', 'kadafi12.fk@ub.ac.id', ''), +(485, 'dr. Laurentia Ima Monica, Sp.A., M.Biomed.', '', 'Anak', 'monicasutatnto@ub.ac.id', ''), +(486, 'dr. Setya Mithra Hartiastuti, MSi.Med, Sp.A(K)', '', 'Anak', '-', ''), +(487, 'dr. Melany Farrahdilla, Sp.A, M.Kes', '', 'Anak', '-', ''), +(488, 'dr. Melinda, Sp.A, M.Biomed', '', 'Anak', '-', ''), +(489, 'dr. Mochamad Chabibi, Sp.A, M.Biomed', '', 'Anak', '-', ''), +(490, 'dr. Hidayati Utami Dewi, Sp.A', '', 'Anak', '-', ''), +(491, 'dr. Ardhanis Ramadhanti, Sp.A', '', 'Anak', '-', ''), +(492, 'dr. Emi Yulianti, Sp.A', '', 'Anak', '-', ''), +(493, 'dr. Herlin Kristanti, Sp.A', '', 'Anak', '-', ''), +(494, 'dr. Zuhrotul Aini, Sp.A', '', 'Anak', '-', ''), +(495, 'dr. Novi Efridayanti, Sp.A., M.Biomed', '', 'Anak', '-', ''), +(496, 'dr. Astri Proborini, Sp.A., M.Kes', '', 'Anak', '-', ''), +(497, 'dr. Charity Monica, Sp.A', '', 'Anak', '-', ''), +(498, 'dr.Dewangga Primananda Susanto, MMRS., Sp. A', '', 'Anak', '-', ''), +(499, 'dr. Tulus Sampurno, Sp.A', '', 'Anak', '-', ''), +(500, 'Dr. dr. Arif Widiatmoko, Sp.KK(K)', '', 'Dermatologi', 'arif_fk@ub.ac.id', ''), +(501, 'Dr. dr. Sinta Murlistyarini, Sp.KK(K)', '', 'Dermatologi', 'sintamur@ub.ac.id', ''), +(502, 'dr. Dhany Prafita Ekasari, Sp.KK', '', 'Dermatologi', 'dhany_prafita@ub.ac.id', ''), +(503, 'dr. Herwinda Brahmanti, Sp.KK(K), M.Sc', '', 'Dermatologi', 'dr_herwinda@ub.ac.id', ''), +(504, 'dr. Anggun Putri Yuniaswan, Sp.KK', '', 'Dermatologi', 'anggun@ub.ac.id', ''), +(505, 'Dr. dr. Dhelya Widasmara, Sp.KK(K)', '', 'Dermatologi', 'dhelyawidasmara@ub.ac.id', ''), +(506, 'Dr. dr. Boedhy Setyanto, Sp.KK', '', 'Dermatologi', 'boedhysetyanto@ub.ac.id', ''), +(507, 'dr. Intan Wasaputri Donoseputro, Sp.D.V.', '', 'Dermatologi', 'intanwasap@ub.ac.id', ''), +(508, 'dr. Lita Setyowatie, Sp.KK(K)', '', 'Dermatologi', 'lita84dv@ub.ac.id', ''), +(509, 'dr. Suci Prawitasari, Sp.KK(K)', '', 'Dermatologi', 'suci_prawitasari@ub.ac.id', ''), +(510, 'dr. Santosa Basuki, Sp.KK(K)', '', 'Dermatologi', '-', ''), +(511, 'dr. Sekar Puspita Lilasari, Sp.KK', '', 'Dermatologi', '-', ''), +(512, 'dr. Marta Dwi Rifka, Sp.KK', '', 'Dermatologi', '-', ''), +(513, 'dr. Adinda Amalia Dani, Sp.DV', '', 'Dermatologi', '-', ''), +(514, 'dr. Aunur Rofiq, Sp.D.V.E., Subsp. D.A.I., FINSDV, FAADV', '', 'Dermatologi', 'aunurrofiq.fk@ub.ac.id', ''), +(515, 'dr. Ahmad Dian Wahyudiono, Sp.THT-KL(K)', '', 'THT', 'dian_w.fk@ub.ac.id', ''), +(516, 'dr. Iriana Maharani, Sp.THT-KL(K)', '', 'THT', 'iriana_maharani@ub.ac.id', ''), +(517, 'Dr. dr. Edi Handoko, Sp.THT-KL(K)', '', 'THT', 'dr.edihandoko@ub.ac.id', ''), +(518, 'Dr. dr. Soehartono, Sp.THT-KL(K)', '', 'THT', 'hartonotht@ub.ac.id', ''), +(519, 'dr. Hendradi Surjotomo, Sp.THT-KL(K)', '', 'THT', 'hendraditht@ub.ac.id', ''), +(520, 'dr. Mohammad Dwijo Murdiyo, Sp.THT-KL(K)', '', 'THT', 'mamaddwi3105@ub.ac.id', ''), +(521, 'dr. Meyrna Heryaning Putri, Sp.THT-KL', '', 'THT', 'meyrnaheryaningputri@ub.ac.id', ''), +(522, 'dr. Moch Mundir Arif, Sp.THT-KL', '', 'THT', '-', ''), +(523, 'dr. Rizki Eka Putra Handoko, Sp.THT-KL', '', 'THT', '-', ''), +(524, 'dr. Siti Umi Hanik, Sp.THT-KL', '', 'THT', '-', ''), +(525, 'dr. Ayunita Tri Wirattami, Sp.THT-KL', '', 'THT', '-', ''), +(526, 'Dr. dr. Aulia Abdul Hamid Abdullah, M.Biomed.Sc, Sp.M(K)', '', 'Mata', 'aulia.fk@ub.ac.id', ''), +(527, 'Dr. dr. Nadia Artha Dewi, Sp.M(K)', '', 'Mata', 'nadia_dewi@ub.ac.id', ''), +(528, 'Dr. dr. Seskoati Prayitnaningsih, Sp.M(K)', '', 'Mata', 'seskoatip@ub.ac.id', ''), +(529, 'Dr. dr. Hera Dwi Novita, Sp.M(K)', '', 'Mata', 'hera_spm@ub.ac.id', ''), +(530, 'dr. Hidayat Sujuti, Sp.M(K), Ph.D', '', 'Mata', 'hidayatsujuti.fk@ub.ac.id', ''), +(531, 'dr. Lely Retno Wulandari, Sp.M(K)', '', 'Mata', 'lely_wulandari@ub.ac.id', ''), +(532, 'Dr. dr. Nina Handayani, Sp.M(K)', '', 'Mata', 'nina_handayani@ub.ac.id', ''), +(533, 'dr. Wino Vrieda Vierlia, Sp.M(K)', '', 'Mata', 'vrieda_v@ub.ac.id', ''), +(534, 'dr. Zendy Sagita, Sp.M', '', 'Mata', 'zendysagita@ub.ac.id', ''), +(535, 'Dr. dr. Nanda Wahyu Anandita, Sp.M(K)', '', 'Mata', 'nan_anandita@ub.ac.id', ''), +(536, 'Dr. dr. Ovi Sofia, Sp.M(K)', '', 'Mata', 'dr.ovisofia@ub.ac.id', ''), +(537, 'Dr. dr. Debby Shintiya Dewi, Sp.M(K)', '', 'Mata', 'Debbyshintiya73@ub.ac.id', ''), +(538, 'Dr. dr. Rosy Aldina, Sp.M(K)', '', 'Mata', 'rosyaldina@ub.ac.id', ''), +(539, 'dr. Anny Sulistiyowati, Sp.M(K)', '', 'Mata', '-', ''), +(540, 'dr. Herwindo Dicky Putranto, Sp.M(K)', '', 'Mata', '-', ''), +(541, 'dr. Titok Hariyanto, Sp.M', '', 'Mata', '-', ''), +(542, 'dr. Triana Budi Sulistya, Sp.M(K)', '', 'Mata', '-', ''), +(543, 'dr. Fariz Nufiarwan, Sp.M', '', 'Mata', '-', ''), +(544, 'dr. Vatien Rahmawati, Sp.M', '', 'Mata', '-', ''), +(545, 'dr. Chairunisa Ferdiana, Sp.M, M.Si', '', 'Mata', '-', ''), +(546, 'dr. Cinthya Hapsari, Sp.M', '', 'Mata', '-', ''), +(547, 'dr. Raden Budi Santoso, Sp.M', '', 'Mata', '-', ''), +(548, 'dr. Sigit Wibisono, Sp.M', '', 'Mata', '-', ''), +(549, 'dr. Tutuk Wibowo Chamidy, Sp.M', '', 'Mata', '-', ''), +(550, 'dr. Ahmad Thohir, Sp.M', '', 'Mata', 'ahmad.thohir@ub.ac.id', ''), +(551, 'dr. Agung Pambudi Setyowibowo, Sp.M', '', 'Mata', '-', ''), +(552, 'dr. Didi Candradikusuma, Sp.P.D,K-PTIย ', 'DPJP', 'IPD', 'didi_candradikusuma.fk@ub.ac.id', 'didi1312@gmail.com'), +(553, 'Dr.dr. Cesarius Singgih Wahono, Sp.P.D,K-Rย ', 'DPJP', 'IPD', 'singgih_wahono.fk@ub.ac.id', 'singgih_wahono@yahoo.com'), +(554, 'Dr. dr. Sri Soenarti, Sp.P.D., K-Ger', 'DPJP', 'IPD', 'sri_sunarti.fk@ub.ac.id', 'sinartitan@rocketmail.com'), +(555, 'dr. Laksmi Sasiarini, Sp.P.D., K-EMD', 'DPJP', 'IPD', 'laksmi_sasiarini@ub.ac.id', 'keenarku@yahoo.com'), +(556, 'dr. Herwindo Pudjo Brahmantyo, Sp.P.D., K-HOMย ', 'DPJP', 'IPD', 'herwindopudjo.ipd@ub.ac.id', 'herwindopudjo@yahoo.com'), +(557, 'dr. Rulli Rosandi, Sp.P.D., K-EMD', 'DPJP', 'IPD', 'rulliendokrin@ub.ac.id', 'email_rulli@yahoo.com'), +(558, 'dr. Bagus Putu Putra Suryana, Sp.PD,K-R', 'DPJP', 'IPD', 'putra_suryana@ub.ac.id', 'putra_suryana@hotmail.com\nreumato.rssa@yahoo.co.id'), +(559, 'dr. Syifa Mustika, Sp.P.D, K-GEH', 'DPJP', 'IPD', 'drtika_78@ub.ac.id', 'drtika_78@yahoo.com'), +(560, 'Dr. dr. Atma Gunawan, Sp.P.D., K-GHย ', 'DPJP', 'IPD', 'atma_gunawan.fk@ub.ac.id', 'atmagunawan2010@yahoo.com'), +(561, 'Dr. dr. Supriono, Sp.P.D,K-GEH', 'DPJP', 'IPD', 'supriono_ipd.fk@ub.ac.id', 'sprint.mlg@gmail.com'), +(562, 'dr. Siti Fatma Prehatiningsih, Sp.P.D.', 'DPJP', 'IPD', '-', '-'), +(563, 'dr. Heri Sutanto, Sp.P.D', 'DPJP', 'IPD', 'herisutanto.ipd@ub.ac.id', '-'), +(564, 'dr. Perdana Aditya Rahman, Sp.P.D., K-R', 'DPJP', 'IPD', 'perdana.aditya@ub.ac.id', 'perdana_aditya_md@yahoo.com'), +(565, 'dr. Eden Suryoiman Winoto, Sp.P.D', 'DPJP', 'IPD', 'dreden86.ipd@ub.ac.id', 'dreden86@gmail.com'), +(566, 'dr. Bogi Pratomo W., Sp.P.D. K-GEH', 'DPJP', 'IPD', 'bogi_pratomo.fk@ub.ac.id', 'bogipratomo@gmail.com'), +(567, 'Dr. dr. Shinta Oktya Wardhani, Sp.P.D., K-HOMย ', 'DPJP', 'IPD', 'shinta_oktya.fk@ub.ac.id', 'shinta_ow@yahoo.com'), +(568, 'Dr. Achmad Rifai, Sp.P.D., K-GH', 'DPJP', 'IPD', 'achmad_rifai.fk@ub.ac.id', ''), +(569, 'Dr. dr. Nur Samsu, Sp.P.D., K-GH', 'DPJP', 'IPD', 'nur_samsu.fk@ub.ac.id', 'samsu_nrs@yahoo.com'), +(570, 'dr. Nina Nurarifah, Sp.PD, K-HOM', 'DPJP', 'IPD', 'ninanur@ub.ac.id', 'ninanurarifah@gmail.com'), +(571, 'dr. Muhammad Anshory, Sp.PD', 'DPJP', 'IPD', 'muhammadanshory@ub.ac.id', 'muhammadanshory@yahoo.com'), +(572, 'dr. Dewi Indiastari, Sp.PD., K-PTI.', 'DPJP', 'IPD', 'indiastari@ub.ac.id', 'indiastari83@gmail.com'), +(573, 'dr. Nyoman Satvika Dharma Yudha, Sp.PD., KEMD', 'DPJP', 'IPD', 'nyomansatvika27@ub.ac.id', '-'), +(574, 'dr. Milanitalia Gadys Rosandy, Sp.PD', 'DPJP', 'IPD', 'milanitalia@ub.ac.id', '-'), +(575, 'dr. Mirza Zaka Pratama, M.Biomed, Sp.PD', 'DPJP', 'IPD', 'mirzapratama@ub.ac.id', '-'), +(576, 'dr. Djoko Heri Hermanto, Sp.PD, K-HOM', 'DPJP', 'IPD', 'djoko_heri.fk@ub.ac.id', 'djokoheri@gmail.com'), +(577, 'Dr. dr. Niniek Budiarti, Sp.PD, K-PTI', 'DPJP', 'IPD', 'niniek_budiarti.fk@ub.ac.id', 'niniek_burhan@yahoo.com'), +(578, 'dr. Fajar Hadi Wijayanto, Sp.PD', 'DPJP', 'IPD', 'fajarhadiw@ub.ac.id', 'fajarhadiwijayanto@gmail.com'), +(579, 'Prof. Dr. dr. Achmad Rudijanto, Sp.PD.KEMD', 'DPJP', 'IPD', 'achmad_rudijanto.fk@ub.ac.id', 'achmadrudijanto@yahoo.co.id'), +(580, 'dr. Erdilian Jodi Putra Pratama, Sp.PD.', 'DPJP', 'IPD', 'erdilianjodi90@ub.ac.id', '-'), +(581, 'dr. Chrisandi Yusuf Rizqiansyah, Sp.PD.', 'DPJP', 'IPD', 'chrisandi150824@ub.ac.id', '-'), +(582, 'dr. Jonny Karunia Fajar, Sp.PD.', 'DPJP', 'IPD', 'jonnykf@ub.ac.id', '-'), +(583, 'dr. Rinadhi Reza Bramantya, Sp.PD, K-EMD', 'DPJP', 'IPD', 'rezabramantya@ub.ac.id', 'bramantyareza@gmail.com'); +INSERT INTO `dokter` (`ID_Dokter`, `Nama_Dokter`, `Status`, `KSM`, `Email_UB`, `Email_Pribadi`) VALUES +(584, 'dr. Putu Moda Arsana, Sp.PD, K-EMD', 'DPJP', 'IPD', 'putu_moda.fk@ub.ac.id', 'putumodaarsana49@gmail.com'), +(585, 'dr. Mohamad Jasin Jachja, Sp.PD', 'DPJP', 'IPD', '-', 'drmjasinjachja@gmail.com'), +(586, 'dr. Nuraida Wisudani, Sp.PD', 'DPJP', 'IPD', '-', 'nuraida.wisudani@gmail.com'), +(587, 'dr. Mochamad Fachrureza, Sp.PD', 'DPJP', 'IPD', '-', 'dr.edja84@gmail.com'), +(588, 'dr. Hesti Purwanti, Sp.PD', 'DPJP', 'IPD', '-', 'hestiwisnuwr@gmail.com'), +(589, 'dr. Muhammad Hamdan Yuwaafi, Sp.PD', 'DPJP', 'IPD', '-', 'M.h.yuwaafii@gmail.com'), +(590, 'Prof. Dr. dr. Handono Kalim, Sp.PD, K-R', 'DPJP', 'IPD', '-', 'hkalim333@gmail.com'), +(591, 'dr. Dewi Sri Wulandari, Sp.PD.', 'DPJP', 'IPD', '-', '-'), +(592, 'dr. Rezdy Tofan Bhaskara, Sp.PD.', 'DPJP', 'IPD', '-', '-'), +(593, 'dr. Surya Abadi Kristyoadi, Sp.PD', 'DPJP', 'IPD', '-', '-'), +(594, 'dr. Affa Kysa Waafi, Sp.PD', 'DPJP', 'IPD', '-', '-'), +(595, 'Verina Setyabudhi', 'PPDS', 'IPD', 'veronicaverina@student.ub.ac.id', '-'), +(596, 'Patricia Charisma Octavianus', 'PPDS', 'IPD', 'patriciaoctav@student.ub.ac.id', '-'), +(597, 'Rahmatan Lil Alamin', 'PPDS', 'IPD', 'rahmatanla2021@student.ub.ac.id', '-'), +(598, 'Heri Supriyanto', 'PPDS', 'IPD', 'herisupriyanto@student.ub.ac.id', '-'), +(599, 'Fajar Maulana Raharjo', 'PPDS', 'IPD', 'fajarmaulanar@student.ub.ac.id', '-'), +(600, 'Putri Fitri Alfiantya', 'PPDS', 'IPD', 'putrialfiantya@student.ub.ac.id', '-'), +(601, 'christina widosari', 'PPDS', 'IPD', 'christinaw87@student.ub.ac.id', '-'), +(602, 'Muchammad Kamal Hadi', 'PPDS', 'IPD', 'mkamalhadi@student.ub.ac.id', '-'), +(603, 'Liku Vianty', 'PPDS', 'IPD', 'likuvianty@student.ub.ac.id', '-'), +(604, 'Nadia Alfiani Jauza', 'PPDS', 'IPD', 'nadialfiani06@student.ub.ac.id', '-'), +(605, 'Patan Ahmad Setiabudi', 'PPDS', 'IPD', 'patan_94@student.ub.ac.id', '-'), +(606, 'Al Imroatus Sholihah', 'PPDS', 'IPD', 'anisaraischika@student.ub.ac.id', '-'), +(607, 'Galih Hayyu Salim Prasetyawan', 'PPDS', 'IPD', 'galihhayyu_ipd@student.ub.ac.id', '-'), +(608, 'Amalia Nurul Hatinah', 'PPDS', 'IPD', 'amalianurul07@student.ub.ac.id', '-'), +(609, 'VINCENT SURIAWINATA', 'PPDS', 'IPD', 'vincentsur@student.ub.ac.id', '-'), +(610, 'Muhammad Bilal Saifulhaq', 'PPDS', 'IPD', 'mbilal@student.ub.ac.id', '-'), +(611, 'dr. Tommi Faruq Nahdi', 'PPDS', 'IPD', 'tommi_elfath@student.ub.ac.id', '-'), +(612, 'Naya Adi Dharmesta', 'PPDS', 'IPD', 'naya_ipd@student.ub.ac.id', '-'), +(613, 'Afina Fitra Firdaus', 'PPDS', 'IPD', 'afinaff27@student.ub.ac.id', '-'), +(614, 'Muhammad Reyhan', 'PPDS', 'IPD', 'rey_dean@student.ub.ac.id', '-'), +(615, 'Ni Made Windari Anggreni', 'PPDS', 'IPD', 'windarianggreni@student.ub.ac.id', '-'), +(616, 'dr. Krisna Debora', 'PPDS', 'IPD', 'debora09@student.ub.ac.id', '-'), +(617, 'dr. Sofia Nuri', 'PPDS', 'IPD', 'sofianuri89@student.ub.ac.id', '-'), +(618, 'Tohari', 'PPDS', 'IPD', 'tohariamin@student.ub.ac.id', '-'), +(619, 'Novi davitsen', 'PPDS', 'IPD', 'davdavidsun@student.ub.ac.id', '-'), +(620, 'Arlentina Bentivolia Simamora', 'PPDS', 'IPD', 'bentivolia89@student.ub.ac.id', '-'), +(621, 'Nikolas Raphon Sidabalok', 'PPDS', 'IPD', 'papa_vinaboa@student.ub.ac.id', '-'), +(622, 'Adisti Yuliandini', 'PPDS', 'IPD', 'adisti@student.ub.ac.id', '-'), +(623, 'Meiriyan Susanto', 'PPDS', 'IPD', 'meiriyans93dr@student.ub.ac.id', '-'), +(624, 'Rama Tiar Nugroho', 'PPDS', 'IPD', 'ramatayer93@student.ub.ac.id', '-'), +(625, 'Atika Bashirati Ilman', 'PPDS', 'IPD', 'atikailman@student.ub.ac.id', '-'), +(626, 'Ria Sherliana', 'PPDS', 'IPD', 'riasherliana123@student.ub.ac.id', '-'), +(627, 'Rahmad Arifin Hsb', 'PPDS', 'IPD', 'arifinhsb20@student.ub.ac.id', '-'), +(628, 'Natalia Rasta Malem', 'PPDS', 'IPD', 'nataliarastamb@student.ub.ac.id', '-'), +(629, 'Asihanti Rosita Ferdiana', 'PPDS', 'IPD', 'asihantirosita@student.ub.ac.id', '-'), +(630, 'Gema Akbar Wakhidana', 'PPDS', 'IPD', 'gemaakbarw@student.ub.ac.id', '-'), +(631, 'Anugrah Abdurrohman', 'PPDS', 'IPD', 'ranirumaizadr@student.ub.ac.id', '-'), +(632, 'yusia mega relita', 'PPDS', 'IPD', 'yusiamegarelita@student.ub.ac.id', '-'), +(633, 'Sri Lestari Fajerin', 'PPDS', 'IPD', 'srilestarif@student.ub.ac.id', '-'), +(634, 'Tia Rahmi Priyanto', 'PPDS', 'IPD', 'tiarapriyanto@student.ub.ac.id', '-'), +(635, 'Renno Firaldy', 'PPDS', 'IPD', 'firaldyrenno@student.ub.ac.id', '-'), +(636, 'Partogi Andres Marpaung', 'PPDS', 'IPD', 'partogi@student.ub.ac.id', '-'), +(637, 'Dinda Amalia Eka Putri', 'PPDS', 'IPD', 'dndamalia@student.ub.ac.id', '-'), +(638, 'Kamelia Sitorus', 'PPDS', 'IPD', 'kamelias271@student.ub.ac.id', '-'), +(639, 'Iis Novianti Rosyida', 'PPDS', 'IPD', 'iisnovianti@student.ub.ac.id', '-'), +(640, 'Vidia Purnama Sari', 'PPDS', 'IPD', 'vidiapurnama@student.ub.ac.id', '-'), +(641, 'dr. Yuni Adriani', 'PPDS', 'IPD', 'adrianiyuni24@student.ub.ac.id', '-'), +(642, 'Stefan Bram Kanigia', 'PPDS', 'IPD', 'bramkanigia@student.ub.ac.id', '-'), +(643, 'Kadek Dwi Sujaya', 'PPDS', 'IPD', 'kadekdwi@student.ub.ac.id', '-'), +(644, 'Hafidh Alyza Rachman', 'PPDS', 'IPD', 'hafidhar@student.ub.ac.id', '-'), +(645, 'Alfi Kamalia', 'PPDS', 'IPD', 'alfikamalia@student.ub.ac.id', '-'), +(646, 'Rizza Febri Diantoro', 'PPDS', 'IPD', 'rizzafebri_ipd@student.ub.ac.id', '-'), +(647, 'Amandha Rizky Taufika', 'PPDS', 'IPD', 'amandharizky@student.ub.ac.id', '-'), +(648, 'Maiova Nur Annisa', 'PPDS', 'IPD', 'maiovanurannisa@student.ub.ac.id', '-'), +(649, 'Helena Tridasari Nendraningrum', 'PPDS', 'IPD', 'helenaningrum21@student.ub.ac.id', '-'), +(650, 'Made Dwi Pratiwi', 'PPDS', 'IPD', 'madedwipratiwi@student.ub.ac.id', '-'), +(651, 'Maruli Setiawan', 'PPDS', 'IPD', 'marulisetiawan@student.ub.ac.id', '-'), +(652, 'Dennis Koresy', 'PPDS', 'IPD', 'dennkoresy@student.ub.ac.id', '-'), +(653, 'Reza Fanani', 'PPDS', 'IPD', 'rezfan@student.ub.ac.id', '-'), +(654, 'Andini Bakti Putri', 'PPDS', 'IPD', 'andinibakti@student.ub.ac.id', '-'), +(655, 'Laswan Sahat Maruli Siallagan', 'PPDS', 'IPD', 'laswansiallagan@student.ub.ac.id', '-'), +(656, 'Adib Danurdipta', 'PPDS', 'IPD', 'adibdanurdipta@student.ub.ac.id', '-'), +(657, 'dr. Anggun Anggraini Wibisana', 'PPDS', 'IPD', 'anggunwibisana@student.ub.ac.id', '-'), +(658, 'Andani Putri Budi Arti', 'PPDS', 'IPD', 'andaniputri@student.ub.ac.id', '-'), +(659, 'Andre Eka Putra Prakosa', 'PPDS', 'IPD', 'andre_dre@student.ub.ac.id', '-'), +(660, 'JAMILAH AULIA HAIKHAH', 'PPDS', 'IPD', 'jemsjamilah@student.ub.ac.id', '-'), +(661, 'Cynthia Maria Wijaya', 'PPDS', 'IPD', 'cynthiawijaya@student.ub.ac.id', '-'), +(662, 'Thoha Muhajir Albaar', 'PPDS', 'IPD', 'tmalbaar54@student.ub.ac.id', '-'), +(663, 'Leony Anatasia Maranatha', 'PPDS', 'IPD', 'leonyanatasia@student.ub.ac.id', '-'), +(664, 'Ersyad Kholid', 'PPDS', 'IPD', 'ersyadkholid09@student.ub.ac.id', '-'), +(665, 'Aulia Sita Hapsari', 'PPDS', 'IPD', 'auliasita98@student.ub.ac.id', '-'), +(666, 'Primayuni Dhia Hasanah', 'PPDS', 'IPD', 'primayunidhia@student.ub.ac.id', '-'), +(667, 'Albert William Hotomo', 'PPDS', 'IPD', 'dokterhotomo@student.ub.ac.id', '-'), +(668, 'Claudio Ian Ferara', 'PPDS', 'IPD', 'claudioianf@student.ub.ac.id', '-'), +(669, 'Thomas Erickson', 'PPDS', 'IPD', 'thomaserickson@student.ub.ac.id', '-'), +(670, 'Maria Sarche Kuna', 'PPDS', 'IPD', 'sarche@student.ub.ac.id', '-'), +(671, 'Tonny Aldo Aprillino', 'PPDS', 'IPD', 'tonnyaldo@student.ub.ac.id', '-'), +(672, 'Lia Dia Farida', 'PPDS', 'IPD', 'faridaliadia@student.ub.ac.id', '-'), +(673, 'Janette Golda Meir Putri', 'PPDS', 'IPD', 'goldameirjanet@student.ub.ac.id', '-'), +(674, 'Annisa Putri Astuti', 'PPDS', 'IPD', 'annisaputriast@student.ub.ac.id', '-'), +(675, 'oktaviyani poulus', 'PPDS', 'IPD', 'oktaviyaniipd56@student.ub.ac.id', '-'), +(676, 'Freddy Chandra Nainggolan', 'PPDS', 'IPD', 'freddychandran@student.ub.ac.id', '-'), +(677, 'Indri Aswari', 'PPDS', 'IPD', 'indriaswari@student.ub.ac.id', '-'), +(678, 'Intan Ayu Islami', 'PPDS', 'IPD', 'intanayuislami@student.ub.ac.id', '-'), +(679, 'Chikita Rizqi Hanifati', 'PPDS', 'IPD', 'chikitarh@student.ub.ac.id', '-'), +(680, 'Levrita Nindya Poetri', 'PPDS', 'IPD', 'levritalnp@student.ub.ac.id', '-'), +(681, 'Putu Ijiya Danta Awatara', 'PPDS', 'IPD', 'ijiyadanta_19@student.ub.ac.id', '-'), +(682, 'Izzah Wahidiah Rochmah', 'PPDS', 'IPD', 'izzahwr@student.ub.ac.id', '-'), +(683, 'Martharika Karinda Wibowo', 'PPDS', 'IPD', 'martharika@student.ub.ac.id', '-'), +(684, 'Agustinus Alfred Gunawan', 'PPDS', 'IPD', 'alfredgun91@student.ub.ac.id', '-'), +(685, 'Gilang Sukma Muhamad', 'PPDS', 'IPD', 'gilangsukmam@student.ub.ac.id', '-'), +(686, 'Muhamad Haitsam', 'PPDS', 'IPD', 'muhamadhaitsam9@student.ub.ac.id', '-'), +(687, 'Edo Aditya Dwi Susanto', 'PPDS', 'IPD', 'edoadsusanto@student.ub.ac.id', '-'), +(688, 'Septha Rully Dwi Pradipto', 'PPDS', 'IPD', 'septharully@student.ub.ac.id', '-'), +(689, 'Marisa Perucana Sinambela', 'PPDS', 'IPD', 'marisasinambela@student.ub.ac.id', '-'), +(690, 'Atina Nabilah', 'PPDS', 'IPD', 'nabilabee13@student.ub.ac.id', '-'), +(691, 'Hadiyoga Pratama Putra', 'PPDS', 'IPD', 'hadiyogapq@student.ub.ac.id', '-'), +(692, 'Andika Agus Budiarto', 'PPDS', 'IPD', 'andikagusb@student.ub.ac.id', '-'), +(693, 'dr. Sasmojo Widito, SpJP (K)', 'DPJP', 'Jantung', 'sasmojowidito@ub.ac.id', 'sasmojowidito@yahoo.com'), +(694, 'dr. Valerinna Yogibuana Swastika Putri, SpJP(K)', 'DPJP', 'Jantung', 'valerinnaysp@ub.ac.id', '-'), +(695, 'Prof. dr. M. Saifur Rohman, SpJP (K), PhDย ', 'DPJP', 'Jantung', 'ippoenk@ub.ac.id', 'ippoenk@yahoo.com'), +(696, 'dr. Ardian Rizal, SpJP (K)', 'DPJP', 'Jantung', 'drardianrizal@ub.ac.id', 'drardianrizal@gmail.com'), +(697, 'dr. Anna Fuji Rahimah, SpJP (K)', 'DPJP', 'Jantung', 'drannafuji@ub.ac.id', '-'), +(698, 'dr. Cholid Tri Tjahjono, M.Kes, SpJP (K)', 'DPJP', 'Jantung', 'cholidtri@ub.ac.id', 'cholidtt@gmail.com'), +(699, 'dr. Heny Martini, SpJP (K)ย ', 'DPJP', 'Jantung', 'henymartini@ub.ac.id', 'henymartini@ub.ac.id'), +(700, 'dr. Budi Satrijo, SpJP (K)', 'DPJP', 'Jantung', 'budisatrijo@ub.ac.id', 'bsatriyo11@yahoo.com'), +(701, 'dr. Novi Kurnianingsih, SpJP (K)ย ', 'DPJP', 'Jantung', 'novikur@ub.ac.id', 'n0v1_kur@yahoo.co.id'), +(702, 'dr. Indra Prasetya, SpJP (K)', 'DPJP', 'Jantung', 'indraprasetya@ub.ac.id', '-'), +(703, 'dr. Veny Mayangsari, SpJP', 'DPJP', 'Jantung', '-', 'veny0203@gmail.com'), +(704, 'dr. Setyasih Anjarwani, SpJP (K)', 'DPJP', 'Jantung', 'setyasih@ub.ac.id', 'setyasihanjarwani@yahoo.com'), +(705, 'dr. Adhika Prastya Wikananda, SpJPย ', 'DPJP', 'Jantung', '-', 'adhikapw@gmail.com'), +(706, 'dr. Wella Karolina, SpJP (K)', 'DPJP', 'Jantung', 'wella.karolina@ub.ac.id', '-'), +(707, 'dr. Yoga Waranugraha, Sp.JP, Subp.Ar.(K)', 'DPJP', 'Jantung', 'mr.waranugraha@ub.ac.id', 'mr.waranugraha@gmail.com'), +(708, 'Prof. Dr. dr. Djanggan Sargowo, Sp.PD, Sp.JP(K)', 'DPJP', 'Jantung', 'djanggan@ub.ac.id', '-'), +(709, 'Dr. dr. Saskia Dyah Handari, Sp.JP(K)', 'DPJP', 'Jantung', '-', 'saskiahandari@gmail.com'), +(710, 'dr. Arief Wibisono, Sp.JP', 'DPJP', 'Jantung', '-', 'arief.spjp@gmail.com'), +(711, 'dr. Evit Ruspiono, Sp.JP', 'DPJP', 'Jantung', '-', 'evitruspiono@gmail.com'), +(712, 'dr. Tri Astiawaty, Sp.JP', 'DPJP', 'Jantung', 'triastiawati@ub.ac.id', 'triastia_dr@yahoo.com'), +(713, 'dr. Adriyawan Widya Nugraha, Sp.JP(K)', 'DPJP', 'Jantung', '-', 'adriyawan.wn@gmail.com'), +(714, 'dr. Andi Wahjono Adi, Sp.JP(K)', 'DPJP', 'Jantung', '-', 'andiwahjono@ymail.com'), +(715, 'dr. Fitranti Suciati Laitupa, Sp.JP(K)', 'DPJP', 'Jantung', '-', 'fitriantilatupawijaya@gmail.com'), +(716, 'dr. Dea Arie Kurniawan, Sp.JP', 'DPJP', 'Jantung', 'dea.kurniawanlec.ub.ac.id', 'dea.arie.kurniawan@gmail.com'), +(717, 'Muhammad Azhar Rosyidi', 'PPDS', 'Jantung', 'azharr@student.ub.ac.id', '-'), +(718, 'Shalahuddin Suryo Baskoro', 'PPDS', 'Jantung', 'suryobaskoro@student.ub.ac.id', '-'), +(719, 'Merlita Herbani', 'PPDS', 'Jantung', 'merlitaherbani@student.ub.ac.id', '-'), +(720, 'Catur Rizky Kurniawan', 'PPDS', 'Jantung', 'caturrizky@student.ub.ac.id', '-'), +(721, 'Savitri Sirait', 'PPDS', 'Jantung', 'savitrisirait91@student.ub.ac.id', '-'), +(722, 'Yuke Fawziah Kemala', 'PPDS', 'Jantung', 'yuke_fawziah@student.ub.ac.id', '-'), +(723, 'dr. Anastasia Christine', 'PPDS', 'Jantung', 'wchanastasia@student.ub.ac.id', '-'), +(724, 'Fikri Taufiq', 'PPDS', 'Jantung', 'fikri_taufiq@student.ub.ac.id', '-'), +(725, 'Mokhamad Aswin Bahar', 'PPDS', 'Jantung', 'draswinbahar@student.ub.ac.id', '-'), +(726, 'Fitri Febrianti Ramadhan', 'PPDS', 'Jantung', 'kardio26fitri@student.ub.ac.id', '-'), +(727, 'Calysta Citra Sekarsari', 'PPDS', 'Jantung', 'calystacitra94@student.ub.ac.id', '-'), +(728, 'Sahlan Abadi', 'PPDS', 'Jantung', 'alanabadi7@student.ub.ac.id', '-'), +(729, 'Malombassi Dharmawan Hadiwidjojo Hutomo', 'PPDS', 'Jantung', 'dharmawanhutomo@student.ub.ac.id', '-'), +(730, 'Ayu Pramitha Wulandari', 'PPDS', 'Jantung', 'ayupramitha@student.ub.ac.id', '-'), +(731, 'Yunita fadhila sandy', 'PPDS', 'Jantung', 'sandyjpd@student.ub.ac.id', '-'), +(732, 'Nicodemus Novian Triatmojo', 'PPDS', 'Jantung', 'nicotriatmojo@student.ub.ac.id', '-'), +(733, 'Hanim Isyfi Fahmi', 'PPDS', 'Jantung', 'hanimisyfi@student.ub.ac.id', '-'), +(734, 'Novi Rahmawati', 'PPDS', 'Jantung', 'novirahmawati@student.ub.ac.id', '-'), +(735, 'Andre Tegar Widhianto', 'PPDS', 'Jantung', 'andretegar@student.ub.ac.id', '-'), +(736, 'Zhafran Veliawan', 'PPDS', 'Jantung', 'zhafranveliawan@student.ub.ac.id', '-'), +(737, 'Nisa Amnifolia Niazta', 'PPDS', 'Jantung', 'amnifolianiazta@student.ub.ac.id', '-'), +(738, 'Yosafat Hasiholan Marthin Gultom', 'PPDS', 'Jantung', 'gultomyosafathm@student.ub.ac.id', '-'), +(739, 'dr. Gebryel Dennis Saerang', 'PPDS', 'Jantung', 'gebryelsmd@student.ub.ac.id', '-'), +(740, 'Mokhammad Afifuddin', 'PPDS', 'Jantung', 'dr_afif_cardio@student.ub.ac.id', '-'), +(741, 'Vemmy Lian Saputri', 'PPDS', 'Jantung', 'vemmylian@student.ub.ac.id', '-'), +(742, 'MASDA KAMARULLAH', 'PPDS', 'Jantung', 'masdakamarullah@student.ub.ac.id', '-'), +(743, 'Irzal Rakhmadhani', 'PPDS', 'Jantung', 'irzalr@student.ub.ac.id', '-'), +(744, 'Daniel Erikson Tambunan', 'PPDS', 'Jantung', 'danielerikson@student.ub.ac.id', '-'), +(745, 'Faruq Yufarriqu Mufaza', 'PPDS', 'Jantung', 'faruqym@student.ub.ac.id', '-'), +(746, 'Laras Gaby Catelya', 'PPDS', 'Jantung', 'lcatelya@student.ub.ac.id', '-'), +(747, 'Bima Utama', 'PPDS', 'Jantung', 'bimautama@student.ub.ac.id', '-'), +(748, 'dr. Kartika', 'PPDS', 'Jantung', 'kartika85@student.ub.ac.id', '-'), +(749, 'Gleopatra Dorothy Molle', 'PPDS', 'Jantung', 'gledhylle119@student.ub.ac.id', '-'), +(750, 'Yola Newary', 'PPDS', 'Jantung', 'drynewary@student.ub.ac.id', '-'), +(751, 'Marco Filano', 'PPDS', 'Jantung', 'marcofilano35@student.ub.ac.id', '-'), +(752, 'Akbar Fadilah', 'PPDS', 'Jantung', 'sultanakb98@student.ub.ac.id', '-'), +(753, 'Bunga Bella Pratiwi', 'PPDS', 'Jantung', 'bungabellap6@student.ub.ac.id', '-'), +(754, 'Sutanti Lara Dewi', 'PPDS', 'Jantung', 'tantiadewi@student.ub.ac.id', '-'), +(755, 'Muhtar Ady Kusuma', 'PPDS', 'Jantung', 'muhtarady07@student.ub.ac.id', '-'), +(756, 'Akhmad Noval Denny Irawan', 'PPDS', 'Jantung', 'noval88@student.ub.ac.id', '-'), +(757, 'Avinda Miyana Putri', 'PPDS', 'Jantung', 'avindamiyana@student.ub.ac.id', '-'), +(758, 'Agustinus Siswanto', 'PPDS', 'Jantung', 'agustinus_s98@student.ub.ac.id', '-'), +(759, 'GALUH IMAN NIRWANA', 'PPDS', 'Jantung', 'galuhnirwana@student.ub.ac.id', '-'), +(760, 'Mochamad Ali Rosadi', 'PPDS', 'Jantung', 'alirosadi@student.ub.ac.id', '-'), +(761, 'Muhammad Rizky Putra Adri', 'PPDS', 'Jantung', 'mrizkypa21@student.ub.ac.id', '-'), +(762, 'ALFIAN REDDY SAGALA', 'PPDS', 'Jantung', 'mypupuu@student.ub.ac.id', '-'), +(763, 'Reviandy Achmad Armandani', 'PPDS', 'Jantung', 'andykardiologi@student.ub.ac.id', '-'), +(764, 'Cornellius Dharwindo', 'PPDS', 'Jantung', 'dinokardio@student.ub.ac.id', '-'), +(765, 'Anindia Reina Yolanda', 'PPDS', 'Jantung', 'anindiareina@student.ub.ac.id', '-'), +(766, 'amalia nurjanah', 'PPDS', 'Jantung', 'amaliamansyur@student.ub.ac.id', '-'), +(767, 'Muhammad Aji Muharrom', 'PPDS', 'Jantung', 'ajimuharrom@student.ub.ac.id', '-'), +(768, 'Suryaningtyas Prabowo', 'PPDS', 'Jantung', 'pacebobs@student.ub.ac.id', '-'), +(769, 'septian christy nugroho', 'PPDS', 'Jantung', 'septiancn08@student.ub.ac.id', '-'), +(770, 'andreago', 'PPDS', 'Jantung', 'andreago@student.ub.ac.id', '-'), +(771, 'Muhammad Haris Firdaus', 'PPDS', 'Jantung', 'mharisfirdaus94@student.ub.ac.id', '-'), +(772, 'Mariana Marpaung', 'PPDS', 'Jantung', 'mariana88@student.ub.ac.id', '-'), +(773, 'Annisya Handini', 'PPDS', 'Jantung', 'annisyahandini8@student.ub.ac.id', '-'), +(774, 'Dr. dr. Aulia Abdul Hamid Abdullah, M.Biomed.Sc, Sp.M(K)', 'DPJP', 'Mata', 'aulia.fk@ub.ac.id', '-'), +(775, 'Dr. dr. Nadia Artha Dewi, Sp.M(K)', 'DPJP', 'Mata', 'nadia_dewi@ub.ac.id', '-'), +(776, 'Dr. dr. Seskoati Prayitnaningsih, Sp.M(K)', 'DPJP', 'Mata', 'seskoatip@ub.ac.id', '-'), +(777, 'Dr. dr. Hera Dwi Novita, Sp.M(K)', 'DPJP', 'Mata', 'hera_spm@ub.ac.id', 'heradw@gmail.com'), +(778, 'dr. Hidayat Sujuti, Sp.M(K), Ph.D', 'DPJP', 'Mata', 'hidayatsujuti.fk@ub.ac.id', '-'), +(779, 'dr. Lely Retno Wulandari, Sp.M(K)', 'DPJP', 'Mata', 'lely_wulandari@ub.ac.id', '-'), +(780, 'Dr. dr. Nina Handayani, Sp.M(K)', 'DPJP', 'Mata', 'nina_handayani@ub.ac.id', 'ninahdyn@gmail.com'), +(781, 'dr. Wino Vrieda Vierlia, Sp.M(K)', 'DPJP', 'Mata', 'vrieda_v@ub.ac.id', 'vrieda_v@yahoo.com'), +(782, 'dr. Zendy Sagita, Sp.M', 'DPJP', 'Mata', 'zendysagita@ub.ac.id', 'zendysagita@gmail.com'), +(783, 'Dr. dr. Nanda Wahyu Anandita, Sp.M(K)', 'DPJP', 'Mata', 'nan_anandita@ub.ac.id', 'nan_anandita@yahoo.com'), +(784, 'Dr. dr. Ovi Sofia, Sp.M(K)', 'DPJP', 'Mata', 'dr.ovisofia@ub.ac.id', 'ovisofia@yahoo.com'), +(785, 'Dr. dr. Debby Shintiya Dewi, Sp.M(K)', 'DPJP', 'Mata', 'Debbyshintiya73@ub.ac.id', 'shindeby@gmail.com'), +(786, 'Dr. dr. Rosy Aldina, Sp.M(K)', 'DPJP', 'Mata', 'rosyaldina@ub.ac.id', 'rosyaldina@yahoo.com'), +(787, 'dr. Anny Sulistiyowati, Sp.M(K)', 'DPJP', 'Mata', '-', 'anny_vision@yahoo.com'), +(788, 'dr. Herwindo Dicky Putranto, Sp.M(K)', 'DPJP', 'Mata', '-', 'nan_anandita@yahoo.com'), +(789, 'dr. Titok Hariyanto, Sp.M', 'DPJP', 'Mata', '-', 'titok19@yahoo.com'), +(790, 'dr. Triana Budi Sulistya, Sp.M(K)', 'DPJP', 'Mata', '-', 'budi.sulistya@yahoo.com'), +(791, 'dr. Fariz Nufiarwan, Sp.M', 'DPJP', 'Mata', '-', 'dr. Fareast@gmail.com'), +(792, 'dr. Vatien Rahmawati, Sp.M', 'DPJP', 'Mata', '-', 'vatien21@gmail.com'), +(793, 'dr. Chairunisa Ferdiana, Sp.M, M.Si', 'DPJP', 'Mata', '-', 'neesa_joe@yahoo.com'), +(794, 'dr. Cinthya Hapsari, Sp.M', 'DPJP', 'Mata', '-', 'chintya.hapsari@gmail.com'), +(795, 'dr. Raden Budi Santoso, Sp.M', 'DPJP', 'Mata', '-', 'radenbudisantoso.rbs@gmail.com'), +(796, 'dr. Sigit Wibisono, Sp.M', 'DPJP', 'Mata', '-', 'sigitwibisono74@gmail.com'), +(797, 'dr. Tutuk Wibowo Chamidy, Sp.M', 'DPJP', 'Mata', '-', 'ctutukwibowo@gmail.com'), +(798, 'dr. Ahmad Thohir, Sp.M', 'DPJP', 'Mata', 'ahmad.thohir@ub.ac.id', 'drhirspm@gmail.com'), +(799, 'dr. Agung Pambudi Setyowibowo, Sp.M', 'DPJP', 'Mata', '-', '-'), +(800, 'Ramona Intan Permatasari', 'PPDS', 'Mata', 'ramona22@student.ub.ac.id', '-'), +(801, 'dr. Pranandito Trunogati', 'PPDS', 'Mata', 'pranandito@student.ub.ac.id', '-'), +(802, 'Heavin Rakhmat Saintika', 'PPDS', 'Mata', 'heavinrs@student.ub.ac.id', '-'), +(803, 'Arsita Keumaladewi', 'PPDS', 'Mata', 'arsita19@student.ub.ac.id', '-'), +(804, 'Edwin Damar Prabowo', 'PPDS', 'Mata', 'damaredwin@student.ub.ac.id', '-'), +(805, 'Ariyoga Kun Laksono', 'PPDS', 'Mata', 'ariyogakun@student.ub.ac.id', '-'), +(806, 'Aditya Rachman', 'PPDS', 'Mata', 'rachaditya@student.ub.ac.id', '-'), +(807, 'Rofiqi Rofiq', 'PPDS', 'Mata', 'rofiqirofiq@student.ub.ac.id', '-'), +(808, 'Rizal', 'PPDS', 'Mata', 'rizalmz@student.ub.ac.id', '-'), +(809, 'Arya Putra Syuhada', 'PPDS', 'Mata', 'aryaaryaarya@student.ub.ac.id', '-'), +(810, 'Hilda Adina Eriawan', 'PPDS', 'Mata', 'hildaadina@student.ub.ac.id', '-'), +(811, 'Aisha Andriana', 'PPDS', 'Mata', 'aishaandrn@student.ub.ac.id', '-'), +(812, 'prasaundra triantoni putra', 'PPDS', 'Mata', 'prasaundra@student.ub.ac.id', '-'), +(813, 'Lanisa Hapsari', 'PPDS', 'Mata', 'lanisahapsari@student.ub.ac.id', '-'), +(814, 'Erna Yulida', 'PPDS', 'Mata', 'ernayulida@student.ub.ac.id', '-'), +(815, 'Dessy Vinoricka Andriyana', 'PPDS', 'Mata', 'dessyvinoppds@student.ub.ac.id', '-'), +(816, 'A\'ifatin Fenisya', 'PPDS', 'Mata', 'aifatinvenysya@student.ub.ac.id', '-'), +(817, 'Rastha Sasmaka', 'PPDS', 'Mata', 'sasmaka_rastha@student.ub.ac.id', '-'), +(818, 'Dyah Anisa Aprilani', 'PPDS', 'Mata', 'dyah_anisa@student.ub.ac.id', '-'), +(819, 'Ghea Ananta', 'PPDS', 'Mata', 'dokterghea@student.ub.ac.id', '-'), +(820, 'Othe Ahmad Syarifuddin', 'PPDS', 'Mata', 'otheas@student.ub.ac.id', '-'), +(821, 'Winalisa Eka Hardiyanti', 'PPDS', 'Mata', 'winalisaeka@student.ub.ac.id', '-'), +(822, 'Muhammad Ferdiansyah', 'PPDS', 'Mata', 'ferdiansanir@student.ub.ac.id', '-'), +(823, 'Muhammad Fachri Ridha Herlan', 'PPDS', 'Mata', 'fachriridha@student.ub.ac.id', '-'), +(824, 'Farisa Shauma Fachir', 'PPDS', 'Mata', 'farisafachir@student.ub.ac.id', '-'), +(825, 'Muhammad Aulia', 'PPDS', 'Mata', 'mhdaulia@student.ub.ac.id', '-'), +(826, 'Santi Febrianti', 'PPDS', 'Mata', 'santifebrianti@student.ub.ac.id', '-'), +(827, 'Muhammad Fathan Rasyid Al Faruqi', 'PPDS', 'Mata', 'fathannisa2112@student.ub.ac.id', '-'), +(828, 'Ifada Hariani Kusuma', 'PPDS', 'Mata', 'ifadahariani@student.ub.ac.id', '-'), +(829, 'Eka apriani lubis', 'PPDS', 'Mata', 'ekalubis04@student.ub.ac.id', '-'), +(830, 'Mohammad Alif Azizi', 'PPDS', 'Mata', 'm_alif@student.ub.ac.id', '-'), +(831, 'Putry Adenia Bahar', 'PPDS', 'Mata', 'adeniabahar@student.ub.ac.id', '-'), +(832, 'Fatina Qonita', 'PPDS', 'Mata', 'fatinaqonita@student.ub.ac.id', '-'), +(833, 'Yudha Kusuma Dwiatmaja', 'PPDS', 'Mata', 'yudhadwiatmaja@student.ub.ac.id', '-'), +(834, 'Nadia Dessi Quartantri', 'PPDS', 'Mata', 'nadiaquartantri@student.ub.ac.id', '-'), +(835, 'Hanifah Arani', 'PPDS', 'Mata', 'aranihanifah@student.ub.ac.id', '-'), +(836, 'Dina Aqmarina Dalilati', 'PPDS', 'Mata', 'dinaqmarinad@student.ub.ac.id', '-'), +(837, 'Dwi Arif Wahyu Wibowo', 'PPDS', 'Mata', 'dwiarifww@student.ub.ac.id', '-'), +(838, 'Gusti Rajendra Yoga Pratama', 'PPDS', 'Mata', 'rajendragusti97@student.ub.ac.id', '-'), +(839, 'Fauzi Abdillah', 'PPDS', 'Mata', 'fauziabdillah@student.ub.ac.id', '-'), +(840, 'Baskoro Hariadi', 'PPDS', 'Mata', 'baskoromata@student.ub.ac.id', '-'), +(841, 'Shofia Medina Samara', 'PPDS', 'Mata', 'shofiamedina@student.ub.ac.id', '-'), +(842, 'Gustavita Maria Bandong', 'PPDS', 'Mata', 'gustavita@student.ub.ac.id', '-'), +(843, 'Mahda Faisal Waber', 'PPDS', 'Mata', 'mahdafw@student.ub.ac.id', '-'), +(844, 'NABILA FAUZIAH', 'PPDS', 'Mata', 'nabilafzh@student.ub.ac.id', '-'), +(845, 'Nisrina Amalia Rohimah', 'PPDS', 'Mata', 'nisrinamaliar@student.ub.ac.id', '-'), +(846, 'Noorivana Melina Amanda', 'PPDS', 'Mata', 'noorivanamanda@student.ub.ac.id', '-'), +(847, 'Azkiya Zahra', 'PPDS', 'Mata', 'azkiya_zahra@student.ub.ac.id', '-'), +(848, 'Laksmi Muliawati', 'PPDS', 'Mata', 'drlaksmimuliaw@student.ub.ac.id', '-'), +(849, 'Denny Indra Maulana', 'PPDS', 'Mata', 'dennyindramln@student.ub.ac.id', '-'), +(850, 'Ainun Nadziroh', 'PPDS', 'Mata', 'andzrh@student.ub.ac.id', '-'), +(851, 'Fathia Azzahra', 'PPDS', 'Mata', 'fathiazzahra@student.ub.ac.id', '-'), +(852, 'Nabila Ulfayani Hanifah', 'PPDS', 'Mata', 'nblulfayani@student.ub.ac.id', '-'), +(853, 'Ego Frendy Damara', 'PPDS', 'Mata', 'egodamara@student.ub.ac.id', '-'), +(854, 'Dwi Wening Anggarini', 'PPDS', 'Mata', 'dwwening@student.ub.ac.id', '-'), +(855, 'Imam Godly Alam', 'PPDS', 'Mata', 'imamgodlyalam@student.ub.ac.id', '-'), +(856, 'Santi Dwi Cahyani', 'PPDS', 'Mata', 'santidwchyn@student.ub.ac.id', '-'), +(857, 'Nabila Astri Nur Kuntari', 'PPDS', 'Mata', 'nabilaastri01@student.ub.ac.id', '-'), +(858, 'Agus Saifudin', 'PPDS', 'Mata', 'agussaifudin@student.ub.ac.id', '-'), +(859, 'Ambhari Paramastrya Putri', 'PPDS', 'Mata', 'tryaaputri@student.ub.ac.id', '-'), +(860, 'Indra Firismanda Dermawan', 'PPDS', 'Mata', 'indrafirismanda@student.ub.ac.id', '-'), +(861, 'Yuda Pradana', 'PPDS', 'Mata', 'pradanayuda19@student.ub.ac.id', '-'), +(862, 'Naura Hasna Salsabila', 'PPDS', 'Mata', 'naurahasal@student.ub.ac.id', '-'), +(863, 'dr. Neila Raisa, Sp. S (K)', 'DPJP', 'Neurologi', 'neilaraisa@ub.ac.id', 'neilaraisa@gmail.com'), +(864, 'dr. Eko Arisetijono, Sp. S (K)', 'DPJP', 'Neurologi', 'drekoarisetijono.fk@ub.ac.id', '-'), +(865, 'dr. Rodhiyan Rakhmatiar, Sp.S (K) M. Biomed', 'DPJP', 'Neurologi', 'odhy_neuro@ub.ac.id', 'odhy.fkub03@gmail.com'), +(866, 'dr. Zamroni A, Sp. S (K)', 'DPJP', 'Neurologi', 'dr_zamroniafif@ub.ac.id', 'drzamroniafif98@gmail.com'), +(867, 'dr. Machlusil Husna, Sp. S (K)ย ', 'DPJP', 'Neurologi', 'machlusilhusna.fk@ub.ac.id', 'machlusilhusna@yahoo.com'), +(868, 'dr. Sri Budhi Rianawati, Sp. S (K)', 'DPJP', 'Neurologi', 'rien62.fk@ub.ac.id', '-'), +(869, 'Dr. dr. Shahdevi Nandar K, Sp. S (K)', 'DPJP', 'Neurologi', 'shahdevinandar@ub.ac.id', 'shahdevinandar@gmail.com'), +(870, 'dr. Catur Arisetianto, Sp. S (K)', 'DPJP', 'Neurologi', 'catur-ari@ub.ac.id', 'drcaturarisetianto@gmail.com'), +(871, 'dr. Widodo Mardi Santoso, Sp. S (K)', 'DPJP', 'Neurologi', 'widodotita.fk@ub.ac.id', '-'), +(872, 'dr. Badrul Munir, Sp. S (K)', 'DPJP', 'Neurologi', 'badroel2007@ub.ac.id', 'badroel2007@yahoo.com'), +(873, 'dr. Dessika Rahmawati, Sp. S (K)', 'DPJP', 'Neurologi', 'dessikasps@ub.ac.id', 'Dessika_dr@yahoo.com'), +(874, 'dr. Ria Damayanti, M.Biomed, Sp.S(K)', 'DPJP', 'Neurologi', 'dr.riadamayanti@ub.ac.id', 'dr.riadamayanti@yahoo.com'), +(875, 'dr. Adecya Amaryllis Risa Putri, Sp.N', 'DPJP', 'Neurologi', '-', 'adecyaamaryllis@gmail.com'), +(876, 'Dr. dr. Rini Andriani, Sp.S(K)', 'DPJP', 'Neurologi', '-', 'andrianirini13@yahoo.com'), +(877, 'dr. Wahyuni Ramadhani Suaib', 'PPDS', 'Neurologi', 'wandasuaib@student.ub.ac.id', '-'), +(878, 'Bisma Dewanto Ari Prabowo', 'PPDS', 'Neurologi', 'bismadewanto@student.ub.ac.id', '-'), +(879, 'Ausi Mutiara Dwi Atri', 'PPDS', 'Neurologi', 'ausidwiatri2021@student.ub.ac.id', '-'), +(880, 'Adeliza Firzarosany Insanitaqwa', 'PPDS', 'Neurologi', 'adeliza@student.ub.ac.id', '-'), +(881, 'Angga Pratama', 'PPDS', 'Neurologi', 'anggapfkub07@student.ub.ac.id', '-'), +(882, 'Wa Ode Nur Intan Octina', 'PPDS', 'Neurologi', 'wdnurintanoct@student.ub.ac.id', '-'), +(883, 'dr. Fatma Rahmalia Izzati', 'PPDS', 'Neurologi', 'fatmaneuro@student.ub.ac.id', '-'), +(884, 'Miranthi Ayu Irnanda', 'PPDS', 'Neurologi', 'miranthiayui@student.ub.ac.id', '-'), +(885, 'AISYIYAH ALVIANA AGUSTIN', 'PPDS', 'Neurologi', 'aisyiyahalviana@student.ub.ac.id', '-'), +(886, 'Ahmad Abdul Hadiy Az-zakiy', 'PPDS', 'Neurologi', 'hadhyaz@student.ub.ac.id', '-'), +(887, 'Enggar Gumelar', 'PPDS', 'Neurologi', 'enggargumelar@student.ub.ac.id', '-'), +(888, 'dr.M.Effendy Nugraha Hasibuan', 'PPDS', 'Neurologi', 'fendy19991@student.ub.ac.id', '-'), +(889, 'Ananto Suar Bhakti Ibrahim', 'PPDS', 'Neurologi', 'anantosbi@student.ub.ac.id', '-'), +(890, 'Dody Riandono', 'PPDS', 'Neurologi', 'dodyriandono@student.ub.ac.id', '-'), +(891, 'Shelby Amrus Ernanda', 'PPDS', 'Neurologi', 'shelbyernanda@student.ub.ac.id', '-'), +(892, 'Merika Soraya', 'PPDS', 'Neurologi', 'merikasoraya@student.ub.ac.id', '-'), +(893, 'Annisa Rahma', 'PPDS', 'Neurologi', 'nisaxrahma@student.ub.ac.id', '-'), +(894, 'Ditaris Galih Iman', 'PPDS', 'Neurologi', 'ditaris@student.ub.ac.id', '-'), +(895, 'Nada Yuliandha', 'PPDS', 'Neurologi', 'yuliandhanay@student.ub.ac.id', '-'), +(896, 'Setia Budi Tjendra', 'PPDS', 'Neurologi', 'setiabudi@student.ub.ac.id', '-'), +(897, 'WAHYU DWIRIMA KARTIKA SARI', 'PPDS', 'Neurologi', 'wahyudwirimaks@student.ub.ac.id', '-'), +(898, 'Nur Amalia Permatasari', 'PPDS', 'Neurologi', 'permatamalia14@student.ub.ac.id', '-'), +(899, 'Ahmad Maulana Puta', 'PPDS', 'Neurologi', 'maulanaputa@student.ub.ac.id', '-'), +(900, 'Lalu Muhammad Nuh', 'PPDS', 'Neurologi', 'mrgenooeh3@student.ub.ac.id', '-'), +(901, 'Dyah Ayu Kurniasari', 'PPDS', 'Neurologi', 'd_ayukurniasari@student.ub.ac.id', '-'), +(902, 'SETIYAWAN NURBIANTARA', 'PPDS', 'Neurologi', 'nurbiataralife@student.ub.ac.id', '-'), +(903, 'Wayan Agus Candra Swastika', 'PPDS', 'Neurologi', 'candraswas@student.ub.ac.id', '-'), +(904, 'Senoadji Pratama', 'PPDS', 'Neurologi', 'senoadjipratama@student.ub.ac.id', '-'), +(905, 'Sari Dianita Purnama', 'PPDS', 'Neurologi', 'purnamasari@student.ub.ac.id', '-'), +(906, 'Galang Mahasin Muhammad', 'PPDS', 'Neurologi', 'galangmuhammad@student.ub.ac.id', '-'), +(907, 'Febrina Friscilia', 'PPDS', 'Neurologi', 'febrina1@student.ub.ac.id', '-'), +(908, 'Firda Aunidiah Putri', 'PPDS', 'Neurologi', 'firdaaunidiah20@student.ub.ac.id', '-'), +(909, 'allyssa rahmaditta', 'PPDS', 'Neurologi', 'allyssarahma@student.ub.ac.id', '-'), +(910, 'Arvidareyna Panca Aprilianingtyas', 'PPDS', 'Neurologi', 'arvidareyna@student.ub.ac.id', '-'), +(911, 'Bima Perwirayuda', 'PPDS', 'Neurologi', 'bimaperwirayuda@student.ub.ac.id', '-'), +(912, 'KANIA AVIANDI SAVITRI', 'PPDS', 'Neurologi', 'kania_aviandis@student.ub.ac.id', '-'), +(913, 'Masyalia Hasna Taqiyyah', 'PPDS', 'Neurologi', 'masyaliahasna@student.ub.ac.id', '-'), +(914, 'Rahma Lutfiana Yaktiani', 'PPDS', 'Neurologi', 'rahmayaktiani@student.ub.ac.id', '-'), +(915, 'dr. Alfiani Rosyida Arisanti', 'PPDS', 'Neurologi', 'alfiani1212@student.ub.ac.id', '-'), +(916, 'Vany Matasak', 'PPDS', 'Neurologi', 'vanymatasak@student.ub.ac.id', '-'), +(917, 'Muhammad Dhiya Rahadian', 'PPDS', 'Neurologi', 'm_dhiyarahadian@student.ub.ac.id', '-'), +(918, 'Yosefin Joenadi', 'PPDS', 'Neurologi', 'yosefin_joenadi@student.ub.ac.id', '-'), +(919, 'Elsye Margareth Pattiasina', 'PPDS', 'Neurologi', 'elsyemargareth@student.ub.ac.id', '-'), +(920, 'Muhammad Rifqy Romadhoni', 'PPDS', 'Neurologi', 'mrifqyromadhoni@student.ub.ac.id', '-'), +(921, 'Muhammad Unzila Rafsi Zulfikri', 'PPDS', 'Neurologi', 'unzila_rafsi@student.ub.ac.id', '-'), +(922, 'Rangsang Bagus Prabowo', 'PPDS', 'Neurologi', 'rangsangbagus@student.ub.ac.id', '-'), +(923, 'Rosmala Lamaira', 'PPDS', 'Neurologi', 'rosmalalamaira@student.ub.ac.id', '-'), +(924, 'Nadya Marsella BR Simanungkalit', 'PPDS', 'Neurologi', 'nadya_kalit@student.ub.ac.id', '-'), +(925, 'Dr.dr. Tatit Nurseta, Sp.OG (K)ย ', 'DPJP', 'Obsgyn', 'tns_obg.fk@ub.ac.id', 'tatitnurseta@gmail.com'), +(926, 'dr. Yahya Irwanto, Sp.OG (K)', 'DPJP', 'Obsgyn', 'yahyairwanto50@ub.ac.id', 'yahyairwanto50@gmail.com'), +(927, 'Dr.dr. I Wayan Arsana Wiyasa, Sp.OG (K)ย ', 'DPJP', 'Obsgyn', 'arSp.OG.fk@ub.ac.id', 'arsanawiyasa@gmail.com'), +(928, 'dr. Pande Made Dwi Jayasa, Sp.OG (K)ย ', 'DPJP', 'Obsgyn', 'pmd_obg.fk@ub.ac.id', 'dr.pandemlg@yahoo.com'), +(929, 'dr. Sutrisno, Sp.OG (K)', 'DPJP', 'Obsgyn', 'snoSp.OG.fk@ub.ac.id', 'snoSp.OGk@gmail.com'), +(930, 'dr. Hermawan Wibisono, Sp.OG (K)PhD', 'DPJP', 'Obsgyn', 'sonspog.fk@ub.ac.id', '-'), +(931, 'Dr. dr. Bambang Rahardjo, Sp.OG (K)', 'DPJP', 'Obsgyn', 'bar_obg.fk@ub.ac.id', 'bar_feto@yahoo.com'), +(932, 'Dr. dr. Nugrahanti Prasetyorini, Sp.OG (K)ย ', 'DPJP', 'Obsgyn', 'nuke_obg.fk@ub.ac.id', 'nuke_obg@yahoo.com'), +(933, 'dr. Mukhamad Nooryanto, Sp.OG (K)', 'DPJP', 'Obsgyn', 'mor_feto.fk@ub.ac.id', 'morSp.OG@gmail.com'), +(934, 'dr. Suheni Ninik Hariyati, Sp.OG', 'DPJP', 'Obsgyn', 'suheni.fk@ub.ac.id', '-'), +(935, 'dr. Anggia Prameswari, Sp. OG', 'DPJP', 'Obsgyn', '-', 'anggiaprameswari910@gmail.com'), +(936, 'Dr. dr. Edi Mustofa, Sp.OG (K)', 'DPJP', 'Obsgyn', '-', 'edy.mustofa.obgynsos@gmail.com'), +(937, 'DR. dr. Rahajeng, Sp. OG (K)ย ', 'DPJP', 'Obsgyn', 'rahajeng.fk@ub.ac.id', 'jen_urogyn@yahoo.co.id'), +(938, 'dr. Rudi Priyo Utomo, Sp.OG', 'DPJP', 'Obsgyn', '-', 'rugia84@gmail.com'), +(939, 'Dr. dr. I Wayan Agung Indrawan, Sp.OG(K)', 'DPJP', 'Obsgyn', 'dr_iwa.fk@ub.ac.id', 'wayanagung.wa@gmail.com'), +(940, 'dr. Adityo Prabowo, Sp.OG, M.Ked.Klin', 'DPJP', 'Obsgyn', 'adityoprabowo@ub.ac.id', '-'), +(941, 'dr. Arghya Wicaksana, Sp.OG.', 'DPJP', 'Obsgyn', 'arghya@ub.ac.id', '-'), +(942, 'dr. Cholid Rohman Riskianto, Sp.OG', 'DPJP', 'Obsgyn', '-', 'cholidrochman@gmail.com'), +(943, 'dr. Irfani Baihaqi, Sp.OG', 'DPJP', 'Obsgyn', '-', 'irfanibaihaqiSp.OG@gmail.com'), +(944, 'dr. Eka Nasrur Maulana, Sp.OG', 'DPJP', 'Obsgyn', '-', 'rur.obgyn@gmail.com'), +(945, 'dr. Fatmasari Perdana Menur, Sp.OG', 'DPJP', 'Obsgyn', '-', 'doc.pm84@gmail.com'), +(946, 'dr. Nirmala Gina Prabawati, Sp.OG', 'DPJP', 'Obsgyn', '-', 'prabawati.gina@gmail.com'), +(947, 'dr. Onni Dwi Arianto, Sp.OG', 'DPJP', 'Obsgyn', '-', 'onnidwiarianto@gmail.com'), +(948, 'dr. Puspita Handayani, Sp.OG(K)', 'DPJP', 'Obsgyn', '-', 'puspitaobg26@gmail.com'), +(949, 'dr. Roni Subrata, Sp.OG', 'DPJP', 'Obsgyn', '-', 'dr.ronisubrata03@gmail.com'), +(950, 'dr. Teguh Wiyono, Sp.OG', 'DPJP', 'Obsgyn', '-', 'teguhwiyonobgyn@gmail.com'), +(951, 'dr. Handi Firmansyah, Sp.OG, M.Ked.Klin', 'DPJP', 'Obsgyn', '-', 'handifirmansyah83@gmail.com'), +(952, 'dr. Dhian Eka Putri Harnandari, Sp.OG', 'DPJP', 'Obsgyn', '-', 'dhianeka.dr@gmail.com'), +(953, 'dr. Aditya Fendi Uji Pamungkas, Sp.OG', 'DPJP', 'Obsgyn', '-', 'aremaniadoctor@gmail.com'), +(954, 'dr. Mulyo Hadi Wibowo, Sp.OG', 'DPJP', 'Obsgyn', '-', 'mulyohadiwibowo@gmail.com'), +(955, 'dr. Adin Yan Permana, Sp.OG', 'DPJP', 'Obsgyn', '-', '13adinyanpermana@gmail.com'), +(956, 'dr. Mochamad Putro Argo, Sp.OG', 'DPJP', 'Obsgyn', '-', 'dr.putraargo@gmail.com'), +(957, 'dr. Margaretha Claudhya Febryanna, Sp.OG, M.Ked.Klin', 'DPJP', 'Obsgyn', '-', 'dr.mcfebryanna@gmail.com'), +(958, 'dr. Faiza Fardha Auliya', 'PPDS', 'Obsgyn', 'faizafardha@student.ub.ac.id', '-'), +(959, 'Tendri Ayu Putri Kahar', 'PPDS', 'Obsgyn', 'tendriayu@student.ub.ac.id', '-'), +(960, 'Geneung Patridina', 'PPDS', 'Obsgyn', 'gpatridina@student.ub.ac.id', '-'), +(961, 'Heristanto', 'PPDS', 'Obsgyn', 'heristanto@student.ub.ac.id', '-'), +(962, 'Yohanes Adam Elsoin', 'PPDS', 'Obsgyn', 'elsoinyohanes@student.ub.ac.id', '-'), +(963, 'Harry Dwi Pratama', 'PPDS', 'Obsgyn', 'harryoct91@student.ub.ac.id', '-'), +(964, 'Atika Sugiarto', 'PPDS', 'Obsgyn', 'atikasugiarto@student.ub.ac.id', '-'), +(965, 'Annisa Adhania Rusfandi', 'PPDS', 'Obsgyn', 'annisarusfandi@student.ub.ac.id', '-'), +(966, 'Rivi Darmawan', 'PPDS', 'Obsgyn', 'rividarm3896@student.ub.ac.id', '-'), +(967, 'Chynthea Paramitha Dewi', 'PPDS', 'Obsgyn', 'chyntheapd@student.ub.ac.id', '-'), +(968, 'Fathi Nabila Alim', 'PPDS', 'Obsgyn', 'fathinabila@student.ub.ac.id', '-'), +(969, 'Febie Putra Suwana', 'PPDS', 'Obsgyn', 'febieputra@student.ub.ac.id', '-'), +(970, 'setio leksono', 'PPDS', 'Obsgyn', 'setioleksonotyo@student.ub.ac.id', '-'), +(971, 'Ripandi Yuspa', 'PPDS', 'Obsgyn', 'ripandiyuspa@student.ub.ac.id', '-'), +(972, 'dr. UMAR GUNARSA SUKANDAR', 'PPDS', 'Obsgyn', 'gunarsaunibraw@student.ub.ac.id', '-'), +(973, 'Rizki Wahyuni', 'PPDS', 'Obsgyn', 'kikiwahyuni91@student.ub.ac.id', '-'), +(974, 'Rosalia Purbandari', 'PPDS', 'Obsgyn', 'rosapurbandari@student.ub.ac.id', '-'), +(975, 'dr. Wulandari', 'PPDS', 'Obsgyn', 'wulanobg@student.ub.ac.id', '-'), +(976, 'Sakinah', 'PPDS', 'Obsgyn', 'sasawandira@student.ub.ac.id', '-'), +(977, 'Qonita Prasta Agustia', 'PPDS', 'Obsgyn', 'qonitaprasta@student.ub.ac.id', '-'), +(978, 'LIDYA DANIATI', 'PPDS', 'Obsgyn', 'lidyaniljuli22@student.ub.ac.id', '-'), +(979, 'Leny Silviana Farida', 'PPDS', 'Obsgyn', 'lenysfarida@student.ub.ac.id', '-'), +(980, 'Ferdinand Umbu Pati', 'PPDS', 'Obsgyn', 'ferdinandumbu@student.ub.ac.id', '-'), +(981, 'Angga Dominius', 'PPDS', 'Obsgyn', 'anggadominius@student.ub.ac.id', '-'), +(982, 'Yuli Ayu Diani', 'PPDS', 'Obsgyn', 'yuliayudiani@student.ub.ac.id', '-'), +(983, 'Theresia Citra Mila Mesa', 'PPDS', 'Obsgyn', 'theresiacitra@student.ub.ac.id', '-'), +(984, 'Wredi Angganingrum', 'PPDS', 'Obsgyn', 'wredianingrum@student.ub.ac.id', '-'), +(985, 'Wenny Yolanda', 'PPDS', 'Obsgyn', 'wennyyolanda@student.ub.ac.id', '-'), +(986, 'raizsa rusmiathie noor', 'PPDS', 'Obsgyn', 'raizsarum94@student.ub.ac.id', '-'), +(987, 'Yohanes Rico Nurhaeni', 'PPDS', 'Obsgyn', 'yoohanesricoo@student.ub.ac.id', '-'), +(988, 'Rahmawati Abdul Hakim', 'PPDS', 'Obsgyn', 'rahmatya@student.ub.ac.id', '-'), +(989, 'Aulia Astari', 'PPDS', 'Obsgyn', 'astariaulia@student.ub.ac.id', '-'), +(990, 'Muhammad Aris Indrawan', 'PPDS', 'Obsgyn', 'arisindrawan@student.ub.ac.id', '-'), +(991, 'ANDREAS TEDI SURYANTA KARO - KARO', 'PPDS', 'Obsgyn', 'andreastedi@student.ub.ac.id', '-'), +(992, 'Rony Sibuea', 'PPDS', 'Obsgyn', 'drronysibuea@student.ub.ac.id', '-'), +(993, 'Maria Grace Tania', 'PPDS', 'Obsgyn', 'mariagtania@student.ub.ac.id', '-'), +(994, 'Maria Kurniati Susan Endang Dangur', 'PPDS', 'Obsgyn', 'mariappdsog@student.ub.ac.id', '-'), +(995, 'Yustia Ika Wardhani', 'PPDS', 'Obsgyn', 'yustiaikaw@student.ub.ac.id', '-'), +(996, 'Siti Meiliza', 'PPDS', 'Obsgyn', 'sitimeiliza@student.ub.ac.id', '-'), +(997, 'Deo Apringga Ayu Nanta', 'PPDS', 'Obsgyn', 'dapringga@student.ub.ac.id', '-'), +(998, 'USWAH HASANAH', 'PPDS', 'Obsgyn', 'uswahasanaah@student.ub.ac.id', '-'), +(999, 'Gorby Arvin Lillo', 'PPDS', 'Obsgyn', 'gorbyppdsog@student.ub.ac.id', '-'), +(1000, 'Fania Rachmadani', 'PPDS', 'Obsgyn', 'faniappdsog@student.ub.ac.id', '-'), +(1001, 'Malaura Elfrida Simarmata', 'PPDS', 'Obsgyn', 'malaura@student.ub.ac.id', '-'), +(1002, 'Elviara Martha Tinova Suprapto', 'PPDS', 'Obsgyn', 'elviaratinova@student.ub.ac.id', '-'), +(1003, 'Ngakan Gde Arya Ratmaja putra', 'PPDS', 'Obsgyn', 'aryakrp30@student.ub.ac.id', '-'), +(1004, 'Giovanny Azalia Gunawan', 'PPDS', 'Obsgyn', 'giogunawan@student.ub.ac.id', '-'), +(1005, 'Latania Naufa Arinugraha', 'PPDS', 'Obsgyn', 'latanianaufaa@student.ub.ac.id', '-'), +(1006, 'Siluh Putu Chinintya Vania Saraswati', 'PPDS', 'Obsgyn', 'vaniasaraswati1@student.ub.ac.id', '-'), +(1007, 'MUJI SUTRISNO', 'PPDS', 'Obsgyn', 'mujisutrisno@student.ub.ac.id', '-'), +(1008, 'Lucky Riadi', 'PPDS', 'Obsgyn', 'luckyriadi@student.ub.ac.id', '-'), +(1009, 'Ellenora Resti Mustikaningrat', 'PPDS', 'Obsgyn', 'ellenoresti@student.ub.ac.id', '-'), +(1010, 'Febrinda Esti Syafitri', 'PPDS', 'Obsgyn', 'ben_resog25@student.ub.ac.id', '-'), +(1011, 'Azmiyah Febri Pramawardani', 'PPDS', 'Obsgyn', 'faz_resog25@student.ub.ac.id', '-'), +(1012, 'Rizal Adhi Kurniawan', 'PPDS', 'Obsgyn', 'ran_resog25@student.ub.ac.id', '-'), +(1013, 'ZAKIYAH ZULFA', 'PPDS', 'Obsgyn', 'haz_resog25@student.ub.ac.id', '-'), +(1014, 'Dhea Sofiana Mellazulfa', 'PPDS', 'Obsgyn', 'dif_resog25@student.ub.ac.id', '-'), +(1015, 'dr.Thomas Erwin CJ Huwae, Sp.OT (K)', 'DPJP', 'Orthopaedi', 'huwaethomas@ub.ac.id', 'huwaethomas@yahoo.com\nthomashuwae89@yahoo.com'), +(1016, 'dr.Agung Riyanto Budi Santoso, Sp.OT (K)', 'DPJP', 'Orthopaedi', 'agung_riyanto@ub.ac.id', 'choisiee@yahoo.com'), +(1017, 'dr.Istan Irmansyah Irsan, Sp.OT (K)ย ', 'DPJP', 'Orthopaedi', 'istan_irmansyah@ub.ac.id', 'istan_irmansyah@yahoo.com'), +(1018, 'dr.Satria Pandu Persada Isma, Sp.OT (K)', 'DPJP', 'Orthopaedi', 'percyisma@ub.ac.id', 'percyisma@yahoo.com'), +(1019, 'dr.Syaifullah Asmiragani, Sp.OT (K)ย ', 'DPJP', 'Orthopaedi', 'syaifullahag@ub.ac.id', 'syaifullahag@yahoo.com'), +(1020, 'dr.Andhika Yudistira, Sp.OT (K)', 'DPJP', 'Orthopaedi', 'andhika.yudhistira@ub.ac.id', 'andhika.yudistira@ymail.com'), +(1021, 'dr. Ery Satriawan, Sp. OT', 'DPJP', 'Orthopaedi', '-', 'ery.satriawan8487@gmail.com'), +(1022, 'Dr.dr.Edi Mustamsir, Sp.OT (K)ย ', 'DPJP', 'Orthopaedi', 'edimustamsir@ub.ac.id', 'edimustamsir@yahoo.co.id'), +(1023, 'dr.Krisna Yuarno Patama, Sp.OT (K)', 'DPJP', 'Orthopaedi', 'krisnayuarno@ub.ac.id', 'krisnayuarno@gmail.com'), +(1024, 'dr.Ananto Satya Pradana Drajat, Sp.OT', 'DPJP', 'Orthopaedi', 'satyapradana88@ub.ac.id', 'satyapradana88@gmail.com'), +(1025, 'Prof.Dr.dr.Respati S. Dradjat, Sp.OT (K)ย ', 'DPJP', 'Orthopaedi', 'respatisdradjat@ub.ac.id', 'respatisdradjat@yahoo.com'), +(1026, 'dr.Panji Sananta, M.Ked, Sp.OT (K)', 'DPJP', 'Orthopaedi', 'panjisananta@ub.ac.id', 'panjipst@gmail.com\np_sananta@yahoo.com'), +(1027, 'dr. Domy Pradana Putra, Sp.OT', 'DPJP', 'Orthopaedi', 'domy_pradana@ub.ac.id', '-'), +(1028, 'dr. Adhi Satriyo Utomo, Sp.OT.', 'DPJP', 'Orthopaedi', 'sam.ortho@ub.ac.id', '-'), +(1029, 'dr. Rakhmad Aditya Hernawan, Sp.OT.', 'DPJP', 'Orthopaedi', 'aditflea@ub.ac.id', '-'), +(1030, 'dr. Indo Rizki Pramulia, Sp.OT', 'DPJP', 'Orthopaedi', '-', 'indorizki27@gmail.com dan dr.indorizki@yahoo.com'), +(1031, 'dr. Arianto Prabowo, Sp.OT', 'DPJP', 'Orthopaedi', '-', 'dr_hernandez82@yahoo.com'), +(1032, 'dr. Brian Dhananjaya, Sp.OT', 'DPJP', 'Orthopaedi', '-', 'briandhananjaya@gmail.com'), +(1033, 'dr. Broto Suwadji, Sp.OT', 'DPJP', 'Orthopaedi', '-', 'dokterbroto@yahoo.com'), +(1034, 'dr. Hamzah, Sp.OT', 'DPJP', 'Orthopaedi', '-', 'hmz.jfr33@gmail.com'), +(1035, 'dr. Johan Bastian, Sp.OT', 'DPJP', 'Orthopaedi', '-', 'joerafrizal@yahoo.co.id'), +(1036, 'dr. Mujiyono, Sp.OT(K)', 'DPJP', 'Orthopaedi', '-', 'iyon9882@gmail.com'), +(1037, 'dr. R. Satriyo Aji, Sp.OT(K)', 'DPJP', 'Orthopaedi', '-', 'satriyo.ortho73@gmail.com'), +(1038, 'dr. Rangga Arieza Fachlevi, M.Kes, Sp.OT', 'DPJP', 'Orthopaedi', '-', 'ranggaarieza@gmail.com'), +(1039, 'Prof. Dr. dr. Mohamad Hidajat, Sp.B, Sp.OT(K)', 'DPJP', 'Orthopaedi', '-', 'm_hidayat@ub.ac.id'), +(1040, 'dr. Donny Noerhadiono C., Sp.OT(K) Spine', 'DPJP', 'Orthopaedi', '-', 'donnynoerhadiono@gmail.com'), +(1041, 'dr. Dandy Drestanto Adiwignyo, SpOT', 'DPJP', 'Orthopaedi', '-', '-'), +(1042, 'dr. Anindita Eka Pramana Wijaya, SpOT', 'DPJP', 'Orthopaedi', '-', '-'), +(1043, 'Faiz Alam Rasyid', 'PPDS', 'Orthopaedi', 'faizalamrasyid@student.ub.ac.id', '-'), +(1044, 'MUCHAMMAD BAGUS ALI HASMI', 'PPDS', 'Orthopaedi', 'mbagusalihasmi@student.ub.ac.id', '-'), +(1045, 'William Putera Sukmajaya', 'PPDS', 'Orthopaedi', 'williampsky@student.ub.ac.id', '-'), +(1046, 'Ade Churie Tanjaya', 'PPDS', 'Orthopaedi', 'adechurie90@student.ub.ac.id', '-'), +(1047, 'Teddy Arga Saputro', 'PPDS', 'Orthopaedi', 'teddyarga@student.ub.ac.id', '-'), +(1048, 'Ray Asaf Hexa Pandiangan', 'PPDS', 'Orthopaedi', 'asafortho@student.ub.ac.id', '-'), +(1049, 'Surya Iman Muhammad', 'PPDS', 'Orthopaedi', 'suryaiman@student.ub.ac.id', '-'), +(1050, 'Muhammad Alif Rio Yudhatama', 'PPDS', 'Orthopaedi', 'rioalif30@student.ub.ac.id', '-'), +(1051, 'Andryan Hanafi Bakri', 'PPDS', 'Orthopaedi', 'andryanh07@student.ub.ac.id', '-'), +(1052, 'Felix Cendikiawan', 'PPDS', 'Orthopaedi', 'felixc@student.ub.ac.id', '-'), +(1053, 'Andika Ghifari', 'PPDS', 'Orthopaedi', 'andikaghifari@student.ub.ac.id', '-'), +(1054, 'Mochamad Febryan Kevien Fadrijanto', 'PPDS', 'Orthopaedi', 'febryankevienn@student.ub.ac.id', '-'), +(1055, 'Belinda Azhari Siswanto', 'PPDS', 'Orthopaedi', 'belindasiswanto@student.ub.ac.id', '-'), +(1056, 'Muhammad Alwy Sugiarto', 'PPDS', 'Orthopaedi', 'alwysugiarto@student.ub.ac.id', '-'), +(1057, 'Darmawan Darkim', 'PPDS', 'Orthopaedi', 'darmawandarkim@student.ub.ac.id', '-'), +(1058, 'Annas Abdurrahman Asmiragani', 'PPDS', 'Orthopaedi', 'annasasmiragani@student.ub.ac.id', '-'), +(1059, 'Ahmad Muhsinin', 'PPDS', 'Orthopaedi', 'ahmadmuhsinin@student.ub.ac.id', '-'), +(1060, 'Muhammad Abduh', 'PPDS', 'Orthopaedi', 'muhammadabduh@student.ub.ac.id', '-'), +(1061, 'Lasa Dhakka Siahaan', 'PPDS', 'Orthopaedi', 'lasasiahaan@student.ub.ac.id', '-'), +(1062, 'Yudha Anantha Khaerul Putra', 'PPDS', 'Orthopaedi', 'yudhaananthakp@student.ub.ac.id', '-'), +(1063, 'Abraham Emes', 'PPDS', 'Orthopaedi', 'abrahamemes@student.ub.ac.id', '-'), +(1064, 'Albert Renard Soedianto', 'PPDS', 'Orthopaedi', 'renardsudianto@student.ub.ac.id', '-'), +(1065, 'dr. Milda Agniasari', 'PPDS', 'Orthopaedi', 'mildaagniasari@student.ub.ac.id', '-'), +(1066, 'DAYLAN OSCAR HERMAWAN', 'PPDS', 'Orthopaedi', 'daylanoscar@student.ub.ac.id', '-'), +(1067, 'Raymond Pangestu Halim', 'PPDS', 'Orthopaedi', 'raymondphalim@student.ub.ac.id', '-'), +(1068, 'Dwilan Achmad Fauzan', 'PPDS', 'Orthopaedi', 'dwilanachmad@student.ub.ac.id', '-'), +(1069, 'Rizaldi Mahardika Rachman', 'PPDS', 'Orthopaedi', 'aldimahardika@student.ub.ac.id', '-'), +(1070, 'Septabian Iskandar', 'PPDS', 'Orthopaedi', 'septabian@student.ub.ac.id', '-'), +(1071, 'Dani Pratama Febrianto', 'PPDS', 'Orthopaedi', 'danipratama4@student.ub.ac.id', '-'), +(1072, 'Aulia Pandu Aji', 'PPDS', 'Orthopaedi', 'panduaji@student.ub.ac.id', '-'), +(1073, 'Firman Emir Faizal Gani', 'PPDS', 'Orthopaedi', 'firmvn@student.ub.ac.id', '-'), +(1074, 'Christopher Daniel Halomoan', 'PPDS', 'Orthopaedi', 'tanjungchris@student.ub.ac.id', '-'), +(1075, 'Ali Rifqi Alkaff', 'PPDS', 'Orthopaedi', 'alirifqia@student.ub.ac.id', '-'), +(1076, 'Andri Arieska Wicaksana', 'PPDS', 'Orthopaedi', 'adrasna@student.ub.ac.id', '-'), +(1077, 'Fandy Setiawan', 'PPDS', 'Orthopaedi', 'fandyortho@student.ub.ac.id', '-'), +(1078, 'Mardlathillah Muhammad Asyhuri', 'PPDS', 'Orthopaedi', 'mardlathillah@student.ub.ac.id', '-'), +(1079, 'Erwin Alexander Pasaribu', 'PPDS', 'Orthopaedi', 'erwinap11ot@student.ub.ac.id', '-'), +(1080, 'Bima Mahardhika Aji', 'PPDS', 'Orthopaedi', 'bimaortho@student.ub.ac.id', '-'), +(1081, 'Wintang Dayinta Tanaya Hutami', 'PPDS', 'Orthopaedi', 'hutamiwintang@student.ub.ac.id', '-'), +(1082, 'Djati Herlambang', 'PPDS', 'Orthopaedi', 'djatiherlambang@student.ub.ac.id', '-'), +(1083, 'Felix Giovanni Hartono', 'PPDS', 'Orthopaedi', 'felixgiovahart@student.ub.ac.id', '-'), +(1084, 'Abdillah Budi Ksatria', 'PPDS', 'Orthopaedi', 'abdillahksatria@student.ub.ac.id', '-'), +(1085, 'Made Widhia Laksamana Putra', 'PPDS', 'Orthopaedi', 'madewidhiamd@student.ub.ac.id', '-'), +(1086, 'dr. Moh. Rifqi fathoni', 'PPDS', 'Orthopaedi', 'rifqifathoni@student.ub.ac.id', '-'), +(1087, 'ROBBY LAUREN.K', 'PPDS', 'Orthopaedi', 'robbylk97@student.ub.ac.id', '-'), +(1088, 'Alexander Fernando', 'PPDS', 'Orthopaedi', 'alxfrndortho@student.ub.ac.id', '-'), +(1089, 'Barnard M. Syaifudin', 'PPDS', 'Orthopaedi', 'barnardmi6@student.ub.ac.id', '-'), +(1090, 'Dr. dr. Susanthy Dj, Sp.P (K)ย ', 'DPJP', 'Paru', 'susanthy@ub.ac.id', 'susanthydj@gmail.com\nbimodj@yahoo.com'), +(1091, 'dr. Aditya Sp.P', 'DPJP', 'Paru', '-', '-'), +(1092, 'dr. Ungky Agus Setyawan, Sp.P (K)ย ', 'DPJP', 'Paru', 'dr_ungky_paru@ub.ac.id', 'uncret_ukuk@yahoo.co.id'), +(1093, 'dr. Suryanti Dwi Pratiwi, Sp.P (K)', 'DPJP', 'Paru', 'suryanti@ub.ac.id', 'wiwinarief1975@yahoo.co.id'), +(1094, 'dr. Ngakan Putu P Putra, Sp.P (K)', 'DPJP', 'Paru', 'ngakanputu@ub.ac.id', 'putu_paru@yahoo.com'), +(1095, 'dr. Rezki Tantular, Sp.P (K)', 'DPJP', 'Paru', '-', 'tantular@gmail.com'), +(1096, 'dr. Triwahju Astuti, M.Kes, Sp.P (K)', 'DPJP', 'Paru', 'astuti@ub.ac.id', 'astutidrparu@yahoo.co.id'), +(1097, 'dr. Iin Noor Chozin, Sp.P', 'DPJP', 'Paru', 'iin@ub.ac.id', 'iinfkub@gmail.com'), +(1098, 'dr. Sastia Rakhma, Sp.P', 'DPJP', 'Paru', 'sastiarakhma@ub.ac.id', 'sastyo@gmail.com'), +(1099, 'dr. Fitri Indah Sari, Sp.P', 'DPJP', 'Paru', 'fitrindahs1705@ub.ac.id', '-'), +(1100, 'dr. Aditya Sri Listyoko, Sp.P(K)', 'DPJP', 'Paru', 'adityalistyoko@ub.ac.id', '-'), +(1101, 'Dr. dr. Jani Jane Rosihaningsih Sugiri, Sp.P(K)', 'DPJP', 'Paru', 'jani@ub.ac.id', 'yjsugiri@gmail.com'), +(1102, 'dr. Deden Permana, Sp.P', 'DPJP', 'Paru', '-', 'dr.deden80@gmail.com'), +(1103, 'dr. Yunita Eka Wati, Sp.P', 'DPJP', 'Paru', '-', 'yunitaekawati@yahoo.co.id'), +(1104, 'dr. Christian Surya Eka Putra, Sp.P', 'DPJP', 'Paru', '-', 'christsurya10@gmail.com'), +(1105, 'dr. Muhamad Yusuf Musthafa, Sp.P', 'DPJP', 'Paru', '-', 'yusuf.musthafa.ym@gmail.com'), +(1106, 'Ari Irawan', 'PPDS', 'Paru', 'ariirawan@student.ub.ac.id', '-'), +(1107, 'Andriana Adolf Nggay', 'PPDS', 'Paru', 'andriana0706@student.ub.ac.id', '-'), +(1108, 'dr. Lia Susanti', 'PPDS', 'Paru', 'liasusanti0803@student.ub.ac.id', '-'), +(1109, 'Hustorio Aliongko Simamora', 'PPDS', 'Paru', 'hustorio@student.ub.ac.id', '-'), +(1110, 'Fibrianti Ratnasari', 'PPDS', 'Paru', 'pulmofibrianti@student.ub.ac.id', '-'), +(1111, 'Rahma djamaludin', 'PPDS', 'Paru', 'rahmadjamaludin@student.ub.ac.id', '-'), +(1112, 'Fahnida Nazliah', 'PPDS', 'Paru', 'fahnidanazliah@student.ub.ac.id', '-'), +(1113, 'Abdul Malik Fajri', 'PPDS', 'Paru', 'abdulmalikfajri@student.ub.ac.id', '-'), +(1114, 'Albert Lyono', 'PPDS', 'Paru', 'albertlyono8@student.ub.ac.id', '-'), +(1115, 'Satya Setiadi', 'PPDS', 'Paru', 'satyasetiadi6@student.ub.ac.id', '-'), +(1116, 'Harini Rahadiyanti', 'PPDS', 'Paru', 'raha07dynt@student.ub.ac.id', '-'), +(1117, 'Peter Krisdiyanto', 'PPDS', 'Paru', 'peterkris@student.ub.ac.id', '-'), +(1118, 'Hendro Suryadi', 'PPDS', 'Paru', 'hendrosuryadi@student.ub.ac.id', '-'), +(1119, 'Martha Fitri Alextina Tatodi', 'PPDS', 'Paru', 'marthafitri86@student.ub.ac.id', '-'), +(1120, 'Rifka Wikamto', 'PPDS', 'Paru', 'rifkawikamto@student.ub.ac.id', '-'), +(1121, 'I Made Suardana', 'PPDS', 'Paru', 'imadesuardana@student.ub.ac.id', '-'), +(1122, 'Anggita Efipania Silambi\'', 'PPDS', 'Paru', 'anggitasilambi@student.ub.ac.id', '-'), +(1123, 'Rizky Tania Fadillah', 'PPDS', 'Paru', 'rizkytaniaf@student.ub.ac.id', '-'), +(1124, 'Dian Ayu Murti Dewi', 'PPDS', 'Paru', 'dianayumd93@student.ub.ac.id', '-'), +(1125, 'Muchammad Zamroni', 'PPDS', 'Paru', 'muchzamroni@student.ub.ac.id', '-'), +(1126, 'Nuansa Firgie Paramita', 'PPDS', 'Paru', 'nfparamitha@student.ub.ac.id', '-'), +(1127, 'Ria Christin Lumpiach', 'PPDS', 'Paru', 'riachristinn@student.ub.ac.id', '-'), +(1128, 'Gregorio Satrio Pinunggul', 'PPDS', 'Paru', 'gregoriosatrio@student.ub.ac.id', '-'), +(1129, 'Dwiroza Delfianto', 'PPDS', 'Paru', 'delfiantodwi@student.ub.ac.id', '-'), +(1130, 'Naila Ekasari', 'PPDS', 'Paru', 'nailaekasari@student.ub.ac.id', '-'), +(1131, 'Eko Dian Syafithra', 'PPDS', 'Paru', 'ekodians@student.ub.ac.id', '-'), +(1132, 'Nisa Aprilen', 'PPDS', 'Paru', 'nisaaprilen@student.ub.ac.id', '-'), +(1133, 'Achmad Amir Solichudin', 'PPDS', 'Paru', 'achmadamirs18@student.ub.ac.id', '-'), +(1134, 'NATALIA YOBEANTO', 'PPDS', 'Paru', 'nataliayobeanto@student.ub.ac.id', '-'), +(1135, 'Fransiska Nooril Firdhausi P H', 'PPDS', 'Paru', 'fransiskanooril@student.ub.ac.id', '-'), +(1136, 'Manurung Chandra Hasonangan', 'PPDS', 'Paru', 'manurungchandra@student.ub.ac.id', '-'), +(1137, 'Aditya Josua Elvon', 'PPDS', 'Paru', 'adityajosua@student.ub.ac.id', '-'), +(1138, 'As\'ad Pratama Putra', 'PPDS', 'Paru', 'asadpratamap@student.ub.ac.id', '-'), +(1139, 'Toni Alie Ngena Pinem', 'PPDS', 'Paru', 'tonipinem@student.ub.ac.id', '-'), +(1140, 'DHIMAS HANDOKO WIBISONO', 'PPDS', 'Paru', 'dhwpulmo@student.ub.ac.id', '-'), +(1141, 'Malisa Sherly Theresia Nahak', 'PPDS', 'Paru', 'malisasherly@student.ub.ac.id', '-'), +(1142, 'Annisa Ayu Asmiragani', 'PPDS', 'Paru', 'icasmiragani@student.ub.ac.id', '-'), +(1143, 'Geraldi Kusuma Wijaya', 'PPDS', 'Paru', 'geraldikusuma@student.ub.ac.id', '-'), +(1144, 'GRACE DUMA MAWARNI HUTAHAEAN', 'PPDS', 'Paru', 'gracedumamawar@student.ub.ac.id', '-'), +(1145, 'Krisdianto Putra Lainy', 'PPDS', 'Paru', 'krisdiantolainy@student.ub.ac.id', '-'), +(1146, 'Hardy Wibowo Soenarto', 'PPDS', 'Paru', 'hardywibowo@student.ub.ac.id', '-'), +(1147, 'Anthoni Rahardi Kusuma', 'PPDS', 'Paru', 'kuspulmo47@student.ub.ac.id', '-'), +(1148, 'Inda Yohana', 'PPDS', 'Paru', 'indayohanakalit@student.ub.ac.id', '-'), +(1149, 'Bobby Novian', 'PPDS', 'Paru', 'bobbynovian96@student.ub.ac.id', '-'), +(1150, 'Chaifung Carolline', 'PPDS', 'Paru', 'ccarolline@student.ub.ac.id', '-'), +(1151, 'Meike Elvana Derianty', 'PPDS', 'Paru', 'meikeelvana@student.ub.ac.id', '-'), +(1152, 'Damaris Adi Purwanti', 'PPDS', 'Paru', 'adidamaris@student.ub.ac.id', '-'); +INSERT INTO `dokter` (`ID_Dokter`, `Nama_Dokter`, `Status`, `KSM`, `Email_UB`, `Email_Pribadi`) VALUES +(1153, 'Adma Febri Mudyandono', 'PPDS', 'Paru', 'admafebri91@student.ub.ac.id', '-'), +(1154, 'Endar Wahyu Setiawan', 'PPDS', 'Paru', 'endarws@student.ub.ac.id', '-'), +(1155, 'Julisman Hasiholan Situmorang', 'PPDS', 'Paru', 'julissitumorang@student.ub.ac.id', '-'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `icd9` +-- + +CREATE TABLE `icd9` ( + `ID_ICD9` varchar(20) NOT NULL, + `Prosedur` varchar(150) DEFAULT NULL, + `Versi_ICD9` varchar(20) DEFAULT NULL +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; + +-- +-- Dumping data for table `icd9` +-- + +INSERT INTO `icd9` (`ID_ICD9`, `Prosedur`, `Versi_ICD9`) VALUES +('00', 'Procedures and interventions, Not Elsewhere Classified', 'ICD9CM_2010'), +('00.0', 'Therapeutic ultrasound', 'ICD9CM_2010'), +('00.01', 'Therapeutic ultrasound of vessels of head and neck', 'ICD9CM_2010'), +('00.02', 'Therapeutic ultrasound of heart', 'ICD9CM_2010'), +('00.03', 'Therapeutic ultrasound of peripheral vascular vessels', 'ICD9CM_2010'), +('00.09', 'Other therapeutic ultrasound', 'ICD9CM_2010'), +('00.1', 'Pharmaceuticals', 'ICD9CM_2010'), +('00.10', 'Implantation of chemotherapeutic agent', 'ICD9CM_2010'), +('00.11', 'Infusion of drotrecogin alfa (activated)', 'ICD9CM_2010'), +('00.12', 'Administration of inhaled nitric oxide', 'ICD9CM_2010'), +('00.13', 'Injection or infusion of nesiritide', 'ICD9CM_2010'), +('00.14', 'Injection or infusion of oxazolidinone class of antibiotics', 'ICD9CM_2010'), +('00.15', 'High-dose infusion interleukin-2(il-2)', 'ICD9CM_2010'), +('00.16', 'Pressurized treatment of venous bypass graft (conduit) with pharmaceutical substance', 'ICD9CM_2010'), +('00.17', 'Infusion of vasopressor agent', 'ICD9CM_2010'), +('00.18', 'Infusion of immunosuppressive antibody therapy during induction phase of solid organ transplantation', 'ICD9CM_2010'), +('00.19', 'Disruption of blood brain barrier via infusion (bbbd)', 'ICD9CM_2010'), +('00.2', 'Intravascular imaging of blood vessels', 'ICD9CM_2010'), +('00.21', 'Intravascular imaging of extracranial cerebral vessels', 'ICD9CM_2010'), +('00.22', 'Intravascular imaging of intrathoracic vessels', 'ICD9CM_2010'), +('00.23', 'Intravascular imaging of peripheral vessels', 'ICD9CM_2010'), +('00.24', 'Intravascular imaging of coronary vessels', 'ICD9CM_2010'), +('00.25', 'Intravascular imaging of renal vessels', 'ICD9CM_2010'), +('00.28', 'Intravascular imaging of other specified vessels', 'ICD9CM_2010'), +('00.29', 'Intravascular imaging, unspecified vessel(s)', 'ICD9CM_2010'), +('00.3', 'Computer assisted surgery [CAS]', 'ICD9CM_2010'), +('00.31', 'Computer assisted surgery with CT/CTA', 'ICD9CM_2010'), +('00.32', 'Computer assisted surgery with MR/MRA', 'ICD9CM_2010'), +('00.33', 'Computer assisted surgery with fluoroscopy', 'ICD9CM_2010'), +('00.34', 'Imageless computer assisted surgery', 'ICD9CM_2010'), +('00.35', 'Computer assisted surgery with multiple datasets', 'ICD9CM_2010'), +('00.39', 'Other Computer assisted surgery', 'ICD9CM_2010'), +('00.4', 'Adjunct Vascular System Procedures', 'ICD9CM_2010'), +('00.40', 'Adjunct vascular system procedures,Procedure on single vessel', 'ICD9CM_2010'), +('00.41', 'Adjunct vascular system procedures, procedure on two vessels', 'ICD9CM_2010'), +('00.42', 'Adjunct vascular system procedures,Prosedure on three vessels', 'ICD9CM_2010'), +('00.43', 'Adjunct vascular system procedures,Procedure on four or more vessels', 'ICD9CM_2010'), +('00.44', 'Adjunct vascular system procedures,Procedure on vessel bifurcation', 'ICD9CM_2010'), +('00.45', 'Adjunct vascular system procedures,Insertion of one vascular stent', 'ICD9CM_2010'), +('00.46', 'Adjunct vascular system procedures,Insertion of two vascular stents', 'ICD9CM_2010'), +('00.47', 'Adjunct vascular system procedures,Insertion of three vascular stents', 'ICD9CM_2010'), +('00.48', 'Adjunct vascular system procedures,Insertion of four or more vascular stents', 'ICD9CM_2010'), +('00.49', 'SuperSaturated oxygen therapy', 'ICD9CM_2010'), +('00.5', 'Other cardiovascular procedures', 'ICD9CM_2010'), +('00.50', 'Implantation of cardiac resynchronization pacemaker without mention of defibrillation, total system (CRT-P)', 'ICD9CM_2010'), +('00.51', 'Implantation of cardiac resynchronization defibrillation, total system (CRT-D)', 'ICD9CM_2010'), +('00.52', 'Implantation or replacement of transvenous lead (electrode) into left ventricular coronary venous system', 'ICD9CM_2010'), +('00.53', 'Implantation or replacement of cardiac resynchronization pacemaker pulse generator only (CRT-P)', 'ICD9CM_2010'), +('00.54', 'Implantation or replacement of cardiac resynchronization defibrillation pulse generator device only (CRT-D)', 'ICD9CM_2010'), +('00.55', 'Insertion of drug-eluting peripheral vessels stent(s)', 'ICD9CM_2010'), +('00.56', 'Insertion or replacement of implantable pressure sensor (lead) for intracardiac hemodynamic monitoring', 'ICD9CM_2010'), +('00.57', 'Implantation or replacement of subcutaneous device for intracardiac hemodynamic monitoring', 'ICD9CM_2010'), +('00.58', 'Insertion of intra-aneurysm sac pressure monitoring device (intraoperative)', 'ICD9CM_2010'), +('00.59', 'Intravascular pressure measurement o coronary arteries', 'ICD9CM_2010'), +('00.6', 'Procedures on blood vessels', 'ICD9CM_2010'), +('00.60', 'Insertion of drug-eluting stent(s) of superficial femoral artery', 'ICD9CM_2010'), +('00.61', 'Percutaneous angioplasty or atherectomy of precerebral(extracranial)vessel(s)', 'ICD9CM_2010'), +('00.62', 'Percutaneous angioplasty or atherectomy intracranial vessel', 'ICD9CM_2010'), +('00.63', 'Percutaneous insertion of carotid artery stent(s)', 'ICD9CM_2010'), +('00.64', 'Percutaneous insertion of other precerebral(extracranial)artery stent(s)', 'ICD9CM_2010'), +('00.65', 'Percutaneous insertion of intracranial vascular stent(s)', 'ICD9CM_2010'), +('00.66', 'Parcutaneous transluminal coronary angioplasty (PTCA) or coronary atherectomy', 'ICD9CM_2010'), +('00.67', 'Intravascular pressure measurement of intrathoracic arteries', 'ICD9CM_2010'), +('00.68', 'Intravascular pressure measurement of peripheral arteries', 'ICD9CM_2010'), +('00.69', 'Intravascular pressure measurement of other specified and unspecified vessels', 'ICD9CM_2010'), +('00.7', 'Other hip procedures', 'ICD9CM_2010'), +('00.70', 'Revision of hip replacement, both acetabular and femoral components', 'ICD9CM_2010'), +('00.71', 'Revision of hip replacement, acetabular component', 'ICD9CM_2010'), +('00.72', 'Revision of hip replacement,femoral component', 'ICD9CM_2010'), +('00.73', 'Revision of hip replacement, acetabular liner and/or femoral head only', 'ICD9CM_2010'), +('00.74', 'Hip bearing surface, metal on polyethylene', 'ICD9CM_2010'), +('00.75', 'Hip bearing surface, metal-on-metal', 'ICD9CM_2010'), +('00.76', 'Hip bearing surface, ceramic-on-ceramic', 'ICD9CM_2010'), +('00.77', 'Hip bearing surface, ceramic on polyethylene', 'ICD9CM_2010'), +('00.8', 'Other knee and hip procedures', 'ICD9CM_2010'), +('00.80', 'Revision of knee replacement, total (all components)', 'ICD9CM_2010'), +('00.81', 'Revision of knee replacement, tibial component', 'ICD9CM_2010'), +('00.82', 'Revision of knee replacement, femoral component', 'ICD9CM_2010'), +('00.83', 'Revision of knee replacement,patellar component', 'ICD9CM_2010'), +('00.84', 'Revision of total knee replacement, tibial insertion (liner)', 'ICD9CM_2010'), +('00.85', 'Resurfacing hip, total, acetabulum and femoral head', 'ICD9CM_2010'), +('00.86', 'Resurfacing hip, partial, femoral head', 'ICD9CM_2010'), +('00.87', 'Resurfacing hip,partial, acetabulum', 'ICD9CM_2010'), +('00.9', 'Other procedures and interventions', 'ICD9CM_2010'), +('00.91', 'Transplant from live related donor', 'ICD9CM_2010'), +('00.92', 'Transplant from live non-related donor', 'ICD9CM_2010'), +('00.93', 'Transplant fron cadaver', 'ICD9CM_2010'), +('00.94', 'Intra-operative neurophysiologic monitoring', 'ICD9CM_2010'), +('01', 'Incision and excision of skull, brain, and cerebral meninges', 'ICD9CM_2010'), +('01.0', 'Cranial puncture', 'ICD9CM_2010'), +('01.01', 'Cisternal puncture', 'ICD9CM_2010'), +('01.02', 'Ventriculopuncture through previously implanted catheter', 'ICD9CM_2010'), +('01.09', 'Other cranial puncture', 'ICD9CM_2010'), +('01.1', 'Diagnostic procedures on skull, brain, and cerebral meninges', 'ICD9CM_2010'), +('01.10', 'Intracranial pressure monitoring', 'ICD9CM_2010'), +('01.11', 'Closed (percutaneous) (needle) biopsy of cerebral meninges', 'ICD9CM_2010'), +('01.12', 'Open biopsy of cerebral meninges', 'ICD9CM_2010'), +('01.13', 'Closed (percutaneous) (needle) biopsy of brain', 'ICD9CM_2010'), +('01.14', 'Open biopsy of brain', 'ICD9CM_2010'), +('01.15', 'Biopsy of skull', 'ICD9CM_2010'), +('01.16', 'Intracranial oxygen monitoring', 'ICD9CM_2010'), +('01.17', 'Brain temperature monitoring', 'ICD9CM_2010'), +('01.18', 'Other diagnostic procedures on brain and cerebral meninges', 'ICD9CM_2010'), +('01.19', 'Other diagnostic procedures on skull', 'ICD9CM_2010'), +('01.2', 'Craniotomy and craniectomy', 'ICD9CM_2010'), +('01.20', 'Cranial implantation or replacement of neurostimulator pulse generator', 'ICD9CM_2010'), +('01.21', 'Incision and drainage of cranial sinus', 'ICD9CM_2010'), +('01.22', 'Removal of intracranial neurostimulator', 'ICD9CM_2010'), +('01.23', 'Reopening of craniotomy site', 'ICD9CM_2010'), +('01.24', 'Other craniotomy', 'ICD9CM_2010'), +('01.25', 'Other craniectomy', 'ICD9CM_2010'), +('01.26', 'Insertion of catheter(s)into cranial cavity or tissue', 'ICD9CM_2010'), +('01.27', 'Removal of catheter(s) from cranial cavity or tissue', 'ICD9CM_2010'), +('01.28', 'Placement of intracerebelar catheter(s) via burr hole(s)', 'ICD9CM_2010'), +('01.29', 'Removal of cranial neurostimulator pulse generator', 'ICD9CM_2010'), +('01.3', 'Incision of brain and cerebral meninges', 'ICD9CM_2010'), +('01.31', 'Incision of cerebral meninges', 'ICD9CM_2010'), +('01.32', 'Lobotomy and tractotomy', 'ICD9CM_2010'), +('01.39', 'Other incision of brain', 'ICD9CM_2010'), +('01.4', 'Operations on thalamus and globus pallidus', 'ICD9CM_2010'), +('01.41', 'Operations on thalamus', 'ICD9CM_2010'), +('01.42', 'Operations on globus pallidus', 'ICD9CM_2010'), +('01.5', 'Other excision or destruction of brain and meninges', 'ICD9CM_2010'), +('01.51', 'Excision of lesion or tissue of cerebral meninges', 'ICD9CM_2010'), +('01.52', 'Hemispherectomy', 'ICD9CM_2010'), +('01.53', 'Lobectomy of brain', 'ICD9CM_2010'), +('01.59', 'Other excision or destruction of lesion or tissue of brain', 'ICD9CM_2010'), +('01.6', 'Excision of lesion of skull', 'ICD9CM_2010'), +('02', 'Other operations on skull, brain, and cerebral meninges', 'ICD9CM_2010'), +('02.0', 'Cranioplasty', 'ICD9CM_2010'), +('02.01', 'Opening of cranial suture', 'ICD9CM_2010'), +('02.02', 'Elevation of skull fracture fragments', 'ICD9CM_2010'), +('02.03', 'Formation of cranial bone flap', 'ICD9CM_2010'), +('02.04', 'Bone graft to skull', 'ICD9CM_2010'), +('02.05', 'Insertion of skull plate', 'ICD9CM_2010'), +('02.06', 'Other cranial osteoplasty', 'ICD9CM_2010'), +('02.07', 'Removal of skull plate', 'ICD9CM_2010'), +('02.1', 'Repair of cerebral meninges', 'ICD9CM_2010'), +('02.11', 'Simple suture of dura mater of brain', 'ICD9CM_2010'), +('02.12', 'Other repair of cerebral meninges', 'ICD9CM_2010'), +('02.13', 'Ligation of meningeal vessel', 'ICD9CM_2010'), +('02.14', 'Choroid plexectomy', 'ICD9CM_2010'), +('02.2', 'Ventriculostomy', 'ICD9CM_2010'), +('02.3', 'Extracranial ventricular shunt', 'ICD9CM_2010'), +('02.31', 'Ventricular shunt to structure in head and neck', 'ICD9CM_2010'), +('02.32', 'Ventricular shunt to circulatory system', 'ICD9CM_2010'), +('02.33', 'Ventricular shunt to thoracic cavity', 'ICD9CM_2010'), +('02.34', 'Ventricular shunt to abdominal cavity and organs', 'ICD9CM_2010'), +('02.35', 'Ventricular shunt to urinary system', 'ICD9CM_2010'), +('02.39', 'Other operations to establish drainage of ventricle', 'ICD9CM_2010'), +('02.4', 'Revision, removal, and irrigation of ventricular shunt', 'ICD9CM_2010'), +('02.41', 'Irrigation of ventricular shunt', 'ICD9CM_2010'), +('02.42', 'Replacement of ventricular shunt', 'ICD9CM_2010'), +('02.43', 'Removal of ventricular shunt', 'ICD9CM_2010'), +('02.9', 'Other operations on skull, brain, and cerebral meninges', 'ICD9CM_2010'), +('02.91', 'Lysis of cortical adhesions', 'ICD9CM_2010'), +('02.92', 'Repair of brain', 'ICD9CM_2010'), +('02.93', 'Implantation of intracranial neurostimulator', 'ICD9CM_2010'), +('02.94', 'Insertion or replacement of skull tongs or halo traction device', 'ICD9CM_2010'), +('02.95', 'Removal of skull tongs or halo traction device', 'ICD9CM_2010'), +('02.96', 'Insertion of sphenoid electrodes', 'ICD9CM_2010'), +('02.99', 'Other operations on skull, brain, and cerebral meninges', 'ICD9CM_2010'), +('03', 'Operations on spinal cord and spinal canal structures', 'ICD9CM_2010'), +('03.0', 'Exploration and decompression of spinal canal structures', 'ICD9CM_2010'), +('03.01', 'Removal of foreign body from spinal canal', 'ICD9CM_2010'), +('03.02', 'Reopening of laminectomy site', 'ICD9CM_2010'), +('03.09', 'Other exploration and decompression of spinal canal', 'ICD9CM_2010'), +('03.1', 'Division of intraspinal nerve root', 'ICD9CM_2010'), +('03.2', 'Chordotomy', 'ICD9CM_2010'), +('03.21', 'Percutaneous chordotomy', 'ICD9CM_2010'), +('03.29', 'Other chordotomy', 'ICD9CM_2010'), +('03.3', 'Diagnostic procedures on spinal cord and spinal canal structures', 'ICD9CM_2010'), +('03.31', 'Spinal tap', 'ICD9CM_2010'), +('03.32', 'Biopsy of spinal cord or spinal meninges', 'ICD9CM_2010'), +('03.39', 'Other diagnostic procedures on spinal cord and spinal canal structur', 'ICD9CM_2010'), +('03.4', 'Excision or destruction of lesion of spinal cord or spinal meninges', 'ICD9CM_2010'), +('03.5', 'Plastic operations on spinal cord structures', 'ICD9CM_2010'), +('03.51', 'Repair of spinal meningocele', 'ICD9CM_2010'), +('03.52', 'Repair of spinal myelomeningocele', 'ICD9CM_2010'), +('03.53', 'Repair of vertebral fracture', 'ICD9CM_2010'), +('03.59', 'Other repair and plastic operations on spinal cord structures', 'ICD9CM_2010'), +('03.6', 'Lysis of adhesions of spinal cord and nerve roots', 'ICD9CM_2010'), +('03.7', 'Shunt of spinal theca', 'ICD9CM_2010'), +('03.71', 'Spinal subarachnoid-peritoneal shunt', 'ICD9CM_2010'), +('03.72', 'Spinal subarachnoid-ureteral shunt', 'ICD9CM_2010'), +('03.79', 'Other shunt of spinal theca', 'ICD9CM_2010'), +('03.8', 'Injection of destructive agent into spinal canal', 'ICD9CM_2010'), +('03.9', 'Other operations on spinal cord and spinal canal structures', 'ICD9CM_2010'), +('03.90', 'Insertion of catheter into spinal canal for infusion of therapeutic', 'ICD9CM_2010'), +('03.91', 'Injection of anesthetic into spinal canal for analgesia', 'ICD9CM_2010'), +('03.92', 'Injection of other agent into spinal canal', 'ICD9CM_2010'), +('03.93', 'Implantation or replacement of spinal neurostimulator lead(s)', 'ICD9CM_2010'), +('03.94', 'Removal of spinal neurostimulator lead(s)', 'ICD9CM_2010'), +('03.95', 'Spinal blood patch', 'ICD9CM_2010'), +('03.96', 'Percutaneous denervation of facet', 'ICD9CM_2010'), +('03.97', 'Revision of spinal thecal shunt', 'ICD9CM_2010'), +('03.98', 'Removal of spinal thecal shunt', 'ICD9CM_2010'), +('03.99', 'Other operations on spinal cord and spinal canal structures', 'ICD9CM_2010'), +('04', 'Operations on cranial and peripheral nerves', 'ICD9CM_2010'), +('04.0', 'Incision, division, and excision of cranial and peripheral nerves', 'ICD9CM_2010'), +('04.01', 'Excision of acoustic neuroma', 'ICD9CM_2010'), +('04.02', 'Division of trigeminal nerve', 'ICD9CM_2010'), +('04.03', 'Division or crushing of other cranial and peripheral nerves', 'ICD9CM_2010'), +('04.04', 'Other incision of cranial and peripheral nerves', 'ICD9CM_2010'), +('04.05', 'Gasserian ganglionectomy', 'ICD9CM_2010'), +('04.06', 'Other cranial or peripheral ganglionectomy', 'ICD9CM_2010'), +('04.07', 'Other excision or avulsion of cranial and peripheral nerves', 'ICD9CM_2010'), +('04.1', 'Diagnostic procedures on peripheral nervous system', 'ICD9CM_2010'), +('04.11', 'Closed (percutaneous) (needle) biopsy of cranial or peripheral nerve or ganglion', 'ICD9CM_2010'), +('04.12', 'Open biopsy of cranial or peripheral nerve or ganglion', 'ICD9CM_2010'), +('04.19', 'Other diagnostic procedures on cranial and peripheral nerves and ganglia', 'ICD9CM_2010'), +('04.2', 'Destruction of cranial and peripheral nerves', 'ICD9CM_2010'), +('04.3', 'Suture of cranial and peripheral nerves', 'ICD9CM_2010'), +('04.4', 'Lysis of adhesions and decompression of cranial and peripheral nerve', 'ICD9CM_2010'), +('04.41', 'Decompression of trigeminal nerve root', 'ICD9CM_2010'), +('04.42', 'Other cranial nerve decompression', 'ICD9CM_2010'), +('04.43', 'Release of carpal tunnel', 'ICD9CM_2010'), +('04.44', 'Release of tarsal tunnel', 'ICD9CM_2010'), +('04.49', 'Other peripheral nerve or ganglion decompression or lysis of adhesions', 'ICD9CM_2010'), +('04.5', 'Cranial or peripheral nerve graft', 'ICD9CM_2010'), +('04.6', 'Transposition of cranial and peripheral nerves', 'ICD9CM_2010'), +('04.7', 'Other cranial or peripheral neuroplasty', 'ICD9CM_2010'), +('04.71', 'Hypoglossal-facial anastomosis', 'ICD9CM_2010'), +('04.72', 'Accessory-facial anastomosis', 'ICD9CM_2010'), +('04.73', 'Accessory-hypoglossal anastomosis', 'ICD9CM_2010'), +('04.74', 'Other anastomosis of cranial or peripheral nerve', 'ICD9CM_2010'), +('04.75', 'Revision of previous repair of cranial and peripheral nerves', 'ICD9CM_2010'), +('04.76', 'Repair of old traumatic injury of cranial and peripheral nerves', 'ICD9CM_2010'), +('04.79', 'Other neuroplasty', 'ICD9CM_2010'), +('04.8', 'Injection into peripheral nerve', 'ICD9CM_2010'), +('04.80', 'Peripheral nerve injection, not otherwise specified', 'ICD9CM_2010'), +('04.81', 'Injection of anesthetic into peripheral nerve for analgesia', 'ICD9CM_2010'), +('04.89', 'Injection of other agent, except neurolytic', 'ICD9CM_2010'), +('04.9', 'Other operations on cranial and peripheral nerves', 'ICD9CM_2010'), +('04.91', 'Neurectasis', 'ICD9CM_2010'), +('04.92', 'Implantation or replacement of peripheral neurostimulator lead(s)', 'ICD9CM_2010'), +('04.93', 'Removal of peripheral neurostimulator lead(s)', 'ICD9CM_2010'), +('04.99', 'Other operations on cranial and peripheral nerves', 'ICD9CM_2010'), +('05', 'Operations on sympathetic nerves or ganglia', 'ICD9CM_2010'), +('05.0', 'Division of sympathetic nerve or ganglion', 'ICD9CM_2010'), +('05.1', 'Diagnostic procedures on sympathetic nerves or ganglia', 'ICD9CM_2010'), +('05.11', 'Biopsy of sympathetic nerve or ganglion', 'ICD9CM_2010'), +('05.19', 'Other diagnostic procedures on sympathetic nerves or ganglia', 'ICD9CM_2010'), +('05.2', 'Sympathectomy', 'ICD9CM_2010'), +('05.21', 'Sphenopalatine ganglionectomy', 'ICD9CM_2010'), +('05.22', 'Cervical sympathectomy', 'ICD9CM_2010'), +('05.23', 'Lumbar sympathectomy', 'ICD9CM_2010'), +('05.24', 'Presacral sympathectomy', 'ICD9CM_2010'), +('05.25', 'Periarterial sympathectomy', 'ICD9CM_2010'), +('05.29', 'Other sympathectomy and ganglionectomy', 'ICD9CM_2010'), +('05.3', 'Injection into sympathetic nerve or ganglion', 'ICD9CM_2010'), +('05.31', 'Injection of anesthetic into sympathetic nerve for analgesia', 'ICD9CM_2010'), +('05.32', 'Injection of neurolytic agent into sympathetic nerve', 'ICD9CM_2010'), +('05.39', 'Other injection into sympathetic nerve or ganglion', 'ICD9CM_2010'), +('05.8', 'Other operations on sympathetic nerves or ganglia', 'ICD9CM_2010'), +('05.81', 'Repair of sympathetic nerve or ganglion', 'ICD9CM_2010'), +('05.89', 'Other operations on sympathetic nerves or ganglia', 'ICD9CM_2010'), +('05.9', 'Other operations on nervous system', 'ICD9CM_2010'), +('06', 'Operations on thyroid and parathyroid glands', 'ICD9CM_2010'), +('06.0', 'Incision of thyroid field', 'ICD9CM_2010'), +('06.01', 'Aspiration of thyroid field', 'ICD9CM_2010'), +('06.02', 'Reopening of wound of thyroid field', 'ICD9CM_2010'), +('06.09', 'Other incision of thyroid field', 'ICD9CM_2010'), +('06.1', 'Diagnostic procedures on thyroid and parathyroid glands', 'ICD9CM_2010'), +('06.11', 'Closed (percutaneous) (needle) biopsy of thyroid gland', 'ICD9CM_2010'), +('06.12', 'Open biopsy of thyroid gland', 'ICD9CM_2010'), +('06.13', 'Biopsy of parathyroid gland', 'ICD9CM_2010'), +('06.19', 'Other diagnostic procedures on thyroid and parathyroid glands', 'ICD9CM_2010'), +('06.2', 'Unilateral thyroid lobectomy', 'ICD9CM_2010'), +('06.3', 'Other partial thyroidectomy', 'ICD9CM_2010'), +('06.31', 'Excision of lesion of thyroid', 'ICD9CM_2010'), +('06.39', 'Other partial thyroidectomy', 'ICD9CM_2010'), +('06.4', 'Complete thyroidectomy', 'ICD9CM_2010'), +('06.5', 'Substernal thyroidectomy', 'ICD9CM_2010'), +('06.50', 'Substernal thyroidectomy, not otherwise specified', 'ICD9CM_2010'), +('06.51', 'Partial substernal thyroidectomy', 'ICD9CM_2010'), +('06.52', 'Complete substernal thyroidectomy', 'ICD9CM_2010'), +('06.6', 'Excision of lingual thyroid', 'ICD9CM_2010'), +('06.7', 'Excision of thyroglossal duct or tract', 'ICD9CM_2010'), +('06.8', 'Parathyroidectomy', 'ICD9CM_2010'), +('06.81', 'Complete parathyroidectomy', 'ICD9CM_2010'), +('06.89', 'Other parathyroidectomy', 'ICD9CM_2010'), +('06.9', 'Other operations on thyroid (region) and parathyroid', 'ICD9CM_2010'), +('06.91', 'Division of thyroid isthmus', 'ICD9CM_2010'), +('06.92', 'Ligation of thyroid vessels', 'ICD9CM_2010'), +('06.93', 'Suture of thyroid gland', 'ICD9CM_2010'), +('06.94', 'Thyroid tissue reimplantation', 'ICD9CM_2010'), +('06.95', 'Parathyroid tissue reimplantation', 'ICD9CM_2010'), +('06.98', 'Other operations on thyroid glands', 'ICD9CM_2010'), +('06.99', 'Other operations on parathyroid glands', 'ICD9CM_2010'), +('07', 'Operations on other endocrine glands', 'ICD9CM_2010'), +('07.0', 'Exploration of adrenal field', 'ICD9CM_2010'), +('07.00', 'Exploration of adrenal field, not otherwise specified', 'ICD9CM_2010'), +('07.01', 'Unilateral exploration of adrenal field', 'ICD9CM_2010'), +('07.02', 'Bilateral exploration of adrenal field', 'ICD9CM_2010'), +('07.1', 'Diagnostic procedures on adrenal glands, pituitary gland, pineal gla', 'ICD9CM_2010'), +('07.11', 'Closed (percutaneous) (needle) biopsy of adrenal gland', 'ICD9CM_2010'), +('07.12', 'Open biopsy of adrenal gland', 'ICD9CM_2010'), +('07.13', 'Biopsy of pituitary gland, transfrontal approach', 'ICD9CM_2010'), +('07.14', 'Biopsy of pituitary gland, transsphenoidal approach', 'ICD9CM_2010'), +('07.15', 'Biopsy of pituitary gland, unspecified approach', 'ICD9CM_2010'), +('07.16', 'Biopsy of thymus', 'ICD9CM_2010'), +('07.17', 'Biopsy of pineal gland', 'ICD9CM_2010'), +('07.19', 'Other diagnostic procedures on adrenal glands, pituitary gland, pineal and thymus', 'ICD9CM_2010'), +('07.2', 'Partial adrenalectomy', 'ICD9CM_2010'), +('07.21', 'Excision of lesion of adrenal gland', 'ICD9CM_2010'), +('07.22', 'Unilateral adrenalectomy', 'ICD9CM_2010'), +('07.29', 'Other partial adrenalectomy', 'ICD9CM_2010'), +('07.3', 'Bilateral adrenalectomy', 'ICD9CM_2010'), +('07.4', 'Other operations on adrenal glands, nerves, and vessels', 'ICD9CM_2010'), +('07.41', 'Incision of adrenal gland', 'ICD9CM_2010'), +('07.42', 'Division of nerves to adrenal glands', 'ICD9CM_2010'), +('07.43', 'Ligation of adrenal vessels', 'ICD9CM_2010'), +('07.44', 'Repair of adrenal gland', 'ICD9CM_2010'), +('07.45', 'Reimplantation of adrenal tissue', 'ICD9CM_2010'), +('07.49', 'Other operations on adrenal glands, nerves, and vessels', 'ICD9CM_2010'), +('07.5', 'Operations on pineal gland', 'ICD9CM_2010'), +('07.51', 'Exploration of pineal field', 'ICD9CM_2010'), +('07.52', 'Incision of pineal gland', 'ICD9CM_2010'), +('07.53', 'Partial excision of pineal gland', 'ICD9CM_2010'), +('07.54', 'Total excision of pineal gland', 'ICD9CM_2010'), +('07.59', 'Other operations on pineal gland', 'ICD9CM_2010'), +('07.6', 'Hypophysectomy', 'ICD9CM_2010'), +('07.61', 'Partial excision of pituitary gland, transfrontal approach', 'ICD9CM_2010'), +('07.62', 'Partial excision of pituitary gland, transsphenoidal approach', 'ICD9CM_2010'), +('07.63', 'Partial excision of pituitary gland, unspecified approach', 'ICD9CM_2010'), +('07.64', 'Total excision of pituitary gland, transfrontal approach', 'ICD9CM_2010'), +('07.65', 'Total excision of pituitary gland, transsphenoidal approach', 'ICD9CM_2010'), +('07.68', 'Total excision of pituitary gland, other specified approach', 'ICD9CM_2010'), +('07.69', 'Total excision of pituitary gland, unspecified approach', 'ICD9CM_2010'), +('07.7', 'Other operations on hypophysis', 'ICD9CM_2010'), +('07.71', 'Exploration of pituitary fossa', 'ICD9CM_2010'), +('07.72', 'Incision of pituitary gland', 'ICD9CM_2010'), +('07.79', 'Other operations on hypophysis', 'ICD9CM_2010'), +('07.8', 'Thymectomy', 'ICD9CM_2010'), +('07.80', 'Thymectomy, not otherwise specified', 'ICD9CM_2010'), +('07.81', 'Partial excision of thymus', 'ICD9CM_2010'), +('07.82', 'Total excision of thymus', 'ICD9CM_2010'), +('07.83', 'Thoracoscopic partial excision of thymus', 'ICD9CM_2010'), +('07.84', 'Thoracoscopic total excision of thymus', 'ICD9CM_2010'), +('07.9', 'Other operations on thymus', 'ICD9CM_2010'), +('07.91', 'Exploration of thymus field', 'ICD9CM_2010'), +('07.92', 'Incision of thymus', 'ICD9CM_2010'), +('07.93', 'Repair of thymus', 'ICD9CM_2010'), +('07.94', 'Transplantation of thymus', 'ICD9CM_2010'), +('07.95', 'Thoracoscopic incision of thymus', 'ICD9CM_2010'), +('07.98', 'Other and unspecified thoracoscopic operations on thymus', 'ICD9CM_2010'), +('07.99', 'Other and unspecified operations on thymus', 'ICD9CM_2010'), +('08', 'Operations on eyelids', 'ICD9CM_2010'), +('08.0', 'Incision of eyelid', 'ICD9CM_2010'), +('08.01', 'Incision of lid margin', 'ICD9CM_2010'), +('08.02', 'Severing of blepharorrhaphy', 'ICD9CM_2010'), +('08.09', 'Other incision of eyelid', 'ICD9CM_2010'), +('08.1', 'Diagnostic procedures on eyelid', 'ICD9CM_2010'), +('08.11', 'Biopsy of eyelid', 'ICD9CM_2010'), +('08.19', 'Other diagnostic procedures on eyelid', 'ICD9CM_2010'), +('08.2', 'Excision or destruction of lesion or tissue of eyelid', 'ICD9CM_2010'), +('08.20', 'Removal of lesion of eyelid, not otherwise specified', 'ICD9CM_2010'), +('08.21', 'Excision of chalazion', 'ICD9CM_2010'), +('08.22', 'Excision of other minor lesion of eyelid', 'ICD9CM_2010'), +('08.23', 'Excision of major lesion of eyelid, partial-thickness', 'ICD9CM_2010'), +('08.24', 'Excision of major lesion of eyelid, full-thickness', 'ICD9CM_2010'), +('08.25', 'Destruction of lesion of eyelid', 'ICD9CM_2010'), +('08.3', 'Repair of blepharoptosis and lid retraction', 'ICD9CM_2010'), +('08.31', 'Repair of blepharoptosis by frontalis muscle technique with suture', 'ICD9CM_2010'), +('08.32', 'Repair of blepharoptosis by frontalis muscle technique with fascial', 'ICD9CM_2010'), +('08.33', 'Repair of blepharoptosis by resection or advancement of levator musc', 'ICD9CM_2010'), +('08.34', 'Repair of blepharoptosis by other levator muscle techniques', 'ICD9CM_2010'), +('08.35', 'Repair of blepharoptosis by tarsal technique', 'ICD9CM_2010'), +('08.36', 'Repair of blepharoptosis by other techniques', 'ICD9CM_2010'), +('08.37', 'Reduction of overcorrection of ptosis', 'ICD9CM_2010'), +('08.38', 'Correction of lid retraction', 'ICD9CM_2010'), +('08.4', 'Repair of entropion or ectropion', 'ICD9CM_2010'), +('08.41', 'Repair of entropion or ectropion by thermocauterization', 'ICD9CM_2010'), +('08.42', 'Repair of entropion or ectropion by suture technique', 'ICD9CM_2010'), +('08.43', 'Repair of entropion or ectropion with wedge resection', 'ICD9CM_2010'), +('08.44', 'Repair of entropion or ectropion with lid reconstruction', 'ICD9CM_2010'), +('08.49', 'Other repair of entropion or ectropion', 'ICD9CM_2010'), +('08.5', 'Other adjustment of lid position', 'ICD9CM_2010'), +('08.51', 'Canthotomy', 'ICD9CM_2010'), +('08.52', 'Blepharorrhaphy', 'ICD9CM_2010'), +('08.59', 'Other adjustment of lid position', 'ICD9CM_2010'), +('08.6', 'Reconstruction of eyelid with flaps or grafts', 'ICD9CM_2010'), +('08.61', 'Reconstruction of eyelid with skin flap or graft', 'ICD9CM_2010'), +('08.62', 'Reconstruction of eyelid with mucous membrane flap or graft', 'ICD9CM_2010'), +('08.63', 'Reconstruction of eyelid with hair follicle graft', 'ICD9CM_2010'), +('08.64', 'Reconstruction of eyelid with tarsoconjunctival flap', 'ICD9CM_2010'), +('08.69', 'Other reconstruction of eyelid with flaps or grafts', 'ICD9CM_2010'), +('08.7', 'Other reconstruction of eyelid', 'ICD9CM_2010'), +('08.70', 'Reconstruction of eyelid, not otherwise specified', 'ICD9CM_2010'), +('08.71', 'Reconstruction of eyelid involving lid margin, partial- thickness', 'ICD9CM_2010'), +('08.72', 'Other reconstruction of eyelid, partial-thickness', 'ICD9CM_2010'), +('08.73', 'Reconstruction of eyelid involving lid margin, full-thickness', 'ICD9CM_2010'), +('08.74', 'Other reconstruction of eyelid, full-thickness', 'ICD9CM_2010'), +('08.8', 'Other repair of eyelid', 'ICD9CM_2010'), +('08.81', 'Linear repair of laceration of eyelid or eyebrow', 'ICD9CM_2010'), +('08.82', 'Repair of laceration involving lid margin, partial-thickness', 'ICD9CM_2010'), +('08.83', 'Other repair of laceration of eyelid, partial-thickness', 'ICD9CM_2010'), +('08.84', 'Repair of laceration of eyelid involving lid margin, full-thickness', 'ICD9CM_2010'), +('08.85', 'Other repair of laceration of eyelid, full-thickness', 'ICD9CM_2010'), +('08.86', 'Lower eyelid rhytidectomy', 'ICD9CM_2010'), +('08.87', 'Upper eyelid rhytidectomy', 'ICD9CM_2010'), +('08.89', 'Other eyelid repair', 'ICD9CM_2010'), +('08.9', 'Other operations on eyelids', 'ICD9CM_2010'), +('08.91', 'Electrosurgical epilation of eyelid', 'ICD9CM_2010'), +('08.92', 'Cryosurgical epilation of eyelid', 'ICD9CM_2010'), +('08.93', 'Other epilation of eyelid', 'ICD9CM_2010'), +('08.99', 'Other operations on eyelids', 'ICD9CM_2010'), +('09', 'Operations on lacrimal system', 'ICD9CM_2010'), +('09.0', 'Incision of lacrimal gland', 'ICD9CM_2010'), +('09.1', 'Diagnostic procedures on lacrimal system', 'ICD9CM_2010'), +('09.11', 'Biopsy of lacrimal gland', 'ICD9CM_2010'), +('09.12', 'Biopsy of lacrimal sac', 'ICD9CM_2010'), +('09.19', 'Other diagnostic procedures on lacrimal system', 'ICD9CM_2010'), +('09.2', 'Excision of lesion or tissue of lacrimal gland', 'ICD9CM_2010'), +('09.20', 'Excision of lacrimal gland, not otherwise specified', 'ICD9CM_2010'), +('09.21', 'Excision of lesion of lacrimal gland', 'ICD9CM_2010'), +('09.22', 'Other partial dacryoadenectomy', 'ICD9CM_2010'), +('09.23', 'Total dacryoadenectomy', 'ICD9CM_2010'), +('09.3', 'Other operations on lacrimal gland', 'ICD9CM_2010'), +('09.4', 'Manipulation of lacrimal passage', 'ICD9CM_2010'), +('09.41', 'Probing of lacrimal punctum', 'ICD9CM_2010'), +('09.42', 'Probing of lacrimal canaliculi', 'ICD9CM_2010'), +('09.43', 'Probing of nasolacrimal duct', 'ICD9CM_2010'), +('09.44', 'Intubation of nasolacrimal duct', 'ICD9CM_2010'), +('09.49', 'Other manipulation of lacrimal passage', 'ICD9CM_2010'), +('09.5', 'Incision of lacrimal sac and passages', 'ICD9CM_2010'), +('09.51', 'Incision of lacrimal punctum', 'ICD9CM_2010'), +('09.52', 'Incision of lacrimal canaliculi', 'ICD9CM_2010'), +('09.53', 'Incision of lacrimal sac', 'ICD9CM_2010'), +('09.59', 'Other incision of lacrimal passages', 'ICD9CM_2010'), +('09.6', 'Excision of lacrimal sac and passage', 'ICD9CM_2010'), +('09.7', 'Repair of canaliculus and punctum', 'ICD9CM_2010'), +('09.71', 'Correction of everted punctum', 'ICD9CM_2010'), +('09.72', 'Other repair of punctum', 'ICD9CM_2010'), +('09.73', 'Repair of canaliculus', 'ICD9CM_2010'), +('09.8', 'Fistulization of lacrimal tract to nasal cavity', 'ICD9CM_2010'), +('09.81', 'Dacryocystorhinostomy (DCR)', 'ICD9CM_2010'), +('09.82', 'Conjunctivocystorhinostomy', 'ICD9CM_2010'), +('09.83', 'Conjunctivorhinostomy with insertion of tube or stent', 'ICD9CM_2010'), +('09.9', 'Other operations on lacrimal system', 'ICD9CM_2010'), +('09.91', 'Obliteration of lacrimal punctum', 'ICD9CM_2010'), +('09.99', 'Other operations on lacrimal system', 'ICD9CM_2010'), +('10', 'Operations on conjunctiva', 'ICD9CM_2010'), +('10.0', 'Removal of embedded foreign body from conjunctiva by incision', 'ICD9CM_2010'), +('10.1', 'Other incision of conjunctiva', 'ICD9CM_2010'), +('10.2', 'Diagnostic procedures on conjunctiva', 'ICD9CM_2010'), +('10.21', 'Biopsy of conjunctiva', 'ICD9CM_2010'), +('10.29', 'Other diagnostic procedures on conjunctiva', 'ICD9CM_2010'), +('10.3', 'Excision or destruction of lesion or tissue of conjunctiva', 'ICD9CM_2010'), +('10.31', 'Excision of lesion or tissue of conjunctiva', 'ICD9CM_2010'), +('10.32', 'Destruction of lesion of conjunctiva', 'ICD9CM_2010'), +('10.33', 'Other destructive procedures on conjunctiva', 'ICD9CM_2010'), +('10.4', 'Conjunctivoplasty', 'ICD9CM_2010'), +('10.41', 'Repair of symblepharon with free graft', 'ICD9CM_2010'), +('10.42', 'Reconstruction of conjunctival cul-de-sac with free graft', 'ICD9CM_2010'), +('10.43', 'Other reconstruction of conjunctival cul-de-sac', 'ICD9CM_2010'), +('10.44', 'Other free graft to conjunctiva', 'ICD9CM_2010'), +('10.49', 'Other conjunctivoplasty', 'ICD9CM_2010'), +('10.5', 'Lysis of adhesions of conjunctiva and eyelid', 'ICD9CM_2010'), +('10.6', 'Repair of laceration of conjunctiva', 'ICD9CM_2010'), +('10.9', 'Other operations on conjunctiva', 'ICD9CM_2010'), +('10.91', 'Subconjunctival injection', 'ICD9CM_2010'), +('10.99', 'Other operations on conjunctiva', 'ICD9CM_2010'), +('11', 'Operations on cornea', 'ICD9CM_2010'), +('11.0', 'Magnetic removal of embedded foreign body from cornea', 'ICD9CM_2010'), +('11.1', 'Incision of cornea', 'ICD9CM_2010'), +('11.2', 'Diagnostic procedures on cornea', 'ICD9CM_2010'), +('11.21', 'Scraping of cornea for smear or culture', 'ICD9CM_2010'), +('11.22', 'Biopsy of cornea', 'ICD9CM_2010'), +('11.29', 'Other diagnostic procedures on cornea', 'ICD9CM_2010'), +('11.3', 'Excision of pterygium', 'ICD9CM_2010'), +('11.31', 'Transposition of pterygium', 'ICD9CM_2010'), +('11.32', 'Excision of pterygium with corneal graft', 'ICD9CM_2010'), +('11.39', 'Other excision of pterygium', 'ICD9CM_2010'), +('11.4', 'Excision or destruction of tissue or other lesion of cornea', 'ICD9CM_2010'), +('11.41', 'Mechanical removal of corneal epithelium', 'ICD9CM_2010'), +('11.42', 'Thermocauterization of corneal lesion', 'ICD9CM_2010'), +('11.43', 'Cryotherapy of corneal lesion', 'ICD9CM_2010'), +('11.49', 'Other removal or destruction of corneal lesion', 'ICD9CM_2010'), +('11.5', 'Repair of cornea', 'ICD9CM_2010'), +('11.51', 'Suture of corneal laceration', 'ICD9CM_2010'), +('11.52', 'Repair of postoperative wound dehiscence of cornea', 'ICD9CM_2010'), +('11.53', 'Repair of corneal laceration or wound with conjunctival flap', 'ICD9CM_2010'), +('11.59', 'Other repair of cornea', 'ICD9CM_2010'), +('11.6', 'Corneal transplant', 'ICD9CM_2010'), +('11.60', 'Corneal transplant, not otherwise specified', 'ICD9CM_2010'), +('11.61', 'Lamellar keratoplasty with autograft', 'ICD9CM_2010'), +('11.62', 'Other lamellar keratoplasty', 'ICD9CM_2010'), +('11.63', 'Penetrating keratoplasty with autograft', 'ICD9CM_2010'), +('11.64', 'Other penetrating keratoplasty', 'ICD9CM_2010'), +('11.69', 'Other corneal transplant', 'ICD9CM_2010'), +('11.7', 'Other reconstructive and refractive surgery on cornea', 'ICD9CM_2010'), +('11.71', 'Keratomeleusis', 'ICD9CM_2010'), +('11.72', 'Keratophakia', 'ICD9CM_2010'), +('11.73', 'Keratoprosthesis', 'ICD9CM_2010'), +('11.74', 'Thermokeratoplasty', 'ICD9CM_2010'), +('11.75', 'Radial keratotomy', 'ICD9CM_2010'), +('11.76', 'Epikeratophakia', 'ICD9CM_2010'), +('11.79', 'Other reconstructive surgery on cornea', 'ICD9CM_2010'), +('11.9', 'Other operations on cornea', 'ICD9CM_2010'), +('11.91', 'Tattooing of cornea', 'ICD9CM_2010'), +('11.92', 'Removal of artificial implant from cornea', 'ICD9CM_2010'), +('11.99', 'Other operations on cornea', 'ICD9CM_2010'), +('12', 'Operations on iris, ciliary body, sclera, and anterior chamber', 'ICD9CM_2010'), +('12.0', 'Removal of intraocular foreign body from anterior segment of eye', 'ICD9CM_2010'), +('12.00', 'Removal of intraocular foreign body from anterior segment of eye, no', 'ICD9CM_2010'), +('12.01', 'Removal of intraocular foreign body from anterior segment of eye wit', 'ICD9CM_2010'), +('12.02', 'Removal of intraocular foreign body from anterior segment of eye wit', 'ICD9CM_2010'), +('12.1', 'Iridotomy and simple iridectomy', 'ICD9CM_2010'), +('12.11', 'Iridotomy with transfixion', 'ICD9CM_2010'), +('12.12', 'Other iridotomy', 'ICD9CM_2010'), +('12.13', 'Excision of prolapsed iris', 'ICD9CM_2010'), +('12.14', 'Other iridectomy', 'ICD9CM_2010'), +('12.2', 'Diagnostic procedures on iris, ciliary body, sclera, and anterior ch', 'ICD9CM_2010'), +('12.21', 'Diagnostic aspiration of anterior chamber of eye', 'ICD9CM_2010'), +('12.22', 'Biopsy of iris', 'ICD9CM_2010'), +('12.29', 'Other diagnostic procedures on iris, ciliary body, sclera, and anter', 'ICD9CM_2010'), +('12.3', 'Iridoplasty and coreoplasty', 'ICD9CM_2010'), +('12.31', 'Lysis of goniosynechiae', 'ICD9CM_2010'), +('12.32', 'Lysis of other anterior synechiae', 'ICD9CM_2010'), +('12.33', 'Lysis of posterior synechiae', 'ICD9CM_2010'), +('12.34', 'Lysis of corneovitreal adhesions', 'ICD9CM_2010'), +('12.35', 'Coreoplasty', 'ICD9CM_2010'), +('12.39', 'Other iridoplasty', 'ICD9CM_2010'), +('12.4', 'Excision or destruction of lesion of iris and ciliary body', 'ICD9CM_2010'), +('12.40', 'Removal of lesion of anterior segment of eye, not otherwise specifie', 'ICD9CM_2010'), +('12.41', 'Destruction of lesion of iris, nonexcisional', 'ICD9CM_2010'), +('12.42', 'Excision of lesion of iris', 'ICD9CM_2010'), +('12.43', 'Destruction of lesion of ciliary body, nonexcisional', 'ICD9CM_2010'), +('12.44', 'Excision of lesion of ciliary body', 'ICD9CM_2010'), +('12.5', 'Facilitation of intraocular circulation', 'ICD9CM_2010'), +('12.51', 'Goniopuncture without goniotomy', 'ICD9CM_2010'), +('12.52', 'Goniotomy without goniopuncture', 'ICD9CM_2010'), +('12.53', 'Goniotomy with goniopuncture', 'ICD9CM_2010'), +('12.54', 'Trabeculotomy ab externo', 'ICD9CM_2010'), +('12.55', 'Cyclodialysis', 'ICD9CM_2010'), +('12.59', 'Other facilitation of intraocular circulation', 'ICD9CM_2010'), +('12.6', 'Scleral fistulization', 'ICD9CM_2010'), +('12.61', 'Trephination of sclera with iridectomy', 'ICD9CM_2010'), +('12.62', 'Thermocauterization of sclera with iridectomy', 'ICD9CM_2010'), +('12.63', 'Iridencleisis and iridotasis', 'ICD9CM_2010'), +('12.64', 'Trabeculectomy ab externo', 'ICD9CM_2010'), +('12.65', 'Other scleral fistulization with iridectomy', 'ICD9CM_2010'), +('12.66', 'Postoperative revision of scleral fistulization procedure', 'ICD9CM_2010'), +('12.69', 'Other scleral fistulizing procedure', 'ICD9CM_2010'), +('12.7', 'Other procedures for relief of elevated intraocular pressure', 'ICD9CM_2010'), +('12.71', 'Cyclodiathermy', 'ICD9CM_2010'), +('12.72', 'Cyclocryotherapy', 'ICD9CM_2010'), +('12.73', 'Cyclophotocoagulation', 'ICD9CM_2010'), +('12.74', 'Diminution of ciliary body, not otherwise specified', 'ICD9CM_2010'), +('12.79', 'Other glaucoma procedures', 'ICD9CM_2010'), +('12.8', 'Operations on sclera', 'ICD9CM_2010'), +('12.81', 'Suture of laceration of sclera', 'ICD9CM_2010'), +('12.82', 'Repair of scleral fistula', 'ICD9CM_2010'), +('12.83', 'Revision of operative wound of anterior segment, not elsewhere class', 'ICD9CM_2010'), +('12.84', 'Excision or destruction of lesion of sclera', 'ICD9CM_2010'), +('12.85', 'Repair of scleral staphyloma with graft', 'ICD9CM_2010'), +('12.86', 'Other repair of scleral staphyloma', 'ICD9CM_2010'), +('12.87', 'Scleral reinforcement with graft', 'ICD9CM_2010'), +('12.88', 'Other scleral reinforcement', 'ICD9CM_2010'), +('12.89', 'Other operations on sclera', 'ICD9CM_2010'), +('12.9', 'Other operations on iris, ciliary body, and anterior chamber', 'ICD9CM_2010'), +('12.91', 'Therapeutic evacuation of anterior chamber', 'ICD9CM_2010'), +('12.92', 'Injection into anterior chamber', 'ICD9CM_2010'), +('12.93', 'Removal or destruction of epithelial downgrowth from anterior chambe', 'ICD9CM_2010'), +('12.97', 'Other operations on iris', 'ICD9CM_2010'), +('12.98', 'Other operations on ciliary body', 'ICD9CM_2010'), +('12.99', 'Other operations on anterior chamber', 'ICD9CM_2010'), +('13', 'Operations on lens', 'ICD9CM_2010'), +('13.0', 'Removal of foreign body from lens', 'ICD9CM_2010'), +('13.00', 'Removal of foreign body from lens, not otherwise specified', 'ICD9CM_2010'), +('13.01', 'Removal of foreign body from lens with use of magnet', 'ICD9CM_2010'), +('13.02', 'Removal of foreign body from lens without use of magnet', 'ICD9CM_2010'), +('13.1', 'Intracapsular extraction of lens', 'ICD9CM_2010'), +('13.11', 'Intracapsular extraction of lens by temporal inferior route', 'ICD9CM_2010'), +('13.19', 'Other intracapsular extraction of lens', 'ICD9CM_2010'), +('13.2', 'Extracapsular extraction of lens by linear extraction technique', 'ICD9CM_2010'), +('13.3', 'Extracapsular extraction of lens by simple aspiration (and irrigatio', 'ICD9CM_2010'), +('13.4', 'Extracapsular extraction of lens by fragmentation and aspiration tec', 'ICD9CM_2010'), +('13.41', 'Phacoemulsification and aspiration of cataract', 'ICD9CM_2010'), +('13.42', 'Mechanical phacofragmentation and aspiration of cataract by posterio', 'ICD9CM_2010'), +('13.43', 'Mechanical phacofragmentation and other aspiration of cataract', 'ICD9CM_2010'), +('13.5', 'Other extracapsular extraction of lens', 'ICD9CM_2010'), +('13.51', 'Extracapsular extraction of lens by temporal inferior route', 'ICD9CM_2010'), +('13.59', 'Other extracapsular extraction of lens', 'ICD9CM_2010'), +('13.6', 'Other cataract extraction', 'ICD9CM_2010'), +('13.64', 'Discission of secondary membrane (after cataract)', 'ICD9CM_2010'), +('13.65', 'Excision of secondary membrane (after cataract)', 'ICD9CM_2010'), +('13.66', 'Mechanical fragmentation of secondary membrane (after cataract)', 'ICD9CM_2010'), +('13.69', 'Other cataract extraction', 'ICD9CM_2010'), +('13.7', 'Insertion of prosthetic lens (pseudophakos)', 'ICD9CM_2010'), +('13.70', 'Insertion of pseudophakos, not otherwise specified', 'ICD9CM_2010'), +('13.71', 'Insertion of intraocular lens prosthesis at time of cataract extract', 'ICD9CM_2010'), +('13.72', 'Secondary insertion of intraocular lens prosthesis', 'ICD9CM_2010'), +('13.8', 'Removal of implanted lens', 'ICD9CM_2010'), +('13.9', 'Other operations on lens', 'ICD9CM_2010'), +('13.90', 'Operation on lens, Not Elsewhere Classified', 'ICD9CM_2010'), +('13.91', 'Implatation of intraocular telescope prosthesis', 'ICD9CM_2010'), +('14', 'Operations on retina, choroid, vitreous, and posterior chamber', 'ICD9CM_2010'), +('14.0', 'Removal of foreign body from posterior segment of eye', 'ICD9CM_2010'), +('14.00', 'Removal of foreign body from posterior segment of eye, not otherwise', 'ICD9CM_2010'), +('14.01', 'Removal of foreign body from posterior segment of eye with use of ma', 'ICD9CM_2010'), +('14.02', 'Removal of foreign body from posterior segment of eye without use of', 'ICD9CM_2010'), +('14.1', 'Diagnostic procedures on retina, choroid, vitreous, and posterior ch', 'ICD9CM_2010'), +('14.11', 'Diagnostic aspiration of vitreous', 'ICD9CM_2010'), +('14.19', 'Other diagnostic procedures on retina, choroid, vitreous, and poster', 'ICD9CM_2010'), +('14.2', 'Destruction of lesion of retina and choroid', 'ICD9CM_2010'), +('14.21', 'Destruction of chorioretinal lesion by diathermy', 'ICD9CM_2010'), +('14.22', 'Destruction of chorioretinal lesion by cryotherapy', 'ICD9CM_2010'), +('14.23', 'Destruction of chorioretinal lesion by xenon arc photocoagulation', 'ICD9CM_2010'), +('14.24', 'Destruction of chorioretinal lesion by laser photocoagulation', 'ICD9CM_2010'), +('14.25', 'Destruction of chorioretinal lesion by photocoagulation of unspecifi', 'ICD9CM_2010'), +('14.26', 'Destruction of chorioretinal lesion by radiation therapy', 'ICD9CM_2010'), +('14.27', 'Destruction of chorioretinal lesion by implantation of radiation sou', 'ICD9CM_2010'), +('14.29', 'Other destruction of chorioretinal lesion', 'ICD9CM_2010'), +('14.3', 'Repair of retinal tear', 'ICD9CM_2010'), +('14.31', 'Repair of retinal tear by diathermy', 'ICD9CM_2010'), +('14.32', 'Repair of retinal tear by cryotherapy', 'ICD9CM_2010'), +('14.33', 'Repair of retinal tear by xenon arc photocoagulation', 'ICD9CM_2010'), +('14.34', 'Repair of retinal tear by laser photocoagulation', 'ICD9CM_2010'), +('14.35', 'Repair of retinal tear by photocoagulation of unspecified type', 'ICD9CM_2010'), +('14.39', 'Other repair of retinal tear', 'ICD9CM_2010'), +('14.4', 'Repair of retinal detachment with scleral buckling and implant', 'ICD9CM_2010'), +('14.41', 'Scleral buckling with implant', 'ICD9CM_2010'), +('14.49', 'Other scleral buckling', 'ICD9CM_2010'), +('14.5', 'Other repair of retinal detachment', 'ICD9CM_2010'), +('14.51', 'Repair of retinal detachment with diathermy', 'ICD9CM_2010'), +('14.52', 'Repair of retinal detachment with cryotherapy', 'ICD9CM_2010'), +('14.53', 'Repair of retinal detachment with xenon arc photocoagulation', 'ICD9CM_2010'), +('14.54', 'Repair of retinal detachment with laser photocoagulation', 'ICD9CM_2010'), +('14.55', 'Repair of retinal detachment with photocoagulation of unspecified ty', 'ICD9CM_2010'), +('14.59', 'Other repair of retinal detachment', 'ICD9CM_2010'), +('14.6', 'Removal of surgically implanted material from posterior segment of eye', 'ICD9CM_2010'), +('14.7', 'Operations on vitreous', 'ICD9CM_2010'), +('14.71', 'Removal of vitreous, anterior approach', 'ICD9CM_2010'), +('14.72', 'Other removal of vitreous', 'ICD9CM_2010'), +('14.73', 'Mechanical vitrectomy by anterior approach', 'ICD9CM_2010'), +('14.74', 'Other mechanical vitrectomy', 'ICD9CM_2010'), +('14.75', 'Injection of vitreous substitute', 'ICD9CM_2010'), +('14.79', 'Other operations on vitreous', 'ICD9CM_2010'), +('14.9', 'Other operations on retina, choroid, and posterior chamber', 'ICD9CM_2010'), +('15', 'Operations on extraocular muscles', 'ICD9CM_2010'), +('15.0', 'Diagnostic procedures on extraocular muscles or tendons', 'ICD9CM_2010'), +('15.01', 'Biopsy of extraocular muscle or tendon', 'ICD9CM_2010'), +('15.09', 'Other diagnostic procedures on extraocular muscles and tendons', 'ICD9CM_2010'), +('15.1', 'Operations on one extraocular muscle involving temporary detachment', 'ICD9CM_2010'), +('15.11', 'Recession of one extraocular muscle', 'ICD9CM_2010'), +('15.12', 'Advancement of one extraocular muscle', 'ICD9CM_2010'), +('15.13', 'Resection of one extraocular muscle', 'ICD9CM_2010'), +('15.19', 'Other operations on one extraocular muscle involving temporary detac', 'ICD9CM_2010'), +('15.2', 'Other operations on one extraocular muscle', 'ICD9CM_2010'), +('15.21', 'Lengthening procedure on one extraocular muscle', 'ICD9CM_2010'), +('15.22', 'Shortening procedure on one extraocular muscle', 'ICD9CM_2010'), +('15.29', 'Other operations on one extraocular muscle', 'ICD9CM_2010'), +('15.3', 'Operations on two or more extraocular muscles involving temporary de', 'ICD9CM_2010'), +('15.4', 'Other operations on two or more extraocular muscles, one or both eye', 'ICD9CM_2010'), +('15.5', 'Transposition of extraocular muscles', 'ICD9CM_2010'), +('15.6', 'Revision of extraocular muscle surgery', 'ICD9CM_2010'), +('15.7', 'Repair of injury of extraocular muscle', 'ICD9CM_2010'), +('15.9', 'Other operations on extraocular muscles and tendons', 'ICD9CM_2010'), +('16', 'Operations on orbit and eyeball', 'ICD9CM_2010'), +('16.0', 'Orbitotomy', 'ICD9CM_2010'), +('16.01', 'Orbitotomy with bone flap', 'ICD9CM_2010'), +('16.02', 'Orbitotomy with insertion of orbital implant', 'ICD9CM_2010'), +('16.09', 'Other orbitotomy', 'ICD9CM_2010'), +('16.1', 'Removal of penetrating foreign body from eye, not otherwise specifie', 'ICD9CM_2010'), +('16.2', 'Diagnostic procedures on orbit and eyeball', 'ICD9CM_2010'), +('16.21', 'Ophthalmoscopy', 'ICD9CM_2010'), +('16.22', 'Diagnostic aspiration of orbit', 'ICD9CM_2010'), +('16.23', 'Biopsy of eyeball and orbit', 'ICD9CM_2010'), +('16.29', 'Other diagnostic procedures on orbit and eyeball', 'ICD9CM_2010'), +('16.3', 'Evisceration of eyeball', 'ICD9CM_2010'), +('16.31', 'Removal of ocular contents with synchronous implant into scleral she', 'ICD9CM_2010'), +('16.39', 'Other evisceration of eyeball', 'ICD9CM_2010'), +('16.4', 'Enucleation of eyeball', 'ICD9CM_2010'), +('16.41', 'Enucleation of eyeball with synchronous implant into tenon\'s capsule', 'ICD9CM_2010'), +('16.42', 'Enucleation of eyeball with other synchronous implant', 'ICD9CM_2010'), +('16.49', 'Other enucleation of eyeball', 'ICD9CM_2010'), +('16.5', 'Exenteration of orbital contents', 'ICD9CM_2010'), +('16.51', 'Exenteration of orbit with removal of adjacent structures', 'ICD9CM_2010'), +('16.52', 'Exenteration of orbit with therapeutic removal of orbital bone', 'ICD9CM_2010'), +('16.59', 'Other exenteration of orbit', 'ICD9CM_2010'), +('16.6', 'Secondary procedures after removal of eyeball', 'ICD9CM_2010'), +('16.61', 'Secondary insertion of ocular implant', 'ICD9CM_2010'), +('16.62', 'Revision and reinsertion of ocular implant', 'ICD9CM_2010'), +('16.63', 'Revision of enucleation socket with graft', 'ICD9CM_2010'), +('16.64', 'Other revision of enucleation socket', 'ICD9CM_2010'), +('16.65', 'Secondary graft to exenteration cavity', 'ICD9CM_2010'), +('16.66', 'Other revision of exenteration cavity', 'ICD9CM_2010'), +('16.69', 'Other secondary procedures after removal of eyeball', 'ICD9CM_2010'), +('16.7', 'Removal of ocular or orbital implant', 'ICD9CM_2010'), +('16.71', 'Removal of ocular implant', 'ICD9CM_2010'), +('16.72', 'Removal of orbital implant', 'ICD9CM_2010'), +('16.8', 'Repair of injury of eyeball and orbit', 'ICD9CM_2010'), +('16.81', 'Repair of wound of orbit', 'ICD9CM_2010'), +('16.82', 'Repair of rupture of eyeball', 'ICD9CM_2010'), +('16.89', 'Other repair of injury of eyeball or orbit', 'ICD9CM_2010'), +('16.9', 'Other operations on orbit and eyeball', 'ICD9CM_2010'), +('16.91', 'Retrobulbar injection of therapeutic agent', 'ICD9CM_2010'), +('16.92', 'Excision of lesion of orbit', 'ICD9CM_2010'), +('16.93', 'Excision of lesion of eye, unspecified structure', 'ICD9CM_2010'), +('16.98', 'Other operations on orbit', 'ICD9CM_2010'), +('16.99', 'Other operations on eyeball', 'ICD9CM_2010'), +('17', 'Other miscellaneous procedures', 'ICD9CM_2010'), +('17.1', 'Laparoscopic unilateral repair of inguinal hernia', 'ICD9CM_2010'), +('17.11', 'Laparoscopic repair of direct inguinal hernia with graft or prosthesis', 'ICD9CM_2010'), +('17.12', 'Laparoscopic repair of indirect inguinal hernia with graft or prosthesis', 'ICD9CM_2010'), +('17.13', 'Laparoscopic repair of inguinal hernia with graft or prosthesis,not otherwise specified', 'ICD9CM_2010'), +('17.2', 'Laparoscopic bilateral repair of inguinal hernia', 'ICD9CM_2010'), +('17.21', 'Laparoscopic bilateral repair of direct inguinal hernia with graft or prosthesis', 'ICD9CM_2010'), +('17.22', 'Laparoscopic bilateral repair of indirect inguinal hernia with graft or prosthesis', 'ICD9CM_2010'), +('17.23', 'Laparoscopic bilateral repair of inguinal hernia, one direct and one indirect, with graft or prosthesis', 'ICD9CM_2010'), +('17.24', 'Laparoscopic bilateral repair of inguinal hernia with graft or prosthesis, not otherwise specified', 'ICD9CM_2010'), +('17.3', 'Laparoscopic partial excision of large intestine', 'ICD9CM_2010'), +('17.31', 'Laparoscopic multiple segmental resection of large intestine', 'ICD9CM_2010'), +('17.32', 'Laparoscopic cecectomy', 'ICD9CM_2010'), +('17.33', 'Laparoscopic right hemicolectomy', 'ICD9CM_2010'), +('17.34', 'Laparoscopic resection of transverse colon', 'ICD9CM_2010'), +('17.35', 'Laparoscopic left hemicolectomy', 'ICD9CM_2010'), +('17.36', 'Laparoscopic sigmoidectomy', 'ICD9CM_2010'), +('17.39', 'Other laparoscopic partial excision of large intestine', 'ICD9CM_2010'), +('17.4', 'Robotic assisted procedure', 'ICD9CM_2010'), +('17.41', 'Open robotic assisted procedure', 'ICD9CM_2010'), +('17.42', 'Laparoscopic robotic assisted procedure', 'ICD9CM_2010'), +('17.43', 'Percutaneous robotic assisted procedure', 'ICD9CM_2010'), +('17.44', 'Endoscopic robotic assisted procedure', 'ICD9CM_2010'), +('17.45', 'Thoracoscopic robotic assisted procedure', 'ICD9CM_2010'), +('17.49', 'Other and unspecified robotic assisted procedure', 'ICD9CM_2010'); +INSERT INTO `icd9` (`ID_ICD9`, `Prosedur`, `Versi_ICD9`) VALUES +('17.5', 'Implantation of rechargeable cardiac contractility modulation [CCM]', 'ICD9CM_2010'), +('17.51', 'Implantation of rechargeable cardiac contractility modulation [CCM], total system', 'ICD9CM_2010'), +('17.52', 'Implantation or replacement of cardiac contractility modulation [CCM] rechargeable pulse generator only', 'ICD9CM_2010'), +('17.6', 'Laser interstitial thermal therapy [LITT] of lesion or tissue', 'ICD9CM_2010'), +('17.61', 'Laser interstitial thermal therapy [LITT] of lesion or tissue of brain under guidance', 'ICD9CM_2010'), +('17.62', 'Laser interstitial thermal therapy [LITT] of lesion or tissue of head and neck under guidance', 'ICD9CM_2010'), +('17.63', 'Laser interstitial thermal therapy [LITT] of lesion or tissue of liver under guidance', 'ICD9CM_2010'), +('17.69', 'Laser interstitial thermal therapy [LITT] of lesion or tissue of other and unspecified site under guidance', 'ICD9CM_2010'), +('17.7', 'Intravenous infusion', 'ICD9CM_2010'), +('17.70', 'Intravenous infusion of clofarabine', 'ICD9CM_2010'), +('17.71', 'Non-coronary intra-operative fluorescence vascular angiography [IFVA]', 'ICD9CM_2010'), +('18', 'Operations on external ear', 'ICD9CM_2010'), +('18.0', 'Incision of external ear', 'ICD9CM_2010'), +('18.01', 'Piercing of ear lobe', 'ICD9CM_2010'), +('18.02', 'Incision of external auditory canal', 'ICD9CM_2010'), +('18.09', 'Other incision of external ear', 'ICD9CM_2010'), +('18.1', 'Diagnostic procedures on external ear', 'ICD9CM_2010'), +('18.11', 'Otoscopy', 'ICD9CM_2010'), +('18.12', 'Biopsy of external ear', 'ICD9CM_2010'), +('18.19', 'Other diagnostic procedures on external ear', 'ICD9CM_2010'), +('18.2', 'Excision or destruction of lesion of external ear', 'ICD9CM_2010'), +('18.21', 'Excision of preauricular sinus', 'ICD9CM_2010'), +('18.29', 'Excision or destruction of other lesion of external ear', 'ICD9CM_2010'), +('18.3', 'Other excision of external ear', 'ICD9CM_2010'), +('18.31', 'Radical excision of lesion of external ear', 'ICD9CM_2010'), +('18.39', 'Other excision of external ear', 'ICD9CM_2010'), +('18.4', 'Suture of laceration of external ear', 'ICD9CM_2010'), +('18.5', 'Surgical correction of prominent ear', 'ICD9CM_2010'), +('18.6', 'Reconstruction of external auditory canal', 'ICD9CM_2010'), +('18.7', 'Other plastic repair of external ear', 'ICD9CM_2010'), +('18.71', 'Construction of auricle of ear', 'ICD9CM_2010'), +('18.72', 'Reattachment of amputated ear', 'ICD9CM_2010'), +('18.79', 'Other plastic repair of external ear', 'ICD9CM_2010'), +('18.9', 'Other operations on external ear', 'ICD9CM_2010'), +('19', 'Reconstructive operations on middle ear', 'ICD9CM_2010'), +('19.0', 'Stapes mobilization', 'ICD9CM_2010'), +('19.1', 'Stapedectomy', 'ICD9CM_2010'), +('19.11', 'Stapedectomy with incus replacement', 'ICD9CM_2010'), +('19.19', 'Other stapedectomy', 'ICD9CM_2010'), +('19.2', 'Revision of stapedectomy', 'ICD9CM_2010'), +('19.21', 'Revision of stapedectomy with incus replacement', 'ICD9CM_2010'), +('19.29', 'Other revision of stapedectomy', 'ICD9CM_2010'), +('19.3', 'Other operations on ossicular chain', 'ICD9CM_2010'), +('19.4', 'Myringoplasty', 'ICD9CM_2010'), +('19.5', 'Other tympanoplasty', 'ICD9CM_2010'), +('19.52', 'Type ii tympanoplasty', 'ICD9CM_2010'), +('19.53', 'Type iii tympanoplasty', 'ICD9CM_2010'), +('19.54', 'Type iv tympanoplasty', 'ICD9CM_2010'), +('19.55', 'Type v tympanoplasty', 'ICD9CM_2010'), +('19.6', 'Revision of tympanoplasty', 'ICD9CM_2010'), +('19.9', 'Other repair of middle ear', 'ICD9CM_2010'), +('20', 'Other operations on middle and inner ear', 'ICD9CM_2010'), +('20.0', 'Myringotomy', 'ICD9CM_2010'), +('20.01', 'Myringotomy with insertion of tube', 'ICD9CM_2010'), +('20.09', 'Other myringotomy', 'ICD9CM_2010'), +('20.1', 'Removal of tympanostomy tube', 'ICD9CM_2010'), +('20.2', 'Incision of mastoid and middle ear', 'ICD9CM_2010'), +('20.21', 'Incision of mastoid', 'ICD9CM_2010'), +('20.22', 'Incision of petrous pyramid air cells', 'ICD9CM_2010'), +('20.23', 'Incision of middle ear', 'ICD9CM_2010'), +('20.3', 'Diagnostic procedures on middle and inner ear', 'ICD9CM_2010'), +('20.31', 'Electrocochleography', 'ICD9CM_2010'), +('20.32', 'Biopsy of middle and inner ear', 'ICD9CM_2010'), +('20.39', 'Other diagnostic procedures on middle and inner ear', 'ICD9CM_2010'), +('20.4', 'Mastoidectomy', 'ICD9CM_2010'), +('20.41', 'Simple mastoidectomy', 'ICD9CM_2010'), +('20.42', 'Radical mastoidectomy', 'ICD9CM_2010'), +('20.49', 'Other mastoidectomy', 'ICD9CM_2010'), +('20.5', 'Other excision of middle ear', 'ICD9CM_2010'), +('20.51', 'Excision of lesion of middle ear', 'ICD9CM_2010'), +('20.59', 'Other excision of middle ear', 'ICD9CM_2010'), +('20.6', 'Fenestration of inner ear', 'ICD9CM_2010'), +('20.61', 'Fenestration of inner ear (initial)', 'ICD9CM_2010'), +('20.62', 'Revision of fenestration of inner ear', 'ICD9CM_2010'), +('20.7', 'Incision, excision, and destruction of inner ear', 'ICD9CM_2010'), +('20.71', 'Endolymphatic shunt', 'ICD9CM_2010'), +('20.72', 'Injection into inner ear', 'ICD9CM_2010'), +('20.79', 'Other incision, excision, and destruction of inner ear', 'ICD9CM_2010'), +('20.8', 'Operations on eustachian tube', 'ICD9CM_2010'), +('20.9', 'Other operations on inner and middle ear', 'ICD9CM_2010'), +('20.91', 'Tympanosympathectomy', 'ICD9CM_2010'), +('20.92', 'Revision of mastoidectomy', 'ICD9CM_2010'), +('20.93', 'Repair of oval and round windows', 'ICD9CM_2010'), +('20.94', 'Injection of tympanum', 'ICD9CM_2010'), +('20.95', 'Implantation of electromagnetic hearing device', 'ICD9CM_2010'), +('20.96', 'Implantation or replacement of cochlear prosthetic device, not otherwise specified', 'ICD9CM_2010'), +('20.97', 'Implantation or replacement of cochlear prosthetic device, single channel', 'ICD9CM_2010'), +('20.98', 'Implantation or replacement of cochlear prosthetic device, multiple channel', 'ICD9CM_2010'), +('20.99', 'Other operations on middle and inner ear', 'ICD9CM_2010'), +('21', 'Operations on nose', 'ICD9CM_2010'), +('21.0', 'Control of epistaxis', 'ICD9CM_2010'), +('21.00', 'Control of epistaxis, not otherwise specified', 'ICD9CM_2010'), +('21.01', 'Control of epistaxis by anterior nasal packing', 'ICD9CM_2010'), +('21.02', 'Control of epistaxis by posterior (and anterior) packing', 'ICD9CM_2010'), +('21.03', 'Control of epistaxis by cauterization (and packing)', 'ICD9CM_2010'), +('21.04', 'Control of epistaxis by ligation of ethmoidal arteries', 'ICD9CM_2010'), +('21.05', 'Control of epistaxis by (transantral) ligation of the maxillary arte', 'ICD9CM_2010'), +('21.06', 'Control of epistaxis by ligation of the external carotid artery', 'ICD9CM_2010'), +('21.07', 'Control of epistaxis by excision of nasal mucosa and skin grafting o', 'ICD9CM_2010'), +('21.09', 'Control of epistaxis by other means', 'ICD9CM_2010'), +('21.1', 'Incision of nose', 'ICD9CM_2010'), +('21.2', 'Diagnostic procedures on nose', 'ICD9CM_2010'), +('21.21', 'Rhinoscopy', 'ICD9CM_2010'), +('21.22', 'Biopsy of nose', 'ICD9CM_2010'), +('21.29', 'Other diagnostic procedures on nose', 'ICD9CM_2010'), +('21.3', 'Local excision or destruction of lesion of nose', 'ICD9CM_2010'), +('21.30', 'Excision or destruction of lesion of nose, not otherwise specified', 'ICD9CM_2010'), +('21.31', 'Local excision or destruction of intranasal lesion', 'ICD9CM_2010'), +('21.32', 'Local excision or destruction of other lesion of nose', 'ICD9CM_2010'), +('21.4', 'Resection of nose', 'ICD9CM_2010'), +('21.5', 'Submucous resection of nasal septum', 'ICD9CM_2010'), +('21.6', 'Turbinectomy', 'ICD9CM_2010'), +('21.61', 'Turbinectomy by diathermy or cryosurgery', 'ICD9CM_2010'), +('21.62', 'Fracture of the turbinates', 'ICD9CM_2010'), +('21.69', 'Other turbinectomy', 'ICD9CM_2010'), +('21.7', 'Reduction of nasal fracture', 'ICD9CM_2010'), +('21.71', 'Closed reduction of nasal fracture', 'ICD9CM_2010'), +('21.72', 'Open reduction of nasal fracture', 'ICD9CM_2010'), +('21.8', 'Repair and plastic operations on the nose', 'ICD9CM_2010'), +('21.81', 'Suture of laceration of nose', 'ICD9CM_2010'), +('21.82', 'Closure of nasal fistula', 'ICD9CM_2010'), +('21.83', 'Total nasal reconstruction', 'ICD9CM_2010'), +('21.84', 'Revision rhinoplasty', 'ICD9CM_2010'), +('21.85', 'Augmentation rhinoplasty', 'ICD9CM_2010'), +('21.86', 'Limited rhinoplasty', 'ICD9CM_2010'), +('21.87', 'Other rhinoplasty', 'ICD9CM_2010'), +('21.88', 'Other septoplasty', 'ICD9CM_2010'), +('21.89', 'Other repair and plastic operations on nose', 'ICD9CM_2010'), +('21.9', 'Other operations on nose', 'ICD9CM_2010'), +('21.91', 'Lysis of adhesions of nose', 'ICD9CM_2010'), +('21.99', 'Other operations on nose', 'ICD9CM_2010'), +('22', 'Operations on nasal sinuses', 'ICD9CM_2010'), +('22.0', 'Aspiration and lavage of nasal sinus', 'ICD9CM_2010'), +('22.00', 'Aspiration and lavage of nasal sinus, not otherwise specified', 'ICD9CM_2010'), +('22.01', 'Puncture of nasal sinus for aspiration or lavage', 'ICD9CM_2010'), +('22.02', 'Aspiration or lavage of nasal sinus through natural ostium', 'ICD9CM_2010'), +('22.1', 'Diagnostic procedures on nasal sinus', 'ICD9CM_2010'), +('22.11', 'Closed (endoscopic) (needle) biopsy of nasal sinus', 'ICD9CM_2010'), +('22.12', 'Open biopsy of nasal sinus', 'ICD9CM_2010'), +('22.19', 'Other diagnostic procedures on nasal sinuses', 'ICD9CM_2010'), +('22.2', 'Intranasal antrotomy', 'ICD9CM_2010'), +('22.3', 'External maxillary antrotomy', 'ICD9CM_2010'), +('22.31', 'Radical maxillary antrotomy', 'ICD9CM_2010'), +('22.39', 'Other external maxillary antrotomy', 'ICD9CM_2010'), +('22.4', 'Frontal sinusotomy and sinusectomy', 'ICD9CM_2010'), +('22.41', 'Frontal sinusotomy', 'ICD9CM_2010'), +('22.42', 'Frontal sinusectomy', 'ICD9CM_2010'), +('22.5', 'Other nasal sinusotomy', 'ICD9CM_2010'), +('22.50', 'Sinusotomy, not otherwise specified', 'ICD9CM_2010'), +('22.51', 'Ethmoidotomy', 'ICD9CM_2010'), +('22.52', 'Sphenoidotomy', 'ICD9CM_2010'), +('22.53', 'Incision of multiple nasal sinuses', 'ICD9CM_2010'), +('22.6', 'Other nasal sinusectomy', 'ICD9CM_2010'), +('22.60', 'Sinusectomy, not otherwise specified', 'ICD9CM_2010'), +('22.61', 'Excision of lesion of maxillary sinus with caldwell-luc approach', 'ICD9CM_2010'), +('22.62', 'Excision of lesion of maxillary sinus with other approach', 'ICD9CM_2010'), +('22.63', 'Ethmoidectomy', 'ICD9CM_2010'), +('22.64', 'Sphenoidectomy', 'ICD9CM_2010'), +('22.7', 'Repair of nasal sinus', 'ICD9CM_2010'), +('22.71', 'Closure of nasal sinus fistula', 'ICD9CM_2010'), +('22.79', 'Other repair of nasal sinus', 'ICD9CM_2010'), +('22.9', 'Other operations on nasal sinuses', 'ICD9CM_2010'), +('23', 'Removal and restoration of teeth', 'ICD9CM_2010'), +('23.0', 'Forceps extraction of tooth', 'ICD9CM_2010'), +('23.01', 'Extraction of deciduous tooth', 'ICD9CM_2010'), +('23.09', 'Extraction of other tooth', 'ICD9CM_2010'), +('23.1', 'Surgical removal of tooth', 'ICD9CM_2010'), +('23.11', 'Removal of residual root', 'ICD9CM_2010'), +('23.19', 'Other surgical extraction of tooth', 'ICD9CM_2010'), +('23.2', 'Restoration of tooth by filling', 'ICD9CM_2010'), +('23.3', 'Restoration of tooth by inlay', 'ICD9CM_2010'), +('23.4', 'Other dental restoration', 'ICD9CM_2010'), +('23.41', 'Application of crown', 'ICD9CM_2010'), +('23.42', 'Insertion of fixed bridge', 'ICD9CM_2010'), +('23.43', 'Insertion of removable bridge', 'ICD9CM_2010'), +('23.49', 'Other dental restoration', 'ICD9CM_2010'), +('23.5', 'Implantation of tooth', 'ICD9CM_2010'), +('23.6', 'Prosthetic dental implant', 'ICD9CM_2010'), +('23.7', 'Apicoectomy and root canal therapy', 'ICD9CM_2010'), +('23.70', 'Root canal, not otherwise specified', 'ICD9CM_2010'), +('23.71', 'Root canal therapy with irrigation', 'ICD9CM_2010'), +('23.72', 'Root canal therapy with apicoectomy', 'ICD9CM_2010'), +('23.73', 'Apicoectomy', 'ICD9CM_2010'), +('24', 'Other operations on teeth, gums, and alveoli', 'ICD9CM_2010'), +('24.0', 'Incision of gum or alveolar bone', 'ICD9CM_2010'), +('24.1', 'Diagnostic procedures on teeth, gums, and alveoli', 'ICD9CM_2010'), +('24.11', 'Biopsy of gum', 'ICD9CM_2010'), +('24.12', 'Biopsy of alveolus', 'ICD9CM_2010'), +('24.19', 'Other diagnostic procedures on teeth, gums, and alveoli', 'ICD9CM_2010'), +('24.2', 'Gingivoplasty', 'ICD9CM_2010'), +('24.3', 'Other operations on gum', 'ICD9CM_2010'), +('24.31', 'Excision of lesion or tissue of gum', 'ICD9CM_2010'), +('24.32', 'Suture of laceration of gum', 'ICD9CM_2010'), +('24.39', 'Other operations on gum', 'ICD9CM_2010'), +('24.4', 'Excision of dental lesion of jaw', 'ICD9CM_2010'), +('24.5', 'Alveoloplasty', 'ICD9CM_2010'), +('24.6', 'Exposure of tooth', 'ICD9CM_2010'), +('24.7', 'Application of orthodontic appliance', 'ICD9CM_2010'), +('24.8', 'Other orthodontic operation', 'ICD9CM_2010'), +('24.9', 'Other dental operations', 'ICD9CM_2010'), +('24.91', 'Extension or deepening of buccolabial or lingual sulcus', 'ICD9CM_2010'), +('24.99', 'Other dental operations', 'ICD9CM_2010'), +('25', 'Operations on tongue', 'ICD9CM_2010'), +('25.0', 'Diagnostic procedures on tongue', 'ICD9CM_2010'), +('25.01', 'Closed (needle) biopsy of tongue', 'ICD9CM_2010'), +('25.02', 'Open biopsy of tongue', 'ICD9CM_2010'), +('25.09', 'Other diagnostic procedures on tongue', 'ICD9CM_2010'), +('25.1', 'Excision or destruction of lesion or tissue of tongue', 'ICD9CM_2010'), +('25.2', 'Partial glossectomy', 'ICD9CM_2010'), +('25.3', 'Complete glossectomy', 'ICD9CM_2010'), +('25.4', 'Radical glossectomy', 'ICD9CM_2010'), +('25.5', 'Repair of tongue and glossoplasty', 'ICD9CM_2010'), +('25.51', 'Suture of laceration of tongue', 'ICD9CM_2010'), +('25.59', 'Other repair and plastic operations on tongue', 'ICD9CM_2010'), +('25.9', 'Other operations on tongue', 'ICD9CM_2010'), +('25.91', 'Lingual frenotomy', 'ICD9CM_2010'), +('25.92', 'Lingual frenectomy', 'ICD9CM_2010'), +('25.93', 'Lysis of adhesions of tongue', 'ICD9CM_2010'), +('25.94', 'Other glossotomy', 'ICD9CM_2010'), +('25.99', 'Other operations on tongue', 'ICD9CM_2010'), +('26', 'Operations on salivary glands and ducts', 'ICD9CM_2010'), +('26.0', 'Incision of salivary gland or duct', 'ICD9CM_2010'), +('26.1', 'Diagnostic procedures on salivary glands and ducts', 'ICD9CM_2010'), +('26.11', 'Closed (needle) biopsy of salivary gland or duct', 'ICD9CM_2010'), +('26.12', 'Open biopsy of salivary gland or duct', 'ICD9CM_2010'), +('26.19', 'Other diagnostic procedures on salivary glands and ducts', 'ICD9CM_2010'), +('26.2', 'Excision of lesion of salivary gland', 'ICD9CM_2010'), +('26.21', 'Marsupialization of salivary gland cyst', 'ICD9CM_2010'), +('26.29', 'Other excision of salivary gland lesion', 'ICD9CM_2010'), +('26.3', 'Sialoadenectomy', 'ICD9CM_2010'), +('26.30', 'Sialoadenectomy, not otherwise specified', 'ICD9CM_2010'), +('26.31', 'Partial sialoadenectomy', 'ICD9CM_2010'), +('26.32', 'Complete sialoadenectomy', 'ICD9CM_2010'), +('26.4', 'Repair of salivary gland or duct', 'ICD9CM_2010'), +('26.41', 'Suture of laceration of salivary gland', 'ICD9CM_2010'), +('26.42', 'Closure of salivary fistula', 'ICD9CM_2010'), +('26.49', 'Other repair and plastic operations on salivary gland or duct', 'ICD9CM_2010'), +('26.9', 'Other operations on salivary gland or duct', 'ICD9CM_2010'), +('26.91', 'Probing of salivary duct', 'ICD9CM_2010'), +('26.99', 'Other operations on salivary gland or duct', 'ICD9CM_2010'), +('27', 'Other operations on mouth and face', 'ICD9CM_2010'), +('27.0', 'Drainage of face and floor of mouth', 'ICD9CM_2010'), +('27.1', 'Incision of palate', 'ICD9CM_2010'), +('27.2', 'Diagnostic procedures on oral cavity', 'ICD9CM_2010'), +('27.21', 'Biopsy of bony palate', 'ICD9CM_2010'), +('27.22', 'Biopsy of uvula and soft palate', 'ICD9CM_2010'), +('27.23', 'Biopsy of lip', 'ICD9CM_2010'), +('27.24', 'Biopsy of mouth, unspecified structure', 'ICD9CM_2010'), +('27.29', 'Other diagnostic procedures on oral cavity', 'ICD9CM_2010'), +('27.3', 'Excision of lesion or tissue of bony palate', 'ICD9CM_2010'), +('27.31', 'Local excision or destruction of lesion or tissue of bony palate', 'ICD9CM_2010'), +('27.32', 'Wide excision or destruction of lesion or tissue of bony palate', 'ICD9CM_2010'), +('27.4', 'Excision of other parts of mouth', 'ICD9CM_2010'), +('27.41', 'Labial frenectomy', 'ICD9CM_2010'), +('27.42', 'Wide excision of lesion of lip', 'ICD9CM_2010'), +('27.43', 'Other excision of lesion or tissue of lip', 'ICD9CM_2010'), +('27.49', 'Other excision of mouth', 'ICD9CM_2010'), +('27.5', 'Plastic repair of mouth', 'ICD9CM_2010'), +('27.51', 'Suture of laceration of lip', 'ICD9CM_2010'), +('27.52', 'Suture of laceration of other part of mouth', 'ICD9CM_2010'), +('27.53', 'Closure of fistula of mouth', 'ICD9CM_2010'), +('27.54', 'Repair of cleft lip', 'ICD9CM_2010'), +('27.55', 'Full-thickness skin graft to lip and mouth', 'ICD9CM_2010'), +('27.56', 'Other skin graft to lip and mouth', 'ICD9CM_2010'), +('27.57', 'Attachment of pedicle or flap graft to lip and mouth', 'ICD9CM_2010'), +('27.59', 'Other plastic repair of mouth', 'ICD9CM_2010'), +('27.6', 'Palatoplasty', 'ICD9CM_2010'), +('27.61', 'Suture of laceration of palate', 'ICD9CM_2010'), +('27.62', 'Correction of cleft palate', 'ICD9CM_2010'), +('27.63', 'Revision of cleft palate repair', 'ICD9CM_2010'), +('27.64', 'Insertion of palatal implant', 'ICD9CM_2010'), +('27.69', 'Other plastic repair of palate', 'ICD9CM_2010'), +('27.7', 'Operations on uvula', 'ICD9CM_2010'), +('27.71', 'Incision of uvula', 'ICD9CM_2010'), +('27.72', 'Excision of uvula', 'ICD9CM_2010'), +('27.73', 'Repair of uvula', 'ICD9CM_2010'), +('27.79', 'Other operations on uvula', 'ICD9CM_2010'), +('27.9', 'Other operations on mouth and face', 'ICD9CM_2010'), +('27.91', 'Labial frenotomy', 'ICD9CM_2010'), +('27.92', 'Incision of mouth, unspecified structure', 'ICD9CM_2010'), +('27.99', 'Other operations on oral cavity', 'ICD9CM_2010'), +('28', 'Operations on tonsils and adenoids', 'ICD9CM_2010'), +('28.0', 'Incision and drainage of tonsil and peritonsillar structures', 'ICD9CM_2010'), +('28.1', 'Diagnostic procedures on tonsils and adenoids', 'ICD9CM_2010'), +('28.11', 'Biopsy of tonsils and adenoids', 'ICD9CM_2010'), +('28.19', 'Other diagnostic procedures on tonsils and adenoids', 'ICD9CM_2010'), +('28.2', 'Tonsillectomy without adenoidectomy', 'ICD9CM_2010'), +('28.3', 'Tonsillectomy with adenoidectomy', 'ICD9CM_2010'), +('28.4', 'Excision of tonsil tag', 'ICD9CM_2010'), +('28.5', 'Excision of lingual tonsil', 'ICD9CM_2010'), +('28.6', 'Adenoidectomy without tonsillectomy', 'ICD9CM_2010'), +('28.7', 'Control of hemorrhage after tonsillectomy and adenoidectomy', 'ICD9CM_2010'), +('28.9', 'Other operations on tonsils and adenoids', 'ICD9CM_2010'), +('28.91', 'Removal of foreign body from tonsil and adenoid by incision', 'ICD9CM_2010'), +('28.92', 'Excision of lesion of tonsil and adenoid', 'ICD9CM_2010'), +('28.99', 'Other operations on tonsils and adenoids', 'ICD9CM_2010'), +('29', 'Operations on pharynx', 'ICD9CM_2010'), +('29.0', 'Pharyngotomy', 'ICD9CM_2010'), +('29.1', 'Diagnostic procedures on pharynx', 'ICD9CM_2010'), +('29.11', 'Pharyngoscopy', 'ICD9CM_2010'), +('29.12', 'Pharyngeal biopsy', 'ICD9CM_2010'), +('29.19', 'Other diagnostic procedures on pharynx', 'ICD9CM_2010'), +('29.2', 'Excision of branchial cleft cyst or vestige', 'ICD9CM_2010'), +('29.3', 'Excision or destruction of lesion or tissue of pharynx', 'ICD9CM_2010'), +('29.31', 'Cricopharyngeal myotomy', 'ICD9CM_2010'), +('29.32', 'Pharyngeal diverticulectomy', 'ICD9CM_2010'), +('29.33', 'Pharyngectomy (partial)', 'ICD9CM_2010'), +('29.39', 'Other excision or destruction of lesion or tissue of pharynx', 'ICD9CM_2010'), +('29.4', 'Plastic operation on pharynx', 'ICD9CM_2010'), +('29.5', 'Other repair of pharynx', 'ICD9CM_2010'), +('29.51', 'Suture of laceration of pharynx', 'ICD9CM_2010'), +('29.52', 'Closure of branchial cleft fistula', 'ICD9CM_2010'), +('29.53', 'Closure of other fistula of pharynx', 'ICD9CM_2010'), +('29.54', 'Lysis of pharyngeal adhesions', 'ICD9CM_2010'), +('29.59', 'Other repair of pharynx', 'ICD9CM_2010'), +('29.9', 'Other operations on pharynx', 'ICD9CM_2010'), +('29.91', 'Dilation of pharynx', 'ICD9CM_2010'), +('29.92', 'Division of glossopharyngeal nerve', 'ICD9CM_2010'), +('29.99', 'Other operations on pharynx', 'ICD9CM_2010'), +('30', 'Excision of larynx', 'ICD9CM_2010'), +('30.0', 'Excision or destruction of lesion or tissue of larynx', 'ICD9CM_2010'), +('30.01', 'Marsupialization of laryngeal cyst', 'ICD9CM_2010'), +('30.09', 'Other excision or destruction of lesion or tissue of larynx', 'ICD9CM_2010'), +('30.1', 'Hemilaryngectomy', 'ICD9CM_2010'), +('30.2', 'Other partial laryngectomy', 'ICD9CM_2010'), +('30.21', 'Epiglottidectomy', 'ICD9CM_2010'), +('30.22', 'Vocal cordectomy', 'ICD9CM_2010'), +('30.29', 'Other partial laryngectomy', 'ICD9CM_2010'), +('30.3', 'Complete laryngectomy', 'ICD9CM_2010'), +('30.4', 'Radical laryngectomy', 'ICD9CM_2010'), +('31', 'Other operations on larynx and trachea', 'ICD9CM_2010'), +('31.0', 'Injection of larynx', 'ICD9CM_2010'), +('31.1', 'Temporary tracheostomy', 'ICD9CM_2010'), +('31.2', 'Permanent tracheostomy', 'ICD9CM_2010'), +('31.21', 'Mediastinal tracheostomy', 'ICD9CM_2010'), +('31.29', 'Other permanent tracheostomy', 'ICD9CM_2010'), +('31.3', 'Other incision of larynx or trachea', 'ICD9CM_2010'), +('31.4', 'Diagnostic procedures on larynx and trachea', 'ICD9CM_2010'), +('31.41', 'Tracheoscopy through artificial stoma', 'ICD9CM_2010'), +('31.42', 'Laryngoscopy and other tracheoscopy', 'ICD9CM_2010'), +('31.43', 'Closed (endoscopic) biopsy of larynx', 'ICD9CM_2010'), +('31.44', 'Closed (endoscopic) biopsy of trachea', 'ICD9CM_2010'), +('31.45', 'Open biopsy of larynx or trachea', 'ICD9CM_2010'), +('31.48', 'Other diagnostic procedures on larynx', 'ICD9CM_2010'), +('31.49', 'Other diagnostic procedures on trachea', 'ICD9CM_2010'), +('31.5', 'Local excision or destruction of lesion or tissue of trachea', 'ICD9CM_2010'), +('31.6', 'Repair of larynx', 'ICD9CM_2010'), +('31.61', 'Suture of laceration of larynx', 'ICD9CM_2010'), +('31.62', 'Closure of fistula of larynx', 'ICD9CM_2010'), +('31.63', 'Revision of laryngostomy', 'ICD9CM_2010'), +('31.64', 'Repair of laryngeal fracture', 'ICD9CM_2010'), +('31.69', 'Other repair of larynx', 'ICD9CM_2010'), +('31.7', 'Repair and plastic operations on trachea', 'ICD9CM_2010'), +('31.71', 'Suture of laceration of trachea', 'ICD9CM_2010'), +('31.72', 'Closure of external fistula of trachea', 'ICD9CM_2010'), +('31.73', 'Closure of other fistula of trachea', 'ICD9CM_2010'), +('31.74', 'Revision of tracheostomy', 'ICD9CM_2010'), +('31.75', 'Reconstruction of trachea and construction of artificial larynx', 'ICD9CM_2010'), +('31.79', 'Other repair and plastic operations on trachea', 'ICD9CM_2010'), +('31.9', 'Other operations on larynx and trachea', 'ICD9CM_2010'), +('31.91', 'Division of laryngeal nerve', 'ICD9CM_2010'), +('31.92', 'Lysis of adhesions of trachea or larynx', 'ICD9CM_2010'), +('31.93', 'Replacement of laryngeal or tracheal stent', 'ICD9CM_2010'), +('31.94', 'Injection of locally acting therapeutic substance into trachea', 'ICD9CM_2010'), +('31.95', 'Tracheoesophageal fistulization', 'ICD9CM_2010'), +('31.98', 'Other operations on larynx', 'ICD9CM_2010'), +('31.99', 'Other operations on trachea', 'ICD9CM_2010'), +('32', 'Excision of lung and bronchus', 'ICD9CM_2010'), +('32.0', 'Local excision or destruction of lesion or tissue of bronchus', 'ICD9CM_2010'), +('32.01', 'Endoscopic excision or destruction of lesion or tissue of bronchus', 'ICD9CM_2010'), +('32.09', 'Other local excision or destruction of lesion or tissue of bronchus', 'ICD9CM_2010'), +('32.1', 'Other excision of bronchus', 'ICD9CM_2010'), +('32.2', 'Local excision or destruction of lesion or tissue of lung', 'ICD9CM_2010'), +('32.20', 'Thoracoscopic excision of lesion or tissue of lung', 'ICD9CM_2010'), +('32.21', 'Plication of emphysematous bleb', 'ICD9CM_2010'), +('32.22', 'Lung volume reduction surgery', 'ICD9CM_2010'), +('32.23', 'Open ablation of lung lesion or tissue', 'ICD9CM_2010'), +('32.24', 'Percutaneous ablation of lung lesion or tissue', 'ICD9CM_2010'), +('32.25', 'Thoracoscopic ablation of lung lesion or tissue', 'ICD9CM_2010'), +('32.26', 'Other and unspecified ablation of lung lesion or tissue', 'ICD9CM_2010'), +('32.27', 'Bronchoscopic bronchial thermoplasty, ablation of airway smooth muscle', 'ICD9CM_2010'), +('32.28', 'Endoscopic excision or destruction of lesion or tissue of lung', 'ICD9CM_2010'), +('32.29', 'Other local excision or destruction of lesion or tissue of lung', 'ICD9CM_2010'), +('32.3', 'Segmental resection of lung', 'ICD9CM_2010'), +('32.30', 'Thoracoscopic segmental resection of lung', 'ICD9CM_2010'), +('32.39', 'Other and unspecified segmental resection of lung', 'ICD9CM_2010'), +('32.4', 'Lobectomy of lung', 'ICD9CM_2010'), +('32.41', 'Thoracoscopic lobectomy of lung', 'ICD9CM_2010'), +('32.49', 'Other lobectomy of lung', 'ICD9CM_2010'), +('32.5', 'Pneumonectomy', 'ICD9CM_2010'), +('32.50', 'Thoracoscopic pneumonectomy', 'ICD9CM_2010'), +('32.59', 'Other and unspecified pneumonectomy', 'ICD9CM_2010'), +('32.6', 'Radical dissection of thoracic structures', 'ICD9CM_2010'), +('32.9', 'Other excision of lung', 'ICD9CM_2010'), +('33', 'Other operations on lung and bronchus', 'ICD9CM_2010'), +('33.0', 'Incision of bronchus', 'ICD9CM_2010'), +('33.1', 'Incision of lung', 'ICD9CM_2010'), +('33.2', 'Diagnostic procedures on lung and bronchus', 'ICD9CM_2010'), +('33.20', 'Thoracoscopic lung biopsy', 'ICD9CM_2010'), +('33.21', 'Bronchoscopy through artificial stoma', 'ICD9CM_2010'), +('33.22', 'Fiber-optic bronchoscopy', 'ICD9CM_2010'), +('33.23', 'Other bronchoscopy', 'ICD9CM_2010'), +('33.24', 'Closed (endoscopic) biopsy of bronchus', 'ICD9CM_2010'), +('33.25', 'Open biopsy of bronchus', 'ICD9CM_2010'), +('33.26', 'Closed (percutaneous)(needle) biopsy of lung', 'ICD9CM_2010'), +('33.27', 'Endoscopic biopsy of lung (closed)', 'ICD9CM_2010'), +('33.28', 'Open biopsy of lung', 'ICD9CM_2010'), +('33.29', 'Other diagnostic procedures on lung or bronchus', 'ICD9CM_2010'), +('33.3', 'Surgical collapse of lung', 'ICD9CM_2010'), +('33.31', 'Destruction of phrenic nerve for collapse of lung', 'ICD9CM_2010'), +('33.32', 'Artificial pneumothorax for collapse of lung', 'ICD9CM_2010'), +('33.33', 'Pneumoperitoneum for collapse of lung', 'ICD9CM_2010'), +('33.34', 'Thoracoplasty', 'ICD9CM_2010'), +('33.39', 'Other surgical collapse of lung', 'ICD9CM_2010'), +('33.4', 'Repair and plastic operation on lung and bronchus', 'ICD9CM_2010'), +('33.41', 'Suture of laceration of bronchus', 'ICD9CM_2010'), +('33.42', 'Closure of bronchial fistula', 'ICD9CM_2010'), +('33.43', 'Closure of laceration of lung', 'ICD9CM_2010'), +('33.48', 'Other repair and plastic operations on bronchus', 'ICD9CM_2010'), +('33.49', 'Other repair and plastic operations on lung', 'ICD9CM_2010'), +('33.5', 'Lung transplant', 'ICD9CM_2010'), +('33.50', 'Lung Transplantation, not otherwise specified', 'ICD9CM_2010'), +('33.51', 'Uniteral lung transplantation', 'ICD9CM_2010'), +('33.52', 'Bilateral lung transplantation', 'ICD9CM_2010'), +('33.6', 'Combined heart-lung transplantation', 'ICD9CM_2010'), +('33.7', 'Other Endoscopic procedures in bronchus or lung', 'ICD9CM_2010'), +('33.71', 'Endoscopic insertion or replacement of bronchial valve(s)', 'ICD9CM_2010'), +('33.72', 'Endoscopic pulmonary airway flow measurement', 'ICD9CM_2010'), +('33.73', 'Endoscopic insertion or replacement of bronchial valve(s), multiple lobes', 'ICD9CM_2010'), +('33.78', 'Endoscopic removal of bronchial device(s) or substances', 'ICD9CM_2010'), +('33.79', 'Endoscopic insertion of other bronchial device or substances', 'ICD9CM_2010'), +('33.9', 'Other operations on lung and bronchus', 'ICD9CM_2010'), +('33.91', 'Bronchial dilation', 'ICD9CM_2010'), +('33.92', 'Ligation of bronchus', 'ICD9CM_2010'), +('33.93', 'Puncture of lung', 'ICD9CM_2010'), +('33.98', 'Other operations on bronchus', 'ICD9CM_2010'), +('33.99', 'Other operations on lung', 'ICD9CM_2010'), +('34', 'Operations on chest wall, pleura, mediastinum, and diaphragm', 'ICD9CM_2010'), +('34.0', 'Incision of chest wall and pleura', 'ICD9CM_2010'), +('34.01', 'Incision of chest wall', 'ICD9CM_2010'), +('34.02', 'Exploratory thoracotomy', 'ICD9CM_2010'), +('34.03', 'Reopening of recent thoracotomy site', 'ICD9CM_2010'), +('34.04', 'Insertion of intercostal catheter for drainage', 'ICD9CM_2010'), +('34.05', 'Creation of pleuroperitoneal shunt', 'ICD9CM_2010'), +('34.06', 'Thoracoscopic drainage of pleural cavity', 'ICD9CM_2010'), +('34.09', 'Other incision of pleura', 'ICD9CM_2010'), +('34.1', 'Incision of mediastinum', 'ICD9CM_2010'), +('34.2', 'Diagnostic procedures on chest wall, pleura, mediastinum, and diaphr', 'ICD9CM_2010'), +('34.20', 'Thoracoscopic pleural biopsy', 'ICD9CM_2010'), +('34.21', 'Transpleural thoracoscopy', 'ICD9CM_2010'), +('34.22', 'Mediastinoscopy', 'ICD9CM_2010'), +('34.23', 'Biopsy of chest wall', 'ICD9CM_2010'), +('34.24', 'Other pleural biopsy', 'ICD9CM_2010'), +('34.25', 'Closed (percutaneous) (needle) biopsy of mediastinum', 'ICD9CM_2010'), +('34.26', 'Open mediastinum biopsy', 'ICD9CM_2010'), +('34.27', 'Biopsy of diaphragm', 'ICD9CM_2010'), +('34.28', 'Other diagnostic procedures on chest wall, pleura, and diaphragm', 'ICD9CM_2010'), +('34.29', 'Other diagnostic procedures on mediastinum', 'ICD9CM_2010'), +('34.3', 'Excision or destruction of lesion or tissue of mediastinum', 'ICD9CM_2010'), +('34.4', 'Excision or destruction of lesion of chest wall', 'ICD9CM_2010'), +('34.5', 'Pleurectomy', 'ICD9CM_2010'), +('34.51', 'Decortication of lung', 'ICD9CM_2010'), +('34.52', 'Thoracoscopic decortication of lung', 'ICD9CM_2010'), +('34.59', 'Other excision of pleura', 'ICD9CM_2010'), +('34.6', 'Scarification of pleura', 'ICD9CM_2010'), +('34.7', 'Repair of chest wall', 'ICD9CM_2010'), +('34.71', 'Suture of laceration of chest wall', 'ICD9CM_2010'), +('34.72', 'Closure of thoracostomy', 'ICD9CM_2010'), +('34.73', 'Closure of other fistula of thorax', 'ICD9CM_2010'), +('34.74', 'Repair of pectus deformity', 'ICD9CM_2010'), +('34.79', 'Other repair of chest wall', 'ICD9CM_2010'), +('34.8', 'Operations on diaphragm', 'ICD9CM_2010'), +('34.81', 'Excision of lesion or tissue of diaphragm', 'ICD9CM_2010'), +('34.82', 'Suture of laceration of diaphragm', 'ICD9CM_2010'), +('34.83', 'Closure of fistula of diaphragm', 'ICD9CM_2010'), +('34.84', 'Other repair of diaphragm', 'ICD9CM_2010'), +('34.85', 'Implantation of diaphragmatic pacemaker', 'ICD9CM_2010'), +('34.89', 'Other operations on diaphragm', 'ICD9CM_2010'), +('34.9', 'Other operations on thorax', 'ICD9CM_2010'), +('34.91', 'Thoracentesis', 'ICD9CM_2010'), +('34.92', 'Injection into thoracic cavity', 'ICD9CM_2010'), +('34.93', 'Repair of pleura', 'ICD9CM_2010'), +('34.99', 'Other operations on thorax', 'ICD9CM_2010'), +('35', 'Operations on valves and septa of heart', 'ICD9CM_2010'), +('35.0', 'Closed heart valvotomy', 'ICD9CM_2010'), +('35.00', 'Closed heart valvotomy, unspecified valve', 'ICD9CM_2010'), +('35.01', 'Closed heart valvotomy, aortic valve', 'ICD9CM_2010'), +('35.02', 'Closed heart valvotomy, mitral valve', 'ICD9CM_2010'), +('35.03', 'Closed heart valvotomy, pulmonary valve', 'ICD9CM_2010'), +('35.04', 'Closed heart valvotomy, tricuspid valve', 'ICD9CM_2010'), +('35.1', 'Open heart valvuloplasty without replacement', 'ICD9CM_2010'), +('35.10', 'Open heart valvuloplasty without replacement, unspecified valve', 'ICD9CM_2010'), +('35.11', 'Open heart valvuloplasty of aortic valve without replacement', 'ICD9CM_2010'), +('35.12', 'Open heart valvuloplasty of mitral valve without replacement', 'ICD9CM_2010'), +('35.13', 'Open heart valvuloplasty of pulmonary valve without replacement', 'ICD9CM_2010'), +('35.14', 'Open heart valvuloplasty of tricuspid valve without replacement', 'ICD9CM_2010'), +('35.2', 'Replacement of heart valve', 'ICD9CM_2010'), +('35.20', 'Replacement of unspecified heart valve', 'ICD9CM_2010'), +('35.21', 'Replacement of aortic valve with tissue graft', 'ICD9CM_2010'), +('35.22', 'Other replacement of aortic valve', 'ICD9CM_2010'), +('35.23', 'Replacement of mitral valve with tissue graft', 'ICD9CM_2010'), +('35.24', 'Other replacement of mitral valve', 'ICD9CM_2010'), +('35.25', 'Replacement of pulmonary valve with tissue graft', 'ICD9CM_2010'), +('35.26', 'Other replacement of pulmonary valve', 'ICD9CM_2010'), +('35.27', 'Replacement of tricuspid valve with tissue graft', 'ICD9CM_2010'), +('35.28', 'Other replacement of tricuspid valve', 'ICD9CM_2010'), +('35.3', 'Operations on structures adjacent to heart valves', 'ICD9CM_2010'), +('35.31', 'Operations on papillary muscle', 'ICD9CM_2010'), +('35.32', 'Operations on chordae tendineae', 'ICD9CM_2010'), +('35.33', 'Annuloplasty', 'ICD9CM_2010'), +('35.34', 'Infundibulectomy', 'ICD9CM_2010'), +('35.35', 'Operations on trabeculae carneae cordis', 'ICD9CM_2010'), +('35.39', 'Operations on other structures adjacent to valves of heart', 'ICD9CM_2010'), +('35.4', 'Production of septal defect in heart', 'ICD9CM_2010'), +('35.41', 'Enlargement of existing atrial septal defect', 'ICD9CM_2010'), +('35.42', 'Creation of septal defect in heart', 'ICD9CM_2010'), +('35.5', 'Repair of atrial and ventricular septa with prosthesis', 'ICD9CM_2010'), +('35.50', 'Repair of unspecified septal defect of heart with prosthesis', 'ICD9CM_2010'), +('35.51', 'Repair of atrial septal defect with prosthesis, open technique', 'ICD9CM_2010'), +('35.52', 'Repair of atrial septal defect with prosthesis, closed technique', 'ICD9CM_2010'), +('35.53', 'Repair of ventricular septal defect with prosthesis, open technique', 'ICD9CM_2010'), +('35.54', 'Repair of endocardial cushion defect with prosthesis', 'ICD9CM_2010'), +('35.55', 'Repair of ventricular septal defect with prosthesis, closed technique', 'ICD9CM_2010'), +('35.6', 'Repair of atrial and ventricular septa with tissue graft', 'ICD9CM_2010'), +('35.60', 'Repair of unspecified septal defect of heart with tissue graft', 'ICD9CM_2010'), +('35.61', 'Repair of atrial septal defect with tissue graft', 'ICD9CM_2010'), +('35.62', 'Repair of ventricular septal defect with tissue graft', 'ICD9CM_2010'), +('35.63', 'Repair of endocardial cushion defect with tissue graft', 'ICD9CM_2010'), +('35.7', 'Other and unspecified repair of atrial and ventricular septa', 'ICD9CM_2010'), +('35.70', 'Other and unspecified repair of unspecified septal defect of heart', 'ICD9CM_2010'), +('35.71', 'Other and unspecified repair of atrial septal defect', 'ICD9CM_2010'), +('35.72', 'Other and unspecified repair of ventricular septal defect', 'ICD9CM_2010'), +('35.73', 'Other and unspecified repair of endocardial cushion defect', 'ICD9CM_2010'), +('35.8', 'Total repair of certain congenital cardiac anomalies', 'ICD9CM_2010'), +('35.81', 'Total repair of tetralogy of fallot', 'ICD9CM_2010'), +('35.82', 'Total repair of total anomalous pulmonary venous connection', 'ICD9CM_2010'), +('35.83', 'Total repair of truncus arteriosus', 'ICD9CM_2010'), +('35.84', 'Total correction of transposition of great vessels, not elsewhere classified', 'ICD9CM_2010'), +('35.9', 'Other operations on valves and septa of heart', 'ICD9CM_2010'), +('35.91', 'Interatrial transposition of venous return', 'ICD9CM_2010'), +('35.92', 'Creation of conduit between right ventricle and pulmonary artery', 'ICD9CM_2010'), +('35.93', 'Creation of conduit between left ventricle and aorta', 'ICD9CM_2010'), +('35.94', 'Creation of conduit between atrium and pulmonary artery', 'ICD9CM_2010'), +('35.95', 'Revision of corrective procedure on heart', 'ICD9CM_2010'), +('35.96', 'Percutaneous valvuloplasty', 'ICD9CM_2010'), +('35.97', 'Percutaneous mitral valve repair with implant', 'ICD9CM_2010'), +('35.98', 'Other operations on septa of heart', 'ICD9CM_2010'), +('35.99', 'Other operations on valves of heart', 'ICD9CM_2010'), +('36', 'Operations on vessels of heart', 'ICD9CM_2010'), +('36.0', 'Removal of coronary artery obstruction and insertion of stent(s)', 'ICD9CM_2010'), +('36.03', 'Open chest coronary artery angioplasty', 'ICD9CM_2010'), +('36.04', 'Intracoronary artery thrombolytic infusion', 'ICD9CM_2010'), +('36.06', 'Insertion of non-drug -eluting coronary artery stent(s)', 'ICD9CM_2010'), +('36.07', 'Insertion of drug-eluting coronary artery stent(s)', 'ICD9CM_2010'), +('36.09', 'Other specified removal of coronary artery obstruction', 'ICD9CM_2010'), +('36.1', 'Bypass anastomosis for heart revascularization', 'ICD9CM_2010'), +('36.10', 'Aortocoronary bypass for heart revascularization, not otherwise specified', 'ICD9CM_2010'), +('36.11', 'Aortocoronary bypass of one coronary artery', 'ICD9CM_2010'), +('36.12', 'Aortocoronary bypass of two coronary arteries', 'ICD9CM_2010'), +('36.13', 'Aortocoronary bypass of three coronary arteries', 'ICD9CM_2010'), +('36.14', 'Aortocoronary bypass of four or more coronary arteries', 'ICD9CM_2010'), +('36.15', 'Single internal mammary-coronary artery bypass', 'ICD9CM_2010'), +('36.16', 'Double internal mammary-coronary artery bypass', 'ICD9CM_2010'), +('36.17', 'Abdominal-coronary artery bypass', 'ICD9CM_2010'), +('36.19', 'Other bypass anastomosis for heart revascularization', 'ICD9CM_2010'), +('36.2', 'Heart revascularization by arterial implant', 'ICD9CM_2010'), +('36.3', 'Other heart revascularization', 'ICD9CM_2010'), +('36.31', 'Open chest transmyocardial revascularization', 'ICD9CM_2010'), +('36.32', 'Other transmyocardial revascularization', 'ICD9CM_2010'), +('36.33', 'Endoscopic transmyocardial revascularization', 'ICD9CM_2010'), +('36.34', 'Percutaneous transmyocardial revascularization', 'ICD9CM_2010'), +('36.39', 'Other heart revascularization', 'ICD9CM_2010'), +('36.9', 'Other operations on vessels of heart', 'ICD9CM_2010'), +('36.91', 'Repair of aneurysm of coronary vessel', 'ICD9CM_2010'), +('36.99', 'Other operations on vessels of heart', 'ICD9CM_2010'), +('37', 'Other operations on heart and pericardium', 'ICD9CM_2010'), +('37.0', 'Pericardiocentesis', 'ICD9CM_2010'), +('37.1', 'Cardiotomy and pericardiotomy', 'ICD9CM_2010'), +('37.10', 'Incision of heart, not otherwise specified', 'ICD9CM_2010'), +('37.11', 'Cardiotomy', 'ICD9CM_2010'), +('37.12', 'Pericardiotomy', 'ICD9CM_2010'), +('37.2', 'Diagnostic procedures on heart and pericardium', 'ICD9CM_2010'), +('37.20', 'Noninvasive programmed electrical stimulation (NIPS)', 'ICD9CM_2010'), +('37.21', 'Right heart cardiac catheterization', 'ICD9CM_2010'), +('37.22', 'Left heart cardiac catheterization', 'ICD9CM_2010'), +('37.23', 'Combined right and left heart cardiac catheterization', 'ICD9CM_2010'), +('37.24', 'Biopsy of pericardium', 'ICD9CM_2010'), +('37.25', 'Biopsy of heart', 'ICD9CM_2010'), +('37.26', 'Catheter based invasive electrophysiologic testing', 'ICD9CM_2010'), +('37.27', 'Cardiac mapping', 'ICD9CM_2010'), +('37.28', 'Intracardial echocardiography', 'ICD9CM_2010'), +('37.29', 'Other diagnostic procedures on heart and pericardium', 'ICD9CM_2010'), +('37.3', 'Pericardiectomy and excision of lesion of heart', 'ICD9CM_2010'), +('37.31', 'Pericardiectomy', 'ICD9CM_2010'), +('37.32', 'Excision of aneurysm of heart', 'ICD9CM_2010'), +('37.33', 'Excision or destruction of other lesion or tissue of heart, open approach', 'ICD9CM_2010'), +('37.34', 'Excision or destruction of lesion or tissue of heart, other approach', 'ICD9CM_2010'), +('37.35', 'Partial ventriculectomy', 'ICD9CM_2010'), +('37.36', 'Excision or destruction of left atrial appendage (LAA)', 'ICD9CM_2010'), +('37.37', 'Excision or destruction of other lesion or tissue of heart, thoracoscopic approach', 'ICD9CM_2010'), +('37.4', 'Repair of heart and pericardium', 'ICD9CM_2010'), +('37.41', 'Implantation of prosthetic cardiac support device around the heart', 'ICD9CM_2010'), +('37.49', 'Other repair of heart and pericardium', 'ICD9CM_2010'), +('37.5', 'Heart transplantation procedure', 'ICD9CM_2010'), +('37.51', 'Heart transplantation', 'ICD9CM_2010'), +('37.52', 'Implantation of total internal biventricular heart replacement heart system', 'ICD9CM_2010'), +('37.53', 'Replacement or repair of thoracic unit of (total) replacement heart system', 'ICD9CM_2010'), +('37.54', 'Replacement or repair of other implantable component of (total) replacement heart system', 'ICD9CM_2010'), +('37.55', 'Removal of internal biventricular heart replacement system', 'ICD9CM_2010'), +('37.6', 'Implantation of heart circulatory assist system(s)', 'ICD9CM_2010'), +('37.60', 'Implantation or insertion of biventricular external heart assist system', 'ICD9CM_2010'), +('37.61', 'Implant of pulsation balloon', 'ICD9CM_2010'), +('37.62', 'Insertion of temporary non-implantable extracorporeal heart circulatory assist system device', 'ICD9CM_2010'), +('37.63', 'Repair of heart assist system', 'ICD9CM_2010'), +('37.64', 'Removal of external heart assist system(s) or device (s)', 'ICD9CM_2010'), +('37.65', 'Implant of single ventricular (extracorporeal) external heart assist system', 'ICD9CM_2010'), +('37.66', 'Insertion of implantable heart assist system', 'ICD9CM_2010'), +('37.67', 'Implantation of cardiomyostimulation system', 'ICD9CM_2010'), +('37.68', 'Insertion of pertaneous external heart assist device', 'ICD9CM_2010'), +('37.7', 'Insertion, revision, replacement, and removal of pacemaker leads: insertion of temporary pacemaker system; or revision of cardiac device pocket', 'ICD9CM_2010'), +('37.70', 'Initial insertion of lead (electrode), not otherwise specified', 'ICD9CM_2010'), +('37.71', 'Initial insertion of transvenous lead (electrode) into ventricle', 'ICD9CM_2010'), +('37.72', 'Initial insertion of transvenous lead (electrodes) into atrium and ventricle', 'ICD9CM_2010'), +('37.73', 'Initial insertion of transvenous lead (electrode) into atrium', 'ICD9CM_2010'), +('37.74', 'Insertion or replacement of epicardial lead (electrode) into epicardium', 'ICD9CM_2010'), +('37.75', 'Revision of lead (electrode)', 'ICD9CM_2010'), +('37.76', 'Replacement of transvenous atrial and/or ventricular lead(s) (electrode)', 'ICD9CM_2010'), +('37.77', 'Removal of lead(s) (electrodes) without replacement', 'ICD9CM_2010'), +('37.78', 'Insertion of temporary transvenous pacemaker system', 'ICD9CM_2010'), +('37.79', 'Revision or relocation of pacemaker pocket', 'ICD9CM_2010'), +('37.8', 'Insertion, replacement, removal and revision of pacemaker device', 'ICD9CM_2010'), +('37.80', 'Insertion of permanent pacemaker, initial or replacement, type of device not specified', 'ICD9CM_2010'), +('37.81', 'Initial insertion of single-chamber device, not specified as rate-responsive', 'ICD9CM_2010'), +('37.82', 'Initial insertion of single-chamber device, rate-responsive', 'ICD9CM_2010'), +('37.83', 'Initial insertion of dual-chamber device', 'ICD9CM_2010'), +('37.85', 'Replacement of any type of pacemaker device with single-chamber device, not specified as rate responsive', 'ICD9CM_2010'), +('37.86', 'Replacement of any type of pacemaker device with single-chamber devive, rate responsive', 'ICD9CM_2010'), +('37.87', 'Replacement of any type of pacemaker device with dual-chamber device', 'ICD9CM_2010'), +('37.89', 'Revision or removal of pacemaker device', 'ICD9CM_2010'), +('37.9', 'Other operations on heart and pericardium', 'ICD9CM_2010'), +('37.90', 'Insertion of left atrial appendage device', 'ICD9CM_2010'), +('37.91', 'Open chest cardiac massage', 'ICD9CM_2010'), +('37.92', 'Injection of therapeutic substance into heart', 'ICD9CM_2010'), +('37.93', 'Injection of therapeutic substance into pericardium', 'ICD9CM_2010'), +('37.94', 'Implantation or replacement of automatic cardioverter/ defibrillator, total system (AICD)', 'ICD9CM_2010'), +('37.95', 'Implantation of automatic cardioverter/defibrillator leads(s) only', 'ICD9CM_2010'), +('37.96', 'Implantation of automatic cardioverter/defibrillator pulse generator only', 'ICD9CM_2010'), +('37.97', 'Replacement of automatic cardioverter/defibrillator leads(s) only', 'ICD9CM_2010'), +('37.98', 'Replacement of automatic cardioverter/defibrillator pulse generator only', 'ICD9CM_2010'), +('37.99', 'Other operations on heart and pericardium', 'ICD9CM_2010'), +('38', 'Incision, excision, and occlusion of vessels', 'ICD9CM_2010'), +('38.0', 'Incision of vessel', 'ICD9CM_2010'), +('38.00', 'Incision of vessel, unspecified site', 'ICD9CM_2010'), +('38.01', 'Incision of intracranial vessels', 'ICD9CM_2010'), +('38.02', 'Incision of other vessels of head and neck', 'ICD9CM_2010'), +('38.03', 'Incision of upper limb vessels', 'ICD9CM_2010'), +('38.04', 'Incision of aorta', 'ICD9CM_2010'), +('38.05', 'Incision of other thoracic vessels', 'ICD9CM_2010'), +('38.06', 'Incision of abdominal arteries', 'ICD9CM_2010'), +('38.07', 'Incision of abdominal veins', 'ICD9CM_2010'), +('38.08', 'Incision of lower limb arteries', 'ICD9CM_2010'), +('38.09', 'Incision of lower limb veins', 'ICD9CM_2010'), +('38.1', 'Endarterectomy', 'ICD9CM_2010'), +('38.10', 'Endarterectomy, unspecified site', 'ICD9CM_2010'), +('38.11', 'Endarterectomy of intracranial vessels', 'ICD9CM_2010'), +('38.12', 'Endarterectomy of other vessels of head and neck', 'ICD9CM_2010'), +('38.13', 'Endarterectomy of upper limb vessels', 'ICD9CM_2010'), +('38.14', 'Endarterectomy of aorta', 'ICD9CM_2010'), +('38.15', 'Endarterectomy of other thoracic vessels', 'ICD9CM_2010'), +('38.16', 'Endarterectomy of abdominal arteries', 'ICD9CM_2010'), +('38.18', 'Endarterectomy of lower limb arteries', 'ICD9CM_2010'), +('38.2', 'Diagnostic procedures on blood vessels', 'ICD9CM_2010'), +('38.21', 'Biopsy of blood vessel', 'ICD9CM_2010'), +('38.22', 'Percutaneous angioscopy', 'ICD9CM_2010'), +('38.23', 'Intravascular spectroscopy', 'ICD9CM_2010'), +('38.24', 'Intravascular imaging of coronary vessel(s) by optical coherence tomography [OCT]', 'ICD9CM_2010'), +('38.25', 'Intravascular imaging of non-coronary vessel(s) by optical coherence tomography [OCT]', 'ICD9CM_2010'), +('38.29', 'Other diagnostic procedures on blood vessels', 'ICD9CM_2010'), +('38.3', 'Resection of vessel with anastomosis', 'ICD9CM_2010'), +('38.30', 'Resection of vessel with anastomosis, unspecified site', 'ICD9CM_2010'), +('38.31', 'Resection of intracranial vessels with anastomosis', 'ICD9CM_2010'), +('38.32', 'Resection of other vessels of head and neck with anastomosis', 'ICD9CM_2010'), +('38.33', 'Resection of upper limb vessels with anastomosis', 'ICD9CM_2010'), +('38.34', 'Resection of aorta with anastomosis', 'ICD9CM_2010'), +('38.35', 'Resection of other thoracic vessels with anastomosis', 'ICD9CM_2010'), +('38.36', 'Resection of abdominal arteries with anastomosis', 'ICD9CM_2010'), +('38.37', 'Resection of abdominal veins with anastomosis', 'ICD9CM_2010'), +('38.38', 'Resection of lower limb arteries with anastomosis', 'ICD9CM_2010'), +('38.39', 'Resection of lower limb veins with anastomosis', 'ICD9CM_2010'), +('38.4', 'Resection of vessel with replacement', 'ICD9CM_2010'), +('38.40', 'Resection of vessel with replacement, unspecified site', 'ICD9CM_2010'), +('38.41', 'Resection of vessel with replacement , intracranial vessels', 'ICD9CM_2010'), +('38.42', 'Resection of vessel with replacement, other vessels of head and neck', 'ICD9CM_2010'), +('38.43', 'Resection of vessel with replacement, upper limb vessels', 'ICD9CM_2010'), +('38.44', 'Resection of vessel with replacement, aorta,abdominal', 'ICD9CM_2010'), +('38.45', 'Resection of vessel with replacement, thoracic vessels', 'ICD9CM_2010'), +('38.46', 'Resection of vessel with replacement ,abdominal arteries', 'ICD9CM_2010'), +('38.47', 'Resection of vessel with replacement, abdominal veins', 'ICD9CM_2010'), +('38.48', 'Resection of vessel with replacement, lower limb arteries', 'ICD9CM_2010'), +('38.49', 'Resection of vessel with replacement, lower limb veins', 'ICD9CM_2010'), +('38.5', 'Ligation and stripping of varicose veins', 'ICD9CM_2010'), +('38.50', 'Ligation and stripping of varicose veins, unspecified site', 'ICD9CM_2010'), +('38.51', 'Ligation and stripping of varicose veins, intracranial vessels', 'ICD9CM_2010'), +('38.52', 'Ligation and stripping of varicose veins, other vessels of head an', 'ICD9CM_2010'), +('38.53', 'Ligation and stripping of varicose veins , upper limb vessels', 'ICD9CM_2010'), +('38.55', 'Ligation and stripping of varicose veins, thoracic vessels', 'ICD9CM_2010'), +('38.57', 'Ligation and stripping of varicose veins ,abdominal varicose veins', 'ICD9CM_2010'), +('38.59', 'Ligation and stripping of varicose veins ,lower limb varicose veins', 'ICD9CM_2010'), +('38.6', 'Other excision of vessels', 'ICD9CM_2010'), +('38.60', 'Other excision of vessels, unspecified site', 'ICD9CM_2010'), +('38.61', 'Other excision of vessels, intracranial vessels', 'ICD9CM_2010'), +('38.62', 'Other excision of vessels, other vessels of head and neck', 'ICD9CM_2010'), +('38.63', 'Other excision of vessels, upper limb vessels', 'ICD9CM_2010'), +('38.64', 'Other excision of vessels, aorta,abdominal', 'ICD9CM_2010'), +('38.65', 'Other excision of vessels, thoracic vessels', 'ICD9CM_2010'), +('38.66', 'Other excision of vessels, abdominal arteries', 'ICD9CM_2010'), +('38.67', 'Other excision of vessels, abdominal veins', 'ICD9CM_2010'), +('38.68', 'Other excision of vessels, lower limb arteries', 'ICD9CM_2010'), +('38.69', 'Other excision of vessels, lower limb veins', 'ICD9CM_2010'), +('38.7', 'Interruption of the vena cava', 'ICD9CM_2010'), +('38.8', 'Other surgical occlusion of vessels', 'ICD9CM_2010'), +('38.80', 'Other surgical occlusion of vessels, unspecified site', 'ICD9CM_2010'), +('38.81', 'Other surgical occlusion of vessels,intracranial vessels', 'ICD9CM_2010'), +('38.82', 'Other surgical occlusion of vessels, other vessels of head and neck', 'ICD9CM_2010'), +('38.83', 'Other surgical occlusion of vessels, upper limb vessels', 'ICD9CM_2010'), +('38.84', 'Other surgical occlusion of vessels, aorta, abdominal', 'ICD9CM_2010'), +('38.85', 'Other surgical occlusion of vessels, other thoracic vessels', 'ICD9CM_2010'), +('38.86', 'Other surgical occlusion of vessels, abdominal arteries', 'ICD9CM_2010'), +('38.87', 'Other surgical occlusion of vessels, abdominal veins', 'ICD9CM_2010'), +('38.88', 'Other surgical occlusion of vessels, lower limb arteries', 'ICD9CM_2010'), +('38.89', 'Other surgical occlusion of vessels, lower limb veins', 'ICD9CM_2010'), +('38.9', 'Puncture of vessel', 'ICD9CM_2010'), +('38.91', 'Arterial catheterization', 'ICD9CM_2010'), +('38.92', 'Umbilical vein catheterization', 'ICD9CM_2010'), +('38.93', 'Venous catheterization, not elsewhere classified', 'ICD9CM_2010'), +('38.94', 'Venous cutdown', 'ICD9CM_2010'), +('38.95', 'Venous catheterization for renal dialysis', 'ICD9CM_2010'), +('38.97', 'Central venous catheter placement with guidance', 'ICD9CM_2010'), +('38.98', 'Other puncture of artery', 'ICD9CM_2010'), +('38.99', 'Other puncture of vein', 'ICD9CM_2010'), +('39', 'Other operations on vessels', 'ICD9CM_2010'), +('39.0', 'Systemic to pulmonary artery shunt', 'ICD9CM_2010'), +('39.1', 'Intra-abdominal venous shunt', 'ICD9CM_2010'), +('39.2', 'Other shunt or vascular bypass', 'ICD9CM_2010'), +('39.21', 'Caval-pulmonary artery anastomosis', 'ICD9CM_2010'), +('39.22', 'Aorta-subclavian-carotid bypass', 'ICD9CM_2010'), +('39.23', 'Other intrathoracic vascular shunt or bypass', 'ICD9CM_2010'), +('39.24', 'Aorta-renal bypass', 'ICD9CM_2010'), +('39.25', 'Aorta-iliac-femoral bypass', 'ICD9CM_2010'), +('39.26', 'Other intra-abdominal vascular shunt or bypass', 'ICD9CM_2010'), +('39.27', 'Arteriovenostomy for renal dialysis', 'ICD9CM_2010'), +('39.28', 'Extracranial-intracranial (EC-IC) vascular bypass', 'ICD9CM_2010'), +('39.29', 'Other (peripheral) vascular shunt or bypass', 'ICD9CM_2010'), +('39.3', 'Suture of vessel', 'ICD9CM_2010'), +('39.30', 'Suture of unspecified blood vessel', 'ICD9CM_2010'), +('39.31', 'Suture of artery', 'ICD9CM_2010'), +('39.32', 'Suture of vein', 'ICD9CM_2010'), +('39.4', 'Revision of vascular procedure', 'ICD9CM_2010'), +('39.41', 'Control of hemorrhage following vascular surgery', 'ICD9CM_2010'); +INSERT INTO `icd9` (`ID_ICD9`, `Prosedur`, `Versi_ICD9`) VALUES +('39.42', 'Revision of arteriovenous shunt for renal dialysis', 'ICD9CM_2010'), +('39.43', 'Removal of arteriovenous shunt for renal dialysis', 'ICD9CM_2010'), +('39.49', 'Other revision of vascular procedure', 'ICD9CM_2010'), +('39.5', 'Other repair of vessels', 'ICD9CM_2010'), +('39.50', 'Angioplasty or atherectomy of other non-coronary vessel(s)', 'ICD9CM_2010'), +('39.51', 'Clipping of aneurysm', 'ICD9CM_2010'), +('39.52', 'Other repair of aneurysm', 'ICD9CM_2010'), +('39.53', 'Repair of arteriovenous fistula', 'ICD9CM_2010'), +('39.54', 'Re-entry operation (aorta)', 'ICD9CM_2010'), +('39.55', 'Reimplantation of aberrant renal vessel', 'ICD9CM_2010'), +('39.56', 'Repair of blood vessel with tissue patch graft', 'ICD9CM_2010'), +('39.57', 'Repair of blood vessel with synthetic patch graft', 'ICD9CM_2010'), +('39.58', 'Repair of blood vessel with unspecified type of patch graft', 'ICD9CM_2010'), +('39.59', 'Other repair of vessel', 'ICD9CM_2010'), +('39.6', 'Extracorporeal circulation and procedures auxiliary to open heart surgery', 'ICD9CM_2010'), +('39.61', 'Extracorporeal circulation auxiliary to open heart surgery', 'ICD9CM_2010'), +('39.62', 'Hypothermia (systemic) incidental to open heart surgery', 'ICD9CM_2010'), +('39.63', 'Cardioplegia', 'ICD9CM_2010'), +('39.64', 'Intraoperative cardiac pacemaker', 'ICD9CM_2010'), +('39.65', 'Extracorporeal membrane oxygenation (ECMO)', 'ICD9CM_2010'), +('39.66', 'Percutaneous cardiopulmonary bypass', 'ICD9CM_2010'), +('39.7', 'Endovascular Repair of Vessel', 'ICD9CM_2010'), +('39.71', 'Endovascular implantation of graft in abdominal aorta', 'ICD9CM_2010'), +('39.72', 'Endovascular repair or occlusion of head and neck vessels', 'ICD9CM_2010'), +('39.73', 'Endovascular implantation of graft in thoracic aorta', 'ICD9CM_2010'), +('39.74', 'Endovascular removal of obstruction from head and neck vessel (s)', 'ICD9CM_2010'), +('39.75', 'Endovascular embolization or occlusion of vessel(s) of head or neck using bare coils', 'ICD9CM_2010'), +('39.76', 'Endovascular embolization or occlusion of vessel(s) of head or neck using bioactive coils', 'ICD9CM_2010'), +('39.79', 'Other endovascular repair (of aneurysm) of other vessels', 'ICD9CM_2010'), +('39.8', 'Operations on carotid body, carotid sinus and other vascular bodies', 'ICD9CM_2010'), +('39.81', 'Implantation or replacement of carotid sinus stimulation device, total system', 'ICD9CM_2010'), +('39.82', 'Implantation or replacement of carotid sinus stimulation lead(s) only', 'ICD9CM_2010'), +('39.83', 'Implantation or replacement of carotid sinus stimulation pulse generator only', 'ICD9CM_2010'), +('39.84', 'Revision of carotid sinus stimulation lead(s) only', 'ICD9CM_2010'), +('39.85', 'Revision of carotid sinus stimulation pulse generator', 'ICD9CM_2010'), +('39.86', 'Removal of carotid sinus stimulation device, total system', 'ICD9CM_2010'), +('39.87', 'Removal of carotid sinus stimulation lead(s) only', 'ICD9CM_2010'), +('39.88', 'Removal of carotid sinus stimulation pulse generator only', 'ICD9CM_2010'), +('39.89', 'Other operations on carotid body, carotid sinus and other vascular bodies', 'ICD9CM_2010'), +('39.9', 'Other operations on vessels', 'ICD9CM_2010'), +('39.90', 'Insertion of non-drug -eluting peripheral vessel stent(s)', 'ICD9CM_2010'), +('39.91', 'Freeing of vessel', 'ICD9CM_2010'), +('39.92', 'Injection of sclerosing agent into vein', 'ICD9CM_2010'), +('39.93', 'Insertion of vessel-to-vessel cannula', 'ICD9CM_2010'), +('39.94', 'Replacement of vessel-to-vessel cannula', 'ICD9CM_2010'), +('39.95', 'Hemodialysis', 'ICD9CM_2010'), +('39.96', 'Total body perfusion', 'ICD9CM_2010'), +('39.97', 'Other perfusion', 'ICD9CM_2010'), +('39.98', 'Control of hemorrhage, not otherwise specified', 'ICD9CM_2010'), +('39.99', 'Other operations on vessels', 'ICD9CM_2010'), +('40', 'Operations on lymphatic system', 'ICD9CM_2010'), +('40.0', 'Incision of lymphatic structures', 'ICD9CM_2010'), +('40.1', 'Diagnostic procedures on lymphatic structure', 'ICD9CM_2010'), +('40.11', 'Biopsy of lymphatic structure', 'ICD9CM_2010'), +('40.19', 'Other diagnostic procedures on lymphatic structures', 'ICD9CM_2010'), +('40.2', 'Simple excision of lymphatic structure', 'ICD9CM_2010'), +('40.21', 'Excision of deep cervical lymph node', 'ICD9CM_2010'), +('40.22', 'Excision of internal mammary lymph node', 'ICD9CM_2010'), +('40.23', 'Excision of axillary lymph node', 'ICD9CM_2010'), +('40.24', 'Excision of inguinal lymph node', 'ICD9CM_2010'), +('40.29', 'Simple excision of other lymphatic structure', 'ICD9CM_2010'), +('40.3', 'Regional lymph node excision', 'ICD9CM_2010'), +('40.4', 'Radical excision of cervical lymph nodes', 'ICD9CM_2010'), +('40.40', 'Radical neck dissection, not otherwise specified', 'ICD9CM_2010'), +('40.41', 'Radical neck dissection, unilateral', 'ICD9CM_2010'), +('40.42', 'Radical neck dissection, bilateral', 'ICD9CM_2010'), +('40.5', 'Radical excision of other lymph nodes', 'ICD9CM_2010'), +('40.50', 'Radical excision of lymph nodes, not otherwise specified', 'ICD9CM_2010'), +('40.51', 'Radical excision of axillary lymph nodes', 'ICD9CM_2010'), +('40.52', 'Radical excision of periaortic lymph nodes', 'ICD9CM_2010'), +('40.53', 'Radical excision of iliac lymph nodes', 'ICD9CM_2010'), +('40.54', 'Radical groin dissection', 'ICD9CM_2010'), +('40.59', 'Radical excision of other lymph nodes', 'ICD9CM_2010'), +('40.6', 'Operations on thoracic duct', 'ICD9CM_2010'), +('40.61', 'Cannulation of thoracic duct', 'ICD9CM_2010'), +('40.62', 'Fistulization of thoracic duct', 'ICD9CM_2010'), +('40.63', 'Closure of fistula of thoracic duct', 'ICD9CM_2010'), +('40.64', 'Ligation of thoracic duct', 'ICD9CM_2010'), +('40.69', 'Other operations on thoracic duct', 'ICD9CM_2010'), +('40.9', 'Other operations on lymphatic structures', 'ICD9CM_2010'), +('41', 'Operations on bone marrow and spleen', 'ICD9CM_2010'), +('41.0', 'Bone marrow or hematopoietic stemm cell transplant', 'ICD9CM_2010'), +('41.00', 'Bone marrow transplant, not otherwise specified', 'ICD9CM_2010'), +('41.01', 'Autologous bone marrow transplant without purging', 'ICD9CM_2010'), +('41.02', 'Allogeneic bone marrow transplant with purging', 'ICD9CM_2010'), +('41.03', 'Allogeneic bone marrow transplant without purging', 'ICD9CM_2010'), +('41.04', 'Autologous hematopoietic stem cell transplant without purging', 'ICD9CM_2010'), +('41.05', 'Allogeneic hematopoietic stem cell transplant without purging', 'ICD9CM_2010'), +('41.06', 'Cord blood stem cell transplant', 'ICD9CM_2010'), +('41.07', 'Autologous hematopoietic stem cell transplant with purging', 'ICD9CM_2010'), +('41.08', 'Autologous hematopoietic stem cell transplant', 'ICD9CM_2010'), +('41.09', 'Autologous bone marrow transplant with purging', 'ICD9CM_2010'), +('41.1', 'Puncture of spleen', 'ICD9CM_2010'), +('41.2', 'Splenotomy', 'ICD9CM_2010'), +('41.3', 'Diagnostic procedures on bone marrow and spleen', 'ICD9CM_2010'), +('41.31', 'Biopsy of bone marrow', 'ICD9CM_2010'), +('41.32', 'Closed (aspiration) (percutaneous) biopsy of spleen', 'ICD9CM_2010'), +('41.33', 'Open biopsy of spleen', 'ICD9CM_2010'), +('41.38', 'Other diagnostic procedures on bone marrow', 'ICD9CM_2010'), +('41.39', 'Other diagnostic procedures on spleen', 'ICD9CM_2010'), +('41.4', 'Excision or destruction of lesion or tissue of spleen', 'ICD9CM_2010'), +('41.41', 'Marsupialization of splenic cyst', 'ICD9CM_2010'), +('41.42', 'Excision of lesion or tissue of spleen', 'ICD9CM_2010'), +('41.43', 'Partial splenectomy', 'ICD9CM_2010'), +('41.5', 'Total splenectomy', 'ICD9CM_2010'), +('41.9', 'Other operations on spleen and bone marrow', 'ICD9CM_2010'), +('41.91', 'Aspiration of bone marrow from donor for transplant', 'ICD9CM_2010'), +('41.92', 'Injection into bone marrow', 'ICD9CM_2010'), +('41.93', 'Excision of accessory spleen', 'ICD9CM_2010'), +('41.94', 'Transplantation of spleen', 'ICD9CM_2010'), +('41.95', 'Repair and plastic operations on spleen', 'ICD9CM_2010'), +('41.98', 'Other operations on bone marrow', 'ICD9CM_2010'), +('41.99', 'Other operations on spleen', 'ICD9CM_2010'), +('42', 'Operations on esophagus', 'ICD9CM_2010'), +('42.0', 'Esophagotomy', 'ICD9CM_2010'), +('42.01', 'Incision of esophageal web', 'ICD9CM_2010'), +('42.09', 'Other incision of esophagus', 'ICD9CM_2010'), +('42.1', 'Esophagostomy', 'ICD9CM_2010'), +('42.10', 'Esophagostomy, not otherwise specified', 'ICD9CM_2010'), +('42.11', 'Cervical esophagostomy', 'ICD9CM_2010'), +('42.12', 'Exteriorization of esophageal pouch', 'ICD9CM_2010'), +('42.19', 'Other external fistulization of esophagus', 'ICD9CM_2010'), +('42.2', 'Diagnostic procedures on esophagus', 'ICD9CM_2010'), +('42.21', 'Operative esophagoscopy by incision', 'ICD9CM_2010'), +('42.22', 'Esophagoscopy through artificial stoma', 'ICD9CM_2010'), +('42.23', 'Other esophagoscopy', 'ICD9CM_2010'), +('42.24', 'Closed (endoscopic) biopsy of esophagus', 'ICD9CM_2010'), +('42.25', 'Open biopsy of esophagus', 'ICD9CM_2010'), +('42.29', 'Other diagnostic procedures on esophagus', 'ICD9CM_2010'), +('42.3', 'Local excision or destruction of lesion or tissue of esophagus', 'ICD9CM_2010'), +('42.31', 'Local excision of esophageal diverticulum', 'ICD9CM_2010'), +('42.32', 'Local excision of other lesion or tissue of esophagus', 'ICD9CM_2010'), +('42.33', 'Endoscopic excision or destruction of lesion or tissue of esophagus', 'ICD9CM_2010'), +('42.39', 'Other destruction of lesion or tissue of esophagus', 'ICD9CM_2010'), +('42.4', 'Excision of esophagus', 'ICD9CM_2010'), +('42.40', 'Esophagectomy, not otherwise specified', 'ICD9CM_2010'), +('42.41', 'Partial esophagectomy', 'ICD9CM_2010'), +('42.42', 'Total esophagectomy', 'ICD9CM_2010'), +('42.5', 'Intrathoracic anastomosis of esophagus', 'ICD9CM_2010'), +('42.51', 'Intrathoracic esophagoesophagostomy', 'ICD9CM_2010'), +('42.52', 'Intrathoracic esophagogastrostomy', 'ICD9CM_2010'), +('42.53', 'Intrathoracic esophageal anastomosis with interposition of small bowel', 'ICD9CM_2010'), +('42.54', 'Other intrathoracic esophagoenterostomy', 'ICD9CM_2010'), +('42.55', 'Intrathoracic esophageal anastomosis with interposition of colon', 'ICD9CM_2010'), +('42.56', 'Other intrathoracic esophagocolostomy', 'ICD9CM_2010'), +('42.58', 'Intrathoracic esophageal anastomosis with other interposition', 'ICD9CM_2010'), +('42.59', 'Other intrathoracic anastomosis of esophagus', 'ICD9CM_2010'), +('42.6', 'Antesternal anastomosis of esophagus', 'ICD9CM_2010'), +('42.61', 'Antesternal esophagoesophagostomy', 'ICD9CM_2010'), +('42.62', 'Antesternal esophagogastrostomy', 'ICD9CM_2010'), +('42.63', 'Antesternal esophageal anastomosis with interposition of small bowel', 'ICD9CM_2010'), +('42.64', 'Other antesternal esophagoenterostomy', 'ICD9CM_2010'), +('42.65', 'Antesternal esophageal anastomosis with interposition of colon', 'ICD9CM_2010'), +('42.66', 'Other antesternal esophagocolostomy', 'ICD9CM_2010'), +('42.68', 'Other antesternal esophageal anastomosis with interposition', 'ICD9CM_2010'), +('42.69', 'Other antesternal anastomosis of esophagus', 'ICD9CM_2010'), +('42.7', 'Esophagomyotomy', 'ICD9CM_2010'), +('42.8', 'Other repair of esophagus', 'ICD9CM_2010'), +('42.81', 'Insertion of permanent tube into esophagus', 'ICD9CM_2010'), +('42.82', 'Suture of laceration of esophagus', 'ICD9CM_2010'), +('42.83', 'Closure of esophagostomy', 'ICD9CM_2010'), +('42.84', 'Repair of esophageal fistula, not elsewhere classified', 'ICD9CM_2010'), +('42.85', 'Repair of esophageal stricture', 'ICD9CM_2010'), +('42.86', 'Production of subcutaneous tunnel without esophageal anastomosis', 'ICD9CM_2010'), +('42.87', 'Other graft of esophagus', 'ICD9CM_2010'), +('42.89', 'Other repair of esophagus', 'ICD9CM_2010'), +('42.9', 'Other operations on esophagus', 'ICD9CM_2010'), +('42.91', 'Ligation of esophageal varices', 'ICD9CM_2010'), +('42.92', 'Dilation of esophagus', 'ICD9CM_2010'), +('42.99', 'Other operations on esophagus', 'ICD9CM_2010'), +('43', 'Incision and excision of stomach', 'ICD9CM_2010'), +('43.0', 'Gastrotomy', 'ICD9CM_2010'), +('43.1', 'Gastrostomy', 'ICD9CM_2010'), +('43.11', 'Percutaneous (endoscopic) gastrostomy (PEG)', 'ICD9CM_2010'), +('43.19', 'Other gastrostomy', 'ICD9CM_2010'), +('43.3', 'Pyloromyotomy', 'ICD9CM_2010'), +('43.4', 'Local excision or destruction of lesion or tissue of stomach', 'ICD9CM_2010'), +('43.41', 'Endoscopic excision or destruction of lesion or tissue of stomach', 'ICD9CM_2010'), +('43.42', 'Local excision of other lesion or tissue of stomach', 'ICD9CM_2010'), +('43.49', 'Other destruction of lesion or tissue of stomach', 'ICD9CM_2010'), +('43.5', 'Partial gastrectomy with anastomosis to esophagus', 'ICD9CM_2010'), +('43.6', 'Partial gastrectomy with anastomosis to duodenum', 'ICD9CM_2010'), +('43.7', 'Partial gastrectomy with anastomosis to jejunum', 'ICD9CM_2010'), +('43.8', 'Other partial gastrectomy', 'ICD9CM_2010'), +('43.81', 'Partial gastrectomy with jejunal transposition', 'ICD9CM_2010'), +('43.89', 'Other partial gastrectomy', 'ICD9CM_2010'), +('43.9', 'Total gastrectomy', 'ICD9CM_2010'), +('43.91', 'Total gastrectomy with intestinal interposition', 'ICD9CM_2010'), +('43.99', 'Other total gastrectomy', 'ICD9CM_2010'), +('44', 'Other operations on stomach', 'ICD9CM_2010'), +('44.0', 'Vagotomy', 'ICD9CM_2010'), +('44.00', 'Vagotomy, not otherwise specified', 'ICD9CM_2010'), +('44.01', 'Truncal vagotomy', 'ICD9CM_2010'), +('44.02', 'Highly selective vagotomy', 'ICD9CM_2010'), +('44.03', 'Other selective vagotomy', 'ICD9CM_2010'), +('44.1', 'Diagnostic procedures on stomach', 'ICD9CM_2010'), +('44.11', 'Transabdominal gastroscopy', 'ICD9CM_2010'), +('44.12', 'Gastroscopy through artificial stoma', 'ICD9CM_2010'), +('44.13', 'Other gastroscopy', 'ICD9CM_2010'), +('44.14', 'Closed biopsy of stomach (endoscopic)', 'ICD9CM_2010'), +('44.15', 'Open biopsy of stomach', 'ICD9CM_2010'), +('44.19', 'Other diagnostic procedures on stomach', 'ICD9CM_2010'), +('44.2', 'Pyloroplasty', 'ICD9CM_2010'), +('44.21', 'Dilation of pylorus by incision', 'ICD9CM_2010'), +('44.22', 'Endoscopic dilation of pylorus', 'ICD9CM_2010'), +('44.29', 'Other pyloroplasty', 'ICD9CM_2010'), +('44.3', 'Gastroenterostomy without gastrectomy', 'ICD9CM_2010'), +('44.31', 'High gastric bypass', 'ICD9CM_2010'), +('44.32', 'Percutaneous (endoscopic) gastojejunostomy', 'ICD9CM_2010'), +('44.38', 'Laparoscopic gastroenterostomy', 'ICD9CM_2010'), +('44.39', 'Other gastroenterostomy', 'ICD9CM_2010'), +('44.4', 'Control of hemorrhage and suture of ulcer of stomach or duodenum', 'ICD9CM_2010'), +('44.40', 'Suture of peptic ulcer, not otherwise specified', 'ICD9CM_2010'), +('44.41', 'Suture of gastric ulcer site', 'ICD9CM_2010'), +('44.42', 'Suture of duodenal ulcer site', 'ICD9CM_2010'), +('44.43', 'Endoscopic control of gastric or duodenal bleeding', 'ICD9CM_2010'), +('44.44', 'Transcatheter embolization for gastric or duodenal bleeding', 'ICD9CM_2010'), +('44.49', 'Other control of hemorrhage of stomach or duodenum', 'ICD9CM_2010'), +('44.5', 'Revision of gastric anastomosis', 'ICD9CM_2010'), +('44.6', 'Other repair of stomach', 'ICD9CM_2010'), +('44.61', 'Suture of laceration of stomach', 'ICD9CM_2010'), +('44.62', 'Closure of gastrostomy', 'ICD9CM_2010'), +('44.63', 'Closure of other gastric fistula', 'ICD9CM_2010'), +('44.64', 'Gastropexy', 'ICD9CM_2010'), +('44.65', 'Esophagogastroplasty', 'ICD9CM_2010'), +('44.66', 'Other procedures for creation of esophagogastric sphincteric competence', 'ICD9CM_2010'), +('44.67', 'Laparoscopic procedures for creation of esophagogastric spincteric competence', 'ICD9CM_2010'), +('44.68', 'Laparoscopic gastroplasty', 'ICD9CM_2010'), +('44.69', 'Other repair of stomach', 'ICD9CM_2010'), +('44.9', 'Other operations on stomach', 'ICD9CM_2010'), +('44.91', 'Ligation of gastric varices', 'ICD9CM_2010'), +('44.92', 'Intraoperative manipulation of stomach', 'ICD9CM_2010'), +('44.93', 'Insertion of gastric bubble (balloon)', 'ICD9CM_2010'), +('44.94', 'Removal of gastric bubble (balloon)', 'ICD9CM_2010'), +('44.95', 'laparoscopic gastric restricve procedure', 'ICD9CM_2010'), +('44.96', 'laparoscopic revision of gastric restrictive procedure', 'ICD9CM_2010'), +('44.97', 'laparoscopic removal of gastric restrictive device(s)', 'ICD9CM_2010'), +('44.98', '(Laparoscopic) adjustment of size of adjustable gastric restrictive device', 'ICD9CM_2010'), +('44.99', 'Other operations on stomach', 'ICD9CM_2010'), +('45', 'Incision, excision, and anastomosis of intestine', 'ICD9CM_2010'), +('45.0', 'Enterotomy', 'ICD9CM_2010'), +('45.00', 'Incision of intestine, not otherwise specified', 'ICD9CM_2010'), +('45.01', 'Incision of duodenum', 'ICD9CM_2010'), +('45.02', 'Other incision of small intestine', 'ICD9CM_2010'), +('45.03', 'Incision of large intestine', 'ICD9CM_2010'), +('45.1', 'Diagnostic procedures on small intestine', 'ICD9CM_2010'), +('45.11', 'Transabdominal endoscopy of small intestine', 'ICD9CM_2010'), +('45.12', 'Endoscopy of small intestine through artificial stoma', 'ICD9CM_2010'), +('45.13', 'Other endoscopy of small intestine', 'ICD9CM_2010'), +('45.14', 'Closed biopsy of small intestine (endoscopic)', 'ICD9CM_2010'), +('45.15', 'Open biopsy of small intestine', 'ICD9CM_2010'), +('45.16', 'Esophagogastroduodenoscopy (EGD) with closed biopsy', 'ICD9CM_2010'), +('45.19', 'Other diagnostic procedures on small intestine', 'ICD9CM_2010'), +('45.2', 'Diagnostic procedures on other intestine', 'ICD9CM_2010'), +('45.21', 'Transabdominal endoscopy of large intestine', 'ICD9CM_2010'), +('45.22', 'Endoscopy of large intestine through artificial stoma', 'ICD9CM_2010'), +('45.23', 'Colonoscopy', 'ICD9CM_2010'), +('45.24', 'Flexible sigmoidoscopy', 'ICD9CM_2010'), +('45.25', 'Closed (endoscopic) biopsy of large intestine', 'ICD9CM_2010'), +('45.26', 'Open biopsy of large intestine', 'ICD9CM_2010'), +('45.27', 'Intestinal biopsy, site unspecified', 'ICD9CM_2010'), +('45.28', 'Other diagnostic procedures on large intestine', 'ICD9CM_2010'), +('45.29', 'Other diagnostic procedures on intestine, site unspecified', 'ICD9CM_2010'), +('45.3', 'Local excision or destruction of lesion or tissue of small intestine', 'ICD9CM_2010'), +('45.30', 'Endoscopic excision or destruction of lesion of duodenum', 'ICD9CM_2010'), +('45.31', 'Other local excision of lesion of duodenum', 'ICD9CM_2010'), +('45.32', 'Other destruction of lesion of duodenum', 'ICD9CM_2010'), +('45.33', 'Local excision of lesion or tissue of small intestine, except duodenum', 'ICD9CM_2010'), +('45.34', 'Other destruction of lesion of small intestine, except duodenum', 'ICD9CM_2010'), +('45.4', 'Local excision or destruction of lesion or tissue of large intestine', 'ICD9CM_2010'), +('45.41', 'Excision of lesion or tissue of large intestine', 'ICD9CM_2010'), +('45.42', 'Endoscopic polypectomy of large intestine', 'ICD9CM_2010'), +('45.43', 'Endoscopic excision or destruction of other lesion or tissue of large intestine', 'ICD9CM_2010'), +('45.49', 'Other destruction of lesion of large intestine', 'ICD9CM_2010'), +('45.5', 'Isolation of intestinal segment', 'ICD9CM_2010'), +('45.50', 'Isolation of intestinal segment, not otherwise specified', 'ICD9CM_2010'), +('45.51', 'Isolation of segment of small intestine', 'ICD9CM_2010'), +('45.52', 'Isolation of segment of large intestine', 'ICD9CM_2010'), +('45.6', 'Other excision of small intestine', 'ICD9CM_2010'), +('45.61', 'Multiple segmental resection of small intestine', 'ICD9CM_2010'), +('45.62', 'Other partial resection of small intestine', 'ICD9CM_2010'), +('45.63', 'Total removal of small intestine', 'ICD9CM_2010'), +('45.7', 'Open and other partial excision of large intestine', 'ICD9CM_2010'), +('45.71', 'Open and other multiple segmental resection of large intestine', 'ICD9CM_2010'), +('45.72', 'Open and other Cecectomy', 'ICD9CM_2010'), +('45.73', 'Open and other Right hemicolectomy', 'ICD9CM_2010'), +('45.74', 'Open and other Resection of transverse colon', 'ICD9CM_2010'), +('45.75', 'Open and other Left hemicolectomy', 'ICD9CM_2010'), +('45.76', 'Open and other Sigmoidectomy', 'ICD9CM_2010'), +('45.79', 'Other and unspecified partial excision of large intestine', 'ICD9CM_2010'), +('45.8', 'Total intra-abdominal colectomy', 'ICD9CM_2010'), +('45.81', 'Laparoscopic total intra-abdominal colectomy', 'ICD9CM_2010'), +('45.82', 'Open total intra-abdominal colectomy', 'ICD9CM_2010'), +('45.83', 'Other and unspecified total intra-abdominal colectomy', 'ICD9CM_2010'), +('45.9', 'Intestinal anastomosis', 'ICD9CM_2010'), +('45.90', 'Intestinal anastomosis, not otherwise specified', 'ICD9CM_2010'), +('45.91', 'Small-to-small intestinal anastomosis', 'ICD9CM_2010'), +('45.92', 'Anastomosis of small intestine to rectal stump', 'ICD9CM_2010'), +('45.93', 'Other small-to-large intestinal anastomosis', 'ICD9CM_2010'), +('45.94', 'Large-to-large intestinal anastomosis', 'ICD9CM_2010'), +('45.95', 'Anastomosis to anus', 'ICD9CM_2010'), +('46', 'Other operations on intestine', 'ICD9CM_2010'), +('46.0', 'Exteriorization of intestine', 'ICD9CM_2010'), +('46.01', 'Exteriorization of small intestine', 'ICD9CM_2010'), +('46.02', 'Resection of exteriorized segment of small intestine', 'ICD9CM_2010'), +('46.03', 'Exteriorization of large intestine', 'ICD9CM_2010'), +('46.04', 'Resection of exteriorized segment of large intestine', 'ICD9CM_2010'), +('46.1', 'Colostomy', 'ICD9CM_2010'), +('46.10', 'Colostomy, not otherwise specified', 'ICD9CM_2010'), +('46.11', 'Temporary colostomy', 'ICD9CM_2010'), +('46.13', 'Permanent colostomy', 'ICD9CM_2010'), +('46.14', 'Delayed opening of colostomy', 'ICD9CM_2010'), +('46.2', 'Ileostomy', 'ICD9CM_2010'), +('46.20', 'Ileostomy, not otherwise specified', 'ICD9CM_2010'), +('46.21', 'Temporary ileostomy', 'ICD9CM_2010'), +('46.22', 'Continent ileostomy', 'ICD9CM_2010'), +('46.23', 'Other permanent ileostomy', 'ICD9CM_2010'), +('46.24', 'Delayed opening of ileostomy', 'ICD9CM_2010'), +('46.3', 'Other enterostomy', 'ICD9CM_2010'), +('46.31', 'Delayed opening of other enterostomy', 'ICD9CM_2010'), +('46.32', 'Percutaneous (endoscopic) jejunostomy (PEJ)', 'ICD9CM_2010'), +('46.39', 'Other enterostomy', 'ICD9CM_2010'), +('46.4', 'Revision of intestinal stoma', 'ICD9CM_2010'), +('46.40', 'Revision of intestinal stoma, not otherwise specified', 'ICD9CM_2010'), +('46.41', 'Revision of stoma of small intestine', 'ICD9CM_2010'), +('46.42', 'Repair of pericolostomy hernia', 'ICD9CM_2010'), +('46.43', 'Other revision of stoma of large intestine', 'ICD9CM_2010'), +('46.5', 'Closure of intestinal stoma', 'ICD9CM_2010'), +('46.50', 'Closure of intestinal stoma, not otherwise specified', 'ICD9CM_2010'), +('46.51', 'Closure of stoma of small intestine', 'ICD9CM_2010'), +('46.52', 'Closure of stoma of large intestine', 'ICD9CM_2010'), +('46.6', 'Fixation of intestine', 'ICD9CM_2010'), +('46.60', 'Fixation of intestine, not otherwise specified', 'ICD9CM_2010'), +('46.61', 'Fixation of small intestine to abdominal wall', 'ICD9CM_2010'), +('46.62', 'Other fixation of small intestine', 'ICD9CM_2010'), +('46.63', 'Fixation of large intestine to abdominal wall', 'ICD9CM_2010'), +('46.64', 'Other fixation of large intestine', 'ICD9CM_2010'), +('46.7', 'Other repair of intestine', 'ICD9CM_2010'), +('46.71', 'Suture of laceration of duodenum', 'ICD9CM_2010'), +('46.72', 'Closure of fistula of duodenum', 'ICD9CM_2010'), +('46.73', 'Suture of laceration of small intestine, except duodenum', 'ICD9CM_2010'), +('46.74', 'Closure of fistula of small intestine, except duodenum', 'ICD9CM_2010'), +('46.75', 'Suture of laceration of large intestine', 'ICD9CM_2010'), +('46.76', 'Closure of fistula of large intestine', 'ICD9CM_2010'), +('46.79', 'Other repair of intestine', 'ICD9CM_2010'), +('46.8', 'Dilation and manipulation of intestine', 'ICD9CM_2010'), +('46.80', 'Intra-abdominal manipulation of intestine, not otherwise specified', 'ICD9CM_2010'), +('46.81', 'Intra-abdominal manipulation of small intestine', 'ICD9CM_2010'), +('46.82', 'Intra-abdominal manipulation of large intestine', 'ICD9CM_2010'), +('46.85', 'Dilation of intestine', 'ICD9CM_2010'), +('46.86', 'Endoscopic insertion of colonic stent(s)', 'ICD9CM_2010'), +('46.87', 'Other insertion of colonic stent(s)', 'ICD9CM_2010'), +('46.9', 'Other operations on intestines', 'ICD9CM_2010'), +('46.91', 'Myotomy of sigmoid colon', 'ICD9CM_2010'), +('46.92', 'Myotomy of other parts of colon', 'ICD9CM_2010'), +('46.93', 'Revision of anastomosis of small intestine', 'ICD9CM_2010'), +('46.94', 'Revision of anastomosis of large intestine', 'ICD9CM_2010'), +('46.95', 'Local perfusion of small intestine', 'ICD9CM_2010'), +('46.96', 'Local perfusion of large intestine', 'ICD9CM_2010'), +('46.97', 'Transplant of intestine', 'ICD9CM_2010'), +('46.99', 'Other operations on intestines', 'ICD9CM_2010'), +('47', 'Operations on appendix', 'ICD9CM_2010'), +('47.0', 'Appendectomy', 'ICD9CM_2010'), +('47.01', 'Laparascopic appendectomy', 'ICD9CM_2010'), +('47.09', 'Other appendectomy', 'ICD9CM_2010'), +('47.1', 'Incidental appendectomy', 'ICD9CM_2010'), +('47.11', 'Laposcopic incidental appendectomy', 'ICD9CM_2010'), +('47.19', 'other incidental appendectomy', 'ICD9CM_2010'), +('47.2', 'Drainage of appendiceal abscess', 'ICD9CM_2010'), +('47.9', 'Other operations on appendix', 'ICD9CM_2010'), +('47.91', 'Appendicostomy', 'ICD9CM_2010'), +('47.92', 'Closure of appendiceal fistula', 'ICD9CM_2010'), +('47.99', 'Other operations on appendix', 'ICD9CM_2010'), +('48', 'Operations on rectum rectosigmoid, and perirectal tissue', 'ICD9CM_2010'), +('48.0', 'Proctotomy', 'ICD9CM_2010'), +('48.1', 'Proctostomy', 'ICD9CM_2010'), +('48.2', 'Diagnostic procedures on rectum, rectosigmoid, and perirectal tissue', 'ICD9CM_2010'), +('48.21', 'Transabdominal proctosigmoidoscopy', 'ICD9CM_2010'), +('48.22', 'Proctosigmoidoscopy through artificial stoma', 'ICD9CM_2010'), +('48.23', 'Rigid proctosigmoidoscopy', 'ICD9CM_2010'), +('48.24', 'Closed (endoscopic) biopsy of rectum', 'ICD9CM_2010'), +('48.25', 'Open biopsy of rectum', 'ICD9CM_2010'), +('48.26', 'Biopsy of perirectal tissue', 'ICD9CM_2010'), +('48.29', 'Other diagnostic procedures on rectum, rectosigmoid, and perirectal', 'ICD9CM_2010'), +('48.3', 'Local excision or destruction of lesion or tissue of rectum', 'ICD9CM_2010'), +('48.31', 'Radical electrocoagulation of rectal lesion or tissue', 'ICD9CM_2010'), +('48.32', 'Other electrocoagulation of rectal lesion or tissue', 'ICD9CM_2010'), +('48.33', 'Destruction of rectal lesion or tissue by laser', 'ICD9CM_2010'), +('48.34', 'Destruction of rectal lesion or tissue by cryosurgery', 'ICD9CM_2010'), +('48.35', 'Local excision of rectal lesion or tissue', 'ICD9CM_2010'), +('48.36', '(Endoscopic) polypectomy of rectum', 'ICD9CM_2010'), +('48.4', 'Pull-through resection of rectum', 'ICD9CM_2010'), +('48.40', 'Pull-through resection of rectum, not otherwise specified', 'ICD9CM_2010'), +('48.41', 'Soave submucosal resection of rectum', 'ICD9CM_2010'), +('48.42', 'Laparoscopic pull-through resection of rectum', 'ICD9CM_2010'), +('48.43', 'Open pull-through resection of rectum', 'ICD9CM_2010'), +('48.49', 'Other pull-through resection of rectum', 'ICD9CM_2010'), +('48.5', 'Abdominoperineal resection of rectum', 'ICD9CM_2010'), +('48.50', 'Abdominoperineal resection of the rectum, not otherwise specified', 'ICD9CM_2010'), +('48.51', 'Laparoscopic abdominoperineal resection of the rectum', 'ICD9CM_2010'), +('48.52', 'Open abdominoperineal resection of the rectum', 'ICD9CM_2010'), +('48.59', 'Other abdominoperineal resection of the rectum', 'ICD9CM_2010'), +('48.6', 'Other resection of rectum', 'ICD9CM_2010'), +('48.61', 'Transsacral rectosigmoidectomy', 'ICD9CM_2010'), +('48.62', 'Anterior resection of rectum with synchronous colostomy', 'ICD9CM_2010'), +('48.63', 'Other anterior resection of rectum', 'ICD9CM_2010'), +('48.64', 'Posterior resection of rectum', 'ICD9CM_2010'), +('48.65', 'Duhamel resection of rectum', 'ICD9CM_2010'), +('48.69', 'Other resection of rectum', 'ICD9CM_2010'), +('48.7', 'Repair of rectum', 'ICD9CM_2010'), +('48.71', 'Suture of laceration of rectum', 'ICD9CM_2010'), +('48.72', 'Closure of proctostomy', 'ICD9CM_2010'), +('48.73', 'Closure of other rectal fistula', 'ICD9CM_2010'), +('48.74', 'Rectorectostomy', 'ICD9CM_2010'), +('48.75', 'Abdominal proctopexy', 'ICD9CM_2010'), +('48.76', 'Other proctopexy', 'ICD9CM_2010'), +('48.79', 'Other repair of rectum', 'ICD9CM_2010'), +('48.8', 'Incision or excision of perirectal tissue or lesion', 'ICD9CM_2010'), +('48.81', 'Incision of perirectal tissue', 'ICD9CM_2010'), +('48.82', 'Excision of perirectal tissue', 'ICD9CM_2010'), +('48.9', 'Other operations on rectum and perirectal tissue', 'ICD9CM_2010'), +('48.91', 'Incision of rectal stricture', 'ICD9CM_2010'), +('48.92', 'Anorectal myectomy', 'ICD9CM_2010'), +('48.93', 'Repair of perirectal fistula', 'ICD9CM_2010'), +('48.99', 'Other operations on rectum and perirectal tissue', 'ICD9CM_2010'), +('49', 'Operations on anus', 'ICD9CM_2010'), +('49.0', 'Incision or excision of perianal tissue', 'ICD9CM_2010'), +('49.01', 'Incision of perianal abscess', 'ICD9CM_2010'), +('49.02', 'Other incision of perianal tissue', 'ICD9CM_2010'), +('49.03', 'Excision of perianal skin tags', 'ICD9CM_2010'), +('49.04', 'Other excision of perianal tissue', 'ICD9CM_2010'), +('49.1', 'Incision or excision of anal fistula', 'ICD9CM_2010'), +('49.11', 'Anal fistulotomy', 'ICD9CM_2010'), +('49.12', 'Anal fistulectomy', 'ICD9CM_2010'), +('49.2', 'Diagnostic procedures on anus and perianal tissue', 'ICD9CM_2010'), +('49.21', 'Anoscopy', 'ICD9CM_2010'), +('49.22', 'Biopsy of perianal tissue', 'ICD9CM_2010'), +('49.23', 'Biopsy of anus', 'ICD9CM_2010'), +('49.29', 'Other diagnostic procedures on anus and perianal tissue', 'ICD9CM_2010'), +('49.3', 'Local excision or destruction of other lesion or tissue of anus', 'ICD9CM_2010'), +('49.31', 'Endoscopic excision or destruction of lesion or tissue of anus', 'ICD9CM_2010'), +('49.39', 'Other local excision or destruction of lesion or tissue of anus', 'ICD9CM_2010'), +('49.4', 'Procedures on hemorrhoids', 'ICD9CM_2010'), +('49.41', 'Reduction of hemorrhoids', 'ICD9CM_2010'), +('49.42', 'Injection of hemorrhoids', 'ICD9CM_2010'), +('49.43', 'Cauterization of hemorrhoids', 'ICD9CM_2010'), +('49.44', 'Destruction of hemorrhoids by cryotherapy', 'ICD9CM_2010'), +('49.45', 'Ligation of hemorrhoids', 'ICD9CM_2010'), +('49.46', 'Excision of hemorrhoids', 'ICD9CM_2010'), +('49.47', 'Evacuation of thrombosed hemorrhoids', 'ICD9CM_2010'), +('49.49', 'Other procedures on hemorrhoids', 'ICD9CM_2010'), +('49.5', 'Division of anal sphincter', 'ICD9CM_2010'), +('49.51', 'Left lateral anal sphincterotomy', 'ICD9CM_2010'), +('49.52', 'Posterior anal sphincterotomy', 'ICD9CM_2010'), +('49.59', 'Other anal sphincterotomy', 'ICD9CM_2010'), +('49.6', 'Excision of anus', 'ICD9CM_2010'), +('49.7', 'Repair of anus', 'ICD9CM_2010'), +('49.71', 'Suture of laceration of anus', 'ICD9CM_2010'), +('49.72', 'Anal cerclage', 'ICD9CM_2010'), +('49.73', 'Closure of anal fistula', 'ICD9CM_2010'), +('49.74', 'Gracilis muscle transplant for anal incontinence', 'ICD9CM_2010'), +('49.75', 'Implantation or revision of artificial anal sphincter', 'ICD9CM_2010'), +('49.76', 'Removal of artificial anal sphincter', 'ICD9CM_2010'), +('49.79', 'Other repair of anal sphincter', 'ICD9CM_2010'), +('49.9', 'Other operations on anus', 'ICD9CM_2010'), +('49.91', 'Incision of anal septum', 'ICD9CM_2010'), +('49.92', 'Insertion of subcutaneous electrical anal stimulator', 'ICD9CM_2010'), +('49.93', 'Other incision of anus', 'ICD9CM_2010'), +('49.94', 'Reduction of anal prolapse', 'ICD9CM_2010'), +('49.95', 'Control of (postoperative) hemorrhage of anus', 'ICD9CM_2010'), +('49.99', 'Other operations on anus', 'ICD9CM_2010'), +('50', 'Operations on liver', 'ICD9CM_2010'), +('50.0', 'Hepatotomy', 'ICD9CM_2010'), +('50.1', 'Diagnostic procedures on liver', 'ICD9CM_2010'), +('50.11', 'Closed (percutaneous) (needle) biopsy of liver', 'ICD9CM_2010'), +('50.12', 'Open biopsy of liver', 'ICD9CM_2010'), +('50.13', 'Transjugular liver biopsy', 'ICD9CM_2010'), +('50.14', 'Laparoscopic liver biopsy', 'ICD9CM_2010'), +('50.19', 'Other diagnostic procedures on liver', 'ICD9CM_2010'), +('50.2', 'Local excision or destruction of liver tissue or lesion', 'ICD9CM_2010'), +('50.21', 'Marsupialization of lesion of liver', 'ICD9CM_2010'), +('50.22', 'Partial hepatectomy', 'ICD9CM_2010'), +('50.23', 'Open ablation of liver lesion or tissue', 'ICD9CM_2010'), +('50.24', 'Percutaneous ablation of liver lesion or tissue', 'ICD9CM_2010'), +('50.25', 'Laparoscopic ablation of liver lesion or tissue', 'ICD9CM_2010'), +('50.26', 'Other and unspecified ablation of liver lesion or tissue', 'ICD9CM_2010'), +('50.29', 'Other destruction of lesion of liver', 'ICD9CM_2010'), +('50.3', 'Lobectomy of liver', 'ICD9CM_2010'), +('50.4', 'Total hepatectomy', 'ICD9CM_2010'), +('50.5', 'Liver transplant', 'ICD9CM_2010'), +('50.51', 'Auxiliary liver transplant', 'ICD9CM_2010'), +('50.59', 'Other transplant of liver', 'ICD9CM_2010'), +('50.6', 'Repair of liver', 'ICD9CM_2010'), +('50.61', 'Closure of laceration of liver', 'ICD9CM_2010'), +('50.69', 'Other repair of liver', 'ICD9CM_2010'), +('50.9', 'Other operations on liver', 'ICD9CM_2010'), +('50.91', 'Percutaneous aspiration of liver', 'ICD9CM_2010'), +('50.92', 'Extracorporeal hepatic assistance', 'ICD9CM_2010'), +('50.93', 'Localized perfusion of liver', 'ICD9CM_2010'), +('50.94', 'Other injection of therapeutic substance into liver', 'ICD9CM_2010'), +('50.99', 'Other operations on liver', 'ICD9CM_2010'), +('51', 'Operations on gallbladder and biliary tract', 'ICD9CM_2010'), +('51.0', 'Cholecystotomy and cholecystostomy', 'ICD9CM_2010'), +('51.01', 'Percutaneous aspiration of gallbladder', 'ICD9CM_2010'), +('51.02', 'Trocar cholecystostomy', 'ICD9CM_2010'), +('51.03', 'Other cholecystostomy', 'ICD9CM_2010'), +('51.04', 'Other cholecystotomy', 'ICD9CM_2010'), +('51.1', 'Diagnostic procedures on biliary tract', 'ICD9CM_2010'), +('51.10', 'Endoscopic retrograde cholangiopancreatography (ERCP)', 'ICD9CM_2010'), +('51.11', 'Endoscopic retrograde cholangiography (ERC)', 'ICD9CM_2010'), +('51.12', 'Percutaneous biopsy of gallbladder or bile ducts', 'ICD9CM_2010'), +('51.13', 'Open biopsy of gallbladder or bile ducts', 'ICD9CM_2010'), +('51.14', 'Other closed (endoscopic) biopsy of biliary duct or sphincter of Oddi', 'ICD9CM_2010'), +('51.15', 'Pressure measurement of sphincter of Oddi', 'ICD9CM_2010'), +('51.19', 'Other diagnostic procedures on biliary tract', 'ICD9CM_2010'), +('51.2', 'Cholecystectomy', 'ICD9CM_2010'), +('51.21', 'Other partial cholecystectomy', 'ICD9CM_2010'), +('51.22', 'Cholecystectomy', 'ICD9CM_2010'), +('51.23', 'Laparoscopic cholecystectomy', 'ICD9CM_2010'), +('51.24', 'Laparoscopic partial cholecystectomy', 'ICD9CM_2010'), +('51.3', 'Anastomosis of gallbladder or bile duct', 'ICD9CM_2010'), +('51.31', 'Anastomosis of gallbladder to hepatic ducts', 'ICD9CM_2010'), +('51.32', 'Anastomosis of gallbladder to intestine', 'ICD9CM_2010'), +('51.33', 'Anastomosis of gallbladder to pancreas', 'ICD9CM_2010'), +('51.34', 'Anastomosis of gallbladder to stomach', 'ICD9CM_2010'), +('51.35', 'Other gallbladder anastomosis', 'ICD9CM_2010'), +('51.36', 'Choledochoenterostomy', 'ICD9CM_2010'), +('51.37', 'Anastomosis of hepatic duct to gastrointestinal tract', 'ICD9CM_2010'), +('51.39', 'Other bile duct anastomosis', 'ICD9CM_2010'), +('51.4', 'Incision of bile duct for relief of obstruction', 'ICD9CM_2010'), +('51.41', 'Common duct exploration for removal of calculus', 'ICD9CM_2010'), +('51.42', 'Common duct exploration for relief of other obstruction', 'ICD9CM_2010'), +('51.43', 'Insertion of choledochohepatic tube for decompression', 'ICD9CM_2010'), +('51.49', 'Incision of other bile ducts for relief of obstruction', 'ICD9CM_2010'), +('51.5', 'Other incision of bile duct', 'ICD9CM_2010'), +('51.51', 'Exploration of common bile duct', 'ICD9CM_2010'), +('51.59', 'Incision of bile duct', 'ICD9CM_2010'), +('51.6', 'Local excision or destruction of lesion or tissue of biliary ducts and sphincter of Oddi', 'ICD9CM_2010'), +('51.61', 'Excision of cystic duct remnant', 'ICD9CM_2010'), +('51.62', 'Excision of ampulla of vater (with reimplantation of common duct)', 'ICD9CM_2010'), +('51.63', 'Other excision of common duct', 'ICD9CM_2010'), +('51.64', 'Endoscopic excision or destruction of lesion of biliary ducts or sphincter of Oddi', 'ICD9CM_2010'), +('51.69', 'Excision of other bile duct', 'ICD9CM_2010'), +('51.7', 'Repair of bile ducts', 'ICD9CM_2010'), +('51.71', 'Simple suture of common bile duct', 'ICD9CM_2010'), +('51.72', 'Choledochoplasty', 'ICD9CM_2010'), +('51.79', 'Repair of other bile ducts', 'ICD9CM_2010'), +('51.8', 'Other operations on biliary ducts and sphincter of Oddi', 'ICD9CM_2010'), +('51.81', 'Dilation of sphincter of Oddi', 'ICD9CM_2010'), +('51.82', 'Pancreatic sphincterotomy', 'ICD9CM_2010'), +('51.83', 'Pancreatic sphincteroplasty', 'ICD9CM_2010'), +('51.84', 'Endoscopic dilation of ampulla and biliary duct', 'ICD9CM_2010'), +('51.85', 'Endoscopic sphincterotomy and papillotomy', 'ICD9CM_2010'), +('51.86', 'Endoscopic insertion of nasobiliary drainage tube', 'ICD9CM_2010'), +('51.87', 'Endoscopic insertion of stent (tube) into bile duct', 'ICD9CM_2010'), +('51.88', 'Endoscopic removal of stone(s) from biliary tract', 'ICD9CM_2010'), +('51.89', 'Other operations on sphincter of Oddi', 'ICD9CM_2010'), +('51.9', 'Other operations on biliary tract', 'ICD9CM_2010'), +('51.91', 'Repair of laceration of gallbladder', 'ICD9CM_2010'), +('51.92', 'Closure of cholecystostomy', 'ICD9CM_2010'), +('51.93', 'Closure of other biliary fistula', 'ICD9CM_2010'), +('51.94', 'Revision of anastomosis of biliary tract', 'ICD9CM_2010'), +('51.95', 'Removal of prosthetic device from bile duct', 'ICD9CM_2010'), +('51.96', 'Percutaneous extraction of common duct stones', 'ICD9CM_2010'), +('51.98', 'Other percutaneous procedures on biliary tract', 'ICD9CM_2010'), +('51.99', 'Other operations on biliary tract', 'ICD9CM_2010'), +('52', 'Operations on pancreas', 'ICD9CM_2010'), +('52.0', 'Pancreatotomy', 'ICD9CM_2010'), +('52.01', 'Drainage of pancreatic cyst by catheter', 'ICD9CM_2010'), +('52.09', 'Other pancreatotomy', 'ICD9CM_2010'), +('52.1', 'Diagnostic procedures on pancreas', 'ICD9CM_2010'), +('52.11', 'Closed [aspiration] [needle][percutaneous] biopsy of pancreas', 'ICD9CM_2010'), +('52.12', 'Open biopsy of pancreas', 'ICD9CM_2010'), +('52.13', 'Endoscopic retrograde pancreatography (ERP)', 'ICD9CM_2010'), +('52.14', 'Closed [endoscopic] biopsy of pancreatic duct', 'ICD9CM_2010'), +('52.19', 'Other diagnostic procedures on pancreas', 'ICD9CM_2010'), +('52.2', 'Local excision or destruction of pancreas and pancreatic duct', 'ICD9CM_2010'), +('52.21', 'Endoscopic excision or destruction of lesion or tissue of pancreatic', 'ICD9CM_2010'), +('52.22', 'Other excision or destruction of lesion or tissue of pancreas or pancreatic duct', 'ICD9CM_2010'), +('52.3', 'Marsupialization of pancreatic cyst', 'ICD9CM_2010'), +('52.4', 'Internal drainage of pancreatic cyst', 'ICD9CM_2010'), +('52.5', 'Partial pancreatectomy', 'ICD9CM_2010'), +('52.51', 'Proximal pancreatectomy', 'ICD9CM_2010'), +('52.52', 'Distal pancreatectomy', 'ICD9CM_2010'), +('52.53', 'Radical subtotal pancreatectomy', 'ICD9CM_2010'), +('52.59', 'Other partial pancreatectomy', 'ICD9CM_2010'), +('52.6', 'Total pancreatectomy', 'ICD9CM_2010'), +('52.7', 'Radical pancreaticoduodenectomy', 'ICD9CM_2010'), +('52.8', 'Transplant of pancreas', 'ICD9CM_2010'), +('52.80', 'Pancreatic transplant, not otherwise specified', 'ICD9CM_2010'), +('52.81', 'Reimplantation of pancreatic tissue', 'ICD9CM_2010'), +('52.82', 'Homotransplant of pancreas', 'ICD9CM_2010'), +('52.83', 'Heterotransplant of pancreas', 'ICD9CM_2010'), +('52.84', 'Autotransplantation of cells of Islets of Langerhans', 'ICD9CM_2010'), +('52.85', 'Allotransplantation of cells of Islets of Langerhans', 'ICD9CM_2010'), +('52.86', 'Transplantation of cells of Islets of Langerhans, not otherwise specified', 'ICD9CM_2010'), +('52.9', 'Other operations on pancreas', 'ICD9CM_2010'), +('52.92', 'Cannulation of pancreatic duct', 'ICD9CM_2010'), +('52.93', 'Endoscopic insertion of stent (tube) into pancreatic duct', 'ICD9CM_2010'), +('52.94', 'Endoscopic removal of stone(s) from pancreatic duct', 'ICD9CM_2010'), +('52.95', 'Other repair of pancreas', 'ICD9CM_2010'), +('52.96', 'Anastomosis of pancreas', 'ICD9CM_2010'), +('52.97', 'Endoscopic insertion of nasopancreatic drainage tube', 'ICD9CM_2010'), +('52.98', 'Endoscopic dilation of pancreatic duct', 'ICD9CM_2010'), +('52.99', 'Other operations on pancreas', 'ICD9CM_2010'), +('53', 'Repair of hernia', 'ICD9CM_2010'), +('53.0', 'Other unilateral repair of inguinal hernia', 'ICD9CM_2010'), +('53.00', 'Unilateral repair of inguinal hernia, not otherwise specified', 'ICD9CM_2010'), +('53.01', 'Other and open repair of direct inguinal hernia', 'ICD9CM_2010'), +('53.02', 'Other and open repair of indirect inguinal hernia', 'ICD9CM_2010'), +('53.03', 'Other and open repair of direct inguinal hernia with graft or prosthesis', 'ICD9CM_2010'), +('53.04', 'Other and open repair of indirect inguinal hernia with graft or prosthesis', 'ICD9CM_2010'), +('53.05', 'Repair of inguinal hernia with graft or prosthesis, not otherwise specified', 'ICD9CM_2010'), +('53.1', 'Other bilateral repair of inguinal hernia', 'ICD9CM_2010'), +('53.10', 'Bilateral repair of inguinal hernia, not otherwise specified', 'ICD9CM_2010'), +('53.11', 'Other and open bilateral repair of direct inguinal hernia', 'ICD9CM_2010'), +('53.12', 'Other and open bilateral repair of indirect inguinal hernia', 'ICD9CM_2010'), +('53.13', 'Other and open bilateral repair of inguinal hernia, one direct and one indirect', 'ICD9CM_2010'), +('53.14', 'Other and open bilateral repair of direct inguinal hernia with graft or prosthesis', 'ICD9CM_2010'), +('53.15', 'Other and open bilateral repair of indirect inguinal hernia with graft or prosthesis', 'ICD9CM_2010'), +('53.16', 'Other and open bilateral repair of inguinal hernia, one direct and one indirect, with graft or prosthesis', 'ICD9CM_2010'), +('53.17', 'Bilateral inguinal hernia repair with graft or prosthesis, not otherwise specified', 'ICD9CM_2010'), +('53.2', 'Unilateral repair of femoral hernia', 'ICD9CM_2010'), +('53.21', 'Unilateral repair of femoral hernia with graft or prosthesis', 'ICD9CM_2010'), +('53.29', 'Other unilateral femoral herniorrhaphy', 'ICD9CM_2010'), +('53.3', 'Bilateral repair of femoral hernia', 'ICD9CM_2010'), +('53.31', 'Bilateral repair of femoral hernia with graft or prosthesis', 'ICD9CM_2010'), +('53.39', 'Other bilateral femoral herniorrhaphy', 'ICD9CM_2010'), +('53.4', 'Repair of umbilical hernia', 'ICD9CM_2010'), +('53.41', 'Other and open repair of umbilical hernia with graft or prosthesis', 'ICD9CM_2010'), +('53.42', 'Laparoscopic repair of umbilical hernia with graft or prosthesis', 'ICD9CM_2010'), +('53.43', 'Other laparoscopic umbilical herniorrhaphy', 'ICD9CM_2010'), +('53.49', 'Other open umbilical herniorrhaphy', 'ICD9CM_2010'), +('53.5', 'Repair of other hernia of anterior abdominal wall (without graft or', 'ICD9CM_2010'), +('53.51', 'Incisional hernia repair', 'ICD9CM_2010'), +('53.59', 'Repair of other hernia of anterior abdominal wall', 'ICD9CM_2010'), +('53.6', 'Repair of other hernia of anterior abdominal wall with graft or prosthesis', 'ICD9CM_2010'), +('53.61', 'Other open incisional hernia repair with graft or prosthesis', 'ICD9CM_2010'), +('53.62', 'Laparoscopic incisional hernia repair with graft or prosthesis', 'ICD9CM_2010'), +('53.63', 'Other laparoscopic repair of other hernia of anterior abdominal wall with graft or prosthesis', 'ICD9CM_2010'), +('53.69', 'Other open repair of other hernia of anterior abdominal wall with graft or prosthesis', 'ICD9CM_2010'), +('53.7', 'Repair of diaphragmatic hernia, abdominal approach', 'ICD9CM_2010'), +('53.71', 'Laparoscopic repair of diaphragmatic hernia, abdominal approach', 'ICD9CM_2010'), +('53.72', 'Other and open repair of diaphragmatic hernia, abdominal approach', 'ICD9CM_2010'), +('53.75', 'Repair of diaphragmatic hernia, abdominal approach, not otherwise specified', 'ICD9CM_2010'), +('53.8', 'Repair of diaphragmatic hernia, thoracic approach', 'ICD9CM_2010'), +('53.80', 'Repair of diaphragmatic hernia with thoracic approach, not otherwise specified', 'ICD9CM_2010'), +('53.81', 'Plication of the diaphragm', 'ICD9CM_2010'), +('53.82', 'Repair of parasternal hernia', 'ICD9CM_2010'), +('53.83', 'Laparoscopic repair of diaphragmatic hernia with thoracic approach', 'ICD9CM_2010'), +('53.84', 'Other and open repair of diaphragmatic hernia, with thoracic approach', 'ICD9CM_2010'), +('53.9', 'Other hernia repair', 'ICD9CM_2010'), +('54', 'Other operations on abdominal region', 'ICD9CM_2010'), +('54.0', 'Incision of abdominal wall', 'ICD9CM_2010'), +('54.1', 'Laparotomy', 'ICD9CM_2010'), +('54.11', 'Exploratory laparotomy', 'ICD9CM_2010'), +('54.12', 'Reopening of recent laparotomy site', 'ICD9CM_2010'), +('54.19', 'Other laparotomy', 'ICD9CM_2010'), +('54.2', 'Diagnostic procedures of abdominal region', 'ICD9CM_2010'), +('54.21', 'Laparoscopy', 'ICD9CM_2010'), +('54.22', 'Biopsy of abdominal wall or umbilicus', 'ICD9CM_2010'), +('54.23', 'Biopsy of peritoneum', 'ICD9CM_2010'), +('54.24', 'Closed [percutaneous] [needle] biopsy of intra-abdominal mass', 'ICD9CM_2010'), +('54.25', 'Peritoneal lavage', 'ICD9CM_2010'), +('54.29', 'Other diagnostic procedures on abdominal region', 'ICD9CM_2010'), +('54.3', 'Excision or destruction of lesion or tissue of abdominal wall or umbilicus', 'ICD9CM_2010'), +('54.4', 'Excision or destruction of peritoneal tissue', 'ICD9CM_2010'), +('54.5', 'Lysis of peritoneal adhesions', 'ICD9CM_2010'), +('54.51', 'Laparoscopic lysis of peritoneal adhesions', 'ICD9CM_2010'), +('54.59', 'Other lysis of peritoneal adhesions', 'ICD9CM_2010'), +('54.6', 'Suture of abdominal wall and peritoneum', 'ICD9CM_2010'), +('54.61', 'Reclosure of postoperative disruption of abdominal wall', 'ICD9CM_2010'), +('54.62', 'Delayed closure of granulating abdominal wound', 'ICD9CM_2010'), +('54.63', 'Other suture of abdominal wall', 'ICD9CM_2010'), +('54.64', 'Suture of peritoneum', 'ICD9CM_2010'), +('54.7', 'Other repair of abdominal wall and peritoneum', 'ICD9CM_2010'), +('54.71', 'Repair of gastroschisis', 'ICD9CM_2010'), +('54.72', 'Other repair of abdominal wall', 'ICD9CM_2010'), +('54.73', 'Other repair of peritoneum', 'ICD9CM_2010'), +('54.74', 'Other repair of omentum', 'ICD9CM_2010'), +('54.75', 'Other repair of mesentery', 'ICD9CM_2010'), +('54.9', 'Other operations of abdominal region', 'ICD9CM_2010'), +('54.91', 'Percutaneous abdominal drainage', 'ICD9CM_2010'), +('54.92', 'Removal of foreign body from peritoneal cavity', 'ICD9CM_2010'), +('54.93', 'Creation of cutaneoperitoneal fistula', 'ICD9CM_2010'), +('54.94', 'Creation of peritoneovascular shunt', 'ICD9CM_2010'), +('54.95', 'Incision of peritoneum', 'ICD9CM_2010'), +('54.96', 'Injection of air into peritoneal cavity', 'ICD9CM_2010'), +('54.97', 'Injection of locally-acting therapeutic substance into peritoneal cavity', 'ICD9CM_2010'), +('54.98', 'Peritoneal dialysis', 'ICD9CM_2010'), +('54.99', 'Other operations of abdominal region', 'ICD9CM_2010'), +('55', 'Operations on kidney', 'ICD9CM_2010'), +('55.0', 'Nephrotomy and nephrostomy', 'ICD9CM_2010'), +('55.01', 'Nephrotomy', 'ICD9CM_2010'), +('55.02', 'Nephrostomy', 'ICD9CM_2010'), +('55.03', 'Percutaneous nephrostomy without fragmentation', 'ICD9CM_2010'), +('55.04', 'Percutaneous nephrostomy with fragmentation', 'ICD9CM_2010'), +('55.1', 'Pyelotomy and pyelostomy', 'ICD9CM_2010'), +('55.11', 'Pyelotomy', 'ICD9CM_2010'), +('55.12', 'Pyelostomy', 'ICD9CM_2010'), +('55.2', 'Diagnostic procedures on kidney', 'ICD9CM_2010'), +('55.21', 'Nephroscopy', 'ICD9CM_2010'), +('55.22', 'Pyeloscopy', 'ICD9CM_2010'), +('55.23', 'Closed [percutaneous] [needle] biopsy of kidney', 'ICD9CM_2010'), +('55.24', 'Open biopsy of kidney', 'ICD9CM_2010'), +('55.29', 'Other diagnostic procedures on kidney', 'ICD9CM_2010'), +('55.3', 'Local excision or destruction of lesion or tissue of kidney', 'ICD9CM_2010'), +('55.31', 'Marsupialization of kidney lesion', 'ICD9CM_2010'), +('55.32', 'Open ablation of renal lesion or tissue', 'ICD9CM_2010'), +('55.33', 'Percutaneous ablation of renal lesion or tissue', 'ICD9CM_2010'), +('55.34', 'Laparoscopic ablation of renal lesion or tissue', 'ICD9CM_2010'), +('55.35', 'Other and unspecified ablation of renal lesion or tissue', 'ICD9CM_2010'), +('55.39', 'Other local destruction or excision of renal lesion or tissue', 'ICD9CM_2010'), +('55.4', 'Partial nephrectomy', 'ICD9CM_2010'), +('55.5', 'Complete nephrectomy', 'ICD9CM_2010'), +('55.51', 'Nephroureterectomy', 'ICD9CM_2010'), +('55.52', 'Nephrectomy of remaining kidney', 'ICD9CM_2010'), +('55.53', 'Removal of transplanted or rejected kidney', 'ICD9CM_2010'), +('55.54', 'Bilateral nephrectomy', 'ICD9CM_2010'), +('55.6', 'Transplant of kidney', 'ICD9CM_2010'), +('55.61', 'Renal autotransplantation', 'ICD9CM_2010'), +('55.69', 'Other kidney transplantation', 'ICD9CM_2010'), +('55.7', 'Nephropexy', 'ICD9CM_2010'), +('55.8', 'Other repair of kidney', 'ICD9CM_2010'), +('55.81', 'Suture of laceration of kidney', 'ICD9CM_2010'), +('55.82', 'Closure of nephrostomy and pyelostomy', 'ICD9CM_2010'), +('55.83', 'Closure of other fistula of kidney', 'ICD9CM_2010'), +('55.84', 'Reduction of torsion of renal pedicle', 'ICD9CM_2010'), +('55.85', 'Symphysiotomy for horseshoe kidney', 'ICD9CM_2010'), +('55.86', 'Anastomosis of kidney', 'ICD9CM_2010'), +('55.87', 'Correction of ureteropelvic junction', 'ICD9CM_2010'), +('55.89', 'Other repair of kidney', 'ICD9CM_2010'), +('55.9', 'Other operations on kidney', 'ICD9CM_2010'), +('55.91', 'Decapsulation of kidney', 'ICD9CM_2010'), +('55.92', 'Percutaneous aspiration of kidney (pelvis)', 'ICD9CM_2010'), +('55.93', 'Replacement of nephrostomy tube', 'ICD9CM_2010'), +('55.94', 'Replacement of pyelostomy tube', 'ICD9CM_2010'), +('55.95', 'Local perfusion of kidney', 'ICD9CM_2010'), +('55.96', 'Other injection of therapeutic substance into kidney', 'ICD9CM_2010'), +('55.97', 'Implantation or replacement of mechanical kidney', 'ICD9CM_2010'), +('55.98', 'Removal of mechanical kidney', 'ICD9CM_2010'), +('55.99', 'Other operations on kidney', 'ICD9CM_2010'), +('56', 'Operations on ureter', 'ICD9CM_2010'), +('56.0', 'Transurethral removal of obstruction from ureter and renal pelvis', 'ICD9CM_2010'), +('56.1', 'Ureteral meatotomy', 'ICD9CM_2010'), +('56.2', 'Ureterotomy', 'ICD9CM_2010'), +('56.3', 'Diagnostic procedures on ureter', 'ICD9CM_2010'), +('56.31', 'Ureteroscopy', 'ICD9CM_2010'), +('56.32', 'Closed percutaneous biopsy of ureter', 'ICD9CM_2010'), +('56.33', 'Closed endoscopic biopsy of ureter', 'ICD9CM_2010'), +('56.34', 'Open biopsy of ureter', 'ICD9CM_2010'), +('56.35', 'Endoscopy (cystoscopy) (looposcopy) of ileal conduit', 'ICD9CM_2010'), +('56.39', 'Other diagnostic procedures on ureter', 'ICD9CM_2010'), +('56.4', 'Ureterectomy', 'ICD9CM_2010'), +('56.40', 'Ureterectomy, not otherwise specified', 'ICD9CM_2010'), +('56.41', 'Partial ureterectomy', 'ICD9CM_2010'), +('56.42', 'Total ureterectomy', 'ICD9CM_2010'), +('56.5', 'Cutaneous uretero-ileostomy', 'ICD9CM_2010'), +('56.51', 'Formation of cutaneous uretero-ileostomy', 'ICD9CM_2010'), +('56.52', 'Revision of cutaneous uretero-ileostomy', 'ICD9CM_2010'), +('56.6', 'Other external urinary diversion', 'ICD9CM_2010'), +('56.61', 'Formation of other cutaneous ureterostomy', 'ICD9CM_2010'), +('56.62', 'Revision of other cutaneous ureterostomy', 'ICD9CM_2010'), +('56.7', 'Other anastomosis or bypass of ureter', 'ICD9CM_2010'), +('56.71', 'Urinary diversion to intestine', 'ICD9CM_2010'), +('56.72', 'Revision of ureterointestinal anastomosis', 'ICD9CM_2010'), +('56.73', 'Nephrocystanastomosis, not otherwise specified', 'ICD9CM_2010'), +('56.74', 'Ureteroneocystostomy', 'ICD9CM_2010'); +INSERT INTO `icd9` (`ID_ICD9`, `Prosedur`, `Versi_ICD9`) VALUES +('56.75', 'Transureteroureterostomy', 'ICD9CM_2010'), +('56.79', 'Other anastomosis or bypass of ureter', 'ICD9CM_2010'), +('56.8', 'Repair of ureter', 'ICD9CM_2010'), +('56.81', 'Lysis of intraluminal adhesions of ureter', 'ICD9CM_2010'), +('56.82', 'Suture of laceration of ureter', 'ICD9CM_2010'), +('56.83', 'Closure of ureterostomy', 'ICD9CM_2010'), +('56.84', 'Closure of other fistula of ureter', 'ICD9CM_2010'), +('56.85', 'Ureteropexy', 'ICD9CM_2010'), +('56.86', 'Removal of ligature from ureter', 'ICD9CM_2010'), +('56.89', 'Other repair of ureter', 'ICD9CM_2010'), +('56.9', 'Other operations on ureter', 'ICD9CM_2010'), +('56.91', 'Dilation of ureteral meatus', 'ICD9CM_2010'), +('56.92', 'Implantation of electronic ureteral stimulator', 'ICD9CM_2010'), +('56.93', 'Replacement of electronic ureteral stimulator', 'ICD9CM_2010'), +('56.94', 'Removal of electronic ureteral stimulator', 'ICD9CM_2010'), +('56.95', 'Ligation of ureter', 'ICD9CM_2010'), +('56.99', 'Other operations on ureter', 'ICD9CM_2010'), +('57', 'Operations on urinary bladder', 'ICD9CM_2010'), +('57.0', 'Transurethral clearance of bladder', 'ICD9CM_2010'), +('57.1', 'Cystotomy and cystostomy', 'ICD9CM_2010'), +('57.11', 'Percutaneous aspiration of bladder', 'ICD9CM_2010'), +('57.12', 'Lysis of intraluminal adhesions with incision into bladder', 'ICD9CM_2010'), +('57.17', 'Percutaneous cystostomy', 'ICD9CM_2010'), +('57.18', 'Other suprapubic cystostomy', 'ICD9CM_2010'), +('57.19', 'Other cystotomy', 'ICD9CM_2010'), +('57.2', 'Vesicostomy', 'ICD9CM_2010'), +('57.21', 'Vesicostomy', 'ICD9CM_2010'), +('57.22', 'Revision or closure of vesicostomy', 'ICD9CM_2010'), +('57.3', 'Diagnostic procedures on bladder', 'ICD9CM_2010'), +('57.31', 'Cystoscopy through artificial stoma', 'ICD9CM_2010'), +('57.32', 'Other cystoscopy', 'ICD9CM_2010'), +('57.33', 'Closed [transurethral] biopsy of bladder', 'ICD9CM_2010'), +('57.34', 'Open biopsy of bladder', 'ICD9CM_2010'), +('57.39', 'Other diagnostic procedures on bladder', 'ICD9CM_2010'), +('57.4', 'Transurethral excision or destruction of bladder tissue', 'ICD9CM_2010'), +('57.41', 'Transurethral lysis of intraluminal adhesions', 'ICD9CM_2010'), +('57.49', 'Other transurethral excision or destruction of lesion or tissue of bladder', 'ICD9CM_2010'), +('57.5', 'Other excision or destruction of bladder tissue', 'ICD9CM_2010'), +('57.51', 'Excision of urachus', 'ICD9CM_2010'), +('57.59', 'Open excision or destruction of other lesion or tissue of bladder', 'ICD9CM_2010'), +('57.6', 'Partial cystectomy', 'ICD9CM_2010'), +('57.7', 'Total cystectomy', 'ICD9CM_2010'), +('57.71', 'Radical cystectomy', 'ICD9CM_2010'), +('57.79', 'Other total cystectomy', 'ICD9CM_2010'), +('57.8', 'Other repair of urinary bladder', 'ICD9CM_2010'), +('57.81', 'Suture of laceration of bladder', 'ICD9CM_2010'), +('57.82', 'Closure of cystostomy', 'ICD9CM_2010'), +('57.83', 'Repair of fistula involving bladder and intestine', 'ICD9CM_2010'), +('57.84', 'Repair of other fistula of bladder', 'ICD9CM_2010'), +('57.85', 'Cystourethroplasty and plastic repair of bladder neck', 'ICD9CM_2010'), +('57.86', 'Repair of bladder exstrophy', 'ICD9CM_2010'), +('57.87', 'Reconstruction of urinary bladder', 'ICD9CM_2010'), +('57.88', 'Other anastomosis of bladder', 'ICD9CM_2010'), +('57.89', 'Other repair of bladder', 'ICD9CM_2010'), +('57.9', 'Other operations on bladder', 'ICD9CM_2010'), +('57.91', 'Sphincterotomy of bladder', 'ICD9CM_2010'), +('57.92', 'Dilation of bladder neck', 'ICD9CM_2010'), +('57.93', 'Control of (postoperative) hemorrhage of bladder', 'ICD9CM_2010'), +('57.94', 'Insertion of indwelling urinary catheter', 'ICD9CM_2010'), +('57.95', 'Replacement of indwelling urinary catheter', 'ICD9CM_2010'), +('57.96', 'Implantation of electronic bladder stimulator', 'ICD9CM_2010'), +('57.97', 'Replacement of electronic bladder stimulator', 'ICD9CM_2010'), +('57.98', 'Removal of electronic bladder stimulator', 'ICD9CM_2010'), +('57.99', 'Other operations on bladder', 'ICD9CM_2010'), +('58', 'Operations on urethra', 'ICD9CM_2010'), +('58.0', 'Urethrotomy', 'ICD9CM_2010'), +('58.1', 'Urethral meatotomy', 'ICD9CM_2010'), +('58.2', 'Diagnostic procedures on urethra', 'ICD9CM_2010'), +('58.21', 'Perineal urethroscopy', 'ICD9CM_2010'), +('58.22', 'Other urethroscopy', 'ICD9CM_2010'), +('58.23', 'Biopsy of urethra', 'ICD9CM_2010'), +('58.24', 'Biopsy of periurethral tissue', 'ICD9CM_2010'), +('58.29', 'Other diagnostic procedures on urethra and periurethral tissue', 'ICD9CM_2010'), +('58.3', 'Excision or destruction of lesion or tissue of urethra', 'ICD9CM_2010'), +('58.31', 'Endoscopic excision or destruction of lesion or tissue of urethra', 'ICD9CM_2010'), +('58.39', 'Other local excision or destruction of lesion or tissue of urethra', 'ICD9CM_2010'), +('58.4', 'Repair of urethra', 'ICD9CM_2010'), +('58.41', 'Suture of laceration of urethra', 'ICD9CM_2010'), +('58.42', 'Closure of urethrostomy', 'ICD9CM_2010'), +('58.43', 'Closure of other fistula of urethra', 'ICD9CM_2010'), +('58.44', 'Reanastomosis of urethra', 'ICD9CM_2010'), +('58.45', 'Repair of hypospadias or epispadias', 'ICD9CM_2010'), +('58.46', 'Other reconstruction of urethra', 'ICD9CM_2010'), +('58.47', 'Urethral meatoplasty', 'ICD9CM_2010'), +('58.49', 'Other repair of urethra', 'ICD9CM_2010'), +('58.5', 'Release of urethral stricture', 'ICD9CM_2010'), +('58.6', 'Dilation of urethra', 'ICD9CM_2010'), +('58.9', 'Other operations on urethra and periurethral tissue', 'ICD9CM_2010'), +('58.91', 'Incision of periurethral tissue', 'ICD9CM_2010'), +('58.92', 'Excision of periurethral tissue', 'ICD9CM_2010'), +('58.93', 'Implantation of artificial urinary sphincter (AUS)', 'ICD9CM_2010'), +('58.99', 'Other operations on urethra and periurethral tissue', 'ICD9CM_2010'), +('59', 'Other operations on urinary tract', 'ICD9CM_2010'), +('59.0', 'Dissection of retroperitoneal tissue', 'ICD9CM_2010'), +('59.00', 'Retroperitoneal dissection, not otherwise specified', 'ICD9CM_2010'), +('59.02', 'Other lysis of perirenal or periureteral adhesions', 'ICD9CM_2010'), +('59.03', 'Laparoscopic lysis of perirenal or periureteral adhesions', 'ICD9CM_2010'), +('59.09', 'Other incision of perirenal or periureteral tissue', 'ICD9CM_2010'), +('59.1', 'Incision of perivesical tissue', 'ICD9CM_2010'), +('59.11', 'Other lysis of perivesical adhesions', 'ICD9CM_2010'), +('59.12', 'Laparoscopic lysis of perivesical adhesions', 'ICD9CM_2010'), +('59.19', 'Other incision of perivesical tissue', 'ICD9CM_2010'), +('59.2', 'Diagnostic procedures on perirenal and perivesical tissue', 'ICD9CM_2010'), +('59.21', 'Biopsy of perirenal or perivesical tissue', 'ICD9CM_2010'), +('59.29', 'Other diagnostic procedures on perirenal tissue, perivesical tissue, and retroperitoneum', 'ICD9CM_2010'), +('59.3', 'Plication of urethrovesical junction', 'ICD9CM_2010'), +('59.4', 'Suprapubic sling operation', 'ICD9CM_2010'), +('59.5', 'Retropubic urethral suspension', 'ICD9CM_2010'), +('59.6', 'Paraurethral suspension', 'ICD9CM_2010'), +('59.7', 'Other repair of urinary stress incontinence', 'ICD9CM_2010'), +('59.71', 'Levator muscle operation for urethrovesical suspension', 'ICD9CM_2010'), +('59.72', 'Injection of implant into urethra and/or bladder neck', 'ICD9CM_2010'), +('59.79', 'Other repair of urinary stress incontinence', 'ICD9CM_2010'), +('59.8', 'Ureteral catheterization', 'ICD9CM_2010'), +('59.9', 'Other operations on urinary system', 'ICD9CM_2010'), +('59.91', 'Excision of perirenal or perivesical tissue', 'ICD9CM_2010'), +('59.92', 'Other operations on perirenal or perivesical tissue', 'ICD9CM_2010'), +('59.93', 'Replacement of ureterostomy tube', 'ICD9CM_2010'), +('59.94', 'Replacement of cystostomy tube', 'ICD9CM_2010'), +('59.95', 'Ultrasonic fragmentation of urinary stones', 'ICD9CM_2010'), +('59.99', 'Other operations on urinary system', 'ICD9CM_2010'), +('60', 'Operations on prostate and seminal vesicles', 'ICD9CM_2010'), +('60.0', 'Incision of prostate', 'ICD9CM_2010'), +('60.1', 'Diagnostic procedures on prostate and seminal vesicles', 'ICD9CM_2010'), +('60.11', 'Closed [percutaneous] [needle] biopsy of prostate', 'ICD9CM_2010'), +('60.12', 'Open biopsy of prostate', 'ICD9CM_2010'), +('60.13', 'Closed [percutaneous] biopsy of seminal vesicles', 'ICD9CM_2010'), +('60.14', 'Open biopsy of seminal vesicles', 'ICD9CM_2010'), +('60.15', 'Biopsy of periprostatic tissue', 'ICD9CM_2010'), +('60.18', 'Other diagnostic procedures on prostate and periprostatic tissue', 'ICD9CM_2010'), +('60.19', 'Other diagnostic procedures on seminal vesicles', 'ICD9CM_2010'), +('60.2', 'Transurethral prostatectomy', 'ICD9CM_2010'), +('60.21', 'Transurethral (ultrasound) guided laser induced prostatectomy (TULIP)', 'ICD9CM_2010'), +('60.29', 'Other transurethral prostatectomy', 'ICD9CM_2010'), +('60.3', 'Suprapubic prostatectomy', 'ICD9CM_2010'), +('60.4', 'Retropubic prostatectomy', 'ICD9CM_2010'), +('60.5', 'Radical prostatectomy', 'ICD9CM_2010'), +('60.6', 'Other prostatectomy', 'ICD9CM_2010'), +('60.61', 'Local excision of lesion of prostate', 'ICD9CM_2010'), +('60.62', 'Perineal prostatectomy', 'ICD9CM_2010'), +('60.69', 'Other prostatectomy', 'ICD9CM_2010'), +('60.7', 'Operations on seminal vesicles', 'ICD9CM_2010'), +('60.71', 'Percutaneous aspiration of seminal vesicle', 'ICD9CM_2010'), +('60.72', 'Incision of seminal vesicle', 'ICD9CM_2010'), +('60.73', 'Excision of seminal vesicle', 'ICD9CM_2010'), +('60.79', 'Other operations on seminal vesicles', 'ICD9CM_2010'), +('60.8', 'Incision or excision of periprostatic tissue', 'ICD9CM_2010'), +('60.81', 'Incision of periprostatic tissue', 'ICD9CM_2010'), +('60.82', 'Excision of periprostatic tissue', 'ICD9CM_2010'), +('60.9', 'Other operations on prostate', 'ICD9CM_2010'), +('60.91', 'Percutaneous aspiration of prostate', 'ICD9CM_2010'), +('60.92', 'Injection into prostate test link', 'ICD9CM_2010'), +('60.93', 'Repair of prostate', 'ICD9CM_2010'), +('60.94', 'Control of (postoperative) hemorrhage of prostate', 'ICD9CM_2010'), +('60.95', 'Transurethral balloon dilation of the prostatic urethra', 'ICD9CM_2010'), +('60.96', 'Transurethral destruction of prostate tissue by microwave thermotherapy', 'ICD9CM_2010'), +('60.97', 'Other transurethral destruction of prostate tissue by other thermotherapy', 'ICD9CM_2010'), +('60.99', 'Other operations on prostate', 'ICD9CM_2010'), +('61', 'Operations on scrotum and tunica vaginalis', 'ICD9CM_2010'), +('61.0', 'Incision and drainage of scrotum and tunica vaginalis', 'ICD9CM_2010'), +('61.1', 'Diagnostic procedures on scrotum and tunica vaginalis', 'ICD9CM_2010'), +('61.11', 'Biopsy of scrotum or tunica vaginalis', 'ICD9CM_2010'), +('61.19', 'Other diagnostic procedures on scrotum and tunica vaginalis', 'ICD9CM_2010'), +('61.2', 'Excision of hydrocele (of tunica vaginalis)', 'ICD9CM_2010'), +('61.3', 'Excision or destruction of lesion or tissue of scrotum', 'ICD9CM_2010'), +('61.4', 'Repair of scrotum and tunica vaginalis', 'ICD9CM_2010'), +('61.41', 'Suture of laceration of scrotum and tunica vaginalis', 'ICD9CM_2010'), +('61.42', 'Repair of scrotal fistula', 'ICD9CM_2010'), +('61.49', 'Other repair of scrotum and tunica vaginalis', 'ICD9CM_2010'), +('61.9', 'Other operations on scrotum and tunica vaginalis', 'ICD9CM_2010'), +('61.91', 'Percutaneous aspiration of tunica vaginalis', 'ICD9CM_2010'), +('61.92', 'Excision of lesion of tunica vaginalis other than hydrocele', 'ICD9CM_2010'), +('61.99', 'Other operations on scrotum and tunica vaginalis', 'ICD9CM_2010'), +('62', 'Operations on testes', 'ICD9CM_2010'), +('62.0', 'Incision of testis', 'ICD9CM_2010'), +('62.1', 'Diagnostic procedures on testes', 'ICD9CM_2010'), +('62.11', 'Closed (percutaneous) (needle) biopsy of testis', 'ICD9CM_2010'), +('62.12', 'Open biopsy of testis', 'ICD9CM_2010'), +('62.19', 'Other diagnostic procedures on testes', 'ICD9CM_2010'), +('62.2', 'Excision or destruction of testicular lesion', 'ICD9CM_2010'), +('62.3', 'Unilateral orchiectomy', 'ICD9CM_2010'), +('62.4', 'Bilateral orchiectomy', 'ICD9CM_2010'), +('62.41', 'Removal of both testes at same operative episode', 'ICD9CM_2010'), +('62.42', 'Removal of remaining testis', 'ICD9CM_2010'), +('62.5', 'Orchiopexy', 'ICD9CM_2010'), +('62.6', 'Repair of testes', 'ICD9CM_2010'), +('62.61', 'Suture of laceration of testis', 'ICD9CM_2010'), +('62.69', 'Other repair of testis', 'ICD9CM_2010'), +('62.7', 'Insertion of testicular prosthesis', 'ICD9CM_2010'), +('62.9', 'Other operations on testes', 'ICD9CM_2010'), +('62.91', 'Aspiration of testis', 'ICD9CM_2010'), +('62.92', 'Injection of therapeutic substance into testis', 'ICD9CM_2010'), +('62.99', 'Other operations on testes', 'ICD9CM_2010'), +('63', 'Operations on spermatic cord, epididymis, and vas deferens', 'ICD9CM_2010'), +('63.0', 'Diagnostic procedures on spermatic cord, epididymis, and vas deferens', 'ICD9CM_2010'), +('63.01', 'Biopsy of spermatic cord, epididymis, or vas deferens', 'ICD9CM_2010'), +('63.09', 'Other diagnostic procedures on spermatic cord, epididymis, and vas deferens', 'ICD9CM_2010'), +('63.1', 'Excision of varicocele and hydrocele of spermatic cord', 'ICD9CM_2010'), +('63.2', 'Excision of cyst of epididymis', 'ICD9CM_2010'), +('63.3', 'Excision of other lesion or tissue of spermatic cord and epididymis', 'ICD9CM_2010'), +('63.4', 'Epididymectomy', 'ICD9CM_2010'), +('63.5', 'Repair of spermatic cord and epididymis', 'ICD9CM_2010'), +('63.51', 'Suture of laceration of spermatic cord and epididymis', 'ICD9CM_2010'), +('63.52', 'Reduction of torsion of testis or spermatic cord', 'ICD9CM_2010'), +('63.53', 'Transplantation of spermatic cord', 'ICD9CM_2010'), +('63.59', 'Other repair of spermatic cord and epididymis', 'ICD9CM_2010'), +('63.6', 'Vasotomy', 'ICD9CM_2010'), +('63.7', 'Vasectomy and ligation of vas deferens', 'ICD9CM_2010'), +('63.70', 'Male sterilization procedure, not otherwise specified', 'ICD9CM_2010'), +('63.71', 'Ligation of vas deferens', 'ICD9CM_2010'), +('63.72', 'Ligation of spermatic cord', 'ICD9CM_2010'), +('63.73', 'Vasectomy', 'ICD9CM_2010'), +('63.8', 'Repair of vas deferens and epididymis', 'ICD9CM_2010'), +('63.81', 'Suture of laceration of vas deferens and epididymis', 'ICD9CM_2010'), +('63.82', 'Reconstruction of surgically divided vas deferens', 'ICD9CM_2010'), +('63.83', 'Epididymovasostomy', 'ICD9CM_2010'), +('63.84', 'Removal of ligature from vas deferens', 'ICD9CM_2010'), +('63.85', 'Removal of valve from vas deferens', 'ICD9CM_2010'), +('63.89', 'Other repair of vas deferens and epididymis', 'ICD9CM_2010'), +('63.9', 'Other operations on spermatic cord, epididymis, and vas deferens', 'ICD9CM_2010'), +('63.91', 'Aspiration of spermatocele', 'ICD9CM_2010'), +('63.92', 'Epididymotomy', 'ICD9CM_2010'), +('63.93', 'Incision of spermatic cord', 'ICD9CM_2010'), +('63.94', 'Lysis of adhesions of spermatic cord', 'ICD9CM_2010'), +('63.95', 'Insertion of valve in vas deferens', 'ICD9CM_2010'), +('63.99', 'Other operations on spermatic card, epididymis, and vas deferens', 'ICD9CM_2010'), +('64', 'Operations on penis', 'ICD9CM_2010'), +('64.0', 'Circumcision', 'ICD9CM_2010'), +('64.1', 'Diagnostic procedures on the penis', 'ICD9CM_2010'), +('64.11', 'Biopsy of penis', 'ICD9CM_2010'), +('64.19', 'Other diagnostic procedures on penis', 'ICD9CM_2010'), +('64.2', 'Local excision or destruction of lesion of penis', 'ICD9CM_2010'), +('64.3', 'Amputation of penis', 'ICD9CM_2010'), +('64.4', 'Repair and plastic operation on penis', 'ICD9CM_2010'), +('64.41', 'Suture of laceration of penis', 'ICD9CM_2010'), +('64.42', 'Release of chordee', 'ICD9CM_2010'), +('64.43', 'Construction of penis', 'ICD9CM_2010'), +('64.44', 'Reconstruction of penis', 'ICD9CM_2010'), +('64.45', 'Replantation of penis', 'ICD9CM_2010'), +('64.49', 'Other repair of penis', 'ICD9CM_2010'), +('64.5', 'Operations for sex transformation, not elsewhere classified', 'ICD9CM_2010'), +('64.9', 'Other operations on male genital organs', 'ICD9CM_2010'), +('64.91', 'Dorsal or lateral slit of prepuce', 'ICD9CM_2010'), +('64.92', 'Incision of penis', 'ICD9CM_2010'), +('64.93', 'Division of penile adhesions', 'ICD9CM_2010'), +('64.94', 'Fitting of external prosthesis of penis', 'ICD9CM_2010'), +('64.95', 'Insertion or replacement of non-inflatable penile prosthesis', 'ICD9CM_2010'), +('64.96', 'Removal of internal prosthesis of penis', 'ICD9CM_2010'), +('64.97', 'Insertion or replacement of inflatable penile prosthesis', 'ICD9CM_2010'), +('64.98', 'Other operations on penis', 'ICD9CM_2010'), +('64.99', 'Other operations on male genital organs', 'ICD9CM_2010'), +('65', 'Operations on ovary', 'ICD9CM_2010'), +('65.0', 'Oophorotomy', 'ICD9CM_2010'), +('65.01', 'Laparoscopic oophorotomy', 'ICD9CM_2010'), +('65.09', 'Other oophorotomy', 'ICD9CM_2010'), +('65.1', 'Diagnostic procedures on ovaries', 'ICD9CM_2010'), +('65.11', 'Aspiration biopsy of ovary', 'ICD9CM_2010'), +('65.12', 'Other biopsy of ovary', 'ICD9CM_2010'), +('65.13', 'Laparoscopic biopsy of ovary', 'ICD9CM_2010'), +('65.14', 'Other laparoscopic diagnostic procedures on ovaries', 'ICD9CM_2010'), +('65.19', 'Other diagnostic procedures on ovaries', 'ICD9CM_2010'), +('65.2', 'Local excision or destruction of ovarian lesion or tissue', 'ICD9CM_2010'), +('65.21', 'Marsupialization of ovarian cyst', 'ICD9CM_2010'), +('65.22', 'Wedge resection of ovary', 'ICD9CM_2010'), +('65.23', 'Laparoscopic marsupialization of ovarian cyst', 'ICD9CM_2010'), +('65.24', 'Laparoscopic wedge resection of ovary', 'ICD9CM_2010'), +('65.25', 'Other laparoscopic local excision or destruction of ovary', 'ICD9CM_2010'), +('65.29', 'Other local excision or destruction of ovary', 'ICD9CM_2010'), +('65.3', 'Unilateral oophorectomy', 'ICD9CM_2010'), +('65.31', 'Laparoscopic unilateral oophorectomy', 'ICD9CM_2010'), +('65.39', 'Other unilateral oophorectomy', 'ICD9CM_2010'), +('65.4', 'Unilateral salpingo-oophorectomy', 'ICD9CM_2010'), +('65.41', 'Laparoscopic unilateral salpingo-oophorectomy', 'ICD9CM_2010'), +('65.49', 'Other unilateral salpingo-oophorectomy', 'ICD9CM_2010'), +('65.5', 'Bilateral oophorectomy', 'ICD9CM_2010'), +('65.51', 'Other removal of both ovaries at same operative episode', 'ICD9CM_2010'), +('65.52', 'Other removal of remaining ovary', 'ICD9CM_2010'), +('65.53', 'Laparoscopic removal of both ovaries at same operative episode', 'ICD9CM_2010'), +('65.54', 'Laparoscopic removal of remaining ovary', 'ICD9CM_2010'), +('65.6', 'Bilateral salpingo-oophorectomy', 'ICD9CM_2010'), +('65.61', 'Other removal of both ovaries and tubes at same operative episode', 'ICD9CM_2010'), +('65.62', 'Other removal of remaining ovary and tube', 'ICD9CM_2010'), +('65.63', 'Laparoscopic removal of both ovaries and tubes at the same operative episode', 'ICD9CM_2010'), +('65.64', 'Laparoscopic removal of remaining ovary and tube', 'ICD9CM_2010'), +('65.7', 'Repair of ovary', 'ICD9CM_2010'), +('65.71', 'Other simple suture of ovary', 'ICD9CM_2010'), +('65.72', 'Other reimplantation of ovary', 'ICD9CM_2010'), +('65.73', 'Other salpingo-oophoroplasty', 'ICD9CM_2010'), +('65.74', 'Laparoscopic simple suture of ovary', 'ICD9CM_2010'), +('65.75', 'Laparoscopic reimplantation of ovary', 'ICD9CM_2010'), +('65.76', 'Laparoscopic salpingo-oophoroplasty', 'ICD9CM_2010'), +('65.79', 'Other repair of ovary', 'ICD9CM_2010'), +('65.8', 'Lysis of adhesions of ovary and fallopian tube', 'ICD9CM_2010'), +('65.81', 'Laparoscopic lysis of adhesions of ovary and fallopian tube', 'ICD9CM_2010'), +('65.89', 'Other lysis of adhesions of ovary and fallopian tube', 'ICD9CM_2010'), +('65.9', 'Other operations on ovary', 'ICD9CM_2010'), +('65.91', 'Aspiration of ovary', 'ICD9CM_2010'), +('65.92', 'Transplantation of ovary', 'ICD9CM_2010'), +('65.93', 'Manual rupture of ovarian cyst', 'ICD9CM_2010'), +('65.94', 'Ovarian denervation', 'ICD9CM_2010'), +('65.95', 'Release of torsion of ovary', 'ICD9CM_2010'), +('65.99', 'Other operations on ovary', 'ICD9CM_2010'), +('66', 'Operations on fallopian tubes', 'ICD9CM_2010'), +('66.0', 'Salpingotomy and salpingostomy', 'ICD9CM_2010'), +('66.01', 'Salpingotomy', 'ICD9CM_2010'), +('66.02', 'Salpingostomy', 'ICD9CM_2010'), +('66.1', 'Diagnostic procedures on fallopian tubes', 'ICD9CM_2010'), +('66.11', 'Biopsy of fallopian tube', 'ICD9CM_2010'), +('66.19', 'Other diagnostic procedures on fallopian tubes', 'ICD9CM_2010'), +('66.2', 'Bilateral endoscopic destruction or occlusion of fallopian tubes', 'ICD9CM_2010'), +('66.21', 'Bilateral endoscopic ligation and crushing of fallopian tubes', 'ICD9CM_2010'), +('66.22', 'Bilateral endoscopic ligation and division of fallopian tubes', 'ICD9CM_2010'), +('66.29', 'Other bilateral endoscopic destruction or occlusion of fallopian tubes', 'ICD9CM_2010'), +('66.3', 'Other bilateral destruction or occlusion of fallopian tubes', 'ICD9CM_2010'), +('66.31', 'Other bilateral ligation and crushing of fallopian tubes', 'ICD9CM_2010'), +('66.32', 'Other bilateral ligation and division of fallopian tubes', 'ICD9CM_2010'), +('66.39', 'Other bilateral destruction or occlusion of fallopian tubes', 'ICD9CM_2010'), +('66.4', 'Total unilateral salpingectomy', 'ICD9CM_2010'), +('66.5', 'Total bilateral salpingectomy', 'ICD9CM_2010'), +('66.51', 'Removal of both fallopian tubes at same operative episode', 'ICD9CM_2010'), +('66.52', 'Removal of remaining fallopian tube', 'ICD9CM_2010'), +('66.6', 'Other salpingectomy', 'ICD9CM_2010'), +('66.61', 'Excision or destruction of lesion of fallopian tube', 'ICD9CM_2010'), +('66.62', 'Salpingectomy with removal of tubal pregnancy', 'ICD9CM_2010'), +('66.63', 'Bilateral partial salpingectomy, not otherwise specified', 'ICD9CM_2010'), +('66.69', 'Other partial salpingectomy', 'ICD9CM_2010'), +('66.7', 'Repair of fallopian tube', 'ICD9CM_2010'), +('66.71', 'Simple suture of fallopian tube', 'ICD9CM_2010'), +('66.72', 'Salpingo-oophorostomy', 'ICD9CM_2010'), +('66.73', 'Salpingo-salpingostomy', 'ICD9CM_2010'), +('66.74', 'Salpingo-uterostomy', 'ICD9CM_2010'), +('66.79', 'Other repair of fallopian tube', 'ICD9CM_2010'), +('66.8', 'Insufflation of fallopian tube', 'ICD9CM_2010'), +('66.9', 'Other operations on fallopian tubes', 'ICD9CM_2010'), +('66.91', 'Aspiration of fallopian tube', 'ICD9CM_2010'), +('66.92', 'Unilateral destruction or occlusion of fallopian tube', 'ICD9CM_2010'), +('66.93', 'Implantation or replacement of prosthesis of fallopian tube', 'ICD9CM_2010'), +('66.94', 'Removal of prosthesis of fallopian tube', 'ICD9CM_2010'), +('66.95', 'Insufflation of therapeutic agent into fallopian tubes', 'ICD9CM_2010'), +('66.96', 'Dilation of fallopian tube', 'ICD9CM_2010'), +('66.97', 'Burying of fimbriae in uterine wall', 'ICD9CM_2010'), +('66.99', 'Other operations on fallopian tubes', 'ICD9CM_2010'), +('67', 'Operations on cervix', 'ICD9CM_2010'), +('67.0', 'Dilation of cervical canal', 'ICD9CM_2010'), +('67.1', 'Diagnostic procedures on cervix', 'ICD9CM_2010'), +('67.11', 'Endocervical biopsy', 'ICD9CM_2010'), +('67.12', 'Other cervical biopsy', 'ICD9CM_2010'), +('67.19', 'Other diagnostic procedures on cervix', 'ICD9CM_2010'), +('67.2', 'Conization of cervix', 'ICD9CM_2010'), +('67.3', 'Other excision or destruction of lesion or tissue of cervix', 'ICD9CM_2010'), +('67.31', 'Marsupialization of cervical cyst', 'ICD9CM_2010'), +('67.32', 'Destruction of lesion of cervix by cauterization', 'ICD9CM_2010'), +('67.33', 'Destruction of lesion of cervix by cryosurgery', 'ICD9CM_2010'), +('67.39', 'Other excision or destruction of lesion or tissue of cervix', 'ICD9CM_2010'), +('67.4', 'Amputation of cervix', 'ICD9CM_2010'), +('67.5', 'Repair of internal cervical os', 'ICD9CM_2010'), +('67.51', 'Transabdominal cerclage of cervix', 'ICD9CM_2010'), +('67.59', 'Other repair of internal cervical os', 'ICD9CM_2010'), +('67.6', 'Other repair of cervix', 'ICD9CM_2010'), +('67.61', 'Suture of laceration of cervix', 'ICD9CM_2010'), +('67.62', 'Repair of fistula of cervix', 'ICD9CM_2010'), +('67.69', 'Other repair of cervix', 'ICD9CM_2010'), +('68', 'Other incision and excision of uterus', 'ICD9CM_2010'), +('68.0', 'Hysterotomy', 'ICD9CM_2010'), +('68.1', 'Diagnostic procedures on uterus and supporting structures', 'ICD9CM_2010'), +('68.11', 'Digital examination of uterus', 'ICD9CM_2010'), +('68.12', 'Hysteroscopy', 'ICD9CM_2010'), +('68.13', 'Open biopsy of uterus', 'ICD9CM_2010'), +('68.14', 'Open biopsy of uterine ligaments', 'ICD9CM_2010'), +('68.15', 'Closed biopsy of uterine ligaments', 'ICD9CM_2010'), +('68.16', 'Closed biopsy of uterus', 'ICD9CM_2010'), +('68.19', 'Other diagnostic procedures on uterus and supporting structures', 'ICD9CM_2010'), +('68.2', 'Excision or destruction of lesion or tissue of uterus', 'ICD9CM_2010'), +('68.21', 'Division of endometrial synechiae', 'ICD9CM_2010'), +('68.22', 'Incision or excision of congenital septum of uterus', 'ICD9CM_2010'), +('68.23', 'Endometrial ablation', 'ICD9CM_2010'), +('68.29', 'Other excision or destruction of lesion of uterus', 'ICD9CM_2010'), +('68.3', 'Subtotal abdominal hysterectomy', 'ICD9CM_2010'), +('68.31', 'Laparoscopic supracervical hysterectomy LSH', 'ICD9CM_2010'), +('68.39', 'Other and unspecified subtotal abdominal hysterectomy', 'ICD9CM_2010'), +('68.4', 'Total abdominal hysterectomy', 'ICD9CM_2010'), +('68.41', 'Laparoscopic total abdominal hysterectomy', 'ICD9CM_2010'), +('68.49', 'Other and unspecified total abdominal hysterectomy', 'ICD9CM_2010'), +('68.5', 'Vaginal hysterectomy', 'ICD9CM_2010'), +('68.51', 'Laparoscopically assisted vaginal hysterectomy LAVH', 'ICD9CM_2010'), +('68.59', 'Other and unspecified vaginal hysterectomy', 'ICD9CM_2010'), +('68.6', 'Radical abdominal hysterectomy', 'ICD9CM_2010'), +('68.61', 'Laparoscopic radical abdominal hysterectomy', 'ICD9CM_2010'), +('68.69', 'Other and unspecified radical abdominal hysterectomy', 'ICD9CM_2010'), +('68.7', 'Radical vaginal hysterectomy', 'ICD9CM_2010'), +('68.71', 'Laparoscopic radical vaginal hysterectomy LRVH', 'ICD9CM_2010'), +('68.79', 'Other and unspecified radical vaginal hysterectomy', 'ICD9CM_2010'), +('68.8', 'Pelvic evisceration', 'ICD9CM_2010'), +('68.9', 'Other and unspecified hysterectomy', 'ICD9CM_2010'), +('69', 'Other operations on uterus and supporting structures', 'ICD9CM_2010'), +('69.0', 'Dilation and curettage of uterus', 'ICD9CM_2010'), +('69.01', 'Dilation and curettage for termination of pregnancy', 'ICD9CM_2010'), +('69.02', 'Dilation and curettage following delivery or abortion', 'ICD9CM_2010'), +('69.09', 'Other dilation and curettage of uterus', 'ICD9CM_2010'), +('69.1', 'Excision or destruction of lesion or tissue of uterus and supporting structures', 'ICD9CM_2010'), +('69.19', 'Other excision or destruction of uterus and supporting structures', 'ICD9CM_2010'), +('69.2', 'Repair of uterine supporting structures', 'ICD9CM_2010'), +('69.21', 'Interposition operation', 'ICD9CM_2010'), +('69.22', 'Other uterine suspension', 'ICD9CM_2010'), +('69.23', 'Vaginal repair of chronic inversion of uterus', 'ICD9CM_2010'), +('69.29', 'Other repair of uterus and supporting structures', 'ICD9CM_2010'), +('69.3', 'Paracervical uterine denervation', 'ICD9CM_2010'), +('69.4', 'Uterine repair', 'ICD9CM_2010'), +('69.41', 'Suture of laceration of uterus', 'ICD9CM_2010'), +('69.42', 'Closure of fistula of uterus', 'ICD9CM_2010'), +('69.49', 'Other repair of uterus', 'ICD9CM_2010'), +('69.5', 'Aspiration curettage of uterus', 'ICD9CM_2010'), +('69.51', 'Aspiration curettage of uterus for termination of pregnancy', 'ICD9CM_2010'), +('69.52', 'Aspiration curettage following delivery or abortion', 'ICD9CM_2010'), +('69.59', 'Other aspiration curettage of uterus', 'ICD9CM_2010'), +('69.6', 'Menstrual extraction or regulation', 'ICD9CM_2010'), +('69.7', 'Insertion of intrauterine contraceptive device', 'ICD9CM_2010'), +('69.9', 'Other operations on uterus, cervix, and supporting structures', 'ICD9CM_2010'), +('69.91', 'Insertion of therapeutic device into uterus', 'ICD9CM_2010'), +('69.92', 'Artificial insemination', 'ICD9CM_2010'), +('69.93', 'Insertion of laminaria', 'ICD9CM_2010'), +('69.94', 'Manual replacement of inverted uterus', 'ICD9CM_2010'), +('69.95', 'Incision of cervix', 'ICD9CM_2010'), +('69.96', 'Removal of cerclage material from cervix', 'ICD9CM_2010'), +('69.97', 'Removal of other penetrating foreign body from cervix', 'ICD9CM_2010'), +('69.98', 'Other operations on supporting structures of uterus', 'ICD9CM_2010'), +('69.99', 'Other operations on cervix and uterus', 'ICD9CM_2010'), +('70', 'Operations on vagina and cul-de-sac', 'ICD9CM_2010'), +('70.0', 'Culdocentesis', 'ICD9CM_2010'), +('70.1', 'Incision of vagina and cul-de-sac', 'ICD9CM_2010'), +('70.11', 'Hymenotomy', 'ICD9CM_2010'), +('70.12', 'Culdotomy', 'ICD9CM_2010'), +('70.13', 'Lysis of intraluminal adhesions of vagina', 'ICD9CM_2010'), +('70.14', 'Other vaginotomy', 'ICD9CM_2010'), +('70.2', 'Diagnostic procedures on vagina and cul-de-sac', 'ICD9CM_2010'), +('70.21', 'Vaginoscopy', 'ICD9CM_2010'), +('70.22', 'Culdoscopy', 'ICD9CM_2010'), +('70.23', 'Biopsy of cul-de-sac', 'ICD9CM_2010'), +('70.24', 'Vaginal biopsy', 'ICD9CM_2010'), +('70.29', 'Other diagnostic procedures on vagina and cul-de-sac', 'ICD9CM_2010'), +('70.3', 'Local excision or destruction of vagina and cul-de-sac', 'ICD9CM_2010'), +('70.31', 'Hymenectomy', 'ICD9CM_2010'), +('70.32', 'Excision or destruction of lesion of cul-de-sac', 'ICD9CM_2010'), +('70.33', 'Excision or destruction of lesion of vagina', 'ICD9CM_2010'), +('70.4', 'Obliteration and total excision of vagina', 'ICD9CM_2010'), +('70.5', 'Repair of cystocele and rectocele', 'ICD9CM_2010'), +('70.50', 'Repair of cystocele and rectocele', 'ICD9CM_2010'), +('70.51', 'Repair of cystocele', 'ICD9CM_2010'), +('70.52', 'Repair of rectocele', 'ICD9CM_2010'), +('70.53', 'Repair of cystocele and rectocele with graft or prosthesis', 'ICD9CM_2010'), +('70.54', 'Repair of cystocele with graft or prosthesis', 'ICD9CM_2010'), +('70.55', 'Repair of rectocele with graft or prosthesis', 'ICD9CM_2010'), +('70.6', 'Vaginal construction and reconstruction', 'ICD9CM_2010'), +('70.61', 'Vaginal construction', 'ICD9CM_2010'), +('70.62', 'Vaginal reconstruction', 'ICD9CM_2010'), +('70.63', 'Vaginal construction with graft or prosthesis', 'ICD9CM_2010'), +('70.64', 'Vaginal reconstruction with graft or prosthesis', 'ICD9CM_2010'), +('70.7', 'Other repair of vagina', 'ICD9CM_2010'), +('70.71', 'Suture of laceration of vagina', 'ICD9CM_2010'), +('70.72', 'Repair of colovaginal fistula', 'ICD9CM_2010'), +('70.73', 'Repair of rectovaginal fistula', 'ICD9CM_2010'), +('70.74', 'Repair of other vaginoenteric fistula', 'ICD9CM_2010'), +('70.75', 'Repair of other fistula of vagina', 'ICD9CM_2010'), +('70.76', 'Hymenorrhaphy', 'ICD9CM_2010'), +('70.77', 'Vaginal suspension and fixation', 'ICD9CM_2010'), +('70.78', 'Vaginal suspension and fixation with graft or prosthesis', 'ICD9CM_2010'), +('70.79', 'Other repair of vagina', 'ICD9CM_2010'), +('70.8', 'Obliteration of vaginal vault', 'ICD9CM_2010'), +('70.9', 'Other operations on vagina and cul-de-sac', 'ICD9CM_2010'), +('70.91', 'Other operations on vagina', 'ICD9CM_2010'), +('70.92', 'Other operations on cul-de-sac', 'ICD9CM_2010'), +('70.93', 'Other operations on cul-de-sac with graft or prosthesis', 'ICD9CM_2010'), +('70.94', 'Insertion of biological graft', 'ICD9CM_2010'), +('70.95', 'Insertion of synthetic graft or prosthesis', 'ICD9CM_2010'), +('71', 'Operations on vulva and perineum', 'ICD9CM_2010'), +('71.0', 'Incision of vulva and perineum', 'ICD9CM_2010'), +('71.01', 'Lysis of vulvar adhesions', 'ICD9CM_2010'), +('71.09', 'Other incision of vulva and perineum', 'ICD9CM_2010'), +('71.1', 'Diagnostic procedures on vulva', 'ICD9CM_2010'), +('71.11', 'Biopsy of vulva', 'ICD9CM_2010'), +('71.19', 'Other diagnostic procedures on vulva', 'ICD9CM_2010'), +('71.2', 'Operations on Bartholin\'s gland', 'ICD9CM_2010'), +('71.21', 'Percutaneous aspiration of Bartholin\'s gland (cyst)', 'ICD9CM_2010'), +('71.22', 'Incision of Bartholin\'s gland (cyst)', 'ICD9CM_2010'), +('71.23', 'Marsupialization of Bartholin\'s gland (cyst)', 'ICD9CM_2010'), +('71.24', 'Excision or other destruction of Bartholin\'s gland (cyst)', 'ICD9CM_2010'), +('71.29', 'Other operations on Bartholin\'s gland', 'ICD9CM_2010'), +('71.3', 'Other local excision or destruction of vulva and perineum', 'ICD9CM_2010'), +('71.4', 'Operations on clitoris', 'ICD9CM_2010'), +('71.5', 'Radical vulvectomy', 'ICD9CM_2010'), +('71.6', 'Other vulvectomy', 'ICD9CM_2010'), +('71.61', 'Unilateral vulvectomy', 'ICD9CM_2010'), +('71.62', 'Bilateral vulvectomy', 'ICD9CM_2010'), +('71.7', 'Repair of vulva and perineum', 'ICD9CM_2010'), +('71.71', 'Suture of laceration of vulva or perineum', 'ICD9CM_2010'), +('71.72', 'Repair of fistula of vulva or perineum', 'ICD9CM_2010'), +('71.79', 'Other repair of vulva and perineum', 'ICD9CM_2010'), +('71.8', 'Other operations on vulva', 'ICD9CM_2010'), +('71.9', 'Other operations on female genital organs', 'ICD9CM_2010'), +('72', 'Forceps, vacuum, and breech delivery', 'ICD9CM_2010'), +('72.0', 'Low forceps operation', 'ICD9CM_2010'), +('72.1', 'Low forceps operation with episiotomy', 'ICD9CM_2010'), +('72.2', 'Mid forceps operation', 'ICD9CM_2010'), +('72.21', 'Mid forceps operation with episiotomy', 'ICD9CM_2010'), +('72.29', 'Other mid forceps operation', 'ICD9CM_2010'), +('72.3', 'High forceps operation', 'ICD9CM_2010'), +('72.31', 'High forceps operation with episiotomy', 'ICD9CM_2010'), +('72.39', 'Other high forceps operation', 'ICD9CM_2010'), +('72.4', 'Forceps rotation of fetal head', 'ICD9CM_2010'), +('72.5', 'Breech extraction', 'ICD9CM_2010'), +('72.51', 'Partial breech extraction with forceps to aftercoming head', 'ICD9CM_2010'), +('72.52', 'Other partial breech extraction', 'ICD9CM_2010'), +('72.53', 'Total breech extraction with forceps to aftercoming head', 'ICD9CM_2010'), +('72.54', 'Other total breech extraction', 'ICD9CM_2010'), +('72.6', 'Forceps application to aftercoming head', 'ICD9CM_2010'), +('72.7', 'Vacuum extraction', 'ICD9CM_2010'), +('72.71', 'Vacuum extraction with episiotomy', 'ICD9CM_2010'), +('72.79', 'Other vacuum extraction', 'ICD9CM_2010'), +('72.8', 'Other specified instrumental delivery', 'ICD9CM_2010'), +('72.9', 'Unspecified instrumental delivery', 'ICD9CM_2010'), +('73', 'Other procedures inducing or assisting delivery', 'ICD9CM_2010'), +('73.0', 'Artificial rupture of membranes', 'ICD9CM_2010'), +('73.01', 'Induction of labor by artificial rupture of membranes', 'ICD9CM_2010'), +('73.09', 'Other artificial rupture of membranes', 'ICD9CM_2010'), +('73.1', 'Other surgical induction of labor', 'ICD9CM_2010'), +('73.2', 'Internal and combined version and extraction', 'ICD9CM_2010'), +('73.21', 'Internal and combined version without extraction', 'ICD9CM_2010'), +('73.22', 'Internal and combined version with extraction', 'ICD9CM_2010'), +('73.3', 'Failed forceps', 'ICD9CM_2010'), +('73.4', 'Medical induction of labor', 'ICD9CM_2010'), +('73.5', 'Manually assisted delivery', 'ICD9CM_2010'), +('73.51', 'Manual rotation of fetal head', 'ICD9CM_2010'), +('73.59', 'Other manually assisted delivery', 'ICD9CM_2010'), +('73.6', 'Episiotomy', 'ICD9CM_2010'), +('73.8', 'Operations on fetus to facilitate delivery', 'ICD9CM_2010'), +('73.9', 'Other operations assisting delivery', 'ICD9CM_2010'), +('73.91', 'External version', 'ICD9CM_2010'), +('73.92', 'Replacement of prolapsed umbilical cord', 'ICD9CM_2010'), +('73.93', 'Incision of cervix to assist delivery', 'ICD9CM_2010'), +('73.94', 'Pubiotomy to assist delivery', 'ICD9CM_2010'), +('73.99', 'Other operations to assist delivery', 'ICD9CM_2010'), +('74', 'Cesarean section and removal of fetus', 'ICD9CM_2010'), +('74.0', 'Classical cesarean section', 'ICD9CM_2010'), +('74.1', 'Low cervical cesarean section', 'ICD9CM_2010'), +('74.2', 'Extraperitoneal cesarean section', 'ICD9CM_2010'), +('74.3', 'Removal of extratubal ectopic pregnancy', 'ICD9CM_2010'), +('74.4', 'Cesarean section of other specified type', 'ICD9CM_2010'), +('74.9', 'Cesarean section of unspecified type', 'ICD9CM_2010'), +('74.91', 'Hysterotomy to terminate pregnancy', 'ICD9CM_2010'), +('74.99', 'Other cesarean section of unspecified type', 'ICD9CM_2010'), +('75', 'Other obstetric operations', 'ICD9CM_2010'), +('75.0', 'Intra-amniotic injection for abortion', 'ICD9CM_2010'), +('75.1', 'Diagnostic amniocentesis', 'ICD9CM_2010'), +('75.2', 'Intrauterine transfusion', 'ICD9CM_2010'), +('75.3', 'Other intrauterine operations on fetus and amnion', 'ICD9CM_2010'), +('75.31', 'Amnioscopy', 'ICD9CM_2010'), +('75.32', 'Fetal EKG (scalp)', 'ICD9CM_2010'), +('75.33', 'Fetal blood sampling and biopsy', 'ICD9CM_2010'), +('75.34', 'Other fetal monitoring', 'ICD9CM_2010'), +('75.35', 'Other diagnostic procedures on fetus and amnion', 'ICD9CM_2010'), +('75.36', 'Correction of fetal defect', 'ICD9CM_2010'), +('75.37', 'Amnioinfusion', 'ICD9CM_2010'), +('75.38', 'Fetal pulse oximetry', 'ICD9CM_2010'), +('75.4', 'Manual removal of retained placenta', 'ICD9CM_2010'), +('75.5', 'Repair of current obstetric laceration of uterus', 'ICD9CM_2010'), +('75.50', 'Repair of current obstetric laceration of uterus, not otherwise specified', 'ICD9CM_2010'), +('75.51', 'Repair of current obstetric laceration of cervix', 'ICD9CM_2010'), +('75.52', 'Repair of current obstetric laceration of corpus uteri', 'ICD9CM_2010'), +('75.6', 'Repair of other current obstetric laceration', 'ICD9CM_2010'), +('75.61', 'Repair of current obstetric laceration of bladder and urethra', 'ICD9CM_2010'), +('75.62', 'Repair of current obstetric laceration of rectum and sphincter ani', 'ICD9CM_2010'), +('75.69', 'Repair of other current obstetric laceration', 'ICD9CM_2010'), +('75.7', 'Manual exploration of uterine cavity, postpartum', 'ICD9CM_2010'), +('75.8', 'Obstetric tamponade of uterus or vagina', 'ICD9CM_2010'), +('75.9', 'Other obstetric operations', 'ICD9CM_2010'), +('75.91', 'Evacuation of obstetrical incisional hematoma of perineum', 'ICD9CM_2010'), +('75.92', 'Evacuation of other hematoma of vulva or vagina', 'ICD9CM_2010'), +('75.93', 'Surgical correction of inverted uterus', 'ICD9CM_2010'), +('75.94', 'Manual replacement of inverted uterus', 'ICD9CM_2010'), +('75.99', 'Other obstetric operations', 'ICD9CM_2010'), +('76', 'Operations on facial bones and joints', 'ICD9CM_2010'), +('76.0', 'Incision of facial bone without division', 'ICD9CM_2010'), +('76.01', 'Sequestrectomy of facial bone', 'ICD9CM_2010'), +('76.09', 'Other incision of facial bone', 'ICD9CM_2010'), +('76.1', 'Diagnostic procedures on facial bones and joints', 'ICD9CM_2010'), +('76.11', 'Biopsy of facial bone', 'ICD9CM_2010'), +('76.19', 'Other diagnostic procedures on facial bones and joints', 'ICD9CM_2010'), +('76.2', 'Local excision or destruction of lesion of facial bone', 'ICD9CM_2010'), +('76.3', 'Partial ostectomy of facial bone', 'ICD9CM_2010'), +('76.31', 'Partial mandibulectomy', 'ICD9CM_2010'), +('76.39', 'Partial ostectomy of other facial bone', 'ICD9CM_2010'), +('76.4', 'Excision and reconstruction of facial bones', 'ICD9CM_2010'), +('76.41', 'Total mandibulectomy with synchronous reconstruction', 'ICD9CM_2010'), +('76.42', 'Other total mandibulectomy', 'ICD9CM_2010'), +('76.43', 'Other reconstruction of mandible', 'ICD9CM_2010'), +('76.44', 'Total ostectomy of other facial bone with synchronous reconstruction', 'ICD9CM_2010'), +('76.45', 'Other total ostectomy of other facial bone', 'ICD9CM_2010'), +('76.46', 'Other reconstruction of other facial bone', 'ICD9CM_2010'), +('76.5', 'Temporomandibular arthroplasty', 'ICD9CM_2010'), +('76.6', 'Other facial bone repair and orthognathic surgery', 'ICD9CM_2010'), +('76.61', 'Closed osteoplasty (osteotomy) of mandibular ramus', 'ICD9CM_2010'), +('76.62', 'Open osteoplasty (osteotomy) of mandibular ramus', 'ICD9CM_2010'), +('76.63', 'Osteoplasty (osteotomy) of body of mandible', 'ICD9CM_2010'), +('76.64', 'Other orthognathic surgery on mandible', 'ICD9CM_2010'), +('76.65', 'Segmental osteoplasty (osteotomy) of maxilla', 'ICD9CM_2010'), +('76.66', 'Total osteoplasty (osteotomy) of maxilla', 'ICD9CM_2010'), +('76.67', 'Reduction genioplasty', 'ICD9CM_2010'), +('76.68', 'Augmentation genioplasty', 'ICD9CM_2010'), +('76.69', 'Other facial bone repair', 'ICD9CM_2010'), +('76.7', 'Reduction of facial fracture', 'ICD9CM_2010'), +('76.70', 'Reduction of facial fracture, not otherwise specified', 'ICD9CM_2010'), +('76.71', 'Closed reduction of malar and zygomatic fracture', 'ICD9CM_2010'), +('76.72', 'Open reduction of malar and zygomatic fracture', 'ICD9CM_2010'), +('76.73', 'Closed reduction of maxillary fracture', 'ICD9CM_2010'), +('76.74', 'Open reduction of maxillary fracture', 'ICD9CM_2010'), +('76.75', 'Closed reduction of mandibular fracture', 'ICD9CM_2010'), +('76.76', 'Open reduction of mandibular fracture', 'ICD9CM_2010'), +('76.77', 'Open reduction of alveolar fracture', 'ICD9CM_2010'), +('76.78', 'Other closed reduction of facial fracture', 'ICD9CM_2010'), +('76.79', 'Other open reduction of facial fracture', 'ICD9CM_2010'), +('76.9', 'Other operations on facial bones and joints', 'ICD9CM_2010'), +('76.91', 'Bone graft to facial bone', 'ICD9CM_2010'), +('76.92', 'Insertion of synthetic implant in facial bone', 'ICD9CM_2010'), +('76.93', 'Closed reduction of temporomandibular dislocation', 'ICD9CM_2010'), +('76.94', 'Open reduction of temporomandibular dislocation', 'ICD9CM_2010'), +('76.95', 'Other manipulation of temporomandibular joint', 'ICD9CM_2010'), +('76.96', 'Injection of therapeutic substance into temporomandibular joint', 'ICD9CM_2010'), +('76.97', 'Removal of internal fixation device from facial bone', 'ICD9CM_2010'), +('76.99', 'Other operations on facial bones and joints', 'ICD9CM_2010'), +('77', 'Incision, excision, and division of other bones', 'ICD9CM_2010'), +('77.0', 'Sequestrectomy', 'ICD9CM_2010'), +('77.00', 'Sequestrectomy, unspecified site', 'ICD9CM_2010'), +('77.01', 'Sequestrectomy of scapula, clavicle, and thorax (ribs and sternum)', 'ICD9CM_2010'), +('77.02', 'Sequestrectomy of humerus', 'ICD9CM_2010'), +('77.03', 'Sequestrectomy of radius and ulna', 'ICD9CM_2010'), +('77.04', 'Sequestrectomy of carpals and metacarpals', 'ICD9CM_2010'), +('77.05', 'Sequestrectomy of femur', 'ICD9CM_2010'), +('77.06', 'Sequestrectomy of patella', 'ICD9CM_2010'), +('77.07', 'Sequestrectomy of tibia and fibula', 'ICD9CM_2010'), +('77.08', 'Sequestrectomy of tarsals and metatarsals', 'ICD9CM_2010'), +('77.09', 'Sequestrectomy of other bone', 'ICD9CM_2010'), +('77.1', 'Other incision of bone without division', 'ICD9CM_2010'), +('77.10', 'Other incision of bone without division, unspecified site', 'ICD9CM_2010'), +('77.11', 'Other incision of bone without division, scapula, clavicle, and thorax (ribs and sternum)', 'ICD9CM_2010'), +('77.12', 'Other incision of bone without division, humerus', 'ICD9CM_2010'), +('77.13', 'Other incision of bone without division, radius and ulna', 'ICD9CM_2010'), +('77.14', 'Other incision of bone without division, carpus and metacarpus', 'ICD9CM_2010'), +('77.15', 'Other incision of bone without division, femur', 'ICD9CM_2010'), +('77.16', 'Other incision of bone without division, patella', 'ICD9CM_2010'), +('77.17', 'Other incision of bone without division, tibia and fibula', 'ICD9CM_2010'), +('77.18', 'Other incision of bone without division, tarsals and metatarsals', 'ICD9CM_2010'), +('77.19', 'Other incision of bone without division, other specified bone', 'ICD9CM_2010'), +('77.2', 'Wedge osteotomy', 'ICD9CM_2010'), +('77.20', 'Wedge osteotomy, unspecified site', 'ICD9CM_2010'), +('77.21', 'Wedge osteotomy of scapula, clavicle, and thorax (ribs and sternum)', 'ICD9CM_2010'), +('77.22', 'Wedge osteotomy of humerus', 'ICD9CM_2010'), +('77.23', 'Wedge osteotomy of radius and ulna', 'ICD9CM_2010'), +('77.24', 'Wedge osteotomy of carpals and metacarpals', 'ICD9CM_2010'), +('77.25', 'Wedge osteotomy of femur', 'ICD9CM_2010'), +('77.26', 'Wedge osteotomy of patella', 'ICD9CM_2010'), +('77.27', 'Wedge osteotomy of tibia and fibula', 'ICD9CM_2010'), +('77.28', 'Wedge osteotomy of tarsals and metatarsals', 'ICD9CM_2010'), +('77.29', 'Wedge osteotomy of other bone', 'ICD9CM_2010'), +('77.3', 'Other division of bone', 'ICD9CM_2010'), +('77.30', 'Other division of bone, unspecified site', 'ICD9CM_2010'), +('77.31', 'Other division of scapula, clavicle, and thorax (ribs and sternum)', 'ICD9CM_2010'), +('77.32', 'Other division of humerus', 'ICD9CM_2010'), +('77.33', 'Other division of radius and ulna', 'ICD9CM_2010'), +('77.34', 'Other division of carpals and metacarpals', 'ICD9CM_2010'), +('77.35', 'Other division of femur', 'ICD9CM_2010'), +('77.36', 'Other division of patella', 'ICD9CM_2010'), +('77.37', 'Other division of tibia and fibula', 'ICD9CM_2010'), +('77.38', 'Other division of tarsals and metatarsals', 'ICD9CM_2010'), +('77.39', 'Other division of other bone', 'ICD9CM_2010'), +('77.4', 'Biopsy of bone', 'ICD9CM_2010'), +('77.40', 'Biopsy of bone, unspecified site', 'ICD9CM_2010'), +('77.41', 'Biopsy of scapula, clavicle, and thorax (ribs and sternum)', 'ICD9CM_2010'), +('77.42', 'Biopsy of humerus', 'ICD9CM_2010'), +('77.43', 'Biopsy of radius and ulna', 'ICD9CM_2010'), +('77.44', 'Biopsy of carpals and metacarpals', 'ICD9CM_2010'), +('77.45', 'Biopsy of femur', 'ICD9CM_2010'), +('77.46', 'Biopsy of patella', 'ICD9CM_2010'), +('77.47', 'Biopsy of tibia and fibula', 'ICD9CM_2010'), +('77.48', 'Biopsy of tarsals and metatarsals', 'ICD9CM_2010'), +('77.49', 'Biopsy of other bone', 'ICD9CM_2010'), +('77.5', 'Excision and repair of bunion and other toe deformities', 'ICD9CM_2010'), +('77.51', 'Bunionectomy with soft tissue correction and osteotomy of the first metatarsal', 'ICD9CM_2010'), +('77.52', 'Bunionectomy with soft tissue correction and arthrodesis', 'ICD9CM_2010'), +('77.53', 'Other bunionectomy with soft tissue correction', 'ICD9CM_2010'), +('77.54', 'Excision or correction of bunionette', 'ICD9CM_2010'), +('77.56', 'Repair of hammer toe', 'ICD9CM_2010'), +('77.57', 'Repair of claw toe', 'ICD9CM_2010'), +('77.58', 'Other excision, fusion, and repair of toes', 'ICD9CM_2010'), +('77.59', 'Other bunionectomy', 'ICD9CM_2010'), +('77.6', 'Local excision of lesion or tissue of bone', 'ICD9CM_2010'), +('77.60', 'Local excision of lesion or tissue of bone, unspecified site', 'ICD9CM_2010'), +('77.61', 'Local excision of lesion or tissue of scapula, clavicle, and thorax (ribs and sternum)', 'ICD9CM_2010'), +('77.62', 'Local excision of lesion or tissue of humerus', 'ICD9CM_2010'), +('77.63', 'Local excision of lesion or tissue of radius and ulna', 'ICD9CM_2010'), +('77.64', 'Local excision of lesion or tissue of carpals and metacarpals', 'ICD9CM_2010'), +('77.65', 'Local excision of lesion or tissue of femur', 'ICD9CM_2010'), +('77.66', 'Local excision of lesion or tissue of patella', 'ICD9CM_2010'), +('77.67', 'Local excision of lesion or tissue of tibia and fibula', 'ICD9CM_2010'), +('77.68', 'Local excision of lesion or tissue of tarsals and metatarsals', 'ICD9CM_2010'), +('77.69', 'Local excision of lesion or tissue of other specified bone', 'ICD9CM_2010'), +('77.7', 'Excision of bone for graft', 'ICD9CM_2010'), +('77.70', 'Excision of bone for graft, unspecified site', 'ICD9CM_2010'), +('77.71', 'Excision of bone for graft, scapula, clavicle, and thorax (ribs and sternum)', 'ICD9CM_2010'), +('77.72', 'Excision of bone for graft, humerus', 'ICD9CM_2010'), +('77.73', 'Excision of bone for graft, radius and ulna', 'ICD9CM_2010'), +('77.74', 'Excision of bone for graft, carpus and metacarpus', 'ICD9CM_2010'), +('77.75', 'Excision of bone for graft, femur', 'ICD9CM_2010'), +('77.76', 'Excision of bone for graft, patella', 'ICD9CM_2010'), +('77.77', 'Excision of bone for graft, tibia and fibula', 'ICD9CM_2010'), +('77.78', 'Excision of bone for graft, tarsals and metatarsals', 'ICD9CM_2010'), +('77.79', 'Excision of bone for graft, other specified bone', 'ICD9CM_2010'), +('77.8', 'Other partial ostectomy', 'ICD9CM_2010'), +('77.80', 'Other partial ostectomy, unspecified site', 'ICD9CM_2010'), +('77.81', 'Other partial ostectomy of scapula, clavicle, and thorax (ribs and sternum)', 'ICD9CM_2010'), +('77.82', 'Other partial ostectomy of humerus', 'ICD9CM_2010'), +('77.83', 'Other partial ostectomy of radius and ulna', 'ICD9CM_2010'), +('77.84', 'Other partial ostectomy of carpals and metacarpals', 'ICD9CM_2010'), +('77.85', 'Other partial ostectomy of femur', 'ICD9CM_2010'), +('77.86', 'Other partial ostectomy of patella', 'ICD9CM_2010'), +('77.87', 'Other partial ostectomy of tibia and fibula', 'ICD9CM_2010'), +('77.88', 'Other partial ostectomy of tarsals and metatarsals', 'ICD9CM_2010'), +('77.89', 'Other partial ostectomy of other bone', 'ICD9CM_2010'), +('77.9', 'Total ostectomy', 'ICD9CM_2010'), +('77.90', 'Total ostectomy, unspecified site', 'ICD9CM_2010'), +('77.91', 'Total ostectomy of scapula, clavicle, and thorax (ribs and sternum)', 'ICD9CM_2010'), +('77.92', 'Total ostectomy of humerus', 'ICD9CM_2010'), +('77.93', 'Total ostectomy of radius and ulna', 'ICD9CM_2010'), +('77.94', 'Total ostectomy of carpals and metacarpals', 'ICD9CM_2010'), +('77.95', 'Total ostectomy of femur', 'ICD9CM_2010'), +('77.96', 'Total ostectomy of patella', 'ICD9CM_2010'), +('77.97', 'Total ostectomy of tibia and fibula', 'ICD9CM_2010'), +('77.98', 'Total ostectomy of tarsals and metatarsals', 'ICD9CM_2010'), +('77.99', 'Total ostectomy of other bone', 'ICD9CM_2010'), +('78', 'Other operations on bones, except facial bones', 'ICD9CM_2010'), +('78.0', 'Bone graft', 'ICD9CM_2010'), +('78.00', 'Bone graft, unspecified site', 'ICD9CM_2010'), +('78.01', 'Bone graft of scapula, clavicle, and thorax (ribs and sternum)', 'ICD9CM_2010'), +('78.02', 'Bone graft of humerus', 'ICD9CM_2010'), +('78.03', 'Bone graft of radius and ulna', 'ICD9CM_2010'), +('78.04', 'Bone graft of carpals and metacarpals', 'ICD9CM_2010'), +('78.05', 'Bone graft of femur', 'ICD9CM_2010'), +('78.06', 'Bone graft of patella', 'ICD9CM_2010'), +('78.07', 'Bone graft of tibia and fibula', 'ICD9CM_2010'), +('78.08', 'Bone graft of tarsals and metatarsals', 'ICD9CM_2010'), +('78.09', 'Bone graft of other bone except facial bones', 'ICD9CM_2010'), +('78.1', 'Application of external fixation device', 'ICD9CM_2010'), +('78.10', 'Application of external fixation device, unspecified site', 'ICD9CM_2010'), +('78.11', 'Application of external fixation device, scapula, clavicle, and thorax (ribs and sternum)', 'ICD9CM_2010'), +('78.12', 'Application of external fixation device, humerus', 'ICD9CM_2010'), +('78.13', 'Application of external fixation device, radius and ulna', 'ICD9CM_2010'), +('78.14', 'Application of external fixation device, carpals and metacarpals', 'ICD9CM_2010'), +('78.15', 'Application of external fixation device, femur', 'ICD9CM_2010'), +('78.16', 'Application of external fixation device, patella', 'ICD9CM_2010'), +('78.17', 'Application of external fixation device, tibia and fibula', 'ICD9CM_2010'), +('78.18', 'Application of external fixation device, tarsals and metatarsals', 'ICD9CM_2010'), +('78.19', 'Application of external fixation device, other bone except facial bones', 'ICD9CM_2010'), +('78.2', 'Limb shortening procedures', 'ICD9CM_2010'), +('78.20', 'Limb shortening procedures, unspecified site', 'ICD9CM_2010'), +('78.22', 'Limb shortening procedures, humerus', 'ICD9CM_2010'), +('78.23', 'Limb shortening procedures, radius and ulna', 'ICD9CM_2010'), +('78.24', 'Limb shortening procedures, carpals and metacarpals', 'ICD9CM_2010'), +('78.25', 'Limb shortening procedures, femur', 'ICD9CM_2010'), +('78.27', 'Limb shortening procedures, tibia and fibula', 'ICD9CM_2010'), +('78.28', 'Limb shortening procedures, tarsals and metatarsals', 'ICD9CM_2010'), +('78.29', 'Limb shortening procedures, other bone except facial bones', 'ICD9CM_2010'), +('78.3', 'Limb lengthening procedures', 'ICD9CM_2010'), +('78.30', 'Limb lengthening procedures, unspecified site', 'ICD9CM_2010'), +('78.32', 'Limb lengthening procedures, humerus', 'ICD9CM_2010'), +('78.33', 'Limb lengthening procedures, radius and ulna', 'ICD9CM_2010'); +INSERT INTO `icd9` (`ID_ICD9`, `Prosedur`, `Versi_ICD9`) VALUES +('78.34', 'Limb lengthening procedures, carpals and metacarpals', 'ICD9CM_2010'), +('78.35', 'Limb lengthening procedures, femur', 'ICD9CM_2010'), +('78.37', 'Limb lengthening procedures, tibia and fibula', 'ICD9CM_2010'), +('78.38', 'Limb lengthening procedures, tarsals and metatarsals', 'ICD9CM_2010'), +('78.39', 'Limb lengthening procedures, other bone except facial bones', 'ICD9CM_2010'), +('78.4', 'Other repair or plastic operations on bone', 'ICD9CM_2010'), +('78.40', 'Other repair or plastic operations on bone, unspecified site', 'ICD9CM_2010'), +('78.41', 'Other repair or plastic operations on scapula, clavicle, and thorax (ribs and sternum)', 'ICD9CM_2010'), +('78.42', 'Other repair or plastic operation on humerus', 'ICD9CM_2010'), +('78.43', 'Other repair or plastic operations on radius and ulna', 'ICD9CM_2010'), +('78.44', 'Other repair or plastic operations on carpals and metacarpals', 'ICD9CM_2010'), +('78.45', 'Other repair or plastic operations on femur', 'ICD9CM_2010'), +('78.46', 'Other repair or plastic operations on patella', 'ICD9CM_2010'), +('78.47', 'Other repair or plastic operations on tibia and fibula', 'ICD9CM_2010'), +('78.48', 'Other repair or plastic operations on tarsals and metatarsals', 'ICD9CM_2010'), +('78.49', 'Other repair or plastic operations on other bone, except facial bone', 'ICD9CM_2010'), +('78.5', 'Internal fixation of bone without fracture reduction', 'ICD9CM_2010'), +('78.50', 'Internal fixation of bone without fracture reduction, unspecified site', 'ICD9CM_2010'), +('78.51', 'Internal fixation of bone without fracture reduction on scapula, clavicle, and thorax (ribs and sternum)', 'ICD9CM_2010'), +('78.52', 'Internal fixation of bone without fracture reduction on humerus', 'ICD9CM_2010'), +('78.53', 'Internal fixation of bone without fracture reduction on radius and ulna', 'ICD9CM_2010'), +('78.54', 'Internal fixation of bone without fracture reductionon carpals and metacarpals', 'ICD9CM_2010'), +('78.55', 'Internal fixation of bone without fracture reduction on femur', 'ICD9CM_2010'), +('78.56', 'Internal fixation of bone without fracture reduction on patella', 'ICD9CM_2010'), +('78.57', 'Internal fixation of bone without fracture reduction on tibia and fibula', 'ICD9CM_2010'), +('78.58', 'Internal fixation of bone without fracture reduction on tarsals and metatarsals', 'ICD9CM_2010'), +('78.59', 'Internal fixation of bone without fracture reduction on other bone, except facial bone', 'ICD9CM_2010'), +('78.6', 'Removal of implanted device from bone', 'ICD9CM_2010'), +('78.60', 'Removal of implanted device, unspecified site', 'ICD9CM_2010'), +('78.61', 'Removal of implanted device from scapula, clavicle, and thorax (ribs and sternum)', 'ICD9CM_2010'), +('78.62', 'Removal of implanted device from humerus', 'ICD9CM_2010'), +('78.63', 'Removal of implanted device from radius and ulna', 'ICD9CM_2010'), +('78.64', 'Removal of implanted device from carpals and metacarpals', 'ICD9CM_2010'), +('78.65', 'Removal of implanted device from femur', 'ICD9CM_2010'), +('78.66', 'Removal of implanted device from patella', 'ICD9CM_2010'), +('78.67', 'Removal of implanted device from tibia and fibula', 'ICD9CM_2010'), +('78.68', 'Removal of implanted device from tarsal and metatarsals', 'ICD9CM_2010'), +('78.69', 'Removal of implanted device from other bone, except facial bone', 'ICD9CM_2010'), +('78.7', 'Osteoclasis', 'ICD9CM_2010'), +('78.70', 'Osteoclasis, unspecified site', 'ICD9CM_2010'), +('78.71', 'Osteoclasis of scapula, clavicle, and thorax (ribs and sternum)', 'ICD9CM_2010'), +('78.72', 'Osteoclasis of humerus', 'ICD9CM_2010'), +('78.73', 'Osteoclasis of radius and ulna', 'ICD9CM_2010'), +('78.74', 'Osteoclasis of carpals and metacarpals', 'ICD9CM_2010'), +('78.75', 'Osteoclasis of femur', 'ICD9CM_2010'), +('78.76', 'Osteoclasis of patella', 'ICD9CM_2010'), +('78.77', 'Osteoclasis of tibia and fibula', 'ICD9CM_2010'), +('78.78', 'Osteoclasis of tarsals and metatarsals', 'ICD9CM_2010'), +('78.79', 'Osteoclasis of other bone, except facial bone', 'ICD9CM_2010'), +('78.8', 'Diagnostic procedures on bone, not elsewhere classified', 'ICD9CM_2010'), +('78.80', 'Diagnostic procedures on bone, not elsewhere classified, unspecified site', 'ICD9CM_2010'), +('78.81', 'Diagnostic procedures on scapula, clavicle, and thorax (ribs and sternum)', 'ICD9CM_2010'), +('78.82', 'Diagnostic procedures on humerus, not elsewhere classified', 'ICD9CM_2010'), +('78.83', 'Diagnostic procedures on radius and ulna, not elsewhere classified', 'ICD9CM_2010'), +('78.84', 'Diagnostic procedures on carpals and metacarpals, not elsewhere classified', 'ICD9CM_2010'), +('78.85', 'Diagnostic procedures on femur, not elsewhere classified', 'ICD9CM_2010'), +('78.86', 'Diagnostic procedures on patella, not elsewhere classified', 'ICD9CM_2010'), +('78.87', 'Diagnostic procedures on tibia and fibula, not elsewhere classified', 'ICD9CM_2010'), +('78.88', 'Diagnostic procedures on tarsals and metatarsals, not elsewhere classified', 'ICD9CM_2010'), +('78.89', 'Diagnostic procedures on other bone, not elsewhere classified', 'ICD9CM_2010'), +('78.9', 'Insertion of bone growth stimulator', 'ICD9CM_2010'), +('78.90', 'Insertion of bone growth stimulator, unspecified site', 'ICD9CM_2010'), +('78.91', 'Insertion of bone growth stimulator into scapula, clavicle, and thorax (ribs and sternum)', 'ICD9CM_2010'), +('78.92', 'Insertion of bone growth stimulator into humerus', 'ICD9CM_2010'), +('78.93', 'Insertion of bone growth stimulator into radius and ulna', 'ICD9CM_2010'), +('78.94', 'Insertion of bone growth stimulator into carpals and metacarpals', 'ICD9CM_2010'), +('78.95', 'Insertion of bone growth stimulator into femur', 'ICD9CM_2010'), +('78.96', 'Insertion of bone growth stimulator into patella', 'ICD9CM_2010'), +('78.97', 'Insertion of bone growth stimulator into tibia and fibula', 'ICD9CM_2010'), +('78.98', 'Insertion of bone growth stimulator into tarsals and metatarsals', 'ICD9CM_2010'), +('78.99', 'Insertion of bone growth stimulator into other bone, except facial bone', 'ICD9CM_2010'), +('79', 'Reduction of fracture and dislocation', 'ICD9CM_2010'), +('79.0', 'Closed reduction of fracture without internal fixation', 'ICD9CM_2010'), +('79.00', 'Closed reduction of fracture without internal fixation, unspecified site', 'ICD9CM_2010'), +('79.01', 'Closed reduction of fracture without internal fixation, humerus', 'ICD9CM_2010'), +('79.02', 'Closed reduction of fracture without internal fixation, radius and ulna', 'ICD9CM_2010'), +('79.03', 'Closed reduction of fracture without internal fixation, carpals and metacarpals', 'ICD9CM_2010'), +('79.04', 'Closed reduction of fracture without internal fixation, phalanges of hand', 'ICD9CM_2010'), +('79.05', 'Closed reduction of fracture without internal fixation, femur', 'ICD9CM_2010'), +('79.06', 'Closed reduction of fracture without internal fixation, tibia and fibula', 'ICD9CM_2010'), +('79.07', 'Closed reduction of fracture without internal fixation, tarsals and metatarsals', 'ICD9CM_2010'), +('79.08', 'Closed reduction of fracture without internal fixation, phalanges of foot', 'ICD9CM_2010'), +('79.09', 'Closed reduction of fracture without internal fixation, other specified bone', 'ICD9CM_2010'), +('79.1', 'Closed reduction of fracture with internal fixation', 'ICD9CM_2010'), +('79.10', 'Closed reduction of fracture with internal fixation, unspecified site', 'ICD9CM_2010'), +('79.11', 'Closed reduction of fracture with internal fixation, humerus', 'ICD9CM_2010'), +('79.12', 'Closed reduction of fracture with internal fixation, radius and ulna', 'ICD9CM_2010'), +('79.13', 'Closed reduction of fracture with internal fixation, carpals and metacarpals', 'ICD9CM_2010'), +('79.14', 'Closed reduction of fracture with internal fixation,phalanges of hand', 'ICD9CM_2010'), +('79.15', 'Closed reduction of fracture with internal fixation, femur', 'ICD9CM_2010'), +('79.16', 'Closed reduction of fracture with internal fixation, tibia and fibula', 'ICD9CM_2010'), +('79.17', 'Closed reduction of fracture with internal fixation, tarsals and metatarsals', 'ICD9CM_2010'), +('79.18', 'Closed reduction of fracture with internal fixation, phalanges of foot', 'ICD9CM_2010'), +('79.19', 'Closed reduction of fracture with internal fixation, other specified bone', 'ICD9CM_2010'), +('79.2', 'Open reduction of fracture without internal fixation', 'ICD9CM_2010'), +('79.20', 'Open reduction of fracture without internal fixation, unspecified site', 'ICD9CM_2010'), +('79.21', 'Open reduction of fracture without internal fixation, humerus', 'ICD9CM_2010'), +('79.22', 'Open reduction of fracture without internal fixation, radius and ulna', 'ICD9CM_2010'), +('79.23', 'Open reduction of fracture without internal fixation, carpals and metacarpals', 'ICD9CM_2010'), +('79.24', 'Open reduction of fracture without internal fixation, phalanges of hand', 'ICD9CM_2010'), +('79.25', 'Open reduction of fracture without internal fixation, femur', 'ICD9CM_2010'), +('79.26', 'Open reduction of fracture without internal fixation, tibia and fibula', 'ICD9CM_2010'), +('79.27', 'Open reduction of fracture without internal fixation, tarsals and metatarsals', 'ICD9CM_2010'), +('79.28', 'Open reduction of fracture without internal fixation, phalanges of foot', 'ICD9CM_2010'), +('79.29', 'Open reduction of fracture without internal fixation, other specified bone', 'ICD9CM_2010'), +('79.3', 'Open reduction of fracture with internal fixation', 'ICD9CM_2010'), +('79.30', 'Open reduction of fracture with internal fixation, unspecified site', 'ICD9CM_2010'), +('79.31', 'Open reduction of fracture with internal fixation, humerus', 'ICD9CM_2010'), +('79.32', 'Open reduction of fracture with internal fixation, radius and ulna', 'ICD9CM_2010'), +('79.33', 'Open reduction of fracture with internal fixation, carpals and metacarpals', 'ICD9CM_2010'), +('79.34', 'Open reduction of fracture with internal fixation, phalanges of hand', 'ICD9CM_2010'), +('79.35', 'Open reduction of fracture with internal fixation, femur', 'ICD9CM_2010'), +('79.36', 'Open reduction of fracture with internal fixation, tibia and fibula', 'ICD9CM_2010'), +('79.37', 'Open reduction of fracture with internal fixation, tarsals and metatarsals', 'ICD9CM_2010'), +('79.38', 'Open reduction of fracture with internal fixation, phalanges of foot', 'ICD9CM_2010'), +('79.39', 'Open reduction of fracture with internal fixation, other specified bone', 'ICD9CM_2010'), +('79.4', 'Closed reduction of separated epiphysis', 'ICD9CM_2010'), +('79.40', 'Closed reduction of separated epiphysis, unspecified site', 'ICD9CM_2010'), +('79.41', 'Closed reduction of separated epiphysis of humerus', 'ICD9CM_2010'), +('79.42', 'Closed reduction of separated epiphysis of radius and ulna', 'ICD9CM_2010'), +('79.45', 'Closed reduction of separated epiphysis of femur', 'ICD9CM_2010'), +('79.46', 'Closed reduction of separated epiphysis of tibia and fibula', 'ICD9CM_2010'), +('79.49', 'Closed reduction of separated epiphysis of other specified bone', 'ICD9CM_2010'), +('79.5', 'Open reduction of separated epiphysis', 'ICD9CM_2010'), +('79.50', 'Open reduction of separated epiphysis, unspecified site', 'ICD9CM_2010'), +('79.51', 'Open reduction of separated epiphysis of humerus', 'ICD9CM_2010'), +('79.52', 'Open reduction of separated epiphysis of radius and ulna', 'ICD9CM_2010'), +('79.55', 'Open reduction of separated epiphysis of femur', 'ICD9CM_2010'), +('79.56', 'Open reduction of separated epiphysis of tibia and fibula', 'ICD9CM_2010'), +('79.59', 'Open reduction of separated epiphysis of other specified bone', 'ICD9CM_2010'), +('79.6', 'Debridement of open fracture site', 'ICD9CM_2010'), +('79.60', 'Debridement of open fracture, unspecified site', 'ICD9CM_2010'), +('79.61', 'Debridement of open fracture of humerus', 'ICD9CM_2010'), +('79.62', 'Debridement of open fracture of radius and ulna', 'ICD9CM_2010'), +('79.63', 'Debridement of open fracture of carpals and metacarpals', 'ICD9CM_2010'), +('79.64', 'Debridement of open fracture of phalanges of hand', 'ICD9CM_2010'), +('79.65', 'Debridement of open fracture of femur', 'ICD9CM_2010'), +('79.66', 'Debridement of open fracture of tibia and fibula', 'ICD9CM_2010'), +('79.67', 'Debridement of open fracture of tarsals and metatarsals', 'ICD9CM_2010'), +('79.68', 'Debridement of open fracture of phalanges of foot', 'ICD9CM_2010'), +('79.69', 'Debridement of open fracture of other specified bone', 'ICD9CM_2010'), +('79.7', 'Closed reduction of dislocation', 'ICD9CM_2010'), +('79.70', 'Closed reduction of dislocation of unspecified site', 'ICD9CM_2010'), +('79.71', 'Closed reduction of dislocation of shoulder', 'ICD9CM_2010'), +('79.72', 'Closed reduction of dislocation of elbow', 'ICD9CM_2010'), +('79.73', 'Closed reduction of dislocation of wrist', 'ICD9CM_2010'), +('79.74', 'Closed reduction of dislocation of hand and finger', 'ICD9CM_2010'), +('79.75', 'Closed reduction of dislocation of hip', 'ICD9CM_2010'), +('79.76', 'Closed reduction of dislocation of knee', 'ICD9CM_2010'), +('79.77', 'Closed reduction of dislocation of ankle', 'ICD9CM_2010'), +('79.78', 'Closed reduction of dislocation of foot and toe', 'ICD9CM_2010'), +('79.79', 'Closed reduction of dislocation of other specified site, except temp', 'ICD9CM_2010'), +('79.8', 'Open reduction of dislocation', 'ICD9CM_2010'), +('79.80', 'Open reduction of dislocation of unspecified site', 'ICD9CM_2010'), +('79.81', 'Open reduction of dislocation of shoulder', 'ICD9CM_2010'), +('79.82', 'Open reduction of dislocation of elbow', 'ICD9CM_2010'), +('79.83', 'Open reduction of dislocation of wrist', 'ICD9CM_2010'), +('79.84', 'Open reduction of dislocation of hand and finger', 'ICD9CM_2010'), +('79.85', 'Open reduction of dislocation of hip', 'ICD9CM_2010'), +('79.86', 'Open reduction of dislocation of knee', 'ICD9CM_2010'), +('79.87', 'Open reduction of dislocation of ankle', 'ICD9CM_2010'), +('79.88', 'Open reduction of dislocation of foot and toe', 'ICD9CM_2010'), +('79.89', 'Open reduction of dislocation of other specified site, except tempor', 'ICD9CM_2010'), +('79.9', 'Unspecified operation on bone injury', 'ICD9CM_2010'), +('79.90', 'Unspecified operation on bone injury, unspecified site', 'ICD9CM_2010'), +('79.91', 'Unspecified operation on bone injury of humerus', 'ICD9CM_2010'), +('79.92', 'Unspecified operation on bone injury of radius and ulna', 'ICD9CM_2010'), +('79.93', 'Unspecified operation on bone injury of carpals and metacarpals', 'ICD9CM_2010'), +('79.94', 'Unspecified operation on bone injury of phalanges of hand', 'ICD9CM_2010'), +('79.95', 'Unspecified operation on bone injury of femur', 'ICD9CM_2010'), +('79.96', 'Unspecified operation on bone injury of tibia and fibula', 'ICD9CM_2010'), +('79.97', 'Unspecified operation on bone injury of tarsals and metatarsals', 'ICD9CM_2010'), +('79.98', 'Unspecified operation on bone injury of phalanges of foot', 'ICD9CM_2010'), +('79.99', 'Unspecified operation on bone injury of other specified bone', 'ICD9CM_2010'), +('80', 'Incision and excision of joint structures', 'ICD9CM_2010'), +('80.0', 'Arthrotomy for removal of prosthesis', 'ICD9CM_2010'), +('80.00', 'Arthrotomy for removal of prosthesis, unspecified site', 'ICD9CM_2010'), +('80.01', 'Arthrotomy for removal of prosthesis of shoulder', 'ICD9CM_2010'), +('80.02', 'Arthrotomy for removal of prosthesis of elbow', 'ICD9CM_2010'), +('80.03', 'Arthrotomy for removal of prosthesis of wrist', 'ICD9CM_2010'), +('80.04', 'Arthrotomy for removal of prosthesis of hand and finger', 'ICD9CM_2010'), +('80.05', 'Arthrotomy for removal of prosthesis of hip', 'ICD9CM_2010'), +('80.06', 'Arthrotomy for removal of prosthesis of knee', 'ICD9CM_2010'), +('80.07', 'Arthrotomy for removal of prosthesis of ankle', 'ICD9CM_2010'), +('80.08', 'Arthrotomy for removal of prosthesis of foot and toe', 'ICD9CM_2010'), +('80.09', 'Arthrotomy for removal of prosthesis of other specified site', 'ICD9CM_2010'), +('80.1', 'Other arthrotomy', 'ICD9CM_2010'), +('80.10', 'Other arthrotomy, unspecified site', 'ICD9CM_2010'), +('80.11', 'Other arthrotomy of shoulder', 'ICD9CM_2010'), +('80.12', 'Other arthrotomy of elbow', 'ICD9CM_2010'), +('80.13', 'Other arthrotomy of wrist', 'ICD9CM_2010'), +('80.14', 'Other arthrotomy of hand and finger', 'ICD9CM_2010'), +('80.15', 'Other arthrotomy of hip', 'ICD9CM_2010'), +('80.16', 'Other arthrotomy of knee', 'ICD9CM_2010'), +('80.17', 'Other arthrotomy of ankle', 'ICD9CM_2010'), +('80.18', 'Other arthrotomy of foot and toe', 'ICD9CM_2010'), +('80.19', 'Other arthrotomy of other specified site', 'ICD9CM_2010'), +('80.2', 'Arthroscopy', 'ICD9CM_2010'), +('80.20', 'Arthroscopy, unspecified site', 'ICD9CM_2010'), +('80.21', 'Arthroscopy of shoulder', 'ICD9CM_2010'), +('80.22', 'Arthroscopy of elbow', 'ICD9CM_2010'), +('80.23', 'Arthroscopy of wrist', 'ICD9CM_2010'), +('80.24', 'Arthroscopy of hand and finger', 'ICD9CM_2010'), +('80.25', 'Arthroscopy of hip', 'ICD9CM_2010'), +('80.26', 'Arthroscopy of knee', 'ICD9CM_2010'), +('80.27', 'Arthroscopy of ankle', 'ICD9CM_2010'), +('80.28', 'Arthroscopy of foot and toe', 'ICD9CM_2010'), +('80.29', 'Arthroscopy of other specified site', 'ICD9CM_2010'), +('80.3', 'Biopsy of joint structure', 'ICD9CM_2010'), +('80.30', 'Biopsy of joint structure, unspecified site', 'ICD9CM_2010'), +('80.31', 'Biopsy of joint structure of shoulder', 'ICD9CM_2010'), +('80.32', 'Biopsy of joint structure of elbow', 'ICD9CM_2010'), +('80.33', 'Biopsy of joint structure of wrist', 'ICD9CM_2010'), +('80.34', 'Biopsy of joint structure of hand and finger', 'ICD9CM_2010'), +('80.35', 'Biopsy of joint structure of hip', 'ICD9CM_2010'), +('80.36', 'Biopsy of joint structure of knee', 'ICD9CM_2010'), +('80.37', 'Biopsy of joint structure of ankle', 'ICD9CM_2010'), +('80.38', 'Biopsy of joint structure of foot and toe', 'ICD9CM_2010'), +('80.39', 'Biopsy of joint structure of other specified site', 'ICD9CM_2010'), +('80.4', 'Division of joint capsule, ligament, or cartilage', 'ICD9CM_2010'), +('80.40', 'Division of joint capsule, ligament, or cartilage, unspecified site', 'ICD9CM_2010'), +('80.41', 'Division of joint capsule, ligament, or cartilage of shoulder', 'ICD9CM_2010'), +('80.42', 'Division of joint capsule, ligament, or cartilage of elbow', 'ICD9CM_2010'), +('80.43', 'Division of joint capsule, ligament, or cartilage of wrist', 'ICD9CM_2010'), +('80.44', 'Division of joint capsule, ligament, or cartilage of hand and finger', 'ICD9CM_2010'), +('80.45', 'Division of joint capsule, ligament, or cartilage of hip', 'ICD9CM_2010'), +('80.46', 'Division of joint capsule, ligament, or cartilage of knee', 'ICD9CM_2010'), +('80.47', 'Division of joint capsule, ligament, or cartilage of ankle', 'ICD9CM_2010'), +('80.48', 'Division of joint capsule, ligament, or cartilage of foot and toe', 'ICD9CM_2010'), +('80.49', 'Division of joint capsule, ligament, or cartilage of other specified', 'ICD9CM_2010'), +('80.5', 'Excision or destruction of intervertebral disc', 'ICD9CM_2010'), +('80.50', 'Excision or destruction of intervertebral disc, unspecified', 'ICD9CM_2010'), +('80.51', 'Excision of intervertebral disc', 'ICD9CM_2010'), +('80.52', 'Intervertebral chemonucleolysis', 'ICD9CM_2010'), +('80.53', 'Repair of the anulus fibrosus with graft or prosthesis', 'ICD9CM_2010'), +('80.54', 'Other and unspecified repair of the anulus fibrosus', 'ICD9CM_2010'), +('80.59', 'Other destruction of intervertebral disc', 'ICD9CM_2010'), +('80.6', 'Excision of semilunar cartilage of knee', 'ICD9CM_2010'), +('80.7', 'Synovectomy', 'ICD9CM_2010'), +('80.70', 'Synovectomy, unspecified site', 'ICD9CM_2010'), +('80.71', 'Synovectomy of shoulder', 'ICD9CM_2010'), +('80.72', 'Synovectomy of elbow', 'ICD9CM_2010'), +('80.73', 'Synovectomy of wrist', 'ICD9CM_2010'), +('80.74', 'Synovectomy of hand and finger', 'ICD9CM_2010'), +('80.75', 'Synovectomy of hip', 'ICD9CM_2010'), +('80.76', 'Synovectomy of knee', 'ICD9CM_2010'), +('80.77', 'Synovectomy of ankle', 'ICD9CM_2010'), +('80.78', 'Synovectomy of foot and toe', 'ICD9CM_2010'), +('80.79', 'Synovectomy of other specified site', 'ICD9CM_2010'), +('80.8', 'Other local excision or destruction of lesion of joint', 'ICD9CM_2010'), +('80.80', 'Other local excision or destruction of lesion of joint, unspecified', 'ICD9CM_2010'), +('80.81', 'Other local excision or destruction of lesion of shoulder joint', 'ICD9CM_2010'), +('80.82', 'Other local excision or destruction of lesion of elbow joint', 'ICD9CM_2010'), +('80.83', 'Other local excision or destruction of lesion of wrist joint', 'ICD9CM_2010'), +('80.84', 'Other local excision or destruction of lesion of joint of hand and finger', 'ICD9CM_2010'), +('80.85', 'Other local excision or destruction of lesion of hip joint', 'ICD9CM_2010'), +('80.86', 'Other local excision or destruction of lesion of knee joint', 'ICD9CM_2010'), +('80.87', 'Other local excision or destruction of lesion of ankle joint', 'ICD9CM_2010'), +('80.88', 'Other local excision or destruction of lesion of joint of foot and toe', 'ICD9CM_2010'), +('80.89', 'Other local excision or destruction of lesion of joint of other specified site', 'ICD9CM_2010'), +('80.9', 'Other excision of joint', 'ICD9CM_2010'), +('80.90', 'Other excision of joint, unspecified site', 'ICD9CM_2010'), +('80.91', 'Other excision of shoulder joint', 'ICD9CM_2010'), +('80.92', 'Other excision of elbow joint', 'ICD9CM_2010'), +('80.93', 'Other excision of wrist joint', 'ICD9CM_2010'), +('80.94', 'Other excision of joint of hand and finger', 'ICD9CM_2010'), +('80.95', 'Other excision of hip joint', 'ICD9CM_2010'), +('80.96', 'Other excision of knee joint', 'ICD9CM_2010'), +('80.97', 'Other excision of ankle joint', 'ICD9CM_2010'), +('80.98', 'Other excision of joint of foot and toe', 'ICD9CM_2010'), +('80.99', 'Other excision of joint of other specified site', 'ICD9CM_2010'), +('81', 'Repair and plastic operations on joint structures', 'ICD9CM_2010'), +('81.0', 'Spinal fusion', 'ICD9CM_2010'), +('81.00', 'Spinal fusion, not otherwise specified', 'ICD9CM_2010'), +('81.01', 'Atlas-axis spinal fusion', 'ICD9CM_2010'), +('81.02', 'Other cervical fusion, anterior technique', 'ICD9CM_2010'), +('81.03', 'Other cervical fusion, posterior technique', 'ICD9CM_2010'), +('81.04', 'Dorsal and dorsolumbar fusion, anterior technique', 'ICD9CM_2010'), +('81.05', 'Dorsal and dorsolumbar fusion, posterior technique', 'ICD9CM_2010'), +('81.06', 'Lumbar and lumbosacral fusion, anterior technique', 'ICD9CM_2010'), +('81.07', 'Lumbar and lumbosacral fusion, lateral transverse process technique', 'ICD9CM_2010'), +('81.08', 'Lumbar and lumbosacral fusion, posterior technique', 'ICD9CM_2010'), +('81.1', 'Arthrodesis and arthroereisis of foot and ankle', 'ICD9CM_2010'), +('81.11', 'Ankle fusion', 'ICD9CM_2010'), +('81.12', 'Triple arthrodesis', 'ICD9CM_2010'), +('81.13', 'Subtalar fusion', 'ICD9CM_2010'), +('81.14', 'Midtarsal fusion', 'ICD9CM_2010'), +('81.15', 'Tarsometatarsal fusion', 'ICD9CM_2010'), +('81.16', 'Metatarsophalangeal fusion', 'ICD9CM_2010'), +('81.17', 'Other fusion of foot', 'ICD9CM_2010'), +('81.18', 'Subtalar joint arthroereisis', 'ICD9CM_2010'), +('81.2', 'Arthrodesis of other joint', 'ICD9CM_2010'), +('81.20', 'Arthrodesis of unspecified joint', 'ICD9CM_2010'), +('81.21', 'Arthrodesis of hip', 'ICD9CM_2010'), +('81.22', 'Arthrodesis of knee', 'ICD9CM_2010'), +('81.23', 'Arthrodesis of shoulder', 'ICD9CM_2010'), +('81.24', 'Arthrodesis of elbow', 'ICD9CM_2010'), +('81.25', 'Carporadial fusion', 'ICD9CM_2010'), +('81.26', 'Metacarpocarpal fusion', 'ICD9CM_2010'), +('81.27', 'Metacarpophalangeal fusion', 'ICD9CM_2010'), +('81.28', 'Interphalangeal fusion', 'ICD9CM_2010'), +('81.29', 'Arthrodesis of other specified joint', 'ICD9CM_2010'), +('81.3', 'Rerfusion of spine', 'ICD9CM_2010'), +('81.30', 'Refusion of spine,not otherwise specified', 'ICD9CM_2010'), +('81.31', 'Refusion of atlas-axis spine', 'ICD9CM_2010'), +('81.32', 'Refuison of other cervical spine, anterior technique', 'ICD9CM_2010'), +('81.33', 'Refuison of other cervical spine, posterior technique', 'ICD9CM_2010'), +('81.34', 'Refuison of dorsal and dorolumbarspine, anterior technique', 'ICD9CM_2010'), +('81.35', 'Refuison of dorsal and dorolumbarspine, posterior technique', 'ICD9CM_2010'), +('81.36', 'Refuison of lumbar and lumbosacral spine, anterior technique', 'ICD9CM_2010'), +('81.37', 'Refuison of lumbar and lumbosacral spine, lateral transverse technique', 'ICD9CM_2010'), +('81.38', 'Refuison of lumbar and lumbosacral spine, posterior technique', 'ICD9CM_2010'), +('81.39', 'Refusion of spine, NEC', 'ICD9CM_2010'), +('81.4', 'Other repair of joint of lower extremity', 'ICD9CM_2010'), +('81.40', 'Repair of hip, not elsewhere classified', 'ICD9CM_2010'), +('81.42', 'Five-in-one repair of knee', 'ICD9CM_2010'), +('81.43', 'Triad knee repair', 'ICD9CM_2010'), +('81.44', 'Patellar stabilization', 'ICD9CM_2010'), +('81.45', 'Other repair of the cruciate ligaments', 'ICD9CM_2010'), +('81.46', 'Other repair of the collateral ligaments', 'ICD9CM_2010'), +('81.47', 'Other repair of knee', 'ICD9CM_2010'), +('81.49', 'Other repair of ankle', 'ICD9CM_2010'), +('81.5', 'Joint replacement of lower extremity', 'ICD9CM_2010'), +('81.51', 'Total hip replacement', 'ICD9CM_2010'), +('81.52', 'Partial hip replacement', 'ICD9CM_2010'), +('81.53', 'Revision of hip replacement, NEC', 'ICD9CM_2010'), +('81.54', 'Total knee replacement', 'ICD9CM_2010'), +('81.55', 'Revision of knee replacement, NEC', 'ICD9CM_2010'), +('81.56', 'Total ankle replacement', 'ICD9CM_2010'), +('81.57', 'Replacement of joint of foot and toe', 'ICD9CM_2010'), +('81.59', 'Revision of joint replacement of lower extremity, not elsewhere classified', 'ICD9CM_2010'), +('81.6', 'Other procedures on spine', 'ICD9CM_2010'), +('81.62', 'Fusion or refusion of 2-3 vertebrae', 'ICD9CM_2010'), +('81.63', 'Fusion or refusion of 4-8 vertebrae', 'ICD9CM_2010'), +('81.64', 'Fusion or refusion of 9 or more vertebrae', 'ICD9CM_2010'), +('81.65', 'Percutaneous vertebroplasty', 'ICD9CM_2010'), +('81.66', 'Percutaneous vertebral augmentation', 'ICD9CM_2010'), +('81.7', 'Arthroplasty and repair of hand, fingers, and wrist', 'ICD9CM_2010'), +('81.71', 'Arthroplasty of metacarpophalangeal and interphalangeal joint with implant', 'ICD9CM_2010'), +('81.72', 'Arthroplasty of metacarpophalangeal and interphalangeal joint without implant', 'ICD9CM_2010'), +('81.73', 'Total wrist replacement', 'ICD9CM_2010'), +('81.74', 'Arthroplasty of carpocarpal or carpometacarpal joint with implant', 'ICD9CM_2010'), +('81.75', 'Arthroplasty of carpocarpal or carpometacarpal joint without implant', 'ICD9CM_2010'), +('81.79', 'Other repair of hand, fingers, and wrist', 'ICD9CM_2010'), +('81.8', 'Arthroplasty and repair of shoulder and elbow', 'ICD9CM_2010'), +('81.80', 'Total shoulder replacement', 'ICD9CM_2010'), +('81.81', 'Partial shoulder replacement', 'ICD9CM_2010'), +('81.82', 'Repair of recurrent dislocation of shoulder', 'ICD9CM_2010'), +('81.83', 'Other repair of shoulder', 'ICD9CM_2010'), +('81.84', 'Total elbow replacement', 'ICD9CM_2010'), +('81.85', 'Other repair of elbow', 'ICD9CM_2010'), +('81.88', 'Reverse total shoulder replacement', 'ICD9CM_2010'), +('81.9', 'Other operations on joint structures', 'ICD9CM_2010'), +('81.91', 'Arthrocentesis', 'ICD9CM_2010'), +('81.92', 'Injection of therapeutic substance into joint or ligament', 'ICD9CM_2010'), +('81.93', 'Suture of capsule or ligament of upper extremity', 'ICD9CM_2010'), +('81.94', 'Suture of capsule or ligament of ankle and foot', 'ICD9CM_2010'), +('81.95', 'Suture of capsule or ligament of other lower extremity', 'ICD9CM_2010'), +('81.96', 'Other repair of joint', 'ICD9CM_2010'), +('81.97', 'Revision of joint replacement of upper extremity', 'ICD9CM_2010'), +('81.98', 'Other diagnostic procedures on joint structures', 'ICD9CM_2010'), +('81.99', 'Other operations on joint structures', 'ICD9CM_2010'), +('82', 'Operations on muscle, tendon, and fascia of hand', 'ICD9CM_2010'), +('82.0', 'Incision of muscle, tendon, fascia, and bursa of hand', 'ICD9CM_2010'), +('82.01', 'Exploration of tendon sheath of hand', 'ICD9CM_2010'), +('82.02', 'Myotomy of hand', 'ICD9CM_2010'), +('82.03', 'Bursotomy of hand', 'ICD9CM_2010'), +('82.04', 'Incision and drainage of palmar or thenar space', 'ICD9CM_2010'), +('82.09', 'Other incision of soft tissue of hand', 'ICD9CM_2010'), +('82.1', 'Division of muscle, tendon, and fascia of hand', 'ICD9CM_2010'), +('82.11', 'Tenotomy of hand', 'ICD9CM_2010'), +('82.12', 'Fasciotomy of hand', 'ICD9CM_2010'), +('82.19', 'Other division of soft tissue of hand', 'ICD9CM_2010'), +('82.2', 'Excision of lesion of muscle, tendon, and fascia of hand', 'ICD9CM_2010'), +('82.21', 'Excision of lesion of tendon sheath of hand', 'ICD9CM_2010'), +('82.22', 'Excision of lesion of muscle of hand', 'ICD9CM_2010'), +('82.29', 'Excision of other lesion of soft tissue of hand', 'ICD9CM_2010'), +('82.3', 'Other excision of soft tissue of hand', 'ICD9CM_2010'), +('82.31', 'Bursectomy of hand', 'ICD9CM_2010'), +('82.32', 'Excision of tendon of hand for graft', 'ICD9CM_2010'), +('82.33', 'Other tenonectomy of hand', 'ICD9CM_2010'), +('82.34', 'Excision of muscle or fascia of hand for graft', 'ICD9CM_2010'), +('82.35', 'Other fasciectomy of hand', 'ICD9CM_2010'), +('82.36', 'Other myectomy of hand', 'ICD9CM_2010'), +('82.39', 'Other excision of soft tissue of hand', 'ICD9CM_2010'), +('82.4', 'Suture of muscle, tendon, and fascia of hand', 'ICD9CM_2010'), +('82.41', 'Suture of tendon sheath of hand', 'ICD9CM_2010'), +('82.42', 'Delayed suture of flexor tendon of hand', 'ICD9CM_2010'), +('82.43', 'Delayed suture of other tendon of hand', 'ICD9CM_2010'), +('82.44', 'Other suture of flexor tendon of hand', 'ICD9CM_2010'), +('82.45', 'Other suture of other tendon of hand', 'ICD9CM_2010'), +('82.46', 'Suture of muscle or fascia of hand', 'ICD9CM_2010'), +('82.5', 'Transplantation of muscle and tendon of hand', 'ICD9CM_2010'), +('82.51', 'Advancement of tendon of hand', 'ICD9CM_2010'), +('82.52', 'Recession of tendon of hand', 'ICD9CM_2010'), +('82.53', 'Reattachment of tendon of hand', 'ICD9CM_2010'), +('82.54', 'Reattachment of muscle of hand', 'ICD9CM_2010'), +('82.55', 'Other change in muscle or tendon length of hand', 'ICD9CM_2010'), +('82.56', 'Other hand tendon transfer or transplantation', 'ICD9CM_2010'), +('82.57', 'Other hand tendon transposition', 'ICD9CM_2010'), +('82.58', 'Other hand muscle transfer or transplantation', 'ICD9CM_2010'), +('82.59', 'Other hand muscle transposition', 'ICD9CM_2010'), +('82.6', 'Reconstruction of thumb', 'ICD9CM_2010'), +('82.61', 'Pollicization operation carrying over nerves and blood supply', 'ICD9CM_2010'), +('82.69', 'Other reconstruction of thumb', 'ICD9CM_2010'), +('82.7', 'Plastic operation on hand with graft or implant', 'ICD9CM_2010'), +('82.71', 'Tendon pulley reconstruction', 'ICD9CM_2010'), +('82.72', 'Plastic operation on hand with graft of muscle or fascia', 'ICD9CM_2010'), +('82.79', 'Plastic operation on hand with other graft or implant', 'ICD9CM_2010'), +('82.8', 'Other plastic operations on hand', 'ICD9CM_2010'), +('82.81', 'Transfer of finger, except thumb', 'ICD9CM_2010'), +('82.82', 'Repair of cleft hand', 'ICD9CM_2010'), +('82.83', 'Repair of macrodactyly', 'ICD9CM_2010'), +('82.84', 'Repair of mallet finger', 'ICD9CM_2010'), +('82.85', 'Other tenodesis of hand', 'ICD9CM_2010'), +('82.86', 'Other tenoplasty of hand', 'ICD9CM_2010'), +('82.89', 'Other plastic operations on hand', 'ICD9CM_2010'), +('82.9', 'Other operations on muscle, tendon, and fascia of hand', 'ICD9CM_2010'), +('82.91', 'Lysis of adhesions of hand', 'ICD9CM_2010'), +('82.92', 'Aspiration of bursa of hand', 'ICD9CM_2010'), +('82.93', 'Aspiration of other soft tissue of hand', 'ICD9CM_2010'), +('82.94', 'Injection of therapeutic substance into bursa of hand', 'ICD9CM_2010'), +('82.95', 'Injection of therapeutic substance into tendon of hand', 'ICD9CM_2010'), +('82.96', 'Other injection of locally-acting therapeutic substance into soft ti', 'ICD9CM_2010'), +('82.99', 'Other operations on muscle, tendon, and fascia of hand', 'ICD9CM_2010'), +('83', 'Operations on muscle, tendon, fascia, and bursa, except hand', 'ICD9CM_2010'), +('83.0', 'Incision of muscle, tendon, fascia, and bursa', 'ICD9CM_2010'), +('83.01', 'Exploration of tendon sheath', 'ICD9CM_2010'), +('83.02', 'Myotomy', 'ICD9CM_2010'), +('83.03', 'Bursotomy', 'ICD9CM_2010'), +('83.09', 'Other incision of soft tissue', 'ICD9CM_2010'), +('83.1', 'Division of muscle, tendon, and fascia', 'ICD9CM_2010'), +('83.11', 'Achillotenotomy', 'ICD9CM_2010'), +('83.12', 'Adductor tenotomy of hip', 'ICD9CM_2010'), +('83.13', 'Other tenotomy', 'ICD9CM_2010'), +('83.14', 'Fasciotomy', 'ICD9CM_2010'), +('83.19', 'Other division of soft tissue', 'ICD9CM_2010'), +('83.2', 'Diagnostic procedures on muscle, tendon, fascia, and bursa, including that of hand', 'ICD9CM_2010'), +('83.21', 'Biopsy of soft tissue', 'ICD9CM_2010'), +('83.29', 'Other diagnostic procedures on muscle, tendon, fascia, and bursa, including that of hand', 'ICD9CM_2010'), +('83.3', 'Excision of lesion of muscle, tendon, fascia, and bursa', 'ICD9CM_2010'), +('83.31', 'Excision of lesion of tendon sheath', 'ICD9CM_2010'), +('83.32', 'Excision of lesion of muscle', 'ICD9CM_2010'), +('83.39', 'Excision of lesion of other soft tissue', 'ICD9CM_2010'), +('83.4', 'Other excision of muscle, tendon, and fascia', 'ICD9CM_2010'), +('83.41', 'Excision of tendon for graft', 'ICD9CM_2010'), +('83.42', 'Other tenonectomy', 'ICD9CM_2010'), +('83.43', 'Excision of muscle or fascia for graft', 'ICD9CM_2010'), +('83.44', 'Other fasciectomy', 'ICD9CM_2010'), +('83.45', 'Other myectomy', 'ICD9CM_2010'), +('83.49', 'Other excision of soft tissue', 'ICD9CM_2010'), +('83.5', 'Bursectomy', 'ICD9CM_2010'), +('83.6', 'Suture of muscle, tendon, and fascia', 'ICD9CM_2010'), +('83.61', 'Suture of tendon sheath', 'ICD9CM_2010'), +('83.62', 'Delayed suture of tendon', 'ICD9CM_2010'), +('83.63', 'Rotator cuff repair', 'ICD9CM_2010'), +('83.64', 'Other suture of tendon', 'ICD9CM_2010'), +('83.65', 'Other suture of muscle or fascia', 'ICD9CM_2010'), +('83.7', 'Reconstruction of muscle and tendon', 'ICD9CM_2010'), +('83.71', 'Advancement of tendon', 'ICD9CM_2010'), +('83.72', 'Recession of tendon', 'ICD9CM_2010'), +('83.73', 'Reattachment of tendon', 'ICD9CM_2010'), +('83.74', 'Reattachment of muscle', 'ICD9CM_2010'), +('83.75', 'Tendon transfer or transplantation', 'ICD9CM_2010'), +('83.76', 'Other tendon transposition', 'ICD9CM_2010'), +('83.77', 'Muscle transfer or transplantation', 'ICD9CM_2010'), +('83.79', 'Other muscle transposition', 'ICD9CM_2010'), +('83.8', 'Other plastic operations on muscle, tendon, and fascia', 'ICD9CM_2010'), +('83.81', 'Tendon graft', 'ICD9CM_2010'), +('83.82', 'Graft of muscle or fascia', 'ICD9CM_2010'), +('83.83', 'Tendon pulley reconstruction', 'ICD9CM_2010'), +('83.84', 'Release of clubfoot, not elsewhere classified', 'ICD9CM_2010'), +('83.85', 'Other change in muscle or tendon length', 'ICD9CM_2010'), +('83.86', 'Quadricepsplasty', 'ICD9CM_2010'), +('83.87', 'Other plastic operations on muscle', 'ICD9CM_2010'), +('83.88', 'Other plastic operations on tendon', 'ICD9CM_2010'), +('83.89', 'Other plastic operations on fascia', 'ICD9CM_2010'), +('83.9', 'Other operations on muscle, tendon, fascia, and bursa', 'ICD9CM_2010'), +('83.91', 'Lysis of adhesions of muscle, tendon, fascia, and bursa', 'ICD9CM_2010'), +('83.92', 'Insertion or replacement of skeletal muscle stimulator', 'ICD9CM_2010'), +('83.93', 'Removal of skeletal muscle stimulator', 'ICD9CM_2010'), +('83.94', 'Aspiration of bursa', 'ICD9CM_2010'), +('83.95', 'Aspiration of other soft tissue', 'ICD9CM_2010'), +('83.96', 'Injection of therapeutic substance into bursa', 'ICD9CM_2010'), +('83.97', 'Injection of therapeutic substance into tendon', 'ICD9CM_2010'), +('83.98', 'Injection of locally acting therapeutic substance into other soft tissue', 'ICD9CM_2010'), +('83.99', 'Other operations on muscle, tendon, fascia, and bursa', 'ICD9CM_2010'), +('84', 'Other procedures on musculoskeletal system', 'ICD9CM_2010'), +('84.0', 'Amputation of upper limb', 'ICD9CM_2010'), +('84.00', 'Upper limb amputation, not otherwise specified', 'ICD9CM_2010'), +('84.01', 'Amputation and disarticulation of finger', 'ICD9CM_2010'), +('84.02', 'Amputation and disarticulation of thumb', 'ICD9CM_2010'), +('84.03', 'Amputation through hand', 'ICD9CM_2010'), +('84.04', 'Disarticulation of wrist', 'ICD9CM_2010'), +('84.05', 'Amputation through forearm', 'ICD9CM_2010'), +('84.06', 'Disarticulation of elbow', 'ICD9CM_2010'), +('84.07', 'Amputation through humerus', 'ICD9CM_2010'), +('84.08', 'Disarticulation of shoulder', 'ICD9CM_2010'), +('84.09', 'Interthoracoscapular amputation', 'ICD9CM_2010'), +('84.1', 'Amputation of lower limb', 'ICD9CM_2010'), +('84.10', 'Lower limb amputation, not otherwise specified', 'ICD9CM_2010'), +('84.11', 'Amputation of toe', 'ICD9CM_2010'), +('84.12', 'Amputation through foot', 'ICD9CM_2010'), +('84.13', 'Disarticulation of ankle', 'ICD9CM_2010'), +('84.14', 'Amputation of ankle through malleoli of tibia and fibula', 'ICD9CM_2010'), +('84.15', 'Other amputation below knee', 'ICD9CM_2010'), +('84.16', 'Disarticulation of knee', 'ICD9CM_2010'), +('84.17', 'Amputation above knee', 'ICD9CM_2010'), +('84.18', 'Disarticulation of hip', 'ICD9CM_2010'), +('84.19', 'Abdominopelvic amputation', 'ICD9CM_2010'), +('84.2', 'Reattachment of extremity', 'ICD9CM_2010'), +('84.21', 'Thumb reattachment', 'ICD9CM_2010'), +('84.22', 'Finger reattachment', 'ICD9CM_2010'), +('84.23', 'Forearm, wrist, or hand reattachment', 'ICD9CM_2010'), +('84.24', 'Upper arm reattachment', 'ICD9CM_2010'), +('84.25', 'Toe reattachment', 'ICD9CM_2010'), +('84.26', 'Foot reattachment', 'ICD9CM_2010'), +('84.27', 'Lower leg or ankle reattachment', 'ICD9CM_2010'), +('84.28', 'Thigh reattachment', 'ICD9CM_2010'), +('84.29', 'Other reattachment of extremity', 'ICD9CM_2010'), +('84.3', 'Revision of amputation stump', 'ICD9CM_2010'), +('84.4', 'Implantation or fitting of prosthetic limb device', 'ICD9CM_2010'), +('84.40', 'Implantation or fitting of prosthetic limb device, not otherwise specified', 'ICD9CM_2010'), +('84.41', 'Fitting of prosthesis of upper arm and shoulder', 'ICD9CM_2010'), +('84.42', 'Fitting of prosthesis of lower arm and hand', 'ICD9CM_2010'), +('84.43', 'Fitting of prosthesis of arm, not otherwise specified', 'ICD9CM_2010'), +('84.44', 'Implantation of prosthetic device of arm', 'ICD9CM_2010'), +('84.45', 'Fitting of prosthesis above knee', 'ICD9CM_2010'), +('84.46', 'Fitting of prosthesis below knee', 'ICD9CM_2010'), +('84.47', 'Fitting of prosthesis of leg, not otherwise specified', 'ICD9CM_2010'), +('84.48', 'Implantation of prosthetic device of leg', 'ICD9CM_2010'), +('84.5', 'Implantation of other musculoskeletal devices and substance', 'ICD9CM_2010'), +('84.51', 'Insertion of interbody spinal fusion device', 'ICD9CM_2010'), +('84.52', 'Insertion of recombinant bone morphogenetic protein rhBMP', 'ICD9CM_2010'), +('84.53', 'Implantation of internal limb lengthening device with kinetic distraction', 'ICD9CM_2010'), +('84.54', 'Implantation of other internal limb lengthening device', 'ICD9CM_2010'), +('84.55', 'Insertion of bone void filler', 'ICD9CM_2010'), +('84.56', 'Insertion or replacement of (cement) spacer', 'ICD9CM_2010'), +('84.57', 'Removal of (cement) spacer', 'ICD9CM_2010'), +('84.59', 'Insertion of other spinal devices', 'ICD9CM_2010'), +('84.6', 'Replacement of spinal disc', 'ICD9CM_2010'), +('84.60', 'Insertion of spinal disc prosthesis, not otherwise specified', 'ICD9CM_2010'), +('84.61', 'Insertion of partial spinal disc prosthesis, cervical', 'ICD9CM_2010'), +('84.62', 'Insertion of total spinal disc prosthesis cervical', 'ICD9CM_2010'), +('84.63', 'Insertion of spinal disc prosthesis,thoracic', 'ICD9CM_2010'), +('84.64', 'Insertion of partial spinal disc prosthesis, lumbosacral', 'ICD9CM_2010'), +('84.65', 'Insertion of total spinal disc prosthesis,lumbosacral', 'ICD9CM_2010'), +('84.66', 'Revision or replacement of artificial spinal disc prosthesis ,cervical', 'ICD9CM_2010'), +('84.67', 'Revision or replacement of artificial spinal disc prosthesis , thoracic', 'ICD9CM_2010'), +('84.68', 'Revision or replacement of artificial spinal disc prosthesis, lumbosacral', 'ICD9CM_2010'), +('84.69', 'Revision or replacement of artificial spinal disc prosthesis, not otherwise specified', 'ICD9CM_2010'), +('84.7', 'Adjunct codes for external fixator device', 'ICD9CM_2010'), +('84.71', 'Application of external fixator device, monoplanar system', 'ICD9CM_2010'), +('84.72', 'Application of external fixator device, ring system', 'ICD9CM_2010'), +('84.73', 'Application of hybrid external fixator device', 'ICD9CM_2010'), +('84.8', 'Insertion, replacement and revision of posterior spinal motion preservation device (s)', 'ICD9CM_2010'), +('84.80', 'Insertion or replacement of interspinous process device (s)', 'ICD9CM_2010'), +('84.81', 'Revision of interspinous device (s)', 'ICD9CM_2010'), +('84.82', 'Insertion or replacement of pedicle-based dynamic stabilization (s)', 'ICD9CM_2010'), +('84.83', 'Revision of pedicle-based dynamic stabilization (s)', 'ICD9CM_2010'), +('84.84', 'Insertion or replacement of facet replacement device (s)', 'ICD9CM_2010'), +('84.85', 'Revision of facet replacement device (s)', 'ICD9CM_2010'), +('84.9', 'Other operations on musculoskeletal system', 'ICD9CM_2010'), +('84.91', 'Amputation, not otherwise specified', 'ICD9CM_2010'), +('84.92', 'Separation of equal conjoined twins', 'ICD9CM_2010'), +('84.93', 'Separation of unequal conjoined twins', 'ICD9CM_2010'), +('84.94', 'Insertion of sternal fixation device with rigid plates', 'ICD9CM_2010'), +('84.99', 'Other operations on musculoskeletal system', 'ICD9CM_2010'), +('85', 'Operations on the breast', 'ICD9CM_2010'), +('85.0', 'Mastotomy', 'ICD9CM_2010'), +('85.1', 'Diagnostic procedures on breast', 'ICD9CM_2010'), +('85.11', 'Closed (percutaneous) (needle) biopsy of breast', 'ICD9CM_2010'), +('85.12', 'Open biopsy of breast', 'ICD9CM_2010'), +('85.19', 'Other diagnostic procedures on breast', 'ICD9CM_2010'), +('85.2', 'Excision or destruction of breast tissue', 'ICD9CM_2010'), +('85.20', 'Excision or destruction of breast tissue, not otherwise specified', 'ICD9CM_2010'), +('85.21', 'Local excision of lesion of breast', 'ICD9CM_2010'), +('85.22', 'Resection of quadrant of breast', 'ICD9CM_2010'), +('85.23', 'Subtotal mastectomy', 'ICD9CM_2010'), +('85.24', 'Excision of ectopic breast tissue', 'ICD9CM_2010'), +('85.25', 'Excision of nipple', 'ICD9CM_2010'), +('85.3', 'Reduction mammoplasty and subcutaneous mammectomy', 'ICD9CM_2010'), +('85.31', 'Unilateral reduction mammoplasty', 'ICD9CM_2010'), +('85.32', 'Bilateral reduction mammoplasty', 'ICD9CM_2010'), +('85.33', 'Unilateral subcutaneous mammectomy with synchronous implant', 'ICD9CM_2010'), +('85.34', 'Other unilateral subcutaneous mammectomy', 'ICD9CM_2010'), +('85.35', 'Bilateral subcutaneous mammectomy with synchronous implant', 'ICD9CM_2010'), +('85.36', 'Other bilateral subcutaneous mammectomy', 'ICD9CM_2010'), +('85.4', 'Mastectomy', 'ICD9CM_2010'), +('85.41', 'Unilateral simple mastectomy', 'ICD9CM_2010'), +('85.42', 'Bilateral simple mastectomy', 'ICD9CM_2010'), +('85.43', 'Unilateral extended simple mastectomy', 'ICD9CM_2010'), +('85.44', 'Bilateral extended simple mastectomy', 'ICD9CM_2010'), +('85.45', 'Unilateral radical mastectomy', 'ICD9CM_2010'), +('85.46', 'Bilateral radical mastectomy', 'ICD9CM_2010'), +('85.47', 'Unilateral extended radical mastectomy', 'ICD9CM_2010'), +('85.48', 'Bilateral extended radical mastectomy', 'ICD9CM_2010'), +('85.5', 'Augmentation mammoplasty', 'ICD9CM_2010'), +('85.50', 'Augmentation mammoplasty, not otherwise specified', 'ICD9CM_2010'), +('85.51', 'Unilateral injection into breast for augmentation', 'ICD9CM_2010'), +('85.52', 'Bilateral injection into breast for augmentation', 'ICD9CM_2010'), +('85.53', 'Unilateral breast implant', 'ICD9CM_2010'), +('85.54', 'Bilateral breast implant', 'ICD9CM_2010'), +('85.55', 'Fat graft to breast', 'ICD9CM_2010'), +('85.6', 'Mastopexy', 'ICD9CM_2010'), +('85.7', 'Total reconstruction of breast', 'ICD9CM_2010'), +('85.70', 'Total reconstruction of breast, not otherwise specified', 'ICD9CM_2010'), +('85.71', 'Latissimus dorsi myocutaneous flap', 'ICD9CM_2010'), +('85.72', 'Transverse rectus abdominis myocutaneous (TRAM) flap, pedicled', 'ICD9CM_2010'), +('85.73', 'Transverse rectus abdominis myocutaneous (TRAM) flap,free', 'ICD9CM_2010'), +('85.74', 'Deep inferior epigastric artery perforatar (DIEP)', 'ICD9CM_2010'), +('85.75', 'Superficial inferior epigastric artery (SIEA) flap, free', 'ICD9CM_2010'), +('85.76', 'Gluteal artery perforator (GAP) flap, free', 'ICD9CM_2010'), +('85.79', 'Other total reconstruction of breast', 'ICD9CM_2010'), +('85.8', 'Other repair and plastic operations on breast', 'ICD9CM_2010'), +('85.81', 'Suture of laceration of breast', 'ICD9CM_2010'), +('85.82', 'Split-thickness graft to breast', 'ICD9CM_2010'), +('85.83', 'Full-thickness graft to breast', 'ICD9CM_2010'), +('85.84', 'Pedicle graft to breast', 'ICD9CM_2010'), +('85.85', 'Muscle flap graft to breast', 'ICD9CM_2010'), +('85.86', 'Transposition of nipple', 'ICD9CM_2010'), +('85.87', 'Other repair or reconstruction of nipple', 'ICD9CM_2010'), +('85.89', 'Other mammoplasty', 'ICD9CM_2010'), +('85.9', 'Other operations on the breast', 'ICD9CM_2010'), +('85.91', 'Aspiration of breast', 'ICD9CM_2010'), +('85.92', 'Injection of therapeutic agent into breast', 'ICD9CM_2010'), +('85.93', 'Revision of implant of breast', 'ICD9CM_2010'), +('85.94', 'Removal of implant of breast', 'ICD9CM_2010'), +('85.95', 'Insertion of breast tissue expander', 'ICD9CM_2010'), +('85.96', 'Removal of breast tissue expander (s)', 'ICD9CM_2010'), +('85.99', 'Other operations on the breast', 'ICD9CM_2010'), +('86', 'Operations on skin and subcutaneous tissue', 'ICD9CM_2010'), +('86.0', 'Incision of skin and subcutaneous tissue', 'ICD9CM_2010'), +('86.01', 'Aspiration of skin and subcutaneous tissue', 'ICD9CM_2010'), +('86.02', 'Injection or tattooing of skin lesion or defect', 'ICD9CM_2010'), +('86.03', 'Incision of pilonidal sinus or cyst', 'ICD9CM_2010'), +('86.04', 'Other incision with drainage of skin and subcutaneous tissue', 'ICD9CM_2010'), +('86.05', 'Incision with removal of foreign body from skin and subcutaneous tissue', 'ICD9CM_2010'), +('86.06', 'Insertion of totally implantable infusion pump', 'ICD9CM_2010'), +('86.07', 'Insertion of totally implantable vascular access device (vad)', 'ICD9CM_2010'), +('86.09', 'Other incision of skin and subcutaneous tissue', 'ICD9CM_2010'), +('86.1', 'Diagnostic procedures on skin and subcutaneous tissue', 'ICD9CM_2010'), +('86.11', 'Biopsy of skin and subcutaneous tissue', 'ICD9CM_2010'), +('86.19', 'Other diagnostic procedures on skin and subcutaneous tissue', 'ICD9CM_2010'), +('86.2', 'Excision or destruction of lesion or tissue of skin and subcutaneous', 'ICD9CM_2010'), +('86.21', 'Excision of pilonidal cyst or sinus', 'ICD9CM_2010'), +('86.22', 'Excisional debridement of wound, infection, or burn', 'ICD9CM_2010'), +('86.23', 'Removal of nail, nailbed, or nail fold', 'ICD9CM_2010'), +('86.24', 'Chemosurgery of skin', 'ICD9CM_2010'), +('86.25', 'Dermabrasion', 'ICD9CM_2010'), +('86.26', 'Ligation of dermal appendage', 'ICD9CM_2010'), +('86.27', 'Debridement of nail, nail bed, or nail fold', 'ICD9CM_2010'), +('86.28', 'Nonexcisional debridement of wound, infection, or burn', 'ICD9CM_2010'), +('86.3', 'Other local excision or destruction of lesion or tissue of skin and', 'ICD9CM_2010'), +('86.4', 'Radical excision of skin lesion', 'ICD9CM_2010'), +('86.5', 'Suture of skin and subcutaneous tissue', 'ICD9CM_2010'), +('86.51', 'Replantation of scalp', 'ICD9CM_2010'), +('86.59', 'Suture of skin and subcutaneous tissue of other sites', 'ICD9CM_2010'), +('86.6', 'Free skin graft', 'ICD9CM_2010'), +('86.60', 'Free skin graft, not otherwise specified', 'ICD9CM_2010'), +('86.61', 'Full-thickness skin graft to hand', 'ICD9CM_2010'), +('86.62', 'Other skin graft to hand', 'ICD9CM_2010'), +('86.63', 'Full-thickness skin graft to other sites', 'ICD9CM_2010'), +('86.64', 'Hair transplant', 'ICD9CM_2010'), +('86.65', 'Heterograft to skin', 'ICD9CM_2010'), +('86.66', 'Homograft to skin', 'ICD9CM_2010'), +('86.67', 'Dermal regenerative graft', 'ICD9CM_2010'), +('86.69', 'Other skin graft to other sites', 'ICD9CM_2010'), +('86.7', 'Pedicle grafts or flaps', 'ICD9CM_2010'), +('86.70', 'Pedicle or flap graft, not otherwise specified', 'ICD9CM_2010'), +('86.71', 'Cutting and preparation of pedicle grafts or flaps', 'ICD9CM_2010'), +('86.72', 'Advancement of pedicle graft', 'ICD9CM_2010'), +('86.73', 'Attachment of pedicle or flap graft to hand', 'ICD9CM_2010'), +('86.74', 'Attachment of pedicle or flap graft to other sites', 'ICD9CM_2010'), +('86.75', 'Revision of pedicle or flap graft', 'ICD9CM_2010'), +('86.8', 'Other repair and reconstruction of skin and subcutaneous tissue', 'ICD9CM_2010'), +('86.81', 'Repair for facial weakness', 'ICD9CM_2010'), +('86.82', 'Facial rhytidectomy', 'ICD9CM_2010'), +('86.83', 'Size reduction plastic operation', 'ICD9CM_2010'), +('86.84', 'Relaxation of scar or web contracture of skin', 'ICD9CM_2010'), +('86.85', 'Correction of syndactyly', 'ICD9CM_2010'), +('86.86', 'Onychoplasty', 'ICD9CM_2010'), +('86.87', 'Fat graft of skin and subcutaneous tissue', 'ICD9CM_2010'), +('86.89', 'Other repair and reconstruction of skin and subcutaneous tissue', 'ICD9CM_2010'), +('86.9', 'Other operations on skin and subcutaneous tissue', 'ICD9CM_2010'), +('86.90', 'Extraction of fat for graft or banking', 'ICD9CM_2010'), +('86.91', 'Excision of skin for graft', 'ICD9CM_2010'), +('86.92', 'Electrolysis and other epilation of skin', 'ICD9CM_2010'), +('86.93', 'Insertion of tissue expander', 'ICD9CM_2010'), +('86.94', 'Insertion or replacement of singer array neurostimulator pulse generator, not specified as rechargeable', 'ICD9CM_2010'), +('86.95', 'Insertion or replacement of dual array neurostimulator pulse generator, not specified as rechargeable', 'ICD9CM_2010'), +('86.96', 'Insertion or replacement of other neurostimulator pulse generator', 'ICD9CM_2010'), +('86.97', 'Insertion or replacement of singer array rechargeable neurostimulator pulse generator', 'ICD9CM_2010'), +('86.98', 'Insertion or replacement of dual array rechargeable neurostimulator pulse generator', 'ICD9CM_2010'), +('86.99', 'Other operations on skin and subcutaneous tissue', 'ICD9CM_2010'), +('87', 'Diagnostic radiology', 'ICD9CM_2010'), +('87.0', 'Soft tissue x-ray of face, head, and neck', 'ICD9CM_2010'), +('87.01', 'Pneumoencephalogram', 'ICD9CM_2010'), +('87.02', 'Other contrast radiogram of brain and skull', 'ICD9CM_2010'), +('87.03', 'Computerized axial tomography of head', 'ICD9CM_2010'), +('87.04', 'Other tomography of head', 'ICD9CM_2010'), +('87.05', 'Contrast dacryocystogram', 'ICD9CM_2010'), +('87.06', 'Contrast radiogram of nasopharynx', 'ICD9CM_2010'), +('87.07', 'Contrast laryngogram', 'ICD9CM_2010'), +('87.08', 'Cervical lymphangiogram', 'ICD9CM_2010'), +('87.09', 'Other soft tissue x-ray of face, head, and neck', 'ICD9CM_2010'), +('87.1', 'Other x-ray of face, head, and neck', 'ICD9CM_2010'), +('87.11', 'Full-mouth x-ray of teeth', 'ICD9CM_2010'), +('87.12', 'Other dental x-ray', 'ICD9CM_2010'), +('87.13', 'Temporomandibular contrast arthrogram', 'ICD9CM_2010'), +('87.14', 'Contrast radiogram of orbit', 'ICD9CM_2010'), +('87.15', 'Contrast radiogram of sinus', 'ICD9CM_2010'), +('87.16', 'Other x-ray of facial bones', 'ICD9CM_2010'), +('87.17', 'Other x-ray of skull', 'ICD9CM_2010'), +('87.2', 'X-ray of spine', 'ICD9CM_2010'), +('87.21', 'Contrast myelogram', 'ICD9CM_2010'); +INSERT INTO `icd9` (`ID_ICD9`, `Prosedur`, `Versi_ICD9`) VALUES +('87.22', 'Other x-ray of cervical spine', 'ICD9CM_2010'), +('87.23', 'Other x-ray of thoracic spine', 'ICD9CM_2010'), +('87.24', 'Other x-ray of lumbosacral spine', 'ICD9CM_2010'), +('87.29', 'Other x-ray of spine', 'ICD9CM_2010'), +('87.3', 'Soft tissue x-ray of thorax', 'ICD9CM_2010'), +('87.31', 'Endotracheal bronchogram', 'ICD9CM_2010'), +('87.32', 'Other contrast bronchogram', 'ICD9CM_2010'), +('87.33', 'Mediastinal pneumogram', 'ICD9CM_2010'), +('87.34', 'Intrathoracic lymphangiogram', 'ICD9CM_2010'), +('87.35', 'Contrast radiogram of mammary ducts', 'ICD9CM_2010'), +('87.36', 'Xerography of breast', 'ICD9CM_2010'), +('87.37', 'Other mammography', 'ICD9CM_2010'), +('87.38', 'Sinogram of chest wall', 'ICD9CM_2010'), +('87.39', 'Other soft tissue x-ray of chest wall', 'ICD9CM_2010'), +('87.4', 'Other x-ray of thorax', 'ICD9CM_2010'), +('87.41', 'Computerized axial tomography of thorax', 'ICD9CM_2010'), +('87.42', 'Other tomography of thorax', 'ICD9CM_2010'), +('87.43', 'X-ray of ribs, sternum, and clavicle', 'ICD9CM_2010'), +('87.44', 'Routine chest x-ray, so described', 'ICD9CM_2010'), +('87.49', 'Other chest x-ray', 'ICD9CM_2010'), +('87.5', 'Biliary tract x-ray', 'ICD9CM_2010'), +('87.51', 'Percutaneous hepatic cholangiogram', 'ICD9CM_2010'), +('87.52', 'Intravenous cholangiogram', 'ICD9CM_2010'), +('87.53', 'Intraoperative cholangiogram', 'ICD9CM_2010'), +('87.54', 'Other cholangiogram', 'ICD9CM_2010'), +('87.59', 'Other biliary tract x-ray', 'ICD9CM_2010'), +('87.6', 'Other x-ray of digestive system', 'ICD9CM_2010'), +('87.61', 'Barium swallow', 'ICD9CM_2010'), +('87.62', 'Upper gi series', 'ICD9CM_2010'), +('87.63', 'Small bowel series', 'ICD9CM_2010'), +('87.64', 'Lower gi series', 'ICD9CM_2010'), +('87.65', 'Other x-ray of intestine', 'ICD9CM_2010'), +('87.66', 'Contrast pancreatogram', 'ICD9CM_2010'), +('87.69', 'Other digestive tract x-ray', 'ICD9CM_2010'), +('87.7', 'X-ray of urinary system', 'ICD9CM_2010'), +('87.71', 'Computerized axial tomography of kidney', 'ICD9CM_2010'), +('87.72', 'Other nephrotomogram', 'ICD9CM_2010'), +('87.73', 'Intravenous pyelogram', 'ICD9CM_2010'), +('87.74', 'Retrograde pyelogram', 'ICD9CM_2010'), +('87.75', 'Percutaneous pyelogram', 'ICD9CM_2010'), +('87.76', 'Retrograde cystourethrogram', 'ICD9CM_2010'), +('87.77', 'Other cystogram', 'ICD9CM_2010'), +('87.78', 'Ileal conduitogram', 'ICD9CM_2010'), +('87.79', 'Other x-ray of the urinary system', 'ICD9CM_2010'), +('87.8', 'X-ray of female genital organs', 'ICD9CM_2010'), +('87.81', 'X-ray of gravid uterus', 'ICD9CM_2010'), +('87.82', 'Gas contrast hysterosalpingogram', 'ICD9CM_2010'), +('87.83', 'Opaque dye contrast hysterosalpingogram', 'ICD9CM_2010'), +('87.84', 'Percutaneous hysterogram', 'ICD9CM_2010'), +('87.85', 'Other x-ray of fallopian tubes and uterus', 'ICD9CM_2010'), +('87.89', 'Other x-ray of female genital organs', 'ICD9CM_2010'), +('87.9', 'X-ray of male genital organs', 'ICD9CM_2010'), +('87.91', 'Contrast seminal vesiculogram', 'ICD9CM_2010'), +('87.92', 'Other x-ray of prostate and seminal vesicles', 'ICD9CM_2010'), +('87.93', 'Contrast epididymogram', 'ICD9CM_2010'), +('87.94', 'Contrast vasogram', 'ICD9CM_2010'), +('87.95', 'Other x-ray of epididymis and vas deferens', 'ICD9CM_2010'), +('87.99', 'Other x-ray of male genital organs', 'ICD9CM_2010'), +('88', 'Other diagnostic radiology and related techniques', 'ICD9CM_2010'), +('88.0', 'Soft tissue x-ray of abdomen', 'ICD9CM_2010'), +('88.01', 'Computerized axial tomography of abdomen', 'ICD9CM_2010'), +('88.02', 'Other abdomen tomography', 'ICD9CM_2010'), +('88.03', 'Sinogram of abdominal wall', 'ICD9CM_2010'), +('88.04', 'Abdominal lymphangiogram', 'ICD9CM_2010'), +('88.09', 'Other soft tissue x-ray of abdominal wall', 'ICD9CM_2010'), +('88.1', 'Other x-ray of abdomen', 'ICD9CM_2010'), +('88.11', 'Pelvic opaque dye contrast radiography', 'ICD9CM_2010'), +('88.12', 'Pelvic gas contrast radiography', 'ICD9CM_2010'), +('88.13', 'Other peritoneal pneumogram', 'ICD9CM_2010'), +('88.14', 'Retroperitoneal fistulogram', 'ICD9CM_2010'), +('88.15', 'Retroperitoneal pneumogram', 'ICD9CM_2010'), +('88.16', 'Other retroperitoneal x-ray', 'ICD9CM_2010'), +('88.19', 'Other x-ray of abdomen', 'ICD9CM_2010'), +('88.2', 'Skeletal x-ray of extremities and pelvis', 'ICD9CM_2010'), +('88.21', 'Skeletal x-ray of shoulder and upper arm', 'ICD9CM_2010'), +('88.22', 'Skeletal x-ray of elbow and forearm', 'ICD9CM_2010'), +('88.23', 'Skeletal x-ray of wrist and hand', 'ICD9CM_2010'), +('88.24', 'Skeletal x-ray of upper limb, not otherwise specified', 'ICD9CM_2010'), +('88.25', 'Pelvimetry', 'ICD9CM_2010'), +('88.26', 'Other skeletal x-ray of pelvis and hip', 'ICD9CM_2010'), +('88.27', 'Skeletal x-ray of thigh, knee, and lower leg', 'ICD9CM_2010'), +('88.28', 'Skeletal x-ray of ankle and foot', 'ICD9CM_2010'), +('88.29', 'Skeletal x-ray of lower limb, not otherwise specified', 'ICD9CM_2010'), +('88.3', 'Other x-ray', 'ICD9CM_2010'), +('88.31', 'Skeletal series', 'ICD9CM_2010'), +('88.32', 'Contrast arthrogram', 'ICD9CM_2010'), +('88.33', 'Other skeletal x-ray', 'ICD9CM_2010'), +('88.34', 'Lymphangiogram of upper limb', 'ICD9CM_2010'), +('88.35', 'Other soft tissue x-ray of upper limb', 'ICD9CM_2010'), +('88.36', 'Lymphangiogram of lower limb', 'ICD9CM_2010'), +('88.37', 'Other soft tissue x-ray of lower limb', 'ICD9CM_2010'), +('88.38', 'Other computerized axial tomography', 'ICD9CM_2010'), +('88.39', 'X-ray, other and unspecified', 'ICD9CM_2010'), +('88.4', 'Arteriography using contrast material', 'ICD9CM_2010'), +('88.40', 'Arteriography using contrast material, unspecified site', 'ICD9CM_2010'), +('88.41', 'Arteriography of cerebral arteries', 'ICD9CM_2010'), +('88.42', 'Aortography', 'ICD9CM_2010'), +('88.43', 'Arteriography of pulmonary arteries', 'ICD9CM_2010'), +('88.44', 'Arteriography of other intrathoracic vessels', 'ICD9CM_2010'), +('88.45', 'Arteriography of renal arteries', 'ICD9CM_2010'), +('88.46', 'Arteriography of placenta', 'ICD9CM_2010'), +('88.47', 'Arteriography of other intra-abdominal arteries', 'ICD9CM_2010'), +('88.48', 'Arteriography of femoral and other lower extremity arteries', 'ICD9CM_2010'), +('88.49', 'Arteriography of other specified sites', 'ICD9CM_2010'), +('88.5', 'Angiocardiography using contrast material', 'ICD9CM_2010'), +('88.50', 'Angiocardiography, not otherwise specified', 'ICD9CM_2010'), +('88.51', 'Angiocardiography of venae cavae', 'ICD9CM_2010'), +('88.52', 'Angiocardiography of right heart structures', 'ICD9CM_2010'), +('88.53', 'Angiocardiography of left heart structures', 'ICD9CM_2010'), +('88.54', 'Combined right and left heart angiocardiography', 'ICD9CM_2010'), +('88.55', 'Coronary arteriography using a single catheter', 'ICD9CM_2010'), +('88.56', 'Coronary arteriography using two catheters', 'ICD9CM_2010'), +('88.57', 'Other and unspecified coronary arteriography', 'ICD9CM_2010'), +('88.58', 'Negative-contrast cardiac roentgenography', 'ICD9CM_2010'), +('88.59', 'Intra-operative fluorescence vascular angiography', 'ICD9CM_2010'), +('88.6', 'Phlebography', 'ICD9CM_2010'), +('88.60', 'Phlebography using contrast material, unspecified site', 'ICD9CM_2010'), +('88.61', 'Phlebography of veins of head and neck using contrast material', 'ICD9CM_2010'), +('88.62', 'Phlebography of pulmonary veins using contrast material', 'ICD9CM_2010'), +('88.63', 'Phlebography of other intrathoracic veins using contrast material', 'ICD9CM_2010'), +('88.64', 'Phlebography of the portal venous system using contrast material', 'ICD9CM_2010'), +('88.65', 'Phlebography of other intra-abdominal veins using contrast material', 'ICD9CM_2010'), +('88.66', 'Phlebography of femoral and other lower extremity veins using contra', 'ICD9CM_2010'), +('88.67', 'Phlebography of other specified sites using contrast material', 'ICD9CM_2010'), +('88.68', 'Impedance phlebography', 'ICD9CM_2010'), +('88.7', 'Diagnostic ultrasound', 'ICD9CM_2010'), +('88.71', 'Diagnostic ultrasound of head and neck', 'ICD9CM_2010'), +('88.72', 'Diagnostic ultrasound of heart', 'ICD9CM_2010'), +('88.73', 'Diagnostic ultrasound of other sites of thorax', 'ICD9CM_2010'), +('88.74', 'Diagnostic ultrasound of digestive system', 'ICD9CM_2010'), +('88.75', 'Diagnostic ultrasound of urinary system', 'ICD9CM_2010'), +('88.76', 'Diagnostic ultrasound of abdomen and retroperitoneum', 'ICD9CM_2010'), +('88.77', 'Diagnostic ultrasound of peripheral vascular system', 'ICD9CM_2010'), +('88.78', 'Diagnostic ultrasound of gravid uterus', 'ICD9CM_2010'), +('88.79', 'Other diagnostic ultrasound', 'ICD9CM_2010'), +('88.8', 'Thermography', 'ICD9CM_2010'), +('88.81', 'Cerebral thermography', 'ICD9CM_2010'), +('88.82', 'Ocular thermography', 'ICD9CM_2010'), +('88.83', 'Bone thermography', 'ICD9CM_2010'), +('88.84', 'Muscle thermography', 'ICD9CM_2010'), +('88.85', 'Breast thermography', 'ICD9CM_2010'), +('88.86', 'Blood vessel thermography', 'ICD9CM_2010'), +('88.89', 'Thermography of other sites', 'ICD9CM_2010'), +('88.9', 'Other diagnostic imaging', 'ICD9CM_2010'), +('88.90', 'Diagnostic imaging, not elsewhere classified', 'ICD9CM_2010'), +('88.91', 'Magnetic resonance imaging of brain and brain stem', 'ICD9CM_2010'), +('88.92', 'Magnetic resonance imaging of chest and myocardium for evaluation of', 'ICD9CM_2010'), +('88.93', 'Magnetic resonance imaging of spinal canal', 'ICD9CM_2010'), +('88.94', 'Magnetic resonance imaging of musculoskeletal', 'ICD9CM_2010'), +('88.95', 'Magnetic resonance imaging of pelvis, prostate, and bladder', 'ICD9CM_2010'), +('88.96', 'Other intraoperative magnetic resonance imaging', 'ICD9CM_2010'), +('88.97', 'Magnetic resonance imaging of other and unspecified sites', 'ICD9CM_2010'), +('88.98', 'Bone mineral density studies', 'ICD9CM_2010'), +('89', 'Interview, evaluation, consultation, and examination', 'ICD9CM_2010'), +('89.0', 'Diagnostic interview, consultation, and evaluation', 'ICD9CM_2010'), +('89.01', 'Interview and evaluation, described as brief', 'ICD9CM_2010'), +('89.02', 'Interview and evaluation, described as limited', 'ICD9CM_2010'), +('89.03', 'Interview and evaluation, described as comprehensive', 'ICD9CM_2010'), +('89.04', 'Other interview and evaluation', 'ICD9CM_2010'), +('89.05', 'Diagnostic interview and evaluation, not otherwise specified', 'ICD9CM_2010'), +('89.06', 'Consultation, described as limited', 'ICD9CM_2010'), +('89.07', 'Consultation, described as comprehensive', 'ICD9CM_2010'), +('89.08', 'Other consultation', 'ICD9CM_2010'), +('89.09', 'Consultation, not otherwise specified', 'ICD9CM_2010'), +('89.1', 'Anatomic and physiologic measurements and manual examinations - nervous system and sense organs', 'ICD9CM_2010'), +('89.10', 'Intracarotid amobarbitral test', 'ICD9CM_2010'), +('89.11', 'Tonometry', 'ICD9CM_2010'), +('89.12', 'Nasal function study', 'ICD9CM_2010'), +('89.13', 'Neurologic examination', 'ICD9CM_2010'), +('89.14', 'Electroencephalogram', 'ICD9CM_2010'), +('89.15', 'Other nonoperative neurologic function tests', 'ICD9CM_2010'), +('89.16', 'Transillumination of newborn skull', 'ICD9CM_2010'), +('89.17', 'Polysomnogram', 'ICD9CM_2010'), +('89.18', 'Other sleep disorder function tests', 'ICD9CM_2010'), +('89.19', 'Video and radio-telemetered electroencephalographic monitoring', 'ICD9CM_2010'), +('89.2', 'Anatomic and physiologic measurements and manual examinations - genitourinary system', 'ICD9CM_2010'), +('89.21', 'Urinary manometry', 'ICD9CM_2010'), +('89.22', 'Cystometrogram', 'ICD9CM_2010'), +('89.23', 'Urethral sphincter electromyogram', 'ICD9CM_2010'), +('89.24', 'Uroflowmetry (UFR)', 'ICD9CM_2010'), +('89.25', 'Urethral pressure profile (UPP)', 'ICD9CM_2010'), +('89.26', 'Gynecological examination', 'ICD9CM_2010'), +('89.29', 'Other nonoperative genitourinary system measurements', 'ICD9CM_2010'), +('89.3', 'Other anatomic and physiologic measurements and manual examinations', 'ICD9CM_2010'), +('89.31', 'Dental examination', 'ICD9CM_2010'), +('89.32', 'Esophageal manometry', 'ICD9CM_2010'), +('89.33', 'Digital examination of enterostomy stoma', 'ICD9CM_2010'), +('89.34', 'Digital examination of rectum', 'ICD9CM_2010'), +('89.35', 'Transillumination of nasal sinuses', 'ICD9CM_2010'), +('89.36', 'Manual examination of breast', 'ICD9CM_2010'), +('89.37', 'Vital capacity determination', 'ICD9CM_2010'), +('89.38', 'Other nonoperative respiratory measurements', 'ICD9CM_2010'), +('89.39', 'Other nonoperative measurements and examinations', 'ICD9CM_2010'), +('89.4', 'Cardiac stress tests, pacemaker and defibrillator checks', 'ICD9CM_2010'), +('89.41', 'Cardiovascular stress test using treadmill', 'ICD9CM_2010'), +('89.42', 'Masters\' two-step stress test', 'ICD9CM_2010'), +('89.43', 'Cardiovascular stress test using bicycle ergometer', 'ICD9CM_2010'), +('89.44', 'Other cardiovascular stress test', 'ICD9CM_2010'), +('89.45', 'Artificial pacemaker rate check', 'ICD9CM_2010'), +('89.46', 'Artificial pacemaker artifact wave form check', 'ICD9CM_2010'), +('89.47', 'Artificial pacemaker electrode impedance check', 'ICD9CM_2010'), +('89.48', 'Artificial pacemaker voltage or amperage threshold check', 'ICD9CM_2010'), +('89.49', 'Automatic implantable cardioverter / defibrillator (AICD) check', 'ICD9CM_2010'), +('89.5', 'Other nonoperative cardiac and vascular diagnostic procedures', 'ICD9CM_2010'), +('89.50', 'Ambulatory cardiac monitoring', 'ICD9CM_2010'), +('89.51', 'Rhythm electrocardiogram', 'ICD9CM_2010'), +('89.52', 'Electrocardiogram', 'ICD9CM_2010'), +('89.53', 'Vectorcardiogram (with ecg)', 'ICD9CM_2010'), +('89.54', 'Electrographic monitoring', 'ICD9CM_2010'), +('89.55', 'Phonocardiogram with ECG lead', 'ICD9CM_2010'), +('89.56', 'Carotid pulse tracing with ECG lead', 'ICD9CM_2010'), +('89.57', 'Apexcardiogram (with ECG lead)', 'ICD9CM_2010'), +('89.58', 'Plethysmogram', 'ICD9CM_2010'), +('89.59', 'Other nonoperative cardiac and vascular measurements', 'ICD9CM_2010'), +('89.6', 'Circulatory monitoring', 'ICD9CM_2010'), +('89.60', 'Continuous intra-arterial blood gas monitoring', 'ICD9CM_2010'), +('89.61', 'Systemic arterial pressure monitoring', 'ICD9CM_2010'), +('89.62', 'Central venous pressure monitoring', 'ICD9CM_2010'), +('89.63', 'Pulmonary artery pressure monitoring', 'ICD9CM_2010'), +('89.64', 'Pulmonary artery wedge monitoring', 'ICD9CM_2010'), +('89.65', 'Measurement of systemic arterial blood gases', 'ICD9CM_2010'), +('89.66', 'Measurement of mixed venous blood gases', 'ICD9CM_2010'), +('89.67', 'Monitoring of cardiac output by oxygen consumption technique', 'ICD9CM_2010'), +('89.68', 'Monitoring of cardiac output by other technique', 'ICD9CM_2010'), +('89.69', 'Monitoring of coronary blood flow', 'ICD9CM_2010'), +('89.7', 'General physical examination', 'ICD9CM_2010'), +('89.8', 'Autopsy', 'ICD9CM_2010'), +('90', 'Microscopic examination - I', 'ICD9CM_2010'), +('90.0', 'Microscopic examination of specimen from nervous system and of spina fluid', 'ICD9CM_2010'), +('90.01', 'Microscopic examination of specimen from nervous system and of spina fluid,Bacterial smear', 'ICD9CM_2010'), +('90.02', 'Microscopic examination of specimen from nervous system and of spina fluid, Culture', 'ICD9CM_2010'), +('90.03', 'Microscopic examination of specimen from nervous system and of spina fluid, Culture and sensitivity', 'ICD9CM_2010'), +('90.04', 'Microscopic examination of specimen from nervous system and of spina fluid, Parasitology', 'ICD9CM_2010'), +('90.05', 'Microscopic examination of specimen from nervous system and of spina fluid, Toxicology', 'ICD9CM_2010'), +('90.06', 'Microscopic examination of specimen from nervous system and of spina fluid, Cell block and papanicolaou smear', 'ICD9CM_2010'), +('90.09', 'Microscopic examination of specimen from nervous system and of spina fluid, Other microscopic examination', 'ICD9CM_2010'), +('90.1', 'Microscopic examination of specimen from endocrine gland, not elsewhere classified', 'ICD9CM_2010'), +('90.11', 'Microscopic examination of specimen from endocrine gland, not elsewhere classified, Bacterial smear', 'ICD9CM_2010'), +('90.12', 'Microscopic examination of specimen from endocrine gland, not elsewhere classified, Culture', 'ICD9CM_2010'), +('90.13', 'Microscopic examination of specimen from endocrine gland, not elsewhere classified, Culture and sensitivity', 'ICD9CM_2010'), +('90.14', 'Microscopic examination of specimen from endocrine gland, not elsewhere classified, Parasitology', 'ICD9CM_2010'), +('90.15', 'Microscopic examination of specimen from endocrine gland, not elsewhere classified, Toxicology', 'ICD9CM_2010'), +('90.16', 'Microscopic examination of specimen from endocrine gland, not elsewhere classified, Cell block and papanicolaou smear', 'ICD9CM_2010'), +('90.19', 'Microscopic examination of specimen from endocrine gland, not elsewhere classified, Other microscopic examination', 'ICD9CM_2010'), +('90.2', 'Microscopic examination of specimen from eye', 'ICD9CM_2010'), +('90.21', 'Microscopic examination of specimen from eye, Bacterial smear', 'ICD9CM_2010'), +('90.22', 'Microscopic examination of specimen from eye, Culture', 'ICD9CM_2010'), +('90.23', 'Microscopic examination of specimen from eye, Culture and sensitivity', 'ICD9CM_2010'), +('90.24', 'Microscopic examination of specimen from eye, Parasitology', 'ICD9CM_2010'), +('90.25', 'Microscopic examination of specimen from eye, Toxicology', 'ICD9CM_2010'), +('90.26', 'Microscopic examination of specimen from eye, Cell block and papanicolaou smear', 'ICD9CM_2010'), +('90.29', 'Microscopic examination of specimen from eye, Other microscopic examination', 'ICD9CM_2010'), +('90.3', 'Microscopic examination of specimen from ear, nose, throat, and larynx', 'ICD9CM_2010'), +('90.31', 'Microscopic examination of specimen from ear, nose, throat, and larynx, Bacterial smear', 'ICD9CM_2010'), +('90.32', 'Microscopic examination of specimen from ear, nose, throat, and larynx, Culture', 'ICD9CM_2010'), +('90.33', 'Microscopic examination of specimen from ear, nose, throat, and larynx, Culture and sensitivity', 'ICD9CM_2010'), +('90.34', 'Microscopic examination of specimen from ear, nose, throat, and larynx, Parasitology', 'ICD9CM_2010'), +('90.35', 'Microscopic examination of specimen from ear, nose, throat, and larynx, Toxicology', 'ICD9CM_2010'), +('90.36', 'Microscopic examination of specimen from ear, nose, throat, and larynx, Cell block and papanicolaou smear', 'ICD9CM_2010'), +('90.39', 'Microscopic examination of specimen from ear, nose, throat, and larynx, Other microscopic examination', 'ICD9CM_2010'), +('90.4', 'Microscopic examination of specimen from trachea, bronchus, pleura,lung,and other thoracic specimen, and of sputum', 'ICD9CM_2010'), +('90.41', 'Microscopic examination of specimen from trachea, bronchus, pleura,lung,and other thoracic specimen, and of sputum, Bacterial smear', 'ICD9CM_2010'), +('90.42', 'Microscopic examination of specimen from trachea, bronchus, pleura,lung,and other thoracic specimen, and of sputum, Culture', 'ICD9CM_2010'), +('90.43', 'Microscopic examination of specimen from trachea, bronchus, pleura,lung,and other thoracic specimen, and of sputum, Culture and sensitivity', 'ICD9CM_2010'), +('90.44', 'Microscopic examination of specimen from trachea, bronchus, pleura,lung,and other thoracic specimen, and of sputum, Parasitology', 'ICD9CM_2010'), +('90.45', 'Microscopic examination of specimen from trachea, bronchus, pleura,lung,and other thoracic specimen, and of sputum, Toxicology', 'ICD9CM_2010'), +('90.46', 'Microscopic examination of specimen from trachea, bronchus, pleura,lung,and other thoracic specimen, and of sputum, Cell block and papanicolaou smear', 'ICD9CM_2010'), +('90.49', 'Microscopic examination of specimen from trachea, bronchus, pleura,lung,and other thoracic specimen, and of sputum, Other microscopic examination', 'ICD9CM_2010'), +('90.5', 'Microscopic examination of blood', 'ICD9CM_2010'), +('90.51', 'Microscopic examination of blood, Bacterial smear', 'ICD9CM_2010'), +('90.52', 'Microscopic examination of blood, Culture', 'ICD9CM_2010'), +('90.53', 'Microscopic examination of blood, Culture and sensitivity', 'ICD9CM_2010'), +('90.54', 'Microscopic examination of blood, Parasitology', 'ICD9CM_2010'), +('90.55', 'Microscopic examination of blood,Toxicology', 'ICD9CM_2010'), +('90.56', 'Microscopic examination of blood, Cell block and papanicolaou smear', 'ICD9CM_2010'), +('90.59', 'Microscopic examination of blood, Other microscopic examination', 'ICD9CM_2010'), +('90.6', 'Microscopic examination of specimen from spleen and of bone marrow', 'ICD9CM_2010'), +('90.61', 'Microscopic examination of specimen from spleen and of bone marrow, Bacterial smear', 'ICD9CM_2010'), +('90.62', 'Microscopic examination of specimen from spleen and of bone marrow, Culture', 'ICD9CM_2010'), +('90.63', 'Microscopic examination of specimen from spleen and of bone marrow, Culture and sensitivity', 'ICD9CM_2010'), +('90.64', 'Microscopic examination of specimen from spleen and of bone marrow, Parasitology', 'ICD9CM_2010'), +('90.65', 'Microscopic examination of specimen from spleen and of bone marrow, Toxicology', 'ICD9CM_2010'), +('90.66', 'Microscopic examination of specimen from spleen and of bone marrow, Cell block and papanicolaou smear', 'ICD9CM_2010'), +('90.69', 'Microscopic examination of specimen from spleen and of bone marrow, Other microscopic examination', 'ICD9CM_2010'), +('90.7', 'Microscopic examination of specimen from lymph node and of lymph', 'ICD9CM_2010'), +('90.71', 'Microscopic examination of specimen from lymph node and of lymph, Bacterial smear', 'ICD9CM_2010'), +('90.72', 'Microscopic examination of specimen from lymph node and of lymph, Culture', 'ICD9CM_2010'), +('90.73', 'Microscopic examination of specimen from lymph node and of lymph, Culture and sensitivity', 'ICD9CM_2010'), +('90.74', 'Microscopic examination of specimen from lymph node and of lymph, Parasitology', 'ICD9CM_2010'), +('90.75', 'Microscopic examination of specimen from lymph node and of lymph, Toxicology', 'ICD9CM_2010'), +('90.76', 'Microscopic examination of specimen from lymph node and of lymph, Cell block and papanicolaou smear', 'ICD9CM_2010'), +('90.79', 'Microscopic examination of specimen from lymph node and of lymph, Other microscopic examination', 'ICD9CM_2010'), +('90.8', 'Microscopic examination of specimen from upper gastrointestinal tract and vomitus', 'ICD9CM_2010'), +('90.81', 'Microscopic examination of specimen from upper gastrointestinal tract and vomitus, Bacterial smear', 'ICD9CM_2010'), +('90.82', 'Microscopic examination of specimen from upper gastrointestinal tract and vomitus, Culture', 'ICD9CM_2010'), +('90.83', 'Microscopic examination of specimen from upper gastrointestinal tract and vomitus, Culture and sensitivity', 'ICD9CM_2010'), +('90.84', 'Microscopic examination of specimen from upper gastrointestinal tract and vomitus, Parasitology', 'ICD9CM_2010'), +('90.85', 'Microscopic examination of specimen from upper gastrointestinal tract and vomitus, Toxicology', 'ICD9CM_2010'), +('90.86', 'Microscopic examination of specimen from upper gastrointestinal tract and vomitus, Cell block and papanicolaou smear', 'ICD9CM_2010'), +('90.89', 'Microscopic examination of specimen from upper gastrointestinal tract and vomitus, Other microscopic examination', 'ICD9CM_2010'), +('90.9', 'Microscopic examination of specimen from lower gastrointestinal tract and of stool', 'ICD9CM_2010'), +('90.91', 'Microscopic examination of specimen from lower gastrointestinal tract and of stool, Bacterial smear', 'ICD9CM_2010'), +('90.92', 'Microscopic examination of specimen from lower gastrointestinal tract and of stool, Culture', 'ICD9CM_2010'), +('90.93', 'Microscopic examination of specimen from lower gastrointestinal tract and of stool, Culture and sensitivity', 'ICD9CM_2010'), +('90.94', 'Microscopic examination of specimen from lower gastrointestinal tract and of stool, Parasitology', 'ICD9CM_2010'), +('90.95', 'Microscopic examination of specimen from lower gastrointestinal tract and of stool, Toxicology', 'ICD9CM_2010'), +('90.96', 'Microscopic examination of specimen from lower gastrointestinal tract and of stool, Cell block and papanicolaou smear', 'ICD9CM_2010'), +('90.99', 'Microscopic examination of specimen from lower gastrointestinal tract and of stool, Other microscopic examination', 'ICD9CM_2010'), +('91', 'Microscopic examination - ii', 'ICD9CM_2010'), +('91.0', 'Microscopic examination of specimen from liver, biliary tract, and pancreas', 'ICD9CM_2010'), +('91.01', 'Microscopic examination of specimen from liver, biliary tract, and pancreas, Bacterial smear', 'ICD9CM_2010'), +('91.02', 'Microscopic examination of specimen from liver, biliary tract, and pancreas, Culture', 'ICD9CM_2010'), +('91.03', 'Microscopic examination of specimen from liver, biliary tract, and pancreas, Culture and sensitivity', 'ICD9CM_2010'), +('91.04', 'Microscopic examination of specimen from liver, biliary tract, and pancreas, Parasitology', 'ICD9CM_2010'), +('91.05', 'Microscopic examination of specimen from liver, biliary tract, and pancreas, Toxicology', 'ICD9CM_2010'), +('91.06', 'Microscopic examination of specimen from liver, biliary tract, and pancreas, Cell block and papanicolaou smear', 'ICD9CM_2010'), +('91.09', 'Microscopic examination of specimen from liver, biliary tract, and pancreas, Other microscopic examination', 'ICD9CM_2010'), +('91.1', 'Microscopic examination of peritoneal and retroperitoneal specimen', 'ICD9CM_2010'), +('91.11', 'Microscopic examination of peritoneal and retroperitoneal specimen, Bacterial smear', 'ICD9CM_2010'), +('91.12', 'Microscopic examination of peritoneal and retroperitoneal specimen, Culture', 'ICD9CM_2010'), +('91.13', 'Microscopic examination of peritoneal and retroperitoneal specimen, Culture and sensitivity', 'ICD9CM_2010'), +('91.14', 'Microscopic examination of peritoneal and retroperitoneal specimen, Parasitology', 'ICD9CM_2010'), +('91.15', 'Microscopic examination of peritoneal and retroperitoneal specimen, Toxicology', 'ICD9CM_2010'), +('91.16', 'Microscopic examination of peritoneal and retroperitoneal specimen, Cell block and papanicolaou smear', 'ICD9CM_2010'), +('91.19', 'Microscopic examination of peritoneal and retroperitoneal specimen, Other microscopic examination', 'ICD9CM_2010'), +('91.2', 'Microscopic examination of specimen from kidney, ureter, perirenal and periureteral tissue', 'ICD9CM_2010'), +('91.21', 'Microscopic examination of specimen from kidney, ureter, perirenal and periureteral tissue, Bacterial smear', 'ICD9CM_2010'), +('91.22', 'Microscopic examination of specimen from kidney, ureter, perirenal and periureteral tissue, Culture', 'ICD9CM_2010'), +('91.23', 'Microscopic examination of specimen from kidney, ureter, perirenal and periureteral tissue, Culture and sensitivity', 'ICD9CM_2010'), +('91.24', 'Microscopic examination of specimen from kidney, ureter, perirenal and periureteral tissue, Parasitology', 'ICD9CM_2010'), +('91.25', 'Microscopic examination of specimen from kidney, ureter, perirenal and periureteral tissue, Toxicology', 'ICD9CM_2010'), +('91.26', 'Microscopic examination of specimen from kidney, ureter, perirenal and periureteral tissue, Cell block and papanicolaou smear', 'ICD9CM_2010'), +('91.29', 'Microscopic examination of specimen from kidney, ureter, perirenal and periureteral tissue, Other microscopic examination', 'ICD9CM_2010'), +('91.3', 'Microscopic examination of specimen from bladder, urethra, prostate,seminal vesicle, perivesical tissue, and of urine and semen', 'ICD9CM_2010'), +('91.31', 'Microscopic examination of specimen from bladder, urethra, prostate,seminal vesicle, perivesical tissue, and of urine and semen, Bacterial smear', 'ICD9CM_2010'), +('91.32', 'Microscopic examination of specimen from bladder, urethra, prostate,seminal vesicle, perivesical tissue, and of urine and semen, Culture', 'ICD9CM_2010'), +('91.33', 'Microscopic examination of specimen from bladder, urethra, prostate,seminal vesicle, perivesical tissue, and of urine and semen, Culture and sensitivi', 'ICD9CM_2010'), +('91.34', 'Microscopic examination of specimen from bladder, urethra, prostate,seminal vesicle, perivesical tissue, and of urine and semen, Parasitology', 'ICD9CM_2010'), +('91.35', 'Microscopic examination of specimen from bladder, urethra, prostate,seminal vesicle, perivesical tissue, and of urine and semen, Toxicology', 'ICD9CM_2010'), +('91.36', 'Microscopic examination of specimen from bladder, urethra, prostate,seminal vesicle, perivesical tissue, and of urine and semen, Cell block and papani', 'ICD9CM_2010'), +('91.39', 'Microscopic examination of specimen from bladder, urethra, prostate,seminal vesicle, perivesical tissue, and of urine and semen, Other microscopic exa', 'ICD9CM_2010'), +('91.4', 'Microscopic examination of specimen from female genital tract', 'ICD9CM_2010'), +('91.41', 'Microscopic examination of specimen from female genital tract, Bacterial smear', 'ICD9CM_2010'), +('91.42', 'Microscopic examination of specimen from female genital tract, Culture', 'ICD9CM_2010'), +('91.43', 'Microscopic examination of specimen from female genital tract, Culture and sensitivity', 'ICD9CM_2010'), +('91.44', 'Microscopic examination of specimen from female genital tract, Parasitology', 'ICD9CM_2010'), +('91.45', 'Microscopic examination of specimen from female genital tract, Toxicology', 'ICD9CM_2010'), +('91.46', 'Microscopic examination of specimen from female genital tract, Cell block and papanicolaou smear', 'ICD9CM_2010'), +('91.49', 'Microscopic examination of specimen from female genital tract, Other microscopic examination', 'ICD9CM_2010'), +('91.5', 'Microscopic examination of specimen from musculoskeletal system and of joint fluid', 'ICD9CM_2010'), +('91.51', 'Microscopic examination of specimen from musculoskeletal system and of joint fluid, Bacterial smear', 'ICD9CM_2010'), +('91.52', 'Microscopic examination of specimen from musculoskeletal system and of joint fluid, Culture', 'ICD9CM_2010'), +('91.53', 'Microscopic examination of specimen from musculoskeletal system and of joint fluid, Culture and sensitivity', 'ICD9CM_2010'), +('91.54', 'Microscopic examination of specimen from musculoskeletal system and of joint fluid, Parasitology', 'ICD9CM_2010'), +('91.55', 'Microscopic examination of specimen from musculoskeletal system and of joint fluid, Toxicology', 'ICD9CM_2010'), +('91.56', 'Microscopic examination of specimen from musculoskeletal system and of joint fluid, Cell block and papanicolaou smear', 'ICD9CM_2010'), +('91.59', 'Microscopic examination of specimen from musculoskeletal system and of joint fluid, Other microscopic examination', 'ICD9CM_2010'), +('91.6', 'Microscopic examination of specimen from skin and other integument', 'ICD9CM_2010'), +('91.61', 'Microscopic examination of specimen from skin and other integument, Bacterial smear', 'ICD9CM_2010'), +('91.62', 'Microscopic examination of specimen from skin and other integument, Culture', 'ICD9CM_2010'), +('91.63', 'Microscopic examination of specimen from skin and other integument, Culture and sensitivity', 'ICD9CM_2010'), +('91.64', 'Microscopic examination of specimen from skin and other integument, Parasitology', 'ICD9CM_2010'), +('91.65', 'Microscopic examination of specimen from skin and other integument, Toxicology', 'ICD9CM_2010'), +('91.66', 'Microscopic examination of specimen from skin and other integument, Cell block and papanicolaou smear', 'ICD9CM_2010'), +('91.69', 'Microscopic examination of specimen from skin and other integument, Other microscopic examination', 'ICD9CM_2010'), +('91.7', 'Microscopic examination of specimen from operative wound', 'ICD9CM_2010'), +('91.71', 'Microscopic examination of specimen from operative wound, Bacterial smear', 'ICD9CM_2010'), +('91.72', 'Microscopic examination of specimen from operative wound, Culture', 'ICD9CM_2010'), +('91.73', 'Microscopic examination of specimen from operative wound, Culture and sensitivity', 'ICD9CM_2010'), +('91.74', 'Microscopic examination of specimen from operative wound, Parasitology', 'ICD9CM_2010'), +('91.75', 'Microscopic examination of specimen from operative wound, Toxicology', 'ICD9CM_2010'), +('91.76', 'Microscopic examination of specimen from operative wound, Cell block and papanicolaou smear', 'ICD9CM_2010'), +('91.79', 'Microscopic examination of specimen from operative wound, Other microscopic examination', 'ICD9CM_2010'), +('91.8', 'Microscopic examination of specimen from other site', 'ICD9CM_2010'), +('91.81', 'Microscopic examination of specimen from other site, Bacterial smear', 'ICD9CM_2010'), +('91.82', 'Microscopic examination of specimen from other site, Culture', 'ICD9CM_2010'), +('91.83', 'Microscopic examination of specimen from other site, Culture and sensitivity', 'ICD9CM_2010'), +('91.84', 'Microscopic examination of specimen from other site, Parasitology', 'ICD9CM_2010'), +('91.85', 'Microscopic examination of specimen from other site, Toxicology', 'ICD9CM_2010'), +('91.86', 'Microscopic examination of specimen from other site, Cell block and papanicolaou smear', 'ICD9CM_2010'), +('91.89', 'Microscopic examination of specimen from other site, Other microscopic examination', 'ICD9CM_2010'), +('91.9', 'Microscopic examination of specimen from unspecified site', 'ICD9CM_2010'), +('91.91', 'Microscopic examination of specimen from unspecified site, Bacterial smear', 'ICD9CM_2010'), +('91.92', 'Microscopic examination of specimen from unspecified site, Culture', 'ICD9CM_2010'), +('91.93', 'Microscopic examination of specimen from unspecified site, Culture and sensitivity', 'ICD9CM_2010'), +('91.94', 'Microscopic examination of specimen from unspecified site, Parasitology', 'ICD9CM_2010'), +('91.95', 'Microscopic examination of specimen from unspecified site, Toxicology', 'ICD9CM_2010'), +('91.96', 'Microscopic examination of specimen from unspecified site, Cell block and papanicolaou smear', 'ICD9CM_2010'), +('91.99', 'Microscopic examination of specimen from unspecified site, Other microscopic examination', 'ICD9CM_2010'), +('92', 'Nuclear medicine', 'ICD9CM_2010'), +('92.0', 'Radioisotope scan and function study', 'ICD9CM_2010'), +('92.01', 'Thyroid scan and radioisotope function studies', 'ICD9CM_2010'), +('92.02', 'Liver scan and radioisotope function study', 'ICD9CM_2010'), +('92.03', 'Renal scan and radioisotope function study', 'ICD9CM_2010'), +('92.04', 'Gastrointestinal scan and radioisotope function study', 'ICD9CM_2010'), +('92.05', 'Cardiovascular and hematopoietic scan and radioisotope function study', 'ICD9CM_2010'), +('92.09', 'Other radioisotope function studies', 'ICD9CM_2010'), +('92.1', 'Other radioisotope scan', 'ICD9CM_2010'), +('92.11', 'Cerebral scan', 'ICD9CM_2010'), +('92.12', 'Scan of other sites of head', 'ICD9CM_2010'), +('92.13', 'Parathyroid scan', 'ICD9CM_2010'), +('92.14', 'Bone scan', 'ICD9CM_2010'), +('92.15', 'Pulmonary scan', 'ICD9CM_2010'), +('92.16', 'Scan of lymphatic system', 'ICD9CM_2010'), +('92.17', 'Placental scan', 'ICD9CM_2010'), +('92.18', 'Total body scan', 'ICD9CM_2010'), +('92.19', 'Scan of other site', 'ICD9CM_2010'), +('92.2', 'Therapeutic radiology and nuclear medicine', 'ICD9CM_2010'), +('92.20', 'Infusion of liquid brachytherapy radioisotope', 'ICD9CM_2010'), +('92.21', 'Superficial radiation', 'ICD9CM_2010'), +('92.22', 'Orthovoltage radiation', 'ICD9CM_2010'), +('92.23', 'Radioisotopic teleradiotherapy', 'ICD9CM_2010'), +('92.24', 'Teleradiotherapy using protons', 'ICD9CM_2010'), +('92.25', 'Teleradiotherapy using electrons', 'ICD9CM_2010'), +('92.26', 'Teleradiotherapy of other particulate radiation', 'ICD9CM_2010'), +('92.27', 'Implantation or insertion of radioactive elements', 'ICD9CM_2010'), +('92.28', 'Injection or instillation of radioisotopes', 'ICD9CM_2010'), +('92.29', 'Other radiotherapeutic procedure', 'ICD9CM_2010'), +('92.3', 'Stereotactic radiosurgery', 'ICD9CM_2010'), +('92.30', 'Stereotactic radiosurgery, not otherwise specified', 'ICD9CM_2010'), +('92.31', 'Single source photon radiosurgery', 'ICD9CM_2010'), +('92.32', 'Multi-source photon radiosurgery', 'ICD9CM_2010'), +('92.33', 'Particulate radiosurgery', 'ICD9CM_2010'), +('92.39', 'Stereotactic radiosugery, not elsewhere classified', 'ICD9CM_2010'), +('92.4', 'Intra-operative radiotion procedures', 'ICD9CM_2010'), +('92.41', 'Intra-operative electron radiation therapy', 'ICD9CM_2010'), +('93', 'Physical theraphy, respiratory theraphy, rehabilition, and related procedures', 'ICD9CM_2010'), +('93.0', 'Diagnostic physical therapy', 'ICD9CM_2010'), +('93.01', 'Functional evaluation', 'ICD9CM_2010'), +('93.02', 'Orthotic evaluation', 'ICD9CM_2010'), +('93.03', 'Prosthetic evaluation', 'ICD9CM_2010'), +('93.04', 'Manual testing of muscle function', 'ICD9CM_2010'), +('93.05', 'Range of motion testing', 'ICD9CM_2010'), +('93.06', 'Measurement of limb length', 'ICD9CM_2010'), +('93.07', 'Body measurement', 'ICD9CM_2010'), +('93.08', 'Electromyography', 'ICD9CM_2010'), +('93.09', 'Other diagnostic physical therapy procedure', 'ICD9CM_2010'), +('93.1', 'Physical therapy exercises', 'ICD9CM_2010'), +('93.11', 'Assisting exercise', 'ICD9CM_2010'), +('93.12', 'Other active musculoskeletal exercise', 'ICD9CM_2010'), +('93.13', 'Resistive exercise', 'ICD9CM_2010'), +('93.14', 'Training in joint movements', 'ICD9CM_2010'), +('93.15', 'Mobilization of spine', 'ICD9CM_2010'), +('93.16', 'Mobilization of other joints', 'ICD9CM_2010'), +('93.17', 'Other passive musculoskeletal exercise', 'ICD9CM_2010'), +('93.18', 'Breathing exercise', 'ICD9CM_2010'), +('93.19', 'Exercise, not elsewhere classified', 'ICD9CM_2010'), +('93.2', 'Other physical therapy musculoskeletal manipulation', 'ICD9CM_2010'), +('93.21', 'Manual and mechanical traction', 'ICD9CM_2010'), +('93.22', 'Ambulation and gait training', 'ICD9CM_2010'), +('93.23', 'Fitting of orthotic device', 'ICD9CM_2010'), +('93.24', 'Training in use of prosthetic or orthotic device', 'ICD9CM_2010'), +('93.25', 'Forced extension of limb', 'ICD9CM_2010'), +('93.26', 'Manual rupture of joint adhesions', 'ICD9CM_2010'), +('93.27', 'Stretching of muscle or tendon', 'ICD9CM_2010'), +('93.28', 'Stretching of fascia', 'ICD9CM_2010'), +('93.29', 'Other forcible correction of deformity', 'ICD9CM_2010'), +('93.3', 'Other physical therapy therapeutic procedures', 'ICD9CM_2010'), +('93.31', 'Assisted exercise in pool', 'ICD9CM_2010'), +('93.32', 'Whirlpool treatment', 'ICD9CM_2010'), +('93.33', 'Other hydrotherapy', 'ICD9CM_2010'), +('93.34', 'Diathermy', 'ICD9CM_2010'), +('93.35', 'Other heat therapy', 'ICD9CM_2010'), +('93.36', 'Cardiac retraining', 'ICD9CM_2010'), +('93.37', 'Prenatal training', 'ICD9CM_2010'), +('93.38', 'Combined physical therapy without mention of the components', 'ICD9CM_2010'), +('93.39', 'Other physical therapy', 'ICD9CM_2010'), +('93.4', 'Skeletal traction and other traction', 'ICD9CM_2010'), +('93.41', 'Spinal traction using skull device', 'ICD9CM_2010'), +('93.42', 'Other spinal traction', 'ICD9CM_2010'), +('93.43', 'Intermittent skeletal traction', 'ICD9CM_2010'), +('93.44', 'Other skeletal traction', 'ICD9CM_2010'), +('93.45', 'Thomas\' splint traction', 'ICD9CM_2010'), +('93.46', 'Other skin traction of limbs', 'ICD9CM_2010'), +('93.5', 'Other immobilization, pressure, and attention to wound', 'ICD9CM_2010'), +('93.51', 'Application of plaster jacket', 'ICD9CM_2010'), +('93.52', 'Application of neck support', 'ICD9CM_2010'), +('93.53', 'Application of other cast', 'ICD9CM_2010'), +('93.54', 'Application of splint', 'ICD9CM_2010'), +('93.55', 'Dental wiring', 'ICD9CM_2010'), +('93.56', 'Application of pressure dressing', 'ICD9CM_2010'), +('93.57', 'Application of other wound dressing', 'ICD9CM_2010'), +('93.58', 'Application of pressure trousers', 'ICD9CM_2010'), +('93.59', 'Other immobilization, pressure, and attention to wound', 'ICD9CM_2010'), +('93.6', 'Osteopathic manipulative treatment', 'ICD9CM_2010'), +('93.61', 'Osteopathic manipulative treatment for general mobilization', 'ICD9CM_2010'), +('93.62', 'Osteopathic manipulative treatment using high-velocity, low-amplitude forces', 'ICD9CM_2010'), +('93.63', 'Osteopathic manipulative treatment using low- velocity, high-amplitude forces', 'ICD9CM_2010'), +('93.64', 'Osteopathic manipulative treatment using isotonic, isometric forces', 'ICD9CM_2010'), +('93.65', 'Osteopathic manipulative treatment using indirect forces', 'ICD9CM_2010'), +('93.66', 'Osteopathic manipulative treatment to move tissue fluids', 'ICD9CM_2010'), +('93.67', 'Other specified osteopathic manipulative treatment', 'ICD9CM_2010'), +('93.7', 'Speech and reading rehabilitation and rehabilitation of the blind', 'ICD9CM_2010'), +('93.71', 'Dyslexia training', 'ICD9CM_2010'), +('93.72', 'Dysphasia training', 'ICD9CM_2010'), +('93.73', 'Esophageal speech training', 'ICD9CM_2010'), +('93.74', 'Speech defect training', 'ICD9CM_2010'), +('93.75', 'Other speech training and therapy', 'ICD9CM_2010'), +('93.76', 'Training in use of lead dog for the blind', 'ICD9CM_2010'), +('93.77', 'Training in braille or moon', 'ICD9CM_2010'), +('93.78', 'Other rehabilitation for the blind', 'ICD9CM_2010'), +('93.8', 'Other rehabilitation therapy', 'ICD9CM_2010'), +('93.81', 'Recreational therapy', 'ICD9CM_2010'), +('93.82', 'Educational therapy', 'ICD9CM_2010'), +('93.83', 'Occupational therapy', 'ICD9CM_2010'), +('93.84', 'Music therapy', 'ICD9CM_2010'), +('93.85', 'Vocational rehabilitation', 'ICD9CM_2010'), +('93.89', 'Rehabilitation, not elsewhere classified', 'ICD9CM_2010'), +('93.9', 'Respiratory therapy', 'ICD9CM_2010'), +('93.90', 'Non-invasive mechanical ventilation', 'ICD9CM_2010'), +('93.91', 'Intermittent positive pressure breathing (IPPB)', 'ICD9CM_2010'), +('93.93', 'Nonmechanical methods of resuscitation', 'ICD9CM_2010'), +('93.94', 'Respiratory medication administered by nebulizer', 'ICD9CM_2010'), +('93.95', 'Hyperbaric oxygenation', 'ICD9CM_2010'), +('93.96', 'Other oxygen enrichment', 'ICD9CM_2010'), +('93.960', 'High flow nasal canule oxygenation (IM)', 'ICD9CM_2010'), +('93.97', 'Decompression chamber', 'ICD9CM_2010'), +('93.98', 'Other control of atmospheric pressure and composition', 'ICD9CM_2010'), +('93.99', 'Other respiratory procedures', 'ICD9CM_2010'), +('94', 'Procedures related to the psyche', 'ICD9CM_2010'), +('94.0', 'Psychologic evaluation and testing', 'ICD9CM_2010'), +('94.01', 'Administration of intelligence test', 'ICD9CM_2010'), +('94.02', 'Administration of psychologic test', 'ICD9CM_2010'), +('94.03', 'Character analysis', 'ICD9CM_2010'), +('94.08', 'Other psychologic evaluation and testing', 'ICD9CM_2010'), +('94.09', 'Psychologic mental status determination, not otherwise specified', 'ICD9CM_2010'), +('94.1', 'Psychiatric interviews, consultations, and evaluations', 'ICD9CM_2010'), +('94.11', 'Psychiatric mental status determination', 'ICD9CM_2010'), +('94.12', 'Routine psychiatric visit, not otherwise specified', 'ICD9CM_2010'), +('94.13', 'Psychiatric commitment evaluation', 'ICD9CM_2010'), +('94.19', 'Other psychiatric interview and evaluation', 'ICD9CM_2010'), +('94.2', 'Psychiatric somatotherapy', 'ICD9CM_2010'), +('94.21', 'Narcoanalysis', 'ICD9CM_2010'), +('94.22', 'Lithium therapy', 'ICD9CM_2010'), +('94.23', 'Neuroleptic therapy', 'ICD9CM_2010'), +('94.24', 'Chemical shock therapy', 'ICD9CM_2010'), +('94.25', 'Other psychiatric drug therapy', 'ICD9CM_2010'), +('94.26', 'Subconvulsive electroshock therapy', 'ICD9CM_2010'), +('94.27', 'Other electroshock therapy', 'ICD9CM_2010'), +('94.29', 'Other psychiatric somatotherapy', 'ICD9CM_2010'), +('94.3', 'Individual psychotherapy', 'ICD9CM_2010'), +('94.31', 'Psychoanalysis', 'ICD9CM_2010'), +('94.32', 'Hypnotherapy', 'ICD9CM_2010'), +('94.33', 'Behavior therapy', 'ICD9CM_2010'), +('94.34', 'Individual therapy for psychosexual dysfunction', 'ICD9CM_2010'), +('94.35', 'Crisis intervention', 'ICD9CM_2010'), +('94.36', 'Play psychotherapy', 'ICD9CM_2010'), +('94.37', 'Exploratory verbal psychotherapy', 'ICD9CM_2010'), +('94.38', 'Supportive verbal psychotherapy', 'ICD9CM_2010'), +('94.39', 'Other individual psychotherapy', 'ICD9CM_2010'), +('94.4', 'Other psychotherapy and counselling', 'ICD9CM_2010'), +('94.41', 'Group therapy for psychosexual dysfunction', 'ICD9CM_2010'), +('94.42', 'Family therapy', 'ICD9CM_2010'), +('94.43', 'Psychodrama', 'ICD9CM_2010'), +('94.44', 'Other group therapy', 'ICD9CM_2010'), +('94.45', 'Drug addiction counselling', 'ICD9CM_2010'), +('94.46', 'Alcoholism counselling', 'ICD9CM_2010'), +('94.49', 'Other counselling', 'ICD9CM_2010'), +('94.5', 'Referral for psychologic rehabilitation', 'ICD9CM_2010'), +('94.51', 'Referral for psychotherapy', 'ICD9CM_2010'), +('94.52', 'Referral for psychiatric aftercare', 'ICD9CM_2010'), +('94.53', 'Referral for alcoholism rehabilitation', 'ICD9CM_2010'), +('94.54', 'Referral for drug addiction rehabilitation', 'ICD9CM_2010'), +('94.55', 'Referral for vocational rehabilitation', 'ICD9CM_2010'), +('94.59', 'Referral for other psychologic rehabilitation', 'ICD9CM_2010'), +('94.6', 'Alcohol and drug rehabilitation and detoxification', 'ICD9CM_2010'), +('94.61', 'Alcohol rehabilitation', 'ICD9CM_2010'), +('94.62', 'Alcohol detoxification', 'ICD9CM_2010'), +('94.63', 'Alcohol rehabilitation and detoxification', 'ICD9CM_2010'), +('94.64', 'Drug rehabilitation', 'ICD9CM_2010'), +('94.65', 'Drug detoxification', 'ICD9CM_2010'), +('94.66', 'Drug rehabilitation and detoxification', 'ICD9CM_2010'), +('94.67', 'Combined alcohol and drug rehabilitation', 'ICD9CM_2010'), +('94.68', 'Combined alcohol and drug detoxification', 'ICD9CM_2010'), +('94.69', 'Combined alcohol and drug rehabilitation and detoxification', 'ICD9CM_2010'), +('95', 'Ophthalmologic and otologic diagnosis and treatment', 'ICD9CM_2010'), +('95.0', 'General and subjective eye examination', 'ICD9CM_2010'), +('95.01', 'Limited eye examination', 'ICD9CM_2010'), +('95.02', 'Comprehensive eye examination', 'ICD9CM_2010'), +('95.03', 'Extended ophthalmologic work-up', 'ICD9CM_2010'), +('95.04', 'Eye examination under anesthesia', 'ICD9CM_2010'), +('95.05', 'Visual field study', 'ICD9CM_2010'), +('95.06', 'Color vision study', 'ICD9CM_2010'), +('95.07', 'Dark adaptation study', 'ICD9CM_2010'), +('95.09', 'Eye examination, not otherwise specified', 'ICD9CM_2010'), +('95.1', 'Examinations of form and structure of eye', 'ICD9CM_2010'), +('95.11', 'Fundus photography', 'ICD9CM_2010'), +('95.12', 'Fluorescein angiography or angioscopy of eye', 'ICD9CM_2010'), +('95.13', 'Ultrasound study of eye', 'ICD9CM_2010'), +('95.14', 'X-ray study of eye', 'ICD9CM_2010'), +('95.15', 'Ocular motility study', 'ICD9CM_2010'), +('95.16', 'P32 and other tracer studies of eye', 'ICD9CM_2010'), +('95.2', 'Objective functional tests of eye', 'ICD9CM_2010'), +('95.21', 'Electroretinogram (ERG)', 'ICD9CM_2010'), +('95.22', 'Electro-oculogram (EOG)', 'ICD9CM_2010'), +('95.23', 'Visual evoked potential (VEP)', 'ICD9CM_2010'), +('95.24', 'Electronystagmogram (ENG)', 'ICD9CM_2010'), +('95.25', 'Electromyogram of eye (EMG)', 'ICD9CM_2010'), +('95.26', 'Tonography, provocative tests, and other glaucoma testing', 'ICD9CM_2010'), +('95.3', 'Special vision services', 'ICD9CM_2010'), +('95.31', 'Fitting and dispensing of spectacles', 'ICD9CM_2010'), +('95.32', 'Prescription, fitting, and dispensing of contact lens', 'ICD9CM_2010'), +('95.33', 'Dispensing of other low vision aids', 'ICD9CM_2010'), +('95.34', 'Ocular prosthetics', 'ICD9CM_2010'), +('95.35', 'Orthoptic training', 'ICD9CM_2010'), +('95.36', 'Ophthalmologic counselling and instruction', 'ICD9CM_2010'), +('95.4', 'Nonoperative procedures related to hearing', 'ICD9CM_2010'), +('95.41', 'Audiometry', 'ICD9CM_2010'), +('95.42', 'Clinical test of hearing', 'ICD9CM_2010'), +('95.43', 'Audiological evaluation', 'ICD9CM_2010'), +('95.44', 'Clinical vestibular function tests', 'ICD9CM_2010'), +('95.45', 'Rotation tests', 'ICD9CM_2010'), +('95.46', 'Other auditory and vestibular function tests', 'ICD9CM_2010'), +('95.47', 'Hearing examination, not otherwise specified', 'ICD9CM_2010'), +('95.48', 'Fitting of hearing aid', 'ICD9CM_2010'), +('95.49', 'Other nonoperative procedures related to hearing', 'ICD9CM_2010'), +('96', 'Nonoperative intubation and irrigation', 'ICD9CM_2010'), +('96.0', 'Nonoperative intubation of gastrointestinal and respiratory tracts', 'ICD9CM_2010'), +('96.01', 'Insertion of nasopharyngeal airway', 'ICD9CM_2010'), +('96.02', 'Insertion of oropharyngeal airway', 'ICD9CM_2010'), +('96.03', 'Insertion of esophageal obturator airway', 'ICD9CM_2010'), +('96.04', 'Insertion of endotracheal tube', 'ICD9CM_2010'), +('96.05', 'Other intubation of respiratory tract', 'ICD9CM_2010'), +('96.06', 'Insertion of Sengstaken tube', 'ICD9CM_2010'), +('96.07', 'Insertion of other (naso-)gastric tube', 'ICD9CM_2010'), +('96.08', 'Insertion of (naso-)intestinal tube', 'ICD9CM_2010'), +('96.09', 'Insertion of rectal tube', 'ICD9CM_2010'), +('96.1', 'Other nonoperative insertion', 'ICD9CM_2010'), +('96.11', 'Packing of external auditory canal', 'ICD9CM_2010'), +('96.14', 'Vaginal packing', 'ICD9CM_2010'), +('96.15', 'Insertion of vaginal mold', 'ICD9CM_2010'), +('96.16', 'Other vaginal dilation', 'ICD9CM_2010'), +('96.17', 'Insertion of vaginal diaphragm', 'ICD9CM_2010'), +('96.18', 'Insertion of other vaginal pessary', 'ICD9CM_2010'), +('96.19', 'Rectal packing', 'ICD9CM_2010'), +('96.2', 'Nonoperative dilation and manipulation', 'ICD9CM_2010'), +('96.21', 'Dilation of frontonasal duct', 'ICD9CM_2010'), +('96.22', 'Dilation of rectum', 'ICD9CM_2010'), +('96.23', 'Dilation of anal sphincter', 'ICD9CM_2010'), +('96.24', 'Dilation and manipulation of enterostomy stoma', 'ICD9CM_2010'), +('96.25', 'Therapeutic distention of bladder', 'ICD9CM_2010'), +('96.26', 'Manual reduction of rectal prolapse', 'ICD9CM_2010'), +('96.27', 'Manual reduction of hernia', 'ICD9CM_2010'), +('96.28', 'Manual reduction of enterostomy prolapse', 'ICD9CM_2010'), +('96.29', 'Reduction of intussusception of alimentary tract', 'ICD9CM_2010'), +('96.3', 'Nonoperative alimentary tract irrigation, cleaning, and local instillation', 'ICD9CM_2010'), +('96.31', 'Gastric cooling', 'ICD9CM_2010'), +('96.32', 'Gastric freezing', 'ICD9CM_2010'), +('96.33', 'Gastric lavage', 'ICD9CM_2010'), +('96.34', 'Other irrigation of (naso-)gastric tube', 'ICD9CM_2010'), +('96.35', 'Gastric gavage', 'ICD9CM_2010'), +('96.36', 'Irrigation of gastrostomy or enterostomy', 'ICD9CM_2010'), +('96.37', 'Proctoclysis', 'ICD9CM_2010'), +('96.38', 'Removal of impacted feces', 'ICD9CM_2010'), +('96.39', 'Other transanal enema', 'ICD9CM_2010'), +('96.4', 'Nonoperative irrigation, cleaning, and local instillation of other digestive and genitourinary organs', 'ICD9CM_2010'), +('96.41', 'Irrigation of cholecystostomy and other biliary tube', 'ICD9CM_2010'), +('96.42', 'Irrigation of pancreatic tube', 'ICD9CM_2010'), +('96.43', 'Digestive tract instillation, except gastric gavage', 'ICD9CM_2010'), +('96.44', 'Vaginal douche', 'ICD9CM_2010'), +('96.45', 'Irrigation of nephrostomy and pyelostomy', 'ICD9CM_2010'), +('96.46', 'Irrigation of ureterostomy and ureteral catheter', 'ICD9CM_2010'), +('96.47', 'Irrigation of cystostomy', 'ICD9CM_2010'), +('96.48', 'Irrigation of other indwelling urinary catheter', 'ICD9CM_2010'), +('96.49', 'Other genitourinary instillation', 'ICD9CM_2010'), +('96.5', 'Other nonoperative irrigation and cleaning', 'ICD9CM_2010'), +('96.51', 'Irrigation of eye', 'ICD9CM_2010'), +('96.52', 'Irrigation of ear', 'ICD9CM_2010'), +('96.53', 'Irrigation of nasal passages', 'ICD9CM_2010'), +('96.54', 'Dental scaling, polishing, and debridement', 'ICD9CM_2010'), +('96.55', 'Tracheostomy toilette', 'ICD9CM_2010'), +('96.56', 'Other lavage of bronchus and trachea', 'ICD9CM_2010'); +INSERT INTO `icd9` (`ID_ICD9`, `Prosedur`, `Versi_ICD9`) VALUES +('96.57', 'Irrigation of vascular catheter', 'ICD9CM_2010'), +('96.58', 'Irrigation of wound catheter', 'ICD9CM_2010'), +('96.59', 'Other irrigation of wound', 'ICD9CM_2010'), +('96.6', 'Enteral infusion of concentrated nutritional substances', 'ICD9CM_2010'), +('96.7', 'Other continuous invasive mechanical ventilation', 'ICD9CM_2010'), +('96.70', 'Continuous invasive mechanical ventilation of unspecified duration', 'ICD9CM_2010'), +('96.71', 'Continuous invasive mechanical ventilation for less than 96 consecutive hours', 'ICD9CM_2010'), +('96.72', 'Continuous invasive mechanical ventilation for 96 consecutive hours or more', 'ICD9CM_2010'), +('97', 'Replacement and removal of therapeutic appliances', 'ICD9CM_2010'), +('97.0', 'Nonoperative replacement of gastrointestinal appliance', 'ICD9CM_2010'), +('97.01', 'Replacement of (naso-)gastric or esophagostomy tube', 'ICD9CM_2010'), +('97.02', 'Replacement of gastrostomy tube', 'ICD9CM_2010'), +('97.03', 'Replacement of tube or enterostomy device of small intestine', 'ICD9CM_2010'), +('97.04', 'Replacement of tube or enterostomy device of large intestine', 'ICD9CM_2010'), +('97.05', 'Replacement of stent (tube) in biliary or pancreatic duct', 'ICD9CM_2010'), +('97.1', 'Nonoperative replacement of musculoskeletal and integumentary system', 'ICD9CM_2010'), +('97.11', 'Replacement of cast on upper limb', 'ICD9CM_2010'), +('97.12', 'Replacement of cast on lower limb', 'ICD9CM_2010'), +('97.13', 'Replacement of other cast', 'ICD9CM_2010'), +('97.14', 'Replacement of other device for musculoskeletal immobilization', 'ICD9CM_2010'), +('97.15', 'Replacement of wound catheter', 'ICD9CM_2010'), +('97.16', 'Replacement of wound packing or drain', 'ICD9CM_2010'), +('97.2', 'Other nonoperative replacement', 'ICD9CM_2010'), +('97.21', 'Replacement of nasal packing', 'ICD9CM_2010'), +('97.22', 'Replacement of dental packing', 'ICD9CM_2010'), +('97.23', 'Replacement of tracheostomy tube', 'ICD9CM_2010'), +('97.24', 'Replacement and refitting of vaginal diaphragm', 'ICD9CM_2010'), +('97.25', 'Replacement of other vaginal pessary', 'ICD9CM_2010'), +('97.26', 'Replacement of vaginal or vulvar packing or drain', 'ICD9CM_2010'), +('97.29', 'Other nonoperative replacements', 'ICD9CM_2010'), +('97.3', 'Nonoperative removal of therapeutic device from head and neck', 'ICD9CM_2010'), +('97.31', 'Removal of eye prosthesis', 'ICD9CM_2010'), +('97.32', 'Removal of nasal packing', 'ICD9CM_2010'), +('97.33', 'Removal of dental wiring', 'ICD9CM_2010'), +('97.34', 'Removal of dental packing', 'ICD9CM_2010'), +('97.35', 'Removal of dental prosthesis', 'ICD9CM_2010'), +('97.36', 'Removal of other external mandibular fixation device', 'ICD9CM_2010'), +('97.37', 'Removal of tracheostomy tube', 'ICD9CM_2010'), +('97.38', 'Removal of sutures from head and neck', 'ICD9CM_2010'), +('97.39', 'Removal of other therapeutic device from head and neck', 'ICD9CM_2010'), +('97.4', 'Nonoperative removal of therapeutic device from thorax', 'ICD9CM_2010'), +('97.41', 'Removal of thoracotomy tube or pleural cavity drain', 'ICD9CM_2010'), +('97.42', 'Removal of mediastinal drain', 'ICD9CM_2010'), +('97.43', 'Removal of sutures from thorax', 'ICD9CM_2010'), +('97.44', 'Nonoperative removal of heart assist system', 'ICD9CM_2010'), +('97.49', 'Removal of other device from thorax', 'ICD9CM_2010'), +('97.5', 'Nonoperative removal of therapeutic device from digestive system', 'ICD9CM_2010'), +('97.51', 'Removal of gastrostomy tube', 'ICD9CM_2010'), +('97.52', 'Removal of tube from small intestine', 'ICD9CM_2010'), +('97.53', 'Removal of tube from large intestine or appendix', 'ICD9CM_2010'), +('97.54', 'Removal of cholecystostomy tube', 'ICD9CM_2010'), +('97.55', 'Removal of t-tube, other bile duct tube, or liver tube', 'ICD9CM_2010'), +('97.56', 'Removal of pancreatic tube or drain', 'ICD9CM_2010'), +('97.59', 'Removal of other device from digestive system', 'ICD9CM_2010'), +('97.6', 'Nonoperative removal of therapeutic device from urinary system', 'ICD9CM_2010'), +('97.61', 'Removal of pyelostomy and nephrostomy tube', 'ICD9CM_2010'), +('97.62', 'Removal of ureterostomy tube and ureteral catheter', 'ICD9CM_2010'), +('97.63', 'Removal of cystostomy tube', 'ICD9CM_2010'), +('97.64', 'Removal of other urinary drainage device', 'ICD9CM_2010'), +('97.65', 'Removal of urethral stent', 'ICD9CM_2010'), +('97.69', 'Removal of other device from urinary system', 'ICD9CM_2010'), +('97.7', 'Nonoperative removal of therapeutic device from genital system', 'ICD9CM_2010'), +('97.71', 'Removal of intrauterine contraceptive device', 'ICD9CM_2010'), +('97.72', 'Removal of intrauterine pack', 'ICD9CM_2010'), +('97.73', 'Removal of vaginal diaphragm', 'ICD9CM_2010'), +('97.74', 'Removal of other vaginal pessary', 'ICD9CM_2010'), +('97.75', 'Removal of vaginal or vulvar packing', 'ICD9CM_2010'), +('97.79', 'Removal of other device from genital tract', 'ICD9CM_2010'), +('97.8', 'Other nonoperative removal of therapeutic device', 'ICD9CM_2010'), +('97.81', 'Removal of retroperitoneal drainage device', 'ICD9CM_2010'), +('97.82', 'Removal of peritoneal drainage device', 'ICD9CM_2010'), +('97.83', 'Removal of abdominal wall sutures', 'ICD9CM_2010'), +('97.84', 'Removal of sutures from trunk, not elsewhere classified', 'ICD9CM_2010'), +('97.85', 'Removal of packing from trunk, not elsewhere classified', 'ICD9CM_2010'), +('97.86', 'Removal of other device from abdomen', 'ICD9CM_2010'), +('97.87', 'Removal of other device from trunk', 'ICD9CM_2010'), +('97.88', 'Removal of external immobilization device', 'ICD9CM_2010'), +('97.89', 'Removal of other therapeutic device', 'ICD9CM_2010'), +('98', 'Nonoperative removal of foreign body or calculus', 'ICD9CM_2010'), +('98.0', 'Removal of intraluminal foreign body from digestive system without incision', 'ICD9CM_2010'), +('98.01', 'Removal of intraluminal foreign body from mouth without incision', 'ICD9CM_2010'), +('98.02', 'Removal of intraluminal foreign body from esophagus without incision', 'ICD9CM_2010'), +('98.03', 'Removal of intraluminal foreign body from stomach and small intestine without incision', 'ICD9CM_2010'), +('98.04', 'Removal of intraluminal foreign body from large intestine without incision', 'ICD9CM_2010'), +('98.05', 'Removal of intraluminal foreign body from rectum and anus without incision', 'ICD9CM_2010'), +('98.1', 'Removal of intraluminal foreign body from other sites without incision', 'ICD9CM_2010'), +('98.11', 'Removal of intraluminal foreign body from ear without incision', 'ICD9CM_2010'), +('98.12', 'Removal of intraluminal foreign body from nose without incision', 'ICD9CM_2010'), +('98.13', 'Removal of intraluminal foreign body from pharynx without incision', 'ICD9CM_2010'), +('98.14', 'Removal of intraluminal foreign body from larynx without incision', 'ICD9CM_2010'), +('98.15', 'Removal of intraluminal foreign body from trachea and bronchus without incision', 'ICD9CM_2010'), +('98.16', 'Removal of intraluminal foreign body from uterus without incision', 'ICD9CM_2010'), +('98.17', 'Removal of intraluminal foreign body from vagina without incision', 'ICD9CM_2010'), +('98.18', 'Removal of intraluminal foreign body from artificial stoma without incision', 'ICD9CM_2010'), +('98.19', 'Removal of intraluminal foreign body from urethra without incision', 'ICD9CM_2010'), +('98.2', 'Removal of other foreign body without incision', 'ICD9CM_2010'), +('98.20', 'Removal of foreign body, not otherwise specified', 'ICD9CM_2010'), +('98.21', 'Removal of superficial foreign body from eye without incision', 'ICD9CM_2010'), +('98.22', 'Removal of other foreign body without incision from head and neck', 'ICD9CM_2010'), +('98.23', 'Removal of foreign body from vulva without incision', 'ICD9CM_2010'), +('98.24', 'Removal of foreign body from scrotum or penis without incision', 'ICD9CM_2010'), +('98.25', 'Removal of other foreign body without incision from trunk except scrotum,penis, or vulva', 'ICD9CM_2010'), +('98.26', 'Removal of foreign body from hand without incision', 'ICD9CM_2010'), +('98.27', 'Removal of foreign body without incision from upper limb, except hand', 'ICD9CM_2010'), +('98.28', 'Removal of foreign body from foot without incision', 'ICD9CM_2010'), +('98.29', 'Removal of foreign body without incision from lower limb, except foot', 'ICD9CM_2010'), +('98.5', 'Extracorporeal shockwave lithotripsy (ESWL)', 'ICD9CM_2010'), +('98.51', 'Extracorporeal shockwave lithotripsy (ESWL) of the kidney, ureter and/or bladder', 'ICD9CM_2010'), +('98.52', 'Extracorporeal shockwave lithotripsy (ESWL) of the gallbladder and/or bile duct', 'ICD9CM_2010'), +('98.59', 'Extracorporeal shockwave lithotripsy (ESWL) of other sites', 'ICD9CM_2010'), +('99', 'Other nonoperative procedures', 'ICD9CM_2010'), +('99.0', 'Transfusion of blood and blood components', 'ICD9CM_2010'), +('99.00', 'Perioperative autologous transfusion of whole blood or blood components', 'ICD9CM_2010'), +('99.01', 'Exchange transfusion', 'ICD9CM_2010'), +('99.02', 'Transfusion of previously collected autologous blood', 'ICD9CM_2010'), +('99.03', 'Other transfusion of whole blood', 'ICD9CM_2010'), +('99.04', 'Transfusion of packed cells', 'ICD9CM_2010'), +('99.05', 'Transfusion of platelets', 'ICD9CM_2010'), +('99.06', 'Transfusion of coagulation factors', 'ICD9CM_2010'), +('99.07', 'Transfusion of other serum', 'ICD9CM_2010'), +('99.08', 'Transfusion of blood expander', 'ICD9CM_2010'), +('99.09', 'Transfusion of other substance', 'ICD9CM_2010'), +('99.1', 'Injection or infusion of therapeutic or prophylactic substance', 'ICD9CM_2010'), +('99.10', 'Injection or infusion of thrombolytic agent', 'ICD9CM_2010'), +('99.11', 'Injection of Rh immune globulin', 'ICD9CM_2010'), +('99.12', 'Immunization for allergy', 'ICD9CM_2010'), +('99.13', 'Immunization for autoimmune disease', 'ICD9CM_2010'), +('99.14', 'Injection or infusion of gamma globulin', 'ICD9CM_2010'), +('99.15', 'Parenteral infusion of concentrated nutritional substances', 'ICD9CM_2010'), +('99.16', 'Injection of antidote', 'ICD9CM_2010'), +('99.17', 'Injection of insulin', 'ICD9CM_2010'), +('99.18', 'Injection or infusion of electrolytes', 'ICD9CM_2010'), +('99.19', 'Injection of anticoagulant', 'ICD9CM_2010'), +('99.2', 'Injection or infusion of other therapeutic or prophylactic substance', 'ICD9CM_2010'), +('99.20', 'Injection or infusion of platelet inhibitor', 'ICD9CM_2010'), +('99.21', 'Injection of antibiotic', 'ICD9CM_2010'), +('99.22', 'Injection of other anti-infective', 'ICD9CM_2010'), +('99.23', 'Injection of steroid', 'ICD9CM_2010'), +('99.24', 'Injection of other hormone', 'ICD9CM_2010'), +('99.25', 'Injection or infusion of cancer chemotherapeutic substance', 'ICD9CM_2010'), +('99.26', 'Injection of tranquilizer', 'ICD9CM_2010'), +('99.27', 'Iontophoresis', 'ICD9CM_2010'), +('99.28', 'Injection or infusion of biological response modifier [BRM] as an antineoplastic agent', 'ICD9CM_2010'), +('99.29', 'Injection or infusion of other therapeutic or prophylactic substance', 'ICD9CM_2010'), +('99.3', 'Prophylactic vaccination and inoculation against certain bacterial disease', 'ICD9CM_2010'), +('99.31', 'Vaccination against cholera', 'ICD9CM_2010'), +('99.32', 'Vaccination against typhoid and paratyphoid fever', 'ICD9CM_2010'), +('99.33', 'Vaccination against tuberculosis', 'ICD9CM_2010'), +('99.34', 'Vaccination against plague', 'ICD9CM_2010'), +('99.35', 'Vaccination against tularemia', 'ICD9CM_2010'), +('99.36', 'Administration of diphtheria toxoid', 'ICD9CM_2010'), +('99.37', 'Vaccination against pertussis', 'ICD9CM_2010'), +('99.38', 'Administration of tetanus toxoid', 'ICD9CM_2010'), +('99.39', 'Administration of diphtheria-tetanus-pertussis, combined', 'ICD9CM_2010'), +('99.4', 'Prophylactic vaccination and inoculation against certain viral diseases', 'ICD9CM_2010'), +('99.41', 'Administration of poliomyelitis vaccine', 'ICD9CM_2010'), +('99.42', 'Vaccination against smallpox', 'ICD9CM_2010'), +('99.43', 'Vaccination against yellow fever', 'ICD9CM_2010'), +('99.44', 'Vaccination against rabies', 'ICD9CM_2010'), +('99.45', 'Vaccination against measles', 'ICD9CM_2010'), +('99.46', 'Vaccination against mumps', 'ICD9CM_2010'), +('99.47', 'Vaccination against rubella', 'ICD9CM_2010'), +('99.48', 'Administration of measles-mumps-rubella vaccine', 'ICD9CM_2010'), +('99.5', 'Other vaccination and inoculation', 'ICD9CM_2010'), +('99.51', 'Prophylactic vaccination against the common cold', 'ICD9CM_2010'), +('99.52', 'Prophylactic vaccination against influenza', 'ICD9CM_2010'), +('99.53', 'Prophylactic vaccination against arthropod-borne viral encephalitis', 'ICD9CM_2010'), +('99.54', 'Prophylactic vaccination against other arthropod- borne viral diseases', 'ICD9CM_2010'), +('99.55', 'Prophylactic administration of vaccine against other diseases', 'ICD9CM_2010'), +('99.56', 'Administration of tetanus antitoxin', 'ICD9CM_2010'), +('99.57', 'Administration of botulism antitoxin', 'ICD9CM_2010'), +('99.58', 'Administration of other antitoxins', 'ICD9CM_2010'), +('99.59', 'Other vaccination and inoculation', 'ICD9CM_2010'), +('99.6', 'Conversion of cardiac rhythm', 'ICD9CM_2010'), +('99.60', 'Cardiopulmonary resuscitation, not otherwise specified', 'ICD9CM_2010'), +('99.61', 'Atrial cardioversion', 'ICD9CM_2010'), +('99.62', 'Other electric countershock of heart', 'ICD9CM_2010'), +('99.63', 'Closed chest cardiac massage', 'ICD9CM_2010'), +('99.64', 'Carotid sinus stimulation', 'ICD9CM_2010'), +('99.69', 'Other conversion of cardiac rhythm', 'ICD9CM_2010'), +('99.7', 'Therapeutic apheresis or other injection, administration, or infusion of other therapeutic or prophylactic substances', 'ICD9CM_2010'), +('99.71', 'Therapeutic plasmapheresis', 'ICD9CM_2010'), +('99.72', 'Therapeutic leukopheresis', 'ICD9CM_2010'), +('99.73', 'Therapeutic erythrocytapheresis', 'ICD9CM_2010'), +('99.74', 'Therapeutic plateletpheresis', 'ICD9CM_2010'), +('99.75', 'Administration of neuroprotective agent', 'ICD9CM_2010'), +('99.76', 'Extracorporeal immunoadsorption', 'ICD9CM_2010'), +('99.77', 'Application or administration of adhesion barrier sucstance', 'ICD9CM_2010'), +('99.78', 'Aquapheresis', 'ICD9CM_2010'), +('99.79', 'Other', 'ICD9CM_2010'), +('99.8', 'Miscellaneous physical procedures', 'ICD9CM_2010'), +('99.81', 'Hypothermia (central) (local)', 'ICD9CM_2010'), +('99.82', 'Ultraviolet light therapy', 'ICD9CM_2010'), +('99.83', 'Other phototherapy', 'ICD9CM_2010'), +('99.84', 'Isolation', 'ICD9CM_2010'), +('99.85', 'Hyperthermia for treatment of cancer', 'ICD9CM_2010'), +('99.86', 'Non-invasive placement of bone growth stimulator', 'ICD9CM_2010'), +('99.88', 'Therapeutic photopheresis', 'ICD9CM_2010'), +('99.9', 'Other miscellaneous procedures', 'ICD9CM_2010'), +('99.91', 'Acupuncture for anesthesia', 'ICD9CM_2010'), +('99.92', 'Other acupuncture', 'ICD9CM_2010'), +('99.93', 'Rectal massage (for levator spasm)', 'ICD9CM_2010'), +('99.94', 'Prostatic massage', 'ICD9CM_2010'), +('99.95', 'Stretching of foreskin', 'ICD9CM_2010'), +('99.96', 'Collection of sperm for artificial insemination', 'ICD9CM_2010'), +('99.97', 'Fitting of denture', 'ICD9CM_2010'), +('99.98', 'Extraction of milk from lactating breast', 'ICD9CM_2010'), +('99.99', 'Other', 'ICD9CM_2010'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `icd10` +-- + +CREATE TABLE `icd10` ( + `ID_ICD10` varchar(20) NOT NULL, + `Diagnosa` varchar(150) DEFAULT NULL, + `Versi_ICD10` varchar(20) DEFAULT NULL +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; + +-- +-- Dumping data for table `icd10` +-- + +INSERT INTO `icd10` (`ID_ICD10`, `Diagnosa`, `Versi_ICD10`) VALUES +('A00', 'Cholera', 'ICD10_2010'), +('A00.0', 'Cholera due to vibrio cholerae 01, biovar cholerae', 'ICD10_2010'), +('A00.1', 'Cholera due to vibrio cholerae 01, biovar eltor', 'ICD10_2010'), +('A00.9', 'Cholera, unspecified', 'ICD10_2010'), +('A01', 'Typhoid and paratyphoid fevers', 'ICD10_2010'), +('A01.0', 'Typhoid fever', 'ICD10_2010'), +('A01.1', 'Paratyphoid fever a', 'ICD10_2010'), +('A01.2', 'Paratyphoid fever b', 'ICD10_2010'), +('A01.3', 'Paratyphoid fever c', 'ICD10_2010'), +('A01.4', 'Paratyphoid fever, unspecified', 'ICD10_2010'), +('A02', 'Other salmonella infections', 'ICD10_2010'), +('A02.0', 'Salmonella enteritis', 'ICD10_2010'), +('A02.1', 'Salmonella septicaemia', 'ICD10_2010'), +('A02.2', 'Localized salmonella infections', 'ICD10_2010'), +('A02.8', 'Other specified salmonella infections', 'ICD10_2010'), +('A02.9', 'Salmonella infection, unspecified', 'ICD10_2010'), +('A03', 'Shigellosis', 'ICD10_2010'), +('A03.0', 'Shigellosis due to shigella dysenteriae', 'ICD10_2010'), +('A03.1', 'Shigellosis due to shigella flexneri', 'ICD10_2010'), +('A03.2', 'Shigellosis due to shigella boydii', 'ICD10_2010'), +('A03.3', 'Shigellosis due to shigella sonnei', 'ICD10_2010'), +('A03.8', 'Other shigellosis', 'ICD10_2010'), +('A03.9', 'Shigellosis, unspecified', 'ICD10_2010'), +('A04', 'Other bacterial intestinal infections', 'ICD10_2010'), +('A04.0', 'Enteropathogenic escherichia coli infection', 'ICD10_2010'), +('A04.1', 'Enterotoxigenic escherichia coli infection', 'ICD10_2010'), +('A04.2', 'Enteroinvasive escherichia coli infection', 'ICD10_2010'), +('A04.3', 'Enterohaemorrhagic escherichia coli infection', 'ICD10_2010'), +('A04.4', 'Other intestinal escherichia coli infections', 'ICD10_2010'), +('A04.5', 'Campylobacter enteritis', 'ICD10_2010'), +('A04.6', 'Enteritis due to yersinia enterocolitica', 'ICD10_2010'), +('A04.7', 'Enterocolitis due to clostridium difficile', 'ICD10_2010'), +('A04.8', 'Other specified bacterial intestinal infections', 'ICD10_2010'), +('A04.9', 'Bacterial intestinal infection, unspecified', 'ICD10_2010'), +('A05', 'Other bacterial foodborne intoxications, not elsewhere classified', 'ICD10_2010'), +('A05.0', 'Foodborne staphylococcal intoxication', 'ICD10_2010'), +('A05.1', 'Botulism', 'ICD10_2010'), +('A05.2', 'Foodborne clostridium perfringens intoxication', 'ICD10_2010'), +('A05.3', 'Foodborne vibrio parahaemolyticus intoxication', 'ICD10_2010'), +('A05.4', 'Foodborne bacillus cereus intoxication', 'ICD10_2010'), +('A05.8', 'Other specified bacterial foodborne intoxications', 'ICD10_2010'), +('A05.9', 'Bacterial foodborne intoxication, unspecified', 'ICD10_2010'), +('A06', 'Amoebiasis', 'ICD10_2010'), +('A06.0', 'Acute amoebic dysentery', 'ICD10_2010'), +('A06.1', 'Chronic intestinal amoebiasis', 'ICD10_2010'), +('A06.2', 'Amoebic nondysenteric colitis', 'ICD10_2010'), +('A06.3', 'Amoeboma of intestine', 'ICD10_2010'), +('A06.4', 'Amoebic liver abscess', 'ICD10_2010'), +('A06.5', 'Amoebic lung abscess', 'ICD10_2010'), +('A06.6', 'Amoebic brain abscess', 'ICD10_2010'), +('A06.7', 'Cutaneous amoebiasis', 'ICD10_2010'), +('A06.8', 'Amoebic infection of other sites', 'ICD10_2010'), +('A06.9', 'Amoebiasis, unspecified', 'ICD10_2010'), +('A07', 'Other protozoal intestinal diseases', 'ICD10_2010'), +('A07.0', 'Balantidiasis', 'ICD10_2010'), +('A07.1', 'Giardiasis [lambliasis]', 'ICD10_2010'), +('A07.2', 'Cryptosporidiosis', 'ICD10_2010'), +('A07.3', 'Isosporiasis', 'ICD10_2010'), +('A07.8', 'Other specified protozoal intestinal diseases', 'ICD10_2010'), +('A07.9', 'Protozoal intestinal disease, unspecified', 'ICD10_2010'), +('A08', 'Viral and other specified intestinal infections', 'ICD10_2010'), +('A08.0', 'Rotaviral enteritis', 'ICD10_2010'), +('A08.1', 'Acute gastroenteropathy due to norwalk agent', 'ICD10_2010'), +('A08.2', 'Adenoviral enteritis', 'ICD10_2010'), +('A08.3', 'Other viral enteritis', 'ICD10_2010'), +('A08.4', 'Viral intestinal infection, unspecified', 'ICD10_2010'), +('A08.5', 'Other specified intestinal infections', 'ICD10_2010'), +('A09', 'Diarrhoea and gastroenteritis of presumed infectious origin', 'ICD10_2010'), +('A09.0', 'Other and unspecified gastroenteritis and colitis of infectious origin', 'ICD10_2010'), +('A09.9', 'Gastroenteritis and colitis of unspecified origin', 'ICD10_2010'), +('A15', 'Respiratory tuberculosis, bacteriologically and histologically confirmed', 'ICD10_2010'), +('A15.0', 'Tb lung confirm sputum microscopy with or without culture', 'ICD10_2010'), +('A15.1', 'Tuberculosis of lung, confirmed by culture only', 'ICD10_2010'), +('A15.2', 'Tuberculosis of lung, confirmed histologically', 'ICD10_2010'), +('A15.3', 'Tuberculosis of lung, confirmed by unspecified means', 'ICD10_2010'), +('A15.4', 'Tb intrathoracic lymph nodes confirm bact histologically', 'ICD10_2010'), +('A15.5', 'Tuberculosis of larynx, trachea & bronchus conf bact/hist\'y', 'ICD10_2010'), +('A15.6', 'Tuberculous pleurisy, conf bacteriologically/his\'y', 'ICD10_2010'), +('A15.7', 'Primary respiratory tb confirm bact and histologically', 'ICD10_2010'), +('A15.8', 'Other respiratory tb confirm bact and histologically', 'ICD10_2010'), +('A15.9', 'Respiratory tb unspec confirm bact and histologically', 'ICD10_2010'), +('A16', 'Respiratory tuberculosis, not confirmed bacteriologically or histologically', 'ICD10_2010'), +('A16.0', 'Tuberculosis of lung, bacteriologically & histolog\'y neg', 'ICD10_2010'), +('A16.1', 'Tuberculosis lung bact and histological examin not done', 'ICD10_2010'), +('A16.2', 'Tb lung without mention of bact or histological confirm', 'ICD10_2010'), +('A16.3', 'Tb intrathoracic lymph node without bact or hist confirm', 'ICD10_2010'), +('A16.4', 'Tb larynx trachea and bronchus without bact or hist confirm', 'ICD10_2010'), +('A16.5', 'Tb pleurisy without mention of bact or histological confirm', 'ICD10_2010'), +('A16.7', 'Prim respiratory tb without mention of bact or hist confirm', 'ICD10_2010'), +('A16.8', 'Oth respiratory tb without mention of bact or hist confirm', 'ICD10_2010'), +('A16.9', 'Resp tb unspec without mention of bact or hist confirm', 'ICD10_2010'), +('A17', 'Tuberculosis of nervous system', 'ICD10_2010'), +('A17.0', 'Tuberculous meningitis', 'ICD10_2010'), +('A17.1', 'Meningeal tuberculoma', 'ICD10_2010'), +('A17.8', 'Other tuberculosis of nervous system', 'ICD10_2010'), +('A17.9', 'Tuberculosis of nervous system unspecified', 'ICD10_2010'), +('A18', 'Tuberculosis of other organs', 'ICD10_2010'), +('A18.0', 'Tuberculosis of bones and joints', 'ICD10_2010'), +('A18.1', 'Tuberculosis of genitourinary system', 'ICD10_2010'), +('A18.2', 'Tuberculous peripheral lymphadenopathy', 'ICD10_2010'), +('A18.3', 'Tuberculosis of intestines, peritoneum and mesenteric glands', 'ICD10_2010'), +('A18.4', 'Tuberculosis of skin and subcutaneous tissue', 'ICD10_2010'), +('A18.5', 'Tuberculosis of eye', 'ICD10_2010'), +('A18.6', 'Tuberculosis of ear', 'ICD10_2010'), +('A18.7', 'Tuberculosis of adrenal glands', 'ICD10_2010'), +('A18.8', 'Tuberculosis of other specified organs', 'ICD10_2010'), +('A19', 'Miliary tuberculosis', 'ICD10_2010'), +('A19.0', 'Acute miliary tuberculosis of a single specified site', 'ICD10_2010'), +('A19.1', 'Acute miliary tuberculosis of multiple sites', 'ICD10_2010'), +('A19.2', 'Acute miliary tuberculosis, unspecified', 'ICD10_2010'), +('A19.8', 'Other miliary tuberculosis', 'ICD10_2010'), +('A19.9', 'Miliary tuberculosis, unspecified', 'ICD10_2010'), +('A20', 'Plague', 'ICD10_2010'), +('A20.0', 'Bubonic plague', 'ICD10_2010'), +('A20.1', 'Cellulocutaneous plague', 'ICD10_2010'), +('A20.2', 'Pneumonic plague', 'ICD10_2010'), +('A20.3', 'Plague meningitis', 'ICD10_2010'), +('A20.7', 'Septicaemic plague', 'ICD10_2010'), +('A20.8', 'Other forms of plague', 'ICD10_2010'), +('A20.9', 'Plague, unspecified', 'ICD10_2010'), +('A21', 'Tularaemia', 'ICD10_2010'), +('A21.0', 'Ulceroglandular tularaemia', 'ICD10_2010'), +('A21.1', 'Oculoglandular tularaemia', 'ICD10_2010'), +('A21.2', 'Pulmonary tularaemia', 'ICD10_2010'), +('A21.3', 'Gastrointestinal tularaemia', 'ICD10_2010'), +('A21.7', 'Generalized tularaemia', 'ICD10_2010'), +('A21.8', 'Other forms of tularaemia', 'ICD10_2010'), +('A21.9', 'Tularaemia, unspecified', 'ICD10_2010'), +('A22', 'Anthrax', 'ICD10_2010'), +('A22.0', 'Cutaneous anthrax', 'ICD10_2010'), +('A22.1', 'Pulmonary anthrax', 'ICD10_2010'), +('A22.2', 'Gastrointestinal anthrax', 'ICD10_2010'), +('A22.7', 'Anthrax septicaemia', 'ICD10_2010'), +('A22.8', 'Other forms of anthrax', 'ICD10_2010'), +('A22.9', 'Anthrax, unspecified', 'ICD10_2010'), +('A23', 'Brucellosis', 'ICD10_2010'), +('A23.0', 'Brucellosis due to brucella melitensis', 'ICD10_2010'), +('A23.1', 'Brucellosis due to brucella abortus', 'ICD10_2010'), +('A23.2', 'Brucellosis due to brucella suis', 'ICD10_2010'), +('A23.3', 'Brucellosis due to brucella canis', 'ICD10_2010'), +('A23.8', 'Other brucellosis', 'ICD10_2010'), +('A23.9', 'Brucellosis, unspecified', 'ICD10_2010'), +('A24', 'Glanders and melioidosis', 'ICD10_2010'), +('A24.0', 'Glanders', 'ICD10_2010'), +('A24.1', 'Acute and fulminating melioidosis', 'ICD10_2010'), +('A24.2', 'Subacute and chronic melioidosis', 'ICD10_2010'), +('A24.3', 'Other melioidosis', 'ICD10_2010'), +('A24.4', 'Melioidosis, unspecified', 'ICD10_2010'), +('A25', 'Rat-bite fevers', 'ICD10_2010'), +('A25.0', 'Spirillosis', 'ICD10_2010'), +('A25.1', 'Streptobacillosis', 'ICD10_2010'), +('A25.9', 'Rat-bite fever, unspecified', 'ICD10_2010'), +('A26', 'Erysipeloid', 'ICD10_2010'), +('A26.0', 'Cutaneous erysipeloid', 'ICD10_2010'), +('A26.7', 'Erysipelothrix septicaemia', 'ICD10_2010'), +('A26.8', 'Other forms of erysipeloid', 'ICD10_2010'), +('A26.9', 'Erysipeloid, unspecified', 'ICD10_2010'), +('A27', 'Leptospirosis', 'ICD10_2010'), +('A27.0', 'Leptospirosis icterohaemorrhagica', 'ICD10_2010'), +('A27.8', 'Other forms of leptospirosis', 'ICD10_2010'), +('A27.9', 'Leptospirosis, unspecified', 'ICD10_2010'), +('A28', 'Other zoonotic bacterial diseases, not elsewhere classified', 'ICD10_2010'), +('A28.0', 'Pasteurellosis', 'ICD10_2010'), +('A28.1', 'Cat-scratch disease', 'ICD10_2010'), +('A28.2', 'Extraintestinal yersiniosis', 'ICD10_2010'), +('A28.8', 'Other specified zoonotic bacterial diseases nec', 'ICD10_2010'), +('A28.9', 'Zoonotic bacterial disease, unspecified', 'ICD10_2010'), +('A30', 'Leprosy [Hansen disease]', 'ICD10_2010'), +('A30.0', 'Indeterminate leprosy', 'ICD10_2010'), +('A30.1', 'Tuberculoid leprosy', 'ICD10_2010'), +('A30.2', 'Borderline tuberculoid leprosy', 'ICD10_2010'), +('A30.3', 'Borderline leprosy', 'ICD10_2010'), +('A30.4', 'Borderline lepromatous leprosy', 'ICD10_2010'), +('A30.5', 'Lepromatous leprosy', 'ICD10_2010'), +('A30.8', 'Other forms of leprosy', 'ICD10_2010'), +('A30.9', 'Leprosy, unspecified', 'ICD10_2010'), +('A31', 'Infection due to other mycobacteria', 'ICD10_2010'), +('A31.0', 'Pulmonary mycobacterial infection', 'ICD10_2010'), +('A31.1', 'Cutaneous mycobacterial infection', 'ICD10_2010'), +('A31.8', 'Other mycobacterial infections', 'ICD10_2010'), +('A31.9', 'Mycobacterial infection, unspecified', 'ICD10_2010'), +('A32', 'Listeriosis', 'ICD10_2010'), +('A32.0', 'Cutaneous listeriosis', 'ICD10_2010'), +('A32.1', 'Listerial meningitis and meningoencephalitis', 'ICD10_2010'), +('A32.7', 'Listerial septicaemia', 'ICD10_2010'), +('A32.8', 'Other forms of listeriosis', 'ICD10_2010'), +('A32.9', 'Listeriosis, unspecified', 'ICD10_2010'), +('A33', 'Tetanus neonatorum', 'ICD10_2010'), +('A34', 'Obstetrical tetanus', 'ICD10_2010'), +('A35', 'Other tetanus', 'ICD10_2010'), +('A36', 'Diphtheria', 'ICD10_2010'), +('A36.0', 'Pharyngeal diphtheria', 'ICD10_2010'), +('A36.1', 'Nasopharyngeal diphtheria', 'ICD10_2010'), +('A36.2', 'Laryngeal diphtheria', 'ICD10_2010'), +('A36.3', 'Cutaneous diphtheria', 'ICD10_2010'), +('A36.8', 'Other diphtheria', 'ICD10_2010'), +('A36.9', 'Diphtheria, unspecified', 'ICD10_2010'), +('A37', 'Whooping cough', 'ICD10_2010'), +('A37.0', 'Whooping cough due to bordetella pertussis', 'ICD10_2010'), +('A37.1', 'Whooping cough due to bordetella parapertussis', 'ICD10_2010'), +('A37.8', 'Whooping cough due to other bordetella species', 'ICD10_2010'), +('A37.9', 'Whooping cough, unspecified', 'ICD10_2010'), +('A38', 'Scarlet fever', 'ICD10_2010'), +('A39', 'Meningococcal infection', 'ICD10_2010'), +('A39.0', 'Meningococcal meningitis', 'ICD10_2010'), +('A39.1', 'Waterhouse-friderichsen syndrome', 'ICD10_2010'), +('A39.2', 'Acute meningococcaemia', 'ICD10_2010'), +('A39.3', 'Chronic meningococcaemia', 'ICD10_2010'), +('A39.4', 'Meningococcaemia, unspecified', 'ICD10_2010'), +('A39.5', 'Meningococcal heart disease', 'ICD10_2010'), +('A39.8', 'Other meningococcal infections', 'ICD10_2010'), +('A39.9', 'Meningococcal infection, unspecified', 'ICD10_2010'), +('A40', 'Streptococcal sepsis', 'ICD10_2010'), +('A40.0', 'Septicaemia due to streptococcus, group a', 'ICD10_2010'), +('A40.1', 'Septicaemia due to streptococcus, group b', 'ICD10_2010'), +('A40.2', 'Septicaemia due to streptococcus, group d', 'ICD10_2010'), +('A40.3', 'Septicaemia due to streptococcus pneumoniae', 'ICD10_2010'), +('A40.8', 'Other streptococcal septicaemia', 'ICD10_2010'), +('A40.9', 'Streptococcal septicaemia, unspecified', 'ICD10_2010'), +('A41', 'Other sepsis', 'ICD10_2010'), +('A41.0', 'Septicaemia due to staphylococcus aureus', 'ICD10_2010'), +('A41.1', 'Septicaemia due to other specified staphylococcus', 'ICD10_2010'), +('A41.2', 'Septicaemia due to unspecified staphylococcus', 'ICD10_2010'), +('A41.3', 'Septicaemia due to haemophilus influenzae', 'ICD10_2010'), +('A41.4', 'Septicaemia due to anaerobes', 'ICD10_2010'), +('A41.5', 'Septicaemia due to other gram-negative organisms', 'ICD10_2010'), +('A41.8', 'Other specified septicaemia', 'ICD10_2010'), +('A41.9', 'Septicaemia, unspecified', 'ICD10_2010'), +('A42', 'Actinomycosis', 'ICD10_2010'), +('A42.0', 'Pulmonary actinomycosis', 'ICD10_2010'), +('A42.1', 'Abdominal actinomycosis', 'ICD10_2010'), +('A42.2', 'Cervicofacial actinomycosis', 'ICD10_2010'), +('A42.7', 'Actinomycotic septicaemia', 'ICD10_2010'), +('A42.8', 'Other forms of actinomycosis', 'ICD10_2010'), +('A42.9', 'Actinomycosis, unspecified', 'ICD10_2010'), +('A43', 'Nocardiosis', 'ICD10_2010'), +('A43.0', 'Pulmonary nocardiosis', 'ICD10_2010'), +('A43.1', 'Cutaneous nocardiosis', 'ICD10_2010'), +('A43.8', 'Other forms of nocardiosis', 'ICD10_2010'), +('A43.9', 'Nocardiosis, unspecified', 'ICD10_2010'), +('A44', 'Bartonellosis', 'ICD10_2010'), +('A44.0', 'Systemic bartonellosis', 'ICD10_2010'), +('A44.1', 'Cutaneous and mucocutaneous bartonellosis', 'ICD10_2010'), +('A44.8', 'Other forms of bartonellosis', 'ICD10_2010'), +('A44.9', 'Bartonellosis, unspecified', 'ICD10_2010'), +('A46', 'Erysipelas', 'ICD10_2010'), +('A48', 'Other bacterial diseases, not elsewhere classified', 'ICD10_2010'), +('A48.0', 'Gas gangrene', 'ICD10_2010'), +('A48.1', 'Legionnaires\' disease', 'ICD10_2010'), +('A48.2', 'Nonpneumonic legionnaires\' disease [pontiac fever]', 'ICD10_2010'), +('A48.3', 'Toxic shock syndrome', 'ICD10_2010'), +('A48.4', 'Brazilian purpuric fever', 'ICD10_2010'), +('A48.8', 'Other specified bacterial diseases', 'ICD10_2010'), +('A49', 'Bacterial infection of unspecified site', 'ICD10_2010'), +('A49.0', 'Staphylococcal infection, unspecified', 'ICD10_2010'), +('A49.1', 'Streptococcal infection, unspecified', 'ICD10_2010'), +('A49.2', 'Haemophilus influenzae infection, unspecified', 'ICD10_2010'), +('A49.3', 'Mycoplasma infection, unspecified', 'ICD10_2010'), +('A49.8', 'Other bacterial infections of unspecified site', 'ICD10_2010'), +('A49.9', 'Bacterial infection, unspecified', 'ICD10_2010'), +('A50', 'Congenital syphilis', 'ICD10_2010'), +('A50.0', 'Early congenital syphilis, symptomatic', 'ICD10_2010'), +('A50.1', 'Early congenital syphilis, latent', 'ICD10_2010'), +('A50.2', 'Early congenital syphilis, unspecified', 'ICD10_2010'), +('A50.3', 'Late congenital syphilitic oculopathy', 'ICD10_2010'), +('A50.4', 'Late congenital neurosyphilis [juvenile neurosyphilis]', 'ICD10_2010'), +('A50.5', 'Other late congenital syphilis, symptomatic', 'ICD10_2010'), +('A50.6', 'Late congenital syphilis, latent', 'ICD10_2010'), +('A50.7', 'Late congenital syphilis, unspecified', 'ICD10_2010'), +('A50.9', 'Congenital syphilis, unspecified', 'ICD10_2010'), +('A51', 'Early syphilis', 'ICD10_2010'), +('A51.0', 'Primary genital syphilis', 'ICD10_2010'), +('A51.1', 'Primary anal syphilis', 'ICD10_2010'), +('A51.2', 'Primary syphilis of other sites', 'ICD10_2010'), +('A51.3', 'Secondary syphilis of skin and mucous membranes', 'ICD10_2010'), +('A51.4', 'Other secondary syphilis', 'ICD10_2010'), +('A51.5', 'Early syphilis, latent', 'ICD10_2010'), +('A51.9', 'Early syphilis, unspecified', 'ICD10_2010'), +('A52', 'Late syphilis', 'ICD10_2010'), +('A52.0', 'Cardiovascular syphilis', 'ICD10_2010'), +('A52.1', 'Symptomatic neurosyphilis', 'ICD10_2010'), +('A52.2', 'Asymptomatic neurosyphilis', 'ICD10_2010'), +('A52.3', 'Neurosyphilis, unspecified', 'ICD10_2010'), +('A52.7', 'Other symptomatic late syphilis', 'ICD10_2010'), +('A52.8', 'Late syphilis, latent', 'ICD10_2010'), +('A52.9', 'Late syphilis, unspecified', 'ICD10_2010'), +('A53', 'Other and unspecified syphilis', 'ICD10_2010'), +('A53.0', 'Latent syphilis, unspecified as early or late', 'ICD10_2010'), +('A53.9', 'Syphilis, unspecified', 'ICD10_2010'), +('A54', 'Gonococcal infection', 'ICD10_2010'), +('A54.0', 'Gonococcal infection lower genitourinary tract without periurethral / accessory gland abscess', 'ICD10_2010'), +('A54.1', 'Gonococcal infection lower genitourinary tract with periurethral / accessory gland abscess', 'ICD10_2010'), +('A54.2', 'Gonococcal pelviperitonitis and other gonococcal genitourinary infections', 'ICD10_2010'), +('A54.3', 'Gonococcal infection of eye', 'ICD10_2010'), +('A54.4', 'Gonococcal infection of musculoskeletal system', 'ICD10_2010'), +('A54.5', 'Gonococcal pharyngitis', 'ICD10_2010'), +('A54.6', 'Gonococcal infection of anus and rectum', 'ICD10_2010'), +('A54.8', 'Other gonococcal infections', 'ICD10_2010'), +('A54.9', 'Gonococcal infection, unspecified', 'ICD10_2010'), +('A55', 'Chlamydial lymphogranuloma (venereum)', 'ICD10_2010'), +('A56', 'Other sexually transmitted chlamydial diseases', 'ICD10_2010'), +('A56.0', 'Chlamydial infection of lower genitourinary tract', 'ICD10_2010'), +('A56.1', 'Chlamydial infection of pelviperitoneum other genitourinary organs', 'ICD10_2010'), +('A56.2', 'Chlamydial infection of genitourinary tract, unspecified', 'ICD10_2010'), +('A56.3', 'Chlamydial infection of anus and rectum', 'ICD10_2010'), +('A56.4', 'Chlamydial infection of pharynx', 'ICD10_2010'), +('A56.8', 'Sexually transmitted chlamydial infection of other sites', 'ICD10_2010'), +('A57', 'Chancroid', 'ICD10_2010'), +('A58', 'Granuloma inguinale', 'ICD10_2010'), +('A59', 'Trichomoniasis', 'ICD10_2010'), +('A59.0', 'Urogenital trichomoniasis', 'ICD10_2010'), +('A59.8', 'Trichomoniasis of other sites', 'ICD10_2010'), +('A59.9', 'Trichomoniasis, unspecified', 'ICD10_2010'), +('A60', 'Anogenital herpesviral [herpes simplex] infection', 'ICD10_2010'), +('A60.0', 'Herpesviral infection of genitalia and urogenital tract', 'ICD10_2010'), +('A60.1', 'Herpesviral infection of perianal skin and rectum', 'ICD10_2010'), +('A60.9', 'Anogenital herpesviral infection, unspecified', 'ICD10_2010'), +('A63', 'Other predominantly sexually transmitted diseases, not elsewhere classified', 'ICD10_2010'), +('A63.0', 'Anogenital (venereal) warts', 'ICD10_2010'), +('A63.8', 'Other specified predominantly sexually transmitted diseases', 'ICD10_2010'), +('A64', 'Unspecified sexually transmitted disease', 'ICD10_2010'), +('A65', 'Nonvenereal syphilis', 'ICD10_2010'), +('A66', 'Yaws', 'ICD10_2010'), +('A66.0', 'Initial lesions of yaws', 'ICD10_2010'), +('A66.1', 'Multiple papillomata and wet crab yaws', 'ICD10_2010'), +('A66.2', 'Other early skin lesions of yaws', 'ICD10_2010'), +('A66.3', 'Hyperkeratosis of yaws', 'ICD10_2010'), +('A66.4', 'Gummata and ulcers of yaws', 'ICD10_2010'), +('A66.5', 'Gangosa', 'ICD10_2010'), +('A66.6', 'Bone and joint lesions of yaws', 'ICD10_2010'), +('A66.7', 'Other manifestations of yaws', 'ICD10_2010'), +('A66.8', 'Latent yaws', 'ICD10_2010'), +('A66.9', 'Yaws, unspecified', 'ICD10_2010'), +('A67', 'Pinta [carate]', 'ICD10_2010'), +('A67.0', 'Primary lesions of pinta', 'ICD10_2010'), +('A67.1', 'Intermediate lesions of pinta', 'ICD10_2010'), +('A67.2', 'Late lesions of pinta', 'ICD10_2010'), +('A67.3', 'Mixed lesions of pinta', 'ICD10_2010'), +('A67.9', 'Pinta, unspecified', 'ICD10_2010'), +('A68', 'Relapsing fevers', 'ICD10_2010'), +('A68.0', 'Louse-borne relapsing fever', 'ICD10_2010'), +('A68.1', 'Tick-borne relapsing fever', 'ICD10_2010'), +('A68.9', 'Relapsing fever, unspecified', 'ICD10_2010'), +('A69', 'Other spirochaetal infections', 'ICD10_2010'), +('A69.0', 'Necrotizing ulcerative stomatitis', 'ICD10_2010'), +('A69.1', 'Other vincent\'s infections', 'ICD10_2010'), +('A69.2', 'Lyme disease', 'ICD10_2010'), +('A69.8', 'Other specified spirochaetal infections', 'ICD10_2010'), +('A69.9', 'Spirochaetal infection, unspecified', 'ICD10_2010'), +('A70', 'Chlamydia psittaci infection', 'ICD10_2010'), +('A71', 'Trachoma', 'ICD10_2010'), +('A71.0', 'Initial stage of trachoma', 'ICD10_2010'), +('A71.1', 'Active stage of trachoma', 'ICD10_2010'), +('A71.9', 'Trachoma, unspecified', 'ICD10_2010'), +('A74', 'Other diseases caused by chlamydiae', 'ICD10_2010'), +('A74.0', 'Chlamydial conjunctivitis', 'ICD10_2010'), +('A74.8', 'Other chlamydial diseases', 'ICD10_2010'), +('A74.9', 'Chlamydial infection, unspecified', 'ICD10_2010'), +('A75', 'Typhus fever', 'ICD10_2010'), +('A75.0', 'Epidemic louse-borne typhus fever due to rickettsia prowazekii', 'ICD10_2010'), +('A75.1', 'Recrudescent typhus [brill\'s disease]', 'ICD10_2010'), +('A75.2', 'Typhus fever due to rickettsia typhi', 'ICD10_2010'), +('A75.3', 'Typhus fever due to rickettsia tsutsugamushi', 'ICD10_2010'), +('A75.9', 'Typhus fever, unspecified', 'ICD10_2010'), +('A77', 'Spotted fever [tick-borne rickettsioses]', 'ICD10_2010'), +('A77.0', 'Spotted fever due to rickettsia rickettsii', 'ICD10_2010'), +('A77.1', 'Spotted fever due to rickettsia conorii', 'ICD10_2010'), +('A77.2', 'Spotted fever due to rickettsia sibirica', 'ICD10_2010'), +('A77.3', 'Spotted fever due to rickettsia australis', 'ICD10_2010'), +('A77.8', 'Other spotted fevers', 'ICD10_2010'), +('A77.9', 'Spotted fever, unspecified', 'ICD10_2010'), +('A78', 'Q fever', 'ICD10_2010'), +('A79', 'Other rickettsioses', 'ICD10_2010'), +('A79.0', 'Trench fever', 'ICD10_2010'), +('A79.1', 'Rickettsialpox due to rickettsia akari', 'ICD10_2010'), +('A79.8', 'Other specified rickettsioses', 'ICD10_2010'), +('A79.9', 'Rickettsiosis, unspecified', 'ICD10_2010'), +('A80', 'Acute poliomyelitis', 'ICD10_2010'), +('A80.0', 'Acute paralytic poliomyelitis, vaccine-associated', 'ICD10_2010'), +('A80.1', 'Acute paralytic poliomyelitis, wild virus, imported', 'ICD10_2010'), +('A80.2', 'Acute paralytic poliomyelitis, wild virus, indigenous', 'ICD10_2010'), +('A80.3', 'Acute paralytic poliomyelitis, other and unspecified', 'ICD10_2010'), +('A80.4', 'Acute nonparalytic poliomyelitis', 'ICD10_2010'), +('A80.9', 'Acute poliomyelitis, unspecified', 'ICD10_2010'), +('A81', 'Atypical virus infections of central nervous system', 'ICD10_2010'), +('A81.0', 'Creutzfeldt-jakob disease', 'ICD10_2010'), +('A81.1', 'Subacute sclerosing panencephalitis', 'ICD10_2010'), +('A81.2', 'Progressive multifocal leukoencephalopathy', 'ICD10_2010'), +('A81.8', 'Other atypical virus infections of central nervous system', 'ICD10_2010'), +('A81.9', 'Atypical virus infection of central nervous system, unspecified', 'ICD10_2010'), +('A82', 'Rabies', 'ICD10_2010'), +('A82.0', 'Sylvatic rabies', 'ICD10_2010'), +('A82.1', 'Urban rabies', 'ICD10_2010'), +('A82.9', 'Rabies, unspecified', 'ICD10_2010'), +('A83', 'Mosquito-borne viral encephalitis', 'ICD10_2010'), +('A83.0', 'Japanese encephalitis', 'ICD10_2010'), +('A83.1', 'Western equine encephalitis', 'ICD10_2010'), +('A83.2', 'Eastern equine encephalitis', 'ICD10_2010'), +('A83.3', 'St louis encephalitis', 'ICD10_2010'), +('A83.4', 'Australian encephalitis', 'ICD10_2010'), +('A83.5', 'California encephalitis', 'ICD10_2010'), +('A83.6', 'Rocio virus disease', 'ICD10_2010'), +('A83.8', 'Other mosquito-borne viral encephalitis', 'ICD10_2010'), +('A83.9', 'Mosquito-borne viral encephalitis, unspecified', 'ICD10_2010'), +('A84', 'Tick-borne viral encephalitis', 'ICD10_2010'), +('A84.0', 'Far east tick-born enceph-russn spring-summ enceph', 'ICD10_2010'), +('A84.1', 'Central european tick-borne encephalitis', 'ICD10_2010'), +('A84.8', 'Other tick-borne viral encephalitis', 'ICD10_2010'), +('A84.9', 'Tick-borne viral encephalitis, unspecified', 'ICD10_2010'), +('A85', 'Other viral encephalitis, not elsewhere classified', 'ICD10_2010'), +('A85.0', 'Enteroviral encephalitis', 'ICD10_2010'), +('A85.1', 'Adenoviral encephalitis', 'ICD10_2010'), +('A85.2', 'Arthropod-borne viral encephalitis, unspecified', 'ICD10_2010'), +('A85.8', 'Other specified viral encephalitis', 'ICD10_2010'), +('A86', 'Unspecified viral encephalitis', 'ICD10_2010'), +('A87', 'Viral meningitis', 'ICD10_2010'), +('A87.0', 'Enteroviral meningitis', 'ICD10_2010'), +('A87.1', 'Adenoviral meningitis', 'ICD10_2010'), +('A87.2', 'Lymphocytic choriomeningitis', 'ICD10_2010'), +('A87.8', 'Other viral meningitis', 'ICD10_2010'), +('A87.9', 'Viral meningitis, unspecified', 'ICD10_2010'), +('A88', 'Other viral infections of central nervous system, not elsewhere classified', 'ICD10_2010'), +('A88.0', 'Enteroviral exanthematous fever [boston exanthem]', 'ICD10_2010'), +('A88.1', 'Epidemic vertigo', 'ICD10_2010'), +('A88.8', 'Other specified viral infections of central nervous system', 'ICD10_2010'), +('A89', 'Unspecified viral infection of central nervous system', 'ICD10_2010'), +('A90', 'Dengue fever [classical dengue]', 'ICD10_2010'), +('A91', 'Dengue haemorrhagic fever', 'ICD10_2010'), +('A92', 'Other mosquito-borne viral fevers', 'ICD10_2010'), +('A92.0', 'Chikungunya virus disease', 'ICD10_2010'), +('A92.1', 'O\'nyong-nyong fever', 'ICD10_2010'), +('A92.2', 'Venezuelan equine fever', 'ICD10_2010'), +('A92.3', 'West nile fever', 'ICD10_2010'), +('A92.4', 'Rift valley fever', 'ICD10_2010'), +('A92.8', 'Other specified mosquito-borne viral fevers', 'ICD10_2010'), +('A92.9', 'Mosquito-borne viral fever, unspecified', 'ICD10_2010'), +('A93', 'Other arthropod-borne viral fevers, not elsewhere classified', 'ICD10_2010'), +('A93.0', 'Oropouche virus disease', 'ICD10_2010'), +('A93.1', 'Sandfly fever', 'ICD10_2010'), +('A93.2', 'Colorado tick fever', 'ICD10_2010'), +('A93.8', 'Other specified arthropod-borne viral fevers', 'ICD10_2010'), +('A94', 'Unspecified arthropod-borne viral fever', 'ICD10_2010'), +('A95', 'Yellow fever', 'ICD10_2010'), +('A95.0', 'Sylvatic yellow fever', 'ICD10_2010'), +('A95.1', 'Urban yellow fever', 'ICD10_2010'), +('A95.9', 'Yellow fever, unspecified', 'ICD10_2010'), +('A96', 'Arenaviral haemorrhagic fever', 'ICD10_2010'), +('A96.0', 'Junin haemorrhagic fever', 'ICD10_2010'), +('A96.1', 'Machupo haemorrhagic fever', 'ICD10_2010'), +('A96.2', 'Lassa fever', 'ICD10_2010'), +('A96.8', 'Other arenaviral haemorrhagic fevers', 'ICD10_2010'), +('A96.9', 'Arenaviral haemorrhagic fever, unspecified', 'ICD10_2010'), +('A98', 'Other viral haemorrhagic fevers, not elsewhere classified', 'ICD10_2010'), +('A98.0', 'Crimean-congo haemorrhagic fever', 'ICD10_2010'), +('A98.1', 'Omsk haemorrhagic fever', 'ICD10_2010'), +('A98.2', 'Kyasanur forest disease', 'ICD10_2010'), +('A98.3', 'Marburg virus disease', 'ICD10_2010'), +('A98.4', 'Ebola virus disease', 'ICD10_2010'), +('A98.5', 'Haemorrhagic fever with renal syndrome', 'ICD10_2010'), +('A98.8', 'Other specified viral haemorrhagic fevers', 'ICD10_2010'), +('A99', 'Unspecified viral haemorrhagic fever', 'ICD10_2010'), +('B00', 'Herpesviral [herpes simplex] infections', 'ICD10_2010'), +('B00.0', 'Eczema herpeticum', 'ICD10_2010'), +('B00.1', 'Herpesviral vesicular dermatitis', 'ICD10_2010'), +('B00.2', 'Herpesviral gingivostomatitis and pharyngotonsillitis', 'ICD10_2010'), +('B00.3', 'Herpesviral meningitis', 'ICD10_2010'), +('B00.4', 'Herpesviral encephalitis', 'ICD10_2010'), +('B00.5', 'Herpesviral ocular disease', 'ICD10_2010'), +('B00.7', 'Disseminated herpesviral disease', 'ICD10_2010'), +('B00.8', 'Other forms of herpesviral infection', 'ICD10_2010'), +('B00.9', 'Herpesviral infection, unspecified', 'ICD10_2010'), +('B01', 'Varicella [chickenpox]', 'ICD10_2010'), +('B01.0', 'Varicella meningitis', 'ICD10_2010'), +('B01.1', 'Varicella encephalitis', 'ICD10_2010'), +('B01.2', 'Varicella pneumonia', 'ICD10_2010'), +('B01.8', 'Varicella with other complications', 'ICD10_2010'), +('B01.9', 'Varicella without complication', 'ICD10_2010'), +('B02', 'Zoster [herpes zoster]', 'ICD10_2010'), +('B02.0', 'Zoster encephalitis', 'ICD10_2010'), +('B02.1', 'Zoster meningitis', 'ICD10_2010'), +('B02.2', 'Zoster with other nervous system involvement', 'ICD10_2010'), +('B02.3', 'Zoster ocular disease', 'ICD10_2010'), +('B02.7', 'Disseminated zoster', 'ICD10_2010'), +('B02.8', 'Zoster with other complications', 'ICD10_2010'), +('B02.9', 'Zoster without complication', 'ICD10_2010'), +('B03', 'Smallpox', 'ICD10_2010'), +('B04', 'Monkeypox', 'ICD10_2010'), +('B05', 'Measles', 'ICD10_2010'), +('B05.0', 'Measles complicated by encephalitis', 'ICD10_2010'), +('B05.1', 'Measles complicated by meningitis', 'ICD10_2010'), +('B05.2', 'Measles complicated by pneumonia', 'ICD10_2010'), +('B05.3', 'Measles complicated by otitis media', 'ICD10_2010'), +('B05.4', 'Measles with intestinal complications', 'ICD10_2010'), +('B05.8', 'Measles with other complications', 'ICD10_2010'), +('B05.9', 'Measles without complication', 'ICD10_2010'), +('B06', 'Rubella [German measles]', 'ICD10_2010'), +('B06.0', 'Rubella with neurological complications', 'ICD10_2010'), +('B06.8', 'Rubella with other complications', 'ICD10_2010'), +('B06.9', 'Rubella without complication', 'ICD10_2010'), +('B07', 'Viral warts', 'ICD10_2010'), +('B08', 'Other viral infections characterized by skin and mucous membrane lesions, not elsewhere classified', 'ICD10_2010'), +('B08.0', 'Other orthopoxvirus infections', 'ICD10_2010'), +('B08.1', 'Molluscum contagiosum', 'ICD10_2010'), +('B08.2', 'Exanthema subitum [sixth disease]', 'ICD10_2010'), +('B08.3', 'Erythema infectiosum [fifth disease]', 'ICD10_2010'), +('B08.4', 'Enteroviral vesicular stomatitis with exanthem', 'ICD10_2010'), +('B08.5', 'Enteroviral vesicular pharyngitis', 'ICD10_2010'), +('B08.6', 'Exanthematic febrile disease (MEXICO)', 'ICD10_2010'), +('B08.8', 'Other specified viral infections characterized skin / mucous membrane lesions', 'ICD10_2010'), +('B09', 'Unspecified viral infection characterized skin / mucous membrane lesions', 'ICD10_2010'), +('B15', 'Acute hepatitis A', 'ICD10_2010'), +('B15.0', 'Hepatitis a with hepatic coma', 'ICD10_2010'), +('B15.9', 'Hepatitis a without hepatic coma', 'ICD10_2010'), +('B16', 'Acute hepatitis B', 'ICD10_2010'), +('B16.0', 'Acute hepatitis b with delta-agent (coinfection) with hepatitis coma', 'ICD10_2010'), +('B16.1', 'Acute hepatitis b with delta-agent (coinfection) without hepatitis coma', 'ICD10_2010'), +('B16.2', 'Acute hepatitis b without delta-agent with hepatic coma', 'ICD10_2010'), +('B16.9', 'Acute hepatitis b without delta-agent and without hepatatitis coma', 'ICD10_2010'), +('B17', 'Other acute viral hepatitis', 'ICD10_2010'), +('B17.0', 'Acute delta-(super)infection of hepatitis b carrier', 'ICD10_2010'), +('B17.1', 'Acute hepatitis c', 'ICD10_2010'), +('B17.2', 'Acute hepatitis e', 'ICD10_2010'), +('B17.8', 'Other specified acute viral hepatitis', 'ICD10_2010'), +('B17.9', 'Acute viral hepatitis, unspecified', 'ICD10_2010'), +('B18', 'Chronic viral hepatitis', 'ICD10_2010'), +('B18.0', 'Chronic viral hepatitis b with delta-agent', 'ICD10_2010'), +('B18.1', 'Chronic viral hepatitis b without delta-agent', 'ICD10_2010'), +('B18.2', 'Chronic viral hepatitis c', 'ICD10_2010'), +('B18.8', 'Other chronic viral hepatitis', 'ICD10_2010'), +('B18.9', 'Chronic viral hepatitis, unspecified', 'ICD10_2010'), +('B19', 'Unspecified viral hepatitis', 'ICD10_2010'), +('B19.0', 'Unspecified viral hepatitis hepatic with coma', 'ICD10_2010'), +('B19.9', 'Unspecified viral hepatitis without hepatic coma', 'ICD10_2010'), +('B20', 'Human immunodeficiency virus [HIV] disease resulting in infectious and parasitic diseases', 'ICD10_2010'), +('B20.0', 'HIV disease resulting in mycobacterial infection', 'ICD10_2010'), +('B20.1', 'HIV disease resulting in other bacterial infections', 'ICD10_2010'), +('B20.2', 'HIV disease resulting in cytomegaloviral disease', 'ICD10_2010'), +('B20.3', 'HIV disease resulting in other viral infections', 'ICD10_2010'), +('B20.4', 'HIV disease resulting in candidiasis', 'ICD10_2010'), +('B20.5', 'HIV disease resulting in other mycoses', 'ICD10_2010'), +('B20.6', 'HIV disease resulting in pneumocystis carinii pneumonia', 'ICD10_2010'), +('B20.7', 'HIV disease resulting in multiple infections', 'ICD10_2010'), +('B20.8', 'HIV disease resulting in other infectious and parasitic disease', 'ICD10_2010'), +('B20.9', 'HIV disease resulting in unspecified infectious or parasitic disease', 'ICD10_2010'), +('B21', 'Human immunodeficiency virus [HIV] disease resulting in malignant neoplasms', 'ICD10_2010'), +('B21.0', 'HIV disease resulting in kaposi\'s sarcoma', 'ICD10_2010'), +('B21.1', 'HIV disease resulting in burkitt\'s lymphoma', 'ICD10_2010'), +('B21.2', 'HIV dis resulting oth types of non-hodgkin\'s lymphoma', 'ICD10_2010'), +('B21.3', 'HIV dis result oth mal neo lymphoid haematopoietic rel tis', 'ICD10_2010'), +('B21.7', 'HIV disease resulting in multiple malignant neoplasms', 'ICD10_2010'), +('B21.8', 'HIV disease resulting in other malignant neoplasms', 'ICD10_2010'), +('B21.9', 'HIV disease resulting in unspecified malignant neoplasm', 'ICD10_2010'), +('B22', 'Human immunodeficiency virus [HIV] disease resulting in other specified diseases', 'ICD10_2010'), +('B22.0', 'HIV disease resulting in encephalopathy', 'ICD10_2010'), +('B22.1', 'HIV disease resulting in lymphoid interstitial pneumonitis', 'ICD10_2010'), +('B22.2', 'HIV disease resulting in wasting syndrome', 'ICD10_2010'), +('B22.7', 'HIV dis resulting in multiple diseases classif elsewhere', 'ICD10_2010'), +('B23', 'Human immunodeficiency virus [HIV] disease resulting in other conditions', 'ICD10_2010'), +('B23.0', 'Acute HIV infection syndrome', 'ICD10_2010'), +('B23.1', 'HIV dis result (persistent) generalized lymphadenopathy', 'ICD10_2010'), +('B23.2', 'HIV dis result haematologic / immunologic abnorm nec', 'ICD10_2010'), +('B23.8', 'HIV disease resulting in other specified conditions', 'ICD10_2010'), +('B24', 'Unspecified human immunodeficiency virus [hiv] disease', 'ICD10_2010'), +('B25', 'Cytomegaloviral disease', 'ICD10_2010'), +('B25.0', 'Cytomegaloviral pneumonitis', 'ICD10_2010'), +('B25.1', 'Cytomegaloviral hepatitis', 'ICD10_2010'), +('B25.2', 'Cytomegaloviral pancreatitis', 'ICD10_2010'), +('B25.8', 'Other cytomegaloviral diseases', 'ICD10_2010'), +('B25.9', 'Cytomegaloviral disease, unspecified', 'ICD10_2010'), +('B26', 'Mumps', 'ICD10_2010'), +('B26.0', 'Mumps orchitis', 'ICD10_2010'), +('B26.1', 'Mumps meningitis', 'ICD10_2010'), +('B26.2', 'Mumps encephalitis', 'ICD10_2010'), +('B26.3', 'Mumps pancreatitis', 'ICD10_2010'), +('B26.8', 'Mumps with other complications', 'ICD10_2010'), +('B26.9', 'Mumps without complication', 'ICD10_2010'), +('B27', 'Infectious mononucleosis', 'ICD10_2010'), +('B27.0', 'Gammaherpesviral mononucleosis', 'ICD10_2010'), +('B27.1', 'Cytomegaloviral mononucleosis', 'ICD10_2010'), +('B27.8', 'Other infectious mononucleosis', 'ICD10_2010'), +('B27.9', 'Infectious mononucleosis, unspecified', 'ICD10_2010'), +('B30', 'Viral conjunctivitis', 'ICD10_2010'), +('B30.0', 'Keratoconjunctivitis due to adenovirus', 'ICD10_2010'), +('B30.1', 'Conjunctivitis due to adenovirus', 'ICD10_2010'), +('B30.2', 'Viral pharyngoconjunctivitis', 'ICD10_2010'), +('B30.3', 'Acute epid haemorrhagic conjunctivitis (enteroviral)', 'ICD10_2010'), +('B30.8', 'Other viral conjunctivitis', 'ICD10_2010'), +('B30.9', 'Viral conjunctivitis, unspecified', 'ICD10_2010'), +('B33', 'Other viral diseases, not elsewhere classified', 'ICD10_2010'), +('B33.0', 'Epidemic myalgia', 'ICD10_2010'), +('B33.1', 'Ross river disease', 'ICD10_2010'), +('B33.2', 'Viral carditis', 'ICD10_2010'), +('B33.3', 'Retrovirus infections, not elsewhere classified', 'ICD10_2010'), +('B33.4', 'Hantavirus (cardio-)pulmonary syndrome [HPS] [HCPS]', 'ICD10_2010'), +('B33.8', 'Other specified viral diseases', 'ICD10_2010'), +('B34', 'Viral infection of unspecified site', 'ICD10_2010'), +('B34.0', 'Adenovirus infection, unspecified', 'ICD10_2010'), +('B34.1', 'Enterovirus infection, unspecified', 'ICD10_2010'), +('B34.2', 'Coronavirus infection, unspecified', 'ICD10_2010'), +('B34.3', 'Parvovirus infection, unspecified', 'ICD10_2010'), +('B34.4', 'Papovavirus infection, unspecified', 'ICD10_2010'), +('B34.8', 'Other viral infections of unspecified site', 'ICD10_2010'), +('B34.9', 'Viral infection, unspecified', 'ICD10_2010'), +('B35', 'Dermatophytosis', 'ICD10_2010'), +('B35.0', 'Tinea barbae and tinea capitis', 'ICD10_2010'), +('B35.1', 'Tinea unguium', 'ICD10_2010'), +('B35.2', 'Tinea manuum', 'ICD10_2010'), +('B35.3', 'Tinea pedis', 'ICD10_2010'), +('B35.4', 'Tinea corporis', 'ICD10_2010'), +('B35.5', 'Tinea imbricata', 'ICD10_2010'), +('B35.6', 'Tinea cruris', 'ICD10_2010'), +('B35.8', 'Other dermatophytoses', 'ICD10_2010'), +('B35.9', 'Dermatophytosis, unspecified', 'ICD10_2010'), +('B36', 'Other superficial mycoses', 'ICD10_2010'), +('B36.0', 'Pityriasis versicolor', 'ICD10_2010'), +('B36.1', 'Tinea nigra', 'ICD10_2010'), +('B36.2', 'White piedra', 'ICD10_2010'), +('B36.3', 'Black piedra', 'ICD10_2010'), +('B36.8', 'Other specified superficial mycoses', 'ICD10_2010'), +('B36.9', 'Superficial mycosis, unspecified', 'ICD10_2010'), +('B37', 'Candidiasis', 'ICD10_2010'), +('B37.0', 'Candidal stomatitis', 'ICD10_2010'), +('B37.1', 'Pulmonary candidiasis', 'ICD10_2010'), +('B37.2', 'Candidiasis of skin and nail', 'ICD10_2010'), +('B37.3', 'Candidiasis of vulva and vagina', 'ICD10_2010'), +('B37.4', 'Candidiasis of other urogenital sites', 'ICD10_2010'), +('B37.5', 'Candidal meningitis', 'ICD10_2010'), +('B37.6', 'Candidal endocarditis', 'ICD10_2010'), +('B37.7', 'Candidal septicaemia', 'ICD10_2010'), +('B37.8', 'Candidiasis of other sites', 'ICD10_2010'), +('B37.9', 'Candidiasis, unspecified', 'ICD10_2010'), +('B38', 'Coccidioidomycosis', 'ICD10_2010'), +('B38.0', 'Acute pulmonary coccidioidomycosis', 'ICD10_2010'), +('B38.1', 'Chronic pulmonary coccidioidomycosis', 'ICD10_2010'), +('B38.2', 'Pulmonary coccidioidomycosis, unspecified', 'ICD10_2010'), +('B38.3', 'Cutaneous coccidioidomycosis', 'ICD10_2010'), +('B38.4', 'Coccidioidomycosis meningitis', 'ICD10_2010'), +('B38.7', 'Disseminated coccidioidomycosis', 'ICD10_2010'), +('B38.8', 'Other forms of coccidioidomycosis', 'ICD10_2010'), +('B38.9', 'Coccidioidomycosis, unspecified', 'ICD10_2010'), +('B39', 'Histoplasmosis', 'ICD10_2010'), +('B39.0', 'Acute pulmonary histoplasmosis capsulati', 'ICD10_2010'), +('B39.1', 'Chronic pulmonary histoplasmosis capsulati', 'ICD10_2010'), +('B39.2', 'Pulmonary histoplasmosis capsulati, unspecified', 'ICD10_2010'), +('B39.3', 'Disseminated histoplasmosis capsulati', 'ICD10_2010'), +('B39.4', 'Histoplasmosis capsulati, unspecified', 'ICD10_2010'), +('B39.5', 'Histoplasmosis duboisii', 'ICD10_2010'), +('B39.9', 'Histoplasmosis, unspecified', 'ICD10_2010'), +('B40', 'Blastomycosis', 'ICD10_2010'), +('B40.0', 'Acute pulmonary blastomycosis', 'ICD10_2010'), +('B40.1', 'Chronic pulmonary blastomycosis', 'ICD10_2010'), +('B40.2', 'Pulmonary blastomycosis, unspecified', 'ICD10_2010'), +('B40.3', 'Cutaneous blastomycosis', 'ICD10_2010'), +('B40.7', 'Disseminated blastomycosis', 'ICD10_2010'), +('B40.8', 'Other forms of blastomycosis', 'ICD10_2010'), +('B40.9', 'Blastomycosis, unspecified', 'ICD10_2010'), +('B41', 'Paracoccidioidomycosis', 'ICD10_2010'), +('B41.0', 'Pulmonary paracoccidioidomycosis', 'ICD10_2010'), +('B41.7', 'Disseminated paracoccidioidomycosis', 'ICD10_2010'), +('B41.8', 'Other forms of paracoccidioidomycosis', 'ICD10_2010'), +('B41.9', 'Paracoccidioidomycosis, unspecified', 'ICD10_2010'), +('B42', 'Sporotrichosis', 'ICD10_2010'), +('B42.0', 'Pulmonary sporotrichosis', 'ICD10_2010'), +('B42.1', 'Lymphocutaneous sporotrichosis', 'ICD10_2010'), +('B42.7', 'Disseminated sporotrichosis', 'ICD10_2010'), +('B42.8', 'Other forms of sporotrichosis', 'ICD10_2010'), +('B42.9', 'Sporotrichosis, unspecified', 'ICD10_2010'), +('B43', 'Chromomycosis and phaeomycotic abscess', 'ICD10_2010'), +('B43.0', 'Cutaneous chromomycosis', 'ICD10_2010'), +('B43.1', 'Phaeomycotic brain abscess', 'ICD10_2010'), +('B43.2', 'Subcutaneous phaeomycotic abscess and cyst', 'ICD10_2010'), +('B43.8', 'Other forms of chromomycosis', 'ICD10_2010'), +('B43.9', 'Chromomycosis, unspecified', 'ICD10_2010'), +('B44', 'Aspergillosis', 'ICD10_2010'), +('B44.0', 'Invasive pulmonary aspergillosis', 'ICD10_2010'), +('B44.1', 'Other pulmonary aspergillosis', 'ICD10_2010'), +('B44.2', 'Tonsillar aspergillosis', 'ICD10_2010'), +('B44.7', 'Disseminated aspergillosis', 'ICD10_2010'), +('B44.8', 'Other forms of aspergillosis', 'ICD10_2010'), +('B44.9', 'Aspergillosis, unspecified', 'ICD10_2010'), +('B45', 'Cryptococcosis', 'ICD10_2010'), +('B45.0', 'Pulmonary cryptococcosis', 'ICD10_2010'), +('B45.1', 'Cerebral cryptococcosis', 'ICD10_2010'), +('B45.2', 'Cutaneous cryptococcosis', 'ICD10_2010'), +('B45.3', 'Osseous cryptococcosis', 'ICD10_2010'), +('B45.7', 'Disseminated cryptococcosis', 'ICD10_2010'), +('B45.8', 'Other forms of cryptococcosis', 'ICD10_2010'), +('B45.9', 'Cryptococcosis, unspecified', 'ICD10_2010'), +('B46', 'Zygomycosis', 'ICD10_2010'), +('B46.0', 'Pulmonary mucormycosis', 'ICD10_2010'), +('B46.1', 'Rhinocerebral mucormycosis', 'ICD10_2010'), +('B46.2', 'Gastrointestinal mucormycosis', 'ICD10_2010'), +('B46.3', 'Cutaneous mucormycosis', 'ICD10_2010'), +('B46.4', 'Disseminated mucormycosis', 'ICD10_2010'), +('B46.5', 'Mucormycosis, unspecified', 'ICD10_2010'), +('B46.8', 'Other zygomycoses', 'ICD10_2010'), +('B46.9', 'Zygomycosis, unspecified', 'ICD10_2010'), +('B47', 'Mycetoma', 'ICD10_2010'), +('B47.0', 'Eumycetoma', 'ICD10_2010'), +('B47.1', 'Actinomycetoma', 'ICD10_2010'), +('B47.9', 'Mycetoma, unspecified', 'ICD10_2010'), +('B48', 'Other mycoses, not elsewhere classified', 'ICD10_2010'), +('B48.0', 'Lobomycosis', 'ICD10_2010'), +('B48.1', 'Rhinosporidiosis', 'ICD10_2010'), +('B48.2', 'Allescheriasis', 'ICD10_2010'), +('B48.3', 'Geotrichosis', 'ICD10_2010'), +('B48.4', 'Penicillosis', 'ICD10_2010'), +('B48.7', 'Opportunistic mycoses', 'ICD10_2010'), +('B48.8', 'Other specified mycoses', 'ICD10_2010'), +('B49', 'Unspecified mycosis', 'ICD10_2010'), +('B50', 'Plasmodium falciparum malaria', 'ICD10_2010'), +('B50.0', 'Plasmodium falciparum malaria with cerebral complications', 'ICD10_2010'), +('B50.8', 'Other severe and complicated plasmodium falciparum malaria', 'ICD10_2010'), +('B50.9', 'Plasmodium falciparum malaria, unspecified', 'ICD10_2010'), +('B51', 'Plasmodium vivax malaria', 'ICD10_2010'), +('B51.0', 'Plasmodium vivax malaria with rupture of spleen', 'ICD10_2010'), +('B51.8', 'Plasmodium vivax malaria with other complications', 'ICD10_2010'), +('B51.9', 'Plasmodium vivax malaria without complication', 'ICD10_2010'), +('B52', 'Plasmodium malariae malaria', 'ICD10_2010'), +('B52.0', 'Plasmodium malariae malaria with nephropathy', 'ICD10_2010'), +('B52.8', 'Plasmodium malariae malaria with other complications', 'ICD10_2010'), +('B52.9', 'Plasmodium malariae malaria without complication', 'ICD10_2010'), +('B53', 'Other parasitologically confirmed malaria', 'ICD10_2010'), +('B53.0', 'Plasmodium ovale malaria', 'ICD10_2010'), +('B53.1', 'Malaria due to simian plasmodia', 'ICD10_2010'), +('B53.8', 'Other parasitologically confirmed malaria nec', 'ICD10_2010'), +('B54', 'Unspecified malaria', 'ICD10_2010'), +('B55', 'Leishmaniasis', 'ICD10_2010'), +('B55.0', 'Visceral leishmaniasis', 'ICD10_2010'), +('B55.1', 'Cutaneous leishmaniasis', 'ICD10_2010'), +('B55.2', 'Mucocutaneous leishmaniasis', 'ICD10_2010'), +('B55.9', 'Leishmaniasis, unspecified', 'ICD10_2010'), +('B56', 'African trypanosomiasis', 'ICD10_2010'), +('B56.0', 'Gambiense trypanosomiasis', 'ICD10_2010'), +('B56.1', 'Rhodesiense trypanosomiasis', 'ICD10_2010'), +('B56.9', 'African trypanosomiasis, unspecified', 'ICD10_2010'), +('B57', 'Chagas disease', 'ICD10_2010'), +('B57.0', 'Acute chagas\' disease with heart involvement', 'ICD10_2010'), +('B57.1', 'Acute chagas\' disease without heart involvement', 'ICD10_2010'), +('B57.2', 'Chagas\' disease (chronic) with heart involvement', 'ICD10_2010'), +('B57.3', 'Chagas\' disease (chronic) with digestive system involvement', 'ICD10_2010'), +('B57.4', 'Chagas\' disease (chronic) with nervous system involvement', 'ICD10_2010'), +('B57.5', 'Chagas\' disease (chronic) with other organ involvement', 'ICD10_2010'), +('B58', 'Toxoplasmosis', 'ICD10_2010'), +('B58.0', 'Toxoplasma oculopathy', 'ICD10_2010'), +('B58.1', 'Toxoplasma hepatitis', 'ICD10_2010'), +('B58.2', 'Toxoplasma meningoencephalitis', 'ICD10_2010'), +('B58.3', 'Pulmonary toxoplasmosis', 'ICD10_2010'), +('B58.8', 'Toxoplasmosis with other organ involvement', 'ICD10_2010'), +('B58.9', 'Toxoplasmosis, unspecified', 'ICD10_2010'), +('B59', 'Pneumocystosis', 'ICD10_2010'), +('B60', 'Other protozoal diseases, not elsewhere classified', 'ICD10_2010'), +('B60.0', 'Babesiosis', 'ICD10_2010'), +('B60.1', 'Acanthamoebiasis', 'ICD10_2010'), +('B60.2', 'Naegleriasis', 'ICD10_2010'), +('B60.8', 'Other specified protozoal diseases', 'ICD10_2010'), +('B64', 'Unspecified protozoal disease', 'ICD10_2010'), +('B65', 'Schistosomiasis [bilharziasis]', 'ICD10_2010'), +('B65.0', 'Schistosom due schis haematobium [urin schistosom]', 'ICD10_2010'), +('B65.1', 'Schistosom due schis mansoni [intest schistosom]', 'ICD10_2010'), +('B65.2', 'Schistosomiasis due to schistosoma japonicum', 'ICD10_2010'), +('B65.3', 'Cercarial dermatitis', 'ICD10_2010'), +('B65.8', 'Other schistosomiases', 'ICD10_2010'), +('B65.9', 'Schistosomiasis, unspecified', 'ICD10_2010'), +('B66', 'Other fluke infections', 'ICD10_2010'), +('B66.0', 'Opisthorchiasis', 'ICD10_2010'), +('B66.1', 'Clonorchiasis', 'ICD10_2010'), +('B66.2', 'Dicrocoeliasis', 'ICD10_2010'), +('B66.3', 'Fascioliasis', 'ICD10_2010'), +('B66.4', 'Paragonimiasis', 'ICD10_2010'), +('B66.5', 'Fasciolopsiasis', 'ICD10_2010'), +('B66.8', 'Other specified fluke infections', 'ICD10_2010'), +('B66.9', 'Fluke infection, unspecified', 'ICD10_2010'), +('B67', 'Echinococcosis', 'ICD10_2010'), +('B67.0', 'Echinococcus granulosus infection of liver', 'ICD10_2010'), +('B67.1', 'Echinococcus granulosus infection of lung', 'ICD10_2010'), +('B67.2', 'Echinococcus granulosus infection of bone', 'ICD10_2010'), +('B67.3', 'Echinococcus granulosus infection, other and multiple sites', 'ICD10_2010'), +('B67.4', 'Echinococcus granulosus infection, unspecified', 'ICD10_2010'), +('B67.5', 'Echinococcus multilocularis infection of liver', 'ICD10_2010'), +('B67.6', 'Echinococcus multilocularis infection oth / multiple sites', 'ICD10_2010'), +('B67.7', 'Echinococcus multilocularis infection, unspecified', 'ICD10_2010'), +('B67.8', 'Echinococcosis, unspecified, of liver', 'ICD10_2010'), +('B67.9', 'Echinococcosis, other and unspecified', 'ICD10_2010'), +('B68', 'Taeniasis', 'ICD10_2010'), +('B68.0', 'Taenia solium taeniasis', 'ICD10_2010'), +('B68.1', 'Taenia saginata taeniasis', 'ICD10_2010'), +('B68.9', 'Taeniasis, unspecified', 'ICD10_2010'), +('B69', 'Cysticercosis', 'ICD10_2010'), +('B69.0', 'Cysticercosis of central nervous system', 'ICD10_2010'), +('B69.1', 'Cysticercosis of eye', 'ICD10_2010'), +('B69.8', 'Cysticercosis of other sites', 'ICD10_2010'), +('B69.9', 'Cysticercosis, unspecified', 'ICD10_2010'), +('B70', 'Diphyllobothriasis and sparganosis', 'ICD10_2010'), +('B70.0', 'Diphyllobothriasis', 'ICD10_2010'), +('B70.1', 'Sparganosis', 'ICD10_2010'), +('B71', 'Other cestode infections', 'ICD10_2010'), +('B71.0', 'Hymenolepiasis', 'ICD10_2010'), +('B71.1', 'Dipylidiasis', 'ICD10_2010'), +('B71.8', 'Other specified cestode infections', 'ICD10_2010'), +('B71.9', 'Cestode infection, unspecified', 'ICD10_2010'), +('B72', 'Dracunculiasis', 'ICD10_2010'), +('B73', 'Onchocerciasis', 'ICD10_2010'), +('B74', 'Filariasis', 'ICD10_2010'), +('B74.0', 'Filariasis due to wuchereria bancrofti', 'ICD10_2010'), +('B74.1', 'Filariasis due to brugia malayi', 'ICD10_2010'), +('B74.2', 'Filariasis due to brugia timori', 'ICD10_2010'), +('B74.3', 'Loiasis', 'ICD10_2010'), +('B74.4', 'Mansonelliasis', 'ICD10_2010'), +('B74.8', 'Other filariases', 'ICD10_2010'), +('B74.9', 'Filariasis, unspecified', 'ICD10_2010'), +('B75', 'Trichinellosis', 'ICD10_2010'), +('B76', 'Hookworm diseases', 'ICD10_2010'), +('B76.0', 'Ancylostomiasis', 'ICD10_2010'), +('B76.1', 'Necatoriasis', 'ICD10_2010'), +('B76.8', 'Other hookworm diseases', 'ICD10_2010'), +('B76.9', 'Hookworm disease, unspecified', 'ICD10_2010'), +('B77', 'Ascariasis', 'ICD10_2010'), +('B77.0', 'Ascariasis with intestinal complications', 'ICD10_2010'), +('B77.8', 'Ascariasis with other complications', 'ICD10_2010'), +('B77.9', 'Ascariasis, unspecified', 'ICD10_2010'), +('B78', 'Strongyloidiasis', 'ICD10_2010'), +('B78.0', 'Intestinal strongyloidiasis', 'ICD10_2010'), +('B78.1', 'Cutaneous strongyloidiasis', 'ICD10_2010'), +('B78.7', 'Disseminated strongyloidiasis', 'ICD10_2010'), +('B78.9', 'Strongyloidiasis, unspecified', 'ICD10_2010'), +('B79', 'Trichuriasis', 'ICD10_2010'), +('B80', 'Enterobiasis', 'ICD10_2010'), +('B81', 'Other intestinal helminthiases, not elsewhere classified', 'ICD10_2010'), +('B81.0', 'Anisakiasis', 'ICD10_2010'), +('B81.1', 'Intestinal capillariasis', 'ICD10_2010'), +('B81.2', 'Trichostrongyliasis', 'ICD10_2010'), +('B81.3', 'Intestinal angiostrongyliasis', 'ICD10_2010'), +('B81.4', 'Mixed intestinal helminthiases', 'ICD10_2010'), +('B81.8', 'Other specified intestinal helminthiases', 'ICD10_2010'), +('B82', 'Unspecified intestinal parasitism', 'ICD10_2010'), +('B82.0', 'Intestinal helminthiasis, unspecified', 'ICD10_2010'), +('B82.9', 'Intestinal parasitism, unspecified', 'ICD10_2010'), +('B83', 'Other helminthiases', 'ICD10_2010'), +('B83.0', 'Visceral larva migrans', 'ICD10_2010'), +('B83.1', 'Gnathostomiasis', 'ICD10_2010'), +('B83.2', 'Angiostrongyliasis due to parastrongylus cantonensis', 'ICD10_2010'), +('B83.3', 'Syngamiasis', 'ICD10_2010'), +('B83.4', 'Internal hirudiniasis', 'ICD10_2010'), +('B83.8', 'Other specified helminthiases', 'ICD10_2010'), +('B83.9', 'Helminthiasis, unspecified', 'ICD10_2010'), +('B85', 'Pediculosis and phthiriasis', 'ICD10_2010'), +('B85.0', 'Pediculosis due to pediculus humanus capitis', 'ICD10_2010'), +('B85.1', 'Pediculosis due to pediculus humanus corporis', 'ICD10_2010'), +('B85.2', 'Pediculosis, unspecified', 'ICD10_2010'), +('B85.3', 'Phthiriasis', 'ICD10_2010'), +('B85.4', 'Mixed pediculosis and phthiriasis', 'ICD10_2010'), +('B86', 'Scabies', 'ICD10_2010'), +('B87', 'Myiasis', 'ICD10_2010'), +('B87.0', 'Cutaneous myiasis', 'ICD10_2010'), +('B87.1', 'Wound myiasis', 'ICD10_2010'), +('B87.2', 'Ocular myiasis', 'ICD10_2010'), +('B87.3', 'Nasopharyngeal myiasis', 'ICD10_2010'), +('B87.4', 'Aural myiasis', 'ICD10_2010'), +('B87.8', 'Myiasis of other sites', 'ICD10_2010'), +('B87.9', 'Myiasis, unspecified', 'ICD10_2010'), +('B88', 'Other infestations', 'ICD10_2010'), +('B88.0', 'Other acariasis', 'ICD10_2010'), +('B88.1', 'Tungiasis [sandflea infestation]', 'ICD10_2010'), +('B88.2', 'Other arthropod infestations', 'ICD10_2010'), +('B88.3', 'External hirudiniasis', 'ICD10_2010'), +('B88.8', 'Other specified infestations', 'ICD10_2010'), +('B88.9', 'Infestation, unspecified', 'ICD10_2010'), +('B89', 'Unspecified parasitic disease', 'ICD10_2010'), +('B90', 'Sequelae of tuberculosis', 'ICD10_2010'), +('B90.0', 'Sequelae of central nervous system tuberculosis', 'ICD10_2010'), +('B90.1', 'Sequelae of genitourinary tuberculosis', 'ICD10_2010'); +INSERT INTO `icd10` (`ID_ICD10`, `Diagnosa`, `Versi_ICD10`) VALUES +('B90.2', 'Sequelae of tuberculosis of bones and joints', 'ICD10_2010'), +('B90.8', 'Sequelae of tuberculosis of other organs', 'ICD10_2010'), +('B90.9', 'Sequelae of respiratory and unspecified tuberculosis', 'ICD10_2010'), +('B91', 'Sequelae of poliomyelitis', 'ICD10_2010'), +('B92', 'Sequelae of leprosy', 'ICD10_2010'), +('B94', 'Sequelae of other and unspecified infectious and parasitic diseases', 'ICD10_2010'), +('B94.0', 'Sequelae of trachoma', 'ICD10_2010'), +('B94.1', 'Sequelae of viral encephalitis', 'ICD10_2010'), +('B94.2', 'Sequelae of viral hepatitis', 'ICD10_2010'), +('B94.8', 'Sequelae of other specified infectious and parasitic diseases', 'ICD10_2010'), +('B94.9', 'Sequelae of unspecified infectious or parasitic disease', 'ICD10_2010'), +('B95', 'Streptococcus and staphylococcus as the cause of diseases classified to other chapters', 'ICD10_2010'), +('B95.0', 'Streptococcus group A as cause of diseases classified to other chapters', 'ICD10_2010'), +('B95.1', 'Streptococcus group B as cause of diseases classified to other chapters', 'ICD10_2010'), +('B95.2', 'Streptococcus group D as cause of diseases classified to other chapters', 'ICD10_2010'), +('B95.3', 'Streptococcus pneumoniae as cause of diseases classified other chapters', 'ICD10_2010'), +('B95.4', 'Other streptococcus as cause of diseases classified to other chapters', 'ICD10_2010'), +('B95.5', 'Unspecified streptococcus as cause of diseases classified to other chapters', 'ICD10_2010'), +('B95.6', 'Staphylococcus aureus as cause of disease classified to other chapters', 'ICD10_2010'), +('B95.7', 'Other staphylococcus as cause of diseases classified to other chapters', 'ICD10_2010'), +('B95.8', 'Unspecified staphylococcus as cause of diseases classified to other chapters', 'ICD10_2010'), +('B96', 'Other specified bacterial agents as the cause of diseases classified to other chapters', 'ICD10_2010'), +('B96.0', 'Mycoplasma pneumoniae as cause diseases classified to other chapters', 'ICD10_2010'), +('B96.1', 'Klebsiella pneumoniae as cause diseases classified to other chapters', 'ICD10_2010'), +('B96.2', 'Escherichia coli as cause diseases classified to other chapters', 'ICD10_2010'), +('B96.3', 'Haemophilus influenzae as cause diseases classified to other chapters', 'ICD10_2010'), +('B96.4', 'Proteus (mirabilis)(morganii) as cause diseases classified to other chapters', 'ICD10_2010'), +('B96.5', 'P.(aerugin)(mallei)(pseudomallei)as cause diseases classified to other chapters', 'ICD10_2010'), +('B96.6', 'Bacillus fragilis as cause diseases classified to other chapters', 'ICD10_2010'), +('B96.7', 'Clostridium perfringens as cause diseases classified to other chapters', 'ICD10_2010'), +('B96.8', 'Other spec bact agents as cause diseases classified to other chapters', 'ICD10_2010'), +('B97', 'Viral agents as the cause of diseases classified to other chapters', 'ICD10_2010'), +('B97.0', 'Adenovirus as the cause of diseases classified to other chapters', 'ICD10_2010'), +('B97.1', 'Enterovirus as the cause of diseases classified to other chapters', 'ICD10_2010'), +('B97.2', 'Coronavirus as the cause of diseases classified to other chapters', 'ICD10_2010'), +('B97.3', 'Retrovirus as the cause of diseases classified to other chapters', 'ICD10_2010'), +('B97.4', 'Resp syncytial virusas the cause of diseases classified to other chapters', 'ICD10_2010'), +('B97.5', 'Reovirus as the cause of diseases classified to other chapters', 'ICD10_2010'), +('B97.6', 'Parvovirus as the cause of diseases classified to other chapters', 'ICD10_2010'), +('B97.7', 'Papillomavirus as the cause of diseases classified to other chapters', 'ICD10_2010'), +('B97.8', 'Oth viral agents as the cause of diseases classified to other chapters', 'ICD10_2010'), +('B98', 'Other specified infectious agents as the cause of diseases classified to other chapters', 'ICD10_2010'), +('B98.0', 'Helicobacter pylori [H.pylori] as the cause of diseases classified to other chapters', 'ICD10_2010'), +('B98.1', 'Vibrio vulnificus as the cause of diseases classified to other chapters', 'ICD10_2010'), +('B99', 'Other and unspecified infectious diseases', 'ICD10_2010'), +('C00', 'Malignant neoplasm of lip', 'ICD10_2010'), +('C00.0', 'Malignant neoplasm, external upper lip', 'ICD10_2010'), +('C00.1', 'Malignant neoplasm, external lower lip', 'ICD10_2010'), +('C00.2', 'Malignant neoplasm, external lip, unspecified', 'ICD10_2010'), +('C00.3', 'Malignant neoplasm, upper lip, inner aspect', 'ICD10_2010'), +('C00.4', 'Malignant neoplasm, lower lip, inner aspect', 'ICD10_2010'), +('C00.5', 'Malignant neoplasm, lip, unspecified, inner aspect', 'ICD10_2010'), +('C00.6', 'Malignant neoplasm, commissure of lip', 'ICD10_2010'), +('C00.8', 'Malignant neoplasm, overlapping lesion of lip', 'ICD10_2010'), +('C00.9', 'Malignant neoplasm, lip, unspecified', 'ICD10_2010'), +('C01', 'Malignant neoplasm of base of tongue', 'ICD10_2010'), +('C02', 'Malignant neoplasm of other and unspecified parts of tongue', 'ICD10_2010'), +('C02.0', 'Malignant neoplasm, dorsal surface of tongue', 'ICD10_2010'), +('C02.1', 'Malignant neoplasm, border of tongue', 'ICD10_2010'), +('C02.2', 'Malignant neoplasm, ventral surface of tongue', 'ICD10_2010'), +('C02.3', 'Malignant neoplasm, anterior two-thirds of tongue, part unspecified', 'ICD10_2010'), +('C02.4', 'Malignant neoplasm, lingual tonsil', 'ICD10_2010'), +('C02.8', 'Malignant neoplasm, overlapping lesion of tongue', 'ICD10_2010'), +('C02.9', 'Malignant neoplasm, tongue, unspecified', 'ICD10_2010'), +('C03', 'Malignant neoplasm of gum', 'ICD10_2010'), +('C03.0', 'Malignant neoplasm, upper gum', 'ICD10_2010'), +('C03.1', 'Malignant neoplasm, lower gum', 'ICD10_2010'), +('C03.9', 'Malignant neoplasm, gum, unspecified', 'ICD10_2010'), +('C04', 'Malignant neoplasm of floor of mouth', 'ICD10_2010'), +('C04.0', 'Malignant neoplasm, anterior floor of mouth', 'ICD10_2010'), +('C04.1', 'Malignant neoplasm, lateral floor of mouth', 'ICD10_2010'), +('C04.8', 'Malignant neoplasm, overlapping lesion of floor of mouth', 'ICD10_2010'), +('C04.9', 'Malignant neoplasm, floor of mouth, unspecified', 'ICD10_2010'), +('C05', 'Malignant neoplasm of palate', 'ICD10_2010'), +('C05.0', 'Malignant neoplasm, hard palate', 'ICD10_2010'), +('C05.1', 'Malignant neoplasm, soft palate', 'ICD10_2010'), +('C05.2', 'Malignant neoplasm, uvula', 'ICD10_2010'), +('C05.8', 'Malignant neoplasm, overlapping lesion of palate', 'ICD10_2010'), +('C05.9', 'Malignant neoplasm, palate, unspecified', 'ICD10_2010'), +('C06', 'Malignant neoplasm of other and unspecified parts of mouth', 'ICD10_2010'), +('C06.0', 'Malignant neoplasm, cheek mucosa', 'ICD10_2010'), +('C06.1', 'Malignant neoplasm, vestibule of mouth', 'ICD10_2010'), +('C06.2', 'Malignant neoplasm, retromolar area', 'ICD10_2010'), +('C06.8', 'Malignant neoplasm, overlapping lesion of other and unspecified parts of mouth', 'ICD10_2010'), +('C06.9', 'Malignant neoplasm, mouth, unspecified', 'ICD10_2010'), +('C07', 'Malignant neoplasm of parotid gland', 'ICD10_2010'), +('C08', 'Malignant neoplasm of other and unspecified major salivary glands', 'ICD10_2010'), +('C08.0', 'Malignant neoplasm, submandibular gland', 'ICD10_2010'), +('C08.1', 'Malignant neoplasm, sublingual gland', 'ICD10_2010'), +('C08.8', 'Malignant neoplasm, overlapping lesion of major salivary glands', 'ICD10_2010'), +('C08.9', 'Malignant neoplasm, major salivary gland, unspecified', 'ICD10_2010'), +('C09', 'Malignant neoplasm of tonsil', 'ICD10_2010'), +('C09.0', 'Malignant neoplasm, tonsillar fossa', 'ICD10_2010'), +('C09.1', 'Malignant neoplasm, tonsillar pillar (anterior)(posterior)', 'ICD10_2010'), +('C09.8', 'Malignant neoplasm, overlapping lesion of tonsil', 'ICD10_2010'), +('C09.9', 'Malignant neoplasm, tonsil, unspecified', 'ICD10_2010'), +('C10', 'Malignant neoplasm of oropharynx', 'ICD10_2010'), +('C10.0', 'Malignant neoplasm, vallecula', 'ICD10_2010'), +('C10.1', 'Malignant neoplasm, anterior surface of epiglottis', 'ICD10_2010'), +('C10.2', 'Malignant neoplasm, lateral wall of oropharynx', 'ICD10_2010'), +('C10.3', 'Malignant neoplasm, posterior wall of oropharynx', 'ICD10_2010'), +('C10.4', 'Malignant neoplasm, branchial cleft', 'ICD10_2010'), +('C10.8', 'Malignant neoplasm, overlapping lesion of oropharynx', 'ICD10_2010'), +('C10.9', 'Malignant neoplasm, oropharynx, unspecified', 'ICD10_2010'), +('C11', 'Malignant neoplasm of nasopharynx', 'ICD10_2010'), +('C11.0', 'Malignant neoplasm, superior wall of nasopharynx', 'ICD10_2010'), +('C11.1', 'Malignant neoplasm, posterior wall of nasopharynx', 'ICD10_2010'), +('C11.2', 'Malignant neoplasm, lateral wall of nasopharynx', 'ICD10_2010'), +('C11.3', 'Malignant neoplasm, anterior wall of nasopharynx', 'ICD10_2010'), +('C11.8', 'Malignant neoplasm, overlapping lesion of nasopharynx', 'ICD10_2010'), +('C11.9', 'Malignant neoplasm, nasopharynx, unspecified', 'ICD10_2010'), +('C12', 'Malignant neoplasm of pyriform sinus', 'ICD10_2010'), +('C13', 'Malignant neoplasm of hypopharynx', 'ICD10_2010'), +('C13.0', 'Malignant neoplasm, postcricoid region', 'ICD10_2010'), +('C13.1', 'Malignant neoplasm, aryepiglottic fold, hypopharyngeal aspect', 'ICD10_2010'), +('C13.2', 'Malignant neoplasm, posterior wall of hypopharynx', 'ICD10_2010'), +('C13.8', 'Malignant neoplasm, overlapping lesion of hypopharynx', 'ICD10_2010'), +('C13.9', 'Malignant neoplasm, hypopharynx, unspecified', 'ICD10_2010'), +('C14', 'Malignant neoplasm of other and ill-defined sites in the lip, oral cavity and pharynx', 'ICD10_2010'), +('C14.0', 'Malignant neoplasm, pharynx, unspecified', 'ICD10_2010'), +('C14.1', 'Malignant neoplasm of laryngopharynx', 'ICD10_2010'), +('C14.2', 'Malignant neoplasm, waldeyer\'s ring', 'ICD10_2010'), +('C14.8', 'Malignant neoplasm, overlapping lesion of lip, oral cavity and pharynx', 'ICD10_2010'), +('C15', 'Malignant neoplasm of oesophagus', 'ICD10_2010'), +('C15.0', 'Malignant neoplasm, cervical part of oesophagus', 'ICD10_2010'), +('C15.1', 'Malignant neoplasm, thoracic part of oesophagus', 'ICD10_2010'), +('C15.2', 'Malignant neoplasm, abdominal part of oesophagus', 'ICD10_2010'), +('C15.3', 'Malignant neoplasm, upper third of oesophagus', 'ICD10_2010'), +('C15.4', 'Malignant neoplasm, middle third of oesophagus', 'ICD10_2010'), +('C15.5', 'Malignant neoplasm, lower third of oesophagus', 'ICD10_2010'), +('C15.8', 'Malignant neoplasm, overlapping lesion of oesophagus', 'ICD10_2010'), +('C15.9', 'Malignant neoplasm, oesophagus, unspecified', 'ICD10_2010'), +('C16', 'Malignant neoplasm of stomach', 'ICD10_2010'), +('C16.0', 'Malignant neoplasm, cardia', 'ICD10_2010'), +('C16.1', 'Malignant neoplasm, fundus of stomach', 'ICD10_2010'), +('C16.2', 'Malignant neoplasm, body of stomach', 'ICD10_2010'), +('C16.3', 'Malignant neoplasm, pyloric antrum', 'ICD10_2010'), +('C16.4', 'Malignant neoplasm, pylorus', 'ICD10_2010'), +('C16.5', 'Malignant neoplasm, lesser curvature of stomach, unspecified', 'ICD10_2010'), +('C16.6', 'Malignant neoplasm, greater curvature of stomach, unspecified', 'ICD10_2010'), +('C16.8', 'Malignant neoplasm, overlapping lesion of stomach', 'ICD10_2010'), +('C16.9', 'Malignant neoplasm, stomach, unspecified', 'ICD10_2010'), +('C17', 'Malignant neoplasm of small intestine', 'ICD10_2010'), +('C17.0', 'Malignant neoplasm, duodenum', 'ICD10_2010'), +('C17.1', 'Malignant neoplasm, jejunum', 'ICD10_2010'), +('C17.2', 'Malignant neoplasm, ileum', 'ICD10_2010'), +('C17.3', 'Malignant neoplasm, meckel\'s diverticulum', 'ICD10_2010'), +('C17.8', 'Malignant neoplasm, overlapping lesion of small intestine', 'ICD10_2010'), +('C17.9', 'Malignant neoplasm, small intestine, unspecified', 'ICD10_2010'), +('C18', 'Malignant neoplasm of colon', 'ICD10_2010'), +('C18.0', 'Malignant neoplasm, caecum', 'ICD10_2010'), +('C18.1', 'Malignant neoplasm, appendix', 'ICD10_2010'), +('C18.2', 'Malignant neoplasm, ascending colon', 'ICD10_2010'), +('C18.3', 'Malignant neoplasm, hepatic flexure', 'ICD10_2010'), +('C18.4', 'Malignant neoplasm, transverse colon', 'ICD10_2010'), +('C18.5', 'Malignant neoplasm, splenic flexure', 'ICD10_2010'), +('C18.6', 'Malignant neoplasm, descending colon', 'ICD10_2010'), +('C18.7', 'Malignant neoplasm, sigmoid colon', 'ICD10_2010'), +('C18.8', 'Malignant neoplasm, overlapping lesion of colon', 'ICD10_2010'), +('C18.9', 'Malignant neoplasm, colon, unspecified', 'ICD10_2010'), +('C19', 'Malignant neoplasm of rectosigmoid junction', 'ICD10_2010'), +('C20', 'Malignant neoplasm of rectum', 'ICD10_2010'), +('C21', 'Malignant neoplasm of anus and anal canal', 'ICD10_2010'), +('C21.0', 'Malignant neoplasm, anus, unspecified', 'ICD10_2010'), +('C21.1', 'Malignant neoplasm, anal canal', 'ICD10_2010'), +('C21.2', 'Malignant neoplasm, cloacogenic zone', 'ICD10_2010'), +('C21.8', 'Malignant neoplasm, overlapping lesion of rectum, anus and anal canal', 'ICD10_2010'), +('C22', 'Malignant neoplasm of liver and intrahepatic bile ducts', 'ICD10_2010'), +('C22.0', 'Malignant neoplasm, liver cell carcinoma', 'ICD10_2010'), +('C22.1', 'Malignant neoplasm, intrahepatic bile duct carcinoma', 'ICD10_2010'), +('C22.2', 'Malignant neoplasm, hepatoblastoma', 'ICD10_2010'), +('C22.3', 'Malignant neoplasm, angiosarcoma of liver', 'ICD10_2010'), +('C22.4', 'Malignant neoplasm, other sarcomas of liver', 'ICD10_2010'), +('C22.7', 'Malignant neoplasm, other specified carcinomas of liver', 'ICD10_2010'), +('C22.9', 'Malignant neoplasm, liver, unspecified', 'ICD10_2010'), +('C23', 'Malignant neoplasm of gallbladder', 'ICD10_2010'), +('C24', 'Malignant neoplasm of other and unspecified parts of biliary tract', 'ICD10_2010'), +('C24.0', 'Malignant neoplasm, extrahepatic bile duct', 'ICD10_2010'), +('C24.1', 'Malignant neoplasm, ampulla of vater', 'ICD10_2010'), +('C24.8', 'Malignant neoplasm, overlapping lesion of biliary tract', 'ICD10_2010'), +('C24.9', 'Malignant neoplasm, biliary tract, unspecified', 'ICD10_2010'), +('C25', 'Malignant neoplasm of pancreas', 'ICD10_2010'), +('C25.0', 'Malignant neoplasm, head of pancreas', 'ICD10_2010'), +('C25.1', 'Malignant neoplasm, body of pancreas', 'ICD10_2010'), +('C25.2', 'Malignant neoplasm, tail of pancreas', 'ICD10_2010'), +('C25.3', 'Malignant neoplasm, pancreatic duct', 'ICD10_2010'), +('C25.4', 'Malignant neoplasm, endocrine pancreas', 'ICD10_2010'), +('C25.7', 'Malignant neoplasm, other parts of pancreas', 'ICD10_2010'), +('C25.8', 'Malignant neoplasm, overlapping lesion of pancreas', 'ICD10_2010'), +('C25.9', 'Malignant neoplasm, pancreas, unspecified', 'ICD10_2010'), +('C26', 'Malignant neoplasm of other and ill-defined digestive organs', 'ICD10_2010'), +('C26.0', 'Malignant neoplasm, intestinal tract, part unspecified', 'ICD10_2010'), +('C26.1', 'Malignant neoplasm, spleen', 'ICD10_2010'), +('C26.8', 'Malignant neoplasm, overlapping lesion of digestive system', 'ICD10_2010'), +('C26.9', 'Malignant neoplasm, ill-defined sites within the digestive system', 'ICD10_2010'), +('C30', 'Malignant neoplasm of nasal cavity and middle ear', 'ICD10_2010'), +('C30.0', 'Malignant neoplasm, nasal cavity', 'ICD10_2010'), +('C30.1', 'Malignant neoplasm, middle ear', 'ICD10_2010'), +('C31', 'Malignant neoplasm of accessory sinuses', 'ICD10_2010'), +('C31.0', 'Malignant neoplasm, maxillary sinus', 'ICD10_2010'), +('C31.1', 'Malignant neoplasm, ethmoidal sinus', 'ICD10_2010'), +('C31.2', 'Malignant neoplasm, frontal sinus', 'ICD10_2010'), +('C31.3', 'Malignant neoplasm, sphenoidal sinus', 'ICD10_2010'), +('C31.8', 'Malignant neoplasm, overlapping lesion of accessory sinuses', 'ICD10_2010'), +('C31.9', 'Malignant neoplasm, accessory sinus, unspecified', 'ICD10_2010'), +('C32', 'Malignant neoplasm of larynx', 'ICD10_2010'), +('C32.0', 'Malignant neoplasm, glottis', 'ICD10_2010'), +('C32.1', 'Malignant neoplasm, supraglottis', 'ICD10_2010'), +('C32.2', 'Malignant neoplasm, subglottis', 'ICD10_2010'), +('C32.3', 'Malignant neoplasm, laryngeal cartilage', 'ICD10_2010'), +('C32.8', 'Malignant neoplasm, overlapping lesion of larynx', 'ICD10_2010'), +('C32.9', 'Malignant neoplasm, larynx, unspecified', 'ICD10_2010'), +('C33', 'Malignant neoplasm of trachea', 'ICD10_2010'), +('C34', 'Malignant neoplasm of bronchus and lung', 'ICD10_2010'), +('C34.0', 'Malignant neoplasm, main bronchus', 'ICD10_2010'), +('C34.1', 'Malignant neoplasm, upper lobe, bronchus or lung', 'ICD10_2010'), +('C34.2', 'Malignant neoplasm, middle lobe, bronchus or lung', 'ICD10_2010'), +('C34.3', 'Malignant neoplasm, lower lobe, bronchus or lung', 'ICD10_2010'), +('C34.8', 'Malignant neoplasm, overlapping lesion of bronchus and lung', 'ICD10_2010'), +('C34.9', 'Malignant neoplasm, bronchus or lung, unspecified', 'ICD10_2010'), +('C37', 'Malignant neoplasm of thymus', 'ICD10_2010'), +('C38', 'Malignant neoplasm of heart, mediastinum and pleura', 'ICD10_2010'), +('C38.0', 'Malignant neoplasm, heart', 'ICD10_2010'), +('C38.1', 'Malignant neoplasm, anterior mediastinum', 'ICD10_2010'), +('C38.2', 'Malignant neoplasm, posterior mediastinum', 'ICD10_2010'), +('C38.3', 'Malignant neoplasm, mediastinum, part unspecified', 'ICD10_2010'), +('C38.4', 'Malignant neoplasm, pleura', 'ICD10_2010'), +('C38.8', 'Malignant neoplasm, overlapping lesion of heart, mediastinum and pleura', 'ICD10_2010'), +('C39', 'Malignant neoplasm of other and ill-defined sites in the respiratory system and intrathoracic organs', 'ICD10_2010'), +('C39.0', 'Malignant neoplasm, upper respiratory tract, part unspecified', 'ICD10_2010'), +('C39.8', 'Malignant neoplasm, overlapping lesion of respiratory and intrathoracic organs', 'ICD10_2010'), +('C39.9', 'Malignant neoplasm, ill-defined sites within the respiratory system', 'ICD10_2010'), +('C40', 'Malignant neoplasm of bone and articular cartilage of limbs', 'ICD10_2010'), +('C40.0', 'Malignant neoplasm, scapula and long bones of upper limb', 'ICD10_2010'), +('C40.1', 'Malignant neoplasm, short bones of upper limb', 'ICD10_2010'), +('C40.2', 'Malignant neoplasm, long bones of lower limb', 'ICD10_2010'), +('C40.3', 'Malignant neoplasm, short bones of lower limb', 'ICD10_2010'), +('C40.8', 'Malignant neoplasm, overlapping lesion of bone and articular cartilage of limbs', 'ICD10_2010'), +('C40.9', 'Malignant neoplasm, bone and articular cartilage of limb, unspecified', 'ICD10_2010'), +('C41', 'Malignant neoplasm of bone and articular cartilage of other and unspecified sites', 'ICD10_2010'), +('C41.0', 'Malignant neoplasm, bones of skull and face', 'ICD10_2010'), +('C41.1', 'Malignant neoplasm, mandible', 'ICD10_2010'), +('C41.2', 'Malignant neoplasm, vertebral column', 'ICD10_2010'), +('C41.3', 'Malignant neoplasm, ribs, sternum and clavicle', 'ICD10_2010'), +('C41.4', 'Malignant neoplasm, pelvic bones, sacrum and coccyx', 'ICD10_2010'), +('C41.8', 'Malignant neoplasm, overlapping lesion of bone and articular cartilage', 'ICD10_2010'), +('C41.9', 'Malignant neoplasm, bone and articular cartilage, unspecified', 'ICD10_2010'), +('C43', 'Malignant melanoma of skin', 'ICD10_2010'), +('C43.0', 'Malignant melanoma of lip', 'ICD10_2010'), +('C43.1', 'Malignant melanoma of eyelid, including canthus', 'ICD10_2010'), +('C43.2', 'Malignant melanoma of ear and external auricular canal', 'ICD10_2010'), +('C43.3', 'Malignant melanoma of other and unspecified parts of face', 'ICD10_2010'), +('C43.4', 'Malignant melanoma of scalp and neck', 'ICD10_2010'), +('C43.5', 'Malignant melanoma of trunk', 'ICD10_2010'), +('C43.6', 'Malignant melanoma of upper limb, including shoulder', 'ICD10_2010'), +('C43.7', 'Malignant melanoma of lower limb, including hip', 'ICD10_2010'), +('C43.8', 'Malignant neoplasm, overlapping malignant melanoma of skin', 'ICD10_2010'), +('C43.9', 'Malignant melanoma of skin, unspecified', 'ICD10_2010'), +('C44', 'Other malignant neoplasms of skin', 'ICD10_2010'), +('C44.0', 'Malignant neoplasm, skin of lip', 'ICD10_2010'), +('C44.1', 'Malignant neoplasm, skin of eyelid, including canthus', 'ICD10_2010'), +('C44.2', 'Malignant neoplasm, skin of ear and external auricular canal', 'ICD10_2010'), +('C44.3', 'Malignant neoplasm, skin of other and unspecified parts of face', 'ICD10_2010'), +('C44.4', 'Malignant neoplasm, skin of scalp and neck', 'ICD10_2010'), +('C44.5', 'Malignant neoplasm, skin of trunk', 'ICD10_2010'), +('C44.6', 'Malignant neoplasm, skin of upper limb, including shoulder', 'ICD10_2010'), +('C44.7', 'Malignant neoplasm, skin of lower limb, including hip', 'ICD10_2010'), +('C44.8', 'Malignant neoplasm, overlapping lesion of skin', 'ICD10_2010'), +('C44.9', 'Malignant neoplasm of skin, unspecified', 'ICD10_2010'), +('C45', 'Mesothelioma', 'ICD10_2010'), +('C45.0', 'Mesothelioma of pleura', 'ICD10_2010'), +('C45.1', 'Mesothelioma of peritoneum', 'ICD10_2010'), +('C45.2', 'Mesothelioma of pericardium', 'ICD10_2010'), +('C45.7', 'Mesothelioma of other sites', 'ICD10_2010'), +('C45.9', 'Mesothelioma, unspecified', 'ICD10_2010'), +('C46', 'Kaposi sarcoma', 'ICD10_2010'), +('C46.0', 'Kaposi\'s sarcoma of skin', 'ICD10_2010'), +('C46.1', 'Kaposi\'s sarcoma of soft tissue', 'ICD10_2010'), +('C46.2', 'Kaposi\'s sarcoma of palate', 'ICD10_2010'), +('C46.3', 'Kaposi\'s sarcoma of lymph nodes', 'ICD10_2010'), +('C46.7', 'Kaposi\'s sarcoma of other sites', 'ICD10_2010'), +('C46.8', 'Kaposi\'s sarcoma of multiple organs', 'ICD10_2010'), +('C46.9', 'Kaposi\'s sarcoma, unspecified', 'ICD10_2010'), +('C47', 'Malignant neoplasm of peripheral nerves and autonomic nervous system', 'ICD10_2010'), +('C47.0', 'Malignant neoplasm, peripheral nerves of head, face and neck', 'ICD10_2010'), +('C47.1', 'Malignant neoplasm, peripheral nerves of upper limb, including shoulder', 'ICD10_2010'), +('C47.2', 'Malignant neoplasm, peripheral nerves of lower limb, including hip', 'ICD10_2010'), +('C47.3', 'Malignant neoplasm, peripheral nerves of thorax', 'ICD10_2010'), +('C47.4', 'Malignant neoplasm, peripheral nerves of abdomen', 'ICD10_2010'), +('C47.5', 'Malignant neoplasm, peripheral nerves of pelvis', 'ICD10_2010'), +('C47.6', 'Malignant neoplasm, peripheral nerves of trunk, unspecified', 'ICD10_2010'), +('C47.8', 'Malignant neoplasm, overlapping lesion peripheral nerve/autonomic nervous syst', 'ICD10_2010'), +('C47.9', 'Malignant neoplasm, peripheral nerves and autonomic nervous system, unspecified', 'ICD10_2010'), +('C48', 'Malignant neoplasm of retroperitoneum and peritoneum', 'ICD10_2010'), +('C48.0', 'Malignant neoplasm, retroperitoneum', 'ICD10_2010'), +('C48.1', 'Malignant neoplasm, specified parts of peritoneum', 'ICD10_2010'), +('C48.2', 'Malignant neoplasm, peritoneum, unspecified', 'ICD10_2010'), +('C48.8', 'Malignant neoplasm, overlapping lesion of retroperitoneum and peritoneum', 'ICD10_2010'), +('C49', 'Malignant neoplasm of other connective and soft tissue', 'ICD10_2010'), +('C49.0', 'Malignant neoplasm, connective and soft tissue of head, face and neck', 'ICD10_2010'), +('C49.1', 'Malignant neoplasm, connective and soft tissue of upper limb, including shoulder', 'ICD10_2010'), +('C49.2', 'Malignant neoplasm, connective and soft tissue of lower limb, including hip', 'ICD10_2010'), +('C49.3', 'Malignant neoplasm, connective and soft tissue of thorax', 'ICD10_2010'), +('C49.4', 'Malignant neoplasm, connective and soft tissue of abdomen', 'ICD10_2010'), +('C49.5', 'Malignant neoplasm, connective and soft tissue of pelvis', 'ICD10_2010'), +('C49.6', 'Malignant neoplasm, connective and soft tissue of trunk, unspecified', 'ICD10_2010'), +('C49.8', 'Malignant neoplasm, overlapping lesion of connective and soft tissue', 'ICD10_2010'), +('C49.9', 'Malignant neoplasm, connective and soft tissue, unspecified', 'ICD10_2010'), +('C50', 'Malignant neoplasm of breast', 'ICD10_2010'), +('C50.0', 'Malignant neoplasm, nipple and areola', 'ICD10_2010'), +('C50.1', 'Malignant neoplasm, central portion of breast', 'ICD10_2010'), +('C50.2', 'Malignant neoplasm, upper-inner quadrant of breast', 'ICD10_2010'), +('C50.3', 'Malignant neoplasm, lower-inner quadrant of breast', 'ICD10_2010'), +('C50.4', 'Malignant neoplasm, upper-outer quadrant of breast', 'ICD10_2010'), +('C50.5', 'Malignant neoplasm, lower-outer quadrant of breast', 'ICD10_2010'), +('C50.6', 'Malignant neoplasm, axillary tail of breast', 'ICD10_2010'), +('C50.8', 'Malignant neoplasm, overlapping lesion of breast', 'ICD10_2010'), +('C50.9', 'Malignant neoplasm, breast, unspecified', 'ICD10_2010'), +('C51', 'Malignant neoplasm of vulva', 'ICD10_2010'), +('C51.0', 'Malignant neoplasm, labium majus', 'ICD10_2010'), +('C51.1', 'Malignant neoplasm, labium minus', 'ICD10_2010'), +('C51.2', 'Malignant neoplasm, clitoris', 'ICD10_2010'), +('C51.8', 'Malignant neoplasm, overlapping lesion of vulva', 'ICD10_2010'), +('C51.9', 'Malignant neoplasm, vulva, unspecified', 'ICD10_2010'), +('C52', 'Malignant neoplasm of vagina', 'ICD10_2010'), +('C53', 'Malignant neoplasm of cervix uteri', 'ICD10_2010'), +('C53.0', 'Malignant neoplasm, endocervix', 'ICD10_2010'), +('C53.1', 'Malignant neoplasm, exocervix', 'ICD10_2010'), +('C53.8', 'Malignant neoplasm, overlapping lesion of cervix uteri', 'ICD10_2010'), +('C53.9', 'Malignant neoplasm, cervix uteri, unspecified', 'ICD10_2010'), +('C54', 'Malignant neoplasm of corpus uteri', 'ICD10_2010'), +('C54.0', 'Malignant neoplasm, isthmus uteri', 'ICD10_2010'), +('C54.1', 'Malignant neoplasm, endometrium', 'ICD10_2010'), +('C54.2', 'Malignant neoplasm, myometrium', 'ICD10_2010'), +('C54.3', 'Malignant neoplasm, fundus uteri', 'ICD10_2010'), +('C54.8', 'Malignant neoplasm, overlapping lesion of corpus uteri', 'ICD10_2010'), +('C54.9', 'Malignant neoplasm, corpus uteri, unspecified', 'ICD10_2010'), +('C55', 'Malignant neoplasm of uterus, part unspecified', 'ICD10_2010'), +('C56', 'Malignant neoplasm of ovary', 'ICD10_2010'), +('C57', 'Malignant neoplasm of other and unspecified female genital organs', 'ICD10_2010'), +('C57.0', 'Malignant neoplasm, fallopian tube', 'ICD10_2010'), +('C57.1', 'Malignant neoplasm, broad ligament', 'ICD10_2010'), +('C57.2', 'Malignant neoplasm, round ligament', 'ICD10_2010'), +('C57.3', 'Malignant neoplasm, parametrium', 'ICD10_2010'), +('C57.4', 'Malignant neoplasm, uterine adnexa, unspecified', 'ICD10_2010'), +('C57.7', 'Malignant neoplasm, other specified female genital organs', 'ICD10_2010'), +('C57.8', 'Malignant neoplasm, overlapping lesion of female genital organs', 'ICD10_2010'), +('C57.9', 'Malignant neoplasm, female genital organ, unspecified', 'ICD10_2010'), +('C58', 'Malignant neoplasm of placenta', 'ICD10_2010'), +('C60', 'Malignant neoplasm of penis', 'ICD10_2010'), +('C60.0', 'Malignant neoplasm, prepuce', 'ICD10_2010'), +('C60.1', 'Malignant neoplasm, glans penis', 'ICD10_2010'), +('C60.2', 'Malignant neoplasm, body of penis', 'ICD10_2010'), +('C60.8', 'Malignant neoplasm, overlapping lesion of penis', 'ICD10_2010'), +('C60.9', 'Malignant neoplasm, penis, unspecified', 'ICD10_2010'), +('C61', 'Malignant neoplasm of prostate', 'ICD10_2010'), +('C62', 'Malignant neoplasm of testis', 'ICD10_2010'), +('C62.0', 'Malignant neoplasm, undescended testis', 'ICD10_2010'), +('C62.1', 'Malignant neoplasm, descended testis', 'ICD10_2010'), +('C62.9', 'Malignant neoplasm, testis, unspecified', 'ICD10_2010'), +('C63', 'Malignant neoplasm of other and unspecified male genital organs', 'ICD10_2010'), +('C63.0', 'Malignant neoplasm, epididymis', 'ICD10_2010'), +('C63.1', 'Malignant neoplasm, spermatic cord', 'ICD10_2010'), +('C63.2', 'Malignant neoplasm, scrotum', 'ICD10_2010'), +('C63.7', 'Malignant neoplasm, other specified male genital organs', 'ICD10_2010'), +('C63.8', 'Malignant neoplasm, overlapping lesion of male genital organs', 'ICD10_2010'), +('C63.9', 'Malignant neoplasm, male genital organ, unspecified', 'ICD10_2010'), +('C64', 'Malignant neoplasm of kidney, except renal pelvis', 'ICD10_2010'), +('C65', 'Malignant neoplasm of renal pelvis', 'ICD10_2010'), +('C66', 'Malignant neoplasm of ureter', 'ICD10_2010'), +('C67', 'Malignant neoplasm of bladder', 'ICD10_2010'), +('C67.0', 'Malignant neoplasm, trigone of bladder', 'ICD10_2010'), +('C67.1', 'Malignant neoplasm, dome of bladder', 'ICD10_2010'), +('C67.2', 'Malignant neoplasm, lateral wall of bladder', 'ICD10_2010'), +('C67.3', 'Malignant neoplasm, anterior wall of bladder', 'ICD10_2010'), +('C67.4', 'Malignant neoplasm, posterior wall of bladder', 'ICD10_2010'), +('C67.5', 'Malignant neoplasm, bladder neck', 'ICD10_2010'), +('C67.6', 'Malignant neoplasm, ureteric orifice', 'ICD10_2010'), +('C67.7', 'Malignant neoplasm, urachus', 'ICD10_2010'), +('C67.8', 'Malignant neoplasm, overlapping lesion of bladder', 'ICD10_2010'), +('C67.9', 'Malignant neoplasm, bladder, unspecified', 'ICD10_2010'), +('C68', 'Malignant neoplasm of other and unspecified urinary organs', 'ICD10_2010'), +('C68.0', 'Malignant neoplasm, urethra', 'ICD10_2010'), +('C68.1', 'Malignant neoplasm, paraurethral gland', 'ICD10_2010'), +('C68.8', 'Malignant neoplasm, overlapping lesion of urinary organs', 'ICD10_2010'), +('C68.9', 'Malignant neoplasm, urinary organ, unspecified', 'ICD10_2010'), +('C69', 'Malignant neoplasm of eye and adnexa', 'ICD10_2010'), +('C69.0', 'Malignant neoplasm, conjunctiva', 'ICD10_2010'), +('C69.1', 'Malignant neoplasm, cornea', 'ICD10_2010'), +('C69.2', 'Malignant neoplasm, retina', 'ICD10_2010'), +('C69.3', 'Malignant neoplasm, choroid', 'ICD10_2010'), +('C69.4', 'Malignant neoplasm, ciliary body', 'ICD10_2010'), +('C69.5', 'Malignant neoplasm, lacrimal gland and duct', 'ICD10_2010'), +('C69.6', 'Malignant neoplasm, orbit', 'ICD10_2010'), +('C69.8', 'Malignant neoplasm, overlapping lesion of eye and adnexa', 'ICD10_2010'), +('C69.9', 'Malignant neoplasm, eye, unspecified', 'ICD10_2010'), +('C70', 'Malignant neoplasm of meninges', 'ICD10_2010'), +('C70.0', 'Malignant neoplasm, cerebral meninges', 'ICD10_2010'), +('C70.1', 'Malignant neoplasm, spinal meninges', 'ICD10_2010'), +('C70.9', 'Malignant neoplasm, meninges, unspecified', 'ICD10_2010'), +('C71', 'Malignant neoplasm of brain', 'ICD10_2010'), +('C71.0', 'Malignant neoplasm, cerebrum, except lobes and ventricles', 'ICD10_2010'), +('C71.1', 'Malignant neoplasm, frontal lobe', 'ICD10_2010'), +('C71.2', 'Malignant neoplasm, temporal lobe', 'ICD10_2010'), +('C71.3', 'Malignant neoplasm, parietal lobe', 'ICD10_2010'), +('C71.4', 'Malignant neoplasm, occipital lobe', 'ICD10_2010'), +('C71.5', 'Malignant neoplasm, cerebral ventricle', 'ICD10_2010'), +('C71.6', 'Malignant neoplasm, cerebellum', 'ICD10_2010'), +('C71.7', 'Malignant neoplasm, brain stem', 'ICD10_2010'), +('C71.8', 'Malignant neoplasm, overlapping lesion of brain', 'ICD10_2010'), +('C71.9', 'Malignant neoplasm, brain, unspecified', 'ICD10_2010'), +('C72', 'Malignant neoplasm of spinal cord, cranial nerves and other parts of central nervous system', 'ICD10_2010'), +('C72.0', 'Malignant neoplasm, spinal cord', 'ICD10_2010'), +('C72.1', 'Malignant neoplasm, cauda equina', 'ICD10_2010'), +('C72.2', 'Malignant neoplasm, olfactory nerve', 'ICD10_2010'), +('C72.3', 'Malignant neoplasm, optic nerve', 'ICD10_2010'), +('C72.4', 'Malignant neoplasm, acoustic nerve', 'ICD10_2010'), +('C72.5', 'Malignant neoplasm, other and unspecified cranial nerves', 'ICD10_2010'), +('C72.8', 'Malignant neoplasm, overlapping lesion of brain and other parts of cns', 'ICD10_2010'), +('C72.9', 'Malignant neoplasm, central nervous system, unspecified', 'ICD10_2010'), +('C73', 'Malignant neoplasm of thyroid gland', 'ICD10_2010'), +('C74', 'Malignant neoplasm of adrenal gland', 'ICD10_2010'), +('C74.0', 'Malignant neoplasm, cortex of adrenal gland', 'ICD10_2010'), +('C74.1', 'Malignant neoplasm, medulla of adrenal gland', 'ICD10_2010'), +('C74.9', 'Malignant neoplasm, adrenal gland, unspecified', 'ICD10_2010'), +('C75', 'Malignant neoplasm of other endocrine glands and related structures', 'ICD10_2010'), +('C75.0', 'Malignant neoplasm, parathyroid gland', 'ICD10_2010'), +('C75.1', 'Malignant neoplasm, pituitary gland', 'ICD10_2010'), +('C75.2', 'Malignant neoplasm, craniopharyngeal duct', 'ICD10_2010'), +('C75.3', 'Malignant neoplasm, pineal gland', 'ICD10_2010'), +('C75.4', 'Malignant neoplasm, carotid body', 'ICD10_2010'), +('C75.5', 'Malignant neoplasm, aortic body and other paraganglia', 'ICD10_2010'), +('C75.8', 'Malignant neoplasm, pluriglandular involvement, unspecified', 'ICD10_2010'), +('C75.9', 'Malignant neoplasm, endocrine gland, unspecified', 'ICD10_2010'), +('C76', 'Malignant neoplasm of other and ill-defined sites', 'ICD10_2010'), +('C76.0', 'Malignant neoplasm, head, face and neck', 'ICD10_2010'), +('C76.1', 'Malignant neoplasm, thorax', 'ICD10_2010'), +('C76.2', 'Malignant neoplasm, abdomen', 'ICD10_2010'), +('C76.3', 'Malignant neoplasm, pelvis', 'ICD10_2010'), +('C76.4', 'Malignant neoplasm, upper limb', 'ICD10_2010'), +('C76.5', 'Malignant neoplasm, lower limb', 'ICD10_2010'), +('C76.7', 'Malignant neoplasm, other ill-defined sites', 'ICD10_2010'), +('C76.8', 'Malignant neoplasm, overlapping lesion of other and ill-defined sites', 'ICD10_2010'), +('C77', 'Secondary and unspecified malignant neoplasm of lymph nodes', 'ICD10_2010'), +('C77.0', 'Secondary malignant neoplasm, lymph nodes of head, face and neck', 'ICD10_2010'), +('C77.1', 'Secondary malignant neoplasm, intrathoracic lymph nodes', 'ICD10_2010'), +('C77.2', 'Secondary malignant neoplasm, intra-abdominal lymph nodes', 'ICD10_2010'), +('C77.3', 'Secondary malignant neoplasm, axillary and upper limb lymph nodes', 'ICD10_2010'), +('C77.4', 'Secondary malignant neoplasm, inguinal and lower limb lymph nodes', 'ICD10_2010'), +('C77.5', 'Secondary malignant neoplasm, intrapelvic lymph nodes', 'ICD10_2010'), +('C77.8', 'Secondary malignant neoplasm, lymph nodes of multiple regions', 'ICD10_2010'), +('C77.9', 'Secondary malignant neoplasm, lymph node, unspecified', 'ICD10_2010'), +('C78', 'Secondary malignant neoplasm of respiratory and digestive organs', 'ICD10_2010'), +('C78.0', 'Secondary malignant neoplasm of lung', 'ICD10_2010'), +('C78.1', 'Secondary malignant neoplasm of mediastinum', 'ICD10_2010'), +('C78.2', 'Secondary malignant neoplasm of pleura', 'ICD10_2010'), +('C78.3', 'Secondary malignant neoplasm, other and unspecified respiratory organs', 'ICD10_2010'), +('C78.4', 'Secondary malignant neoplasm of small intestine', 'ICD10_2010'), +('C78.5', 'Secondary malignant neoplasm of large intestine and rectum', 'ICD10_2010'), +('C78.6', 'Sec malignant neoplasm of retroperitoneum and peritoneum', 'ICD10_2010'), +('C78.7', 'Secondary malignant neoplasm of liver', 'ICD10_2010'), +('C78.8', 'Sec malignant neoplasm of other and unspec digestive organs', 'ICD10_2010'), +('C79', 'Secondary malignant neoplasm of other and unspecified sites', 'ICD10_2010'), +('C79.0', 'Secondary malignant neoplasm of kidney and renal pelvis', 'ICD10_2010'), +('C79.1', 'Sec malignant neo bladder and oth and unspec urinary organ', 'ICD10_2010'), +('C79.2', 'Secondary malignant neoplasm of skin', 'ICD10_2010'), +('C79.3', 'Secondary malignant neoplasm of brain and cerebral meninges', 'ICD10_2010'), +('C79.4', 'Sec malignant neo of other and unspec parts of nervous sys', 'ICD10_2010'), +('C79.5', 'Secondary malignant neoplasm of bone and bone marrow', 'ICD10_2010'), +('C79.6', 'Secondary malignant neoplasm of ovary', 'ICD10_2010'), +('C79.7', 'Secondary malignant neoplasm of adrenal gland', 'ICD10_2010'), +('C79.8', 'Secondary malignant neoplasm of other specified sites', 'ICD10_2010'), +('C79.9', 'Secondary malignant neoplasm, unspecified site', 'ICD10_2010'), +('C80', 'Malignant neoplasm without specification of site', 'ICD10_2010'), +('C80.0', 'Malignant neoplasm, primary site unknown, so stated', 'ICD10_2010'), +('C80.9', 'Malignant neoplasm, unspecified', 'ICD10_2010'), +('C81', 'Hodgkin lymphoma', 'ICD10_2010'), +('C81.0', 'Hodgkin\'s disease, Lymphocytic predominance', 'ICD10_2010'), +('C81.1', 'Hodgkin\'s disease, Nodular sclerosis', 'ICD10_2010'), +('C81.2', 'Hodgkin\'s disease, Mixed cellularity', 'ICD10_2010'), +('C81.3', 'Hodgkin\'s disease, Lymphocytic depletion', 'ICD10_2010'), +('C81.4', 'Lymphocyte-rich classical Hodgkin lymphoma', 'ICD10_2010'), +('C81.7', 'Other hodgkin\'s disease', 'ICD10_2010'), +('C81.9', 'Hodgkin\'s disease, unspecified', 'ICD10_2010'), +('C82', 'Follicular lymphoma', 'ICD10_2010'), +('C82.0', 'Follicular non-hodgkin\'s lymphoma, Small cleaved cell, follicular', 'ICD10_2010'), +('C82.1', 'Follicular non-hodgkin\'s lymphoma, Mixed small cleaved and large cell, follicular', 'ICD10_2010'), +('C82.2', 'Follicular non-hodgkin\'s lymphoma, Large cell, follicular', 'ICD10_2010'), +('C82.3', 'Follicular lymphoma grade IIIa', 'ICD10_2010'), +('C82.4', 'Follicular lymphoma grade IIIb', 'ICD10_2010'), +('C82.5', 'Diffuse follicle centre lymphoma', 'ICD10_2010'), +('C82.6', 'Cutaneous follicle centre lymphoma', 'ICD10_2010'), +('C82.7', 'Other types of follicular non-hodgkin\'s lymphoma', 'ICD10_2010'), +('C82.9', 'Follicular non-hodgkin\'s lymphoma, unspecified', 'ICD10_2010'), +('C83', 'Non-follicular lymphoma', 'ICD10_2010'), +('C83.0', 'Diffuse non-hodgkin\'s lymphoma, Small cell (diffuse)', 'ICD10_2010'), +('C83.1', 'Diffuse non-hodgkin\'s lymphoma, Small cleaved cell (diffuse)', 'ICD10_2010'), +('C83.2', 'Diffuse non-hodgkin\'s lymphoma, Mixed small and large cell (diffuse)', 'ICD10_2010'), +('C83.3', 'Diffuse non-hodgkin\'s lymphoma, Large cell (diffuse)', 'ICD10_2010'), +('C83.4', 'Diffuse non-hodgkin\'s lymphoma, Immunoblastic (diffuse)', 'ICD10_2010'), +('C83.5', 'Diffuse non-hodgkin\'s lymphoma, Lymphoblastic (diffuse)', 'ICD10_2010'), +('C83.6', 'Diffuse non-hodgkin\'s lymphoma, Undifferentiated (diffuse)', 'ICD10_2010'), +('C83.7', 'Diffuse non-hodgkin\'s lymphoma, Burkitt\'s tumour', 'ICD10_2010'), +('C83.8', 'Other types of diffuse non-hodgkin\'s lymphoma', 'ICD10_2010'), +('C83.9', 'Diffuse non-hodgkin\'s lymphoma, unspecified', 'ICD10_2010'), +('C84', 'Mature T/NK-cell lymphomas', 'ICD10_2010'), +('C84.0', 'Peripheral and cutaneous T-cell lymphoma, Mycosis fungoides', 'ICD10_2010'), +('C84.1', 'Peripheral and cutaneous T-cell lymphoma, Sezary\'s disease', 'ICD10_2010'), +('C84.2', 'Peripheral and cutaneous T-cell lymphoma, T-zone lymphoma', 'ICD10_2010'), +('C84.3', 'Peripheral and cutaneous T-cell lymphoma, Lymphoepithelioid lymphoma', 'ICD10_2010'), +('C84.4', 'Peripheral t-cell lymphoma', 'ICD10_2010'), +('C84.5', 'Other and unspecified t-cell lymphomas', 'ICD10_2010'), +('C84.6', 'Anaplastic large cell lymphoma, ALK-positive', 'ICD10_2010'), +('C84.7', 'Anaplastic large cell lymphoma, ALK-negative', 'ICD10_2010'), +('C84.8', 'Cutaneous T-cell lymphoma, unspecified', 'ICD10_2010'), +('C84.9', 'Mature T/NK-cell lymphoma, unspecified', 'ICD10_2010'), +('C85', 'Other and unspecified types of non-Hodgkin lymphoma', 'ICD10_2010'), +('C85.0', 'Lymphosarcoma', 'ICD10_2010'), +('C85.1', 'B-cell lymphoma, unspecified', 'ICD10_2010'), +('C85.2', 'Mediastinal (thymic) large B-cell lymphoma', 'ICD10_2010'), +('C85.7', 'Other specified types of non-hodgkin\'s lymphoma', 'ICD10_2010'), +('C85.9', 'Non-hodgkin\'s lymphoma, unspecified type', 'ICD10_2010'), +('C86', 'Other specified types of T/NK-cell lymphoma', 'ICD10_2010'), +('C86.0', 'Extranodal NK/T-cell lymphoma, nasal type', 'ICD10_2010'), +('C86.1', 'Hepatosplenic T-cell lymphoma', 'ICD10_2010'), +('C86.2', 'Enteropathy-type (intestinal) T-cell lymphoma', 'ICD10_2010'), +('C86.3', 'Subcutaneous panniculitis-like T-cell lymphoma', 'ICD10_2010'), +('C86.4', 'Blastic NK-cell lymphoma', 'ICD10_2010'), +('C86.5', 'Angioimmunoblastic T-cell lymphoma', 'ICD10_2010'), +('C86.6', 'Primary cutaneous CD30-positive T-cell proliferations', 'ICD10_2010'), +('C88', 'Malignant immunoproliferative diseases', 'ICD10_2010'), +('C88.0', 'Waldenstram\'s macroglobulinaemia', 'ICD10_2010'), +('C88.1', 'Alpha heavy chain disease', 'ICD10_2010'), +('C88.2', 'Gamma heavy chain disease', 'ICD10_2010'), +('C88.3', 'Immunoproliferative small intestinal disease', 'ICD10_2010'), +('C88.4', 'Extranodal marginal zone B-cell lymphoma of mucosa-associated lymphoid tissue [MALT-lyphoma]', 'ICD10_2010'), +('C88.7', 'Other malignant immunoproliferative diseases', 'ICD10_2010'), +('C88.9', 'Malignant immunoproliferative diseases, unspecified', 'ICD10_2010'), +('C90', 'Multiple myeloma and malignant plasma cell neoplasms', 'ICD10_2010'), +('C90.0', 'Multiple myeloma', 'ICD10_2010'), +('C90.1', 'Plasma cell leukaemia', 'ICD10_2010'), +('C90.2', 'Plasmacytoma, extramedullary', 'ICD10_2010'), +('C90.3', 'Solitary plasmacytoma', 'ICD10_2010'), +('C91', 'Lymphoid leukaemia', 'ICD10_2010'), +('C91.0', 'Acute lymphoblastic leukaemia', 'ICD10_2010'), +('C91.1', 'Chronic lymphocytic leukaemia', 'ICD10_2010'), +('C91.2', 'Subacute lymphocytic leukaemia', 'ICD10_2010'), +('C91.3', 'Prolymphocytic leukaemia', 'ICD10_2010'), +('C91.4', 'Hairy-cell leukaemia', 'ICD10_2010'), +('C91.5', 'Adult t-cell leukaemia', 'ICD10_2010'), +('C91.6', 'Prolymphocytic leukaemia of T-cell type', 'ICD10_2010'), +('C91.7', 'Other lymphoid leukaemia', 'ICD10_2010'), +('C91.8', 'Mature B-cell leukaemia Burkitt-type', 'ICD10_2010'), +('C91.9', 'Lymphoid leukaemia, unspecified', 'ICD10_2010'), +('C92', 'Myeloid leukaemia', 'ICD10_2010'), +('C92.0', 'Acute myeloid leukaemia', 'ICD10_2010'), +('C92.1', 'Chronic myeloid leukaemia', 'ICD10_2010'), +('C92.2', 'Subacute myeloid leukaemia', 'ICD10_2010'), +('C92.3', 'Myeloid sarcoma', 'ICD10_2010'), +('C92.4', 'Acute promyelocytic leukaemia', 'ICD10_2010'), +('C92.5', 'Acute myelomonocytic leukaemia', 'ICD10_2010'), +('C92.6', 'Acute myeloid leukaemia with 11q23-abnormality', 'ICD10_2010'), +('C92.7', 'Other myeloid leukaemia', 'ICD10_2010'), +('C92.8', 'Acute myeloid leukaemia with multilineage dysplasia', 'ICD10_2010'), +('C92.9', 'Myeloid leukaemia, unspecified', 'ICD10_2010'), +('C93', 'Monocytic leukaemia', 'ICD10_2010'), +('C93.0', 'Acute monocytic leukaemia', 'ICD10_2010'), +('C93.1', 'Chronic monocytic leukaemia', 'ICD10_2010'), +('C93.2', 'Subacute monocytic leukaemia', 'ICD10_2010'), +('C93.3', 'Juvenile myelomonocytic leukaemia', 'ICD10_2010'), +('C93.7', 'Other monocytic leukaemia', 'ICD10_2010'), +('C93.9', 'Monocytic leukaemia, unspecified', 'ICD10_2010'), +('C94', 'Other leukaemias of specified cell type', 'ICD10_2010'), +('C94.0', 'Acute erythraemia and erythroleukaemia', 'ICD10_2010'), +('C94.1', 'Chronic erythraemia', 'ICD10_2010'), +('C94.2', 'Acute megakaryoblastic leukaemia', 'ICD10_2010'), +('C94.3', 'Mast cell leukaemia', 'ICD10_2010'), +('C94.4', 'Acute panmyelosis', 'ICD10_2010'), +('C94.5', 'Acute myelofibrosis', 'ICD10_2010'), +('C94.6', 'Myelodysplastic and myeloproliferative disease, not elsewhere classified', 'ICD10_2010'), +('C94.7', 'Other specified leukaemias', 'ICD10_2010'), +('C95', 'Leukaemia of unspecified cell type', 'ICD10_2010'), +('C95.0', 'Acute leukaemia of unspecified cell type', 'ICD10_2010'), +('C95.1', 'Chronic leukaemia of unspecified cell type', 'ICD10_2010'), +('C95.2', 'Subacute leukaemia of unspecified cell type', 'ICD10_2010'), +('C95.7', 'Other leukaemia of unspecified cell type', 'ICD10_2010'), +('C95.9', 'Leukaemia, unspecified', 'ICD10_2010'), +('C96', 'Other and unspecified malignant neoplasms of lymphoid, haematopoietic and related tissue', 'ICD10_2010'), +('C96.0', 'Letterer-siwe disease', 'ICD10_2010'), +('C96.1', 'Malignant histiocytosis', 'ICD10_2010'), +('C96.2', 'Malignant mast cell tumour', 'ICD10_2010'), +('C96.3', 'True histiocytic lymphoma', 'ICD10_2010'), +('C96.4', 'Sarcoma of dendritic cells (accessory cells)', 'ICD10_2010'), +('C96.5', 'Multifocal and unisystemic Langerhans-cell histiocytosis', 'ICD10_2010'), +('C96.6', 'Unifocal Langerhans-cell histiocytosis', 'ICD10_2010'), +('C96.7', 'Other specified malignant neoplasm lymphoid, hematopoietic & related tissue', 'ICD10_2010'), +('C96.8', 'Histiocytic sarcoma', 'ICD10_2010'), +('C96.9', 'Malignant neoplasm of lymphoid, haematopoietic and related tissue, unspecified', 'ICD10_2010'), +('C97', 'Malignant neoplasms of independent (primary) multiple sites', 'ICD10_2010'), +('D00', 'Carcinoma in situ of oral cavity, oesophagus and stomach', 'ICD10_2010'), +('D00.0', 'Carcinoma in situ of lip, oral cavity and pharynx', 'ICD10_2010'), +('D00.1', 'Carcinoma in situ of oesophagus', 'ICD10_2010'), +('D00.2', 'Carcinoma in situ of stomach', 'ICD10_2010'), +('D01', 'Carcinoma in situ of other and unspecified digestive organs', 'ICD10_2010'), +('D01.0', 'Carcinoma in situ of colon', 'ICD10_2010'), +('D01.1', 'Carcinoma in situ of rectosigmoid junction', 'ICD10_2010'), +('D01.2', 'Carcinoma in situ of rectum', 'ICD10_2010'), +('D01.3', 'Carcinoma in situ of anus and anal canal', 'ICD10_2010'), +('D01.4', 'Carcinoma in situ of other and unspecified parts of intestine', 'ICD10_2010'), +('D01.5', 'Carcinoma in situ of liver, gallbladder and bile ducts', 'ICD10_2010'), +('D01.7', 'Carcinoma in situ of other specified digestive organs', 'ICD10_2010'), +('D01.9', 'Carcinoma in situ of digestive organ, unspecified', 'ICD10_2010'), +('D02', 'Carcinoma in situ of middle ear and respiratory system', 'ICD10_2010'), +('D02.0', 'Carcinoma in situ of larynx', 'ICD10_2010'), +('D02.1', 'Carcinoma in situ of trachea', 'ICD10_2010'), +('D02.2', 'Carcinoma in situ of bronchus and lung', 'ICD10_2010'), +('D02.3', 'Carcinoma in situ of other parts of respiratory system', 'ICD10_2010'), +('D02.4', 'Carcinoma in situ of respiratory system, unspecified', 'ICD10_2010'), +('D03', 'Melanoma in situ', 'ICD10_2010'), +('D03.0', 'Melanoma in situ of lip', 'ICD10_2010'), +('D03.1', 'Melanoma in situ of eyelid, including canthus', 'ICD10_2010'), +('D03.2', 'Melanoma in situ of ear and external auricular canal', 'ICD10_2010'), +('D03.3', 'Melanoma in situ of other and unspecified parts of face', 'ICD10_2010'), +('D03.4', 'Melanoma in situ of scalp and neck', 'ICD10_2010'), +('D03.5', 'Melanoma in situ of trunk', 'ICD10_2010'), +('D03.6', 'Melanoma in situ of upper limb, including shoulder', 'ICD10_2010'), +('D03.7', 'Melanoma in situ of lower limb, including hip', 'ICD10_2010'), +('D03.8', 'Melanoma in situ of other sites', 'ICD10_2010'), +('D03.9', 'Melanoma in situ, unspecified', 'ICD10_2010'), +('D04', 'Carcinoma in situ of skin', 'ICD10_2010'), +('D04.0', 'Carcinoma in situ skin of lip', 'ICD10_2010'), +('D04.1', 'Carcinoma in situ skin of eyelid, including canthus', 'ICD10_2010'), +('D04.2', 'Carcinoma in situ skin of ear and external auricular canal', 'ICD10_2010'), +('D04.3', 'Carcinoma in situ skin of other and unspecified parts of face', 'ICD10_2010'), +('D04.4', 'Carcinoma in situ skin of scalp and neck', 'ICD10_2010'), +('D04.5', 'Carcinoma in situ skin of trunk', 'ICD10_2010'), +('D04.6', 'Carcinoma in situ skin of upper limb, including shoulder', 'ICD10_2010'), +('D04.7', 'Carcinoma in situ skin of lower limb, including hip', 'ICD10_2010'), +('D04.8', 'Carcinoma in situ skin of other sites', 'ICD10_2010'), +('D04.9', 'Carcinoma in situ skin, unspecified', 'ICD10_2010'), +('D05', 'Carcinoma in situ of breast', 'ICD10_2010'), +('D05.0', 'Lobular carcinoma in situ', 'ICD10_2010'), +('D05.1', 'Intraductal carcinoma in situ', 'ICD10_2010'), +('D05.7', 'Other carcinoma in situ of breast', 'ICD10_2010'), +('D05.9', 'Carcinoma in situ of breast, unspecified', 'ICD10_2010'), +('D06', 'Carcinoma in situ of cervix uteri', 'ICD10_2010'), +('D06.0', 'Carcinoma in situ of endocervix', 'ICD10_2010'), +('D06.1', 'Carcinoma in situ of exocervix', 'ICD10_2010'), +('D06.7', 'Carcinoma in situ of other parts of cervix', 'ICD10_2010'), +('D06.9', 'Carcinoma in situ of cervix, unspecified', 'ICD10_2010'), +('D07', 'Carcinoma in situ of other and unspecified genital organs', 'ICD10_2010'), +('D07.0', 'Carcinoma in situ of endometrium', 'ICD10_2010'), +('D07.1', 'Carcinoma in situ of vulva', 'ICD10_2010'), +('D07.2', 'Carcinoma in situ of vagina', 'ICD10_2010'), +('D07.3', 'Carcinoma in situ of other and unspecified female genital organs', 'ICD10_2010'), +('D07.4', 'Carcinoma in situ of penis', 'ICD10_2010'), +('D07.5', 'Carcinoma in situ of prostate', 'ICD10_2010'), +('D07.6', 'Carcinoma in situ of other and unspecified male genital organs', 'ICD10_2010'), +('D09', 'Carcinoma in situ of other and unspecified sites', 'ICD10_2010'), +('D09.0', 'Carcinoma in situ of bladder', 'ICD10_2010'), +('D09.1', 'Carcinoma in situ of other and unspecified urinary organs', 'ICD10_2010'), +('D09.2', 'Carcinoma in situ of eye', 'ICD10_2010'), +('D09.3', 'Carcinoma in situ of thyroid and other endocrine glands', 'ICD10_2010'), +('D09.7', 'Carcinoma in situ of other specified sites', 'ICD10_2010'), +('D09.9', 'Carcinoma in situ, unspecified', 'ICD10_2010'), +('D10', 'Benign neoplasm of mouth and pharynx', 'ICD10_2010'), +('D10.0', 'Benign neoplasm, lip', 'ICD10_2010'), +('D10.1', 'Benign neoplasm, tongue', 'ICD10_2010'), +('D10.2', 'Benign neoplasm, floor of mouth', 'ICD10_2010'), +('D10.3', 'Benign neoplasm, other and unspecified parts of mouth', 'ICD10_2010'), +('D10.4', 'Benign neoplasm, tonsil', 'ICD10_2010'), +('D10.5', 'Benign neoplasm, other parts of oropharynx', 'ICD10_2010'), +('D10.6', 'Benign neoplasm, nasopharynx', 'ICD10_2010'), +('D10.7', 'Benign neoplasm, hypopharynx', 'ICD10_2010'), +('D10.9', 'Benign neoplasm, pharynx, unspecified', 'ICD10_2010'), +('D11', 'Benign neoplasm of major salivary glands', 'ICD10_2010'), +('D11.0', 'Benign neoplasm, parotid gland', 'ICD10_2010'), +('D11.7', 'Benign neoplasm, other major salivary glands', 'ICD10_2010'), +('D11.9', 'Benign neoplasm, major salivary gland, unspecified', 'ICD10_2010'), +('D12', 'Benign neoplasm of colon, rectum, anus and anal canal', 'ICD10_2010'), +('D12.0', 'Benign neoplasm, caecum', 'ICD10_2010'), +('D12.1', 'Benign neoplasm, appendix', 'ICD10_2010'), +('D12.2', 'Benign neoplasm, ascending colon', 'ICD10_2010'), +('D12.3', 'Benign neoplasm, transverse colon', 'ICD10_2010'), +('D12.4', 'Benign neoplasm, descending colon', 'ICD10_2010'), +('D12.5', 'Benign neoplasm, sigmoid colon', 'ICD10_2010'), +('D12.6', 'Benign neoplasm, colon, unspecified', 'ICD10_2010'), +('D12.7', 'Benign neoplasm, rectosigmoid junction', 'ICD10_2010'), +('D12.8', 'Benign neoplasm, rectum', 'ICD10_2010'), +('D12.9', 'Benign neoplasm, anus and anal canal', 'ICD10_2010'), +('D13', 'Benign neoplasm of other and ill-defined parts of digestive system', 'ICD10_2010'), +('D13.0', 'Benign neoplasm, oesophagus', 'ICD10_2010'), +('D13.1', 'Benign neoplasm, stomach', 'ICD10_2010'), +('D13.2', 'Benign neoplasm, duodenum', 'ICD10_2010'), +('D13.3', 'Benign neoplasm, other and unspecified parts of small intestine', 'ICD10_2010'), +('D13.4', 'Benign neoplasm, liver', 'ICD10_2010'), +('D13.5', 'Benign neoplasm, extrahepatic bile ducts', 'ICD10_2010'), +('D13.6', 'Benign neoplasm, pancreas', 'ICD10_2010'), +('D13.7', 'Benign neoplasm, endocrine pancreas', 'ICD10_2010'), +('D13.9', 'Benign neoplasm, ill-defined sites within the digestive system', 'ICD10_2010'), +('D14', 'Benign neoplasm of middle ear and respiratory system', 'ICD10_2010'), +('D14.0', 'Benign neoplasm, middle ear, nasal cavity and accessory sinuses', 'ICD10_2010'), +('D14.1', 'Benign neoplasm, larynx', 'ICD10_2010'), +('D14.2', 'Benign neoplasm, trachea', 'ICD10_2010'), +('D14.3', 'Benign neoplasm, bronchus and lung', 'ICD10_2010'), +('D14.4', 'Benign neoplasm, respiratory system, unspecified', 'ICD10_2010'), +('D15', 'Benign neoplasm of other and unspecified intrathoracic organs', 'ICD10_2010'), +('D15.0', 'Benign neoplasm, thymus', 'ICD10_2010'), +('D15.1', 'Benign neoplasm, heart', 'ICD10_2010'), +('D15.2', 'Benign neoplasm, mediastinum', 'ICD10_2010'), +('D15.7', 'Benign neoplasm, other specified intrathoracic organs', 'ICD10_2010'), +('D15.9', 'Benign neoplasm, intrathoracic organ, unspecified', 'ICD10_2010'), +('D16', 'Benign neoplasm of bone and articular cartilage', 'ICD10_2010'), +('D16.0', 'Benign neoplasm, scapula and long bones of upper limb', 'ICD10_2010'), +('D16.1', 'Benign neoplasm, short bones of upper limb', 'ICD10_2010'), +('D16.2', 'Benign neoplasm, long bones of lower limb', 'ICD10_2010'); +INSERT INTO `icd10` (`ID_ICD10`, `Diagnosa`, `Versi_ICD10`) VALUES +('D16.3', 'Benign neoplasm, short bones of lower limb', 'ICD10_2010'), +('D16.4', 'Benign neoplasm, bones of skull and face', 'ICD10_2010'), +('D16.5', 'Benign neoplasm, lower jaw bone', 'ICD10_2010'), +('D16.6', 'Benign neoplasm, vertebral column', 'ICD10_2010'), +('D16.7', 'Benign neoplasm, ribs, sternum and clavicle', 'ICD10_2010'), +('D16.8', 'Benign neoplasm, pelvic bones, sacrum and coccyx', 'ICD10_2010'), +('D16.9', 'Benign neoplasm, bone and articular cartilage, unspecified', 'ICD10_2010'), +('D17', 'Benign lipomatous neoplasm', 'ICD10_2010'), +('D17.0', 'Benign lipomatous neopl skin/subcut tis head face & neck', 'ICD10_2010'), +('D17.1', 'Benign lipomatous neoplasm skin and subcut tissue of trunk', 'ICD10_2010'), +('D17.2', 'Benign lipomatous neoplasm skin and subcut tissue of limbs', 'ICD10_2010'), +('D17.3', 'Benign lipomatous neopl skin/subcut tis other/unspec sites', 'ICD10_2010'), +('D17.4', 'Benign lipomatous neoplasm of intrathoracic organs', 'ICD10_2010'), +('D17.5', 'Benign lipomatous neoplasm of intra-abdominal organs', 'ICD10_2010'), +('D17.6', 'Benign lipomatous neoplasm of spermatic cord', 'ICD10_2010'), +('D17.7', 'Benign lipomatous neoplasm of other sites', 'ICD10_2010'), +('D17.9', 'Benign lipomatous neoplasm, unspecified', 'ICD10_2010'), +('D18', 'Haemangioma and lymphangioma, any site', 'ICD10_2010'), +('D18.0', 'Haemangioma, any site', 'ICD10_2010'), +('D18.1', 'Lymphangioma, any site', 'ICD10_2010'), +('D19', 'Benign neoplasm of mesothelial tissue', 'ICD10_2010'), +('D19.0', 'Benign neoplasm, mesothelial tissue of pleura', 'ICD10_2010'), +('D19.1', 'Benign neoplasm, mesothelial tissue of peritoneum', 'ICD10_2010'), +('D19.7', 'Benign neoplasm, mesothelial tissue of other sites', 'ICD10_2010'), +('D19.9', 'Benign neoplasm, mesothelial tissue, unspecified', 'ICD10_2010'), +('D20', 'Benign neoplasm of soft tissue of retroperitoneum and peritoneum', 'ICD10_2010'), +('D20.0', 'Benign neoplasm, retroperitoneum', 'ICD10_2010'), +('D20.1', 'Benign neoplasm, peritoneum', 'ICD10_2010'), +('D21', 'Other benign neoplasms of connective and other soft tissue', 'ICD10_2010'), +('D21.0', 'Benign neoplasm, connective and other soft tissue of head, face and neck', 'ICD10_2010'), +('D21.1', 'Benign neoplasm, connective and other soft tis of upper limb, inc shoulder', 'ICD10_2010'), +('D21.2', 'Benign neoplasm, connective and other soft tissue of lower limb, inc hip', 'ICD10_2010'), +('D21.3', 'Benign neoplasm, connective and other soft tissue of thorax', 'ICD10_2010'), +('D21.4', 'Benign neoplasm, connective and other soft tissue of abdomen', 'ICD10_2010'), +('D21.5', 'Benign neoplasm, connective and other soft tissue of pelvis', 'ICD10_2010'), +('D21.6', 'Benign neoplasm, connective and other soft tissue of trunk, unspecified', 'ICD10_2010'), +('D21.9', 'Benign neoplasm, connective and other soft tissue, unspecified', 'ICD10_2010'), +('D22', 'Melanocytic naevi', 'ICD10_2010'), +('D22.0', 'Melanocytic naevi of lip', 'ICD10_2010'), +('D22.1', 'Melanocytic naevi of eyelid, including canthus', 'ICD10_2010'), +('D22.2', 'Melanocytic naevi of ear and external auricular canal', 'ICD10_2010'), +('D22.3', 'Melanocytic naevi of other and unspecified parts of face', 'ICD10_2010'), +('D22.4', 'Melanocytic naevi of scalp and neck', 'ICD10_2010'), +('D22.5', 'Melanocytic naevi of trunk', 'ICD10_2010'), +('D22.6', 'Melanocytic naevi of upper limb, including shoulder', 'ICD10_2010'), +('D22.7', 'Melanocytic naevi of lower limb, including hip', 'ICD10_2010'), +('D22.9', 'Melanocytic naevi, unspecified', 'ICD10_2010'), +('D23', 'Other benign neoplasms of skin', 'ICD10_2010'), +('D23.0', 'Benign neoplasm, skin of lip', 'ICD10_2010'), +('D23.1', 'Benign neoplasm, skin of eyelid, including canthus', 'ICD10_2010'), +('D23.2', 'Benign neoplasm, skin of ear and external auricular canal', 'ICD10_2010'), +('D23.3', 'Benign neoplasm, skin of other and unspecified parts of face', 'ICD10_2010'), +('D23.4', 'Benign neoplasm, skin of scalp and neck', 'ICD10_2010'), +('D23.5', 'Benign neoplasm, skin of trunk', 'ICD10_2010'), +('D23.6', 'Benign neoplasm, skin of upper limb, including shoulder', 'ICD10_2010'), +('D23.7', 'Benign neoplasm, skin of lower limb, including hip', 'ICD10_2010'), +('D23.9', 'Benign neoplasm, skin, unspecified', 'ICD10_2010'), +('D24', 'Benign neoplasm of breast', 'ICD10_2010'), +('D25', 'Leiomyoma of uterus', 'ICD10_2010'), +('D25.0', 'Submucous leiomyoma of uterus', 'ICD10_2010'), +('D25.1', 'Intramural leiomyoma of uterus', 'ICD10_2010'), +('D25.2', 'Subserosal leiomyoma of uterus', 'ICD10_2010'), +('D25.9', 'Leiomyoma of uterus, unspecified', 'ICD10_2010'), +('D26', 'Other benign neoplasms of uterus', 'ICD10_2010'), +('D26.0', 'Benign neoplasm, cervix uteri', 'ICD10_2010'), +('D26.1', 'Benign neoplasm, corpus uteri', 'ICD10_2010'), +('D26.7', 'Benign neoplasm, other parts of uterus', 'ICD10_2010'), +('D26.9', 'Benign neoplasm, uterus, unspecified', 'ICD10_2010'), +('D27', 'Benign neoplasm of ovary', 'ICD10_2010'), +('D28', 'Benign neoplasm of other and unspecified female genital organs', 'ICD10_2010'), +('D28.0', 'Benign neoplasm, vulva', 'ICD10_2010'), +('D28.1', 'Benign neoplasm, vagina', 'ICD10_2010'), +('D28.2', 'Benign neoplasm, uterine tubes and ligaments', 'ICD10_2010'), +('D28.7', 'Benign neoplasm, other specified female genital organs', 'ICD10_2010'), +('D28.9', 'Benign neoplasm, female genital organ, unspecified', 'ICD10_2010'), +('D29', 'Benign neoplasm of male genital organs', 'ICD10_2010'), +('D29.0', 'Benign neoplasm, penis', 'ICD10_2010'), +('D29.1', 'Benign neoplasm, prostate', 'ICD10_2010'), +('D29.2', 'Benign neoplasm, testis', 'ICD10_2010'), +('D29.3', 'Benign neoplasm, epididymis', 'ICD10_2010'), +('D29.4', 'Benign neoplasm, scrotum', 'ICD10_2010'), +('D29.7', 'Benign neoplasm, other male genital organs', 'ICD10_2010'), +('D29.9', 'Benign neoplasm, male genital organ, unspecified', 'ICD10_2010'), +('D30', 'Benign neoplasm of urinary organs', 'ICD10_2010'), +('D30.0', 'Benign neoplasm, kidney', 'ICD10_2010'), +('D30.1', 'Benign neoplasm, renal pelvis', 'ICD10_2010'), +('D30.2', 'Benign neoplasm, ureter', 'ICD10_2010'), +('D30.3', 'Benign neoplasm, bladder', 'ICD10_2010'), +('D30.4', 'Benign neoplasm, urethra', 'ICD10_2010'), +('D30.7', 'Benign neoplasm, other urinary organs', 'ICD10_2010'), +('D30.9', 'Benign neoplasm, urinary organ, unspecified', 'ICD10_2010'), +('D31', 'Benign neoplasm of eye and adnexa', 'ICD10_2010'), +('D31.0', 'Benign neoplasm, conjunctiva', 'ICD10_2010'), +('D31.1', 'Benign neoplasm, cornea', 'ICD10_2010'), +('D31.2', 'Benign neoplasm, retina', 'ICD10_2010'), +('D31.3', 'Benign neoplasm, choroid', 'ICD10_2010'), +('D31.4', 'Benign neoplasm, ciliary body', 'ICD10_2010'), +('D31.5', 'Benign neoplasm, lacrimal gland and duct', 'ICD10_2010'), +('D31.6', 'Benign neoplasm, orbit, unspecified', 'ICD10_2010'), +('D31.9', 'Benign neoplasm, eye, unspecified', 'ICD10_2010'), +('D32', 'Benign neoplasm of meninges', 'ICD10_2010'), +('D32.0', 'Benign neoplasm, cerebral meninges', 'ICD10_2010'), +('D32.1', 'Benign neoplasm, spinal meninges', 'ICD10_2010'), +('D32.9', 'Benign neoplasm, meninges, unspecified', 'ICD10_2010'), +('D33', 'Benign neoplasm of brain and other parts of central nervous system', 'ICD10_2010'), +('D33.0', 'Benign neoplasm, brain, supratentorial', 'ICD10_2010'), +('D33.1', 'Benign neoplasm, brain, infratentorial', 'ICD10_2010'), +('D33.2', 'Benign neoplasm, brain, unspecified', 'ICD10_2010'), +('D33.3', 'Benign neoplasm, cranial nerves', 'ICD10_2010'), +('D33.4', 'Benign neoplasm, spinal cord', 'ICD10_2010'), +('D33.7', 'Benign neoplasm, other specified parts of central nervous system', 'ICD10_2010'), +('D33.9', 'Benign neoplasm, central nervous system, unspecified', 'ICD10_2010'), +('D34', 'Benign neoplasm of thyroid gland', 'ICD10_2010'), +('D35', 'Benign neoplasm of other and unspecified endocrine glands', 'ICD10_2010'), +('D35.0', 'Benign neoplasm, adrenal gland', 'ICD10_2010'), +('D35.1', 'Benign neoplasm, parathyroid gland', 'ICD10_2010'), +('D35.2', 'Benign neoplasm, pituitary gland', 'ICD10_2010'), +('D35.3', 'Benign neoplasm, craniopharyngeal duct', 'ICD10_2010'), +('D35.4', 'Benign neoplasm, pineal gland', 'ICD10_2010'), +('D35.5', 'Benign neoplasm, carotid body', 'ICD10_2010'), +('D35.6', 'Benign neoplasm, aortic body and other paraganglia', 'ICD10_2010'), +('D35.7', 'Benign neoplasm, other specified endocrine glands', 'ICD10_2010'), +('D35.8', 'Benign neoplasm, pluriglandular involvement', 'ICD10_2010'), +('D35.9', 'Benign neoplasm, endocrine gland, unspecified', 'ICD10_2010'), +('D36', 'Benign neoplasm of other and unspecified sites', 'ICD10_2010'), +('D36.0', 'Benign neoplasm, lymph nodes', 'ICD10_2010'), +('D36.1', 'Benign neoplasm, peripheral nerves and autonomic nervous system', 'ICD10_2010'), +('D36.7', 'Benign neoplasm, other specified sites', 'ICD10_2010'), +('D36.9', 'Benign neoplasm of unspecified site', 'ICD10_2010'), +('D37', 'Neoplasm of uncertain or unknown behaviour of oral cavity and digestive organs', 'ICD10_2010'), +('D37.0', 'Neoplasm of uncertain or unknown behaviour of lip, oral cavity and pharynx', 'ICD10_2010'), +('D37.1', 'Neoplasm of uncertain or unknown behaviour of stomach', 'ICD10_2010'), +('D37.2', 'Neoplasm of uncertain or unknown behaviour of small intestine', 'ICD10_2010'), +('D37.3', 'Neoplasm of uncertain or unknown behaviour of appendix', 'ICD10_2010'), +('D37.4', 'Neoplasm of uncertain or unknown behaviour of colon', 'ICD10_2010'), +('D37.5', 'Neoplasm of uncertain or unknown behaviour of rectum', 'ICD10_2010'), +('D37.6', 'Neoplasm of uncertain or unknown behaviour of liver, gallbladder and bile ducts', 'ICD10_2010'), +('D37.7', 'Neoplasm of uncertain or unknown behaviour of other digestive organs', 'ICD10_2010'), +('D37.9', 'Neoplasm of uncertain or unknown behaviour of digestive organ, unspecified', 'ICD10_2010'), +('D38', 'Neoplasm of uncertain or unknown behaviour of middle ear and respiratory and intrathoracic organs', 'ICD10_2010'), +('D38.0', 'Neoplasm of uncertain or unknown behaviour of larynx', 'ICD10_2010'), +('D38.1', 'Neoplasm of uncertain or unknown behaviour of trachea, bronchus and lung', 'ICD10_2010'), +('D38.2', 'Neoplasm of uncertain or unknown behaviour of pleura', 'ICD10_2010'), +('D38.3', 'Neoplasm of uncertain or unknown behaviour of mediastinum', 'ICD10_2010'), +('D38.4', 'Neoplasm of uncertain or unknown behaviour of thymus', 'ICD10_2010'), +('D38.5', 'Neoplasm of uncertain or unknown behaviour of other respiratory organs', 'ICD10_2010'), +('D38.6', 'Neoplasm of uncertain or unknown behaviour of respiratory organ, unspecified', 'ICD10_2010'), +('D39', 'Neoplasm of uncertain or unknown behaviour of female genital organs', 'ICD10_2010'), +('D39.0', 'Neoplasm of uncertain or unknown behaviour of uterus', 'ICD10_2010'), +('D39.1', 'Neoplasm of uncertain or unknown behaviour of ovary', 'ICD10_2010'), +('D39.2', 'Neoplasm of uncertain or unknown behaviour of placenta', 'ICD10_2010'), +('D39.7', 'Neoplasm of uncertain or unknown behaviour of other female genital organs', 'ICD10_2010'), +('D39.9', 'Neoplasm of uncertain or unknown behaviour of female genital organ, unspecified', 'ICD10_2010'), +('D40', 'Neoplasm of uncertain or unknown behaviour of male genital organs', 'ICD10_2010'), +('D40.0', 'Neoplasm of uncertain or unknown behaviour of prostate', 'ICD10_2010'), +('D40.1', 'Neoplasm of uncertain or unknown behaviour of testis', 'ICD10_2010'), +('D40.7', 'Neoplasm of uncertain or unknown behaviour of other male genital organs', 'ICD10_2010'), +('D40.9', 'Neoplasm of uncertain or unknown behaviour of male genital organ, unspecified', 'ICD10_2010'), +('D41', 'Neoplasm of uncertain or unknown behaviour of urinary organs', 'ICD10_2010'), +('D41.0', 'Neoplasm of uncertain or unknown behaviour of kidney', 'ICD10_2010'), +('D41.1', 'Neoplasm of uncertain or unknown behaviour of renal pelvis', 'ICD10_2010'), +('D41.2', 'Neoplasm of uncertain or unknown behaviour of ureter', 'ICD10_2010'), +('D41.3', 'Neoplasm of uncertain or unknown behaviour of urethra', 'ICD10_2010'), +('D41.4', 'Neoplasm of uncertain or unknown behaviour of bladder', 'ICD10_2010'), +('D41.7', 'Neoplasm of uncertain or unknown behaviour of other urinary organs', 'ICD10_2010'), +('D41.9', 'Neoplasm of uncertain or unknown behaviour of urinary organ, unspecified', 'ICD10_2010'), +('D42', 'Neoplasm of uncertain or unknown behaviour of meninges', 'ICD10_2010'), +('D42.0', 'Neoplasm of uncertain or unknown behaviour of cerebral meninges', 'ICD10_2010'), +('D42.1', 'Neoplasm of uncertain or unknown behaviour of spinal meninges', 'ICD10_2010'), +('D42.9', 'Neoplasm of uncertain or unknown behaviour of meninges, unspecified', 'ICD10_2010'), +('D43', 'Neoplasm of uncertain or unknown behaviour of brain and central nervous system', 'ICD10_2010'), +('D43.0', 'Neoplasm of uncertain or unknown behaviour of brain, supratentorial', 'ICD10_2010'), +('D43.1', 'Neoplasm of uncertain or unknown behaviour of brain, infratentorial', 'ICD10_2010'), +('D43.2', 'Neoplasm of uncertain or unknown behaviour of brain, unspecified', 'ICD10_2010'), +('D43.3', 'Neoplasm of uncertain or unknown behaviour of cranial nerves', 'ICD10_2010'), +('D43.4', 'Neoplasm of uncertain or unknown behaviour of spinal cord', 'ICD10_2010'), +('D43.7', 'Neoplasm of uncertain or unknown behaviour of other parts of central nervous system', 'ICD10_2010'), +('D43.9', 'Neoplasm of uncertain or unknown behaviour of central nervous system, unspecified', 'ICD10_2010'), +('D44', 'Neoplasm of uncertain or unknown behaviour of endocrine glands', 'ICD10_2010'), +('D44.0', 'Neoplasm of uncertain or unknown behaviour of thyroid gland', 'ICD10_2010'), +('D44.1', 'Neoplasm of uncertain or unknown behaviour of adrenal gland', 'ICD10_2010'), +('D44.2', 'Neoplasm of uncertain or unknown behaviour of parathyroid gland', 'ICD10_2010'), +('D44.3', 'Neoplasm of uncertain or unknown behaviour of pituitary gland', 'ICD10_2010'), +('D44.4', 'Neoplasm of uncertain or unknown behaviour of craniopharyngeal duct', 'ICD10_2010'), +('D44.5', 'Neoplasm of uncertain or unknown behaviour of pineal gland', 'ICD10_2010'), +('D44.6', 'Neoplasm of uncertain or unknown behaviour of carotid body', 'ICD10_2010'), +('D44.7', 'Neoplasm of uncertain or unknown behaviour of aortic body and other paraganglia', 'ICD10_2010'), +('D44.8', 'Neoplasm of uncertain or unknown behaviour of pluriglandular involvement', 'ICD10_2010'), +('D44.9', 'Neoplasm of uncertain or unknown behaviour of endocrine gland, unspecified', 'ICD10_2010'), +('D45', 'Polycythaemia vera', 'ICD10_2010'), +('D46', 'Myelodysplastic syndromes', 'ICD10_2010'), +('D46.0', 'Refractory anaemia without sideroblasts, so stated', 'ICD10_2010'), +('D46.1', 'Refractory anaemia with sideroblasts', 'ICD10_2010'), +('D46.2', 'Refractory anaemia with excess of blasts', 'ICD10_2010'), +('D46.3', 'Refractory anaemia with excess of blasts with transformation', 'ICD10_2010'), +('D46.4', 'Refractory anaemia, unspecified', 'ICD10_2010'), +('D46.5', 'Refractory anaemia with multi-lineage dysplasia', 'ICD10_2010'), +('D46.6', 'Myelodysplastic syndrome with isolated del(5q) chromosomal abnormality', 'ICD10_2010'), +('D46.7', 'Other myelodysplastic syndromes', 'ICD10_2010'), +('D46.9', 'Myelodysplastic syndrome, unspecified', 'ICD10_2010'), +('D47', 'Other neoplasms of uncertain or unknown behaviour of lymphoid, haematopoietic and related tissue', 'ICD10_2010'), +('D47.0', 'Histiocytic and mast cell tumours uncertain and unknown behaviour', 'ICD10_2010'), +('D47.1', 'Chronic myeloproliferative disease', 'ICD10_2010'), +('D47.2', 'Monoclonal gammopathy', 'ICD10_2010'), +('D47.3', 'Essential (haemorrhagic) thrombocythaemia', 'ICD10_2010'), +('D47.4', 'Osteomyelofibrosis', 'ICD10_2010'), +('D47.5', 'Chronic eosinophilic leukaemia [hypereosinophilic syndrome]', 'ICD10_2010'), +('D47.7', 'Other specified neoplasms of uncertain or unknown behaviour of lymphoid, haematopoietic and related tissue', 'ICD10_2010'), +('D47.9', 'Neoplasms of uncertain or unknown behaviour of lymphoid, haematopoietic and related tissue, unspecified', 'ICD10_2010'), +('D48', 'Neoplasm of uncertain or unknown behaviour of other and unspecified sites', 'ICD10_2010'), +('D48.0', 'Neoplasms of uncertain or unknown behaviour of bone and articular cartilage', 'ICD10_2010'), +('D48.1', 'Neoplasms of uncertain or unknown behaviour of connective and other soft tissue', 'ICD10_2010'), +('D48.2', 'Neoplasms of uncertain or unknown behaviour of peripheral nerves and autonomic nervous system', 'ICD10_2010'), +('D48.3', 'Neoplasms of uncertain or unknown behaviour of retroperitoneum', 'ICD10_2010'), +('D48.4', 'Neoplasms of uncertain or unknown behaviour of peritoneum', 'ICD10_2010'), +('D48.5', 'Neoplasms of uncertain or unknown behaviour of skin', 'ICD10_2010'), +('D48.6', 'Neoplasms of uncertain or unknown behaviour of breast', 'ICD10_2010'), +('D48.7', 'Neoplasms of uncertain or unknown behaviour of other specified sites', 'ICD10_2010'), +('D48.9', 'Neoplasm of uncertain or unknown behaviour, unspecified', 'ICD10_2010'), +('D50', 'Iron deficiency anaemia', 'ICD10_2010'), +('D50.0', 'Iron deficiency anaemia secondary to blood loss (chronic)', 'ICD10_2010'), +('D50.1', 'Sideropenic dysphagia', 'ICD10_2010'), +('D50.8', 'Other iron deficiency anaemias', 'ICD10_2010'), +('D50.9', 'Iron deficiency anaemia, unspecified', 'ICD10_2010'), +('D51', 'Vitamin B12 deficiency anaemia', 'ICD10_2010'), +('D51.0', 'Vitamin b12 defic anaemia due to intrinsic factor deficiency', 'ICD10_2010'), +('D51.1', 'Vit b12 def anaem select vit b12 malabsorp with proteinuria', 'ICD10_2010'), +('D51.2', 'Transcobalamin ii deficiency', 'ICD10_2010'), +('D51.3', 'Other dietary vitamin b12 deficiency anaemia', 'ICD10_2010'), +('D51.8', 'Other vitamin b12 deficiency anaemias', 'ICD10_2010'), +('D51.9', 'Vitamin b12 deficiency anaemia, unspecified', 'ICD10_2010'), +('D52', 'Folate deficiency anaemia', 'ICD10_2010'), +('D52.0', 'Dietary folate deficiency anaemia', 'ICD10_2010'), +('D52.1', 'Drug-induced folate deficiency anaemia', 'ICD10_2010'), +('D52.8', 'Other folate deficiency anaemias', 'ICD10_2010'), +('D52.9', 'Folate deficiency anaemia, unspecified', 'ICD10_2010'), +('D53', 'Other nutritional anaemias', 'ICD10_2010'), +('D53.0', 'Protein deficiency anaemia', 'ICD10_2010'), +('D53.1', 'Other megaloblastic anaemias, not elsewhere classified', 'ICD10_2010'), +('D53.2', 'Scorbutic anaemia', 'ICD10_2010'), +('D53.8', 'Other specified nutritional anaemias', 'ICD10_2010'), +('D53.9', 'Nutritional anaemia, unspecified', 'ICD10_2010'), +('D55', 'Anaemia due to enzyme disorders', 'ICD10_2010'), +('D55.0', 'Anaemia due to glucose-6-phosphate dehydrogenase deficiency', 'ICD10_2010'), +('D55.1', 'Anaemia due to other disorders of glutathione metabolism', 'ICD10_2010'), +('D55.2', 'Anaemia due to disorders of glycolytic enzymes', 'ICD10_2010'), +('D55.3', 'Anaemia due to disorders of nucleotide metabolism', 'ICD10_2010'), +('D55.8', 'Other anaemias due to enzyme disorders', 'ICD10_2010'), +('D55.9', 'Anaemia due to enzyme disorder, unspecified', 'ICD10_2010'), +('D56', 'Thalassaemia', 'ICD10_2010'), +('D56.0', 'Alpha thalassaemia', 'ICD10_2010'), +('D56.1', 'Beta thalassaemia', 'ICD10_2010'), +('D56.2', 'Delta-beta thalassaemia', 'ICD10_2010'), +('D56.3', 'Thalassaemia trait', 'ICD10_2010'), +('D56.4', 'Hereditary persistence of fetal haemoglobin [hpfh]', 'ICD10_2010'), +('D56.8', 'Other thalassaemias', 'ICD10_2010'), +('D56.9', 'Thalassaemia, unspecified', 'ICD10_2010'), +('D57', 'Sickle-cell disorders', 'ICD10_2010'), +('D57.0', 'Sickle-cell anaemia with crisis', 'ICD10_2010'), +('D57.1', 'Sickle-cell anaemia without crisis', 'ICD10_2010'), +('D57.2', 'Double heterozygous sickling disorders', 'ICD10_2010'), +('D57.3', 'Sickle-cell trait', 'ICD10_2010'), +('D57.8', 'Other sickle-cell disorders', 'ICD10_2010'), +('D58', 'Other hereditary haemolytic anaemias', 'ICD10_2010'), +('D58.0', 'Hereditary spherocytosis', 'ICD10_2010'), +('D58.1', 'Hereditary elliptocytosis', 'ICD10_2010'), +('D58.2', 'Other haemoglobinopathies', 'ICD10_2010'), +('D58.8', 'Other specified hereditary haemolytic anaemias', 'ICD10_2010'), +('D58.9', 'Hereditary haemolytic anaemia, unspecified', 'ICD10_2010'), +('D59', 'Acquired haemolytic anaemia', 'ICD10_2010'), +('D59.0', 'Drug-induced autoimmune haemolytic anaemia', 'ICD10_2010'), +('D59.1', 'Other autoimmune haemolytic anaemias', 'ICD10_2010'), +('D59.2', 'Drug-induced nonautoimmune haemolytic anaemia', 'ICD10_2010'), +('D59.3', 'Haemolytic-uraemic syndrome', 'ICD10_2010'), +('D59.4', 'Other nonautoimmune haemolytic anaemias', 'ICD10_2010'), +('D59.5', 'Paroxysmal nocturnal haemoglobinuria [marchiafava-micheli]', 'ICD10_2010'), +('D59.6', 'Haemoglobinuria due to haemolysis from other external causes', 'ICD10_2010'), +('D59.8', 'Other acquired haemolytic anaemias', 'ICD10_2010'), +('D59.9', 'Acquired haemolytic anaemia, unspecified', 'ICD10_2010'), +('D60', 'Acquired pure red cell aplasia [erythroblastopenia]', 'ICD10_2010'), +('D60.0', 'Chronic acquired pure red cell aplasia', 'ICD10_2010'), +('D60.1', 'Transient acquired pure red cell aplasia', 'ICD10_2010'), +('D60.8', 'Other acquired pure red cell aplasias', 'ICD10_2010'), +('D60.9', 'Acquired pure red cell aplasia, unspecified', 'ICD10_2010'), +('D61', 'Other aplastic anaemias', 'ICD10_2010'), +('D61.0', 'Constitutional aplastic anaemia', 'ICD10_2010'), +('D61.1', 'Drug-induced aplastic anaemia', 'ICD10_2010'), +('D61.2', 'Aplastic anaemia due to other external agents', 'ICD10_2010'), +('D61.3', 'Idiopathic aplastic anaemia', 'ICD10_2010'), +('D61.8', 'Other specified aplastic anaemias', 'ICD10_2010'), +('D61.9', 'Aplastic anaemia, unspecified', 'ICD10_2010'), +('D62', 'Acute posthaemorrhagic anaemia', 'ICD10_2010'), +('D63', 'Anaemia in chronic diseases classified elsewhere', 'ICD10_2010'), +('D63.0', 'Anaemia in neoplastic disease', 'ICD10_2010'), +('D63.8', 'Anaemia in other chronic diseases classified elsewhere', 'ICD10_2010'), +('D64', 'Other anaemias', 'ICD10_2010'), +('D64.0', 'Hereditary sideroblastic anaemia', 'ICD10_2010'), +('D64.1', 'Secondary sideroblastic anaemia due to disease', 'ICD10_2010'), +('D64.2', 'Secondary sideroblastic anaemia due to drugs and toxins', 'ICD10_2010'), +('D64.3', 'Other sideroblastic anaemias', 'ICD10_2010'), +('D64.4', 'Congenital dyserythropoietic anaemia', 'ICD10_2010'), +('D64.8', 'Other specified anaemias', 'ICD10_2010'), +('D64.9', 'Anaemia, unspecified', 'ICD10_2010'), +('D65', 'Dissem intravascular coagulation [defibrination syndrome]', 'ICD10_2010'), +('D66', 'Hereditary factor viii deficiency', 'ICD10_2010'), +('D67', 'Hereditary factor ix deficiency', 'ICD10_2010'), +('D68', 'Other coagulation defects', 'ICD10_2010'), +('D68.0', 'Von willebrand\'s disease', 'ICD10_2010'), +('D68.1', 'Hereditary factor xi deficiency', 'ICD10_2010'), +('D68.2', 'Hereditary deficiency of other clotting factors', 'ICD10_2010'), +('D68.3', 'Haemorrhagic disorder due to circulating anticoagulants', 'ICD10_2010'), +('D68.4', 'Acquired coagulation factor deficiency', 'ICD10_2010'), +('D68.5', 'Primary Thrombophilia', 'ICD10_2010'), +('D68.6', 'Other Thrombophilia', 'ICD10_2010'), +('D68.8', 'Other specified coagulation defects', 'ICD10_2010'), +('D68.9', 'Coagulation defect, unspecified', 'ICD10_2010'), +('D69', 'Purpura and other haemorrhagic conditions', 'ICD10_2010'), +('D69.0', 'Allergic purpura', 'ICD10_2010'), +('D69.1', 'Qualitative platelet defects', 'ICD10_2010'), +('D69.2', 'Other nonthrombocytopenic purpura', 'ICD10_2010'), +('D69.3', 'Idiopathic thrombocytopenic purpura', 'ICD10_2010'), +('D69.4', 'Other primary thrombocytopenia', 'ICD10_2010'), +('D69.5', 'Secondary thrombocytopenia', 'ICD10_2010'), +('D69.6', 'Thrombocytopenia, unspecified', 'ICD10_2010'), +('D69.8', 'Other specified haemorrhagic conditions', 'ICD10_2010'), +('D69.9', 'Haemorrhagic condition, unspecified', 'ICD10_2010'), +('D70', 'Agranulocytosis', 'ICD10_2010'), +('D71', 'Functional disorders of polymorphonuclear neutrophils', 'ICD10_2010'), +('D72', 'Other disorders of white blood cells', 'ICD10_2010'), +('D72.0', 'Genetic anomalies of leukocytes', 'ICD10_2010'), +('D72.1', 'Eosinophilia', 'ICD10_2010'), +('D72.8', 'Other specified disorders of white blood cells', 'ICD10_2010'), +('D72.9', 'Disorder of white blood cells, unspecified', 'ICD10_2010'), +('D73', 'Diseases of spleen', 'ICD10_2010'), +('D73.0', 'Hyposplenism', 'ICD10_2010'), +('D73.1', 'Hypersplenism', 'ICD10_2010'), +('D73.2', 'Chronic congestive splenomegaly', 'ICD10_2010'), +('D73.3', 'Abscess of spleen', 'ICD10_2010'), +('D73.4', 'Cyst of spleen', 'ICD10_2010'), +('D73.5', 'Infarction of spleen', 'ICD10_2010'), +('D73.8', 'Other diseases of spleen', 'ICD10_2010'), +('D73.9', 'Disease of spleen, unspecified', 'ICD10_2010'), +('D74', 'Methaemoglobinaemia', 'ICD10_2010'), +('D74.0', 'Congenital methaemoglobinaemia', 'ICD10_2010'), +('D74.8', 'Other methaemoglobinaemias', 'ICD10_2010'), +('D74.9', 'Methaemoglobinaemia, unspecified', 'ICD10_2010'), +('D75', 'Other diseases of blood and blood-forming organs', 'ICD10_2010'), +('D75.0', 'Familial erythrocytosis', 'ICD10_2010'), +('D75.1', 'Secondary polycythaemia', 'ICD10_2010'), +('D75.2', 'Essential thrombocytosis', 'ICD10_2010'), +('D75.8', 'Other specified diseases of blood and blood-forming organs', 'ICD10_2010'), +('D75.9', 'Disease of blood and blood-forming organs, unspecified', 'ICD10_2010'), +('D76', 'Other specified diseases with participation of lymphoreticular and reticulohistiocytic tissue', 'ICD10_2010'), +('D76.0', 'Langerhans\' cell histiocytosis, not elsewhere classified', 'ICD10_2010'), +('D76.1', 'Haemophagocytic lymphohistiocytosis', 'ICD10_2010'), +('D76.2', 'Haemophagocytic syndrome, infection-associated', 'ICD10_2010'), +('D76.3', 'Other histiocytosis syndromes', 'ICD10_2010'), +('D77', 'Other disorders of blood and blood-forming organs in dis ce', 'ICD10_2010'), +('D80', 'Immunodeficiency with predominantly antibody defects', 'ICD10_2010'), +('D80.0', 'Hereditary hypogammaglobulinaemia', 'ICD10_2010'), +('D80.1', 'Nonfamilial hypogammaglobulinaemia', 'ICD10_2010'), +('D80.2', 'Selective deficiency of immunoglobulin a [iga]', 'ICD10_2010'), +('D80.3', 'Selective deficiency of immunoglobulin g [igg] subclasses', 'ICD10_2010'), +('D80.4', 'Selective deficiency of immunoglobulin m [igm]', 'ICD10_2010'), +('D80.5', 'Immunodeficiency with increased immunoglobulin m [igm]', 'ICD10_2010'), +('D80.6', 'Antibod def with near-norm imunoglob/hyperimmunoglobulinaemia', 'ICD10_2010'), +('D80.7', 'Transient hypogammaglobulinaemia of infancy', 'ICD10_2010'), +('D80.8', 'Other immunodeficiencies with predominantly antibody defects', 'ICD10_2010'), +('D80.9', 'Immunodeficiency with predominantly antibody defects, unspec act', 'ICD10_2010'), +('D81', 'Combined immunodeficiencies', 'ICD10_2010'), +('D81.0', 'Severe combined immunodeficiency with reticular dysgenesis', 'ICD10_2010'), +('D81.1', 'Severe combined immunodef with low t- and b-cell numbers', 'ICD10_2010'), +('D81.2', 'Severe combined immunodef with low or normal b-cell numbers', 'ICD10_2010'), +('D81.3', 'Adenosine deaminase [ada] deficiency', 'ICD10_2010'), +('D81.4', 'Nezelof\'s syndrome', 'ICD10_2010'), +('D81.5', 'Purine nucleoside phosphorylase [pnp] deficiency', 'ICD10_2010'), +('D81.6', 'Major histocompatibility complex class i deficiency', 'ICD10_2010'), +('D81.7', 'Major histocompatibility complex class ii deficiency', 'ICD10_2010'), +('D81.8', 'Other combined immunodeficiencies', 'ICD10_2010'), +('D81.9', 'Combined immunodeficiency, unspecified', 'ICD10_2010'), +('D82', 'Immunodeficiency associated with other major defects', 'ICD10_2010'), +('D82.0', 'Wiskott-aldrich syndrome', 'ICD10_2010'), +('D82.1', 'Di george\'s syndrome', 'ICD10_2010'), +('D82.2', 'Immunodeficiency with short-limbed stature', 'ICD10_2010'), +('D82.3', 'Immunodef follow hereditary defect respon epstein-barr virus', 'ICD10_2010'), +('D82.4', 'Hyperimmunoglobulin e [ige] syndrome', 'ICD10_2010'), +('D82.8', 'Immunodeficiency assoc with other specified major defects', 'ICD10_2010'), +('D82.9', 'Immunodeficiency associated with major defect, unspecified', 'ICD10_2010'), +('D83', 'Common variable immunodeficiency', 'ICD10_2010'), +('D83.0', 'Com var immunodef with predom abn b-cell numb and function', 'ICD10_2010'), +('D83.1', 'Common var immunodef predom immunoregulatory t-cell disorder', 'ICD10_2010'), +('D83.2', 'Common variable immunodef autoantibodies to b- or t-cells', 'ICD10_2010'), +('D83.8', 'Other common variable immunodeficiencies', 'ICD10_2010'), +('D83.9', 'Common variable immunodeficiency, unspecified', 'ICD10_2010'), +('D84', 'Other immunodeficiencies', 'ICD10_2010'), +('D84.0', 'Lymphocyte function antigen-1 [lfa-1] defect', 'ICD10_2010'), +('D84.1', 'Defects in the complement system', 'ICD10_2010'), +('D84.8', 'Other specified immunodeficiencies', 'ICD10_2010'), +('D84.9', 'Immunodeficiency, unspecified', 'ICD10_2010'), +('D86', 'Sarcoidosis', 'ICD10_2010'), +('D86.0', 'Sarcoidosis of lung', 'ICD10_2010'), +('D86.1', 'Sarcoidosis of lymph nodes', 'ICD10_2010'), +('D86.2', 'Sarcoidosis of lung with sarcoidosis of lymph nodes', 'ICD10_2010'), +('D86.3', 'Sarcoidosis of skin', 'ICD10_2010'), +('D86.8', 'Sarcoidosis of other and combined sites', 'ICD10_2010'), +('D86.9', 'Sarcoidosis, unspecified', 'ICD10_2010'), +('D89', 'Other disorders involving the immune mechanism, not elsewhere classified', 'ICD10_2010'), +('D89.0', 'Polyclonal hypergammaglobulinaemia', 'ICD10_2010'), +('D89.1', 'Cryoglobulinaemia', 'ICD10_2010'), +('D89.2', 'Hypergammaglobulinaemia, unspecified', 'ICD10_2010'), +('D89.3', 'Immune reconstitution syndrome', 'ICD10_2010'), +('D89.8', 'Oth specified disorders involving the immune mechanism nec', 'ICD10_2010'), +('D89.9', 'Disorder involving the immune mechanism, unspecified', 'ICD10_2010'), +('E00', 'Congenital iodine-deficiency syndrome', 'ICD10_2010'), +('E00.0', 'Congenital iodine-deficiency syndrome, neurological type', 'ICD10_2010'), +('E00.1', 'Congenital iodine-deficiency syndrome, myxoedematous type', 'ICD10_2010'), +('E00.2', 'Congenital iodine-deficiency syndrome, mixed type', 'ICD10_2010'), +('E00.9', 'Congenital iodine-deficiency syndrome, unspecified', 'ICD10_2010'), +('E01', 'Iodine-deficiency-related thyroid disorders and allied conditions', 'ICD10_2010'), +('E01.0', 'Iodine-deficiency-related diffuse (endemic) goitre', 'ICD10_2010'), +('E01.1', 'Iodine-deficiency-related multinodular (endemic) goitre', 'ICD10_2010'), +('E01.2', 'Iodine-deficiency-related (endemic) goitre, unspecified', 'ICD10_2010'), +('E01.8', 'Other iodine-def-related thyroid disorders and allied conds', 'ICD10_2010'), +('E02', 'Subclinical iodine-deficiency hypothyroidism', 'ICD10_2010'), +('E03', 'Other hypothyroidism', 'ICD10_2010'), +('E03.0', 'Congenital hypothyroidism with diffuse goitre', 'ICD10_2010'), +('E03.1', 'Congenital hypothyroidism without goitre', 'ICD10_2010'), +('E03.2', 'Hypothyroidism due medicaments and oth exogenous substances', 'ICD10_2010'), +('E03.3', 'Postinfectious hypothyroidism', 'ICD10_2010'), +('E03.4', 'Atrophy of thyroid (acquired)', 'ICD10_2010'), +('E03.5', 'Myxoedema coma', 'ICD10_2010'), +('E03.8', 'Other specified hypothyroidism', 'ICD10_2010'), +('E03.9', 'Hypothyroidism, unspecified', 'ICD10_2010'), +('E04', 'Other nontoxic goitre', 'ICD10_2010'), +('E04.0', 'Nontoxic diffuse goitre', 'ICD10_2010'), +('E04.1', 'Nontoxic single thyroid nodule', 'ICD10_2010'), +('E04.2', 'Nontoxic multinodular goitre', 'ICD10_2010'), +('E04.8', 'Other specified nontoxic goitre', 'ICD10_2010'), +('E04.9', 'Nontoxic goitre, unspecified', 'ICD10_2010'), +('E05', 'Thyrotoxicosis [hyperthyroidism]', 'ICD10_2010'), +('E05.0', 'Thyrotoxicosis with diffuse goitre', 'ICD10_2010'), +('E05.1', 'Thyrotoxicosis with toxic single thyroid nodule', 'ICD10_2010'), +('E05.2', 'Thyrotoxicosis with toxic multinodular goitre', 'ICD10_2010'), +('E05.3', 'Thyrotoxicosis from ectopic thyroid tissue', 'ICD10_2010'), +('E05.4', 'Thyrotoxicosis factitia', 'ICD10_2010'), +('E05.5', 'Thyroid crisis or storm', 'ICD10_2010'), +('E05.8', 'Other thyrotoxicosis', 'ICD10_2010'), +('E05.9', 'Thyrotoxicosis, unspecified', 'ICD10_2010'), +('E06', 'Thyroiditis', 'ICD10_2010'), +('E06.0', 'Acute thyroiditis', 'ICD10_2010'), +('E06.1', 'Subacute thyroiditis', 'ICD10_2010'), +('E06.2', 'Chronic thyroiditis with transient thyrotoxicosis', 'ICD10_2010'), +('E06.3', 'Autoimmune thyroiditis', 'ICD10_2010'), +('E06.4', 'Drug-induced thyroiditis', 'ICD10_2010'), +('E06.5', 'Other chronic thyroiditis', 'ICD10_2010'), +('E06.9', 'Thyroiditis, unspecified', 'ICD10_2010'), +('E07', 'Other disorders of thyroid', 'ICD10_2010'), +('E07.0', 'Hypersecretion of calcitonin', 'ICD10_2010'), +('E07.1', 'Dyshormogenetic goitre', 'ICD10_2010'), +('E07.8', 'Other specified disorders of thyroid', 'ICD10_2010'), +('E07.9', 'Disorder of thyroid, unspecified', 'ICD10_2010'), +('E10', 'Insulin-dependent diabetes mellitus', 'ICD10_2010'), +('E10.0', 'Insulin-dependent diabetes mellitus with coma', 'ICD10_2010'), +('E10.1', 'Insulin-dependent diabetes mellitus with ketoacidosis', 'ICD10_2010'), +('E10.2', 'Insulin-dependent diabetes mellitus with renal complications', 'ICD10_2010'), +('E10.3', 'Insulin-dependent diabetes mellitus with ophthalmic complications', 'ICD10_2010'), +('E10.4', 'Insulin-dependent diabetes mellitus with neurological complications', 'ICD10_2010'), +('E10.5', 'Insulin-dependent diabetes mellitus with peripheral circulatory complications', 'ICD10_2010'), +('E10.6', 'Insulin-dependent diabetes mellitus with other specified complications', 'ICD10_2010'), +('E10.7', 'Insulin-dependent diabetes mellitus with multiple complications', 'ICD10_2010'), +('E10.8', 'Insulin-dependent diabetes mellitus with unspecified complications', 'ICD10_2010'), +('E10.9', 'Insulin-dependent diabetes mellitus without complications', 'ICD10_2010'), +('E11', 'Non-insulin-dependent diabetes mellitus', 'ICD10_2010'), +('E11.0', 'Non-insulin-dependent diabetes mellitus with coma', 'ICD10_2010'), +('E11.1', 'Non-insulin-dependent diabetes mellitus with ketoacidosis', 'ICD10_2010'), +('E11.2', 'Non-insulin-dependent diabetes mellitus with renal complications', 'ICD10_2010'), +('E11.3', 'Non-insulin-dependent diabetes mellitus with ophthalmic complications', 'ICD10_2010'), +('E11.4', 'Non-insulin-dependent diabetes mellitus with neurological complications', 'ICD10_2010'), +('E11.5', 'Non-insulin-dependent diabetes mellitus with peripheral circulatory complications', 'ICD10_2010'), +('E11.6', 'Non-insulin-dependent diabetes mellitus with other specified complications', 'ICD10_2010'), +('E11.7', 'Non-insulin-dependent diabetes mellitus with multiple complications', 'ICD10_2010'), +('E11.8', 'Non-insulin-dependent diabetes mellitus with unspecified complications', 'ICD10_2010'), +('E11.9', 'Non-insulin-dependent diabetes mellitus without complications', 'ICD10_2010'), +('E12', 'Malnutrition-related diabetes mellitus', 'ICD10_2010'), +('E12.0', 'Malnutrition-related diabetes mellitus with coma', 'ICD10_2010'), +('E12.1', 'Malnutrition-related diabetes mellitus with ketoacidosis', 'ICD10_2010'), +('E12.2', 'Malnutrition-related diabetes mellitus with renal complications', 'ICD10_2010'), +('E12.3', 'Malnutrition-related diabetes mellitus with ophthalmic complications', 'ICD10_2010'), +('E12.4', 'Malnutrition-related diabetes mellitus with neurological complications', 'ICD10_2010'), +('E12.5', 'Malnutrition-related diabetes mellitus with peripheral circulatory complications', 'ICD10_2010'), +('E12.6', 'Malnutrition-related diabetes mellitus with other specified complications', 'ICD10_2010'), +('E12.7', 'Malnutrition-related diabetes mellitus with multiple complications', 'ICD10_2010'), +('E12.8', 'Malnutrition-related diabetes mellitus with unspecified complications', 'ICD10_2010'), +('E12.9', 'Malnutrition-related diabetes mellitus without complications', 'ICD10_2010'), +('E13', 'Other specified diabetes mellitus', 'ICD10_2010'), +('E13.0', 'Other specified diabetes mellitus with coma', 'ICD10_2010'), +('E13.1', 'Other specified diabetes mellitus with ketoacidosis', 'ICD10_2010'), +('E13.2', 'Other specified diabetes mellitus with renal complications', 'ICD10_2010'), +('E13.3', 'Other specified diabetes mellitus with ophthalmic complications', 'ICD10_2010'), +('E13.4', 'Other specified diabetes mellitus with neurological complications', 'ICD10_2010'), +('E13.5', 'Other specified diabetes mellitus with peripheral circulatory complications', 'ICD10_2010'), +('E13.6', 'Other specified diabetes mellitus with other specified complications', 'ICD10_2010'), +('E13.7', 'Other specified diabetes mellitus with multiple complications', 'ICD10_2010'), +('E13.8', 'Other specified diabetes mellitus with unspecified complications', 'ICD10_2010'), +('E13.9', 'Other specified diabetes mellitus without complications', 'ICD10_2010'), +('E14', 'Unspecified diabetes mellitus', 'ICD10_2010'), +('E14.0', 'Unspecified diabetes mellitus with coma', 'ICD10_2010'), +('E14.1', 'Unspecified diabetes mellitus with ketoacidosis', 'ICD10_2010'), +('E14.2', 'Unspecified diabetes mellitus with renal complications', 'ICD10_2010'), +('E14.3', 'Unspecified diabetes mellitus with ophthalmic complications', 'ICD10_2010'), +('E14.4', 'Unspecified diabetes mellitus with neurological complications', 'ICD10_2010'), +('E14.5', 'Unspecified diabetes mellitus with peripheral circulatory complications', 'ICD10_2010'), +('E14.6', 'Unspecified diabetes mellitus with other specified complications', 'ICD10_2010'), +('E14.7', 'Unspecified diabetes mellitus with multiple complications', 'ICD10_2010'), +('E14.8', 'Unspecified diabetes mellitus with unspecified complications', 'ICD10_2010'), +('E14.9', 'Unspecified diabetes mellitus without complications', 'ICD10_2010'), +('E15', 'Nondiabetic hypoglycaemic coma', 'ICD10_2010'), +('E16', 'Other disorders of pancreatic internal secretion', 'ICD10_2010'), +('E16.0', 'Drug-induced hypoglycaemia without coma', 'ICD10_2010'), +('E16.1', 'Other hypoglycaemia', 'ICD10_2010'), +('E16.2', 'Hypoglycaemia, unspecified', 'ICD10_2010'), +('E16.3', 'Increased secretion of glucagon', 'ICD10_2010'), +('E16.4', 'Abnormal secretion of gastrin', 'ICD10_2010'), +('E16.8', 'Other specified disorders of pancreatic internal secretion', 'ICD10_2010'), +('E16.9', 'Disorder of pancreatic internal secretion, unspecified', 'ICD10_2010'), +('E20', 'Hypoparathyroidism', 'ICD10_2010'), +('E20.0', 'Idiopathic hypoparathyroidism', 'ICD10_2010'), +('E20.1', 'Pseudohypoparathyroidism', 'ICD10_2010'), +('E20.8', 'Other hypoparathyroidism', 'ICD10_2010'), +('E20.9', 'Hypoparathyroidism, unspecified', 'ICD10_2010'), +('E21', 'Hyperparathyroidism and other disorders of parathyroid gland', 'ICD10_2010'), +('E21.0', 'Primary hyperparathyroidism', 'ICD10_2010'), +('E21.1', 'Secondary hyperparathyroidism, not elsewhere classified', 'ICD10_2010'), +('E21.2', 'Other hyperparathyroidism', 'ICD10_2010'), +('E21.3', 'Hyperparathyroidism, unspecified', 'ICD10_2010'), +('E21.4', 'Other specified disorders of parathyroid gland', 'ICD10_2010'), +('E21.5', 'Disorder of parathyroid gland, unspecified', 'ICD10_2010'), +('E22', 'Hyperfunction of pituitary gland', 'ICD10_2010'), +('E22.0', 'Acromegaly and pituitary gigantism', 'ICD10_2010'), +('E22.1', 'Hyperprolactinaemia', 'ICD10_2010'), +('E22.2', 'Syndrome of inappropriate secretion of antidiuretic hormone', 'ICD10_2010'), +('E22.8', 'Other hyperfunction of pituitary gland', 'ICD10_2010'), +('E22.9', 'Hyperfunction of pituitary gland, unspecified', 'ICD10_2010'), +('E23', 'Hypofunction and other disorders of pituitary gland', 'ICD10_2010'), +('E23.0', 'Hypopituitarism', 'ICD10_2010'), +('E23.1', 'Drug-induced hypopituitarism', 'ICD10_2010'), +('E23.2', 'Diabetes insipidus', 'ICD10_2010'), +('E23.3', 'Hypothalamic dysfunction, not elsewhere classified', 'ICD10_2010'), +('E23.6', 'Other disorders of pituitary gland', 'ICD10_2010'), +('E23.7', 'Disorder of pituitary gland, unspecified', 'ICD10_2010'), +('E24', 'Cushing syndrome', 'ICD10_2010'), +('E24.0', 'Pituitary-dependent cushing\'s disease', 'ICD10_2010'), +('E24.1', 'Nelson\'s syndrome', 'ICD10_2010'), +('E24.2', 'Drug-induced cushing\'s syndrome', 'ICD10_2010'), +('E24.3', 'Ectopic acth syndrome', 'ICD10_2010'), +('E24.4', 'Alcohol-induced pseudo-cushing\'s syndrome', 'ICD10_2010'), +('E24.8', 'Other cushing\'s syndrome', 'ICD10_2010'), +('E24.9', 'Cushing\'s syndrome, unspecified', 'ICD10_2010'), +('E25', 'Adrenogenital disorders', 'ICD10_2010'), +('E25.0', 'Congenital adrenogenital disorders associated enzyme def', 'ICD10_2010'), +('E25.8', 'Other adrenogenital disorders', 'ICD10_2010'), +('E25.9', 'Adrenogenital disorder, unspecified', 'ICD10_2010'), +('E26', 'Hyperaldosteronism', 'ICD10_2010'), +('E26.0', 'Primary hyperaldosteronism', 'ICD10_2010'), +('E26.1', 'Secondary hyperaldosteronism', 'ICD10_2010'), +('E26.8', 'Other hyperaldosteronism', 'ICD10_2010'), +('E26.9', 'Hyperaldosteronism, unspecified', 'ICD10_2010'), +('E27', 'Other disorders of adrenal gland', 'ICD10_2010'), +('E27.0', 'Other adrenocortical overactivity', 'ICD10_2010'), +('E27.1', 'Primary adrenocortical insufficiency', 'ICD10_2010'), +('E27.2', 'Addisonian crisis', 'ICD10_2010'), +('E27.3', 'Drug-induced adrenocortical insufficiency', 'ICD10_2010'), +('E27.4', 'Other and unspecified adrenocortical insufficiency', 'ICD10_2010'), +('E27.5', 'Adrenomedullary hyperfunction', 'ICD10_2010'), +('E27.8', 'Other specified disorders of adrenal gland', 'ICD10_2010'), +('E27.9', 'Disorder of adrenal gland, unspecified', 'ICD10_2010'), +('E28', 'Ovarian dysfunction', 'ICD10_2010'), +('E28.0', 'Estrogen excess', 'ICD10_2010'), +('E28.1', 'Androgen excess', 'ICD10_2010'), +('E28.2', 'Polycystic ovarian syndrome', 'ICD10_2010'), +('E28.3', 'Primary ovarian failure', 'ICD10_2010'), +('E28.8', 'Other ovarian dysfunction', 'ICD10_2010'), +('E28.9', 'Ovarian dysfunction, unspecified', 'ICD10_2010'), +('E29', 'Testicular dysfunction', 'ICD10_2010'), +('E29.0', 'Testicular hyperfunction', 'ICD10_2010'), +('E29.1', 'Testicular hypofunction', 'ICD10_2010'), +('E29.8', 'Other testicular dysfunction', 'ICD10_2010'), +('E29.9', 'Testicular dysfunction, unspecified', 'ICD10_2010'), +('E30', 'Disorders of puberty, not elsewhere classified', 'ICD10_2010'), +('E30.0', 'Delayed puberty', 'ICD10_2010'), +('E30.1', 'Precocious puberty', 'ICD10_2010'), +('E30.8', 'Other disorders of puberty', 'ICD10_2010'), +('E30.9', 'Disorder of puberty, unspecified', 'ICD10_2010'), +('E31', 'Polyglandular dysfunction', 'ICD10_2010'), +('E31.0', 'Autoimmune polyglandular failure', 'ICD10_2010'), +('E31.1', 'Polyglandular hyperfunction', 'ICD10_2010'), +('E31.8', 'Other polyglandular dysfunction', 'ICD10_2010'), +('E31.9', 'Polyglandular dysfunction, unspecified', 'ICD10_2010'), +('E32', 'Diseases of thymus', 'ICD10_2010'), +('E32.0', 'Persistent hyperplasia of thymus', 'ICD10_2010'), +('E32.1', 'Abscess of thymus', 'ICD10_2010'), +('E32.8', 'Other diseases of thymus', 'ICD10_2010'), +('E32.9', 'Disease of thymus, unspecified', 'ICD10_2010'), +('E34', 'Other endocrine disorders', 'ICD10_2010'), +('E34.0', 'Carcinoid syndrome', 'ICD10_2010'), +('E34.1', 'Other hypersecretion of intestinal hormones', 'ICD10_2010'), +('E34.2', 'Ectopic hormone secretion, not elsewhere classified', 'ICD10_2010'), +('E34.3', 'Short stature, not elsewhere classified', 'ICD10_2010'), +('E34.4', 'Constitutional tall stature', 'ICD10_2010'), +('E34.5', 'Androgen resistance syndrome', 'ICD10_2010'), +('E34.8', 'Other specified endocrine disorders', 'ICD10_2010'), +('E34.9', 'Endocrine disorder, unspecified', 'ICD10_2010'), +('E35', 'Disorders of endocrine glands in diseases classified elsewhere', 'ICD10_2010'), +('E35.0', 'Disorders of thyroid gland in diseases classified elsewhere', 'ICD10_2010'), +('E35.1', 'Disorders of adrenal glands in diseases classified elsewhere', 'ICD10_2010'), +('E35.8', 'Disorders other endocrine glands in disease class elsewhere', 'ICD10_2010'), +('E40', 'Kwashiorkor', 'ICD10_2010'), +('E41', 'Nutritional marasmus', 'ICD10_2010'), +('E42', 'Marasmic kwashiorkor', 'ICD10_2010'), +('E43', 'Unspecified severe protein-energy malnutrition', 'ICD10_2010'), +('E44', 'Protein-energy malnutrition of moderate and mild degree', 'ICD10_2010'), +('E44.0', 'Moderate protein-energy malnutrition', 'ICD10_2010'), +('E44.1', 'Mild protein-energy malnutrition', 'ICD10_2010'), +('E45', 'Retarded development following protein-energy malnutrition', 'ICD10_2010'), +('E46', 'Unspecified protein-energy malnutrition', 'ICD10_2010'), +('E50', 'Vitamin A deficiency', 'ICD10_2010'), +('E50.0', 'Vitamin A deficiency with conjunctival xerosis', 'ICD10_2010'), +('E50.1', 'Vitamin A deficiency with bitot\'s spot and conjunctival xerosis', 'ICD10_2010'), +('E50.2', 'Vitamin A deficiency with corneal xerosis', 'ICD10_2010'), +('E50.3', 'Vitamin A deficiency with corneal ulceration and xerosis', 'ICD10_2010'), +('E50.4', 'Vitamin A deficiency with keratomalacia', 'ICD10_2010'), +('E50.5', 'Vitamin A deficiency with night blindness', 'ICD10_2010'), +('E50.6', 'Vitamin A deficiency with xerophthalmic scars of cornea', 'ICD10_2010'), +('E50.7', 'Other ocular manifestations of vitamin A deficiency', 'ICD10_2010'), +('E50.8', 'Other manifestations of vitamin A deficiency', 'ICD10_2010'), +('E50.9', 'Vitamin A deficiency, unspecified', 'ICD10_2010'), +('E51', 'Thiamine deficiency', 'ICD10_2010'), +('E51.1', 'Beriberi', 'ICD10_2010'), +('E51.2', 'Wernicke\'s encephalopathy', 'ICD10_2010'), +('E51.8', 'Other manifestations of thiamine deficiency', 'ICD10_2010'), +('E51.9', 'Thiamine deficiency, unspecified', 'ICD10_2010'), +('E52', 'Niacin deficiency [pellagra]', 'ICD10_2010'), +('E53', 'Deficiency of other B group vitamins', 'ICD10_2010'), +('E53.0', 'Riboflavin deficiency', 'ICD10_2010'), +('E53.1', 'Pyridoxine deficiency', 'ICD10_2010'), +('E53.8', 'Deficiency of other specified B group vitamins', 'ICD10_2010'), +('E53.9', 'Vitamin B deficiency, unspecified', 'ICD10_2010'), +('E54', 'Ascorbic acid deficiency', 'ICD10_2010'), +('E55', 'Vitamin D deficiency', 'ICD10_2010'), +('E55.0', 'Rickets, active', 'ICD10_2010'), +('E55.9', 'Vitamin D deficiency, unspecified', 'ICD10_2010'), +('E56', 'Other vitamin deficiencies', 'ICD10_2010'), +('E56.0', 'Deficiency of vitamin E', 'ICD10_2010'), +('E56.1', 'Deficiency of vitamin K', 'ICD10_2010'), +('E56.8', 'Deficiency of other vitamins', 'ICD10_2010'), +('E56.9', 'Vitamin deficiency, unspecified', 'ICD10_2010'), +('E58', 'Dietary calcium deficiency', 'ICD10_2010'), +('E59', 'Dietary selenium deficiency', 'ICD10_2010'), +('E60', 'Dietary zinc deficiency', 'ICD10_2010'), +('E61', 'Deficiency of other nutrient elements', 'ICD10_2010'), +('E61.0', 'Copper deficiency', 'ICD10_2010'), +('E61.1', 'Iron deficiency', 'ICD10_2010'), +('E61.2', 'Magnesium deficiency', 'ICD10_2010'), +('E61.3', 'Manganese deficiency', 'ICD10_2010'), +('E61.4', 'Chromium deficiency', 'ICD10_2010'), +('E61.5', 'Molybdenum deficiency', 'ICD10_2010'), +('E61.6', 'Vanadium deficiency', 'ICD10_2010'), +('E61.7', 'Deficiency of multiple nutrient elements', 'ICD10_2010'), +('E61.8', 'Deficiency of other specified nutrient elements', 'ICD10_2010'), +('E61.9', 'Deficiency of nutrient element, unspecified', 'ICD10_2010'), +('E63', 'Other nutritional deficiencies', 'ICD10_2010'), +('E63.0', 'Essential fatty acid [efa] deficiency', 'ICD10_2010'), +('E63.1', 'Imbalance of constituents of food intake', 'ICD10_2010'), +('E63.8', 'Other specified nutritional deficiencies', 'ICD10_2010'), +('E63.9', 'Nutritional deficiency, unspecified', 'ICD10_2010'), +('E64', 'Sequelae of malnutrition and other nutritional deficiencies', 'ICD10_2010'), +('E64.0', 'Sequelae of protein-energy malnutrition', 'ICD10_2010'), +('E64.1', 'Sequelae of vitamin A deficiency', 'ICD10_2010'), +('E64.2', 'Sequelae of vitamin C deficiency', 'ICD10_2010'), +('E64.3', 'Sequelae of rickets', 'ICD10_2010'), +('E64.8', 'Sequelae of other nutritional deficiencies', 'ICD10_2010'), +('E64.9', 'Sequelae of unspecified nutritional deficiency', 'ICD10_2010'), +('E65', 'Localized adiposity', 'ICD10_2010'), +('E66', 'Obesity', 'ICD10_2010'), +('E66.0', 'Obesity due to excess calories', 'ICD10_2010'), +('E66.1', 'Drug-induced obesity', 'ICD10_2010'), +('E66.2', 'Extreme obesity with alveolar hypoventilation', 'ICD10_2010'), +('E66.8', 'Other obesity', 'ICD10_2010'), +('E66.9', 'Obesity, unspecified', 'ICD10_2010'), +('E67', 'Other hyperalimentation', 'ICD10_2010'), +('E67.0', 'Hypervitaminosis A', 'ICD10_2010'), +('E67.1', 'Hypercarotenaemia', 'ICD10_2010'), +('E67.2', 'Megavitamin-B6 syndrome', 'ICD10_2010'), +('E67.3', 'Hypervitaminosis D', 'ICD10_2010'), +('E67.8', 'Other specified hyperalimentation', 'ICD10_2010'), +('E68', 'Sequelae of hyperalimentation', 'ICD10_2010'), +('E70', 'Disorders of aromatic amino-acid metabolism', 'ICD10_2010'), +('E70.0', 'Classical phenylketonuria', 'ICD10_2010'), +('E70.1', 'Other hyperphenylalaninaemias', 'ICD10_2010'), +('E70.2', 'Disorders of tyrosine metabolism', 'ICD10_2010'), +('E70.3', 'Albinism', 'ICD10_2010'), +('E70.8', 'Other disorders of aromatic amino-acid metabolism', 'ICD10_2010'), +('E70.9', 'Disorder of aromatic amino-acid metabolism, unspecified', 'ICD10_2010'), +('E71', 'Disorders of branched-chain amino-acid metabolism and fatty-acid metabolism', 'ICD10_2010'), +('E71.0', 'Maple-syrup-urine disease', 'ICD10_2010'), +('E71.1', 'Other disorders of branched-chain amino-acid metabolism', 'ICD10_2010'), +('E71.2', 'Disorder of branched-chain amino-acid metabolism, unspec act', 'ICD10_2010'), +('E71.3', 'Disorders of fatty-acid metabolism', 'ICD10_2010'), +('E72', 'Other disorders of amino-acid metabolism', 'ICD10_2010'), +('E72.0', 'Disorders of amino-acid transport', 'ICD10_2010'), +('E72.1', 'Disorders of sulfur-bearing amino-acid metabolism', 'ICD10_2010'), +('E72.2', 'Disorders of urea cycle metabolism', 'ICD10_2010'), +('E72.3', 'Disorders of lysine and hydroxylysine metabolism', 'ICD10_2010'), +('E72.4', 'Disorders of ornithine metabolism', 'ICD10_2010'), +('E72.5', 'Disorders of glycine metabolism', 'ICD10_2010'), +('E72.8', 'Other specified disorders of amino-acid metabolism', 'ICD10_2010'), +('E72.9', 'Disorder of amino-acid metabolism, unspecified', 'ICD10_2010'), +('E73', 'Lactose intolerance', 'ICD10_2010'), +('E73.0', 'Congenital lactase deficiency', 'ICD10_2010'), +('E73.1', 'Secondary lactase deficiency', 'ICD10_2010'), +('E73.8', 'Other lactose intolerance', 'ICD10_2010'), +('E73.9', 'Lactose intolerance, unspecified', 'ICD10_2010'), +('E74', 'Other disorders of carbohydrate metabolism', 'ICD10_2010'), +('E74.0', 'Glycogen storage disease', 'ICD10_2010'), +('E74.1', 'Disorders of fructose metabolism', 'ICD10_2010'), +('E74.2', 'Disorders of galactose metabolism', 'ICD10_2010'), +('E74.3', 'Other disorders of intestinal carbohydrate absorption', 'ICD10_2010'), +('E74.4', 'Disorders of pyruvate metabolism and gluconeogenesis', 'ICD10_2010'), +('E74.8', 'Other specified disorders of carbohydrate metabolism', 'ICD10_2010'), +('E74.9', 'Disorder of carbohydrate metabolism, unspecified', 'ICD10_2010'), +('E75', 'Disorders of sphingolipid metabolism and other lipid storage disorders', 'ICD10_2010'), +('E75.0', 'Gm2 gangliosidosis', 'ICD10_2010'), +('E75.1', 'Other gangliosidosis', 'ICD10_2010'), +('E75.2', 'Other sphingolipidosis', 'ICD10_2010'), +('E75.3', 'Sphingolipidosis, unspecified', 'ICD10_2010'), +('E75.4', 'Neuronal ceroid lipofuscinosis', 'ICD10_2010'), +('E75.5', 'Other lipid storage disorders', 'ICD10_2010'), +('E75.6', 'Lipid storage disorder, unspecified', 'ICD10_2010'), +('E76', 'Disorders of glycosaminoglycan metabolism', 'ICD10_2010'), +('E76.0', 'Mucopolysaccharidosis, type i', 'ICD10_2010'), +('E76.1', 'Mucopolysaccharidosis, type ii', 'ICD10_2010'), +('E76.2', 'Other mucopolysaccharidoses', 'ICD10_2010'); +INSERT INTO `icd10` (`ID_ICD10`, `Diagnosa`, `Versi_ICD10`) VALUES +('E76.3', 'Mucopolysaccharidosis, unspecified', 'ICD10_2010'), +('E76.8', 'Other disorders of glucosaminoglycan metabolism', 'ICD10_2010'), +('E76.9', 'Disorder of glucosaminoglycan metabolism, unspecified', 'ICD10_2010'), +('E77', 'Disorders of glycoprotein metabolism', 'ICD10_2010'), +('E77.0', 'Defects in post-translational modif\'n of lysosomal enzymes', 'ICD10_2010'), +('E77.1', 'Defects in glycoprotein degradation', 'ICD10_2010'), +('E77.8', 'Other disorders of glycoprotein metabolism', 'ICD10_2010'), +('E77.9', 'Disorder of glycoprotein metabolism, unspecified', 'ICD10_2010'), +('E78', 'Disorders of lipoprotein metabolism and other lipidaemias', 'ICD10_2010'), +('E78.0', 'Pure hypercholesterolaemia', 'ICD10_2010'), +('E78.1', 'Pure hyperglyceridaemia', 'ICD10_2010'), +('E78.2', 'Mixed hyperlipidaemia', 'ICD10_2010'), +('E78.3', 'Hyperchylomicronaemia', 'ICD10_2010'), +('E78.4', 'Other hyperlipidaemia', 'ICD10_2010'), +('E78.5', 'Hyperlipidaemia, unspecified', 'ICD10_2010'), +('E78.6', 'Lipoprotein deficiency', 'ICD10_2010'), +('E78.8', 'Other disorders of lipoprotein metabolism', 'ICD10_2010'), +('E78.9', 'Disorder of lipoprotein metabolism, unspecified', 'ICD10_2010'), +('E79', 'Disorders of purine and pyrimidine metabolism', 'ICD10_2010'), +('E79.0', 'Hyperuricaem without sign inflamm arthritis+tophaceous dis', 'ICD10_2010'), +('E79.1', 'Lesch-Nyhan syndrome', 'ICD10_2010'), +('E79.8', 'Other disorders of purine and pyrimidine metabolism', 'ICD10_2010'), +('E79.9', 'Disorder of purine and pyrimidine metabolism, unspecified', 'ICD10_2010'), +('E80', 'Disorders of porphyrin and bilirubin metabolism', 'ICD10_2010'), +('E80.0', 'Hereditary erythropoietic porphyria', 'ICD10_2010'), +('E80.1', 'Porphyria cutanea tarda', 'ICD10_2010'), +('E80.2', 'Other porphyria', 'ICD10_2010'), +('E80.3', 'Defects of catalase and peroxidase', 'ICD10_2010'), +('E80.4', 'Gilbert\'s syndrome', 'ICD10_2010'), +('E80.5', 'Crigler-najjar syndrome', 'ICD10_2010'), +('E80.6', 'Other disorders of bilirubin metabolism', 'ICD10_2010'), +('E80.7', 'Disorder of bilirubin metabolism, unspecified', 'ICD10_2010'), +('E83', 'Disorders of mineral metabolism', 'ICD10_2010'), +('E83.0', 'Disorders of copper metabolism', 'ICD10_2010'), +('E83.1', 'Disorders of iron metabolism', 'ICD10_2010'), +('E83.2', 'Disorders of zinc metabolism', 'ICD10_2010'), +('E83.3', 'Disorders of phosphorus metabolism', 'ICD10_2010'), +('E83.4', 'Disorders of magnesium metabolism', 'ICD10_2010'), +('E83.5', 'Disorders of calcium metabolism', 'ICD10_2010'), +('E83.8', 'Other disorders of mineral metabolism', 'ICD10_2010'), +('E83.9', 'Disorder of mineral metabolism, unspecified', 'ICD10_2010'), +('E84', 'Cystic fibrosis', 'ICD10_2010'), +('E84.0', 'Cystic fibrosis with pulmonary manifestations', 'ICD10_2010'), +('E84.1', 'Cystic fibrosis with intestinal manifestations', 'ICD10_2010'), +('E84.8', 'Cystic fibrosis with other manifestations', 'ICD10_2010'), +('E84.9', 'Cystic fibrosis, unspecified', 'ICD10_2010'), +('E85', 'Amyloidosis', 'ICD10_2010'), +('E85.0', 'Non-neuropathic heredofamilial amyloidosis', 'ICD10_2010'), +('E85.1', 'Neuropathic heredofamilial amyloidosis', 'ICD10_2010'), +('E85.2', 'Heredofamilial amyloidosis, unspecified', 'ICD10_2010'), +('E85.3', 'Secondary systemic amyloidosis', 'ICD10_2010'), +('E85.4', 'Organ-limited amyloidosis', 'ICD10_2010'), +('E85.8', 'Other amyloidosis', 'ICD10_2010'), +('E85.9', 'Amyloidosis, unspecified', 'ICD10_2010'), +('E86', 'Volume depletion', 'ICD10_2010'), +('E87', 'Other disorders of fluid, electrolyte and acid-base balance', 'ICD10_2010'), +('E87.0', 'Hyperosmolality and hypernatraemia', 'ICD10_2010'), +('E87.1', 'Hypo-osmolality and hyponatraemia', 'ICD10_2010'), +('E87.2', 'Acidosis', 'ICD10_2010'), +('E87.3', 'Alkalosis', 'ICD10_2010'), +('E87.4', 'Mixed disorder of acid-base balance', 'ICD10_2010'), +('E87.5', 'Hyperkalaemia', 'ICD10_2010'), +('E87.6', 'Hypokalaemia', 'ICD10_2010'), +('E87.7', 'Fluid overload', 'ICD10_2010'), +('E87.8', 'Other disorders of electrolyte and fluid balance NEC', 'ICD10_2010'), +('E88', 'Other metabolic disorders', 'ICD10_2010'), +('E88.0', 'Disorders of plasma-protein metabolism NEC', 'ICD10_2010'), +('E88.1', 'Lipodystrophy, not elsewhere classified', 'ICD10_2010'), +('E88.2', 'Lipomatosis, not elsewhere classified', 'ICD10_2010'), +('E88.3', 'Tumour lysis syndrome', 'ICD10_2010'), +('E88.8', 'Other specified metabolic disorders', 'ICD10_2010'), +('E88.9', 'Metabolic disorder, unspecified', 'ICD10_2010'), +('E89', 'Postprocedural endocrine and metabolic disorders, not elsewhere classified', 'ICD10_2010'), +('E89.0', 'Postprocedural hypothyroidism', 'ICD10_2010'), +('E89.1', 'Postprocedural hypoinsulinaemia', 'ICD10_2010'), +('E89.2', 'Postprocedural hypoparathyroidism', 'ICD10_2010'), +('E89.3', 'Postprocedural hypopituitarism', 'ICD10_2010'), +('E89.4', 'Postprocedural ovarian failure', 'ICD10_2010'), +('E89.5', 'Postprocedural testicular hypofunction', 'ICD10_2010'), +('E89.6', 'Postprocedural adrenocortical(-medullary) hypofunction', 'ICD10_2010'), +('E89.8', 'Other postprocedural endocrine and metabolic disorders', 'ICD10_2010'), +('E89.9', 'Postprocedural endocrine and metabolic disorder, unspecified', 'ICD10_2010'), +('E90', 'Nutritional and metabolic disorders in diseases', 'ICD10_2010'), +('F00', 'Dementia in Alzheimer disease', 'ICD10_2010'), +('F00.0', 'Dementia in alzheimer\'s disease with early onset', 'ICD10_2010'), +('F00.1', 'Dementia in alzheimer\'s disease with late onset', 'ICD10_2010'), +('F00.2', 'Dementia in alzheimer\'s disease, atypical or mixed type', 'ICD10_2010'), +('F00.9', 'Dementia in alzheimer\'s disease, unspecified', 'ICD10_2010'), +('F01', 'Vascular dementia', 'ICD10_2010'), +('F01.0', 'Vascular dementia of acute onset', 'ICD10_2010'), +('F01.1', 'Multi-infarct dementia', 'ICD10_2010'), +('F01.2', 'Subcortical vascular dementia', 'ICD10_2010'), +('F01.3', 'Mixed cortical and subcortical vascular dementia', 'ICD10_2010'), +('F01.8', 'Other vascular dementia', 'ICD10_2010'), +('F01.9', 'Vascular dementia, unspecified', 'ICD10_2010'), +('F02', 'Dementia in other diseases classified elsewhere', 'ICD10_2010'), +('F02.0', 'Dementia in Pick\'s disease', 'ICD10_2010'), +('F02.1', 'Dementia in Creutzfeldt-Jakob disease', 'ICD10_2010'), +('F02.2', 'Dementia in Huntington\'s disease', 'ICD10_2010'), +('F02.3', 'Dementia in Parkinson\'s disease', 'ICD10_2010'), +('F02.4', 'Dementia in human immunodef virus [HIV] disease', 'ICD10_2010'), +('F02.8', 'Dementia in other specified diseases classified elsewhere', 'ICD10_2010'), +('F03', 'Unspecified dementia', 'ICD10_2010'), +('F04', 'Organic amnesic syndrome not induced alcohol/other psychoactive substances', 'ICD10_2010'), +('F05', 'Delirium, not induced by alcohol and other psychoactive substances', 'ICD10_2010'), +('F05.0', 'Delirium not superimposed on dementia, so described', 'ICD10_2010'), +('F05.1', 'Delirium superimposed on dementia', 'ICD10_2010'), +('F05.8', 'Other delirium', 'ICD10_2010'), +('F05.9', 'Delirium, unspecified', 'ICD10_2010'), +('F06', 'Other mental disorders due to brain damage and dysfunction and to physical disease', 'ICD10_2010'), +('F06.0', 'Organic hallucinosis', 'ICD10_2010'), +('F06.1', 'Organic catatonic disorder', 'ICD10_2010'), +('F06.2', 'Organic delusional [schizophrenia-like] disorder', 'ICD10_2010'), +('F06.3', 'Organic mood [affective] disorders', 'ICD10_2010'), +('F06.4', 'Organic anxiety disorder', 'ICD10_2010'), +('F06.5', 'Organic dissociative disorder', 'ICD10_2010'), +('F06.6', 'Organic emotionally labile [asthenic] disorder', 'ICD10_2010'), +('F06.7', 'Mild cognitive disorder', 'ICD10_2010'), +('F06.8', 'Other specified mental disorder brain damage and dysfunction/physcal disease', 'ICD10_2010'), +('F06.9', 'Unspecified mental disorder brain damage and dysfunction/physcal disease', 'ICD10_2010'), +('F07', 'Personality and behavioural disorders due to brain disease, damage and dysfunction', 'ICD10_2010'), +('F07.0', 'Organic personality disorder', 'ICD10_2010'), +('F07.1', 'Postencephalitic syndrome', 'ICD10_2010'), +('F07.2', 'Postconcussional syndrome', 'ICD10_2010'), +('F07.8', 'Other organ personality behavioural disorders due to brain disease, damage dysfunction', 'ICD10_2010'), +('F07.9', 'Unspecified organ personality behavioural disorder brain damage and dysfunction', 'ICD10_2010'), +('F09', 'Unspecified organic or symptomatic mental disorder', 'ICD10_2010'), +('F10', 'Mental and behavioural disorders due to use of alcohol', 'ICD10_2010'), +('F10.0', 'Mental & behavioural disorder due to use of alcohol: acute intoxication', 'ICD10_2010'), +('F10.1', 'Mental & behavioural disorder due to use of alcohol: harmful use', 'ICD10_2010'), +('F10.2', 'Mental & behavioural disorder due to use of alcohol: dependence syndrome', 'ICD10_2010'), +('F10.3', 'Mental & behavioural disorder due to use of alcohol: withdrawal state', 'ICD10_2010'), +('F10.4', 'Mental & behavioural disorder due to use of alcohol: withdrawl state with delirium', 'ICD10_2010'), +('F10.5', 'Mental & behavioural disorder due to use of alcohol: psychotic disorder', 'ICD10_2010'), +('F10.6', 'Mental & behavioural disorder due to use of alcohol: amnesic syndrome', 'ICD10_2010'), +('F10.7', 'Mental & behavioural disorder due to use of alcohol: residual & late-onset psychotic disorder', 'ICD10_2010'), +('F10.8', 'Mental & behavioural disorder due to use of alcohol: other mental & behavioural disorder', 'ICD10_2010'), +('F10.9', 'Mental & behavioural disorder due to use of alcohol: unspecified mental & behavioural disorder', 'ICD10_2010'), +('F11', 'Mental and behavioural disorders due to use of opioids', 'ICD10_2010'), +('F11.0', 'Mental & behavioural disorder due to use of opiods: acute intoxication', 'ICD10_2010'), +('F11.1', 'Mental & behavioural disorder due to use of opiods: harmful use', 'ICD10_2010'), +('F11.2', 'Mental & behavioural disorder due to use of opiods: dependence syndrome', 'ICD10_2010'), +('F11.3', 'Mental & behavioural disorder due to use of opiods: withdrawal state', 'ICD10_2010'), +('F11.4', 'Mental & behavioural disorder due to use of opiods: withdrawl state with delirium', 'ICD10_2010'), +('F11.5', 'Mental & behavioural disorder due to use of opiods: psychotic disorder', 'ICD10_2010'), +('F11.6', 'Mental & behavioural disorder due to use of opiods: amnesic syndrome', 'ICD10_2010'), +('F11.7', 'Mental & behavioural disorder due to use of opiods: residual & late-onset psychotic disorder', 'ICD10_2010'), +('F11.8', 'Mental & behavioural disorder due to use of opiods: other mental & behavioural disorder', 'ICD10_2010'), +('F11.9', 'Mental & behavioural disorder due to use of opiods: unspecified mental & behavioural disorder', 'ICD10_2010'), +('F12', 'Mental and behavioural disorders due to use of cannabinoids', 'ICD10_2010'), +('F12.0', 'Mental & behavioural disorder due to use of cannabinoids: acute intoxication', 'ICD10_2010'), +('F12.1', 'Mental & behavioural disorder due to use of cannabinoids: harmful use', 'ICD10_2010'), +('F12.2', 'Mental & behavioural disorder due to use of cannabinoids: dependence syndrome', 'ICD10_2010'), +('F12.3', 'Mental & behavioural disorder due to use of cannabinoids: withdrawal state', 'ICD10_2010'), +('F12.4', 'Mental & behavioural disorder due to use of cannabinoids: withdrawl state with delirium', 'ICD10_2010'), +('F12.5', 'Mental & behavioural disorder due to use of cannabinoids: psychotic disorder', 'ICD10_2010'), +('F12.6', 'Mental & behavioural disorder due to use of cannabinoids: amnesic syndrome', 'ICD10_2010'), +('F12.7', 'Mental & behavioural disorder due to use of cannabinoids: residual & late-onset psychotic disorder', 'ICD10_2010'), +('F12.8', 'Mental & behavioural disorder due to use of cannabinoids: other mental & behavioural disorder', 'ICD10_2010'), +('F12.9', 'Mental & behavioural disorder due to use of cannabinoids: unspecified mental & behavioural disorder', 'ICD10_2010'), +('F13', 'Mental and behavioural disorders due to use of sedatives or hypnotics', 'ICD10_2010'), +('F13.0', 'Mental & behavioural disorder due to use of sedatives or hypnotics: acute intoxication', 'ICD10_2010'), +('F13.1', 'Mental & behavioural disorder due to use of sedatives or hypnotics: harmful use', 'ICD10_2010'), +('F13.2', 'Mental & behavioural disorder due to use of sedatives or hypnotics: dependence syndrome', 'ICD10_2010'), +('F13.3', 'Mental & behavioural disorder due to use of sedatives or hypnotics: withdrawal state', 'ICD10_2010'), +('F13.4', 'Mental & behavioural disorder due to use of sedatives or hypnotics: withdrawl state with delirium', 'ICD10_2010'), +('F13.5', 'Mental & behavioural disorder due to use of sedatives or hypnotics: psychotic disorder', 'ICD10_2010'), +('F13.6', 'Mental & behavioural disorder due to use of sedatives or hypnotics: amnesic syndrome', 'ICD10_2010'), +('F13.7', 'Mental & behavioural disorder due to use of sedatives or hypnotics: residual & late-onset psychotic disorder', 'ICD10_2010'), +('F13.8', 'Mental & behavioural disorder due to use of sedatives or hypnotics: other mental & behavioural disorder', 'ICD10_2010'), +('F13.9', 'Mental & behavioural disorder due to use of sedatives or hypnotics: unspecified mental & behavioural disorder', 'ICD10_2010'), +('F14', 'Mental and behavioural disorders due to use of cocaine', 'ICD10_2010'), +('F14.0', 'Mental & behavioural disorder due to use of cocaine: acute intoxication', 'ICD10_2010'), +('F14.1', 'Mental & behavioural disorder due to use of cocaine: harmful use', 'ICD10_2010'), +('F14.2', 'Mental & behavioural disorder due to use of cocaine: dependence syndrome', 'ICD10_2010'), +('F14.3', 'Mental & behavioural disorder due to use of cocaine: withdrawal state', 'ICD10_2010'), +('F14.4', 'Mental & behavioural disorder due to use of cocaine: withdrawl state with delirium', 'ICD10_2010'), +('F14.5', 'Mental & behavioural disorder due to use of cocaine: psychotic disorder', 'ICD10_2010'), +('F14.6', 'Mental & behavioural disorder due to use of cocaine: amnesic syndrome', 'ICD10_2010'), +('F14.7', 'Mental & behavioural disorder due to use of cocaine: residual & late-onset psychotic disorder', 'ICD10_2010'), +('F14.8', 'Mental & behavioural disorder due to use of cocaine: other mental & behavioural disorder', 'ICD10_2010'), +('F14.9', 'Mental & behavioural disorder due to use of cocaine: unspecified mental & behavioural disorder', 'ICD10_2010'), +('F15', 'Mental and behavioural disorders due to use of other stimulants, including caffeine', 'ICD10_2010'), +('F15.0', 'Mental & behavioural disorder due to use of other stimulants, including caffeine: acute intoxication', 'ICD10_2010'), +('F15.1', 'Mental & behavioural disorder due to use of other stimulants, including caffeine: harmful use', 'ICD10_2010'), +('F15.2', 'Mental & behavioural disorder due to use of other stimulants, including caffeine: dependence syndrome', 'ICD10_2010'), +('F15.3', 'Mental & behavioural disorder due to use of other stimulants, including caffeine: withdrawal state', 'ICD10_2010'), +('F15.4', 'Mental & behavioural disorder due to use of other stimulants, including caffeine: withdrawl state with delirium', 'ICD10_2010'), +('F15.5', 'Mental & behavioural disorder due to use of other stimulants, including caffeine: psychotic disorder', 'ICD10_2010'), +('F15.6', 'Mental & behavioural disorder due to use of other stimulants, including caffeine: amnesic syndrome', 'ICD10_2010'), +('F15.7', 'Mental & behavioural disorder due to use of other stimulants, including caffeine: residual & late-onset psychotic disorder', 'ICD10_2010'), +('F15.8', 'Mental & behavioural disorder due to use of other stimulants, including caffeine: other mental & behavioural disorder', 'ICD10_2010'), +('F15.9', 'Mental & behavioural disorder due to use of other stimulants, including caffeine: unspecified mental & behavioural disorder', 'ICD10_2010'), +('F16', 'Mental and behavioural disorders due to use of hallucinogens', 'ICD10_2010'), +('F16.0', 'Mental & behavioural disorder due to use hallucinogens: acute intoxication', 'ICD10_2010'), +('F16.1', 'Mental & behavioural disorder due to use hallucinogens: harmful use', 'ICD10_2010'), +('F16.2', 'Mental & behavioural disorder due to use hallucinogens: dependence syndrome', 'ICD10_2010'), +('F16.3', 'Mental & behavioural disorder due to use hallucinogens: withdrawal state', 'ICD10_2010'), +('F16.4', 'Mental & behavioural disorder due to use hallucinogens: withdrawl state with delirium', 'ICD10_2010'), +('F16.5', 'Mental & behavioural disorder due to use hallucinogens: psychotic disorder', 'ICD10_2010'), +('F16.6', 'Mental & behavioural disorder due to use hallucinogens: amnesic syndrome', 'ICD10_2010'), +('F16.7', 'Mental & behavioural disorder due to use hallucinogens: residual & late-onset psychotic disorder', 'ICD10_2010'), +('F16.8', 'Mental & behavioural disorder due to use hallucinogens: other mental & behavioural disorder', 'ICD10_2010'), +('F16.9', 'Mental & behavioural disorder due to use hallucinogens: unspecified mental & behavioural disorder', 'ICD10_2010'), +('F17', 'Mental and behavioural disorders due to use of tobacco', 'ICD10_2010'), +('F17.0', 'Mental & behavioural disorder due of tobacco: acute intoxication', 'ICD10_2010'), +('F17.1', 'Mental & behavioural disorder due of tobacco: harmful use', 'ICD10_2010'), +('F17.2', 'Mental & behavioural disorder due of tobacco: dependence syndrome', 'ICD10_2010'), +('F17.3', 'Mental & behavioural disorder due of tobacco: withdrawal state', 'ICD10_2010'), +('F17.4', 'Mental & behavioural disorder due of tobacco: withdrawl state with delirium', 'ICD10_2010'), +('F17.5', 'Mental & behavioural disorder due of tobacco: psychotic disorder', 'ICD10_2010'), +('F17.6', 'Mental & behavioural disorder due of tobacco: amnesic syndrome', 'ICD10_2010'), +('F17.7', 'Mental & behavioural disorder due of tobacco: residual & late-onset psychotic disorder', 'ICD10_2010'), +('F17.8', 'Mental & behavioural disorder due of tobacco: other mental & behavioural disorder', 'ICD10_2010'), +('F17.9', 'Mental & behavioural disorder due of tobacco: unspecified mental & behavioural disorder', 'ICD10_2010'), +('F18', 'Mental and behavioural disorders due to use of volatile solvents', 'ICD10_2010'), +('F18.0', 'Mental & behavioural disorder due of volatile solvents: acute intoxication', 'ICD10_2010'), +('F18.1', 'Mental & behavioural disorder due of volatile solvents: harmful use', 'ICD10_2010'), +('F18.2', 'Mental & behavioural disorder due of volatile solvents: dependence syndrome', 'ICD10_2010'), +('F18.3', 'Mental & behavioural disorder due of volatile solvents: withdrawal state', 'ICD10_2010'), +('F18.4', 'Mental & behavioural disorder due of volatile solvents: withdrawl state with delirium', 'ICD10_2010'), +('F18.5', 'Mental & behavioural disorder due of volatile solvents: psychotic disorder', 'ICD10_2010'), +('F18.6', 'Mental & behavioural disorder due of volatile solvents: amnesic syndrome', 'ICD10_2010'), +('F18.7', 'Mental & behavioural disorder due of volatile solvents: residual & late-onset psychotic disorder', 'ICD10_2010'), +('F18.8', 'Mental & behavioural disorder due of volatile solvents: other mental & behavioural disorder', 'ICD10_2010'), +('F18.9', 'Mental & behavioural disorder due of volatile solvents: unspecified mental & behavioural disorder', 'ICD10_2010'), +('F19', 'Mental and behavioural disorders due to multiple drug use and use of other psychoactive substances', 'ICD10_2010'), +('F19.0', 'Mental & behavioural disorder due to multiple drug use and use of other psychoactive substances: acute intoxication', 'ICD10_2010'), +('F19.1', 'Mental & behavioural disorder due to multiple drug use and use of other psychoactive substances: harmful use', 'ICD10_2010'), +('F19.2', 'Mental & behavioural disorder due to multiple drug use and use of other psychoactive substances: dependence syndrome', 'ICD10_2010'), +('F19.3', 'Mental & behavioural disorder due to multiple drug use and use of other psychoactive substances: withdrawal state', 'ICD10_2010'), +('F19.4', 'Mental & behavioural disorder due to multiple drug use and use of other psychoactive substances: withdrawl state with delirium', 'ICD10_2010'), +('F19.5', 'Mental & behavioural disorder due to multiple drug use and use of other psychoactive substances: psychotic disorder', 'ICD10_2010'), +('F19.6', 'Mental & behavioural disorder due to multiple drug use and use of other psychoactive substances: amnesic syndrome', 'ICD10_2010'), +('F19.7', 'Mental & behavioural disorder due to multiple drug use and use of other psychoactive substances: residual & late-onset psychotic disorder', 'ICD10_2010'), +('F19.8', 'Mental & behavioural disorder due to multiple drug use and use of other psychoactive substances: other mental & behavioural disorder', 'ICD10_2010'), +('F19.9', 'Mental & behavioural disorder due to multiple drug use and use of other psychoactive substances: unspecified mental & behavioural disorder', 'ICD10_2010'), +('F20', 'Schizophrenia', 'ICD10_2010'), +('F20.0', 'Paranoid schizophrenia', 'ICD10_2010'), +('F20.1', 'Hebephrenic schizophrenia', 'ICD10_2010'), +('F20.2', 'Catatonic schizophrenia', 'ICD10_2010'), +('F20.3', 'Undifferentiated schizophrenia', 'ICD10_2010'), +('F20.4', 'Post-schizophrenic depression', 'ICD10_2010'), +('F20.5', 'Residual schizophrenia', 'ICD10_2010'), +('F20.6', 'Simple schizophrenia', 'ICD10_2010'), +('F20.8', 'Other schizophrenia', 'ICD10_2010'), +('F20.9', 'Schizophrenia, unspecified', 'ICD10_2010'), +('F21', 'Schizotypal disorder', 'ICD10_2010'), +('F22', 'Persistent delusional disorders', 'ICD10_2010'), +('F22.0', 'Delusional disorder', 'ICD10_2010'), +('F22.8', 'Other persistent delusional disorders', 'ICD10_2010'), +('F22.9', 'Persistent delusional disorder, unspecified', 'ICD10_2010'), +('F23', 'Acute and transient psychotic disorders', 'ICD10_2010'), +('F23.0', 'Acute polymorphic psychot disorder without symptoms of schizophrenia', 'ICD10_2010'), +('F23.1', 'Acute polymorphic psychot disorder with symptoms of schizophrenia', 'ICD10_2010'), +('F23.2', 'Acute schizophrenia-like psychotic disorder', 'ICD10_2010'), +('F23.3', 'Other acute predominantly delusional psychotic disorders', 'ICD10_2010'), +('F23.8', 'Other acute and transient psychotic disorders', 'ICD10_2010'), +('F23.9', 'Acute and transient psychotic disorder, unspecified', 'ICD10_2010'), +('F24', 'Induced delusional disorder', 'ICD10_2010'), +('F25', 'Schizoaffective disorders', 'ICD10_2010'), +('F25.0', 'Schizoaffective disorder, manic type', 'ICD10_2010'), +('F25.1', 'Schizoaffective disorder, depressive type', 'ICD10_2010'), +('F25.2', 'Schizoaffective disorder, mixed type', 'ICD10_2010'), +('F25.8', 'Other schizoaffective disorders', 'ICD10_2010'), +('F25.9', 'Schizoaffective disorder, unspecified', 'ICD10_2010'), +('F28', 'Other nonorganic psychotic disorders', 'ICD10_2010'), +('F29', 'Unspecified nonorganic psychosis', 'ICD10_2010'), +('F30', 'Manic episode', 'ICD10_2010'), +('F30.0', 'Hypomania', 'ICD10_2010'), +('F30.1', 'Mania without psychotic symptoms', 'ICD10_2010'), +('F30.2', 'Mania with psychotic symptoms', 'ICD10_2010'), +('F30.8', 'Other manic episodes', 'ICD10_2010'), +('F30.9', 'Manic episode, unspecified', 'ICD10_2010'), +('F31', 'Bipolar affective disorder', 'ICD10_2010'), +('F31.0', 'Bipolar affective disorder, current episode hypomanic', 'ICD10_2010'), +('F31.1', 'Bipolar affective disorder, current episode without psychotic symptoms', 'ICD10_2010'), +('F31.2', 'Bipolar affective disorder, current episode manic with psychotic symptoms', 'ICD10_2010'), +('F31.3', 'Bipolar affective disorder, current episode mild or moderate depression', 'ICD10_2010'), +('F31.4', 'Bipolar affective disorder, current episode severe depression without psychotic symptoms', 'ICD10_2010'), +('F31.5', 'Bipolar affective disorder, current episode severe depression with psychotic symptoms', 'ICD10_2010'), +('F31.6', 'Bipolar affective disorder, current episode mixed', 'ICD10_2010'), +('F31.7', 'Bipolar affective disorder, currently in remission', 'ICD10_2010'), +('F31.8', 'Other bipolar affective disorders', 'ICD10_2010'), +('F31.9', 'Bipolar affective disorder, unspecified', 'ICD10_2010'), +('F32', 'Depressive episode', 'ICD10_2010'), +('F32.0', 'Mild depressive episode', 'ICD10_2010'), +('F32.1', 'Moderate depressive episode', 'ICD10_2010'), +('F32.2', 'Severe depressive episode without psychotic symptoms', 'ICD10_2010'), +('F32.3', 'Severe depressive episode with psychotic symptoms', 'ICD10_2010'), +('F32.8', 'Other depressive episodes', 'ICD10_2010'), +('F32.9', 'Depressive episode, unspecified', 'ICD10_2010'), +('F33', 'Recurrent depressive disorder', 'ICD10_2010'), +('F33.0', 'Recurrent depressive disorder, current episode mild', 'ICD10_2010'), +('F33.1', 'Recurrent depressive disorder, current episode moderate', 'ICD10_2010'), +('F33.2', 'Recurrent depress disorder current episode severe without symptoms', 'ICD10_2010'), +('F33.3', 'Recurrent depress disorder current episode severe with psyc symp', 'ICD10_2010'), +('F33.4', 'Recurrent depressive disorder, currently in remission', 'ICD10_2010'), +('F33.8', 'Other recurrent depressive disorders', 'ICD10_2010'), +('F33.9', 'Recurrent depressive disorder, unspecified', 'ICD10_2010'), +('F34', 'Persistent mood [affective] disorders', 'ICD10_2010'), +('F34.0', 'Cyclothymia', 'ICD10_2010'), +('F34.1', 'Dysthymia', 'ICD10_2010'), +('F34.8', 'Other persistent mood [affective] disorders', 'ICD10_2010'), +('F34.9', 'Persistent mood [affective] disorder, unspecified', 'ICD10_2010'), +('F38', 'Other mood [affective] disorders', 'ICD10_2010'), +('F38.0', 'Other single mood [affective] disorders', 'ICD10_2010'), +('F38.1', 'Other recurrent mood [affective] disorders', 'ICD10_2010'), +('F38.8', 'Other specified mood [affective] disorders', 'ICD10_2010'), +('F39', 'Unspecified mood [affective] disorder', 'ICD10_2010'), +('F40', 'Phobic anxiety disorders', 'ICD10_2010'), +('F40.0', 'Agoraphobia', 'ICD10_2010'), +('F40.1', 'Social phobias', 'ICD10_2010'), +('F40.2', 'Specific (isolated) phobias', 'ICD10_2010'), +('F40.8', 'Other phobic anxiety disorders', 'ICD10_2010'), +('F40.9', 'Phobic anxiety disorder, unspecified', 'ICD10_2010'), +('F41', 'Other anxiety disorders', 'ICD10_2010'), +('F41.0', 'Panic disorder [episodic paroxysmal anxiety]', 'ICD10_2010'), +('F41.1', 'Generalized anxiety disorder', 'ICD10_2010'), +('F41.2', 'Mixed anxiety and depressive disorder', 'ICD10_2010'), +('F41.3', 'Other mixed anxiety disorders', 'ICD10_2010'), +('F41.8', 'Other specified anxiety disorders', 'ICD10_2010'), +('F41.9', 'Anxiety disorder, unspecified', 'ICD10_2010'), +('F42', 'Obsessive-compulsive disorder', 'ICD10_2010'), +('F42.0', 'Predominantly obsessional thoughts or ruminations', 'ICD10_2010'), +('F42.1', 'Predominantly compulsive acts [obsessional rituals]', 'ICD10_2010'), +('F42.2', 'Mixed obsessional thoughts and acts', 'ICD10_2010'), +('F42.8', 'Other obsessive-compulsive disorders', 'ICD10_2010'), +('F42.9', 'Obsessive-compulsive disorder, unspecified', 'ICD10_2010'), +('F43', 'Reaction to severe stress, and adjustment disorders', 'ICD10_2010'), +('F43.0', 'Acute stress reaction', 'ICD10_2010'), +('F43.1', 'Post-traumatic stress disorder', 'ICD10_2010'), +('F43.2', 'Adjustment disorders', 'ICD10_2010'), +('F43.8', 'Other reactions to severe stress', 'ICD10_2010'), +('F43.9', 'Reaction to severe stress, unspecified', 'ICD10_2010'), +('F44', 'Dissociative [conversion] disorders', 'ICD10_2010'), +('F44.0', 'Dissociative amnesia', 'ICD10_2010'), +('F44.1', 'Dissociative fugue', 'ICD10_2010'), +('F44.2', 'Dissociative stupor', 'ICD10_2010'), +('F44.3', 'Trance and possession disorders', 'ICD10_2010'), +('F44.4', 'Dissociative motor disorders', 'ICD10_2010'), +('F44.5', 'Dissociative convulsions', 'ICD10_2010'), +('F44.6', 'Dissociative anaesthesia and sensory loss', 'ICD10_2010'), +('F44.7', 'Mixed dissociative [conversion] disorders', 'ICD10_2010'), +('F44.8', 'Other dissociative [conversion] disorders', 'ICD10_2010'), +('F44.9', 'Dissociative [conversion] disorder, unspecified', 'ICD10_2010'), +('F45', 'Somatoform disorders', 'ICD10_2010'), +('F45.0', 'Somatization disorder', 'ICD10_2010'), +('F45.1', 'Undifferentiated somatoform disorder', 'ICD10_2010'), +('F45.2', 'Hypochondriacal disorder', 'ICD10_2010'), +('F45.3', 'Somatoform autonomic dysfunction', 'ICD10_2010'), +('F45.4', 'Persistent somatoform pain disorder', 'ICD10_2010'), +('F45.8', 'Other somatoform disorders', 'ICD10_2010'), +('F45.9', 'Somatoform disorder, unspecified', 'ICD10_2010'), +('F48', 'Other neurotic disorders', 'ICD10_2010'), +('F48.0', 'Neurasthenia', 'ICD10_2010'), +('F48.1', 'Depersonalization-derealization syndrome', 'ICD10_2010'), +('F48.8', 'Other specified neurotic disorders', 'ICD10_2010'), +('F48.9', 'Neurotic disorder, unspecified', 'ICD10_2010'), +('F50', 'Eating disorders', 'ICD10_2010'), +('F50.0', 'Anorexia nervosa', 'ICD10_2010'), +('F50.1', 'Atypical anorexia nervosa', 'ICD10_2010'), +('F50.2', 'Bulimia nervosa', 'ICD10_2010'), +('F50.3', 'Atypical bulimia nervosa', 'ICD10_2010'), +('F50.4', 'Overeating associated with other psychological disturbances', 'ICD10_2010'), +('F50.5', 'Vomiting associated with other psychological disturbances', 'ICD10_2010'), +('F50.8', 'Other eating disorders', 'ICD10_2010'), +('F50.9', 'Eating disorder, unspecified', 'ICD10_2010'), +('F51', 'Nonorganic sleep disorders', 'ICD10_2010'), +('F51.0', 'Nonorganic insomnia', 'ICD10_2010'), +('F51.1', 'Nonorganic hypersomnia', 'ICD10_2010'), +('F51.2', 'Nonorganic disorder of the sleep-wake schedule', 'ICD10_2010'), +('F51.3', 'Sleepwalking [somnambulism]', 'ICD10_2010'), +('F51.4', 'Sleep terrors [night terrors]', 'ICD10_2010'), +('F51.5', 'Nightmares', 'ICD10_2010'), +('F51.8', 'Other nonorganic sleep disorders', 'ICD10_2010'), +('F51.9', 'Nonorganic sleep disorder, unspecified', 'ICD10_2010'), +('F52', 'Sexual dysfunction, not caused by organic disorder or disease', 'ICD10_2010'), +('F52.0', 'Lack or loss of sexual desire', 'ICD10_2010'), +('F52.1', 'Sexual aversion and lack of sexual enjoyment', 'ICD10_2010'), +('F52.2', 'Failure of genital response', 'ICD10_2010'), +('F52.3', 'Orgasmic dysfunction', 'ICD10_2010'), +('F52.4', 'Premature ejaculation', 'ICD10_2010'), +('F52.5', 'Nonorganic vaginismus', 'ICD10_2010'), +('F52.6', 'Nonorganic dyspareunia', 'ICD10_2010'), +('F52.7', 'Excessive sexual drive', 'ICD10_2010'), +('F52.8', 'Other sexual dysfunction not caused by organic disorder/disease', 'ICD10_2010'), +('F52.9', 'Unspecified sexual dysfunction not caused by organic disorder or disease', 'ICD10_2010'), +('F53', 'Mental and behavioural disorders associated with the puerperium, not elsewhere classified', 'ICD10_2010'), +('F53.0', 'Mild mental and behavioural disorder associated with the puerperium NEC', 'ICD10_2010'), +('F53.1', 'Severe mental and behavioural disorder associated with puerperium NEC', 'ICD10_2010'), +('F53.8', 'Other mental and behavioural disorder associated with the puerperium NEC', 'ICD10_2010'), +('F53.9', 'Puerperal mental disorder, unspecified', 'ICD10_2010'), +('F54', 'Psychological and behavioural factor associated with disord or disease Classified elsewhere', 'ICD10_2010'), +('F55', 'Abuse of non-dependence-producing substances', 'ICD10_2010'), +('F59', 'Unspecified behavaviural syndrome associated with physiological disturbances and physical factor', 'ICD10_2010'), +('F60', 'Specific personality disorders', 'ICD10_2010'), +('F60.0', 'Paranoid personality disorder', 'ICD10_2010'), +('F60.1', 'Schizoid personality disorder', 'ICD10_2010'), +('F60.2', 'Dissocial personality disorder', 'ICD10_2010'), +('F60.3', 'Emotionally unstable personality disorder', 'ICD10_2010'), +('F60.4', 'Histrionic personality disorder', 'ICD10_2010'), +('F60.5', 'Anankastic personality disorder', 'ICD10_2010'), +('F60.6', 'Anxious [avoidant] personality disorder', 'ICD10_2010'), +('F60.7', 'Dependent personality disorder', 'ICD10_2010'), +('F60.8', 'Other specific personality disorders', 'ICD10_2010'), +('F60.9', 'Personality disorder, unspecified', 'ICD10_2010'), +('F61', 'Mixed and other personality disorders', 'ICD10_2010'), +('F62', 'Enduring personality changes, not attributable to brain damage and disease', 'ICD10_2010'), +('F62.0', 'Enduring personality change after catastrophic experience', 'ICD10_2010'), +('F62.1', 'Enduring personality change after psychiatric illness', 'ICD10_2010'), +('F62.8', 'Other enduring personality changes', 'ICD10_2010'), +('F62.9', 'Enduring personality change, unspecified', 'ICD10_2010'), +('F63', 'Habit and impulse disorders', 'ICD10_2010'), +('F63.0', 'Pathological gambling', 'ICD10_2010'), +('F63.1', 'Pathological fire-setting [pyromania]', 'ICD10_2010'), +('F63.2', 'Pathological stealing [kleptomania]', 'ICD10_2010'), +('F63.3', 'Trichotillomania', 'ICD10_2010'), +('F63.8', 'Other habit and impulse disorders', 'ICD10_2010'), +('F63.9', 'Habit and impulse disorder, unspecified', 'ICD10_2010'), +('F64', 'Gender identity disorders', 'ICD10_2010'), +('F64.0', 'Transsexualism', 'ICD10_2010'), +('F64.1', 'Dual-role transvestism', 'ICD10_2010'), +('F64.2', 'Gender identity disorder of childhood', 'ICD10_2010'), +('F64.8', 'Other gender identity disorders', 'ICD10_2010'), +('F64.9', 'Gender identity disorder, unspecified', 'ICD10_2010'), +('F65', 'Disorders of sexual preference', 'ICD10_2010'), +('F65.0', 'Fetishism', 'ICD10_2010'), +('F65.1', 'Fetishistic transvestism', 'ICD10_2010'), +('F65.2', 'Exhibitionism', 'ICD10_2010'), +('F65.3', 'Voyeurism', 'ICD10_2010'), +('F65.4', 'Paedophilia', 'ICD10_2010'), +('F65.5', 'Sadomasochism', 'ICD10_2010'), +('F65.6', 'Multiple disorders of sexual preference', 'ICD10_2010'), +('F65.8', 'Other disorders of sexual preference', 'ICD10_2010'), +('F65.9', 'Disorder of sexual preference, unspecified', 'ICD10_2010'), +('F66', 'Psychological and behavioural disorders associated with sexual development and orientation', 'ICD10_2010'), +('F66.0', 'Sexual maturation disorder', 'ICD10_2010'), +('F66.1', 'Egodystonic sexual orientation', 'ICD10_2010'), +('F66.2', 'Sexual relationship disorder', 'ICD10_2010'), +('F66.8', 'Other psychosexual development disorders', 'ICD10_2010'), +('F66.9', 'Psychosexual development disorder, unspecified', 'ICD10_2010'), +('F68', 'Other disorders of adult personality and behaviour', 'ICD10_2010'), +('F68.0', 'Elaboration of physical symptoms for psychological reasons', 'ICD10_2010'), +('F68.1', 'Intentional production/feigning of symptoms/disabilities either physical/psychological [factititous disorder)', 'ICD10_2010'), +('F68.8', 'Other specified disorders of adult personality and behaviour', 'ICD10_2010'), +('F69', 'Unspecified disorder of adult personality and behaviour', 'ICD10_2010'), +('F70', 'Mild mental retardation', 'ICD10_2010'), +('F70.0', 'Mild mental retardation: with statement no or minimal, impairment of behaviour', 'ICD10_2010'), +('F70.1', 'Mild mental retardation: significant impairment behaviour requiring attentiom / treatment', 'ICD10_2010'), +('F70.8', 'Mild mental retardation: other impairments of behaviour', 'ICD10_2010'), +('F70.9', 'Mild mental retardation: without mention of impairment behaviour', 'ICD10_2010'), +('F71', 'Moderate mental retardation', 'ICD10_2010'), +('F71.0', 'Mod mental retardation: with statement no or minimal, impairment of behaviour', 'ICD10_2010'), +('F71.1', 'Mod mental retardation: significant impairment behaviour requiring attentiom / treatment', 'ICD10_2010'), +('F71.8', 'Mod mental retardation: other impairments of behaviour', 'ICD10_2010'), +('F71.9', 'Mod mental retardation: without mention of impairment behaviour', 'ICD10_2010'), +('F72', 'Severe mental retardation', 'ICD10_2010'), +('F72.0', 'Severe mental retardation: with statement no or minimal, impairment of behaviour', 'ICD10_2010'), +('F72.1', 'Severe mental retardation: significant impairment behaviour requiring attentiom / treatment', 'ICD10_2010'), +('F72.8', 'Severe mental retardation: other impairments of behaviour', 'ICD10_2010'), +('F72.9', 'Severe mental retardation: without mention of impairment behaviour', 'ICD10_2010'), +('F73', 'Profound mental retardation', 'ICD10_2010'), +('F73.0', 'Profound mental retardation: with statement no or minimal, impairment of behaviour', 'ICD10_2010'), +('F73.1', 'Profound mental retardation: significant impairment behaviour requiring attentiom / treatment', 'ICD10_2010'), +('F73.8', 'Profound mental retardation: other impairments of behaviour', 'ICD10_2010'), +('F73.9', 'Profound mental retardation: without mention of impairment behaviour', 'ICD10_2010'), +('F78', 'Other mental retardation', 'ICD10_2010'), +('F78.0', 'other mental retardation: with statement no or minimal, impairment of behaviour', 'ICD10_2010'), +('F78.1', 'other mental retardation: significant impairment behaviour requiring attentiom / treatment', 'ICD10_2010'), +('F78.8', 'other mental retardation: other impairments of behaviour', 'ICD10_2010'), +('F78.9', 'other mental retardation: without mention of impairment behaviour', 'ICD10_2010'), +('F79', 'Unspecified mental retardation', 'ICD10_2010'), +('F79.0', 'Unspecified mental retardation: with statement no or minimal, impairment of behaviour', 'ICD10_2010'), +('F79.1', 'Unspecified mental retardation: significant impairment behaviour requiring attentiom / treatment', 'ICD10_2010'), +('F79.8', 'Unspecified mental retardation: other impairments of behaviour', 'ICD10_2010'), +('F79.9', 'Unspecified mental retardation: without mention of impairment behaviour', 'ICD10_2010'), +('F80', 'Specific developmental disorders of speech and language', 'ICD10_2010'), +('F80.0', 'Specific speech articulation disorder', 'ICD10_2010'), +('F80.1', 'Expressive language disorder', 'ICD10_2010'), +('F80.2', 'Receptive language disorder', 'ICD10_2010'), +('F80.3', 'Acquired aphasia with epilepsy [landau-kleffner]', 'ICD10_2010'), +('F80.8', 'Other developmental disorders of speech and language', 'ICD10_2010'), +('F80.9', 'Developmental disorder of speech and language, unspecified', 'ICD10_2010'), +('F81', 'Specific developmental disorders of scholastic skills', 'ICD10_2010'), +('F81.0', 'Specific reading disorder', 'ICD10_2010'), +('F81.1', 'Specific spelling disorder', 'ICD10_2010'), +('F81.2', 'Specific disorder of arithmetical skills', 'ICD10_2010'), +('F81.3', 'Mixed disorder of scholastic skills', 'ICD10_2010'), +('F81.8', 'Other developmental disorders of scholastic skills', 'ICD10_2010'), +('F81.9', 'Developmental disorder of scholastic skills, unspecified', 'ICD10_2010'), +('F82', 'Specific developmental disorder of motor function', 'ICD10_2010'), +('F83', 'Mixed specific developmental disorders', 'ICD10_2010'), +('F84', 'Pervasive developmental disorders', 'ICD10_2010'), +('F84.0', 'Childhood autism', 'ICD10_2010'), +('F84.1', 'Atypical autism', 'ICD10_2010'), +('F84.2', 'Rett\'s syndrome', 'ICD10_2010'), +('F84.3', 'Other childhood disintegrative disorder', 'ICD10_2010'), +('F84.4', 'Overactive disorder associated with mental retardation and stereotype movements', 'ICD10_2010'), +('F84.5', 'Asperger\'s syndrome', 'ICD10_2010'), +('F84.8', 'Other pervasive developmental disorders', 'ICD10_2010'), +('F84.9', 'Pervasive developmental disorder, unspecified', 'ICD10_2010'), +('F88', 'Other disorders of psychological development', 'ICD10_2010'), +('F89', 'Unspecified disorder of psychological development', 'ICD10_2010'), +('F90', 'Hyperkinetic disorders', 'ICD10_2010'), +('F90.0', 'Disturbance of activity and attention', 'ICD10_2010'), +('F90.1', 'Hyperkinetic conduct disorder', 'ICD10_2010'), +('F90.8', 'Other hyperkinetic disorders', 'ICD10_2010'), +('F90.9', 'Hyperkinetic disorder, unspecified', 'ICD10_2010'), +('F91', 'Conduct disorders', 'ICD10_2010'), +('F91.0', 'Conduct disorder confined to the family context', 'ICD10_2010'), +('F91.1', 'Unsocialized conduct disorder', 'ICD10_2010'), +('F91.2', 'Socialized conduct disorder', 'ICD10_2010'), +('F91.3', 'Oppositional defiant disorder', 'ICD10_2010'), +('F91.8', 'Other conduct disorders', 'ICD10_2010'), +('F91.9', 'Conduct disorder, unspecified', 'ICD10_2010'), +('F92', 'Mixed disorders of conduct and emotions', 'ICD10_2010'), +('F92.0', 'Depressive conduct disorder', 'ICD10_2010'), +('F92.8', 'Other mixed disorders of conduct and emotions', 'ICD10_2010'), +('F92.9', 'Mixed disorder of conduct and emotions, unspecified', 'ICD10_2010'), +('F93', 'Emotional disorders with onset specific to childhood', 'ICD10_2010'), +('F93.0', 'Separation anxiety disorder of childhood', 'ICD10_2010'), +('F93.1', 'Phobic anxiety disorder of childhood', 'ICD10_2010'), +('F93.2', 'Social anxiety disorder of childhood', 'ICD10_2010'), +('F93.3', 'Sibling rivalry disorder', 'ICD10_2010'), +('F93.8', 'Other childhood emotional disorders', 'ICD10_2010'), +('F93.9', 'Childhood emotional disorder, unspecified', 'ICD10_2010'), +('F94', 'Disorders of social functioning with onset specific to childhood and adolescence', 'ICD10_2010'), +('F94.0', 'Elective mutism', 'ICD10_2010'), +('F94.1', 'Reactive attachment disorder of childhood', 'ICD10_2010'), +('F94.2', 'Disinhibited attachment disorder of childhood', 'ICD10_2010'), +('F94.8', 'Other childhood disorders of social functioning', 'ICD10_2010'), +('F94.9', 'Childhood disorder of social functioning, unspecified', 'ICD10_2010'), +('F95', 'Tic disorders', 'ICD10_2010'), +('F95.0', 'Transient tic disorder', 'ICD10_2010'), +('F95.1', 'Chronic motor or vocal tic disorder', 'ICD10_2010'), +('F95.2', 'Combined vocal multiple motor tic disorder [de la tourette]', 'ICD10_2010'), +('F95.8', 'Other tic disorders', 'ICD10_2010'), +('F95.9', 'Tic disorder, unspecified', 'ICD10_2010'), +('F98', 'Other behavioural and emotional disorders with onset usually occurring in childhood and adolescence', 'ICD10_2010'), +('F98.0', 'Nonorganic enuresis', 'ICD10_2010'), +('F98.1', 'Nonorganic encopresis', 'ICD10_2010'), +('F98.2', 'Feeding disorder of infancy and childhood', 'ICD10_2010'), +('F98.3', 'Pica of infancy and childhood', 'ICD10_2010'), +('F98.4', 'Stereotyped movement disorders', 'ICD10_2010'), +('F98.5', 'Stuttering [stammering]', 'ICD10_2010'), +('F98.6', 'Cluttering', 'ICD10_2010'), +('F98.8', 'Other behavioral and emotional disorder onset usually ocurring childhood adolescence', 'ICD10_2010'), +('F98.9', 'Unspecified behavioral and emotional disorder onset usually ocurring childhood adolescence', 'ICD10_2010'), +('F99', 'Mental disorder, not otherwise specified', 'ICD10_2010'), +('G00', 'Bacterial meningitis, not elsewhere classified', 'ICD10_2010'), +('G00.0', 'Haemophilus meningitis', 'ICD10_2010'), +('G00.1', 'Pneumococcal meningitis', 'ICD10_2010'), +('G00.2', 'Streptococcal meningitis', 'ICD10_2010'), +('G00.3', 'Staphylococcal meningitis', 'ICD10_2010'), +('G00.8', 'Other bacterial meningitis', 'ICD10_2010'), +('G00.9', 'Bacterial meningitis, unspecified', 'ICD10_2010'), +('G01', 'Meningitis in bacterial diseases classified elsewhere', 'ICD10_2010'), +('G02', 'Meningitis in other infectious and parasitic diseases classified elsewhere', 'ICD10_2010'), +('G02.0', 'Meningitis in viral diseases classified elsewhere', 'ICD10_2010'), +('G02.1', 'Meningitis in mycoses', 'ICD10_2010'), +('G02.8', 'Meningitis in other spec infectious and parasitic dis ec', 'ICD10_2010'), +('G03', 'Meningitis due to other and unspecified causes', 'ICD10_2010'), +('G03.0', 'Nonpyogenic meningitis', 'ICD10_2010'), +('G03.1', 'Chronic meningitis', 'ICD10_2010'), +('G03.2', 'Benign recurrent meningitis [mollaret]', 'ICD10_2010'), +('G03.8', 'Meningitis due to other specified causes', 'ICD10_2010'), +('G03.9', 'Meningitis, unspecified', 'ICD10_2010'), +('G04', 'Encephalitis, myelitis and encephalomyelitis', 'ICD10_2010'), +('G04.0', 'Acute disseminated encephalitis', 'ICD10_2010'), +('G04.1', 'Tropical spastic paraplegia', 'ICD10_2010'), +('G04.2', 'Bacterial meningoencephalitis and meningomyelitis nec', 'ICD10_2010'), +('G04.8', 'Other encephalitis, myelitis and encephalomyelitis', 'ICD10_2010'), +('G04.9', 'Encephalitis, myelitis and encephalomyelitis, unspecified', 'ICD10_2010'), +('G05', 'Encephalitis, myelitis and encephalomyelitis in diseases classified elsewhere', 'ICD10_2010'), +('G05.0', 'Encephalitis, myelitis & encephalomyelitis in bacterial disease classified elsewhere', 'ICD10_2010'), +('G05.1', 'Encephalitis, myelitis & encephalomyelitis in viral disease classified elsewhere', 'ICD10_2010'), +('G05.2', 'Encephalitis myelitis encphlomyelitis infectious and parasitic disease classified elsewhere', 'ICD10_2010'), +('G05.8', 'Encephalitis, myelitis & encephalomyelitis in other disease classified elsewhere', 'ICD10_2010'), +('G06', 'Intracranial and intraspinal abscess and granuloma', 'ICD10_2010'), +('G06.0', 'Intracranial abscess and granuloma', 'ICD10_2010'), +('G06.1', 'Intraspinal abscess and granuloma', 'ICD10_2010'), +('G06.2', 'Extradural and subdural abscess, unspecified', 'ICD10_2010'), +('G07', 'Intracranial and intraspinal abscess and granuloma disease classified elsewhere', 'ICD10_2010'), +('G08', 'Intracranial and intraspinal phlebitis and thrombophlebitis', 'ICD10_2010'), +('G09', 'Sequelae of inflammatory diseases of central nervous system', 'ICD10_2010'), +('G10', 'Huntington\'s disease', 'ICD10_2010'), +('G11', 'Hereditary ataxia', 'ICD10_2010'), +('G11.0', 'Congenital nonprogressive ataxia', 'ICD10_2010'), +('G11.1', 'Early-onset cerebellar ataxia', 'ICD10_2010'), +('G11.2', 'Late-onset cerebellar ataxia', 'ICD10_2010'), +('G11.3', 'Cerebellar ataxia with defective dna repair', 'ICD10_2010'), +('G11.4', 'Hereditary spastic paraplegia', 'ICD10_2010'), +('G11.8', 'Other hereditary ataxias', 'ICD10_2010'), +('G11.9', 'Hereditary ataxia, unspecified', 'ICD10_2010'), +('G12', 'Spinal muscular atrophy and related syndromes', 'ICD10_2010'), +('G12.0', 'Infantile spinal muscular atrophy, type i [werdnig-hoffman]', 'ICD10_2010'), +('G12.1', 'Other inherited spinal muscular atrophy', 'ICD10_2010'), +('G12.2', 'Motor neuron disease', 'ICD10_2010'), +('G12.8', 'Other spinal muscular atrophies and related syndromes', 'ICD10_2010'), +('G12.9', 'Spinal muscular atrophy, unspecified', 'ICD10_2010'), +('G13', 'Systemic atrophies primarily affecting central nervous system in diseases classified elsewhere', 'ICD10_2010'), +('G13.0', 'Paraneoplastic neuromyopathy and neuropathy', 'ICD10_2010'), +('G13.1', 'Other systemic atrophy primarily affect central nervous system neoplastic disease', 'ICD10_2010'), +('G13.2', 'Systemic atrophy primarily affecting central nervous system in myxoedema', 'ICD10_2010'), +('G13.8', 'Systemic atrophy primarily affecting central nervous system other disease classified elsewhere', 'ICD10_2010'), +('G14', 'Postpolio syndrome', 'ICD10_2010'), +('G20', 'Parkinson\'s disease', 'ICD10_2010'), +('G21', 'Secondary parkinsonism', 'ICD10_2010'), +('G21.0', 'Malignant neuroleptic syndrome', 'ICD10_2010'), +('G21.1', 'Other drug-induced secondary parkinsonism', 'ICD10_2010'), +('G21.2', 'Secondary parkinsonism due to other external agents', 'ICD10_2010'), +('G21.3', 'Postencephalitic parkinsonism', 'ICD10_2010'), +('G21.4', 'Vascular parkinsonism', 'ICD10_2010'), +('G21.8', 'Other secondary parkinsonism', 'ICD10_2010'), +('G21.9', 'Secondary parkinsonism, unspecified', 'ICD10_2010'), +('G22', 'Parkinsonism in diseases classified elsewhere', 'ICD10_2010'), +('G23', 'Other degenerative diseases of basal ganglia', 'ICD10_2010'), +('G23.0', 'Hallervorden-Spatz disease', 'ICD10_2010'), +('G23.1', 'Progressive supranuclear ophthalmoplegia', 'ICD10_2010'), +('G23.2', 'Striatonigral degeneration', 'ICD10_2010'), +('G23.8', 'Other specified degenerative diseases of basal ganglia', 'ICD10_2010'), +('G23.9', 'Degenerative disease of basal ganglia, unspecified', 'ICD10_2010'), +('G24', 'Dystonia', 'ICD10_2010'), +('G24.0', 'Drug-induced dystonia', 'ICD10_2010'), +('G24.1', 'Idiopathic familial dystonia', 'ICD10_2010'), +('G24.2', 'Idiopathic nonfamilial dystonia', 'ICD10_2010'), +('G24.3', 'Spasmodic torticollis', 'ICD10_2010'), +('G24.4', 'Idiopathic orofacial dystonia', 'ICD10_2010'), +('G24.5', 'Blepharospasm', 'ICD10_2010'), +('G24.8', 'Other dystonia', 'ICD10_2010'), +('G24.9', 'Dystonia, unspecified', 'ICD10_2010'), +('G25', 'Other extrapyramidal and movement disorders', 'ICD10_2010'), +('G25.0', 'Essential tremor', 'ICD10_2010'), +('G25.1', 'Drug-induced tremor', 'ICD10_2010'), +('G25.2', 'Other specified forms of tremor', 'ICD10_2010'), +('G25.3', 'Myoclonus', 'ICD10_2010'), +('G25.4', 'Drug-induced chorea', 'ICD10_2010'), +('G25.5', 'Other chorea', 'ICD10_2010'), +('G25.6', 'Drug-induced tics and other tics of organic origin', 'ICD10_2010'), +('G25.8', 'Other specified extrapyramidal and movement disorders', 'ICD10_2010'), +('G25.9', 'Extrapyramidal and movement disorder, unspecified', 'ICD10_2010'), +('G26', 'Extrapyramidal and movement disorders in disease classified elsewhere', 'ICD10_2010'), +('G30', 'Alzheimer disease', 'ICD10_2010'), +('G30.0', 'Alzheimer\'s disease with early onset', 'ICD10_2010'), +('G30.1', 'Alzheimer\'s disease with late onset', 'ICD10_2010'), +('G30.8', 'Other alzheimer\'s disease', 'ICD10_2010'), +('G30.9', 'Alzheimer\'s disease, unspecified', 'ICD10_2010'), +('G31', 'Other degenerative diseases of nervous system, not elsewhere classified', 'ICD10_2010'), +('G31.0', 'Circumscribed brain atrophy', 'ICD10_2010'), +('G31.1', 'Senile degeneration of brain, not elsewhere classified', 'ICD10_2010'), +('G31.2', 'Degeneration of nervous system due to alcohol', 'ICD10_2010'), +('G31.8', 'Other specified degenerative diseases of nervous system', 'ICD10_2010'), +('G31.9', 'Degenerative disease of nervous system, unspecified', 'ICD10_2010'), +('G32', 'Other degenerative disorders of nervous system in diseases classified elsewhere', 'ICD10_2010'), +('G32.0', 'Subacute combined degeneration of spinal cord in dis ec', 'ICD10_2010'), +('G32.8', 'Other spec degenerative disorders of nervous system dis ec', 'ICD10_2010'), +('G35', 'Multiple sclerosis', 'ICD10_2010'), +('G36', 'Other acute disseminated demyelination', 'ICD10_2010'), +('G36.0', 'Neuromyelitis optica [devic]', 'ICD10_2010'), +('G36.1', 'Acute and subacute haemorrhagic leukoencephalitis [hurst]', 'ICD10_2010'), +('G36.8', 'Other specified acute disseminated demyelination', 'ICD10_2010'), +('G36.9', 'Acute disseminated demyelination, unspecified', 'ICD10_2010'), +('G37', 'Other demyelinating diseases of central nervous system', 'ICD10_2010'), +('G37.0', 'Diffuse sclerosis', 'ICD10_2010'), +('G37.1', 'Central demyelination of corpus callosum', 'ICD10_2010'), +('G37.2', 'Central pontine myelinolysis', 'ICD10_2010'), +('G37.3', 'Acute transverse myelitis in demyelinating disease of cns', 'ICD10_2010'), +('G37.4', 'Subacute necrotizing myelitis', 'ICD10_2010'), +('G37.5', 'Concentric sclerosis [bal-]', 'ICD10_2010'), +('G37.8', 'Other spec demyelinating diseases of central nervous system', 'ICD10_2010'), +('G37.9', 'Demyelinating disease of central nervous system, unspecified', 'ICD10_2010'), +('G40', 'Epilepsy', 'ICD10_2010'), +('G40.0', 'Localization-related(focal)(partial)idiopathic epilepsy / epileptic syndromes seizures localized onset', 'ICD10_2010'), +('G40.1', 'Localization-related(focal)(partial)idiopathic epilepsy / epileptic syndromes with simple partial seizures', 'ICD10_2010'), +('G40.2', 'Localization-related(focal)(partial)idiopathic epilepsy / epileptic syndromes with complex partial seizures', 'ICD10_2010'), +('G40.3', 'Generalized idiopathic epilepsy and epileptic syndromes', 'ICD10_2010'), +('G40.4', 'Other generalized epilepsy and epileptic syndromes', 'ICD10_2010'), +('G40.5', 'Special epileptic syndromes', 'ICD10_2010'), +('G40.6', 'Grand mal seizures, unspecified (with or without petit mal)', 'ICD10_2010'); +INSERT INTO `icd10` (`ID_ICD10`, `Diagnosa`, `Versi_ICD10`) VALUES +('G40.7', 'Petit mal, unspecified, without grand mal seizures', 'ICD10_2010'), +('G40.8', 'Other epilepsy', 'ICD10_2010'), +('G40.9', 'Epilepsy, unspecified', 'ICD10_2010'), +('G41', 'Status epilepticus', 'ICD10_2010'), +('G41.0', 'Grand mal status epilepticus', 'ICD10_2010'), +('G41.1', 'Petit mal status epilepticus', 'ICD10_2010'), +('G41.2', 'Complex partial status epilepticus', 'ICD10_2010'), +('G41.8', 'Other status epilepticus', 'ICD10_2010'), +('G41.9', 'Status epilepticus, unspecified', 'ICD10_2010'), +('G43', 'Migraine', 'ICD10_2010'), +('G43.0', 'Migraine without aura [common migraine]', 'ICD10_2010'), +('G43.1', 'Migraine with aura [classical migraine]', 'ICD10_2010'), +('G43.2', 'Status migrainosus', 'ICD10_2010'), +('G43.3', 'Complicated migraine', 'ICD10_2010'), +('G43.8', 'Other migraine', 'ICD10_2010'), +('G43.9', 'Migraine, unspecified', 'ICD10_2010'), +('G44', 'Other headache syndromes', 'ICD10_2010'), +('G44.0', 'Cluster headache syndrome', 'ICD10_2010'), +('G44.1', 'Vascular headache, not elsewhere classified', 'ICD10_2010'), +('G44.2', 'Tension-type headache', 'ICD10_2010'), +('G44.3', 'Chronic post-traumatic headache', 'ICD10_2010'), +('G44.4', 'Drug-induced headache, not elsewhere classified', 'ICD10_2010'), +('G44.8', 'Other specified headache syndromes', 'ICD10_2010'), +('G45', 'Transient cerebral ischaemic attacks and related syndromes', 'ICD10_2010'), +('G45.0', 'Vertebro-basilar artery syndrome', 'ICD10_2010'), +('G45.1', 'Carotid artery syndrome (hemispheric)', 'ICD10_2010'), +('G45.2', 'Multiple and bilateral precerebral artery syndromes', 'ICD10_2010'), +('G45.3', 'Amaurosis fugax', 'ICD10_2010'), +('G45.4', 'Transient global amnesia', 'ICD10_2010'), +('G45.8', 'Other transient cerebral ischaemic attacks and related synd', 'ICD10_2010'), +('G45.9', 'Transient cerebral ischaemic attack, unspecified', 'ICD10_2010'), +('G46', 'Vascular syndromes of brain in cerebrovascular diseases', 'ICD10_2010'), +('G46.0', 'Middle cerebral artery syndrome', 'ICD10_2010'), +('G46.1', 'Anterior cerebral artery syndrome', 'ICD10_2010'), +('G46.2', 'Posterior cerebral artery syndrome', 'ICD10_2010'), +('G46.3', 'Brain stem stroke syndrome', 'ICD10_2010'), +('G46.4', 'Cerebellar stroke syndrome', 'ICD10_2010'), +('G46.5', 'Pure motor lacunar syndrome', 'ICD10_2010'), +('G46.6', 'Pure sensory lacunar syndrome', 'ICD10_2010'), +('G46.7', 'Other lacunar syndromes', 'ICD10_2010'), +('G46.8', 'Other vascular syndromes of brain in cerebrovascular disease', 'ICD10_2010'), +('G47', 'Sleep disorders', 'ICD10_2010'), +('G47.0', 'Disorders of initiating and maintaining sleep [insomnias]', 'ICD10_2010'), +('G47.1', 'Disorders of excessive somnolence [hypersomnias]', 'ICD10_2010'), +('G47.2', 'Disorders of the sleep-wake schedule', 'ICD10_2010'), +('G47.3', 'Sleep apnoea', 'ICD10_2010'), +('G47.4', 'Narcolepsy and cataplexy', 'ICD10_2010'), +('G47.8', 'Other sleep disorders', 'ICD10_2010'), +('G47.9', 'Sleep disorder, unspecified', 'ICD10_2010'), +('G50', 'Disorders of trigeminal nerve', 'ICD10_2010'), +('G50.0', 'Trigeminal neuralgia', 'ICD10_2010'), +('G50.1', 'Atypical facial pain', 'ICD10_2010'), +('G50.8', 'Other disorders of trigeminal nerve', 'ICD10_2010'), +('G50.9', 'Disorder of trigeminal nerve, unspecified', 'ICD10_2010'), +('G51', 'Facial nerve disorders', 'ICD10_2010'), +('G51.0', 'Bell\'s palsy', 'ICD10_2010'), +('G51.1', 'Geniculate ganglionitis', 'ICD10_2010'), +('G51.2', 'Melkersson\'s syndrome', 'ICD10_2010'), +('G51.3', 'Clonic hemifacial spasm', 'ICD10_2010'), +('G51.4', 'Facial myokymia', 'ICD10_2010'), +('G51.8', 'Other disorders of facial nerve', 'ICD10_2010'), +('G51.9', 'Disorder of facial nerve, unspecified', 'ICD10_2010'), +('G52', 'Disorders of other cranial nerves', 'ICD10_2010'), +('G52.0', 'Disorders of olfactory nerve', 'ICD10_2010'), +('G52.1', 'Disorders of glossopharyngeal nerve', 'ICD10_2010'), +('G52.2', 'Disorders of vagus nerve', 'ICD10_2010'), +('G52.3', 'Disorders of hypoglossal nerve', 'ICD10_2010'), +('G52.7', 'Disorders of multiple cranial nerves', 'ICD10_2010'), +('G52.8', 'Disorders of other specified cranial nerves', 'ICD10_2010'), +('G52.9', 'Cranial nerve disorder, unspecified', 'ICD10_2010'), +('G53', 'Cranial nerve disorders in diseases classified elsewhere', 'ICD10_2010'), +('G53.0', 'Postzoster neuralgia', 'ICD10_2010'), +('G53.1', 'Multiple cranial nerve palsies in infectious & parasit disease classified elsewhere', 'ICD10_2010'), +('G53.2', 'Multiple cranial nerve palsies in sarcoidosis', 'ICD10_2010'), +('G53.3', 'Multiple cranial nerve palsies in neoplastic disease', 'ICD10_2010'), +('G53.8', 'Other cranial nerve disorders in other disease classified elsewhere', 'ICD10_2010'), +('G54', 'Nerve root and plexus disorders', 'ICD10_2010'), +('G54.0', 'Brachial plexus disorders', 'ICD10_2010'), +('G54.1', 'Lumbosacral plexus disorders', 'ICD10_2010'), +('G54.2', 'Cervical root disorders, not elsewhere classified', 'ICD10_2010'), +('G54.3', 'Thoracic root disorders, not elsewhere classified', 'ICD10_2010'), +('G54.4', 'Lumbosacral root disorders, not elsewhere classified', 'ICD10_2010'), +('G54.5', 'Neuralgic amyotrophy', 'ICD10_2010'), +('G54.6', 'Phantom limb syndrome with pain', 'ICD10_2010'), +('G54.7', 'Phantom limb syndrome without pain', 'ICD10_2010'), +('G54.8', 'Other nerve root and plexus disorders', 'ICD10_2010'), +('G54.9', 'Nerve root and plexus disorder, unspecified', 'ICD10_2010'), +('G55', 'Nerve root and plexus compressions in diseases classified elsewhere', 'ICD10_2010'), +('G55.0', 'Nerve root and plexus compressions in neoplastic disease', 'ICD10_2010'), +('G55.1', 'Nerve root and plexus compressions in intravert disc disord', 'ICD10_2010'), +('G55.2', 'Nerve root and plexus compressions in spondylosis', 'ICD10_2010'), +('G55.3', 'Nerve root and plexus compressions in oth dorsopathies', 'ICD10_2010'), +('G55.8', 'Nerve root and plexus compressions in other disease classified elsewhere', 'ICD10_2010'), +('G56', 'Mononeuropathies of upper limb', 'ICD10_2010'), +('G56.0', 'Carpal tunnel syndrome', 'ICD10_2010'), +('G56.1', 'Other lesions of median nerve', 'ICD10_2010'), +('G56.2', 'Lesion of ulnar nerve', 'ICD10_2010'), +('G56.3', 'Lesion of radial nerve', 'ICD10_2010'), +('G56.4', 'Causalgia', 'ICD10_2010'), +('G56.8', 'Other mononeuropathies of upper limb', 'ICD10_2010'), +('G56.9', 'Mononeuropathy of upper limb, unspecified', 'ICD10_2010'), +('G57', 'Mononeuropathies of lower limb', 'ICD10_2010'), +('G57.0', 'Lesion of sciatic nerve', 'ICD10_2010'), +('G57.1', 'Meralgia paraesthetica', 'ICD10_2010'), +('G57.2', 'Lesion of femoral nerve', 'ICD10_2010'), +('G57.3', 'Lesion of lateral popliteal nerve', 'ICD10_2010'), +('G57.4', 'Lesion of medial popliteal nerve', 'ICD10_2010'), +('G57.5', 'Tarsal tunnel syndrome', 'ICD10_2010'), +('G57.6', 'Lesion of plantar nerve', 'ICD10_2010'), +('G57.8', 'Other mononeuropathies of lower limb', 'ICD10_2010'), +('G57.9', 'Mononeuropathy of lower limb, unspecified', 'ICD10_2010'), +('G58', 'Other mononeuropathies', 'ICD10_2010'), +('G58.0', 'Intercostal neuropathy', 'ICD10_2010'), +('G58.7', 'Mononeuritis multiplex', 'ICD10_2010'), +('G58.8', 'Other specified mononeuropathies', 'ICD10_2010'), +('G58.9', 'Mononeuropathy, unspecified', 'ICD10_2010'), +('G59', 'Mononeuropathy in diseases classified elsewhere', 'ICD10_2010'), +('G59.0', 'Diabetic mononeuropathy', 'ICD10_2010'), +('G59.8', 'Other mononeuropathies in diseases classified elsewhere', 'ICD10_2010'), +('G60', 'Hereditary and idiopathic neuropathy', 'ICD10_2010'), +('G60.0', 'Hereditary motor and sensory neuropathy', 'ICD10_2010'), +('G60.1', 'Refsum\'s disease', 'ICD10_2010'), +('G60.2', 'Neuropathy in association with hereditary ataxia', 'ICD10_2010'), +('G60.3', 'Idiopathic progressive neuropathy', 'ICD10_2010'), +('G60.8', 'Other hereditary and idiopathic neuropathies', 'ICD10_2010'), +('G60.9', 'Hereditary and idiopathic neuropathy, unspecified', 'ICD10_2010'), +('G61', 'Inflammatory polyneuropathy', 'ICD10_2010'), +('G61.0', 'Guillain-barre syndrome', 'ICD10_2010'), +('G61.1', 'Serum neuropathy', 'ICD10_2010'), +('G61.8', 'Other inflammatory polyneuropathies', 'ICD10_2010'), +('G61.9', 'Inflammatory polyneuropathy, unspecified', 'ICD10_2010'), +('G62', 'Other polyneuropathies', 'ICD10_2010'), +('G62.0', 'Drug-induced polyneuropathy', 'ICD10_2010'), +('G62.1', 'Alcoholic polyneuropathy', 'ICD10_2010'), +('G62.2', 'Polyneuropathy due to other toxic agents', 'ICD10_2010'), +('G62.8', 'Other specified polyneuropathies', 'ICD10_2010'), +('G62.9', 'Polyneuropathy, unspecified', 'ICD10_2010'), +('G63', 'Polyneuropathy in diseases classified elsewhere', 'ICD10_2010'), +('G63.0', 'Polyneuropathy in infectious and parasitic disease classified elsewhere', 'ICD10_2010'), +('G63.1', 'Polyneuropathy in neoplastic disease', 'ICD10_2010'), +('G63.2', 'Diabetic polyneuropathy', 'ICD10_2010'), +('G63.3', 'Polyneuropathy in other endocrine and metabolic diseases', 'ICD10_2010'), +('G63.4', 'Polyneuropathy in nutritional deficiency', 'ICD10_2010'), +('G63.5', 'Polyneuropathy in systemic connective tissue disorders', 'ICD10_2010'), +('G63.6', 'Polyneuropathy in other musculoskeletal disorders', 'ICD10_2010'), +('G63.8', 'Polyneuropathy in other diseases classified elsewhere', 'ICD10_2010'), +('G64', 'Other disorders of peripheral nervous system', 'ICD10_2010'), +('G70', 'Myasthenia gravis and other myoneural disorders', 'ICD10_2010'), +('G70.0', 'Myasthenia gravis', 'ICD10_2010'), +('G70.1', 'Toxic myoneural disorders', 'ICD10_2010'), +('G70.2', 'Congenital and developmental myasthenia', 'ICD10_2010'), +('G70.8', 'Other specified myoneural disorders', 'ICD10_2010'), +('G70.9', 'Myoneural disorder, unspecified', 'ICD10_2010'), +('G71', 'Primary disorders of muscles', 'ICD10_2010'), +('G71.0', 'Muscular dystrophy', 'ICD10_2010'), +('G71.1', 'Myotonic disorders', 'ICD10_2010'), +('G71.2', 'Congenital myopathies', 'ICD10_2010'), +('G71.3', 'Mitochondrial myopathy, not elsewhere classified', 'ICD10_2010'), +('G71.8', 'Other primary disorders of muscles', 'ICD10_2010'), +('G71.9', 'Primary disorder of muscle, unspecified', 'ICD10_2010'), +('G72', 'Other myopathies', 'ICD10_2010'), +('G72.0', 'Drug-induced myopathy', 'ICD10_2010'), +('G72.1', 'Alcoholic myopathy', 'ICD10_2010'), +('G72.2', 'Myopathy due to other toxic agents', 'ICD10_2010'), +('G72.3', 'Periodic paralysis', 'ICD10_2010'), +('G72.4', 'Inflammatory myopathy, not elsewhere classified', 'ICD10_2010'), +('G72.8', 'Other specified myopathies', 'ICD10_2010'), +('G72.9', 'Myopathy, unspecified', 'ICD10_2010'), +('G73', 'Disorders of myoneural junction and muscle in diseases classified elsewhere', 'ICD10_2010'), +('G73.0', 'Myasthenic syndromes in endocrine diseases', 'ICD10_2010'), +('G73.1', 'Eaton-lambert syndrome', 'ICD10_2010'), +('G73.2', 'Other myasthenic syndromes in neoplastic disease', 'ICD10_2010'), +('G73.3', 'Myasthenic syndromes in other diseases classified elsewhere', 'ICD10_2010'), +('G73.4', 'Myopathy in infectious and parasitic disease classified elsewhere', 'ICD10_2010'), +('G73.5', 'Myopathy in endocrine diseases', 'ICD10_2010'), +('G73.6', 'Myopathy in metabolic diseases', 'ICD10_2010'), +('G73.7', 'Myopathy in other diseases classified elsewhere', 'ICD10_2010'), +('G80', 'Cerebral palsy', 'ICD10_2010'), +('G80.0', 'Spastic cerebral palsy', 'ICD10_2010'), +('G80.1', 'Spastic diplegia', 'ICD10_2010'), +('G80.2', 'Infantile hemiplegia', 'ICD10_2010'), +('G80.3', 'Dyskinetic cerebral palsy', 'ICD10_2010'), +('G80.4', 'Ataxic cerebral palsy', 'ICD10_2010'), +('G80.8', 'Other infantile cerebral palsy', 'ICD10_2010'), +('G80.9', 'Infantile cerebral palsy, unspecified', 'ICD10_2010'), +('G81', 'Hemiplegia', 'ICD10_2010'), +('G81.0', 'Flaccid hemiplegia', 'ICD10_2010'), +('G81.1', 'Spastic hemiplegia', 'ICD10_2010'), +('G81.9', 'Hemiplegia, unspecified', 'ICD10_2010'), +('G82', 'Paraplegia and tetraplegia', 'ICD10_2010'), +('G82.0', 'Flaccid paraplegia', 'ICD10_2010'), +('G82.1', 'Spastic paraplegia', 'ICD10_2010'), +('G82.2', 'Paraplegia, unspecified', 'ICD10_2010'), +('G82.3', 'Flaccid tetraplegia', 'ICD10_2010'), +('G82.4', 'Spastic tetraplegia', 'ICD10_2010'), +('G82.5', 'Tetraplegia, unspecified', 'ICD10_2010'), +('G83', 'Other paralytic syndromes', 'ICD10_2010'), +('G83.0', 'Diplegia of upper limbs', 'ICD10_2010'), +('G83.1', 'Monoplegia of lower limb', 'ICD10_2010'), +('G83.2', 'Monoplegia of upper limb', 'ICD10_2010'), +('G83.3', 'Monoplegia, unspecified', 'ICD10_2010'), +('G83.4', 'Cauda equina syndrome', 'ICD10_2010'), +('G83.8', 'Other specified paralytic syndromes', 'ICD10_2010'), +('G83.9', 'Paralytic syndrome, unspecified', 'ICD10_2010'), +('G90', 'Disorders of autonomic nervous system', 'ICD10_2010'), +('G90.0', 'Idiopathic peripheral autonomic neuropathy', 'ICD10_2010'), +('G90.1', 'Familial dysautonomia [riley-day]', 'ICD10_2010'), +('G90.2', 'Horner\'s syndrome', 'ICD10_2010'), +('G90.3', 'Multi-system degeneration', 'ICD10_2010'), +('G90.4', 'Autonomic dysreflexia', 'ICD10_2010'), +('G90.8', 'Other disorders of autonomic nervous system', 'ICD10_2010'), +('G90.9', 'Disorder of autonomic nervous system, unspecified', 'ICD10_2010'), +('G91', 'Hydrocephalus', 'ICD10_2010'), +('G91.0', 'Communicating hydrocephalus', 'ICD10_2010'), +('G91.1', 'Obstructive hydrocephalus', 'ICD10_2010'), +('G91.2', 'Normal-pressure hydrocephalus', 'ICD10_2010'), +('G91.3', 'Post-traumatic hydrocephalus, unspecified', 'ICD10_2010'), +('G91.8', 'Other hydrocephalus', 'ICD10_2010'), +('G91.9', 'Hydrocephalus, unspecified', 'ICD10_2010'), +('G92', 'Toxic encephalopathy', 'ICD10_2010'), +('G93', 'Other disorders of brain', 'ICD10_2010'), +('G93.0', 'Cerebral cysts', 'ICD10_2010'), +('G93.1', 'Anoxic brain damage, not elsewhere classified', 'ICD10_2010'), +('G93.2', 'Benign intracranial hypertension', 'ICD10_2010'), +('G93.3', 'Postviral fatigue syndrome', 'ICD10_2010'), +('G93.4', 'Encephalopathy, unspecified', 'ICD10_2010'), +('G93.5', 'Compression of brain', 'ICD10_2010'), +('G93.6', 'Cerebral oedema', 'ICD10_2010'), +('G93.7', 'Reye\'s syndrome', 'ICD10_2010'), +('G93.8', 'Other specified disorders of brain', 'ICD10_2010'), +('G93.9', 'Disorder of brain, unspecified', 'ICD10_2010'), +('G94', 'Other disorders of brain in diseases classified elsewhere', 'ICD10_2010'), +('G94.0', 'Hydrocephalus in infectious and parasitic disease classified elsewhere', 'ICD10_2010'), +('G94.1', 'Hydrocephalus in neoplastic disease', 'ICD10_2010'), +('G94.2', 'Hydrocephalus in other diseases classified elsewhere', 'ICD10_2010'), +('G94.8', 'Other specified disorders of brain in disease classified elsewhere', 'ICD10_2010'), +('G95', 'Other diseases of spinal cord', 'ICD10_2010'), +('G95.0', 'Syringomyelia and syringobulbia', 'ICD10_2010'), +('G95.1', 'Vascular myelopathies', 'ICD10_2010'), +('G95.2', 'Cord compression, unspecified', 'ICD10_2010'), +('G95.8', 'Other specified diseases of spinal cord', 'ICD10_2010'), +('G95.9', 'Disease of spinal cord, unspecified', 'ICD10_2010'), +('G96', 'Other disorders of central nervous system', 'ICD10_2010'), +('G96.0', 'Cerebrospinal fluid leak', 'ICD10_2010'), +('G96.1', 'Disorders of meninges, not elsewhere classified', 'ICD10_2010'), +('G96.8', 'Other specified disorders of central nervous system', 'ICD10_2010'), +('G96.9', 'Disorder of central nervous system, unspecified', 'ICD10_2010'), +('G97', 'Postprocedural disorders of nervous system, not elsewhere classified', 'ICD10_2010'), +('G97.0', 'Cerebrospinal fluid leak from spinal puncture', 'ICD10_2010'), +('G97.1', 'Other reaction to spinal and lumbar puncture', 'ICD10_2010'), +('G97.2', 'Intracranial hypotension following ventricular shunting', 'ICD10_2010'), +('G97.8', 'Other postprocedural disorders of nervous system', 'ICD10_2010'), +('G97.9', 'Postprocedural disorder of nervous system, unspecified', 'ICD10_2010'), +('G98', 'Other disorders of nervous system, not elsewhere classified', 'ICD10_2010'), +('G99', 'Other disorders of nervous system in diseases classified elsewhere', 'ICD10_2010'), +('G99.0', 'Autonomic neuropathy in endocrine and metabolic diseases', 'ICD10_2010'), +('G99.1', 'Other disorders of autonomic nervous system in other disease classified elsewhere', 'ICD10_2010'), +('G99.2', 'Myelopathy in diseases classified elsewhere', 'ICD10_2010'), +('G99.8', 'Other specified disorders of nervous system in diseases ec', 'ICD10_2010'), +('H00', 'Hordeolum and chalazion', 'ICD10_2010'), +('H00.0', 'Hordeolum and other deep inflammation of eyelid', 'ICD10_2010'), +('H00.1', 'Chalazion', 'ICD10_2010'), +('H01', 'Other inflammation of eyelid', 'ICD10_2010'), +('H01.0', 'Blepharitis', 'ICD10_2010'), +('H01.1', 'Noninfectious dermatoses of eyelid', 'ICD10_2010'), +('H01.8', 'Other specified inflammation of eyelid', 'ICD10_2010'), +('H01.9', 'Inflammation of eyelid, unspecified', 'ICD10_2010'), +('H02', 'Other disorders of eyelid', 'ICD10_2010'), +('H02.0', 'Entropion and trichiasis of eyelid', 'ICD10_2010'), +('H02.1', 'Ectropion of eyelid', 'ICD10_2010'), +('H02.2', 'Lagophthalmos', 'ICD10_2010'), +('H02.3', 'Blepharochalasis', 'ICD10_2010'), +('H02.4', 'Ptosis of eyelid', 'ICD10_2010'), +('H02.5', 'Other disorders affecting eyelid function', 'ICD10_2010'), +('H02.6', 'Xanthelasma of eyelid', 'ICD10_2010'), +('H02.7', 'Other degenerative disorders of eyelid and periocular area', 'ICD10_2010'), +('H02.8', 'Other specified disorders of eyelid', 'ICD10_2010'), +('H02.9', 'Disorder of eyelid, unspecified', 'ICD10_2010'), +('H03', 'Disorders of eyelid in diseases classified elsewhere', 'ICD10_2010'), +('H03.0', 'Parasitic infestation of eyelid in diseases classified', 'ICD10_2010'), +('H03.1', 'Involvement of eyelid in other infectious diseases classified elsewhere', 'ICD10_2010'), +('H03.8', 'Involvement of eyelid in other diseases classified elsewhere', 'ICD10_2010'), +('H04', 'Disorders of lacrimal system', 'ICD10_2010'), +('H04.0', 'Dacryoadenitis', 'ICD10_2010'), +('H04.1', 'Other disorders of lacrimal gland', 'ICD10_2010'), +('H04.2', 'Epiphora', 'ICD10_2010'), +('H04.3', 'Acute and unspecified inflammation of lacrimal passages', 'ICD10_2010'), +('H04.4', 'Chronic inflammation of lacrimal passages', 'ICD10_2010'), +('H04.5', 'Stenosis and insufficiency of lacrimal passages', 'ICD10_2010'), +('H04.6', 'Other changes in lacrimal passages', 'ICD10_2010'), +('H04.8', 'Other disorders of lacrimal system', 'ICD10_2010'), +('H04.9', 'Disorder of lacrimal system, unspecified', 'ICD10_2010'), +('H05', 'Disorders of orbit', 'ICD10_2010'), +('H05.0', 'Acute inflammation of orbit', 'ICD10_2010'), +('H05.1', 'Chronic inflammatory disorders of orbit', 'ICD10_2010'), +('H05.2', 'Exophthalmic conditions', 'ICD10_2010'), +('H05.3', 'Deformity of orbit', 'ICD10_2010'), +('H05.4', 'Enophthalmos', 'ICD10_2010'), +('H05.5', 'Retained (old) foreign body folowing penetrating wound of orbit', 'ICD10_2010'), +('H05.8', 'Other disorders of orbit', 'ICD10_2010'), +('H05.9', 'Disorder of orbit, unspecified', 'ICD10_2010'), +('H06', 'Disorders of lacrimal system and orbit in diseases classified elsewhere', 'ICD10_2010'), +('H06.0', 'Disorders of lacrimal system in diseases classified elsewhere', 'ICD10_2010'), +('H06.1', 'Parasitic infestation of orbit in diseases classified elsewhere', 'ICD10_2010'), +('H06.2', 'Dysthyroid exophthalmos', 'ICD10_2010'), +('H06.3', 'Other disorders of orbit in diseases classified elsewhere', 'ICD10_2010'), +('H10', 'Conjunctivitis', 'ICD10_2010'), +('H10.0', 'Mucopurulent conjunctivitis', 'ICD10_2010'), +('H10.1', 'Acute atopic conjunctivitis', 'ICD10_2010'), +('H10.2', 'Other acute conjunctivitis', 'ICD10_2010'), +('H10.3', 'Acute conjunctivitis, unspecified', 'ICD10_2010'), +('H10.4', 'Chronic conjunctivitis', 'ICD10_2010'), +('H10.5', 'Blepharoconjunctivitis', 'ICD10_2010'), +('H10.8', 'Other conjunctivitis', 'ICD10_2010'), +('H10.9', 'Conjunctivitis, unspecified', 'ICD10_2010'), +('H11', 'Other disorders of conjunctiva', 'ICD10_2010'), +('H11.0', 'Pterygium', 'ICD10_2010'), +('H11.1', 'Conjunctival degenerations and deposits', 'ICD10_2010'), +('H11.2', 'Conjunctival scars', 'ICD10_2010'), +('H11.3', 'Conjunctival haemorrhage', 'ICD10_2010'), +('H11.4', 'Other conjunctival vascular disorders and cysts', 'ICD10_2010'), +('H11.8', 'Other specified disorders of conjunctiva', 'ICD10_2010'), +('H11.9', 'Disorder of conjunctiva, unspecified', 'ICD10_2010'), +('H13', 'Disorders of conjunctiva in diseases classified elsewhere', 'ICD10_2010'), +('H13.0', 'Filarial infection of conjunctiva', 'ICD10_2010'), +('H13.1', 'Conjunctivitis in infectious and parasitic diseases classified elsewhere', 'ICD10_2010'), +('H13.2', 'Conjunctivitis in other diseases classified elsewhere', 'ICD10_2010'), +('H13.3', 'Ocular pemphigoid', 'ICD10_2010'), +('H13.8', 'Other disorders of conjunctiva in diseases classified elsewhere', 'ICD10_2010'), +('H15', 'Disorders of sclera', 'ICD10_2010'), +('H15.0', 'Scleritis', 'ICD10_2010'), +('H15.1', 'Episcleritis', 'ICD10_2010'), +('H15.8', 'Other disorders of sclera', 'ICD10_2010'), +('H15.9', 'Disorder of sclera, unspecified', 'ICD10_2010'), +('H16', 'Keratitis', 'ICD10_2010'), +('H16.0', 'Corneal ulcer', 'ICD10_2010'), +('H16.1', 'Other superficial keratitis without conjunctivitis', 'ICD10_2010'), +('H16.2', 'Keratoconjunctivitis', 'ICD10_2010'), +('H16.3', 'Interstitial and deep keratitis', 'ICD10_2010'), +('H16.4', 'Corneal neovascularization', 'ICD10_2010'), +('H16.8', 'Other keratitis', 'ICD10_2010'), +('H16.9', 'Keratitis, unspecified', 'ICD10_2010'), +('H17', 'Corneal scars and opacities', 'ICD10_2010'), +('H17.0', 'Adherent leukoma', 'ICD10_2010'), +('H17.1', 'Other central corneal opacity', 'ICD10_2010'), +('H17.8', 'Other corneal scars and opacities', 'ICD10_2010'), +('H17.9', 'Corneal scar and opacity, unspecified', 'ICD10_2010'), +('H18', 'Other disorders of cornea', 'ICD10_2010'), +('H18.0', 'Corneal pigmentations and deposits', 'ICD10_2010'), +('H18.1', 'Bullous keratopathy', 'ICD10_2010'), +('H18.2', 'Other corneal oedema', 'ICD10_2010'), +('H18.3', 'Changes in corneal membranes', 'ICD10_2010'), +('H18.4', 'Corneal degeneration', 'ICD10_2010'), +('H18.5', 'Hereditary corneal dystrophies', 'ICD10_2010'), +('H18.6', 'Keratoconus', 'ICD10_2010'), +('H18.7', 'Other corneal deformities', 'ICD10_2010'), +('H18.8', 'Other specified disorders of cornea', 'ICD10_2010'), +('H18.9', 'Disorder of cornea, unspecified', 'ICD10_2010'), +('H19', 'Disorders of sclera and cornea in diseases classified elsewhere', 'ICD10_2010'), +('H19.0', 'Scleritis and episcleritis in diseases classified elsewhere', 'ICD10_2010'), +('H19.1', 'Herpesviral keratitis and keratoconjunctivitis', 'ICD10_2010'), +('H19.2', 'Keratitis and keratoconjunctivitis in other infectious and parasitic disease classified elsewhere', 'ICD10_2010'), +('H19.3', 'Keratitis and keratoconjunctivitis in other diseases classified elsewhere', 'ICD10_2010'), +('H19.8', 'Other disorders of sclera and cornea in diseases classified elsewhere', 'ICD10_2010'), +('H20', 'Iridocyclitis', 'ICD10_2010'), +('H20.0', 'Acute and subacute iridocyclitis', 'ICD10_2010'), +('H20.1', 'Chronic iridocyclitis', 'ICD10_2010'), +('H20.2', 'Lens-induced iridocyclitis', 'ICD10_2010'), +('H20.8', 'Other iridocyclitis', 'ICD10_2010'), +('H20.9', 'Iridocyclitis, unspecified', 'ICD10_2010'), +('H21', 'Other disorders of iris and ciliary body', 'ICD10_2010'), +('H21.0', 'Hyphaema', 'ICD10_2010'), +('H21.1', 'Other vascular disorders of iris and ciliary body', 'ICD10_2010'), +('H21.2', 'Degeneration of iris and ciliary body', 'ICD10_2010'), +('H21.3', 'Cyst of iris, ciliary body and anterior chamber', 'ICD10_2010'), +('H21.4', 'Pupillary membranes', 'ICD10_2010'), +('H21.5', 'Other adhesions and disruptions of iris and ciliary body', 'ICD10_2010'), +('H21.8', 'Other specified disorders of iris and ciliary body', 'ICD10_2010'), +('H21.9', 'Disorder of iris and ciliary body, unspecified', 'ICD10_2010'), +('H22', 'Disorders of iris and ciliary body in diseases classified elsewhere', 'ICD10_2010'), +('H22.0', 'Iridocyclitis in infectious and parasitic diseases classified elsewhere', 'ICD10_2010'), +('H22.1', 'Iridocyclitis in other diseases classified elsewhere', 'ICD10_2010'), +('H22.8', 'Other disorders of iris and ciliary body in diseases classified elsewhere', 'ICD10_2010'), +('H25', 'Senile cataract', 'ICD10_2010'), +('H25.0', 'Senile incipient cataract', 'ICD10_2010'), +('H25.1', 'Senile nuclear cataract', 'ICD10_2010'), +('H25.2', 'Senile cataract, morgagnian type', 'ICD10_2010'), +('H25.8', 'Other senile cataract', 'ICD10_2010'), +('H25.9', 'Senile cataract, unspecified', 'ICD10_2010'), +('H26', 'Other cataract', 'ICD10_2010'), +('H26.0', 'Infantile, juvenile and presenile cataract', 'ICD10_2010'), +('H26.1', 'Traumatic cataract', 'ICD10_2010'), +('H26.2', 'Complicated cataract', 'ICD10_2010'), +('H26.3', 'Drug-induced cataract', 'ICD10_2010'), +('H26.4', 'After-cataract', 'ICD10_2010'), +('H26.8', 'Other specified cataract', 'ICD10_2010'), +('H26.9', 'Cataract, unspecified', 'ICD10_2010'), +('H27', 'Other disorders of lens', 'ICD10_2010'), +('H27.0', 'Aphakia', 'ICD10_2010'), +('H27.1', 'Dislocation of lens', 'ICD10_2010'), +('H27.8', 'Other specified disorders of lens', 'ICD10_2010'), +('H27.9', 'Disorder of lens, unspecified', 'ICD10_2010'), +('H28', 'Cataract and other disorders of lens in diseases classified elsewhere', 'ICD10_2010'), +('H28.0', 'Diabetic cataract (E10-E14 with common fourth character 3)', 'ICD10_2010'), +('H28.1', 'Cataract in other endocrine, nutritional and metabolic diseases', 'ICD10_2010'), +('H28.2', 'Cataract in other diseases classified elsewhere', 'ICD10_2010'), +('H28.8', 'Other disorders of lens in diseases classified elsewhere', 'ICD10_2010'), +('H30', 'Chorioretinal inflammation', 'ICD10_2010'), +('H30.0', 'Focal chorioretinal inflammation', 'ICD10_2010'), +('H30.1', 'Disseminated chorioretinal inflammation', 'ICD10_2010'), +('H30.2', 'Posterior cyclitis', 'ICD10_2010'), +('H30.8', 'Other chorioretinal inflammations', 'ICD10_2010'), +('H30.9', 'Chorioretinal inflammation, unspecified', 'ICD10_2010'), +('H31', 'Other disorders of choroid', 'ICD10_2010'), +('H31.0', 'Chorioretinal scars', 'ICD10_2010'), +('H31.1', 'Choroidal degeneration', 'ICD10_2010'), +('H31.2', 'Hereditary choroidal dystrophy', 'ICD10_2010'), +('H31.3', 'Choroidal haemorrhage and rupture', 'ICD10_2010'), +('H31.4', 'Choroidal detachment', 'ICD10_2010'), +('H31.8', 'Other specified disorders of choroid', 'ICD10_2010'), +('H31.9', 'Disorder of choroid, unspecified', 'ICD10_2010'), +('H32', 'Chorioretinal disorders in diseases classified elsewhere', 'ICD10_2010'), +('H32.0', 'Chorioretinal inflammation infectious and parasitic diseases classified elsewhere', 'ICD10_2010'), +('H32.8', 'Other chorioretinal disorders in diseases classified elsewhere', 'ICD10_2010'), +('H33', 'Retinal detachments and breaks', 'ICD10_2010'), +('H33.0', 'Retinal detachment with retinal break', 'ICD10_2010'), +('H33.1', 'Retinoschisis and retinal cysts', 'ICD10_2010'), +('H33.2', 'Serous retinal detachment', 'ICD10_2010'), +('H33.3', 'Retinal breaks without detachment', 'ICD10_2010'), +('H33.4', 'Traction detachment of retina', 'ICD10_2010'), +('H33.5', 'Other retinal detachments', 'ICD10_2010'), +('H34', 'Retinal vascular occlusions', 'ICD10_2010'), +('H34.0', 'Transient retinal artery occlusion', 'ICD10_2010'), +('H34.1', 'Central retinal artery occlusion', 'ICD10_2010'), +('H34.2', 'Other retinal artery occlusions', 'ICD10_2010'), +('H34.8', 'Other retinal vascular occlusions', 'ICD10_2010'), +('H34.9', 'Retinal vascular occlusion, unspecified', 'ICD10_2010'), +('H35', 'Other retinal disorders', 'ICD10_2010'), +('H35.0', 'Background retinopathy and retinal vascular changes', 'ICD10_2010'), +('H35.1', 'Retinopathy of prematurity', 'ICD10_2010'), +('H35.2', 'Other proliferative retinopathy', 'ICD10_2010'), +('H35.3', 'Degeneration of macula and posterior pole', 'ICD10_2010'), +('H35.4', 'Peripheral retinal degeneration', 'ICD10_2010'), +('H35.5', 'Hereditary retinal dystrophy', 'ICD10_2010'), +('H35.6', 'Retinal haemorrhage', 'ICD10_2010'), +('H35.7', 'Separation of retinal layers', 'ICD10_2010'), +('H35.8', 'Other specified retinal disorders', 'ICD10_2010'), +('H35.9', 'Retinal disorder, unspecified', 'ICD10_2010'), +('H36', 'Retinal disorders in diseases classified elsewhere', 'ICD10_2010'), +('H36.0', 'Diabetic retinopathy (E10-E14 with common fourth character 3)', 'ICD10_2010'), +('H36.8', 'Other retinal disorders in diseases classified elsewhere', 'ICD10_2010'), +('H40', 'Glaucoma', 'ICD10_2010'), +('H40.0', 'Glaucoma suspect', 'ICD10_2010'), +('H40.1', 'Primary open-angle glaucoma', 'ICD10_2010'), +('H40.2', 'Primary angle-closure glaucoma', 'ICD10_2010'), +('H40.3', 'Glaucoma secondary to eye trauma', 'ICD10_2010'), +('H40.4', 'Glaucoma secondary to eye inflammation', 'ICD10_2010'), +('H40.5', 'Glaucoma secondary to other eye disorders', 'ICD10_2010'), +('H40.6', 'Glaucoma secondary to drugs', 'ICD10_2010'), +('H40.8', 'Other glaucoma', 'ICD10_2010'), +('H40.9', 'Glaucoma, unspecified', 'ICD10_2010'), +('H42', 'Glaucoma in diseases classified elsewhere', 'ICD10_2010'), +('H42.0', 'Glaucoma in endocrine, nutritional and metabolic diseases', 'ICD10_2010'), +('H42.8', 'Glaucoma in other diseases classified elsewhere', 'ICD10_2010'), +('H43', 'Disorders of vitreous body', 'ICD10_2010'), +('H43.0', 'Vitreous prolapse', 'ICD10_2010'), +('H43.1', 'Vitreous haemorrhage', 'ICD10_2010'), +('H43.2', 'Crystalline deposits in vitreous body', 'ICD10_2010'), +('H43.3', 'Other vitreous opacities', 'ICD10_2010'), +('H43.8', 'Other disorders of vitreous body', 'ICD10_2010'), +('H43.9', 'Disorder of vitreous body, unspecified', 'ICD10_2010'), +('H44', 'Disorders of globe', 'ICD10_2010'), +('H44.0', 'Purulent endophthalmitis', 'ICD10_2010'), +('H44.1', 'Other endophthalmitis', 'ICD10_2010'), +('H44.2', 'Degenerative myopia', 'ICD10_2010'), +('H44.3', 'Other degenerative disorders of globe', 'ICD10_2010'), +('H44.4', 'Hypotony of eye', 'ICD10_2010'), +('H44.5', 'Degenerated conditions of globe', 'ICD10_2010'), +('H44.6', 'Retained (old) intraocular foreign body, magnetic', 'ICD10_2010'), +('H44.7', 'Retained (old) intraocular foreign body, nonmagnetic', 'ICD10_2010'), +('H44.8', 'Other disorders of globe', 'ICD10_2010'), +('H44.9', 'Disorder of globe, unspecified', 'ICD10_2010'), +('H45', 'Disorders of vitreous body and globe in diseases classified elsewhere', 'ICD10_2010'), +('H45.0', 'Vitreous haemorrhage in diseases classified elsewhere', 'ICD10_2010'), +('H45.1', 'Endophthalmitis in diseases classified elsewhere', 'ICD10_2010'), +('H45.8', 'Other disorders of vitreous body and globe in diseases classified elsewhere', 'ICD10_2010'), +('H46', 'Optic neuritis', 'ICD10_2010'), +('H47', 'Other disorders of optic [2nd] nerve and visual pathways', 'ICD10_2010'), +('H47.0', 'Disorders of optic nerve, not elsewhere classified', 'ICD10_2010'), +('H47.1', 'Papilloedema, unspecified', 'ICD10_2010'), +('H47.2', 'Optic atrophy', 'ICD10_2010'), +('H47.3', 'Other disorders of optic disc', 'ICD10_2010'), +('H47.4', 'Disorders of optic chiasm', 'ICD10_2010'), +('H47.5', 'Disorders of other visual pathways', 'ICD10_2010'), +('H47.6', 'Disorders of visual cortex', 'ICD10_2010'), +('H47.7', 'Disorder of visual pathways, unspecified', 'ICD10_2010'), +('H48', 'Disorders of optic [2nd] nerve and visual pathways in diseases classified elsewhere', 'ICD10_2010'), +('H48.0', 'Optic atrophy in diseases classified elsewhere', 'ICD10_2010'), +('H48.1', 'Retrobulbar neuritis in diseases classified elsewhere', 'ICD10_2010'), +('H48.8', 'Other disorder of optic nerve and visual pathways in diseases classified elsewhere', 'ICD10_2010'), +('H49', 'Paralytic strabismus', 'ICD10_2010'), +('H49.0', 'Third [oculomotor] nerve palsy', 'ICD10_2010'), +('H49.1', 'Fourth [trochlear] nerve palsy', 'ICD10_2010'), +('H49.2', 'Sixth [abducent] nerve palsy', 'ICD10_2010'), +('H49.3', 'Total (external) ophthalmoplegia', 'ICD10_2010'), +('H49.4', 'Progressive external ophthalmoplegia', 'ICD10_2010'), +('H49.8', 'Other paralytic strabismus', 'ICD10_2010'), +('H49.9', 'Paralytic strabismus, unspecified', 'ICD10_2010'), +('H50', 'Other strabismus', 'ICD10_2010'), +('H50.0', 'Convergent concomitant strabismus', 'ICD10_2010'), +('H50.1', 'Divergent concomitant strabismus', 'ICD10_2010'), +('H50.2', 'Vertical strabismus', 'ICD10_2010'), +('H50.3', 'Intermittent heterotropia', 'ICD10_2010'), +('H50.4', 'Other and unspecified heterotropia', 'ICD10_2010'), +('H50.5', 'Heterophoria', 'ICD10_2010'), +('H50.6', 'Mechanical strabismus', 'ICD10_2010'), +('H50.8', 'Other specified strabismus', 'ICD10_2010'), +('H50.9', 'Strabismus, unspecified', 'ICD10_2010'), +('H51', 'Other disorders of binocular movement', 'ICD10_2010'), +('H51.0', 'Palsy of conjugate gaze', 'ICD10_2010'), +('H51.1', 'Convergence insufficiency and excess', 'ICD10_2010'), +('H51.2', 'Internuclear ophthalmoplegia', 'ICD10_2010'), +('H51.8', 'Other specified disorders of binocular movement', 'ICD10_2010'), +('H51.9', 'Disorder of binocular movement, unspecified', 'ICD10_2010'), +('H52', 'Disorders of refraction and accommodation', 'ICD10_2010'), +('H52.0', 'Hypermetropia', 'ICD10_2010'), +('H52.1', 'Myopia', 'ICD10_2010'), +('H52.2', 'Astigmatism', 'ICD10_2010'), +('H52.3', 'Anisometropia and aniseikonia', 'ICD10_2010'), +('H52.4', 'Presbyopia', 'ICD10_2010'), +('H52.5', 'Disorders of accommodation', 'ICD10_2010'), +('H52.6', 'Other disorders of refraction', 'ICD10_2010'), +('H52.7', 'Disorder of refraction, unspecified', 'ICD10_2010'), +('H53', 'Visual disturbances', 'ICD10_2010'), +('H53.0', 'Amblyopia ex anopsia', 'ICD10_2010'), +('H53.1', 'Subjective visual disturbances', 'ICD10_2010'), +('H53.2', 'Diplopia', 'ICD10_2010'), +('H53.3', 'Other disorders of binocular vision', 'ICD10_2010'), +('H53.4', 'Visual field defects', 'ICD10_2010'), +('H53.5', 'Colour vision deficiencies', 'ICD10_2010'), +('H53.6', 'Night blindness', 'ICD10_2010'), +('H53.8', 'Other visual disturbances', 'ICD10_2010'), +('H53.9', 'Visual disturbance, unspecified', 'ICD10_2010'), +('H54', 'Visual impairment including blindness (binocular or monocular)', 'ICD10_2010'), +('H54.0', 'Blindness, both eyes', 'ICD10_2010'), +('H54.1', 'Blindness, one eye, low vision other eye', 'ICD10_2010'), +('H54.2', 'Low vision, both eyes', 'ICD10_2010'), +('H54.3', 'Unqualified visual loss, both eyes', 'ICD10_2010'), +('H54.4', 'Blindness, one eye', 'ICD10_2010'), +('H54.5', 'Low vision, one eye', 'ICD10_2010'), +('H54.6', 'Unqualified visual loss, one eye', 'ICD10_2010'), +('H54.7', 'Unspecified visual loss', 'ICD10_2010'), +('H54.9', 'Unspecified visual impairment (binocular)', 'ICD10_2010'), +('H55', 'Nystagmus and other irregular eye movements', 'ICD10_2010'), +('H57', 'Other disorders of eye and adnexa', 'ICD10_2010'), +('H57.0', 'Anomalies of pupillary function', 'ICD10_2010'), +('H57.1', 'Ocular pain', 'ICD10_2010'), +('H57.8', 'Other specified disorders of eye and adnexa', 'ICD10_2010'), +('H57.9', 'Disorder of eye and adnexa, unspecified', 'ICD10_2010'), +('H58', 'Other disorders of eye and adnexa in diseases classified elsewhere', 'ICD10_2010'), +('H58.0', 'Anomalies of pupillary function in diseases classified elsewhere', 'ICD10_2010'), +('H58.1', 'Visual disturbances in diseases classified elsewhere', 'ICD10_2010'), +('H58.8', 'Other specified disorders of eye and adnexa in diseases classified elsewhere', 'ICD10_2010'), +('H59', 'Postprocedural disorders of eye and adnexa, not elsewhere classified', 'ICD10_2010'), +('H59.0', 'Keratopathy (bullous aphakic) following cataract surgery', 'ICD10_2010'), +('H59.8', 'Other postprocedural disorders of eye and adnexa', 'ICD10_2010'), +('H59.9', 'Postprocedural disorder of eye and adnexa, unspecified', 'ICD10_2010'), +('H60', 'Otitis externa', 'ICD10_2010'), +('H60.0', 'Abscess of external ear', 'ICD10_2010'), +('H60.1', 'Cellulitis of external ear', 'ICD10_2010'), +('H60.2', 'Malignant otitis externa', 'ICD10_2010'), +('H60.3', 'Other infective otitis externa', 'ICD10_2010'), +('H60.4', 'Cholesteatoma of external ear', 'ICD10_2010'), +('H60.5', 'Acute otitis externa, noninfective', 'ICD10_2010'), +('H60.8', 'Other otitis externa', 'ICD10_2010'), +('H60.9', 'Otitis externa, unspecified', 'ICD10_2010'), +('H61', 'Other disorders of external ear', 'ICD10_2010'), +('H61.0', 'Perichondritis of external ear', 'ICD10_2010'), +('H61.1', 'Noninfective disorders of pinna', 'ICD10_2010'), +('H61.2', 'Impacted cerumen', 'ICD10_2010'), +('H61.3', 'Acquired stenosis of external ear canal', 'ICD10_2010'), +('H61.8', 'Other specified disorders of external ear', 'ICD10_2010'), +('H61.9', 'Disorder of external ear, unspecified', 'ICD10_2010'), +('H62', 'Disorders of external ear in diseases classified elsewhere', 'ICD10_2010'), +('H62.0', 'Otitis externa in bacterial diseases classified elsewhere', 'ICD10_2010'), +('H62.1', 'Otitis externa in viral diseases classified elsewhere', 'ICD10_2010'), +('H62.2', 'Otitis externa in mycoses', 'ICD10_2010'), +('H62.3', 'Otitis externa in oth infectious and parasitic diseases classified elsewhere', 'ICD10_2010'), +('H62.4', 'Otitis externa in other diseases classified elsewhere', 'ICD10_2010'), +('H62.8', 'Other disorders of external ear in diseases classified elsewhere', 'ICD10_2010'), +('H65', 'Nonsuppurative otitis media', 'ICD10_2010'), +('H65.0', 'Acute serous otitis media', 'ICD10_2010'), +('H65.1', 'Other acute nonsuppurative otitis media', 'ICD10_2010'), +('H65.2', 'Chronic serous otitis media', 'ICD10_2010'), +('H65.3', 'Chronic mucoid otitis media', 'ICD10_2010'), +('H65.4', 'Other chronic nonsuppurative otitis media', 'ICD10_2010'), +('H65.9', 'Nonsuppurative otitis media, unspecified', 'ICD10_2010'), +('H66', 'Suppurative and unspecified otitis media', 'ICD10_2010'), +('H66.0', 'Acute suppurative otitis media', 'ICD10_2010'), +('H66.1', 'Chronic tubotympanic suppurative otitis media', 'ICD10_2010'), +('H66.2', 'Chronic atticoantral suppurative otitis media', 'ICD10_2010'), +('H66.3', 'Other chronic suppurative otitis media', 'ICD10_2010'), +('H66.4', 'Suppurative otitis media, unspecified', 'ICD10_2010'), +('H66.9', 'Otitis media, unspecified', 'ICD10_2010'), +('H67', 'Otitis media in diseases classified elsewhere', 'ICD10_2010'), +('H67.0', 'Otitis media in bacterial diseases classified elsewhere', 'ICD10_2010'), +('H67.1', 'Otitis media in viral diseases classified elsewhere', 'ICD10_2010'), +('H67.8', 'Otitis media in other diseases classified elsewhere', 'ICD10_2010'), +('H68', 'Eustachian salpingitis and obstruction', 'ICD10_2010'), +('H68.0', 'Eustachian salpingitis', 'ICD10_2010'), +('H68.1', 'Obstruction of Eustachian tube', 'ICD10_2010'), +('H69', 'Other disorders of Eustachian tube', 'ICD10_2010'), +('H69.0', 'Patulous Eustachian tube', 'ICD10_2010'), +('H69.8', 'Other specified disorders of Eustachian tube', 'ICD10_2010'), +('H69.9', 'Eustachian tube disorder, unspecified', 'ICD10_2010'), +('H70', 'Mastoiditis and related conditions', 'ICD10_2010'), +('H70.0', 'Acute mastoiditis', 'ICD10_2010'), +('H70.1', 'Chronic mastoiditis', 'ICD10_2010'), +('H70.2', 'Petrositis', 'ICD10_2010'), +('H70.8', 'Other mastoiditis and related conditions', 'ICD10_2010'), +('H70.9', 'Mastoiditis, unspecified', 'ICD10_2010'), +('H71', 'Cholesteatoma of middle ear', 'ICD10_2010'), +('H72', 'Perforation of tympanic membrane', 'ICD10_2010'), +('H72.0', 'Central perforation of tympanic membrane', 'ICD10_2010'), +('H72.1', 'Attic perforation of tympanic membrane', 'ICD10_2010'), +('H72.2', 'Other marginal perforations of tympanic membrane', 'ICD10_2010'), +('H72.8', 'Other perforations of tympanic membrane', 'ICD10_2010'), +('H72.9', 'Perforation of tympanic membrane, unspecified', 'ICD10_2010'), +('H73', 'Other disorders of tympanic membrane', 'ICD10_2010'), +('H73.0', 'Acute myringitis', 'ICD10_2010'), +('H73.1', 'Chronic myringitis', 'ICD10_2010'), +('H73.8', 'Other specified disorders of tympanic membrane', 'ICD10_2010'), +('H73.9', 'Disorder of tympanic membrane, unspecified', 'ICD10_2010'), +('H74', 'Other disorders of middle ear and mastoid', 'ICD10_2010'), +('H74.0', 'Tympanosclerosis', 'ICD10_2010'), +('H74.1', 'Adhesive middle ear disease', 'ICD10_2010'), +('H74.2', 'Discontinuity and dislocation of ear ossicles', 'ICD10_2010'), +('H74.3', 'Other acquired abnormalities of ear ossicles', 'ICD10_2010'), +('H74.4', 'Polyp of middle ear', 'ICD10_2010'), +('H74.8', 'Other specified disorders of middle ear and mastoid', 'ICD10_2010'), +('H74.9', 'Disorder of middle ear and mastoid, unspecified', 'ICD10_2010'), +('H75', 'Other disorders of middle ear and mastoid in diseases classified elsewhere', 'ICD10_2010'), +('H75.0', 'Mastoiditis in infectious and parasitic diseases classified elsewhere', 'ICD10_2010'), +('H75.8', 'Other spec disorder of middle ear and mastoid in diseases classified elsewhere', 'ICD10_2010'), +('H80', 'Otosclerosis', 'ICD10_2010'), +('H80.0', 'Otosclerosis involving oval window, nonobliterative', 'ICD10_2010'), +('H80.1', 'Otosclerosis involving oval window, obliterative', 'ICD10_2010'), +('H80.2', 'Cochlear otosclerosis', 'ICD10_2010'), +('H80.8', 'Other otosclerosis', 'ICD10_2010'), +('H80.9', 'Otosclerosis, unspecified', 'ICD10_2010'), +('H81', 'Disorders of vestibular function', 'ICD10_2010'), +('H81.0', 'Meniere\'s disease', 'ICD10_2010'), +('H81.1', 'Benign paroxysmal vertigo', 'ICD10_2010'), +('H81.2', 'Vestibular neuronitis', 'ICD10_2010'), +('H81.3', 'Other peripheral vertigo', 'ICD10_2010'), +('H81.4', 'Vertigo of central origin', 'ICD10_2010'), +('H81.8', 'Other disorders of vestibular function', 'ICD10_2010'), +('H81.9', 'Disorder of vestibular function, unspecified', 'ICD10_2010'), +('H82', 'Vertiginous syndromes in diseases classified elsewhere', 'ICD10_2010'), +('H83', 'Other diseases of inner ear', 'ICD10_2010'), +('H83.0', 'Labyrinthitis', 'ICD10_2010'), +('H83.1', 'Labyrinthine fistula', 'ICD10_2010'), +('H83.2', 'Labyrinthine dysfunction', 'ICD10_2010'), +('H83.3', 'Noise effects on inner ear', 'ICD10_2010'), +('H83.8', 'Other specified diseases of inner ear', 'ICD10_2010'), +('H83.9', 'Disease of inner ear, unspecified', 'ICD10_2010'), +('H90', 'Conductive and sensorineural hearing loss', 'ICD10_2010'), +('H90.0', 'Conductive hearing loss, bilateral', 'ICD10_2010'), +('H90.1', 'Conduct hearing loss, unilateral with unrestricted hearing on the contralateral side', 'ICD10_2010'), +('H90.2', 'Conductive hearing loss, unspecified', 'ICD10_2010'), +('H90.3', 'Sensorineural hearing loss, bilateral', 'ICD10_2010'), +('H90.4', 'Sensorineural hear loss unilat unrestricted hearing contralateral side', 'ICD10_2010'), +('H90.5', 'Sensorineural hearing loss, unspecified', 'ICD10_2010'), +('H90.6', 'Mixed conductive and sensorineural hearing loss, bilateral', 'ICD10_2010'), +('H90.7', 'Mix conductive and sensorineural hearing loss, unilateral unrestricted hearing on the contralateral side', 'ICD10_2010'), +('H90.8', 'Mixed conductive and sensorineural hearing loss, unspecified', 'ICD10_2010'), +('H91', 'Other hearing loss', 'ICD10_2010'), +('H91.0', 'Ototoxic hearing loss', 'ICD10_2010'), +('H91.1', 'Presbycusis', 'ICD10_2010'), +('H91.2', 'Sudden idiopathic hearing loss', 'ICD10_2010'), +('H91.3', 'Deaf mutism, not elsewhere classified', 'ICD10_2010'), +('H91.8', 'Other specified hearing loss', 'ICD10_2010'), +('H91.9', 'Hearing loss, unspecified', 'ICD10_2010'), +('H92', 'Otalgia and effusion of ear', 'ICD10_2010'), +('H92.0', 'Otalgia', 'ICD10_2010'), +('H92.1', 'Otorrhoea', 'ICD10_2010'), +('H92.2', 'Otorrhagia', 'ICD10_2010'), +('H93', 'Other disorders of ear, not elsewhere classified', 'ICD10_2010'), +('H93.0', 'Degenerative and vascular disorders of ear', 'ICD10_2010'), +('H93.1', 'Tinnitus', 'ICD10_2010'), +('H93.2', 'Other abnormal auditory perceptions', 'ICD10_2010'), +('H93.3', 'Disorders of acoustic nerve', 'ICD10_2010'), +('H93.8', 'Other specified disorders of ear', 'ICD10_2010'), +('H93.9', 'Disorder of ear, unspecified', 'ICD10_2010'), +('H94', 'Other disorders of ear in diseases classified elsewhere', 'ICD10_2010'), +('H94.0', 'Acoustic neuritis in infectious and parasitic diseases classified elsewhere', 'ICD10_2010'), +('H94.8', 'Other specified disorders of ear in diseases classified elsewhere', 'ICD10_2010'), +('H95', 'Postprocedural disorders of ear and mastoid process, not elsewhere classified', 'ICD10_2010'), +('H95.0', 'Recurrent cholesteatoma of postmastoidectomy cavity', 'ICD10_2010'), +('H95.1', 'Other disorders following mastoidectomy', 'ICD10_2010'), +('H95.8', 'Other postprocedural disorders of ear and mastoid process', 'ICD10_2010'), +('H95.9', 'Postprocedural disorder of ear and mastoid process, unspecified', 'ICD10_2010'), +('I00', 'Rheumatic fever without mention of heart involvement', 'ICD10_2010'), +('I01', 'Rheumatic fever with heart involvement', 'ICD10_2010'), +('I01.0', 'Acute rheumatic pericarditis', 'ICD10_2010'), +('I01.1', 'Acute rheumatic endocarditis', 'ICD10_2010'), +('I01.2', 'Acute rheumatic myocarditis', 'ICD10_2010'), +('I01.8', 'Other acute rheumatic heart disease', 'ICD10_2010'), +('I01.9', 'Acute rheumatic heart disease, unspecified', 'ICD10_2010'), +('I02', 'Rheumatic chorea', 'ICD10_2010'), +('I02.0', 'Rheumatic chorea with heart involvement', 'ICD10_2010'), +('I02.9', 'Rheumatic chorea without heart involvement', 'ICD10_2010'), +('I05', 'Rheumatic mitral valve diseases', 'ICD10_2010'), +('I05.0', 'Mitral stenosis', 'ICD10_2010'), +('I05.1', 'Rheumatic mitral insufficiency', 'ICD10_2010'), +('I05.2', 'Mitral stenosis with insufficiency', 'ICD10_2010'), +('I05.8', 'Other mitral valve diseases', 'ICD10_2010'), +('I05.9', 'Mitral valve disease, unspecified', 'ICD10_2010'), +('I06', 'Rheumatic aortic valve diseases', 'ICD10_2010'), +('I06.0', 'Rheumatic aortic stenosis', 'ICD10_2010'), +('I06.1', 'Rheumatic aortic insufficiency', 'ICD10_2010'), +('I06.2', 'Rheumatic aortic stenosis with insufficiency', 'ICD10_2010'), +('I06.8', 'Other rheumatic aortic valve diseases', 'ICD10_2010'), +('I06.9', 'Rheumatic aortic valve disease, unspecified', 'ICD10_2010'), +('I07', 'Rheumatic tricuspid valve diseases', 'ICD10_2010'), +('I07.0', 'Tricuspid stenosis', 'ICD10_2010'), +('I07.1', 'Tricuspid insufficiency', 'ICD10_2010'), +('I07.2', 'Tricuspid stenosis with insufficiency', 'ICD10_2010'), +('I07.8', 'Other tricuspid valve diseases', 'ICD10_2010'), +('I07.9', 'Tricuspid valve disease, unspecified', 'ICD10_2010'), +('I08', 'Multiple valve diseases', 'ICD10_2010'), +('I08.0', 'Disorders of both mitral and aortic valves', 'ICD10_2010'), +('I08.1', 'Disorders of both mitral and tricuspid valves', 'ICD10_2010'), +('I08.2', 'Disorders of both aortic and tricuspid valves', 'ICD10_2010'), +('I08.3', 'Combined disorders of mitral, aortic and tricuspid valves', 'ICD10_2010'), +('I08.8', 'Other multiple valve diseases', 'ICD10_2010'), +('I08.9', 'Multiple valve disease, unspecified', 'ICD10_2010'), +('I09', 'Other rheumatic heart diseases', 'ICD10_2010'), +('I09.0', 'Rheumatic myocarditis', 'ICD10_2010'), +('I09.1', 'Rheumatic diseases of endocardium, valve unspecified', 'ICD10_2010'), +('I09.2', 'Chronic rheumatic pericarditis', 'ICD10_2010'), +('I09.8', 'Other specified rheumatic heart diseases', 'ICD10_2010'), +('I09.9', 'Rheumatic heart disease, unspecified', 'ICD10_2010'), +('I10', 'Essential (primary) hypertension', 'ICD10_2010'), +('I11', 'Hypertensive heart disease', 'ICD10_2010'), +('I11.0', 'Hypertensive heart disease with (congestive) heart failure', 'ICD10_2010'), +('I11.9', 'Hypertensive heart disease without (congestive) heart failure', 'ICD10_2010'), +('I12', 'Hypertensive renal disease', 'ICD10_2010'), +('I12.0', 'Hypertensive renal disease with renal failure', 'ICD10_2010'), +('I12.9', 'Hypertensive renal disease without renal failure', 'ICD10_2010'), +('I13', 'Hypertensive heart and renal disease', 'ICD10_2010'), +('I13.0', 'Hypertens heart and renal dis with (congestive) heart failure', 'ICD10_2010'), +('I13.1', 'Hypertensive heart and renal disease with renal failure', 'ICD10_2010'), +('I13.2', 'Hyper heart and renal disease both (congestive) heart failure and renal failure', 'ICD10_2010'), +('I13.9', 'Hypertensive heart and renal disease, unspecified', 'ICD10_2010'), +('I15', 'Secondary hypertension', 'ICD10_2010'), +('I15.0', 'Renovascular hypertension', 'ICD10_2010'), +('I15.1', 'Hypertension secondary to other renal disorders', 'ICD10_2010'), +('I15.2', 'Hypertension secondary to endocrine disorders', 'ICD10_2010'), +('I15.8', 'Other secondary hypertension', 'ICD10_2010'), +('I15.9', 'Secondary hypertension, unspecified', 'ICD10_2010'), +('I20', 'Angina pectoris', 'ICD10_2010'), +('I20.0', 'Unstable angina', 'ICD10_2010'), +('I20.1', 'Angina pectoris with documented spasm', 'ICD10_2010'), +('I20.8', 'Other forms of angina pectoris', 'ICD10_2010'), +('I20.9', 'Angina pectoris, unspecified', 'ICD10_2010'), +('I21', 'Acute myocardial infarction', 'ICD10_2010'), +('I21.0', 'Acute transmural myocardial infarction of anterior wall', 'ICD10_2010'), +('I21.1', 'Acute transmural myocardial infarction of inferior wall', 'ICD10_2010'), +('I21.2', 'Acute transmural myocardial infarction of other sites', 'ICD10_2010'), +('I21.3', 'Acute transmural myocardial infarction of unspecified site', 'ICD10_2010'), +('I21.4', 'Acute subendocardial myocardial infarction', 'ICD10_2010'), +('I21.9', 'Acute myocardial infarction, unspecified', 'ICD10_2010'), +('I22', 'Subsequent myocardial infarction', 'ICD10_2010'), +('I22.0', 'Subsequent myocardial infarction of anterior wall', 'ICD10_2010'), +('I22.1', 'Subsequent myocardial infarction of inferior wall', 'ICD10_2010'), +('I22.8', 'Subsequent myocardial infarction of other sites', 'ICD10_2010'), +('I22.9', 'Subsequent myocardial infarction of unspecified site', 'ICD10_2010'), +('I23', 'Certain current complications following acute myocardial infarction', 'ICD10_2010'), +('I23.0', 'Haemopericardium as current complication following acute myocardial infarction', 'ICD10_2010'), +('I23.1', 'Atrial septal defect as current complication following acute myocardial infarction', 'ICD10_2010'), +('I23.2', 'Ventricular septal defect as current complication following acute myocardial infarction', 'ICD10_2010'), +('I23.3', 'Rupture cardiac wall without haemopericardium as current complication following acute myocardial infarction', 'ICD10_2010'), +('I23.4', 'Rupture chordae tendineae as current complication following acut myocardial infarction', 'ICD10_2010'), +('I23.5', 'Rupture of papilary muscle as current complication following acute myocardial infarction', 'ICD10_2010'), +('I23.6', 'Thrombosis of atrium, auricular appendage ventricle as current complication following acute myocardial infarction', 'ICD10_2010'), +('I23.8', 'Oth current complications following acute myocardial infarction', 'ICD10_2010'), +('I24', 'Other acute ischaemic heart diseases', 'ICD10_2010'), +('I24.0', 'Coronary thrombosis not resulting in myocardial infarction', 'ICD10_2010'), +('I24.1', 'Dressler\'s syndrome', 'ICD10_2010'), +('I24.8', 'Other forms of acute ischaemic heart disease', 'ICD10_2010'), +('I24.9', 'Acute ischaemic heart disease, unspecified', 'ICD10_2010'), +('I25', 'Chronic ischaemic heart disease', 'ICD10_2010'), +('I25.0', 'Atherosclerotic cardiovascular disease, so described', 'ICD10_2010'), +('I25.1', 'Atherosclerotic heart disease', 'ICD10_2010'), +('I25.2', 'Old myocardial infarction', 'ICD10_2010'), +('I25.3', 'Aneurysm of heart', 'ICD10_2010'), +('I25.4', 'Coronary artery aneurysm', 'ICD10_2010'), +('I25.5', 'Ischaemic cardiomyopathy', 'ICD10_2010'), +('I25.6', 'Silent myocardial ischaemia', 'ICD10_2010'), +('I25.8', 'Other forms of chronic ischaemic heart disease', 'ICD10_2010'), +('I25.9', 'Chronic ischaemic heart disease, unspecified', 'ICD10_2010'), +('I26', 'Pulmonary embolism', 'ICD10_2010'), +('I26.0', 'Pulmonary embolism with mention of acute cor pulmonale', 'ICD10_2010'), +('I26.9', 'Pulmonary embolism without mention of acute cor pulmonale', 'ICD10_2010'), +('I27', 'Other pulmonary heart diseases', 'ICD10_2010'), +('I27.0', 'Primary pulmonary hypertension', 'ICD10_2010'); +INSERT INTO `icd10` (`ID_ICD10`, `Diagnosa`, `Versi_ICD10`) VALUES +('I27.1', 'Kyphoscoliotic heart disease', 'ICD10_2010'), +('I27.2', 'Other secondary pulmonary hypertension', 'ICD10_2010'), +('I27.8', 'Other specified pulmonary heart diseases', 'ICD10_2010'), +('I27.9', 'Pulmonary heart disease, unspecified', 'ICD10_2010'), +('I28', 'Other diseases of pulmonary vessels', 'ICD10_2010'), +('I28.0', 'Arteriovenous fistula of pulmonary vessels', 'ICD10_2010'), +('I28.1', 'Aneurysm of pulmonary artery', 'ICD10_2010'), +('I28.8', 'Other specified diseases of pulmonary vessels', 'ICD10_2010'), +('I28.9', 'Disease of pulmonary vessels, unspecified', 'ICD10_2010'), +('I30', 'Acute pericarditis', 'ICD10_2010'), +('I30.0', 'Acute nonspecific idiopathic pericarditis', 'ICD10_2010'), +('I30.1', 'Infective pericarditis', 'ICD10_2010'), +('I30.8', 'Other forms of acute pericarditis', 'ICD10_2010'), +('I30.9', 'Acute pericarditis, unspecified', 'ICD10_2010'), +('I31', 'Other diseases of pericardium', 'ICD10_2010'), +('I31.0', 'Chronic adhesive pericarditis', 'ICD10_2010'), +('I31.1', 'Chronic constrictive pericarditis', 'ICD10_2010'), +('I31.2', 'Haemopericardium, not elsewhere classified', 'ICD10_2010'), +('I31.3', 'Pericardial effusion (noninflammatory)', 'ICD10_2010'), +('I31.8', 'Other specified diseases of pericardium', 'ICD10_2010'), +('I31.9', 'Disease of pericardium, unspecified', 'ICD10_2010'), +('I32', 'Pericarditis in diseases classified elsewhere', 'ICD10_2010'), +('I32.0', 'Pericarditis in bacterial diseases classified elsewhere', 'ICD10_2010'), +('I32.1', 'Pericarditis in other infectious and parasitic diseases classified elsewhere', 'ICD10_2010'), +('I32.8', 'Pericarditis in other diseases classified elsewhere', 'ICD10_2010'), +('I33', 'Acute and subacute endocarditis', 'ICD10_2010'), +('I33.0', 'Acute and subacute infective endocarditis', 'ICD10_2010'), +('I33.9', 'Acute endocarditis, unspecified', 'ICD10_2010'), +('I34', 'Nonrheumatic mitral valve disorders', 'ICD10_2010'), +('I34.0', 'Mitral (valve) insufficiency', 'ICD10_2010'), +('I34.1', 'Mitral (valve) prolapse', 'ICD10_2010'), +('I34.2', 'Nonrheumatic mitral (valve) stenosis', 'ICD10_2010'), +('I34.8', 'Other nonrheumatic mitral valve disorders', 'ICD10_2010'), +('I34.9', 'Nonrheumatic mitral valve disorder, unspecified', 'ICD10_2010'), +('I35', 'Nonrheumatic aortic valve disorders', 'ICD10_2010'), +('I35.0', 'Aortic (valve) stenosis', 'ICD10_2010'), +('I35.1', 'Aortic (valve) insufficiency', 'ICD10_2010'), +('I35.2', 'Aortic (valve) stenosis with insufficiency', 'ICD10_2010'), +('I35.8', 'Other aortic valve disorders', 'ICD10_2010'), +('I35.9', 'Aortic valve disorder, unspecified', 'ICD10_2010'), +('I36', 'Nonrheumatic tricuspid valve disorders', 'ICD10_2010'), +('I36.0', 'Nonrheumatic tricuspid (valve) stenosis', 'ICD10_2010'), +('I36.1', 'Nonrheumatic tricuspid (valve) insufficiency', 'ICD10_2010'), +('I36.2', 'Nonrheumatic tricuspid (valve) stenosis with insufficiency', 'ICD10_2010'), +('I36.8', 'Other nonrheumatic tricuspid valve disorders', 'ICD10_2010'), +('I36.9', 'Nonrheumatic tricuspid valve disorder, unspecified', 'ICD10_2010'), +('I37', 'Pulmonary valve disorders', 'ICD10_2010'), +('I37.0', 'Pulmonary valve stenosis', 'ICD10_2010'), +('I37.1', 'Pulmonary valve insufficiency', 'ICD10_2010'), +('I37.2', 'Pulmonary valve stenosis with insufficiency', 'ICD10_2010'), +('I37.8', 'Other pulmonary valve disorders', 'ICD10_2010'), +('I37.9', 'Pulmonary valve disorder, unspecified', 'ICD10_2010'), +('I38', 'Endocarditis, valve unspecified', 'ICD10_2010'), +('I39', 'Endocarditis and heart valve disorders in diseases classified elsewhere', 'ICD10_2010'), +('I39.0', 'Mitral valve disorders in diseases classified elsewhere', 'ICD10_2010'), +('I39.1', 'Aortic valve disorders in diseases classified elsewhere', 'ICD10_2010'), +('I39.2', 'Tricuspid valve disorders in diseases classified elsewhere', 'ICD10_2010'), +('I39.3', 'Pulmonary valve disorders in diseases classified elsewhere', 'ICD10_2010'), +('I39.4', 'Multiple valve disorders in diseases classified elsewhere', 'ICD10_2010'), +('I39.8', 'Endocarditis, valve unspec, in diseases class elsewhere', 'ICD10_2010'), +('I40', 'Acute myocarditis', 'ICD10_2010'), +('I40.0', 'Infective myocarditis', 'ICD10_2010'), +('I40.1', 'Isolated myocarditis', 'ICD10_2010'), +('I40.8', 'Other acute myocarditis', 'ICD10_2010'), +('I40.9', 'Acute myocarditis, unspecified', 'ICD10_2010'), +('I41', 'Myocarditis in diseases classified elsewhere', 'ICD10_2010'), +('I41.0', 'Myocarditis in bacterial diseases classified elsewhere', 'ICD10_2010'), +('I41.1', 'Myocarditis in viral diseases classified elsewhere', 'ICD10_2010'), +('I41.2', 'Myocarditis in other infectious and parasitic diseases classified elsewhere', 'ICD10_2010'), +('I41.8', 'Myocarditis in other diseases classified elsewhere', 'ICD10_2010'), +('I42', 'Cardiomyopathy', 'ICD10_2010'), +('I42.0', 'Dilated cardiomyopathy', 'ICD10_2010'), +('I42.1', 'Obstructive hypertrophic cardiomyopathy', 'ICD10_2010'), +('I42.2', 'Other hypertrophic cardiomyopathy', 'ICD10_2010'), +('I42.3', 'Endomyocardial (eosinophilic) disease', 'ICD10_2010'), +('I42.4', 'Endocardial fibroelastosis', 'ICD10_2010'), +('I42.5', 'Other restrictive cardiomyopathy', 'ICD10_2010'), +('I42.6', 'Alcoholic cardiomyopathy', 'ICD10_2010'), +('I42.7', 'Cardiomyopathy due to drugs and other external agents', 'ICD10_2010'), +('I42.8', 'Other cardiomyopathies', 'ICD10_2010'), +('I42.9', 'Cardiomyopathy, unspecified', 'ICD10_2010'), +('I43', 'Cardiomyopathy in diseases classified elsewhere', 'ICD10_2010'), +('I43.0', 'Cardiomyopathy in infectious & parasitic diseases classified elsewhere', 'ICD10_2010'), +('I43.1', 'Cardiomyopathy in metabolic diseases', 'ICD10_2010'), +('I43.2', 'Cardiomyopathy in nutritional diseases', 'ICD10_2010'), +('I43.8', 'Cardiomyopathy in other diseases classified elsewhere', 'ICD10_2010'), +('I44', 'Atrioventricular and left bundle-branch block', 'ICD10_2010'), +('I44.0', 'Atrioventricular block, first degree', 'ICD10_2010'), +('I44.1', 'Atrioventricular block, second degree', 'ICD10_2010'), +('I44.2', 'Atrioventricular block, complete', 'ICD10_2010'), +('I44.3', 'Other and unspecified atrioventricular block', 'ICD10_2010'), +('I44.4', 'Left anterior fascicular block', 'ICD10_2010'), +('I44.5', 'Left posterior fascicular block', 'ICD10_2010'), +('I44.6', 'Other and unspecified fascicular block', 'ICD10_2010'), +('I44.7', 'Left bundle-branch block, unspecified', 'ICD10_2010'), +('I45', 'Other conduction disorders', 'ICD10_2010'), +('I45.0', 'Right fascicular block', 'ICD10_2010'), +('I45.1', 'Other and unspecified right bundle-branch block', 'ICD10_2010'), +('I45.2', 'Bifascicular block', 'ICD10_2010'), +('I45.3', 'Trifascicular block', 'ICD10_2010'), +('I45.4', 'Nonspecific intraventricular block', 'ICD10_2010'), +('I45.5', 'Other specified heart block', 'ICD10_2010'), +('I45.6', 'Pre-excitation syndrome', 'ICD10_2010'), +('I45.8', 'Other specified conduction disorders', 'ICD10_2010'), +('I45.9', 'Conduction disorder, unspecified', 'ICD10_2010'), +('I46', 'Cardiac arrest', 'ICD10_2010'), +('I46.0', 'Cardiac arrest with successful resuscitation', 'ICD10_2010'), +('I46.1', 'Sudden cardiac death, so described', 'ICD10_2010'), +('I46.9', 'Cardiac arrest, unspecified', 'ICD10_2010'), +('I47', 'Paroxysmal tachycardia', 'ICD10_2010'), +('I47.0', 'Re-entry ventricular arrhythmia', 'ICD10_2010'), +('I47.1', 'Supraventricular tachycardia', 'ICD10_2010'), +('I47.2', 'Ventricular tachycardia', 'ICD10_2010'), +('I47.9', 'Paroxysmal tachycardia, unspecified', 'ICD10_2010'), +('I48', 'Atrial fibrillation and flutter', 'ICD10_2010'), +('I49', 'Other cardiac arrhythmias', 'ICD10_2010'), +('I49.0', 'Ventricular fibrillation and flutter', 'ICD10_2010'), +('I49.1', 'Atrial premature depolarization', 'ICD10_2010'), +('I49.2', 'Junctional premature depolarization', 'ICD10_2010'), +('I49.3', 'Ventricular premature depolarization', 'ICD10_2010'), +('I49.4', 'Other and unspecified premature depolarization', 'ICD10_2010'), +('I49.5', 'Sick sinus syndrome', 'ICD10_2010'), +('I49.8', 'Other specified cardiac arrhythmias', 'ICD10_2010'), +('I49.9', 'Cardiac arrhythmia, unspecified', 'ICD10_2010'), +('I50', 'Heart failure', 'ICD10_2010'), +('I50.0', 'Congestive heart failure', 'ICD10_2010'), +('I50.1', 'Left ventricular failure', 'ICD10_2010'), +('I50.9', 'Heart failure, unspecified', 'ICD10_2010'), +('I51', 'Complications and ill-defined descriptions of heart disease', 'ICD10_2010'), +('I51.0', 'Cardiac septal defect, acquired', 'ICD10_2010'), +('I51.1', 'Rupture of chordae tendineae, not elsewhere classified', 'ICD10_2010'), +('I51.2', 'Rupture of papillary muscle, not elsewhere classified', 'ICD10_2010'), +('I51.3', 'Intracardiac thrombosis, not elsewhere classified', 'ICD10_2010'), +('I51.4', 'Myocarditis, unspecified', 'ICD10_2010'), +('I51.5', 'Myocardial degeneration', 'ICD10_2010'), +('I51.6', 'Cardiovascular disease, unspecified', 'ICD10_2010'), +('I51.7', 'Cardiomegaly', 'ICD10_2010'), +('I51.8', 'Other ill-defined heart diseases', 'ICD10_2010'), +('I51.9', 'Heart disease, unspecified', 'ICD10_2010'), +('I52', 'Other heart disorders in diseases classified elsewhere', 'ICD10_2010'), +('I52.0', 'Other heart disorders in bacterial diseases classified elsewhere', 'ICD10_2010'), +('I52.1', 'Oth heart disorders in oth infectious and parasitic disease classified elsewhere', 'ICD10_2010'), +('I52.8', 'Other heart disorders in other diseases classified elsewhere', 'ICD10_2010'), +('I60', 'Subarachnoid haemorrhage', 'ICD10_2010'), +('I60.0', 'Subarachnoid haemorrhage from carotid siphon and bifurcation', 'ICD10_2010'), +('I60.1', 'Subarachnoid haemorrhage from middle cerebral artery', 'ICD10_2010'), +('I60.2', 'Subarachnoid haemorrhage from anterior communicating artery', 'ICD10_2010'), +('I60.3', 'Subarachnoid haemorrhage from posterior communicating artery', 'ICD10_2010'), +('I60.4', 'Subarachnoid haemorrhage from basilar artery', 'ICD10_2010'), +('I60.5', 'Subarachnoid haemorrhage from vertebral artery', 'ICD10_2010'), +('I60.6', 'Subarachnoid haemorrhage from other intracranial arteries', 'ICD10_2010'), +('I60.7', 'Subarachnoid haemorrhage from intracranial artery, unspecified', 'ICD10_2010'), +('I60.8', 'Other subarachnoid haemorrhage', 'ICD10_2010'), +('I60.9', 'Subarachnoid haemorrhage, unspecified', 'ICD10_2010'), +('I61', 'Intracerebral haemorrhage', 'ICD10_2010'), +('I61.0', 'Intracerebral haemorrhage in hemisphere, subcortical', 'ICD10_2010'), +('I61.1', 'Intracerebral haemorrhage in hemisphere, cortical', 'ICD10_2010'), +('I61.2', 'Intracerebral haemorrhage in hemisphere, unspecified', 'ICD10_2010'), +('I61.3', 'Intracerebral haemorrhage in brain stem', 'ICD10_2010'), +('I61.4', 'Intracerebral haemorrhage in cerebellum', 'ICD10_2010'), +('I61.5', 'Intracerebral haemorrhage, intraventricular', 'ICD10_2010'), +('I61.6', 'Intracerebral haemorrhage, multiple localized', 'ICD10_2010'), +('I61.8', 'Other intracerebral haemorrhage', 'ICD10_2010'), +('I61.9', 'Intracerebral haemorrhage, unspecified', 'ICD10_2010'), +('I62', 'Other nontraumatic intracranial haemorrhage', 'ICD10_2010'), +('I62.0', 'Subdural haemorrhage (acute)(nontraumatic)', 'ICD10_2010'), +('I62.1', 'Nontraumatic extradural haemorrhage', 'ICD10_2010'), +('I62.9', 'Intracranial haemorrhage (nontraumatic), unspecified', 'ICD10_2010'), +('I63', 'Cerebral infarction', 'ICD10_2010'), +('I63.0', 'Cerebral infarct due to thrombosis of precerebral arteries', 'ICD10_2010'), +('I63.1', 'Cerebral infarction due to embolism of precerebral arteries', 'ICD10_2010'), +('I63.2', 'Cerebral infarction due unspecified occlusion or stenosis precerebral arteries', 'ICD10_2010'), +('I63.3', 'Cerebral infarction due to thrombosis of cerebral arteries', 'ICD10_2010'), +('I63.4', 'Cerebral infarction due to embolism of cerebral arteries', 'ICD10_2010'), +('I63.5', 'Cerebral infarction due unspecified occlusion or stenos cerebrl arteries', 'ICD10_2010'), +('I63.6', 'Cerebral infarction due cerebral venous thrombosis, nonpyogenic', 'ICD10_2010'), +('I63.8', 'Other cerebral infarction', 'ICD10_2010'), +('I63.9', 'Cerebral infarction, unspecified', 'ICD10_2010'), +('I64', 'Stroke, not specified as haemorrhage or infarction', 'ICD10_2010'), +('I65', 'Occlusion and stenosis of precerebral arteries, not resulting in cerebral infarction', 'ICD10_2010'), +('I65.0', 'Occlusion and stenosis of vertebral artery', 'ICD10_2010'), +('I65.1', 'Occlusion and stenosis of basilar artery', 'ICD10_2010'), +('I65.2', 'Occlusion and stenosis of carotid artery', 'ICD10_2010'), +('I65.3', 'Occlusion and stenosis of multip and bilat precerebral arteries', 'ICD10_2010'), +('I65.8', 'Occlusion and stenosis of other precerebral artery', 'ICD10_2010'), +('I65.9', 'Occlusion and stenosis of unspecified precerebral artery', 'ICD10_2010'), +('I66', 'Occlusion and stenosis of cerebral arteries, not resulting in cerebral infarction', 'ICD10_2010'), +('I66.0', 'Occlusion and stenosis of middle cerebral artery', 'ICD10_2010'), +('I66.1', 'Occlusion and stenosis of anterior cerebral artery', 'ICD10_2010'), +('I66.2', 'Occlusion and stenosis of posterior cerebral artery', 'ICD10_2010'), +('I66.3', 'Occlusion and stenosis of cerebellar arteries', 'ICD10_2010'), +('I66.4', 'Occlusion and stenosis of multiple and bilat cerebral arts', 'ICD10_2010'), +('I66.8', 'Occlusion and stenosis of other cerebral artery', 'ICD10_2010'), +('I66.9', 'Occlusion and stenosis of unspecified cerebral artery', 'ICD10_2010'), +('I67', 'Other cerebrovascular diseases', 'ICD10_2010'), +('I67.0', 'Dissection of cerebral arteries, nonruptured', 'ICD10_2010'), +('I67.1', 'Cerebral aneurysm, nonruptured', 'ICD10_2010'), +('I67.2', 'Cerebral atherosclerosis', 'ICD10_2010'), +('I67.3', 'Progressive vascular leukoencephalopathy', 'ICD10_2010'), +('I67.4', 'Hypertensive encephalopathy', 'ICD10_2010'), +('I67.5', 'Moyamoya disease', 'ICD10_2010'), +('I67.6', 'Nonpyogenic thrombosis of intracranial venous system', 'ICD10_2010'), +('I67.7', 'Cerebral arteritis, not elsewhere classified', 'ICD10_2010'), +('I67.8', 'Other specified cerebrovascular diseases', 'ICD10_2010'), +('I67.9', 'Cerebrovascular disease, unspecified', 'ICD10_2010'), +('I68', 'Cerebrovascular disorders in diseases classified elsewhere', 'ICD10_2010'), +('I68.0', 'Cerebral amyloid angiopathy', 'ICD10_2010'), +('I68.1', 'Cerebral arteritis in infectious & parasitic diseases classified elsewhere', 'ICD10_2010'), +('I68.2', 'Cerebral arteritis in other diseases classified elsewhere', 'ICD10_2010'), +('I68.8', 'Other cerebrovascular disorders in diseases classified elsewhere', 'ICD10_2010'), +('I69', 'Sequelae of cerebrovascular disease', 'ICD10_2010'), +('I69.0', 'Sequelae of subarachnoid haemorrhage', 'ICD10_2010'), +('I69.1', 'Sequelae of intracerebral haemorrhage', 'ICD10_2010'), +('I69.2', 'Sequelae of other nontraumatic intracranial haemorrhage', 'ICD10_2010'), +('I69.3', 'Sequelae of cerebral infarction', 'ICD10_2010'), +('I69.4', 'Sequelae of stroke, not specified as haemorrhage or infarction', 'ICD10_2010'), +('I69.8', 'Sequelae of other and unspecified cerebrovascular diseases', 'ICD10_2010'), +('I70', 'Atherosclerosis', 'ICD10_2010'), +('I70.0', 'Atherosclerosis of aorta', 'ICD10_2010'), +('I70.1', 'Atherosclerosis of renal artery', 'ICD10_2010'), +('I70.2', 'Atherosclerosis of arteries of extremities', 'ICD10_2010'), +('I70.8', 'Atherosclerosis of other arteries', 'ICD10_2010'), +('I70.9', 'Generalized and unspecified atherosclerosis', 'ICD10_2010'), +('I71', 'Aortic aneurysm and dissection', 'ICD10_2010'), +('I71.0', 'Dissection of aorta [any part]', 'ICD10_2010'), +('I71.1', 'Thoracic aortic aneurysm, ruptured', 'ICD10_2010'), +('I71.2', 'Thoracic aortic aneurysm, without mention of rupture', 'ICD10_2010'), +('I71.3', 'Abdominal aortic aneurysm, ruptured', 'ICD10_2010'), +('I71.4', 'Abdominal aortic aneurysm, without mention of rupture', 'ICD10_2010'), +('I71.5', 'Thoracoabdominal aortic aneurysm, ruptured', 'ICD10_2010'), +('I71.6', 'Thoracoabdominal aortic aneurysm, without mention of rupture', 'ICD10_2010'), +('I71.8', 'Aortic aneurysm of unspecified site, ruptured', 'ICD10_2010'), +('I71.9', 'Aortic aneurysm of unspecified site, without mention of rupture', 'ICD10_2010'), +('I72', 'Other aneurysm and dissection', 'ICD10_2010'), +('I72.0', 'Aneurysm of carotid artery', 'ICD10_2010'), +('I72.1', 'Aneurysm of artery of upper extremity', 'ICD10_2010'), +('I72.2', 'Aneurysm of renal artery', 'ICD10_2010'), +('I72.3', 'Aneurysm of iliac artery', 'ICD10_2010'), +('I72.4', 'Aneurysm of artery of lower extremity', 'ICD10_2010'), +('I72.5', 'Aneurysm and dissection of other precerebral arteries', 'ICD10_2010'), +('I72.8', 'Aneurysm of other specified arteries', 'ICD10_2010'), +('I72.9', 'Aneurysm of unspecified site', 'ICD10_2010'), +('I73', 'Other peripheral vascular diseases', 'ICD10_2010'), +('I73.0', 'Raynaud\'s syndrome', 'ICD10_2010'), +('I73.1', 'Thromboangiitis obliterans [buerger]', 'ICD10_2010'), +('I73.8', 'Other specified peripheral vascular diseases', 'ICD10_2010'), +('I73.9', 'Peripheral vascular disease, unspecified', 'ICD10_2010'), +('I74', 'Arterial embolism and thrombosis', 'ICD10_2010'), +('I74.0', 'Embolism and thrombosis of abdominal aorta', 'ICD10_2010'), +('I74.1', 'Embolism and thrombosis of other and unspecified parts of aorta', 'ICD10_2010'), +('I74.2', 'Embolism and thrombosis of arteries of upper extremities', 'ICD10_2010'), +('I74.3', 'Embolism and thrombosis of arteries of lower extremities', 'ICD10_2010'), +('I74.4', 'Embolism and thrombosis of arteries of extremities, unspecified', 'ICD10_2010'), +('I74.5', 'Embolism and thrombosis of iliac artery', 'ICD10_2010'), +('I74.8', 'Embolism and thrombosis of other arteries', 'ICD10_2010'), +('I74.9', 'Embolism and thrombosis of unspecified artery', 'ICD10_2010'), +('I77', 'Other disorders of arteries and arterioles', 'ICD10_2010'), +('I77.0', 'Arteriovenous fistula, acquired', 'ICD10_2010'), +('I77.1', 'Stricture of artery', 'ICD10_2010'), +('I77.2', 'Rupture of artery', 'ICD10_2010'), +('I77.3', 'Arterial fibromuscular dysplasia', 'ICD10_2010'), +('I77.4', 'Coeliac artery compression syndrome', 'ICD10_2010'), +('I77.5', 'Necrosis of artery', 'ICD10_2010'), +('I77.6', 'Arteritis, unspecified', 'ICD10_2010'), +('I77.8', 'Other specified disorders of arteries and arterioles', 'ICD10_2010'), +('I77.9', 'Disorder of arteries and arterioles, unspecified', 'ICD10_2010'), +('I78', 'Diseases of capillaries', 'ICD10_2010'), +('I78.0', 'Hereditary haemorrhagic telangiectasia', 'ICD10_2010'), +('I78.1', 'Naevus, non-neoplastic', 'ICD10_2010'), +('I78.8', 'Other diseases of capillaries', 'ICD10_2010'), +('I78.9', 'Disease of capillaries, unspecified', 'ICD10_2010'), +('I79', 'Disorders of arteries, arterioles and capillaries in diseases classified elsewhere', 'ICD10_2010'), +('I79.0', 'Aneurysm of aorta in diseases classified elsewhere', 'ICD10_2010'), +('I79.1', 'Aortitis in diseases classified elsewhere', 'ICD10_2010'), +('I79.2', 'Peripheral angiopathy in diseases classified elsewhere', 'ICD10_2010'), +('I79.8', 'Oth disord arteries, arterioles & capillaries in diseases classified elsewhere', 'ICD10_2010'), +('I80', 'Phlebitis and thrombophlebitis', 'ICD10_2010'), +('I80.0', 'Phlebitis and thrombophlebitis superficial vessels low extremities', 'ICD10_2010'), +('I80.1', 'Phlebitis and thrombophlebitis of femoral vein', 'ICD10_2010'), +('I80.2', 'Phlebitis and thrombophlebitis oth deep vessels low extremities', 'ICD10_2010'), +('I80.3', 'Phlebitis and thrombophlebitis of lower extremities, unspecified', 'ICD10_2010'), +('I80.8', 'Phlebitis and thrombophlebitis of other sites', 'ICD10_2010'), +('I80.9', 'Phlebitis and thrombophlebitis of unspecified site', 'ICD10_2010'), +('I81', 'Portal vein thrombosis', 'ICD10_2010'), +('I82', 'Other venous embolism and thrombosis', 'ICD10_2010'), +('I82.0', 'Budd-chiari syndrome', 'ICD10_2010'), +('I82.1', 'Thrombophlebitis migrans', 'ICD10_2010'), +('I82.2', 'Embolism and thrombosis of vena cava', 'ICD10_2010'), +('I82.3', 'Embolism and thrombosis of renal vein', 'ICD10_2010'), +('I82.8', 'Embolism and thrombosis of other specified veins', 'ICD10_2010'), +('I82.9', 'Embolism and thrombosis of unspecified vein', 'ICD10_2010'), +('I83', 'Varicose veins of lower extremities', 'ICD10_2010'), +('I83.0', 'Varicose veins of lower extremities with ulcer', 'ICD10_2010'), +('I83.1', 'Varicose veins of lower extremities with inflammation', 'ICD10_2010'), +('I83.2', 'Varicose veins low extremities with both ulcer and inflammation', 'ICD10_2010'), +('I83.9', 'Varicose veins lower extremities without ulcer or inflammation', 'ICD10_2010'), +('I84', 'Haemorrhoids', 'ICD10_2010'), +('I84.0', 'Internal thrombosed haemorrhoids', 'ICD10_2010'), +('I84.1', 'Internal haemorrhoids with other complications', 'ICD10_2010'), +('I84.2', 'Internal haemorrhoids without complication', 'ICD10_2010'), +('I84.3', 'External thrombosed haemorrhoids', 'ICD10_2010'), +('I84.4', 'External haemorrhoids with other complications', 'ICD10_2010'), +('I84.5', 'External haemorrhoids without complication', 'ICD10_2010'), +('I84.6', 'Residual haemorrhoidal skin tags', 'ICD10_2010'), +('I84.7', 'Unspecified thrombosed haemorrhoids', 'ICD10_2010'), +('I84.8', 'Unspecified haemorrhoids with other complications', 'ICD10_2010'), +('I84.9', 'Unspecified haemorrhoids without complication', 'ICD10_2010'), +('I85', 'Oesophageal varices', 'ICD10_2010'), +('I85.0', 'Oesophageal varices with bleeding', 'ICD10_2010'), +('I85.9', 'Oesophageal varices without bleeding', 'ICD10_2010'), +('I86', 'Varicose veins of other sites', 'ICD10_2010'), +('I86.0', 'Sublingual varices', 'ICD10_2010'), +('I86.1', 'Scrotal varices', 'ICD10_2010'), +('I86.2', 'Pelvic varices', 'ICD10_2010'), +('I86.3', 'Vulval varices', 'ICD10_2010'), +('I86.4', 'Gastric varices', 'ICD10_2010'), +('I86.8', 'Varicose veins of other specified sites', 'ICD10_2010'), +('I87', 'Other disorders of veins', 'ICD10_2010'), +('I87.0', 'Postphlebitic syndrome', 'ICD10_2010'), +('I87.1', 'Compression of vein', 'ICD10_2010'), +('I87.2', 'Venous insufficiency (chronic)(peripheral)', 'ICD10_2010'), +('I87.8', 'Other specified disorders of veins', 'ICD10_2010'), +('I87.9', 'Disorder of vein, unspecified', 'ICD10_2010'), +('I88', 'Nonspecific lymphadenitis', 'ICD10_2010'), +('I88.0', 'Nonspecific mesenteric lymphadenitis', 'ICD10_2010'), +('I88.1', 'Chronic lymphadenitis, except mesenteric', 'ICD10_2010'), +('I88.8', 'Other nonspecific lymphadenitis', 'ICD10_2010'), +('I88.9', 'Nonspecific lymphadenitis, unspecified', 'ICD10_2010'), +('I89', 'Other noninfective disorders of lymphatic vessels and lymph nodes', 'ICD10_2010'), +('I89.0', 'Lymphoedema, not elsewhere classified', 'ICD10_2010'), +('I89.1', 'Lymphangitis', 'ICD10_2010'), +('I89.8', 'Other specified noninfective disorders lymphatic vessels and lymph nodes', 'ICD10_2010'), +('I89.9', 'Noninfective disorder lymphatic vessels and lymph nodes, unspecified', 'ICD10_2010'), +('I95', 'Hypotension', 'ICD10_2010'), +('I95.0', 'Idiopathic hypotension', 'ICD10_2010'), +('I95.1', 'Orthostatic hypotension', 'ICD10_2010'), +('I95.2', 'Hypotension due to drugs', 'ICD10_2010'), +('I95.8', 'Other hypotension', 'ICD10_2010'), +('I95.9', 'Hypotension, unspecified', 'ICD10_2010'), +('I97', 'Postprocedural disorders of circulatory system, not elsewhere classified', 'ICD10_2010'), +('I97.0', 'Postcardiotomy syndrome', 'ICD10_2010'), +('I97.1', 'Other functional disturbances following cardiac surgery', 'ICD10_2010'), +('I97.2', 'Postmastectomy lymphoedema syndrome', 'ICD10_2010'), +('I97.8', 'Other postprocedural disorders of circulatory system , not elsewhere classified', 'ICD10_2010'), +('I97.9', 'Postprocedural disorder of circulatory system, unspecified', 'ICD10_2010'), +('I98', 'Other disorders of circulatory system in diseases classified elsewhere', 'ICD10_2010'), +('I98.0', 'Cardiovascular syphilis', 'ICD10_2010'), +('I98.1', 'Cardiovascular disorder other infectious and parasitic diseases classified elsewhere', 'ICD10_2010'), +('I98.2', 'Oesophageal varices in diseases classified elsewhere', 'ICD10_2010'), +('I98.3', 'Oesophageal varices with bleeding in diseases classified elsewhere', 'ICD10_2010'), +('I98.8', 'Other specified disorders of circulatory system in diseases classified elsewhere', 'ICD10_2010'), +('I99', 'Other and unspecified disorders of circulatory system', 'ICD10_2010'), +('J00', 'Acute nasopharyngitis [common cold]', 'ICD10_2010'), +('J01', 'Acute sinusitis', 'ICD10_2010'), +('J01.0', 'Acute maxillary sinusitis', 'ICD10_2010'), +('J01.1', 'Acute frontal sinusitis', 'ICD10_2010'), +('J01.2', 'Acute ethmoidal sinusitis', 'ICD10_2010'), +('J01.3', 'Acute sphenoidal sinusitis', 'ICD10_2010'), +('J01.4', 'Acute pansinusitis', 'ICD10_2010'), +('J01.8', 'Other acute sinusitis', 'ICD10_2010'), +('J01.9', 'Acute sinusitis, unspecified', 'ICD10_2010'), +('J02', 'Acute pharyngitis', 'ICD10_2010'), +('J02.0', 'Streptococcal pharyngitis', 'ICD10_2010'), +('J02.8', 'Acute pharyngitis due to other specified organisms', 'ICD10_2010'), +('J02.9', 'Acute pharyngitis, unspecified', 'ICD10_2010'), +('J03', 'Acute tonsillitis', 'ICD10_2010'), +('J03.0', 'Streptococcal tonsillitis', 'ICD10_2010'), +('J03.8', 'Acute tonsillitis due to other specified organisms', 'ICD10_2010'), +('J03.9', 'Acute tonsillitis, unspecified', 'ICD10_2010'), +('J04', 'Acute laryngitis and tracheitis', 'ICD10_2010'), +('J04.0', 'Acute laryngitis', 'ICD10_2010'), +('J04.1', 'Acute tracheitis', 'ICD10_2010'), +('J04.2', 'Acute laryngotracheitis', 'ICD10_2010'), +('J05', 'Acute obstructive laryngitis [croup] and epiglottitis', 'ICD10_2010'), +('J05.0', 'Acute obstructive laryngitis [croup]', 'ICD10_2010'), +('J05.1', 'Acute epiglottitis', 'ICD10_2010'), +('J06', 'Acute upper respiratory infections of multiple and unspecified sites', 'ICD10_2010'), +('J06.0', 'Acute laryngopharyngitis', 'ICD10_2010'), +('J06.8', 'Other acute upper respiratory infections of multiple sites', 'ICD10_2010'), +('J06.9', 'Acute upper respiratory infection, unspecified', 'ICD10_2010'), +('J09', 'Influenza due to identified avian infliuenza virus', 'ICD10_2010'), +('J10', 'Influenza due to other identified influenza virus', 'ICD10_2010'), +('J10.0', 'Influenza with pneumonia, influenza virus identified', 'ICD10_2010'), +('J10.1', 'Influenza with other respiratory manifestations, other influenza virus identified', 'ICD10_2010'), +('J10.8', 'Influenza with other manifestations, other influenza virus identified', 'ICD10_2010'), +('J11', 'Influenza, virus not identified', 'ICD10_2010'), +('J11.0', 'Influenza with pneumonia, virus not identified', 'ICD10_2010'), +('J11.1', 'Influenza with other respiratory manifestations virus not identified', 'ICD10_2010'), +('J11.8', 'Influenza with other manifestations, virus not identified', 'ICD10_2010'), +('J12', 'Viral pneumonia, not elsewhere classified', 'ICD10_2010'), +('J12.0', 'Adenoviral pneumonia', 'ICD10_2010'), +('J12.1', 'Respiratory syncytial virus pneumonia', 'ICD10_2010'), +('J12.2', 'Parainfluenza virus pneumonia', 'ICD10_2010'), +('J12.3', 'Human metapneumovirus pneumonia', 'ICD10_2010'), +('J12.8', 'Other viral pneumonia', 'ICD10_2010'), +('J12.9', 'Viral pneumonia, unspecified', 'ICD10_2010'), +('J13', 'Pneumonia due to streptococcus pneumoniae', 'ICD10_2010'), +('J14', 'Pneumonia due to haemophilus influenzae', 'ICD10_2010'), +('J15', 'Bacterial pneumonia, not elsewhere classified', 'ICD10_2010'), +('J15.0', 'Pneumonia due to klebsiella pneumoniae', 'ICD10_2010'), +('J15.1', 'Pneumonia due to pseudomonas', 'ICD10_2010'), +('J15.2', 'Pneumonia due to staphylococcus', 'ICD10_2010'), +('J15.3', 'Pneumonia due to streptococcus, group B', 'ICD10_2010'), +('J15.4', 'Pneumonia due to other streptococci', 'ICD10_2010'), +('J15.5', 'Pneumonia due to escherichia coli', 'ICD10_2010'), +('J15.6', 'Pneumonia due to other aerobic gram-negative bacteria', 'ICD10_2010'), +('J15.7', 'Pneumonia due to mycoplasma pneumoniae', 'ICD10_2010'), +('J15.8', 'Other bacterial pneumonia', 'ICD10_2010'), +('J15.9', 'Bacterial pneumonia, unspecified', 'ICD10_2010'), +('J16', 'Pneumonia due to other infectious organisms, not elsewhere classified', 'ICD10_2010'), +('J16.0', 'Chlamydial pneumonia', 'ICD10_2010'), +('J16.8', 'Pneumonia due to other specified infectious organisms', 'ICD10_2010'), +('J17', 'Pneumonia in diseases classified elsewhere', 'ICD10_2010'), +('J17.0', 'Pneumonia in bacterial diseases classified elsewhere', 'ICD10_2010'), +('J17.1', 'Pneumonia in viral diseases classified elsewhere', 'ICD10_2010'), +('J17.2', 'Pneumonia in mycoses', 'ICD10_2010'), +('J17.3', 'Pneumonia in parasitic diseases', 'ICD10_2010'), +('J17.8', 'Pneumonia in other diseases classified elsewhere', 'ICD10_2010'), +('J18', 'Pneumonia, organism unspecified', 'ICD10_2010'), +('J18.0', 'Bronchopneumonia, unspecified', 'ICD10_2010'), +('J18.1', 'Lobar pneumonia, unspecified', 'ICD10_2010'), +('J18.2', 'Hypostatic pneumonia, unspecified', 'ICD10_2010'), +('J18.8', 'Other pneumonia, organism unspecified', 'ICD10_2010'), +('J18.9', 'Pneumonia, unspecified', 'ICD10_2010'), +('J20', 'Acute bronchitis', 'ICD10_2010'), +('J20.0', 'Acute bronchitis due to mycoplasma pneumoniae', 'ICD10_2010'), +('J20.1', 'Acute bronchitis due to haemophilus influenzae', 'ICD10_2010'), +('J20.2', 'Acute bronchitis due to streptococcus', 'ICD10_2010'), +('J20.3', 'Acute bronchitis due to coxsackievirus', 'ICD10_2010'), +('J20.4', 'Acute bronchitis due to parainfluenza virus', 'ICD10_2010'), +('J20.5', 'Acute bronchitis due to respiratory syncytial virus', 'ICD10_2010'), +('J20.6', 'Acute bronchitis due to rhinovirus', 'ICD10_2010'), +('J20.7', 'Acute bronchitis due to echovirus', 'ICD10_2010'), +('J20.8', 'Acute bronchitis due to other specified organisms', 'ICD10_2010'), +('J20.9', 'Acute bronchitis, unspecified', 'ICD10_2010'), +('J21', 'Acute bronchiolitis', 'ICD10_2010'), +('J21.0', 'Acute bronchiolitis due to respiratory syncytial virus', 'ICD10_2010'), +('J21.1', 'Acute bronchiolitis due to human metapneumovirus', 'ICD10_2010'), +('J21.8', 'Acute bronchiolitis due to other specified organisms', 'ICD10_2010'), +('J21.9', 'Acute bronchiolitis, unspecified', 'ICD10_2010'), +('J22', 'Unspecified acute lower respiratory infection', 'ICD10_2010'), +('J30', 'Vasomotor and allergic rhinitis', 'ICD10_2010'), +('J30.0', 'Vasomotor rhinitis', 'ICD10_2010'), +('J30.1', 'Allergic rhinitis due to pollen', 'ICD10_2010'), +('J30.2', 'Other seasonal allergic rhinitis', 'ICD10_2010'), +('J30.3', 'Other allergic rhinitis', 'ICD10_2010'), +('J30.4', 'Allergic rhinitis, unspecified', 'ICD10_2010'), +('J31', 'Chronic rhinitis, nasopharyngitis and pharyngitis', 'ICD10_2010'), +('J31.0', 'Chronic rhinitis', 'ICD10_2010'), +('J31.1', 'Chronic nasopharyngitis', 'ICD10_2010'), +('J31.2', 'Chronic pharyngitis', 'ICD10_2010'), +('J32', 'Chronic sinusitis', 'ICD10_2010'), +('J32.0', 'Chronic maxillary sinusitis', 'ICD10_2010'), +('J32.1', 'Chronic frontal sinusitis', 'ICD10_2010'), +('J32.2', 'Chronic ethmoidal sinusitis', 'ICD10_2010'), +('J32.3', 'Chronic sphenoidal sinusitis', 'ICD10_2010'), +('J32.4', 'Chronic pansinusitis', 'ICD10_2010'), +('J32.8', 'Other chronic sinusitis', 'ICD10_2010'), +('J32.9', 'Chronic sinusitis, unspecified', 'ICD10_2010'), +('J33', 'Nasal polyp', 'ICD10_2010'), +('J33.0', 'Polyp of nasal cavity', 'ICD10_2010'), +('J33.1', 'Polypoid sinus degeneration', 'ICD10_2010'), +('J33.8', 'Other polyp of sinus', 'ICD10_2010'), +('J33.9', 'Nasal polyp, unspecified', 'ICD10_2010'), +('J34', 'Other disorders of nose and nasal sinuses', 'ICD10_2010'), +('J34.0', 'Abscess, furuncle and carbuncle of nose', 'ICD10_2010'), +('J34.1', 'Cyst and mucocele of nose and nasal sinus', 'ICD10_2010'), +('J34.2', 'Deviated nasal septum', 'ICD10_2010'), +('J34.3', 'Hypertrophy of nasal turbinates', 'ICD10_2010'), +('J34.8', 'Other specified disorders of nose and nasal sinuses', 'ICD10_2010'), +('J35', 'Chronic diseases of tonsils and adenoids', 'ICD10_2010'), +('J35.0', 'Chronic tonsillitis', 'ICD10_2010'), +('J35.1', 'Hypertrophy of tonsils', 'ICD10_2010'), +('J35.2', 'Hypertrophy of adenoids', 'ICD10_2010'), +('J35.3', 'Hypertrophy of tonsils with hypertrophy of adenoids', 'ICD10_2010'), +('J35.8', 'Other chronic diseases of tonsils and adenoids', 'ICD10_2010'), +('J35.9', 'Chronic disease of tonsils and adenoids, unspecified', 'ICD10_2010'), +('J36', 'Peritonsillar abscess', 'ICD10_2010'), +('J37', 'Chronic laryngitis and laryngotracheitis', 'ICD10_2010'), +('J37.0', 'Chronic laryngitis', 'ICD10_2010'), +('J37.1', 'Chronic laryngotracheitis', 'ICD10_2010'), +('J38', 'Diseases of vocal cords and larynx, not elsewhere classified', 'ICD10_2010'), +('J38.0', 'Paralysis of vocal cords and larynx', 'ICD10_2010'), +('J38.1', 'Polyp of vocal cord and larynx', 'ICD10_2010'), +('J38.2', 'Nodules of vocal cords', 'ICD10_2010'), +('J38.3', 'Other diseases of vocal cords', 'ICD10_2010'), +('J38.4', 'Oedema of larynx', 'ICD10_2010'), +('J38.5', 'Laryngeal spasm', 'ICD10_2010'), +('J38.6', 'Stenosis of larynx', 'ICD10_2010'), +('J38.7', 'Other diseases of larynx', 'ICD10_2010'), +('J39', 'Other diseases of upper respiratory tract', 'ICD10_2010'), +('J39.0', 'Retropharyngeal and parapharyngeal abscess', 'ICD10_2010'), +('J39.1', 'Other abscess of pharynx', 'ICD10_2010'), +('J39.2', 'Other diseases of pharynx', 'ICD10_2010'), +('J39.3', 'Upper respiratory tract hypersensitivity reaction, site unspecified', 'ICD10_2010'), +('J39.8', 'Other specified diseases of upper respiratory tract', 'ICD10_2010'), +('J39.9', 'Disease of upper respiratory tract, unspecified', 'ICD10_2010'), +('J40', 'Bronchitis, not specified as acute or chronic', 'ICD10_2010'), +('J41', 'Simple and mucopurulent chronic bronchitis', 'ICD10_2010'), +('J41.0', 'Simple chronic bronchitis', 'ICD10_2010'), +('J41.1', 'Mucopurulent chronic bronchitis', 'ICD10_2010'), +('J41.8', 'Mixed simple and mucopurulent chronic bronchitis', 'ICD10_2010'), +('J42', 'Unspecified chronic bronchitis', 'ICD10_2010'), +('J43', 'Emphysema', 'ICD10_2010'), +('J43.0', 'Macleod\'s syndrome', 'ICD10_2010'), +('J43.1', 'Panlobular emphysema', 'ICD10_2010'), +('J43.2', 'Centrilobular emphysema', 'ICD10_2010'), +('J43.8', 'Other emphysema', 'ICD10_2010'), +('J43.9', 'Emphysema, unspecified', 'ICD10_2010'), +('J44', 'Other chronic obstructive pulmonary disease', 'ICD10_2010'), +('J44.0', 'Chronic obstructive pulmonary disease with acute lower respiratory infection', 'ICD10_2010'), +('J44.1', 'Chronic obstructive pulmonary disease with acute exacerbation, unspecified', 'ICD10_2010'), +('J44.8', 'Other specified chronic obstructive pulmonary disease', 'ICD10_2010'), +('J44.9', 'Chronic obstructive pulmonary disease, unspecified', 'ICD10_2010'), +('J45', 'Asthma', 'ICD10_2010'), +('J45.0', 'Predominantly allergic asthma', 'ICD10_2010'), +('J45.1', 'Nonallergic asthma', 'ICD10_2010'), +('J45.8', 'Mixed asthma', 'ICD10_2010'), +('J45.9', 'Asthma, unspecified', 'ICD10_2010'), +('J46', 'Status asthmaticus', 'ICD10_2010'), +('J47', 'Bronchiectasis', 'ICD10_2010'), +('J60', 'Coalworker\'s pneumoconiosis', 'ICD10_2010'), +('J61', 'Pneumoconiosis due to asbestos and other mineral fibres', 'ICD10_2010'), +('J62', 'Pneumoconiosis due to dust containing silica', 'ICD10_2010'), +('J62.0', 'Pneumoconiosis due to talc dust', 'ICD10_2010'), +('J62.8', 'Pneumoconiosis due to other dust containing silica', 'ICD10_2010'), +('J63', 'Pneumoconiosis due to other inorganic dusts', 'ICD10_2010'), +('J63.0', 'Aluminosis (of lung)', 'ICD10_2010'), +('J63.1', 'Bauxite fibrosis (of lung)', 'ICD10_2010'), +('J63.2', 'Berylliosis', 'ICD10_2010'), +('J63.3', 'Graphite fibrosis (of lung)', 'ICD10_2010'), +('J63.4', 'Siderosis', 'ICD10_2010'), +('J63.5', 'Stannosis', 'ICD10_2010'), +('J63.8', 'Pneumoconiosis due to other specified inorganic dusts', 'ICD10_2010'), +('J64', 'Unspecified pneumoconiosis', 'ICD10_2010'), +('J65', 'Pneumoconiosis associated with tuberculosis', 'ICD10_2010'), +('J66', 'Airway disease due to specific organic dust', 'ICD10_2010'), +('J66.0', 'Byssinosis', 'ICD10_2010'), +('J66.1', 'Flax-dresser\'s disease', 'ICD10_2010'), +('J66.2', 'Cannabinosis', 'ICD10_2010'), +('J66.8', 'Airway disease due to other specific organic dusts', 'ICD10_2010'), +('J67', 'Hypersensitivity pneumonitis due to organic dust', 'ICD10_2010'), +('J67.0', 'Farmer\'s lung', 'ICD10_2010'), +('J67.1', 'Bagassosis', 'ICD10_2010'), +('J67.2', 'Bird fancier\'s lung', 'ICD10_2010'), +('J67.3', 'Suberosis', 'ICD10_2010'), +('J67.4', 'Maltworker\'s lung', 'ICD10_2010'), +('J67.5', 'Mushroom-worker\'s lung', 'ICD10_2010'), +('J67.6', 'Maple-bark-stripper\'s lung', 'ICD10_2010'), +('J67.7', 'Air-conditioner and humidifier lung', 'ICD10_2010'), +('J67.8', 'Hypersensitivity pneumonitis due to other organic dusts', 'ICD10_2010'), +('J67.9', 'Hypersensitivity pneumonitis due to unspecified organic dust', 'ICD10_2010'), +('J68', 'Respiratory conditions due to inhalation of chemicals, gases, fumes and vapours', 'ICD10_2010'), +('J68.0', 'Bronchitis & pneumonitis due chemicals, gases fumes & vapours', 'ICD10_2010'), +('J68.1', 'Acute pulmon\'y oedema due chemicals, gases fumes & vapours', 'ICD10_2010'), +('J68.2', 'Upper respiratory inflammation due to chemicals gases, fumes and vapour not elsewhere classified', 'ICD10_2010'), +('J68.3', 'Other acute and subacute respiratory conditions due to chemicals, gases, fumes & vapours', 'ICD10_2010'), +('J68.4', 'Chronic respiratory conditions due chemicals, gases, fumes and vapours', 'ICD10_2010'), +('J68.8', 'Other respiratory conditions due chemicals, gases fumes & vapours', 'ICD10_2010'), +('J68.9', 'Unspecified respiratory conditions due chemicals, gases fumes & vapours', 'ICD10_2010'), +('J69', 'Pneumonitis due to solids and liquids', 'ICD10_2010'), +('J69.0', 'Pneumonitis due to food and vomit', 'ICD10_2010'), +('J69.1', 'Pneumonitis due to oils and essences', 'ICD10_2010'), +('J69.8', 'Pneumonitis due to other solids and liquids', 'ICD10_2010'), +('J70', 'Respiratory conditions due to other external agents', 'ICD10_2010'), +('J70.0', 'Acute pulmonary manifestations due to radiation', 'ICD10_2010'), +('J70.1', 'Chronic and other pulmonary manifestations due to radiation', 'ICD10_2010'), +('J70.2', 'Acute drug-induced interstitial lung disorders', 'ICD10_2010'), +('J70.3', 'Chronic drug-induced interstitial lung disorders', 'ICD10_2010'), +('J70.4', 'Drug-induced interstitial lung disorders, unspecified', 'ICD10_2010'), +('J70.8', 'Respiratory conditions due to other specified external agents', 'ICD10_2010'), +('J70.9', 'Respiratory conditions due to unspecified external agent', 'ICD10_2010'), +('J80', 'Adult respiratory distress syndrome', 'ICD10_2010'), +('J81', 'Pulmonary oedema', 'ICD10_2010'), +('J82', 'Pulmonary eosinophilia, not elsewhere classified', 'ICD10_2010'), +('J84', 'Other interstitial pulmonary diseases', 'ICD10_2010'), +('J84.0', 'Alveolar and parietoalveolar conditions', 'ICD10_2010'), +('J84.1', 'Other interstitial pulmonary diseases with fibrosis', 'ICD10_2010'), +('J84.8', 'Other specified interstitial pulmonary diseases', 'ICD10_2010'), +('J84.9', 'Interstitial pulmonary disease, unspecified', 'ICD10_2010'), +('J85', 'Abscess of lung and mediastinum', 'ICD10_2010'), +('J85.0', 'Gangrene and necrosis of lung', 'ICD10_2010'), +('J85.1', 'Abscess of lung with pneumonia', 'ICD10_2010'), +('J85.2', 'Abscess of lung without pneumonia', 'ICD10_2010'), +('J85.3', 'Abscess of mediastinum', 'ICD10_2010'), +('J86', 'Pyothorax', 'ICD10_2010'), +('J86.0', 'Pyothorax with fistula', 'ICD10_2010'), +('J86.9', 'Pyothorax without fistula', 'ICD10_2010'), +('J90', 'Pleural effusion, not elsewhere classified', 'ICD10_2010'), +('J91', 'Pleural effusion in conditions classified elsewhere', 'ICD10_2010'), +('J92', 'Pleural plaque', 'ICD10_2010'), +('J92.0', 'Pleural plaque with presence of asbestos', 'ICD10_2010'), +('J92.9', 'Pleural plaque without asbestos', 'ICD10_2010'), +('J93', 'Pneumothorax', 'ICD10_2010'), +('J93.0', 'Spontaneous tension pneumothorax', 'ICD10_2010'), +('J93.1', 'Other spontaneous pneumothorax', 'ICD10_2010'), +('J93.8', 'Other pneumothorax', 'ICD10_2010'), +('J93.9', 'Pneumothorax, unspecified', 'ICD10_2010'), +('J94', 'Other pleural conditions', 'ICD10_2010'), +('J94.0', 'Chylous effusion', 'ICD10_2010'), +('J94.1', 'Fibrothorax', 'ICD10_2010'), +('J94.2', 'Haemothorax', 'ICD10_2010'), +('J94.8', 'Other specified pleural conditions', 'ICD10_2010'), +('J94.9', 'Pleural condition, unspecified', 'ICD10_2010'), +('J95', 'Postprocedural respiratory disorders, not elsewhere classified', 'ICD10_2010'), +('J95.0', 'Tracheostomy malfunction', 'ICD10_2010'), +('J95.1', 'Acute pulmonary insufficiency following thoracic surgery', 'ICD10_2010'), +('J95.2', 'Acute pulmonary insufficiency following nonthoracic surgery', 'ICD10_2010'), +('J95.3', 'Chronic pulmonary insufficiency following surgery', 'ICD10_2010'), +('J95.4', 'Mendelson\'s syndrome', 'ICD10_2010'), +('J95.5', 'Postprocedural subglottic stenosis', 'ICD10_2010'), +('J95.8', 'Other postprocedural respiratory disorders', 'ICD10_2010'), +('J95.9', 'Postprocedural respiratory disorder, unspecified', 'ICD10_2010'), +('J96', 'Respiratory failure, not elsewhere classified', 'ICD10_2010'), +('J96.0', 'Acute respiratory failure', 'ICD10_2010'), +('J96.1', 'Chronic respiratory failure', 'ICD10_2010'), +('J96.9', 'Respiratory failure, unspecified', 'ICD10_2010'), +('J98', 'Other respiratory disorders', 'ICD10_2010'), +('J98.0', 'Diseases of bronchus, not elsewhere classified', 'ICD10_2010'), +('J98.1', 'Pulmonary collapse', 'ICD10_2010'), +('J98.2', 'Interstitial emphysema', 'ICD10_2010'), +('J98.3', 'Compensatory emphysema', 'ICD10_2010'), +('J98.4', 'Other disorders of lung', 'ICD10_2010'), +('J98.5', 'Diseases of mediastinum, not elsewhere classified', 'ICD10_2010'), +('J98.6', 'Disorders of diaphragm', 'ICD10_2010'), +('J98.8', 'Other specified respiratory disorders', 'ICD10_2010'), +('J98.9', 'Respiratory disorder, unspecified', 'ICD10_2010'), +('J99', 'Respiratory disorders in diseases classified elsewhere', 'ICD10_2010'), +('J99.0', 'Rheumatoid lung disease', 'ICD10_2010'), +('J99.1', 'Resp disorders in other diffuse connective tissue disorders', 'ICD10_2010'), +('J99.8', 'Respiratory disorders in other diseases classified elsewhere', 'ICD10_2010'), +('K00', 'Disorders of tooth development and eruption', 'ICD10_2010'), +('K00.0', 'Anodontia', 'ICD10_2010'), +('K00.1', 'Supernumerary teeth', 'ICD10_2010'), +('K00.2', 'Abnormalities of size and form of teeth', 'ICD10_2010'), +('K00.3', 'Mottled teeth', 'ICD10_2010'), +('K00.4', 'Disturbances in tooth formation', 'ICD10_2010'), +('K00.5', 'Hereditary disturbances in tooth structure nec', 'ICD10_2010'), +('K00.6', 'Disturbances in tooth eruption', 'ICD10_2010'), +('K00.7', 'Teething syndrome', 'ICD10_2010'), +('K00.8', 'Other disorders of tooth development', 'ICD10_2010'), +('K00.9', 'Disorder of tooth development, unspecified', 'ICD10_2010'), +('K01', 'Embedded and impacted teeth', 'ICD10_2010'), +('K01.0', 'Embedded teeth', 'ICD10_2010'), +('K01.1', 'Impacted teeth', 'ICD10_2010'), +('K02', 'Dental caries', 'ICD10_2010'), +('K02.0', 'Caries limited to enamel', 'ICD10_2010'), +('K02.1', 'Caries of dentine', 'ICD10_2010'), +('K02.2', 'Caries of cementum', 'ICD10_2010'), +('K02.3', 'Arrested dental caries', 'ICD10_2010'), +('K02.4', 'Odontoclasia', 'ICD10_2010'), +('K02.8', 'Other dental caries', 'ICD10_2010'), +('K02.9', 'Dental caries, unspecified', 'ICD10_2010'), +('K03', 'Other diseases of hard tissues of teeth', 'ICD10_2010'), +('K03.0', 'Excessive attrition of teeth', 'ICD10_2010'), +('K03.1', 'Abrasion of teeth', 'ICD10_2010'), +('K03.2', 'Erosion of teeth', 'ICD10_2010'), +('K03.3', 'Pathological resorption of teeth', 'ICD10_2010'), +('K03.4', 'Hypercementosis', 'ICD10_2010'), +('K03.5', 'Ankylosis of teeth', 'ICD10_2010'), +('K03.6', 'Deposits [accretions] on teeth', 'ICD10_2010'), +('K03.7', 'Posteruptive colour changes of dental hard tissues', 'ICD10_2010'), +('K03.8', 'Other specified diseases of hard tissues of teeth', 'ICD10_2010'), +('K03.9', 'Disease of hard tissues of teeth, unspecified', 'ICD10_2010'), +('K04', 'Diseases of pulp and periapical tissues', 'ICD10_2010'), +('K04.0', 'Pulpitis', 'ICD10_2010'), +('K04.1', 'Necrosis of pulp', 'ICD10_2010'), +('K04.2', 'Pulp degeneration', 'ICD10_2010'), +('K04.3', 'Abnormal hard tissue formation in pulp', 'ICD10_2010'), +('K04.4', 'Acute apical periodontitis of pulpal origin', 'ICD10_2010'), +('K04.5', 'Chronic apical periodontitis', 'ICD10_2010'), +('K04.6', 'Periapical abscess with sinus', 'ICD10_2010'), +('K04.7', 'Periapical abscess without sinus', 'ICD10_2010'), +('K04.8', 'Radicular cyst', 'ICD10_2010'), +('K04.9', 'Other and unspec diseases of pulp and periapical tissues', 'ICD10_2010'), +('K05', 'Gingivitis and periodontal diseases', 'ICD10_2010'), +('K05.0', 'Acute gingivitis', 'ICD10_2010'), +('K05.1', 'Chronic gingivitis', 'ICD10_2010'), +('K05.2', 'Acute periodontitis', 'ICD10_2010'), +('K05.3', 'Chronic periodontitis', 'ICD10_2010'), +('K05.4', 'Periodontosis', 'ICD10_2010'), +('K05.5', 'Other periodontal diseases', 'ICD10_2010'), +('K05.6', 'Periodontal disease, unspecified', 'ICD10_2010'), +('K06', 'Other disorders of gingiva and edentulous alveolar ridge', 'ICD10_2010'), +('K06.0', 'Gingival recession', 'ICD10_2010'), +('K06.1', 'Gingival enlargement', 'ICD10_2010'), +('K06.2', 'Gingival and edentulous alveolar ridge les assoc with traum', 'ICD10_2010'), +('K06.8', 'Other specified disorder of gingiva and edentulous alveolar ridge', 'ICD10_2010'), +('K06.9', 'Disorder of gingiva and edentulous alveolar ridge, unspec act', 'ICD10_2010'), +('K07', 'Dentofacial anomalies [including malocclusion]', 'ICD10_2010'), +('K07.0', 'Major anomalies of jaw size', 'ICD10_2010'), +('K07.1', 'Anomalies of jaw-cranial base relationship', 'ICD10_2010'), +('K07.2', 'Anomalies of dental arch relationship', 'ICD10_2010'), +('K07.3', 'Anomalies of tooth position', 'ICD10_2010'), +('K07.4', 'Malocclusion, unspecified', 'ICD10_2010'), +('K07.5', 'Dentofacial functional abnormalities', 'ICD10_2010'), +('K07.6', 'Temporomandibular joint disorders', 'ICD10_2010'), +('K07.8', 'Other dentofacial anomalies', 'ICD10_2010'), +('K07.9', 'Dentofacial anomaly, unspecified', 'ICD10_2010'), +('K08', 'Other disorders of teeth and supporting structures', 'ICD10_2010'), +('K08.0', 'Exfoliation of teeth due to systemic causes', 'ICD10_2010'), +('K08.1', 'Loss of teeth accident extraction or local periodontal dis', 'ICD10_2010'), +('K08.2', 'Atrophy of edentulous alveolar ridge', 'ICD10_2010'), +('K08.3', 'Retained dental root', 'ICD10_2010'), +('K08.8', 'Other specified disorders of teeth and supporting structures', 'ICD10_2010'), +('K08.9', 'Disorder of teeth and supporting structures, unspecified', 'ICD10_2010'), +('K09', 'Cysts of oral region, not elsewhere classified', 'ICD10_2010'), +('K09.0', 'Developmental odontogenic cysts', 'ICD10_2010'), +('K09.1', 'Developmental (nonodontogenic) cysts of oral region', 'ICD10_2010'), +('K09.2', 'Other cysts of jaw', 'ICD10_2010'), +('K09.8', 'Other cysts of oral region, not elsewhere classified', 'ICD10_2010'), +('K09.9', 'Cyst of oral region, unspecified', 'ICD10_2010'), +('K10', 'Other diseases of jaws', 'ICD10_2010'), +('K10.0', 'Developmental disorders of jaws', 'ICD10_2010'), +('K10.1', 'Giant cell granuloma, central', 'ICD10_2010'), +('K10.2', 'Inflammatory conditions of jaws', 'ICD10_2010'), +('K10.3', 'Alveolitis of jaws', 'ICD10_2010'), +('K10.8', 'Other specified diseases of jaws', 'ICD10_2010'), +('K10.9', 'Disease of jaws, unspecified', 'ICD10_2010'), +('K11', 'Diseases of salivary glands', 'ICD10_2010'), +('K11.0', 'Atrophy of salivary gland', 'ICD10_2010'), +('K11.1', 'Hypertrophy of salivary gland', 'ICD10_2010'), +('K11.2', 'Sialoadenitis', 'ICD10_2010'), +('K11.3', 'Abscess of salivary gland', 'ICD10_2010'), +('K11.4', 'Fistula of salivary gland', 'ICD10_2010'), +('K11.5', 'Sialolithiasis', 'ICD10_2010'), +('K11.6', 'Mucocele of salivary gland', 'ICD10_2010'), +('K11.7', 'Disturbances of salivary secretion', 'ICD10_2010'), +('K11.8', 'Other diseases of salivary glands', 'ICD10_2010'), +('K11.9', 'Disease of salivary gland, unspecified', 'ICD10_2010'), +('K12', 'Stomatitis and related lesions', 'ICD10_2010'), +('K12.0', 'Recurrent oral aphthae', 'ICD10_2010'), +('K12.1', 'Other forms of stomatitis', 'ICD10_2010'), +('K12.2', 'Cellulitis and abscess of mouth', 'ICD10_2010'), +('K12.3', 'Oral mucositis (ulcerative)', 'ICD10_2010'), +('K13', 'Other diseases of lip and oral mucosa', 'ICD10_2010'), +('K13.0', 'Diseases of lips', 'ICD10_2010'), +('K13.1', 'Cheek and lip biting', 'ICD10_2010'), +('K13.2', 'Leukoplakia and other disturbances of oral epithelium, including tongue', 'ICD10_2010'), +('K13.3', 'Hairy leukoplakia', 'ICD10_2010'), +('K13.4', 'Granuloma and granuloma-like lesions of oral mucosa', 'ICD10_2010'), +('K13.5', 'Oral submucous fibrosis', 'ICD10_2010'), +('K13.6', 'Irritative hyperplasia of oral mucosa', 'ICD10_2010'), +('K13.7', 'Other and unspecified lesions of oral mucosa', 'ICD10_2010'), +('K14', 'Diseases of tongue', 'ICD10_2010'), +('K14.0', 'Glossitis', 'ICD10_2010'), +('K14.1', 'Geographic tongue', 'ICD10_2010'), +('K14.2', 'Median rhomboid glossitis', 'ICD10_2010'), +('K14.3', 'Hypertrophy of tongue papillae', 'ICD10_2010'), +('K14.4', 'Atrophy of tongue papillae', 'ICD10_2010'), +('K14.5', 'Plicated tongue', 'ICD10_2010'), +('K14.6', 'Glossodynia', 'ICD10_2010'), +('K14.8', 'Other diseases of tongue', 'ICD10_2010'), +('K14.9', 'Disease of tongue, unspecified', 'ICD10_2010'), +('K20', 'Oesophagitis', 'ICD10_2010'), +('K21', 'Gastro-oesophageal reflux disease', 'ICD10_2010'), +('K21.0', 'Gastro-oesophageal reflux disease with oesophagitis', 'ICD10_2010'), +('K21.9', 'Gastro-oesophageal reflux disease without oesophagitis', 'ICD10_2010'), +('K22', 'Other diseases of oesophagus', 'ICD10_2010'), +('K22.0', 'Achalasia of cardia', 'ICD10_2010'), +('K22.1', 'Ulcer of oesophagus', 'ICD10_2010'), +('K22.2', 'Oesophageal obstruction', 'ICD10_2010'), +('K22.3', 'Perforation of oesophagus', 'ICD10_2010'), +('K22.4', 'Dyskinesia of oesophagus', 'ICD10_2010'), +('K22.5', 'Diverticulum of oesophagus, acquired', 'ICD10_2010'), +('K22.6', 'Gastro-oesophageal laceration-haemorrhage syndrome', 'ICD10_2010'), +('K22.7', 'Barrett\'s oesophagus', 'ICD10_2010'), +('K22.8', 'Other specified diseases of oesophagus', 'ICD10_2010'), +('K22.9', 'Disease of oesophagus, unspecified', 'ICD10_2010'), +('K23', 'Disorders of oesophagus in diseases classified elsewhere', 'ICD10_2010'), +('K23.0', 'Tuberculous oesophagitis', 'ICD10_2010'), +('K23.1', 'Megaoesophagus in chagas\' disease', 'ICD10_2010'), +('K23.8', 'Disorders of oesophagus in other diseases ec', 'ICD10_2010'), +('K25', 'Gastric ulcer', 'ICD10_2010'), +('K25.0', 'Gastric ulcer, acute with haemorrhage', 'ICD10_2010'), +('K25.1', 'Gastric ulcer, acute with perforation', 'ICD10_2010'), +('K25.2', 'Gastric ulcer, acute with both haemorrhage and perforation', 'ICD10_2010'), +('K25.3', 'Gastric ulcer, acute without haemorrhage or perforation', 'ICD10_2010'), +('K25.4', 'Gastric ulcer, chronic or unspecified with haemorrhage', 'ICD10_2010'), +('K25.5', 'Gastric ulcer, chronic or unspecified with perforation', 'ICD10_2010'), +('K25.6', 'Gastric ulcer, chronic or unspecified with both haemorrhage and perforation', 'ICD10_2010'), +('K25.7', 'Gastric ulcer, chronic without haemorrhage or perforation', 'ICD10_2010'), +('K25.9', 'Gastric ulcer, unspec as acute or chronic w\'out haemorrhage or perforation', 'ICD10_2010'), +('K26', 'Duodenal ulcer', 'ICD10_2010'), +('K26.0', 'Duodenal ulcer, acute with haemorrhage', 'ICD10_2010'), +('K26.1', 'Duodenal ulcer, acute with perforation', 'ICD10_2010'), +('K26.2', 'Duodenal ulcer, acute with both haemorrhage and perforation', 'ICD10_2010'), +('K26.3', 'Duodenal ulcer, acute without haemorrhage or perforation', 'ICD10_2010'), +('K26.4', 'Duodenal ulcer, chronic or unspecified with haemorrhage', 'ICD10_2010'); +INSERT INTO `icd10` (`ID_ICD10`, `Diagnosa`, `Versi_ICD10`) VALUES +('K26.5', 'Duodenal ulcer, chronic or unspecified with perforation', 'ICD10_2010'), +('K26.6', 'Chronic or unspecified with both haemorrhage and perforation', 'ICD10_2010'), +('K26.7', 'Duodenal ulcer, chronic without haemorrhage or perforation', 'ICD10_2010'), +('K26.9', 'Unspec as acute or chronic without haemorrhage or perforation', 'ICD10_2010'), +('K27', 'Peptic ulcer, site unspecified', 'ICD10_2010'), +('K27.0', 'Peptic ulcer, acute with haemorrhage', 'ICD10_2010'), +('K27.1', 'Peptic ulcer, acute with perforation', 'ICD10_2010'), +('K27.2', 'Peptic ulcer, acute with both haemorrhage and perforation', 'ICD10_2010'), +('K27.3', 'Peptic ulcer, acute without haemorrhage or perforation', 'ICD10_2010'), +('K27.4', 'Peptic ulcer, chronic or unspecified with haemorrhage', 'ICD10_2010'), +('K27.5', 'Peptic ulcer, chronic or unspecified with perforation', 'ICD10_2010'), +('K27.6', 'Peptic ulcer, chronic or unspecified with both haemorrhage and perforation', 'ICD10_2010'), +('K27.7', 'Peptic ulcer, chronic without haemorrhage or perforation', 'ICD10_2010'), +('K27.9', 'Peptic ulcer, unspec as acute or chronic without haemorrhage or perforation', 'ICD10_2010'), +('K28', 'Gastrojejunal ulcer', 'ICD10_2010'), +('K28.0', 'Gastrojejunal ulcer, acute with haemorrhage', 'ICD10_2010'), +('K28.1', 'Gastrojejunal ulcer, acute with perforation', 'ICD10_2010'), +('K28.2', 'Gastrojejunal ulcer, acute with both haemorrhage and perforation', 'ICD10_2010'), +('K28.3', 'Gastrojejunal ulcer, acute without haemorrhage or perforation', 'ICD10_2010'), +('K28.4', 'Gastrojejunal ulcer, chronic or unspecified with haemorrhage', 'ICD10_2010'), +('K28.5', 'Gastrojejunal ulcer, chronic or unspecified with perforation', 'ICD10_2010'), +('K28.6', 'Gastrojejunal ulcer, chronic or unspecified with both haemorrhage and perforation', 'ICD10_2010'), +('K28.7', 'Gastrojejunal ulcer, chronic without haemorrhage or perforation', 'ICD10_2010'), +('K28.9', 'Gastrojejunal ulcer, unspec as acute or chronic without haemorrhage or perforation', 'ICD10_2010'), +('K29', 'Gastritis and duodenitis', 'ICD10_2010'), +('K29.0', 'Acute haemorrhagic gastritis', 'ICD10_2010'), +('K29.1', 'Other acute gastritis', 'ICD10_2010'), +('K29.2', 'Alcoholic gastritis', 'ICD10_2010'), +('K29.3', 'Chronic superficial gastritis', 'ICD10_2010'), +('K29.4', 'Chronic atrophic gastritis', 'ICD10_2010'), +('K29.5', 'Chronic gastritis, unspecified', 'ICD10_2010'), +('K29.6', 'Other gastritis', 'ICD10_2010'), +('K29.7', 'Gastritis, unspecified', 'ICD10_2010'), +('K29.8', 'Duodenitis', 'ICD10_2010'), +('K29.9', 'Gastroduodenitis, unspecified', 'ICD10_2010'), +('K30', 'Dyspepsia', 'ICD10_2010'), +('K31', 'Other diseases of stomach and duodenum', 'ICD10_2010'), +('K31.0', 'Acute dilatation of stomach', 'ICD10_2010'), +('K31.1', 'Adult hypertrophic pyloric stenosis', 'ICD10_2010'), +('K31.2', 'Hourglass stricture and stenosis of stomach', 'ICD10_2010'), +('K31.3', 'Pylorospasm, not elsewhere classified', 'ICD10_2010'), +('K31.4', 'Gastric diverticulum', 'ICD10_2010'), +('K31.5', 'Obstruction of duodenum', 'ICD10_2010'), +('K31.6', 'Fistula of stomach and duodenum', 'ICD10_2010'), +('K31.7', 'Polyp of stomach and duodenum', 'ICD10_2010'), +('K31.8', 'Other specified diseases of stomach and duodenum', 'ICD10_2010'), +('K31.9', 'Disease of stomach and duodenum, unspecified', 'ICD10_2010'), +('K35', 'Acute appendicitis', 'ICD10_2010'), +('K35.2', 'Acute appendicitis with generalized peritonitis', 'ICD10_2010'), +('K35.3', 'Acute appendicitis with localized peritonitis', 'ICD10_2010'), +('K35.8', 'Acute appendicitis, other and unspecified', 'ICD10_2010'), +('K36', 'Other appendicitis', 'ICD10_2010'), +('K37', 'Unspecified appendicitis', 'ICD10_2010'), +('K38', 'Other diseases of appendix', 'ICD10_2010'), +('K38.0', 'Hyperplasia of appendix', 'ICD10_2010'), +('K38.1', 'Appendicular concretions', 'ICD10_2010'), +('K38.2', 'Diverticulum of appendix', 'ICD10_2010'), +('K38.3', 'Fistula of appendix', 'ICD10_2010'), +('K38.8', 'Other specified diseases of appendix', 'ICD10_2010'), +('K38.9', 'Disease of appendix, unspecified', 'ICD10_2010'), +('K40', 'Inguinal hernia', 'ICD10_2010'), +('K40.0', 'Bilateral inguinal hernia, with obstruction, without gangrene', 'ICD10_2010'), +('K40.1', 'Bilateral inguinal hernia, with gangrene', 'ICD10_2010'), +('K40.2', 'Bilateral inguinal hernia, without obstruction or gangrene', 'ICD10_2010'), +('K40.3', 'Unilateral or unspecified inguinal hernia, with obstruction, without gangrene', 'ICD10_2010'), +('K40.4', 'Unilateral or unspecified inguinal hernia, with gangrene', 'ICD10_2010'), +('K40.9', 'Unilateral or unspecified inguinal hernia, without obstruction or gangrene', 'ICD10_2010'), +('K41', 'Femoral hernia', 'ICD10_2010'), +('K41.0', 'Bilateral femoral hernia, with obstruction, without gangrene', 'ICD10_2010'), +('K41.1', 'Bilateral femoral hernia, with gangrene', 'ICD10_2010'), +('K41.2', 'Bilateral femoral hernia, without obstruction or gangrene', 'ICD10_2010'), +('K41.3', 'Unilateral or unspecified femoral hernia, with obstruction, without gangrene', 'ICD10_2010'), +('K41.4', 'Unilateral or unspecified femoral hernia, with gangrene', 'ICD10_2010'), +('K41.9', 'Unilateral or unspecified femoral hernia, without obstruction or gangrene', 'ICD10_2010'), +('K42', 'Umbilical hernia', 'ICD10_2010'), +('K42.0', 'Umbilical hernia with obstruction, without gangrene', 'ICD10_2010'), +('K42.1', 'Umbilical hernia with gangrene', 'ICD10_2010'), +('K42.9', 'Umbilical hernia without obstruction or gangrene', 'ICD10_2010'), +('K43', 'Ventral hernia', 'ICD10_2010'), +('K43.0', 'Ventral hernia with obstruction, without gangrene', 'ICD10_2010'), +('K43.1', 'Ventral hernia with gangrene', 'ICD10_2010'), +('K43.9', 'Ventral hernia without obstruction or gangrene', 'ICD10_2010'), +('K44', 'Diaphragmatic hernia', 'ICD10_2010'), +('K44.0', 'Diaphragmatic hernia with obstruction, without gangrene', 'ICD10_2010'), +('K44.1', 'Diaphragmatic hernia with gangrene', 'ICD10_2010'), +('K44.9', 'Diaphragmatic hernia without obstruction or gangrene', 'ICD10_2010'), +('K45', 'Other abdominal hernia', 'ICD10_2010'), +('K45.0', 'Other spec abdominal hernia with obstruct without gangrene', 'ICD10_2010'), +('K45.1', 'Other specified abdominal hernia with gangrene', 'ICD10_2010'), +('K45.8', 'Other specified abdominal hernia without obstruction or gangrene', 'ICD10_2010'), +('K46', 'Unspecified abdominal hernia', 'ICD10_2010'), +('K46.0', 'Unspecified abdominal hernia with obstruction without gangrene', 'ICD10_2010'), +('K46.1', 'Unspecified abdominal hernia with gangrene', 'ICD10_2010'), +('K46.9', 'Unspecified abdominal hernia without obstruction or gangrene', 'ICD10_2010'), +('K50', 'Crohn disease [regional enteritis]', 'ICD10_2010'), +('K50.0', 'Crohn\'s disease of small intestine', 'ICD10_2010'), +('K50.1', 'Crohn\'s disease of large intestine', 'ICD10_2010'), +('K50.8', 'Other crohn\'s disease', 'ICD10_2010'), +('K50.9', 'Crohn\'s disease, unspecified', 'ICD10_2010'), +('K51', 'Ulcerative colitis', 'ICD10_2010'), +('K51.0', 'Ulcerative (chronic) enterocolitis', 'ICD10_2010'), +('K51.1', 'Ulcerative (chronic) ileocolitis', 'ICD10_2010'), +('K51.2', 'Ulcerative (chronic) proctitis', 'ICD10_2010'), +('K51.3', 'Ulcerative (chronic) rectosigmoiditis', 'ICD10_2010'), +('K51.4', 'Pseudopolyposis of colon', 'ICD10_2010'), +('K51.5', 'Mucosal proctocolitis', 'ICD10_2010'), +('K51.8', 'Other ulcerative colitis', 'ICD10_2010'), +('K51.9', 'Ulcerative colitis, unspecified', 'ICD10_2010'), +('K52', 'Other noninfective gastroenteritis and colitis', 'ICD10_2010'), +('K52.0', 'Gastroenteritis and colitis due to radiation', 'ICD10_2010'), +('K52.1', 'Toxic gastroenteritis and colitis', 'ICD10_2010'), +('K52.2', 'Allergic and dietetic gastroenteritis and colitis', 'ICD10_2010'), +('K52.3', 'Indeterminate colitis', 'ICD10_2010'), +('K52.8', 'Other specified noninfective gastroenteritis and colitis', 'ICD10_2010'), +('K52.9', 'Noninfective gastroenteritis and colitis, unspecified', 'ICD10_2010'), +('K55', 'Vascular disorders of intestine', 'ICD10_2010'), +('K55.0', 'Acute vascular disorders of intestine', 'ICD10_2010'), +('K55.1', 'Chronic vascular disorders of intestine', 'ICD10_2010'), +('K55.2', 'Angiodysplasia of colon', 'ICD10_2010'), +('K55.8', 'Other vascular disorders of intestine', 'ICD10_2010'), +('K55.9', 'Vascular disorder of intestine, unspecified', 'ICD10_2010'), +('K56', 'Paralytic ileus and intestinal obstruction without hernia', 'ICD10_2010'), +('K56.0', 'Paralytic ileus', 'ICD10_2010'), +('K56.1', 'Intussusception', 'ICD10_2010'), +('K56.2', 'Volvulus', 'ICD10_2010'), +('K56.3', 'Gallstone ileus', 'ICD10_2010'), +('K56.4', 'Other impaction of intestine', 'ICD10_2010'), +('K56.5', 'Intestinal adhesions [bands] with obstruction', 'ICD10_2010'), +('K56.6', 'Other and unspecified intestinal obstruction', 'ICD10_2010'), +('K56.7', 'Ileus, unspecified', 'ICD10_2010'), +('K57', 'Diverticular disease of intestine', 'ICD10_2010'), +('K57.0', 'Diverticular disease of small intestine with perforation and abscess', 'ICD10_2010'), +('K57.1', 'Diverticular disease of small intestine without perforation or abscess', 'ICD10_2010'), +('K57.2', 'Diverticular disease of large intestine with perforation and abscess', 'ICD10_2010'), +('K57.3', 'Diverticular disease of large intestine without perforation or abscess', 'ICD10_2010'), +('K57.4', 'Diverticular disease of both small and large intestine with perforation and abscess', 'ICD10_2010'), +('K57.5', 'Diverticular disease of both small and large intestine without perforation or abscess', 'ICD10_2010'), +('K57.8', 'Diverticular disease of intestine, part unspecified, with perforation and abscess', 'ICD10_2010'), +('K57.9', 'Diverticular disease of intestine, part unspecified, without perforation or abscess', 'ICD10_2010'), +('K58', 'Irritable bowel syndrome', 'ICD10_2010'), +('K58.0', 'Irritable bowel syndrome with diarrhoea', 'ICD10_2010'), +('K58.9', 'Irritable bowel syndrome without diarrhoea', 'ICD10_2010'), +('K59', 'Other functional intestinal disorders', 'ICD10_2010'), +('K59.0', 'Constipation', 'ICD10_2010'), +('K59.1', 'Functional diarrhoea', 'ICD10_2010'), +('K59.2', 'Neurogenic bowel, not elsewhere classified', 'ICD10_2010'), +('K59.3', 'Megacolon, not elsewhere classified', 'ICD10_2010'), +('K59.4', 'Anal spasm', 'ICD10_2010'), +('K59.8', 'Other specified functional intestinal disorders', 'ICD10_2010'), +('K59.9', 'Functional intestinal disorder, unspecified', 'ICD10_2010'), +('K60', 'Fissure and fistula of anal and rectal regions', 'ICD10_2010'), +('K60.0', 'Acute anal fissure', 'ICD10_2010'), +('K60.1', 'Chronic anal fissure', 'ICD10_2010'), +('K60.2', 'Anal fissure, unspecified', 'ICD10_2010'), +('K60.3', 'Anal fistula', 'ICD10_2010'), +('K60.4', 'Rectal fistula', 'ICD10_2010'), +('K60.5', 'Anorectal fistula', 'ICD10_2010'), +('K61', 'Abscess of anal and rectal regions', 'ICD10_2010'), +('K61.0', 'Anal abscess', 'ICD10_2010'), +('K61.1', 'Rectal abscess', 'ICD10_2010'), +('K61.2', 'Anorectal abscess', 'ICD10_2010'), +('K61.3', 'Ischiorectal abscess', 'ICD10_2010'), +('K61.4', 'Intrasphincteric abscess', 'ICD10_2010'), +('K62', 'Other diseases of anus and rectum', 'ICD10_2010'), +('K62.0', 'Anal polyp', 'ICD10_2010'), +('K62.1', 'Rectal polyp', 'ICD10_2010'), +('K62.2', 'Anal prolapse', 'ICD10_2010'), +('K62.3', 'Rectal prolapse', 'ICD10_2010'), +('K62.4', 'Stenosis of anus and rectum', 'ICD10_2010'), +('K62.5', 'Haemorrhage of anus and rectum', 'ICD10_2010'), +('K62.6', 'Ulcer of anus and rectum', 'ICD10_2010'), +('K62.7', 'Radiation proctitis', 'ICD10_2010'), +('K62.8', 'Other specified diseases of anus and rectum', 'ICD10_2010'), +('K62.9', 'Disease of anus and rectum, unspecified', 'ICD10_2010'), +('K63', 'Other diseases of intestine', 'ICD10_2010'), +('K63.0', 'Abscess of intestine', 'ICD10_2010'), +('K63.1', 'Perforation of intestine (nontraumatic)', 'ICD10_2010'), +('K63.2', 'Fistula of intestine', 'ICD10_2010'), +('K63.3', 'Ulcer of intestine', 'ICD10_2010'), +('K63.4', 'Enteroptosis', 'ICD10_2010'), +('K63.5', 'Polyp of colon', 'ICD10_2010'), +('K63.8', 'Other specified diseases of intestine', 'ICD10_2010'), +('K63.9', 'Disease of intestine, unspecified', 'ICD10_2010'), +('K65', 'Peritonitis', 'ICD10_2010'), +('K65.0', 'Acute peritonitis', 'ICD10_2010'), +('K65.8', 'Other peritonitis', 'ICD10_2010'), +('K65.9', 'Peritonitis, unspecified', 'ICD10_2010'), +('K66', 'Other disorders of peritoneum', 'ICD10_2010'), +('K66.0', 'Peritoneal adhesions', 'ICD10_2010'), +('K66.1', 'Haemoperitoneum', 'ICD10_2010'), +('K66.8', 'Other specified disorders of peritoneum', 'ICD10_2010'), +('K66.9', 'Disorder of peritoneum, unspecified', 'ICD10_2010'), +('K67', 'Disorders of peritoneum in infectious diseases classified elsewhere', 'ICD10_2010'), +('K67.0', 'Chlamydial peritonitis', 'ICD10_2010'), +('K67.1', 'Gonococcal peritonitis', 'ICD10_2010'), +('K67.2', 'Syphilitic peritonitis', 'ICD10_2010'), +('K67.3', 'Tuberculous peritonitis', 'ICD10_2010'), +('K67.8', 'Other disorders of peritoneum in infectious diseases ec', 'ICD10_2010'), +('K70', 'Alcoholic liver disease', 'ICD10_2010'), +('K70.0', 'Alcoholic fatty liver', 'ICD10_2010'), +('K70.1', 'Alcoholic hepatitis', 'ICD10_2010'), +('K70.2', 'Alcoholic fibrosis and sclerosis of liver', 'ICD10_2010'), +('K70.3', 'Alcoholic cirrhosis of liver', 'ICD10_2010'), +('K70.4', 'Alcoholic hepatic failure', 'ICD10_2010'), +('K70.9', 'Alcoholic liver disease, unspecified', 'ICD10_2010'), +('K71', 'Toxic liver disease', 'ICD10_2010'), +('K71.0', 'Toxic liver disease with cholestasis', 'ICD10_2010'), +('K71.1', 'Toxic liver disease with hepatic necrosis', 'ICD10_2010'), +('K71.2', 'Toxic liver disease with acute hepatitis', 'ICD10_2010'), +('K71.3', 'Toxic liver disease with chronic persistent hepatitis', 'ICD10_2010'), +('K71.4', 'Toxic liver disease with chronic lobular hepatitis', 'ICD10_2010'), +('K71.5', 'Toxic liver disease with chronic active hepatitis', 'ICD10_2010'), +('K71.6', 'Toxic liver disease with hepatitis, not elsewhere classified', 'ICD10_2010'), +('K71.7', 'Toxic liver disease with fibrosis and cirrhosis of liver', 'ICD10_2010'), +('K71.8', 'Toxic liver disease with other disorders of liver', 'ICD10_2010'), +('K71.9', 'Toxic liver disease, unspecified', 'ICD10_2010'), +('K72', 'Hepatic failure, not elsewhere classified', 'ICD10_2010'), +('K72.0', 'Acute and subacute hepatic failure', 'ICD10_2010'), +('K72.1', 'Chronic hepatic failure', 'ICD10_2010'), +('K72.9', 'Hepatic failure, unspecified', 'ICD10_2010'), +('K73', 'Chronic hepatitis, not elsewhere classified', 'ICD10_2010'), +('K73.0', 'Chronic persistent hepatitis, not elsewhere classified', 'ICD10_2010'), +('K73.1', 'Chronic lobular hepatitis, not elsewhere classified', 'ICD10_2010'), +('K73.2', 'Chronic active hepatitis, not elsewhere classified', 'ICD10_2010'), +('K73.8', 'Other chronic hepatitis, not elsewhere classified', 'ICD10_2010'), +('K73.9', 'Chronic hepatitis, unspecified', 'ICD10_2010'), +('K74', 'Fibrosis and cirrhosis of liver', 'ICD10_2010'), +('K74.0', 'Hepatic fibrosis', 'ICD10_2010'), +('K74.1', 'Hepatic sclerosis', 'ICD10_2010'), +('K74.2', 'Hepatic fibrosis with hepatic sclerosis', 'ICD10_2010'), +('K74.3', 'Primary biliary cirrhosis', 'ICD10_2010'), +('K74.4', 'Secondary biliary cirrhosis', 'ICD10_2010'), +('K74.5', 'Biliary cirrhosis, unspecified', 'ICD10_2010'), +('K74.6', 'Other and unspecified cirrhosis of liver', 'ICD10_2010'), +('K75', 'Other inflammatory liver diseases', 'ICD10_2010'), +('K75.0', 'Abscess of liver', 'ICD10_2010'), +('K75.1', 'Phlebitis of portal vein', 'ICD10_2010'), +('K75.2', 'Nonspecific reactive hepatitis', 'ICD10_2010'), +('K75.3', 'Granulomatous hepatitis, not elsewhere classified', 'ICD10_2010'), +('K75.4', 'Autoimmune hepatitis', 'ICD10_2010'), +('K75.8', 'Other specified inflammatory liver diseases', 'ICD10_2010'), +('K75.9', 'Inflammatory liver disease, unspecified', 'ICD10_2010'), +('K76', 'Other diseases of liver', 'ICD10_2010'), +('K76.0', 'Fatty (change of) liver, not elsewhere classified', 'ICD10_2010'), +('K76.1', 'Chronic passive congestion of liver', 'ICD10_2010'), +('K76.2', 'Central haemorrhagic necrosis of liver', 'ICD10_2010'), +('K76.3', 'Infarction of liver', 'ICD10_2010'), +('K76.4', 'Peliosis hepatis', 'ICD10_2010'), +('K76.5', 'Hepatic veno-occlusive disease', 'ICD10_2010'), +('K76.6', 'Portal hypertension', 'ICD10_2010'), +('K76.7', 'Hepatorenal syndrome', 'ICD10_2010'), +('K76.8', 'Other specified diseases of liver', 'ICD10_2010'), +('K76.9', 'Liver disease, unspecified', 'ICD10_2010'), +('K77', 'Liver disorders in diseases classified elsewhere', 'ICD10_2010'), +('K77.0', 'Liver disorders in infectious and parasitic diseases classified elsewhere', 'ICD10_2010'), +('K77.8', 'Liver disorders in other diseases classified elsewhere', 'ICD10_2010'), +('K80', 'Cholelithiasis', 'ICD10_2010'), +('K80.0', 'Calculus of gallbladder with acute cholecystitis', 'ICD10_2010'), +('K80.1', 'Calculus of gallbladder with other cholecystitis', 'ICD10_2010'), +('K80.2', 'Calculus of gallbladder without cholecystitis', 'ICD10_2010'), +('K80.3', 'Calculus of bile duct with cholangitis', 'ICD10_2010'), +('K80.4', 'Calculus of bile duct with cholecystitis', 'ICD10_2010'), +('K80.5', 'Calculus of bile duct without cholangitis or cholecystitis', 'ICD10_2010'), +('K80.8', 'Other cholelithiasis', 'ICD10_2010'), +('K81', 'Cholecystitis', 'ICD10_2010'), +('K81.0', 'Acute cholecystitis', 'ICD10_2010'), +('K81.1', 'Chronic cholecystitis', 'ICD10_2010'), +('K81.8', 'Other cholecystitis', 'ICD10_2010'), +('K81.9', 'Cholecystitis, unspecified', 'ICD10_2010'), +('K82', 'Other diseases of gallbladder', 'ICD10_2010'), +('K82.0', 'Obstruction of gallbladder', 'ICD10_2010'), +('K82.1', 'Hydrops of gallbladder', 'ICD10_2010'), +('K82.2', 'Perforation of gallbladder', 'ICD10_2010'), +('K82.3', 'Fistula of gallbladder', 'ICD10_2010'), +('K82.4', 'Cholesterolosis of gallbladder', 'ICD10_2010'), +('K82.8', 'Other specified diseases of gallbladder', 'ICD10_2010'), +('K82.9', 'Disease of gallbladder, unspecified', 'ICD10_2010'), +('K83', 'Other diseases of biliary tract', 'ICD10_2010'), +('K83.0', 'Cholangitis', 'ICD10_2010'), +('K83.1', 'Obstruction of bile duct', 'ICD10_2010'), +('K83.2', 'Perforation of bile duct', 'ICD10_2010'), +('K83.3', 'Fistula of bile duct', 'ICD10_2010'), +('K83.4', 'Spasm of sphincter of oddi', 'ICD10_2010'), +('K83.5', 'Biliary cyst', 'ICD10_2010'), +('K83.8', 'Other specified diseases of biliary tract', 'ICD10_2010'), +('K83.9', 'Disease of biliary tract, unspecified', 'ICD10_2010'), +('K85', 'Acute pancreatitis', 'ICD10_2010'), +('K85.0', 'Idiopathic acute pancreatitis', 'ICD10_2010'), +('K85.1', 'Biliary acute pancreatitis', 'ICD10_2010'), +('K85.2', 'Alcohol-induced acute pancreatitis', 'ICD10_2010'), +('K85.3', 'Drug-induced acute pancreatitis', 'ICD10_2010'), +('K85.8', 'Other acute pancreatitis', 'ICD10_2010'), +('K85.9', 'Acute pancreatitis, unspecified', 'ICD10_2010'), +('K86', 'Other diseases of pancreas', 'ICD10_2010'), +('K86.0', 'Alcohol-induced chronic pancreatitis', 'ICD10_2010'), +('K86.1', 'Other chronic pancreatitis', 'ICD10_2010'), +('K86.2', 'Cyst of pancreas', 'ICD10_2010'), +('K86.3', 'Pseudocyst of pancreas', 'ICD10_2010'), +('K86.8', 'Other specified diseases of pancreas', 'ICD10_2010'), +('K86.9', 'Disease of pancreas, unspecified', 'ICD10_2010'), +('K87', 'Disorders of gallbladder, biliary tract and pancreas in diseases classified elsewhere', 'ICD10_2010'), +('K87.0', 'Disorders of gallbladder and biliary tract in diseases classified elsewhere', 'ICD10_2010'), +('K87.1', 'Disorders of pancreas in diseases classified elsewhere', 'ICD10_2010'), +('K90', 'Intestinal malabsorption', 'ICD10_2010'), +('K90.0', 'Coeliac disease', 'ICD10_2010'), +('K90.1', 'Tropical sprue', 'ICD10_2010'), +('K90.2', 'Blind loop syndrome, not elsewhere classified', 'ICD10_2010'), +('K90.3', 'Pancreatic steatorrhoea', 'ICD10_2010'), +('K90.4', 'Malabsorption due to intolerance, not elsewhere classified', 'ICD10_2010'), +('K90.8', 'Other intestinal malabsorption', 'ICD10_2010'), +('K90.9', 'Intestinal malabsorption, unspecified', 'ICD10_2010'), +('K91', 'Postprocedural disorders of digestive system, not elsewhere classified', 'ICD10_2010'), +('K91.0', 'Vomiting following gastrointestinal surgery', 'ICD10_2010'), +('K91.1', 'Postgastric surgery syndromes', 'ICD10_2010'), +('K91.2', 'Postsurgical malabsorption, not elsewhere classified', 'ICD10_2010'), +('K91.3', 'Postoperative intestinal obstruction', 'ICD10_2010'), +('K91.4', 'Colostomy and enterostomy malfunction', 'ICD10_2010'), +('K91.5', 'Postcholecystectomy syndrome', 'ICD10_2010'), +('K91.8', 'Other postprocedural disorders of digestive system, not elsewhere classified', 'ICD10_2010'), +('K91.9', 'Postprocedural disorder of digestive system, unspecified', 'ICD10_2010'), +('K92', 'Other diseases of digestive system', 'ICD10_2010'), +('K92.0', 'Haematemesis', 'ICD10_2010'), +('K92.1', 'Melaena', 'ICD10_2010'), +('K92.2', 'Gastrointestinal haemorrhage, unspecified', 'ICD10_2010'), +('K92.8', 'Other specified diseases of digestive system', 'ICD10_2010'), +('K92.9', 'Disease of digestive system, unspecified', 'ICD10_2010'), +('K93', 'Disorders of other digestive organs in diseases classified elsewhere', 'ICD10_2010'), +('K93.0', 'Tuberculous disorders of intestines, peritoneum and mesenteric glands', 'ICD10_2010'), +('K93.1', 'Megacolon in chagas\' disease', 'ICD10_2010'), +('K93.8', 'Disord of oth spec digestive organs in dis class elsewhere', 'ICD10_2010'), +('L00', 'Staphylococcal scalded skin syndrome', 'ICD10_2010'), +('L01', 'Impetigo', 'ICD10_2010'), +('L01.0', 'Impetigo [any organism] [any site]', 'ICD10_2010'), +('L01.1', 'Impetiginization of other dermatoses', 'ICD10_2010'), +('L02', 'Cutaneous abscess, furuncle and carbuncle', 'ICD10_2010'), +('L02.0', 'Cutaneous abscess, furuncle and carbuncle of face', 'ICD10_2010'), +('L02.1', 'Cutaneous abscess, furuncle and carbuncle of neck', 'ICD10_2010'), +('L02.2', 'Cutaneous abscess, furuncle and carbuncle of trunk', 'ICD10_2010'), +('L02.3', 'Cutaneous abscess, furuncle and carbuncle of buttock', 'ICD10_2010'), +('L02.4', 'Cutaneous abscess, furuncle and carbuncle of limb', 'ICD10_2010'), +('L02.8', 'Cutaneous abscess, furuncle and carbuncle of other sites', 'ICD10_2010'), +('L02.9', 'Cutaneous abscess, furuncle and carbuncle, unspecified', 'ICD10_2010'), +('L03', 'Cellulitis', 'ICD10_2010'), +('L03.0', 'Cellulitis of finger and toe', 'ICD10_2010'), +('L03.1', 'Cellulitis of other parts of limb', 'ICD10_2010'), +('L03.2', 'Cellulitis of face', 'ICD10_2010'), +('L03.3', 'Cellulitis of trunk', 'ICD10_2010'), +('L03.8', 'Cellulitis of other sites', 'ICD10_2010'), +('L03.9', 'Cellulitis, unspecified', 'ICD10_2010'), +('L04', 'Acute lymphadenitis', 'ICD10_2010'), +('L04.0', 'Acute lymphadenitis of face, head and neck', 'ICD10_2010'), +('L04.1', 'Acute lymphadenitis of trunk', 'ICD10_2010'), +('L04.2', 'Acute lymphadenitis of upper limb', 'ICD10_2010'), +('L04.3', 'Acute lymphadenitis of lower limb', 'ICD10_2010'), +('L04.8', 'Acute lymphadenitis of other sites', 'ICD10_2010'), +('L04.9', 'Acute lymphadenitis, unspecified', 'ICD10_2010'), +('L05', 'Pilonidal cyst', 'ICD10_2010'), +('L05.0', 'Pilonidal cyst with abscess', 'ICD10_2010'), +('L05.9', 'Pilonidal cyst without abscess', 'ICD10_2010'), +('L08', 'Other local infections of skin and subcutaneous tissue', 'ICD10_2010'), +('L08.0', 'Pyoderma', 'ICD10_2010'), +('L08.1', 'Erythrasma', 'ICD10_2010'), +('L08.8', 'Other specified local infections of skin and subcutaneous tissue', 'ICD10_2010'), +('L08.9', 'Local infection of skin and subcutaneous tissue, unspecified', 'ICD10_2010'), +('L10', 'Pemphigus', 'ICD10_2010'), +('L10.0', 'Pemphigus vulgaris', 'ICD10_2010'), +('L10.1', 'Pemphigus vegetans', 'ICD10_2010'), +('L10.2', 'Pemphigus foliaceus', 'ICD10_2010'), +('L10.3', 'Brazilian pemphigus [fogo selvagem]', 'ICD10_2010'), +('L10.4', 'Pemphigus erythematosus', 'ICD10_2010'), +('L10.5', 'Drug induced pemphigus', 'ICD10_2010'), +('L10.8', 'Other pemphigus', 'ICD10_2010'), +('L10.9', 'Pemphigus, unspecified', 'ICD10_2010'), +('L11', 'Other acantholytic disorders', 'ICD10_2010'), +('L11.0', 'Acquired keratosis follicularis', 'ICD10_2010'), +('L11.1', 'Transient acantholytic dermatosis [grover]', 'ICD10_2010'), +('L11.8', 'Other specified acantholytic disorders', 'ICD10_2010'), +('L11.9', 'Acantholytic disorder, unspecified', 'ICD10_2010'), +('L12', 'Pemphigoid', 'ICD10_2010'), +('L12.0', 'Bullous pemphigoid', 'ICD10_2010'), +('L12.1', 'Cicatricial pemphigoid', 'ICD10_2010'), +('L12.2', 'Chronic bullous disease of childhood', 'ICD10_2010'), +('L12.3', 'Acquired epidermolysis bullosa', 'ICD10_2010'), +('L12.8', 'Other pemphigoid', 'ICD10_2010'), +('L12.9', 'Pemphigoid, unspecified', 'ICD10_2010'), +('L13', 'Other bullous disorders', 'ICD10_2010'), +('L13.0', 'Dermatitis herpetiformis', 'ICD10_2010'), +('L13.1', 'Subcorneal pustular dermatitis', 'ICD10_2010'), +('L13.8', 'Other specified bullous disorders', 'ICD10_2010'), +('L13.9', 'Bullous disorder, unspecified', 'ICD10_2010'), +('L14', 'Bullous disorders in diseases classified elsewhere', 'ICD10_2010'), +('L20', 'Atopic dermatitis', 'ICD10_2010'), +('L20.0', 'Besnier\'s prurigo', 'ICD10_2010'), +('L20.8', 'Other atopic dermatitis', 'ICD10_2010'), +('L20.9', 'Atopic dermatitis, unspecified', 'ICD10_2010'), +('L21', 'Seborrhoeic dermatitis', 'ICD10_2010'), +('L21.0', 'Seborrhoea capitis', 'ICD10_2010'), +('L21.1', 'Seborrhoeic infantile dermatitis', 'ICD10_2010'), +('L21.8', 'Other seborrhoeic dermatitis', 'ICD10_2010'), +('L21.9', 'Seborrhoeic dermatitis, unspecified', 'ICD10_2010'), +('L22', 'Diaper [napkin] dermatitis', 'ICD10_2010'), +('L23', 'Allergic contact dermatitis', 'ICD10_2010'), +('L23.0', 'Allergic contact dermatitis due to metals', 'ICD10_2010'), +('L23.1', 'Allergic contact dermatitis due to adhesives', 'ICD10_2010'), +('L23.2', 'Allergic contact dermatitis due to cosmetics', 'ICD10_2010'), +('L23.3', 'Allergic contact dermatitis due drugs in contact with skin', 'ICD10_2010'), +('L23.4', 'Allergic contact dermatitis due to dyes', 'ICD10_2010'), +('L23.5', 'Allergic contact dermatitis due to other chemical products', 'ICD10_2010'), +('L23.6', 'Allergic contact dermatitis due to food in contact with skin', 'ICD10_2010'), +('L23.7', 'Allergic contact dermatitis due to plants, except food', 'ICD10_2010'), +('L23.8', 'Allergic contact dermatitis due to other agents', 'ICD10_2010'), +('L23.9', 'Allergic contact dermatitis, unspecified cause', 'ICD10_2010'), +('L24', 'Irritant contact dermatitis', 'ICD10_2010'), +('L24.0', 'Irritant contact dermatitis due to detergents', 'ICD10_2010'), +('L24.1', 'Irritant contact dermatitis due to oils and greases', 'ICD10_2010'), +('L24.2', 'Irritant contact dermatitis due to solvents', 'ICD10_2010'), +('L24.3', 'Irritant contact dermatitis due to cosmetics', 'ICD10_2010'), +('L24.4', 'Irritant contact dermatitis due drugs in contact with skin', 'ICD10_2010'), +('L24.5', 'Irritant contact dermatitis due to other chemical products', 'ICD10_2010'), +('L24.6', 'Irritant contact dermatitis due to food in contact with skin', 'ICD10_2010'), +('L24.7', 'Irritant contact dermatitis due to plants, except food', 'ICD10_2010'), +('L24.8', 'Irritant contact dermatitis due to other agents', 'ICD10_2010'), +('L24.9', 'Irritant contact dermatitis, unspecified cause', 'ICD10_2010'), +('L25', 'Unspecified contact dermatitis', 'ICD10_2010'), +('L25.0', 'Unspecified contact dermatitis due to cosmetics', 'ICD10_2010'), +('L25.1', 'Unspecified contact dermatitis due to drugs in contact with skin', 'ICD10_2010'), +('L25.2', 'Unspecified contact dermatitis due to dyes', 'ICD10_2010'), +('L25.3', 'Unspecified contact dermatitis due to other chemical products', 'ICD10_2010'), +('L25.4', 'Unspecified contact dermatitis due to food in contact with skin', 'ICD10_2010'), +('L25.5', 'Unspecified contact dermatitis due to plants, except food', 'ICD10_2010'), +('L25.8', 'Unspecified contact dermatitis due to other agents', 'ICD10_2010'), +('L25.9', 'Unspecified contact dermatitis, unspecified cause', 'ICD10_2010'), +('L26', 'Exfoliative dermatitis', 'ICD10_2010'), +('L27', 'Dermatitis due to substances taken internally', 'ICD10_2010'), +('L27.0', 'Generalized skin eruption due to drugs and medicaments', 'ICD10_2010'), +('L27.1', 'Localized skin eruption due to drugs and medicaments', 'ICD10_2010'), +('L27.2', 'Dermatitis due to ingested food', 'ICD10_2010'), +('L27.8', 'Dermatitis due to other substances taken internally', 'ICD10_2010'), +('L27.9', 'Dermatitis due to unspecified substance taken internally', 'ICD10_2010'), +('L28', 'Lichen simplex chronicus and prurigo', 'ICD10_2010'), +('L28.0', 'Lichen simplex chronicus', 'ICD10_2010'), +('L28.1', 'Prurigo nodularis', 'ICD10_2010'), +('L28.2', 'Other prurigo', 'ICD10_2010'), +('L29', 'Pruritus', 'ICD10_2010'), +('L29.0', 'Pruritus ani', 'ICD10_2010'), +('L29.1', 'Pruritus scroti', 'ICD10_2010'), +('L29.2', 'Pruritus vulvae', 'ICD10_2010'), +('L29.3', 'Anogenital pruritus, unspecified', 'ICD10_2010'), +('L29.8', 'Other pruritus', 'ICD10_2010'), +('L29.9', 'Pruritus, unspecified', 'ICD10_2010'), +('L30', 'Other dermatitis', 'ICD10_2010'), +('L30.0', 'Nummular dermatitis', 'ICD10_2010'), +('L30.1', 'Dyshidrosis [pompholyx]', 'ICD10_2010'), +('L30.2', 'Cutaneous autosensitization', 'ICD10_2010'), +('L30.3', 'Infective dermatitis', 'ICD10_2010'), +('L30.4', 'Erythema intertrigo', 'ICD10_2010'), +('L30.5', 'Pityriasis alba', 'ICD10_2010'), +('L30.8', 'Other specified dermatitis', 'ICD10_2010'), +('L30.9', 'Dermatitis, unspecified', 'ICD10_2010'), +('L40', 'Psoriasis', 'ICD10_2010'), +('L40.0', 'Psoriasis vulgaris', 'ICD10_2010'), +('L40.1', 'Generalized pustular psoriasis', 'ICD10_2010'), +('L40.2', 'Acrodermatitis continua', 'ICD10_2010'), +('L40.3', 'Pustulosis palmaris et plantaris', 'ICD10_2010'), +('L40.4', 'Guttate psoriasis', 'ICD10_2010'), +('L40.5', 'Arthropathic psoriasis', 'ICD10_2010'), +('L40.8', 'Other psoriasis', 'ICD10_2010'), +('L40.9', 'Psoriasis, unspecified', 'ICD10_2010'), +('L41', 'Parapsoriasis', 'ICD10_2010'), +('L41.0', 'Pityriasis lichenoides et varioliformis acuta', 'ICD10_2010'), +('L41.1', 'Pityriasis lichenoides chronica', 'ICD10_2010'), +('L41.2', 'Lymphomatoid papulosis', 'ICD10_2010'), +('L41.3', 'Small plaque parapsoriasis', 'ICD10_2010'), +('L41.4', 'Large plaque parapsoriasis', 'ICD10_2010'), +('L41.5', 'Retiform parapsoriasis', 'ICD10_2010'), +('L41.8', 'Other parapsoriasis', 'ICD10_2010'), +('L41.9', 'Parapsoriasis, unspecified', 'ICD10_2010'), +('L42', 'Pityriasis rosea', 'ICD10_2010'), +('L43', 'Lichen planus', 'ICD10_2010'), +('L43.0', 'Hypertrophic lichen planus', 'ICD10_2010'), +('L43.1', 'Bullous lichen planus', 'ICD10_2010'), +('L43.2', 'Lichenoid drug reaction', 'ICD10_2010'), +('L43.3', 'Subacute (active) lichen planus', 'ICD10_2010'), +('L43.8', 'Other lichen planus', 'ICD10_2010'), +('L43.9', 'Lichen planus, unspecified', 'ICD10_2010'), +('L44', 'Other papulosquamous disorders', 'ICD10_2010'), +('L44.0', 'Pityriasis rubra pilaris', 'ICD10_2010'), +('L44.1', 'Lichen nitidus', 'ICD10_2010'), +('L44.2', 'Lichen striatus', 'ICD10_2010'), +('L44.3', 'Lichen ruber moniliformis', 'ICD10_2010'), +('L44.4', 'Infantile papular acrodermatitis [giannotti-crosti]', 'ICD10_2010'), +('L44.8', 'Other specified papulosquamous disorders', 'ICD10_2010'), +('L44.9', 'Papulosquamous disorder, unspecified', 'ICD10_2010'), +('L45', 'Papulosquamous disorders in diseases classif elsewhere', 'ICD10_2010'), +('L50', 'Urticaria', 'ICD10_2010'), +('L50.0', 'Allergic urticaria', 'ICD10_2010'), +('L50.1', 'Idiopathic urticaria', 'ICD10_2010'), +('L50.2', 'Urticaria due to cold and heat', 'ICD10_2010'), +('L50.3', 'Dermatographic urticaria', 'ICD10_2010'), +('L50.4', 'Vibratory urticaria', 'ICD10_2010'), +('L50.5', 'Cholinergic urticaria', 'ICD10_2010'), +('L50.6', 'Contact urticaria', 'ICD10_2010'), +('L50.8', 'Other urticaria', 'ICD10_2010'), +('L50.9', 'Urticaria, unspecified', 'ICD10_2010'), +('L51', 'Erythema multiforme', 'ICD10_2010'), +('L51.0', 'Nonbullous erythema multiforme', 'ICD10_2010'), +('L51.1', 'Bullous erythema multiforme', 'ICD10_2010'), +('L51.2', 'Toxic epidermal necrolysis [lyell]', 'ICD10_2010'), +('L51.8', 'Other erythema multiforme', 'ICD10_2010'), +('L51.9', 'Erythema multiforme, unspecified', 'ICD10_2010'), +('L52', 'Erythema nodosum', 'ICD10_2010'), +('L53', 'Other erythematous conditions', 'ICD10_2010'), +('L53.0', 'Toxic erythema', 'ICD10_2010'), +('L53.1', 'Erythema annulare centrifugum', 'ICD10_2010'), +('L53.2', 'Erythema marginatum', 'ICD10_2010'), +('L53.3', 'Other chronic figurate erythema', 'ICD10_2010'), +('L53.8', 'Other specified erythematous conditions', 'ICD10_2010'), +('L53.9', 'Erythematous condition, unspecified', 'ICD10_2010'), +('L54', 'Erythema in diseases classified elsewhere', 'ICD10_2010'), +('L54.0', 'Erythema marginatum in acute rheumatic fever', 'ICD10_2010'), +('L54.8', 'Erythema in other diseases classified elsewhere', 'ICD10_2010'), +('L55', 'Sunburn', 'ICD10_2010'), +('L55.0', 'Sunburn of first degree', 'ICD10_2010'), +('L55.1', 'Sunburn of second degree', 'ICD10_2010'), +('L55.2', 'Sunburn of third degree', 'ICD10_2010'), +('L55.8', 'Other sunburn', 'ICD10_2010'), +('L55.9', 'Sunburn, unspecified', 'ICD10_2010'), +('L56', 'Other acute skin changes due to ultraviolet radiation', 'ICD10_2010'), +('L56.0', 'Drug phototoxic response', 'ICD10_2010'), +('L56.1', 'Drug photoallergic response', 'ICD10_2010'), +('L56.2', 'Photocontact dermatitis [berloque dermatitis]', 'ICD10_2010'), +('L56.3', 'Solar urticaria', 'ICD10_2010'), +('L56.4', 'Polymorphous light eruption', 'ICD10_2010'), +('L56.8', 'Other specified acute skin changes due to ultraviolet radiation', 'ICD10_2010'), +('L56.9', 'Acute skin change due to ultraviolet radiation, unspecified', 'ICD10_2010'), +('L57', 'Skin changes due to chronic exposure to nonionizing radiation', 'ICD10_2010'), +('L57.0', 'Actinic keratosis', 'ICD10_2010'), +('L57.1', 'Actinic reticuloid', 'ICD10_2010'), +('L57.2', 'Cutis rhomboidalis nuchae', 'ICD10_2010'), +('L57.3', 'Poikiloderma of civatte', 'ICD10_2010'), +('L57.4', 'Cutis laxa senilis', 'ICD10_2010'), +('L57.5', 'Actinic granuloma', 'ICD10_2010'), +('L57.8', 'Other skin change due chronic exposure to nonionizing radiation', 'ICD10_2010'), +('L57.9', 'Skin change due chronic exposure to nonionizing radiation, unspecified', 'ICD10_2010'), +('L58', 'Radiodermatitis', 'ICD10_2010'), +('L58.0', 'Acute radiodermatitis', 'ICD10_2010'), +('L58.1', 'Chronic radiodermatitis', 'ICD10_2010'), +('L58.9', 'Radiodermatitis, unspecified', 'ICD10_2010'), +('L59', 'Other disorders of skin and subcutaneous tissue related to radiation', 'ICD10_2010'), +('L59.0', 'Erythema ab igne [dermatitis ab igne]', 'ICD10_2010'), +('L59.8', 'Other specified disorders of skin and subcutaneous tissue related to radiation', 'ICD10_2010'), +('L59.9', 'Disorder of skin and subcutaneous tissue related to radiation unspecified', 'ICD10_2010'), +('L60', 'Nail disorders', 'ICD10_2010'), +('L60.0', 'Ingrowing nail', 'ICD10_2010'), +('L60.1', 'Onycholysis', 'ICD10_2010'), +('L60.2', 'Onychogryphosis', 'ICD10_2010'), +('L60.3', 'Nail dystrophy', 'ICD10_2010'), +('L60.4', 'Beau\'s lines', 'ICD10_2010'), +('L60.5', 'Yellow nail syndrome', 'ICD10_2010'), +('L60.8', 'Other nail disorders', 'ICD10_2010'), +('L60.9', 'Nail disorder, unspecified', 'ICD10_2010'), +('L62', 'Nail disorders in diseases classified elsewhere', 'ICD10_2010'), +('L62.0', 'Clubbed nail pachydermoperiostosis', 'ICD10_2010'), +('L62.8', 'Nail disorders in other diseases classified elsewhere', 'ICD10_2010'), +('L63', 'Alopecia areata', 'ICD10_2010'), +('L63.0', 'Alopecia (capitis) totalis', 'ICD10_2010'), +('L63.1', 'Alopecia universalis', 'ICD10_2010'), +('L63.2', 'Ophiasis', 'ICD10_2010'), +('L63.8', 'Other alopecia areata', 'ICD10_2010'), +('L63.9', 'Alopecia areata, unspecified', 'ICD10_2010'), +('L64', 'Androgenic alopecia', 'ICD10_2010'), +('L64.0', 'Drug-induced androgenic alopecia', 'ICD10_2010'), +('L64.8', 'Other androgenic alopecia', 'ICD10_2010'), +('L64.9', 'Androgenic alopecia, unspecified', 'ICD10_2010'), +('L65', 'Other nonscarring hair loss', 'ICD10_2010'), +('L65.0', 'Telogen effluvium', 'ICD10_2010'), +('L65.1', 'Anagen effluvium', 'ICD10_2010'), +('L65.2', 'Alopecia mucinosa', 'ICD10_2010'), +('L65.8', 'Other specified nonscarring hair loss', 'ICD10_2010'), +('L65.9', 'Nonscarring hair loss, unspecified', 'ICD10_2010'), +('L66', 'Cicatricial alopecia [scarring hair loss]', 'ICD10_2010'), +('L66.0', 'Pseudopelade', 'ICD10_2010'), +('L66.1', 'Lichen planopilaris', 'ICD10_2010'), +('L66.2', 'Folliculitis decalvans', 'ICD10_2010'), +('L66.3', 'Perifolliculitis capitis abscedens', 'ICD10_2010'), +('L66.4', 'Folliculitis ulerythematosa reticulata', 'ICD10_2010'), +('L66.8', 'Other cicatricial alopecia', 'ICD10_2010'), +('L66.9', 'Cicatricial alopecia, unspecified', 'ICD10_2010'), +('L67', 'Hair colour and hair shaft abnormalities', 'ICD10_2010'), +('L67.0', 'Trichorrhexis nodosa', 'ICD10_2010'), +('L67.1', 'Variations in hair colour', 'ICD10_2010'), +('L67.8', 'Other hair colour and hair shaft abnormalities', 'ICD10_2010'), +('L67.9', 'Hair colour and hair shaft abnormality, unspecified', 'ICD10_2010'), +('L68', 'Hypertrichosis', 'ICD10_2010'), +('L68.0', 'Hirsutism', 'ICD10_2010'), +('L68.1', 'Acquired hypertrichosis lanuginosa', 'ICD10_2010'), +('L68.2', 'Localized hypertrichosis', 'ICD10_2010'), +('L68.3', 'Polytrichia', 'ICD10_2010'), +('L68.8', 'Other hypertrichosis', 'ICD10_2010'), +('L68.9', 'Hypertrichosis, unspecified', 'ICD10_2010'), +('L70', 'Acne', 'ICD10_2010'), +('L70.0', 'Acne vulgaris', 'ICD10_2010'), +('L70.1', 'Acne conglobata', 'ICD10_2010'), +('L70.2', 'Acne varioliformis', 'ICD10_2010'), +('L70.3', 'Acne tropica', 'ICD10_2010'), +('L70.4', 'Infantile acne', 'ICD10_2010'), +('L70.5', 'Acn', 'ICD10_2010'), +('L70.8', 'Other acne', 'ICD10_2010'), +('L70.9', 'Acne, unspecified', 'ICD10_2010'), +('L71', 'Rosacea', 'ICD10_2010'), +('L71.0', 'Perioral dermatitis', 'ICD10_2010'), +('L71.1', 'Rhinophyma', 'ICD10_2010'), +('L71.8', 'Other rosacea', 'ICD10_2010'), +('L71.9', 'Rosacea, unspecified', 'ICD10_2010'), +('L72', 'Follicular cysts of skin and subcutaneous tissue', 'ICD10_2010'), +('L72.0', 'Epidermal cyst', 'ICD10_2010'), +('L72.1', 'Trichilemmal cyst', 'ICD10_2010'), +('L72.2', 'Steatocystoma multiplex', 'ICD10_2010'), +('L72.8', 'Other follicular cysts of skin and subcutaneous tissue', 'ICD10_2010'), +('L72.9', 'Follicular cyst of skin and subcutaneous tissue, unspecified', 'ICD10_2010'), +('L73', 'Other follicular disorders', 'ICD10_2010'), +('L73.0', 'Acne keloid', 'ICD10_2010'), +('L73.1', 'Pseudofolliculitis barbae', 'ICD10_2010'), +('L73.2', 'Hidradenitis suppurativa', 'ICD10_2010'), +('L73.8', 'Other specified follicular disorders', 'ICD10_2010'), +('L73.9', 'Follicular disorder, unspecified', 'ICD10_2010'), +('L74', 'Eccrine sweat disorders', 'ICD10_2010'), +('L74.0', 'Miliaria rubra', 'ICD10_2010'), +('L74.1', 'Miliaria crystallina', 'ICD10_2010'), +('L74.2', 'Miliaria profunda', 'ICD10_2010'), +('L74.3', 'Miliaria, unspecified', 'ICD10_2010'), +('L74.4', 'Anhidrosis', 'ICD10_2010'), +('L74.8', 'Other eccrine sweat disorders', 'ICD10_2010'), +('L74.9', 'Eccrine sweat disorder, unspecified', 'ICD10_2010'), +('L75', 'Apocrine sweat disorders', 'ICD10_2010'), +('L75.0', 'Bromhidrosis', 'ICD10_2010'), +('L75.1', 'Chromhidrosis', 'ICD10_2010'), +('L75.2', 'Apocrine miliaria', 'ICD10_2010'), +('L75.8', 'Other apocrine sweat disorders', 'ICD10_2010'), +('L75.9', 'Apocrine sweat disorder, unspecified', 'ICD10_2010'), +('L80', 'Vitiligo', 'ICD10_2010'), +('L81', 'Other disorders of pigmentation', 'ICD10_2010'), +('L81.0', 'Postinflammatory hyperpigmentation', 'ICD10_2010'), +('L81.1', 'Chloasma', 'ICD10_2010'), +('L81.2', 'Freckles', 'ICD10_2010'), +('L81.3', 'Cafe au Lait Spots', 'ICD10_2010'), +('L81.4', 'Other melanin hyperpigmentation', 'ICD10_2010'), +('L81.5', 'Leukoderma, not elsewhere classified', 'ICD10_2010'), +('L81.6', 'Other disorders of diminished melanin formation', 'ICD10_2010'), +('L81.7', 'Pigmented purpuric dermatosis', 'ICD10_2010'), +('L81.8', 'Other specified disorders of pigmentation', 'ICD10_2010'), +('L81.9', 'Disorder of pigmentation, unspecified', 'ICD10_2010'), +('L82', 'Seborrhoeic keratosis', 'ICD10_2010'), +('L83', 'Acanthosis nigricans', 'ICD10_2010'), +('L84', 'Corns and callosities', 'ICD10_2010'), +('L85', 'Other epidermal thickening', 'ICD10_2010'), +('L85.0', 'Acquired ichthyosis', 'ICD10_2010'), +('L85.1', 'Acquired keratosis [keratoderma] palmaris et plantaris', 'ICD10_2010'), +('L85.2', 'Keratosis punctata (palmaris et plantaris)', 'ICD10_2010'), +('L85.3', 'Xerosis cutis', 'ICD10_2010'), +('L85.8', 'Other specified epidermal thickening', 'ICD10_2010'), +('L85.9', 'Epidermal thickening, unspecified', 'ICD10_2010'), +('L86', 'Keratoderma in diseases classified elsewhere', 'ICD10_2010'), +('L87', 'Transepidermal elimination disorders', 'ICD10_2010'), +('L87.0', 'Keratosis foll et parafoicularis cutem penetrans [kyrle]', 'ICD10_2010'), +('L87.1', 'Reactive perforating collagenosis', 'ICD10_2010'), +('L87.2', 'Elastosis perforans serpiginosa', 'ICD10_2010'), +('L87.8', 'Other transepidermal elimination disorders', 'ICD10_2010'), +('L87.9', 'Transepidermal elimination disorder, unspecified', 'ICD10_2010'), +('L88', 'Pyoderma gangrenosum', 'ICD10_2010'), +('L89', 'Decubitus ulcer', 'ICD10_2010'), +('L89.0', 'Stage I decubitus ulcer and pressure area', 'ICD10_2010'), +('L89.1', 'Stage II decubitus ulcer', 'ICD10_2010'), +('L89.2', 'Stage III decubitus ulcer', 'ICD10_2010'), +('L89.3', 'Stage IV decubitus ulcer', 'ICD10_2010'), +('L89.9', 'Decubitus ulcer and pressure area, unspecified', 'ICD10_2010'), +('L90', 'Atrophic disorders of skin', 'ICD10_2010'), +('L90.0', 'Lichen sclerosus et atrophicus', 'ICD10_2010'), +('L90.1', 'Anetoderma of Schweninger-Buzzi', 'ICD10_2010'), +('L90.2', 'Anetoderma of Jadassohn-Pellizzari', 'ICD10_2010'), +('L90.3', 'Atrophoderma of Pasini and Pierini', 'ICD10_2010'), +('L90.4', 'Acrodermatitis chronica atrophicans', 'ICD10_2010'), +('L90.5', 'Scar conditions and fibrosis of skin', 'ICD10_2010'), +('L90.6', 'Striae atrophicae', 'ICD10_2010'), +('L90.8', 'Other atrophic disorders of skin', 'ICD10_2010'), +('L90.9', 'Atrophic disorder of skin, unspecified', 'ICD10_2010'), +('L91', 'Hypertrophic disorders of skin', 'ICD10_2010'), +('L91.0', 'Keloid scar', 'ICD10_2010'), +('L91.8', 'Other hypertrophic disorders of skin', 'ICD10_2010'), +('L91.9', 'Hypertrophic disorder of skin, unspecified', 'ICD10_2010'), +('L92', 'Granulomatous disorders of skin and subcutaneous tissue', 'ICD10_2010'), +('L92.0', 'Granuloma annulare', 'ICD10_2010'), +('L92.1', 'Necrobiosis lipoidica, not elsewhere classified', 'ICD10_2010'), +('L92.2', 'Granuloma faciale [eosinophilic granuloma of skin]', 'ICD10_2010'), +('L92.3', 'Foreign body granuloma of skin and subcutaneous tissue', 'ICD10_2010'), +('L92.8', 'Other granulomatous disorders of skin and subcutaneous tissue', 'ICD10_2010'), +('L92.9', 'Granulomatous disorder of skin and subcutaneous tissue, unspecified', 'ICD10_2010'), +('L93', 'Lupus erythematosus', 'ICD10_2010'), +('L93.0', 'Discoid lupus erythematosus', 'ICD10_2010'), +('L93.1', 'Subacute cutaneous lupus erythematosus', 'ICD10_2010'), +('L93.2', 'Other local lupus erythematosus', 'ICD10_2010'), +('L94', 'Other localized connective tissue disorders', 'ICD10_2010'), +('L94.0', 'Localized scleroderma [morphea]', 'ICD10_2010'), +('L94.1', 'Linear scleroderma', 'ICD10_2010'), +('L94.2', 'Calcinosis cutis', 'ICD10_2010'), +('L94.3', 'Sclerodactyly', 'ICD10_2010'), +('L94.4', 'Gottron\'s papules', 'ICD10_2010'), +('L94.5', 'Poikiloderma vasculare atrophicans', 'ICD10_2010'), +('L94.6', 'Ainhum', 'ICD10_2010'), +('L94.8', 'Other specified localized connective tissue disorders', 'ICD10_2010'), +('L94.9', 'Localized connective tissue disorder, unspecified', 'ICD10_2010'), +('L95', 'Vasculitis limited to skin, not elsewhere classified', 'ICD10_2010'), +('L95.0', 'Livedoid vasculitis', 'ICD10_2010'), +('L95.1', 'Erythema elevatum diutinum', 'ICD10_2010'), +('L95.8', 'Other vasculitis limited to skin', 'ICD10_2010'), +('L95.9', 'Vasculitis limited to skin, unspecified', 'ICD10_2010'), +('L97', 'Ulcer of lower limb, not elsewhere classified', 'ICD10_2010'), +('L98', 'Other disorders of skin and subcutaneous tissue, not elsewhere classified', 'ICD10_2010'), +('L98.0', 'Pyogenic granuloma', 'ICD10_2010'), +('L98.1', 'Factitial dermatitis', 'ICD10_2010'), +('L98.2', 'Febrile neutrophilic dermatosis [Sweet]', 'ICD10_2010'), +('L98.3', 'Eosinophilic cellulitis [Wells]', 'ICD10_2010'), +('L98.4', 'Chronic ulcer of skin, not elsewhere classified', 'ICD10_2010'), +('L98.5', 'Mucinosis of skin', 'ICD10_2010'), +('L98.6', 'Other infiltrative disorders of skin and subcutaneous tissue', 'ICD10_2010'), +('L98.8', 'Other specified disorders of skin and subcutaneous tissue', 'ICD10_2010'), +('L98.9', 'Disorder of skin and subcutaneous tissue, unspecified', 'ICD10_2010'), +('L99', 'Other disorders of skin and subcutaneous tissue in diseases classified elsewhere', 'ICD10_2010'), +('L99.0', 'Amyloidosis of skin', 'ICD10_2010'), +('L99.8', 'Other specified disorders of skin and subcutaneous tissue in disease classified elsewhere', 'ICD10_2010'), +('M00', 'Pyogenic arthritis', 'ICD10_2010'), +('M00.0', 'Staphylococcal arthritis and polyarthritis', 'ICD10_2010'), +('M00.00', 'Staphylococcal arthritis and polyarthritis, multiple sites', 'ICD10_2010'), +('M00.01', 'Staphylococcal arthritis and polyarthritis, shoulder region', 'ICD10_2010'), +('M00.02', 'Staphylococcal arthritis and polyarthritis, upper arm', 'ICD10_2010'), +('M00.03', 'Staphylococcal arthritis and polyarthritis, forearm', 'ICD10_2010'), +('M00.04', 'Staphylococcal arthritis and polyarthritis, hand', 'ICD10_2010'), +('M00.05', 'Staphylococcal arthritis and polyarthritis, pelvic and thigh', 'ICD10_2010'), +('M00.06', 'Staphylococcal arthritis and polyarthritis, lower leg', 'ICD10_2010'), +('M00.07', 'Staphylococcal arthritis and polyarthritis, ankle and foot', 'ICD10_2010'), +('M00.08', 'Staphylococcal arthritis and polyarthritis, other site', 'ICD10_2010'), +('M00.09', 'Staphylococcal arthritis and polyarthritis, unspecified site', 'ICD10_2010'), +('M00.1', 'Pneumococcal arthritis and polyarthritis', 'ICD10_2010'), +('M00.10', 'Pneumococcal arthritis and polyarthritis, multiple sites', 'ICD10_2010'), +('M00.11', 'Pneumococcal arthritis and polyarthritis, shoulder region', 'ICD10_2010'), +('M00.12', 'Pneumococcal arthritis and polyarthritis, upper arm', 'ICD10_2010'), +('M00.13', 'Pneumococcal arthritis and polyarthritis, forearm', 'ICD10_2010'), +('M00.14', 'Pneumococcal arthritis and polyarthritis, hand', 'ICD10_2010'), +('M00.15', 'Pneumococcal arthritis and polyarthritis, pelvic and thigh', 'ICD10_2010'), +('M00.16', 'Pneumococcal arthritis and polyarthritis, lower leg', 'ICD10_2010'), +('M00.17', 'Pneumococcal arthritis and polyarthritis, ankle and foot', 'ICD10_2010'), +('M00.18', 'Pneumococcal arthritis and polyarthritis, other sites', 'ICD10_2010'), +('M00.19', 'Pneumococcal arthritis and polyarthritis, unspecified site', 'ICD10_2010'), +('M00.2', 'Other streptococcal arthritis and polyarthritis', 'ICD10_2010'), +('M00.20', 'Other streptococcal arthritis and polyarthritis, multiple sites', 'ICD10_2010'), +('M00.21', 'Other streptococcal arthritis and polyarthritis, shoulder region', 'ICD10_2010'), +('M00.22', 'Other streptococcal arthritis and polyarthritis, upper arm', 'ICD10_2010'), +('M00.23', 'Other streptococcal arthritis and polyarthritis, forearm', 'ICD10_2010'), +('M00.24', 'Other streptococcal arthritis and polyarthritis, hand', 'ICD10_2010'), +('M00.25', 'Other streptococcal arthritis and polyarthritis, pelvic and thigh', 'ICD10_2010'), +('M00.26', 'Other streptococcal arthritis and polyarthritis, lower leg', 'ICD10_2010'), +('M00.27', 'Other streptococcal arthritis and polyarthritis, ankle and foot', 'ICD10_2010'), +('M00.28', 'Other streptococcal arthritis and polyarthritis, other sites', 'ICD10_2010'), +('M00.29', 'Other streptococcal arthritis and polyarthritis, unspecified site', 'ICD10_2010'), +('M00.8', 'Arthritis and polyarthritis due other specified bacterial agents', 'ICD10_2010'), +('M00.80', 'Arthritis and polyarthritis due other specified bacterial agents, multiple sites', 'ICD10_2010'), +('M00.81', 'Arthritis and polyarthritis due other specified bacterial agents, shouder region', 'ICD10_2010'), +('M00.82', 'Arthritis and polyarthritis due other specified bacterial agents, upper arm', 'ICD10_2010'), +('M00.83', 'Arthritis and polyarthritis due other specified bacterial agents, forearm', 'ICD10_2010'), +('M00.84', 'Arthritis and polyarthritis due other specified bacterial agents, hand', 'ICD10_2010'), +('M00.85', 'Arthritis and polyarthritis due other specified bacterial agents, pelvic and thigh', 'ICD10_2010'), +('M00.86', 'Arthritis and polyarthritis due other specified bacterial agents, lower leg', 'ICD10_2010'), +('M00.87', 'Arthritis and polyarthritis due other specified bacterial agents, ankle and foot', 'ICD10_2010'), +('M00.88', 'Arthritis and polyarthritis due other specified bacterial agents, other sites', 'ICD10_2010'), +('M00.89', 'Arthritis and polyarthritis due other specified bacterial agents, unspecified site', 'ICD10_2010'), +('M00.9', 'Pyogenic arthritis, unspecified', 'ICD10_2010'), +('M00.90', 'Pyogenic arthritis, unspecified, multiple sites', 'ICD10_2010'), +('M00.91', 'Pyogenic arthritis, unspecified, shoulder region', 'ICD10_2010'), +('M00.92', 'Pyogenic arthritis, unspecified, upper arm', 'ICD10_2010'), +('M00.93', 'Pyogenic arthritis, unspecified, forearm', 'ICD10_2010'), +('M00.94', 'Pyogenic arthritis, unspecified, hand', 'ICD10_2010'), +('M00.95', 'Pyogenic arthritis, unspecified, pelvic and thigh', 'ICD10_2010'), +('M00.96', 'Pyogenic arthritis, unspecified, lower leg', 'ICD10_2010'), +('M00.97', 'Pyogenic arthritis, unspecified, ankle and foot', 'ICD10_2010'), +('M00.98', 'Pyogenic arthritis, unspecified, other sites', 'ICD10_2010'), +('M00.99', 'Pyogenic arthritis, unspecified, unspecified site', 'ICD10_2010'), +('M01', 'Direct infections of joint in infectious and parasitic diseases classified elsewhere', 'ICD10_2010'), +('M01.0', 'Meningococcal arthritis', 'ICD10_2010'), +('M01.00', 'Meningococcal arthritis, multiple sites', 'ICD10_2010'), +('M01.01', 'Meningococcal arthritis, shoulder region', 'ICD10_2010'), +('M01.02', 'Meningococcal arthritis, upper arm', 'ICD10_2010'), +('M01.03', 'Meningococcal arthritis, forearm', 'ICD10_2010'), +('M01.04', 'Meningococcal arthritis, hand', 'ICD10_2010'), +('M01.05', 'Meningococcal arthritis, pelvic and thigh', 'ICD10_2010'), +('M01.06', 'Meningococcal arthritis, lower leg', 'ICD10_2010'), +('M01.07', 'Meningococcal arthritis, ankle and foot', 'ICD10_2010'), +('M01.08', 'Meningococcal arthritis, other sites', 'ICD10_2010'), +('M01.09', 'Meningococcal arthritis, unspecified site', 'ICD10_2010'), +('M01.1', 'Tuberculous arthritis', 'ICD10_2010'), +('M01.10', 'Tuberculous arthritis, multiple sites', 'ICD10_2010'), +('M01.11', 'Tuberculous arthritis, shoulder region', 'ICD10_2010'), +('M01.12', 'Tuberculous arthritis, upper arm', 'ICD10_2010'), +('M01.13', 'Tuberculous arthritis, forearm', 'ICD10_2010'), +('M01.14', 'Tuberculous arthritis, hand', 'ICD10_2010'), +('M01.15', 'Tuberculous arthritis, pelvic and thigh', 'ICD10_2010'), +('M01.16', 'Tuberculous arthritis, lower leg', 'ICD10_2010'), +('M01.17', 'Tuberculous arthritis, ankle and foot', 'ICD10_2010'), +('M01.18', 'Tuberculous arthritis, other sites', 'ICD10_2010'), +('M01.19', 'Tuberculous arthritis, unspecified site', 'ICD10_2010'), +('M01.2', 'Arthritis in lyme disease', 'ICD10_2010'), +('M01.20', 'Arthritis in lyme disease, multiple sites', 'ICD10_2010'), +('M01.21', 'Arthritis in lyme disease, shoulder region', 'ICD10_2010'), +('M01.22', 'Arthritis in lyme disease, upper arm', 'ICD10_2010'); +INSERT INTO `icd10` (`ID_ICD10`, `Diagnosa`, `Versi_ICD10`) VALUES +('M01.23', 'Arthritis in lyme disease, forearm', 'ICD10_2010'), +('M01.24', 'Arthritis in lyme disease, hand', 'ICD10_2010'), +('M01.25', 'Arthritis in lyme disease, pelvic and thigh', 'ICD10_2010'), +('M01.26', 'Arthritis in lyme disease, lower leg', 'ICD10_2010'), +('M01.27', 'Arthritis in lyme disease, ankle and foot', 'ICD10_2010'), +('M01.28', 'Arthritis in lyme disease, other sites', 'ICD10_2010'), +('M01.29', 'Arthritis in lyme disease, unspecified site', 'ICD10_2010'), +('M01.3', 'Arthritis in other bacterial diseases classified elsewhere', 'ICD10_2010'), +('M01.30', 'Arthritis in other bacterial diseases classified elsewhere, multiple sites', 'ICD10_2010'), +('M01.31', 'Arthritis in other bacterial diseases classified elsewhere, shouder region', 'ICD10_2010'), +('M01.32', 'Arthritis in other bacterial diseases classified elsewhere, upper arm', 'ICD10_2010'), +('M01.33', 'Arthritis in other bacterial diseases classified elsewhere, forearm', 'ICD10_2010'), +('M01.34', 'Arthritis in other bacterial diseases classified elsewhere, hand', 'ICD10_2010'), +('M01.35', 'Arthritis in other bacterial diseases classified elsewhere, pelvic and thigh', 'ICD10_2010'), +('M01.36', 'Arthritis in other bacterial diseases classified elsewhere, lower leg', 'ICD10_2010'), +('M01.37', 'Arthritis in other bacterial diseases classified elsewhere, ankle and foot', 'ICD10_2010'), +('M01.38', 'Arthritis in other bacterial diseases classified elsewhere, other sites', 'ICD10_2010'), +('M01.39', 'Arthritis in other bacterial diseases classified elsewhere, unspecified site', 'ICD10_2010'), +('M01.4', 'Rubella arthritis', 'ICD10_2010'), +('M01.40', 'Rubella arthritis, multiple sites', 'ICD10_2010'), +('M01.41', 'Rubella arthritis, shoulder region', 'ICD10_2010'), +('M01.42', 'Rubella arthritis, upper arm', 'ICD10_2010'), +('M01.43', 'Rubella arthritis, forearm', 'ICD10_2010'), +('M01.44', 'Rubella arthritis, hand', 'ICD10_2010'), +('M01.45', 'Rubella arthritis, pelvic and thigh', 'ICD10_2010'), +('M01.46', 'Rubella arthritis, lower leg', 'ICD10_2010'), +('M01.47', 'Rubella arthritis, ankle and foot', 'ICD10_2010'), +('M01.48', 'Rubella arthritis, other sites', 'ICD10_2010'), +('M01.49', 'Rubella arthritis, unspecified site', 'ICD10_2010'), +('M01.5', 'Arthritis in other viral diseases classified elsewhere', 'ICD10_2010'), +('M01.50', 'Arthritis in other viral diseases classified elsewhere, multiple sites', 'ICD10_2010'), +('M01.51', 'Arthritis in other viral diseases classified elsewhere, shoulder region', 'ICD10_2010'), +('M01.52', 'Arthritis in other viral diseases classified elsewhere, upper arm', 'ICD10_2010'), +('M01.53', 'Arthritis in other viral diseases classified elsewhere, forearm', 'ICD10_2010'), +('M01.54', 'Arthritis in other viral diseases classified elsewhere, hand', 'ICD10_2010'), +('M01.55', 'Arthritis in other viral diseases classified elsewhere, pelvic and thigh', 'ICD10_2010'), +('M01.56', 'Arthritis in other viral diseases classified elsewhere, lower leg', 'ICD10_2010'), +('M01.57', 'Arthritis in other viral diseases classified elsewhere, ankle and foot', 'ICD10_2010'), +('M01.58', 'Arthritis in other viral diseases classified elsewhere, other sites', 'ICD10_2010'), +('M01.59', 'Arthritis in other viral diseases classified elsewhere, unspecified site', 'ICD10_2010'), +('M01.6', 'Arhritis in mycoses', 'ICD10_2010'), +('M01.60', 'Arhritis in mycoses, multiple sites', 'ICD10_2010'), +('M01.61', 'Arhritis in mycoses, shoulder region', 'ICD10_2010'), +('M01.62', 'Arhritis in mycoses, upper arm', 'ICD10_2010'), +('M01.63', 'Arhritis in mycoses, forearm', 'ICD10_2010'), +('M01.64', 'Arhritis in mycoses, hand', 'ICD10_2010'), +('M01.65', 'Arhritis in mycoses, pelvic and thigh', 'ICD10_2010'), +('M01.66', 'Arhritis in mycoses, lower leg', 'ICD10_2010'), +('M01.67', 'Arhritis in mycoses, ankle and foot', 'ICD10_2010'), +('M01.68', 'Arhritis in mycoses, other sites', 'ICD10_2010'), +('M01.69', 'Arhritis in mycoses, unspecified site', 'ICD10_2010'), +('M01.8', 'Arthritis in other infectious and parasitic diseases classified elsewhere', 'ICD10_2010'), +('M01.80', 'Arthritis in other infectious and parasitic diseases classified elsewhere, multiple sites', 'ICD10_2010'), +('M01.81', 'Arthritis in other infectious and parasitic diseases classified elsewhere, shoulder region', 'ICD10_2010'), +('M01.82', 'Arthritis in other infectious and parasitic diseases classified elsewhere, upper arm', 'ICD10_2010'), +('M01.83', 'Arthritis in other infectious and parasitic diseases classified elsewhere, forearm', 'ICD10_2010'), +('M01.84', 'Arthritis in other infectious and parasitic diseases classified elsewhere, hand', 'ICD10_2010'), +('M01.85', 'Arthritis in other infectious and parasitic diseases classified elsewhere, pelvic and thigh', 'ICD10_2010'), +('M01.86', 'Arthritis in other infectious and parasitic diseases classified elsewhere, lower leg', 'ICD10_2010'), +('M01.87', 'Arthritis in other infectious and parasitic diseases classified elsewhere, ankle and foot', 'ICD10_2010'), +('M01.88', 'Arthritis in other infectious and parasitic diseases classified elsewhere, other sites', 'ICD10_2010'), +('M01.89', 'Arthritis in other infectious and parasitic diseases classified elsewhere, unspecified site', 'ICD10_2010'), +('M02', 'Reactive arthropathies', 'ICD10_2010'), +('M02.0', 'Arthropathy following intestinal bypass', 'ICD10_2010'), +('M02.00', 'Arthropathy following intestinal bypass, multiple sites', 'ICD10_2010'), +('M02.01', 'Arthropathy following intestinal bypass, shoulder region', 'ICD10_2010'), +('M02.02', 'Arthropathy following intestinal bypass, upper arm', 'ICD10_2010'), +('M02.03', 'Arthropathy following intestinal bypass, forearm', 'ICD10_2010'), +('M02.04', 'Arthropathy following intestinal bypass, hand', 'ICD10_2010'), +('M02.05', 'Arthropathy following intestinal bypass, pelvic and thigh', 'ICD10_2010'), +('M02.06', 'Arthropathy following intestinal bypass, lower leg', 'ICD10_2010'), +('M02.07', 'Arthropathy following intestinal bypass, ankle and foot', 'ICD10_2010'), +('M02.08', 'Arthropathy following intestinal bypass, other sites', 'ICD10_2010'), +('M02.09', 'Arthropathy following intestinal bypass, unspecified site', 'ICD10_2010'), +('M02.1', 'Postdysenteric arthropathy', 'ICD10_2010'), +('M02.10', 'Postdysenteric arthropathy, multiple sites', 'ICD10_2010'), +('M02.11', 'Postdysenteric arthropathy, shoulder region', 'ICD10_2010'), +('M02.12', 'Postdysenteric arthropathy, upper arm', 'ICD10_2010'), +('M02.13', 'Postdysenteric arthropathy, forearm', 'ICD10_2010'), +('M02.14', 'Postdysenteric arthropathy, hand', 'ICD10_2010'), +('M02.15', 'Postdysenteric arthropathy, pelvic and thigh', 'ICD10_2010'), +('M02.16', 'Postdysenteric arthropathy, lower leg', 'ICD10_2010'), +('M02.17', 'Postdysenteric arthropathy, ankle and foot', 'ICD10_2010'), +('M02.18', 'Postdysenteric arthropathy, other sites', 'ICD10_2010'), +('M02.19', 'Postdysenteric arthropathy, unspecified site', 'ICD10_2010'), +('M02.2', 'Postimmunization arthropathy', 'ICD10_2010'), +('M02.20', 'Postimmunization arthropathy, multiple sites', 'ICD10_2010'), +('M02.21', 'Postimmunization arthropathy, shoulder region', 'ICD10_2010'), +('M02.22', 'Postimmunization arthropathy, upper arm', 'ICD10_2010'), +('M02.23', 'Postimmunization arthropathy, forearm', 'ICD10_2010'), +('M02.24', 'Postimmunization arthropathy, hand', 'ICD10_2010'), +('M02.25', 'Postimmunization arthropathy, pelvic and thigh', 'ICD10_2010'), +('M02.26', 'Postimmunization arthropathy, lower leg', 'ICD10_2010'), +('M02.27', 'Postimmunization arthropathy, ankle and foot', 'ICD10_2010'), +('M02.28', 'Postimmunization arthropathy, other sites', 'ICD10_2010'), +('M02.29', 'Postimmunization arthropathy, unspecified site', 'ICD10_2010'), +('M02.3', 'Reiter\'s disease', 'ICD10_2010'), +('M02.30', 'Reiter\'s disease, multiple sites', 'ICD10_2010'), +('M02.31', 'Reiter\'s disease, shoulder region', 'ICD10_2010'), +('M02.32', 'Reiter\'s disease, upper arm', 'ICD10_2010'), +('M02.33', 'Reiter\'s disease, forearm', 'ICD10_2010'), +('M02.34', 'Reiter\'s disease, hand', 'ICD10_2010'), +('M02.35', 'Reiter\'s disease, pelvic and thigh', 'ICD10_2010'), +('M02.36', 'Reiter\'s disease, lower leg', 'ICD10_2010'), +('M02.37', 'Reiter\'s disease, ankle and foot', 'ICD10_2010'), +('M02.38', 'Reiter\'s disease, other sites', 'ICD10_2010'), +('M02.39', 'Reiter\'s disease, unspecified site', 'ICD10_2010'), +('M02.8', 'Other reactive arthropathies', 'ICD10_2010'), +('M02.80', 'Other reactive arthropathies, multiple sites', 'ICD10_2010'), +('M02.81', 'Other reactive arthropathies, shouder region', 'ICD10_2010'), +('M02.82', 'Other reactive arthropathies, upper arm', 'ICD10_2010'), +('M02.83', 'Other reactive arthropathies, forearm', 'ICD10_2010'), +('M02.84', 'Other reactive arthropathies, hand', 'ICD10_2010'), +('M02.85', 'Other reactive arthropathies, pelvic and thigh', 'ICD10_2010'), +('M02.86', 'Other reactive arthropathies, lower leg', 'ICD10_2010'), +('M02.87', 'Other reactive arthropathies, ankle and foot', 'ICD10_2010'), +('M02.88', 'Other reactive arthropathies, other sites', 'ICD10_2010'), +('M02.89', 'Other reactive arthropathies, unspecified site', 'ICD10_2010'), +('M02.9', 'Reactive arthropathy, unspecified', 'ICD10_2010'), +('M02.90', 'Reactive arthropathy, unspecified, multiple sites', 'ICD10_2010'), +('M02.91', 'Reactive arthropathy, unspecified, shoulder region', 'ICD10_2010'), +('M02.92', 'Reactive arthropathy, unspecified, upper arm', 'ICD10_2010'), +('M02.93', 'Reactive arthropathy, unspecified, forearm', 'ICD10_2010'), +('M02.94', 'Reactive arthropathy, unspecified, hand', 'ICD10_2010'), +('M02.95', 'Reactive arthropathy, unspecified, pelvic and thigh', 'ICD10_2010'), +('M02.96', 'Reactive arthropathy, unspecified, lower leg', 'ICD10_2010'), +('M02.97', 'Reactive arthropathy, unspecified, ankle and foot', 'ICD10_2010'), +('M02.98', 'Reactive arthropathy, unspecified, other sites', 'ICD10_2010'), +('M02.99', 'Reactive arthropathy, unspecified, unspecified site', 'ICD10_2010'), +('M03', 'Postinfective and reactive arthropathies in diseases classified elsewhere', 'ICD10_2010'), +('M03.0', 'Postmeningococcal arthritis', 'ICD10_2010'), +('M03.00', 'Postmeningococcal arthritis, multiple sites', 'ICD10_2010'), +('M03.01', 'Postmeningococcal arthritis, shoulder region', 'ICD10_2010'), +('M03.02', 'Postmeningococcal arthritis, upper arm', 'ICD10_2010'), +('M03.03', 'Postmeningococcal arthritis, forearm', 'ICD10_2010'), +('M03.04', 'Postmeningococcal arthritis, hand', 'ICD10_2010'), +('M03.05', 'Postmeningococcal arthritis, pelvic and thigh', 'ICD10_2010'), +('M03.06', 'Postmeningococcal arthritis, lower leg', 'ICD10_2010'), +('M03.07', 'Postmeningococcal arthritis, ankle and foot', 'ICD10_2010'), +('M03.08', 'Postmeningococcal arthritis, other sites', 'ICD10_2010'), +('M03.09', 'Postmeningococcal arthritis, unspecified site', 'ICD10_2010'), +('M03.1', 'Postinfective arthropathy in syphilis', 'ICD10_2010'), +('M03.10', 'Postinfective arthropathy in syphilis, multiple sites', 'ICD10_2010'), +('M03.11', 'Postinfective arthropathy in syphilis, shoulder region', 'ICD10_2010'), +('M03.12', 'Postinfective arthropathy in syphilis, upper arm', 'ICD10_2010'), +('M03.13', 'Postinfective arthropathy in syphilis, forearm', 'ICD10_2010'), +('M03.14', 'Postinfective arthropathy in syphilis, hand', 'ICD10_2010'), +('M03.15', 'Postinfective arthropathy in syphilis, pelvic and thigh', 'ICD10_2010'), +('M03.16', 'Postinfective arthropathy in syphilis, lower leg', 'ICD10_2010'), +('M03.17', 'Postinfective arthropathy in syphilis, ankle and foot', 'ICD10_2010'), +('M03.18', 'Postinfective arthropathy in syphilis, other sites', 'ICD10_2010'), +('M03.19', 'Postinfective arthropathy in syphilis, unspecified site', 'ICD10_2010'), +('M03.2', 'Other postinfectious arthropathies in diseases classified elsewhere', 'ICD10_2010'), +('M03.20', 'Other postinfectious arthropathies in diseases classified elsewhere, multiple sites', 'ICD10_2010'), +('M03.21', 'Other postinfectious arthropathies in diseases classified elsewhere, shoulder region', 'ICD10_2010'), +('M03.22', 'Other postinfectious arthropathies in diseases classified elsewhere, upper arm', 'ICD10_2010'), +('M03.23', 'Other postinfectious arthropathies in diseases classified elsewhere, forearm', 'ICD10_2010'), +('M03.24', 'Other postinfectious arthropathies in diseases classified elsewhere, hand', 'ICD10_2010'), +('M03.25', 'Other postinfectious arthropathies in diseases classified elsewhere, pelvic and thigh', 'ICD10_2010'), +('M03.26', 'Other postinfectious arthropathies in diseases classified elsewhere, lower leg', 'ICD10_2010'), +('M03.27', 'Other postinfectious arthropathies in diseases classified elsewhere, ankle and foot', 'ICD10_2010'), +('M03.28', 'Other postinfectious arthropathies in diseases classified elsewhere, other sites', 'ICD10_2010'), +('M03.29', 'Other postinfectious arthropathies in diseases classified elsewhere, unspecified site', 'ICD10_2010'), +('M03.6', 'Reactive arthropathy in other diseases classified elsewhere', 'ICD10_2010'), +('M03.60', 'Reactive arthropathy in other diseases classified elsewhere, multiple sites', 'ICD10_2010'), +('M03.61', 'Reactive arthropathy in other diseases classified elsewhere, shoulder region', 'ICD10_2010'), +('M03.62', 'Reactive arthropathy in other diseases classified elsewhere, upper arm', 'ICD10_2010'), +('M03.63', 'Reactive arthropathy in other diseases classified elsewhere, forearm', 'ICD10_2010'), +('M03.64', 'Reactive arthropathy in other diseases classified elsewhere, hand', 'ICD10_2010'), +('M03.65', 'Reactive arthropathy in other diseases classified elsewhere, pelvic and thigh', 'ICD10_2010'), +('M03.66', 'Reactive arthropathy in other diseases classified elsewhere, lower leg', 'ICD10_2010'), +('M03.67', 'Reactive arthropathy in other diseases classified elsewhere, ankle and foot', 'ICD10_2010'), +('M03.68', 'Reactive arthropathy in other diseases classified elsewhere, other sites', 'ICD10_2010'), +('M03.69', 'Reactive arthropathy in other diseases classified elsewhere, unspecified site', 'ICD10_2010'), +('M05', 'Seropositive rheumatoid arthritis', 'ICD10_2010'), +('M05.0', 'Seropositive Felty\'s syndrome', 'ICD10_2010'), +('M05.00', 'Seropositive Felty\'s syndrome, multiple sites', 'ICD10_2010'), +('M05.01', 'Seropositive Felty\'s syndrome, shoulder region', 'ICD10_2010'), +('M05.02', 'Seropositive Felty\'s syndrome, upper arm', 'ICD10_2010'), +('M05.03', 'Seropositive Felty\'s syndrome, forearm', 'ICD10_2010'), +('M05.04', 'Seropositive Felty\'s syndrome, hand', 'ICD10_2010'), +('M05.05', 'Seropositive Felty\'s syndrome, pelvic and thigh', 'ICD10_2010'), +('M05.06', 'Seropositive Felty\'s syndrome, lower leg', 'ICD10_2010'), +('M05.07', 'Seropositive Felty\'s syndrome, ankle and foot', 'ICD10_2010'), +('M05.08', 'Seropositive Felty\'s syndrome, other sites', 'ICD10_2010'), +('M05.09', 'Seropositive Felty\'s syndrome, unspecified site', 'ICD10_2010'), +('M05.1', 'Seropositive rheumatoid lung disease', 'ICD10_2010'), +('M05.10', 'Seropositive rheumatoid lung disease, multiple sites', 'ICD10_2010'), +('M05.11', 'Seropositive rheumatoid lung disease, shoulder region', 'ICD10_2010'), +('M05.12', 'Seropositive rheumatoid lung disease, upper arm', 'ICD10_2010'), +('M05.13', 'Seropositive rheumatoid lung disease, forearm', 'ICD10_2010'), +('M05.14', 'Seropositive rheumatoid lung disease, hand', 'ICD10_2010'), +('M05.15', 'Seropositive rheumatoid lung disease, pelvic and thigh', 'ICD10_2010'), +('M05.16', 'Seropositive rheumatoid lung disease, lower leg', 'ICD10_2010'), +('M05.17', 'Seropositive rheumatoid lung disease, ankle and foot', 'ICD10_2010'), +('M05.18', 'Seropositive rheumatoid lung disease, other sites', 'ICD10_2010'), +('M05.19', 'Seropositive rheumatoid lung disease, unspecified site', 'ICD10_2010'), +('M05.2', 'Seropositive rheumatoid vasculitis', 'ICD10_2010'), +('M05.20', 'Seropositive rheumatoid vasculitis, multiple sites', 'ICD10_2010'), +('M05.21', 'Seropositive rheumatoid vasculitis, shoulder region', 'ICD10_2010'), +('M05.22', 'Seropositive rheumatoid vasculitis, upper arm', 'ICD10_2010'), +('M05.23', 'Seropositive rheumatoid vasculitis, forearm', 'ICD10_2010'), +('M05.24', 'Seropositive rheumatoid vasculitis, hand', 'ICD10_2010'), +('M05.25', 'Seropositive rheumatoid vasculitis, pelvic and thigh', 'ICD10_2010'), +('M05.26', 'Seropositive rheumatoid vasculitis, lower leg', 'ICD10_2010'), +('M05.27', 'Seropositive rheumatoid vasculitis, ankle and foot', 'ICD10_2010'), +('M05.28', 'Seropositive rheumatoid vasculitis, other sites', 'ICD10_2010'), +('M05.29', 'Seropositive rheumatoid vasculitis, unspecified site', 'ICD10_2010'), +('M05.3', 'Seropositive rheumatoid arthritis with involvement of oth organs and sys', 'ICD10_2010'), +('M05.30', 'Seropositive rheumatoid arthritis with involvement of other organs and system, multiple site', 'ICD10_2010'), +('M05.31', 'Seropositive rheumatoid arthritis with involvement of other organs and system, shoulder region', 'ICD10_2010'), +('M05.32', 'Seropositive rheumatoid arthritis with involvement of other organs and system, upper arm', 'ICD10_2010'), +('M05.33', 'Seropositive rheumatoid arthritis with involvement of other organs and system, forearm', 'ICD10_2010'), +('M05.34', 'Seropositive rheumatoid arthritis with involvement of other organs and system, hand', 'ICD10_2010'), +('M05.35', 'Seropositive rheumatoid arthritis with involvement of other organs and system, pelvic and thigh', 'ICD10_2010'), +('M05.36', 'Seropositive rheumatoid arthritis with involvement of other organs and system, lower leg', 'ICD10_2010'), +('M05.37', 'Seropositive rheumatoid arthritis with involvement of other organs and system, ankle and foot', 'ICD10_2010'), +('M05.38', 'Seropositive rheumatoid arthritis with involvement of other organs and system, other sites', 'ICD10_2010'), +('M05.39', 'Seropositive rheumatoid arthritis with involvement of other organs and system, unspecified site', 'ICD10_2010'), +('M05.8', 'Other seropositive rheumatoid arthritis', 'ICD10_2010'), +('M05.80', 'Other seropositive rheumatoid arthritis, multiple sites', 'ICD10_2010'), +('M05.81', 'Other seropositive rheumatoid arthritis, shoulder region', 'ICD10_2010'), +('M05.82', 'Other seropositive rheumatoid arthritis, upper arm', 'ICD10_2010'), +('M05.83', 'Other seropositive rheumatoid arthritis, forearm', 'ICD10_2010'), +('M05.84', 'Other seropositive rheumatoid arthritis, hand', 'ICD10_2010'), +('M05.85', 'Other seropositive rheumatoid arthritis, pelvic and thigh', 'ICD10_2010'), +('M05.86', 'Other seropositive rheumatoid arthritis, lower leg', 'ICD10_2010'), +('M05.87', 'Other seropositive rheumatoid arthritis, ankle and foot', 'ICD10_2010'), +('M05.88', 'Other seropositive rheumatoid arthritis, other sites', 'ICD10_2010'), +('M05.89', 'Other seropositive rheumatoid arthritis, unspecified site', 'ICD10_2010'), +('M05.9', 'Seropositive rheumatoid arthritis, unspecified', 'ICD10_2010'), +('M05.90', 'Seropositive rheumatoid arthritis, unspecified, multiple sites', 'ICD10_2010'), +('M05.91', 'Seropositive rheumatoid arthritis, unspecified, shoulder region', 'ICD10_2010'), +('M05.92', 'Seropositive rheumatoid arthritis, unspecified, upper arm', 'ICD10_2010'), +('M05.93', 'Seropositive rheumatoid arthritis, unspecified, forearm', 'ICD10_2010'), +('M05.94', 'Seropositive rheumatoid arthritis, unspecified, hand', 'ICD10_2010'), +('M05.95', 'Seropositive rheumatoid arthritis, unspecified, pelvic and thigh', 'ICD10_2010'), +('M05.96', 'Seropositive rheumatoid arthritis, unspecified, lower leg', 'ICD10_2010'), +('M05.97', 'Seropositive rheumatoid arthritis, unspecified, ankle and foot', 'ICD10_2010'), +('M05.98', 'Seropositive rheumatoid arthritis, unspecified, other sites', 'ICD10_2010'), +('M05.99', 'Seropositive rheumatoid arthritis, unspecified, unspecified site', 'ICD10_2010'), +('M06', 'Other rheumatoid arthritis', 'ICD10_2010'), +('M06.0', 'Seronegative rheumatoid arthritis', 'ICD10_2010'), +('M06.00', 'Seronegative rheumatoid arthritis, multiple sites', 'ICD10_2010'), +('M06.01', 'Seronegative rheumatoid arthritis, shoulder region', 'ICD10_2010'), +('M06.02', 'Seronegative rheumatoid arthritis, upper arm', 'ICD10_2010'), +('M06.03', 'Seronegative rheumatoid arthritis, forearm', 'ICD10_2010'), +('M06.04', 'Seronegative rheumatoid arthritis, hand', 'ICD10_2010'), +('M06.05', 'Seronegative rheumatoid arthritis, pelvic and thigh', 'ICD10_2010'), +('M06.06', 'Seronegative rheumatoid arthritis, lower leg', 'ICD10_2010'), +('M06.07', 'Seronegative rheumatoid arthritis, ankle and foot', 'ICD10_2010'), +('M06.08', 'Seronegative rheumatoid arthritis, other sites', 'ICD10_2010'), +('M06.09', 'Seronegative rheumatoid arthritis, unspecified site', 'ICD10_2010'), +('M06.1', 'Adult-onset still\'s disease', 'ICD10_2010'), +('M06.10', 'Adult-onset still\'s disease, multiple sites', 'ICD10_2010'), +('M06.11', 'Adult-onset still\'s disease, shoulder region', 'ICD10_2010'), +('M06.12', 'Adult-onset still\'s disease, upper arm', 'ICD10_2010'), +('M06.13', 'Adult-onset still\'s disease, forearm', 'ICD10_2010'), +('M06.14', 'Adult-onset still\'s disease, hand', 'ICD10_2010'), +('M06.15', 'Adult-onset still\'s disease, pelvic and thigh', 'ICD10_2010'), +('M06.16', 'Adult-onset still\'s disease, lower leg', 'ICD10_2010'), +('M06.17', 'Adult-onset still\'s disease, ankle and foot', 'ICD10_2010'), +('M06.18', 'Adult-onset still\'s disease, other sites', 'ICD10_2010'), +('M06.19', 'Adult-onset still\'s disease, unspecified site', 'ICD10_2010'), +('M06.2', 'Rheumatoid bursitis', 'ICD10_2010'), +('M06.20', 'Rheumatoid bursitis, multiple sites', 'ICD10_2010'), +('M06.21', 'Rheumatoid bursitis, shoulder region', 'ICD10_2010'), +('M06.22', 'Rheumatoid bursitis, upper arm', 'ICD10_2010'), +('M06.23', 'Rheumatoid bursitis, forearm', 'ICD10_2010'), +('M06.24', 'Rheumatoid bursitis, hand', 'ICD10_2010'), +('M06.25', 'Rheumatoid bursitis, pelvic and thigh', 'ICD10_2010'), +('M06.26', 'Rheumatoid bursitis, lower leg', 'ICD10_2010'), +('M06.27', 'Rheumatoid bursitis, ankle and foot', 'ICD10_2010'), +('M06.28', 'Rheumatoid bursitis, other sites', 'ICD10_2010'), +('M06.29', 'Rheumatoid bursitis, unspecified site', 'ICD10_2010'), +('M06.3', 'Rheumatoid nodule', 'ICD10_2010'), +('M06.30', 'Rheumatoid nodule, multiple sites', 'ICD10_2010'), +('M06.31', 'Rheumatoid nodule, shoulder region', 'ICD10_2010'), +('M06.32', 'Rheumatoid nodule, upper arm', 'ICD10_2010'), +('M06.33', 'Rheumatoid nodule, forearm', 'ICD10_2010'), +('M06.34', 'Rheumatoid nodule, hand', 'ICD10_2010'), +('M06.35', 'Rheumatoid nodule, pelvic and thigh', 'ICD10_2010'), +('M06.36', 'Rheumatoid nodule, lower leg', 'ICD10_2010'), +('M06.37', 'Rheumatoid nodule, ankle and foot', 'ICD10_2010'), +('M06.38', 'Rheumatoid nodule, other sites', 'ICD10_2010'), +('M06.39', 'Rheumatoid nodule, unspecified site', 'ICD10_2010'), +('M06.4', 'Inflammatory polyarthropathy', 'ICD10_2010'), +('M06.40', 'Inflammatory polyarthropathy, multiple sites', 'ICD10_2010'), +('M06.41', 'Inflammatory polyarthropathy, shoulder region', 'ICD10_2010'), +('M06.42', 'Inflammatory polyarthropathy, upper arm', 'ICD10_2010'), +('M06.43', 'Inflammatory polyarthropathy, forearm', 'ICD10_2010'), +('M06.44', 'Inflammatory polyarthropathy, hand', 'ICD10_2010'), +('M06.45', 'Inflammatory polyarthropathy, pelvic and thigh', 'ICD10_2010'), +('M06.46', 'Inflammatory polyarthropathy, lower leg', 'ICD10_2010'), +('M06.47', 'Inflammatory polyarthropathy, ankle and foot', 'ICD10_2010'), +('M06.48', 'Inflammatory polyarthropathy, other sites', 'ICD10_2010'), +('M06.49', 'Inflammatory polyarthropathy, unspecified site', 'ICD10_2010'), +('M06.8', 'Other specified rheumatoid arthritis', 'ICD10_2010'), +('M06.80', 'Other specified rheumatoid arthritis, multiple sites', 'ICD10_2010'), +('M06.81', 'Other specified rheumatoid arthritis, shoulder region', 'ICD10_2010'), +('M06.82', 'Other specified rheumatoid arthritis, upper arm', 'ICD10_2010'), +('M06.83', 'Other specified rheumatoid arthritis, forearm', 'ICD10_2010'), +('M06.84', 'Other specified rheumatoid arthritis, hand', 'ICD10_2010'), +('M06.85', 'Other specified rheumatoid arthritis, pelvic and thigh', 'ICD10_2010'), +('M06.86', 'Other specified rheumatoid arthritis, lower leg', 'ICD10_2010'), +('M06.87', 'Other specified rheumatoid arthritis, ankle and foot', 'ICD10_2010'), +('M06.88', 'Other specified rheumatoid arthritis, other sites', 'ICD10_2010'), +('M06.89', 'Other specified rheumatoid arthritis, unspecified site', 'ICD10_2010'), +('M06.9', 'Rheumatoid arthritis, unspecified', 'ICD10_2010'), +('M06.90', 'Rheumatoid arthritis, unspecified, multiple sites', 'ICD10_2010'), +('M06.91', 'Rheumatoid arthritis, unspecified, shoulder region', 'ICD10_2010'), +('M06.92', 'Rheumatoid arthritis, unspecified, upper arm', 'ICD10_2010'), +('M06.93', 'Rheumatoid arthritis, unspecified, forearm', 'ICD10_2010'), +('M06.94', 'Rheumatoid arthritis, unspecified, hand', 'ICD10_2010'), +('M06.95', 'Rheumatoid arthritis, unspecified, pelvic and thigh', 'ICD10_2010'), +('M06.96', 'Rheumatoid arthritis, unspecified, lower leg', 'ICD10_2010'), +('M06.97', 'Rheumatoid arthritis, unspecified, ankle and foot', 'ICD10_2010'), +('M06.98', 'Rheumatoid arthritis, unspecified, other sites', 'ICD10_2010'), +('M06.99', 'Rheumatoid arthritis, unspecified, unspecified site', 'ICD10_2010'), +('M07', 'Psoriatic and enteropathic arthropathies', 'ICD10_2010'), +('M07.0', 'Distal interphalangeal proriatic arthropathy', 'ICD10_2010'), +('M07.00', 'Distal interphalangeal psoriatic arthropathy, multiple sites', 'ICD10_2010'), +('M07.04', 'Distal interphalangeal psoriatic arthropathy, hand', 'ICD10_2010'), +('M07.07', 'Distal interphalangeal psoriatic arthropathy, ankle and foot', 'ICD10_2010'), +('M07.09', 'Distal interphalangeal psoriatic arthropathy, site unspecified', 'ICD10_2010'), +('M07.1', 'Arthritis mutilans', 'ICD10_2010'), +('M07.10', 'Arthritis mutilans, multiple sites', 'ICD10_2010'), +('M07.11', 'Arthritis mutilans, shoulder region', 'ICD10_2010'), +('M07.12', 'Arthritis mutilans, upper arm', 'ICD10_2010'), +('M07.13', 'Arthritis mutilans, forearm', 'ICD10_2010'), +('M07.14', 'Arthritis mutilans, hand', 'ICD10_2010'), +('M07.15', 'Arthritis mutilans, pelvic and thigh', 'ICD10_2010'), +('M07.16', 'Arthritis mutilans, lower leg', 'ICD10_2010'), +('M07.17', 'Arthritis mutilans, ankle and foot', 'ICD10_2010'), +('M07.18', 'Arthritis mutilans, other sites', 'ICD10_2010'), +('M07.19', 'Arthritis mutilans, unspecified site', 'ICD10_2010'), +('M07.2', 'Psoriatic spondylitis', 'ICD10_2010'), +('M07.3', 'Other psoriatic arthropathies', 'ICD10_2010'), +('M07.30', 'Other psoriatic arthropathies, multiple sites', 'ICD10_2010'), +('M07.31', 'Other psoriatic arthropathies, sholder region', 'ICD10_2010'), +('M07.32', 'Other psoriatic arthropathies, upper arm', 'ICD10_2010'), +('M07.33', 'Other psoriatic arthropathies, forearm', 'ICD10_2010'), +('M07.34', 'Other psoriatic arthropathies, hand', 'ICD10_2010'), +('M07.35', 'Other psoriatic arthropathies, pelvic and thigh', 'ICD10_2010'), +('M07.36', 'Other psoriatic arthropathies, lower leg', 'ICD10_2010'), +('M07.37', 'Other psoriatic arthropathies, ankle and foot', 'ICD10_2010'), +('M07.38', 'Other psoriatic arthropathies, other sites', 'ICD10_2010'), +('M07.39', 'Other psoriatic arthropathies, unspecified site', 'ICD10_2010'), +('M07.4', 'Arthropathy in crohn\'s disease [regional enteritis]', 'ICD10_2010'), +('M07.40', 'Arthropathy in crohn\'s disease [regional enteritis], multiple sites', 'ICD10_2010'), +('M07.41', 'Arthropathy in crohn\'s disease [regional enteritis], shoulder region', 'ICD10_2010'), +('M07.42', 'Arthropathy in crohn\'s disease [regional enteritis], upper arm', 'ICD10_2010'), +('M07.43', 'Arthropathy in crohn\'s disease [regional enteritis], forearm', 'ICD10_2010'), +('M07.44', 'Arthropathy in crohn\'s disease [regional enteritis], hand', 'ICD10_2010'), +('M07.45', 'Arthropathy in crohn\'s disease [regional enteritis], pelvic and thigh', 'ICD10_2010'), +('M07.46', 'Arthropathy in crohn\'s disease [regional enteritis], lower leg', 'ICD10_2010'), +('M07.47', 'Arthropathy in crohn\'s disease [regional enteritis], ankle and foot', 'ICD10_2010'), +('M07.48', 'Arthropathy in crohn\'s disease [regional enteritis], other sites', 'ICD10_2010'), +('M07.49', 'Arthropathy in crohn\'s disease [regional enteritis], unspecified site', 'ICD10_2010'), +('M07.5', 'Arthropathy in ulcerative colitis', 'ICD10_2010'), +('M07.50', 'Arthropathy in ulcerative colitis, multiple sites', 'ICD10_2010'), +('M07.51', 'Arthropathy in ulcerative colitis, shoulder region', 'ICD10_2010'), +('M07.52', 'Arthropathy in ulcerative colitis, upper arm', 'ICD10_2010'), +('M07.53', 'Arthropathy in ulcerative colitis, forearm', 'ICD10_2010'), +('M07.54', 'Arthropathy in ulcerative colitis, hand', 'ICD10_2010'), +('M07.55', 'Arthropathy in ulcerative colitis, pelvic and thigh', 'ICD10_2010'), +('M07.56', 'Arthropathy in ulcerative colitis, lower leg', 'ICD10_2010'), +('M07.57', 'Arthropathy in ulcerative colitis, ankle and foot', 'ICD10_2010'), +('M07.58', 'Arthropathy in ulcerative colitis, other sites', 'ICD10_2010'), +('M07.59', 'Arthropathy in ulcerative colitis, unspecified site', 'ICD10_2010'), +('M07.6', 'Other enteropathic arthropathies', 'ICD10_2010'), +('M07.60', 'Other enteropathic arthropathies, multiple sites', 'ICD10_2010'), +('M07.61', 'Other enteropathic arthropathies, shoulder region', 'ICD10_2010'), +('M07.62', 'Other enteropathic arthropathies, upper arm', 'ICD10_2010'), +('M07.63', 'Other enteropathic arthropathies, forearm', 'ICD10_2010'), +('M07.64', 'Other enteropathic arthropathies, hand', 'ICD10_2010'), +('M07.65', 'Other enteropathic arthropathies, pelvic and thigh', 'ICD10_2010'), +('M07.66', 'Other enteropathic arthropathies, lower leg', 'ICD10_2010'), +('M07.67', 'Other enteropathic arthropathies, ankle and foot', 'ICD10_2010'), +('M07.68', 'Other enteropathic arthropathies, other sites', 'ICD10_2010'), +('M07.69', 'Other enteropathic arthropathies, unspecified site', 'ICD10_2010'), +('M08', 'Juvenile arthritis', 'ICD10_2010'), +('M08.0', 'Juvenile rheumatoid arthritis', 'ICD10_2010'), +('M08.00', 'Juvenile rheumatoid arthritis, multiple sites', 'ICD10_2010'), +('M08.01', 'Juvenile rheumatoid arthritis, shoulder region', 'ICD10_2010'), +('M08.02', 'Juvenile rheumatoid arthritis, upper arm', 'ICD10_2010'), +('M08.03', 'Juvenile rheumatoid arthritis, forearm', 'ICD10_2010'), +('M08.04', 'Juvenile rheumatoid arthritis, hand', 'ICD10_2010'), +('M08.05', 'Juvenile rheumatoid arthritis, pelvic and thigh', 'ICD10_2010'), +('M08.06', 'Juvenile rheumatoid arthritis, lower leg', 'ICD10_2010'), +('M08.07', 'Juvenile rheumatoid arthritis, ankle and foot', 'ICD10_2010'), +('M08.08', 'Juvenile rheumatoid arthritis, other sites', 'ICD10_2010'), +('M08.09', 'Juvenile rheumatoid arthritis, unspecified site', 'ICD10_2010'), +('M08.1', 'Juvenile ankylosing spondylitis', 'ICD10_2010'), +('M08.10', 'Juvenile ankylosing spondylitis, multiple sites', 'ICD10_2010'), +('M08.11', 'Juvenile ankylosing spondylitis, shouder region', 'ICD10_2010'), +('M08.12', 'Juvenile ankylosing spondylitis, upper arm', 'ICD10_2010'), +('M08.13', 'Juvenile ankylosing spondylitis, forearm', 'ICD10_2010'), +('M08.14', 'Juvenile ankylosing spondylitis, hand', 'ICD10_2010'), +('M08.15', 'Juvenile ankylosing spondylitis, pelvic and thigh', 'ICD10_2010'), +('M08.16', 'Juvenile ankylosing spondylitis, lower leg', 'ICD10_2010'), +('M08.17', 'Juvenile ankylosing spondylitis, ankle and foot', 'ICD10_2010'), +('M08.18', 'Juvenile ankylosing spondylitis, other sites', 'ICD10_2010'), +('M08.19', 'Juvenile ankylosing spondylitis, unspecified site', 'ICD10_2010'), +('M08.2', 'Juvenile arthritis with systemic onset', 'ICD10_2010'), +('M08.20', 'Juvenile arthritis with systemic onset, multiple sites', 'ICD10_2010'), +('M08.21', 'Juvenile arthritis with systemic onset, shoulder region', 'ICD10_2010'), +('M08.22', 'Juvenile arthritis with systemic onset, upper arm', 'ICD10_2010'), +('M08.23', 'Juvenile arthritis with systemic onset, forearm', 'ICD10_2010'), +('M08.24', 'Juvenile arthritis with systemic onset, hand', 'ICD10_2010'), +('M08.25', 'Juvenile arthritis with systemic onset, pelvic and thigh', 'ICD10_2010'), +('M08.26', 'Juvenile arthritis with systemic onset, lower leg', 'ICD10_2010'), +('M08.27', 'Juvenile arthritis with systemic onset, ankle and foot', 'ICD10_2010'), +('M08.28', 'Juvenile arthritis with systemic onset, other sites', 'ICD10_2010'), +('M08.29', 'Juvenile arthritis with systemic onset, unspecified site', 'ICD10_2010'), +('M08.3', 'Juvenile polyarthritis (seronegative)', 'ICD10_2010'), +('M08.30', 'Juvenile polyarthritis (seronegative), multiple sites', 'ICD10_2010'), +('M08.31', 'Juvenile polyarthritis (seronegative), shoulder region', 'ICD10_2010'), +('M08.32', 'Juvenile polyarthritis (seronegative), upper arm', 'ICD10_2010'), +('M08.33', 'Juvenile polyarthritis (seronegative), forearm', 'ICD10_2010'), +('M08.34', 'Juvenile polyarthritis (seronegative), hand', 'ICD10_2010'), +('M08.35', 'Juvenile polyarthritis (seronegative), pelvic and thigh', 'ICD10_2010'), +('M08.36', 'Juvenile polyarthritis (seronegative), lower leg', 'ICD10_2010'), +('M08.37', 'Juvenile polyarthritis (seronegative), ankle and foot', 'ICD10_2010'), +('M08.38', 'Juvenile polyarthritis (seronegative), other sites', 'ICD10_2010'), +('M08.39', 'Juvenile polyarthritis (seronegative), unspecified site', 'ICD10_2010'), +('M08.4', 'Pauciarticular juvenile arthritis', 'ICD10_2010'), +('M08.40', 'Pauciarticular juvenile arthritis, multiple sites', 'ICD10_2010'), +('M08.41', 'Pauciarticular juvenile arthritis, shoulder region', 'ICD10_2010'), +('M08.42', 'Pauciarticular juvenile arthritis, upper arm', 'ICD10_2010'), +('M08.43', 'Pauciarticular juvenile arthritis, forearm', 'ICD10_2010'), +('M08.44', 'Pauciarticular juvenile arthritis, hand', 'ICD10_2010'), +('M08.45', 'Pauciarticular juvenile arthritis, pelvica and thigh', 'ICD10_2010'), +('M08.46', 'Pauciarticular juvenile arthritis, lower leg', 'ICD10_2010'), +('M08.47', 'Pauciarticular juvenile arthritis, ankle and foot', 'ICD10_2010'), +('M08.48', 'Pauciarticular juvenile arthritis, other sites', 'ICD10_2010'), +('M08.49', 'Pauciarticular juvenile arthritis, unspecified site', 'ICD10_2010'), +('M08.8', 'Other juvenile arthritis', 'ICD10_2010'), +('M08.80', 'Other juvenile arthritis, multiple sites', 'ICD10_2010'), +('M08.81', 'Other juvenile arthritis, shoulder region', 'ICD10_2010'), +('M08.82', 'Other juvenile arthritis, upper arm', 'ICD10_2010'), +('M08.83', 'Other juvenile arthritis, forearm', 'ICD10_2010'), +('M08.84', 'Other juvenile arthritis, hand', 'ICD10_2010'), +('M08.85', 'Other juvenile arthritis, pelvic and thigh', 'ICD10_2010'), +('M08.86', 'Other juvenile arthritis, lower leg', 'ICD10_2010'), +('M08.87', 'Other juvenile arthritis, ankle and foot', 'ICD10_2010'), +('M08.88', 'Other juvenile arthritis, other sites', 'ICD10_2010'), +('M08.89', 'Other juvenile arthritis, unspecified site', 'ICD10_2010'), +('M08.9', 'Juvenile arthritis, unspecified', 'ICD10_2010'), +('M08.90', 'Juvenile arthritis, unspecified, multiple sites', 'ICD10_2010'), +('M08.91', 'Juvenile arthritis, unspecified, shoulder region', 'ICD10_2010'), +('M08.92', 'Juvenile arthritis, unspecified, upper arm', 'ICD10_2010'), +('M08.93', 'Juvenile arthritis, unspecified, forearm', 'ICD10_2010'), +('M08.94', 'Juvenile arthritis, unspecified, hand', 'ICD10_2010'), +('M08.95', 'Juvenile arthritis, unspecified, pelvic and thigh', 'ICD10_2010'), +('M08.96', 'Juvenile arthritis, unspecified, lower leg', 'ICD10_2010'), +('M08.97', 'Juvenile arthritis, unspecified, ankle and foot', 'ICD10_2010'), +('M08.98', 'Juvenile arthritis, unspecified, other sites', 'ICD10_2010'), +('M08.99', 'Juvenile arthritis, unspecified, unspecified site', 'ICD10_2010'), +('M09', 'Juvenile arthritis in diseases classified elsewhere', 'ICD10_2010'), +('M09.0', 'Juvenile arthritis in psoriasis', 'ICD10_2010'), +('M09.00', 'Juvenile arthritis in psoriasis, multiple sites', 'ICD10_2010'), +('M09.01', 'Juvenile arthritis in psoriasis, shoulder region', 'ICD10_2010'), +('M09.02', 'Juvenile arthritis in psoriasis, upper arm', 'ICD10_2010'), +('M09.03', 'Juvenile arthritis in psoriasis, forearm', 'ICD10_2010'), +('M09.04', 'Juvenile arthritis in psoriasis, hand', 'ICD10_2010'), +('M09.05', 'Juvenile arthritis in psoriasis, pelvic and thigh', 'ICD10_2010'), +('M09.06', 'Juvenile arthritis in psoriasis, lower leg', 'ICD10_2010'), +('M09.07', 'Juvenile arthritis in psoriasis, ankle and foot', 'ICD10_2010'), +('M09.08', 'Juvenile arthritis in psoriasis, other sites', 'ICD10_2010'), +('M09.09', 'Juvenile arthritis in psoriasis, unspecified site', 'ICD10_2010'), +('M09.1', 'Juvenile arthritis in crohn\'s disease [regional enteritis]', 'ICD10_2010'), +('M09.10', 'Juvenile arthritis in crohn\'s disease [regional enteritis], multiple sites', 'ICD10_2010'), +('M09.11', 'Juvenile arthritis in crohn\'s disease [regional enteritis], shoulder region', 'ICD10_2010'), +('M09.12', 'Juvenile arthritis in crohn\'s disease [regional enteritis], upper arm', 'ICD10_2010'), +('M09.13', 'Juvenile arthritis in crohn\'s disease [regional enteritis], forearm', 'ICD10_2010'), +('M09.14', 'Juvenile arthritis in crohn\'s disease [regional enteritis], hand', 'ICD10_2010'), +('M09.15', 'Juvenile arthritis in crohn\'s disease [regional enteritis], pelvic and thigh', 'ICD10_2010'), +('M09.16', 'Juvenile arthritis in crohn\'s disease [regional enteritis], lower leg', 'ICD10_2010'), +('M09.17', 'Juvenile arthritis in crohn\'s disease [regional enteritis], ankle and foot', 'ICD10_2010'), +('M09.18', 'Juvenile arthritis in crohn\'s disease [regional enteritis], other sites', 'ICD10_2010'), +('M09.19', 'Juvenile arthritis in crohn\'s disease [regional enteritis], unspecified site', 'ICD10_2010'), +('M09.2', 'Juvenile arthritis in ulcerative colitis', 'ICD10_2010'), +('M09.20', 'Juvenile arthritis in ulcerative colitis, multiple sites', 'ICD10_2010'), +('M09.21', 'Juvenile arthritis in ulcerative colitis, shoulder region', 'ICD10_2010'), +('M09.22', 'Juvenile arthritis in ulcerative colitis, upper arm', 'ICD10_2010'), +('M09.23', 'Juvenile arthritis in ulcerative colitis, forearm', 'ICD10_2010'), +('M09.24', 'Juvenile arthritis in ulcerative colitis, hand', 'ICD10_2010'), +('M09.25', 'Juvenile arthritis in ulcerative colitis, pelvic and thigh', 'ICD10_2010'), +('M09.26', 'Juvenile arthritis in ulcerative colitis, lower leg', 'ICD10_2010'), +('M09.27', 'Juvenile arthritis in ulcerative colitis, ankle and foot', 'ICD10_2010'), +('M09.28', 'Juvenile arthritis in ulcerative colitis, other sites', 'ICD10_2010'), +('M09.29', 'Juvenile arthritis in ulcerative colitis, unspecified site', 'ICD10_2010'), +('M09.8', 'Juvenile arthritis in other diseases classified elsewhere', 'ICD10_2010'), +('M09.80', 'Juvenile arthritis in other diseases classified elsewhere, multiple sites', 'ICD10_2010'), +('M09.81', 'Juvenile arthritis in other diseases classified elsewhere, shoulder region', 'ICD10_2010'), +('M09.82', 'Juvenile arthritis in other diseases classified elsewhere, upper arm', 'ICD10_2010'), +('M09.83', 'Juvenile arthritis in other diseases classified elsewhere, forearm', 'ICD10_2010'), +('M09.84', 'Juvenile arthritis in other diseases classified elsewhere, hand', 'ICD10_2010'), +('M09.85', 'Juvenile arthritis in other diseases classified elsewhere, pelvic and thigh', 'ICD10_2010'), +('M09.86', 'Juvenile arthritis in other diseases classified elsewhere, lower leg', 'ICD10_2010'), +('M09.87', 'Juvenile arthritis in other diseases classified elsewhere, ankle and foot', 'ICD10_2010'), +('M09.88', 'Juvenile arthritis in other diseases classified elsewhere, other sites', 'ICD10_2010'), +('M09.89', 'Juvenile arthritis in other diseases classified elsewhere, unspecified site', 'ICD10_2010'), +('M10', 'Gout', 'ICD10_2010'), +('M10.0', 'Idiopathic gout', 'ICD10_2010'), +('M10.00', 'Idiopathic gout, multiple sites', 'ICD10_2010'), +('M10.01', 'Idiopathic gout, shoulder region', 'ICD10_2010'), +('M10.02', 'Idiopathic gout, upper arm', 'ICD10_2010'), +('M10.03', 'Idiopathic gout, forearm', 'ICD10_2010'), +('M10.04', 'Idiopathic gout, hand', 'ICD10_2010'), +('M10.05', 'Idiopathic gout, pelvic and thigh', 'ICD10_2010'), +('M10.06', 'Idiopathic gout, lower leg', 'ICD10_2010'), +('M10.07', 'Idiopathic gout, ankle and foot', 'ICD10_2010'), +('M10.08', 'Idiopathic gout, other sites', 'ICD10_2010'), +('M10.09', 'Idiopathic gout, unspecified site', 'ICD10_2010'), +('M10.1', 'Lead-induced gout', 'ICD10_2010'), +('M10.10', 'Lead-induced gout, multiple sites', 'ICD10_2010'), +('M10.11', 'Lead-induced gout, shoulder region', 'ICD10_2010'), +('M10.12', 'Lead-induced gout, upper arm', 'ICD10_2010'), +('M10.13', 'Lead-induced gout, forearm', 'ICD10_2010'), +('M10.14', 'Lead-induced gout, hand', 'ICD10_2010'), +('M10.15', 'Lead-induced gout, pelvic and thigh', 'ICD10_2010'), +('M10.16', 'Lead-induced gout, lower leg', 'ICD10_2010'), +('M10.17', 'Lead-induced gout, ankle and foot', 'ICD10_2010'), +('M10.18', 'Lead-induced gout, other sites', 'ICD10_2010'), +('M10.19', 'Lead-induced gout, unspecified site', 'ICD10_2010'), +('M10.2', 'Drug-induced gout', 'ICD10_2010'), +('M10.20', 'Drug-induced gout, multiple sites', 'ICD10_2010'), +('M10.21', 'Drug-induced gout, shoulder region', 'ICD10_2010'), +('M10.22', 'Drug-induced gout, upper arm', 'ICD10_2010'), +('M10.23', 'Drug-induced gout, forearm', 'ICD10_2010'), +('M10.24', 'Drug-induced gout, hand', 'ICD10_2010'), +('M10.25', 'Drug-induced gout, pelvic and thigh', 'ICD10_2010'), +('M10.26', 'Drug-induced gout, lower leg', 'ICD10_2010'), +('M10.27', 'Drug-induced gout, ankle and foot', 'ICD10_2010'), +('M10.28', 'Drug-induced gout, other sites', 'ICD10_2010'), +('M10.29', 'Drug-induced gout, unspecified site', 'ICD10_2010'), +('M10.3', 'Gout due to impairment of renal function', 'ICD10_2010'), +('M10.30', 'Gout due to impairment of renal function, multiple sites', 'ICD10_2010'), +('M10.31', 'Gout due to impairment of renal function, shoulder region', 'ICD10_2010'), +('M10.32', 'Gout due to impairment of renal function, upper arm', 'ICD10_2010'), +('M10.33', 'Gout due to impairment of renal function, forearm', 'ICD10_2010'), +('M10.34', 'Gout due to impairment of renal function, hand', 'ICD10_2010'), +('M10.35', 'Gout due to impairment of renal function, pelvic and thigh', 'ICD10_2010'), +('M10.36', 'Gout due to impairment of renal function, lower leg', 'ICD10_2010'), +('M10.37', 'Gout due to impairment of renal function, ankle and foot', 'ICD10_2010'), +('M10.38', 'Gout due to impairment of renal function, other sites', 'ICD10_2010'), +('M10.39', 'Gout due to impairment of renal function, unspecified site', 'ICD10_2010'), +('M10.4', 'Other secondary gout', 'ICD10_2010'), +('M10.40', 'Other secondary gout, multiple sites', 'ICD10_2010'), +('M10.41', 'Other secondary gout, shoulder region', 'ICD10_2010'), +('M10.42', 'Other secondary gout, upper arm', 'ICD10_2010'), +('M10.43', 'Other secondary gout, forearm', 'ICD10_2010'), +('M10.44', 'Other secondary gout, hand', 'ICD10_2010'), +('M10.45', 'Other secondary gout, pelvic and thigh', 'ICD10_2010'), +('M10.46', 'Other secondary gout, lower leg', 'ICD10_2010'), +('M10.47', 'Other secondary gout, ankle and foot', 'ICD10_2010'), +('M10.48', 'Other secondary gout, other sites', 'ICD10_2010'), +('M10.49', 'Other secondary gout, unspecified site', 'ICD10_2010'), +('M10.9', 'Gout, unspecified', 'ICD10_2010'), +('M10.90', 'Gout, unspecified, multiple sites', 'ICD10_2010'), +('M10.91', 'Gout, unspecified, shoulder region', 'ICD10_2010'), +('M10.92', 'Gout, unspecified, upper arm', 'ICD10_2010'), +('M10.93', 'Gout, unspecified, forearm', 'ICD10_2010'), +('M10.94', 'Gout, unspecified, hand', 'ICD10_2010'), +('M10.95', 'Gout, unspecified, pelvic and thigh', 'ICD10_2010'), +('M10.96', 'Gout, unspecified, lower leg', 'ICD10_2010'), +('M10.97', 'Gout, unspecified, ankle and foot', 'ICD10_2010'), +('M10.98', 'Gout, unspecified, other sites', 'ICD10_2010'), +('M10.99', 'Gout, unspecified, unspecified site', 'ICD10_2010'), +('M11', 'Other crystal arthropathies', 'ICD10_2010'), +('M11.0', 'Hydroxyapatite deposition disease', 'ICD10_2010'), +('M11.00', 'Hydroxyapatite deposition disease, multiple sites', 'ICD10_2010'), +('M11.01', 'Hydroxyapatite deposition disease, shoulder region', 'ICD10_2010'), +('M11.02', 'Hydroxyapatite deposition disease, upper arm', 'ICD10_2010'), +('M11.03', 'Hydroxyapatite deposition disease, forearm', 'ICD10_2010'), +('M11.04', 'Hydroxyapatite deposition disease, hand', 'ICD10_2010'), +('M11.05', 'Hydroxyapatite deposition disease, pelvic and thigh', 'ICD10_2010'), +('M11.06', 'Hydroxyapatite deposition disease, lower leg', 'ICD10_2010'), +('M11.07', 'Hydroxyapatite deposition disease, ankle and foot', 'ICD10_2010'), +('M11.08', 'Hydroxyapatite deposition disease, other sites', 'ICD10_2010'), +('M11.09', 'Hydroxyapatite deposition disease, unspecified site', 'ICD10_2010'), +('M11.1', 'Familial chondrocalcinosis', 'ICD10_2010'), +('M11.10', 'Familial chondrocalcinosis, multiple sites', 'ICD10_2010'), +('M11.11', 'Familial chondrocalcinosis, shoulder region', 'ICD10_2010'), +('M11.12', 'Familial chondrocalcinosis, upper arm', 'ICD10_2010'), +('M11.13', 'Familial chondrocalcinosis, forearm', 'ICD10_2010'), +('M11.14', 'Familial chondrocalcinosis, hand', 'ICD10_2010'), +('M11.15', 'Familial chondrocalcinosis, pelvic and thigh', 'ICD10_2010'), +('M11.16', 'Familial chondrocalcinosis, lower leg', 'ICD10_2010'), +('M11.17', 'Familial chondrocalcinosis, ankle and foot', 'ICD10_2010'), +('M11.18', 'Familial chondrocalcinosis, other sites', 'ICD10_2010'), +('M11.19', 'Familial chondrocalcinosis, unspecified site', 'ICD10_2010'), +('M11.2', 'Other chondrocalcinosis', 'ICD10_2010'), +('M11.20', 'Other chondrocalcinosis, multiple sites', 'ICD10_2010'), +('M11.21', 'Other chondrocalcinosis, shoulder region', 'ICD10_2010'), +('M11.22', 'Other chondrocalcinosis, upper arm', 'ICD10_2010'), +('M11.23', 'Other chondrocalcinosis, forearm', 'ICD10_2010'), +('M11.24', 'Other chondrocalcinosis, hand', 'ICD10_2010'), +('M11.25', 'Other chondrocalcinosis, pelvic and thigh', 'ICD10_2010'), +('M11.26', 'Other chondrocalcinosis, lower leg', 'ICD10_2010'), +('M11.27', 'Other chondrocalcinosis, ankle and foot', 'ICD10_2010'), +('M11.28', 'Other chondrocalcinosis, other sites', 'ICD10_2010'), +('M11.29', 'Other chondrocalcinosis, unspecified site', 'ICD10_2010'), +('M11.8', 'Other specified crystal arthropathies', 'ICD10_2010'), +('M11.80', 'Other specified crystal arthropathies, multiple sites', 'ICD10_2010'), +('M11.81', 'Other specified crystal arthropathies, shoulder region', 'ICD10_2010'), +('M11.82', 'Other specified crystal arthropathies, upper arm', 'ICD10_2010'), +('M11.83', 'Other specified crystal arthropathies, forearm', 'ICD10_2010'), +('M11.84', 'Other specified crystal arthropathies, hand', 'ICD10_2010'), +('M11.85', 'Other specified crystal arthropathies, pelvic and thigh', 'ICD10_2010'), +('M11.86', 'Other specified crystal arthropathies, lower leg', 'ICD10_2010'), +('M11.87', 'Other specified crystal arthropathies, ankle and foot', 'ICD10_2010'), +('M11.88', 'Other specified crystal arthropathies, other sites', 'ICD10_2010'), +('M11.89', 'Other specified crystal arthropathies, unspecified site', 'ICD10_2010'), +('M11.9', 'Crystal arthropathy, unspecified', 'ICD10_2010'), +('M11.90', 'Crystal arthropathy, unspecified, multiple sites', 'ICD10_2010'), +('M11.91', 'Crystal arthropathy, unspecified, shoulder region', 'ICD10_2010'), +('M11.92', 'Crystal arthropathy, unspecified, upper arm', 'ICD10_2010'), +('M11.93', 'Crystal arthropathy, unspecified, forearm', 'ICD10_2010'), +('M11.94', 'Crystal arthropathy, unspecified, hand', 'ICD10_2010'), +('M11.95', 'Crystal arthropathy, unspecified, pelvic and thigh', 'ICD10_2010'), +('M11.96', 'Crystal arthropathy, unspecified, lower leg', 'ICD10_2010'), +('M11.97', 'Crystal arthropathy, unspecified, ankle and foot', 'ICD10_2010'), +('M11.98', 'Crystal arthropathy, unspecified, other sites', 'ICD10_2010'), +('M11.99', 'Crystal arthropathy, unspecified, unspecified site', 'ICD10_2010'), +('M12', 'Other specific arthropathies', 'ICD10_2010'), +('M12.0', 'Chronic postrheumatic arthropathy [jaccoud]', 'ICD10_2010'), +('M12.00', 'Chronic postrheumatic arthropathy [jaccoud], multiple sites', 'ICD10_2010'), +('M12.01', 'Chronic postrheumatic arthropathy [jaccoud], shoulder region', 'ICD10_2010'), +('M12.02', 'Chronic postrheumatic arthropathy [jaccoud], upper arm', 'ICD10_2010'), +('M12.03', 'Chronic postrheumatic arthropathy [jaccoud], forearm', 'ICD10_2010'), +('M12.04', 'Chronic postrheumatic arthropathy [jaccoud], hand', 'ICD10_2010'), +('M12.05', 'Chronic postrheumatic arthropathy [jaccoud], pelvic and thigh', 'ICD10_2010'), +('M12.06', 'Chronic postrheumatic arthropathy [jaccoud], lower leg', 'ICD10_2010'), +('M12.07', 'Chronic postrheumatic arthropathy [jaccoud], ankle and foot', 'ICD10_2010'), +('M12.08', 'Chronic postrheumatic arthropathy [jaccoud], other sites', 'ICD10_2010'), +('M12.09', 'Chronic postrheumatic arthropathy [jaccoud], unspecified site', 'ICD10_2010'), +('M12.1', 'Kaschin-beck disease', 'ICD10_2010'), +('M12.10', 'Kaschin-beck disease, multiple sites', 'ICD10_2010'), +('M12.11', 'Kaschin-beck disease, shoulder region', 'ICD10_2010'), +('M12.12', 'Kaschin-beck disease, upper arm', 'ICD10_2010'), +('M12.13', 'Kaschin-beck disease, forearm', 'ICD10_2010'), +('M12.14', 'Kaschin-beck disease, hand', 'ICD10_2010'), +('M12.15', 'Kaschin-beck disease, pelvic and thigh', 'ICD10_2010'), +('M12.16', 'Kaschin-beck disease, lower leg', 'ICD10_2010'), +('M12.17', 'Kaschin-beck disease, ankle and foot', 'ICD10_2010'), +('M12.18', 'Kaschin-beck disease, other sites', 'ICD10_2010'), +('M12.19', 'Kaschin-beck disease, unspecified site', 'ICD10_2010'), +('M12.2', 'Villonodular synovitis (pigmented)', 'ICD10_2010'), +('M12.20', 'Villonodular synovitis (pigmented), multiple sites', 'ICD10_2010'), +('M12.21', 'Villonodular synovitis (pigmented), shoulder region', 'ICD10_2010'), +('M12.22', 'Villonodular synovitis (pigmented), upper arm', 'ICD10_2010'), +('M12.23', 'Villonodular synovitis (pigmented), forearm', 'ICD10_2010'), +('M12.24', 'Villonodular synovitis (pigmented), hand', 'ICD10_2010'), +('M12.25', 'Villonodular synovitis (pigmented), pelvic and thigh', 'ICD10_2010'), +('M12.26', 'Villonodular synovitis (pigmented), lower leg', 'ICD10_2010'), +('M12.27', 'Villonodular synovitis (pigmented), ankle and foot', 'ICD10_2010'), +('M12.28', 'Villonodular synovitis (pigmented), other sites', 'ICD10_2010'), +('M12.29', 'Villonodular synovitis (pigmented), unspecified site', 'ICD10_2010'), +('M12.3', 'Palindromic rheumatism', 'ICD10_2010'), +('M12.30', 'Palindromic rheumatism, multiple sites', 'ICD10_2010'), +('M12.31', 'Palindromic rheumatism, shoulder region', 'ICD10_2010'), +('M12.32', 'Palindromic rheumatism, upper arm', 'ICD10_2010'), +('M12.33', 'Palindromic rheumatism, forearm', 'ICD10_2010'), +('M12.34', 'Palindromic rheumatism, hand', 'ICD10_2010'), +('M12.35', 'Palindromic rheumatism, pelvic and thigh', 'ICD10_2010'), +('M12.36', 'Palindromic rheumatism, lower leg', 'ICD10_2010'), +('M12.37', 'Palindromic rheumatism, ankle and foot', 'ICD10_2010'), +('M12.38', 'Palindromic rheumatism, other sites', 'ICD10_2010'), +('M12.39', 'Palindromic rheumatism, unspecified site', 'ICD10_2010'), +('M12.4', 'Intermittent hydrarthrosis', 'ICD10_2010'), +('M12.40', 'Intermittent hydrarthrosis, multiple sites', 'ICD10_2010'), +('M12.41', 'Intermittent hydrarthrosis, shoulder region', 'ICD10_2010'), +('M12.42', 'Intermittent hydrarthrosis, upper arm', 'ICD10_2010'); +INSERT INTO `icd10` (`ID_ICD10`, `Diagnosa`, `Versi_ICD10`) VALUES +('M12.43', 'Intermittent hydrarthrosis, forearm', 'ICD10_2010'), +('M12.44', 'Intermittent hydrarthrosis, hand', 'ICD10_2010'), +('M12.45', 'Intermittent hydrarthrosis, pelvic and thigh', 'ICD10_2010'), +('M12.46', 'Intermittent hydrarthrosis, lower leg', 'ICD10_2010'), +('M12.47', 'Intermittent hydrarthrosis, ankle and foot', 'ICD10_2010'), +('M12.48', 'Intermittent hydrarthrosis, other sites', 'ICD10_2010'), +('M12.49', 'Intermittent hydrarthrosis, unspecified site', 'ICD10_2010'), +('M12.5', 'Traumatic arthropathy', 'ICD10_2010'), +('M12.50', 'Traumatic arthropathy, multiple sites', 'ICD10_2010'), +('M12.51', 'Traumatic arthropathy, shoulder region', 'ICD10_2010'), +('M12.52', 'Traumatic arthropathy, upper arm', 'ICD10_2010'), +('M12.53', 'Traumatic arthropathy, forearm', 'ICD10_2010'), +('M12.54', 'Traumatic arthropathy, hand', 'ICD10_2010'), +('M12.55', 'Traumatic arthropathy, pelvic and thigh', 'ICD10_2010'), +('M12.56', 'Traumatic arthropathy, lower leg', 'ICD10_2010'), +('M12.57', 'Traumatic arthropathy, ankle and foot', 'ICD10_2010'), +('M12.58', 'Traumatic arthropathy, other sites', 'ICD10_2010'), +('M12.59', 'Traumatic arthropathy, unspecified site', 'ICD10_2010'), +('M12.8', 'Other specific arthropathies, not elsewhere classified', 'ICD10_2010'), +('M12.80', 'Other specific arthropathies, not elsewhere classified, multiple sites', 'ICD10_2010'), +('M12.81', 'Other specific arthropathies, not elsewhere classified, shoulder region', 'ICD10_2010'), +('M12.82', 'Other specific arthropathies, not elsewhere classified, upper arm', 'ICD10_2010'), +('M12.83', 'Other specific arthropathies, not elsewhere classified, forearm', 'ICD10_2010'), +('M12.84', 'Other specific arthropathies, not elsewhere classified, hand', 'ICD10_2010'), +('M12.85', 'Other specific arthropathies, not elsewhere classified, pelvic and thigh', 'ICD10_2010'), +('M12.86', 'Other specific arthropathies, not elsewhere classified, lower leg', 'ICD10_2010'), +('M12.87', 'Other specific arthropathies, not elsewhere classified, ankle and foot', 'ICD10_2010'), +('M12.88', 'Other specific arthropathies, not elsewhere classified, other sites', 'ICD10_2010'), +('M12.89', 'Other specific arthropathies, not elsewhere classified, unspecified site', 'ICD10_2010'), +('M13', 'Other arthritis', 'ICD10_2010'), +('M13.0', 'Polyarthritis, unspecified', 'ICD10_2010'), +('M13.00', 'Polyarthritis, unspecified, multiple sites', 'ICD10_2010'), +('M13.01', 'Polyarthritis, unspecified, shoulder region', 'ICD10_2010'), +('M13.02', 'Polyarthritis, unspecified, upper arm', 'ICD10_2010'), +('M13.03', 'Polyarthritis, unspecified, forearm', 'ICD10_2010'), +('M13.04', 'Polyarthritis, unspecified, hand', 'ICD10_2010'), +('M13.05', 'Polyarthritis, unspecified, pelvic and thigh', 'ICD10_2010'), +('M13.06', 'Polyarthritis, unspecified, lower leg', 'ICD10_2010'), +('M13.07', 'Polyarthritis, unspecified, ankle and foot', 'ICD10_2010'), +('M13.08', 'Polyarthritis, unspecified, other sites', 'ICD10_2010'), +('M13.09', 'Polyarthritis, unspecified, unspecified site', 'ICD10_2010'), +('M13.1', 'Monoarthritis, not elsewhere classified', 'ICD10_2010'), +('M13.10', 'Monoarthritis, not elsewhere classified, multiple sites', 'ICD10_2010'), +('M13.11', 'Monoarthritis, not elsewhere classified, shoulder region', 'ICD10_2010'), +('M13.12', 'Monoarthritis, not elsewhere classified, upper arm', 'ICD10_2010'), +('M13.13', 'Monoarthritis, not elsewhere classified, forearm', 'ICD10_2010'), +('M13.14', 'Monoarthritis, not elsewhere classified, hand', 'ICD10_2010'), +('M13.15', 'Monoarthritis, not elsewhere classified, pelvic and thigh', 'ICD10_2010'), +('M13.16', 'Monoarthritis, not elsewhere classified, lower leg', 'ICD10_2010'), +('M13.17', 'Monoarthritis, not elsewhere classified, ankle and foot', 'ICD10_2010'), +('M13.18', 'Monoarthritis, not elsewhere classified, other sites', 'ICD10_2010'), +('M13.19', 'Monoarthritis, not elsewhere classified, unspecified site', 'ICD10_2010'), +('M13.8', 'Other specified arthritis', 'ICD10_2010'), +('M13.80', 'Other specified arthritis, multiple sites', 'ICD10_2010'), +('M13.81', 'Other specified arthritis, shoulder region', 'ICD10_2010'), +('M13.82', 'Other specified arthritis, upper arm', 'ICD10_2010'), +('M13.83', 'Other specified arthritis, forearm', 'ICD10_2010'), +('M13.84', 'Other specified arthritis, hand', 'ICD10_2010'), +('M13.85', 'Other specified arthritis, pelvic and thigh', 'ICD10_2010'), +('M13.86', 'Other specified arthritis, lower leg', 'ICD10_2010'), +('M13.87', 'Other specified arthritis, ankle and foot', 'ICD10_2010'), +('M13.88', 'Other specified arthritis, other sites', 'ICD10_2010'), +('M13.89', 'Other specified arthritis, unspecified site', 'ICD10_2010'), +('M13.9', 'Arthritis, unspecified', 'ICD10_2010'), +('M13.90', 'Arthritis, unspecified, multiple sites', 'ICD10_2010'), +('M13.91', 'Arthritis, unspecified, shoulder region', 'ICD10_2010'), +('M13.92', 'Arthritis, unspecified, upper arm', 'ICD10_2010'), +('M13.93', 'Arthritis, unspecified, forearm', 'ICD10_2010'), +('M13.94', 'Arthritis, unspecified, hand', 'ICD10_2010'), +('M13.95', 'Arthritis, unspecified, pelvic and thigh', 'ICD10_2010'), +('M13.96', 'Arthritis, unspecified, lower leg', 'ICD10_2010'), +('M13.97', 'Arthritis, unspecified, ankle and foot', 'ICD10_2010'), +('M13.98', 'Arthritis, unspecified, other sites', 'ICD10_2010'), +('M13.99', 'Arthritis, unspecified, unspecified site', 'ICD10_2010'), +('M14', 'Arthropathies in other diseases classified elsewhere', 'ICD10_2010'), +('M14.0', 'Gouty arthropathy due to enzyme defects and other inherited disorders', 'ICD10_2010'), +('M14.1', 'Crystal arthropathy in other metabolic disorders', 'ICD10_2010'), +('M14.2', 'Diabetic arthropathy', 'ICD10_2010'), +('M14.3', 'Lipoid dermatoarthritis', 'ICD10_2010'), +('M14.4', 'Arthropathy in amylodosis', 'ICD10_2010'), +('M14.5', 'Arthropathies in other endocrine nutritional and metabolic disorders', 'ICD10_2010'), +('M14.6', 'Neuropathic arthropathy', 'ICD10_2010'), +('M14.8', 'Arthropathies in other specified diseases classified elsewhere', 'ICD10_2010'), +('M15', 'Polyarthrosis', 'ICD10_2010'), +('M15.0', 'Primary generalized (osteo)arthrosis', 'ICD10_2010'), +('M15.1', 'Heberden\'s nodes (with arthropathy)', 'ICD10_2010'), +('M15.2', 'Bouchard\'s nodes (with arthropathy)', 'ICD10_2010'), +('M15.3', 'Secondary multiple arthrosis', 'ICD10_2010'), +('M15.4', 'Erosive (osteo)arthrosis', 'ICD10_2010'), +('M15.8', 'Other polyarthrosis', 'ICD10_2010'), +('M15.9', 'Polyarthrosis, unspecified', 'ICD10_2010'), +('M16', 'Coxarthrosis [arthrosis of hip]', 'ICD10_2010'), +('M16.0', 'Primary coxarthrosis, bilateral', 'ICD10_2010'), +('M16.1', 'Other primary coxarthrosis', 'ICD10_2010'), +('M16.2', 'Coxarthrosis resulting from dysplasia, bilateral', 'ICD10_2010'), +('M16.3', 'Other dysplastic coxarthrosis', 'ICD10_2010'), +('M16.4', 'Post-traumatic coxarthrosis, bilateral', 'ICD10_2010'), +('M16.5', 'Other post-traumatic coxarthrosis', 'ICD10_2010'), +('M16.6', 'Other secondary coxarthrosis, bilateral', 'ICD10_2010'), +('M16.7', 'Other secondary coxarthrosis', 'ICD10_2010'), +('M16.9', 'Coxarthrosis, unspecified', 'ICD10_2010'), +('M17', 'Gonarthrosis [arthrosis of knee]', 'ICD10_2010'), +('M17.0', 'Primary gonarthrosis, bilateral', 'ICD10_2010'), +('M17.1', 'Other primary gonarthrosis', 'ICD10_2010'), +('M17.2', 'Post-traumatic gonarthrosis, bilateral', 'ICD10_2010'), +('M17.3', 'Other post-traumatic gonarthrosis', 'ICD10_2010'), +('M17.4', 'Other secondary gonarthrosis, bilateral', 'ICD10_2010'), +('M17.5', 'Other secondary gonarthrosis', 'ICD10_2010'), +('M17.9', 'Gonarthrosis, unspecified', 'ICD10_2010'), +('M18', 'Arthrosis of first carpometacarpal joint', 'ICD10_2010'), +('M18.0', 'Primary arthrosis of first carpometacarpal joints, bilateral', 'ICD10_2010'), +('M18.1', 'Other primary arthrosis of first carpometacarpal joint', 'ICD10_2010'), +('M18.2', 'Post-traumatic arthrosis of first carpometacarpal joints, bilateral', 'ICD10_2010'), +('M18.3', 'Other post-traumatic arthrosis of first carpometacarpal joints', 'ICD10_2010'), +('M18.4', 'Other secondary arthrosis of first carpometacarpal joints, bilateral', 'ICD10_2010'), +('M18.5', 'Other secondary arthrosis of first carpometacarpal joint', 'ICD10_2010'), +('M18.9', 'Arthrosis of first carpometacarpal joint, unspecified', 'ICD10_2010'), +('M19', 'Other arthrosis', 'ICD10_2010'), +('M19.0', 'Primary arthrosis of other joints', 'ICD10_2010'), +('M19.00', 'Primary arthrosis of other joints, multiple sites', 'ICD10_2010'), +('M19.01', 'Primary arthrosis of other joints, shoulder region', 'ICD10_2010'), +('M19.02', 'Primary arthrosis of other joints, upper arm', 'ICD10_2010'), +('M19.03', 'Primary arthrosis of other joints, forearm', 'ICD10_2010'), +('M19.04', 'Primary arthrosis of other joints, hand', 'ICD10_2010'), +('M19.05', 'Primary arthrosis of other joints, pelvic and thigh', 'ICD10_2010'), +('M19.06', 'Primary arthrosis of other joints, lower leg', 'ICD10_2010'), +('M19.07', 'Primary arthrosis of other joints, ankle and foot', 'ICD10_2010'), +('M19.08', 'Primary arthrosis of other joints, other sites', 'ICD10_2010'), +('M19.09', 'Primary arthrosis of other joints, unspecified site', 'ICD10_2010'), +('M19.1', 'Post-traumatic arthrosis of other joints', 'ICD10_2010'), +('M19.10', 'Post-traumatic arthrosis of other joints, multiple sites', 'ICD10_2010'), +('M19.11', 'Post-traumatic arthrosis of other joints, shoulder region', 'ICD10_2010'), +('M19.12', 'Post-traumatic arthrosis of other joints, upper arm', 'ICD10_2010'), +('M19.13', 'Post-traumatic arthrosis of other joints, forearm', 'ICD10_2010'), +('M19.14', 'Post-traumatic arthrosis of other joints, hand', 'ICD10_2010'), +('M19.15', 'Post-traumatic arthrosis of other joints, pelvic and thigh', 'ICD10_2010'), +('M19.16', 'Post-traumatic arthrosis of other joints, lower leg', 'ICD10_2010'), +('M19.17', 'Post-traumatic arthrosis of other joints, ankle and foot', 'ICD10_2010'), +('M19.18', 'Post-traumatic arthrosis of other joints, other sites', 'ICD10_2010'), +('M19.19', 'Post-traumatic arthrosis of other joints, unspecified site', 'ICD10_2010'), +('M19.2', 'Secondary arthrosis of other joints', 'ICD10_2010'), +('M19.20', 'Secondary arthrosis of other joints, multiple sites', 'ICD10_2010'), +('M19.21', 'Secondary arthrosis of other joints, shoulder region', 'ICD10_2010'), +('M19.22', 'Secondary arthrosis of other joints, upper arm', 'ICD10_2010'), +('M19.23', 'Secondary arthrosis of other joints, forearm', 'ICD10_2010'), +('M19.24', 'Secondary arthrosis of other joints, hand', 'ICD10_2010'), +('M19.25', 'Secondary arthrosis of other joints, pelvic and thigh', 'ICD10_2010'), +('M19.26', 'Secondary arthrosis of other joints, lower leg', 'ICD10_2010'), +('M19.27', 'Secondary arthrosis of other joints, ankle and foot', 'ICD10_2010'), +('M19.28', 'Secondary arthrosis of other joints, other sites', 'ICD10_2010'), +('M19.29', 'Secondary arthrosis of other joints, unspecified site', 'ICD10_2010'), +('M19.8', 'Other specified arthrosis', 'ICD10_2010'), +('M19.80', 'Other specified arthrosis, multiple sites', 'ICD10_2010'), +('M19.81', 'Other specified arthrosis, shoulder region', 'ICD10_2010'), +('M19.82', 'Other specified arthrosis, upper arm', 'ICD10_2010'), +('M19.83', 'Other specified arthrosis, forearm', 'ICD10_2010'), +('M19.84', 'Other specified arthrosis, hand', 'ICD10_2010'), +('M19.85', 'Other specified arthrosis, pelvic and thigh', 'ICD10_2010'), +('M19.86', 'Other specified arthrosis, lower leg', 'ICD10_2010'), +('M19.87', 'Other specified arthrosis, ankle and foot', 'ICD10_2010'), +('M19.88', 'Other specified arthrosis, other sites', 'ICD10_2010'), +('M19.89', 'Other specified arthrosis, unspecified site', 'ICD10_2010'), +('M19.9', 'Arthrosis, unspecified', 'ICD10_2010'), +('M19.90', 'Arthrosis, unspecified, multiple sites', 'ICD10_2010'), +('M19.91', 'Arthrosis, unspecified, shouder region', 'ICD10_2010'), +('M19.92', 'Arthrosis, unspecified, upper arm', 'ICD10_2010'), +('M19.93', 'Arthrosis, unspecified, forearm', 'ICD10_2010'), +('M19.94', 'Arthrosis, unspecified, hand', 'ICD10_2010'), +('M19.95', 'Arthrosis, unspecified, pelvic and thigh', 'ICD10_2010'), +('M19.96', 'Arthrosis, unspecified, lower leg', 'ICD10_2010'), +('M19.97', 'Arthrosis, unspecified, ankle and foot', 'ICD10_2010'), +('M19.98', 'Arthrosis, unspecified, other sites', 'ICD10_2010'), +('M19.99', 'Arthrosis, unspecified, unspecified site', 'ICD10_2010'), +('M20', 'Acquired deformities of fingers and toes', 'ICD10_2010'), +('M20.0', 'Deformity of finger(s)', 'ICD10_2010'), +('M20.1', 'Hallux valgus (acquired)', 'ICD10_2010'), +('M20.2', 'Hallux rigidus', 'ICD10_2010'), +('M20.3', 'Other deformity of hallux (acquired)', 'ICD10_2010'), +('M20.4', 'Other hammer toe(s) (acquired)', 'ICD10_2010'), +('M20.5', 'Other deformities of toe(s) (acquired)', 'ICD10_2010'), +('M20.6', 'Acquired deformity of toe(s), unspecified', 'ICD10_2010'), +('M21', 'Other acquired deformities of limbs', 'ICD10_2010'), +('M21.0', 'Valgus deformity, not elsewhere classified', 'ICD10_2010'), +('M21.00', 'Valgus deformity, not elsewhere classified, multiple sites', 'ICD10_2010'), +('M21.01', 'Valgus deformity, not elsewhere classified, shoulder region', 'ICD10_2010'), +('M21.02', 'Valgus deformity, not elsewhere classified, upper arm', 'ICD10_2010'), +('M21.03', 'Valgus deformity, not elsewhere classified, forearm', 'ICD10_2010'), +('M21.04', 'Valgus deformity, not elsewhere classified, hand', 'ICD10_2010'), +('M21.05', 'Valgus deformity, not elsewhere classified, pelvic and thigh', 'ICD10_2010'), +('M21.06', 'Valgus deformity, not elsewhere classified, lower leg', 'ICD10_2010'), +('M21.07', 'Valgus deformity, not elsewhere classified, ankle and foot', 'ICD10_2010'), +('M21.08', 'Valgus deformity, not elsewhere classified, other sites', 'ICD10_2010'), +('M21.09', 'Valgus deformity, not elsewhere classified, unspecified site', 'ICD10_2010'), +('M21.1', 'Varus deformity, not elsewhere classified', 'ICD10_2010'), +('M21.10', 'Varus deformity, not elsewhere classified, multiple sites', 'ICD10_2010'), +('M21.11', 'Varus deformity, not elsewhere classified, shoulder region', 'ICD10_2010'), +('M21.12', 'Varus deformity, not elsewhere classified, upper arm', 'ICD10_2010'), +('M21.13', 'Varus deformity, not elsewhere classified, forearm', 'ICD10_2010'), +('M21.14', 'Varus deformity, not elsewhere classified, hand', 'ICD10_2010'), +('M21.15', 'Varus deformity, not elsewhere classified, pelvic and thigh', 'ICD10_2010'), +('M21.16', 'Varus deformity, not elsewhere classified, lower leg', 'ICD10_2010'), +('M21.17', 'Varus deformity, not elsewhere classified, ankle and foot', 'ICD10_2010'), +('M21.18', 'Varus deformity, not elsewhere classified, other sites', 'ICD10_2010'), +('M21.19', 'Varus deformity, not elsewhere classified, unspecified site', 'ICD10_2010'), +('M21.2', 'Flexion deformity', 'ICD10_2010'), +('M21.20', 'Flexion deformity, multiple sites', 'ICD10_2010'), +('M21.21', 'Flexion deformity, shoulder region', 'ICD10_2010'), +('M21.22', 'Flexion deformity, upper arm', 'ICD10_2010'), +('M21.23', 'Flexion deformity, forearm', 'ICD10_2010'), +('M21.24', 'Flexion deformity, hand', 'ICD10_2010'), +('M21.25', 'Flexion deformity, pelvic and thigh', 'ICD10_2010'), +('M21.26', 'Flexion deformity, lower leg', 'ICD10_2010'), +('M21.27', 'Flexion deformity, ankle and foot', 'ICD10_2010'), +('M21.28', 'Flexion deformity, other sites', 'ICD10_2010'), +('M21.29', 'Flexion deformity, unspecified site', 'ICD10_2010'), +('M21.3', 'Wrist or foot drop (acquired)', 'ICD10_2010'), +('M21.34', 'Wrist or foot drop (acquired), hand', 'ICD10_2010'), +('M21.37', 'Wrist or foot drop (acquired), ankle and foot', 'ICD10_2010'), +('M21.4', 'Flat foot [pes planus] (acquired)', 'ICD10_2010'), +('M21.47', 'Flat foot [pes planus] (acquired), ankle and foot', 'ICD10_2010'), +('M21.5', 'Acquired clawhand, clubhand, clawfoot and clubfoot', 'ICD10_2010'), +('M21.54', 'Acquired clawhand, clubhand, clawfoot and clubfoot, hand', 'ICD10_2010'), +('M21.57', 'Acquired clawhand, clubhand, clawfoot and clubfoot, ankle and foot', 'ICD10_2010'), +('M21.6', 'Other acquired deformities of ankle and foot', 'ICD10_2010'), +('M21.67', 'Other acquired deformities of ankle and foot, ankle and foot', 'ICD10_2010'), +('M21.7', 'Unequal limb length (acquired)', 'ICD10_2010'), +('M21.70', 'Unequal limb length (acquired), multiple sites', 'ICD10_2010'), +('M21.71', 'Unequal limb length (acquired), shoulder region', 'ICD10_2010'), +('M21.72', 'Unequal limb length (acquired), upper arm', 'ICD10_2010'), +('M21.73', 'Unequal limb length (acquired), forearm', 'ICD10_2010'), +('M21.74', 'Unequal limb length (acquired), hand', 'ICD10_2010'), +('M21.75', 'Unequal limb length (acquired), pelvic and thigh', 'ICD10_2010'), +('M21.76', 'Unequal limb length (acquired), lower leg', 'ICD10_2010'), +('M21.77', 'Unequal limb length (acquired), ankle and foot', 'ICD10_2010'), +('M21.78', 'Unequal limb length (acquired), other sites', 'ICD10_2010'), +('M21.79', 'Unequal limb length (acquired), unspecified site', 'ICD10_2010'), +('M21.8', 'Other specified acquired deformities of limbs', 'ICD10_2010'), +('M21.80', 'Other specified acquired deformities of limbs, multiple sites', 'ICD10_2010'), +('M21.81', 'Other specified acquired deformities of limbs, shoulder region', 'ICD10_2010'), +('M21.82', 'Other specified acquired deformities of limbs, upper arm', 'ICD10_2010'), +('M21.83', 'Other specified acquired deformities of limbs, forearm', 'ICD10_2010'), +('M21.84', 'Other specified acquired deformities of limbs, hand', 'ICD10_2010'), +('M21.85', 'Other specified acquired deformities of limbs, pelvic and thigh', 'ICD10_2010'), +('M21.86', 'Other specified acquired deformities of limbs, lower leg 1', 'ICD10_2010'), +('M21.87', 'Other specified acquired deformities of limbs, ankle and foot 1', 'ICD10_2010'), +('M21.88', 'Other specified acquired deformities of limbs, other sites 1', 'ICD10_2010'), +('M21.89', 'Other specified acquired deformities of limbs, unspecified site 1', 'ICD10_2010'), +('M21.9', 'Acquired deformity of limb, unspecified 1', 'ICD10_2010'), +('M21.90', 'Acquired deformity of limb, unspecified, multiple sites 1', 'ICD10_2010'), +('M21.91', 'Acquired deformity of limb, unspecified, shoulder region 1', 'ICD10_2010'), +('M21.92', 'Acquired deformity of limb, unspecified, upper arm 1', 'ICD10_2010'), +('M21.93', 'Acquired deformity of limb, unspecified, forearm 1', 'ICD10_2010'), +('M21.94', 'Acquired deformity of limb, unspecified, hand 1', 'ICD10_2010'), +('M21.95', 'Acquired deformity of limb, unspecified, pelvic and thigh 1', 'ICD10_2010'), +('M21.96', 'Acquired deformity of limb, unspecified, lower leg 1', 'ICD10_2010'), +('M21.97', 'Acquired deformity of limb, unspecified, ankle and foot 1', 'ICD10_2010'), +('M21.98', 'Acquired deformity of limb, unspecified, other sites 1', 'ICD10_2010'), +('M21.99', 'Acquired deformity of limb, unspecified, unspecified site 1', 'ICD10_2010'), +('M22', 'Disorders of patella', 'ICD10_2010'), +('M22.0', 'Recurrent dislocation of patella 1', 'ICD10_2010'), +('M22.1', 'Recurrent subluxation of patella 1', 'ICD10_2010'), +('M22.2', 'Patellofemoral disorders 1', 'ICD10_2010'), +('M22.3', 'Other derangements of patella 1', 'ICD10_2010'), +('M22.4', 'Chondromalacia patellae', 'ICD10_2010'), +('M22.8', 'Other disorders of patella', 'ICD10_2010'), +('M22.9', 'Disorder of patella, unspecified', 'ICD10_2010'), +('M23', 'Internal derangement of knee', 'ICD10_2010'), +('M23.0', 'Cystic meniscus', 'ICD10_2010'), +('M23.00', 'Cystic meniscus, multiple sites', 'ICD10_2010'), +('M23.01', 'Cystic meniscus, anterior cruciate ligament or anterior horn medial meniscus', 'ICD10_2010'), +('M23.02', 'Cystic meniscus, posterior cruciate ligament or anterior horn medial meniscus', 'ICD10_2010'), +('M23.03', 'Cystic meniscus, medial collateral ligament or other and unspecified medial meniscus', 'ICD10_2010'), +('M23.04', 'Cystic meniscus, lateral collateral ligament or anterior horn of lateral meniscus', 'ICD10_2010'), +('M23.05', 'Cystic meniscus, posterior horn of lateral meniscus', 'ICD10_2010'), +('M23.06', 'Cystic meniscus, other and unspecified lateral meniscus', 'ICD10_2010'), +('M23.07', 'Cystic meniscus, capsular ligament', 'ICD10_2010'), +('M23.09', 'Cystic meniscus, unspecified ligament or unspecified meniscus', 'ICD10_2010'), +('M23.1', 'Discoid meniscus (congenital)', 'ICD10_2010'), +('M23.10', 'Discoid meniscus (congenital), multiple sites', 'ICD10_2010'), +('M23.11', 'Discoid meniscus (congenital), anterior cruciate ligament or anterior horn medial meniscus', 'ICD10_2010'), +('M23.12', 'Discoid meniscus (congenital), posterior cruciate ligament or anterior horn medial meniscus', 'ICD10_2010'), +('M23.13', 'Discoid meniscus (congenital), medial collateral ligament or other and unspecified medial meniscus', 'ICD10_2010'), +('M23.14', 'Discoid meniscus (congenital), lateral collateral ligament or anterior horn of lateral meniscus', 'ICD10_2010'), +('M23.15', 'Discoid meniscus (congenital), posterior horn of lateral meniscus', 'ICD10_2010'), +('M23.16', 'Discoid meniscus (congenital), other and unspecified lateral meniscus', 'ICD10_2010'), +('M23.17', 'Discoid meniscus (congenital),capsular ligament', 'ICD10_2010'), +('M23.19', 'Discoid meniscus (congenital), unspecified ligament or unspecified meniscus', 'ICD10_2010'), +('M23.2', 'Derangement of meniscus due to old tear or injury', 'ICD10_2010'), +('M23.20', 'Derangement of meniscus due to old tear or injury, multiple sites', 'ICD10_2010'), +('M23.21', 'Derangement of meniscus due to old tear or injury, anterior cruciate ligament or anterior horn medial meniscus', 'ICD10_2010'), +('M23.22', 'Derangement of meniscus due to old tear or injury, posterior cruciate ligament or anterior horn medial meniscus', 'ICD10_2010'), +('M23.23', 'Derangement of meniscus due to old tear or injury, medial collateral ligament or other and unspecified medial meniscus', 'ICD10_2010'), +('M23.24', 'Derangement of meniscus due to old tear or injury, lateral collateral ligament or anterior horn of lateral meniscus', 'ICD10_2010'), +('M23.25', 'Derangement of meniscus due to old tear or injury, posterior horn of lateral meniscus', 'ICD10_2010'), +('M23.26', 'Derangement of meniscus due to old tear or injury, other and unspecified lateral meniscus', 'ICD10_2010'), +('M23.27', 'Derangement of meniscus due to old tear or injury, capsular ligament', 'ICD10_2010'), +('M23.29', 'Derangement of meniscus due to old tear or injury, unspecified ligament or unspecified meniscus', 'ICD10_2010'), +('M23.3', 'Other meniscus derangements', 'ICD10_2010'), +('M23.30', 'Other meniscus derangements, multiple sites', 'ICD10_2010'), +('M23.31', 'Other meniscus derangements, anterior cruciate ligament or anterior horn medial meniscus', 'ICD10_2010'), +('M23.32', 'Other meniscus derangements, posterior cruciate ligament or anterior horn medial meniscus', 'ICD10_2010'), +('M23.33', 'Other meniscus derangements, medial collateral ligament or other and unspecified medial meniscus', 'ICD10_2010'), +('M23.34', 'Other meniscus derangements, lateral collateral ligament or anterior horn of lateral meniscus', 'ICD10_2010'), +('M23.35', 'Other meniscus derangements, posterior horn of lateral meniscus', 'ICD10_2010'), +('M23.36', 'Other meniscus derangements, other and unspecified lateral meniscus', 'ICD10_2010'), +('M23.37', 'Other meniscus derangements, capsular ligament', 'ICD10_2010'), +('M23.39', 'Other meniscus derangements, unspecified ligament or unspecified meniscus', 'ICD10_2010'), +('M23.4', 'Loose body in knee', 'ICD10_2010'), +('M23.40', 'Loose body in knee, multiple sites', 'ICD10_2010'), +('M23.41', 'Loose body in knee, anterior cruciate ligament or anterior horn medial meniscus', 'ICD10_2010'), +('M23.42', 'Loose body in knee, posterior cruciate ligament or anterior horn medial meniscus', 'ICD10_2010'), +('M23.43', 'Loose body in knee, medial collateral ligament or other and unspecified medial meniscus', 'ICD10_2010'), +('M23.44', 'Loose body in knee, lateral collateral ligament or anterior horn of lateral meniscus', 'ICD10_2010'), +('M23.45', 'Loose body in knee, posterior horn of lateral meniscus', 'ICD10_2010'), +('M23.46', 'Loose body in knee, other and unspecified lateral meniscus', 'ICD10_2010'), +('M23.47', 'Loose body in knee, capsular ligament', 'ICD10_2010'), +('M23.49', 'Loose body in knee, unspecified ligament or unspecified meniscus', 'ICD10_2010'), +('M23.5', 'Chronic instability of knee', 'ICD10_2010'), +('M23.50', 'Chronic instability of knee, multiple sites', 'ICD10_2010'), +('M23.51', 'Chronic instability of knee, anterior cruciate ligament or anterior horn medial meniscus', 'ICD10_2010'), +('M23.52', 'Chronic instability of knee, posterior cruciate ligament or anterior horn medial meniscus', 'ICD10_2010'), +('M23.53', 'Chronic instability of knee, medial collateral ligament or other and unspecified medial meniscus', 'ICD10_2010'), +('M23.54', 'Chronic instability of knee, lateral collateral ligament or anterior horn of lateral meniscus', 'ICD10_2010'), +('M23.55', 'Chronic instability of knee, posterior horn of lateral meniscus', 'ICD10_2010'), +('M23.56', 'Chronic instability of knee, other and unspecified lateral meniscus', 'ICD10_2010'), +('M23.57', 'Chronic instability of knee, capsular ligament', 'ICD10_2010'), +('M23.59', 'Chronic instability of knee, unspecified ligament or unspecified meniscus', 'ICD10_2010'), +('M23.6', 'Other spontaneous disruption of ligament(s) of knee', 'ICD10_2010'), +('M23.60', 'Other spontaneous disruption of ligament(s) of knee, multiple sites', 'ICD10_2010'), +('M23.61', 'Other spontaneous disruption of ligament(s) of knee, anterior cruciate ligament or anterior horn medial meniscus', 'ICD10_2010'), +('M23.62', 'Other spontaneous disruption of ligament(s) of knee, posterior cruciate ligament or anterior horn medial meniscus', 'ICD10_2010'), +('M23.63', 'Other spontaneous disruption of ligament(s) of knee, medial collateral ligament or other and unspecified medial meniscus', 'ICD10_2010'), +('M23.64', 'Other spontaneous disruption of ligament(s) of knee, lateral collateral ligament or anterior horn of lateral meniscus', 'ICD10_2010'), +('M23.65', 'Other spontaneous disruption of ligament(s) of knee, posterior horn of lateral meniscus', 'ICD10_2010'), +('M23.66', 'Other spontaneous disruption of ligament(s) of knee, other and unspecified lateral meniscus', 'ICD10_2010'), +('M23.67', 'Other spontaneous disruption of ligament(s) of knee, capsular ligament', 'ICD10_2010'), +('M23.69', 'Other spontaneous disruption of ligament(s) of knee, unspecified ligament or unspecified meniscus', 'ICD10_2010'), +('M23.8', 'Other internal derangements of knee', 'ICD10_2010'), +('M23.80', 'Other internal derangements of knee, multiple sites', 'ICD10_2010'), +('M23.81', 'Other internal derangements of knee, anterior cruciate ligament or anterior horn medial meniscus', 'ICD10_2010'), +('M23.82', 'Other internal derangements of knee, posterior cruciate ligament or anterior horn medial meniscus', 'ICD10_2010'), +('M23.83', 'Other internal derangements of knee, medial collateral ligament or other and unspecified medial meniscus', 'ICD10_2010'), +('M23.84', 'Other internal derangements of knee, lateral collateral ligament or anterior horn of lateral meniscus', 'ICD10_2010'), +('M23.85', 'Other internal derangements of knee, posterior horn of lateral meniscus', 'ICD10_2010'), +('M23.86', 'Other internal derangements of knee, other and unspecified lateral meniscus', 'ICD10_2010'), +('M23.87', 'Other internal derangements of knee, capsular ligament', 'ICD10_2010'), +('M23.89', 'Other internal derangements of knee, unspecified ligament or unspecified meniscus', 'ICD10_2010'), +('M23.9', 'Internal derangement of knee, unspecified', 'ICD10_2010'), +('M23.90', 'Internal derangement of knee, unspecified, multiple sites', 'ICD10_2010'), +('M23.91', 'Internal derangement of knee, unspecified,anterior cruciate ligament or anterior horn medial meniscus', 'ICD10_2010'), +('M23.92', 'Internal derangement of knee, unspecified, posterior cruciate ligament or anterior horn medial meniscus', 'ICD10_2010'), +('M23.93', 'Internal derangement of knee, unspecified, medial collateral ligament or other and unspecified medial meniscus', 'ICD10_2010'), +('M23.94', 'Internal derangement of knee, unspecified, lateral collateral ligament or anterior horn of lateral meniscus', 'ICD10_2010'), +('M23.95', 'Internal derangement of knee, unspecified, posterior horn of lateral meniscus', 'ICD10_2010'), +('M23.96', 'Internal derangement of knee, unspecified, other and unspecified lateral meniscus', 'ICD10_2010'), +('M23.97', 'Internal derangement of knee, unspecified, capsular ligament', 'ICD10_2010'), +('M23.99', 'Internal derangement of knee, unspecified, unspecified ligament or unspecified meniscus', 'ICD10_2010'), +('M24', 'Other specific joint derangements', 'ICD10_2010'), +('M24.0', 'Loose body in joint', 'ICD10_2010'), +('M24.00', 'Loose body in joint, multiple sites', 'ICD10_2010'), +('M24.01', 'Loose body in joint, shouder region', 'ICD10_2010'), +('M24.02', 'Loose body in joint, upper arm', 'ICD10_2010'), +('M24.03', 'Loose body in joint, forearm', 'ICD10_2010'), +('M24.04', 'Loose body in joint, hand', 'ICD10_2010'), +('M24.05', 'Loose body in joint, pelvic and thigh', 'ICD10_2010'), +('M24.06', 'Loose body in joint, lower leg', 'ICD10_2010'), +('M24.07', 'Loose body in joint, ankle and foot', 'ICD10_2010'), +('M24.08', 'Loose body in joint, other sites', 'ICD10_2010'), +('M24.09', 'Loose body in joint, unspecified site', 'ICD10_2010'), +('M24.1', 'Other articular cartilage disorders', 'ICD10_2010'), +('M24.10', 'Other articular cartilage disorders, multiple sites', 'ICD10_2010'), +('M24.11', 'Other articular cartilage disorders, shoulder region', 'ICD10_2010'), +('M24.12', 'Other articular cartilage disorders, upper arm', 'ICD10_2010'), +('M24.13', 'Other articular cartilage disorders, forearm', 'ICD10_2010'), +('M24.14', 'Other articular cartilage disorders, hand', 'ICD10_2010'), +('M24.15', 'Other articular cartilage disorders, pelvic and thigh', 'ICD10_2010'), +('M24.16', 'Other articular cartilage disorders, lower leg', 'ICD10_2010'), +('M24.17', 'Other articular cartilage disorders, ankle and foot', 'ICD10_2010'), +('M24.18', 'Other articular cartilage disorders, other sites', 'ICD10_2010'), +('M24.19', 'Other articular cartilage disorders, unspecified site', 'ICD10_2010'), +('M24.2', 'Disorder of ligament', 'ICD10_2010'), +('M24.20', 'Disorder of ligament, multiple sites', 'ICD10_2010'), +('M24.21', 'Disorder of ligament, shouder region', 'ICD10_2010'), +('M24.22', 'Disorder of ligament, upper arm', 'ICD10_2010'), +('M24.23', 'Disorder of ligament, forearm', 'ICD10_2010'), +('M24.24', 'Disorder of ligament, hand', 'ICD10_2010'), +('M24.25', 'Disorder of ligament, pelvic and thigh', 'ICD10_2010'), +('M24.26', 'Disorder of ligament, lower leg', 'ICD10_2010'), +('M24.27', 'Disorder of ligament, ankle and foot', 'ICD10_2010'), +('M24.28', 'Disorder of ligament, other sites', 'ICD10_2010'), +('M24.29', 'Disorder of ligament, unspecified site', 'ICD10_2010'), +('M24.3', 'Pathological dislocation and subluxation of joint, not elsewhere classified', 'ICD10_2010'), +('M24.30', 'Pathological dislocation and subluxation of joint not elsewhere classified, multiple sites', 'ICD10_2010'), +('M24.31', 'Pathological dislocation and subluxation of joint not elsewhere classified, shoulder region', 'ICD10_2010'), +('M24.32', 'Pathological dislocation and subluxation of joint not elsewhere classified, upper arm', 'ICD10_2010'), +('M24.33', 'Pathological dislocation and subluxation of joint not elsewhere classified, forearm', 'ICD10_2010'), +('M24.34', 'Pathological dislocation and subluxation of joint not elsewhere classified, hand', 'ICD10_2010'), +('M24.35', 'Pathological dislocation and subluxation of joint not elsewhere classified, pelvic and thigh', 'ICD10_2010'), +('M24.36', 'Pathological dislocation and subluxation of joint not elsewhere classified, lower leg', 'ICD10_2010'), +('M24.37', 'Pathological dislocation and subluxation of joint not elsewhere classified, ankle and foot', 'ICD10_2010'), +('M24.38', 'Pathological dislocation and subluxation of joint not elsewhere classified, other sites', 'ICD10_2010'), +('M24.39', 'Pathological dislocation and subluxation of joint not elsewhere classified, unspecified site', 'ICD10_2010'), +('M24.4', 'Recurrent dislocation and subluxation of joint', 'ICD10_2010'), +('M24.40', 'Recurrent dislocation and subluxation of joint, multiple sites', 'ICD10_2010'), +('M24.41', 'Recurrent dislocation and subluxation of joint, shoulder region', 'ICD10_2010'), +('M24.42', 'Recurrent dislocation and subluxation of joint, upper arm', 'ICD10_2010'), +('M24.43', 'Recurrent dislocation and subluxation of joint, forearm', 'ICD10_2010'), +('M24.44', 'Recurrent dislocation and subluxation of joint, hand', 'ICD10_2010'), +('M24.45', 'Recurrent dislocation and subluxation of joint, pelvic and thigh', 'ICD10_2010'), +('M24.46', 'Recurrent dislocation and subluxation of joint, lower leg', 'ICD10_2010'), +('M24.47', 'Recurrent dislocation and subluxation of joint, ankle and foot', 'ICD10_2010'), +('M24.48', 'Recurrent dislocation and subluxation of joint, other sites', 'ICD10_2010'), +('M24.49', 'Recurrent dislocation and subluxation of joint, unspecified site', 'ICD10_2010'), +('M24.5', 'Contracture of joint', 'ICD10_2010'), +('M24.50', 'Contracture of joint, multiple sites', 'ICD10_2010'), +('M24.51', 'Contracture of joint, shouder region', 'ICD10_2010'), +('M24.52', 'Contracture of joint, upper arm', 'ICD10_2010'), +('M24.53', 'Contracture of joint, forearm', 'ICD10_2010'), +('M24.54', 'Contracture of joint, hand', 'ICD10_2010'), +('M24.55', 'Contracture of joint, pelvic and thigh', 'ICD10_2010'), +('M24.56', 'Contracture of joint, lower leg', 'ICD10_2010'), +('M24.57', 'Contracture of joint, ankle and foot', 'ICD10_2010'), +('M24.58', 'Contracture of joint, other sites', 'ICD10_2010'), +('M24.59', 'Contracture of joint, unspecified site', 'ICD10_2010'), +('M24.6', 'Ankylosis of joint', 'ICD10_2010'), +('M24.60', 'Ankylosis of joint, multiple sites', 'ICD10_2010'), +('M24.61', 'Ankylosis of joint, shoulder region', 'ICD10_2010'), +('M24.62', 'Ankylosis of joint, upper arm', 'ICD10_2010'), +('M24.63', 'Ankylosis of joint, forearm', 'ICD10_2010'), +('M24.64', 'Ankylosis of joint, hand', 'ICD10_2010'), +('M24.65', 'Ankylosis of joint, pelvic and thigh', 'ICD10_2010'), +('M24.66', 'Ankylosis of joint, lower leg', 'ICD10_2010'), +('M24.67', 'Ankylosis of joint, ankle and foot', 'ICD10_2010'), +('M24.68', 'Ankylosis of joint, other sites', 'ICD10_2010'), +('M24.69', 'Ankylosis of joint, unspecified site', 'ICD10_2010'), +('M24.7', 'Protrusio acetabuli', 'ICD10_2010'), +('M24.75', 'Protrusio acetabuli, pelvic andthigh', 'ICD10_2010'), +('M24.8', 'Other specific joint derangements, not elsewhere classified', 'ICD10_2010'), +('M24.80', 'Other specific joint derangements, not elsewhere classified, multiple sites', 'ICD10_2010'), +('M24.81', 'Other specific joint derangements, not elsewhere classified, shoulder region', 'ICD10_2010'), +('M24.82', 'Other specific joint derangements, not elsewhere classified, upper arm', 'ICD10_2010'), +('M24.83', 'Other specific joint derangements, not elsewhere classified, forearm', 'ICD10_2010'), +('M24.84', 'Other specific joint derangements, not elsewhere classified, hand', 'ICD10_2010'), +('M24.85', 'Other specific joint derangements, not elsewhere classified, pelvic and thigh', 'ICD10_2010'), +('M24.86', 'Other specific joint derangements, not elsewhere classified, lower leg', 'ICD10_2010'), +('M24.87', 'Other specific joint derangements, not elsewhere classified, ankle and foot', 'ICD10_2010'), +('M24.88', 'Other specific joint derangements, not elsewhere classified, other sites', 'ICD10_2010'), +('M24.89', 'Other specific joint derangements, not elsewhere classified, unspecified site', 'ICD10_2010'), +('M24.9', 'Joint derangement, unspecified', 'ICD10_2010'), +('M24.90', 'Joint derangement, unspecified, multiple sites', 'ICD10_2010'), +('M24.91', 'Joint derangement, unspecified, shoulder region', 'ICD10_2010'), +('M24.92', 'Joint derangement, unspecified, upper arm', 'ICD10_2010'), +('M24.93', 'Joint derangement, unspecified, forearm', 'ICD10_2010'), +('M24.94', 'Joint derangement, unspecified, hand', 'ICD10_2010'), +('M24.95', 'Joint derangement, unspecified, pelvic and thigh', 'ICD10_2010'), +('M24.96', 'Joint derangement, unspecified, lower leg', 'ICD10_2010'), +('M24.97', 'Joint derangement, unspecified, ankle and foot', 'ICD10_2010'), +('M24.98', 'Joint derangement, unspecified, other sites', 'ICD10_2010'), +('M24.99', 'Joint derangement, unspecified, unspecified site', 'ICD10_2010'), +('M25', 'Other joint disorders, not elsewhere classified', 'ICD10_2010'), +('M25.0', 'Haemarthrosis', 'ICD10_2010'), +('M25.00', 'Haemarthrosis, multiple sites', 'ICD10_2010'), +('M25.01', 'Haemarthrosis, shoulder region', 'ICD10_2010'), +('M25.02', 'Haemarthrosis, upper arm', 'ICD10_2010'), +('M25.03', 'Haemarthrosis, forearm', 'ICD10_2010'), +('M25.04', 'Haemarthrosis, hand', 'ICD10_2010'), +('M25.05', 'Haemarthrosis, pelvic and thigh', 'ICD10_2010'), +('M25.06', 'Haemarthrosis, lower leg', 'ICD10_2010'), +('M25.07', 'Haemarthrosis, ankle and foot', 'ICD10_2010'), +('M25.08', 'Haemarthrosis, other sites', 'ICD10_2010'), +('M25.09', 'Haemarthrosis, unspecified site', 'ICD10_2010'), +('M25.1', 'Fistula of joint', 'ICD10_2010'), +('M25.10', 'Fistula of joint, multiple sites', 'ICD10_2010'), +('M25.11', 'Fistula of joint, shoulder region', 'ICD10_2010'), +('M25.12', 'Fistula of joint, upper arm', 'ICD10_2010'), +('M25.13', 'Fistula of joint, forearm', 'ICD10_2010'), +('M25.14', 'Fistula of joint, hand', 'ICD10_2010'), +('M25.15', 'Fistula of joint, pelvic and thigh', 'ICD10_2010'), +('M25.16', 'Fistula of joint, lower leg', 'ICD10_2010'), +('M25.17', 'Fistula of joint, ankle and foot', 'ICD10_2010'), +('M25.18', 'Fistula of joint, other sites', 'ICD10_2010'), +('M25.19', 'Fistula of joint, unspecified site', 'ICD10_2010'), +('M25.2', 'Flail joint', 'ICD10_2010'), +('M25.20', 'Flail joint, multiple sites', 'ICD10_2010'), +('M25.21', 'Flail joint, shoulder region', 'ICD10_2010'), +('M25.22', 'Flail joint, upper arm', 'ICD10_2010'), +('M25.23', 'Flail joint, forearm', 'ICD10_2010'), +('M25.24', 'Flail joint, hand', 'ICD10_2010'), +('M25.25', 'Flail joint, pelvic and thigh', 'ICD10_2010'), +('M25.26', 'Flail joint, lower leg', 'ICD10_2010'), +('M25.27', 'Flail joint, ankle and foot', 'ICD10_2010'), +('M25.28', 'Flail joint, other sites', 'ICD10_2010'), +('M25.29', 'Flail joint, unspecified site', 'ICD10_2010'), +('M25.3', 'Other instability of joint', 'ICD10_2010'), +('M25.30', 'Other instability of joint, multiple sites', 'ICD10_2010'), +('M25.31', 'Other instability of joint, shoulder region', 'ICD10_2010'), +('M25.32', 'Other instability of joint, upper arm', 'ICD10_2010'), +('M25.33', 'Other instability of joint, forearm', 'ICD10_2010'), +('M25.34', 'Other instability of joint, hand', 'ICD10_2010'), +('M25.35', 'Other instability of joint, pelvic and thigh', 'ICD10_2010'), +('M25.36', 'Other instability of joint, lower leg', 'ICD10_2010'), +('M25.37', 'Other instability of joint, ankle and foot', 'ICD10_2010'), +('M25.38', 'Other instability of joint, other sites', 'ICD10_2010'), +('M25.39', 'Other instability of joint, unspecified site', 'ICD10_2010'), +('M25.4', 'Effusion of joint', 'ICD10_2010'), +('M25.40', 'Effusion of joint, multiple sites', 'ICD10_2010'), +('M25.41', 'Effusion of joint, shoulder region', 'ICD10_2010'), +('M25.42', 'Effusion of joint, upper arm', 'ICD10_2010'), +('M25.43', 'Effusion of joint, forearm', 'ICD10_2010'), +('M25.44', 'Effusion of joint, hand', 'ICD10_2010'), +('M25.45', 'Effusion of joint, pelvic and thigh', 'ICD10_2010'), +('M25.46', 'Effusion of joint, lower leg', 'ICD10_2010'), +('M25.47', 'Effusion of joint, ankle and foot', 'ICD10_2010'), +('M25.48', 'Effusion of joint, other sites', 'ICD10_2010'), +('M25.49', 'Effusion of joint, unspecified site', 'ICD10_2010'), +('M25.5', 'Pain in joint', 'ICD10_2010'), +('M25.50', 'Pain in joint, multiple sites', 'ICD10_2010'), +('M25.51', 'Pain in joint, shouder region', 'ICD10_2010'), +('M25.52', 'Pain in joint, upper arm', 'ICD10_2010'), +('M25.53', 'Pain in joint, forearm', 'ICD10_2010'), +('M25.54', 'Pain in joint, hand', 'ICD10_2010'), +('M25.55', 'Pain in joint, pelvic and thigh', 'ICD10_2010'), +('M25.56', 'Pain in joint, lower leg', 'ICD10_2010'), +('M25.57', 'Pain in joint, ankle and foot', 'ICD10_2010'), +('M25.58', 'Pain in joint, other sites', 'ICD10_2010'), +('M25.59', 'Pain in joint, unspecified site', 'ICD10_2010'), +('M25.6', 'Stiffness of joint, not elsewhere classified', 'ICD10_2010'), +('M25.60', 'Stiffness of joint, not elsewhere classified, multiple sites', 'ICD10_2010'), +('M25.61', 'Stiffness of joint, not elsewhere classified, shoulder region', 'ICD10_2010'), +('M25.62', 'Stiffness of joint, not elsewhere classified, upper arm', 'ICD10_2010'), +('M25.63', 'Stiffness of joint, not elsewhere classified, forearm', 'ICD10_2010'), +('M25.64', 'Stiffness of joint, not elsewhere classified, hand', 'ICD10_2010'), +('M25.65', 'Stiffness of joint, not elsewhere classified, pelvic and thigh', 'ICD10_2010'), +('M25.66', 'Stiffness of joint, not elsewhere classified, lower leg', 'ICD10_2010'), +('M25.67', 'Stiffness of joint, not elsewhere classified, ankle and foot', 'ICD10_2010'), +('M25.68', 'Stiffness of joint, not elsewhere classified, other sites', 'ICD10_2010'), +('M25.69', 'Stiffness of joint, not elsewhere classified, unspecified site', 'ICD10_2010'), +('M25.7', 'Osteophyte', 'ICD10_2010'), +('M25.70', 'Osteophyte, multiple sites', 'ICD10_2010'), +('M25.71', 'Osteophyte, shoulder region', 'ICD10_2010'), +('M25.72', 'Osteophyte, upper arm', 'ICD10_2010'), +('M25.73', 'Osteophyte, forearm', 'ICD10_2010'), +('M25.74', 'Osteophyte, hand', 'ICD10_2010'), +('M25.75', 'Osteophyte, pelvic and thigh', 'ICD10_2010'), +('M25.76', 'Osteophyte, lower leg', 'ICD10_2010'), +('M25.77', 'Osteophyte, ankle and foot', 'ICD10_2010'), +('M25.78', 'Osteophyte, other sites', 'ICD10_2010'), +('M25.79', 'Osteophyte, unspecified site', 'ICD10_2010'), +('M25.8', 'Other specified joint disorders', 'ICD10_2010'), +('M25.80', 'Other specified joint disorders, multiple sites', 'ICD10_2010'), +('M25.81', 'Other specified joint disorders, sholder region', 'ICD10_2010'), +('M25.82', 'Other specified joint disorders, upper arm', 'ICD10_2010'), +('M25.83', 'Other specified joint disorders, forearm', 'ICD10_2010'), +('M25.84', 'Other specified joint disorders, hand', 'ICD10_2010'), +('M25.85', 'Other specified joint disorders, pelvic and thigh', 'ICD10_2010'), +('M25.86', 'Other specified joint disorders, lower leg', 'ICD10_2010'), +('M25.87', 'Other specified joint disorders, ankle and foot', 'ICD10_2010'), +('M25.88', 'Other specified joint disorders, other sites', 'ICD10_2010'), +('M25.89', 'Other specified joint disorders, unspecified site', 'ICD10_2010'), +('M25.9', 'Joint disorder, unspecified', 'ICD10_2010'), +('M25.90', 'Joint disorder, unspecified, multiple sites', 'ICD10_2010'), +('M25.91', 'Joint disorder, unspecified, shoulder region', 'ICD10_2010'), +('M25.92', 'Joint disorder, unspecified, upper arm', 'ICD10_2010'), +('M25.93', 'Joint disorder, unspecified, forearm', 'ICD10_2010'), +('M25.94', 'Joint disorder, unspecified, hand', 'ICD10_2010'), +('M25.95', 'Joint disorder, unspecified, pelvic and thigh', 'ICD10_2010'), +('M25.96', 'Joint disorder, unspecified, lower leg', 'ICD10_2010'), +('M25.97', 'Joint disorder, unspecified, ankle and foot', 'ICD10_2010'), +('M25.98', 'Joint disorder, unspecified, other sites', 'ICD10_2010'), +('M25.99', 'Joint disorder, unspecified, unspecified site', 'ICD10_2010'), +('M30', 'Polyarteritis nodosa and related conditions', 'ICD10_2010'), +('M30.0', 'Polyarteritis nodosa', 'ICD10_2010'), +('M30.1', 'Polyarteritis with lung involvement [churg-strauss]', 'ICD10_2010'), +('M30.2', 'Juvenile polyarteritis', 'ICD10_2010'), +('M30.3', 'Mucocutaneous lymph node syndrome [kawasaki]', 'ICD10_2010'), +('M30.8', 'Other conditions related to polyarteritis nodosa', 'ICD10_2010'), +('M31', 'Other necrotizing vasculopathies', 'ICD10_2010'), +('M31.0', 'Hypersensitivity angiitis', 'ICD10_2010'), +('M31.1', 'Thrombotic microangiopathy', 'ICD10_2010'), +('M31.2', 'Lethal midline granuloma', 'ICD10_2010'), +('M31.3', 'Wegener\'s granulomatosis', 'ICD10_2010'), +('M31.4', 'Aortic arch syndrome [takayasu]', 'ICD10_2010'), +('M31.5', 'Giant cell arteritis with polymyalgia rheumatica', 'ICD10_2010'), +('M31.6', 'Other giant cell arteritis', 'ICD10_2010'), +('M31.7', 'Microscopic polyangiitis', 'ICD10_2010'), +('M31.8', 'Other specified necrotizing vasculopathies', 'ICD10_2010'), +('M31.9', 'Necrotizing vasculopathy, unspecified', 'ICD10_2010'), +('M32', 'Systemic lupus erythematosus', 'ICD10_2010'), +('M32.0', 'Drug-induced systemic lupus erythematosus', 'ICD10_2010'), +('M32.1', 'Systemic lupus erythematosus with organ or system involvement', 'ICD10_2010'), +('M32.8', 'Other forms of systemic lupus erythematosus', 'ICD10_2010'), +('M32.9', 'Systemic lupus erythematosus, unspecified', 'ICD10_2010'), +('M33', 'Dermatopolymyositis', 'ICD10_2010'), +('M33.0', 'Juvenile dermatomyositis', 'ICD10_2010'), +('M33.1', 'Other dermatomyositis', 'ICD10_2010'), +('M33.2', 'Polymyositis', 'ICD10_2010'), +('M33.9', 'Dermatopolymyositis, unspecified', 'ICD10_2010'), +('M34', 'Systemic sclerosis', 'ICD10_2010'), +('M34.0', 'Progressive systemic sclerosis', 'ICD10_2010'), +('M34.1', 'CR(E)ST syndrome', 'ICD10_2010'), +('M34.2', 'Systemic sclerosis induced by drugs and chemicals', 'ICD10_2010'), +('M34.8', 'Other forms of systemic sclerosis', 'ICD10_2010'), +('M34.9', 'Systemic sclerosis, unspecified', 'ICD10_2010'), +('M35', 'Other systemic involvement of connective tissue', 'ICD10_2010'), +('M35.0', 'Sicca syndrome [sjogren]', 'ICD10_2010'), +('M35.1', 'Other overlap syndromes', 'ICD10_2010'), +('M35.2', 'Behcet\'s disease', 'ICD10_2010'), +('M35.3', 'Polymyalgia rheumatica', 'ICD10_2010'), +('M35.4', 'Diffuse (eosinophilic) fasciitis', 'ICD10_2010'), +('M35.5', 'Multifocal fibrosclerosis', 'ICD10_2010'), +('M35.6', 'Relapsing panniculitis [Weber-Christian]', 'ICD10_2010'), +('M35.7', 'Hypermobility syndrome', 'ICD10_2010'), +('M35.8', 'Other specified systemic involvement of connective tissue', 'ICD10_2010'), +('M35.9', 'Systemic involvement of connective tissue, unspecified', 'ICD10_2010'), +('M36', 'Systemic disorders of connective tissue in diseases classified elsewhere', 'ICD10_2010'), +('M36.0', 'Dermato(poly)myositis in neoplastic disease', 'ICD10_2010'), +('M36.1', 'Arthropathy in neoplastic disease', 'ICD10_2010'), +('M36.2', 'Haemophilic arthropathy', 'ICD10_2010'), +('M36.3', 'Arthropathy in other blood disorders', 'ICD10_2010'), +('M36.4', 'Arthropathy in hypersensitivity reactions classified elsewhere', 'ICD10_2010'), +('M36.8', 'Systemic disorder of connective tissue in other diseases classified elsewhere', 'ICD10_2010'), +('M40', 'Kyphosis and lordosis', 'ICD10_2010'), +('M40.0', 'Postural kyphosis', 'ICD10_2010'), +('M40.00', 'Postural kyphosis, multiple sites in spine', 'ICD10_2010'), +('M40.01', 'Postural kyphosis, occipito-atlanto-axial region', 'ICD10_2010'), +('M40.02', 'Postural kyphosis, cervical region', 'ICD10_2010'), +('M40.03', 'Postural kyphosis, cervicothoracic region', 'ICD10_2010'), +('M40.04', 'Postural kyphosis, thoracic region', 'ICD10_2010'), +('M40.05', 'Postural kyphosis, thoracolumbar region', 'ICD10_2010'), +('M40.06', 'Postural kyphosis, lumbar region', 'ICD10_2010'), +('M40.07', 'Postural kyphosis, lumbosacral region', 'ICD10_2010'), +('M40.08', 'Postural kyphosis, sacral and sacrococcygeal region', 'ICD10_2010'), +('M40.09', 'Postural kyphosis, site unspecified', 'ICD10_2010'), +('M40.1', 'Other secondary kyphosis', 'ICD10_2010'), +('M40.10', 'Other secondary kyphosis, multiple sites in spine', 'ICD10_2010'), +('M40.11', 'Other secondary kyphosis, occipito-atlanto-axial region', 'ICD10_2010'), +('M40.12', 'Other secondary kyphosis, cervical region', 'ICD10_2010'), +('M40.13', 'Other secondary kyphosis, cervicothoracic region', 'ICD10_2010'), +('M40.14', 'Other secondary kyphosis, thoracic region', 'ICD10_2010'), +('M40.15', 'Other secondary kyphosis, thoracolumbar region', 'ICD10_2010'), +('M40.16', 'Other secondary kyphosis, lumbar region', 'ICD10_2010'), +('M40.17', 'Other secondary kyphosis, lumbosacral region', 'ICD10_2010'), +('M40.18', 'Other secondary kyphosis, sacral and sacrococcygeal region', 'ICD10_2010'), +('M40.19', 'Other secondary kyphosis, site unspecified', 'ICD10_2010'), +('M40.2', 'Other and unspecified kyphosis', 'ICD10_2010'), +('M40.20', 'Other and unspecified kyphosis, multiple sites in spine', 'ICD10_2010'), +('M40.21', 'Other and unspecified kyphosis, occipito-atlanto-axial region', 'ICD10_2010'), +('M40.22', 'Other and unspecified kyphosis, cervical region', 'ICD10_2010'), +('M40.23', 'Other and unspecified kyphosis, cervicothoracic region', 'ICD10_2010'), +('M40.24', 'Other and unspecified kyphosis, thoracic region', 'ICD10_2010'), +('M40.25', 'Other and unspecified kyphosis, thoracolumbar region', 'ICD10_2010'), +('M40.26', 'Other and unspecified kyphosis, lumbar region', 'ICD10_2010'), +('M40.27', 'Other and unspecified kyphosis, lumbosacral region', 'ICD10_2010'), +('M40.28', 'Other and unspecified kyphosis, sacral and sacrococcygeal region', 'ICD10_2010'), +('M40.29', 'Other and unspecified kyphosis, site unspecified', 'ICD10_2010'), +('M40.3', 'Flatback syndrome', 'ICD10_2010'), +('M40.30', 'Flatback syndrome, multiple sites in spine', 'ICD10_2010'), +('M40.31', 'Flatback syndrome, occipito-atlanto-axial region', 'ICD10_2010'), +('M40.32', 'Flatback syndrome, cervical region', 'ICD10_2010'), +('M40.33', 'Flatback syndrome, cervicothoracic region', 'ICD10_2010'), +('M40.34', 'Flatback syndrome, thoracic region', 'ICD10_2010'), +('M40.35', 'Flatback syndrome, thoracolumbar region', 'ICD10_2010'), +('M40.36', 'Flatback syndrome, lumbar region', 'ICD10_2010'), +('M40.37', 'Flatback syndrome, lumbosacral region', 'ICD10_2010'), +('M40.38', 'Flatback syndrome, sacral and sacrococcygeal region', 'ICD10_2010'), +('M40.39', 'Flatback syndrome, site unspecified', 'ICD10_2010'), +('M40.4', 'Other lordosis', 'ICD10_2010'), +('M40.40', 'Other lordosis, multiple sites in spine', 'ICD10_2010'), +('M40.41', 'Other lordosis, occipito-atlanto-axial region', 'ICD10_2010'), +('M40.42', 'Other lordosis, cervical region', 'ICD10_2010'), +('M40.43', 'Other lordosis, cervicothoracic region', 'ICD10_2010'), +('M40.44', 'Other lordosis, thoracic region', 'ICD10_2010'), +('M40.45', 'Other lordosis, thoracolumbar region', 'ICD10_2010'), +('M40.46', 'Other lordosis, lumbar region', 'ICD10_2010'), +('M40.47', 'Other lordosis, lumbosacral region', 'ICD10_2010'), +('M40.48', 'Other lordosis, sacral and sacrococcygeal region', 'ICD10_2010'), +('M40.49', 'Other lordosis, site unspecified', 'ICD10_2010'), +('M40.5', 'Lordosis, unspecified', 'ICD10_2010'), +('M40.50', 'Lordosis unspecified, multiple sites in spine', 'ICD10_2010'), +('M40.51', 'Lordosis, unspecified, occipito-atlanto-axial region', 'ICD10_2010'), +('M40.52', 'Lordosis, unspecified, cervical region', 'ICD10_2010'), +('M40.53', 'Lordosis, unspecified, cervicothoracic region', 'ICD10_2010'), +('M40.54', 'Lordosis, unspecified, thoracic region', 'ICD10_2010'), +('M40.55', 'Lordosis, unspecified, thoracolumbar region', 'ICD10_2010'), +('M40.56', 'Lordosis, unspecified, lumbar region', 'ICD10_2010'); +INSERT INTO `icd10` (`ID_ICD10`, `Diagnosa`, `Versi_ICD10`) VALUES +('M40.57', 'Lordosis, unspecified, lumbosacral region', 'ICD10_2010'), +('M40.58', 'Lordosis, unspecified, sacral and sacrococcygeal region', 'ICD10_2010'), +('M40.59', 'Lordosis, unspecified, site unspecified', 'ICD10_2010'), +('M41', 'Scoliosis', 'ICD10_2010'), +('M41.0', 'Infantile idiopathic scoliosis', 'ICD10_2010'), +('M41.00', 'Infantile idiopathic scoliosis, multiple sites in spine', 'ICD10_2010'), +('M41.01', 'Infantile idiopathic scoliosis, occipito-atlanto-axial region', 'ICD10_2010'), +('M41.02', 'Infantile idiopathic scoliosis , cervical region', 'ICD10_2010'), +('M41.03', 'Infantile idiopathic scoliosis, cervicothoracic region', 'ICD10_2010'), +('M41.04', 'Infantile idiopathic scoliosis, thoracic region', 'ICD10_2010'), +('M41.05', 'Infantile idiopathic scoliosis, thoracolumbar region', 'ICD10_2010'), +('M41.06', 'Infantile idiopathic scoliosis, lumbar region', 'ICD10_2010'), +('M41.07', 'Infantile idiopathic scoliosis, lumbosacral region', 'ICD10_2010'), +('M41.08', 'Infantile idiopathic scoliosis, sacral and sacrococcygeal region', 'ICD10_2010'), +('M41.09', 'Infantile idiopathic scoliosis, site unspecified', 'ICD10_2010'), +('M41.1', 'Juvenile idiopathic scoliosis', 'ICD10_2010'), +('M41.10', 'Juvenile idiopathic scoliosis, multiple sites in spine', 'ICD10_2010'), +('M41.11', 'Juvenile idiopathic scoliosis, occipito-atlanto-axial region', 'ICD10_2010'), +('M41.12', 'Juvenile idiopathic scoliosis, cervical region', 'ICD10_2010'), +('M41.13', 'Juvenile idiopathic scoliosis, cervicothoracic region', 'ICD10_2010'), +('M41.14', 'Juvenile idiopathic scoliosis, thoracic region', 'ICD10_2010'), +('M41.15', 'Juvenile idiopathic scoliosis, thoracolumbar region', 'ICD10_2010'), +('M41.16', 'Juvenile idiopathic scoliosis, lumbar region', 'ICD10_2010'), +('M41.17', 'Juvenile idiopathic scoliosis, lumbosacral region', 'ICD10_2010'), +('M41.18', 'Juvenile idiopathic scoliosis, sacral and sacrococcygeal region', 'ICD10_2010'), +('M41.19', 'Juvenile idiopathic scoliosis, site unspecified', 'ICD10_2010'), +('M41.2', 'Other idiopathic scoliosis', 'ICD10_2010'), +('M41.20', 'Other idiopathic scoliosis, multiple sites in spine', 'ICD10_2010'), +('M41.21', 'Other idiopathic scoliosis, occipito-atlanto-axial region', 'ICD10_2010'), +('M41.22', 'Other idiopathic scoliosis, cervical region', 'ICD10_2010'), +('M41.23', 'Other idiopathic scoliosis, cervicothoracic region', 'ICD10_2010'), +('M41.24', 'Other idiopathic scoliosis, thoracic region', 'ICD10_2010'), +('M41.25', 'Other idiopathic scoliosis, thoracolumbar region', 'ICD10_2010'), +('M41.26', 'Other idiopathic scoliosis, lumbar region', 'ICD10_2010'), +('M41.27', 'Other idiopathic scoliosis, lumbosacral region', 'ICD10_2010'), +('M41.28', 'Other idiopathic scoliosis, sacral and sacrococcygeal region', 'ICD10_2010'), +('M41.29', 'Other idiopathic scoliosis, site unspecified', 'ICD10_2010'), +('M41.3', 'Thoracogenic scoliosis', 'ICD10_2010'), +('M41.30', 'Thoracogenic scoliosis, multiple sites in spine', 'ICD10_2010'), +('M41.31', 'Thoracogenic scoliosis, occipito-atlanto-axial region', 'ICD10_2010'), +('M41.32', 'Thoracogenic scoliosis, cervical region', 'ICD10_2010'), +('M41.33', 'Thoracogenic scoliosis, cervicothoracic region', 'ICD10_2010'), +('M41.34', 'Thoracogenic scoliosis, thoracic region', 'ICD10_2010'), +('M41.35', 'Thoracogenic scoliosis, thoracolumbar region', 'ICD10_2010'), +('M41.36', 'Thoracogenic scoliosis, lumbar region', 'ICD10_2010'), +('M41.37', 'Thoracogenic scoliosis, lumbosacral region', 'ICD10_2010'), +('M41.38', 'Thoracogenic scoliosis, sacral and sacrococcygeal region', 'ICD10_2010'), +('M41.39', 'Thoracogenic scoliosis, site unspecified', 'ICD10_2010'), +('M41.4', 'Neuromuscular scoliosis', 'ICD10_2010'), +('M41.40', 'Neuromuscular scoliosis, multiple sites in spine', 'ICD10_2010'), +('M41.41', 'Neuromuscular scoliosis, occipito-atlanto-axial region', 'ICD10_2010'), +('M41.42', 'Neuromuscular scoliosis, cervical region', 'ICD10_2010'), +('M41.43', 'Neuromuscular scoliosis, cervicothoracic region', 'ICD10_2010'), +('M41.44', 'Neuromuscular scoliosis, thoracic region', 'ICD10_2010'), +('M41.45', 'Neuromuscular scoliosis, thoracolumbar region', 'ICD10_2010'), +('M41.46', 'Neuromuscular scoliosis, lumbar region', 'ICD10_2010'), +('M41.47', 'Neuromuscular scoliosis, lumbosacral region', 'ICD10_2010'), +('M41.48', 'Neuromuscular scoliosis, sacral and sacrococcygeal region', 'ICD10_2010'), +('M41.49', 'Neuromuscular scoliosis, site unspecified', 'ICD10_2010'), +('M41.5', 'Other secondary scoliosis', 'ICD10_2010'), +('M41.50', 'Other secondary scoliosis, multiple sites in spine', 'ICD10_2010'), +('M41.51', 'Other secondary scoliosis, occipito-atlanto-axial region', 'ICD10_2010'), +('M41.52', 'Other secondary scoliosis, cervical region', 'ICD10_2010'), +('M41.53', 'Other secondary scoliosis, cervicothoracic region', 'ICD10_2010'), +('M41.54', 'Other secondary scoliosis, thoracic region', 'ICD10_2010'), +('M41.55', 'Other secondary scoliosis, thoracolumbar region', 'ICD10_2010'), +('M41.56', 'Other secondary scoliosis, lumbar region', 'ICD10_2010'), +('M41.57', 'Other secondary scoliosis, lumbosacral region', 'ICD10_2010'), +('M41.58', 'Other secondary scoliosis, sacral and sacrococcygeal region', 'ICD10_2010'), +('M41.59', 'Other secondary scoliosis, site unspecified', 'ICD10_2010'), +('M41.8', 'Other forms of scoliosis', 'ICD10_2010'), +('M41.80', 'Other forms of scoliosis, multiple sites in spine', 'ICD10_2010'), +('M41.81', 'Other forms of scoliosis, occipito-atlanto-axial region', 'ICD10_2010'), +('M41.82', 'Other forms of scoliosis, cervical region', 'ICD10_2010'), +('M41.83', 'Other forms of scoliosis, cervicothoracic region', 'ICD10_2010'), +('M41.84', 'Other forms of scoliosis, thoracic region', 'ICD10_2010'), +('M41.85', 'Other forms of scoliosis, thoracolumbar region', 'ICD10_2010'), +('M41.86', 'Other forms of scoliosis, lumbar region', 'ICD10_2010'), +('M41.87', 'Other forms of scoliosis, lumbosacral region', 'ICD10_2010'), +('M41.88', 'Other forms of scoliosis, sacral and sacrococcygeal region', 'ICD10_2010'), +('M41.89', 'Other forms of scoliosis, site unspecified', 'ICD10_2010'), +('M41.9', 'Scoliosis, unspecified', 'ICD10_2010'), +('M41.90', 'Scoliosis, multiple sites in spine', 'ICD10_2010'), +('M41.91', 'Scoliosis, unspecified, occipito-atlanto-axial region', 'ICD10_2010'), +('M41.92', 'Scoliosis, unspecified, cervical region', 'ICD10_2010'), +('M41.93', 'Scoliosis, unspecified, cervicothoracic region', 'ICD10_2010'), +('M41.94', 'Scoliosis, unspecified, thoracic region', 'ICD10_2010'), +('M41.95', 'Scoliosis, unspecified, thoracolumbar region', 'ICD10_2010'), +('M41.96', 'Scoliosis, unspecified, lumbar region', 'ICD10_2010'), +('M41.97', 'Scoliosis, unspecified, lumbosacral region', 'ICD10_2010'), +('M41.98', 'Scoliosis, unspecified, sacral and sacrococcygeal region', 'ICD10_2010'), +('M41.99', 'Scoliosis, unspecified, site unspecified', 'ICD10_2010'), +('M42', 'Spinal osteochondrosis', 'ICD10_2010'), +('M42.0', 'Juvenile osteochondrosis of spine', 'ICD10_2010'), +('M42.00', 'Juvenile osteochondrosis of spine, multiple sites in spine', 'ICD10_2010'), +('M42.01', 'Juvenile osteochondrosis of spine, occipito-atlanto-axial region', 'ICD10_2010'), +('M42.02', 'Juvenile osteochondrosis of spine, cervical region', 'ICD10_2010'), +('M42.03', 'Juvenile osteochondrosis of spine, cervicothoracic region', 'ICD10_2010'), +('M42.04', 'Juvenile osteochondrosis of spine, thoracic region', 'ICD10_2010'), +('M42.05', 'Juvenile osteochondrosis of spine, thoracolumbar region', 'ICD10_2010'), +('M42.06', 'Juvenile osteochondrosis of spine, lumbar region', 'ICD10_2010'), +('M42.07', 'Juvenile osteochondrosis of spine, lumbosacral region', 'ICD10_2010'), +('M42.08', 'Juvenile osteochondrosis of spine, sacral and sacrococcygeal region', 'ICD10_2010'), +('M42.09', 'Juvenile osteochondrosis of spine, site unspecified', 'ICD10_2010'), +('M42.1', 'Adult osteochondrosis of spine', 'ICD10_2010'), +('M42.10', 'Adult osteochondrosis of spine, multiple sites in spine', 'ICD10_2010'), +('M42.11', 'Adult osteochondrosis of spine, occipito-atlanto-axial region', 'ICD10_2010'), +('M42.12', 'Adult osteochondrosis of spine, cervical region', 'ICD10_2010'), +('M42.13', 'Adult osteochondrosis of spine, cervicothoracic region', 'ICD10_2010'), +('M42.14', 'Adult osteochondrosis of spine, thoracic region', 'ICD10_2010'), +('M42.15', 'Adult osteochondrosis of spine, thoracolumbar region', 'ICD10_2010'), +('M42.16', 'Adult osteochondrosis of spine, lumbar region', 'ICD10_2010'), +('M42.17', 'Adult osteochondrosis of spine, lumbosacral region', 'ICD10_2010'), +('M42.18', 'Adult osteochondrosis of spine, sacral and sacrococcygeal region', 'ICD10_2010'), +('M42.19', 'Adult osteochondrosis of spine, site unspecified', 'ICD10_2010'), +('M42.9', 'Spinal osteochondrosis, unspecified', 'ICD10_2010'), +('M42.90', 'Spinal osteochondrosis, unspecified, multiple sites in spine', 'ICD10_2010'), +('M42.91', 'Spinal osteochondrosis, unspecified, occipito-atlanto-axial region', 'ICD10_2010'), +('M42.92', 'Spinal osteochondrosis, unspecified, cervical region', 'ICD10_2010'), +('M42.93', 'Spinal osteochondrosis, unspecified, cervicothoracic region', 'ICD10_2010'), +('M42.94', 'Spinal osteochondrosis, unspecified, thoracic region', 'ICD10_2010'), +('M42.95', 'Spinal osteochondrosis, unspecified, thoracolumbar region', 'ICD10_2010'), +('M42.96', 'Spinal osteochondrosis, unspecified, lumbar region', 'ICD10_2010'), +('M42.97', 'Spinal osteochondrosis, unspecified, lumbosacral region', 'ICD10_2010'), +('M42.98', 'Spinal osteochondrosis, unspecified, sacral and sacrococcygeal region', 'ICD10_2010'), +('M42.99', 'Spinal osteochondrosis, unspecified, site unspecified', 'ICD10_2010'), +('M43', 'Other deforming dorsopathies', 'ICD10_2010'), +('M43.0', 'Spondylolysis', 'ICD10_2010'), +('M43.00', 'Spondylolysis, multiple sites in spine', 'ICD10_2010'), +('M43.01', 'Spondylolysis, occipito-atlanto-axial region', 'ICD10_2010'), +('M43.02', 'Spondylolysis, cervical region', 'ICD10_2010'), +('M43.03', 'Spondylolysis, cervicothoracic region', 'ICD10_2010'), +('M43.04', 'Spondylolysis, thoracic region', 'ICD10_2010'), +('M43.05', 'Spondylolysis, thoracolumbar region', 'ICD10_2010'), +('M43.06', 'Spondylolysis, lumbar region', 'ICD10_2010'), +('M43.07', 'Spondylolysis, lumbosacral region', 'ICD10_2010'), +('M43.08', 'Spondylolysis, sacral and sacrococcygeal region', 'ICD10_2010'), +('M43.09', 'Spondylolysis, site unspecified', 'ICD10_2010'), +('M43.1', 'Spondylolisthesis', 'ICD10_2010'), +('M43.10', 'Spondylolisthesis, multiple sites in spine', 'ICD10_2010'), +('M43.11', 'Spondylolisthesis, occipito-atlanto-axial region', 'ICD10_2010'), +('M43.12', 'Spondylolisthesis, cervical region', 'ICD10_2010'), +('M43.13', 'Spondylolisthesis, cervicothoracic region', 'ICD10_2010'), +('M43.14', 'Spondylolisthesis, thoracic region', 'ICD10_2010'), +('M43.15', 'Spondylolisthesis, thoracolumbar region', 'ICD10_2010'), +('M43.16', 'Spondylolisthesis, lumbar region', 'ICD10_2010'), +('M43.17', 'Spondylolisthesis, lumbosacral region', 'ICD10_2010'), +('M43.18', 'Spondylolisthesis, sacral and sacrococcygeal region', 'ICD10_2010'), +('M43.19', 'Spondylolisthesis, site unspecified', 'ICD10_2010'), +('M43.2', 'Other fusion of spine', 'ICD10_2010'), +('M43.20', 'Other fusion of spine, multiple sites in spine', 'ICD10_2010'), +('M43.21', 'Other fusion of spine, occipito-atlanto-axial region', 'ICD10_2010'), +('M43.22', 'Other fusion of spine, cervical region', 'ICD10_2010'), +('M43.23', 'Other fusion of spine, cervicothoracic region', 'ICD10_2010'), +('M43.24', 'Other fusion of spine, thoracic region', 'ICD10_2010'), +('M43.25', 'Other fusion of spine, thoracolumbar region', 'ICD10_2010'), +('M43.26', 'Other fusion of spine, lumbar region', 'ICD10_2010'), +('M43.27', 'Other fusion of spine, lumbosacral region', 'ICD10_2010'), +('M43.28', 'Other fusion of spine, sacral and sacrococcygeal region', 'ICD10_2010'), +('M43.29', 'Other fusion of spine, site unspecified', 'ICD10_2010'), +('M43.3', 'Recurrent atlantoaxial subluxation with myelopathy', 'ICD10_2010'), +('M43.30', 'Recurrent atlantoaxial subluxation with myelopathy, multiple sites in spine', 'ICD10_2010'), +('M43.31', 'Recurrent atlantoaxial subluxation with myelopathy, occipito-atlanto-axial region', 'ICD10_2010'), +('M43.32', 'Recurrent atlantoaxial subluxation with myelopathy, cervical region', 'ICD10_2010'), +('M43.33', 'Recurrent atlantoaxial subluxation with myelopathy, cervicothoracic region', 'ICD10_2010'), +('M43.34', 'Recurrent atlantoaxial subluxation with myelopathy, thoracic region', 'ICD10_2010'), +('M43.35', 'Recurrent atlantoaxial subluxation with myelopathy, thoracolumbar region', 'ICD10_2010'), +('M43.36', 'Recurrent atlantoaxial subluxation with myelopathy, lumbar region', 'ICD10_2010'), +('M43.37', 'Recurrent atlantoaxial subluxation with myelopathy, lumbosacral region', 'ICD10_2010'), +('M43.38', 'Recurrent atlantoaxial subluxation with myelopathy, sacral and sacrococcygeal region', 'ICD10_2010'), +('M43.39', 'Recurrent atlantoaxial subluxation with myelopathy, site unspecified', 'ICD10_2010'), +('M43.4', 'Other recurrent atlantoaxial subluxation', 'ICD10_2010'), +('M43.40', 'Other recurrent atlantoaxial subluxation, multiple sites in spine', 'ICD10_2010'), +('M43.41', 'Other recurrent atlantoaxial subluxation, occipito-atlanto-axial region', 'ICD10_2010'), +('M43.42', 'Other recurrent atlantoaxial subluxation, cervical region', 'ICD10_2010'), +('M43.43', 'Other recurrent atlantoaxial subluxation, cervicothoracic region', 'ICD10_2010'), +('M43.44', 'Other recurrent atlantoaxial subluxation, thoracic region', 'ICD10_2010'), +('M43.45', 'Other recurrent atlantoaxial subluxation, thoracolumbar region', 'ICD10_2010'), +('M43.46', 'Other recurrent atlantoaxial subluxation, lumbar region', 'ICD10_2010'), +('M43.47', 'Other recurrent atlantoaxial subluxation, lumbosacral region', 'ICD10_2010'), +('M43.48', 'Other recurrent atlantoaxial subluxation, sacral and sacrococcygeal region', 'ICD10_2010'), +('M43.49', 'Other recurrent atlantoaxial subluxation, site unspecified', 'ICD10_2010'), +('M43.5', 'Other recurrent vertebral subluxation', 'ICD10_2010'), +('M43.50', 'Other recurrent vertebral subluxation, multiple sites in spine', 'ICD10_2010'), +('M43.51', 'Other recurrent vertebral subluxation, occipito-atlanto-axial region', 'ICD10_2010'), +('M43.52', 'Other recurrent vertebral subluxation, cervical region', 'ICD10_2010'), +('M43.53', 'Other recurrent vertebral subluxation, cervicothoracic region', 'ICD10_2010'), +('M43.54', 'Other recurrent vertebral subluxation, thoracic region', 'ICD10_2010'), +('M43.55', 'Other recurrent vertebral subluxation, thoracolumar region', 'ICD10_2010'), +('M43.56', 'Other recurrent vertebral subluxation, lumbar region', 'ICD10_2010'), +('M43.57', 'Other recurrent vertebral subluxation, lumbosacral region', 'ICD10_2010'), +('M43.58', 'Other recurrent vertebral subluxation, sacral and sacrococcygeal region', 'ICD10_2010'), +('M43.59', 'Other recurrent vertebral subluxation, site unspecified', 'ICD10_2010'), +('M43.6', 'Torticollis', 'ICD10_2010'), +('M43.60', 'Torticollis, multiple sites in spine', 'ICD10_2010'), +('M43.61', 'Torticollis, occipito-atlanto-axial region', 'ICD10_2010'), +('M43.62', 'Torticollis, cervical region', 'ICD10_2010'), +('M43.63', 'Torticollis, cervicothoracic region', 'ICD10_2010'), +('M43.64', 'Torticollis, thoracic region', 'ICD10_2010'), +('M43.65', 'Torticollis, thoracolumar region', 'ICD10_2010'), +('M43.66', 'Torticollis, lumbar region', 'ICD10_2010'), +('M43.67', 'Torticollis, lumbosacral region', 'ICD10_2010'), +('M43.68', 'Torticollis, sacral and sacrococcygeal region', 'ICD10_2010'), +('M43.69', 'Torticollis, site unspecified', 'ICD10_2010'), +('M43.8', 'Other specified deforming dorsopathies', 'ICD10_2010'), +('M43.80', 'Other specified deforming dorsopathies, multiple sites', 'ICD10_2010'), +('M43.81', 'Other specified deforming dorsopathies, occipito and atlanto and axial region', 'ICD10_2010'), +('M43.82', 'Other specified deforming dorsopathies, cervical region', 'ICD10_2010'), +('M43.83', 'Other specified deforming dorsopathies, cervicothoracic region', 'ICD10_2010'), +('M43.84', 'Other specified deforming dorsopathies, thoracic region', 'ICD10_2010'), +('M43.85', 'Other specified deforming dorsopathies, thoracolumbar region', 'ICD10_2010'), +('M43.86', 'Other specified deforming dorsopathies, lumbar region', 'ICD10_2010'), +('M43.87', 'Other specified deforming dorsopathies, lumbosacral region', 'ICD10_2010'), +('M43.88', 'Other specified deforming dorsopathies, sacral and sacrococcygeal region', 'ICD10_2010'), +('M43.89', 'Other specified deforming dorsopathies, site unspecified', 'ICD10_2010'), +('M43.9', 'Deforming dorsopathy, unspecified', 'ICD10_2010'), +('M43.90', 'Deforming dorsopathy, unspecified, multiple sites', 'ICD10_2010'), +('M43.91', 'Deforming dorsopathy, unspecified, occipito-atlanto-axial region', 'ICD10_2010'), +('M43.92', 'Deforming dorsopathy, unspecified, cervical region', 'ICD10_2010'), +('M43.93', 'Deforming dorsopathy, unspecified, cervicothoracic region', 'ICD10_2010'), +('M43.94', 'Deforming dorsopathy, unspecified, thoracic region', 'ICD10_2010'), +('M43.95', 'Deforming dorsopathy, unspecified, thoracolumbar region', 'ICD10_2010'), +('M43.96', 'Deforming dorsopathy, unspecified, lumbar region', 'ICD10_2010'), +('M43.97', 'Deforming dorsopathy, unspecified, lumbosacral region', 'ICD10_2010'), +('M43.98', 'Deforming dorsopathy, unspecified, sacral and sacrococcygeal region', 'ICD10_2010'), +('M43.99', 'Deforming dorsopathy, unspecified, site unspecified', 'ICD10_2010'), +('M45', 'Ankylosing spondylitis', 'ICD10_2010'), +('M45.0', 'Ankylosing spondylitis, multiple sites in spine', 'ICD10_2010'), +('M45.1', 'Ankylosing spondylitis, occipito-atlanto-axial region', 'ICD10_2010'), +('M45.2', 'Ankylosing spondylitis, cervical region', 'ICD10_2010'), +('M45.3', 'Ankylosing spondylitis, cervicothoracic region', 'ICD10_2010'), +('M45.4', 'Ankylosing spondylitis, thoracic region', 'ICD10_2010'), +('M45.5', 'Ankylosing spondylitis, thoracolumbar region', 'ICD10_2010'), +('M45.6', 'Ankylosing spondylitis, lumbar region', 'ICD10_2010'), +('M45.7', 'Ankylosing spondylitis, lumbosacral region', 'ICD10_2010'), +('M45.8', 'Ankylosing spondylitis, sacral and sacrococcygeal region', 'ICD10_2010'), +('M45.9', 'Ankylosing spondylitis, site unspecified', 'ICD10_2010'), +('M46', 'Spinal enthesopathy', 'ICD10_2010'), +('M46.0', 'Spinal enthesopathy', 'ICD10_2010'), +('M46.00', 'Spinal enthesopathy, multiple sites', 'ICD10_2010'), +('M46.01', 'Spinal enthesopathy, occipito-atlanto-axial region', 'ICD10_2010'), +('M46.02', 'Spinal enthesopathy, cervical region', 'ICD10_2010'), +('M46.03', 'Spinal enthesopathy, cervicothoracic region', 'ICD10_2010'), +('M46.04', 'Spinal enthesopathy, thoracic region', 'ICD10_2010'), +('M46.05', 'Spinal enthesopathy, thoracolumbar region', 'ICD10_2010'), +('M46.06', 'Spinal enthesopathy, lumbar region', 'ICD10_2010'), +('M46.07', 'Spinal enthesopathy, lumbosacral region', 'ICD10_2010'), +('M46.08', 'Spinal enthesopathy, sacral and sacrococcygeal region', 'ICD10_2010'), +('M46.09', 'Spinal enthesopathy, site unspecified', 'ICD10_2010'), +('M46.1', 'Sacroiliitis, not elsewhere classified', 'ICD10_2010'), +('M46.10', 'Sacroiliitis, not elsewhere classified, multiple sites', 'ICD10_2010'), +('M46.11', 'Sacroiliitis, not elsewhere classified, occipito-atlanto-axial region', 'ICD10_2010'), +('M46.12', 'Sacroiliitis, not elsewhere classified, cervical region', 'ICD10_2010'), +('M46.13', 'Sacroiliitis, not elsewhere classified, cervicothoracic region', 'ICD10_2010'), +('M46.14', 'Sacroiliitis, not elsewhere classified, thoracic region', 'ICD10_2010'), +('M46.15', 'Sacroiliitis, not elsewhere classified, thoracolumbar region', 'ICD10_2010'), +('M46.16', 'Sacroiliitis, not elsewhere classified, lumbar region', 'ICD10_2010'), +('M46.17', 'Sacroiliitis, not elsewhere classified, lumbosacral region', 'ICD10_2010'), +('M46.18', 'Sacroiliitis, not elsewhere classified, sacral and sacrococcygeal region', 'ICD10_2010'), +('M46.19', 'Sacroiliitis, not elsewhere classified, site unspecified', 'ICD10_2010'), +('M46.2', 'Osteomyelitis of vertebra', 'ICD10_2010'), +('M46.20', 'Osteomyelitis of vertebra, multiple sites', 'ICD10_2010'), +('M46.21', 'Osteomyelitis of vertebra, occipito-atlanto-axial region', 'ICD10_2010'), +('M46.22', 'Osteomyelitis of vertebra, cervical region', 'ICD10_2010'), +('M46.23', 'Osteomyelitis of vertebra, cervicothoracic region', 'ICD10_2010'), +('M46.24', 'Osteomyelitis of vertebra, thoracic region', 'ICD10_2010'), +('M46.25', 'Osteomyelitis of vertebra, thoracolumbar region', 'ICD10_2010'), +('M46.26', 'Osteomyelitis of vertebra, lumbar region', 'ICD10_2010'), +('M46.27', 'Osteomyelitis of vertebra, lumbosacral region', 'ICD10_2010'), +('M46.28', 'Osteomyelitis of vertebra, sacral and sacrococcygeal region', 'ICD10_2010'), +('M46.29', 'Osteomyelitis of vertebra, site unspecified', 'ICD10_2010'), +('M46.3', 'Infection of intervertebral disc (pyogenic)', 'ICD10_2010'), +('M46.30', 'Infection of intervertebral disc (pyogenic), multiple sites', 'ICD10_2010'), +('M46.31', 'Infection of intervertebral disc (pyogenic), occipito-atlanto-axial region', 'ICD10_2010'), +('M46.32', 'Infection of intervertebral disc (pyogenic), cervical region', 'ICD10_2010'), +('M46.33', 'Infection of intervertebral disc (pyogenic), cervicothoracic region', 'ICD10_2010'), +('M46.34', 'Infection of intervertebral disc (pyogenic), thoracic region', 'ICD10_2010'), +('M46.35', 'Infection of intervertebral disc (pyogenic), thoracolumbar region', 'ICD10_2010'), +('M46.36', 'Infection of intervertebral disc (pyogenic), lumbar region', 'ICD10_2010'), +('M46.37', 'Infection of intervertebral disc (pyogenic), lumbosacral region', 'ICD10_2010'), +('M46.38', 'Infection of intervertebral disc (pyogenic), sacral and sacrococcygeal region', 'ICD10_2010'), +('M46.39', 'Infection of intervertebral disc (pyogenic), site unspecified', 'ICD10_2010'), +('M46.4', 'Discitis, unspecified', 'ICD10_2010'), +('M46.40', 'Discitis, unspecified, multiple sites', 'ICD10_2010'), +('M46.41', 'Discitis, unspecified, occipito-atlanto-axial region', 'ICD10_2010'), +('M46.42', 'Discitis, unspecified, cervical region', 'ICD10_2010'), +('M46.43', 'Discitis, unspecified, cervicothoracic region', 'ICD10_2010'), +('M46.44', 'Discitis, unspecified, thoracic region', 'ICD10_2010'), +('M46.45', 'Discitis, unspecified, thoracolumbar region', 'ICD10_2010'), +('M46.46', 'Discitis, unspecified, lumbar region', 'ICD10_2010'), +('M46.47', 'Discitis, unspecified, lumbosacral region', 'ICD10_2010'), +('M46.48', 'Discitis, unspecified, sacral and sacrococcygeal region', 'ICD10_2010'), +('M46.49', 'Discitis, unspecified, site unspecified', 'ICD10_2010'), +('M46.5', 'Other infective spondylopathies', 'ICD10_2010'), +('M46.50', 'Other infective spondylopathies, multiple sites', 'ICD10_2010'), +('M46.51', 'Other infective spondylopathies, occipito-atlanto-axial region', 'ICD10_2010'), +('M46.52', 'Other infective spondylopathies, cervical region', 'ICD10_2010'), +('M46.53', 'Other infective spondylopathies, cervicothoracic region', 'ICD10_2010'), +('M46.54', 'Other infective spondylopathies, thoracic region', 'ICD10_2010'), +('M46.55', 'Other infective spondylopathies, thoracolumbar region', 'ICD10_2010'), +('M46.56', 'Other infective spondylopathies, lumbar region', 'ICD10_2010'), +('M46.57', 'Other infective spondylopathies, lumbosacral region', 'ICD10_2010'), +('M46.58', 'Other infective spondylopathies, sacral and sacrococcygeal region', 'ICD10_2010'), +('M46.59', 'Other infective spondylopathies, site unspecified', 'ICD10_2010'), +('M46.8', 'Other specified inflammatory spondylopathies', 'ICD10_2010'), +('M46.80', 'Other specified inflammatory spondylopathies, multiple sites', 'ICD10_2010'), +('M46.81', 'Other specified inflammatory spondylopathies, occipito-atlanto-axial region', 'ICD10_2010'), +('M46.82', 'Other specified inflammatory spondylopathies, cervical region', 'ICD10_2010'), +('M46.83', 'Other specified inflammatory spondylopathies, cervicothoracic region', 'ICD10_2010'), +('M46.84', 'Other specified inflammatory spondylopathies, thoracic region', 'ICD10_2010'), +('M46.85', 'Other specified inflammatory spondylopathies, thoracolumbar region', 'ICD10_2010'), +('M46.86', 'Other specified inflammatory spondylopathies, lumbar region', 'ICD10_2010'), +('M46.87', 'Other specified inflammatory spondylopathies, lumbosacral region', 'ICD10_2010'), +('M46.88', 'Other specified inflammatory spondylopathies, sacral and sacrococcygeal region', 'ICD10_2010'), +('M46.89', 'Other specified inflammatory spondylopathies, site unspecified', 'ICD10_2010'), +('M46.9', 'Inflammatory spondylopathy, unspecified', 'ICD10_2010'), +('M46.90', 'Inflammatory spondylopathy, unspecified, multiple sites', 'ICD10_2010'), +('M46.91', 'Inflammatory spondylopathy, unspecified, occipito-atlanto-axial region', 'ICD10_2010'), +('M46.92', 'Inflammatory spondylopathy, unspecified, cervical region', 'ICD10_2010'), +('M46.93', 'Inflammatory spondylopathy, unspecified, cervicothoracic region', 'ICD10_2010'), +('M46.94', 'Inflammatory spondylopathy, unspecified, thoracic region', 'ICD10_2010'), +('M46.95', 'Inflammatory spondylopathy, unspecified, thoracolumbar region', 'ICD10_2010'), +('M46.96', 'Inflammatory spondylopathy, unspecified, lumbar region', 'ICD10_2010'), +('M46.97', 'Inflammatory spondylopathy, unspecified, lumbosacral region', 'ICD10_2010'), +('M46.98', 'Inflammatory spondylopathy, unspecified, sacral and sacrococcygeal region', 'ICD10_2010'), +('M46.99', 'Inflammatory spondylopathy, unspecified, site unspecified', 'ICD10_2010'), +('M47', 'Spondylosis', 'ICD10_2010'), +('M47.0', 'Ant spinal and vertebral artery compression syndromes, multiple sites', 'ICD10_2010'), +('M47.00', 'Anterior spinal and vertebral artery compression syndromes, multiple sites', 'ICD10_2010'), +('M47.01', 'Anterior spinal and vertebral artery compression syndromes, occipito-atlanto-axial region', 'ICD10_2010'), +('M47.02', 'Anterior spinal and vertebral artery compression syndromes, cervical region', 'ICD10_2010'), +('M47.03', 'Anterior spinal and vertebral artery compression syndromes, cervicothoracic region', 'ICD10_2010'), +('M47.04', 'Anterior spinal and vertebral artery compression syndromes, thoracic region', 'ICD10_2010'), +('M47.05', 'Anterior spinal and vertebral artery compression syndromes, thoracolumbar region', 'ICD10_2010'), +('M47.06', 'Anterior spinal and vertebral artery compression syndromes, lumbar region', 'ICD10_2010'), +('M47.07', 'Anterior spinal and vertebral artery compression syndromes, lumbosacral region', 'ICD10_2010'), +('M47.08', 'Anterior spinal and vertebral artery compression syndromes, sacral and sacrococcygeal region', 'ICD10_2010'), +('M47.09', 'Anterior spinal and vertebral artery compression syndromes, site unspecified', 'ICD10_2010'), +('M47.1', 'Ant spinal and vertebral artery compression syndromes, occipito-atlanto-axial region', 'ICD10_2010'), +('M47.10', 'Other spondylosis with myelopathy, multiple sites', 'ICD10_2010'), +('M47.11', 'Other spondylosis with myelopathy, occipito-atlanto-axial region', 'ICD10_2010'), +('M47.12', 'Other spondylosis with myelopathy, cervical region', 'ICD10_2010'), +('M47.13', 'Other spondylosis with myelopathy, cervicothoracic region', 'ICD10_2010'), +('M47.14', 'Other spondylosis with myelopathy, thoracic region', 'ICD10_2010'), +('M47.15', 'Other spondylosis with myelopathy, thoracolumbar region', 'ICD10_2010'), +('M47.16', 'Other spondylosis with myelopathy, lumbar region', 'ICD10_2010'), +('M47.17', 'Other spondylosis with myelopathy, lumbosacral region', 'ICD10_2010'), +('M47.18', 'Other spondylosis with myelopathy, sacral and sacrococcygeal region', 'ICD10_2010'), +('M47.19', 'Other spondylosis with myelopathy, site unspecified', 'ICD10_2010'), +('M47.2', 'Other spondylosis with radiculopathy', 'ICD10_2010'), +('M47.20', 'Other spondylosis with radiculopathy, multiple sites', 'ICD10_2010'), +('M47.21', 'Other spondylosis with radiculopathy, occipito-atlanto-axial region', 'ICD10_2010'), +('M47.22', 'Other spondylosis with radiculopathy, cervical region', 'ICD10_2010'), +('M47.23', 'Other spondylosis with radiculopathy, cervicothoracic region', 'ICD10_2010'), +('M47.24', 'Other spondylosis with radiculopathy, thoracic region', 'ICD10_2010'), +('M47.25', 'Other spondylosis with radiculopathy, thoracolumbar region', 'ICD10_2010'), +('M47.26', 'Other spondylosis with radiculopathy, lumbar region', 'ICD10_2010'), +('M47.27', 'Other spondylosis with radiculopathy, lumbosacral region', 'ICD10_2010'), +('M47.28', 'Other spondylosis with radiculopathy, sacral and sacrococcygeal region', 'ICD10_2010'), +('M47.29', 'Other spondylosis with radiculopathy, site unspecified', 'ICD10_2010'), +('M47.3', 'Ant spinal and vertebral artery compression syndromes, cervicothoracic region', 'ICD10_2010'), +('M47.4', 'Ant spinal and vertebral artery compression syndromes, thoracic region', 'ICD10_2010'), +('M47.5', 'Ant spinal and vertebral artery compression syndromes, thoracolumbar region', 'ICD10_2010'), +('M47.6', 'Ant spinal and vertebral artery compression syndromes, lumbar region', 'ICD10_2010'), +('M47.7', 'Ant spinal and vertebral artery compression syndromes, lumbosacral region', 'ICD10_2010'), +('M47.8', 'Ant spinal and vertebral artery compression syndromes, sacral and sacrococcygeal region', 'ICD10_2010'), +('M47.80', 'Other spondylosis, multiple sites', 'ICD10_2010'), +('M47.81', 'Other spondylosis, occipito-atlanto-axial region', 'ICD10_2010'), +('M47.82', 'Other spondylosis, cervical region', 'ICD10_2010'), +('M47.83', 'Other spondylosis, cervicothoracic region', 'ICD10_2010'), +('M47.84', 'Other spondylosis, thoracic region', 'ICD10_2010'), +('M47.85', 'Other spondylosis, thoracolumbar region', 'ICD10_2010'), +('M47.86', 'Other spondylosis, lumbar region', 'ICD10_2010'), +('M47.87', 'Other spondylosis, lumbosacral region', 'ICD10_2010'), +('M47.88', 'Other spondylosis, sacral and sacrococcygeal region', 'ICD10_2010'), +('M47.89', 'Other spondylosis, site unspecified', 'ICD10_2010'), +('M47.9', 'Ant spinal and vertebral artery compression syndromes, site unspecified', 'ICD10_2010'), +('M47.90', 'Spondylosis, unspecified, multiple sites', 'ICD10_2010'), +('M47.91', 'Spondylosis, unspecified, occipito-atlanto-axial region', 'ICD10_2010'), +('M47.92', 'Spondylosis, unspecified, cervical region', 'ICD10_2010'), +('M47.93', 'Spondylosis, unspecified, cervicothoracic region', 'ICD10_2010'), +('M47.94', 'Spondylosis, unspecified, thoracic region', 'ICD10_2010'), +('M47.95', 'Spondylosis, unspecified, thoracolumbar region', 'ICD10_2010'), +('M47.96', 'Spondylosis, unspecified, lumbar region', 'ICD10_2010'), +('M47.97', 'Spondylosis, unspecified, lumbosacral region', 'ICD10_2010'), +('M47.98', 'Spondylosis, unspecified, sacral and sacrococcygeal region', 'ICD10_2010'), +('M47.99', 'Spondylosis, unspecified, site unspecified', 'ICD10_2010'), +('M48', 'Other spondylopathies', 'ICD10_2010'), +('M48.0', 'Spinal stenosis', 'ICD10_2010'), +('M48.00', 'Spinal stenosis, multiple sites', 'ICD10_2010'), +('M48.01', 'Spinal stenosis, occipito-atlanto-axial region', 'ICD10_2010'), +('M48.02', 'Spinal stenosis, cervical region', 'ICD10_2010'), +('M48.03', 'Spinal stenosis, cervicothoracic region', 'ICD10_2010'), +('M48.04', 'Spinal stenosis, thoracic region', 'ICD10_2010'), +('M48.05', 'Spinal stenosis, thoracolumbar region', 'ICD10_2010'), +('M48.06', 'Spinal stenosis, lumbar region', 'ICD10_2010'), +('M48.07', 'Spinal stenosis, lumbosacral region', 'ICD10_2010'), +('M48.08', 'Spinal stenosis, sacral and sacrococcygeal region', 'ICD10_2010'), +('M48.09', 'Spinal stenosis, site unspecified', 'ICD10_2010'), +('M48.1', 'Ankylosing hyperostosis [forestier]', 'ICD10_2010'), +('M48.10', 'Ankylosing hyperostosis [forestier], multiple sites', 'ICD10_2010'), +('M48.11', 'Ankylosing hyperostosis [forestier], occipito-atlanto-axial region', 'ICD10_2010'), +('M48.12', 'Ankylosing hyperostosis [forestier], cervical region', 'ICD10_2010'), +('M48.13', 'Ankylosing hyperostosis [forestier], cervicothoracic region', 'ICD10_2010'), +('M48.14', 'Ankylosing hyperostosis [forestier], thoracic region', 'ICD10_2010'), +('M48.15', 'Ankylosing hyperostosis [forestier], thoracolumbar region', 'ICD10_2010'), +('M48.16', 'Ankylosing hyperostosis [forestier], lumbar region', 'ICD10_2010'), +('M48.17', 'Ankylosing hyperostosis [forestier], lumbosacral region', 'ICD10_2010'), +('M48.18', 'Ankylosing hyperostosis [forestier], sacral and sacrococcygeal region', 'ICD10_2010'), +('M48.19', 'Ankylosing hyperostosis [forestier], site unspecified', 'ICD10_2010'), +('M48.2', 'Kissing spine', 'ICD10_2010'), +('M48.20', 'Kissing spine, multiple sites', 'ICD10_2010'), +('M48.21', 'Kissing spine, occipito-atlanto-axial region', 'ICD10_2010'), +('M48.22', 'Kissing spine, cervical region', 'ICD10_2010'), +('M48.23', 'Kissing spine, cervicothoracic region', 'ICD10_2010'), +('M48.24', 'Kissing spine, thoracic region', 'ICD10_2010'), +('M48.25', 'Kissing spine, thoracolumbar region', 'ICD10_2010'), +('M48.26', 'Kissing spine, lumbar region', 'ICD10_2010'), +('M48.27', 'Kissing spine, lumbosacral region', 'ICD10_2010'), +('M48.28', 'Kissing spine, sacral and sacrococcygeal region', 'ICD10_2010'), +('M48.29', 'Kissing spine, site unspecified', 'ICD10_2010'), +('M48.3', 'Traumatic spondylopathy', 'ICD10_2010'), +('M48.30', 'Traumatic spondylopathy, multiple sites', 'ICD10_2010'), +('M48.31', 'Traumatic spondylopathy, occipito-atlanto-axial region', 'ICD10_2010'), +('M48.32', 'Traumatic spondylopathy, cervical region', 'ICD10_2010'), +('M48.33', 'Traumatic spondylopathy, cervicothoracic region', 'ICD10_2010'), +('M48.34', 'Traumatic spondylopathy, thoracic region', 'ICD10_2010'), +('M48.35', 'Traumatic spondylopathy, thoracolumbar region', 'ICD10_2010'), +('M48.36', 'Traumatic spondylopathy, lumbar region', 'ICD10_2010'), +('M48.37', 'Traumatic spondylopathy, lumbosacral region', 'ICD10_2010'), +('M48.38', 'Traumatic spondylopathy, sacral and sacrococcygeal region', 'ICD10_2010'), +('M48.39', 'Traumatic spondylopathy, site unspecified', 'ICD10_2010'), +('M48.4', 'Fatigue fracture of vertebra', 'ICD10_2010'), +('M48.40', 'Fatigue fracture of vertebra, multiple sites', 'ICD10_2010'), +('M48.41', 'Fatigue fracture of vertebra, occipito-atlanto-axial region', 'ICD10_2010'), +('M48.42', 'Fatigue fracture of vertebra, cervical region', 'ICD10_2010'), +('M48.43', 'Fatigue fracture of vertebra, cervicothoracic region', 'ICD10_2010'), +('M48.44', 'Fatigue fracture of vertebra, thoracic region', 'ICD10_2010'), +('M48.45', 'Fatigue fracture of vertebra, thoracolumbar region', 'ICD10_2010'), +('M48.46', 'Fatigue fracture of vertebra, lumbar region', 'ICD10_2010'), +('M48.47', 'Fatigue fracture of vertebra, lumbosacral region', 'ICD10_2010'), +('M48.48', 'Fatigue fracture of vertebra, sacral and sacrococcygeal region', 'ICD10_2010'), +('M48.49', 'Fatigue fracture of vertebra, site unspecified', 'ICD10_2010'), +('M48.5', 'Collapsed vertebra, not elsewhere classified', 'ICD10_2010'), +('M48.50', 'Collapsed vertebra, not elsewhere classified, multiple sites', 'ICD10_2010'), +('M48.51', 'Collapsed vertebra, not elsewhere classified, occipito-atlanto-axial region', 'ICD10_2010'), +('M48.52', 'Collapsed vertebra, not elsewhere classified, cervical region', 'ICD10_2010'), +('M48.53', 'Collapsed vertebra, not elsewhere classified, cervicothoracic region', 'ICD10_2010'), +('M48.54', 'Collapsed vertebra, not elsewhere classified, thoracic region', 'ICD10_2010'), +('M48.55', 'Collapsed vertebra, not elsewhere classified, thoracolumbar region', 'ICD10_2010'), +('M48.56', 'Collapsed vertebra, not elsewhere classified, lumbar region', 'ICD10_2010'), +('M48.57', 'Collapsed vertebra, not elsewhere classified, lumbosacral region', 'ICD10_2010'), +('M48.58', 'Collapsed vertebra, not elsewhere classified, sacral and sacrococcygeal region', 'ICD10_2010'), +('M48.59', 'Collapsed vertebra, not elsewhere classified, site unspecified', 'ICD10_2010'), +('M48.8', 'Other specified spondylopathies', 'ICD10_2010'), +('M48.80', 'Other specified spondylopathies, multiple sites', 'ICD10_2010'), +('M48.81', 'Other specified spondylopathies, occipito-atlanto-axial region', 'ICD10_2010'), +('M48.82', 'Other specified spondylopathies, cervical region', 'ICD10_2010'), +('M48.83', 'Other specified spondylopathies, cervicothoracic region', 'ICD10_2010'), +('M48.84', 'Other specified spondylopathies, thoracic region', 'ICD10_2010'), +('M48.85', 'Other specified spondylopathies, thoracolumbar region', 'ICD10_2010'), +('M48.86', 'Other specified spondylopathies, lumbar region', 'ICD10_2010'), +('M48.87', 'Other specified spondylopathies, lumbosacral region', 'ICD10_2010'), +('M48.88', 'Other specified spondylopathies, sacral and sacrococcygeal region', 'ICD10_2010'), +('M48.89', 'Other specified spondylopathies, site unspecified', 'ICD10_2010'), +('M48.9', 'Spondylopathy, unspecified', 'ICD10_2010'), +('M48.90', 'Spondylopathy, unspecified, multiple sites', 'ICD10_2010'), +('M48.91', 'Spondylopathy, unspecified, occipito-atlanto-axial region', 'ICD10_2010'), +('M48.92', 'Spondylopathy, unspecified, cervical region', 'ICD10_2010'), +('M48.93', 'Spondylopathy, unspecified, cervicothoracic region', 'ICD10_2010'), +('M48.94', 'Spondylopathy, unspecified, thoracic region', 'ICD10_2010'), +('M48.95', 'Spondylopathy, unspecified, thoracolumbar region', 'ICD10_2010'), +('M48.96', 'Spondylopathy, unspecified, lumbar region', 'ICD10_2010'), +('M48.97', 'Spondylopathy, unspecified, lumbosacral region', 'ICD10_2010'), +('M48.98', 'Spondylopathy, unspecified, sacral and sacrococcygeal region', 'ICD10_2010'), +('M48.99', 'Spondylopathy, unspecified, site unspecified', 'ICD10_2010'), +('M49', 'Spondylopathies in diseases classified elsewhere', 'ICD10_2010'), +('M49.0', 'Tuberculosis of spine', 'ICD10_2010'), +('M49.00', 'Tuberculosis of spine, multiple sites', 'ICD10_2010'), +('M49.01', 'Tuberculosis of spine, occipito-atlanto-axial region', 'ICD10_2010'), +('M49.02', 'Tuberculosis of spine, cervical region', 'ICD10_2010'), +('M49.03', 'Tuberculosis of spine, cervicothoracic region', 'ICD10_2010'), +('M49.04', 'Tuberculosis of spine, thoracic region', 'ICD10_2010'), +('M49.05', 'Tuberculosis of spine, thoracolumbar region', 'ICD10_2010'), +('M49.06', 'Tuberculosis of spine, lumbar region', 'ICD10_2010'), +('M49.07', 'Tuberculosis of spine, lumbosacral region', 'ICD10_2010'), +('M49.08', 'Tuberculosis of spine, sacral and sacrococcygeal region', 'ICD10_2010'), +('M49.09', 'Tuberculosis of spine, site unspecified', 'ICD10_2010'), +('M49.1', 'Brucella spondylitis', 'ICD10_2010'), +('M49.10', 'Brucella spondylitis, multiple sites', 'ICD10_2010'), +('M49.11', 'Brucella spondylitis, occipito-atlanto-axial region', 'ICD10_2010'), +('M49.12', 'Brucella spondylitis, cervical region', 'ICD10_2010'), +('M49.13', 'Brucella spondylitis, cervicothoracic region', 'ICD10_2010'), +('M49.14', 'Brucella spondylitis, thoracic region', 'ICD10_2010'), +('M49.15', 'Brucella spondylitis, thoracolumbar region', 'ICD10_2010'), +('M49.16', 'Brucella spondylitis, lumbar region', 'ICD10_2010'), +('M49.17', 'Brucella spondylitis, lumbosacral region', 'ICD10_2010'), +('M49.18', 'Brucella spondylitis, sacral and sacrococcygeal region', 'ICD10_2010'), +('M49.19', 'Brucella spondylitis, site unspecified', 'ICD10_2010'), +('M49.2', 'Enterobacterial spondylitis', 'ICD10_2010'), +('M49.20', 'Enterobacterial spondylitis, multiple sites', 'ICD10_2010'), +('M49.21', 'Enterobacterial spondylitis, occipito-atlanto-axial region', 'ICD10_2010'), +('M49.22', 'Enterobacterial spondylitis, cervical region', 'ICD10_2010'), +('M49.23', 'Enterobacterial spondylitis, cervicothoracic region', 'ICD10_2010'), +('M49.24', 'Enterobacterial spondylitis, thoracic region', 'ICD10_2010'), +('M49.25', 'Enterobacterial spondylitis, thoracolumbar region', 'ICD10_2010'), +('M49.26', 'Enterobacterial spondylitis, lumbar region', 'ICD10_2010'), +('M49.27', 'Enterobacterial spondylitis, lumbosacral region', 'ICD10_2010'), +('M49.28', 'Enterobacterial spondylitis, sacral and sacrococcygeal region', 'ICD10_2010'), +('M49.29', 'Enterobacterial spondylitis, site unspecified', 'ICD10_2010'), +('M49.3', 'Spondylopathy in other infectious and parasitic disease classified elsewhere', 'ICD10_2010'), +('M49.30', 'Spondylopathy in other infectious and parasitic disease, multiple sites', 'ICD10_2010'), +('M49.31', 'Spondylopathy in other infectious and parasitic disease, occipito-atlanto-axial region', 'ICD10_2010'), +('M49.32', 'Spondylopathy in other infectious and parasitic disease, cervical region', 'ICD10_2010'), +('M49.33', 'Spondylopathy in other infectious and parasitic disease, cervicothoracic region', 'ICD10_2010'), +('M49.34', 'Spondylopathy in other infectious and parasitic disease, thoracic region', 'ICD10_2010'), +('M49.35', 'Spondylopathy in other infectious and parasitic disease, thoracolumbar region', 'ICD10_2010'), +('M49.36', 'Spondylopathy in other infectious and parasitic disease, lumbar region', 'ICD10_2010'), +('M49.37', 'Spondylopathy in other infectious and parasitic disease, lumbosacral region', 'ICD10_2010'), +('M49.38', 'Spondylopathy in other infectious and parasitic disease, sacral and sacrococcygeal region', 'ICD10_2010'), +('M49.39', 'Spondylopathy in other infectious and parasitic disease, site unspecified', 'ICD10_2010'), +('M49.4', 'Neuropathic spondylopathy', 'ICD10_2010'), +('M49.40', 'Neuropathic spondylopathy, multiple sites', 'ICD10_2010'), +('M49.41', 'Neuropathic spondylopathy, occipito-atlanto-axial region', 'ICD10_2010'), +('M49.42', 'Neuropathic spondylopathy, cervical region', 'ICD10_2010'), +('M49.43', 'Neuropathic spondylopathy, cervicothoracic region', 'ICD10_2010'), +('M49.44', 'Neuropathic spondylopathy, thoracic region', 'ICD10_2010'), +('M49.45', 'Neuropathic spondylopathy, thoracolumbar region', 'ICD10_2010'), +('M49.46', 'Neuropathic spondylopathy, lumbar region', 'ICD10_2010'), +('M49.47', 'Neuropathic spondylopathy, lumbosacral region', 'ICD10_2010'), +('M49.48', 'Neuropathic spondylopathy, sacral and sacrococcygeal region', 'ICD10_2010'), +('M49.49', 'Neuropathic spondylopathy, site unspecified', 'ICD10_2010'), +('M49.5', 'Collapsed vertebra in diseases classified elsewhere', 'ICD10_2010'), +('M49.50', 'Collapsed vertebra in diseases classified elsewhere, multiple sites', 'ICD10_2010'), +('M49.51', 'Collapsed vertebra in diseases classified elsewhere, occipito-atlanto-axial region', 'ICD10_2010'), +('M49.52', 'Collapsed vertebra in diseases classified elsewhere, cervical region', 'ICD10_2010'), +('M49.53', 'Collapsed vertebra in diseases classified elsewhere, cervicothoracic region', 'ICD10_2010'), +('M49.54', 'Collapsed vertebra in diseases classified elsewhere, thoracic region', 'ICD10_2010'), +('M49.55', 'Collapsed vertebra in diseases classified elsewhere, thoracolumbar region', 'ICD10_2010'), +('M49.56', 'Collapsed vertebra in diseases classified elsewhere, lumbar region', 'ICD10_2010'), +('M49.57', 'Collapsed vertebra in diseases classified elsewhere, lumbosacral region', 'ICD10_2010'), +('M49.58', 'Collapsed vertebra in diseases classified elsewhere, sacral and sacrococcygeal region', 'ICD10_2010'), +('M49.59', 'Collapsed vertebra in diseases classified elsewhere, site unspecified', 'ICD10_2010'), +('M49.8', 'Spondylopathy in other diseases classified elsewhere', 'ICD10_2010'), +('M49.80', 'Spondylopathy in other diseases classified elsewhere, multiple sites', 'ICD10_2010'), +('M49.81', 'Spondylopathy in other diseases classified elsewhere, occipito-atlanto-axial region', 'ICD10_2010'), +('M49.82', 'Spondylopathy in other diseases classified elsewhere, cervical region', 'ICD10_2010'), +('M49.83', 'Spondylopathy in other diseases classified elsewhere, cervicothoracic region', 'ICD10_2010'), +('M49.84', 'Spondylopathy in other diseases classified elsewhere, thoracic region', 'ICD10_2010'), +('M49.85', 'Spondylopathy in other diseases classified elsewhere, thoracolumbar region', 'ICD10_2010'), +('M49.86', 'Spondylopathy in other diseases classified elsewhere, lumbar region', 'ICD10_2010'), +('M49.87', 'Spondylopathy in other diseases classified elsewhere, lumbosacral region', 'ICD10_2010'), +('M49.88', 'Spondylopathy in other diseases classified elsewhere, sacral and sacrococcygeal region', 'ICD10_2010'), +('M49.89', 'Spondylopathy in other diseases classified elsewhere, site unspecified', 'ICD10_2010'), +('M50', 'Cervical disc disorders', 'ICD10_2010'), +('M50.0', 'Cervical disc disorder with myelopathy', 'ICD10_2010'), +('M50.1', 'Cervical disc disorder with radiculopathy', 'ICD10_2010'), +('M50.2', 'Other cervical disc displacement', 'ICD10_2010'), +('M50.3', 'Other cervical disc degeneration', 'ICD10_2010'), +('M50.8', 'Other cervical disc disorders', 'ICD10_2010'), +('M50.9', 'Cervical disc disorder, unspecified', 'ICD10_2010'), +('M51', 'Other intervertebral disc disorders', 'ICD10_2010'), +('M51.0', 'Lumbar and other intervertebral disc disorder with mylopathy', 'ICD10_2010'), +('M51.1', 'Lumbar and other intervertebral disc disorders with radiculopathy', 'ICD10_2010'), +('M51.2', 'Other specified intervertebral disc displacement', 'ICD10_2010'), +('M51.3', 'Other specified intervertebral disc degeneration', 'ICD10_2010'), +('M51.4', 'Schmorl\'s nodes', 'ICD10_2010'), +('M51.8', 'Other specified intervertebral disc disorders', 'ICD10_2010'), +('M51.9', 'Intervertebral disc disorder, unspecified', 'ICD10_2010'), +('M53', 'Other dorsopathies, not elsewhere classified', 'ICD10_2010'), +('M53.0', 'Cervicocranial syndrome', 'ICD10_2010'), +('M53.00', 'Cervicocranial syndrome, multiple sites', 'ICD10_2010'), +('M53.01', 'Cervicocranial syndrome, occipito-atlanto-axial region', 'ICD10_2010'), +('M53.02', 'Cervicocranial syndrome, cervical region', 'ICD10_2010'), +('M53.03', 'Cervicocranial syndrome, cervicothoracic region', 'ICD10_2010'), +('M53.04', 'Cervicocranial syndrome, thoracic region', 'ICD10_2010'), +('M53.05', 'Cervicocranial syndrome, thoracolumbar region', 'ICD10_2010'), +('M53.06', 'Cervicocranial syndrome, lumbar region', 'ICD10_2010'), +('M53.07', 'Cervicocranial syndrome, lumbosacral region', 'ICD10_2010'), +('M53.08', 'Cervicocranial syndrome, sacral and sacrococcygeal region', 'ICD10_2010'), +('M53.09', 'Cervicocranial syndrome, site unspecified', 'ICD10_2010'), +('M53.1', 'Cervicobrachial syndrome', 'ICD10_2010'), +('M53.10', 'Cervicobrachial syndrome, multiple sites', 'ICD10_2010'), +('M53.11', 'Cervicobrachial syndrome, occipito-atlanto-axial region', 'ICD10_2010'), +('M53.12', 'Cervicobrachial syndrome, cervical region', 'ICD10_2010'), +('M53.13', 'Cervicobrachial syndrome, cervicothoracic region', 'ICD10_2010'), +('M53.14', 'Cervicobrachial syndrome, thoracic region', 'ICD10_2010'), +('M53.15', 'Cervicobrachial syndrome, thoracolumbar region', 'ICD10_2010'), +('M53.16', 'Cervicobrachial syndrome, lumbar region', 'ICD10_2010'), +('M53.17', 'Cervicobrachial syndrome, lumbosacral region', 'ICD10_2010'), +('M53.18', 'Cervicobrachial syndrome, sacral and sacrococcygeal region', 'ICD10_2010'), +('M53.19', 'Cervicobrachial syndrome, site unspecified', 'ICD10_2010'), +('M53.2', 'Spinal instabilities', 'ICD10_2010'), +('M53.20', 'Spinal instabilities, multiple sites', 'ICD10_2010'), +('M53.21', 'Spinal instabilities, occipito-atlanto-axial region', 'ICD10_2010'), +('M53.22', 'Spinal instabilities, cervical region', 'ICD10_2010'), +('M53.23', 'Spinal instabilities, cervicothoracic region', 'ICD10_2010'), +('M53.24', 'Spinal instabilities, thoracic region', 'ICD10_2010'), +('M53.25', 'Spinal instabilities, thoracolumbar region', 'ICD10_2010'), +('M53.26', 'Spinal instabilities, lumbar region', 'ICD10_2010'), +('M53.27', 'Spinal instabilities, lumbosacral region', 'ICD10_2010'), +('M53.28', 'Spinal instabilities, sacral and sacrococcygeal region', 'ICD10_2010'), +('M53.29', 'Spinal instabilities, site unspecified', 'ICD10_2010'), +('M53.3', 'Sacrococcygeal disorders, not elsewhere classified', 'ICD10_2010'), +('M53.30', 'Sacrococcygeal disorders, not elsewhere classified, multiple sites', 'ICD10_2010'), +('M53.31', 'Sacrococcygeal disorders, not elsewhere classified, occipito-atlanto-axial region', 'ICD10_2010'), +('M53.32', 'Sacrococcygeal disorders, not elsewhere classified, cervical region', 'ICD10_2010'), +('M53.33', 'Sacrococcygeal disorders, not elsewhere classified, cervicothoracic region', 'ICD10_2010'), +('M53.34', 'Sacrococcygeal disorders, not elsewhere classified, thoracic region', 'ICD10_2010'), +('M53.35', 'Sacrococcygeal disorders, not elsewhere classified, thoracolumbar region', 'ICD10_2010'), +('M53.36', 'Sacrococcygeal disorders, not elsewhere classified, lumbosacral region', 'ICD10_2010'), +('M53.37', 'Sacrococcygeal disorders, not elsewhere classified, sacral and sacrococcygeal region', 'ICD10_2010'), +('M53.38', 'Sacrococcygeal disorders, not elsewhere classified, sacral and sacrococcygeal region', 'ICD10_2010'), +('M53.39', 'Sacrococcygeal disorders, not elsewhere classified, site unspecified', 'ICD10_2010'), +('M53.8', 'Other specified dorsopathies', 'ICD10_2010'), +('M53.80', 'Other specified dorsopathies, multiple sites', 'ICD10_2010'), +('M53.81', 'Other specified dorsopathies, occipito-atlanto-axial region', 'ICD10_2010'), +('M53.82', 'Other specified dorsopathies, cervical region', 'ICD10_2010'), +('M53.83', 'Other specified dorsopathies, cervicothoracic region', 'ICD10_2010'), +('M53.84', 'Other specified dorsopathies, thoracic region', 'ICD10_2010'), +('M53.85', 'Other specified dorsopathies, thoracolumbar region', 'ICD10_2010'), +('M53.86', 'Other specified dorsopathies, lumbar region', 'ICD10_2010'), +('M53.87', 'Other specified dorsopathies, lumbosacral region', 'ICD10_2010'), +('M53.88', 'Other specified dorsopathies, sacral and sacrococcygeal region', 'ICD10_2010'), +('M53.89', 'Other specified dorsopathies, site unspecified', 'ICD10_2010'), +('M53.9', 'Dorsopathy, unspecified', 'ICD10_2010'), +('M53.90', 'Dorsopathy, unspecified, multiple sites', 'ICD10_2010'), +('M53.91', 'Dorsopathy, unspecified, occipito-atlanto-axial region', 'ICD10_2010'), +('M53.92', 'Dorsopathy, unspecified, cervical region', 'ICD10_2010'), +('M53.93', 'Dorsopathy, unspecified, cervicothoracic region', 'ICD10_2010'), +('M53.94', 'Dorsopathy, unspecified, thoracic region', 'ICD10_2010'), +('M53.95', 'Dorsopathy, unspecified, thoracolumbar region', 'ICD10_2010'), +('M53.96', 'Dorsopathy, unspecified, lumbar region', 'ICD10_2010'), +('M53.97', 'Dorsopathy, unspecified, lumbosacral region', 'ICD10_2010'), +('M53.98', 'Dorsopathy, unspecified, sacral and sacrococcygeal region', 'ICD10_2010'), +('M53.99', 'Dorsopathy, unspecified, site unspecified', 'ICD10_2010'), +('M54', 'Dorsalgia', 'ICD10_2010'), +('M54.0', 'Panniculitis affecting regions of neck and back', 'ICD10_2010'), +('M54.00', 'Panniculitis affecting regions of neck and back, multiple sites', 'ICD10_2010'), +('M54.01', 'Panniculitis affecting regions of neck and back, occipito-atlanto-axial region', 'ICD10_2010'), +('M54.02', 'Panniculitis affecting regions of neck and back, cervical region', 'ICD10_2010'), +('M54.03', 'Panniculitis affecting regions of neck and back, cervicothoracic region', 'ICD10_2010'), +('M54.04', 'Panniculitis affecting regions of neck and back, thoracic region', 'ICD10_2010'), +('M54.05', 'Panniculitis affecting regions of neck and back, thoracolumbar region', 'ICD10_2010'); +INSERT INTO `icd10` (`ID_ICD10`, `Diagnosa`, `Versi_ICD10`) VALUES +('M54.06', 'Panniculitis affecting regions of neck and back, lumbar region', 'ICD10_2010'), +('M54.07', 'Panniculitis affecting regions of neck and back, lumbosacral region', 'ICD10_2010'), +('M54.08', 'Panniculitis affecting regions of neck and back, sacral and sacrococcygeal region', 'ICD10_2010'), +('M54.09', 'Panniculitis affecting regions of neck and back, site unspecified', 'ICD10_2010'), +('M54.1', 'Radiculopathy', 'ICD10_2010'), +('M54.10', 'Radiculopathy, multiple sites', 'ICD10_2010'), +('M54.11', 'Radiculopathy, occipito-atlanto-axial region', 'ICD10_2010'), +('M54.12', 'Radiculopathy, cervical region', 'ICD10_2010'), +('M54.13', 'Radiculopathy, cervicothoracic region', 'ICD10_2010'), +('M54.14', 'Radiculopathy, thoracic region', 'ICD10_2010'), +('M54.15', 'Radiculopathy, thoracolumbar region', 'ICD10_2010'), +('M54.16', 'Radiculopathy, lumbar region', 'ICD10_2010'), +('M54.17', 'Radiculopathy, lumbosacral region', 'ICD10_2010'), +('M54.18', 'Radiculopathy, sacral and sacrococcygeal region', 'ICD10_2010'), +('M54.19', 'Radiculopathy, site unspecified', 'ICD10_2010'), +('M54.2', 'Cervicalgia', 'ICD10_2010'), +('M54.20', 'Cervicalgia, multiple sites', 'ICD10_2010'), +('M54.21', 'Cervicalgia, occipito-atlanto-axial region', 'ICD10_2010'), +('M54.22', 'Cervicalgia, cervical region', 'ICD10_2010'), +('M54.23', 'Cervicalgia, cervicothoracic region', 'ICD10_2010'), +('M54.24', 'Cervicalgia, thoracic region', 'ICD10_2010'), +('M54.25', 'Cervicalgia, thoracolumbar region', 'ICD10_2010'), +('M54.26', 'Cervicalgia, lumbar region', 'ICD10_2010'), +('M54.27', 'Cervicalgia, lumbosacral region', 'ICD10_2010'), +('M54.28', 'Cervicalgia, sacral and sacrococcygeal region', 'ICD10_2010'), +('M54.29', 'Cervicalgia, site unspecified', 'ICD10_2010'), +('M54.3', 'Sciatica', 'ICD10_2010'), +('M54.30', 'Sciatica, multiple sites', 'ICD10_2010'), +('M54.31', 'Sciatica, occipito-atlanto-axial region', 'ICD10_2010'), +('M54.32', 'Sciatica, cervical region', 'ICD10_2010'), +('M54.33', 'Sciatica, cervicothoracic region', 'ICD10_2010'), +('M54.34', 'Sciatica, thoracic region', 'ICD10_2010'), +('M54.35', 'Sciatica, thoracolumbar region', 'ICD10_2010'), +('M54.36', 'Sciatica, lumbar region', 'ICD10_2010'), +('M54.37', 'Sciatica, lumbosacral region', 'ICD10_2010'), +('M54.38', 'Sciatica, sacral and sacrococcygeal region', 'ICD10_2010'), +('M54.39', 'Sciatica, site unspecified', 'ICD10_2010'), +('M54.4', 'Lumbago with sciatica', 'ICD10_2010'), +('M54.40', 'Lumbago with sciatica, multiple sites', 'ICD10_2010'), +('M54.41', 'Lumbago with sciatica, occipito-atlanto-axial region', 'ICD10_2010'), +('M54.42', 'Lumbago with sciatica, cervical region', 'ICD10_2010'), +('M54.43', 'Lumbago with sciatica, cervicothoracic region', 'ICD10_2010'), +('M54.44', 'Lumbago with sciatica, thoracic region', 'ICD10_2010'), +('M54.45', 'Lumbago with sciatica, thoracolumbar region', 'ICD10_2010'), +('M54.46', 'Lumbago with sciatica, lumbar region', 'ICD10_2010'), +('M54.47', 'Lumbago with sciatica, lumbosacral region', 'ICD10_2010'), +('M54.48', 'Lumbago with sciatica, sacral and sacrococcygeal region', 'ICD10_2010'), +('M54.49', 'Lumbago with sciatica, site unspecified', 'ICD10_2010'), +('M54.5', 'Low back pain', 'ICD10_2010'), +('M54.50', 'Low back pain, multiple sites', 'ICD10_2010'), +('M54.51', 'Low back pain, occipito-atlanto-axial region', 'ICD10_2010'), +('M54.52', 'Low back pain, cervical region', 'ICD10_2010'), +('M54.53', 'Low back pain, cervicothoracic region', 'ICD10_2010'), +('M54.54', 'Low back pain, thoracic region', 'ICD10_2010'), +('M54.55', 'Low back pain, thoracolumbar region', 'ICD10_2010'), +('M54.56', 'Low back pain, lumbar region', 'ICD10_2010'), +('M54.57', 'Low back pain, lumbosacral region', 'ICD10_2010'), +('M54.58', 'Low back pain, sacral and sacrococcygeal region', 'ICD10_2010'), +('M54.59', 'Low back pain, site unspecified', 'ICD10_2010'), +('M54.6', 'Pain in thoracic spine', 'ICD10_2010'), +('M54.60', 'Pain in thoracic spine, multiple sites', 'ICD10_2010'), +('M54.61', 'Pain in thoracic spine, occipito-atlanto-axial region', 'ICD10_2010'), +('M54.62', 'Pain in thoracic spine, cervical region', 'ICD10_2010'), +('M54.63', 'Pain in thoracic spine, cervicothoracic region', 'ICD10_2010'), +('M54.64', 'Pain in thoracic spine, thoracic region', 'ICD10_2010'), +('M54.65', 'Pain in thoracic spine, thoracolumbar region', 'ICD10_2010'), +('M54.66', 'Pain in thoracic spine, lumbar region', 'ICD10_2010'), +('M54.67', 'Pain in thoracic spine, lumbosacral region', 'ICD10_2010'), +('M54.68', 'Pain in thoracic spine, sacral and sacrococcygeal region', 'ICD10_2010'), +('M54.69', 'Pain in thoracic spine, site unspecified', 'ICD10_2010'), +('M54.8', 'Other dorsalgia', 'ICD10_2010'), +('M54.80', 'Other dorsalgia, multiple sites', 'ICD10_2010'), +('M54.81', 'Other dorsalgia, occipito-atlanto-axial region', 'ICD10_2010'), +('M54.82', 'Other dorsalgia, cervical region', 'ICD10_2010'), +('M54.83', 'Other dorsalgia, cervicothoracic region', 'ICD10_2010'), +('M54.84', 'Other dorsalgia, thoracic region', 'ICD10_2010'), +('M54.85', 'Other dorsalgia, thoracolumbar region', 'ICD10_2010'), +('M54.86', 'Other dorsalgia, lumbar region', 'ICD10_2010'), +('M54.87', 'Other dorsalgia, lumbosacral region', 'ICD10_2010'), +('M54.88', 'Other dorsalgia, sacral and sacrococcygeal region', 'ICD10_2010'), +('M54.89', 'Other dorsalgia, site unspecified', 'ICD10_2010'), +('M54.9', 'Dorsalgia, unspecified', 'ICD10_2010'), +('M54.90', 'Dorsalgia, unspecified, multiple sites', 'ICD10_2010'), +('M54.91', 'Dorsalgia, unspecified, occipito-atlanto-axial region', 'ICD10_2010'), +('M54.92', 'Dorsalgia, unspecified, cervical region', 'ICD10_2010'), +('M54.93', 'Dorsalgia, unspecified, cervicothoracic region', 'ICD10_2010'), +('M54.94', 'Dorsalgia, unspecified, thoracic region', 'ICD10_2010'), +('M54.95', 'Dorsalgia, unspecified, thoracolumbar region', 'ICD10_2010'), +('M54.96', 'Dorsalgia, unspecified, lumbar region', 'ICD10_2010'), +('M54.97', 'Dorsalgia, unspecified, lumbosacral region', 'ICD10_2010'), +('M54.98', 'Dorsalgia, unspecified, sacral and sacrococcygeal region', 'ICD10_2010'), +('M54.99', 'Dorsalgia, unspecified, site unspecified', 'ICD10_2010'), +('M60', 'Myositis', 'ICD10_2010'), +('M60.0', 'Infective myositis', 'ICD10_2010'), +('M60.00', 'Infective myositis, mulitple sites', 'ICD10_2010'), +('M60.01', 'Infective myositis, shoulder', 'ICD10_2010'), +('M60.02', 'Infective myositis, upper arm', 'ICD10_2010'), +('M60.03', 'Infective myositis, forearm', 'ICD10_2010'), +('M60.04', 'Infective myositis, hand', 'ICD10_2010'), +('M60.05', 'Infective myositis, pelvic region and thigh', 'ICD10_2010'), +('M60.06', 'Infective myositis, lower leg', 'ICD10_2010'), +('M60.07', 'Infective myositis, ankle and foot', 'ICD10_2010'), +('M60.08', 'Infective myositis, other', 'ICD10_2010'), +('M60.09', 'Infective myositis, site unspecified', 'ICD10_2010'), +('M60.1', 'Interstitial myositis', 'ICD10_2010'), +('M60.10', 'Interstitial myositis, mulitple sites', 'ICD10_2010'), +('M60.11', 'Interstitial myositis, shoulder', 'ICD10_2010'), +('M60.12', 'Interstitial myositis, upper arm', 'ICD10_2010'), +('M60.13', 'Interstitial myositis, forearm', 'ICD10_2010'), +('M60.14', 'Interstitial myositis, hand', 'ICD10_2010'), +('M60.15', 'Interstitial myositis, pelvic region and thigh', 'ICD10_2010'), +('M60.16', 'Interstitial myositis, lower leg', 'ICD10_2010'), +('M60.17', 'Interstitial myositis, ankle and foot', 'ICD10_2010'), +('M60.18', 'Interstitial myositis, other', 'ICD10_2010'), +('M60.19', 'Interstitial myositis, site unspecified', 'ICD10_2010'), +('M60.2', 'Foreign body granuloma of soft tissue, not elsewhere classified', 'ICD10_2010'), +('M60.20', 'Foreign body graniloma of soft tissue, mulitple sites', 'ICD10_2010'), +('M60.21', 'Foreign body graniloma of soft tissue, shoulder', 'ICD10_2010'), +('M60.22', 'Foreign body graniloma of soft tissue, upper arm', 'ICD10_2010'), +('M60.23', 'Foreign body graniloma of soft tissue, forearm', 'ICD10_2010'), +('M60.24', 'Foreign body graniloma of soft tissue, hand', 'ICD10_2010'), +('M60.25', 'Foreign body granuloma of soft tissue, pelvic region and thigh', 'ICD10_2010'), +('M60.26', 'Foreign body graniloma of soft tissue, lower leg', 'ICD10_2010'), +('M60.27', 'Foreign body graniloma of soft tissue, ankle and foot', 'ICD10_2010'), +('M60.28', 'Foreign body granuloma of soft tissue, other', 'ICD10_2010'), +('M60.29', 'Foreign body granuloma of soft tissue, site unspecified', 'ICD10_2010'), +('M60.8', 'Other myositis', 'ICD10_2010'), +('M60.80', 'Other myositis, mulitple sites', 'ICD10_2010'), +('M60.81', 'Other myositis, shoulder', 'ICD10_2010'), +('M60.82', 'Other myositis, upper arm', 'ICD10_2010'), +('M60.83', 'Other myositis, forearm', 'ICD10_2010'), +('M60.84', 'Other myositis, hand', 'ICD10_2010'), +('M60.85', 'Other myositis, pelvic region and thigh', 'ICD10_2010'), +('M60.86', 'Other myositis, lower leg', 'ICD10_2010'), +('M60.87', 'Other myositis, ankle and foot', 'ICD10_2010'), +('M60.88', 'Other myositis, other', 'ICD10_2010'), +('M60.89', 'Other myositis, site unspecified', 'ICD10_2010'), +('M60.9', 'Myositis, unspecified', 'ICD10_2010'), +('M60.90', 'Myositis unspecified, mulitple sites', 'ICD10_2010'), +('M60.91', 'Myositis unspecified, shoulder', 'ICD10_2010'), +('M60.92', 'Myositis unspecified, upper arm', 'ICD10_2010'), +('M60.93', 'Myositis unspecified, forearm', 'ICD10_2010'), +('M60.94', 'Myositis unspecified, hand', 'ICD10_2010'), +('M60.95', 'Myositis unspecified, pelvic region and thigh', 'ICD10_2010'), +('M60.96', 'Myositis unspecified, lower leg', 'ICD10_2010'), +('M60.97', 'Myositis unspecified, ankle and foot', 'ICD10_2010'), +('M60.98', 'Myositis unspecified, other', 'ICD10_2010'), +('M60.99', 'Myositis unspecified, site unspecified', 'ICD10_2010'), +('M61', 'Calcification and ossification of muscle', 'ICD10_2010'), +('M61.0', 'Myositis ossificans traumatica', 'ICD10_2010'), +('M61.00', 'Myositis ossificans traumatica, mulitple sites', 'ICD10_2010'), +('M61.01', 'Myositis ossificans traumatica, shoulder', 'ICD10_2010'), +('M61.02', 'Myositis ossificans traumatica, upper arm', 'ICD10_2010'), +('M61.03', 'Myositis ossificans traumatica, forearm', 'ICD10_2010'), +('M61.04', 'Myositis ossificans traumatica, hand', 'ICD10_2010'), +('M61.05', 'Myositis ossificans traumatica, pelvic region and thigh', 'ICD10_2010'), +('M61.06', 'Myositis ossificans traumatica, lower leg', 'ICD10_2010'), +('M61.07', 'Myositis ossificans traumatica, ankle and foot', 'ICD10_2010'), +('M61.08', 'Myositis ossificans traumatica, other', 'ICD10_2010'), +('M61.09', 'Myositis ossificans traumatica, site unspecified', 'ICD10_2010'), +('M61.1', 'Myositis ossificans progressiva', 'ICD10_2010'), +('M61.10', 'Myositis ossificans progressiva, mulitple sites', 'ICD10_2010'), +('M61.11', 'Myositis ossificans progressiva, shoulder', 'ICD10_2010'), +('M61.12', 'Myositis ossificans progressiva, upper arm', 'ICD10_2010'), +('M61.13', 'Myositis ossificans progressiva, forearm', 'ICD10_2010'), +('M61.14', 'Myositis ossificans progressiva, hand', 'ICD10_2010'), +('M61.15', 'Myositis ossificans progressiva, pelvic region and thigh', 'ICD10_2010'), +('M61.16', 'Myositis ossificans progressiva, lower leg', 'ICD10_2010'), +('M61.17', 'Myositis ossificans progressiva, ankle and foot', 'ICD10_2010'), +('M61.18', 'Myositis ossificans progressiva, other', 'ICD10_2010'), +('M61.19', 'Myositis ossificans progressiva, site unspecified', 'ICD10_2010'), +('M61.2', 'Paralytic calcification and ossification of muscle', 'ICD10_2010'), +('M61.20', 'Paralytic calcification and ossifcation of muscle, mulitple sites', 'ICD10_2010'), +('M61.21', 'Paralytic calcification and ossifcation of muscle, shoulder', 'ICD10_2010'), +('M61.22', 'Paralytic calcification and ossifcation of muscle, upper arm', 'ICD10_2010'), +('M61.23', 'Paralytic calcification and ossifcation of muscle, forearm', 'ICD10_2010'), +('M61.24', 'Paralytic calcification and ossifcation of muscle, hand', 'ICD10_2010'), +('M61.25', 'Paralytic calcification and ossifcation of muscle, pelvic region and thigh', 'ICD10_2010'), +('M61.26', 'Paralytic calcification and ossifcation of muscle, lower leg', 'ICD10_2010'), +('M61.27', 'Paralytic calcification and ossifcation of muscle, ankle and foot', 'ICD10_2010'), +('M61.28', 'Paralytic calcification and ossifcation of muscle, other', 'ICD10_2010'), +('M61.29', 'Paralytic calcification and ossifcation of muscle, site unspecified', 'ICD10_2010'), +('M61.3', 'Calcification and ossification of muscles assoc with burns', 'ICD10_2010'), +('M61.30', 'Calcification and ossification of muscles assco with burns, multiple sites', 'ICD10_2010'), +('M61.31', 'Calcification and ossification of muscles assco with burns, shoulder', 'ICD10_2010'), +('M61.32', 'Calcification and ossification of muscles assco with burns, upper arm', 'ICD10_2010'), +('M61.33', 'Calcification and ossification of muscles assco with burns, forearm', 'ICD10_2010'), +('M61.34', 'Calcification and ossification of muscles assco with burns, hand', 'ICD10_2010'), +('M61.35', 'Calcification and ossification of muscles assco with burns, pelvic region and thigh', 'ICD10_2010'), +('M61.36', 'Calcification and ossification of muscles assco with burns, lower leg', 'ICD10_2010'), +('M61.37', 'Calcification and ossification of muscles assco with burns, ankle and foot', 'ICD10_2010'), +('M61.38', 'Calcification and ossification of muscles assco with burns, other', 'ICD10_2010'), +('M61.39', 'Calcification and ossification of muscles assco with burns, site unspecified', 'ICD10_2010'), +('M61.4', 'Other calcification of muscle', 'ICD10_2010'), +('M61.40', 'Other calcification of muscle, multiple sites', 'ICD10_2010'), +('M61.41', 'Other calcification of muscle, shoulder', 'ICD10_2010'), +('M61.42', 'Other calcification of muscle, upper arm', 'ICD10_2010'), +('M61.43', 'Other calcification of muscle, forearm', 'ICD10_2010'), +('M61.44', 'Other calcification of muscle, hand', 'ICD10_2010'), +('M61.45', 'Other calcification of muscle, pelvic region and thigh', 'ICD10_2010'), +('M61.46', 'Other calcification of muscle, lower leg', 'ICD10_2010'), +('M61.47', 'Other calcification of muscle, ankle and foot', 'ICD10_2010'), +('M61.48', 'Other calcification of muscle, other', 'ICD10_2010'), +('M61.49', 'Other calcification of muscle, site unspecified', 'ICD10_2010'), +('M61.5', 'Other ossification of muscle', 'ICD10_2010'), +('M61.50', 'Other ossification of muscle, multiple sites', 'ICD10_2010'), +('M61.51', 'Other ossification of muscle, shoulder', 'ICD10_2010'), +('M61.52', 'Other ossification of muscle, upper arm', 'ICD10_2010'), +('M61.53', 'Other ossification of muscle, forearm', 'ICD10_2010'), +('M61.54', 'Other ossification of muscle, hand', 'ICD10_2010'), +('M61.55', 'Other ossification of muscle, pelvic region and thigh', 'ICD10_2010'), +('M61.56', 'Other ossification of muscle, lower leg', 'ICD10_2010'), +('M61.57', 'Other ossification of muscle, ankle and foot', 'ICD10_2010'), +('M61.58', 'Other ossification of muscle, other', 'ICD10_2010'), +('M61.59', 'Other ossification of muscle, site unspecified', 'ICD10_2010'), +('M61.9', 'Calcification and ossification of muscle, unspecified', 'ICD10_2010'), +('M61.90', 'Calcification and ossification of muscle unspecified, multiple sites', 'ICD10_2010'), +('M61.91', 'Calcification and ossification of muscle unspecified, shoulder', 'ICD10_2010'), +('M61.92', 'Calcification and ossification of muscle unspecified, upper arm', 'ICD10_2010'), +('M61.93', 'Calcification and ossification of muscle unspecified, forearm', 'ICD10_2010'), +('M61.94', 'Calcification and ossification of muscle unspecified, hand', 'ICD10_2010'), +('M61.95', 'Calcification and ossification of muscle unspecified, pelvic region and thigh', 'ICD10_2010'), +('M61.96', 'Calcification and ossification of muscle unspecified, lower leg', 'ICD10_2010'), +('M61.97', 'Calcification and ossification of muscle unspecified, ankle and foot', 'ICD10_2010'), +('M61.98', 'Calcification and ossification of muscle unspecified, other', 'ICD10_2010'), +('M61.99', 'Calcification and ossification of muscle unspecified, site unspecified', 'ICD10_2010'), +('M62', 'Other disorders of muscle', 'ICD10_2010'), +('M62.0', 'Diastasis of muscle', 'ICD10_2010'), +('M62.00', 'Diastasis of muscle, mulitple sites', 'ICD10_2010'), +('M62.01', 'Diastasis of muscle, shoulder', 'ICD10_2010'), +('M62.02', 'Diastasis of muscle, upper arm', 'ICD10_2010'), +('M62.03', 'Diastasis of muscle, forearm', 'ICD10_2010'), +('M62.04', 'Diastasis of muscle, hand', 'ICD10_2010'), +('M62.05', 'Diastasis of muscle, pelvic region and thigh', 'ICD10_2010'), +('M62.06', 'Diastasis of muscle, lower leg', 'ICD10_2010'), +('M62.07', 'Diastasis of muscle, ankle and foot', 'ICD10_2010'), +('M62.08', 'Diastasis of muscle, other', 'ICD10_2010'), +('M62.09', 'Diastasis of muscle, site unspecified', 'ICD10_2010'), +('M62.1', 'Other rupture of muscle (nontraumatic)', 'ICD10_2010'), +('M62.10', 'Other rupture of muscle (nontraumatic), multiple sites', 'ICD10_2010'), +('M62.11', 'Other rupture of muscle (nontraumatic), shoulder', 'ICD10_2010'), +('M62.12', 'Other rupture of muscle (nontraumatic), upper arm', 'ICD10_2010'), +('M62.13', 'Other rupture of muscle (nontraumatic), forearm', 'ICD10_2010'), +('M62.14', 'Other rupture of muscle (nontraumatic), hand', 'ICD10_2010'), +('M62.15', 'Other rupture of muscle (nontraumatic), pelvic region and thigh', 'ICD10_2010'), +('M62.16', 'Other rupture of muscle (nontraumatic), lower leg', 'ICD10_2010'), +('M62.17', 'Other rupture of muscle (nontraumatic), ankle and foot', 'ICD10_2010'), +('M62.18', 'Other rupture of muscle (nontraumatic), other', 'ICD10_2010'), +('M62.19', 'Other rupture of muscle (nontraumatic), site unspecified', 'ICD10_2010'), +('M62.2', 'Ischaemic infarction of muscle', 'ICD10_2010'), +('M62.20', 'Ischaemic infarction of muscle, multiple sites', 'ICD10_2010'), +('M62.21', 'Ischaemic infarction of muscle, shoulder', 'ICD10_2010'), +('M62.22', 'Ischaemic infarction of muscle, upper arm', 'ICD10_2010'), +('M62.23', 'Ischaemic infarction of muscle, forearm', 'ICD10_2010'), +('M62.24', 'Ischaemic infarction of muscle, hand', 'ICD10_2010'), +('M62.25', 'Ischaemic infarction of muscle, pelvic region and thigh', 'ICD10_2010'), +('M62.26', 'Ischaemic infarction of muscle, lower leg', 'ICD10_2010'), +('M62.27', 'Ischaemic infarction of muscle, ankle and foot', 'ICD10_2010'), +('M62.28', 'Ischaemic infarction of muscle, other', 'ICD10_2010'), +('M62.29', 'Ischaemic infarction of muscle, site unspecified', 'ICD10_2010'), +('M62.3', 'Immobility syndrome (paraplegic)', 'ICD10_2010'), +('M62.30', 'Immobility syndrome (paraplegic), multiple sites', 'ICD10_2010'), +('M62.31', 'Immobility syndrome (paraplegic), shoulder', 'ICD10_2010'), +('M62.32', 'Immobility syndrome (paraplegic), upper arm', 'ICD10_2010'), +('M62.33', 'Immobility syndrome (paraplegic), forearm', 'ICD10_2010'), +('M62.34', 'Immobility syndrome (paraplegic), hand', 'ICD10_2010'), +('M62.35', 'Immobility syndrome (paraplegic), pelvic region and thigh', 'ICD10_2010'), +('M62.36', 'Immobility syndrome (paraplegic), lower leg', 'ICD10_2010'), +('M62.37', 'Immobility syndrome (paraplegic), ankle and foot', 'ICD10_2010'), +('M62.38', 'Immobility syndrome (paraplegic), other', 'ICD10_2010'), +('M62.39', 'Immobility syndrome (paraplegic), site unspecified', 'ICD10_2010'), +('M62.4', 'Contracture of muscle', 'ICD10_2010'), +('M62.40', 'Contracture of muscle, multiple sites', 'ICD10_2010'), +('M62.41', 'Contracture of muscle, shoulder', 'ICD10_2010'), +('M62.42', 'Contracture of muscle, upper arm', 'ICD10_2010'), +('M62.43', 'Contracture of muscle, forearm', 'ICD10_2010'), +('M62.44', 'Contracture of muscle, hand', 'ICD10_2010'), +('M62.45', 'Contracture of muscle, pelvic region and thigh', 'ICD10_2010'), +('M62.46', 'Contracture of muscle, lower leg', 'ICD10_2010'), +('M62.47', 'Contracture of muscle, ankle and foot', 'ICD10_2010'), +('M62.48', 'Contracture of muscle, other', 'ICD10_2010'), +('M62.49', 'Contracture of muscle, site unspecified', 'ICD10_2010'), +('M62.5', 'Muscle wasting and atrophy, not elsewhere classified', 'ICD10_2010'), +('M62.50', 'Muscle wasting and atrophy, multiple sites', 'ICD10_2010'), +('M62.51', 'Muscle wasting and atrophy, shoulder', 'ICD10_2010'), +('M62.52', 'Muscle wasting and atrophy, upper arm', 'ICD10_2010'), +('M62.53', 'Muscle wasting and atrophy, forearm', 'ICD10_2010'), +('M62.54', 'Muscle wasting and atrophy, hand', 'ICD10_2010'), +('M62.55', 'Muscle wasting and atrophy, pelvic region and thigh', 'ICD10_2010'), +('M62.56', 'Muscle wasting and atrophy, lower leg', 'ICD10_2010'), +('M62.57', 'Muscle wasting and atrophy, ankle and foot', 'ICD10_2010'), +('M62.58', 'Muscle wasting and atrophy, other', 'ICD10_2010'), +('M62.59', 'Muscle wasting and atrophy, site unspecified', 'ICD10_2010'), +('M62.6', 'Muscle strain', 'ICD10_2010'), +('M62.60', 'Muscle strain, multiple sites', 'ICD10_2010'), +('M62.61', 'Muscle strain, shoulder', 'ICD10_2010'), +('M62.62', 'Muscle strain, upper arm', 'ICD10_2010'), +('M62.63', 'Muscle strain, forearm', 'ICD10_2010'), +('M62.64', 'Muscle strain, hand', 'ICD10_2010'), +('M62.65', 'Muscle strain, pelvic region and thigh', 'ICD10_2010'), +('M62.66', 'Muscle strain, lower leg', 'ICD10_2010'), +('M62.67', 'Muscle strain, ankle and foot', 'ICD10_2010'), +('M62.68', 'Muscle strain, other', 'ICD10_2010'), +('M62.69', 'Muscle strain, site unspecified', 'ICD10_2010'), +('M62.8', 'Other specified disorders of muscle', 'ICD10_2010'), +('M62.80', 'Other specified disorders of muscle, multiple sites', 'ICD10_2010'), +('M62.81', 'Other specified disorders of muscle, shoulder', 'ICD10_2010'), +('M62.82', 'Other specified disorders of muscle, upper arm', 'ICD10_2010'), +('M62.83', 'Other specified disorders of muscle, forearm', 'ICD10_2010'), +('M62.84', 'Other specified disorders of muscle, hand', 'ICD10_2010'), +('M62.85', 'Other specified disorders of muscle, pelvic region and thigh', 'ICD10_2010'), +('M62.86', 'Other specified disorders of muscle, lower leg', 'ICD10_2010'), +('M62.87', 'Other specified disorders of muscle, ankle and foot', 'ICD10_2010'), +('M62.88', 'Other specified disorders of muscle, other', 'ICD10_2010'), +('M62.89', 'Other specified disorders of muscle, site unspecified', 'ICD10_2010'), +('M62.9', 'Disorder of muscle, unspecified', 'ICD10_2010'), +('M62.90', 'Disorder of muscle, unspecified, multiple sites', 'ICD10_2010'), +('M62.91', 'Disorder of muscle, unspecified, shoulder', 'ICD10_2010'), +('M62.92', 'Disorder of muscle, unspecified, upper arm', 'ICD10_2010'), +('M62.93', 'Disorder of muscle, unspecified, forearm', 'ICD10_2010'), +('M62.94', 'Disorder of muscle, unspecified, hand', 'ICD10_2010'), +('M62.95', 'Disorder of muscle, unspecified, pelvic region and thigh', 'ICD10_2010'), +('M62.96', 'Disorder of muscle, unspecified, lower leg', 'ICD10_2010'), +('M62.97', 'Disorder of muscle, unspecified, ankle and foot', 'ICD10_2010'), +('M62.98', 'Disorder of muscle, unspecified, other', 'ICD10_2010'), +('M62.99', 'Disorder of muscle, unspecified, site unspecified', 'ICD10_2010'), +('M63', 'Disorders of muscle in diseases classified elsewhere', 'ICD10_2010'), +('M63.0', 'Myositis in bacterial diseases classified elsewhere', 'ICD10_2010'), +('M63.1', 'Myositis in protozoal and parasitic infections classified elsewhere', 'ICD10_2010'), +('M63.2', 'Myositis in other infectious diseases classified elsewhere', 'ICD10_2010'), +('M63.3', 'Myositis in sarcoidosis', 'ICD10_2010'), +('M63.8', 'Other disorders of muscle in diseases classified elsewhere', 'ICD10_2010'), +('M65', 'Synovitis and tenosynovitis', 'ICD10_2010'), +('M65.0', 'Abscess of tendon sheath', 'ICD10_2010'), +('M65.00', 'Abscess of tendon sheath, multiple sites', 'ICD10_2010'), +('M65.01', 'Abscess of tendon sheath, shoulder region', 'ICD10_2010'), +('M65.02', 'Abscess of tendon sheath, upper arm', 'ICD10_2010'), +('M65.03', 'Abscess of tendon sheath, forearm', 'ICD10_2010'), +('M65.04', 'Abscess of tendon sheath, hand', 'ICD10_2010'), +('M65.05', 'Abscess of tendon sheath, pelvic and thigh', 'ICD10_2010'), +('M65.06', 'Abscess of tendon sheath, lower leg', 'ICD10_2010'), +('M65.07', 'Abscess of tendon sheath, ankle and foot', 'ICD10_2010'), +('M65.08', 'Abscess of tendon sheath, other', 'ICD10_2010'), +('M65.09', 'Abscess of tendon sheath, site unspecified', 'ICD10_2010'), +('M65.1', 'Other infective (teno)synovitis', 'ICD10_2010'), +('M65.10', 'Other infective (teno)synovitis, multiple sites', 'ICD10_2010'), +('M65.11', 'Other infective (teno)synovitis, shoulder region', 'ICD10_2010'), +('M65.12', 'Other infective (teno)synovitis, upper arm', 'ICD10_2010'), +('M65.13', 'Other infective (teno)synovitis, forearm', 'ICD10_2010'), +('M65.14', 'Other infective (teno)synovitis, hand', 'ICD10_2010'), +('M65.15', 'Other infective (teno)synovitis, pelvic and thigh', 'ICD10_2010'), +('M65.16', 'Other infective (teno)synovitis, lower leg', 'ICD10_2010'), +('M65.17', 'Other infective (teno)synovitis, ankle and foot', 'ICD10_2010'), +('M65.18', 'Other infective (teno)synovitis, other', 'ICD10_2010'), +('M65.19', 'Other infective (teno)synovitis, site unspecified', 'ICD10_2010'), +('M65.2', 'Calcific tendinitis', 'ICD10_2010'), +('M65.20', 'Calcific tendinitis, multiple sites', 'ICD10_2010'), +('M65.21', 'Calcific tendinitis, shoulder region', 'ICD10_2010'), +('M65.22', 'Calcific tendinitis, upper arm', 'ICD10_2010'), +('M65.23', 'Calcific tendinitis, forearm', 'ICD10_2010'), +('M65.24', 'Calcific tendinitis, hand', 'ICD10_2010'), +('M65.25', 'Calcific tendinitis, pelvic region and thigh', 'ICD10_2010'), +('M65.26', 'Calcific tendinitis, lower leg', 'ICD10_2010'), +('M65.27', 'Calcific tendinitis, ankle and foot', 'ICD10_2010'), +('M65.28', 'Calcific tendinitis, other', 'ICD10_2010'), +('M65.29', 'Calcific tendinitis, site unspecified', 'ICD10_2010'), +('M65.3', 'Trigger finger', 'ICD10_2010'), +('M65.30', 'Trigger finger, multiple sites', 'ICD10_2010'), +('M65.31', 'Trigger finger, shoulder region', 'ICD10_2010'), +('M65.32', 'Trigger finger, upper arm', 'ICD10_2010'), +('M65.33', 'Trigger finger, forearm', 'ICD10_2010'), +('M65.34', 'Trigger finger, hand', 'ICD10_2010'), +('M65.35', 'Trigger finger, pelvic region and thigh', 'ICD10_2010'), +('M65.36', 'Trigger finger, lower leg', 'ICD10_2010'), +('M65.37', 'Trigger finger, ankle and foot', 'ICD10_2010'), +('M65.38', 'Trigger finger, other', 'ICD10_2010'), +('M65.39', 'Trigger finger, site unspecified', 'ICD10_2010'), +('M65.4', 'Radial styloid tenosynovitis [de quervain]', 'ICD10_2010'), +('M65.40', 'Radial styloid tenosynovitis [de quervain], multiple sites', 'ICD10_2010'), +('M65.41', 'Radial styloid tenosynovitis [de quervain], shoulder region', 'ICD10_2010'), +('M65.42', 'Radial styloid tenosynovitis [de quervain], upper arm', 'ICD10_2010'), +('M65.43', 'Radial styloid tenosynovitis [de quervain], forearm', 'ICD10_2010'), +('M65.44', 'Radial styloid tenosynovitis [de quervain], hand', 'ICD10_2010'), +('M65.45', 'Radial styloid tenosynovitis [de quervain], pelvic region and thigh', 'ICD10_2010'), +('M65.46', 'Radial styloid tenosynovitis [de quervain], lower leg', 'ICD10_2010'), +('M65.47', 'Radial styloid tenosynovitis [de quervain], ankle and foot', 'ICD10_2010'), +('M65.48', 'Radial styloid tenosynovitis [de quervain], other', 'ICD10_2010'), +('M65.49', 'Radial styloid tenosynovitis [de quervain], site unspecified', 'ICD10_2010'), +('M65.8', 'Other synovitis and tenosynovitis', 'ICD10_2010'), +('M65.80', 'Other synovitis and tenosynovitis, multiple sites', 'ICD10_2010'), +('M65.81', 'Other synovitis and tenosynovitis, shoulder region', 'ICD10_2010'), +('M65.82', 'Other synovitis and tenosynovitis, upper arm', 'ICD10_2010'), +('M65.83', 'Other synovitis and tenosynovitis, forearm', 'ICD10_2010'), +('M65.84', 'Other synovitis and tenosynovitis, hand', 'ICD10_2010'), +('M65.85', 'Other synovitis and tenosynovitis, pelvic region and thigh', 'ICD10_2010'), +('M65.86', 'Other synovitis and tenosynovitis, lower leg', 'ICD10_2010'), +('M65.87', 'Other synovitis and tenosynovitis, ankle and foot', 'ICD10_2010'), +('M65.88', 'Other synovitis and tenosynovitis, other', 'ICD10_2010'), +('M65.89', 'Other synovitis and tenosynovitis, site unspecified', 'ICD10_2010'), +('M65.9', 'Synovitis and tenosynovitis, unspecified', 'ICD10_2010'), +('M65.90', 'Synovitis and tenosynovitis, unspecified, multiple sites', 'ICD10_2010'), +('M65.91', 'Synovitis and tenosynovitis, unspecified, shoulder region', 'ICD10_2010'), +('M65.92', 'Synovitis and tenosynovitis, unspecified, upper arm', 'ICD10_2010'), +('M65.93', 'Synovitis and tenosynovitis, unspecified, forearm', 'ICD10_2010'), +('M65.94', 'Synovitis and tenosynovitis, unspecified, hand', 'ICD10_2010'), +('M65.95', 'Synovitis and tenosynovitis, unspecified, pelvic region and thigh', 'ICD10_2010'), +('M65.96', 'Synovitis and tenosynovitis, unspecified, lower leg', 'ICD10_2010'), +('M65.97', 'Synovitis and tenosynovitis, unspecified, ankle and foot', 'ICD10_2010'), +('M65.98', 'Synovitis and tenosynovitis, unspecified, other', 'ICD10_2010'), +('M65.99', 'Synovitis and tenosynovitis, unspecified, site unspecified', 'ICD10_2010'), +('M66', 'Spontaneous rupture of synovium and tendon', 'ICD10_2010'), +('M66.0', 'Rupture of popliteal cyst', 'ICD10_2010'), +('M66.00', 'Rupture of popliteal cyst, multiple sites', 'ICD10_2010'), +('M66.01', 'Rupture of popliteal cyst, shoulder region', 'ICD10_2010'), +('M66.02', 'Rupture of popliteal cyst, upper arm', 'ICD10_2010'), +('M66.03', 'Rupture of popliteal cyst, forearm', 'ICD10_2010'), +('M66.04', 'Rupture of popliteal cyst, hand', 'ICD10_2010'), +('M66.05', 'Rupture of popliteal cyst, pelvic region and thigh', 'ICD10_2010'), +('M66.06', 'Rupture of popliteal cyst, lower leg', 'ICD10_2010'), +('M66.07', 'Rupture of popliteal cyst, ankle and foot', 'ICD10_2010'), +('M66.08', 'Rupture of popliteal cyst, other', 'ICD10_2010'), +('M66.09', 'Rupture of popliteal cyst, site unspecified', 'ICD10_2010'), +('M66.1', 'Rupture of synovium', 'ICD10_2010'), +('M66.10', 'Rupture of synovium, multiple sites', 'ICD10_2010'), +('M66.11', 'Rupture of synovium, shoulder region', 'ICD10_2010'), +('M66.12', 'Rupture of synovium, upper arm', 'ICD10_2010'), +('M66.13', 'Rupture of synovium, forearm', 'ICD10_2010'), +('M66.14', 'Rupture of synovium, hand', 'ICD10_2010'), +('M66.15', 'Rupture of synovium, pelvic region and thigh', 'ICD10_2010'), +('M66.16', 'Rupture of synovium, lower leg', 'ICD10_2010'), +('M66.17', 'Rupture of synovium, ankle and foot', 'ICD10_2010'), +('M66.18', 'Rupture of synovium, other', 'ICD10_2010'), +('M66.19', 'Rupture of synovium, site unspecified', 'ICD10_2010'), +('M66.2', 'Spontaneous rupture of extensor tendons', 'ICD10_2010'), +('M66.20', 'Spontaneous rupture of extensor tendons, multiple sites', 'ICD10_2010'), +('M66.21', 'Spontaneous rupture of extensor tendons, shoulder region', 'ICD10_2010'), +('M66.22', 'Spontaneous rupture of extensor tendons, upper arm', 'ICD10_2010'), +('M66.23', 'Spontaneous rupture of extensor tendons, forearm', 'ICD10_2010'), +('M66.24', 'Spontaneous rupture of extensor tendons, hand', 'ICD10_2010'), +('M66.25', 'Spontaneous rupture of extensor tendons, pelvic region and thigh', 'ICD10_2010'), +('M66.26', 'Spontaneous rupture of extensor tendons, lower leg', 'ICD10_2010'), +('M66.27', 'Spontaneous rupture of extensor tendons, ankle and foot', 'ICD10_2010'), +('M66.28', 'Spontaneous rupture of extensor tendons, other', 'ICD10_2010'), +('M66.29', 'Spontaneous rupture of extensor tendons, site unspecified', 'ICD10_2010'), +('M66.3', 'Spontaneous rupture of flexor tendons', 'ICD10_2010'), +('M66.30', 'Spontaneous rupture of flexor tendons, multiple sites', 'ICD10_2010'), +('M66.31', 'Spontaneous rupture of flexor tendons, shoulder region', 'ICD10_2010'), +('M66.32', 'Spontaneous rupture of flexor tendons, upper arm', 'ICD10_2010'), +('M66.33', 'Spontaneous rupture of flexor tendons, forearm', 'ICD10_2010'), +('M66.34', 'Spontaneous rupture of flexor tendons, hand', 'ICD10_2010'), +('M66.35', 'Spontaneous rupture of flexor tendons, pelvic region and thigh', 'ICD10_2010'), +('M66.36', 'Spontaneous rupture of flexor tendons, lower leg', 'ICD10_2010'), +('M66.37', 'Spontaneous rupture of flexor tendons, ankle and foot', 'ICD10_2010'), +('M66.38', 'Spontaneous rupture of flexor tendons, other', 'ICD10_2010'), +('M66.39', 'Spontaneous rupture of flexor tendons, site unspecified', 'ICD10_2010'), +('M66.4', 'Spontaneous rupture of other tendons', 'ICD10_2010'), +('M66.40', 'Spontaneous rupture of other tendons, multiple sites', 'ICD10_2010'), +('M66.41', 'Spontaneous rupture of other tendons, shoulder region', 'ICD10_2010'), +('M66.42', 'Spontaneous rupture of other tendons, upper arm', 'ICD10_2010'), +('M66.43', 'Spontaneous rupture of other tendons, forearm', 'ICD10_2010'), +('M66.44', 'Spontaneous rupture of other tendons, hand', 'ICD10_2010'), +('M66.45', 'Spontaneous rupture of other tendons, pelvic region and thigh', 'ICD10_2010'), +('M66.46', 'Spontaneous rupture of other tendons, lower leg', 'ICD10_2010'), +('M66.47', 'Spontaneous rupture of other tendons, ankle and foot', 'ICD10_2010'), +('M66.48', 'Spontaneous rupture of other tendons, other', 'ICD10_2010'), +('M66.49', 'Spontaneous rupture of other tendons, site unspecified', 'ICD10_2010'), +('M66.5', 'Spontaneous rupture of unspecified tendon', 'ICD10_2010'), +('M66.50', 'Spontaneous rupture of unspecified tendon, multiple sites', 'ICD10_2010'), +('M66.51', 'Spontaneous rupture of unspecified tendon, shoulder region', 'ICD10_2010'), +('M66.52', 'Spontaneous rupture of unspecified tendon, upper arm', 'ICD10_2010'), +('M66.53', 'Spontaneous rupture of unspecified tendon, forearm', 'ICD10_2010'), +('M66.54', 'Spontaneous rupture of unspecified tendon, hand', 'ICD10_2010'), +('M66.55', 'Spontaneous rupture of unspecified tendon, pelvic region and thigh', 'ICD10_2010'), +('M66.56', 'Spontaneous rupture of unspecified tendon, lower leg', 'ICD10_2010'), +('M66.57', 'Spontaneous rupture of unspecified tendon, ankle and foot', 'ICD10_2010'), +('M66.58', 'Spontaneous rupture of unspecified tendon, other', 'ICD10_2010'), +('M66.59', 'Spontaneous rupture of unspecified tendon, site unspecified', 'ICD10_2010'), +('M67', 'Other disorders of synovium and tendon', 'ICD10_2010'), +('M67.0', 'Short achilles tendon (acquired)', 'ICD10_2010'), +('M67.1', 'Other contracture of tendon (sheath)', 'ICD10_2010'), +('M67.2', 'Synovial hypertrophy, not elsewhere classified', 'ICD10_2010'), +('M67.3', 'Transient synovitis', 'ICD10_2010'), +('M67.4', 'Ganglion', 'ICD10_2010'), +('M67.8', 'Other specified disorders of synovium and tendon', 'ICD10_2010'), +('M67.9', 'Disorder of synovium and tendon, unspecified', 'ICD10_2010'), +('M68', 'Disorders of synovium and tendon in diseases classified elsewhere', 'ICD10_2010'), +('M68.0', 'Synovitis and tenosynovitis in bacterial diseases classified elsewhere', 'ICD10_2010'), +('M68.8', 'Other disorders of synovium and tendon in diseases classified elsewhere', 'ICD10_2010'), +('M70', 'Soft tissue disorders related to use, overuse and pressure', 'ICD10_2010'), +('M70.0', 'Chronic crepitant synovitis of hand and wrist', 'ICD10_2010'), +('M70.00', 'Chronic crepitant synovitis of hand and wrist, multiple sites', 'ICD10_2010'), +('M70.01', 'Chronic crepitant synovitis of hand and wrist, shoulder region', 'ICD10_2010'), +('M70.02', 'Chronic crepitant synovitis of hand and wrist, upper arm', 'ICD10_2010'), +('M70.03', 'Chronic crepitant synovitis of hand and wrist, forearm', 'ICD10_2010'), +('M70.04', 'Chronic crepitant synovitis of hand and wrist, hand', 'ICD10_2010'), +('M70.05', 'Chronic crepitant synovitis of hand and wrist, pelvic region and thigh', 'ICD10_2010'), +('M70.06', 'Chronic crepitant synovitis of hand and wrist, lower leg', 'ICD10_2010'), +('M70.07', 'Chronic crepitant synovitis of hand and wrist, ankle and foot', 'ICD10_2010'), +('M70.08', 'Chronic crepitant synovitis of hand and wrist, other', 'ICD10_2010'), +('M70.09', 'Chronic crepitant synovitis of hand and wrist, site unspecified', 'ICD10_2010'), +('M70.1', 'Bursitis of hand', 'ICD10_2010'), +('M70.10', 'Bursitis of hand, multiple sites', 'ICD10_2010'), +('M70.11', 'Bursitis of hand, shoulder region', 'ICD10_2010'), +('M70.12', 'Bursitis of hand, upper arm', 'ICD10_2010'), +('M70.13', 'Bursitis of hand, forearm', 'ICD10_2010'), +('M70.14', 'Bursitis of hand, hand', 'ICD10_2010'), +('M70.15', 'Bursitis of hand, pelvic region and thigh', 'ICD10_2010'), +('M70.16', 'Bursitis of hand, lower leg', 'ICD10_2010'), +('M70.17', 'Bursitis of hand, ankle and foot', 'ICD10_2010'), +('M70.18', 'Bursitis of hand, other', 'ICD10_2010'), +('M70.19', 'Bursitis of hand, site unspecified', 'ICD10_2010'), +('M70.2', 'Olecranon bursitis', 'ICD10_2010'), +('M70.20', 'Olecranon bursitis, multiple sites', 'ICD10_2010'), +('M70.21', 'Olecranon bursitis, shoulder region', 'ICD10_2010'), +('M70.22', 'Olecranon bursitis, upper arm', 'ICD10_2010'), +('M70.23', 'Olecranon bursitis, forearm', 'ICD10_2010'), +('M70.24', 'Olecranon bursitis, hand', 'ICD10_2010'), +('M70.25', 'Olecranon bursitis, pelvic region and thigh', 'ICD10_2010'), +('M70.26', 'Olecranon bursitis, lower leg', 'ICD10_2010'), +('M70.27', 'Olecranon bursitis, ankle and foot', 'ICD10_2010'), +('M70.28', 'Olecranon bursitis, other', 'ICD10_2010'), +('M70.29', 'Olecranon bursitis, site unspecified', 'ICD10_2010'), +('M70.3', 'Other bursitis of elbow', 'ICD10_2010'), +('M70.30', 'Other bursitis of elbow, multiple sites', 'ICD10_2010'), +('M70.31', 'Other bursitis of elbow, shoulder region', 'ICD10_2010'), +('M70.32', 'Other bursitis of elbow, upper arm', 'ICD10_2010'), +('M70.33', 'Other bursitis of elbow, forearm', 'ICD10_2010'), +('M70.34', 'Other bursitis of elbow, hand', 'ICD10_2010'), +('M70.35', 'Other bursitis of elbow, pelvic region and thigh', 'ICD10_2010'), +('M70.36', 'Other bursitis of elbow, lower leg', 'ICD10_2010'), +('M70.37', 'Other bursitis of elbow, ankle and foot', 'ICD10_2010'), +('M70.38', 'Other bursitis of elbow, other', 'ICD10_2010'), +('M70.39', 'Other bursitis of elbow, site unspecified', 'ICD10_2010'), +('M70.4', 'Prepatellar bursitis', 'ICD10_2010'), +('M70.40', 'Prepatellar bursitis, multiple sites', 'ICD10_2010'), +('M70.41', 'Prepatellar bursitis, shoulder region', 'ICD10_2010'), +('M70.42', 'Prepatellar bursitis, upper arm', 'ICD10_2010'), +('M70.43', 'Prepatellar bursitis, forearm', 'ICD10_2010'), +('M70.44', 'Prepatellar bursitis, hand', 'ICD10_2010'), +('M70.45', 'Prepatellar bursitis, pelvic region and thigh', 'ICD10_2010'), +('M70.46', 'Prepatellar bursitis, lower leg', 'ICD10_2010'), +('M70.47', 'Prepatellar bursitis, ankle and foot', 'ICD10_2010'), +('M70.48', 'Prepatellar bursitis, other', 'ICD10_2010'), +('M70.49', 'Prepatellar bursitis, site unspecified', 'ICD10_2010'), +('M70.5', 'Other bursitis of knee', 'ICD10_2010'), +('M70.50', 'Other bursitis of knee, multiple sites', 'ICD10_2010'), +('M70.51', 'Other bursitis of knee, shoulder region', 'ICD10_2010'), +('M70.52', 'Other bursitis of knee, upper arm', 'ICD10_2010'), +('M70.53', 'Other bursitis of knee, forearm', 'ICD10_2010'), +('M70.54', 'Other bursitis of knee, hand', 'ICD10_2010'), +('M70.55', 'Other bursitis of knee, pelvic region and thigh', 'ICD10_2010'), +('M70.56', 'Other bursitis of knee, lower leg', 'ICD10_2010'), +('M70.57', 'Other bursitis of knee, ankle and foot', 'ICD10_2010'), +('M70.58', 'Other bursitis of knee, other', 'ICD10_2010'), +('M70.59', 'Other bursitis of knee, site unspecified', 'ICD10_2010'), +('M70.6', 'Trochanteric bursitis', 'ICD10_2010'), +('M70.60', 'Trochanteric bursitis, multiple sites', 'ICD10_2010'), +('M70.61', 'Trochanteric bursitis, shoulder region', 'ICD10_2010'), +('M70.62', 'Trochanteric bursitis, upper arm', 'ICD10_2010'), +('M70.63', 'Trochanteric bursitis, forearm', 'ICD10_2010'), +('M70.64', 'Trochanteric bursitis, hand', 'ICD10_2010'), +('M70.65', 'Trochanteric bursitis, pelvic region and thigh', 'ICD10_2010'), +('M70.66', 'Trochanteric bursitis, lower leg', 'ICD10_2010'), +('M70.67', 'Trochanteric bursitis, ankle and foot', 'ICD10_2010'), +('M70.68', 'Trochanteric bursitis, other', 'ICD10_2010'), +('M70.69', 'Trochanteric bursitis, site unspecified', 'ICD10_2010'), +('M70.7', 'Other bursitis of hip', 'ICD10_2010'), +('M70.70', 'Other bursitis of hip, multiple sites', 'ICD10_2010'), +('M70.71', 'Other bursitis of hip, shoulder region', 'ICD10_2010'), +('M70.72', 'Other bursitis of hip, upper arm', 'ICD10_2010'), +('M70.73', 'Other bursitis of hip, forearm', 'ICD10_2010'), +('M70.74', 'Other bursitis of hip, hand', 'ICD10_2010'), +('M70.75', 'Other bursitis of hip, pelvic region and thigh', 'ICD10_2010'), +('M70.76', 'Other bursitis of hip, lower leg', 'ICD10_2010'), +('M70.77', 'Other bursitis of hip, ankle and foot', 'ICD10_2010'), +('M70.78', 'Other bursitis of hip, other', 'ICD10_2010'), +('M70.79', 'Other bursitis of hip, site unspecified', 'ICD10_2010'), +('M70.8', 'Other soft tissue disorder related to use overuse and pressure', 'ICD10_2010'), +('M70.80', 'Other soft tissue disorder related to use overuse and pressure, multiple sites', 'ICD10_2010'), +('M70.81', 'Other soft tissue disorder related to use overuse and pressure, shoulder region', 'ICD10_2010'), +('M70.82', 'Other soft tissue disorder related to use overuse and pressure, upper arm', 'ICD10_2010'), +('M70.83', 'Other soft tissue disorder related to use overuse and pressure, forearm', 'ICD10_2010'), +('M70.84', 'Other soft tissue disorder related to use overuse and pressure, hand', 'ICD10_2010'), +('M70.85', 'Other soft tissue disorder related to use overuse and pressure, pelvic region and thigh', 'ICD10_2010'), +('M70.86', 'Other soft tissue disorder related to use overuse and pressure, lower leg', 'ICD10_2010'), +('M70.87', 'Other soft tissue disorder related to use overuse and pressure, ankle and foot', 'ICD10_2010'), +('M70.88', 'Other soft tissue disorder related to use overuse and pressure, other', 'ICD10_2010'), +('M70.89', 'Other soft tissue disorder related to use overuse and pressure, site unspecified', 'ICD10_2010'), +('M70.9', 'Unspecified soft tissue disorder related to use overuse and pressure', 'ICD10_2010'), +('M70.90', 'Unspecified soft tissue disorder related to use overuse and pressure, multiple sites', 'ICD10_2010'), +('M70.91', 'Unspecified soft tissue disorder related to use overuse and pressure, shoulder region', 'ICD10_2010'), +('M70.92', 'Unspecified soft tissue disorder related to use overuse and pressure, upper arm', 'ICD10_2010'), +('M70.93', 'Unspecified soft tissue disorder related to use overuse and pressure, forearm', 'ICD10_2010'), +('M70.94', 'Unspecified soft tissue disorder related to use overuse and pressure, hand', 'ICD10_2010'), +('M70.95', 'Unspecified soft tissue disorder related to use overuse and pressure, pelvic region and thigh', 'ICD10_2010'), +('M70.96', 'Unspecified soft tissue disorder related to use overuse and pressure, lower leg', 'ICD10_2010'), +('M70.97', 'Unspecified soft tissue disorder related to use overuse and pressure, ankle and foot', 'ICD10_2010'), +('M70.98', 'Unspecified soft tissue disorder related to use overuse and pressure, other', 'ICD10_2010'), +('M70.99', 'Unspecified soft tissue disorder related to use overuse and pressure, site unspecified', 'ICD10_2010'), +('M71', 'Other bursopathies', 'ICD10_2010'), +('M71.0', 'Abscess of bursa', 'ICD10_2010'), +('M71.00', 'Abscess of bursa, multiple sites', 'ICD10_2010'), +('M71.01', 'Abscess of bursa, shoulder region', 'ICD10_2010'), +('M71.02', 'Abscess of bursa, upper arm', 'ICD10_2010'), +('M71.03', 'Abscess of bursa, forearm', 'ICD10_2010'), +('M71.04', 'Abscess of bursa, hand', 'ICD10_2010'), +('M71.05', 'Abscess of bursa, pelvic region and thigh', 'ICD10_2010'), +('M71.06', 'Abscess of bursa, lower leg', 'ICD10_2010'), +('M71.07', 'Abscess of bursa, ankle and foot', 'ICD10_2010'), +('M71.08', 'Abscess of bursa, other', 'ICD10_2010'), +('M71.09', 'Abscess of bursa, site unspecified', 'ICD10_2010'), +('M71.1', 'Other infective bursitis', 'ICD10_2010'), +('M71.10', 'Other infective bursitis, multiple sites', 'ICD10_2010'), +('M71.11', 'Other infective bursitis, shoulder region', 'ICD10_2010'), +('M71.12', 'Other infective bursitis, upper arm', 'ICD10_2010'), +('M71.13', 'Other infective bursitis, forearm', 'ICD10_2010'), +('M71.14', 'Other infective bursitis, hand', 'ICD10_2010'), +('M71.15', 'Other infective bursitis, pelvic region and thigh', 'ICD10_2010'), +('M71.16', 'Other infective bursitis, lower leg', 'ICD10_2010'), +('M71.17', 'Other infective bursitis, ankle and foot', 'ICD10_2010'), +('M71.18', 'Other infective bursitis, other', 'ICD10_2010'), +('M71.19', 'Other infective bursitis, site unspecified', 'ICD10_2010'), +('M71.2', 'Synovial cyst of popliteal space [baker]', 'ICD10_2010'), +('M71.20', 'Synovial cyst of popliteal space [Baker], multiple sites', 'ICD10_2010'), +('M71.21', 'Synovial cyst of popliteal space [Baker], shoulder region', 'ICD10_2010'), +('M71.22', 'Synovial cyst of popliteal space [Baker], upper arm', 'ICD10_2010'), +('M71.23', 'Synovial cyst of popliteal space [Baker], forearm', 'ICD10_2010'), +('M71.24', 'Synovial cyst of popliteal space [Baker], hand', 'ICD10_2010'), +('M71.25', 'Synovial cyst of popliteal space [Baker], pelvic region and thigh', 'ICD10_2010'), +('M71.26', 'Synovial cyst of popliteal space [Baker], lower leg', 'ICD10_2010'), +('M71.27', 'Synovial cyst of popliteal space [Baker], ankle and foot', 'ICD10_2010'), +('M71.28', 'Synovial cyst of popliteal space [Baker], other', 'ICD10_2010'), +('M71.29', 'Synovial cyst of popliteal space [Baker], site unspecified', 'ICD10_2010'), +('M71.3', 'Other bursal cyst', 'ICD10_2010'), +('M71.30', 'Other bursal cyst, multiple sites', 'ICD10_2010'), +('M71.31', 'Other bursal cyst, shoulder region', 'ICD10_2010'), +('M71.32', 'Other bursal cyst, upper arm', 'ICD10_2010'), +('M71.33', 'Other bursal cyst, forearm', 'ICD10_2010'), +('M71.34', 'Other bursal cyst, hand', 'ICD10_2010'), +('M71.35', 'Other bursal cyst, pelvic region and thigh', 'ICD10_2010'), +('M71.36', 'Other bursal cyst, lower leg', 'ICD10_2010'), +('M71.37', 'Other bursal cyst, ankle and foot', 'ICD10_2010'), +('M71.38', 'Other bursal cyst, other', 'ICD10_2010'), +('M71.39', 'Other bursal cyst, site unspecified', 'ICD10_2010'), +('M71.4', 'Calcium deposit in bursa', 'ICD10_2010'), +('M71.40', 'Calcium deposit in bursa, multiple sites', 'ICD10_2010'), +('M71.42', 'Calcium deposit in bursa, upper arm', 'ICD10_2010'), +('M71.43', 'Calcium deposit in bursa, forearm', 'ICD10_2010'), +('M71.44', 'Calcium deposit in bursa, hand', 'ICD10_2010'), +('M71.45', 'Calcium deposit in bursa, pelvic region and thigh', 'ICD10_2010'), +('M71.46', 'Calcium deposit in bursa, lower leg', 'ICD10_2010'), +('M71.47', 'Calcium deposit in bursa, ankle and foot', 'ICD10_2010'), +('M71.48', 'Calcium deposit in bursa, other', 'ICD10_2010'), +('M71.49', 'Calcium deposit in bursa, site unspecified', 'ICD10_2010'), +('M71.5', 'Other bursitis, not elsewhere classified', 'ICD10_2010'), +('M71.50', 'Other bursitis, not elsewhere classified, multiple sites', 'ICD10_2010'), +('M71.52', 'Other bursitis, not elsewhere classified, upper arm', 'ICD10_2010'), +('M71.53', 'Other bursitis, not elsewhere classified, forearm', 'ICD10_2010'), +('M71.54', 'Other bursitis, not elsewhere classified, hand', 'ICD10_2010'), +('M71.55', 'Other bursitis, not elsewhere classified, pelvic region and thigh', 'ICD10_2010'), +('M71.56', 'Other bursitis, not elsewhere classified, lower leg', 'ICD10_2010'), +('M71.57', 'Other bursitis, not elsewhere classified, ankle and foot', 'ICD10_2010'), +('M71.58', 'Other bursitis, not elsewhere classified, other', 'ICD10_2010'), +('M71.59', 'Other bursitis, not elsewhere classified, site unspecified', 'ICD10_2010'), +('M71.8', 'Other specified bursopathies', 'ICD10_2010'), +('M71.80', 'Other specified bursopathies, multiple sites', 'ICD10_2010'), +('M71.81', 'Other specified bursopathies, shoulder region', 'ICD10_2010'), +('M71.82', 'Other specified bursopathies, upper arm', 'ICD10_2010'), +('M71.83', 'Other specified bursopathies, forearm', 'ICD10_2010'), +('M71.84', 'Other specified bursopathies, hand', 'ICD10_2010'), +('M71.85', 'Other specified bursopathies, pelvic region and thigh', 'ICD10_2010'), +('M71.86', 'Other specified bursopathies, lower leg', 'ICD10_2010'), +('M71.87', 'Other specified bursopathies, ankle and foot', 'ICD10_2010'), +('M71.88', 'Other specified bursopathies, other', 'ICD10_2010'), +('M71.89', 'Other specified bursopathies, site unspecified', 'ICD10_2010'), +('M71.9', 'Bursopathy, unspecified', 'ICD10_2010'), +('M71.90', 'Bursopathy, unspecified, multiple sites', 'ICD10_2010'), +('M71.91', 'Bursopathy, unspecified, shoulder region', 'ICD10_2010'), +('M71.92', 'Bursopathy, unspecified, upper arm', 'ICD10_2010'), +('M71.93', 'Bursopathy, unspecified, forearm', 'ICD10_2010'), +('M71.94', 'Bursopathy, unspecified, hand', 'ICD10_2010'), +('M71.95', 'Bursopathy, unspecified, pelvic region and thigh', 'ICD10_2010'), +('M71.96', 'Bursopathy, unspecified, lower leg', 'ICD10_2010'), +('M71.97', 'Bursopathy, unspecified, ankle and foot', 'ICD10_2010'), +('M71.98', 'Bursopathy, unspecified, other', 'ICD10_2010'), +('M71.99', 'Bursopathy, unspecified, site unspecified', 'ICD10_2010'), +('M72', 'Fibroblastic disorders', 'ICD10_2010'), +('M72.0', 'Palmar fascial fibromatosis [dupuytren]', 'ICD10_2010'), +('M72.00', 'Palmar fascial fibromatosis [Dupuytren], multiple sites', 'ICD10_2010'), +('M72.01', 'Palmar fascial fibromatosis [Dupuytren], shoulder region', 'ICD10_2010'), +('M72.02', 'Palmar fascial fibromatosis [Dupuytren], upper arm', 'ICD10_2010'), +('M72.03', 'Palmar fascial fibromatosis [Dupuytren], forearm', 'ICD10_2010'), +('M72.04', 'Palmar fascial fibromatosis [Dupuytren], hand', 'ICD10_2010'), +('M72.05', 'Palmar fascial fibromatosis [Dupuytren], pelvic region and thigh', 'ICD10_2010'), +('M72.06', 'Palmar fascial fibromatosis [Dupuytren], lower leg', 'ICD10_2010'), +('M72.07', 'Palmar fascial fibromatosis [Dupuytren], ankle and foot', 'ICD10_2010'), +('M72.08', 'Palmar fascial fibromatosis [Dupuytren], other', 'ICD10_2010'), +('M72.09', 'Palmar fascial fibromatosis [Dupuytren], site unspecified', 'ICD10_2010'), +('M72.1', 'Knuckle pads', 'ICD10_2010'), +('M72.10', 'Knuckle pads, multiple sites', 'ICD10_2010'), +('M72.11', 'Knuckle pads, shoulder region', 'ICD10_2010'), +('M72.12', 'Knuckle pads, upper arm', 'ICD10_2010'), +('M72.13', 'Knuckle pads, forearm', 'ICD10_2010'), +('M72.14', 'Knuckle pads, hand', 'ICD10_2010'), +('M72.15', 'Knuckle pads, pelvic region and thigh', 'ICD10_2010'), +('M72.16', 'Knuckle pads, lower leg', 'ICD10_2010'), +('M72.17', 'Knuckle pads, ankle and foot', 'ICD10_2010'), +('M72.18', 'Knuckle pads, other', 'ICD10_2010'), +('M72.19', 'Knuckle pads, site unspecified', 'ICD10_2010'), +('M72.2', 'Plantar fascial fibromatosis', 'ICD10_2010'), +('M72.20', 'Plantar fascial fibromatosis, multiple sites', 'ICD10_2010'), +('M72.21', 'Plantar fascial fibromatosis, shoulder region', 'ICD10_2010'), +('M72.22', 'Plantar fascial fibromatosis, upper arm', 'ICD10_2010'), +('M72.23', 'Plantar fascial fibromatosis, forearm', 'ICD10_2010'), +('M72.24', 'Plantar fascial fibromatosis, hand', 'ICD10_2010'), +('M72.25', 'Plantar fascial fibromatosis, pelvic region and thigh', 'ICD10_2010'), +('M72.26', 'Plantar fascial fibromatosis, lower leg', 'ICD10_2010'), +('M72.27', 'Plantar fascial fibromatosis, ankle and foot', 'ICD10_2010'), +('M72.28', 'Plantar fascial fibromatosis, other', 'ICD10_2010'), +('M72.29', 'Plantar fascial fibromatosis, site unspecified', 'ICD10_2010'), +('M72.4', 'Pseudosarcomatous fibromatosis', 'ICD10_2010'), +('M72.40', 'Pseudosarcomatous fibromatosis, multiple sites', 'ICD10_2010'); +INSERT INTO `icd10` (`ID_ICD10`, `Diagnosa`, `Versi_ICD10`) VALUES +('M72.41', 'Pseudosarcomatous fibromatosis, shoulder region', 'ICD10_2010'), +('M72.42', 'Pseudosarcomatous fibromatosis, upper arm', 'ICD10_2010'), +('M72.43', 'Pseudosarcomatous fibromatosis, forearm', 'ICD10_2010'), +('M72.44', 'Pseudosarcomatous fibromatosis, hand', 'ICD10_2010'), +('M72.45', 'Pseudosarcomatous fibromatosis, pelvic region and thigh', 'ICD10_2010'), +('M72.46', 'Pseudosarcomatous fibromatosis, lower leg', 'ICD10_2010'), +('M72.47', 'Pseudosarcomatous fibromatosis, ankle and foot', 'ICD10_2010'), +('M72.48', 'Pseudosarcomatous fibromatosis, other', 'ICD10_2010'), +('M72.49', 'Pseudosarcomatous fibromatosis, site unspecified', 'ICD10_2010'), +('M72.5', 'Fasciitis, not elsewhere classified', 'ICD10_2010'), +('M72.50', 'Fasciitis, not elsewhere classified, multiple sites', 'ICD10_2010'), +('M72.51', 'Fasciitis, not elsewhere classified, shoulder region', 'ICD10_2010'), +('M72.52', 'Fasciitis, not elsewhere classified, upper arm', 'ICD10_2010'), +('M72.53', 'Fasciitis, not elsewhere classified, forearm', 'ICD10_2010'), +('M72.54', 'Fasciitis, not elsewhere classified, hand', 'ICD10_2010'), +('M72.55', 'Fasciitis, not elsewhere classified, pelvic region and thigh', 'ICD10_2010'), +('M72.56', 'Fasciitis, not elsewhere classified, lower leg', 'ICD10_2010'), +('M72.57', 'Fasciitis, not elsewhere classified, ankle and foot', 'ICD10_2010'), +('M72.58', 'Fasciitis, not elsewhere classified, other', 'ICD10_2010'), +('M72.59', 'Fasciitis, not elsewhere classified, site unspecified', 'ICD10_2010'), +('M72.6', 'Necrotizing fasciitis', 'ICD10_2010'), +('M72.60', 'Necrotizing fasciitis, multiple sites', 'ICD10_2010'), +('M72.61', 'Necrotizing fasciitis, shoulder region', 'ICD10_2010'), +('M72.62', 'Necrotizing fasciitis, upper arm', 'ICD10_2010'), +('M72.63', 'Necrotizing fasciitis, forearm', 'ICD10_2010'), +('M72.64', 'Necrotizing fasciitis, hand', 'ICD10_2010'), +('M72.65', 'Necrotizing fasciitis, pelvic region and thigh', 'ICD10_2010'), +('M72.66', 'Necrotizing fasciitis, lower leg', 'ICD10_2010'), +('M72.67', 'Necrotizing fasciitis, ankle and foot', 'ICD10_2010'), +('M72.68', 'Necrotizing fasciitis, other', 'ICD10_2010'), +('M72.69', 'Necrotizing fasciitis, site unspecified', 'ICD10_2010'), +('M72.8', 'Other fibroblastic disorders', 'ICD10_2010'), +('M72.80', 'Other fibroblastic disorders, multiple sites', 'ICD10_2010'), +('M72.81', 'Other fibroblastic disorders, shoulder region', 'ICD10_2010'), +('M72.82', 'Other fibroblastic disorders, upper arm', 'ICD10_2010'), +('M72.83', 'Other fibroblastic disorders, forearm', 'ICD10_2010'), +('M72.84', 'Other fibroblastic disorders, hand', 'ICD10_2010'), +('M72.85', 'Other fibroblastic disorders, pelvic region and thigh', 'ICD10_2010'), +('M72.86', 'Other fibroblastic disorders, lower leg', 'ICD10_2010'), +('M72.87', 'Other fibroblastic disorders, ankle and foot', 'ICD10_2010'), +('M72.88', 'Other fibroblastic disorders, other', 'ICD10_2010'), +('M72.89', 'Other fibroblastic disorders, site unspecified', 'ICD10_2010'), +('M72.9', 'Fibroblastic disorder, unspecified', 'ICD10_2010'), +('M72.90', 'Fibroblastic disorder, unspecified, multiple sites', 'ICD10_2010'), +('M72.91', 'Fibroblastic disorder, unspecified, shoulder region', 'ICD10_2010'), +('M72.92', 'Fibroblastic disorder, unspecified, upper arm', 'ICD10_2010'), +('M72.93', 'Fibroblastic disorder, unspecified, forearm', 'ICD10_2010'), +('M72.94', 'Fibroblastic disorder, unspecified, hand', 'ICD10_2010'), +('M72.95', 'Fibroblastic disorder, unspecified, pelvic region and thigh', 'ICD10_2010'), +('M72.96', 'Fibroblastic disorder, unspecified, lower leg', 'ICD10_2010'), +('M72.97', 'Fibroblastic disorder, unspecified, ankle and foot', 'ICD10_2010'), +('M72.98', 'Fibroblastic disorder, unspecified, other', 'ICD10_2010'), +('M72.99', 'Fibroblastic disorder, unspecified, site unspecified', 'ICD10_2010'), +('M73', 'Soft tissue disorders in diseases classified elsewhere', 'ICD10_2010'), +('M73.0', 'Gonococcal bursitis', 'ICD10_2010'), +('M73.00', 'Gonococcal bursitis, multiple sites', 'ICD10_2010'), +('M73.01', 'Gonococcal bursitis, shoulder region', 'ICD10_2010'), +('M73.02', 'Gonococcal bursitis, upper arm', 'ICD10_2010'), +('M73.03', 'Gonococcal bursitis, forearm', 'ICD10_2010'), +('M73.04', 'Gonococcal bursitis, hand', 'ICD10_2010'), +('M73.05', 'Gonococcal bursitis, pelvic region and thigh', 'ICD10_2010'), +('M73.06', 'Gonococcal bursitis, lower leg', 'ICD10_2010'), +('M73.07', 'Gonococcal bursitis, ankle and foot', 'ICD10_2010'), +('M73.08', 'Gonococcal bursitis, other', 'ICD10_2010'), +('M73.09', 'Gonococcal bursitis, site unspecified', 'ICD10_2010'), +('M73.1', 'Syphilitic bursitis', 'ICD10_2010'), +('M73.10', 'Syphilitic bursitis, multiple sites', 'ICD10_2010'), +('M73.11', 'Syphilitic bursitis, shoulder region', 'ICD10_2010'), +('M73.12', 'Syphilitic bursitis, upper arm', 'ICD10_2010'), +('M73.13', 'Syphilitic bursitis, forearm', 'ICD10_2010'), +('M73.14', 'Syphilitic bursitis, hand', 'ICD10_2010'), +('M73.15', 'Syphilitic bursitis, pelvic region and thigh', 'ICD10_2010'), +('M73.16', 'Syphilitic bursitis, lower leg', 'ICD10_2010'), +('M73.17', 'Syphilitic bursitis, ankle and foot', 'ICD10_2010'), +('M73.18', 'Syphilitic bursitis, other', 'ICD10_2010'), +('M73.19', 'Syphilitic bursitis, site unspecified', 'ICD10_2010'), +('M73.8', 'Other soft tissue disorders in diseases classified elsewhere', 'ICD10_2010'), +('M73.80', 'Other soft tissue disorders in diseases classified elsewhere, multiple sites', 'ICD10_2010'), +('M73.81', 'Other soft tissue disorders in diseases classified elsewhere, shoulder region', 'ICD10_2010'), +('M73.82', 'Other soft tissue disorders in diseases classified elsewhere, upper arm', 'ICD10_2010'), +('M73.83', 'Other soft tissue disorders in diseases classified elsewhere, forearm', 'ICD10_2010'), +('M73.84', 'Other soft tissue disorders in diseases classified elsewhere, hand', 'ICD10_2010'), +('M73.85', 'Other soft tissue disorders in diseases classified elsewhere, pelvic region and thigh', 'ICD10_2010'), +('M73.86', 'Other soft tissue disorders in diseases classified elsewhere, lower leg', 'ICD10_2010'), +('M73.87', 'Other soft tissue disorders in diseases classified elsewhere, ankle and foot', 'ICD10_2010'), +('M73.88', 'Other soft tissue disorders in diseases classified elsewhere, other', 'ICD10_2010'), +('M73.89', 'Other soft tissue disorders in diseases classified elsewhere, site unspecified', 'ICD10_2010'), +('M75', 'Shoulder lesions', 'ICD10_2010'), +('M75.0', 'Adhesive capsulitis of shoulder', 'ICD10_2010'), +('M75.1', 'Rotator cuff syndrome', 'ICD10_2010'), +('M75.2', 'Bicipital tendinitis', 'ICD10_2010'), +('M75.3', 'Calcific tendinitis of shoulder', 'ICD10_2010'), +('M75.4', 'Impingement syndrome of shoulder', 'ICD10_2010'), +('M75.5', 'Bursitis of shoulder', 'ICD10_2010'), +('M75.8', 'Other shoulder lesions', 'ICD10_2010'), +('M75.9', 'Shoulder lesion, unspecified', 'ICD10_2010'), +('M76', 'Enthesopathies of lower limb, excluding foot', 'ICD10_2010'), +('M76.0', 'Gluteal tendinitis', 'ICD10_2010'), +('M76.00', 'Gluteal tendinitis, multiple sites', 'ICD10_2010'), +('M76.01', 'Gluteal tendinitis, shoulder region', 'ICD10_2010'), +('M76.02', 'Gluteal tendinitis, upper arm', 'ICD10_2010'), +('M76.03', 'Gluteal tendinitis, forearm', 'ICD10_2010'), +('M76.04', 'Gluteal tendinitis, hand', 'ICD10_2010'), +('M76.05', 'Gluteal tendinitis, pelvic region and thigh', 'ICD10_2010'), +('M76.06', 'Gluteal tendinitis, lower leg', 'ICD10_2010'), +('M76.07', 'Gluteal tendinitis, ankle and foot', 'ICD10_2010'), +('M76.08', 'Gluteal tendinitis, other', 'ICD10_2010'), +('M76.09', 'Gluteal tendinitis, site unspecified', 'ICD10_2010'), +('M76.1', 'Psoas tendinitis', 'ICD10_2010'), +('M76.10', 'Psoas tendinitis, multiple sites', 'ICD10_2010'), +('M76.11', 'Psoas tendinitis, shoulder region', 'ICD10_2010'), +('M76.12', 'Psoas tendinitis, upper arm', 'ICD10_2010'), +('M76.13', 'Psoas tendinitis, forearm', 'ICD10_2010'), +('M76.14', 'Psoas tendinitis, hand', 'ICD10_2010'), +('M76.15', 'Psoas tendinitis, pelvic region and thigh', 'ICD10_2010'), +('M76.16', 'Psoas tendinitis, lower leg', 'ICD10_2010'), +('M76.17', 'Psoas tendinitis, ankle and foot', 'ICD10_2010'), +('M76.18', 'Psoas tendinitis, other', 'ICD10_2010'), +('M76.19', 'Psoas tendinitis, site unspecified', 'ICD10_2010'), +('M76.2', 'Iliac crest spur', 'ICD10_2010'), +('M76.20', 'Iliac crest spur, multiple sites', 'ICD10_2010'), +('M76.21', 'Iliac crest spur, shoulder region', 'ICD10_2010'), +('M76.22', 'Iliac crest spur, upper arm', 'ICD10_2010'), +('M76.23', 'Iliac crest spur, forearm', 'ICD10_2010'), +('M76.24', 'Iliac crest spur, hand', 'ICD10_2010'), +('M76.25', 'Iliac crest spur, pelvic region and thigh', 'ICD10_2010'), +('M76.26', 'Iliac crest spur, lower leg', 'ICD10_2010'), +('M76.27', 'Iliac crest spur, ankle and foot', 'ICD10_2010'), +('M76.28', 'Iliac crest spur, other', 'ICD10_2010'), +('M76.29', 'Iliac crest spur, site unspecified', 'ICD10_2010'), +('M76.3', 'Iliotibial band syndrome', 'ICD10_2010'), +('M76.30', 'Iliotibial band syndrome, multiple sites', 'ICD10_2010'), +('M76.31', 'Iliotibial band syndrome, shoulder region', 'ICD10_2010'), +('M76.32', 'Iliotibial band syndrome, upper arm', 'ICD10_2010'), +('M76.33', 'Iliotibial band syndrome, forearm', 'ICD10_2010'), +('M76.34', 'Iliotibial band syndrome, hand', 'ICD10_2010'), +('M76.35', 'Iliotibial band syndrome, pelvic region and thigh', 'ICD10_2010'), +('M76.36', 'Iliotibial band syndrome, lower leg', 'ICD10_2010'), +('M76.37', 'Iliotibial band syndrome, ankle and foot', 'ICD10_2010'), +('M76.38', 'Iliotibial band syndrome, other', 'ICD10_2010'), +('M76.39', 'Iliotibial band syndrome, site unspecified', 'ICD10_2010'), +('M76.4', 'Tibial collateral bursitis [pellegrini-stieda]', 'ICD10_2010'), +('M76.40', 'Tibial collateral bursitis [Pellegrini-Stieda], multiple sites', 'ICD10_2010'), +('M76.41', 'Tibial collateral bursitis [Pellegrini-Stieda], shoulder region', 'ICD10_2010'), +('M76.42', 'Tibial collateral bursitis [Pellegrini-Stieda], upper arm', 'ICD10_2010'), +('M76.43', 'Tibial collateral bursitis [Pellegrini-Stieda], forearm', 'ICD10_2010'), +('M76.44', 'Tibial collateral bursitis [Pellegrini-Stieda], hand', 'ICD10_2010'), +('M76.45', 'Tibial collateral bursitis [Pellegrini-Stieda], pelvic region and thigh', 'ICD10_2010'), +('M76.46', 'Tibial collateral bursitis [Pellegrini-Stieda], lower leg', 'ICD10_2010'), +('M76.47', 'Tibial collateral bursitis [Pellegrini-Stieda], ankle and foot', 'ICD10_2010'), +('M76.48', 'Tibial collateral bursitis [Pellegrini-Stieda], other', 'ICD10_2010'), +('M76.49', 'Tibial collateral bursitis [pellegrini-stieda], site unspecified', 'ICD10_2010'), +('M76.5', 'Patellar tendinitis', 'ICD10_2010'), +('M76.50', 'Patellar tendinitis, multiple sites', 'ICD10_2010'), +('M76.51', 'Patellar tendinitis, shoulder region', 'ICD10_2010'), +('M76.52', 'Patellar tendinitis, upper arm', 'ICD10_2010'), +('M76.53', 'Patellar tendinitis, forearm', 'ICD10_2010'), +('M76.54', 'Patellar tendinitis, hand', 'ICD10_2010'), +('M76.55', 'Patellar tendinitis, pelvic region and thigh', 'ICD10_2010'), +('M76.56', 'Patellar tendinitis, lower leg', 'ICD10_2010'), +('M76.57', 'Patellar tendinitis, ankle and foot', 'ICD10_2010'), +('M76.58', 'Patellar tendinitis, other', 'ICD10_2010'), +('M76.59', 'Patellar tendinitis, site unspecified', 'ICD10_2010'), +('M76.6', 'Achilles tendinitis', 'ICD10_2010'), +('M76.60', 'Achilles tendinitis, multiple sites', 'ICD10_2010'), +('M76.61', 'Achilles tendinitis, shoulder region', 'ICD10_2010'), +('M76.62', 'Achilles tendinitis, upper arm', 'ICD10_2010'), +('M76.63', 'Achilles tendinitis, forearm', 'ICD10_2010'), +('M76.64', 'Achilles tendinitis, hand', 'ICD10_2010'), +('M76.65', 'Achilles tendinitis, pelvic region and thigh', 'ICD10_2010'), +('M76.66', 'Achilles tendinitis, lower leg', 'ICD10_2010'), +('M76.67', 'Achilles tendinitis, ankle and foot', 'ICD10_2010'), +('M76.68', 'Achilles tendinitis, other', 'ICD10_2010'), +('M76.69', 'Achilles tendinitis, site unspecified', 'ICD10_2010'), +('M76.7', 'Peroneal tendinitis', 'ICD10_2010'), +('M76.70', 'Peroneal tendinitis, multiple sites', 'ICD10_2010'), +('M76.71', 'Peroneal tendinitis, shoulder region', 'ICD10_2010'), +('M76.72', 'Peroneal tendinitis, upper arm', 'ICD10_2010'), +('M76.73', 'Peroneal tendinitis, forearm', 'ICD10_2010'), +('M76.74', 'Peroneal tendinitis, hand', 'ICD10_2010'), +('M76.75', 'Peroneal tendinitis, pelvic region and thigh', 'ICD10_2010'), +('M76.76', 'Peroneal tendinitis, lower leg', 'ICD10_2010'), +('M76.77', 'Peroneal tendinitis, ankle and foot', 'ICD10_2010'), +('M76.78', 'Peroneal tendinitis, other', 'ICD10_2010'), +('M76.79', 'Peroneal tendinitis, site unspecified', 'ICD10_2010'), +('M76.8', 'Other enthesopathies of lower limb, excluding foot', 'ICD10_2010'), +('M76.80', 'Other enthesopathies of lower limb, excluding foot, multiple sites', 'ICD10_2010'), +('M76.81', 'Other enthesopathies of lower limb, excluding foot, shoulder region', 'ICD10_2010'), +('M76.82', 'Other enthesopathies of lower limb, excluding foot, upper arm', 'ICD10_2010'), +('M76.83', 'Other enthesopathies of lower limb, excluding foot, forearm', 'ICD10_2010'), +('M76.84', 'Other enthesopathies of lower limb, excluding foot, hand', 'ICD10_2010'), +('M76.85', 'Other enthesopathies of lower limb, excluding foot, pelvic region and thigh', 'ICD10_2010'), +('M76.86', 'Other enthesopathies of lower limb, excluding foot, lower leg', 'ICD10_2010'), +('M76.87', 'Other enthesopathies of lower limb, excluding foot, ankle and foot', 'ICD10_2010'), +('M76.88', 'Other enthesopathies of lower limb, excluding foot, other', 'ICD10_2010'), +('M76.89', 'Other enthesopathies of lower limb, excluding foot, site unspecified', 'ICD10_2010'), +('M76.9', 'Enthesopathy of lower limb, unspecified', 'ICD10_2010'), +('M76.90', 'Enthesopathy of lower limb, unspecified, multiple sites', 'ICD10_2010'), +('M76.91', 'Enthesopathy of lower limb, unspecified, shoulder region', 'ICD10_2010'), +('M76.92', 'Enthesopathy of lower limb, unspecified, upper arm', 'ICD10_2010'), +('M76.93', 'Enthesopathy of lower limb, unspecified, forearm', 'ICD10_2010'), +('M76.94', 'Enthesopathy of lower limb, unspecified, hand', 'ICD10_2010'), +('M76.95', 'Enthesopathy of lower limb, unspecified, pelvic region and thigh', 'ICD10_2010'), +('M76.96', 'Enthesopathy of lower limb, unspecified, lower leg', 'ICD10_2010'), +('M76.97', 'Enthesopathy of lower limb, unspecified, ankle and foot', 'ICD10_2010'), +('M76.98', 'Enthesopathy of lower limb, unspecified, other', 'ICD10_2010'), +('M76.99', 'Enthesopathy of lower limb, unspecified, site unspecified', 'ICD10_2010'), +('M77', 'Other enthesopathies', 'ICD10_2010'), +('M77.0', 'Medial epicondylitis', 'ICD10_2010'), +('M77.00', 'Medial epicondylitis, multiple sites', 'ICD10_2010'), +('M77.01', 'Medial epicondylitis, shoulder region', 'ICD10_2010'), +('M77.02', 'Medial epicondylitis, upper arm', 'ICD10_2010'), +('M77.03', 'Medial epicondylitis, forearm', 'ICD10_2010'), +('M77.04', 'Medial epicondylitis, hand', 'ICD10_2010'), +('M77.05', 'Medial epicondylitis, pelvic region and thigh', 'ICD10_2010'), +('M77.06', 'Medial epicondylitis, lower leg', 'ICD10_2010'), +('M77.07', 'Medial epicondylitis, ankle and foot', 'ICD10_2010'), +('M77.08', 'Medial epicondylitis, other', 'ICD10_2010'), +('M77.09', 'Medial epicondylitis, site unspecified', 'ICD10_2010'), +('M77.1', 'Lateral epicondylitis', 'ICD10_2010'), +('M77.10', 'Lateral epicondylitis, multiple sites', 'ICD10_2010'), +('M77.11', 'Lateral epicondylitis, shoulder region', 'ICD10_2010'), +('M77.12', 'Lateral epicondylitis, upper arm', 'ICD10_2010'), +('M77.13', 'Lateral epicondylitis, forearm', 'ICD10_2010'), +('M77.14', 'Lateral epicondylitis, hand', 'ICD10_2010'), +('M77.15', 'Lateral epicondylitis, pelvic region and thigh', 'ICD10_2010'), +('M77.16', 'Lateral epicondylitis, lower leg', 'ICD10_2010'), +('M77.17', 'Lateral epicondylitis, ankle and foot', 'ICD10_2010'), +('M77.18', 'Lateral epicondylitis, other', 'ICD10_2010'), +('M77.19', 'Lateral epicondylitis, site unspecified', 'ICD10_2010'), +('M77.2', 'Periarthritis of wrist', 'ICD10_2010'), +('M77.20', 'Periarthritis of wrist, multiple sites', 'ICD10_2010'), +('M77.21', 'Periarthritis of wrist, shoulder region', 'ICD10_2010'), +('M77.22', 'Periarthritis of wrist, upper arm', 'ICD10_2010'), +('M77.23', 'Periarthritis of wrist, forearm', 'ICD10_2010'), +('M77.24', 'Periarthritis of wrist, hand', 'ICD10_2010'), +('M77.25', 'Periarthritis of wrist, pelvic region and thigh', 'ICD10_2010'), +('M77.26', 'Periarthritis of wrist, lower leg', 'ICD10_2010'), +('M77.27', 'Periarthritis of wrist, ankle and foot', 'ICD10_2010'), +('M77.28', 'Periarthritis of wrist, other', 'ICD10_2010'), +('M77.29', 'Periarthritis of wrist, site unspecified', 'ICD10_2010'), +('M77.3', 'Calcaneal spur', 'ICD10_2010'), +('M77.30', 'Calcaneal spur, multiple sites', 'ICD10_2010'), +('M77.31', 'Calcaneal spur, shoulder region', 'ICD10_2010'), +('M77.32', 'Calcaneal spur, upper arm', 'ICD10_2010'), +('M77.33', 'Calcaneal spur, forearm', 'ICD10_2010'), +('M77.34', 'Calcaneal spur, hand', 'ICD10_2010'), +('M77.35', 'Calcaneal spur, pelvic region and thigh', 'ICD10_2010'), +('M77.36', 'Calcaneal spur, lower leg', 'ICD10_2010'), +('M77.37', 'Calcaneal spur, ankle and foot', 'ICD10_2010'), +('M77.38', 'Calcaneal spur, other', 'ICD10_2010'), +('M77.39', 'Calcaneal spur, site unspecified', 'ICD10_2010'), +('M77.4', 'Metatarsalgia', 'ICD10_2010'), +('M77.40', 'Metatarsalgia, multiple sites', 'ICD10_2010'), +('M77.41', 'Metatarsalgia, shoulder region', 'ICD10_2010'), +('M77.42', 'Metatarsalgia, upper arm', 'ICD10_2010'), +('M77.43', 'Metatarsalgia, forearm', 'ICD10_2010'), +('M77.44', 'Metatarsalgia, hand', 'ICD10_2010'), +('M77.45', 'Metatarsalgia, pelvic region and thigh', 'ICD10_2010'), +('M77.46', 'Metatarsalgia, lower leg', 'ICD10_2010'), +('M77.47', 'Metatarsalgia, ankle and foot', 'ICD10_2010'), +('M77.48', 'Metatarsalgia, other', 'ICD10_2010'), +('M77.49', 'Metatarsalgia, site unspecified', 'ICD10_2010'), +('M77.5', 'Other enthesopathy of foot', 'ICD10_2010'), +('M77.50', 'Other enthesopathy of foot, multiple sites', 'ICD10_2010'), +('M77.51', 'Other enthesopathy of foot, shoulder region', 'ICD10_2010'), +('M77.52', 'Other enthesopathy of foot, upper arm', 'ICD10_2010'), +('M77.53', 'Other enthesopathy of foot, forearm', 'ICD10_2010'), +('M77.54', 'Other enthesopathy of foot, hand', 'ICD10_2010'), +('M77.55', 'Other enthesopathy of foot, pelvic region and thigh', 'ICD10_2010'), +('M77.56', 'Other enthesopathy of foot, lower leg', 'ICD10_2010'), +('M77.57', 'Other enthesopathy of foot, ankle and foot', 'ICD10_2010'), +('M77.58', 'Other enthesopathy of foot, other', 'ICD10_2010'), +('M77.59', 'Other enthesopathy of foot, site unspecified', 'ICD10_2010'), +('M77.8', 'Other enthesopathies, not elsewhere classified', 'ICD10_2010'), +('M77.80', 'Other enthesopathies, not elsewhere classified, multiple sites', 'ICD10_2010'), +('M77.81', 'Other enthesopathies, not elsewhere classified, shoulder region', 'ICD10_2010'), +('M77.82', 'Other enthesopathies, not elsewhere classified, upper arm', 'ICD10_2010'), +('M77.83', 'Other enthesopathies, not elsewhere classified, forearm', 'ICD10_2010'), +('M77.84', 'Other enthesopathies, not elsewhere classified, hand', 'ICD10_2010'), +('M77.85', 'Other enthesopathies, not elsewhere classified, pelvic region and thigh', 'ICD10_2010'), +('M77.86', 'Other enthesopathies, not elsewhere classified, lower leg', 'ICD10_2010'), +('M77.87', 'Other enthesopathies, not elsewhere classified, ankle and foot', 'ICD10_2010'), +('M77.88', 'Other enthesopathies, not elsewhere classified, other', 'ICD10_2010'), +('M77.89', 'Other enthesopathies, not elsewhere classified, site unspecified', 'ICD10_2010'), +('M77.9', 'Enthesopathy, unspecified', 'ICD10_2010'), +('M77.90', 'Enthesopathy, unspecified, multiple sites', 'ICD10_2010'), +('M77.91', 'Enthesopathy, unspecified, shoulder region', 'ICD10_2010'), +('M77.92', 'Enthesopathy, unspecified, upper arm', 'ICD10_2010'), +('M77.93', 'Enthesopathy, unspecified, forearm', 'ICD10_2010'), +('M77.94', 'Enthesopathy, unspecified, hand', 'ICD10_2010'), +('M77.95', 'Enthesopathy, unspecified, pelvic region and thigh', 'ICD10_2010'), +('M77.96', 'Enthesopathy, unspecified, lower leg', 'ICD10_2010'), +('M77.97', 'Enthesopathy, unspecified, ankle and foot', 'ICD10_2010'), +('M77.98', 'Enthesopathy, unspecified, other', 'ICD10_2010'), +('M77.99', 'Enthesopathy, unspecified, site unspecified', 'ICD10_2010'), +('M79', 'Other soft tissue disorders, not elsewhere classified', 'ICD10_2010'), +('M79.0', 'Rheumatism, unspecified', 'ICD10_2010'), +('M79.00', 'Rheumatism, unspecified, multiple sites', 'ICD10_2010'), +('M79.01', 'Rheumatism, unspecified, shoulder region', 'ICD10_2010'), +('M79.02', 'Rheumatism, unspecified, upper arm', 'ICD10_2010'), +('M79.03', 'Rheumatism, unspecified, forearm', 'ICD10_2010'), +('M79.04', 'Rheumatism, unspecified, hand', 'ICD10_2010'), +('M79.05', 'Rheumatism, unspecified, pelvic region and thigh', 'ICD10_2010'), +('M79.06', 'Rheumatism, unspecified, lower leg', 'ICD10_2010'), +('M79.07', 'Rheumatism, unspecified, ankle and foot', 'ICD10_2010'), +('M79.08', 'Rheumatism, unspecified, other', 'ICD10_2010'), +('M79.09', 'Rheumatism, unspecified, site unspecified', 'ICD10_2010'), +('M79.1', 'Myalgia', 'ICD10_2010'), +('M79.10', 'Myalgia, multiple sites', 'ICD10_2010'), +('M79.11', 'Myalgia, shoulder region', 'ICD10_2010'), +('M79.12', 'Myalgia, upper arm', 'ICD10_2010'), +('M79.13', 'Myalgia, forearm', 'ICD10_2010'), +('M79.14', 'Myalgia, hand', 'ICD10_2010'), +('M79.15', 'Myalgia, pelvic and thigh', 'ICD10_2010'), +('M79.16', 'Myalgia, lower leg', 'ICD10_2010'), +('M79.17', 'Myalgia, ankle and foot', 'ICD10_2010'), +('M79.18', 'Myalgia, other site', 'ICD10_2010'), +('M79.19', 'Myalgia, site unspecified', 'ICD10_2010'), +('M79.2', 'Neuralgia and neuritis, unspecified', 'ICD10_2010'), +('M79.20', 'Neuralgia and neuritis, unspecified, multiple sites', 'ICD10_2010'), +('M79.21', 'Neuralgia and neuritis, unspecified, shoulder region', 'ICD10_2010'), +('M79.22', 'Neuralgia and neuritis, unspecified, upper arm', 'ICD10_2010'), +('M79.23', 'Neuralgia and neuritis, unspecified, forearm', 'ICD10_2010'), +('M79.24', 'Neuralgia and neuritis, unspecified, hand', 'ICD10_2010'), +('M79.25', 'Neuralgia and neuritis, unspecified, pelvic and thigh', 'ICD10_2010'), +('M79.26', 'Neuralgia and neuritis, unspecified, lower leg', 'ICD10_2010'), +('M79.27', 'Neuralgia and neuritis, unspecified, ankle and foot', 'ICD10_2010'), +('M79.28', 'Neuralgia and neuritis, unspecified, other site', 'ICD10_2010'), +('M79.29', 'Neuralgia and neuritis, unspecified, site unspecified', 'ICD10_2010'), +('M79.3', 'Panniculitis, unspecified', 'ICD10_2010'), +('M79.30', 'Panniculitis, unspecified, multiple sites', 'ICD10_2010'), +('M79.31', 'Panniculitis, unspecified, shoulder region', 'ICD10_2010'), +('M79.32', 'Panniculitis, unspecified, upper arm', 'ICD10_2010'), +('M79.33', 'Panniculitis, unspecified, forearm', 'ICD10_2010'), +('M79.34', 'Panniculitis, unspecified, hand', 'ICD10_2010'), +('M79.35', 'Panniculitis, unspecified, pelvic and thigh', 'ICD10_2010'), +('M79.36', 'Panniculitis, unspecified, lower leg', 'ICD10_2010'), +('M79.37', 'Panniculitis, unspecified, ankle and foot', 'ICD10_2010'), +('M79.38', 'Panniculitis, unspecified, other site', 'ICD10_2010'), +('M79.39', 'Panniculitis, unspecified, site unspecified', 'ICD10_2010'), +('M79.4', 'Hypertrophy of (infrapatellar) fat pad', 'ICD10_2010'), +('M79.40', 'Hypertrophy of (infrapatellar) fat pad, multiple sites', 'ICD10_2010'), +('M79.41', 'Hypertrophy of (infrapatellar) fat pad, shoulder region', 'ICD10_2010'), +('M79.42', 'Hypertrophy of (infrapatellar) fat pad, upper arm', 'ICD10_2010'), +('M79.43', 'Hypertrophy of (infrapatellar) fat pad, forearm', 'ICD10_2010'), +('M79.44', 'Hypertrophy of (infrapatellar) fat pad, hand', 'ICD10_2010'), +('M79.45', 'Hypertrophy of (infrapatellar) fat pad, pelvic region and thigh', 'ICD10_2010'), +('M79.46', 'Hypertrophy of (infrapatellar) fat pad, lower leg', 'ICD10_2010'), +('M79.47', 'Hypertrophy of (infrapatellar) fat pad, ankle and foot', 'ICD10_2010'), +('M79.48', 'Hypertrophy of (infrapatellar) fat pad, other', 'ICD10_2010'), +('M79.49', 'Hypertrophy of (infrapatellar) fat pad, site unspecified', 'ICD10_2010'), +('M79.5', 'Residual foreign body in soft tissue', 'ICD10_2010'), +('M79.50', 'Residual foreign body in soft tissue, multiple sites', 'ICD10_2010'), +('M79.51', 'Residual foreign body in soft tissue, shoulder region', 'ICD10_2010'), +('M79.52', 'Residual foreign body in soft tissue, upper arm', 'ICD10_2010'), +('M79.53', 'Residual foreign body in soft tissue, forearm', 'ICD10_2010'), +('M79.54', 'Residual foreign body in soft tissue, hand', 'ICD10_2010'), +('M79.55', 'Residual foreign body in soft tissue, pelvic and thigh', 'ICD10_2010'), +('M79.56', 'Residual foreign body in soft tissue, lower leg', 'ICD10_2010'), +('M79.57', 'Residual foreign body in soft tissue, ankle and foot', 'ICD10_2010'), +('M79.58', 'Residual foreign body in soft tissue, other site', 'ICD10_2010'), +('M79.59', 'Residual foreign body in soft tissue, site unspecified', 'ICD10_2010'), +('M79.6', 'Pain in limb', 'ICD10_2010'), +('M79.60', 'Pain in limb, multiple sites', 'ICD10_2010'), +('M79.61', 'Pain in limb, shoulder region', 'ICD10_2010'), +('M79.62', 'Pain in limb, upper arm', 'ICD10_2010'), +('M79.63', 'Pain in limb, forearm', 'ICD10_2010'), +('M79.64', 'Pain in limb, hand', 'ICD10_2010'), +('M79.65', 'Pain in limb, pelvic and thigh', 'ICD10_2010'), +('M79.66', 'Pain in limb, lower leg', 'ICD10_2010'), +('M79.67', 'Pain in limb, ankle and foot', 'ICD10_2010'), +('M79.68', 'Pain in limb, other site', 'ICD10_2010'), +('M79.69', 'Pain in limb, site unspecified', 'ICD10_2010'), +('M79.7', 'Fibromyalgia', 'ICD10_2010'), +('M79.70', 'Fibromyalgia, multiple sites', 'ICD10_2010'), +('M79.71', 'Fibromyalgia, shoulder region', 'ICD10_2010'), +('M79.72', 'Fibromyalgia, upper arm', 'ICD10_2010'), +('M79.73', 'Fibromyalgia, forearm', 'ICD10_2010'), +('M79.74', 'Fibromyalgia, hand', 'ICD10_2010'), +('M79.75', 'Fibromyalgia, pelvic and thigh', 'ICD10_2010'), +('M79.76', 'Fibromyalgia, lower leg', 'ICD10_2010'), +('M79.77', 'Fibromyalgia, ankle and foot', 'ICD10_2010'), +('M79.78', 'Fibromyalgia, other site', 'ICD10_2010'), +('M79.79', 'Fibromyalgia, site unspecified', 'ICD10_2010'), +('M79.8', 'Other specified soft tissue disorders', 'ICD10_2010'), +('M79.80', 'Other specified soft tissue disorders, multiple sites', 'ICD10_2010'), +('M79.81', 'Other specified soft tissue disorders, shoulder region', 'ICD10_2010'), +('M79.82', 'Other specified soft tissue disorders, upper arm', 'ICD10_2010'), +('M79.83', 'Other specified soft tissue disorders, forearm', 'ICD10_2010'), +('M79.84', 'Other specified soft tissue disorders, hand', 'ICD10_2010'), +('M79.85', 'Other specified soft tissue disorders, pelvic and thigh', 'ICD10_2010'), +('M79.86', 'Other specified soft tissue disorders, lower leg', 'ICD10_2010'), +('M79.87', 'Other specified soft tissue disorders, ankle and foot', 'ICD10_2010'), +('M79.88', 'Other specified soft tissue disorders, other site', 'ICD10_2010'), +('M79.89', 'Other specified soft tissue disorders, site unspecified', 'ICD10_2010'), +('M79.9', 'Soft tissue disorder, unspecified', 'ICD10_2010'), +('M79.90', 'Soft tissue disorder, unspecified, multiple sites', 'ICD10_2010'), +('M79.91', 'Soft tissue disorder, unspecified, shoulder region', 'ICD10_2010'), +('M79.92', 'Soft tissue disorder, unspecified, upper arm', 'ICD10_2010'), +('M79.93', 'Soft tissue disorder, unspecified, forearm', 'ICD10_2010'), +('M79.94', 'Soft tissue disorder, unspecified, hand', 'ICD10_2010'), +('M79.95', 'Soft tissue disorder, unspecified, pelvic and thigh', 'ICD10_2010'), +('M79.96', 'Soft tissue disorder, unspecified, lower leg', 'ICD10_2010'), +('M79.97', 'Soft tissue disorder, unspecified, ankle and foot', 'ICD10_2010'), +('M79.98', 'Soft tissue disorder, unspecified, other site', 'ICD10_2010'), +('M79.99', 'Soft tissue disorder, unspecified, site unspecified', 'ICD10_2010'), +('M80', 'Osteoporosis with pathological fracture', 'ICD10_2010'), +('M80.0', 'Postmenopausal osteoporosis with pathological fracture', 'ICD10_2010'), +('M80.00', 'Postmenopausal osteoporosis with pathological fracture, multiple sites', 'ICD10_2010'), +('M80.01', 'Postmenopausal osteoporosis with pathological fracture, shoulder region', 'ICD10_2010'), +('M80.02', 'Postmenopausal osteoporosis with pathological fracture, upper arm', 'ICD10_2010'), +('M80.03', 'Postmenopausal osteoporosis with pathological fracture, forearm', 'ICD10_2010'), +('M80.04', 'Postmenopausal osteoporosis with pathological fracture, hand', 'ICD10_2010'), +('M80.05', 'Postmenopausal osteoporosis with pathological fracture, pelvic and thigh', 'ICD10_2010'), +('M80.06', 'Postmenopausal osteoporosis with pathological fracture, lower leg', 'ICD10_2010'), +('M80.07', 'Postmenopausal osteoporosis with pathological fracture, ankle and foot', 'ICD10_2010'), +('M80.08', 'Postmenopausal osteoporosis with pathological fracture, other site', 'ICD10_2010'), +('M80.09', 'Postmenopausal osteoporosis with pathological fracture, site unspecified', 'ICD10_2010'), +('M80.1', 'Postoophorectomy osteoporosis with pathological fracture', 'ICD10_2010'), +('M80.10', 'Postoophorectomy osteoporosis with pathological fracture, multiple sites', 'ICD10_2010'), +('M80.11', 'Postoophorectomy osteoporosis with pathological fracture, shoulder region', 'ICD10_2010'), +('M80.12', 'Postoophorectomy osteoporosis with pathological fracture, upper arm', 'ICD10_2010'), +('M80.13', 'Postoophorectomy osteoporosis with pathological fracture, forearm', 'ICD10_2010'), +('M80.14', 'Postoophorectomy osteoporosis with pathological fracture, hand', 'ICD10_2010'), +('M80.15', 'Postoophorectomy osteoporosis with pathological fracture, pelvic and thigh', 'ICD10_2010'), +('M80.16', 'Postoophorectomy osteoporosis with pathological fracture, lower leg', 'ICD10_2010'), +('M80.17', 'Postoophorectomy osteoporosis with pathological fracture, ankle and foot', 'ICD10_2010'), +('M80.18', 'Postoophorectomy osteoporosis with pathological fracture, other site', 'ICD10_2010'), +('M80.19', 'Postoophorectomy osteoporosis with pathological fracture, site unspecified', 'ICD10_2010'), +('M80.2', 'Osteoporosis of disuse with pathological fracture', 'ICD10_2010'), +('M80.20', 'Osteoporosis of disuse with pathological fracture, multiple sites', 'ICD10_2010'), +('M80.21', 'Osteoporosis of disuse with pathological fracture, shoulder region', 'ICD10_2010'), +('M80.22', 'Osteoporosis of disuse with pathological fracture, upper arm', 'ICD10_2010'), +('M80.23', 'Osteoporosis of disuse with pathological fracture, forearm', 'ICD10_2010'), +('M80.24', 'Osteoporosis of disuse with pathological fracture, hand', 'ICD10_2010'), +('M80.25', 'Osteoporosis of disuse with pathological fracture, pelvic and thigh', 'ICD10_2010'), +('M80.26', 'Osteoporosis of disuse with pathological fracture, lower leg', 'ICD10_2010'), +('M80.27', 'Osteoporosis of disuse with pathological fracture, ankle and foot', 'ICD10_2010'), +('M80.28', 'Osteoporosis of disuse with pathological fracture, other site', 'ICD10_2010'), +('M80.29', 'Osteoporosis of disuse with pathological fracture, site unspecified', 'ICD10_2010'), +('M80.3', 'Postsurgical malabsorption osteoporosis with path fracture', 'ICD10_2010'), +('M80.30', 'Postsurgical malabsorption osteoporosis with path fracture, multiple sites', 'ICD10_2010'), +('M80.31', 'Postsurgical malabsorption osteoporosis with path fracture, shoulder region', 'ICD10_2010'), +('M80.32', 'Postsurgical malabsorption osteoporosis with path fracture, upper arm', 'ICD10_2010'), +('M80.33', 'Postsurgical malabsorption osteoporosis with path fracture, forearm', 'ICD10_2010'), +('M80.34', 'Postsurgical malabsorption osteoporosis with path fracture, hand', 'ICD10_2010'), +('M80.35', 'Postsurgical malabsorption osteoporosis with path fracture, pelvic and thigh', 'ICD10_2010'), +('M80.36', 'Postsurgical malabsorption osteoporosis with path fracture, lower leg', 'ICD10_2010'), +('M80.37', 'Postsurgical malabsorption osteoporosis with path fracture, ankle and foot', 'ICD10_2010'), +('M80.38', 'Postsurgical malabsorption osteoporosis with path fracture, other site', 'ICD10_2010'), +('M80.39', 'Postsurgical malabsorption osteoporosis with path fracture, site unspecified', 'ICD10_2010'), +('M80.4', 'Drug-induced osteoporosis with pathological fracture', 'ICD10_2010'), +('M80.40', 'Drug-induced osteoporosis with pathological fracture, multiple sites', 'ICD10_2010'), +('M80.41', 'Drug-induced osteoporosis with pathological fracture, shoulder region', 'ICD10_2010'), +('M80.42', 'Drug-induced osteoporosis with pathological fracture, upper arm', 'ICD10_2010'), +('M80.43', 'Drug-induced osteoporosis with pathological fracture, forearm', 'ICD10_2010'), +('M80.44', 'Drug-induced osteoporosis with pathological fracture, hand', 'ICD10_2010'), +('M80.45', 'Drug-induced osteoporosis with pathological fracture, pelvic and thigh', 'ICD10_2010'), +('M80.46', 'Drug-induced osteoporosis with pathological fracture, lower leg', 'ICD10_2010'), +('M80.47', 'Drug-induced osteoporosis with pathological fracture, ankle and foot', 'ICD10_2010'), +('M80.48', 'Drug-induced osteoporosis with pathological fracture, other site', 'ICD10_2010'), +('M80.49', 'Drug-induced osteoporosis with pathological fracture, site unspecified', 'ICD10_2010'), +('M80.5', 'Idiopathic osteoporosis with pathological fracture', 'ICD10_2010'), +('M80.50', 'Idiopathic osteoporosis with pathological fracture, multiple sites', 'ICD10_2010'), +('M80.51', 'Idiopathic osteoporosis with pathological fracture, shoulder region', 'ICD10_2010'), +('M80.52', 'Idiopathic osteoporosis with pathological fracture, upper arm', 'ICD10_2010'), +('M80.53', 'Idiopathic osteoporosis with pathological fracture, forearm', 'ICD10_2010'), +('M80.54', 'Idiopathic osteoporosis with pathological fracture, hand', 'ICD10_2010'), +('M80.55', 'Idiopathic osteoporosis with pathological fracture, pelvic and thigh', 'ICD10_2010'), +('M80.56', 'Idiopathic osteoporosis with pathological fracture, lower leg', 'ICD10_2010'), +('M80.57', 'Idiopathic osteoporosis with pathological fracture, ankle and foot', 'ICD10_2010'), +('M80.58', 'Idiopathic osteoporosis with pathological fracture, other site', 'ICD10_2010'), +('M80.59', 'Idiopathic osteoporosis with pathological fracture, site unspecified', 'ICD10_2010'), +('M80.8', 'Other osteoporosis with pathological fracture', 'ICD10_2010'), +('M80.80', 'Other osteoporosis with pathological fracture, multiple sites', 'ICD10_2010'), +('M80.81', 'Other osteoporosis with pathological fracture, shoulder region', 'ICD10_2010'), +('M80.82', 'Other osteoporosis with pathological fracture, upper arm', 'ICD10_2010'), +('M80.83', 'Other osteoporosis with pathological fracture, forearm', 'ICD10_2010'), +('M80.84', 'Other osteoporosis with pathological fracture, hand', 'ICD10_2010'), +('M80.85', 'Other osteoporosis with pathological fracture, pelvic and thigh', 'ICD10_2010'), +('M80.86', 'Other osteoporosis with pathological fracture, lower leg', 'ICD10_2010'), +('M80.87', 'Other osteoporosis with pathological fracture, ankle and foot', 'ICD10_2010'), +('M80.88', 'Other osteoporosis with pathological fracture, other site', 'ICD10_2010'), +('M80.89', 'Other osteoporosis with pathological fracture, site unspecified', 'ICD10_2010'), +('M80.9', 'Unspecified osteoporosis with pathological fracture', 'ICD10_2010'), +('M80.90', 'Unspecified osteoporosis with pathological fracture, multiple sites', 'ICD10_2010'), +('M80.91', 'Unspecified osteoporosis with pathological fracture, shoulder region', 'ICD10_2010'), +('M80.92', 'Unspecified osteoporosis with pathological fracture, upper arm', 'ICD10_2010'), +('M80.93', 'Unspecified osteoporosis with pathological fracture, forearm', 'ICD10_2010'), +('M80.94', 'Unspecified osteoporosis with pathological fracture, hand', 'ICD10_2010'), +('M80.95', 'Unspecified osteoporosis with pathological fracture, pelvic and thigh', 'ICD10_2010'), +('M80.96', 'Unspecified osteoporosis with pathological fracture, lower leg', 'ICD10_2010'), +('M80.97', 'Unspecified osteoporosis with pathological fracture, ankle and foot', 'ICD10_2010'), +('M80.98', 'Unspecified osteoporosis with pathological fracture, other site', 'ICD10_2010'), +('M80.99', 'Unspecified osteoporosis with pathological fracture, site unspecified', 'ICD10_2010'), +('M81', 'Osteoporosis without pathological fracture', 'ICD10_2010'), +('M81.0', 'Postmenopausal osteoporosis', 'ICD10_2010'), +('M81.00', 'Postmenopausal osteoporosis, multiple sites', 'ICD10_2010'), +('M81.01', 'Postmenopausal osteoporosis, shoulder region', 'ICD10_2010'), +('M81.02', 'Postmenopausal osteoporosis, upper arm', 'ICD10_2010'), +('M81.03', 'Postmenopausal osteoporosis, forearm', 'ICD10_2010'), +('M81.04', 'Postmenopausal osteoporosis, hand', 'ICD10_2010'), +('M81.05', 'Postmenopausal osteoporosis, pelvic and thigh', 'ICD10_2010'), +('M81.06', 'Postmenopausal osteoporosis, lower leg', 'ICD10_2010'), +('M81.07', 'Postmenopausal osteoporosis, ankle and foot', 'ICD10_2010'), +('M81.08', 'Postmenopausal osteoporosis, other site', 'ICD10_2010'), +('M81.09', 'Postmenopausal osteoporosis, site unspecified', 'ICD10_2010'), +('M81.1', 'Postoophorectomy osteoporosis', 'ICD10_2010'), +('M81.10', 'Postoophorectomy osteoporosis, multiple sites', 'ICD10_2010'), +('M81.11', 'Postoophorectomy osteoporosis, shoulder region', 'ICD10_2010'), +('M81.12', 'Postoophorectomy osteoporosis, upper arm', 'ICD10_2010'), +('M81.13', 'Postoophorectomy osteoporosis, forearm', 'ICD10_2010'), +('M81.14', 'Postoophorectomy osteoporosis, hand', 'ICD10_2010'), +('M81.15', 'Postoophorectomy osteoporosis, pelvic and thigh', 'ICD10_2010'), +('M81.16', 'Postoophorectomy osteoporosis, lower leg', 'ICD10_2010'), +('M81.17', 'Postoophorectomy osteoporosis, ankle and foot', 'ICD10_2010'), +('M81.18', 'Postoophorectomy osteoporosis, other site', 'ICD10_2010'), +('M81.19', 'Postoophorectomy osteoporosis, site unspecified', 'ICD10_2010'), +('M81.2', 'Osteoporosis of disuse', 'ICD10_2010'), +('M81.20', 'Osteoporosis of disuse, multiple sites', 'ICD10_2010'), +('M81.21', 'Osteoporosis of disuse, shoulder region', 'ICD10_2010'), +('M81.22', 'Osteoporosis of disuse, upper arm', 'ICD10_2010'), +('M81.23', 'Osteoporosis of disuse, forearm', 'ICD10_2010'), +('M81.24', 'Osteoporosis of disuse, hand', 'ICD10_2010'), +('M81.25', 'Osteoporosis of disuse, pelvic and thigh', 'ICD10_2010'), +('M81.26', 'Osteoporosis of disuse, lower leg', 'ICD10_2010'), +('M81.27', 'Osteoporosis of disuse, ankle and foot', 'ICD10_2010'), +('M81.28', 'Osteoporosis of disuse, other site', 'ICD10_2010'), +('M81.29', 'Osteoporosis of disuse, site unspecified', 'ICD10_2010'), +('M81.3', 'Postsurgical malabsorption osteoporosis', 'ICD10_2010'), +('M81.30', 'Postsurgical malabsorption osteoporosis, multiple sites', 'ICD10_2010'), +('M81.31', 'Postsurgical malabsorption osteoporosis, shoulder region', 'ICD10_2010'), +('M81.32', 'Postsurgical malabsorption osteoporosis, upper arm', 'ICD10_2010'), +('M81.33', 'Postsurgical malabsorption osteoporosis, forearm', 'ICD10_2010'), +('M81.34', 'Postsurgical malabsorption osteoporosis, hand', 'ICD10_2010'), +('M81.35', 'Postsurgical malabsorption osteoporosis, pelvic and thigh', 'ICD10_2010'), +('M81.36', 'Postsurgical malabsorption osteoporosis, lower leg', 'ICD10_2010'), +('M81.37', 'Postsurgical malabsorption osteoporosis, ankle and foot', 'ICD10_2010'), +('M81.38', 'Postsurgical malabsorption osteoporosis, other site', 'ICD10_2010'), +('M81.39', 'Postsurgical malabsorption osteoporosis, site unspecified', 'ICD10_2010'), +('M81.4', 'Drug-induced osteoporosis', 'ICD10_2010'), +('M81.40', 'Drug-induced osteoporosis, multiple sites', 'ICD10_2010'), +('M81.41', 'Drug-induced osteoporosis, shoulder region', 'ICD10_2010'), +('M81.42', 'Drug-induced osteoporosis, upper arm', 'ICD10_2010'), +('M81.43', 'Drug-induced osteoporosis, forearm', 'ICD10_2010'), +('M81.44', 'Drug-induced osteoporosis, hand', 'ICD10_2010'), +('M81.45', 'Drug-induced osteoporosis, pelvic and thigh', 'ICD10_2010'), +('M81.46', 'Drug-induced osteoporosis, lower leg', 'ICD10_2010'), +('M81.47', 'Drug-induced osteoporosis, ankle and foot', 'ICD10_2010'), +('M81.48', 'Drug-induced osteoporosis, other site', 'ICD10_2010'), +('M81.49', 'Drug-induced osteoporosis, site unspecified', 'ICD10_2010'), +('M81.5', 'Idiopathic osteoporosis', 'ICD10_2010'), +('M81.50', 'Idiopathic osteoporosis, multiple sites', 'ICD10_2010'), +('M81.51', 'Idiopathic osteoporosis, shoulder region', 'ICD10_2010'), +('M81.52', 'Idiopathic osteoporosis, upper arm', 'ICD10_2010'), +('M81.53', 'Idiopathic osteoporosis, forearm', 'ICD10_2010'), +('M81.54', 'Idiopathic osteoporosis, hand', 'ICD10_2010'), +('M81.55', 'Idiopathic osteoporosis, pelvic and thigh', 'ICD10_2010'), +('M81.56', 'Idiopathic osteoporosis, lower leg', 'ICD10_2010'), +('M81.57', 'Idiopathic osteoporosis, ankle and foot', 'ICD10_2010'), +('M81.58', 'Idiopathic osteoporosis, other site', 'ICD10_2010'), +('M81.59', 'Idiopathic osteoporosis, site unspecified', 'ICD10_2010'), +('M81.6', 'Localized osteoporosis [lequesne]', 'ICD10_2010'), +('M81.60', 'Localized osteoporosis [lequesne], multiple sites', 'ICD10_2010'), +('M81.61', 'Localized osteoporosis [lequesne], shoulder region', 'ICD10_2010'), +('M81.62', 'Localized osteoporosis [lequesne], upper arm', 'ICD10_2010'), +('M81.63', 'Localized osteoporosis [lequesne], forearm', 'ICD10_2010'), +('M81.64', 'Localized osteoporosis [lequesne], hand', 'ICD10_2010'), +('M81.65', 'Localized osteoporosis [lequesne], pelvic and thigh', 'ICD10_2010'), +('M81.66', 'Localized osteoporosis [lequesne], lower leg', 'ICD10_2010'), +('M81.67', 'Localized osteoporosis [lequesne], ankle and foot', 'ICD10_2010'), +('M81.68', 'Localized osteoporosis [lequesne], other site', 'ICD10_2010'), +('M81.69', 'Localized osteoporosis [lequesne], site unspecified', 'ICD10_2010'), +('M81.8', 'Other osteoporosis', 'ICD10_2010'), +('M81.80', 'Other osteoporosis, multiple sites', 'ICD10_2010'), +('M81.81', 'Other osteoporosis, shoulder region', 'ICD10_2010'), +('M81.82', 'Other osteoporosis, upper arm', 'ICD10_2010'), +('M81.83', 'Other osteoporosis, forearm', 'ICD10_2010'), +('M81.84', 'Other osteoporosis, hand', 'ICD10_2010'), +('M81.85', 'Other osteoporosis, pelvic and thigh', 'ICD10_2010'), +('M81.86', 'Other osteoporosis, lower leg', 'ICD10_2010'), +('M81.87', 'Other osteoporosis, ankle and foot', 'ICD10_2010'), +('M81.88', 'Other osteoporosis, other site', 'ICD10_2010'), +('M81.89', 'Other osteoporosis, site unspecified', 'ICD10_2010'), +('M81.9', 'Osteoporosis, unspecified', 'ICD10_2010'), +('M81.90', 'Osteoporosis, unspecified, multiple sites', 'ICD10_2010'), +('M81.91', 'Osteoporosis, unspecified, shoulder region', 'ICD10_2010'), +('M81.92', 'Osteoporosis, unspecified, upper arm', 'ICD10_2010'), +('M81.93', 'Osteoporosis, unspecified, forearm', 'ICD10_2010'), +('M81.94', 'Osteoporosis, unspecified, hand', 'ICD10_2010'), +('M81.95', 'Osteoporosis, unspecified, pelvic and thigh', 'ICD10_2010'), +('M81.96', 'Osteoporosis, unspecified, lower leg', 'ICD10_2010'), +('M81.97', 'Osteoporosis, unspecified, ankle and foot', 'ICD10_2010'), +('M81.98', 'Osteoporosis, unspecified, other site', 'ICD10_2010'), +('M81.99', 'Osteoporosis, unspecified, site unspecified', 'ICD10_2010'), +('M82', 'Osteoporosis in diseases classified elsewhere', 'ICD10_2010'), +('M82.0', 'Osteoporosis in multiple myelomatosis', 'ICD10_2010'), +('M82.00', 'Osteoporosis in multiple myelomatosis, multiple sites', 'ICD10_2010'), +('M82.01', 'Osteoporosis in multiple myelomatosis, shoulder region', 'ICD10_2010'), +('M82.02', 'Osteoporosis in multiple myelomatosis, upper arm', 'ICD10_2010'), +('M82.03', 'Osteoporosis in multiple myelomatosis, forearm', 'ICD10_2010'), +('M82.04', 'Osteoporosis in multiple myelomatosis, hand', 'ICD10_2010'), +('M82.05', 'Osteoporosis in multiple myelomatosis, pelvic and thigh', 'ICD10_2010'), +('M82.06', 'Osteoporosis in multiple myelomatosis, lower leg', 'ICD10_2010'), +('M82.07', 'Osteoporosis in multiple myelomatosis, ankle and foot', 'ICD10_2010'), +('M82.08', 'Osteoporosis in multiple myelomatosis, other site', 'ICD10_2010'), +('M82.09', 'Osteoporosis in multiple myelomatosis, site unspecified', 'ICD10_2010'), +('M82.1', 'Osteoporosis in endocrine disorders', 'ICD10_2010'), +('M82.10', 'Osteoporosis in endocrine disorders, multiple sites', 'ICD10_2010'), +('M82.11', 'Osteoporosis in endocrine disorders, shoulder region', 'ICD10_2010'), +('M82.12', 'Osteoporosis in endocrine disorders, upper arm', 'ICD10_2010'), +('M82.13', 'Osteoporosis in endocrine disorders, forearm', 'ICD10_2010'), +('M82.14', 'Osteoporosis in endocrine disorders, hand', 'ICD10_2010'), +('M82.15', 'Osteoporosis in endocrine disorders, pelvic and thigh', 'ICD10_2010'), +('M82.16', 'Osteoporosis in endocrine disorders, lower leg', 'ICD10_2010'), +('M82.17', 'Osteoporosis in endocrine disorders, ankle and foot', 'ICD10_2010'), +('M82.18', 'Osteoporosis in endocrine disorders, other site', 'ICD10_2010'), +('M82.19', 'Osteoporosis in endocrine disorders, site unspecified', 'ICD10_2010'), +('M82.8', 'Osteoporosis in other diseases classified elsewhere', 'ICD10_2010'), +('M82.80', 'Osteoporosis in other diseases classified elsewhere, multiple sites', 'ICD10_2010'), +('M82.81', 'Osteoporosis in other diseases classified elsewhere, shoulder region', 'ICD10_2010'), +('M82.82', 'Osteoporosis in other diseases classified elsewhere, upper arm', 'ICD10_2010'), +('M82.83', 'Osteoporosis in other diseases classified elsewhere, forearm', 'ICD10_2010'), +('M82.84', 'Osteoporosis in other diseases classified elsewhere, hand', 'ICD10_2010'), +('M82.85', 'Osteoporosis in other diseases classified elsewhere, pelvic and thigh', 'ICD10_2010'), +('M82.86', 'Osteoporosis in other diseases classified elsewhere, lower leg', 'ICD10_2010'), +('M82.87', 'Osteoporosis in other diseases classified elsewhere, ankle and foot', 'ICD10_2010'), +('M82.88', 'Osteoporosis in other diseases classified elsewhere, other site', 'ICD10_2010'), +('M82.89', 'Osteoporosis in other diseases classified elsewhere, site unspecified', 'ICD10_2010'), +('M83', 'Adult osteomalacia', 'ICD10_2010'), +('M83.0', 'Puerperal osteomalacia', 'ICD10_2010'), +('M83.00', 'Puerperal osteomalacia, multiple sites', 'ICD10_2010'), +('M83.01', 'Puerperal osteomalacia, shoulder region', 'ICD10_2010'), +('M83.02', 'Puerperal osteomalacia, upper arm', 'ICD10_2010'), +('M83.03', 'Puerperal osteomalacia, forearm', 'ICD10_2010'), +('M83.04', 'Puerperal osteomalacia, hand', 'ICD10_2010'), +('M83.05', 'Puerperal osteomalacia, pelvic and thigh', 'ICD10_2010'), +('M83.06', 'Puerperal osteomalacia, lower leg', 'ICD10_2010'), +('M83.07', 'Puerperal osteomalacia, ankle and foot', 'ICD10_2010'), +('M83.08', 'Puerperal osteomalacia, other site', 'ICD10_2010'), +('M83.09', 'Puerperal osteomalacia, site unspecified', 'ICD10_2010'), +('M83.1', 'Senile osteomalacia', 'ICD10_2010'), +('M83.10', 'Senile osteomalacia, multiple sites', 'ICD10_2010'), +('M83.11', 'Senile osteomalacia, shoulder region', 'ICD10_2010'), +('M83.12', 'Senile osteomalacia, upper arm', 'ICD10_2010'), +('M83.13', 'Senile osteomalacia, forearm', 'ICD10_2010'), +('M83.14', 'Senile osteomalacia, hand', 'ICD10_2010'), +('M83.15', 'Senile osteomalacia, pelvic and thigh', 'ICD10_2010'), +('M83.16', 'Senile osteomalacia, lower leg', 'ICD10_2010'), +('M83.17', 'Senile osteomalacia, ankle and foot', 'ICD10_2010'), +('M83.18', 'Senile osteomalacia, other site', 'ICD10_2010'), +('M83.19', 'Senile osteomalacia, site unspecified', 'ICD10_2010'), +('M83.2', 'Adult osteomalacia due to malabsorption', 'ICD10_2010'), +('M83.20', 'Adult osteomalacia due to malabsorption, multiple sites', 'ICD10_2010'), +('M83.21', 'Adult osteomalacia due to malabsorption, shoulder region', 'ICD10_2010'), +('M83.22', 'Adult osteomalacia due to malabsorption, upper arm', 'ICD10_2010'), +('M83.23', 'Adult osteomalacia due to malabsorption, forearm', 'ICD10_2010'), +('M83.24', 'Adult osteomalacia due to malabsorption, hand', 'ICD10_2010'), +('M83.25', 'Adult osteomalacia due to malabsorption, pelvic and thigh', 'ICD10_2010'), +('M83.26', 'Adult osteomalacia due to malabsorption, lower leg', 'ICD10_2010'), +('M83.27', 'Adult osteomalacia due to malabsorption, ankle and foot', 'ICD10_2010'), +('M83.28', 'Adult osteomalacia due to malabsorption, other site', 'ICD10_2010'), +('M83.29', 'Adult osteomalacia due to malabsorption, site unspecified', 'ICD10_2010'), +('M83.3', 'Adult osteomalacia due to malnutrition', 'ICD10_2010'), +('M83.30', 'Adult osteomalacia due to malnutrition, multiple sites', 'ICD10_2010'), +('M83.31', 'Adult osteomalacia due to malnutrition, shoulder region', 'ICD10_2010'), +('M83.32', 'Adult osteomalacia due to malnutrition, upper arm', 'ICD10_2010'), +('M83.33', 'Adult osteomalacia due to malnutrition, forearm', 'ICD10_2010'), +('M83.34', 'Adult osteomalacia due to malnutrition, hand', 'ICD10_2010'), +('M83.35', 'Adult osteomalacia due to malnutrition, pelvic and thigh', 'ICD10_2010'), +('M83.36', 'Adult osteomalacia due to malnutrition, lower leg', 'ICD10_2010'), +('M83.37', 'Adult osteomalacia due to malnutrition, ankle and foot', 'ICD10_2010'), +('M83.38', 'Adult osteomalacia due to malnutrition, other site', 'ICD10_2010'), +('M83.39', 'Adult osteomalacia due to malnutrition, site unspecified', 'ICD10_2010'), +('M83.4', 'Aluminium bone disease', 'ICD10_2010'), +('M83.40', 'Aluminium bone disease, multiple sites', 'ICD10_2010'), +('M83.41', 'Aluminium bone disease, shoulder region', 'ICD10_2010'), +('M83.42', 'Aluminium bone disease, upper arm', 'ICD10_2010'), +('M83.43', 'Aluminium bone disease, forearm', 'ICD10_2010'), +('M83.44', 'Aluminium bone disease, hand', 'ICD10_2010'), +('M83.45', 'Aluminium bone disease, pelvic and thigh', 'ICD10_2010'), +('M83.46', 'Aluminium bone disease, lower leg', 'ICD10_2010'), +('M83.47', 'Aluminium bone disease, ankle and foot', 'ICD10_2010'), +('M83.48', 'Aluminium bone disease, other site', 'ICD10_2010'), +('M83.49', 'Aluminium bone disease, site unspecified', 'ICD10_2010'), +('M83.5', 'Other drug-induced osteomalacia in adults', 'ICD10_2010'), +('M83.50', 'Other drug-induced osteomalacia in adults, multiple sites', 'ICD10_2010'), +('M83.51', 'Other drug-induced osteomalacia in adults, shoulder region', 'ICD10_2010'), +('M83.52', 'Other drug-induced osteomalacia in adults, upper arm', 'ICD10_2010'), +('M83.53', 'Other drug-induced osteomalacia in adults, forearm', 'ICD10_2010'), +('M83.54', 'Other drug-induced osteomalacia in adults, hand', 'ICD10_2010'), +('M83.55', 'Other drug-induced osteomalacia in adults, pelvic and thigh', 'ICD10_2010'), +('M83.56', 'Other drug-induced osteomalacia in adults, lower leg', 'ICD10_2010'), +('M83.57', 'Other drug-induced osteomalacia in adults, ankle and foot', 'ICD10_2010'), +('M83.58', 'Other drug-induced osteomalacia in adults, other site', 'ICD10_2010'), +('M83.59', 'Other drug-induced osteomalacia in adults, site unspecified', 'ICD10_2010'), +('M83.8', 'Other adult osteomalacia', 'ICD10_2010'), +('M83.80', 'Other adult osteomalacia, multiple sites', 'ICD10_2010'), +('M83.81', 'Other adult osteomalacia, shoulder region', 'ICD10_2010'), +('M83.82', 'Other adult osteomalacia, upper arm', 'ICD10_2010'), +('M83.83', 'Other adult osteomalacia, forearm', 'ICD10_2010'), +('M83.84', 'Other adult osteomalacia, hand', 'ICD10_2010'), +('M83.85', 'Other adult osteomalacia, pelvic and thigh', 'ICD10_2010'), +('M83.86', 'Other adult osteomalacia, lower leg', 'ICD10_2010'), +('M83.87', 'Other adult osteomalacia, ankle and foot', 'ICD10_2010'); +INSERT INTO `icd10` (`ID_ICD10`, `Diagnosa`, `Versi_ICD10`) VALUES +('M83.88', 'Other adult osteomalacia, other site', 'ICD10_2010'), +('M83.89', 'Other adult osteomalacia, site unspecified', 'ICD10_2010'), +('M83.9', 'Adult osteomalacia, unspecified', 'ICD10_2010'), +('M83.90', 'Adult osteomalacia, unspecified, multiple sites', 'ICD10_2010'), +('M83.91', 'Adult osteomalacia, unspecified, shoulder region', 'ICD10_2010'), +('M83.92', 'Adult osteomalacia, unspecified, upper arm', 'ICD10_2010'), +('M83.93', 'Adult osteomalacia, unspecified, forearm', 'ICD10_2010'), +('M83.94', 'Adult osteomalacia, unspecified, hand', 'ICD10_2010'), +('M83.95', 'Adult osteomalacia, unspecified, pelvic and thigh', 'ICD10_2010'), +('M83.96', 'Adult osteomalacia, unspecified, lower leg', 'ICD10_2010'), +('M83.97', 'Adult osteomalacia, unspecified, ankle and foot', 'ICD10_2010'), +('M83.98', 'Adult osteomalacia, unspecified, other site', 'ICD10_2010'), +('M83.99', 'Adult osteomalacia, unspecified, site unspecified', 'ICD10_2010'), +('M84', 'Disorders of continuity of bone', 'ICD10_2010'), +('M84.0', 'Malunion of fracture', 'ICD10_2010'), +('M84.00', 'Malunion of fracture, multiple sites', 'ICD10_2010'), +('M84.01', 'Malunion of fracture, shoulder region', 'ICD10_2010'), +('M84.02', 'Malunion of fracture, upper arm', 'ICD10_2010'), +('M84.03', 'Malunion of fracture, forearm', 'ICD10_2010'), +('M84.04', 'Malunion of fracture, hand', 'ICD10_2010'), +('M84.05', 'Malunion of fracture, pelvic and thigh', 'ICD10_2010'), +('M84.06', 'Malunion of fracture, lower leg', 'ICD10_2010'), +('M84.07', 'Malunion of fracture, ankle and foot', 'ICD10_2010'), +('M84.08', 'Malunion of fracture, other site', 'ICD10_2010'), +('M84.09', 'Malunion of fracture, site unspecified', 'ICD10_2010'), +('M84.1', 'Nonunion of fracture [pseudarthrosis]', 'ICD10_2010'), +('M84.10', 'Nonunion of fracture [pseudarthrosis], multiple sites', 'ICD10_2010'), +('M84.11', 'Nonunion of fracture [pseudarthrosis], shoulder region', 'ICD10_2010'), +('M84.12', 'Nonunion of fracture [pseudarthrosis], upper arm', 'ICD10_2010'), +('M84.13', 'Nonunion of fracture [pseudarthrosis], forearm', 'ICD10_2010'), +('M84.14', 'Nonunion of fracture [pseudarthrosis], hand', 'ICD10_2010'), +('M84.15', 'Nonunion of fracture [pseudarthrosis], pelvic and thigh', 'ICD10_2010'), +('M84.16', 'Nonunion of fracture [pseudarthrosis], lower leg', 'ICD10_2010'), +('M84.17', 'Nonunion of fracture [pseudarthrosis], ankle and foot', 'ICD10_2010'), +('M84.18', 'Nonunion of fracture [pseudarthrosis], other site', 'ICD10_2010'), +('M84.19', 'Nonunion of fracture [pseudarthrosis], site unspecified', 'ICD10_2010'), +('M84.2', 'Delayed union of fracture', 'ICD10_2010'), +('M84.20', 'Delayed union of fracture, multiple sites', 'ICD10_2010'), +('M84.21', 'Delayed union of fracture, shoulder region', 'ICD10_2010'), +('M84.22', 'Delayed union of fracture, upper arm', 'ICD10_2010'), +('M84.23', 'Delayed union of fracture, forearm', 'ICD10_2010'), +('M84.24', 'Delayed union of fracture, hand', 'ICD10_2010'), +('M84.25', 'Delayed union of fracture, pelvic and thigh', 'ICD10_2010'), +('M84.26', 'Delayed union of fracture, lower leg', 'ICD10_2010'), +('M84.27', 'Delayed union of fracture, ankle and foot', 'ICD10_2010'), +('M84.28', 'Delayed union of fracture, other site', 'ICD10_2010'), +('M84.29', 'Delayed union of fracture, site unspecified', 'ICD10_2010'), +('M84.3', 'Stress fracture, not elsewhere classified', 'ICD10_2010'), +('M84.30', 'Stress fracture, not elsewhere classified, multiple sites', 'ICD10_2010'), +('M84.31', 'Stress fracture, not elsewhere classified, shoulder region', 'ICD10_2010'), +('M84.32', 'Stress fracture, not elsewhere classified, upper arm', 'ICD10_2010'), +('M84.33', 'Stress fracture, not elsewhere classified, forearm', 'ICD10_2010'), +('M84.34', 'Stress fracture, not elsewhere classified, hand', 'ICD10_2010'), +('M84.35', 'Stress fracture, not elsewhere classified, pelvic and thigh', 'ICD10_2010'), +('M84.36', 'Stress fracture, not elsewhere classified, lower leg', 'ICD10_2010'), +('M84.37', 'Stress fracture, not elsewhere classified, ankle and foot', 'ICD10_2010'), +('M84.38', 'Stress fracture, not elsewhere classified, other site', 'ICD10_2010'), +('M84.39', 'Stress fracture, not elsewhere classified, site unspecified', 'ICD10_2010'), +('M84.4', 'Pathological fracture, not elsewhere classified', 'ICD10_2010'), +('M84.40', 'Pathological fracture, not elsewhere classified, multiple sites', 'ICD10_2010'), +('M84.41', 'Pathological fracture, not elsewhere classified, shoulder region', 'ICD10_2010'), +('M84.42', 'Pathological fracture, not elsewhere classified, upper arm', 'ICD10_2010'), +('M84.43', 'Pathological fracture, not elsewhere classified, forearm', 'ICD10_2010'), +('M84.44', 'Pathological fracture, not elsewhere classified, hand', 'ICD10_2010'), +('M84.45', 'Pathological fracture, not elsewhere classified, pelvic and thigh', 'ICD10_2010'), +('M84.46', 'Pathological fracture, not elsewhere classified, lower leg', 'ICD10_2010'), +('M84.47', 'Pathological fracture, not elsewhere classified, ankle and foot', 'ICD10_2010'), +('M84.48', 'Pathological fracture, not elsewhere classified, other site', 'ICD10_2010'), +('M84.49', 'Pathological fracture, not elsewhere classified, site unspecified', 'ICD10_2010'), +('M84.8', 'Other disorders of continuity of bone', 'ICD10_2010'), +('M84.80', 'Other disorders of continuity of bone, multiple sites', 'ICD10_2010'), +('M84.81', 'Other disorders of continuity of bone, shoulder region', 'ICD10_2010'), +('M84.82', 'Other disorders of continuity of bone, upper arm', 'ICD10_2010'), +('M84.83', 'Other disorders of continuity of bone, forearm', 'ICD10_2010'), +('M84.84', 'Other disorders of continuity of bone, hand', 'ICD10_2010'), +('M84.85', 'Other disorders of continuity of bone, pelvic and thigh', 'ICD10_2010'), +('M84.86', 'Other disorders of continuity of bone, lower leg', 'ICD10_2010'), +('M84.87', 'Other disorders of continuity of bone, ankle and foot', 'ICD10_2010'), +('M84.88', 'Other disorders of continuity of bone, other site', 'ICD10_2010'), +('M84.89', 'Other disorders of continuity of bone, site unspecified', 'ICD10_2010'), +('M84.9', 'Disorder of continuity of bone, unspecified', 'ICD10_2010'), +('M84.90', 'Disorder of continuity of bone, unspecified, multiple sites', 'ICD10_2010'), +('M84.91', 'Disorder of continuity of bone, unspecified, shoulder region', 'ICD10_2010'), +('M84.92', 'Disorder of continuity of bone, unspecified, upper arm', 'ICD10_2010'), +('M84.93', 'Disorder of continuity of bone, unspecified, forearm', 'ICD10_2010'), +('M84.94', 'Disorder of continuity of bone, unspecified, hand', 'ICD10_2010'), +('M84.95', 'Disorder of continuity of bone, unspecified, pelvic and thigh', 'ICD10_2010'), +('M84.96', 'Disorder of continuity of bone, unspecified, lower leg', 'ICD10_2010'), +('M84.97', 'Disorder of continuity of bone, unspecified, ankle and foot', 'ICD10_2010'), +('M84.98', 'Disorder of continuity of bone, unspecified, other site', 'ICD10_2010'), +('M84.99', 'Disorder of continuity of bone, unspecified, site unspecified', 'ICD10_2010'), +('M85', 'Other disorders of bone density and structure', 'ICD10_2010'), +('M85.0', 'Fibrous dysplasia (monostotic)', 'ICD10_2010'), +('M85.00', 'Fibrous dysplasia (monostotic), multiple sites', 'ICD10_2010'), +('M85.01', 'Fibrous dysplasia (monostotic), shoulder region', 'ICD10_2010'), +('M85.02', 'Fibrous dysplasia (monostotic), upper arm', 'ICD10_2010'), +('M85.03', 'Fibrous dysplasia (monostotic), forearm', 'ICD10_2010'), +('M85.04', 'Fibrous dysplasia (monostotic), hand', 'ICD10_2010'), +('M85.05', 'Fibrous dysplasia (monostotic), pelvic and thigh', 'ICD10_2010'), +('M85.06', 'Fibrous dysplasia (monostotic), lower leg', 'ICD10_2010'), +('M85.07', 'Fibrous dysplasia (monostotic), ankle and foot', 'ICD10_2010'), +('M85.08', 'Fibrous dysplasia (monostotic), other site', 'ICD10_2010'), +('M85.09', 'Fibrous dysplasia (monostotic), site unspecified', 'ICD10_2010'), +('M85.1', 'Skeletal fluorosis', 'ICD10_2010'), +('M85.10', 'Skeletal fluorosis, multiple sites', 'ICD10_2010'), +('M85.11', 'Skeletal fluorosis, shoulder region', 'ICD10_2010'), +('M85.12', 'Skeletal fluorosis, upper arm', 'ICD10_2010'), +('M85.13', 'Skeletal fluorosis, forearm', 'ICD10_2010'), +('M85.14', 'Skeletal fluorosis, hand', 'ICD10_2010'), +('M85.15', 'Skeletal fluorosis, pelvic and thigh', 'ICD10_2010'), +('M85.16', 'Skeletal fluorosis, lower leg', 'ICD10_2010'), +('M85.17', 'Skeletal fluorosis, ankle and foot', 'ICD10_2010'), +('M85.18', 'Skeletal fluorosis, other site', 'ICD10_2010'), +('M85.19', 'Skeletal fluorosis, site unspecified', 'ICD10_2010'), +('M85.2', 'Hyperostosis of skull', 'ICD10_2010'), +('M85.20', 'Hyperostosis of skull, multiple sites', 'ICD10_2010'), +('M85.21', 'Hyperostosis of skull, shoulder region', 'ICD10_2010'), +('M85.22', 'Hyperostosis of skull, upper arm', 'ICD10_2010'), +('M85.23', 'Hyperostosis of skull, forearm', 'ICD10_2010'), +('M85.24', 'Hyperostosis of skull, hand', 'ICD10_2010'), +('M85.25', 'Hyperostosis of skull, pelvic region and thigh', 'ICD10_2010'), +('M85.26', 'Hyperostosis of skull, lower leg', 'ICD10_2010'), +('M85.27', 'Hyperostosis of skull, ankle and foot', 'ICD10_2010'), +('M85.28', 'Hyperostosis of skull, other', 'ICD10_2010'), +('M85.29', 'Hyperostosis of skull, site unspecified', 'ICD10_2010'), +('M85.3', 'Osteitis condensans', 'ICD10_2010'), +('M85.30', 'Osteitis condensans, multiple sites', 'ICD10_2010'), +('M85.31', 'Osteitis condensans, shoulder region', 'ICD10_2010'), +('M85.32', 'Osteitis condensans, upper arm', 'ICD10_2010'), +('M85.33', 'Osteitis condensans, forearm', 'ICD10_2010'), +('M85.34', 'Osteitis condensans, hand', 'ICD10_2010'), +('M85.35', 'Osteitis condensans, pelvic and thigh', 'ICD10_2010'), +('M85.36', 'Osteitis condensans, lower leg', 'ICD10_2010'), +('M85.37', 'Osteitis condensans, ankle and foot', 'ICD10_2010'), +('M85.38', 'Osteitis condensans, other site', 'ICD10_2010'), +('M85.39', 'Osteitis condensans, site unspecified', 'ICD10_2010'), +('M85.4', 'Solitary bone cyst', 'ICD10_2010'), +('M85.40', 'Solitary bone cyst, multiple sites', 'ICD10_2010'), +('M85.41', 'Solitary bone cyst, shoulder region', 'ICD10_2010'), +('M85.42', 'Solitary bone cyst, upper arm', 'ICD10_2010'), +('M85.43', 'Solitary bone cyst, forearm', 'ICD10_2010'), +('M85.44', 'Solitary bone cyst, hand', 'ICD10_2010'), +('M85.45', 'Solitary bone cyst, pelvic and thigh', 'ICD10_2010'), +('M85.46', 'Solitary bone cyst, lower leg', 'ICD10_2010'), +('M85.47', 'Solitary bone cyst, ankle and foot', 'ICD10_2010'), +('M85.48', 'Solitary bone cyst, other site', 'ICD10_2010'), +('M85.49', 'Solitary bone cyst, site unspecified', 'ICD10_2010'), +('M85.5', 'Aneurysmal bone cyst', 'ICD10_2010'), +('M85.50', 'Aneurysmal bone cyst, multiple sites', 'ICD10_2010'), +('M85.51', 'Aneurysmal bone cyst, shoulder region', 'ICD10_2010'), +('M85.52', 'Aneurysmal bone cyst, upper arm', 'ICD10_2010'), +('M85.53', 'Aneurysmal bone cyst, forearm', 'ICD10_2010'), +('M85.54', 'Aneurysmal bone cyst, hand', 'ICD10_2010'), +('M85.55', 'Aneurysmal bone cyst, pelvic and thigh', 'ICD10_2010'), +('M85.56', 'Aneurysmal bone cyst, lower leg', 'ICD10_2010'), +('M85.57', 'Aneurysmal bone cyst, ankle and foot', 'ICD10_2010'), +('M85.58', 'Aneurysmal bone cyst, other site', 'ICD10_2010'), +('M85.59', 'Aneurysmal bone cyst, site unspecified', 'ICD10_2010'), +('M85.6', 'Other cyst of bone', 'ICD10_2010'), +('M85.60', 'Other cyst of bone, multiple sites', 'ICD10_2010'), +('M85.61', 'Other cyst of bone, shoulder region', 'ICD10_2010'), +('M85.62', 'Other cyst of bone, upper arm', 'ICD10_2010'), +('M85.63', 'Other cyst of bone, forearm', 'ICD10_2010'), +('M85.64', 'Other cyst of bone, hand', 'ICD10_2010'), +('M85.65', 'Other cyst of bone, pelvic and thigh', 'ICD10_2010'), +('M85.66', 'Other cyst of bone, lower leg', 'ICD10_2010'), +('M85.67', 'Other cyst of bone, ankle and foot', 'ICD10_2010'), +('M85.68', 'Other cyst of bone, other site', 'ICD10_2010'), +('M85.69', 'Other cyst of bone, site unspecified', 'ICD10_2010'), +('M85.8', 'Other specified disorders of bone density and structure', 'ICD10_2010'), +('M85.80', 'Other specified disorders of bone density and structure, multiple sites', 'ICD10_2010'), +('M85.81', 'Other specified disorders of bone density and structure, shoulder region', 'ICD10_2010'), +('M85.82', 'Other specified disorders of bone density and structure, upper arm', 'ICD10_2010'), +('M85.83', 'Other specified disorders of bone density and structure, forearm', 'ICD10_2010'), +('M85.84', 'Other specified disorders of bone density and structure, hand', 'ICD10_2010'), +('M85.85', 'Other specified disorders of bone density and structure, pelvic and thigh', 'ICD10_2010'), +('M85.86', 'Other specified disorders of bone density and structure, lower leg', 'ICD10_2010'), +('M85.87', 'Other specified disorders of bone density and structure, ankle and foot', 'ICD10_2010'), +('M85.88', 'Other specified disorders of bone density and structure, other site', 'ICD10_2010'), +('M85.89', 'Other specified disorders of bone density and structure, site unspecified', 'ICD10_2010'), +('M85.9', 'Disorder of bone density and structure, unspecified', 'ICD10_2010'), +('M85.90', 'Disorder of bone density and structure, unspecified, multiple sites', 'ICD10_2010'), +('M85.91', 'Disorder of bone density and structure, unspecified, shoulder region', 'ICD10_2010'), +('M85.92', 'Disorder of bone density and structure, unspecified, upper arm', 'ICD10_2010'), +('M85.93', 'Disorder of bone density and structure, unspecified, forearm', 'ICD10_2010'), +('M85.94', 'Disorder of bone density and structure, unspecified, hand', 'ICD10_2010'), +('M85.95', 'Disorder of bone density and structure, unspecified, pelvic and thigh', 'ICD10_2010'), +('M85.96', 'Disorder of bone density and structure, unspecified, lower leg', 'ICD10_2010'), +('M85.97', 'Disorder of bone density and structure, unspecified, ankle and foot', 'ICD10_2010'), +('M85.98', 'Disorder of bone density and structure, unspecified, other site', 'ICD10_2010'), +('M85.99', 'Disorder of bone density and structure, unspecified, site unspecified', 'ICD10_2010'), +('M86', 'Osteomyelitis', 'ICD10_2010'), +('M86.0', 'Acute haematogenous osteomyelitis', 'ICD10_2010'), +('M86.00', 'Acute haematogenous osteomyelitis, multiple sites', 'ICD10_2010'), +('M86.01', 'Acute haematogenous osteomyelitis, shoulder region', 'ICD10_2010'), +('M86.02', 'Acute haematogenous osteomyelitis, upper arm', 'ICD10_2010'), +('M86.03', 'Acute haematogenous osteomyelitis, forearm', 'ICD10_2010'), +('M86.04', 'Acute haematogenous osteomyelitis, hand', 'ICD10_2010'), +('M86.05', 'Acute haematogenous osteomyelitis, pelvic and thigh', 'ICD10_2010'), +('M86.06', 'Acute haematogenous osteomyelitis, lower leg', 'ICD10_2010'), +('M86.07', 'Acute haematogenous osteomyelitis, ankle and foot', 'ICD10_2010'), +('M86.08', 'Acute haematogenous osteomyelitis, other site', 'ICD10_2010'), +('M86.09', 'Acute haematogenous osteomyelitis, site unspecified', 'ICD10_2010'), +('M86.1', 'Other acute osteomyelitis', 'ICD10_2010'), +('M86.10', 'Other acute osteomyelitis, multiple sites', 'ICD10_2010'), +('M86.11', 'Other acute osteomyelitis, shoulder region', 'ICD10_2010'), +('M86.12', 'Other acute osteomyelitis, upper arm', 'ICD10_2010'), +('M86.13', 'Other acute osteomyelitis, forearm', 'ICD10_2010'), +('M86.14', 'Other acute osteomyelitis, hand', 'ICD10_2010'), +('M86.15', 'Other acute osteomyelitis, pelvic and thigh', 'ICD10_2010'), +('M86.16', 'Other acute osteomyelitis, lower leg', 'ICD10_2010'), +('M86.17', 'Other acute osteomyelitis, ankle and foot', 'ICD10_2010'), +('M86.18', 'Other acute osteomyelitis, other site', 'ICD10_2010'), +('M86.19', 'Other acute osteomyelitis, site unspecified', 'ICD10_2010'), +('M86.2', 'Subacute osteomyelitis', 'ICD10_2010'), +('M86.20', 'Subacute osteomyelitis, multiple sites', 'ICD10_2010'), +('M86.21', 'Subacute osteomyelitis, shoulder region', 'ICD10_2010'), +('M86.22', 'Subacute osteomyelitis, upper arm', 'ICD10_2010'), +('M86.23', 'Subacute osteomyelitis, forearm', 'ICD10_2010'), +('M86.24', 'Subacute osteomyelitis, hand', 'ICD10_2010'), +('M86.25', 'Subacute osteomyelitis, pelvic and thigh', 'ICD10_2010'), +('M86.26', 'Subacute osteomyelitis, lower leg', 'ICD10_2010'), +('M86.27', 'Subacute osteomyelitis, ankle and foot', 'ICD10_2010'), +('M86.28', 'Subacute osteomyelitis, other site', 'ICD10_2010'), +('M86.29', 'Subacute osteomyelitis, site unspecified', 'ICD10_2010'), +('M86.3', 'Chronic multifocal osteomyelitis', 'ICD10_2010'), +('M86.30', 'Chronic multifocal osteomyelitis, multiple sites', 'ICD10_2010'), +('M86.31', 'Chronic multifocal osteomyelitis, shoulder region', 'ICD10_2010'), +('M86.32', 'Chronic multifocal osteomyelitis, upper arm', 'ICD10_2010'), +('M86.33', 'Chronic multifocal osteomyelitis, forearm', 'ICD10_2010'), +('M86.34', 'Chronic multifocal osteomyelitis, hand', 'ICD10_2010'), +('M86.35', 'Chronic multifocal osteomyelitis, pelvic and thigh', 'ICD10_2010'), +('M86.36', 'Chronic multifocal osteomyelitis, lower leg', 'ICD10_2010'), +('M86.37', 'Chronic multifocal osteomyelitis, ankle and foot', 'ICD10_2010'), +('M86.38', 'Chronic multifocal osteomyelitis, other site', 'ICD10_2010'), +('M86.39', 'Chronic multifocal osteomyelitis, site unspecified', 'ICD10_2010'), +('M86.4', 'Chronic osteomyelitis with draining sinus', 'ICD10_2010'), +('M86.40', 'Chronic osteomyelitis with draining sinus, multiple sites', 'ICD10_2010'), +('M86.41', 'Chronic osteomyelitis with draining sinus, shoulder region', 'ICD10_2010'), +('M86.42', 'Chronic osteomyelitis with draining sinus, upper arm', 'ICD10_2010'), +('M86.43', 'Chronic osteomyelitis with draining sinus, forearm', 'ICD10_2010'), +('M86.44', 'Chronic osteomyelitis with draining sinus, hand', 'ICD10_2010'), +('M86.45', 'Chronic osteomyelitis with draining sinus, pelvic and thigh', 'ICD10_2010'), +('M86.46', 'Chronic osteomyelitis with draining sinus, lower leg', 'ICD10_2010'), +('M86.47', 'Chronic osteomyelitis with draining sinus, ankle and foot', 'ICD10_2010'), +('M86.48', 'Chronic osteomyelitis with draining sinus, other site', 'ICD10_2010'), +('M86.49', 'Chronic osteomyelitis with draining sinus, site unspecified', 'ICD10_2010'), +('M86.5', 'Other chronic haematogenous osteomyelitis', 'ICD10_2010'), +('M86.50', 'Other chronic haematogenous osteomyelitis, multiple sites', 'ICD10_2010'), +('M86.51', 'Other chronic haematogenous osteomyelitis, shoulder region', 'ICD10_2010'), +('M86.52', 'Other chronic haematogenous osteomyelitis, upper arm', 'ICD10_2010'), +('M86.53', 'Other chronic haematogenous osteomyelitis, forearm', 'ICD10_2010'), +('M86.54', 'Other chronic haematogenous osteomyelitis, hand', 'ICD10_2010'), +('M86.55', 'Other chronic haematogenous osteomyelitis, pelvic and thigh', 'ICD10_2010'), +('M86.56', 'Other chronic haematogenous osteomyelitis, lower leg', 'ICD10_2010'), +('M86.57', 'Other chronic haematogenous osteomyelitis, ankle and foot', 'ICD10_2010'), +('M86.58', 'Other chronic haematogenous osteomyelitis, other site', 'ICD10_2010'), +('M86.59', 'Other chronic haematogenous osteomyelitis, site unspecified', 'ICD10_2010'), +('M86.6', 'Other chronic osteomyelitis', 'ICD10_2010'), +('M86.60', 'Other chronic osteomyelitis, multiple sites', 'ICD10_2010'), +('M86.61', 'Other chronic osteomyelitis, shoulder region', 'ICD10_2010'), +('M86.62', 'Other chronic osteomyelitis, upper arm', 'ICD10_2010'), +('M86.63', 'Other chronic osteomyelitis, forearm', 'ICD10_2010'), +('M86.64', 'Other chronic osteomyelitis, hand', 'ICD10_2010'), +('M86.65', 'Other chronic osteomyelitis, pelvic and thigh', 'ICD10_2010'), +('M86.66', 'Other chronic osteomyelitis, lower leg', 'ICD10_2010'), +('M86.67', 'Other chronic osteomyelitis, ankle and foot', 'ICD10_2010'), +('M86.68', 'Other chronic osteomyelitis, other site', 'ICD10_2010'), +('M86.69', 'Other chronic osteomyelitis, site unspecified', 'ICD10_2010'), +('M86.8', 'Other osteomyelitis', 'ICD10_2010'), +('M86.80', 'Other osteomyelitis, multiple sites', 'ICD10_2010'), +('M86.81', 'Other osteomyelitis, shoulder region', 'ICD10_2010'), +('M86.82', 'Other osteomyelitis, upper arm', 'ICD10_2010'), +('M86.83', 'Other osteomyelitis, forearm', 'ICD10_2010'), +('M86.84', 'Other osteomyelitis, hand', 'ICD10_2010'), +('M86.85', 'Other osteomyelitis, pelvic and thigh', 'ICD10_2010'), +('M86.86', 'Other osteomyelitis, lower leg', 'ICD10_2010'), +('M86.87', 'Other osteomyelitis, ankle and foot', 'ICD10_2010'), +('M86.88', 'Other osteomyelitis, other site', 'ICD10_2010'), +('M86.89', 'Other osteomyelitis, site unspecified', 'ICD10_2010'), +('M86.9', 'Osteomyelitis, unspecified', 'ICD10_2010'), +('M86.90', 'Osteomyelitis, unspecified, multiple sites', 'ICD10_2010'), +('M86.91', 'Osteomyelitis, unspecified, shoulder region', 'ICD10_2010'), +('M86.92', 'Osteomyelitis, unspecified, upper arm', 'ICD10_2010'), +('M86.93', 'Osteomyelitis, unspecified, forearm', 'ICD10_2010'), +('M86.94', 'Osteomyelitis, unspecified, hand', 'ICD10_2010'), +('M86.95', 'Osteomyelitis, unspecified, pelvic and thigh', 'ICD10_2010'), +('M86.96', 'Osteomyelitis, unspecified, lower leg', 'ICD10_2010'), +('M86.97', 'Osteomyelitis, unspecified, ankle and foot', 'ICD10_2010'), +('M86.98', 'Osteomyelitis, unspecified, other site', 'ICD10_2010'), +('M86.99', 'Osteomyelitis, unspecified, site unspecified', 'ICD10_2010'), +('M87', 'Osteonecrosis', 'ICD10_2010'), +('M87.0', 'Idiopathic aseptic necrosis of bone', 'ICD10_2010'), +('M87.00', 'Idiopathic aseptic necrosis of bone, multiple sites', 'ICD10_2010'), +('M87.01', 'Idiopathic aseptic necrosis of bone, shoulder region', 'ICD10_2010'), +('M87.02', 'Idiopathic aseptic necrosis of bone, upper arm', 'ICD10_2010'), +('M87.03', 'Idiopathic aseptic necrosis of bone, forearm', 'ICD10_2010'), +('M87.04', 'Idiopathic aseptic necrosis of bone, hand', 'ICD10_2010'), +('M87.05', 'Idiopathic aseptic necrosis of bone, pelvic and thigh', 'ICD10_2010'), +('M87.06', 'Idiopathic aseptic necrosis of bone, lower leg', 'ICD10_2010'), +('M87.07', 'Idiopathic aseptic necrosis of bone, ankle and foot', 'ICD10_2010'), +('M87.08', 'Idiopathic aseptic necrosis of bone, other site', 'ICD10_2010'), +('M87.09', 'Idiopathic aseptic necrosis of bone, site unspecified', 'ICD10_2010'), +('M87.1', 'Osteonecrosis due to drugs', 'ICD10_2010'), +('M87.10', 'Osteonecrosis due to drugs, multiple sites', 'ICD10_2010'), +('M87.11', 'Osteonecrosis due to drugs, shoulder region', 'ICD10_2010'), +('M87.12', 'Osteonecrosis due to drugs, upper arm', 'ICD10_2010'), +('M87.13', 'Osteonecrosis due to drugs, forearm', 'ICD10_2010'), +('M87.14', 'Osteonecrosis due to drugs, hand', 'ICD10_2010'), +('M87.15', 'Osteonecrosis due to drugs, pelvic and thigh', 'ICD10_2010'), +('M87.16', 'Osteonecrosis due to drugs, lower leg', 'ICD10_2010'), +('M87.17', 'Osteonecrosis due to drugs, ankle and foot', 'ICD10_2010'), +('M87.18', 'Osteonecrosis due to drugs, other site', 'ICD10_2010'), +('M87.19', 'Osteonecrosis due to drugs, site unspecified', 'ICD10_2010'), +('M87.2', 'Osteonecrosis due to previous trauma', 'ICD10_2010'), +('M87.20', 'Osteonecrosis due to previous trauma, multiple sites', 'ICD10_2010'), +('M87.21', 'Osteonecrosis due to previous trauma, shoulder region', 'ICD10_2010'), +('M87.22', 'Osteonecrosis due to previous trauma, upper arm', 'ICD10_2010'), +('M87.23', 'Osteonecrosis due to previous trauma, forearm', 'ICD10_2010'), +('M87.24', 'Osteonecrosis due to previous trauma, hand', 'ICD10_2010'), +('M87.25', 'Osteonecrosis due to previous trauma, pelvic and thigh', 'ICD10_2010'), +('M87.26', 'Osteonecrosis due to previous trauma, lower leg', 'ICD10_2010'), +('M87.27', 'Osteonecrosis due to previous trauma, ankle and foot', 'ICD10_2010'), +('M87.28', 'Osteonecrosis due to previous trauma, other site', 'ICD10_2010'), +('M87.29', 'Osteonecrosis due to previous trauma, site unspecified', 'ICD10_2010'), +('M87.3', 'Other secondary osteonecrosis', 'ICD10_2010'), +('M87.30', 'Other secondary osteonecrosis, multiple sites', 'ICD10_2010'), +('M87.31', 'Other secondary osteonecrosis, shoulder region', 'ICD10_2010'), +('M87.32', 'Other secondary osteonecrosis, upper arm', 'ICD10_2010'), +('M87.33', 'Other secondary osteonecrosis, forearm', 'ICD10_2010'), +('M87.34', 'Other secondary osteonecrosis, hand', 'ICD10_2010'), +('M87.35', 'Other secondary osteonecrosis, pelvic and thigh', 'ICD10_2010'), +('M87.36', 'Other secondary osteonecrosis, lower leg', 'ICD10_2010'), +('M87.37', 'Other secondary osteonecrosis, ankle and foot', 'ICD10_2010'), +('M87.38', 'Other secondary osteonecrosis, other site', 'ICD10_2010'), +('M87.39', 'Other secondary osteonecrosis, site unspecified', 'ICD10_2010'), +('M87.8', 'Other osteonecrosis', 'ICD10_2010'), +('M87.80', 'Other osteonecrosis, multiple sites', 'ICD10_2010'), +('M87.81', 'Other osteonecrosis, shoulder region', 'ICD10_2010'), +('M87.82', 'Other osteonecrosis, upper arm', 'ICD10_2010'), +('M87.83', 'Other osteonecrosis, forearm', 'ICD10_2010'), +('M87.84', 'Other osteonecrosis, hand', 'ICD10_2010'), +('M87.85', 'Other osteonecrosis, pelvic and thigh', 'ICD10_2010'), +('M87.86', 'Other osteonecrosis, lower leg', 'ICD10_2010'), +('M87.87', 'Other osteonecrosis, ankle and foot', 'ICD10_2010'), +('M87.88', 'Other osteonecrosis, other site', 'ICD10_2010'), +('M87.89', 'Other osteonecrosis, site unspecified', 'ICD10_2010'), +('M87.9', 'Osteonecrosis, unspecified', 'ICD10_2010'), +('M87.90', 'Osteonecrosis, unspecified, multiple sites', 'ICD10_2010'), +('M87.91', 'Osteonecrosis, unspecified, shoulder region', 'ICD10_2010'), +('M87.92', 'Osteonecrosis, unspecified, upper arm', 'ICD10_2010'), +('M87.93', 'Osteonecrosis, unspecified, forearm', 'ICD10_2010'), +('M87.94', 'Osteonecrosis, unspecified, hand', 'ICD10_2010'), +('M87.95', 'Osteonecrosis, unspecified, pelvic and thigh', 'ICD10_2010'), +('M87.96', 'Osteonecrosis, unspecified, lower leg', 'ICD10_2010'), +('M87.97', 'Osteonecrosis, unspecified, ankle and foot', 'ICD10_2010'), +('M87.98', 'Osteonecrosis, unspecified, other site', 'ICD10_2010'), +('M87.99', 'Osteonecrosis, unspecified, site unspecified', 'ICD10_2010'), +('M88', 'Paget disease of bone [osteitis deformans]', 'ICD10_2010'), +('M88.0', 'Paget\'s disease of skull', 'ICD10_2010'), +('M88.09', 'Paget\'s disease of skull, site unspecified', 'ICD10_2010'), +('M88.8', 'Paget\'s disease of other bones', 'ICD10_2010'), +('M88.80', 'Paget\'s disease of other bones, multiple sites', 'ICD10_2010'), +('M88.81', 'Paget\'s disease of other bones, shoulder region', 'ICD10_2010'), +('M88.82', 'Paget\'s disease of other bones, upper arm', 'ICD10_2010'), +('M88.83', 'Paget\'s disease of other bones, forearm', 'ICD10_2010'), +('M88.84', 'Paget\'s disease of other bones, hand', 'ICD10_2010'), +('M88.85', 'Paget\'s disease of other bones, pelvic and thigh', 'ICD10_2010'), +('M88.86', 'Paget\'s disease of other bones, lower leg', 'ICD10_2010'), +('M88.87', 'Paget\'s disease of other bones, ankle and foot', 'ICD10_2010'), +('M88.88', 'Paget\'s disease of other bones, other site', 'ICD10_2010'), +('M88.89', 'Paget\'s disease of other bones, site unspecified', 'ICD10_2010'), +('M88.9', 'Paget\'s disease of bone, unspecified', 'ICD10_2010'), +('M88.90', 'Paget\'s disease of bone, unspecified, multiple sites', 'ICD10_2010'), +('M88.91', 'Paget\'s disease of bone, unspecified, shoulder region', 'ICD10_2010'), +('M88.92', 'Paget\'s disease of bone, unspecified, upper arm', 'ICD10_2010'), +('M88.93', 'Paget\'s disease of bone, unspecified, forearm', 'ICD10_2010'), +('M88.94', 'Paget\'s disease of bone, unspecified, hand', 'ICD10_2010'), +('M88.95', 'Paget\'s disease of bone, unspecified, pelvic and thigh', 'ICD10_2010'), +('M88.96', 'Paget\'s disease of bone, unspecified, lower leg', 'ICD10_2010'), +('M88.97', 'Paget\'s disease of bone, unspecified, ankle and foot', 'ICD10_2010'), +('M88.98', 'Paget\'s disease of bone, unspecified, other site', 'ICD10_2010'), +('M88.99', 'Paget\'s disease of bone, unspecified, site unspecified', 'ICD10_2010'), +('M89', 'Other disorders of bone', 'ICD10_2010'), +('M89.0', 'Algoneurodystrophy', 'ICD10_2010'), +('M89.00', 'Algoneurodystrophy, multiple sites', 'ICD10_2010'), +('M89.01', 'Algoneurodystrophy, shoulder region', 'ICD10_2010'), +('M89.02', 'Algoneurodystrophy, upper arm', 'ICD10_2010'), +('M89.03', 'Algoneurodystrophy, forearm', 'ICD10_2010'), +('M89.04', 'Algoneurodystrophy, hand', 'ICD10_2010'), +('M89.05', 'Algoneurodystrophy, pelvic and thigh', 'ICD10_2010'), +('M89.06', 'Algoneurodystrophy, lower leg', 'ICD10_2010'), +('M89.07', 'Algoneurodystrophy, ankle and foot', 'ICD10_2010'), +('M89.08', 'Algoneurodystrophy, other site', 'ICD10_2010'), +('M89.09', 'Algoneurodystrophy, site unspecified', 'ICD10_2010'), +('M89.1', 'Epiphyseal arrest', 'ICD10_2010'), +('M89.10', 'Epiphyseal arrest, multiple sites', 'ICD10_2010'), +('M89.11', 'Epiphyseal arrest, shoulder region', 'ICD10_2010'), +('M89.12', 'Epiphyseal arrest, upper arm', 'ICD10_2010'), +('M89.13', 'Epiphyseal arrest, forearm', 'ICD10_2010'), +('M89.14', 'Epiphyseal arrest, hand', 'ICD10_2010'), +('M89.15', 'Epiphyseal arrest, pelvic and thigh', 'ICD10_2010'), +('M89.16', 'Epiphyseal arrest, lower leg', 'ICD10_2010'), +('M89.17', 'Epiphyseal arrest, ankle and foot', 'ICD10_2010'), +('M89.18', 'Epiphyseal arrest, other site', 'ICD10_2010'), +('M89.19', 'Epiphyseal arrest, site unspecified', 'ICD10_2010'), +('M89.2', 'Other disorders of bone development and growth', 'ICD10_2010'), +('M89.20', 'Other disorders of bone development and growth, multiple sites', 'ICD10_2010'), +('M89.21', 'Other disorders of bone development and growth, shoulder region', 'ICD10_2010'), +('M89.22', 'Other disorders of bone development and growth, upper arm', 'ICD10_2010'), +('M89.23', 'Other disorders of bone development and growth, forearm', 'ICD10_2010'), +('M89.24', 'Other disorders of bone development and growth, hand', 'ICD10_2010'), +('M89.25', 'Other disorders of bone development and growth, pelvic and thigh', 'ICD10_2010'), +('M89.26', 'Other disorders of bone development and growth, lower leg', 'ICD10_2010'), +('M89.27', 'Other disorders of bone development and growth, ankle and foot', 'ICD10_2010'), +('M89.28', 'Other disorders of bone development and growth, other site', 'ICD10_2010'), +('M89.29', 'Other disorders of bone development and growth, site unspecified', 'ICD10_2010'), +('M89.3', 'Hypertrophy of bone', 'ICD10_2010'), +('M89.30', 'Hypertrophy of bone, multiple sites', 'ICD10_2010'), +('M89.31', 'Hypertrophy of bone, shoulder region', 'ICD10_2010'), +('M89.32', 'Hypertrophy of bone, upper arm', 'ICD10_2010'), +('M89.33', 'Hypertrophy of bone, forearm', 'ICD10_2010'), +('M89.34', 'Hypertrophy of bone, hand', 'ICD10_2010'), +('M89.35', 'Hypertrophy of bone, pelvic and thigh', 'ICD10_2010'), +('M89.36', 'Hypertrophy of bone, lower leg', 'ICD10_2010'), +('M89.37', 'Hypertrophy of bone, ankle and foot', 'ICD10_2010'), +('M89.38', 'Hypertrophy of bone, other site', 'ICD10_2010'), +('M89.39', 'Hypertrophy of bone, site unspecified', 'ICD10_2010'), +('M89.4', 'Other hypertrophic osteoarthropathy', 'ICD10_2010'), +('M89.40', 'Other hypertrophic osteoarthropathy, multiple sites', 'ICD10_2010'), +('M89.41', 'Other hypertrophic osteoarthropathy, shoulder region', 'ICD10_2010'), +('M89.42', 'Other hypertrophic osteoarthropathy, upper arm', 'ICD10_2010'), +('M89.43', 'Other hypertrophic osteoarthropathy, forearm', 'ICD10_2010'), +('M89.44', 'Other hypertrophic osteoarthropathy, hand', 'ICD10_2010'), +('M89.45', 'Other hypertrophic osteoarthropathy, pelvic and thigh', 'ICD10_2010'), +('M89.46', 'Other hypertrophic osteoarthropathy, lower leg', 'ICD10_2010'), +('M89.47', 'Other hypertrophic osteoarthropathy, ankle and foot', 'ICD10_2010'), +('M89.48', 'Other hypertrophic osteoarthropathy, other site', 'ICD10_2010'), +('M89.49', 'Other hypertrophic osteoarthropathy, site unspecified', 'ICD10_2010'), +('M89.5', 'Osteolysis', 'ICD10_2010'), +('M89.50', 'Osteolysis, multiple sites', 'ICD10_2010'), +('M89.51', 'Osteolysis, shoulder region', 'ICD10_2010'), +('M89.52', 'Osteolysis, upper arm', 'ICD10_2010'), +('M89.53', 'Osteolysis, forearm', 'ICD10_2010'), +('M89.54', 'Osteolysis, hand', 'ICD10_2010'), +('M89.55', 'Osteolysis, pelvic and thigh', 'ICD10_2010'), +('M89.56', 'Osteolysis, lower leg', 'ICD10_2010'), +('M89.57', 'Osteolysis, ankle and foot', 'ICD10_2010'), +('M89.58', 'Osteolysis, other site', 'ICD10_2010'), +('M89.59', 'Osteolysis, site unspecified', 'ICD10_2010'), +('M89.6', 'Osteopathy after poliomyelitis', 'ICD10_2010'), +('M89.60', 'Osteopathy after poliomyelitis, multiple sites', 'ICD10_2010'), +('M89.61', 'Osteopathy after poliomyelitis, shoulder region', 'ICD10_2010'), +('M89.62', 'Osteopathy after poliomyelitis, upper arm', 'ICD10_2010'), +('M89.63', 'Osteopathy after poliomyelitis, forearm', 'ICD10_2010'), +('M89.64', 'Osteopathy after poliomyelitis, hand', 'ICD10_2010'), +('M89.65', 'Osteopathy after poliomyelitis, pelvic and thigh', 'ICD10_2010'), +('M89.66', 'Osteopathy after poliomyelitis, lower leg', 'ICD10_2010'), +('M89.67', 'Osteopathy after poliomyelitis, ankle and foot', 'ICD10_2010'), +('M89.68', 'Osteopathy after poliomyelitis, other site', 'ICD10_2010'), +('M89.69', 'Osteopathy after poliomyelitis, site unspecified', 'ICD10_2010'), +('M89.8', 'Other specified disorders of bone', 'ICD10_2010'), +('M89.80', 'Other specified disorders of bone, multiple sites', 'ICD10_2010'), +('M89.81', 'Other specified disorders of bone, shoulder region', 'ICD10_2010'), +('M89.82', 'Other specified disorders of bone, upper arm', 'ICD10_2010'), +('M89.83', 'Other specified disorders of bone, forearm', 'ICD10_2010'), +('M89.84', 'Other specified disorders of bone, hand', 'ICD10_2010'), +('M89.85', 'Other specified disorders of bone, pelvic and thigh', 'ICD10_2010'), +('M89.86', 'Other specified disorders of bone, lower leg', 'ICD10_2010'), +('M89.87', 'Other specified disorders of bone, ankle and foot', 'ICD10_2010'), +('M89.88', 'Other specified disorders of bone, other site', 'ICD10_2010'), +('M89.89', 'Other specified disorders of bone, site unspecified', 'ICD10_2010'), +('M89.9', 'Disorder of bone, unspecified', 'ICD10_2010'), +('M89.90', 'Disorder of bone, unspecified, multiple sites', 'ICD10_2010'), +('M89.91', 'Disorder of bone, unspecified, shoulder region', 'ICD10_2010'), +('M89.92', 'Disorder of bone, unspecified, upper arm', 'ICD10_2010'), +('M89.93', 'Disorder of bone, unspecified, forearm', 'ICD10_2010'), +('M89.94', 'Disorder of bone, unspecified, hand', 'ICD10_2010'), +('M89.95', 'Disorder of bone, unspecified, pelvic and thigh', 'ICD10_2010'), +('M89.96', 'Disorder of bone, unspecified, lower leg', 'ICD10_2010'), +('M89.97', 'Disorder of bone, unspecified, ankle and foot', 'ICD10_2010'), +('M89.98', 'Disorder of bone, unspecified, other site', 'ICD10_2010'), +('M89.99', 'Disorder of bone, unspecified, site unspecified', 'ICD10_2010'), +('M90', 'Osteopathies in diseases classified elsewhere', 'ICD10_2010'), +('M90.0', 'Tuberculosis of bone', 'ICD10_2010'), +('M90.00', 'Tuberculosis of bone, multiple sites', 'ICD10_2010'), +('M90.01', 'Tuberculosis of bone, shoulder region', 'ICD10_2010'), +('M90.02', 'Tuberculosis of bone, upper arm', 'ICD10_2010'), +('M90.03', 'Tuberculosis of bone, forearm', 'ICD10_2010'), +('M90.04', 'Tuberculosis of bone, hand', 'ICD10_2010'), +('M90.05', 'Tuberculosis of bone, pelvic and thigh', 'ICD10_2010'), +('M90.06', 'Tuberculosis of bone, lower leg', 'ICD10_2010'), +('M90.07', 'Tuberculosis of bone, ankle and foot', 'ICD10_2010'), +('M90.08', 'Tuberculosis of bone, other site', 'ICD10_2010'), +('M90.09', 'Tuberculosis of bone, site unspecified', 'ICD10_2010'), +('M90.1', 'Periostitis in other infectious diseases classified elsewhere', 'ICD10_2010'), +('M90.10', 'Periostitis in other infectious diseases classified elsewhere, multiple sites', 'ICD10_2010'), +('M90.11', 'Periostitis in other infectious diseases classified elsewhere, shoulder region', 'ICD10_2010'), +('M90.12', 'Periostitis in other infectious diseases classified elsewhere, upper arm', 'ICD10_2010'), +('M90.13', 'Periostitis in other infectious diseases classified elsewhere, forearm', 'ICD10_2010'), +('M90.14', 'Periostitis in other infectious diseases classified elsewhere, hand', 'ICD10_2010'), +('M90.15', 'Periostitis in other infectious diseases classified elsewhere, pelvic and thigh', 'ICD10_2010'), +('M90.16', 'Periostitis in other infectious diseases classified elsewhere, lower leg', 'ICD10_2010'), +('M90.17', 'Periostitis in other infectious diseases classified elsewhere, ankle and foot', 'ICD10_2010'), +('M90.18', 'Periostitis in other infectious diseases classified elsewhere, other site', 'ICD10_2010'), +('M90.19', 'Periostitis in other infectious diseases classified elsewhere, site unspecified', 'ICD10_2010'), +('M90.2', 'Osteopathy in other infectious diseases classified elsewhere', 'ICD10_2010'), +('M90.20', 'Osteopathy in other infectious diseases classified elsewhere, multiple sites', 'ICD10_2010'), +('M90.21', 'Osteopathy in other infectious diseases classified elsewhere, shoulder region', 'ICD10_2010'), +('M90.22', 'Osteopathy in other infectious diseases classified elsewhere, upper arm', 'ICD10_2010'), +('M90.23', 'Osteopathy in other infectious diseases classified elsewhere, forearm', 'ICD10_2010'), +('M90.24', 'Osteopathy in other infectious diseases classified elsewhere, hand', 'ICD10_2010'), +('M90.25', 'Osteopathy in other infectious diseases classified elsewhere, pelvic and thigh', 'ICD10_2010'), +('M90.26', 'Osteopathy in other infectious diseases classified elsewhere, lower leg', 'ICD10_2010'), +('M90.27', 'Osteopathy in other infectious diseases classified elsewhere, ankle and foot', 'ICD10_2010'), +('M90.28', 'Osteopathy in other infectious diseases classified elsewhere, other site', 'ICD10_2010'), +('M90.29', 'Osteopathy in other infectious diseases classified elsewhere, site unspecified', 'ICD10_2010'), +('M90.3', 'Osteonecrosis in caisson disease', 'ICD10_2010'), +('M90.30', 'Osteonecrosis in caisson disease, multiple sites', 'ICD10_2010'), +('M90.31', 'Osteonecrosis in caisson disease, shoulder region', 'ICD10_2010'), +('M90.32', 'Osteonecrosis in caisson disease, upper arm', 'ICD10_2010'), +('M90.33', 'Osteonecrosis in caisson disease, forearm', 'ICD10_2010'), +('M90.34', 'Osteonecrosis in caisson disease, hand', 'ICD10_2010'), +('M90.35', 'Osteonecrosis in caisson disease, pelvic and thigh', 'ICD10_2010'), +('M90.36', 'Osteonecrosis in caisson disease, lower leg', 'ICD10_2010'), +('M90.37', 'Osteonecrosis in caisson disease, ankle and foot', 'ICD10_2010'), +('M90.38', 'Osteonecrosis in caisson disease, other site', 'ICD10_2010'), +('M90.39', 'Osteonecrosis in caisson disease, site unspecified', 'ICD10_2010'), +('M90.4', 'Osteonecrosis due to haemoglobinopathy', 'ICD10_2010'), +('M90.40', 'Osteonecrosis due to haemoglobinopathy, multiple sites', 'ICD10_2010'), +('M90.41', 'Osteonecrosis due to haemoglobinopathy, shoulder region', 'ICD10_2010'), +('M90.42', 'Osteonecrosis due to haemoglobinopathy, upper arm', 'ICD10_2010'), +('M90.43', 'Osteonecrosis due to haemoglobinopathy, forearm', 'ICD10_2010'), +('M90.44', 'Osteonecrosis due to haemoglobinopathy, hand', 'ICD10_2010'), +('M90.45', 'Osteonecrosis due to haemoglobinopathy, pelvic and thigh', 'ICD10_2010'), +('M90.46', 'Osteonecrosis due to haemoglobinopathy, lower leg', 'ICD10_2010'), +('M90.47', 'Osteonecrosis due to haemoglobinopathy, ankle and foot', 'ICD10_2010'), +('M90.48', 'Osteonecrosis due to haemoglobinopathy, other site', 'ICD10_2010'), +('M90.49', 'Osteonecrosis due to haemoglobinopathy, site unspecified', 'ICD10_2010'), +('M90.5', 'Osteonecrosis in other diseases classified elsewhere', 'ICD10_2010'), +('M90.50', 'Osteonecrosis in other diseases classified elsewhere, multiple sites', 'ICD10_2010'), +('M90.51', 'Osteonecrosis in other diseases classified elsewhere, shoulder region', 'ICD10_2010'), +('M90.52', 'Osteonecrosis in other diseases classified elsewhere, upper arm', 'ICD10_2010'), +('M90.53', 'Osteonecrosis in other diseases classified elsewhere, forearm', 'ICD10_2010'), +('M90.54', 'Osteonecrosis in other diseases classified elsewhere, hand', 'ICD10_2010'), +('M90.55', 'Osteonecrosis in other diseases classified elsewhere, pelvic and thigh', 'ICD10_2010'), +('M90.56', 'Osteonecrosis in other diseases classified elsewhere, lower leg', 'ICD10_2010'), +('M90.57', 'Osteonecrosis in other diseases classified elsewhere, ankle and foot', 'ICD10_2010'), +('M90.58', 'Osteonecrosis in other diseases classified elsewhere, other site', 'ICD10_2010'), +('M90.59', 'Osteonecrosis in other diseases classified elsewhere, site unspecified', 'ICD10_2010'), +('M90.6', 'Osteitis deformans in neoplastic disease', 'ICD10_2010'), +('M90.60', 'Osteitis deformans in neoplastic disease, multiple sites', 'ICD10_2010'), +('M90.61', 'Osteitis deformans in neoplastic disease, shoulder region', 'ICD10_2010'), +('M90.62', 'Osteitis deformans in neoplastic disease, upper arm', 'ICD10_2010'), +('M90.63', 'Osteitis deformans in neoplastic disease, forearm', 'ICD10_2010'), +('M90.64', 'Osteitis deformans in neoplastic disease, hand', 'ICD10_2010'), +('M90.65', 'Osteitis deformans in neoplastic disease, pelvic and thigh', 'ICD10_2010'), +('M90.66', 'Osteitis deformans in neoplastic disease, lower leg', 'ICD10_2010'), +('M90.67', 'Osteitis deformans in neoplastic disease, ankle and foot', 'ICD10_2010'), +('M90.68', 'Osteitis deformans in neoplastic disease, other site', 'ICD10_2010'), +('M90.69', 'Osteitis deformans in neoplastic disease, site unspecified', 'ICD10_2010'), +('M90.7', 'Fracture of bone in neoplastic disease', 'ICD10_2010'), +('M90.70', 'Fracture of bone in neoplastic disease, multiple sites', 'ICD10_2010'), +('M90.71', 'Fracture of bone in neoplastic disease, shoulder region', 'ICD10_2010'), +('M90.72', 'Fracture of bone in neoplastic disease, upper arm', 'ICD10_2010'), +('M90.73', 'Fracture of bone in neoplastic disease, forearm', 'ICD10_2010'), +('M90.74', 'Fracture of bone in neoplastic disease, hand', 'ICD10_2010'), +('M90.75', 'Fracture of bone in neoplastic disease, pelvic and thigh', 'ICD10_2010'), +('M90.76', 'Fracture of bone in neoplastic disease, lower leg', 'ICD10_2010'), +('M90.77', 'Fracture of bone in neoplastic disease, ankle and foot', 'ICD10_2010'), +('M90.78', 'Fracture of bone in neoplastic disease, other site', 'ICD10_2010'), +('M90.79', 'Fracture of bone in neoplastic disease, site unspecified', 'ICD10_2010'), +('M90.8', 'Osteopathy in other diseases classified elsewhere', 'ICD10_2010'), +('M90.80', 'Osteopathy in other diseases classified elsewhere, multiple sites', 'ICD10_2010'), +('M90.81', 'Osteopathy in other diseases classified elsewhere, shoulder region', 'ICD10_2010'), +('M90.82', 'Osteopathy in other diseases classified elsewhere, upper arm', 'ICD10_2010'), +('M90.83', 'Osteopathy in other diseases classified elsewhere, forearm', 'ICD10_2010'), +('M90.84', 'Osteopathy in other diseases classified elsewhere, hand', 'ICD10_2010'), +('M90.85', 'Osteopathy in other diseases classified elsewhere, pelvic and thigh', 'ICD10_2010'), +('M90.86', 'Osteopathy in other diseases classified elsewhere, lower leg', 'ICD10_2010'), +('M90.87', 'Osteopathy in other diseases classified elsewhere, ankle and foot', 'ICD10_2010'), +('M90.88', 'Osteopathy in other diseases classified elsewhere, other site', 'ICD10_2010'), +('M90.89', 'Osteopathy in other diseases classified elsewhere, site unspecified', 'ICD10_2010'), +('M91', 'Juvenile osteochondrosis of hip and pelvis', 'ICD10_2010'), +('M91.0', 'Juvenile osteochondrosis of pelvis', 'ICD10_2010'), +('M91.00', 'Juvenile osteochondrosis of pelvis, multiple sites', 'ICD10_2010'), +('M91.01', 'Juvenile osteochondrosis of pelvis, shoulder region', 'ICD10_2010'), +('M91.02', 'Juvenile osteochondrosis of pelvis, upper arm', 'ICD10_2010'), +('M91.03', 'Juvenile osteochondrosis of pelvis, forearm', 'ICD10_2010'), +('M91.04', 'Juvenile osteochondrosis of pelvis, hand', 'ICD10_2010'), +('M91.05', 'Juvenile osteochondrosis of pelvis, pelvic region and thigh', 'ICD10_2010'), +('M91.06', 'Juvenile osteochondrosis of pelvis, lower leg', 'ICD10_2010'), +('M91.07', 'Juvenile osteochondrosis of pelvis, ankle and foot', 'ICD10_2010'), +('M91.08', 'Juvenile osteochondrosis of pelvis, other', 'ICD10_2010'), +('M91.09', 'Juvenile osteochondrosis of pelvis, site unspecified', 'ICD10_2010'), +('M91.1', 'Juv osteochondrosis head of femur [legg-calv', 'ICD10_2010'), +('M91.10', 'Juv osteochondrosis head of femur [legg-calv', 'ICD10_2010'), +('M91.11', 'Juv osteochondrosis head of femur [legg-calv', 'ICD10_2010'), +('M91.12', 'Juv osteochondrosis head of femur [legg-calv', 'ICD10_2010'), +('M91.13', 'Juv osteochondrosis head of femur [legg-calv', 'ICD10_2010'), +('M91.14', 'Juv osteochondrosis head of femur [legg-calv', 'ICD10_2010'), +('M91.15', 'Juv osteochondrosis head of femur [legg-calv', 'ICD10_2010'), +('M91.16', 'Juv osteochondrosis head of femur [legg-calv', 'ICD10_2010'), +('M91.17', 'Juv osteochondrosis head of femur [legg-calv', 'ICD10_2010'), +('M91.18', 'Juv osteochondrosis head of femur [legg-calv', 'ICD10_2010'), +('M91.19', 'Juv osteochondrosis head of femur [legg-calv', 'ICD10_2010'), +('M91.2', 'Coxa plana', 'ICD10_2010'), +('M91.20', 'Coxa plana, multiple sites', 'ICD10_2010'), +('M91.21', 'Coxa plana, shoulder region', 'ICD10_2010'), +('M91.22', 'Coxa plana, upper arm', 'ICD10_2010'), +('M91.23', 'Coxa plana, forearm', 'ICD10_2010'), +('M91.24', 'Coxa plana, hand', 'ICD10_2010'), +('M91.25', 'Coxa plana, pelvic region and thigh', 'ICD10_2010'), +('M91.26', 'Coxa plana, lower leg', 'ICD10_2010'), +('M91.27', 'Coxa plana, ankle and foot', 'ICD10_2010'), +('M91.28', 'Coxa plana, other', 'ICD10_2010'), +('M91.29', 'Coxa plana, site unspecified', 'ICD10_2010'), +('M91.3', 'Pseudocoxalgia', 'ICD10_2010'), +('M91.30', 'Pseudocoxalgia, multiple sites', 'ICD10_2010'), +('M91.31', 'Pseudocoxalgia, shoulder region', 'ICD10_2010'), +('M91.32', 'Pseudocoxalgia, upper arm', 'ICD10_2010'), +('M91.33', 'Pseudocoxalgia, forearm', 'ICD10_2010'), +('M91.34', 'Pseudocoxalgia, hand', 'ICD10_2010'), +('M91.35', 'Pseudocoxalgia, pelvic region and thigh', 'ICD10_2010'), +('M91.36', 'Pseudocoxalgia, lower leg', 'ICD10_2010'), +('M91.37', 'Pseudocoxalgia, ankle and foot', 'ICD10_2010'), +('M91.38', 'Pseudocoxalgia, other', 'ICD10_2010'), +('M91.39', 'Pseudocoxalgia, site unspecified', 'ICD10_2010'), +('M91.8', 'Other juvenile osteochondrosis of hip and pelvis', 'ICD10_2010'), +('M91.80', 'Other juvenile osteochondrosis of hip and pelvis, multiple sites', 'ICD10_2010'), +('M91.81', 'Other juvenile osteochondrosis of hip and pelvis, shoulder region', 'ICD10_2010'), +('M91.82', 'Other juvenile osteochondrosis of hip and pelvis, upper arm', 'ICD10_2010'), +('M91.83', 'Other juvenile osteochondrosis of hip and pelvis, forearm', 'ICD10_2010'), +('M91.84', 'Other juvenile osteochondrosis of hip and pelvis, hand', 'ICD10_2010'), +('M91.85', 'Other juvenile osteochondrosis of hip and pelvis, pelvic region and thigh', 'ICD10_2010'), +('M91.86', 'Other juvenile osteochondrosis of hip and pelvis, lower leg', 'ICD10_2010'), +('M91.87', 'Other juvenile osteochondrosis of hip and pelvis, ankle and foot', 'ICD10_2010'), +('M91.88', 'Other juvenile osteochondrosis of hip and pelvis, other', 'ICD10_2010'), +('M91.89', 'Other juvenile osteochondrosis of hip and pelvis, site unspecified', 'ICD10_2010'), +('M91.9', 'Juvenile osteochondrosis of hip and pelvis, unspecified', 'ICD10_2010'), +('M91.90', 'Juvenile osteochondrosis of hip and pelvis, unspecified, multiple sites', 'ICD10_2010'), +('M91.91', 'Juvenile osteochondrosis of hip and pelvis, unspecified, shoulder region', 'ICD10_2010'), +('M91.92', 'Juvenile osteochondrosis of hip and pelvis, unspecified, upper arm', 'ICD10_2010'), +('M91.93', 'Juvenile osteochondrosis of hip and pelvis, unspecified, forearm', 'ICD10_2010'), +('M91.94', 'Juvenile osteochondrosis of hip and pelvis, unspecified, hand', 'ICD10_2010'), +('M91.95', 'Juvenile osteochondrosis of hip and pelvis, unspecified, pelvic region and thigh', 'ICD10_2010'), +('M91.96', 'Juvenile osteochondrosis of hip and pelvis, unspecified, lower leg', 'ICD10_2010'), +('M91.97', 'Juvenile osteochondrosis of hip and pelvis, unspecified, ankle and foot', 'ICD10_2010'), +('M91.98', 'Juvenile osteochondrosis of hip and pelvis, unspecified, other', 'ICD10_2010'), +('M91.99', 'Juvenile osteochondrosis of hip and pelvis, unspecified, site unspecified', 'ICD10_2010'), +('M92', 'Other juvenile osteochondrosis', 'ICD10_2010'), +('M92.0', 'Juvenile osteochondrosis of humerus', 'ICD10_2010'), +('M92.00', 'Juvenile osteochondrosis of humerus, multiple sites', 'ICD10_2010'), +('M92.01', 'Juvenile osteochondrosis of humerus, shoulder region', 'ICD10_2010'), +('M92.02', 'Juvenile osteochondrosis of humerus, upper arm', 'ICD10_2010'), +('M92.03', 'Juvenile osteochondrosis of humerus, forearm', 'ICD10_2010'), +('M92.04', 'Juvenile osteochondrosis of humerus, hand', 'ICD10_2010'), +('M92.05', 'Juvenile osteochondrosis of humerus, pelvic region and thigh', 'ICD10_2010'), +('M92.06', 'Juvenile osteochondrosis of humerus, lower leg', 'ICD10_2010'), +('M92.07', 'Juvenile osteochondrosis of humerus, ankle and foot', 'ICD10_2010'), +('M92.08', 'Juvenile osteochondrosis of humerus, other', 'ICD10_2010'), +('M92.09', 'Juvenile osteochondrosis of humerus, site unspecified', 'ICD10_2010'), +('M92.1', 'Juvenile osteochondrosis of radius and ulna', 'ICD10_2010'), +('M92.10', 'Juvenile osteochondrosis of radius and ulna, multiple sites', 'ICD10_2010'), +('M92.11', 'Juvenile osteochondrosis of radius and ulna, shoulder region', 'ICD10_2010'), +('M92.12', 'Juvenile osteochondrosis of radius and ulna, upper arm', 'ICD10_2010'), +('M92.13', 'Juvenile osteochondrosis of radius and ulna, forearm', 'ICD10_2010'), +('M92.14', 'Juvenile osteochondrosis of radius and ulna, hand', 'ICD10_2010'), +('M92.15', 'Juvenile osteochondrosis of radius and ulna, pelvic region and thigh', 'ICD10_2010'), +('M92.16', 'Juvenile osteochondrosis of radius and ulna, lower leg', 'ICD10_2010'), +('M92.17', 'Juvenile osteochondrosis of radius and ulna, ankle and foot', 'ICD10_2010'), +('M92.18', 'Juvenile osteochondrosis of radius and ulna, other', 'ICD10_2010'), +('M92.19', 'Juvenile osteochondrosis of radius and ulna, site unspecified', 'ICD10_2010'), +('M92.2', 'Juvenile osteochondrosis of hand', 'ICD10_2010'), +('M92.20', 'Juvenile osteochondrosis of hand, multiple sites', 'ICD10_2010'), +('M92.21', 'Juvenile osteochondrosis of hand, shoulder region', 'ICD10_2010'), +('M92.22', 'Juvenile osteochondrosis of hand, upper arm', 'ICD10_2010'), +('M92.23', 'Juvenile osteochondrosis of hand, forearm', 'ICD10_2010'), +('M92.24', 'Juvenile osteochondrosis of hand, hand', 'ICD10_2010'), +('M92.25', 'Juvenile osteochondrosis of hand, pelvic region and thigh', 'ICD10_2010'), +('M92.26', 'Juvenile osteochondrosis of hand, lower leg', 'ICD10_2010'), +('M92.27', 'Juvenile osteochondrosis of hand, ankle and foot', 'ICD10_2010'), +('M92.28', 'Juvenile osteochondrosis of hand, other', 'ICD10_2010'), +('M92.29', 'Juvenile osteochondrosis of hand, site unspecified', 'ICD10_2010'), +('M92.3', 'Other juvenile osteochondrosis of upper limb', 'ICD10_2010'), +('M92.30', 'Other juvenile osteochondrosis of upper limb, multiple sites', 'ICD10_2010'), +('M92.31', 'Other juvenile osteochondrosis of upper limb, shoulder region', 'ICD10_2010'), +('M92.32', 'Other juvenile osteochondrosis of upper limb, upper arm', 'ICD10_2010'), +('M92.33', 'Other juvenile osteochondrosis of upper limb, forearm', 'ICD10_2010'), +('M92.34', 'Other juvenile osteochondrosis of upper limb, hand', 'ICD10_2010'), +('M92.35', 'Other juvenile osteochondrosis of upper limb, pelvic region and thigh', 'ICD10_2010'); +INSERT INTO `icd10` (`ID_ICD10`, `Diagnosa`, `Versi_ICD10`) VALUES +('M92.36', 'Other juvenile osteochondrosis of upper limb, lower leg', 'ICD10_2010'), +('M92.37', 'Other juvenile osteochondrosis of upper limb, ankle and foot', 'ICD10_2010'), +('M92.38', 'Other juvenile osteochondrosis of upper limb, other', 'ICD10_2010'), +('M92.39', 'Other juvenile osteochondrosis of upper limb, site unspecified', 'ICD10_2010'), +('M92.4', 'Juvenile osteochondrosis of patella', 'ICD10_2010'), +('M92.40', 'Juvenile osteochondrosis of patella, multiple sites', 'ICD10_2010'), +('M92.41', 'Juvenile osteochondrosis of patella, shoulder region', 'ICD10_2010'), +('M92.42', 'Juvenile osteochondrosis of patella, upper arm', 'ICD10_2010'), +('M92.43', 'Juvenile osteochondrosis of patella, forearm', 'ICD10_2010'), +('M92.44', 'Juvenile osteochondrosis of patella, hand', 'ICD10_2010'), +('M92.45', 'Juvenile osteochondrosis of patella, pelvic region and thigh', 'ICD10_2010'), +('M92.46', 'Juvenile osteochondrosis of patella, lower leg', 'ICD10_2010'), +('M92.47', 'Juvenile osteochondrosis of patella, ankle and foot', 'ICD10_2010'), +('M92.48', 'Juvenile osteochondrosis of patella, other', 'ICD10_2010'), +('M92.49', 'Juvenile osteochondrosis of patella, site unspecified', 'ICD10_2010'), +('M92.5', 'Juvenile osteochondrosis of tibia and fibula', 'ICD10_2010'), +('M92.50', 'Juvenile osteochondrosis of tibia and fibula, multiple sites', 'ICD10_2010'), +('M92.51', 'Juvenile osteochondrosis of tibia and fibula, shoulder region', 'ICD10_2010'), +('M92.52', 'Juvenile osteochondrosis of tibia and fibula, upper arm', 'ICD10_2010'), +('M92.53', 'Juvenile osteochondrosis of tibia and fibula, forearm', 'ICD10_2010'), +('M92.54', 'Juvenile osteochondrosis of tibia and fibula, hand', 'ICD10_2010'), +('M92.55', 'Juvenile osteochondrosis of tibia and fibula, pelvic region and thigh', 'ICD10_2010'), +('M92.56', 'Juvenile osteochondrosis of tibia and fibula, lower leg', 'ICD10_2010'), +('M92.57', 'Juvenile osteochondrosis of tibia and fibula, ankle and foot', 'ICD10_2010'), +('M92.58', 'Juvenile osteochondrosis of tibia and fibula, other', 'ICD10_2010'), +('M92.59', 'Juvenile osteochondrosis of tibia and fibula, site unspecified', 'ICD10_2010'), +('M92.6', 'Juvenile osteochondrosis of tarsus', 'ICD10_2010'), +('M92.60', 'Juvenile osteochondrosis of tarsus, multiple sites', 'ICD10_2010'), +('M92.61', 'Juvenile osteochondrosis of tarsus, shoulder region', 'ICD10_2010'), +('M92.62', 'Juvenile osteochondrosis of tarsus, upper arm', 'ICD10_2010'), +('M92.63', 'Juvenile osteochondrosis of tarsus, forearm', 'ICD10_2010'), +('M92.64', 'Juvenile osteochondrosis of tarsus, hand', 'ICD10_2010'), +('M92.65', 'Juvenile osteochondrosis of tarsus, pelvic region and thigh', 'ICD10_2010'), +('M92.66', 'Juvenile osteochondrosis of tarsus, lower leg', 'ICD10_2010'), +('M92.67', 'Juvenile osteochondrosis of tarsus, ankle and foot', 'ICD10_2010'), +('M92.68', 'Juvenile osteochondrosis of tarsus, other', 'ICD10_2010'), +('M92.69', 'Juvenile osteochondrosis of tarsus, site unspecified', 'ICD10_2010'), +('M92.7', 'Juvenile osteochondrosis of metatarsus', 'ICD10_2010'), +('M92.70', 'Juvenile osteochondrosis of metatarsus, multiple sites', 'ICD10_2010'), +('M92.71', 'Juvenile osteochondrosis of metatarsus, shoulder region', 'ICD10_2010'), +('M92.72', 'Juvenile osteochondrosis of metatarsus, upper arm', 'ICD10_2010'), +('M92.73', 'Juvenile osteochondrosis of metatarsus, forearm', 'ICD10_2010'), +('M92.74', 'Juvenile osteochondrosis of metatarsus, hand', 'ICD10_2010'), +('M92.75', 'Juvenile osteochondrosis of metatarsus, pelvic region and thigh', 'ICD10_2010'), +('M92.76', 'Juvenile osteochondrosis of metatarsus, lower leg', 'ICD10_2010'), +('M92.77', 'Juvenile osteochondrosis of metatarsus, ankle and foot', 'ICD10_2010'), +('M92.78', 'Juvenile osteochondrosis of metatarsus, other', 'ICD10_2010'), +('M92.79', 'Juvenile osteochondrosis of metatarsus, site unspecified', 'ICD10_2010'), +('M92.8', 'Other specified juvenile osteochondrosis', 'ICD10_2010'), +('M92.80', 'Other specified juvenile osteochondrosis, multiple sites', 'ICD10_2010'), +('M92.81', 'Other specified juvenile osteochondrosis, shoulder region', 'ICD10_2010'), +('M92.82', 'Other specified juvenile osteochondrosis, upper arm', 'ICD10_2010'), +('M92.83', 'Other specified juvenile osteochondrosis, forearm', 'ICD10_2010'), +('M92.84', 'Other specified juvenile osteochondrosis, hand', 'ICD10_2010'), +('M92.85', 'Other specified juvenile osteochondrosis, pelvic region and thigh', 'ICD10_2010'), +('M92.86', 'Other specified juvenile osteochondrosis, lower leg', 'ICD10_2010'), +('M92.87', 'Other specified juvenile osteochondrosis, ankle and foot', 'ICD10_2010'), +('M92.88', 'Other specified juvenile osteochondrosis, other', 'ICD10_2010'), +('M92.89', 'Other specified juvenile osteochondrosis, site unspecified', 'ICD10_2010'), +('M92.9', 'Juvenile osteochondrosis, unspecified', 'ICD10_2010'), +('M92.90', 'Juvenile osteochondrosis, unspecified, multiple sites', 'ICD10_2010'), +('M92.91', 'Juvenile osteochondrosis, unspecified, shoulder region', 'ICD10_2010'), +('M92.92', 'Juvenile osteochondrosis, unspecified, upper arm', 'ICD10_2010'), +('M92.93', 'Juvenile osteochondrosis, unspecified, forearm', 'ICD10_2010'), +('M92.94', 'Juvenile osteochondrosis, unspecified, hand', 'ICD10_2010'), +('M92.95', 'Juvenile osteochondrosis, unspecified, pelvic region and thigh', 'ICD10_2010'), +('M92.96', 'Juvenile osteochondrosis, unspecified, lower leg', 'ICD10_2010'), +('M92.97', 'Juvenile osteochondrosis, unspecified, ankle and foot', 'ICD10_2010'), +('M92.98', 'Juvenile osteochondrosis, unspecified, other', 'ICD10_2010'), +('M92.99', 'Juvenile osteochondrosis, unspecified, site unspecified', 'ICD10_2010'), +('M93', 'Other osteochondropathies', 'ICD10_2010'), +('M93.0', 'Slipped upper femoral epiphysis (nontraumatic)', 'ICD10_2010'), +('M93.00', 'Slipped upper femoral epiphysis (nontraumatic), multiple sites', 'ICD10_2010'), +('M93.01', 'Slipped upper femoral epiphysis (nontraumatic), shoulder region', 'ICD10_2010'), +('M93.02', 'Slipped upper femoral epiphysis (nontraumatic), upper arm', 'ICD10_2010'), +('M93.03', 'Slipped upper femoral epiphysis (nontraumatic), forearm', 'ICD10_2010'), +('M93.04', 'Slipped upper femoral epiphysis (nontraumatic), hand', 'ICD10_2010'), +('M93.05', 'Slipped upper femoral epiphysis (nontraumatic), pelvic region and thigh', 'ICD10_2010'), +('M93.06', 'Slipped upper femoral epiphysis (nontraumatic), lower leg', 'ICD10_2010'), +('M93.07', 'Slipped upper femoral epiphysis (nontraumatic), ankle and foot', 'ICD10_2010'), +('M93.08', 'Slipped upper femoral epiphysis (nontraumatic), other', 'ICD10_2010'), +('M93.09', 'Slipped upper femoral epiphysis (nontraumatic), site unspecified', 'ICD10_2010'), +('M93.1', 'Kienbock disease of adults', 'ICD10_2010'), +('M93.10', 'Kienbock disease of adults, multiple sites', 'ICD10_2010'), +('M93.11', 'Kienbock disease of adults, shoulder region', 'ICD10_2010'), +('M93.12', 'Kienbock disease of adults, upper arm', 'ICD10_2010'), +('M93.13', 'Kienbock disease of adults, forearm', 'ICD10_2010'), +('M93.14', 'Kienbock disease of adults, hand', 'ICD10_2010'), +('M93.15', 'Kienbock disease of adults, pelvic region and thigh', 'ICD10_2010'), +('M93.16', 'Kienbock disease of adults, lower leg', 'ICD10_2010'), +('M93.17', 'Kienbock disease of adults, ankle and foot', 'ICD10_2010'), +('M93.18', 'Kienbock disease of adults, other', 'ICD10_2010'), +('M93.19', 'Kienbock disease of adults, site unspecified', 'ICD10_2010'), +('M93.2', 'Osteochondritis dissecans', 'ICD10_2010'), +('M93.20', 'Osteochondritis dissecans, multiple sites', 'ICD10_2010'), +('M93.21', 'Osteochondritis dissecans, shoulder region', 'ICD10_2010'), +('M93.22', 'Osteochondritis dissecans, upper arm', 'ICD10_2010'), +('M93.23', 'Osteochondritis dissecans, forearm', 'ICD10_2010'), +('M93.24', 'Osteochondritis dissecans, hand', 'ICD10_2010'), +('M93.25', 'Osteochondritis dissecans, pelvic region and thigh', 'ICD10_2010'), +('M93.26', 'Osteochondritis dissecans, lower leg', 'ICD10_2010'), +('M93.27', 'Osteochondritis dissecans, ankle and foot', 'ICD10_2010'), +('M93.28', 'Osteochondritis dissecans, other', 'ICD10_2010'), +('M93.29', 'Osteochondritis dissecans, site unspecified', 'ICD10_2010'), +('M93.8', 'Other specified osteochondropathies', 'ICD10_2010'), +('M93.80', 'Other specified osteochondropathies, multiple sites', 'ICD10_2010'), +('M93.81', 'Other specified osteochondropathies, shoulder region', 'ICD10_2010'), +('M93.82', 'Other specified osteochondropathies, upper arm', 'ICD10_2010'), +('M93.83', 'Other specified osteochondropathies, forearm', 'ICD10_2010'), +('M93.84', 'Other specified osteochondropathies, hand', 'ICD10_2010'), +('M93.85', 'Other specified osteochondropathies, pelvic region and thigh', 'ICD10_2010'), +('M93.86', 'Other specified osteochondropathies, lower leg', 'ICD10_2010'), +('M93.87', 'Other specified osteochondropathies, ankle and foot', 'ICD10_2010'), +('M93.88', 'Other specified osteochondropathies, other', 'ICD10_2010'), +('M93.89', 'Other specified osteochondropathies, site unspecified', 'ICD10_2010'), +('M93.9', 'Osteochondropathy, unspecified', 'ICD10_2010'), +('M93.90', 'Osteochondropathy, unspecified, multiple sites', 'ICD10_2010'), +('M93.91', 'Osteochondropathy, unspecified, shoulder region', 'ICD10_2010'), +('M93.92', 'Osteochondropathy, unspecified, upper arm', 'ICD10_2010'), +('M93.93', 'Osteochondropathy, unspecified, forearm', 'ICD10_2010'), +('M93.94', 'Osteochondropathy, unspecified, hand', 'ICD10_2010'), +('M93.95', 'Osteochondropathy, unspecified, pelvic region and thigh', 'ICD10_2010'), +('M93.96', 'Osteochondropathy, unspecified, lower leg', 'ICD10_2010'), +('M93.97', 'Osteochondropathy, unspecified, ankle and foot', 'ICD10_2010'), +('M93.98', 'Osteochondropathy, unspecified, other', 'ICD10_2010'), +('M93.99', 'Osteochondropathy, unspecified, site unspecified', 'ICD10_2010'), +('M94', 'Other disorders of cartilage', 'ICD10_2010'), +('M94.0', 'Chondrocostal junction syndrome [tietze]', 'ICD10_2010'), +('M94.00', 'Chondrocostal junction syndrome [tietze], multiple sites', 'ICD10_2010'), +('M94.01', 'Chondrocostal junction syndrome [tietze], shoulder region', 'ICD10_2010'), +('M94.02', 'Chondrocostal junction syndrome [tietze], upper arm', 'ICD10_2010'), +('M94.03', 'Chondrocostal junction syndrome [tietze], forearm', 'ICD10_2010'), +('M94.04', 'Chondrocostal junction syndrome [tietze], hand', 'ICD10_2010'), +('M94.05', 'Chondrocostal junction syndrome [tietze], pelvic region and thigh', 'ICD10_2010'), +('M94.06', 'Chondrocostal junction syndrome [tietze], lower leg', 'ICD10_2010'), +('M94.07', 'Chondrocostal junction syndrome [tietze], ankle and foot', 'ICD10_2010'), +('M94.08', 'Chondrocostal junction syndrome [tietze], other', 'ICD10_2010'), +('M94.09', 'Chondrocostal junction syndrome [tietze], site unspecified', 'ICD10_2010'), +('M94.1', 'Relapsing polychondritis', 'ICD10_2010'), +('M94.10', 'Relapsing polychondritis, multiple sites', 'ICD10_2010'), +('M94.11', 'Relapsing polychondritis, shoulder region', 'ICD10_2010'), +('M94.12', 'Relapsing polychondritis, upper arm', 'ICD10_2010'), +('M94.13', 'Relapsing polychondritis, forearm', 'ICD10_2010'), +('M94.14', 'Relapsing polychondritis, hand', 'ICD10_2010'), +('M94.15', 'Relapsing polychondritis, pelvic and thigh', 'ICD10_2010'), +('M94.16', 'Relapsing polychondritis, lower leg', 'ICD10_2010'), +('M94.17', 'Relapsing polychondritis, ankle and foot', 'ICD10_2010'), +('M94.18', 'Relapsing polychondritis, other site', 'ICD10_2010'), +('M94.19', 'Relapsing polychondritis, site unspecified', 'ICD10_2010'), +('M94.2', 'Chondromalacia', 'ICD10_2010'), +('M94.20', 'Chondromalacia, multiple sites', 'ICD10_2010'), +('M94.21', 'Chondromalacia, shoulder region', 'ICD10_2010'), +('M94.22', 'Chondromalacia, upper arm', 'ICD10_2010'), +('M94.23', 'Chondromalacia, forearm', 'ICD10_2010'), +('M94.24', 'Chondromalacia, hand', 'ICD10_2010'), +('M94.25', 'Chondromalacia, pelvic and thigh', 'ICD10_2010'), +('M94.26', 'Chondromalacia, lower leg', 'ICD10_2010'), +('M94.27', 'Chondromalacia, ankle and foot', 'ICD10_2010'), +('M94.28', 'Chondromalacia, other site', 'ICD10_2010'), +('M94.29', 'Chondromalacia, site unspecified', 'ICD10_2010'), +('M94.3', 'Chondrolysis', 'ICD10_2010'), +('M94.30', 'Chondrolysis, multiple sites', 'ICD10_2010'), +('M94.31', 'Chondrolysis, shoulder region', 'ICD10_2010'), +('M94.32', 'Chondrolysis, upper arm', 'ICD10_2010'), +('M94.33', 'Chondrolysis, forearm', 'ICD10_2010'), +('M94.34', 'Chondrolysis, hand', 'ICD10_2010'), +('M94.35', 'Chondrolysis, pelvic and thigh', 'ICD10_2010'), +('M94.36', 'Chondrolysis, lower leg', 'ICD10_2010'), +('M94.37', 'Chondrolysis, ankle and foot', 'ICD10_2010'), +('M94.38', 'Chondrolysis, other site', 'ICD10_2010'), +('M94.39', 'Chondrolysis, site unspecified', 'ICD10_2010'), +('M94.8', 'Other specified disorders of cartilage', 'ICD10_2010'), +('M94.80', 'Other specified disorders of cartilage, multiple sites', 'ICD10_2010'), +('M94.81', 'Other specified disorders of cartilage, shoulder region', 'ICD10_2010'), +('M94.82', 'Other specified disorders of cartilage, upper arm', 'ICD10_2010'), +('M94.83', 'Other specified disorders of cartilage, forearm', 'ICD10_2010'), +('M94.84', 'Other specified disorders of cartilage, hand', 'ICD10_2010'), +('M94.85', 'Other specified disorders of cartilage, pelvic and thigh', 'ICD10_2010'), +('M94.86', 'Other specified disorders of cartilage, lower leg', 'ICD10_2010'), +('M94.87', 'Other specified disorders of cartilage, ankle and foot', 'ICD10_2010'), +('M94.88', 'Other specified disorders of cartilage, other site', 'ICD10_2010'), +('M94.89', 'Other specified disorders of cartilage, site unspecified', 'ICD10_2010'), +('M94.9', 'Disorder of cartilage, unspecified', 'ICD10_2010'), +('M94.90', 'Disorder of cartilage, unspecified, multiple sites', 'ICD10_2010'), +('M94.91', 'Disorder of cartilage, unspecified, shoulder region', 'ICD10_2010'), +('M94.92', 'Disorder of cartilage, unspecified, upper arm', 'ICD10_2010'), +('M94.93', 'Disorder of cartilage, unspecified, forearm', 'ICD10_2010'), +('M94.94', 'Disorder of cartilage, unspecified, hand', 'ICD10_2010'), +('M94.95', 'Disorder of cartilage, unspecified, pelvic and thigh', 'ICD10_2010'), +('M94.96', 'Disorder of cartilage, unspecified, lower leg', 'ICD10_2010'), +('M94.97', 'Disorder of cartilage, unspecified, ankle and foot', 'ICD10_2010'), +('M94.98', 'Disorder of cartilage, unspecified, other site', 'ICD10_2010'), +('M94.99', 'Disorder of cartilage, unspecified, site unspecified', 'ICD10_2010'), +('M95', 'Other acquired deformities of musculoskeletal system and connective tissue', 'ICD10_2010'), +('M95.0', 'Acquired deformity of nose', 'ICD10_2010'), +('M95.1', 'Cauliflower ear', 'ICD10_2010'), +('M95.2', 'Other acquired deformity of head', 'ICD10_2010'), +('M95.3', 'Acquired deformity of neck', 'ICD10_2010'), +('M95.4', 'Acquired deformity of chest and rib', 'ICD10_2010'), +('M95.5', 'Acquired deformity of pelvis', 'ICD10_2010'), +('M95.8', 'Other specified acquired deformities of musculoskel sys', 'ICD10_2010'), +('M95.9', 'Acquired deformity of musculoskeletal system, unspecified', 'ICD10_2010'), +('M96', 'Postprocedural musculoskeletal disorders, not elsewhere classified', 'ICD10_2010'), +('M96.0', 'Pseudarthrosis after fusion or arthrodesis', 'ICD10_2010'), +('M96.1', 'Postlaminectomy syndrome, not elsewhere classified', 'ICD10_2010'), +('M96.2', 'Postradiation kyphosis', 'ICD10_2010'), +('M96.3', 'Postlaminectomy kyphosis', 'ICD10_2010'), +('M96.4', 'Postsurgical lordosis', 'ICD10_2010'), +('M96.5', 'Postradiation scoliosis', 'ICD10_2010'), +('M96.6', 'Fract bone fllg ins orthopae implt jnt prosthesis and bone plate', 'ICD10_2010'), +('M96.8', 'Other postprocedural musculoskeletal disorders', 'ICD10_2010'), +('M96.9', 'Postprocedural musculoskeletal disorder, unspecified', 'ICD10_2010'), +('M99', 'Biomechanical lesions, not elsewhere classified', 'ICD10_2010'), +('M99.0', 'Segmental and somatic dysfunction', 'ICD10_2010'), +('M99.00', 'Segmental and somatic dysfunction, head region', 'ICD10_2010'), +('M99.01', 'Segmental and somatic dysfunction, cervical region', 'ICD10_2010'), +('M99.02', 'Segmental and somatic dysfunction , thoracic region', 'ICD10_2010'), +('M99.03', 'Segmental and somatic dysfunction , lumbar region', 'ICD10_2010'), +('M99.04', 'Segmental and somatic dysfunction , sacral region', 'ICD10_2010'), +('M99.05', 'Segmental and somatic dysfunction , pelvic region', 'ICD10_2010'), +('M99.06', 'Segmental and somatic dysfunction , lower extremity', 'ICD10_2010'), +('M99.07', 'Segmental and somatic dysfunction, upper extremity', 'ICD10_2010'), +('M99.08', 'Segmental and somatic dysfunction, rib region', 'ICD10_2010'), +('M99.09', 'Segmental and somatic dysfunction, abdomen region', 'ICD10_2010'), +('M99.1', 'Subluxation complex (vertebral)', 'ICD10_2010'), +('M99.10', 'Subluxation complex (vertebral), head region', 'ICD10_2010'), +('M99.11', 'Subluxation complex (vertebral), cervical region', 'ICD10_2010'), +('M99.12', ' Subluxation complex (vertebral), thoracic region', 'ICD10_2010'), +('M99.13', ' Subluxation complex (vertebral), lumbar region', 'ICD10_2010'), +('M99.14', 'Subluxation complex (vertebral) , sacral region', 'ICD10_2010'), +('M99.15', ' Subluxation complex (vertebral), pelvic region', 'ICD10_2010'), +('M99.16', ' Subluxation complex (vertebral), lower extremity', 'ICD10_2010'), +('M99.17', 'Subluxation complex (vertebral), upper extremity', 'ICD10_2010'), +('M99.18', 'Subluxation complex (vertebral), rib cage', 'ICD10_2010'), +('M99.19', 'Subluxation complex (vertebral), abdomen and other', 'ICD10_2010'), +('M99.2', 'Subluxation stenosis of neural canal', 'ICD10_2010'), +('M99.20', 'Subluxation stenosis of neural canal, head region', 'ICD10_2010'), +('M99.21', 'Subluxation stenosis of neural canal, cervical region', 'ICD10_2010'), +('M99.22', 'Subluxation stenosis of neural canal, thoracic region', 'ICD10_2010'), +('M99.23', 'Subluxation stenosis of neural canal , lumbar region', 'ICD10_2010'), +('M99.24', 'Subluxation stenosis of neural canal , sacral region', 'ICD10_2010'), +('M99.25', 'Subluxation stenosis of neural canal , pelvic region', 'ICD10_2010'), +('M99.26', 'Subluxation stenosis of neural canal , lower extremity', 'ICD10_2010'), +('M99.27', 'Subluxation stenosis of neural canal, upper extremity', 'ICD10_2010'), +('M99.28', 'Subluxation stenosis of neural canal, rib cage', 'ICD10_2010'), +('M99.29', 'Subluxation stenosis of neural canal, abdomen and other', 'ICD10_2010'), +('M99.3', 'Osseous stenosis of neural canal', 'ICD10_2010'), +('M99.30', 'Osseous stenosis of neural canal, head region', 'ICD10_2010'), +('M99.31', 'Osseous stenosis of neural canal, cervical region', 'ICD10_2010'), +('M99.32', 'Osseous stenosis of neural canal , thoracic region', 'ICD10_2010'), +('M99.33', 'Osseous stenosis of neural canal, lumbar region', 'ICD10_2010'), +('M99.34', 'Osseous stenosis of neural canal , sacral region', 'ICD10_2010'), +('M99.35', 'Osseous stenosis of neural canal , pelvic region', 'ICD10_2010'), +('M99.36', 'Osseous stenosis of neural canal , lower extremity', 'ICD10_2010'), +('M99.37', 'Osseous stenosis of neural canal, upper extremity', 'ICD10_2010'), +('M99.38', 'Osseous stenosis of neural canal, rib cage', 'ICD10_2010'), +('M99.39', 'Osseous stenosis of neural canal, abdomen and other', 'ICD10_2010'), +('M99.4', 'Connective tissue stenosis of neural canal', 'ICD10_2010'), +('M99.40', 'Connective tissue stenosis of neural canal, head region', 'ICD10_2010'), +('M99.41', 'Connective tissue stenosis of neural canal, cervical region', 'ICD10_2010'), +('M99.42', 'Connective tissue stenosis of neural canal, thoracic region', 'ICD10_2010'), +('M99.43', 'Connective tissue stenosis of neural canal, lumbar region', 'ICD10_2010'), +('M99.44', 'Connective tissue stenosis of neural canal , sacral region', 'ICD10_2010'), +('M99.45', 'Connective tissue stenosis of neural canal , pelvic region', 'ICD10_2010'), +('M99.46', 'Connective tissue stenosis of neural canal , lower extremity', 'ICD10_2010'), +('M99.47', 'Connective tissue stenosis of neural canal, upper extremity', 'ICD10_2010'), +('M99.48', 'Connective tissue stenosis of neural canal, rib cage', 'ICD10_2010'), +('M99.49', 'Connective tissue stenosis of neural canal, abdomen and other', 'ICD10_2010'), +('M99.5', 'Intervertebral disc stenosis of neural canal , pelvic region', 'ICD10_2010'), +('M99.50', 'Intervertebral disc stenosis of neural canal , pelvic region, head region', 'ICD10_2010'), +('M99.51', 'Intervertebral disc stenosis of neural canal , pelvic region, cervical region', 'ICD10_2010'), +('M99.52', 'Intervertebral disc stenosis of neural canal , pelvic region , thoracic region', 'ICD10_2010'), +('M99.53', 'Intervertebral disc stenosis of neural canal , pelvic region , lumbar region', 'ICD10_2010'), +('M99.54', 'Intervertebral disc stenosis of neural canal , pelvic region , sacral region', 'ICD10_2010'), +('M99.55', 'Intervertebral disc stenosis of neural canal , pelvic region , pelvic region', 'ICD10_2010'), +('M99.56', 'Intervertebral disc stenosis of neural canal , pelvic region , lower extremity', 'ICD10_2010'), +('M99.57', 'Intervertebral disc stenosis of neural canal , pelvic region, upper extremity', 'ICD10_2010'), +('M99.58', 'Intervertebral disc stenosis of neural canal , pelvic region, rib cage', 'ICD10_2010'), +('M99.59', 'Intervertebral disc stenosis of neural canal , pelvic region, abdomen and other', 'ICD10_2010'), +('M99.6', 'Osseous and subluxation stenosis of intervertebral foramina', 'ICD10_2010'), +('M99.60', 'Osseous and subluxation stenosis of intervertebral foramina, head region', 'ICD10_2010'), +('M99.61', 'Osseous and subluxation stenosis of intervertebral foramina, cervical region', 'ICD10_2010'), +('M99.62', 'Osseous and subluxation stenosis of intervertebral foramina , thoracic region', 'ICD10_2010'), +('M99.63', 'Osseous and subluxation stenosis of intervertebral foramina , lumbar region', 'ICD10_2010'), +('M99.64', 'Osseous and subluxation stenosis of intervertebral foramina , sacral region', 'ICD10_2010'), +('M99.65', 'Osseous and subluxation stenosis of intervertebral foramina , pelvic region', 'ICD10_2010'), +('M99.66', 'Osseous and subluxation stenosis of intervertebral foramina , lower extremity', 'ICD10_2010'), +('M99.67', 'Osseous and subluxation stenosis of intervertebral foramina, upper extremity', 'ICD10_2010'), +('M99.68', 'Osseous and subluxation stenosis of intervertebral foramina, rib cage', 'ICD10_2010'), +('M99.69', 'Osseous and subluxation stenosis of intervertebral foramina, abdomen and other', 'ICD10_2010'), +('M99.7', 'Connective tis and disc stenosis of intervertebral foramina', 'ICD10_2010'), +('M99.70', 'Connective tis and disc stenosis of intervertebral foramina, head region', 'ICD10_2010'), +('M99.71', 'Connective tis and disc stenosis of intervertebral foramina, cervical region', 'ICD10_2010'), +('M99.72', 'Connective tis and disc stenosis of intervertebral foramina , thoracic region', 'ICD10_2010'), +('M99.73', 'Connective tis and disc stenosis of intervertebral foramina , lumbar region', 'ICD10_2010'), +('M99.74', 'Connective tis and disc stenosis of intervertebral foramina , sacral region', 'ICD10_2010'), +('M99.75', 'Connective tis and disc stenosis of intervertebral foramina , pelvic region', 'ICD10_2010'), +('M99.76', 'Connective tis and disc stenosis of intervertebral foramina , lower extremity', 'ICD10_2010'), +('M99.77', 'Connective tis and disc stenosis of intervertebral foramina, upper extremity', 'ICD10_2010'), +('M99.78', 'Connective tis and disc stenosis of intervertebral foramina, rib cage', 'ICD10_2010'), +('M99.79', 'Connective tis and disc stenosis of intervertebral foramina, abdomen and other', 'ICD10_2010'), +('M99.8', 'Other biomechanical lesions', 'ICD10_2010'), +('M99.80', 'Other biomechanical lesions, head region', 'ICD10_2010'), +('M99.81', 'Other biomechanical lesions, cervical region', 'ICD10_2010'), +('M99.82', 'Other biomechanical lesions, thoracic region', 'ICD10_2010'), +('M99.83', 'Other biomechanical lesions. lumbar region', 'ICD10_2010'), +('M99.84', 'Other biomechanical lesions, sacral region', 'ICD10_2010'), +('M99.85', 'Other biomechanical lesions, pelvic region', 'ICD10_2010'), +('M99.86', 'Other biomechanical lesions, lower extremity', 'ICD10_2010'), +('M99.87', 'Other biomechanical lesions, upper extremity', 'ICD10_2010'), +('M99.88', 'Other biomechanical lesions, rib region', 'ICD10_2010'), +('M99.89', 'Other biomechanical lesions, abdomen region', 'ICD10_2010'), +('M99.9', 'Biomechanical lesion, unspecified', 'ICD10_2010'), +('M99.90', 'Biomechanical lesion, unspecified, head region', 'ICD10_2010'), +('M99.91', 'Biomechanical lesion, unspecified, cervical region', 'ICD10_2010'), +('M99.92', 'Biomechanical lesion, unspecified, thoracic region', 'ICD10_2010'), +('M99.93', 'Biomechanical lesion, unspecified, lumbar region', 'ICD10_2010'), +('M99.94', 'Biomechanical lesion, unspecified, sacral region', 'ICD10_2010'), +('M99.95', 'Biomechanical lesion, unspecified, pelvic region', 'ICD10_2010'), +('M99.96', 'Biomechanical lesion, unspecified, lower extremity', 'ICD10_2010'), +('M99.97', 'Biomechanical lesion, unspecified, upper extremity', 'ICD10_2010'), +('M99.98', 'Biomechanical lesion, unspecified, rib region', 'ICD10_2010'), +('M99.99', 'Biomechanical lesion, unspecified, abdomen region', 'ICD10_2010'), +('N00', 'Acute nephritic syndrome', 'ICD10_2010'), +('N00.0', 'Acute nephritic syndrome, minor glomerular abnormality', 'ICD10_2010'), +('N00.1', 'Acute nephritic syndrome, focal and segmental glomerular lesions', 'ICD10_2010'), +('N00.2', 'Acute nephritic syndrome, diffuse membranous glomerulonephritis', 'ICD10_2010'), +('N00.3', 'Acute nephritic syndrome, diffuse mesangial proliferative glomerulonephritis', 'ICD10_2010'), +('N00.4', 'Acute nephritic syndrome, diffuse endocapillary proliferative glomerulonephritis', 'ICD10_2010'), +('N00.5', 'Acute nephritic syndrome, diffuse mesangiocapillary glomerulonephritis', 'ICD10_2010'), +('N00.6', 'Acute nephritic syndrome, dense deposit disease', 'ICD10_2010'), +('N00.7', 'Acute nephritic syndrome, diffuse crescentic glomerulonephritis', 'ICD10_2010'), +('N00.8', 'Acute nephritic syndrome, other', 'ICD10_2010'), +('N00.9', 'Acute nephritic syndrome, unspecified', 'ICD10_2010'), +('N01', 'Rapidly progressive nephritic syndrome', 'ICD10_2010'), +('N01.0', 'Rapidly progressive nephritic syndrome, minor glomerular abnormality', 'ICD10_2010'), +('N01.1', 'Rapidly progressive nephritic syndrome, focal and segmental glomerular lesions', 'ICD10_2010'), +('N01.2', 'Rapidly progressive nephritic syndrome, diffuse membranous glomerulonephritis', 'ICD10_2010'), +('N01.3', 'Rapidly progressive nephritic syndrome, diffuse mesangial proliferative glomerulonephritis', 'ICD10_2010'), +('N01.4', 'Rapidly progressive nephritic syndrome, diffuse endocapillary proliferative glomerulonephritis', 'ICD10_2010'), +('N01.5', 'Rapidly progressive nephritic syndrome, diffuse mesangiocapillary glomerulonephritis', 'ICD10_2010'), +('N01.6', 'Rapidly progressive nephritic syndrome, dense deposit disease', 'ICD10_2010'), +('N01.7', 'Rapidly progressive nephritic syndrome, diffuse crescentic glomerulonephritis', 'ICD10_2010'), +('N01.8', 'Rapidly progressive nephritic syndrome, other', 'ICD10_2010'), +('N01.9', 'Rapidly progressive nephritic syndrome, unspecified', 'ICD10_2010'), +('N02', 'Recurrent and persistent haematuria', 'ICD10_2010'), +('N02.0', 'Recurrent and persistent haematuria, minor glomerular abnormality', 'ICD10_2010'), +('N02.1', 'Recurrent and persistent haematuria, focal and segmental glomerular lesions', 'ICD10_2010'), +('N02.2', 'Recurrent and persistent haematuria, diffuse membranous glomerulonephritis', 'ICD10_2010'), +('N02.3', 'Recurrent and persistent haematuria, diffuse mesangial proliferative glomerulonephritis', 'ICD10_2010'), +('N02.4', 'Recurrent and persistent haematuria, diffuse endocapillary proliferative glomerulonephritis', 'ICD10_2010'), +('N02.5', 'Recurrent and persistent haematuria, diffuse mesangiocapillary glomerulonephritis', 'ICD10_2010'), +('N02.6', 'Recurrent and persistent haematuria, dense deposit disease', 'ICD10_2010'), +('N02.7', 'Recurrent and persistent haematuria, diffuse crescentic glomerulonephritis', 'ICD10_2010'), +('N02.8', 'Recurrent and persistent haematuria, other', 'ICD10_2010'), +('N02.9', 'Recurrent and persistent haematuria, unspecified', 'ICD10_2010'), +('N03', 'Chronic nephritic syndrome', 'ICD10_2010'), +('N03.0', 'Chronic nephritic syndrome, minor glomerular abnormality', 'ICD10_2010'), +('N03.1', 'Chronic nephritic syndrome, focal and segmental glomerular lesions', 'ICD10_2010'), +('N03.2', 'Chronic nephritic syndrome, diffuse membranous glomerulonephritis', 'ICD10_2010'), +('N03.3', 'Chronic nephritic syndrome, diffuse mesangial proliferative glomerulonephritis', 'ICD10_2010'), +('N03.4', 'Chronic nephritic syndrome, diffuse endocapillary proliferative glomerulonephritis', 'ICD10_2010'), +('N03.5', 'Chronic nephritic syndrome, diffuse mesangiocapillary glomerulonephritis', 'ICD10_2010'), +('N03.6', 'Chronic nephritic syndrome, dense deposit disease', 'ICD10_2010'), +('N03.7', 'Chronic nephritic syndrome, diffuse crescentic glomerulonephritis', 'ICD10_2010'), +('N03.8', 'Chronic nephritic syndrome, other', 'ICD10_2010'), +('N03.9', 'Chronic nephritic syndrome, unspecified', 'ICD10_2010'), +('N04', 'Nephrotic syndrome', 'ICD10_2010'), +('N04.0', 'Nephrotic syndrome, minor glomerular abnormality', 'ICD10_2010'), +('N04.1', 'Nephrotic syndrome, focal and segmental glomerular lesions', 'ICD10_2010'), +('N04.2', 'Nephrotic syndrome, diffuse membranous glomerulonephritis', 'ICD10_2010'), +('N04.3', 'Nephrotic syndrome, diffuse mesangial proliferative glomerulonephritis', 'ICD10_2010'), +('N04.4', 'Nephrotic syndrome, diffuse endocapillary proliferative glomerulonephritis', 'ICD10_2010'), +('N04.5', 'Nephrotic syndrome, diffuse mesangiocapillary glomerulonephritis', 'ICD10_2010'), +('N04.6', 'Nephrotic syndrome, dense deposit disease', 'ICD10_2010'), +('N04.7', 'Nepthrotic syndrome, diffuse crescentic glomerulonephritis', 'ICD10_2010'), +('N04.8', 'Nephtrotic syndrome, other', 'ICD10_2010'), +('N04.9', 'Nepthrotic syndrome, unspecified', 'ICD10_2010'), +('N05', 'Unspecified nephritic syndrome', 'ICD10_2010'), +('N05.0', 'Unspecified nephritic syndrome, minor glomerular abnormality', 'ICD10_2010'), +('N05.1', 'Unspecified nephritic syndrome, focal and segmental glomerular lesions', 'ICD10_2010'), +('N05.2', 'Unspecified nephritic syndrome, diffuse membranous glomerulonephritis', 'ICD10_2010'), +('N05.3', 'Unspecified nephritic syndrome, diffuse mesangial proliferative glomerulonephritis', 'ICD10_2010'), +('N05.4', 'Unspecified nephritic syndrome, diffuse endocapillary proliferative glomerulonephritis', 'ICD10_2010'), +('N05.5', 'Unspecified nephritic syndrome, diffuse mesangiocapillary glomeru', 'ICD10_2010'), +('N05.6', 'Unspecified nephritic syndrome, dense deposit disease', 'ICD10_2010'), +('N05.7', 'Unspecified nephritic syndrome, diffuse crescentic glomerulonephritis', 'ICD10_2010'), +('N05.8', 'Unspecified nephritic syndrome, other', 'ICD10_2010'), +('N05.9', 'Unspecified nephritic syndrome, unspecified', 'ICD10_2010'), +('N06', 'Isolated proteinuria with specified morphological lesion', 'ICD10_2010'), +('N06.0', 'Isolated proteinuria with specified morphological lesion, minor glomerular abnormality', 'ICD10_2010'), +('N06.1', 'Isolated proteinuria with specified morphological lesion, focal and segmental glomerular lesions', 'ICD10_2010'), +('N06.2', 'Isolated proteinuria with specified morphological lesion, diffuse membranous glomerulonephritis', 'ICD10_2010'), +('N06.3', 'Isolated proteinuria with specified morphological lesion, diffuse mesangial proliferative glomerulonephritis', 'ICD10_2010'), +('N06.4', 'Isolated proteinuria with specified morphological lesion, diffuse endocapillary proliferative glomerulonephritis', 'ICD10_2010'), +('N06.5', 'Isolated proteinuria with specified morphological lesion, diffuse mesangiocapillary glomerulonephritis', 'ICD10_2010'), +('N06.6', 'Isolated proteinuria with specified morphological lesion, dense deposit disease', 'ICD10_2010'), +('N06.7', 'Isolated proteinuria with specified morphological lesion, diffuse crescentic glomerulonephritis', 'ICD10_2010'), +('N06.8', 'Isolated proteinuria with specified morphological lesion, other', 'ICD10_2010'), +('N06.9', 'Isolated proteinuria with specified morphological lesion, unspecified', 'ICD10_2010'), +('N07', 'Hereditary nephropathy, not elsewhere classified', 'ICD10_2010'), +('N07.0', 'Hereditary nephropathy, not elsewhere classified, minor glomerular abnormality', 'ICD10_2010'), +('N07.1', 'Hereditary nephropathy, not elsewhere classified, focal and segmental glomerular lesions', 'ICD10_2010'), +('N07.2', 'Hereditary nephropathy, not elsewhere classified, diffuse membranous glomerulonephritis', 'ICD10_2010'), +('N07.3', 'Hereditary nephropathy, not elsewhere classified, diffuse mesangial proliferative glomerulonephritis', 'ICD10_2010'), +('N07.4', 'Hereditary nephropathy, not elsewhere classified, diffuse endocapillary proliferative glomerulonephritis', 'ICD10_2010'), +('N07.5', 'Hereditary nephropathy, not elsewhere classified, diffuse mesangiocapillary glomerulonephritis', 'ICD10_2010'), +('N07.6', 'Hereditary nephropathy, not elsewhere classified, dense deposit disease', 'ICD10_2010'), +('N07.7', 'Hereditary nephropathy, not elsewhere classified, diffuse crescentic glomerulonephritis', 'ICD10_2010'), +('N07.8', 'Hereditary nephropathy, not elsewhere classified, other', 'ICD10_2010'), +('N07.9', 'Hereditary nephropathy, not elsewhere classified, unspecified', 'ICD10_2010'), +('N08', 'Glomerular disorders in diseases classified elsewhere', 'ICD10_2010'), +('N08.0', 'Glomerular disorder in infectious and parasitic diseases classified elsewhere', 'ICD10_2010'), +('N08.1', 'Glomerular disorders in neoplastic diseases', 'ICD10_2010'), +('N08.2', 'Glomerular disorders in blood diseases and disorders involving the immune mechanism', 'ICD10_2010'), +('N08.3', 'Glomerular disorders in diabetes mellitus', 'ICD10_2010'), +('N08.4', 'Glomerular disorders in other endocrine, nutritional and metabolic diseases', 'ICD10_2010'), +('N08.5', 'Glomerular disorders in systemic connective tissue disorders', 'ICD10_2010'), +('N08.8', 'Glomerular disorders in other diseases classified elsewhere', 'ICD10_2010'), +('N10', 'Acute tubulo-interstitial nephritis', 'ICD10_2010'), +('N11', 'Chronic tubulo-interstitial nephritis', 'ICD10_2010'), +('N11.0', 'Nonobstructive reflux-associated chronic pyelonephritis', 'ICD10_2010'), +('N11.1', 'Chronic obstructive pyelonephritis', 'ICD10_2010'), +('N11.8', 'Other chronic tubulo-interstitial nephritis', 'ICD10_2010'), +('N11.9', 'Chronic tubulo-interstitial nephritis, unspecified', 'ICD10_2010'), +('N12', 'Tubulo-interstitial nephritis not specified as acute or chronic', 'ICD10_2010'), +('N13', 'Obstructive and reflux uropathy', 'ICD10_2010'), +('N13.0', 'Hydronephrosis with ureteropelvic junction obstruction', 'ICD10_2010'), +('N13.1', 'Hydronephrosis with ureteral stricture not elsewhere classified', 'ICD10_2010'), +('N13.2', 'Hydronephrosis with renal and ureteral calculous obstruction', 'ICD10_2010'), +('N13.3', 'Other and unspecified hydronephrosis', 'ICD10_2010'), +('N13.4', 'Hydroureter', 'ICD10_2010'), +('N13.5', 'Kinking and stricture of ureter without hydronephrosis', 'ICD10_2010'), +('N13.6', 'Pyonephrosis', 'ICD10_2010'), +('N13.7', 'Vesicoureteral-reflux-associated uropathy', 'ICD10_2010'), +('N13.8', 'Other obstructive and reflux uropathy', 'ICD10_2010'), +('N13.9', 'Obstructive and reflux uropathy, unspecified', 'ICD10_2010'), +('N14', 'Drug- and heavy-metal-induced tubulo-interstitial and tubular conditions', 'ICD10_2010'), +('N14.0', 'Analgesic nephropathy', 'ICD10_2010'), +('N14.1', 'Nephropathy induced by other drugs, medicaments and biological substances', 'ICD10_2010'), +('N14.2', 'Neuropathy induced by unspecified drug, medicament or biological substance', 'ICD10_2010'), +('N14.3', 'Nephropathy induced by heavy metals', 'ICD10_2010'), +('N14.4', 'Toxic nephropathy, not elsewhere classified', 'ICD10_2010'), +('N15', 'Other renal tubulo-interstitial diseases', 'ICD10_2010'), +('N15.0', 'Balkan nephropathy', 'ICD10_2010'), +('N15.1', 'Renal and perinephric abscess', 'ICD10_2010'), +('N15.8', 'Other specified renal tubulo-interstitial diseases', 'ICD10_2010'), +('N15.9', 'Renal tubulo-interstitial disease, unspecified', 'ICD10_2010'), +('N16', 'Renal tubulo-interstitial disorders in diseases classified elsewhere', 'ICD10_2010'), +('N16.0', 'Renal tubulo-interstital disorders in infectious and parasitic diseases classified elsewhere', 'ICD10_2010'), +('N16.1', 'Renal tubulo-interstitial disorders in neoplastic diseases', 'ICD10_2010'), +('N16.2', 'Renal tubulo-interstitial disorders in blood diseases and disorders involving the immune mechanism', 'ICD10_2010'), +('N16.3', 'Renal tubulo-interstitial disorders in metabolic diseases', 'ICD10_2010'), +('N16.4', 'Renal tubulo-interstitial disorders systemic connective tissue disorders', 'ICD10_2010'), +('N16.5', 'Renal tubulo-interstitial disorders in transplant rejection', 'ICD10_2010'), +('N16.8', 'Renal tubulo-interstitial disorders in other diseases classified elsewhere', 'ICD10_2010'), +('N17', 'Acute renal failure', 'ICD10_2010'), +('N17.0', 'Acute renal failure with tubular necrosis', 'ICD10_2010'), +('N17.1', 'Acute renal failure with acute cortical necrosis', 'ICD10_2010'), +('N17.2', 'Acute renal failure with medullary necrosis', 'ICD10_2010'), +('N17.8', 'Other acute renal failure', 'ICD10_2010'), +('N17.9', 'Acute renal failure, unspecified', 'ICD10_2010'), +('N18', 'Chronic kidney disease', 'ICD10_2010'), +('N18.0', 'End-stage renal disease', 'ICD10_2010'), +('N18.1', 'Chronic kidney disease, stage 1', 'ICD10_2010'), +('N18.2', 'Chronic kidney disease, stage 2', 'ICD10_2010'), +('N18.3', 'Chronic kidney disease, stage 3', 'ICD10_2010'), +('N18.4', 'Chronic kidney disease, stage 4', 'ICD10_2010'), +('N18.5', 'Chronic kidney disease, stage 5', 'ICD10_2010'), +('N18.8', 'Other chronic renal failure', 'ICD10_2010'), +('N18.9', 'Chronic renal failure, unspecified', 'ICD10_2010'), +('N19', 'Unspecified renal failure', 'ICD10_2010'), +('N20', 'Calculus of kidney and ureter', 'ICD10_2010'), +('N20.0', 'Calculus of kidney', 'ICD10_2010'), +('N20.1', 'Calculus of ureter', 'ICD10_2010'), +('N20.2', 'Calculus of kidney with calculus of ureter', 'ICD10_2010'), +('N20.9', 'Urinary calculus, unspecified', 'ICD10_2010'), +('N21', 'Calculus of lower urinary tract', 'ICD10_2010'), +('N21.0', 'Calculus in bladder', 'ICD10_2010'), +('N21.1', 'Calculus in urethra', 'ICD10_2010'), +('N21.8', 'Other lower urinary tract calculus', 'ICD10_2010'), +('N21.9', 'Calculus of lower urinary tract, unspecified', 'ICD10_2010'), +('N22', 'Calculus of urinary tract in diseases classified elsewhere', 'ICD10_2010'), +('N22.0', 'Urinary calculus in schistosomiasis bilharziasis', 'ICD10_2010'), +('N22.8', 'Calculus of urinary tract in other diseases classified elsewhere', 'ICD10_2010'), +('N23', 'Unspecified renal colic', 'ICD10_2010'), +('N25', 'Disorders resulting from impaired renal tubular function', 'ICD10_2010'), +('N25.0', 'Renal osteodystrophy', 'ICD10_2010'), +('N25.1', 'Nephrogenic diabetes insipidus', 'ICD10_2010'), +('N25.8', 'Other disorders resulting from impaired renal tubular function', 'ICD10_2010'), +('N25.9', 'Disorder resulting from impaired renal tubular function, unspecified', 'ICD10_2010'), +('N26', 'Unspecified contracted kidney', 'ICD10_2010'), +('N27', 'Small kidney of unknown cause', 'ICD10_2010'), +('N27.0', 'Small kidney, unilateral', 'ICD10_2010'), +('N27.1', 'Small kidney, bilateral', 'ICD10_2010'), +('N27.9', 'Small kidney, unspecified', 'ICD10_2010'), +('N28', 'Other disorders of kidney and ureter, not elsewhere classified', 'ICD10_2010'), +('N28.0', 'Ischaemia and infarction of kidney', 'ICD10_2010'), +('N28.1', 'Cyst of kidney, acquired', 'ICD10_2010'), +('N28.8', 'Other specified disorders of kidney and ureter', 'ICD10_2010'), +('N28.9', 'Disorder of kidney and ureter, unspecified', 'ICD10_2010'), +('N29', 'Other disorders of kidney and ureter in diseases classified elsewhere', 'ICD10_2010'), +('N29.0', 'Late syphilis of kidney', 'ICD10_2010'), +('N29.1', 'Other disorders of kidney and ureter in infectious and parasitic diseases classified elsewhere', 'ICD10_2010'), +('N29.8', 'Other disorders of kidney and ureter in other diseases classified elsewhere', 'ICD10_2010'), +('N30', 'Cystitis', 'ICD10_2010'), +('N30.0', 'Acute cystitis', 'ICD10_2010'), +('N30.1', 'Interstitial cystitis chronic', 'ICD10_2010'), +('N30.2', 'Other chronic cystitis', 'ICD10_2010'), +('N30.3', 'Trigonitis', 'ICD10_2010'), +('N30.4', 'Irradiation cystitis', 'ICD10_2010'), +('N30.8', 'Other cystitis', 'ICD10_2010'), +('N30.9', 'Cystitis, unspecified', 'ICD10_2010'), +('N31', 'Neuromuscular dysfunction of bladder, not elsewhere classified', 'ICD10_2010'), +('N31.0', 'Uninhibited neuropathic bladder, not elsewhere classified', 'ICD10_2010'), +('N31.1', 'Reflex neuropathic bladder, not elsewhere classified', 'ICD10_2010'), +('N31.2', 'Flaccid neuropathic bladder, not elsewhere classified', 'ICD10_2010'), +('N31.8', 'Other neuromuscular dysfunction of bladder', 'ICD10_2010'), +('N31.9', 'Neuromuscular dysfunction of bladder, unspecified', 'ICD10_2010'), +('N32', 'Other disorders of bladder', 'ICD10_2010'), +('N32.0', 'Bladder-neck obstruction', 'ICD10_2010'), +('N32.1', 'Vesicointestinal fistula', 'ICD10_2010'), +('N32.2', 'Vesical fistula, not elsewhere classified', 'ICD10_2010'), +('N32.3', 'Diverticulum of bladder', 'ICD10_2010'), +('N32.4', 'Rupture of bladder, nontraumatic', 'ICD10_2010'), +('N32.8', 'Other specified disorders of bladder', 'ICD10_2010'), +('N32.9', 'Bladder disorder, unspecified', 'ICD10_2010'), +('N33', 'Bladder disorders in diseases classified elsewhere', 'ICD10_2010'), +('N33.0', 'Tuberculous cystitis', 'ICD10_2010'), +('N33.8', 'Bladder disorders in other diseases classified elsewhere', 'ICD10_2010'), +('N34', 'Urethritis and urethral syndrome', 'ICD10_2010'), +('N34.0', 'Urethral abscess', 'ICD10_2010'), +('N34.1', 'Nonspecific urethritis', 'ICD10_2010'), +('N34.2', 'Other urethritis', 'ICD10_2010'), +('N34.3', 'Urethral syndrome, unspecified', 'ICD10_2010'), +('N35', 'Urethral stricture', 'ICD10_2010'), +('N35.0', 'Post-traumatic urethral stricture', 'ICD10_2010'), +('N35.1', 'Postinfective urethral stricture, not elsewhere classified', 'ICD10_2010'), +('N35.8', 'Other urethral stricture', 'ICD10_2010'), +('N35.9', 'Urethral stricture, unspecified', 'ICD10_2010'), +('N36', 'Other disorders of urethra', 'ICD10_2010'), +('N36.0', 'Urethral fistula', 'ICD10_2010'), +('N36.1', 'Urethral diverticulum', 'ICD10_2010'), +('N36.2', 'Urethral caruncle', 'ICD10_2010'), +('N36.3', 'Prolapsed urethral mucosa', 'ICD10_2010'), +('N36.8', 'Other specified disorders of urethra', 'ICD10_2010'), +('N36.9', 'Urethral disorder, unspecified', 'ICD10_2010'), +('N37', 'Urethral disorders in diseases classified elsewhere', 'ICD10_2010'), +('N37.0', 'Urethritis in diseases classified elsewhere', 'ICD10_2010'), +('N37.8', 'Other urethral disorders in diseases classified elsewhere', 'ICD10_2010'), +('N39', 'Other disorders of urinary system', 'ICD10_2010'), +('N39.0', 'Urinary tract infection, site not specified', 'ICD10_2010'), +('N39.1', 'Persistent proteinuria, unspecified', 'ICD10_2010'), +('N39.2', 'Orthostatic proteinuria, unspecified', 'ICD10_2010'), +('N39.3', 'Stress incontinence', 'ICD10_2010'), +('N39.4', 'Other specified urinary incontinence', 'ICD10_2010'), +('N39.8', 'Other specified disorders of urinary system', 'ICD10_2010'), +('N39.9', 'Disorder of urinary system, unspecified', 'ICD10_2010'), +('N40', 'Hyperplasia of prostate', 'ICD10_2010'), +('N41', 'Inflammatory diseases of prostate', 'ICD10_2010'), +('N41.0', 'Acute prostatitis', 'ICD10_2010'), +('N41.1', 'Chronic prostatitis', 'ICD10_2010'), +('N41.2', 'Abscess of prostate', 'ICD10_2010'), +('N41.3', 'Prostatocystitis', 'ICD10_2010'), +('N41.8', 'Other inflammatory diseases of prostate', 'ICD10_2010'), +('N41.9', 'Inflammatory disease of prostate, unspecified', 'ICD10_2010'), +('N42', 'Other disorders of prostate', 'ICD10_2010'), +('N42.0', 'Calculus of prostate', 'ICD10_2010'), +('N42.1', 'Congestion and haemorrhage of prostate', 'ICD10_2010'), +('N42.2', 'Atrophy of prostate', 'ICD10_2010'), +('N42.3', 'Dysplasia of prostate', 'ICD10_2010'), +('N42.8', 'Other specified disorders of prostate', 'ICD10_2010'), +('N42.9', 'Disorder of prostate, unspecified', 'ICD10_2010'), +('N43', 'Hydrocele and spermatocele', 'ICD10_2010'), +('N43.0', 'Encysted hydrocele', 'ICD10_2010'), +('N43.1', 'Infected hydrocele', 'ICD10_2010'), +('N43.2', 'Other hydrocele', 'ICD10_2010'), +('N43.3', 'Hydrocele, unspecified', 'ICD10_2010'), +('N43.4', 'Spermatocele', 'ICD10_2010'), +('N44', 'Torsion of testis', 'ICD10_2010'), +('N45', 'Orchitis and epididymitis', 'ICD10_2010'), +('N45.0', 'Orchitis, epididymitis and epididymo-orchitis with abscess', 'ICD10_2010'), +('N45.9', 'Orchitis epididymitis and epididymo-orchitis without abscess', 'ICD10_2010'), +('N46', 'Male infertility', 'ICD10_2010'), +('N47', 'Redundant prepuce, phimosis and paraphimosis', 'ICD10_2010'), +('N48', 'Other disorders of penis', 'ICD10_2010'), +('N48.0', 'Leukoplakia of penis', 'ICD10_2010'), +('N48.1', 'Balanoposthitis', 'ICD10_2010'), +('N48.2', 'Other inflammatory disorders of penis', 'ICD10_2010'), +('N48.3', 'Priapism', 'ICD10_2010'), +('N48.4', 'Impotence of organic origin', 'ICD10_2010'), +('N48.5', 'Ulcer of penis', 'ICD10_2010'), +('N48.6', 'Induratio penis plastica', 'ICD10_2010'), +('N48.8', 'Other specified disorders of penis', 'ICD10_2010'), +('N48.9', 'Disorder of penis, unspecified', 'ICD10_2010'), +('N49', 'Inflammatory disorders of male genital organs, not elsewhere classified', 'ICD10_2010'), +('N49.0', 'Inflammatory disorders of seminal vesicle', 'ICD10_2010'), +('N49.1', 'Inflammatory disorders spermatic cord, tunica vaginalis and vas deferens', 'ICD10_2010'), +('N49.2', 'Inflammatory disorders of scrotum', 'ICD10_2010'), +('N49.8', 'Inflammatory disorders of other specified male genital organs', 'ICD10_2010'), +('N49.9', 'Inflammatory disorder of unspecified male genital organ', 'ICD10_2010'), +('N50', 'Other disorders of male genital organs', 'ICD10_2010'), +('N50.0', 'Atrophy of testis', 'ICD10_2010'), +('N50.1', 'Vascular disorders of male genital organs', 'ICD10_2010'), +('N50.8', 'Other specified disorders of male genital organs', 'ICD10_2010'), +('N50.9', 'Disorder of male genital organs, unspecified', 'ICD10_2010'), +('N51', 'Disorders of male genital organs in diseases classified elsewhere', 'ICD10_2010'), +('N51.0', 'Disorders of prostate in diseases classified elsewhere', 'ICD10_2010'), +('N51.1', 'Disorders of testis and epididymis in diseases classified elsewhere', 'ICD10_2010'), +('N51.2', 'Balanitis in diseases classified elsewhere', 'ICD10_2010'), +('N51.8', 'Other disorders of male genital organs in diseases classified elsewhere', 'ICD10_2010'), +('N60', 'Benign mammary dysplasia', 'ICD10_2010'), +('N60.0', 'Solitary cyst of breast', 'ICD10_2010'), +('N60.1', 'Diffuse cystic mastopathy', 'ICD10_2010'), +('N60.2', 'Fibroadenosis of breast', 'ICD10_2010'), +('N60.3', 'Fibrosclerosis of breast', 'ICD10_2010'), +('N60.4', 'Mammary duct ectasia', 'ICD10_2010'), +('N60.8', 'Other benign mammary dysplasias', 'ICD10_2010'), +('N60.9', 'Benign mammary dysplasia, unspecified', 'ICD10_2010'), +('N61', 'Inflammatory disorders of breast', 'ICD10_2010'), +('N62', 'Hypertrophy of breast', 'ICD10_2010'), +('N63', 'Unspecified lump in breast', 'ICD10_2010'), +('N64', 'Other disorders of breast', 'ICD10_2010'), +('N64.0', 'Fissure and fistula of nipple', 'ICD10_2010'), +('N64.1', 'Fat necrosis of breast', 'ICD10_2010'), +('N64.2', 'Atrophy of breast', 'ICD10_2010'), +('N64.3', 'Galactorrhoea not associated with childbirth', 'ICD10_2010'), +('N64.4', 'Mastodynia', 'ICD10_2010'), +('N64.5', 'Other signs and symptoms in breast', 'ICD10_2010'), +('N64.8', 'Other specified disorders of breast', 'ICD10_2010'), +('N64.9', 'Disorder of breast, unspecified', 'ICD10_2010'), +('N70', 'Salpingitis and oophoritis', 'ICD10_2010'), +('N70.0', 'Acute salpingitis and oophoritis', 'ICD10_2010'), +('N70.1', 'Chronic salpingitis and oophoritis', 'ICD10_2010'), +('N70.9', 'Salpingitis and oophoritis, unspecified', 'ICD10_2010'), +('N71', 'Inflammatory disease of uterus, except cervix', 'ICD10_2010'), +('N71.0', 'Acute inflammatory disease of uterus', 'ICD10_2010'), +('N71.1', 'Chronic inflammatory disease of uterus', 'ICD10_2010'), +('N71.9', 'Inflammatory disease of uterus, unspecified', 'ICD10_2010'), +('N72', 'Inflammatory disease of cervix uteri', 'ICD10_2010'), +('N73', 'Other female pelvic inflammatory diseases', 'ICD10_2010'), +('N73.0', 'Acute parametritis and pelvic cellulitis', 'ICD10_2010'), +('N73.1', 'Chronic parametritis and pelvic cellulitis', 'ICD10_2010'), +('N73.2', 'Unspecified parametritis and pelvic cellulitis', 'ICD10_2010'), +('N73.3', 'Female acute pelvic peritonitis', 'ICD10_2010'), +('N73.4', 'Female chronic pelvic peritonitis', 'ICD10_2010'), +('N73.5', 'Female pelvic peritonitis, unspecified', 'ICD10_2010'), +('N73.6', 'Female pelvic peritoneal adhesions', 'ICD10_2010'), +('N73.8', 'Other specified female pelvic inflammatory diseases', 'ICD10_2010'), +('N73.9', 'Female pelvic inflammatory disease, unspecified', 'ICD10_2010'), +('N74', 'Female pelvic inflammatory disorders in diseases classified elsewhere', 'ICD10_2010'), +('N74.0', 'Tuberculous infection of cervix uteri', 'ICD10_2010'), +('N74.1', 'Female tuberculous pelvic inflammatory disease', 'ICD10_2010'), +('N74.2', 'Female syphilitic pelvic inflammatory disease', 'ICD10_2010'), +('N74.3', 'Female gonococcal pelvic inflammatory disease', 'ICD10_2010'), +('N74.4', 'Female chlamydial pelvic inflammatory disease', 'ICD10_2010'), +('N74.8', 'Female pelvic inflammatory disorders in other diseases classified elsewhere', 'ICD10_2010'), +('N75', 'Diseases of Bartholin gland', 'ICD10_2010'), +('N75.0', 'Cyst of Bartholin\'s gland', 'ICD10_2010'), +('N75.1', 'Abscess of Bartholin\'s gland', 'ICD10_2010'), +('N75.8', 'Other diseases of Bartholin\'s gland', 'ICD10_2010'), +('N75.9', 'Disease of Bartholin\'s gland, unspecified', 'ICD10_2010'), +('N76', 'Other inflammation of vagina and vulva', 'ICD10_2010'), +('N76.0', 'Acute vaginitis', 'ICD10_2010'), +('N76.1', 'Subacute and chronic vaginitis', 'ICD10_2010'), +('N76.2', 'Acute vulvitis', 'ICD10_2010'), +('N76.3', 'Subacute and chronic vulvitis', 'ICD10_2010'), +('N76.4', 'Abscess of vulva', 'ICD10_2010'), +('N76.5', 'Ulceration of vagina', 'ICD10_2010'), +('N76.6', 'Ulceration of vulva', 'ICD10_2010'), +('N76.8', 'Other specified inflammation of vagina and vulva', 'ICD10_2010'), +('N77', 'Vulvovaginal ulceration and inflammation in diseases classified elsewhere', 'ICD10_2010'), +('N77.0', 'Ulceration of vulva in infectious and parasitic diseases classified elsewhere', 'ICD10_2010'), +('N77.1', 'Vaginitis vulvitis and vulvovaginitis in infectious and parasitic diseases classified elsewhere', 'ICD10_2010'), +('N77.8', 'Vulvovaginal ulceration and inflammation in other diseases classified elsewhere', 'ICD10_2010'), +('N80', 'Endometriosis', 'ICD10_2010'), +('N80.0', 'Endometriosis of uterus', 'ICD10_2010'), +('N80.1', 'Endometriosis of ovary', 'ICD10_2010'), +('N80.2', 'Endometriosis of fallopian tube', 'ICD10_2010'); +INSERT INTO `icd10` (`ID_ICD10`, `Diagnosa`, `Versi_ICD10`) VALUES +('N80.3', 'Endometriosis of pelvic peritoneum', 'ICD10_2010'), +('N80.4', 'Endometriosis of rectovaginal septum and vagina', 'ICD10_2010'), +('N80.5', 'Endometriosis of intestine', 'ICD10_2010'), +('N80.6', 'Endometriosis in cutaneous scar', 'ICD10_2010'), +('N80.8', 'Other endometriosis', 'ICD10_2010'), +('N80.9', 'Endometriosis, unspecified', 'ICD10_2010'), +('N81', 'Female genital prolapse', 'ICD10_2010'), +('N81.0', 'Female urethrocele', 'ICD10_2010'), +('N81.1', 'Cystocele', 'ICD10_2010'), +('N81.2', 'Incomplete uterovaginal prolapse', 'ICD10_2010'), +('N81.3', 'Complete uterovaginal prolapse', 'ICD10_2010'), +('N81.4', 'Uterovaginal prolapse, unspecified', 'ICD10_2010'), +('N81.5', 'Vaginal enterocele', 'ICD10_2010'), +('N81.6', 'Rectocele', 'ICD10_2010'), +('N81.8', 'Other female genital prolapse', 'ICD10_2010'), +('N81.9', 'Female genital prolapse, unspecified', 'ICD10_2010'), +('N82', 'Fistulae involving female genital tract', 'ICD10_2010'), +('N82.0', 'Vesicovaginal fistula', 'ICD10_2010'), +('N82.1', 'Other female urinary-genital tract fistulae', 'ICD10_2010'), +('N82.2', 'Fistula of vagina to small intestine', 'ICD10_2010'), +('N82.3', 'Fistula of vagina to large intestine', 'ICD10_2010'), +('N82.4', 'Other female intestinal-genital tract fistulae', 'ICD10_2010'), +('N82.5', 'Female genital tract-skin fistulae', 'ICD10_2010'), +('N82.8', 'Other female genital tract fistulae', 'ICD10_2010'), +('N82.9', 'Female genital tract fistula, unspecified', 'ICD10_2010'), +('N83', 'Noninflammatory disorders of ovary, fallopian tube and broad ligament', 'ICD10_2010'), +('N83.0', 'Follicular cyst of ovary', 'ICD10_2010'), +('N83.1', 'Corpus luteum cyst', 'ICD10_2010'), +('N83.2', 'Other and unspecified ovarian cysts', 'ICD10_2010'), +('N83.3', 'Acquired atrophy of ovary and fallopian tube', 'ICD10_2010'), +('N83.4', 'Prolapse and hernia of ovary and fallopian tube', 'ICD10_2010'), +('N83.5', 'Torsion of ovary, ovarian pedicle and fallopian tube', 'ICD10_2010'), +('N83.6', 'Haematosalpinx', 'ICD10_2010'), +('N83.7', 'Haematoma of broad ligament', 'ICD10_2010'), +('N83.8', 'Other noninflamatory disorders of ovary, fallopian tube and broad ligament', 'ICD10_2010'), +('N83.9', 'Noninflammatory disorder of ovary, fallopian tube and broad ligament, unspecified', 'ICD10_2010'), +('N84', 'Polyp of female genital tract', 'ICD10_2010'), +('N84.0', 'Polyp of corpus uteri', 'ICD10_2010'), +('N84.1', 'Polyp of cervix uteri', 'ICD10_2010'), +('N84.2', 'Polyp of vagina', 'ICD10_2010'), +('N84.3', 'Polyp of vulva', 'ICD10_2010'), +('N84.8', 'Polyp of other parts of female genital tract', 'ICD10_2010'), +('N84.9', 'Polyp of female genital tract, unspecified', 'ICD10_2010'), +('N85', 'Other noninflammatory disorders of uterus, except cervix', 'ICD10_2010'), +('N85.0', 'Endometrial glandular hyperplasia', 'ICD10_2010'), +('N85.1', 'Endometrial adenomatous hyperplasia', 'ICD10_2010'), +('N85.2', 'Hypertrophy of uterus', 'ICD10_2010'), +('N85.3', 'Subinvolution of uterus', 'ICD10_2010'), +('N85.4', 'Malposition of uterus', 'ICD10_2010'), +('N85.5', 'Inversion of uterus', 'ICD10_2010'), +('N85.6', 'Intrauterine synechiae', 'ICD10_2010'), +('N85.7', 'Haematometra', 'ICD10_2010'), +('N85.8', 'Other specified noninflammatory disorders of uterus', 'ICD10_2010'), +('N85.9', 'Noninflammatory disorder of uterus, unspecified', 'ICD10_2010'), +('N86', 'Erosion and ectropion of cervix uteri', 'ICD10_2010'), +('N87', 'Dysplasia of cervix uteri', 'ICD10_2010'), +('N87.0', 'Mild cervical dysplasia', 'ICD10_2010'), +('N87.1', 'Moderate cervical dysplasia', 'ICD10_2010'), +('N87.2', 'Severe cervical dysplasia, not elsewhere classified', 'ICD10_2010'), +('N87.9', 'Dysplasia of cervix uteri, unspecified', 'ICD10_2010'), +('N88', 'Other noninflammatory disorders of cervix uteri', 'ICD10_2010'), +('N88.0', 'Leukoplakia of cervix uteri', 'ICD10_2010'), +('N88.1', 'Old laceration of cervix uteri', 'ICD10_2010'), +('N88.2', 'Stricture and stenosis of cervix uteri', 'ICD10_2010'), +('N88.3', 'Incompetence of cervix uteri', 'ICD10_2010'), +('N88.4', 'Hypertrophic elongation of cervix uteri', 'ICD10_2010'), +('N88.8', 'Other specified noninflammatory disorders of cervix uteri', 'ICD10_2010'), +('N88.9', 'Noninflammatory disorder of cervix uteri, unspecified', 'ICD10_2010'), +('N89', 'Other noninflammatory disorders of vagina', 'ICD10_2010'), +('N89.0', 'Mild vaginal dysplasia', 'ICD10_2010'), +('N89.1', 'Moderate vaginal dysplasia', 'ICD10_2010'), +('N89.2', 'Severe vaginal dysplasia, not elsewhere classified', 'ICD10_2010'), +('N89.3', 'Dysplasia of vagina, unspecified', 'ICD10_2010'), +('N89.4', 'Leukoplakia of vagina', 'ICD10_2010'), +('N89.5', 'Stricture and atresia of vagina', 'ICD10_2010'), +('N89.6', 'Tight hymenal ring', 'ICD10_2010'), +('N89.7', 'Haematocolpos', 'ICD10_2010'), +('N89.8', 'Other specified noninflammatory disorders of vagina', 'ICD10_2010'), +('N89.9', 'Noninflammatory disorder of vagina, unspecified', 'ICD10_2010'), +('N90', 'Other noninflammatory disorders of vulva and perineum', 'ICD10_2010'), +('N90.0', 'Mild vulvar dysplasia', 'ICD10_2010'), +('N90.1', 'Moderate vulvar dysplasia', 'ICD10_2010'), +('N90.2', 'Severe vulvar dysplasia, not elsewhere classified', 'ICD10_2010'), +('N90.3', 'Dysplasia of vulva, unspecified', 'ICD10_2010'), +('N90.4', 'Leukoplakia of vulva', 'ICD10_2010'), +('N90.5', 'Atrophy of vulva', 'ICD10_2010'), +('N90.6', 'Hypertrophy of vulva', 'ICD10_2010'), +('N90.7', 'Vulvar cyst', 'ICD10_2010'), +('N90.8', 'Other specified noninflammatory disorders of vulva and perineum', 'ICD10_2010'), +('N90.9', 'Noninflammatory disorder of vulva and perineum, unspecified', 'ICD10_2010'), +('N91', 'Absent, scanty and rare menstruation', 'ICD10_2010'), +('N91.0', 'Primary amenorrhoea', 'ICD10_2010'), +('N91.1', 'Secondary amenorrhoea', 'ICD10_2010'), +('N91.2', 'Amenorrhoea, unspecified', 'ICD10_2010'), +('N91.3', 'Primary oligomenorrhoea', 'ICD10_2010'), +('N91.4', 'Secondary oligomenorrhoea', 'ICD10_2010'), +('N91.5', 'Oligomenorrhoea, unspecified', 'ICD10_2010'), +('N92', 'Excessive, frequent and irregular menstruation', 'ICD10_2010'), +('N92.0', 'Excessive and frequent menstruation with regular cycle', 'ICD10_2010'), +('N92.1', 'Excessive and frequent menstruation with irregular cycle', 'ICD10_2010'), +('N92.2', 'Excessive menstruation at puberty', 'ICD10_2010'), +('N92.3', 'Ovulation bleeding', 'ICD10_2010'), +('N92.4', 'Excessive bleeding in the premenopausal period', 'ICD10_2010'), +('N92.5', 'Other specified irregular menstruation', 'ICD10_2010'), +('N92.6', 'Irregular menstruation, unspecified', 'ICD10_2010'), +('N93', 'Other abnormal uterine and vaginal bleeding', 'ICD10_2010'), +('N93.0', 'Postcoital and contact bleeding', 'ICD10_2010'), +('N93.8', 'Other specified abnormal uterine and vaginal bleeding', 'ICD10_2010'), +('N93.9', 'Abnormal uterine and vaginal bleeding, unspecified', 'ICD10_2010'), +('N94', 'Pain and other conditions associated with female genital organs and menstrual cycle', 'ICD10_2010'), +('N94.0', 'Mittelschmerz', 'ICD10_2010'), +('N94.1', 'Dyspareunia', 'ICD10_2010'), +('N94.2', 'Vaginismus', 'ICD10_2010'), +('N94.3', 'Premenstrual tension syndrome', 'ICD10_2010'), +('N94.4', 'Primary dysmenorrhoea', 'ICD10_2010'), +('N94.5', 'Secondary dysmenorrhoea', 'ICD10_2010'), +('N94.6', 'Dysmenorrhoea, unspecified', 'ICD10_2010'), +('N94.8', 'Other specified conditions associated with female genital organs and menstrual cycle', 'ICD10_2010'), +('N94.9', 'Unspecified condition associated with female genital organs and menstrual cycle', 'ICD10_2010'), +('N95', 'Menopausal and other perimenopausal disorders', 'ICD10_2010'), +('N95.0', 'Postmenopausal bleeding', 'ICD10_2010'), +('N95.1', 'Menopausal and female climacteric states', 'ICD10_2010'), +('N95.2', 'Postmenopausal atrophic vaginitis', 'ICD10_2010'), +('N95.3', 'States associated with artificial menopause', 'ICD10_2010'), +('N95.8', 'Other specified menopausal and perimenopausal disorders', 'ICD10_2010'), +('N95.9', 'Menopausal and perimenopausal disorder, unspecified', 'ICD10_2010'), +('N96', 'Habitual aborter', 'ICD10_2010'), +('N97', 'Female infertility', 'ICD10_2010'), +('N97.0', 'Female infertility associated with anovulation', 'ICD10_2010'), +('N97.1', 'Female infertility of tubal origin', 'ICD10_2010'), +('N97.2', 'Female infertility of uterine origin', 'ICD10_2010'), +('N97.3', 'Female infertility of cervical origin', 'ICD10_2010'), +('N97.4', 'Female infertility associated with male factors', 'ICD10_2010'), +('N97.8', 'Female infertility of other origin', 'ICD10_2010'), +('N97.9', 'Female infertility, unspecified', 'ICD10_2010'), +('N98', 'Complications associated with artificial fertilization', 'ICD10_2010'), +('N98.0', 'Infection associated with artificial insemination', 'ICD10_2010'), +('N98.1', 'Hyperstimulation of ovaries', 'ICD10_2010'), +('N98.2', 'Complications attempted introduction fertilized ovum following in vitro fertilization', 'ICD10_2010'), +('N98.3', 'Complications attempted introduction of embryo in embryo transfer', 'ICD10_2010'), +('N98.8', 'Other complications associated with artificial fertilization', 'ICD10_2010'), +('N98.9', 'Complication associated with artificial fertilization, unspecified', 'ICD10_2010'), +('N99', 'Postprocedural disorders of genitourinary system, not elsewhere classified', 'ICD10_2010'), +('N99.0', 'Postprocedural renal failure', 'ICD10_2010'), +('N99.1', 'Postprocedural urethral stricture', 'ICD10_2010'), +('N99.2', 'Postoperative adhesions of vagina', 'ICD10_2010'), +('N99.3', 'Prolapse of vaginal vault after hysterectomy', 'ICD10_2010'), +('N99.4', 'Postprocedural pelvic peritoneal adhesions', 'ICD10_2010'), +('N99.5', 'Malfunction of external stoma of urinary tract', 'ICD10_2010'), +('N99.8', 'Other postprocedural disorders of genitourinary system', 'ICD10_2010'), +('N99.9', 'Postprocedural disorder of genitourinary system, unspecified', 'ICD10_2010'), +('O00', 'Ectopic pregnancy', 'ICD10_2010'), +('O00.0', 'Abdominal pregnancy', 'ICD10_2010'), +('O00.1', 'Tubal pregnancy', 'ICD10_2010'), +('O00.2', 'Ovarian pregnancy', 'ICD10_2010'), +('O00.8', 'Other ectopic pregnancy', 'ICD10_2010'), +('O00.9', 'Ectopic pregnancy, unspecified', 'ICD10_2010'), +('O01', 'Hydatidiform mole', 'ICD10_2010'), +('O01.0', 'Classical hydatidiform mole', 'ICD10_2010'), +('O01.1', 'Incomplete and partial hydatidiform mole', 'ICD10_2010'), +('O01.9', 'Hydatidiform mole, unspecified', 'ICD10_2010'), +('O02', 'Other abnormal products of conception', 'ICD10_2010'), +('O02.0', 'Blighted ovum and nonhydatidiform mole', 'ICD10_2010'), +('O02.1', 'Missed abortion', 'ICD10_2010'), +('O02.8', 'Other specified abnormal products of conception', 'ICD10_2010'), +('O02.9', 'Abnormal product of conception, unspecified', 'ICD10_2010'), +('O03', 'Spontaneous abortion', 'ICD10_2010'), +('O03.0', 'Spontaneous abortion, incomplete abortion complicated by genital tract and pelvic infection', 'ICD10_2010'), +('O03.1', 'Spontaneous abortion, incomplete abortion complicated by delayed or excessive haemorrhage', 'ICD10_2010'), +('O03.2', 'Spontaneous abortion, incomplete, complicated by embolism', 'ICD10_2010'), +('O03.3', 'Spontaneous abortion, incomplete, with other and unspecified complications', 'ICD10_2010'), +('O03.4', 'Spontaneous abortion, incomplete, without complication', 'ICD10_2010'), +('O03.5', 'Spontaneous abortion, complete or unspecified, complicated by genital tract and pelvic infection', 'ICD10_2010'), +('O03.6', 'Spontaneous abortion, complete or unspecified, complicated by delayed or excessive haemorrhage', 'ICD10_2010'), +('O03.7', 'Spontaneous abortion, complete or unspecified, complicated by embolism', 'ICD10_2010'), +('O03.8', 'Spontaneous abortion, complete or unspecified, with other and unspecified complications', 'ICD10_2010'), +('O03.9', 'Spontaneous abortion, complete or unspecified, without complication', 'ICD10_2010'), +('O04', 'Medical abortion', 'ICD10_2010'), +('O04.0', 'Medical abortion, incomplete, complicated by genital tract and pelvic infection', 'ICD10_2010'), +('O04.1', 'Medical abortion, incomplete, complicated by delayed or excessive haemorrhage', 'ICD10_2010'), +('O04.2', 'Medical abortion, incomplete, complicated by embolism', 'ICD10_2010'), +('O04.3', 'Medical abortion, incomplete, with other and unspecified complications', 'ICD10_2010'), +('O04.4', 'Medical abortion, incomplete, without complication', 'ICD10_2010'), +('O04.5', 'Medical abortion, complete or unspecified, complicated by genital tract and pelvic infection', 'ICD10_2010'), +('O04.6', 'Medical abortion, complete or unspecified, complicated by delayed or excessive haemorrhage', 'ICD10_2010'), +('O04.7', 'Medical abortion, complete or unspecified, complicated by embolism', 'ICD10_2010'), +('O04.8', 'Medical abortion, complete or unspecified, with other and unspecified complications', 'ICD10_2010'), +('O04.9', 'Medical abortion, complete or unspecified, without complication', 'ICD10_2010'), +('O05', 'Other abortion', 'ICD10_2010'), +('O05.0', 'Other abortion, incomplete, complicated by genital tract and pelvic infection', 'ICD10_2010'), +('O05.1', 'Other abortion, incomplete, complicated by delayed or excessive haemorrhage', 'ICD10_2010'), +('O05.2', 'Other abortion, incomplete, complicated by embolism', 'ICD10_2010'), +('O05.3', 'Other abortion, incomplete, with other and unspecified complications', 'ICD10_2010'), +('O05.4', 'Other abortion, incomplete, without complication', 'ICD10_2010'), +('O05.5', 'Other abortion, complete or unspecified, complicated by genital tract and pelvic infection', 'ICD10_2010'), +('O05.6', 'Other abortion, complete or unspecified, complicated by delayed or excessive haemorrhage', 'ICD10_2010'), +('O05.7', 'Other abortion, complete or unspecified, complicated by embolism', 'ICD10_2010'), +('O05.8', 'Other abortion, complete or unspecified, with other and unspecified complications', 'ICD10_2010'), +('O05.9', 'Other abortion, complete or unspecified, without complication', 'ICD10_2010'), +('O06', 'Unspecified abortion', 'ICD10_2010'), +('O06.0', 'Unspecified abortion, incomplete, complicated by genital tract and pelvic infection', 'ICD10_2010'), +('O06.1', 'Unspecified abortion, incomplete, complicated by delayed or excessive haemorrhage', 'ICD10_2010'), +('O06.2', 'Unspecified abortion, incomplete, complicated by embolism', 'ICD10_2010'), +('O06.3', 'Unspecified abortion, incomplete, with other and unspecified complications', 'ICD10_2010'), +('O06.4', 'Unspecified abortion, incomplete, without complication', 'ICD10_2010'), +('O06.5', 'Unspecified abortion, complete or unspecified, complicated by genital tract and pelvic infection', 'ICD10_2010'), +('O06.6', 'Unspecified abortion, complete or unspecified, complicated by delayed or excessive haemorrhage', 'ICD10_2010'), +('O06.7', 'Unspecified abortion, complete or unspecified, complicated by embolism', 'ICD10_2010'), +('O06.8', 'Unspecified abortion, complete or unspecified, with other and unspecified complications', 'ICD10_2010'), +('O06.9', 'Unspecified abortion, complete or unspecified, without complication', 'ICD10_2010'), +('O07', 'Failed attempted abortion', 'ICD10_2010'), +('O07.0', 'Failed medical abortion, complicated by genital tract and pelvic infection', 'ICD10_2010'), +('O07.1', 'Failed medical abortion complicated by delayed or excessive haemorrhage', 'ICD10_2010'), +('O07.2', 'Failed medical abortion, complicated by embolism', 'ICD10_2010'), +('O07.3', 'Failed medical abortion, with other and unspecified complications', 'ICD10_2010'), +('O07.4', 'Failed medical abortion, without complication', 'ICD10_2010'), +('O07.5', 'Other and unspecified failed attempted abortion, complicated by genital tract and pelvic infection', 'ICD10_2010'), +('O07.6', 'Other and unspecified failed attempted abortion, complicated by delayed or excessive haemorrhage', 'ICD10_2010'), +('O07.7', 'Other and unspecified failed attempted abortion, complicated by embolism', 'ICD10_2010'), +('O07.8', 'Other and unspecified failed attempted abortion, with other and unspecified complications', 'ICD10_2010'), +('O07.9', 'Other and unspecified failed attempted abortion, without complication', 'ICD10_2010'), +('O08', 'Complications following abortion and ectopic and molar pregnancy', 'ICD10_2010'), +('O08.0', 'Genital tract and pelvic infection following abortion and ectopic and molar pregnancy', 'ICD10_2010'), +('O08.1', 'Delayed or excessive haemorrhage following abortion and ectopic and molar pregnancy', 'ICD10_2010'), +('O08.2', 'Embolism following abortion and ectopic and molar pregnancy', 'ICD10_2010'), +('O08.3', 'Shock following abortion and ectopic and molar pregnancy', 'ICD10_2010'), +('O08.4', 'Renal failure following abortion and ectopic and molar pregnancy', 'ICD10_2010'), +('O08.5', 'Metabolic disorders following abortion and ectopic and molar pregnancy', 'ICD10_2010'), +('O08.6', 'Damage to pelvic organs and tissues following abortion and ectopic and molar pregnancy', 'ICD10_2010'), +('O08.7', 'Other venous complications following abortion and ectopic and molar pregnancy', 'ICD10_2010'), +('O08.8', 'Other complications following abortion and ectopic and molar pregnancy', 'ICD10_2010'), +('O08.9', 'Complication following abortion and ectopic and molar pregnancy, unspecified', 'ICD10_2010'), +('O10', 'Pre-existing hypertension complicating pregnancy, childbirth and the puerperium', 'ICD10_2010'), +('O10.0', 'Pre-existing essential hypertension complicating pregnancy, childbirth and the puerperium', 'ICD10_2010'), +('O10.1', 'Pre-existing hypertensive heart disease complicating pregnancy, childbirth and the puerperium', 'ICD10_2010'), +('O10.2', 'Pre-existing hypertensive renal disease complicating pregnancy, childbirth and puerperium', 'ICD10_2010'), +('O10.3', 'Pre-existing hypertensive heart and renal disease complicating pregnancy, childbirth and the puerperium', 'ICD10_2010'), +('O10.4', 'Pre-existing secondary hypertension complicating pregnancy, childbirth and the puerperium', 'ICD10_2010'), +('O10.9', 'Unspecified pre-existing hypertension complicating pregnancy, childbirth and the puerperium', 'ICD10_2010'), +('O11', 'Pre-existing hypertensive disorder with superimposed proteinuria', 'ICD10_2010'), +('O12', 'Gestational [pregnancy-induced] oedema and proteinuria without hypertension', 'ICD10_2010'), +('O12.0', 'Gestational oedema', 'ICD10_2010'), +('O12.1', 'Gestational proteinuria', 'ICD10_2010'), +('O12.2', 'Gestational oedema with proteinuria', 'ICD10_2010'), +('O13', 'Gestational [pregnancy-induced] hypertension without signification proteinuria', 'ICD10_2010'), +('O14', 'Gestational [pregnancy-induced] hypertension with significant proteinuria', 'ICD10_2010'), +('O14.0', 'Moderate pre-eclampsia', 'ICD10_2010'), +('O14.1', 'Severe pre-eclampsia', 'ICD10_2010'), +('O14.2', 'HELLP syndrome', 'ICD10_2010'), +('O14.9', 'Pre-eclampsia, unspecified', 'ICD10_2010'), +('O15', 'Eclampsia', 'ICD10_2010'), +('O15.0', 'Eclampsia in pregnancy', 'ICD10_2010'), +('O15.1', 'Eclampsia in labour', 'ICD10_2010'), +('O15.2', 'Eclampsia in the puerperium', 'ICD10_2010'), +('O15.9', 'Eclampsia, unspecified as to time period', 'ICD10_2010'), +('O16', 'Unspecified maternal hypertension', 'ICD10_2010'), +('O20', 'Haemorrhage in early pregnancy', 'ICD10_2010'), +('O20.0', 'Threatened abortion', 'ICD10_2010'), +('O20.8', 'Other haemorrhage in early pregnancy', 'ICD10_2010'), +('O20.9', 'Haemorrhage in early pregnancy, unspecified', 'ICD10_2010'), +('O21', 'Excessive vomiting in pregnancy', 'ICD10_2010'), +('O21.0', 'Mild hyperemesis gravidarum', 'ICD10_2010'), +('O21.1', 'Hyperemesis gravidarum with metabolic disturbance', 'ICD10_2010'), +('O21.2', 'Late vomiting of pregnancy', 'ICD10_2010'), +('O21.8', 'Other vomiting complicating pregnancy', 'ICD10_2010'), +('O21.9', 'Vomiting of pregnancy, unspecified', 'ICD10_2010'), +('O22', 'Venous complications in pregnancy', 'ICD10_2010'), +('O22.0', 'Varicose veins of lower extremity in pregnancy', 'ICD10_2010'), +('O22.1', 'Genital varices in pregnancy', 'ICD10_2010'), +('O22.2', 'Superficial thrombophlebitis in pregnancy', 'ICD10_2010'), +('O22.3', 'Deep phlebothrombosis in pregnancy', 'ICD10_2010'), +('O22.4', 'Haemorrhoids in pregnancy', 'ICD10_2010'), +('O22.5', 'Cerebral venous thrombosis in pregnancy', 'ICD10_2010'), +('O22.8', 'Other venous complications in pregnancy', 'ICD10_2010'), +('O22.9', 'Venous complication in pregnancy, unspecified', 'ICD10_2010'), +('O23', 'Infections of genitourinary tract in pregnancy', 'ICD10_2010'), +('O23.0', 'Infections of kidney in pregnancy', 'ICD10_2010'), +('O23.1', 'Infections of bladder in pregnancy', 'ICD10_2010'), +('O23.2', 'Infections of urethra in pregnancy', 'ICD10_2010'), +('O23.3', 'Infections of other parts of urinary tract in pregnancy', 'ICD10_2010'), +('O23.4', 'Unspecified infection of urinary tract in pregnancy', 'ICD10_2010'), +('O23.5', 'Infections of the genital tract in pregnancy', 'ICD10_2010'), +('O23.9', 'Other and unspecified genitourinary tract infection in pregnancy', 'ICD10_2010'), +('O24', 'Diabetes mellitus in pregnancy', 'ICD10_2010'), +('O24.0', 'Pre-existing diabetes mellitus, insulin-dependent', 'ICD10_2010'), +('O24.1', 'Pre-existing diabetes mellitus, non-insulin-dependent', 'ICD10_2010'), +('O24.2', 'Pre-existing malnutrition-related diabetes mellitus', 'ICD10_2010'), +('O24.3', 'Pre-existing diabetes mellitus, unspecified', 'ICD10_2010'), +('O24.4', 'Diabetes mellitus arising in pregnancy', 'ICD10_2010'), +('O24.9', 'Diabetes mellitus in pregnancy, unspecified', 'ICD10_2010'), +('O25', 'Malnutrition in pregnancy', 'ICD10_2010'), +('O26', 'Maternal care for other conditions predominantly related to pregnancy', 'ICD10_2010'), +('O26.0', 'Excessive weight gain in pregnancy', 'ICD10_2010'), +('O26.1', 'Low weight gain in pregnancy', 'ICD10_2010'), +('O26.2', 'Pregnancy care of habitual aborter', 'ICD10_2010'), +('O26.3', 'Retained intrauterine contraceptive device in pregnancy', 'ICD10_2010'), +('O26.4', 'Herpes gestationis', 'ICD10_2010'), +('O26.5', 'Maternal hypotension syndrome', 'ICD10_2010'), +('O26.6', 'Liver disorders in pregnancy, childbirth and the puerperium', 'ICD10_2010'), +('O26.7', 'Subluxation of symphysis pubis in pregnancy, childbirth and the puerperium', 'ICD10_2010'), +('O26.8', 'Other specified pregnancy-related conditions', 'ICD10_2010'), +('O26.9', 'Pregnancy-related condition, unspecified', 'ICD10_2010'), +('O28', 'Abnormal findings on antenatal screening of mother', 'ICD10_2010'), +('O28.0', 'Abnormal haematological finding on antenatal screening of mother', 'ICD10_2010'), +('O28.1', 'Abnormal biochemical finding on antenatal screening of mother', 'ICD10_2010'), +('O28.2', 'Abnormal cytological finding on antenatal screening of mother', 'ICD10_2010'), +('O28.3', 'Abnormal ultrasonic finding on antenatal screening of mother', 'ICD10_2010'), +('O28.4', 'Abnormal radiological find on antenatal screening of mother', 'ICD10_2010'), +('O28.5', 'Abnormal chromosomal and genetic finding antenatal screening of mother', 'ICD10_2010'), +('O28.8', 'Other abnormal findings on antenatal screening of mother', 'ICD10_2010'), +('O28.9', 'Abnormal finding on antenatal screening of mother, unspecified', 'ICD10_2010'), +('O29', 'Complications of anaesthesia during pregnancy', 'ICD10_2010'), +('O29.0', 'Pulmonary complications of anaesthesia during pregnancy', 'ICD10_2010'), +('O29.1', 'Cardiac complications of anaesthesia during pregnancy', 'ICD10_2010'), +('O29.2', 'Central nervous system complications of anaesthesia during pregnancy', 'ICD10_2010'), +('O29.3', 'Toxic reaction to local anaesthesia during pregnancy', 'ICD10_2010'), +('O29.4', 'Spinal and epidural anaesthesia-induced headache during pregnancy', 'ICD10_2010'), +('O29.5', 'Other complications of spinal and epidural anaesthesia during pregnancy', 'ICD10_2010'), +('O29.6', 'Failed or difficult intubation during pregnancy', 'ICD10_2010'), +('O29.8', 'Other complications of anaesthesia during pregnancy', 'ICD10_2010'), +('O29.9', 'Complication of anaesthesia during pregnancy, unspecified', 'ICD10_2010'), +('O30', 'Multiple gestation', 'ICD10_2010'), +('O30.0', 'Twin pregnancy', 'ICD10_2010'), +('O30.1', 'Triplet pregnancy', 'ICD10_2010'), +('O30.2', 'Quadruplet pregnancy', 'ICD10_2010'), +('O30.8', 'Other multiple gestation', 'ICD10_2010'), +('O30.9', 'Multiple gestation, unspecified', 'ICD10_2010'), +('O31', 'Complications specific to multiple gestation', 'ICD10_2010'), +('O31.0', 'Papyraceous fetus', 'ICD10_2010'), +('O31.1', 'Continuing pregnancy after abortion of one fetus or more', 'ICD10_2010'), +('O31.2', 'Continuing pregnancy after intrauterine death of one fetus or more', 'ICD10_2010'), +('O31.8', 'Other complications specific to multiple gestation', 'ICD10_2010'), +('O32', 'Maternal care for known or suspected malpresentation of fetus', 'ICD10_2010'), +('O32.0', 'Maternal care for unstable lie', 'ICD10_2010'), +('O32.1', 'Maternal care for breech presentation', 'ICD10_2010'), +('O32.2', 'Maternal care for transverse and oblique lie', 'ICD10_2010'), +('O32.3', 'Maternal care for face, brow and chin presentation', 'ICD10_2010'), +('O32.4', 'Maternal care for high head at term', 'ICD10_2010'), +('O32.5', 'Maternal care for multiple gestation with malpresentation of one fetus or more', 'ICD10_2010'), +('O32.6', 'Maternal care for compound presentation', 'ICD10_2010'), +('O32.8', 'Maternal care for other malpresentation of fetus', 'ICD10_2010'), +('O32.9', 'Maternal care for malpresentation of fetus, unspecified', 'ICD10_2010'), +('O33', 'Maternal care for known or suspected disproportion', 'ICD10_2010'), +('O33.0', 'Maternal care for disproportion due to deformity of maternal pelvic bones', 'ICD10_2010'), +('O33.1', 'Maternal care for disproportion due to generally contracted pelvis', 'ICD10_2010'), +('O33.2', 'Maternal care for disproportion due to inlet contraction of pelvis', 'ICD10_2010'), +('O33.3', 'Maternalcare for disproportion due to outlet contract of pelvis', 'ICD10_2010'), +('O33.4', 'Maternal care for disproportion of mixed maternal and fetal origin', 'ICD10_2010'), +('O33.5', 'Maternal care for disproportion due to unusually large fetus', 'ICD10_2010'), +('O33.6', 'Maternal care for disproportion due to hydrocephalic fetus', 'ICD10_2010'), +('O33.7', 'Maternal care for disproportion due to other fetal deformities', 'ICD10_2010'), +('O33.8', 'Maternal care for disproportion of other origin', 'ICD10_2010'), +('O33.9', 'Maternal care for disproportion, unspecified', 'ICD10_2010'), +('O34', 'Maternal care for known or suspected abnormality of pelvic organs', 'ICD10_2010'), +('O34.0', 'Maternal care for congenital malformation of uterus', 'ICD10_2010'), +('O34.1', 'Maternal care for tumour of corpus uteri', 'ICD10_2010'), +('O34.2', 'Maternal care due to uterine scar from previous surgery', 'ICD10_2010'), +('O34.3', 'Maternal care for cervical incompetence', 'ICD10_2010'), +('O34.4', 'Maternal care for other abnormalities of cervix', 'ICD10_2010'), +('O34.5', 'Maternal care for other abnormalities of gravid uterus', 'ICD10_2010'), +('O34.6', 'Maternal care for abnormality of vagina', 'ICD10_2010'), +('O34.7', 'Maternal care for abnormality of vulva and perineum', 'ICD10_2010'), +('O34.8', 'Maternal care for other abnormalities of pelvic organs', 'ICD10_2010'), +('O34.9', 'Maternal care for abnormality of pelvic organ, unspecified', 'ICD10_2010'), +('O35', 'Maternal care for known or suspected fetal abnormality and damage', 'ICD10_2010'), +('O35.0', 'Maternal care for suspected central nervous system malformation in fetus', 'ICD10_2010'), +('O35.1', 'Maternal care for suspected chromosomal abnormality in fetus', 'ICD10_2010'), +('O35.2', 'Maternal care for suspected hereditary disease in fetus', 'ICD10_2010'), +('O35.3', 'Maternal care for suspected damage to fetus from viral disease in mother', 'ICD10_2010'), +('O35.4', 'Maternal care for suspected damage to fetus from alcohol', 'ICD10_2010'), +('O35.5', 'Maternal care for suspected damage to fetus by drugs', 'ICD10_2010'), +('O35.6', 'Maternal care for suspected damage to fetus by radiation', 'ICD10_2010'), +('O35.7', 'Maternal care for suspected damage to fetus by other medical procedures', 'ICD10_2010'), +('O35.8', 'Maternal care for other suspected fetal abnormality and damage', 'ICD10_2010'), +('O35.9', 'Maternal care for suspected fetal abnormality and damage, unspecified', 'ICD10_2010'), +('O36', 'Maternal care for other known or suspected fetal problems', 'ICD10_2010'), +('O36.0', 'Maternal care for rhesus isoimmunization', 'ICD10_2010'), +('O36.1', 'Maternal care for other isoimmunization', 'ICD10_2010'), +('O36.2', 'Maternal care for hydrops fetalis', 'ICD10_2010'), +('O36.3', 'Maternal care for signs of fetal hypoxia', 'ICD10_2010'), +('O36.4', 'Maternal care for intrauterine death', 'ICD10_2010'), +('O36.5', 'Maternal care for poor fetal growth', 'ICD10_2010'), +('O36.6', 'Maternal care for excessive fetal growth', 'ICD10_2010'), +('O36.7', 'Maternal care for viable fetus in abdominal pregnancy', 'ICD10_2010'), +('O36.8', 'Maternal care for other specified fetal problems', 'ICD10_2010'), +('O36.9', 'Maternal care for fetal problem, unspecified', 'ICD10_2010'), +('O40', 'Polyhydramnios', 'ICD10_2010'), +('O41', 'Other disorders of amniotic fluid and membranes', 'ICD10_2010'), +('O41.0', 'Oligohydramnios', 'ICD10_2010'), +('O41.1', 'Infection of amniotic sac and membranes', 'ICD10_2010'), +('O41.8', 'Other specified disorders of amniotic fluid and membranes', 'ICD10_2010'), +('O41.9', 'Disorder of amniotic fluid and membranes, unspecified', 'ICD10_2010'), +('O42', 'Premature rupture of membranes', 'ICD10_2010'), +('O42.0', 'Premature rupture of membranes, onset of labour within 24 hours', 'ICD10_2010'), +('O42.1', 'Premature rupture of membranes, onset of labour after 24 hours', 'ICD10_2010'), +('O42.2', 'Premature rupture of membranes, labour delayed by therapy', 'ICD10_2010'), +('O42.9', 'Premature rupture of membranes, unspecified', 'ICD10_2010'), +('O43', 'Placental disorders', 'ICD10_2010'), +('O43.0', 'Placental transfusion syndromes', 'ICD10_2010'), +('O43.1', 'Malformation of placenta', 'ICD10_2010'), +('O43.2', 'Morbidly adherent placenta', 'ICD10_2010'), +('O43.8', 'Other placental disorders', 'ICD10_2010'), +('O43.9', 'Placental disorder, unspecified', 'ICD10_2010'), +('O44', 'Placenta praevia', 'ICD10_2010'), +('O44.0', 'Placenta praevia specified as without haemorrhage', 'ICD10_2010'), +('O44.1', 'Placenta praevia with haemorrhage', 'ICD10_2010'), +('O45', 'Premature separation of placenta [abruptio placentae]', 'ICD10_2010'), +('O45.0', 'Premature separation of placenta with coagulation defect', 'ICD10_2010'), +('O45.8', 'Other premature separation of placenta', 'ICD10_2010'), +('O45.9', 'Premature separation of placenta, unspecified', 'ICD10_2010'), +('O46', 'Antepartum haemorrhage, not elsewhere classified', 'ICD10_2010'), +('O46.0', 'Antepartum haemorrhage with coagulation defect', 'ICD10_2010'), +('O46.8', 'Other antepartum haemorrhage', 'ICD10_2010'), +('O46.9', 'Antepartum haemorrhage, unspecified', 'ICD10_2010'), +('O47', 'False labour', 'ICD10_2010'), +('O47.0', 'False labour before 37 completed weeks of gestation', 'ICD10_2010'), +('O47.1', 'False labour at or after 37 completed weeks of gestation', 'ICD10_2010'), +('O47.9', 'False labour, unspecified', 'ICD10_2010'), +('O48', 'Prolonged pregnancy', 'ICD10_2010'), +('O60', 'Preterm labour and delivery', 'ICD10_2010'), +('O60.0', 'Preterm labour without delivery', 'ICD10_2010'), +('O60.1', 'Preterm labour with preterm delivery', 'ICD10_2010'), +('O60.2', 'Preterm labour with term delivery', 'ICD10_2010'), +('O60.3', 'Preterm delivery without spontaneous labour', 'ICD10_2010'), +('O61', 'Failed induction of labour', 'ICD10_2010'), +('O61.0', 'Failed medical induction of labour', 'ICD10_2010'), +('O61.1', 'Failed instrumental induction of labour', 'ICD10_2010'), +('O61.8', 'Other failed induction of labour', 'ICD10_2010'), +('O61.9', 'Failed induction of labour, unspecified', 'ICD10_2010'), +('O62', 'Abnormalities of forces of labour', 'ICD10_2010'), +('O62.0', 'Primary inadequate contractions', 'ICD10_2010'), +('O62.1', 'Secondary uterine inertia', 'ICD10_2010'), +('O62.2', 'Other uterine inertia', 'ICD10_2010'), +('O62.3', 'Precipitate labour', 'ICD10_2010'), +('O62.4', 'Hypertonic, incoordinate, and prolonged uterine contractions', 'ICD10_2010'), +('O62.8', 'Other abnormalities of forces of labour', 'ICD10_2010'), +('O62.9', 'Abnormality of forces of labour, unspecified', 'ICD10_2010'), +('O63', 'Long labour', 'ICD10_2010'), +('O63.0', 'Prolonged first stage of labour', 'ICD10_2010'), +('O63.1', 'Prolonged second stage of labour', 'ICD10_2010'), +('O63.2', 'Delayed delivery of second twin, triplet, etc', 'ICD10_2010'), +('O63.9', 'Long labour, unspecified', 'ICD10_2010'), +('O64', 'Obstructed labour due to malposition and malpresentation of fetus', 'ICD10_2010'), +('O64.0', 'Obstructed labour due to incomplete rotation of fetal head', 'ICD10_2010'), +('O64.1', 'Obstructed labour due to breech presentation', 'ICD10_2010'), +('O64.2', 'Obstructed labour due to face presentation', 'ICD10_2010'), +('O64.3', 'Obstructed labour due to brow presentation', 'ICD10_2010'), +('O64.4', 'Obstructed labour due to shoulder presentation', 'ICD10_2010'), +('O64.5', 'Obstructed labour due to compound presentation', 'ICD10_2010'), +('O64.8', 'Obstructed labour due other malposition and malpresentation', 'ICD10_2010'), +('O64.9', 'Obstructed labour due malposition and malpresentation, unspecified', 'ICD10_2010'), +('O65', 'Obstructed labour due to maternal pelvic abnormality', 'ICD10_2010'), +('O65.0', 'Obstructed labour due to deformed pelvis', 'ICD10_2010'), +('O65.1', 'Obstructed labour due to generally contracted pelvis', 'ICD10_2010'), +('O65.2', 'Obstructed labour due to pelvic inlet contraction', 'ICD10_2010'), +('O65.3', 'Obstructed labour due pelvic outlet and mid-cavity contraction', 'ICD10_2010'), +('O65.4', 'Obstructed labour due to fetopelvic disproportion, unspecified', 'ICD10_2010'), +('O65.5', 'Obstructed labour due abnormality of maternal pelvic organs', 'ICD10_2010'), +('O65.8', 'Obstructed labour due to other maternal pelvic abnormalities', 'ICD10_2010'), +('O65.9', 'Obstructed labour due to maternal pelvic abnormality, unspecified', 'ICD10_2010'), +('O66', 'Other obstructed labour', 'ICD10_2010'), +('O66.0', 'Obstructed labour due to shoulder dystocia', 'ICD10_2010'), +('O66.1', 'Obstructed labour due to locked twins', 'ICD10_2010'), +('O66.2', 'Obstructed labour due to unusually large fetus', 'ICD10_2010'), +('O66.3', 'Obstructed labour due to other abnormalities of fetus', 'ICD10_2010'), +('O66.4', 'Failed trial of labour, unspecified', 'ICD10_2010'), +('O66.5', 'Failed application of vacuum extractor and forceps, unspecified', 'ICD10_2010'), +('O66.8', 'Other specified obstructed labour', 'ICD10_2010'), +('O66.9', 'Obstructed labour, unspecified', 'ICD10_2010'), +('O67', 'Labour and delivery complicated by intrapartum haemorrhage, not elsewhere classified', 'ICD10_2010'), +('O67.0', 'Intrapartum haemorrhage with coagulation defect', 'ICD10_2010'), +('O67.8', 'Other intrapartum haemorrhage', 'ICD10_2010'), +('O67.9', 'Intrapartum haemorrhage, unspecified', 'ICD10_2010'), +('O68', 'Labour and delivery complicated by fetal stress [distress]', 'ICD10_2010'), +('O68.0', 'Labour and delivery complicated by fetal heart rate anomaly', 'ICD10_2010'), +('O68.1', 'Labour and delivery complicated by meconium in amniotic fluid', 'ICD10_2010'), +('O68.2', 'Labour and delivery complicated fetal heart rate anomaly with meconium in amniot fluid', 'ICD10_2010'), +('O68.3', 'Labour and delivery complicated by biochemical evidence of fetal stress', 'ICD10_2010'), +('O68.8', 'Labour and delivery complicated by other evidence of fetal stress', 'ICD10_2010'), +('O68.9', 'Labour and delivery complicated by fetal stress, unspecified', 'ICD10_2010'), +('O69', 'Labour and delivery complicated by umbilical cord complications', 'ICD10_2010'), +('O69.0', 'Labour and delivery complicated by prolapse of cord', 'ICD10_2010'), +('O69.1', 'Labour and delivery complicated cord around neck, with compression', 'ICD10_2010'), +('O69.2', 'Labour and delivery complicated by other cord entanglement', 'ICD10_2010'), +('O69.3', 'Labour and delivery complicated by short cord', 'ICD10_2010'), +('O69.4', 'Labour and delivery complicated by vasa praevia', 'ICD10_2010'), +('O69.5', 'Labour and delivery complicated by vascular lesion of cord', 'ICD10_2010'), +('O69.8', 'Labour and delivery complicated by other cord complications', 'ICD10_2010'), +('O69.9', 'Labour and delivery complicated by cord complication, unspecified', 'ICD10_2010'), +('O70', 'Perineal laceration during delivery', 'ICD10_2010'), +('O70.0', 'First degree perineal laceration during delivery', 'ICD10_2010'), +('O70.1', 'Second degree perineal laceration during delivery', 'ICD10_2010'), +('O70.2', 'Third degree perineal laceration during delivery', 'ICD10_2010'), +('O70.3', 'Fourth degree perineal laceration during delivery', 'ICD10_2010'), +('O70.9', 'Perineal laceration during delivery, unspecified', 'ICD10_2010'), +('O71', 'Other obstetric trauma', 'ICD10_2010'), +('O71.0', 'Rupture of uterus before onset of labour', 'ICD10_2010'), +('O71.1', 'Rupture of uterus during labour', 'ICD10_2010'), +('O71.2', 'Postpartum inversion of uterus', 'ICD10_2010'), +('O71.3', 'Obstetric laceration of cervix', 'ICD10_2010'), +('O71.4', 'Obstetric high vaginal laceration alone', 'ICD10_2010'), +('O71.5', 'Other obstetric injury to pelvic organs', 'ICD10_2010'), +('O71.6', 'Obstetric damage to pelvic joints and ligaments', 'ICD10_2010'), +('O71.7', 'Obstetric haematoma of pelvis', 'ICD10_2010'), +('O71.8', 'Other specified obstetric trauma', 'ICD10_2010'), +('O71.9', 'Obstetric trauma, unspecified', 'ICD10_2010'), +('O72', 'Postpartum haemorrhage', 'ICD10_2010'), +('O72.0', 'Third-stage haemorrhage', 'ICD10_2010'), +('O72.1', 'Other immediate postpartum haemorrhage', 'ICD10_2010'), +('O72.2', 'Delayed and secondary postpartum haemorrhage', 'ICD10_2010'), +('O72.3', 'Postpartum coagulation defects', 'ICD10_2010'), +('O73', 'Retained placenta and membranes, without haemorrhage', 'ICD10_2010'), +('O73.0', 'Retained placenta without haemorrhage', 'ICD10_2010'), +('O73.1', 'Retained portions of placenta and membranes, without haemorrhage', 'ICD10_2010'), +('O74', 'Complications of anaesthesia during labour and delivery', 'ICD10_2010'), +('O74.0', 'Aspiration pneumonitis due to anaesthesia during labour and delivery', 'ICD10_2010'), +('O74.1', 'Other pulmonary complications anaesthesia during labour and delivery', 'ICD10_2010'), +('O74.2', 'Cardiac complications of anaesthesia during labour and delivery', 'ICD10_2010'), +('O74.3', 'Central nervous system complications of anaesthesia during labour and delivery', 'ICD10_2010'), +('O74.4', 'Toxic reaction to local anaesthesia during labour and delivery', 'ICD10_2010'), +('O74.5', 'Spinal and epidural anaesthesia-induced headache during labour and delivery', 'ICD10_2010'), +('O74.6', 'Other complications of spinal and epidural anaesthesia during labour and delivery', 'ICD10_2010'), +('O74.7', 'Failed or difficult intubation during labour and delivery', 'ICD10_2010'), +('O74.8', 'Other complications of anaesthesia during labour and delivery', 'ICD10_2010'), +('O74.9', 'Complication of anaesthesia during labour and delivery, unspecified', 'ICD10_2010'), +('O75', 'Other complications of labour and delivery, not elsewhere classified', 'ICD10_2010'), +('O75.0', 'Maternal distress during labour and delivery', 'ICD10_2010'), +('O75.1', 'Shock during or following labour and delivery', 'ICD10_2010'), +('O75.2', 'Pyrexia during labour, not elsewhere classified', 'ICD10_2010'), +('O75.3', 'Other infection during labour', 'ICD10_2010'), +('O75.4', 'Other complications of obstetric surgery and procedures', 'ICD10_2010'), +('O75.5', 'Delayed delivery after artificial rupture of membranes', 'ICD10_2010'), +('O75.6', 'Delayed delivery after spontaneous or unspecified rupture of membranes', 'ICD10_2010'), +('O75.7', 'Vaginal delivery following previous caesarean section', 'ICD10_2010'), +('O75.8', 'Other specified complications of labour and delivery', 'ICD10_2010'), +('O75.9', 'Complication of labour and delivery, unspecified', 'ICD10_2010'), +('O80', 'Single spontaneous delivery', 'ICD10_2010'), +('O80.0', 'Spontaneous vertex delivery', 'ICD10_2010'), +('O80.1', 'Spontaneous breech delivery', 'ICD10_2010'), +('O80.8', 'Other single spontaneous delivery', 'ICD10_2010'), +('O80.9', 'Single spontaneous delivery, unspecified', 'ICD10_2010'), +('O81', 'Single delivery by forceps and vacuum extractor', 'ICD10_2010'), +('O81.0', 'Low forceps delivery', 'ICD10_2010'), +('O81.1', 'Mid-cavity forceps delivery', 'ICD10_2010'), +('O81.2', 'Mid-cavity forceps with rotation', 'ICD10_2010'), +('O81.3', 'Other and unspecified forceps delivery', 'ICD10_2010'), +('O81.4', 'Vacuum extractor delivery', 'ICD10_2010'), +('O81.5', 'Delivery by combination of forceps and vacuum extractor', 'ICD10_2010'), +('O82', 'Single delivery by caesarean section', 'ICD10_2010'), +('O82.0', 'Delivery by elective caesarean section', 'ICD10_2010'), +('O82.1', 'Delivery by emergency caesarean section', 'ICD10_2010'), +('O82.2', 'Delivery by caesarean hysterectomy', 'ICD10_2010'), +('O82.8', 'Other single delivery by caesarean section', 'ICD10_2010'), +('O82.9', 'Delivery by caesarean section, unspecified', 'ICD10_2010'), +('O83', 'Other assisted single delivery', 'ICD10_2010'), +('O83.0', 'Breech extraction', 'ICD10_2010'), +('O83.1', 'Other assisted breech delivery', 'ICD10_2010'), +('O83.2', 'Other manipulation-assisted delivery', 'ICD10_2010'), +('O83.3', 'Delivery of viable fetus in abdominal pregnancy', 'ICD10_2010'), +('O83.4', 'Destructive operation for delivery', 'ICD10_2010'), +('O83.8', 'Other specified assisted single delivery', 'ICD10_2010'), +('O83.9', 'Assisted single delivery, unspecified', 'ICD10_2010'), +('O84', 'Multiple delivery', 'ICD10_2010'), +('O84.0', 'Multiple delivery, all spontaneous', 'ICD10_2010'), +('O84.1', 'Multiple delivery, all by forceps and vacuum extractor', 'ICD10_2010'), +('O84.2', 'Multiple delivery, all by caesarean section', 'ICD10_2010'), +('O84.8', 'Other multiple delivery', 'ICD10_2010'), +('O84.9', 'Multiple delivery, unspecified', 'ICD10_2010'), +('O85', 'Puerperal sepsis', 'ICD10_2010'), +('O86', 'Other puerperal infections', 'ICD10_2010'), +('O86.0', 'Infection of obstetric surgical wound', 'ICD10_2010'), +('O86.1', 'Other infection of genital tract following delivery', 'ICD10_2010'), +('O86.2', 'Urinary tract infection following delivery', 'ICD10_2010'), +('O86.3', 'Other genitourinary tract infections following delivery', 'ICD10_2010'), +('O86.4', 'Pyrexia of unknown origin following delivery', 'ICD10_2010'), +('O86.8', 'Other specified puerperal infections', 'ICD10_2010'), +('O87', 'Venous complications in the puerperium', 'ICD10_2010'), +('O87.0', 'Superficial thrombophlebitis in the puerperium', 'ICD10_2010'), +('O87.1', 'Deep phlebothrombosis in the puerperium', 'ICD10_2010'), +('O87.2', 'Haemorrhoids in the puerperium', 'ICD10_2010'), +('O87.3', 'Cerebral venous thrombosis in the puerperium', 'ICD10_2010'), +('O87.8', 'Other venous complications in the puerperium', 'ICD10_2010'), +('O87.9', 'Venous complication in the puerperium, unspecified', 'ICD10_2010'), +('O88', 'Obstetric embolism', 'ICD10_2010'), +('O88.0', 'Obstetric air embolism', 'ICD10_2010'), +('O88.1', 'Amniotic fluid embolism', 'ICD10_2010'), +('O88.2', 'Obstetric blood-clot embolism', 'ICD10_2010'), +('O88.3', 'Obstetric pyaemic and septic embolism', 'ICD10_2010'), +('O88.8', 'Other obstetric embolism', 'ICD10_2010'), +('O89', 'Complications of anaesthesia during the puerperium', 'ICD10_2010'), +('O89.0', 'Pulmonary complications of anaesthesia during the puerperium', 'ICD10_2010'), +('O89.1', 'Cardiac complications of anaesthesia during the puerperium', 'ICD10_2010'), +('O89.2', 'Central nervous system complications of anaesthesia during the puerperium', 'ICD10_2010'), +('O89.3', 'Toxic reaction to local anaesthesia during the puerperium', 'ICD10_2010'), +('O89.4', 'Spinal and epidural anaesthesia-induced headache during the puerperium', 'ICD10_2010'), +('O89.5', 'Other complications of spinal and epidural anaesthesia during puerperium', 'ICD10_2010'), +('O89.6', 'Failed or difficult intubation during the puerperium', 'ICD10_2010'), +('O89.8', 'Other complications of anaesthesia during the puerperium', 'ICD10_2010'), +('O89.9', 'Complication of anaesthesia during the puerperium, unspecified', 'ICD10_2010'), +('O90', 'Complications of the puerperium, not elsewhere classified', 'ICD10_2010'), +('O90.0', 'Disruption of caesarean section wound', 'ICD10_2010'), +('O90.1', 'Disruption of perineal obstetric wound', 'ICD10_2010'), +('O90.2', 'Haematoma of obstetric wound', 'ICD10_2010'), +('O90.3', 'Cardiomyopathy in the puerperium', 'ICD10_2010'), +('O90.4', 'Postpartum acute renal failure', 'ICD10_2010'), +('O90.5', 'Postpartum thyroiditis', 'ICD10_2010'), +('O90.8', 'Other complications of the puerperium, not elsewhere classified', 'ICD10_2010'), +('O90.9', 'Complication of the puerperium, unspecified', 'ICD10_2010'), +('O91', 'Infections of breast associated with childbirth', 'ICD10_2010'), +('O91.0', 'Infection of nipple associated with childbirth', 'ICD10_2010'), +('O91.1', 'Abscess of breast associated with childbirth', 'ICD10_2010'), +('O91.2', 'Nonpurulent mastitis associated with childbirth', 'ICD10_2010'), +('O92', 'Other disorders of breast and lactation associated with childbirth', 'ICD10_2010'), +('O92.0', 'Retracted nipple associated with childbirth', 'ICD10_2010'), +('O92.1', 'Cracked nipple associated with childbirth', 'ICD10_2010'), +('O92.2', 'Other and unspecified disorders of breast associated with childbirth', 'ICD10_2010'), +('O92.3', 'Agalactia', 'ICD10_2010'), +('O92.4', 'Hypogalactia', 'ICD10_2010'), +('O92.5', 'Suppressed lactation', 'ICD10_2010'), +('O92.6', 'Galactorrhoea', 'ICD10_2010'), +('O92.7', 'Other and unspecified disorders of lactation', 'ICD10_2010'), +('O94', 'Sequelae of complication of pregnancy, childbirth and the puerperium', 'ICD10_2010'), +('O95', 'Obstetric death of unspecified cause', 'ICD10_2010'), +('O96', 'Death from any obstetric cause occuring more than 42 days but less than one year after delivery', 'ICD10_2010'), +('O96.0', 'Death from direct obstetric cause', 'ICD10_2010'), +('O96.1', 'Death from indirect obstetric cause', 'ICD10_2010'), +('O96.9', 'Death from unspecified obstetric cause', 'ICD10_2010'), +('O97', 'Death from sequelae of direct obstetric causes', 'ICD10_2010'), +('O97.0', 'Death from sequelae of direct obstetric cause', 'ICD10_2010'), +('O97.1', 'Death from sequelae of indirect obstetric cause', 'ICD10_2010'), +('O97.9', 'Death from sequelae of obstetric cause, unspecified', 'ICD10_2010'), +('O98', 'Maternal infectious and parasitic diseases classifiable elsewhere but complicating pregnancy, childbirth and the puerperium', 'ICD10_2010'), +('O98.0', 'Tuberculosis complicating pregnancy, childbirth and the puerperium', 'ICD10_2010'), +('O98.1', 'Syphilis complicating pregnancy, childbirth and the puerperium', 'ICD10_2010'), +('O98.2', 'Gonorrhoea complicating pregnancy, childbirth and the puerperium', 'ICD10_2010'), +('O98.3', 'Other infections predominantly sexual mode of transmission complicating pregnancy, childbirth and the puerperium', 'ICD10_2010'), +('O98.4', 'Viral hepatitis complicating pregnancy, childbirth and the puerperium', 'ICD10_2010'), +('O98.5', 'Other viral diseases complicating pregnancy, childbirth and the puerperium', 'ICD10_2010'), +('O98.6', 'Protozoal diseases complicating pregnancy, childbirth and the puerperium', 'ICD10_2010'), +('O98.7', 'Human immunodeficiency [HIV] disease complicating pregnancy, childbirth and the puerperium', 'ICD10_2010'), +('O98.8', 'Other maternal infectious parasitic diseases complicating pregnancy, childbirth and the puerperium', 'ICD10_2010'), +('O98.9', 'Unspecified maternal infectious parasitic disease complicating pregnancy, childbirth and the puerperium', 'ICD10_2010'), +('O99', 'Other maternal diseases classifiable elsewhere but complicating pregnancy, childbirth and the puerperium', 'ICD10_2010'), +('O99.0', 'Anaemia complicating pregnancy, childbirth and the puerperium', 'ICD10_2010'), +('O99.1', 'Other diseases of the blood and blood-forming organs and certain disorders involving the immune mechanism complicating pregnancy, childbirth and the p', 'ICD10_2010'), +('O99.2', 'Endocrine, nutritional metabolic diseases complicating pregnancy, childbirth and the puerperium', 'ICD10_2010'), +('O99.3', 'Mental disorders and diseases of the nervous system complicating pregnancy, childbirth and the puerperium', 'ICD10_2010'), +('O99.4', 'Diseases of the circulatory system complicating pregnancy, childbirth and the puerperium', 'ICD10_2010'), +('O99.5', 'Diseases of the respiratory system complicating pregnancy, childbirth and the puerperium', 'ICD10_2010'), +('O99.6', 'Diseases of the digestive system complicating pregnancy, childbirth and the puerperium', 'ICD10_2010'), +('O99.7', 'Diseases of the skin and subcutaneous tissue complicating pregnancy, childbirth and the puerperium', 'ICD10_2010'), +('O99.8', 'Other specified diseases and conditions complicating pregnancy, childbirth and the puerperium', 'ICD10_2010'), +('P00', 'Fetus and newborn affected by maternal conditions that may be unrelated to present pregnancy', 'ICD10_2010'), +('P00.0', 'Fetus and newborn afected by maternal hypertensive disord', 'ICD10_2010'), +('P00.1', 'Fet and newborn afected by mat renal and urinary tract dis', 'ICD10_2010'), +('P00.2', 'Fetus and newborn affected by mat infect and parasitic dis', 'ICD10_2010'), +('P00.3', 'Fetus and newborn affected oth mat circulatory and resp dis', 'ICD10_2010'), +('P00.4', 'Fetus and newborn affected by maternal nutritional disorders', 'ICD10_2010'), +('P00.5', 'Fetus and newborn affected by maternal injury', 'ICD10_2010'), +('P00.6', 'Fetus and newborn affected by surgical procedure on mother', 'ICD10_2010'), +('P00.7', 'Fetus and newborn affected other medic procs on mother nec', 'ICD10_2010'), +('P00.8', 'Fetus and newborn affected by other maternal conditions', 'ICD10_2010'), +('P00.9', 'Fetus and newborn affected by unspecified maternal condition', 'ICD10_2010'), +('P01', 'Fetus and newborn affected by maternal complications of pregnancy', 'ICD10_2010'), +('P01.0', 'Fetus and newborn affected by incompetent cervix', 'ICD10_2010'), +('P01.1', 'Fetus and newborn affected by premature rupture of membranes', 'ICD10_2010'), +('P01.2', 'Fetus and newborn affected by oligohydramnios', 'ICD10_2010'), +('P01.3', 'Fetus and newborn affected by polyhydramnios', 'ICD10_2010'), +('P01.4', 'Fetus and newborn affected by ectopic pregnancy', 'ICD10_2010'), +('P01.5', 'Fetus and newborn affected by multiple pregnancy', 'ICD10_2010'), +('P01.6', 'Fetus and newborn affected by maternal death', 'ICD10_2010'), +('P01.7', 'Fetus and newborn affected by malpresentation before labour', 'ICD10_2010'), +('P01.8', 'Fetus and newborn affected other maternal comps of preg', 'ICD10_2010'), +('P01.9', 'Fetus and newborn affect by maternal comp of preg unspec act', 'ICD10_2010'), +('P02', 'Fetus and newborn affected by complications of placenta, cord and membranes', 'ICD10_2010'), +('P02.0', 'Fetus and newborn affected by placenta praevia', 'ICD10_2010'), +('P02.1', 'Fetus and newborn affect oth forms placent sepn haemorrh', 'ICD10_2010'), +('P02.2', 'Fetus newborn affect other unsp morph funct abnorm placent', 'ICD10_2010'); +INSERT INTO `icd10` (`ID_ICD10`, `Diagnosa`, `Versi_ICD10`) VALUES +('P02.3', 'Fet and newborn affected by placental transfusion syndr', 'ICD10_2010'), +('P02.4', 'Fetus and newborn affected by prolapsed cord', 'ICD10_2010'), +('P02.5', 'Fetus and newborn affected other compression umb cord', 'ICD10_2010'), +('P02.6', 'Fetus and newborn affect oth unspec conds of umbilical cord', 'ICD10_2010'), +('P02.7', 'Fetus and newborn affected by chorioamnionitis', 'ICD10_2010'), +('P02.8', 'Fetus and newborn affect by oth abnormalities of membr', 'ICD10_2010'), +('P02.9', 'Fetus and newborn affected by abnorm of membranes unsp', 'ICD10_2010'), +('P03', 'Fetus and newborn affected by other complications of labour and delivery', 'ICD10_2010'), +('P03.0', 'Fetus and newborn affected by breech delivery and extraction', 'ICD10_2010'), +('P03.1', 'Fet newborn affect oth malpresent malpos disprop lab deliv', 'ICD10_2010'), +('P03.2', 'Fetus and newborn affected by forceps delivery', 'ICD10_2010'), +('P03.3', 'Fet and newborn affected deliv vacuum extractor ventouse', 'ICD10_2010'), +('P03.4', 'Fetus and newborn affected by caesarean delivery', 'ICD10_2010'), +('P03.5', 'Fetus and newborn affected by precipitate delivery', 'ICD10_2010'), +('P03.6', 'Fetus and newborn affected by abnormal uterine contractions', 'ICD10_2010'), +('P03.8', 'Fetus and newborn affected other spec comps of labour deliv', 'ICD10_2010'), +('P03.9', 'Fetus and newborn affected by comp of lab and deliv unsp', 'ICD10_2010'), +('P04', 'Fetus and newborn affected by noxious influences transmitted via placenta or breast milk', 'ICD10_2010'), +('P04.0', 'Fet newborn affect mat anaesth and analges preg lab del', 'ICD10_2010'), +('P04.1', 'Fetus and newborn affected by other maternal medication', 'ICD10_2010'), +('P04.2', 'Fetus and newborn affected by maternal use of tobacco', 'ICD10_2010'), +('P04.3', 'Fetus and newborn affected by maternal use of alcohol', 'ICD10_2010'), +('P04.4', 'Fetus and newborn affected by mat use of drugs of addiction', 'ICD10_2010'), +('P04.5', 'Fetus and newborn afect by mat use of nutritional chem subs', 'ICD10_2010'), +('P04.6', 'Fet newborn affect mat exposure to environml chem subs', 'ICD10_2010'), +('P04.8', 'Fetus and newborn affected by other mat noxious influences', 'ICD10_2010'), +('P04.9', 'Fetus and newborn affected by mat noxious influence unspec act', 'ICD10_2010'), +('P05', 'Slow fetal growth and fetal malnutrition', 'ICD10_2010'), +('P05.0', 'Light for gestational age', 'ICD10_2010'), +('P05.1', 'Small for gestational age', 'ICD10_2010'), +('P05.2', 'Fet malnutrit without mention light or small for gestat age', 'ICD10_2010'), +('P05.9', 'Slow fetal growth, unspecified', 'ICD10_2010'), +('P07', 'Disorders related to short gestation and low birth weight, not elsewhere classified', 'ICD10_2010'), +('P07.0', 'Extremely low birth weight', 'ICD10_2010'), +('P07.1', 'Other low birth weight', 'ICD10_2010'), +('P07.2', 'Extreme immaturity', 'ICD10_2010'), +('P07.3', 'Other preterm infants', 'ICD10_2010'), +('P08', 'Disorders related to long gestation and high birth weight', 'ICD10_2010'), +('P08.0', 'Exceptionally large baby', 'ICD10_2010'), +('P08.1', 'Other heavy for gestational age infants', 'ICD10_2010'), +('P08.2', 'Post-term infant, not heavy for gestational age', 'ICD10_2010'), +('P10', 'Intracranial laceration and haemorrhage due to birth injury', 'ICD10_2010'), +('P10.0', 'Subdural haemorrhage due to birth injury', 'ICD10_2010'), +('P10.1', 'Cerebral haemorrhage due to birth injury', 'ICD10_2010'), +('P10.2', 'Intraventricular haemorrhage due to birth injury', 'ICD10_2010'), +('P10.3', 'Subarachnoid haemorrhage due to birth injury', 'ICD10_2010'), +('P10.4', 'Tentorial tear due to birth injury', 'ICD10_2010'), +('P10.8', 'Oth intracranial lacerations and haemorrhages due birth inj', 'ICD10_2010'), +('P10.9', 'Unsp intracranial laceration and haemorrhage due birth inj', 'ICD10_2010'), +('P11', 'Other birth injuries to central nervous system', 'ICD10_2010'), +('P11.0', 'Cerebral oedema due to birth injury', 'ICD10_2010'), +('P11.1', 'Other specified brain damage due to birth injury', 'ICD10_2010'), +('P11.2', 'Unspecified brain damage due to birth injury', 'ICD10_2010'), +('P11.3', 'Birth injury to facial nerve', 'ICD10_2010'), +('P11.4', 'Birth injury to other cranial nerves', 'ICD10_2010'), +('P11.5', 'Birth injury to spine and spinal cord', 'ICD10_2010'), +('P11.9', 'Birth injury to central nervous system, unspecified', 'ICD10_2010'), +('P12', 'Birth injury to scalp', 'ICD10_2010'), +('P12.0', 'Cephalhaematoma due to birth injury', 'ICD10_2010'), +('P12.1', 'Chignon due to birth injury', 'ICD10_2010'), +('P12.2', 'Epicranial subaponeurotic haemorrhage due to birth injury', 'ICD10_2010'), +('P12.3', 'Bruising of scalp due to birth injury', 'ICD10_2010'), +('P12.4', 'Monitoring injury of scalp of newborn', 'ICD10_2010'), +('P12.8', 'Other birth injuries to scalp', 'ICD10_2010'), +('P12.9', 'Birth injury to scalp, unspecified', 'ICD10_2010'), +('P13', 'Birth injury to skeleton', 'ICD10_2010'), +('P13.0', 'Fracture of skull due to birth injury', 'ICD10_2010'), +('P13.1', 'Other birth injuries to skull', 'ICD10_2010'), +('P13.2', 'Birth injury to femur', 'ICD10_2010'), +('P13.3', 'Birth injury to other long bones', 'ICD10_2010'), +('P13.4', 'Fracture of clavicle due to birth injury', 'ICD10_2010'), +('P13.8', 'Birth injuries to other parts of skeleton', 'ICD10_2010'), +('P13.9', 'Birth injury to skeleton, unspecified', 'ICD10_2010'), +('P14', 'Birth injury to peripheral nervous system', 'ICD10_2010'), +('P14.0', 'Erb\'s paralysis due to birth injury', 'ICD10_2010'), +('P14.1', 'Klumpke\'s paralysis due to birth injury', 'ICD10_2010'), +('P14.2', 'Phrenic nerve paralysis due to birth injury', 'ICD10_2010'), +('P14.3', 'Other brachial plexus birth injuries', 'ICD10_2010'), +('P14.8', 'Birth injuries to other parts of peripheral nervous system', 'ICD10_2010'), +('P14.9', 'Birth injury to peripheral nervous system, unspecified', 'ICD10_2010'), +('P15', 'Other birth injuries', 'ICD10_2010'), +('P15.0', 'Birth injury to liver', 'ICD10_2010'), +('P15.1', 'Birth injury to spleen', 'ICD10_2010'), +('P15.2', 'Sternomastoid injury due to birth injury', 'ICD10_2010'), +('P15.3', 'Birth injury to eye', 'ICD10_2010'), +('P15.4', 'Birth injury to face', 'ICD10_2010'), +('P15.5', 'Birth injury to external genitalia', 'ICD10_2010'), +('P15.6', 'Subcutaneous fat necrosis due to birth injury', 'ICD10_2010'), +('P15.8', 'Other specified birth injuries', 'ICD10_2010'), +('P15.9', 'Birth injury, unspecified', 'ICD10_2010'), +('P20', 'Intrauterine hypoxia', 'ICD10_2010'), +('P20.0', 'Intrauterine hypoxia first noted before onset of labour', 'ICD10_2010'), +('P20.1', 'Intrauterine hypoxia first noted during labour and delivery', 'ICD10_2010'), +('P20.9', 'Intrauterine hypoxia, unspecified', 'ICD10_2010'), +('P21', 'Birth asphyxia', 'ICD10_2010'), +('P21.0', 'Severe birth asphyxia', 'ICD10_2010'), +('P21.1', 'Mild and moderate birth asphyxia', 'ICD10_2010'), +('P21.9', 'Birth asphyxia, unspecified', 'ICD10_2010'), +('P22', 'Respiratory distress of newborn', 'ICD10_2010'), +('P22.0', 'Respiratory distress syndrome of newborn', 'ICD10_2010'), +('P22.1', 'Transient tachypnoea of newborn', 'ICD10_2010'), +('P22.8', 'Other respiratory distress of newborn', 'ICD10_2010'), +('P22.9', 'Respiratory distress of newborn, unspecified', 'ICD10_2010'), +('P23', 'Congenital pneumonia', 'ICD10_2010'), +('P23.0', 'Congenital pneumonia due to viral agent', 'ICD10_2010'), +('P23.1', 'Congenital pneumonia due to chlamydia', 'ICD10_2010'), +('P23.2', 'Congenital pneumonia due to staphylococcus', 'ICD10_2010'), +('P23.3', 'Congenital pneumonia due to streptococcus, group b', 'ICD10_2010'), +('P23.4', 'Congenital pneumonia due to escherichia coli', 'ICD10_2010'), +('P23.5', 'Congenital pneumonia due to pseudomonas', 'ICD10_2010'), +('P23.6', 'Congenital pneumonia due to other bacterial agents', 'ICD10_2010'), +('P23.8', 'Congenital pneumonia due to other organisms', 'ICD10_2010'), +('P23.9', 'Congenital pneumonia, unspecified', 'ICD10_2010'), +('P24', 'Neonatal aspiration syndromes', 'ICD10_2010'), +('P24.0', 'Neonatal aspiration of meconium', 'ICD10_2010'), +('P24.1', 'Neonatal aspiration of amniotic fluid and mucus', 'ICD10_2010'), +('P24.2', 'Neonatal aspiration of blood', 'ICD10_2010'), +('P24.3', 'Neonatal aspiration of milk and regurgitated food', 'ICD10_2010'), +('P24.8', 'Other neonatal aspiration syndromes', 'ICD10_2010'), +('P24.9', 'Neonatal aspiration syndrome, unspecified', 'ICD10_2010'), +('P25', 'Interstitial emphysema and related conditions originating in the perinatal period', 'ICD10_2010'), +('P25.0', 'Interstitial emphysema originating in the perinatal period', 'ICD10_2010'), +('P25.1', 'Pneumothorax originating in the perinatal period', 'ICD10_2010'), +('P25.2', 'Pneumomediastinum originating in the perinatal period', 'ICD10_2010'), +('P25.3', 'Pneumopericardium originating in the perinatal period', 'ICD10_2010'), +('P25.8', 'Oth conds rel interstit emphysema orig in perinatal period', 'ICD10_2010'), +('P26', 'Pulmonary haemorrhage originating in the perinatal period', 'ICD10_2010'), +('P26.0', 'Tracheobronchial haemorrhage origin in the perinatal period', 'ICD10_2010'), +('P26.1', 'Massive pulmonary haemorrhage orig in the perinatal period', 'ICD10_2010'), +('P26.8', 'Oth pulmonary haemorrhages originating in perinatal period', 'ICD10_2010'), +('P26.9', 'Unspec pulmonary haemorrhage origin in the perinatal period', 'ICD10_2010'), +('P27', 'Chronic respiratory disease originating in the perinatal period', 'ICD10_2010'), +('P27.0', 'Wilson-mikity syndrome', 'ICD10_2010'), +('P27.1', 'Bronchopulmonary dysplasia origin in the perinatal period', 'ICD10_2010'), +('P27.8', 'Other chronic resp diseases origin in the perinatal period', 'ICD10_2010'), +('P27.9', 'Unspec chronic resp disease origin in the perinatal period', 'ICD10_2010'), +('P28', 'Other respiratory conditions originating in the perinatal period', 'ICD10_2010'), +('P28.0', 'Primary atelectasis of newborn', 'ICD10_2010'), +('P28.1', 'Other and unspecified atelectasis of newborn', 'ICD10_2010'), +('P28.2', 'Cyanotic attacks of newborn', 'ICD10_2010'), +('P28.3', 'Primary sleep apnoea of newborn', 'ICD10_2010'), +('P28.4', 'Other apnoea of newborn', 'ICD10_2010'), +('P28.5', 'Respiratory failure of newborn', 'ICD10_2010'), +('P28.8', 'Other specified respiratory conditions of newborn', 'ICD10_2010'), +('P28.9', 'Respiratory condition of newborn, unspecified', 'ICD10_2010'), +('P29', 'Cardiovascular disorders originating in the perinatal period', 'ICD10_2010'), +('P29.0', 'Neonatal cardiac failure', 'ICD10_2010'), +('P29.1', 'Neonatal cardiac dysrhythmia', 'ICD10_2010'), +('P29.2', 'Neonatal hypertension', 'ICD10_2010'), +('P29.3', 'Persistent fetal circulation', 'ICD10_2010'), +('P29.4', 'Transient myocardial ischaemia of newborn', 'ICD10_2010'), +('P29.8', 'Oth cardiovascular disorders origin in the perinatal period', 'ICD10_2010'), +('P29.9', 'Cardiovascular disorder origin in the perinatal period unsp', 'ICD10_2010'), +('P35', 'Congenital viral diseases', 'ICD10_2010'), +('P35.0', 'Congenital rubella syndrome', 'ICD10_2010'), +('P35.1', 'Congenital cytomegalovirus infection', 'ICD10_2010'), +('P35.2', 'Congenital herpesviral [herpes simplex] infection', 'ICD10_2010'), +('P35.3', 'Congenital viral hepatitis', 'ICD10_2010'), +('P35.8', 'Other congenital viral diseases', 'ICD10_2010'), +('P35.9', 'Congenital viral disease, unspecified', 'ICD10_2010'), +('P36', 'Bacterial sepsis of newborn', 'ICD10_2010'), +('P36.0', 'Sepsis of newborn due to streptococcus, group b', 'ICD10_2010'), +('P36.1', 'Sepsis of newborn due to other and unspecified streptococci', 'ICD10_2010'), +('P36.2', 'Sepsis of newborn due to staphylococcus aureus', 'ICD10_2010'), +('P36.3', 'Sepsis of newborn due to other and unspecified staphylococci', 'ICD10_2010'), +('P36.4', 'Sepsis of newborn due to escherichia coli', 'ICD10_2010'), +('P36.5', 'Sepsis of newborn due to anaerobes', 'ICD10_2010'), +('P36.8', 'Other bacterial sepsis of newborn', 'ICD10_2010'), +('P36.9', 'Bacterial sepsis of newborn, unspecified', 'ICD10_2010'), +('P37', 'Other congenital infectious and parasitic diseases', 'ICD10_2010'), +('P37.0', 'Congenital tuberculosis', 'ICD10_2010'), +('P37.1', 'Congenital toxoplasmosis', 'ICD10_2010'), +('P37.2', 'Neonatal (disseminated) listeriosis', 'ICD10_2010'), +('P37.3', 'Congenital falciparum malaria', 'ICD10_2010'), +('P37.4', 'Other congenital malaria', 'ICD10_2010'), +('P37.5', 'Neonatal candidiasis', 'ICD10_2010'), +('P37.8', 'Other specified congenital infectious and parasitic diseases', 'ICD10_2010'), +('P37.9', 'Congenital infectious and parasitic disease, unspecified', 'ICD10_2010'), +('P38', 'Omphalitis of newborn with or without mild haemorrhage', 'ICD10_2010'), +('P39', 'Other infections specific to the perinatal period', 'ICD10_2010'), +('P39.0', 'Neonatal infective mastitis', 'ICD10_2010'), +('P39.1', 'Neonatal conjunctivitis and dacryocystitis', 'ICD10_2010'), +('P39.2', 'Intra-amniotic infection of fetus, not elsewhere classified', 'ICD10_2010'), +('P39.3', 'Neonatal urinary tract infection', 'ICD10_2010'), +('P39.4', 'Neonatal skin infection', 'ICD10_2010'), +('P39.8', 'Other specified infections specific to the perinatal period', 'ICD10_2010'), +('P39.9', 'Infection specific to the perinatal period, unspecified', 'ICD10_2010'), +('P50', 'Fetal blood loss', 'ICD10_2010'), +('P50.0', 'Fetal blood loss from vasa praevia', 'ICD10_2010'), +('P50.1', 'Fetal blood loss from ruptured cord', 'ICD10_2010'), +('P50.2', 'Fetal blood loss from placenta', 'ICD10_2010'), +('P50.3', 'Haemorrhage into co-twin', 'ICD10_2010'), +('P50.4', 'Haemorrhage into maternal circulation', 'ICD10_2010'), +('P50.5', 'Fetal blood loss from cut end of co-twin\'s cord', 'ICD10_2010'), +('P50.8', 'Other fetal blood loss', 'ICD10_2010'), +('P50.9', 'Fetal blood loss, unspecified', 'ICD10_2010'), +('P51', 'Umbilical haemorrhage of newborn', 'ICD10_2010'), +('P51.0', 'Massive umbilical haemorrhage of newborn', 'ICD10_2010'), +('P51.8', 'Other umbilical haemorrhages of newborn', 'ICD10_2010'), +('P51.9', 'Umbilical haemorrhage of newborn, unspecified', 'ICD10_2010'), +('P52', 'Intracranial nontraumatic haemorrhage of fetus and newborn', 'ICD10_2010'), +('P52.0', 'Intraventric (nontraumatic) haemorhage grade 1 fet newborn', 'ICD10_2010'), +('P52.1', 'Intraventric (nontraumatic) haemorhage grade 2 fet newborn', 'ICD10_2010'), +('P52.2', 'Intraventric (nontraumatic) haemorhage grade 3 fet newborn', 'ICD10_2010'), +('P52.3', 'Unspec intraventric (nontraumatic) haemorh fetus newborn', 'ICD10_2010'), +('P52.4', 'Intracerebral (nontraumatic) haemorrhage of fet and newborn', 'ICD10_2010'), +('P52.5', 'Subarachnoid (nontraumatic) haemorrhage of fetus and newborn', 'ICD10_2010'), +('P52.6', 'Cerebelar (nontraum) an post fossa haemorhage fet newborn', 'ICD10_2010'), +('P52.8', 'Oth intracranial (nontraumatic) haemorrhages fetus newborn', 'ICD10_2010'), +('P52.9', 'Intracranial (nontraumatic) haemorrhage fetus newborn unsp', 'ICD10_2010'), +('P53', 'Haemorrhagic disease of fetus and newborn', 'ICD10_2010'), +('P54', 'Other neonatal haemorrhages', 'ICD10_2010'), +('P54.0', 'Neonatal haematemesis', 'ICD10_2010'), +('P54.1', 'Neonatal melaena', 'ICD10_2010'), +('P54.2', 'Neonatal rectal haemorrhage', 'ICD10_2010'), +('P54.3', 'Other neonatal gastrointestinal haemorrhage', 'ICD10_2010'), +('P54.4', 'Neonatal adrenal haemorrhage', 'ICD10_2010'), +('P54.5', 'Neonatal cutaneous haemorrhage', 'ICD10_2010'), +('P54.6', 'Neonatal vaginal haemorrhage', 'ICD10_2010'), +('P54.8', 'Other specified neonatal haemorrhages', 'ICD10_2010'), +('P54.9', 'Neonatal haemorrhage, unspecified', 'ICD10_2010'), +('P55', 'Haemolytic disease of fetus and newborn', 'ICD10_2010'), +('P55.0', 'Rh isoimmunization of fetus and newborn', 'ICD10_2010'), +('P55.1', 'Abo isoimmunization of fetus and newborn', 'ICD10_2010'), +('P55.8', 'Other haemolytic diseases of fetus and newborn', 'ICD10_2010'), +('P55.9', 'Haemolytic disease of fetus and newborn, unspecified', 'ICD10_2010'), +('P56', 'Hydrops fetalis due to haemolytic disease', 'ICD10_2010'), +('P56.0', 'Hydrops fetalis due to isoimmunization', 'ICD10_2010'), +('P56.9', 'Hydrops fetalis due to other and unspec haemolytic disease', 'ICD10_2010'), +('P57', 'Kernicterus', 'ICD10_2010'), +('P57.0', 'Kernicterus due to isoimmunization', 'ICD10_2010'), +('P57.8', 'Other specified kernicterus', 'ICD10_2010'), +('P57.9', 'Kernicterus, unspecified', 'ICD10_2010'), +('P58', 'Neonatal jaundice due to other excessive haemolysis', 'ICD10_2010'), +('P58.0', 'Neonatal jaundice due to bruising', 'ICD10_2010'), +('P58.1', 'Neonatal jaundice due to bleeding', 'ICD10_2010'), +('P58.2', 'Neonatal jaundice due to infection', 'ICD10_2010'), +('P58.3', 'Neonatal jaundice due to polycythaemia', 'ICD10_2010'), +('P58.4', 'Neon jaund due drug tox transmit from mother or given nwbrn', 'ICD10_2010'), +('P58.5', 'Neonatal jaundice due to swallowed maternal blood', 'ICD10_2010'), +('P58.8', 'Neonatal jaundice due to oth specif excessive haemolysis', 'ICD10_2010'), +('P58.9', 'Neonatal jaundice due to excessive haemolysis, unspecified', 'ICD10_2010'), +('P59', 'Neonatal jaundice from other and unspecified causes', 'ICD10_2010'), +('P59.0', 'Neonatal jaundice associated with preterm delivery', 'ICD10_2010'), +('P59.1', 'Inspissated bile syndrome', 'ICD10_2010'), +('P59.2', 'Neonat jaundice from oth and unspec hepatocellul damage', 'ICD10_2010'), +('P59.3', 'Neonatal jaundice from breast milk inhibitor', 'ICD10_2010'), +('P59.8', 'Neonatal jaundice from other specified causes', 'ICD10_2010'), +('P59.9', 'Neonatal jaundice, unspecified', 'ICD10_2010'), +('P60', 'Disseminated intravascular coagulation of fetus and newborn', 'ICD10_2010'), +('P61', 'Other perinatal haematological disorders', 'ICD10_2010'), +('P61.0', 'Transient neonatal thrombocytopenia', 'ICD10_2010'), +('P61.1', 'Polycythaemia neonatorum', 'ICD10_2010'), +('P61.2', 'Anaemia of prematurity', 'ICD10_2010'), +('P61.3', 'Congenital anaemia from fetal blood loss', 'ICD10_2010'), +('P61.4', 'Other congenital anaemias, not elsewhere classified', 'ICD10_2010'), +('P61.5', 'Transient neonatal neutropenia', 'ICD10_2010'), +('P61.6', 'Other transient neonatal disorders of coagulation', 'ICD10_2010'), +('P61.8', 'Other specified perinatal haematological disorders', 'ICD10_2010'), +('P61.9', 'Perinatal haematological disorder, unspecified', 'ICD10_2010'), +('P70', 'Transitory disorders of carbohydrate metabolism specific to fetus and newborn', 'ICD10_2010'), +('P70.0', 'Syndrome of infant of mother with gestational diabetes', 'ICD10_2010'), +('P70.1', 'Syndrome of infant of a diabetic mother', 'ICD10_2010'), +('P70.2', 'Neonatal diabetes mellitus', 'ICD10_2010'), +('P70.3', 'Iatrogenic neonatal hypoglycaemia', 'ICD10_2010'), +('P70.4', 'Other neonatal hypoglycaemia', 'ICD10_2010'), +('P70.8', 'Oth transitory disorder carbohydrate metab fet and newborn', 'ICD10_2010'), +('P70.9', 'Trans disorder carbohydrate metab of fet and newborn unspec act', 'ICD10_2010'), +('P71', 'Transitory neonatal disorders of calcium and magnesium metabolism', 'ICD10_2010'), +('P71.0', 'Cow\'s milk hypocalcaemia in newborn', 'ICD10_2010'), +('P71.1', 'Other neonatal hypocalcaemia', 'ICD10_2010'), +('P71.2', 'Neonatal hypomagnesaemia', 'ICD10_2010'), +('P71.3', 'Neonatal tetany without calcium or magnesium deficiency', 'ICD10_2010'), +('P71.4', 'Transitory neonatal hypoparathyroidism', 'ICD10_2010'), +('P71.8', 'Oth transitory neonatl disord calcium and magnesium metab', 'ICD10_2010'), +('P71.9', 'Transitory neonatl disord calcium and magnes metab uns', 'ICD10_2010'), +('P72', 'Other transitory neonatal endocrine disorders', 'ICD10_2010'), +('P72.0', 'Neonatal goitre, not elsewhere classified', 'ICD10_2010'), +('P72.1', 'Transitory neonatal hyperthyroidism', 'ICD10_2010'), +('P72.2', 'Other transitory neonatal disorders of thyroid function nec', 'ICD10_2010'), +('P72.8', 'Other specified transitory neonatal endocrine disorders', 'ICD10_2010'), +('P72.9', 'Transitory neonatal endocrine disorder, unspecified', 'ICD10_2010'), +('P74', 'Other transitory neonatal electrolyte and metabolic disturbances', 'ICD10_2010'), +('P74.0', 'Late metabolic acidosis of newborn', 'ICD10_2010'), +('P74.1', 'Dehydration of newborn', 'ICD10_2010'), +('P74.2', 'Disturbances of sodium balance of newborn', 'ICD10_2010'), +('P74.3', 'Disturbances of potassium balance of newborn', 'ICD10_2010'), +('P74.4', 'Other transitory electrolyte disturbances of newborn', 'ICD10_2010'), +('P74.5', 'Transitory tyrosinaemia of newborn', 'ICD10_2010'), +('P74.8', 'Other transitory metabolic disturbances of newborn', 'ICD10_2010'), +('P74.9', 'Transitory metabolic disturbance of newborn, unspecified', 'ICD10_2010'), +('P75', 'Meconium ileus', 'ICD10_2010'), +('P76', 'Other intestinal obstruction of newborn', 'ICD10_2010'), +('P76.0', 'Meconium plug syndrome', 'ICD10_2010'), +('P76.1', 'Transitory ileus of newborn', 'ICD10_2010'), +('P76.2', 'Intestinal obstruction due to inspissated milk', 'ICD10_2010'), +('P76.8', 'Other specified intestinal obstruction of newborn', 'ICD10_2010'), +('P76.9', 'Intestinal obstruction of newborn, unspecified', 'ICD10_2010'), +('P77', 'Necrotizing enterocolitis of fetus and newborn', 'ICD10_2010'), +('P78', 'Other perinatal digestive system disorders', 'ICD10_2010'), +('P78.0', 'Perinatal intestinal perforation', 'ICD10_2010'), +('P78.1', 'Other neonatal peritonitis', 'ICD10_2010'), +('P78.2', 'Neonat haematemesis and melaena due swallow mat blood', 'ICD10_2010'), +('P78.3', 'Noninfective neonatal diarrhoea', 'ICD10_2010'), +('P78.8', 'Other specified perinatal digestive system disorders', 'ICD10_2010'), +('P78.9', 'Perinatal digestive system disorder, unspecified', 'ICD10_2010'), +('P80', 'Hypothermia of newborn', 'ICD10_2010'), +('P80.0', 'Cold injury syndrome', 'ICD10_2010'), +('P80.8', 'Other hypothermia of newborn', 'ICD10_2010'), +('P80.9', 'Hypothermia of newborn, unspecified', 'ICD10_2010'), +('P81', 'Other disturbances of temperature regulation of newborn', 'ICD10_2010'), +('P81.0', 'Environmental hyperthermia of newborn', 'ICD10_2010'), +('P81.8', 'Oth spec disturbances of temperature regulation of newborn', 'ICD10_2010'), +('P81.9', 'Disturbance of temperature regulation of newborn', 'ICD10_2010'), +('P83', 'Other conditions of integument specific to fetus and newborn', 'ICD10_2010'), +('P83.0', 'Sclerema neonatorum', 'ICD10_2010'), +('P83.1', 'Neonatal erythema toxicum', 'ICD10_2010'), +('P83.2', 'Hydrops fetalis not due to haemolytic disease', 'ICD10_2010'), +('P83.3', 'Other and unspecified oedema specific to fetus and newborn', 'ICD10_2010'), +('P83.4', 'Breast engorgement of newborn', 'ICD10_2010'), +('P83.5', 'Congenital hydrocele', 'ICD10_2010'), +('P83.6', 'Umbilical polyp of newborn', 'ICD10_2010'), +('P83.8', 'Other spec cond of integument specific to fetus and newborn', 'ICD10_2010'), +('P83.9', 'Condition of integument specific to fetus and newborn uns', 'ICD10_2010'), +('P90', 'Convulsions of newborn', 'ICD10_2010'), +('P91', 'Other disturbances of cerebral status of newborn', 'ICD10_2010'), +('P91.0', 'Neonatal cerebral ischaemia', 'ICD10_2010'), +('P91.1', 'Acquired periventricular cysts of newborn', 'ICD10_2010'), +('P91.2', 'Neonatal cerebral leukomalacia', 'ICD10_2010'), +('P91.3', 'Neonatal cerebral irritability', 'ICD10_2010'), +('P91.4', 'Neonatal cerebral depression', 'ICD10_2010'), +('P91.5', 'Neonatal coma', 'ICD10_2010'), +('P91.6', 'Hypoxic ischaemic encephalopathy of newborn', 'ICD10_2010'), +('P91.8', 'Other specified disturbances of cerebral status of newborn', 'ICD10_2010'), +('P91.9', 'Disturbance of cerebral status of newborn, unspecified', 'ICD10_2010'), +('P92', 'Feeding problems of newborn', 'ICD10_2010'), +('P92.0', 'Vomiting in newborn', 'ICD10_2010'), +('P92.1', 'Regurgitation and rumination in newborn', 'ICD10_2010'), +('P92.2', 'Slow feeding of newborn', 'ICD10_2010'), +('P92.3', 'Underfeeding of newborn', 'ICD10_2010'), +('P92.4', 'Overfeeding of newborn', 'ICD10_2010'), +('P92.5', 'Neonatal difficulty in feeding at breast', 'ICD10_2010'), +('P92.8', 'Other feeding problems of newborn', 'ICD10_2010'), +('P92.9', 'Feeding problem of newborn, unspecified', 'ICD10_2010'), +('P93', 'Reactions and intoxications due drug admin fet and newborn', 'ICD10_2010'), +('P94', 'Disorders of muscle tone of newborn', 'ICD10_2010'), +('P94.0', 'Transient neonatal myasthenia gravis', 'ICD10_2010'), +('P94.1', 'Congenital hypertonia', 'ICD10_2010'), +('P94.2', 'Congenital hypotonia', 'ICD10_2010'), +('P94.8', 'Other disorders of muscle tone of newborn', 'ICD10_2010'), +('P94.9', 'Disorder of muscle tone of newborn, unspecified', 'ICD10_2010'), +('P95', 'Fetal death of unspecified cause', 'ICD10_2010'), +('P96', 'Other conditions originating in the perinatal period', 'ICD10_2010'), +('P96.0', 'Congenital renal failure', 'ICD10_2010'), +('P96.1', 'Neonat withdrawal symptom from mat use of drug of addiction', 'ICD10_2010'), +('P96.2', 'Withdrawal symptoms from therapeutic use of drugs in newborn', 'ICD10_2010'), +('P96.3', 'Wide cranial sutures of newborn', 'ICD10_2010'), +('P96.4', 'Termination of pregnancy, fetus and newborn', 'ICD10_2010'), +('P96.5', 'Complicationss of intrauterine procedures nec', 'ICD10_2010'), +('P96.8', 'Other spec conditions originating in the perinatal period', 'ICD10_2010'), +('P96.9', 'Condition originating in the perinatal period, unspecified', 'ICD10_2010'), +('Q00', 'Anencephaly and similar malformations', 'ICD10_2010'), +('Q00.0', 'Anencephaly', 'ICD10_2010'), +('Q00.1', 'Craniorachischisis', 'ICD10_2010'), +('Q00.2', 'Iniencephaly', 'ICD10_2010'), +('Q01', 'Encephalocele', 'ICD10_2010'), +('Q01.0', 'Frontal encephalocele', 'ICD10_2010'), +('Q01.1', 'Nasofrontal encephalocele', 'ICD10_2010'), +('Q01.2', 'Occipital encephalocele', 'ICD10_2010'), +('Q01.8', 'Encephalocele of other sites', 'ICD10_2010'), +('Q01.9', 'Encephalocele, unspecified', 'ICD10_2010'), +('Q02', 'Microcephaly', 'ICD10_2010'), +('Q03', 'Congenital hydrocephalus', 'ICD10_2010'), +('Q03.0', 'Malformations of aqueduct of sylvius', 'ICD10_2010'), +('Q03.1', 'Atresia of foramina of magendie and luschka', 'ICD10_2010'), +('Q03.8', 'Other congenital hydrocephalus', 'ICD10_2010'), +('Q03.9', 'Congenital hydrocephalus, unspecified', 'ICD10_2010'), +('Q04', 'Other congenital malformations of brain', 'ICD10_2010'), +('Q04.0', 'Congenital malformations of corpus callosum', 'ICD10_2010'), +('Q04.1', 'Arhinencephaly', 'ICD10_2010'), +('Q04.2', 'Holoprosencephaly', 'ICD10_2010'), +('Q04.3', 'Other reduction deformities of brain', 'ICD10_2010'), +('Q04.4', 'Septo-optic dysplasia', 'ICD10_2010'), +('Q04.5', 'Megalencephaly', 'ICD10_2010'), +('Q04.6', 'Congenital cerebral cysts', 'ICD10_2010'), +('Q04.8', 'Other specified congenital malformations of brain', 'ICD10_2010'), +('Q04.9', 'Congenital malformation of brain, unspecified', 'ICD10_2010'), +('Q05', 'Spina bifida', 'ICD10_2010'), +('Q05.0', 'Cervical spina bifida with hydrocephalus', 'ICD10_2010'), +('Q05.1', 'Thoracic spina bifida with hydrocephalus', 'ICD10_2010'), +('Q05.2', 'Lumbar spina bifida with hydrocephalus', 'ICD10_2010'), +('Q05.3', 'Sacral spina bifida with hydrocephalus', 'ICD10_2010'), +('Q05.4', 'Unspecified spina bifida with hydrocephalus', 'ICD10_2010'), +('Q05.5', 'Cervical spina bifida without hydrocephalus', 'ICD10_2010'), +('Q05.6', 'Thoracic spina bifida without hydrocephalus', 'ICD10_2010'), +('Q05.7', 'Lumbar spina bifida without hydrocephalus', 'ICD10_2010'), +('Q05.8', 'Sacral spina bifida without hydrocephalus', 'ICD10_2010'), +('Q05.9', 'Spina bifida, unspecified', 'ICD10_2010'), +('Q06', 'Other congenital malformations of spinal cord', 'ICD10_2010'), +('Q06.0', 'Amyelia', 'ICD10_2010'), +('Q06.1', 'Hypoplasia and dysplasia of spinal cord', 'ICD10_2010'), +('Q06.2', 'Diastematomyelia', 'ICD10_2010'), +('Q06.3', 'Other congenital cauda equina malformations', 'ICD10_2010'), +('Q06.4', 'Hydromyelia', 'ICD10_2010'), +('Q06.8', 'Other specified congenital malformations of spinal cord', 'ICD10_2010'), +('Q06.9', 'Congenital malformation of spinal cord, unspecified', 'ICD10_2010'), +('Q07', 'Other congenital malformations of nervous system', 'ICD10_2010'), +('Q07.0', 'Arnold-chiari syndrome', 'ICD10_2010'), +('Q07.8', 'Other specified congenital malformations of nervous system', 'ICD10_2010'), +('Q07.9', 'Congenital malformation of nervous system, unspecified', 'ICD10_2010'), +('Q10', 'Congenital malformations of eyelid, lacrimal apparatus and orbit', 'ICD10_2010'), +('Q10.0', 'Congenital ptosis', 'ICD10_2010'), +('Q10.1', 'Congenital ectropion', 'ICD10_2010'), +('Q10.2', 'Congenital entropion', 'ICD10_2010'), +('Q10.3', 'Other congenital malformations of eyelid', 'ICD10_2010'), +('Q10.4', 'Absence and agenesis of lacrimal apparatus', 'ICD10_2010'), +('Q10.5', 'Congenital stenosis and stricture of lacrimal duct', 'ICD10_2010'), +('Q10.6', 'Other congenital malformations of lacrimal apparatus', 'ICD10_2010'), +('Q10.7', 'Congenital malformation of orbit', 'ICD10_2010'), +('Q11', 'Anophthalmos, microphthalmos and macrophthalmos', 'ICD10_2010'), +('Q11.0', 'Cystic eyeball', 'ICD10_2010'), +('Q11.1', 'Other anophthalmos', 'ICD10_2010'), +('Q11.2', 'Microphthalmos', 'ICD10_2010'), +('Q11.3', 'Macrophthalmos', 'ICD10_2010'), +('Q12', 'Congenital lens malformations', 'ICD10_2010'), +('Q12.0', 'Congenital cataract', 'ICD10_2010'), +('Q12.1', 'Congenital displaced lens', 'ICD10_2010'), +('Q12.2', 'Coloboma of lens', 'ICD10_2010'), +('Q12.3', 'Congenital aphakia', 'ICD10_2010'), +('Q12.4', 'Spherophakia', 'ICD10_2010'), +('Q12.8', 'Other congenital lens malformations', 'ICD10_2010'), +('Q12.9', 'Congenital lens malformation, unspecified', 'ICD10_2010'), +('Q13', 'Congenital malformations of anterior segment of eye', 'ICD10_2010'), +('Q13.0', 'Coloboma of iris', 'ICD10_2010'), +('Q13.1', 'Absence of iris', 'ICD10_2010'), +('Q13.2', 'Other congenital malformations of iris', 'ICD10_2010'), +('Q13.3', 'Congenital corneal opacity', 'ICD10_2010'), +('Q13.4', 'Other congenital corneal malformations', 'ICD10_2010'), +('Q13.5', 'Blue sclera', 'ICD10_2010'), +('Q13.8', 'Other congenital malformations of anterior segment of eye', 'ICD10_2010'), +('Q13.9', 'Congenital malformation of anterior segment of eye unspecified', 'ICD10_2010'), +('Q14', 'Congenital malformations of posterior segment of eye', 'ICD10_2010'), +('Q14.0', 'Congenital malformation of vitreous humour', 'ICD10_2010'), +('Q14.1', 'Congenital malformation of retina', 'ICD10_2010'), +('Q14.2', 'Congenital malformation of optic disc', 'ICD10_2010'), +('Q14.3', 'Congenital malformation of choroid', 'ICD10_2010'), +('Q14.8', 'Other congenital malformations of posterior segment of eye', 'ICD10_2010'), +('Q14.9', 'Congenital malformation of posterior segment of eye unspecified', 'ICD10_2010'), +('Q15', 'Other congenital malformations of eye', 'ICD10_2010'), +('Q15.0', 'Congenital glaucoma', 'ICD10_2010'), +('Q15.8', 'Other specified congenital malformations of eye', 'ICD10_2010'), +('Q15.9', 'Congenital malformation of eye, unspecified', 'ICD10_2010'), +('Q16', 'Congenital malformations of ear causing impairment of hearing', 'ICD10_2010'), +('Q16.0', 'Congenital absence of (ear) auricle', 'ICD10_2010'), +('Q16.1', 'Congenital absence atresia & stricture auditory canal (external)', 'ICD10_2010'), +('Q16.2', 'Absence of eustachian tube', 'ICD10_2010'), +('Q16.3', 'Congenital malformation of ear ossicles', 'ICD10_2010'), +('Q16.4', 'Other congenital malformations of middle ear', 'ICD10_2010'), +('Q16.5', 'Congenital malformation of inner ear', 'ICD10_2010'), +('Q16.9', 'Congenital malform of ear causing impairment of hearing unspecified', 'ICD10_2010'), +('Q17', 'Other congenital malformations of ear', 'ICD10_2010'), +('Q17.0', 'Accessory auricle', 'ICD10_2010'), +('Q17.1', 'Macrotia', 'ICD10_2010'), +('Q17.2', 'Microtia', 'ICD10_2010'), +('Q17.3', 'Other misshapen ear', 'ICD10_2010'), +('Q17.4', 'Misplaced ear', 'ICD10_2010'), +('Q17.5', 'Prominent ear', 'ICD10_2010'), +('Q17.8', 'Other specified congenital malformations of ear', 'ICD10_2010'), +('Q17.9', 'Congenital malformation of ear, unspecified', 'ICD10_2010'), +('Q18', 'Other congenital malformations of face and neck', 'ICD10_2010'), +('Q18.0', 'Sinus, fistula and cyst of branchial cleft', 'ICD10_2010'), +('Q18.1', 'Preauricular sinus and cyst', 'ICD10_2010'), +('Q18.2', 'Other branchial cleft malformations', 'ICD10_2010'), +('Q18.3', 'Webbing of neck', 'ICD10_2010'), +('Q18.4', 'Macrostomia', 'ICD10_2010'), +('Q18.5', 'Microstomia', 'ICD10_2010'), +('Q18.6', 'Macrocheilia', 'ICD10_2010'), +('Q18.7', 'Microcheilia', 'ICD10_2010'), +('Q18.8', 'Other specified congenital malformations of face and neck', 'ICD10_2010'), +('Q18.9', 'Congenital malformation of face and neck, unspecified', 'ICD10_2010'), +('Q20', 'Congenital malformations of cardiac chambers and connections', 'ICD10_2010'), +('Q20.0', 'Common arterial trunk', 'ICD10_2010'), +('Q20.1', 'Double outlet right ventricle', 'ICD10_2010'), +('Q20.2', 'Double outlet left ventricle', 'ICD10_2010'), +('Q20.3', 'Discordant ventriculoarterial connection', 'ICD10_2010'), +('Q20.4', 'Double inlet ventricle', 'ICD10_2010'), +('Q20.5', 'Discordant atrioventricular connection', 'ICD10_2010'), +('Q20.6', 'Isomerism of atrial appendages', 'ICD10_2010'), +('Q20.8', 'Other congenital malformations of cardiac chambers and connections', 'ICD10_2010'), +('Q20.9', 'Congenital malformation of cardiac chambers and connections unspecified', 'ICD10_2010'), +('Q21', 'Congenital malformations of cardiac septa', 'ICD10_2010'), +('Q21.0', 'Ventricular septal defect', 'ICD10_2010'), +('Q21.1', 'Atrial septal defect', 'ICD10_2010'), +('Q21.2', 'Atrioventricular septal defect', 'ICD10_2010'), +('Q21.3', 'Tetralogy of fallot', 'ICD10_2010'), +('Q21.4', 'Aortopulmonary septal defect', 'ICD10_2010'), +('Q21.8', 'Other congenital malformations of cardiac septa', 'ICD10_2010'), +('Q21.9', 'Congenital malformation of cardiac septum, unspecified', 'ICD10_2010'), +('Q22', 'Congenital malformations of pulmonary and tricuspid valves', 'ICD10_2010'), +('Q22.0', 'Pulmonary valve atresia', 'ICD10_2010'), +('Q22.1', 'Congenital pulmonary valve stenosis', 'ICD10_2010'), +('Q22.2', 'Congenital pulmonary valve insufficiency', 'ICD10_2010'), +('Q22.3', 'Other congenital malformations of pulmonary valve', 'ICD10_2010'), +('Q22.4', 'Congenital tricuspid stenosis', 'ICD10_2010'), +('Q22.5', 'Ebstein\'s anomaly', 'ICD10_2010'), +('Q22.6', 'Hypoplastic right heart syndrome', 'ICD10_2010'), +('Q22.8', 'Other congenital malformations of tricuspid valve', 'ICD10_2010'), +('Q22.9', 'Congenital malformation of tricuspid valve, unspecified', 'ICD10_2010'), +('Q23', 'Congenital malformations of aortic and mitral valves', 'ICD10_2010'), +('Q23.0', 'Congenital stenosis of aortic valve', 'ICD10_2010'), +('Q23.1', 'Congenital insufficiency of aortic valve', 'ICD10_2010'), +('Q23.2', 'Congenital mitral stenosis', 'ICD10_2010'), +('Q23.3', 'Congenital mitral insufficiency', 'ICD10_2010'), +('Q23.4', 'Hypoplastic left heart syndrome', 'ICD10_2010'), +('Q23.8', 'Other congenital malformations of aortic and mitral valves', 'ICD10_2010'), +('Q23.9', 'Congenital malformation of aortic and mitral valves unspecified', 'ICD10_2010'), +('Q24', 'Other congenital malformations of heart', 'ICD10_2010'), +('Q24.0', 'Dextrocardia', 'ICD10_2010'), +('Q24.1', 'Laevocardia', 'ICD10_2010'), +('Q24.2', 'Cor triatriatum', 'ICD10_2010'), +('Q24.3', 'Pulmonary infundibular stenosis', 'ICD10_2010'), +('Q24.4', 'Congenital subaortic stenosis', 'ICD10_2010'), +('Q24.5', 'Malformation of coronary vessels', 'ICD10_2010'), +('Q24.6', 'Congenital heart block', 'ICD10_2010'), +('Q24.8', 'Other specified congenital malformations of heart', 'ICD10_2010'), +('Q24.9', 'Congenital malformation of heart, unspecified', 'ICD10_2010'), +('Q25', 'Congenital malformations of great arteries', 'ICD10_2010'), +('Q25.0', 'Patent ductus arteriosus', 'ICD10_2010'), +('Q25.1', 'Coarctation of aorta', 'ICD10_2010'), +('Q25.2', 'Atresia of aorta', 'ICD10_2010'), +('Q25.3', 'Stenosis of aorta', 'ICD10_2010'), +('Q25.4', 'Other congenital malformations of aorta', 'ICD10_2010'), +('Q25.5', 'Atresia of pulmonary artery', 'ICD10_2010'), +('Q25.6', 'Stenosis of pulmonary artery', 'ICD10_2010'), +('Q25.7', 'Other congenital malformations of pulmonary artery', 'ICD10_2010'), +('Q25.8', 'Other congenital malformations of great arteries', 'ICD10_2010'), +('Q25.9', 'Congenital malformation of great arteries, unspecified', 'ICD10_2010'), +('Q26', 'Congenital malformations of great veins', 'ICD10_2010'), +('Q26.0', 'Congenital stenosis of vena cava', 'ICD10_2010'), +('Q26.1', 'Persistent left superior vena cava', 'ICD10_2010'), +('Q26.2', 'Total anomalous pulmonary venous connection', 'ICD10_2010'), +('Q26.3', 'Partial anomalous pulmonary venous connection', 'ICD10_2010'), +('Q26.4', 'Anomalous pulmonary venous connection, unspecified', 'ICD10_2010'), +('Q26.5', 'Anomalous portal venous connection', 'ICD10_2010'), +('Q26.6', 'Portal vein-hepatic artery fistula', 'ICD10_2010'), +('Q26.8', 'Other congenital malformations of great veins', 'ICD10_2010'), +('Q26.9', 'Congenital malformation of great vein, unspecified', 'ICD10_2010'), +('Q27', 'Other congenital malformations of peripheral vascular system', 'ICD10_2010'), +('Q27.0', 'Congenital absence and hypoplasia of umbilical artery', 'ICD10_2010'), +('Q27.1', 'Congenital renal artery stenosis', 'ICD10_2010'), +('Q27.2', 'Other congenital malformations of renal artery', 'ICD10_2010'), +('Q27.3', 'Peripheral arteriovenous malformation', 'ICD10_2010'), +('Q27.4', 'Congenital phlebectasia', 'ICD10_2010'), +('Q27.8', 'Other specified congenitalo malformations of peripheral vascular system', 'ICD10_2010'), +('Q27.9', 'Congenital malformation of peripheral vascular system unspecified', 'ICD10_2010'), +('Q28', 'Other congenital malformations of circulatory system', 'ICD10_2010'), +('Q28.0', 'Arteriovenous malformation of precerebral vessels', 'ICD10_2010'), +('Q28.1', 'Other malformations of precerebral vessels', 'ICD10_2010'), +('Q28.2', 'Arteriovenous malformation of cerebral vessels', 'ICD10_2010'), +('Q28.3', 'Other malformations of cerebral vessels', 'ICD10_2010'), +('Q28.8', 'Other specified congenital malformations of circulatory system', 'ICD10_2010'), +('Q28.9', 'Congenital malformation of circulatory system, unspecified', 'ICD10_2010'), +('Q30', 'Congenital malformations of nose', 'ICD10_2010'), +('Q30.0', 'Choanal atresia', 'ICD10_2010'), +('Q30.1', 'Agenesis and underdevelopment of nose', 'ICD10_2010'), +('Q30.2', 'Fissured, notched and cleft nose', 'ICD10_2010'), +('Q30.3', 'Congenital perforated nasal septum', 'ICD10_2010'), +('Q30.8', 'Other congenital malformations of nose', 'ICD10_2010'), +('Q30.9', 'Congenital malformation of nose, unspecified', 'ICD10_2010'), +('Q31', 'Congenital malformations of larynx', 'ICD10_2010'), +('Q31.0', 'Web of larynx', 'ICD10_2010'), +('Q31.1', 'Congenital subglottic stenosis', 'ICD10_2010'), +('Q31.2', 'Laryngeal hypoplasia', 'ICD10_2010'), +('Q31.3', 'Laryngocele', 'ICD10_2010'), +('Q31.4', 'Congenital laryngeal stridor', 'ICD10_2010'), +('Q31.5', 'Congenital laryngomalacia', 'ICD10_2010'), +('Q31.8', 'Other congenital malformations of larynx', 'ICD10_2010'), +('Q31.9', 'Congenital malformation of larynx, unspecified', 'ICD10_2010'), +('Q32', 'Congenital malformations of trachea and bronchus', 'ICD10_2010'), +('Q32.0', 'Congenital tracheomalacia', 'ICD10_2010'), +('Q32.1', 'Other congenital malformations of trachea', 'ICD10_2010'), +('Q32.2', 'Congenital bronchomalacia', 'ICD10_2010'), +('Q32.3', 'Congenital stenosis of bronchus', 'ICD10_2010'), +('Q32.4', 'Other congenital malformations of bronchus', 'ICD10_2010'), +('Q33', 'Congenital malformations of lung', 'ICD10_2010'), +('Q33.0', 'Congenital cystic lung', 'ICD10_2010'), +('Q33.1', 'Accessory lobe of lung', 'ICD10_2010'), +('Q33.2', 'Sequestration of lung', 'ICD10_2010'), +('Q33.3', 'Agenesis of lung', 'ICD10_2010'), +('Q33.4', 'Congenital bronchiectasis', 'ICD10_2010'), +('Q33.5', 'Ectopic tissue in lung', 'ICD10_2010'), +('Q33.6', 'Hypoplasia and dysplasia of lung', 'ICD10_2010'), +('Q33.8', 'Other congenital malformations of lung', 'ICD10_2010'), +('Q33.9', 'Congenital malformation of lung, unspecified', 'ICD10_2010'), +('Q34', 'Other congenital malformations of respiratory system', 'ICD10_2010'), +('Q34.0', 'Anomaly of pleura', 'ICD10_2010'), +('Q34.1', 'Congenital cyst of mediastinum', 'ICD10_2010'), +('Q34.8', 'Other specified congenital malformations of respiratory system', 'ICD10_2010'), +('Q34.9', 'Congenital malformation of respiratory system, unspecified', 'ICD10_2010'), +('Q35', 'Cleft palate', 'ICD10_2010'), +('Q35.0', 'Cleft hard palate, bilateral*', 'ICD10_2010'), +('Q35.1', 'Cleft hard palate', 'ICD10_2010'), +('Q35.2', 'Cleft soft palate, bilateral*', 'ICD10_2010'), +('Q35.3', 'Cleft soft palate', 'ICD10_2010'), +('Q35.4', 'Cleft hard palate with cleft soft palate, bilateral*', 'ICD10_2010'), +('Q35.5', 'Cleft hard palate with cleft soft palate', 'ICD10_2010'), +('Q35.6', 'Cleft palate, medial', 'ICD10_2010'), +('Q35.7', 'Cleft uvula', 'ICD10_2010'), +('Q35.8', 'Cleft palate, unspecified, bilateral*', 'ICD10_2010'), +('Q35.9', 'Cleft palate, unspecified', 'ICD10_2010'), +('Q36', 'Cleft lip', 'ICD10_2010'), +('Q36.0', 'Cleft lip, bilateral', 'ICD10_2010'), +('Q36.1', 'Cleft lip, median', 'ICD10_2010'), +('Q36.9', 'Cleft lip, unilateral', 'ICD10_2010'), +('Q37', 'Cleft palate with cleft lip', 'ICD10_2010'), +('Q37.0', 'Cleft hard palate with bilateral cleft lip', 'ICD10_2010'), +('Q37.1', 'Cleft hard palate with unilateral cleft lip', 'ICD10_2010'), +('Q37.2', 'Cleft soft palate with bilateral cleft lip', 'ICD10_2010'), +('Q37.3', 'Cleft soft palate with unilateral cleft lip', 'ICD10_2010'), +('Q37.4', 'Cleft hard and soft palate with bilateral cleft lip', 'ICD10_2010'), +('Q37.5', 'Cleft hard and soft palate with unilateral cleft lip', 'ICD10_2010'), +('Q37.8', 'Unspecified cleft palate with bilateral cleft lip', 'ICD10_2010'), +('Q37.9', 'Unspecified cleft palate with unilateral cleft lip', 'ICD10_2010'), +('Q38', 'Other congenital malformations of tongue, mouth and pharynx', 'ICD10_2010'), +('Q38.0', 'Congenital malformations of lips, not elsewhere classified', 'ICD10_2010'), +('Q38.1', 'Ankyloglossia', 'ICD10_2010'), +('Q38.2', 'Macroglossia', 'ICD10_2010'), +('Q38.3', 'Other congenital malformations of tongue', 'ICD10_2010'), +('Q38.4', 'Congenital malformations of salivary glands and ducts', 'ICD10_2010'), +('Q38.5', 'Congenital malformations of palate, not elsewhere classified', 'ICD10_2010'), +('Q38.6', 'Other congenital malformations of mouth', 'ICD10_2010'), +('Q38.7', 'Pharyngeal pouch', 'ICD10_2010'), +('Q38.8', 'Other congenital malformations of pharynx', 'ICD10_2010'), +('Q39', 'Congenital malformations of oesophagus', 'ICD10_2010'), +('Q39.0', 'Atresia of oesophagus without fistula', 'ICD10_2010'), +('Q39.1', 'Atresia of oesophagus with tracheo-oesophageal fistula', 'ICD10_2010'), +('Q39.2', 'Congenital tracheo-oesophageal fistula without atresia', 'ICD10_2010'), +('Q39.3', 'Congenital stenosis and stricture of oesophagus', 'ICD10_2010'), +('Q39.4', 'Oesophageal web', 'ICD10_2010'), +('Q39.5', 'Congenital dilatation of oesophagus', 'ICD10_2010'), +('Q39.6', 'Diverticulum of oesophagus', 'ICD10_2010'), +('Q39.8', 'Other congenital malformations of oesophagus', 'ICD10_2010'), +('Q39.9', 'Congenital malformation of oesophagus, unspecified', 'ICD10_2010'), +('Q40', 'Other congenital malformations of upper alimentary tract', 'ICD10_2010'), +('Q40.0', 'Congenital hypertrophic pyloric stenosis', 'ICD10_2010'), +('Q40.1', 'Congenital hiatus hernia', 'ICD10_2010'), +('Q40.2', 'Other specified congenital malformations of stomach', 'ICD10_2010'), +('Q40.3', 'Congenital malformation of stomach, unspecified', 'ICD10_2010'), +('Q40.8', 'Other specified congenital malforms of upper alimentary tract', 'ICD10_2010'), +('Q40.9', 'Congenital malformation of upper alimentary tract, unspecified', 'ICD10_2010'), +('Q41', 'Congenital absence, atresia and stenosis of small intestine', 'ICD10_2010'), +('Q41.0', 'Congenital absence, atresia and stenosis of duodenum', 'ICD10_2010'), +('Q41.1', 'Congenital absence, atresia and stenosis of jejunum', 'ICD10_2010'), +('Q41.2', 'Congenital absence, atresia and stenosis of ileum', 'ICD10_2010'), +('Q41.8', 'Congenital absence atresia stenosis other specified parts small intestine', 'ICD10_2010'), +('Q41.9', 'Congenital absence atresia and stenosis small intestine part unspecified', 'ICD10_2010'), +('Q42', 'Congenital absence, atresia and stenosis of large intestine', 'ICD10_2010'), +('Q42.0', 'Congenital absence atresia and stenosis of rectum with fistula', 'ICD10_2010'), +('Q42.1', 'Congenital absence atresia and stenosis rectum without fistula', 'ICD10_2010'), +('Q42.2', 'Congenital absence atresia and stenosis anus with fistula', 'ICD10_2010'), +('Q42.3', 'Congenital absence atresia and stenosis anus without fistula', 'ICD10_2010'), +('Q42.8', 'Congenital absence atresia and stenosis other parts of large intest', 'ICD10_2010'), +('Q42.9', 'Congenital absce atresia and sten of large intest part unspecified', 'ICD10_2010'), +('Q43', 'Other congenital malformations of intestine', 'ICD10_2010'), +('Q43.0', 'Meckel\'s diverticulum', 'ICD10_2010'), +('Q43.1', 'Hirschsprung\'s disease', 'ICD10_2010'), +('Q43.2', 'Other congenital functional disorders of colon', 'ICD10_2010'), +('Q43.3', 'Congenital malformations of intestinal fixation', 'ICD10_2010'), +('Q43.4', 'Duplication of intestine', 'ICD10_2010'), +('Q43.5', 'Ectopic anus', 'ICD10_2010'), +('Q43.6', 'Congenital fistula of rectum and anus', 'ICD10_2010'), +('Q43.7', 'Persistent cloaca', 'ICD10_2010'), +('Q43.8', 'Other specified congenital malformations of intestine', 'ICD10_2010'), +('Q43.9', 'Congenital malformation of intestine, unspecified', 'ICD10_2010'), +('Q44', 'Congenital malformations of gallbladder, bile ducts and liver', 'ICD10_2010'), +('Q44.0', 'Agenesis, aplasia and hypoplasia of gallbladder', 'ICD10_2010'), +('Q44.1', 'Other congenital malformations of gallbladder', 'ICD10_2010'), +('Q44.2', 'Atresia of bile ducts', 'ICD10_2010'), +('Q44.3', 'Congenital stenosis and stricture of bile ducts', 'ICD10_2010'), +('Q44.4', 'Choledochal cyst', 'ICD10_2010'), +('Q44.5', 'Other congenital malformations of bile ducts', 'ICD10_2010'), +('Q44.6', 'Cystic disease of liver', 'ICD10_2010'), +('Q44.7', 'Other congenital malformations of liver', 'ICD10_2010'), +('Q45', 'Other congenital malformations of digestive system', 'ICD10_2010'), +('Q45.0', 'Agenesis, aplasia and hypoplasia of pancreas', 'ICD10_2010'), +('Q45.1', 'Annular pancreas', 'ICD10_2010'), +('Q45.2', 'Congenital pancreatic cyst', 'ICD10_2010'), +('Q45.3', 'Other congenital malformations of pancreas and pancreatic duct', 'ICD10_2010'), +('Q45.8', 'Other specified congenital malformations of digestive system', 'ICD10_2010'), +('Q45.9', 'Congenital malformation of digestive system, unspecified', 'ICD10_2010'), +('Q50', 'Congenital malformations of ovaries, fallopian tubes and broad ligaments', 'ICD10_2010'), +('Q50.0', 'Congenital absence of ovary', 'ICD10_2010'), +('Q50.1', 'Developmental ovarian cyst', 'ICD10_2010'), +('Q50.2', 'Congenital torsion of ovary', 'ICD10_2010'), +('Q50.3', 'Other congenital malformations of ovary', 'ICD10_2010'), +('Q50.4', 'Embryonic cyst of fallopian tube', 'ICD10_2010'), +('Q50.5', 'Embryonic cyst of broad ligament', 'ICD10_2010'), +('Q50.6', 'Other congenital malformations of fallopian tube and broad ligament', 'ICD10_2010'), +('Q51', 'Congenital malformations of uterus and cervix', 'ICD10_2010'), +('Q51.0', 'Agenesis and aplasia of uterus', 'ICD10_2010'), +('Q51.1', 'Doubling of uterus with doubling of cervix and vagina', 'ICD10_2010'), +('Q51.2', 'Other doubling of uterus', 'ICD10_2010'), +('Q51.3', 'Bicornate uterus', 'ICD10_2010'), +('Q51.4', 'Unicornate uterus', 'ICD10_2010'), +('Q51.5', 'Agenesis and aplasia of cervix', 'ICD10_2010'), +('Q51.6', 'Embryonic cyst of cervix', 'ICD10_2010'), +('Q51.7', 'Congenital fistulae btwn uterus and digestive and urinary tracts', 'ICD10_2010'), +('Q51.8', 'Other congenital malformations of uterus and cervix', 'ICD10_2010'), +('Q51.9', 'Congenital malformation of uterus and cervix, unspecified', 'ICD10_2010'), +('Q52', 'Other congenital malformations of female genitalia', 'ICD10_2010'), +('Q52.0', 'Congenital absence of vagina', 'ICD10_2010'), +('Q52.1', 'Doubling of vagina', 'ICD10_2010'), +('Q52.2', 'Congenital rectovaginal fistula', 'ICD10_2010'), +('Q52.3', 'Imperforate hymen', 'ICD10_2010'), +('Q52.4', 'Other congenital malformations of vagina', 'ICD10_2010'), +('Q52.5', 'Fusion of labia', 'ICD10_2010'), +('Q52.6', 'Congenital malformation of clitoris', 'ICD10_2010'), +('Q52.7', 'Other congenital malformations of vulva', 'ICD10_2010'), +('Q52.8', 'Other specified congenital malformations of female genitalia', 'ICD10_2010'), +('Q52.9', 'Congenital malformation of female genitalia, unspecified', 'ICD10_2010'), +('Q53', 'Undescended testicle', 'ICD10_2010'), +('Q53.0', 'Ectopic testis', 'ICD10_2010'), +('Q53.1', 'Undescended testicle, unilateral', 'ICD10_2010'), +('Q53.2', 'Undescended testicle, bilateral', 'ICD10_2010'), +('Q53.9', 'Undescended testicle, unspecified', 'ICD10_2010'), +('Q54', 'Hypospadias', 'ICD10_2010'), +('Q54.0', 'Hypospadias, balanic', 'ICD10_2010'), +('Q54.1', 'Hypospadias, penile', 'ICD10_2010'), +('Q54.2', 'Hypospadias, penoscrotal', 'ICD10_2010'), +('Q54.3', 'Hypospadias, perineal', 'ICD10_2010'), +('Q54.4', 'Congenital chordee', 'ICD10_2010'), +('Q54.8', 'Other hypospadias', 'ICD10_2010'), +('Q54.9', 'Hypospadias, unspecified', 'ICD10_2010'), +('Q55', 'Other congenital malformations of male genital organs', 'ICD10_2010'), +('Q55.0', 'Absence and aplasia of testis', 'ICD10_2010'), +('Q55.1', 'Hypoplasia of testis and scrotum', 'ICD10_2010'), +('Q55.2', 'Other congenital malformations of testis and scrotum', 'ICD10_2010'), +('Q55.3', 'Atresia of vas deferens', 'ICD10_2010'), +('Q55.4', 'Other congenital malformations vas deferens, epididymis seminal vesicles and prostate', 'ICD10_2010'), +('Q55.5', 'Congenital absence and aplasia of penis', 'ICD10_2010'), +('Q55.6', 'Other congenital malformations of penis', 'ICD10_2010'), +('Q55.8', 'Other specified congen malformations of male genital organs', 'ICD10_2010'), +('Q55.9', 'Congenital malformation of male genital organ, unspecified', 'ICD10_2010'), +('Q56', 'Indeterminate sex and pseudohermaphroditism', 'ICD10_2010'), +('Q56.0', 'Hermaphroditism, not elsewhere classified', 'ICD10_2010'), +('Q56.1', 'Male pseudohermaphroditism, not elsewhere classified', 'ICD10_2010'), +('Q56.2', 'Female pseudohermaphroditism, not elsewhere classified', 'ICD10_2010'), +('Q56.3', 'Pseudohermaphroditism, unspecified', 'ICD10_2010'), +('Q56.4', 'Indeterminate sex, unspecified', 'ICD10_2010'), +('Q60', 'Renal agenesis and other reduction defects of kidney', 'ICD10_2010'), +('Q60.0', 'Renal agenesis, unilateral', 'ICD10_2010'), +('Q60.1', 'Renal agenesis, bilateral', 'ICD10_2010'), +('Q60.2', 'Renal agenesis, unspecified', 'ICD10_2010'), +('Q60.3', 'Renal hypoplasia, unilateral', 'ICD10_2010'), +('Q60.4', 'Renal hypoplasia, bilateral', 'ICD10_2010'), +('Q60.5', 'Renal hypoplasia, unspecified', 'ICD10_2010'), +('Q60.6', 'Potter\'s syndrome', 'ICD10_2010'), +('Q61', 'Cystic kidney disease', 'ICD10_2010'), +('Q61.0', 'Congenital single renal cyst', 'ICD10_2010'), +('Q61.1', 'Polycystic kidney, autosomal recessive', 'ICD10_2010'), +('Q61.2', 'Polycystic kidney, autosomal dominant', 'ICD10_2010'), +('Q61.3', 'Polycystic kidney, unspecified', 'ICD10_2010'), +('Q61.4', 'Renal dysplasia', 'ICD10_2010'), +('Q61.5', 'Medullary cystic kidney', 'ICD10_2010'), +('Q61.8', 'Other cystic kidney diseases', 'ICD10_2010'), +('Q61.9', 'Cystic kidney disease, unspecified', 'ICD10_2010'); +INSERT INTO `icd10` (`ID_ICD10`, `Diagnosa`, `Versi_ICD10`) VALUES +('Q62', 'Congenital obstructive defects of renal pelvis and congenital malformations of ureter', 'ICD10_2010'), +('Q62.0', 'Congenital hydronephrosis', 'ICD10_2010'), +('Q62.1', 'Atresia and stenosis of ureter', 'ICD10_2010'), +('Q62.2', 'Congenital megaloureter', 'ICD10_2010'), +('Q62.3', 'Other obstructive defects of renal pelvis and ureter', 'ICD10_2010'), +('Q62.4', 'Agenesis of ureter', 'ICD10_2010'), +('Q62.5', 'Duplication of ureter', 'ICD10_2010'), +('Q62.6', 'Malposition of ureter', 'ICD10_2010'), +('Q62.7', 'Congenital vesico-uretero-renal reflux', 'ICD10_2010'), +('Q62.8', 'Other congenital malformations of ureter', 'ICD10_2010'), +('Q63', 'Other congenital malformations of kidney', 'ICD10_2010'), +('Q63.0', 'Accessory kidney', 'ICD10_2010'), +('Q63.1', 'Lobulated, fused and horseshoe kidney', 'ICD10_2010'), +('Q63.2', 'Ectopic kidney', 'ICD10_2010'), +('Q63.3', 'Hyperplastic and giant kidney', 'ICD10_2010'), +('Q63.8', 'Other specified congenital malformations of kidney', 'ICD10_2010'), +('Q63.9', 'Congenital malformation of kidney, unspecified', 'ICD10_2010'), +('Q64', 'Other congenital malformations of urinary system', 'ICD10_2010'), +('Q64.0', 'Epispadias', 'ICD10_2010'), +('Q64.1', 'Exstrophy of urinary bladder', 'ICD10_2010'), +('Q64.2', 'Congenital posterior urethral valves', 'ICD10_2010'), +('Q64.3', 'Other atresia and stenosis of urethra and bladder neck', 'ICD10_2010'), +('Q64.4', 'Malformation of urachus', 'ICD10_2010'), +('Q64.5', 'Congenital absence of bladder and urethra', 'ICD10_2010'), +('Q64.6', 'Congenital diverticulum of bladder', 'ICD10_2010'), +('Q64.7', 'Other congenital malformations of bladder and urethra', 'ICD10_2010'), +('Q64.8', 'Other specified congenital malformations of urinary system', 'ICD10_2010'), +('Q64.9', 'Congenital malformation of urinary system, unspecified', 'ICD10_2010'), +('Q65', 'Congenital deformities of hip', 'ICD10_2010'), +('Q65.0', 'Congenital dislocation of hip, unilateral', 'ICD10_2010'), +('Q65.1', 'Congenital dislocation of hip, bilateral', 'ICD10_2010'), +('Q65.2', 'Congenital dislocation of hip, unspecified', 'ICD10_2010'), +('Q65.3', 'Congenital subluxation of hip, unilateral', 'ICD10_2010'), +('Q65.4', 'Congenital subluxation of hip, bilateral', 'ICD10_2010'), +('Q65.5', 'Congenital subluxation of hip, unspecified', 'ICD10_2010'), +('Q65.6', 'Unstable hip', 'ICD10_2010'), +('Q65.8', 'Other congenital deformities of hip', 'ICD10_2010'), +('Q65.9', 'Congenital deformity of hip, unspecified', 'ICD10_2010'), +('Q66', 'Congenital deformities of feet', 'ICD10_2010'), +('Q66.0', 'Talipes equinovarus', 'ICD10_2010'), +('Q66.1', 'Talipes calcaneovarus', 'ICD10_2010'), +('Q66.2', 'Metatarsus varus', 'ICD10_2010'), +('Q66.3', 'Other congenital varus deformities of feet', 'ICD10_2010'), +('Q66.4', 'Talipes calcaneovalgus', 'ICD10_2010'), +('Q66.5', 'Congenital pes planus', 'ICD10_2010'), +('Q66.6', 'Other congenital valgus deformities of feet', 'ICD10_2010'), +('Q66.7', 'Pes cavus', 'ICD10_2010'), +('Q66.8', 'Other congenital deformities of feet', 'ICD10_2010'), +('Q66.9', 'Congenital deformity of feet, unspecified', 'ICD10_2010'), +('Q67', 'Congenital musculoskeletal deformities of head, face, spine and chest', 'ICD10_2010'), +('Q67.0', 'Facial asymmetry', 'ICD10_2010'), +('Q67.1', 'Compression facies', 'ICD10_2010'), +('Q67.2', 'Dolichocephaly', 'ICD10_2010'), +('Q67.3', 'Plagiocephaly', 'ICD10_2010'), +('Q67.4', 'Other congenital deformities of skull, face and jaw', 'ICD10_2010'), +('Q67.5', 'Congenital deformity of spine', 'ICD10_2010'), +('Q67.6', 'Pectus excavatum', 'ICD10_2010'), +('Q67.7', 'Pectus carinatum', 'ICD10_2010'), +('Q67.8', 'Other congenital deformities of chest', 'ICD10_2010'), +('Q68', 'Other congenital musculoskeletal deformities', 'ICD10_2010'), +('Q68.0', 'Congenital deformity of sternocleidomastoid muscle', 'ICD10_2010'), +('Q68.1', 'Congenital deformity of hand', 'ICD10_2010'), +('Q68.2', 'Congenital deformity of knee', 'ICD10_2010'), +('Q68.3', 'Congenital bowing of femur', 'ICD10_2010'), +('Q68.4', 'Congenital bowing of tibia and fibula', 'ICD10_2010'), +('Q68.5', 'Congenital bowing of long bones of leg, unspecified', 'ICD10_2010'), +('Q68.8', 'Other specified congenital musculoskeletal deformities', 'ICD10_2010'), +('Q69', 'Polydactyly', 'ICD10_2010'), +('Q69.0', 'Accessory finger(s)', 'ICD10_2010'), +('Q69.1', 'Accessory thumb(s)', 'ICD10_2010'), +('Q69.2', 'Accessory toe(s)', 'ICD10_2010'), +('Q69.9', 'Polydactyly, unspecified', 'ICD10_2010'), +('Q70', 'Syndactyly', 'ICD10_2010'), +('Q70.0', 'Fused fingers', 'ICD10_2010'), +('Q70.1', 'Webbed fingers', 'ICD10_2010'), +('Q70.2', 'Fused toes', 'ICD10_2010'), +('Q70.3', 'Webbed toes', 'ICD10_2010'), +('Q70.4', 'Polysyndactyly', 'ICD10_2010'), +('Q70.9', 'Syndactyly, unspecified', 'ICD10_2010'), +('Q71', 'Reduction defects of upper limb', 'ICD10_2010'), +('Q71.0', 'Congenital complete absence of upper limb(s)', 'ICD10_2010'), +('Q71.1', 'Cong absence of upper arm and forearm with hand present', 'ICD10_2010'), +('Q71.2', 'Congenital absence of both forearm and hand', 'ICD10_2010'), +('Q71.3', 'Congenital absence of hand and finger(s)', 'ICD10_2010'), +('Q71.4', 'Longitudinal reduction defect of radius', 'ICD10_2010'), +('Q71.5', 'Longitudinal reduction defect of ulna', 'ICD10_2010'), +('Q71.6', 'Lobster-claw hand', 'ICD10_2010'), +('Q71.8', 'Other reduction defects of upper limb(s)', 'ICD10_2010'), +('Q71.9', 'Reduction defect of upper limb, unspecified', 'ICD10_2010'), +('Q72', 'Reduction defects of lower limb', 'ICD10_2010'), +('Q72.0', 'Congenital complete absence of lower limb(s)', 'ICD10_2010'), +('Q72.1', 'Congenital absence of thigh and lower leg with foot present', 'ICD10_2010'), +('Q72.2', 'Congenital absence of both lower leg and foot', 'ICD10_2010'), +('Q72.3', 'Congenital absence of foot and toe(s)', 'ICD10_2010'), +('Q72.4', 'Longitudinal reduction defect of femur', 'ICD10_2010'), +('Q72.5', 'Longitudinal reduction defect of tibia', 'ICD10_2010'), +('Q72.6', 'Longitudinal reduction defect of fibula', 'ICD10_2010'), +('Q72.7', 'Split foot', 'ICD10_2010'), +('Q72.8', 'Other reduction defects of lower limb(s)', 'ICD10_2010'), +('Q72.9', 'Reduction defect of lower limb, unspecified', 'ICD10_2010'), +('Q73', 'Reduction defects of unspecified limb', 'ICD10_2010'), +('Q73.0', 'Congenital absence of unspecified limb(s)', 'ICD10_2010'), +('Q73.1', 'Phocomelia, unspecified limb(s)', 'ICD10_2010'), +('Q73.8', 'Other reduction defects of unspecified limb(s)', 'ICD10_2010'), +('Q74', 'Other congenital malformations of limb(s)', 'ICD10_2010'), +('Q74.0', 'Other congenital malformation of upper limb(s) including shoulder girdle', 'ICD10_2010'), +('Q74.1', 'Congenital malformation of knee', 'ICD10_2010'), +('Q74.2', 'Other congenital malformation of lower limb(s) including pelvic girdle', 'ICD10_2010'), +('Q74.3', 'Arthrogryposis multiplex congenita', 'ICD10_2010'), +('Q74.8', 'Other specified congenital malformations of limb(s)', 'ICD10_2010'), +('Q74.9', 'Unspecified congenital malformation of limb(s)', 'ICD10_2010'), +('Q75', 'Other congenital malformations of skull and face bones', 'ICD10_2010'), +('Q75.0', 'Craniosynostosis', 'ICD10_2010'), +('Q75.1', 'Craniofacial dysostosis', 'ICD10_2010'), +('Q75.2', 'Hypertelorism', 'ICD10_2010'), +('Q75.3', 'Macrocephaly', 'ICD10_2010'), +('Q75.4', 'Mandibulofacial dysostosis', 'ICD10_2010'), +('Q75.5', 'Oculomandibular dysostosis', 'ICD10_2010'), +('Q75.8', 'Other specified congenital malformations of skull and face bones', 'ICD10_2010'), +('Q75.9', 'Congenital malformation of skull and face bones, unspecified', 'ICD10_2010'), +('Q76', 'Congenital malformations of spine and bony thorax', 'ICD10_2010'), +('Q76.0', 'Spina bifida occulta', 'ICD10_2010'), +('Q76.1', 'Klippel-feil syndrome', 'ICD10_2010'), +('Q76.2', 'Congenital spondylolisthesis', 'ICD10_2010'), +('Q76.3', 'Congenital scoliosis due to congenital bony malformation', 'ICD10_2010'), +('Q76.4', 'Other congenital malformation of spine not associated with scoliosis', 'ICD10_2010'), +('Q76.5', 'Cervical rib', 'ICD10_2010'), +('Q76.6', 'Other congenital malformations of ribs', 'ICD10_2010'), +('Q76.7', 'Congenital malformation of sternum', 'ICD10_2010'), +('Q76.8', 'Other congenital malformations of bony thorax', 'ICD10_2010'), +('Q76.9', 'Congenital malformation of bony thorax, unspecified', 'ICD10_2010'), +('Q77', 'Osteochondrodysplasia with defects of growth of tubular bones and spine', 'ICD10_2010'), +('Q77.0', 'Achondrogenesis', 'ICD10_2010'), +('Q77.1', 'Thanatophoric short stature', 'ICD10_2010'), +('Q77.2', 'Short rib syndrome', 'ICD10_2010'), +('Q77.3', 'Chondrodysplasia punctata', 'ICD10_2010'), +('Q77.4', 'Achondroplasia', 'ICD10_2010'), +('Q77.5', 'Dystrophic dysplasia', 'ICD10_2010'), +('Q77.6', 'Chondroectodermal dysplasia', 'ICD10_2010'), +('Q77.7', 'Spondyloepiphyseal dysplasia', 'ICD10_2010'), +('Q77.8', 'Other osteochondrodysplas with defect growth tubular bone spine', 'ICD10_2010'), +('Q77.9', 'Osteochondrodyspl with defect growth tubular bones and spine, unspecified', 'ICD10_2010'), +('Q78', 'Other osteochondrodysplasias', 'ICD10_2010'), +('Q78.0', 'Osteogenesis imperfecta', 'ICD10_2010'), +('Q78.1', 'Polyostotic fibrous dysplasia', 'ICD10_2010'), +('Q78.2', 'Osteopetrosis', 'ICD10_2010'), +('Q78.3', 'Progressive diaphyseal dysplasia', 'ICD10_2010'), +('Q78.4', 'Enchondromatosis', 'ICD10_2010'), +('Q78.5', 'Metaphyseal dysplasia', 'ICD10_2010'), +('Q78.6', 'Multiple congenital exostoses', 'ICD10_2010'), +('Q78.8', 'Other specified osteochondrodysplasias', 'ICD10_2010'), +('Q78.9', 'Osteochondrodysplasia, unspecified', 'ICD10_2010'), +('Q79', 'Congenital malformations of the musculoskeletal system, not elsewhere classified', 'ICD10_2010'), +('Q79.0', 'Congenital diaphragmatic hernia', 'ICD10_2010'), +('Q79.1', 'Other congenital malformations of diaphragm', 'ICD10_2010'), +('Q79.2', 'Exomphalos', 'ICD10_2010'), +('Q79.3', 'Gastroschisis', 'ICD10_2010'), +('Q79.4', 'Prune belly syndrome', 'ICD10_2010'), +('Q79.5', 'Other congenital malformations of abdominal wall', 'ICD10_2010'), +('Q79.6', 'Ehlers-danlos syndrome', 'ICD10_2010'), +('Q79.8', 'Other congenital malformations of musculoskeletal system', 'ICD10_2010'), +('Q79.9', 'Congenital malformation of musculoskeletal system unspecified', 'ICD10_2010'), +('Q80', 'Congenital ichthyosis', 'ICD10_2010'), +('Q80.0', 'Ichthyosis vulgaris', 'ICD10_2010'), +('Q80.1', 'X-linked ichthyosis', 'ICD10_2010'), +('Q80.2', 'Lamellar ichthyosis', 'ICD10_2010'), +('Q80.3', 'Congenital bullous ichthyosiform erythroderma', 'ICD10_2010'), +('Q80.4', 'Harlequin fetus', 'ICD10_2010'), +('Q80.8', 'Other congenital ichthyosis', 'ICD10_2010'), +('Q80.9', 'Congenital ichthyosis, unspecified', 'ICD10_2010'), +('Q81', 'Epidermolysis bullosa', 'ICD10_2010'), +('Q81.0', 'Epidermolysis bullosa simplex', 'ICD10_2010'), +('Q81.1', 'Epidermolysis bullosa letalis', 'ICD10_2010'), +('Q81.2', 'Epidermolysis bullosa dystrophica', 'ICD10_2010'), +('Q81.8', 'Other epidermolysis bullosa', 'ICD10_2010'), +('Q81.9', 'Epidermolysis bullosa, unspecified', 'ICD10_2010'), +('Q82', 'Other congenital malformations of skin', 'ICD10_2010'), +('Q82.0', 'Hereditary lymphoedema', 'ICD10_2010'), +('Q82.1', 'Xeroderma pigmentosum', 'ICD10_2010'), +('Q82.2', 'Mastocytosis', 'ICD10_2010'), +('Q82.3', 'Incontinentia pigmenti', 'ICD10_2010'), +('Q82.4', 'Ectodermal dysplasia (anhidrotic)', 'ICD10_2010'), +('Q82.5', 'Congenital non-neoplastic naevus', 'ICD10_2010'), +('Q82.8', 'Other specified congenital malformations of skin', 'ICD10_2010'), +('Q82.9', 'Congenital malformation of skin, unspecified', 'ICD10_2010'), +('Q83', 'Congenital malformations of breast', 'ICD10_2010'), +('Q83.0', 'Congenital absence of breast with absent nipple', 'ICD10_2010'), +('Q83.1', 'Accessory breast', 'ICD10_2010'), +('Q83.2', 'Absent nipple', 'ICD10_2010'), +('Q83.3', 'Accessory nipple', 'ICD10_2010'), +('Q83.8', 'Other congenital malformations of breast', 'ICD10_2010'), +('Q83.9', 'Congenital malformation of breast, unspecified', 'ICD10_2010'), +('Q84', 'Other congenital malformations of integument', 'ICD10_2010'), +('Q84.0', 'Congenital alopecia', 'ICD10_2010'), +('Q84.1', 'Congenital morphological disturbances of hair nec', 'ICD10_2010'), +('Q84.2', 'Other congenital malformations of hair', 'ICD10_2010'), +('Q84.3', 'Anonychia', 'ICD10_2010'), +('Q84.4', 'Congenital leukonychia', 'ICD10_2010'), +('Q84.5', 'Enlarged and hypertrophic nails', 'ICD10_2010'), +('Q84.6', 'Other congenital malformations of nails', 'ICD10_2010'), +('Q84.8', 'Other specified congenital malformations of integument', 'ICD10_2010'), +('Q84.9', 'Congenital malformation of integument, unspecified', 'ICD10_2010'), +('Q85', 'Phakomatoses, not elsewhere classified', 'ICD10_2010'), +('Q85.0', 'Neurofibromatosis (nonmalignant)', 'ICD10_2010'), +('Q85.1', 'Tuberous sclerosis', 'ICD10_2010'), +('Q85.8', 'Other phakomatoses, not elsewhere classified', 'ICD10_2010'), +('Q85.9', 'Phakomatosis, unspecified', 'ICD10_2010'), +('Q86', 'Congenital malformation syndromes due to known exogenous causes, not elsewhere classified', 'ICD10_2010'), +('Q86.0', 'Fetal alcohol syndrome (dysmorphic)', 'ICD10_2010'), +('Q86.1', 'Fetal hydantoin syndrome', 'ICD10_2010'), +('Q86.2', 'Dysmorphism due to warfarin', 'ICD10_2010'), +('Q86.8', 'Other congenital malformation syndromes due to known exogen causes', 'ICD10_2010'), +('Q87', 'Other specified congenital malformation syndromes affecting multiple systems', 'ICD10_2010'), +('Q87.0', 'Congenital malformation syndromes predominantly affect facial appearance', 'ICD10_2010'), +('Q87.1', 'Congenital malformation syndromes predominantly associated with short stature', 'ICD10_2010'), +('Q87.2', 'Congenital malformation syndromes predominantly involving limbs', 'ICD10_2010'), +('Q87.3', 'Congenital malformation syndromes involving early overgrowth', 'ICD10_2010'), +('Q87.4', 'Marfan\'s syndrome', 'ICD10_2010'), +('Q87.5', 'Other congenital malformation syndromes with other skeletal changes', 'ICD10_2010'), +('Q87.8', 'Other specified congenital malformation syndromes NEC', 'ICD10_2010'), +('Q89', 'Other congenital malformations, not elsewhere classified', 'ICD10_2010'), +('Q89.0', 'Congenital malformations of spleen', 'ICD10_2010'), +('Q89.1', 'Congenital malformations of adrenal gland', 'ICD10_2010'), +('Q89.2', 'Congenital malformations of other endocrine glands', 'ICD10_2010'), +('Q89.3', 'Situs inversus', 'ICD10_2010'), +('Q89.4', 'Conjoined twins', 'ICD10_2010'), +('Q89.7', 'Multiple congenital malformations, not elsewhere classified', 'ICD10_2010'), +('Q89.8', 'Other specified congenital malformations', 'ICD10_2010'), +('Q89.9', 'Congenital malformation, unspecified', 'ICD10_2010'), +('Q90', 'Down syndrome', 'ICD10_2010'), +('Q90.0', 'Trisomy 21, meiotic nondisjunction', 'ICD10_2010'), +('Q90.1', 'Trisomy 21, mosaicism (mitotic nondisjunction)', 'ICD10_2010'), +('Q90.2', 'Trisomy 21, translocation', 'ICD10_2010'), +('Q90.9', 'Down\'s syndrome, unspecified', 'ICD10_2010'), +('Q91', 'Edwards syndrome and Patau syndrome', 'ICD10_2010'), +('Q91.0', 'Trisomy 18, meiotic nondisjunction', 'ICD10_2010'), +('Q91.1', 'Trisomy 18, mosaicism (mitotic nondisjunction)', 'ICD10_2010'), +('Q91.2', 'Trisomy 18, translocation', 'ICD10_2010'), +('Q91.3', 'Edwards\' syndrome, unspecified', 'ICD10_2010'), +('Q91.4', 'Trisomy 13, meiotic nondisjunction', 'ICD10_2010'), +('Q91.5', 'Trisomy 13, mosaicism (mitotic nondisjunction)', 'ICD10_2010'), +('Q91.6', 'Trisomy 13, translocation', 'ICD10_2010'), +('Q91.7', 'Patau\'s syndrome, unspecified', 'ICD10_2010'), +('Q92', 'Other trisomies and partial trisomies of the autosomes, not elsewhere classified', 'ICD10_2010'), +('Q92.0', 'Whole chromosome trisomy, meiotic nondisjunction', 'ICD10_2010'), +('Q92.1', 'Whole chromosome trisomy, mosaicism (mitotic nondisjunction)', 'ICD10_2010'), +('Q92.2', 'Major partial trisomy', 'ICD10_2010'), +('Q92.3', 'Minor partial trisomy', 'ICD10_2010'), +('Q92.4', 'Duplications seen only at prometaphase', 'ICD10_2010'), +('Q92.5', 'Duplications with other complex rearrangements', 'ICD10_2010'), +('Q92.6', 'Extra marker chromosomes', 'ICD10_2010'), +('Q92.7', 'Triploidy and polyploidy', 'ICD10_2010'), +('Q92.8', 'Other specified trisomies and partial trisomies of autosomes', 'ICD10_2010'), +('Q92.9', 'Trisomy and partial trisomy of autosomes, unspecified', 'ICD10_2010'), +('Q93', 'Monosomies and deletions from the autosomes, not elsewhere classified', 'ICD10_2010'), +('Q93.0', 'Whole chromosome monosomy, meiotic nondisjunction', 'ICD10_2010'), +('Q93.1', 'Whole chrom monosomy mosaicism (mitotic nondisjunction)', 'ICD10_2010'), +('Q93.2', 'Chromosome replaced with ring or dicentric', 'ICD10_2010'), +('Q93.3', 'Deletion of short arm of chromosome 4', 'ICD10_2010'), +('Q93.4', 'Deletion of short arm of chromosome 5', 'ICD10_2010'), +('Q93.5', 'Other deletions of part of a chromosome', 'ICD10_2010'), +('Q93.6', 'Deletions seen only at prometaphase', 'ICD10_2010'), +('Q93.7', 'Deletions with other complex rearrangements', 'ICD10_2010'), +('Q93.8', 'Other deletions from the autosomes', 'ICD10_2010'), +('Q93.9', 'Deletion from autosomes, unspecified', 'ICD10_2010'), +('Q95', 'Balanced rearrangements and structural markers, not elsewhere classified', 'ICD10_2010'), +('Q95.0', 'Balanced translocation and insertion in normal individual', 'ICD10_2010'), +('Q95.1', 'Chromosome inversion in normal individual', 'ICD10_2010'), +('Q95.2', 'Balanced autosomal rearrangement in abnormal individual', 'ICD10_2010'), +('Q95.3', 'Balanced sex/autosomal rearrangement in abnormal individual', 'ICD10_2010'), +('Q95.4', 'Individuals with marker heterochromatin', 'ICD10_2010'), +('Q95.5', 'Individuals with autosomal fragile site', 'ICD10_2010'), +('Q95.8', 'Other balanced rearrangements and structural markers', 'ICD10_2010'), +('Q95.9', 'Balanced rearrangement and structural marker, unspecified', 'ICD10_2010'), +('Q96', 'Turner syndrome', 'ICD10_2010'), +('Q96.0', 'Karyotype 45x', 'ICD10_2010'), +('Q96.1', 'Karyotype 46x iso (xq)', 'ICD10_2010'), +('Q96.2', 'Karyotype 46x with abnormal sex chromosome, except iso (Xq)', 'ICD10_2010'), +('Q96.3', 'Mosaicism, 45, x/46, xx or xy', 'ICD10_2010'), +('Q96.4', 'Mosaicism 45x/oth cell line(s) with abnorm sex chromosome', 'ICD10_2010'), +('Q96.8', 'Other variants of turner\'s syndrome', 'ICD10_2010'), +('Q96.9', 'Turner\'s syndrome, unspecified', 'ICD10_2010'), +('Q97', 'Other sex chromosome abnormalities, female phenotype, not elsewhere classified', 'ICD10_2010'), +('Q97.0', 'Karotype 47, XXX', 'ICD10_2010'), +('Q97.1', 'Female with more than three x chromosomes', 'ICD10_2010'), +('Q97.2', 'Mosaicism, lines with various numbers of x chromosomes', 'ICD10_2010'), +('Q97.3', 'Female with 46, XY karyotype', 'ICD10_2010'), +('Q97.8', 'Other specified sex chromosome abnormalities female phrenotype', 'ICD10_2010'), +('Q97.9', 'Sex chromosome abnormality, female phenotype, unspecified', 'ICD10_2010'), +('Q98', 'Other sex chromosome abnormalities, male phenotype, not elsewhere classified', 'ICD10_2010'), +('Q98.0', 'Klinefelters syndrome karyotype 47, XXY', 'ICD10_2010'), +('Q98.1', 'Klinefelters syndrome male with more than two X chromosomes', 'ICD10_2010'), +('Q98.2', 'Klinefelters syndrome karyotype male with 46, XX karyotype', 'ICD10_2010'), +('Q98.3', 'Other male with 46 XX karyotype', 'ICD10_2010'), +('Q98.4', 'Klinefelter\'s syndrome, unspecified', 'ICD10_2010'), +('Q98.5', 'Karyotype 47 , XYY', 'ICD10_2010'), +('Q98.6', 'Male with structurally abnormal sex chromosome', 'ICD10_2010'), +('Q98.7', 'Male with sex chromosome mosaicism', 'ICD10_2010'), +('Q98.8', 'Other specified sex chromosome abnormalities, male phenotype', 'ICD10_2010'), +('Q98.9', 'Sex chromosome abnormality, male phenotype, unspecified', 'ICD10_2010'), +('Q99', 'Other chromosome abnormalities, not elsewhere classified', 'ICD10_2010'), +('Q99.0', 'Chimera 46, XX/46, XY', 'ICD10_2010'), +('Q99.1', '46, XX true hemaphrodite', 'ICD10_2010'), +('Q99.2', 'Fragile x chromosome', 'ICD10_2010'), +('Q99.8', 'Other specified chromosome abnormalities', 'ICD10_2010'), +('Q99.9', 'Chromosomal abnormality, unspecified', 'ICD10_2010'), +('R00', 'Abnormalities of heart beat', 'ICD10_2010'), +('R00.0', 'Tachycardia, unspecified', 'ICD10_2010'), +('R00.1', 'Bradycardia, unspecified', 'ICD10_2010'), +('R00.2', 'Palpitations', 'ICD10_2010'), +('R00.8', 'Other and unspecified abnormalities of heart beat', 'ICD10_2010'), +('R01', 'Cardiac murmurs and other cardiac sounds', 'ICD10_2010'), +('R01.0', 'Benign and innocent cardiac murmurs', 'ICD10_2010'), +('R01.1', 'Cardiac murmur, unspecified', 'ICD10_2010'), +('R01.2', 'Other cardiac sounds', 'ICD10_2010'), +('R02', 'Gangrene, not elsewhere classified', 'ICD10_2010'), +('R03', 'Abnormal blood-pressure reading, without diagnosis', 'ICD10_2010'), +('R03.0', 'Elevated blood-pressure reading without diagnosis of hypertension', 'ICD10_2010'), +('R03.1', 'Nonspecific low blood-pressure reading', 'ICD10_2010'), +('R04', 'Haemorrhage from respiratory passages', 'ICD10_2010'), +('R04.0', 'Epistaxis', 'ICD10_2010'), +('R04.1', 'Haemorrhage from throat', 'ICD10_2010'), +('R04.2', 'Haemoptysis', 'ICD10_2010'), +('R04.8', 'Haemorrhage from other sites in respiratory passages', 'ICD10_2010'), +('R04.9', 'Haemorrhage from respiratory passages, unspecified', 'ICD10_2010'), +('R05', 'Cough', 'ICD10_2010'), +('R06', 'Abnormalities of breathing', 'ICD10_2010'), +('R06.0', 'Dyspnoea', 'ICD10_2010'), +('R06.1', 'Stridor', 'ICD10_2010'), +('R06.2', 'Wheezing', 'ICD10_2010'), +('R06.3', 'Periodic breathing', 'ICD10_2010'), +('R06.4', 'Hyperventilation', 'ICD10_2010'), +('R06.5', 'Mouth breathing', 'ICD10_2010'), +('R06.6', 'Hiccough', 'ICD10_2010'), +('R06.7', 'Sneezing', 'ICD10_2010'), +('R06.8', 'Other and unspecified abnormalities of breathing', 'ICD10_2010'), +('R07', 'Pain in throat and chest', 'ICD10_2010'), +('R07.0', 'Pain in throat', 'ICD10_2010'), +('R07.1', 'Chest pain on breathing', 'ICD10_2010'), +('R07.2', 'Precordial pain', 'ICD10_2010'), +('R07.3', 'Other chest pain', 'ICD10_2010'), +('R07.4', 'Chest pain, unspecified', 'ICD10_2010'), +('R09', 'Other symptoms and signs involving the circulatory and respiratory systems', 'ICD10_2010'), +('R09.0', 'Asphyxia', 'ICD10_2010'), +('R09.1', 'Pleurisy', 'ICD10_2010'), +('R09.2', 'Respiratory arrest', 'ICD10_2010'), +('R09.3', 'Abnormal sputum', 'ICD10_2010'), +('R09.8', 'Other specified symptoms and signs involving circulatory and respiratory systems', 'ICD10_2010'), +('R10', 'Abdominal and pelvic pain', 'ICD10_2010'), +('R10.0', 'Acute abdomen', 'ICD10_2010'), +('R10.1', 'Pain localized to upper abdomen', 'ICD10_2010'), +('R10.2', 'Pelvic and perineal pain', 'ICD10_2010'), +('R10.3', 'Pain localized to other parts of lower abdomen', 'ICD10_2010'), +('R10.4', 'Other and unspecified abdominal pain', 'ICD10_2010'), +('R11', 'Nausea and vomiting', 'ICD10_2010'), +('R12', 'Heartburn', 'ICD10_2010'), +('R13', 'Dysphagia', 'ICD10_2010'), +('R14', 'Flatulence and related conditions', 'ICD10_2010'), +('R15', 'Faecal incontinence', 'ICD10_2010'), +('R16', 'Hepatomegaly and splenomegaly, not elsewhere classified', 'ICD10_2010'), +('R16.0', 'Hepatomegaly, not elsewhere classified', 'ICD10_2010'), +('R16.1', 'Splenomegaly, not elsewhere classified', 'ICD10_2010'), +('R16.2', 'Hepatomegaly with splenomegaly, not elsewhere classified', 'ICD10_2010'), +('R17', 'Unspecified jaundice', 'ICD10_2010'), +('R18', 'Ascites', 'ICD10_2010'), +('R19', 'Other symptoms and signs involving the digestive system and abdomen', 'ICD10_2010'), +('R19.0', 'Intra-abdominal and pelvic swelling, mass and lump', 'ICD10_2010'), +('R19.1', 'Abnormal bowel sounds', 'ICD10_2010'), +('R19.2', 'Visible peristalsis', 'ICD10_2010'), +('R19.3', 'Abdominal rigidity', 'ICD10_2010'), +('R19.4', 'Change in bowel habit', 'ICD10_2010'), +('R19.5', 'Other faecal abnormalities', 'ICD10_2010'), +('R19.6', 'Halitosis', 'ICD10_2010'), +('R19.8', 'Other specified symptoms and signs involving digestive system and abdomen', 'ICD10_2010'), +('R20', 'Disturbances of skin sensation', 'ICD10_2010'), +('R20.0', 'Anaesthesia of skin', 'ICD10_2010'), +('R20.1', 'Hypoaesthesia of skin', 'ICD10_2010'), +('R20.2', 'Paraesthesia of skin', 'ICD10_2010'), +('R20.3', 'Hyperaesthesia', 'ICD10_2010'), +('R20.8', 'Other and unspecified disturbances of skin sensation', 'ICD10_2010'), +('R21', 'Rash and other nonspecific skin eruption', 'ICD10_2010'), +('R22', 'Localized swelling, mass and lump of skin and subcutaneous tissue', 'ICD10_2010'), +('R22.0', 'Localized swelling, mass and lump, head', 'ICD10_2010'), +('R22.1', 'Localized swelling, mass and lump, neck', 'ICD10_2010'), +('R22.2', 'Localized swelling, mass and lump, trunk', 'ICD10_2010'), +('R22.3', 'Localized swelling, mass and lump, upper limb', 'ICD10_2010'), +('R22.4', 'Localized swelling, mass and lump, lower limb', 'ICD10_2010'), +('R22.7', 'Localized swelling, mass and lump, multiple sites', 'ICD10_2010'), +('R22.9', 'Localized swelling, mass and lump, unspecified', 'ICD10_2010'), +('R23', 'Other skin changes', 'ICD10_2010'), +('R23.0', 'Cyanosis', 'ICD10_2010'), +('R23.1', 'Pallor', 'ICD10_2010'), +('R23.2', 'Flushing', 'ICD10_2010'), +('R23.3', 'Spontaneous ecchymoses', 'ICD10_2010'), +('R23.4', 'Changes in skin texture', 'ICD10_2010'), +('R23.8', 'Other and unspecified skin changes', 'ICD10_2010'), +('R25', 'Abnormal involuntary movements', 'ICD10_2010'), +('R25.0', 'Abnormal head movements', 'ICD10_2010'), +('R25.1', 'Tremor, unspecified', 'ICD10_2010'), +('R25.2', 'Cramp and spasm', 'ICD10_2010'), +('R25.3', 'Fasciculation', 'ICD10_2010'), +('R25.8', 'Other and unspecified abnormal involuntary movements', 'ICD10_2010'), +('R26', 'Abnormalities of gait and mobility', 'ICD10_2010'), +('R26.0', 'Ataxic gait', 'ICD10_2010'), +('R26.1', 'Paralytic gait', 'ICD10_2010'), +('R26.2', 'Difficulty in walking, not elsewhere classified', 'ICD10_2010'), +('R26.3', 'Immobility', 'ICD10_2010'), +('R26.8', 'Other and unspecified abnormalities of gait and mobility', 'ICD10_2010'), +('R27', 'Other lack of coordination', 'ICD10_2010'), +('R27.0', 'Ataxia, unspecified', 'ICD10_2010'), +('R27.8', 'Other and unspecified lack of coordination', 'ICD10_2010'), +('R29', 'Other symptoms and signs involving the nervous and musculoskeletal systems', 'ICD10_2010'), +('R29.0', 'Tetany', 'ICD10_2010'), +('R29.1', 'Meningismus', 'ICD10_2010'), +('R29.2', 'Abnormal reflex', 'ICD10_2010'), +('R29.3', 'Abnormal posture', 'ICD10_2010'), +('R29.4', 'Clicking hip', 'ICD10_2010'), +('R29.6', 'Tendency to fall, NEC', 'ICD10_2010'), +('R29.8', 'Other unspecified symptoms and signs involving the nervous and musculoskel systems', 'ICD10_2010'), +('R30', 'Pain associated with micturition', 'ICD10_2010'), +('R30.0', 'Dysuria', 'ICD10_2010'), +('R30.1', 'Vesical tenesmus', 'ICD10_2010'), +('R30.9', 'Painful micturition, unspecified', 'ICD10_2010'), +('R31', 'Unspecified haematuria', 'ICD10_2010'), +('R32', 'Unspecified urinary incontinence', 'ICD10_2010'), +('R33', 'Retention of urine', 'ICD10_2010'), +('R34', 'Anuria and oliguria', 'ICD10_2010'), +('R35', 'Polyuria', 'ICD10_2010'), +('R36', 'Urethral discharge', 'ICD10_2010'), +('R39', 'Other symptoms and signs involving the urinary system', 'ICD10_2010'), +('R39.0', 'Extravasation of urine', 'ICD10_2010'), +('R39.1', 'Other difficulties with micturition', 'ICD10_2010'), +('R39.2', 'Extrarenal uraemia', 'ICD10_2010'), +('R39.8', 'Other and unspecified symptoms and signs involving urinary system', 'ICD10_2010'), +('R40', 'Somnolence, stupor and coma', 'ICD10_2010'), +('R40.0', 'Somnolence', 'ICD10_2010'), +('R40.1', 'Stupor', 'ICD10_2010'), +('R40.2', 'Coma, unspecified', 'ICD10_2010'), +('R41', 'Other symptoms and signs involving cognitive functions and awareness', 'ICD10_2010'), +('R41.0', 'Disorientation, unspecified', 'ICD10_2010'), +('R41.1', 'Anterograde amnesia', 'ICD10_2010'), +('R41.2', 'Retrograde amnesia', 'ICD10_2010'), +('R41.3', 'Other amnesia', 'ICD10_2010'), +('R41.8', 'Other and unspecified symptoms and signs involving cognitive functions and awareness', 'ICD10_2010'), +('R42', 'Dizziness and giddiness', 'ICD10_2010'), +('R43', 'Disturbances of smell and taste', 'ICD10_2010'), +('R43.0', 'Anosmia', 'ICD10_2010'), +('R43.1', 'Parosmia', 'ICD10_2010'), +('R43.2', 'Parageusia', 'ICD10_2010'), +('R43.8', 'Other and unspecified disturbances of smell and taste', 'ICD10_2010'), +('R44', 'Other symptoms and signs involving general sensations and perceptions', 'ICD10_2010'), +('R44.0', 'Auditory hallucinations', 'ICD10_2010'), +('R44.1', 'Visual hallucinations', 'ICD10_2010'), +('R44.2', 'Other hallucinations', 'ICD10_2010'), +('R44.3', 'Hallucinations, unspecified', 'ICD10_2010'), +('R44.8', 'Other and unspecified symptoms and signs involving general sensations and perceptions', 'ICD10_2010'), +('R45', 'Symptoms and signs involving emotional state', 'ICD10_2010'), +('R45.0', 'Nervousness', 'ICD10_2010'), +('R45.1', 'Restlessness and agitation', 'ICD10_2010'), +('R45.2', 'Unhappiness', 'ICD10_2010'), +('R45.3', 'Demoralization and apathy', 'ICD10_2010'), +('R45.4', 'Irritability and anger', 'ICD10_2010'), +('R45.5', 'Hostility', 'ICD10_2010'), +('R45.6', 'Physical violence', 'ICD10_2010'), +('R45.7', 'State of emotional shock and stress, unspecified', 'ICD10_2010'), +('R45.8', 'Other symptoms and signs involving emotional state', 'ICD10_2010'), +('R46', 'Symptoms and signs involving appearance and behaviour', 'ICD10_2010'), +('R46.0', 'Very low level of personal hygiene', 'ICD10_2010'), +('R46.1', 'Bizarre personal appearance', 'ICD10_2010'), +('R46.2', 'Strange and inexplicable behaviour', 'ICD10_2010'), +('R46.3', 'Overactivity', 'ICD10_2010'), +('R46.4', 'Slowness and poor responsiveness', 'ICD10_2010'), +('R46.5', 'Suspiciousness and marked evasiveness', 'ICD10_2010'), +('R46.6', 'Undue concern and preoccupation with stressful events', 'ICD10_2010'), +('R46.7', 'Verbosity and circumstantial detail obscuring reason for contact', 'ICD10_2010'), +('R46.8', 'Other symptoms and signs involving appearance and behaviour', 'ICD10_2010'), +('R47', 'Speech disturbances, not elsewhere classified', 'ICD10_2010'), +('R47.0', 'Dysphasia and aphasia', 'ICD10_2010'), +('R47.1', 'Dysarthria and anarthria', 'ICD10_2010'), +('R47.8', 'Other and unspecified speech disturbances', 'ICD10_2010'), +('R48', 'Dyslexia and other symbolic dysfunctions, not elsewhere classified', 'ICD10_2010'), +('R48.0', 'Dyslexia and alexia', 'ICD10_2010'), +('R48.1', 'Agnosia', 'ICD10_2010'), +('R48.2', 'Apraxia', 'ICD10_2010'), +('R48.8', 'Other and unspecified symbolic dysfunctions', 'ICD10_2010'), +('R49', 'Voice disturbances', 'ICD10_2010'), +('R49.0', 'Dysphonia', 'ICD10_2010'), +('R49.1', 'Aphonia', 'ICD10_2010'), +('R49.2', 'Hypernasality and hyponasality', 'ICD10_2010'), +('R49.8', 'Other and unspecified voice disturbances', 'ICD10_2010'), +('R50', 'Fever of other and unknown origin', 'ICD10_2010'), +('R50.2', 'Drug-induced fever', 'ICD10_2010'), +('R50.8', 'Other specified fever', 'ICD10_2010'), +('R50.9', 'Fever, unspecified', 'ICD10_2010'), +('R51', 'Headache', 'ICD10_2010'), +('R52', 'Pain, not elsewhere classified', 'ICD10_2010'), +('R52.0', 'Acute pain', 'ICD10_2010'), +('R52.1', 'Chronic intractable pain', 'ICD10_2010'), +('R52.2', 'Other chronic pain', 'ICD10_2010'), +('R52.9', 'Pain, unspecified', 'ICD10_2010'), +('R53', 'Malaise and fatigue', 'ICD10_2010'), +('R54', 'Senility', 'ICD10_2010'), +('R55', 'Syncope and collapse', 'ICD10_2010'), +('R56', 'Convulsions, not elsewhere classified', 'ICD10_2010'), +('R56.0', 'Febrile convulsions', 'ICD10_2010'), +('R56.8', 'Other and unspecified convulsions', 'ICD10_2010'), +('R57', 'Shock, not elsewhere classified', 'ICD10_2010'), +('R57.0', 'Cardiogenic shock', 'ICD10_2010'), +('R57.1', 'Hypovolaemic shock', 'ICD10_2010'), +('R57.2', 'Septic shock', 'ICD10_2010'), +('R57.8', 'Other shock', 'ICD10_2010'), +('R57.9', 'Shock, unspecified', 'ICD10_2010'), +('R58', 'Haemorrhage, not elsewhere classified', 'ICD10_2010'), +('R59', 'Enlarged lymph nodes', 'ICD10_2010'), +('R59.0', 'Localized enlarged lymph nodes', 'ICD10_2010'), +('R59.1', 'Generalized enlarged lymph nodes', 'ICD10_2010'), +('R59.9', 'Enlarged lymph nodes, unspecified', 'ICD10_2010'), +('R60', 'Oedema, not elsewhere classified', 'ICD10_2010'), +('R60.0', 'Localized oedema', 'ICD10_2010'), +('R60.1', 'Generalized oedema', 'ICD10_2010'), +('R60.9', 'Oedema, unspecified', 'ICD10_2010'), +('R61', 'Hyperhidrosis', 'ICD10_2010'), +('R61.0', 'Localized hyperhidrosis', 'ICD10_2010'), +('R61.1', 'Generalized hyperhidrosis', 'ICD10_2010'), +('R61.9', 'Hyperhidrosis, unspecified', 'ICD10_2010'), +('R62', 'Lack of expected normal physiological development', 'ICD10_2010'), +('R62.0', 'Delayed milestone', 'ICD10_2010'), +('R62.8', 'Other lack of expected normal physiological development', 'ICD10_2010'), +('R62.9', 'Lack of expected normal physiologic developmemnt unspecified', 'ICD10_2010'), +('R63', 'Symptoms and signs concerning food and fluid intake', 'ICD10_2010'), +('R63.0', 'Anorexia', 'ICD10_2010'), +('R63.1', 'Polydipsia', 'ICD10_2010'), +('R63.2', 'Polyphagia', 'ICD10_2010'), +('R63.3', 'Feeding difficulties and mismanagement', 'ICD10_2010'), +('R63.4', 'Abnormal weight loss', 'ICD10_2010'), +('R63.5', 'Abnormal weight gain', 'ICD10_2010'), +('R63.6', 'Insufficient intake of food and water due to self neglect', 'ICD10_2010'), +('R63.8', 'Other symptoms and signs concerning food and fluid intake', 'ICD10_2010'), +('R64', 'Cachexia', 'ICD10_2010'), +('R65', 'Systemic Inflammatory Response Syndrome [SIRS]', 'ICD10_2010'), +('R65.0', 'Systemic Inflammatory Response Syndrome of infectious origin without organ failure', 'ICD10_2010'), +('R65.1', 'Systemic Inflammatory Response Syndrome of infectious origin with organ failure', 'ICD10_2010'), +('R65.2', 'Systemic Inflammatory Response Syndrome of non-infectious origin without organ failure', 'ICD10_2010'), +('R65.3', 'Systemic Inflammatory Response Syndrome of non-infectious origin with organ failure', 'ICD10_2010'), +('R65.9', 'Systemic Inflammatory Response Syndrome, unspecified', 'ICD10_2010'), +('R68', 'Other general symptoms and signs', 'ICD10_2010'), +('R68.0', 'Hypothermia not associated with low environmental temperature', 'ICD10_2010'), +('R68.1', 'Nonspecific symptoms peculiar to infancy', 'ICD10_2010'), +('R68.2', 'Dry mouth, unspecified', 'ICD10_2010'), +('R68.3', 'Clubbing of fingers', 'ICD10_2010'), +('R68.8', 'Other specified general symptoms and signs', 'ICD10_2010'), +('R69', 'Unknown and unspecified causes of morbidity', 'ICD10_2010'), +('R70', 'Elevated erythrocyte sedimentation rate and abnormality of plasma viscosity', 'ICD10_2010'), +('R70.0', 'Elevated erythrocyte sedimentation rate', 'ICD10_2010'), +('R70.1', 'Abnormal plasma viscosity', 'ICD10_2010'), +('R71', 'Abnormality of red blood cells', 'ICD10_2010'), +('R72', 'Abnormality of white blood cells, not elsewhere classified', 'ICD10_2010'), +('R73', 'Elevated blood glucose level', 'ICD10_2010'), +('R73.0', 'Abnormal glucose tolerance test', 'ICD10_2010'), +('R73.9', 'Hyperglycaemia, unspecified', 'ICD10_2010'), +('R74', 'Abnormal serum enzyme levels', 'ICD10_2010'), +('R74.0', 'Elevated levels of transaminase & lactic acid dehydrogenase', 'ICD10_2010'), +('R74.8', 'Abnormal levels of other serum enzymes', 'ICD10_2010'), +('R74.9', 'Abnormal level of unspecified serum enzyme', 'ICD10_2010'), +('R75', 'Laboratory evidence of human immunodeficiency virus [hiv]', 'ICD10_2010'), +('R76', 'Other abnormal immunological findings in serum', 'ICD10_2010'), +('R76.0', 'Raised antibody titre', 'ICD10_2010'), +('R76.1', 'Abnormal reaction to tuberculin test', 'ICD10_2010'), +('R76.2', 'False-positive serological test for syphilis', 'ICD10_2010'), +('R76.8', 'Other specified abnormal immunological findings in serum', 'ICD10_2010'), +('R76.9', 'Abnormal immunological finding in serum, unspecified', 'ICD10_2010'), +('R77', 'Other abnormalities of plasma proteins', 'ICD10_2010'), +('R77.0', 'Abnormality of albumin', 'ICD10_2010'), +('R77.1', 'Abnormality of globulin', 'ICD10_2010'), +('R77.2', 'Abnormality of alphafetoprotein', 'ICD10_2010'), +('R77.8', 'Other specified abnormalities of plasma proteins', 'ICD10_2010'), +('R77.9', 'Abnormality of plasma protein, unspecified', 'ICD10_2010'), +('R78', 'Findings of drugs and other substances, not normally found in blood', 'ICD10_2010'), +('R78.0', 'Finding of alcohol in blood', 'ICD10_2010'), +('R78.1', 'Finding of opiate drug in blood', 'ICD10_2010'), +('R78.2', 'Finding of cocaine in blood', 'ICD10_2010'), +('R78.3', 'Finding of hallucinogen in blood', 'ICD10_2010'), +('R78.4', 'Finding of other drugs of addictive potential in blood', 'ICD10_2010'), +('R78.5', 'Finding of psychotropic drug in blood', 'ICD10_2010'), +('R78.6', 'Finding of steroid agent in blood', 'ICD10_2010'), +('R78.7', 'Finding of abnormal level of heavy metals in blood', 'ICD10_2010'), +('R78.8', 'Finding of other specified substance not normally found in blood', 'ICD10_2010'), +('R78.9', 'Finding of unspecified substance not normally found in blood', 'ICD10_2010'), +('R79', 'Other abnormal findings of blood chemistry', 'ICD10_2010'), +('R79.0', 'Abnormal level of blood mineral', 'ICD10_2010'), +('R79.8', 'Other specified abnormal findings of blood chemistry', 'ICD10_2010'), +('R79.9', 'Abnormal finding of blood chemistry, unspecified', 'ICD10_2010'), +('R80', 'Isolated proteinuria', 'ICD10_2010'), +('R81', 'Glycosuria', 'ICD10_2010'), +('R82', 'Other abnormal findings in urine', 'ICD10_2010'), +('R82.0', 'Chyluria', 'ICD10_2010'), +('R82.1', 'Myoglobinuria', 'ICD10_2010'), +('R82.2', 'Biliuria', 'ICD10_2010'), +('R82.3', 'Haemoglobinuria', 'ICD10_2010'), +('R82.4', 'Acetonuria', 'ICD10_2010'), +('R82.5', 'Elevated urine levels of drugs, medicaments and biolog substance', 'ICD10_2010'), +('R82.6', 'Abnormal urine levels of substance chiefly nonmedicinal as to sources', 'ICD10_2010'), +('R82.7', 'Abnormal findings on microbiological examination of urine', 'ICD10_2010'), +('R82.8', 'Abnormal find on cytological and histological examination of urine', 'ICD10_2010'), +('R82.9', 'Other and unspecified abnormal findings in urine', 'ICD10_2010'), +('R83', 'Abnormal findings in cerebrospinal fluid', 'ICD10_2010'), +('R83.0', 'Abnormal findings in cerebrospinal fluid, abnormal level of enzymes', 'ICD10_2010'), +('R83.1', 'Abnormal findings in cerebrospinal fluid, abnormal level of hormones', 'ICD10_2010'), +('R83.2', 'Abnormal findings in cerebrospinal fluid, abnormal level other drugs, medicaments and biological substance', 'ICD10_2010'), +('R83.3', 'Abnormal findings in cerebrospinal fluid, abnormal level substance chiefly nonmedicinal as to source', 'ICD10_2010'), +('R83.4', 'Abnormal findings in cerebrospinal fluid, abnormal immunological findings', 'ICD10_2010'), +('R83.5', 'Abnormal findings in cerebrospinal fluid, abnormal microbiological findings', 'ICD10_2010'), +('R83.6', 'Abnormal findings in cerebrospinal fluid, abnormal cytological findings', 'ICD10_2010'), +('R83.7', 'Abnormal findings in cerebrospinal fluid, abnormal histological findings', 'ICD10_2010'), +('R83.8', 'Abnormal findings in cerebrospinal fluid, other abnormal findings', 'ICD10_2010'), +('R83.9', 'Abnormal findings in cerebrospinal fluid, unspecified abnormal finding', 'ICD10_2010'), +('R84', 'Abnormal findings in specimens from respiratory organs and thorax', 'ICD10_2010'), +('R84.0', 'Abnormal findings in specimens from respiratory organs and thorax, abnormal level of enzymes', 'ICD10_2010'), +('R84.1', 'Abnormal findings in specimens from respiratory organs and thorax, abnormal level of hormones', 'ICD10_2010'), +('R84.2', 'Abnormal findings in specimens from respiratory organs and thorax, abnormal level other drugs, medicaments and biological substance', 'ICD10_2010'), +('R84.3', 'Abnormal findings in specimens from respiratory organs and thorax, abnormal level substance chiefly nonmedicinal as to source', 'ICD10_2010'), +('R84.4', 'Abnormal findings in specimens from respiratory organs and thorax, abnormal immunological findings', 'ICD10_2010'), +('R84.5', 'Abnormal findings in specimens from respiratory organs and thorax, abnormal microbiological findings', 'ICD10_2010'), +('R84.6', 'Abnormal findings in specimens from respiratory organs and thorax, abnormal cytological findings', 'ICD10_2010'), +('R84.7', 'Abnormal findings in specimens from respiratory organs and thorax, abnormal histological findings', 'ICD10_2010'), +('R84.8', 'Abnormal findings in specimens from respiratory organs and thorax, other abnormal findings', 'ICD10_2010'), +('R84.9', 'Abnormal findings in specimens from respiratory organs and thorax, unspecified abnormal finding', 'ICD10_2010'), +('R85', 'Abnormal findings in specimens from digestive organs and abdominal cavity', 'ICD10_2010'), +('R85.0', 'Abnormal finding in specimens from digestive organs and abnomoinal cavity, abnormal level of enzymes', 'ICD10_2010'), +('R85.1', 'Abnormal finding in specimens from digestive organs and abnomoinal cavity, abnormal level of hormones', 'ICD10_2010'), +('R85.2', 'Abnormal finding in specimens from digestive organs and abnomoinal cavity, abnormal level other drugs, medicaments and biological substance', 'ICD10_2010'), +('R85.3', 'Abnormal finding in specimens from digestive organs and abnomoinal cavity, abnormal level substance chiefly nonmedicinal as to source', 'ICD10_2010'), +('R85.4', 'Abnormal finding in specimens from digestive organs and abnomoinal cavity, abnormal immunological findings', 'ICD10_2010'), +('R85.5', 'Abnormal finding in specimens from digestive organs and abnomoinal cavity, abnormal microbiological findings', 'ICD10_2010'), +('R85.6', 'Abnormal finding in specimens from digestive organs and abnomoinal cavity, abnormal cytological findings', 'ICD10_2010'), +('R85.7', 'Abnormal finding in specimens from digestive organs and abnomoinal cavity, abnormal histological findings', 'ICD10_2010'), +('R85.8', 'Abnormal finding in specimens from digestive organs and abnomoinal cavity, other abnormal findings', 'ICD10_2010'), +('R85.9', 'Abnormal finding in specimens from digestive organs and abnomoinal cavity, unspecified abnormal finding', 'ICD10_2010'), +('R86', 'Abnormal findings in specimens from male genital organs', 'ICD10_2010'), +('R86.0', 'Abnormal findings in specimens from male genital organs, abnormal level of enzymes', 'ICD10_2010'), +('R86.1', 'Abnormal findings in specimens from male genital organs, abnormal level of hormones', 'ICD10_2010'), +('R86.2', 'Abnormal findings in specimens from male genital organs, abnormal level other drugs, medicaments and biological substance', 'ICD10_2010'), +('R86.3', 'Abnormal findings in specimens from male genital organs, abnormal level substance chiefly nonmedicinal as to source', 'ICD10_2010'), +('R86.4', 'Abnormal findings in specimens from male genital organs, abnormal immunological findings', 'ICD10_2010'), +('R86.5', 'Abnormal findings in specimens from male genital organs, abnormal microbiological findings', 'ICD10_2010'), +('R86.6', 'Abnormal findings in specimens from male genital organs, abnormal cytological findings', 'ICD10_2010'), +('R86.7', 'Abnormal findings in specimens from male genital organs, abnormal histological findings', 'ICD10_2010'), +('R86.8', 'Abnormal findings in specimens from male genital organs, other abnormal findings', 'ICD10_2010'), +('R86.9', 'Abnormal findings in specimens from male genital organs, unspecified abnormal finding', 'ICD10_2010'), +('R87', 'Abnormal findings in specimens from female genital organs', 'ICD10_2010'), +('R87.0', 'Abnormal findings in specimens from famale genital organs, abnormal level of enzymes', 'ICD10_2010'), +('R87.1', 'Abnormal findings in specimens from famale genital organs, abnormal level of hormones', 'ICD10_2010'), +('R87.2', 'Abnormal findings in specimens from famale genital organs, abnormal level other drugs, medicaments and biological substance', 'ICD10_2010'), +('R87.3', 'Abnormal findings in specimens from famale genital organs, abnormal level substance chiefly nonmedicinal as to source', 'ICD10_2010'), +('R87.4', 'Abnormal findings in specimens from famale genital organs, abnormal immunological findings', 'ICD10_2010'), +('R87.5', 'Abnormal findings in specimens from famale genital organs, abnormal microbiological findings', 'ICD10_2010'), +('R87.6', 'Abnormal findings in specimens from famale genital organs, abnormal cytological findings', 'ICD10_2010'), +('R87.7', 'Abnormal findings in specimens from famale genital organs, abnormal histological findings', 'ICD10_2010'), +('R87.8', 'Abnormal findings in specimens from famale genital organs, other abnormal findings', 'ICD10_2010'), +('R87.9', 'Abnormal findings in specimens from famale genital organs, unspecified abnormal finding', 'ICD10_2010'), +('R89', 'Abnormal findings in specimens from other organs, systems and tissues', 'ICD10_2010'), +('R89.0', 'Abnormal findings in specimens from other organs,systems and tissue, abnormal level of enzymes', 'ICD10_2010'), +('R89.1', 'Abnormal findings in specimens from other organs,systems and tissue, abnormal level of hormones', 'ICD10_2010'), +('R89.2', 'Abnormal findings in specimens from other organs,systems and tissue, abnormal level other drugs, medicaments and biological substance', 'ICD10_2010'), +('R89.3', 'Abnormal findings in specimens from other organs,systems and tissue, abnormal level substance chiefly nonmedicinal as to source', 'ICD10_2010'), +('R89.4', 'Abnormal findings in specimens from other organs,systems and tissue, abnormal immunological findings', 'ICD10_2010'), +('R89.5', 'Abnormal findings in specimens from other organs,systems and tissue, abnormal microbiological findings', 'ICD10_2010'), +('R89.6', 'Abnormal findings in specimens from other organs,systems and tissue, abnormal cytological findings', 'ICD10_2010'), +('R89.7', 'Abnormal findings in specimens from other organs,systems and tissue, abnormal histological findings', 'ICD10_2010'), +('R89.8', 'Abnormal findings in specimens from other organs,systems and tissue, other abnormal findings', 'ICD10_2010'), +('R89.9', 'Abnormal findings in specimens from other organs,systems and tissue, unspecified abnormal finding', 'ICD10_2010'), +('R90', 'Abnormal findings on diagnostic imaging of central nervous system', 'ICD10_2010'), +('R90.0', 'Intracranial space-occupying lesion', 'ICD10_2010'), +('R90.8', 'Other abnormal findings on diagnostic imaging of central nervous system', 'ICD10_2010'), +('R91', 'Abnormal findings on diagnostic imaging of lung', 'ICD10_2010'), +('R92', 'Abnormal findings on diagnostic imaging of breast', 'ICD10_2010'), +('R93', 'Abnormal findings on diagnostic imaging of other body structures', 'ICD10_2010'), +('R93.0', 'Abnormal findings on diagnostic imaging of skull and head NEC', 'ICD10_2010'), +('R93.1', 'Abnormal findings on diagnostic imaging of heart and coronary circulation', 'ICD10_2010'), +('R93.2', 'Abnormal findings diagnostic imaging of liver and biliary tract', 'ICD10_2010'), +('R93.3', 'Abnormal findings diagnostic imaging of other parts of digestive tract', 'ICD10_2010'), +('R93.4', 'Abnormal findings on diagnostic imaging of urinary organs', 'ICD10_2010'), +('R93.5', 'Abnormal findings on diagnostic imaging of other abdominal regions, including retroperitoneum', 'ICD10_2010'), +('R93.6', 'Abnormal findings on diagnostic imaging of limbs', 'ICD10_2010'), +('R93.7', 'Abnormal findings on diagnostic imaging of other parts of musculoskeletal system', 'ICD10_2010'), +('R93.8', 'Abnormal findings on diagnostic imaging of other specified body structures', 'ICD10_2010'), +('R94', 'Abnormal results of function studies', 'ICD10_2010'), +('R94.0', 'Abnormal results of function studies of central nervous system', 'ICD10_2010'), +('R94.1', 'Abnormal results function studies peripheral nervous system special senses', 'ICD10_2010'), +('R94.2', 'Abnormal results of pulmonary function studies', 'ICD10_2010'), +('R94.3', 'Abnormal results of cardiovascular function studies', 'ICD10_2010'), +('R94.4', 'Abnormal results of kidney function studies', 'ICD10_2010'), +('R94.5', 'Abnormal results of liver function studies', 'ICD10_2010'), +('R94.6', 'Abnormal results of thyroid function studies', 'ICD10_2010'), +('R94.7', 'Abnormal results of other endocrine function studies', 'ICD10_2010'), +('R94.8', 'Abnormal results of function studies of other organs and systems', 'ICD10_2010'), +('R95', 'Sudden infant death syndrome', 'ICD10_2010'), +('R96', 'Other sudden death, cause unknown', 'ICD10_2010'), +('R96.0', 'Instantaneous death', 'ICD10_2010'), +('R96.1', 'Death occurring less than 24 hr from onset symptoms not otherwise explained', 'ICD10_2010'), +('R98', 'Unattended death', 'ICD10_2010'), +('R99', 'Other ill-defined and unspecified cause of mortality', 'ICD10_2010'), +('S00', 'Superficial injury of head', 'ICD10_2010'), +('S00.0', 'Superficial injury of scalp', 'ICD10_2010'), +('S00.1', 'Contusion of eyelid and periocular area', 'ICD10_2010'), +('S00.2', 'Other superficial injuries of eyelid and periocular area', 'ICD10_2010'), +('S00.3', 'Superficial injury of nose', 'ICD10_2010'), +('S00.4', 'Superficial injury of ear', 'ICD10_2010'), +('S00.5', 'Superficial injury of lip and oral cavity', 'ICD10_2010'), +('S00.7', 'Multiple superficial injuries of head', 'ICD10_2010'), +('S00.8', 'Superficial injury of other parts of head', 'ICD10_2010'), +('S00.9', 'Superficial injury of head, part unspecified', 'ICD10_2010'), +('S01', 'Open wound of head', 'ICD10_2010'), +('S01.0', 'Open wound of scalp', 'ICD10_2010'), +('S01.1', 'Open wound of eyelid and periocular area', 'ICD10_2010'), +('S01.2', 'Open wound of nose', 'ICD10_2010'), +('S01.3', 'Open wound of ear', 'ICD10_2010'), +('S01.4', 'Open wound of cheek and temporomandibular area', 'ICD10_2010'), +('S01.5', 'Open wound of lip and oral cavity', 'ICD10_2010'), +('S01.7', 'Multiple open wounds of head', 'ICD10_2010'), +('S01.8', 'Open wound of other parts of head', 'ICD10_2010'), +('S01.9', 'Open wound of head, part unspecified', 'ICD10_2010'), +('S02', 'Fracture of skull and facial bones', 'ICD10_2010'), +('S02.0', 'Fracture of vault of skull', 'ICD10_2010'), +('S02.00', 'Fracture of vault of skull, closed', 'ICD10_2010'), +('S02.01', 'Fracture of vault of skull, open', 'ICD10_2010'), +('S02.1', 'Fracture of base of skull', 'ICD10_2010'), +('S02.10', 'Fracture of base of skull, closed', 'ICD10_2010'), +('S02.11', 'Fracture of base of skull, open', 'ICD10_2010'), +('S02.2', 'Fracture of nasal bones', 'ICD10_2010'), +('S02.20', 'Fracture of nasal bones, closed', 'ICD10_2010'), +('S02.21', 'Fracture of nasal bones, open', 'ICD10_2010'), +('S02.3', 'Fracture of orbital floor', 'ICD10_2010'), +('S02.30', 'Fracture of orbital floor, closed', 'ICD10_2010'), +('S02.31', 'Fracture of orbital floor, open', 'ICD10_2010'), +('S02.4', 'Fracture of malar and maxillary bones', 'ICD10_2010'), +('S02.40', 'Fracture of malar and maxillary bones, closed', 'ICD10_2010'), +('S02.41', 'Fracture of malar and maxillary bones, open', 'ICD10_2010'), +('S02.5', 'Fracture of tooth', 'ICD10_2010'), +('S02.50', 'Fracture of tooth, closed', 'ICD10_2010'), +('S02.51', 'Fracture of tooth, open', 'ICD10_2010'), +('S02.6', 'Fracture of mandible', 'ICD10_2010'), +('S02.60', 'Fracture of mandible, closed', 'ICD10_2010'), +('S02.61', 'Fracture of mandible, open', 'ICD10_2010'), +('S02.7', 'Multiple fractures involving skull and facial bones', 'ICD10_2010'), +('S02.70', 'Multiple fractures involving skull and facial bones, closed', 'ICD10_2010'), +('S02.71', 'Multiple fractures involving skull and facial bones, open', 'ICD10_2010'), +('S02.8', 'Fractures of other skull and facial bones', 'ICD10_2010'), +('S02.80', 'Fractures of other skull and facial bones, closed', 'ICD10_2010'), +('S02.81', 'Fractures of other skull and facial bones, open', 'ICD10_2010'); +INSERT INTO `icd10` (`ID_ICD10`, `Diagnosa`, `Versi_ICD10`) VALUES +('S02.9', 'Fracture of skull and facial bones, part unspecified', 'ICD10_2010'), +('S02.90', 'Fracture of skull and facial bones, part unspecified, closed', 'ICD10_2010'), +('S02.91', 'Fracture of skull and facial bones, part unspecified, open', 'ICD10_2010'), +('S03', 'Dislocation, sprain and strain of joints and ligaments of head', 'ICD10_2010'), +('S03.0', 'Dislocation of jaw', 'ICD10_2010'), +('S03.1', 'Dislocation of septal cartilage of nose', 'ICD10_2010'), +('S03.2', 'Dislocation of tooth', 'ICD10_2010'), +('S03.3', 'Dislocation of other and unspecified parts of head', 'ICD10_2010'), +('S03.4', 'Sprain and strain of jaw', 'ICD10_2010'), +('S03.5', 'Sprain and strain joints ligs other and unspec parts head', 'ICD10_2010'), +('S04', 'Injury of cranial nerves', 'ICD10_2010'), +('S04.0', 'Injury of optic nerve and pathways', 'ICD10_2010'), +('S04.1', 'Injury of oculomotor nerve', 'ICD10_2010'), +('S04.2', 'Injury of trochlear nerve', 'ICD10_2010'), +('S04.3', 'Injury of trigeminal nerve', 'ICD10_2010'), +('S04.4', 'Injury of abducent nerve', 'ICD10_2010'), +('S04.5', 'Injury of facial nerve', 'ICD10_2010'), +('S04.6', 'Injury of acoustic nerve', 'ICD10_2010'), +('S04.7', 'Injury of accessory nerve', 'ICD10_2010'), +('S04.8', 'Injury of other cranial nerves', 'ICD10_2010'), +('S04.9', 'Injury of unspecified cranial nerve', 'ICD10_2010'), +('S05', 'Injury of eye and orbit', 'ICD10_2010'), +('S05.0', 'Injury conjunctiva corneal abras without ment foreign body', 'ICD10_2010'), +('S05.1', 'Contusion of eyeball and orbital tissues', 'ICD10_2010'), +('S05.2', 'Ocular lacn and rupture with prolapse or loss intraoc tiss', 'ICD10_2010'), +('S05.3', 'Ocular lacn without prolapse or loss of intraocular tissue', 'ICD10_2010'), +('S05.4', 'Penetrating wound of orbit with or without foreign body', 'ICD10_2010'), +('S05.5', 'Penetrating wound of eyeball with foreign body', 'ICD10_2010'), +('S05.6', 'Penetrating wound of eyeball without foreign body', 'ICD10_2010'), +('S05.7', 'Avulsion of eye', 'ICD10_2010'), +('S05.8', 'Other injuries of eye and orbit', 'ICD10_2010'), +('S05.9', 'Injury of eye and orbit, unspecified', 'ICD10_2010'), +('S06', 'Intracranial injury', 'ICD10_2010'), +('S06.0', 'Concussion', 'ICD10_2010'), +('S06.00', 'Concussion, without open intracranial wound', 'ICD10_2010'), +('S06.01', 'Concussion, with open intracranial wound', 'ICD10_2010'), +('S06.1', 'Traumatic cerebral oedema', 'ICD10_2010'), +('S06.10', 'Traumatic cerebral oedema, without open intracranial wound', 'ICD10_2010'), +('S06.11', 'Traumatic cerebral oedema, with open intracranial wound', 'ICD10_2010'), +('S06.2', 'Diffuse brain injury', 'ICD10_2010'), +('S06.20', 'Diffuse brain injury, without open intracranial wound', 'ICD10_2010'), +('S06.21', 'Diffuse brain injury, with open intracranial wound', 'ICD10_2010'), +('S06.3', 'Focal brain injury', 'ICD10_2010'), +('S06.30', 'Focal brain injury, without open intracranial wound', 'ICD10_2010'), +('S06.31', 'Focal brain injury, with open intracranial wound', 'ICD10_2010'), +('S06.4', 'Epidural haemorrhage', 'ICD10_2010'), +('S06.40', 'Epidural haemorrhage, without open intracranial wound', 'ICD10_2010'), +('S06.41', 'Epidural haemorrhage, with open intracranial wound', 'ICD10_2010'), +('S06.5', 'Traumatic subdural haemorrhage', 'ICD10_2010'), +('S06.50', 'Traumatic subdural haemorrhage, without open intracranial wound', 'ICD10_2010'), +('S06.51', 'Traumatic subdural haemorrhage, with open intracranial wound', 'ICD10_2010'), +('S06.6', 'Traumatic subarachnoid haemorrhage', 'ICD10_2010'), +('S06.60', 'Traumatic subarachnoid haemorrhage, without open intracranial wound', 'ICD10_2010'), +('S06.61', 'Traumatic subarachnoid haemorrhage, with open intracranial wound', 'ICD10_2010'), +('S06.7', 'Intracranial injury with prolonged coma', 'ICD10_2010'), +('S06.70', 'Intracranial injury with prolonged coma, without open intracranial wound', 'ICD10_2010'), +('S06.71', 'Intracranial injury with prolonged coma, with open intracranial wound', 'ICD10_2010'), +('S06.8', 'Other intracranial injuries', 'ICD10_2010'), +('S06.80', 'Other intracranial injuries, without open intracranial wound', 'ICD10_2010'), +('S06.81', 'Other intracranial injuries, with open intracranial wound', 'ICD10_2010'), +('S06.9', 'Intracranial injury, unspecified', 'ICD10_2010'), +('S06.90', 'Intracranial injury, unspecified, without open intracranial wound', 'ICD10_2010'), +('S06.91', 'Intracranial injury, unspecified, with open intracranial wound', 'ICD10_2010'), +('S07', 'Crushing injury of head', 'ICD10_2010'), +('S07.0', 'Crushing injury of face', 'ICD10_2010'), +('S07.1', 'Crushing injury of skull', 'ICD10_2010'), +('S07.8', 'Crushing injury of other parts of head', 'ICD10_2010'), +('S07.9', 'Crushing injury of head, part unspecified', 'ICD10_2010'), +('S08', 'Traumatic amputation of part of head', 'ICD10_2010'), +('S08.0', 'Avulsion of scalp', 'ICD10_2010'), +('S08.1', 'Traumatic amputation of ear', 'ICD10_2010'), +('S08.8', 'Traumatic amputation of other parts of head', 'ICD10_2010'), +('S08.9', 'Traumatic amputation of unspecified part of head', 'ICD10_2010'), +('S09', 'Other and unspecified injuries of head', 'ICD10_2010'), +('S09.0', 'Injury of blood vessels of head, not elsewhere classified', 'ICD10_2010'), +('S09.1', 'Injury of muscle and tendon of head', 'ICD10_2010'), +('S09.2', 'Traumatic rupture of ear drum', 'ICD10_2010'), +('S09.7', 'Multiple injuries of head', 'ICD10_2010'), +('S09.8', 'Other specified injuries of head', 'ICD10_2010'), +('S09.9', 'Unspecified injury of head', 'ICD10_2010'), +('S10', 'Superficial injury of neck', 'ICD10_2010'), +('S10.0', 'Contusion of throat', 'ICD10_2010'), +('S10.1', 'Other and unspecified superficial injuries of throat', 'ICD10_2010'), +('S10.7', 'Multiple superficial injuries of neck', 'ICD10_2010'), +('S10.8', 'Superficial injury of other parts of neck', 'ICD10_2010'), +('S10.9', 'Superficial injury of neck, part unspecified', 'ICD10_2010'), +('S11', 'Open wound of neck', 'ICD10_2010'), +('S11.0', 'Open wound involving larynx and trachea', 'ICD10_2010'), +('S11.1', 'Open wound involving thyroid gland', 'ICD10_2010'), +('S11.2', 'Open wound involving pharynx and cervical oesophagus', 'ICD10_2010'), +('S11.7', 'Multiple open wounds of neck', 'ICD10_2010'), +('S11.8', 'Open wound of other parts of neck', 'ICD10_2010'), +('S11.9', 'Open wound of neck, part unspecified', 'ICD10_2010'), +('S12', 'Fracture of neck', 'ICD10_2010'), +('S12.0', 'Fracture of first cervical vertebra', 'ICD10_2010'), +('S12.00', 'Fracture of first cervical vertebra, closed', 'ICD10_2010'), +('S12.01', 'Fracture of first cervical vertebra, open', 'ICD10_2010'), +('S12.1', 'Fracture of second cervical vertebra', 'ICD10_2010'), +('S12.10', 'Fracture of second cervical vertebra, closed', 'ICD10_2010'), +('S12.11', 'Fracture of second cervical vertebra, open', 'ICD10_2010'), +('S12.2', 'Fracture of other specified cervical vertebra', 'ICD10_2010'), +('S12.20', 'Fracture of other specified cervical vertebra, closed', 'ICD10_2010'), +('S12.21', 'Fracture of other specified cervical vertebra, open', 'ICD10_2010'), +('S12.7', 'Multiple fractures of cervical spine', 'ICD10_2010'), +('S12.70', 'Multiple fractures of cervical spine, closed', 'ICD10_2010'), +('S12.71', 'Multiple fractures of cervical spine, open', 'ICD10_2010'), +('S12.8', 'Fracture of other parts of neck', 'ICD10_2010'), +('S12.80', 'Fracture of other parts of neck, closed', 'ICD10_2010'), +('S12.81', 'Fracture of other parts of neck, open', 'ICD10_2010'), +('S12.9', 'Fracture of neck, part unspecified', 'ICD10_2010'), +('S12.90', 'Fracture of neck, part unspecified, closed', 'ICD10_2010'), +('S12.91', 'Fracture of neck, part unspecified, open', 'ICD10_2010'), +('S13', 'Dislocation, sprain and strain of joints and ligaments at neck level', 'ICD10_2010'), +('S13.0', 'Traumatic rupture of cervical intervertebral disc', 'ICD10_2010'), +('S13.1', 'Dislocation of cervical vertebra', 'ICD10_2010'), +('S13.2', 'Dislocation of other and unspecified parts of neck', 'ICD10_2010'), +('S13.3', 'Multiple dislocations of neck', 'ICD10_2010'), +('S13.4', 'Sprain and strain of cervical spine', 'ICD10_2010'), +('S13.5', 'Sprain and strain of thyroid region', 'ICD10_2010'), +('S13.6', 'Sprain and strain of joints and ligaments of other and unspecified parts of neck', 'ICD10_2010'), +('S14', 'Injury of nerves and spinal cord at neck level', 'ICD10_2010'), +('S14.0', 'Concussion and oedema of cervical spinal cord', 'ICD10_2010'), +('S14.1', 'Other and unspecified injuries of cervical spinal cord', 'ICD10_2010'), +('S14.2', 'Injury of nerve root of cervical spine', 'ICD10_2010'), +('S14.3', 'Injury of brachial plexus', 'ICD10_2010'), +('S14.4', 'Injury of peripheral nerves of neck', 'ICD10_2010'), +('S14.5', 'Injury of cervical sympathetic nerves', 'ICD10_2010'), +('S14.6', 'Injury of other and unspecified nerves of neck', 'ICD10_2010'), +('S15', 'Injury of blood vessels at neck level', 'ICD10_2010'), +('S15.0', 'Injury of carotid artery', 'ICD10_2010'), +('S15.1', 'Injury of vertebral artery', 'ICD10_2010'), +('S15.2', 'Injury of external jugular vein', 'ICD10_2010'), +('S15.3', 'Injury of internal jugular vein', 'ICD10_2010'), +('S15.7', 'Injury of multiple blood vessels at neck level', 'ICD10_2010'), +('S15.8', 'Injury of other blood vessels at neck level', 'ICD10_2010'), +('S15.9', 'Injury of unspecified blood vessel at neck level', 'ICD10_2010'), +('S16', 'Injury of muscle and tendon at neck level', 'ICD10_2010'), +('S17', 'Crushing injury of neck', 'ICD10_2010'), +('S17.0', 'Crushing injury of larynx and trachea', 'ICD10_2010'), +('S17.8', 'Crushing injury of other parts of neck', 'ICD10_2010'), +('S17.9', 'Crushing injury of neck, part unspecified', 'ICD10_2010'), +('S18', 'Traumatic amputation at neck level', 'ICD10_2010'), +('S19', 'Other and unspecified injuries of neck', 'ICD10_2010'), +('S19.7', 'Multiple injuries of neck', 'ICD10_2010'), +('S19.8', 'Other specified injuries of neck', 'ICD10_2010'), +('S19.9', 'Unspecified injury of neck', 'ICD10_2010'), +('S20', 'Superficial injury of thorax', 'ICD10_2010'), +('S20.0', 'Contusion of breast', 'ICD10_2010'), +('S20.1', 'Other and unspecified superficial injuries of breast', 'ICD10_2010'), +('S20.2', 'Contusion of thorax', 'ICD10_2010'), +('S20.3', 'Other superficial injuries of front wall of thorax', 'ICD10_2010'), +('S20.4', 'Other superficial injuries of back wall of thorax', 'ICD10_2010'), +('S20.7', 'Multiple superficial injuries of thorax', 'ICD10_2010'), +('S20.8', 'Superficial injury of other and unspecified parts of thorax', 'ICD10_2010'), +('S21', 'Open wound of thorax', 'ICD10_2010'), +('S21.0', 'Open wound of breast', 'ICD10_2010'), +('S21.1', 'Open wound of front wall of thorax', 'ICD10_2010'), +('S21.2', 'Open wound of back wall of thorax', 'ICD10_2010'), +('S21.7', 'Multiple open wounds of thoracic wall', 'ICD10_2010'), +('S21.8', 'Open wound of other parts of thorax', 'ICD10_2010'), +('S21.9', 'Open wound of thorax, part unspecified', 'ICD10_2010'), +('S22', 'Fracture of rib(s), sternum and thoracic spine', 'ICD10_2010'), +('S22.0', 'Fracture of thoracic vertebra', 'ICD10_2010'), +('S22.00', 'Fracture of thoracic vertebra, closed', 'ICD10_2010'), +('S22.01', 'Fracture of thoracic vertebra, open', 'ICD10_2010'), +('S22.1', 'Multiple fractures of thoracic spine', 'ICD10_2010'), +('S22.10', 'Multiple fractures of thoracic spine, closed', 'ICD10_2010'), +('S22.11', 'Multiple fractures of thoracic spine, open', 'ICD10_2010'), +('S22.2', 'Fracture of sternum', 'ICD10_2010'), +('S22.20', 'Fracture of sternum, closed', 'ICD10_2010'), +('S22.21', 'Fracture of sternum, open', 'ICD10_2010'), +('S22.3', 'Fracture of rib', 'ICD10_2010'), +('S22.30', 'Fracture of rib, closed', 'ICD10_2010'), +('S22.31', 'Fracture of rib, open', 'ICD10_2010'), +('S22.4', 'Multiple fractures of ribs', 'ICD10_2010'), +('S22.40', 'Multiple fractures of ribs, closed', 'ICD10_2010'), +('S22.41', 'Multiple fractures of ribs, open', 'ICD10_2010'), +('S22.5', 'Flail chest', 'ICD10_2010'), +('S22.50', 'Flail chest, closed', 'ICD10_2010'), +('S22.51', 'Flail chest, open', 'ICD10_2010'), +('S22.8', 'Fracture of other parts of bony thorax', 'ICD10_2010'), +('S22.80', 'Fracture of other parts of bony thorax, closed', 'ICD10_2010'), +('S22.81', 'Fracture of other parts of bony thorax, open', 'ICD10_2010'), +('S22.9', 'Fracture of bony thorax, part unspecified', 'ICD10_2010'), +('S22.90', 'Fracture of bony thorax, part unspecified, closed', 'ICD10_2010'), +('S22.91', 'Fracture of bony thorax, part unspecified, open', 'ICD10_2010'), +('S23', 'Dislocation, sprain and strain of joints and ligaments of thorax', 'ICD10_2010'), +('S23.0', 'Traumatic rupture of thoracic intervertebral disc', 'ICD10_2010'), +('S23.1', 'Dislocation of thoracic vertebra', 'ICD10_2010'), +('S23.2', 'Dislocation of other and unspecified parts of thorax', 'ICD10_2010'), +('S23.3', 'Sprain and strain of thoracic spine', 'ICD10_2010'), +('S23.4', 'Sprain and strain of ribs and sternum', 'ICD10_2010'), +('S23.5', 'Sprain and strain of other and unspecified parts of thorax', 'ICD10_2010'), +('S24', 'Injury of nerves and spinal cord at thorax level', 'ICD10_2010'), +('S24.0', 'Concussion and oedema of thoracic spinal cord', 'ICD10_2010'), +('S24.1', 'Other and unspecified injuries of thoracic spinal cord', 'ICD10_2010'), +('S24.2', 'Injury of nerve root of thoracic spine', 'ICD10_2010'), +('S24.3', 'Injury of peripheral nerves of thorax', 'ICD10_2010'), +('S24.4', 'Injury of thoracic sympathetic nerves', 'ICD10_2010'), +('S24.5', 'Injury of other nerves of thorax', 'ICD10_2010'), +('S24.6', 'Injury of unspecified nerve of thorax', 'ICD10_2010'), +('S25', 'Injury of blood vessels of thorax', 'ICD10_2010'), +('S25.0', 'Injury of thoracic aorta', 'ICD10_2010'), +('S25.1', 'Injury of innominate or subclavian artery', 'ICD10_2010'), +('S25.2', 'Injury of superior vena cava', 'ICD10_2010'), +('S25.3', 'Injury of innominate or subclavian vein', 'ICD10_2010'), +('S25.4', 'Injury of pulmonary blood vessels', 'ICD10_2010'), +('S25.5', 'Injury of intercostal blood vessels', 'ICD10_2010'), +('S25.7', 'Injury of multiple blood vessels of thorax', 'ICD10_2010'), +('S25.8', 'Injury of other blood vessels of thorax', 'ICD10_2010'), +('S25.9', 'Injury of unspecified blood vessel of thorax', 'ICD10_2010'), +('S26', 'Injury of heart', 'ICD10_2010'), +('S26.0', 'Injury of heart with haemopericardium', 'ICD10_2010'), +('S26.00', 'Injury of heart with haemopericardium, without open wound into thoracic cavity', 'ICD10_2010'), +('S26.01', 'Injury of heart with haemopericardium, with open wound into thoracic cavity', 'ICD10_2010'), +('S26.8', 'Other injuries of heart', 'ICD10_2010'), +('S26.80', 'Other injuries of heart, without open wound into thoracic cavity', 'ICD10_2010'), +('S26.81', 'Other injuries of heart, with open wound into thoracic cavity', 'ICD10_2010'), +('S26.9', 'Injury of heart, unspecified', 'ICD10_2010'), +('S26.90', 'Injury of heart, unspecified, withoutopen wound into thoracic cavity', 'ICD10_2010'), +('S26.91', 'Injury of heart, unspecified, with open wound into thoracic cavity', 'ICD10_2010'), +('S27', 'Injury of other and unspecified intrathoracic organs', 'ICD10_2010'), +('S27.0', 'Traumatic pneumothorax', 'ICD10_2010'), +('S27.00', 'Traumatic pneumothorax, without open wound into thoracic cavity', 'ICD10_2010'), +('S27.01', 'Traumatic pneumothorax, with open wound into thoracic cavity', 'ICD10_2010'), +('S27.1', 'Traumatic haemothorax', 'ICD10_2010'), +('S27.10', 'Traumatic haemothorax, without open wound into thoracic cavity', 'ICD10_2010'), +('S27.11', 'Traumatic haemothorax, with open wound into thoracic cavity', 'ICD10_2010'), +('S27.2', 'Traumatic haemopneumothorax', 'ICD10_2010'), +('S27.20', 'Traumatic haemopneumothorax, without open wound into thoracic cavity', 'ICD10_2010'), +('S27.21', 'Traumatic haemopneumothorax, with open wound into thoracic cavity', 'ICD10_2010'), +('S27.3', 'Other injuries of lung', 'ICD10_2010'), +('S27.30', 'Other injuries of lung, without open wound into thoracic cavity', 'ICD10_2010'), +('S27.31', 'Other injuries of lung, with open wound into thoracic cavity', 'ICD10_2010'), +('S27.4', 'Injury of bronchus', 'ICD10_2010'), +('S27.40', 'Injury of bronchus, without open wound into thoracic cavity', 'ICD10_2010'), +('S27.41', 'Injury of bronchus, with open wound into thoracic cavity', 'ICD10_2010'), +('S27.5', 'Injury of thoracic trachea', 'ICD10_2010'), +('S27.50', 'Injury of thoracic trachea, without open wound into thoracic cavity', 'ICD10_2010'), +('S27.51', 'Injury of thoracic trachea, with open wound into thoracic cavity', 'ICD10_2010'), +('S27.6', 'Injury of pleura', 'ICD10_2010'), +('S27.60', 'Injury of pleura, without open wound into thoracic cavity', 'ICD10_2010'), +('S27.61', 'Injury of pleura, with open wound into thoracic cavity', 'ICD10_2010'), +('S27.7', 'Multiple injuries of intrathoracic organs', 'ICD10_2010'), +('S27.70', 'Multiple injuries of intrathoracic organs, without open wound into thoracic cavity', 'ICD10_2010'), +('S27.71', 'Multiple injuries of intrathoracic organs, with open wound into thoracic cavity', 'ICD10_2010'), +('S27.8', 'Injury of other specified intrathoracic organs', 'ICD10_2010'), +('S27.80', 'Injury of other specified intrathoracic organs, without open wound into thoracic cavity', 'ICD10_2010'), +('S27.81', 'Injury of other specified intrathoracic organs, with open wound into thoracic cavity', 'ICD10_2010'), +('S27.9', 'Injury of unspecified intrathoracic organ', 'ICD10_2010'), +('S27.90', 'Injury of unspecified intrathoracic organ, without open wound into thoracic cavity', 'ICD10_2010'), +('S27.91', 'Injury of unspecified intrathoracic organ, with open wound into thoracic cavity', 'ICD10_2010'), +('S28', 'Crushing injury of thorax and traumatic amputation of part of thorax', 'ICD10_2010'), +('S28.0', 'Crushed chest', 'ICD10_2010'), +('S28.1', 'Traumatic amputation of part of thorax', 'ICD10_2010'), +('S29', 'Other and unspecified injuries of thorax', 'ICD10_2010'), +('S29.0', 'Injury of muscle and tendon at thorax level', 'ICD10_2010'), +('S29.7', 'Multiple injuries of thorax', 'ICD10_2010'), +('S29.8', 'Other specified injuries of thorax', 'ICD10_2010'), +('S29.9', 'Unspecified injury of thorax', 'ICD10_2010'), +('S30', 'Superficial injury of abdomen, lower back and pelvis', 'ICD10_2010'), +('S30.0', 'Contusion of lower back and pelvis', 'ICD10_2010'), +('S30.1', 'Contusion of abdominal wall', 'ICD10_2010'), +('S30.2', 'Contusion of external genital organs', 'ICD10_2010'), +('S30.7', 'Multiple superficial injuries of abdomen lower back and pelvis', 'ICD10_2010'), +('S30.8', 'Other superficial injuries of abdomen, lower back and pelvis', 'ICD10_2010'), +('S30.9', 'Superficial injury of abdomen lower back and pelvis, part unspecified', 'ICD10_2010'), +('S31', 'Open wound of abdomen, lower back and pelvis', 'ICD10_2010'), +('S31.0', 'Open wound of lower back and pelvis', 'ICD10_2010'), +('S31.1', 'Open wound of abdominal wall', 'ICD10_2010'), +('S31.2', 'Open wound of penis', 'ICD10_2010'), +('S31.3', 'Open wound of scrotum and testes', 'ICD10_2010'), +('S31.4', 'Open wound of vagina and vulva', 'ICD10_2010'), +('S31.5', 'Open wound of other and unspecified external genital organs', 'ICD10_2010'), +('S31.7', 'Multiple open wounds of abdomen, lower back and pelvis', 'ICD10_2010'), +('S31.8', 'Open wound of other and unspecified parts of abdomen', 'ICD10_2010'), +('S32', 'Fracture of lumbar spine and pelvis', 'ICD10_2010'), +('S32.0', 'Fracture of lumbar vertebra', 'ICD10_2010'), +('S32.00', 'Fracture of lumbar vertebra, closed', 'ICD10_2010'), +('S32.01', 'Fracture of lumbar vertebra, open', 'ICD10_2010'), +('S32.1', 'Fracture of sacrum', 'ICD10_2010'), +('S32.10', 'Fracture of sacrum, closed', 'ICD10_2010'), +('S32.11', 'Fracture of sacrum, open', 'ICD10_2010'), +('S32.2', 'Fracture of coccyx', 'ICD10_2010'), +('S32.20', 'Fracture of coccyx, closed', 'ICD10_2010'), +('S32.21', 'Fracture of coccyx, open', 'ICD10_2010'), +('S32.3', 'Fracture of ilium', 'ICD10_2010'), +('S32.30', 'Fracture of ilium, closed', 'ICD10_2010'), +('S32.31', 'Fracture of ilium, open', 'ICD10_2010'), +('S32.4', 'Fracture of acetabulum', 'ICD10_2010'), +('S32.40', 'Fracture of acetabulum, closed', 'ICD10_2010'), +('S32.41', 'Fracture of acetabulum, open', 'ICD10_2010'), +('S32.5', 'Fracture of pubis', 'ICD10_2010'), +('S32.50', 'Fracture of pubis, closed', 'ICD10_2010'), +('S32.51', 'Fracture of pubis, open', 'ICD10_2010'), +('S32.7', 'Multiple fractures of lumbar spine and pelvis', 'ICD10_2010'), +('S32.70', 'Multiple fractures of lumbar spine and pelvis, closed', 'ICD10_2010'), +('S32.71', 'Multiple fractures of lumbar spine and pelvis, open', 'ICD10_2010'), +('S32.8', 'Fracture of oth unspecified parts of lumbar spine and pelvis', 'ICD10_2010'), +('S32.80', 'Fracture of other and unspecified parts of lumbar spine and pelvis, closed', 'ICD10_2010'), +('S32.81', 'Fracture of other and unspecified parts of lumbar spine and pelvis, open', 'ICD10_2010'), +('S33', 'Dislocation, sprain and strain of joints and ligaments of lumbar spine and pelvis', 'ICD10_2010'), +('S33.0', 'Traumatic rupture of lumbar intervertebral disc', 'ICD10_2010'), +('S33.1', 'Dislocation of lumbar vertebra', 'ICD10_2010'), +('S33.2', 'Dislocation of sacroiliac and sacrococcygeal joint', 'ICD10_2010'), +('S33.3', 'Dislocation oth and unspec parts of lumbar spine and pelvis', 'ICD10_2010'), +('S33.4', 'Traumatic rupture of symphysis pubis', 'ICD10_2010'), +('S33.5', 'Sprain and strain of lumbar spine', 'ICD10_2010'), +('S33.6', 'Sprain and strain of sacroiliac joint', 'ICD10_2010'), +('S33.7', 'Sprain and strain of other and unspec partsof lumbar spine pelvis', 'ICD10_2010'), +('S34', 'Injury of nerves and lumbar spinal cord at abdomen, lower back and pelvis level', 'ICD10_2010'), +('S34.0', 'Concussion and oedema of lumbar spinal cord', 'ICD10_2010'), +('S34.1', 'Other injury of lumbar spinal cord', 'ICD10_2010'), +('S34.2', 'Injury of nerve root of lumbar and sacral spine', 'ICD10_2010'), +('S34.3', 'Injury of cauda equina', 'ICD10_2010'), +('S34.4', 'Injury of lumbosacral plexus', 'ICD10_2010'), +('S34.5', 'Injury of lumbar, sacral and pelvic sympathetic nerves', 'ICD10_2010'), +('S34.6', 'Injury of peripheral nerve(s) of abdomen, lower back and pelvis', 'ICD10_2010'), +('S34.8', 'Injury other and unspecified nerves abdomen lower back and pelvis level', 'ICD10_2010'), +('S35', 'Injury of blood vessels at abdomen, lower back and pelvis level', 'ICD10_2010'), +('S35.0', 'Injury of abdominal aorta', 'ICD10_2010'), +('S35.1', 'Injury of inferior vena cava', 'ICD10_2010'), +('S35.2', 'Injury of coeliac or mesenteric artery', 'ICD10_2010'), +('S35.3', 'Injury of portal or splenic vein', 'ICD10_2010'), +('S35.4', 'Injury of renal blood vessels', 'ICD10_2010'), +('S35.5', 'Injury of iliac blood vessels', 'ICD10_2010'), +('S35.7', 'Injury of multiple blood vessels at abdomen, lower back and pelvis level', 'ICD10_2010'), +('S35.8', 'Injury of other blood vessels at abdomen, lower back and pelvis level', 'ICD10_2010'), +('S35.9', 'Injury of unspecified blood vessel abdoment, lower back and pelvis level', 'ICD10_2010'), +('S36', 'Injury of intra-abdominal organs', 'ICD10_2010'), +('S36.0', 'Injury of spleen', 'ICD10_2010'), +('S36.00', 'Injury of spleen, without open wound into cavity', 'ICD10_2010'), +('S36.01', 'Injury of spleen, with open wound into cavity', 'ICD10_2010'), +('S36.1', 'Injury of liver or gallbladder', 'ICD10_2010'), +('S36.10', 'Injury of liver or gallbladder, without open wound into cavity', 'ICD10_2010'), +('S36.11', 'Injury of liver or gallbladder, with open wound into cavity', 'ICD10_2010'), +('S36.2', 'Injury of pancreas', 'ICD10_2010'), +('S36.20', 'Injury of pancreas, without open wound into cavity', 'ICD10_2010'), +('S36.21', 'Injury of pancreas, with open wound into cavity', 'ICD10_2010'), +('S36.3', 'Injury of stomach', 'ICD10_2010'), +('S36.30', 'Injury of stomach, without open wound into cavity', 'ICD10_2010'), +('S36.31', 'Injury of stomach, with open wound into cavity', 'ICD10_2010'), +('S36.4', 'Injury of small intestine', 'ICD10_2010'), +('S36.40', 'Injury of small intestine, without open wound into cavity', 'ICD10_2010'), +('S36.41', 'Injury of small intestine, with open wound into cavity', 'ICD10_2010'), +('S36.5', 'Injury of colon', 'ICD10_2010'), +('S36.50', 'Injury of colon, without open wound into cavity', 'ICD10_2010'), +('S36.51', 'Injury of colon, with open wound into cavity', 'ICD10_2010'), +('S36.6', 'Injury of rectum', 'ICD10_2010'), +('S36.60', 'Injury of rectum, without open wound into cavity', 'ICD10_2010'), +('S36.61', 'Injury of rectum, with open wound into cavity', 'ICD10_2010'), +('S36.7', 'Injury of multiple intra-abdominal organs', 'ICD10_2010'), +('S36.70', 'Injury of multiple intra-abdominal organs, without open wound into cavity', 'ICD10_2010'), +('S36.71', 'Injury of multiple intra-abdominal organs, with open wound into cavity', 'ICD10_2010'), +('S36.8', 'Injury of other intra-abdominal organs', 'ICD10_2010'), +('S36.80', 'Injury of other intra-abdominal organs, without open wound into cavity', 'ICD10_2010'), +('S36.81', 'Injury of other intra-abdominal organs, with open wound into cavity', 'ICD10_2010'), +('S36.9', 'Injury of unspecified intra-abdominal organ', 'ICD10_2010'), +('S36.90', 'Injury of unspecified intra-abdominal organ, without open wound into cavity', 'ICD10_2010'), +('S36.91', 'Injury of unspecified intra-abdominal organ, with open wound into cavity', 'ICD10_2010'), +('S37', 'Injury of urinary and pelvic organs', 'ICD10_2010'), +('S37.0', 'Injury of kidney', 'ICD10_2010'), +('S37.00', 'Injury of kidney, without open wound into cavity', 'ICD10_2010'), +('S37.01', 'Injury of kidney, with open wound into cavity', 'ICD10_2010'), +('S37.1', 'Injury of ureter', 'ICD10_2010'), +('S37.10', 'Injury of ureter, without open wound into cavity', 'ICD10_2010'), +('S37.11', 'Injury of ureter, with open wound into cavity', 'ICD10_2010'), +('S37.2', 'Injury of bladder', 'ICD10_2010'), +('S37.20', 'Injury of bladder, without open wound into cavity', 'ICD10_2010'), +('S37.21', 'Injury of bladder, with open wound into cavity', 'ICD10_2010'), +('S37.3', 'Injury of urethra', 'ICD10_2010'), +('S37.30', 'Injury of urethra, without open wound into cavity', 'ICD10_2010'), +('S37.31', 'Injury of urethra, with open wound into cavity', 'ICD10_2010'), +('S37.4', 'Injury of ovary', 'ICD10_2010'), +('S37.40', 'Injury of ovary, without open wound into cavity', 'ICD10_2010'), +('S37.41', 'Injury of ovary, with open wound into cavity', 'ICD10_2010'), +('S37.5', 'Injury of fallopian tube', 'ICD10_2010'), +('S37.50', 'Injury of fallopian tube, without open wound into cavity', 'ICD10_2010'), +('S37.51', 'Injury of fallopian tube, with open wound into cavity', 'ICD10_2010'), +('S37.6', 'Injury of uterus', 'ICD10_2010'), +('S37.60', 'Injury of uterus, without open wound into cavity', 'ICD10_2010'), +('S37.61', 'Injury of uterus, with open wound into cavity', 'ICD10_2010'), +('S37.7', 'Injury of multiple urinary and pelvic organs', 'ICD10_2010'), +('S37.70', 'Injury of multiple urinary and pelvic organs, without open wound into cavity', 'ICD10_2010'), +('S37.71', 'Injury of multiple urinary and pelvic organs, with open wound into cavity', 'ICD10_2010'), +('S37.8', 'Injury of other urinary and pelvic organs', 'ICD10_2010'), +('S37.80', 'Injury of other urinary and pelvic organs, without open wound into cavity', 'ICD10_2010'), +('S37.81', 'Injury of other urinary and pelvic organs, with open wound into cavity', 'ICD10_2010'), +('S37.9', 'Injury of unspecified urinary and pelvic organ', 'ICD10_2010'), +('S37.90', 'Injury of unspecified urinary and pelvic organ, without open wound into cavity', 'ICD10_2010'), +('S37.91', 'Injury of unspecified urinary and pelvic organ, with open wound into cavity', 'ICD10_2010'), +('S38', 'Crushing injury and traumatic amputation of part of abdomen, lower back and pelvis', 'ICD10_2010'), +('S38.0', 'Crushing injury of external genital organs', 'ICD10_2010'), +('S38.1', 'Crushing injury of other and unspecified part of abdomen, lower back and pelvis', 'ICD10_2010'), +('S38.2', 'Traumatic amputation of external genital organs', 'ICD10_2010'), +('S38.3', 'Traumatic amputation of other and unspecified parts of abdomen, low back and pelvis', 'ICD10_2010'), +('S39', 'Other and unspecified injuries of abdomen, lower back and pelvis', 'ICD10_2010'), +('S39.0', 'Injury of muscle and tendon of abdomen lower back and pelvis', 'ICD10_2010'), +('S39.6', 'Injury of intra-abdominal organ(s) with pelvic organ(s)', 'ICD10_2010'), +('S39.7', 'Other multiple injuries of abdomen, lower back and pelvis', 'ICD10_2010'), +('S39.8', 'Other specified injuries of abdomen, lower back and pelvis', 'ICD10_2010'), +('S39.9', 'Unspecified injury of abdomen, lower back and pelvis', 'ICD10_2010'), +('S40', 'Superficial injury of shoulder and upper arm', 'ICD10_2010'), +('S40.0', 'Contusion of shoulder and upper arm', 'ICD10_2010'), +('S40.7', 'Multiple superficial injuries of shoulder and upper arm', 'ICD10_2010'), +('S40.8', 'Other superficial injuries of shoulder and upper arm', 'ICD10_2010'), +('S40.9', 'Superficial injury of shoulder and upper arm, unspecified', 'ICD10_2010'), +('S41', 'Open wound of shoulder and upper arm', 'ICD10_2010'), +('S41.0', 'Open wound of shoulder', 'ICD10_2010'), +('S41.1', 'Open wound of upper arm', 'ICD10_2010'), +('S41.7', 'Multiple open wounds of shoulder and upper arm', 'ICD10_2010'), +('S41.8', 'Open wound of other and unspecified parts of shoulder girdle', 'ICD10_2010'), +('S42', 'Fracture of shoulder and upper arm', 'ICD10_2010'), +('S42.0', 'Fracture of clavicle', 'ICD10_2010'), +('S42.00', 'Fracture of clavicle, closed', 'ICD10_2010'), +('S42.01', 'Fracture of clavicle, open', 'ICD10_2010'), +('S42.1', 'Fracture of scapula', 'ICD10_2010'), +('S42.10', 'Fracture of scapula, closed', 'ICD10_2010'), +('S42.11', 'Fracture of scapula, open', 'ICD10_2010'), +('S42.2', 'Fracture of upper end of humerus', 'ICD10_2010'), +('S42.20', 'Fracture of upper end of humerus, closed', 'ICD10_2010'), +('S42.21', 'Fracture of upper end of humerus, open', 'ICD10_2010'), +('S42.3', 'Fracture of shaft of humerus', 'ICD10_2010'), +('S42.30', 'Fracture of shaft of humerus, closed', 'ICD10_2010'), +('S42.31', 'Fracture of shaft of humerus, open', 'ICD10_2010'), +('S42.4', 'Fracture of lower end of humerus', 'ICD10_2010'), +('S42.40', 'Fracture of lower end of humerus, closed', 'ICD10_2010'), +('S42.41', 'Fracture of lower end of humerus, open', 'ICD10_2010'), +('S42.7', 'Multiple fractures of clavicle, scapula and humerus', 'ICD10_2010'), +('S42.70', 'Multiple fractures of clavicle, scapula and humerus, closed', 'ICD10_2010'), +('S42.71', 'Multiple fractures of clavicle, scapula and humerus, open', 'ICD10_2010'), +('S42.8', 'Fracture of other parts of shoulder and upper arm', 'ICD10_2010'), +('S42.80', 'Fracture of other parts of shoulder and upper arm, closed', 'ICD10_2010'), +('S42.81', 'Fracture of other parts of shoulder and upper arm, open', 'ICD10_2010'), +('S42.9', 'Fracture of shoulder girdle, part unspecified', 'ICD10_2010'), +('S42.90', 'Fracture of shoulder girdle, part unspecified, closed', 'ICD10_2010'), +('S42.91', 'Fracture of shoulder girdle, part unspecified, open', 'ICD10_2010'), +('S43', 'Dislocation, sprain and strain of joints and ligaments of shoulder girdle', 'ICD10_2010'), +('S43.0', 'Dislocation of shoulder joint', 'ICD10_2010'), +('S43.1', 'Dislocation of acromioclavicular joint', 'ICD10_2010'), +('S43.2', 'Dislocation of sternoclavicular joint', 'ICD10_2010'), +('S43.3', 'Dislocation of other and unspec parts of shoulder girdle', 'ICD10_2010'), +('S43.4', 'Sprain and strain of shoulder joint', 'ICD10_2010'), +('S43.5', 'Sprain and strain of acromioclavicular joint', 'ICD10_2010'), +('S43.6', 'Sprain and strain of sternoclavicular joint', 'ICD10_2010'), +('S43.7', 'Sprain and strain of oth and unspec part of shoulder girdle', 'ICD10_2010'), +('S44', 'Injury of nerves at shoulder and upper arm level', 'ICD10_2010'), +('S44.0', 'Injury of ulnar nerve at upper arm level', 'ICD10_2010'), +('S44.1', 'Injury of median nerve at upper arm level', 'ICD10_2010'), +('S44.2', 'Injury of radial nerve at upper arm level', 'ICD10_2010'), +('S44.3', 'Injury of axillary nerve', 'ICD10_2010'), +('S44.4', 'Injury of musculocutaneous nerve', 'ICD10_2010'), +('S44.5', 'Injury of cutaneous sensory nerve at shoulder and upper arm level', 'ICD10_2010'), +('S44.7', 'Injury of multiple nerves at shoulder and upper arm level', 'ICD10_2010'), +('S44.8', 'Injury of other nerves at shoulder and upper arm level', 'ICD10_2010'), +('S44.9', 'Injury of unspecified nerve at shoulder and upper arm level', 'ICD10_2010'), +('S45', 'Injury of blood vessels at shoulder and upper arm level', 'ICD10_2010'), +('S45.0', 'Injury of axillary artery', 'ICD10_2010'), +('S45.1', 'Injury of brachial artery', 'ICD10_2010'), +('S45.2', 'Injury of axillary or brachial vein', 'ICD10_2010'), +('S45.3', 'Injury of superficial vein at shoulder and upper arm level', 'ICD10_2010'), +('S45.7', 'Injury of multiple blood vessels shoulder and upper arm level', 'ICD10_2010'), +('S45.8', 'Injury of oth blood vessels at shoulder and upper arm level', 'ICD10_2010'), +('S45.9', 'Injury unspecified blood vessel at shoulder and upper arm level', 'ICD10_2010'), +('S46', 'Injury of muscle and tendon at shoulder and upper arm level', 'ICD10_2010'), +('S46.0', 'Injury of tendon of the rotator cuff of shoulder', 'ICD10_2010'), +('S46.1', 'Injury of muscle and tendon of long head of biceps', 'ICD10_2010'), +('S46.2', 'Injury of muscle and tendon of other parts of biceps', 'ICD10_2010'), +('S46.3', 'Injury of muscle and tendon of triceps', 'ICD10_2010'), +('S46.7', 'Injury multiple muscles and tendons shoulder and upper arm level', 'ICD10_2010'), +('S46.8', 'Injury of other muscles and tendons at shoulder and upper arm level', 'ICD10_2010'), +('S46.9', 'Injury unspecified muscle and tendon at shoulder and upper arm level', 'ICD10_2010'), +('S47', 'Crushing injury of shoulder and upper arm', 'ICD10_2010'), +('S48', 'Traumatic amputation of shoulder and upper arm', 'ICD10_2010'), +('S48.0', 'Traumatic amputation at shoulder joint', 'ICD10_2010'), +('S48.1', 'Traumatic amputation at level between shoulder and elbow', 'ICD10_2010'), +('S48.9', 'Traumatic amputation of shoulder and upper arm level unspecified', 'ICD10_2010'), +('S49', 'Other and unspecified injuries of shoulder and upper arm', 'ICD10_2010'), +('S49.7', 'Multiple injuries of shoulder and upper arm', 'ICD10_2010'), +('S49.8', 'Other specified injuries of shoulder and upper arm', 'ICD10_2010'), +('S49.9', 'Unspecified injury of shoulder and upper arm', 'ICD10_2010'), +('S50', 'Superficial injury of forearm', 'ICD10_2010'), +('S50.0', 'Contusion of elbow', 'ICD10_2010'), +('S50.1', 'Contusion of other and unspecified parts of forearm', 'ICD10_2010'), +('S50.7', 'Multiple superficial injuries of forearm', 'ICD10_2010'), +('S50.8', 'Other superficial injuries of forearm', 'ICD10_2010'), +('S50.9', 'Superficial injury of forearm, unspecified', 'ICD10_2010'), +('S51', 'Open wound of forearm', 'ICD10_2010'), +('S51.0', 'Open wound of elbow', 'ICD10_2010'), +('S51.7', 'Multiple open wounds of forearm', 'ICD10_2010'), +('S51.8', 'Open wound of other parts of forearm', 'ICD10_2010'), +('S51.9', 'Open wound of forearm, part unspecified', 'ICD10_2010'), +('S52', 'Fracture of forearm', 'ICD10_2010'), +('S52.0', 'Fracture of upper end of ulna', 'ICD10_2010'), +('S52.00', 'Fracture of upper end of ulna, closed', 'ICD10_2010'), +('S52.01', 'Fracture of upper end of ulna, open', 'ICD10_2010'), +('S52.1', 'Fracture of upper end of radius', 'ICD10_2010'), +('S52.10', 'Fracture of upper end of radius, closed', 'ICD10_2010'), +('S52.11', 'Fracture of upper end of radius, open', 'ICD10_2010'), +('S52.2', 'Fracture of shaft of ulna', 'ICD10_2010'), +('S52.20', 'Fracture of shaft of ulna, closed', 'ICD10_2010'), +('S52.21', 'Fracture of shaft of ulna, open', 'ICD10_2010'), +('S52.3', 'Fracture of shaft of radius', 'ICD10_2010'), +('S52.30', 'Fracture of shaft of radius, closed', 'ICD10_2010'), +('S52.31', 'Fracture of shaft of radius, open', 'ICD10_2010'), +('S52.4', 'Fracture of shafts of both ulna and radius', 'ICD10_2010'), +('S52.40', 'Fracture of shafts of both ulna and radius, closed', 'ICD10_2010'), +('S52.41', 'Fracture of shafts of both ulna and radius, open', 'ICD10_2010'), +('S52.5', 'Fracture of lower end of radius', 'ICD10_2010'), +('S52.50', 'Fracture of lower end of radius, closed', 'ICD10_2010'), +('S52.51', 'Fracture of lower end of radius, open', 'ICD10_2010'), +('S52.6', 'Fracture of lower end of both ulna and radius', 'ICD10_2010'), +('S52.60', 'Fracture of lower end of both ulna and radius, closed', 'ICD10_2010'), +('S52.61', 'Fracture of lower end of both ulna and radius, open', 'ICD10_2010'), +('S52.7', 'Multiple fractures of forearm', 'ICD10_2010'), +('S52.70', 'Multiple fractures of forearm , closed', 'ICD10_2010'), +('S52.71', 'Multiple fractures of forearm , open', 'ICD10_2010'), +('S52.8', 'Fracture of other parts of forearm', 'ICD10_2010'), +('S52.80', 'Fracture of other parts of forearm , closed', 'ICD10_2010'), +('S52.81', 'Fracture of other parts of forearm , open', 'ICD10_2010'), +('S52.9', 'Fracture of forearm, part unspecified', 'ICD10_2010'), +('S52.90', 'Fracture of forearm, part unspecified , closed', 'ICD10_2010'), +('S52.91', 'Fracture of forearm, part unspecified , open', 'ICD10_2010'), +('S53', 'Dislocation, sprain and strain of joints and ligaments of elbow', 'ICD10_2010'), +('S53.0', 'Dislocation of radial head', 'ICD10_2010'), +('S53.1', 'Dislocation of elbow, unspecified', 'ICD10_2010'), +('S53.2', 'Traumatic rupture of radial collateral ligament', 'ICD10_2010'), +('S53.3', 'Traumatic rupture of ulnar collateral ligament', 'ICD10_2010'), +('S53.4', 'Sprain and strain of elbow', 'ICD10_2010'), +('S54', 'Injury of nerves at forearm level', 'ICD10_2010'), +('S54.0', 'Injury of ulnar nerve at forearm level', 'ICD10_2010'), +('S54.1', 'Injury of median nerve at forearm level', 'ICD10_2010'), +('S54.2', 'Injury of radial nerve at forearm level', 'ICD10_2010'), +('S54.3', 'Injury of cutaneous sensory nerve at forearm level', 'ICD10_2010'), +('S54.7', 'Injury of multiple nerves at forearm level', 'ICD10_2010'), +('S54.8', 'Injury of other nerves at forearm level', 'ICD10_2010'), +('S54.9', 'Injury of unspecified nerve at forearm level', 'ICD10_2010'), +('S55', 'Injury of blood vessels at forearm level', 'ICD10_2010'), +('S55.0', 'Injury of ulnar artery at forearm level', 'ICD10_2010'), +('S55.1', 'Injury of radial artery at forearm level', 'ICD10_2010'), +('S55.2', 'Injury of vein at forearm level', 'ICD10_2010'), +('S55.7', 'Injury of multiple blood vessels at forearm level', 'ICD10_2010'), +('S55.8', 'Injury of other blood vessels at forearm level', 'ICD10_2010'), +('S55.9', 'Injury of unspecified blood vessel at forearm level', 'ICD10_2010'), +('S56', 'Injury of muscle and tendon at forearm level', 'ICD10_2010'), +('S56.0', 'Injury of flexor muscle and tendon of thumb at forearm level', 'ICD10_2010'), +('S56.1', 'Injury long flexor muscle and tendon other finger(s) forearm level', 'ICD10_2010'), +('S56.2', 'Injury of other flexor muscle and tendon at forearm level', 'ICD10_2010'), +('S56.3', 'Injury extensor or abductor muscles and tendons of thumb at forearm level', 'ICD10_2010'), +('S56.4', 'Injury extensor muscle and tendon oth finger(s) at forearm level', 'ICD10_2010'), +('S56.5', 'Injury of other extensor muscle and tendon at forearm level', 'ICD10_2010'), +('S56.7', 'Injury of multiple muscles and tendons at forearm level', 'ICD10_2010'), +('S56.8', 'Injury other and unspecified muscles and tendons at forearm level', 'ICD10_2010'), +('S57', 'Crushing injury of forearm', 'ICD10_2010'), +('S57.0', 'Crushing injury of elbow', 'ICD10_2010'), +('S57.8', 'Crushing injury of other parts of forearm', 'ICD10_2010'), +('S57.9', 'Crushing injury of forearm, part unspecified', 'ICD10_2010'), +('S58', 'Traumatic amputation of forearm', 'ICD10_2010'), +('S58.0', 'Traumatic amputation at elbow level', 'ICD10_2010'), +('S58.1', 'Traumatic amputation at level between elbow and wrist', 'ICD10_2010'), +('S58.9', 'Traumatic amputation of forearm, level unspecified', 'ICD10_2010'), +('S59', 'Other and unspecified injuries of forearm', 'ICD10_2010'), +('S59.7', 'Multiple injuries of forearm', 'ICD10_2010'), +('S59.8', 'Other specified injuries of forearm', 'ICD10_2010'), +('S59.9', 'Unspecified injury of forearm', 'ICD10_2010'), +('S60', 'Superficial injury of wrist and hand', 'ICD10_2010'), +('S60.0', 'Contusion of finger(s) without damage to nail', 'ICD10_2010'), +('S60.1', 'Contusion of finger(s) with damage to nail', 'ICD10_2010'), +('S60.2', 'Contusion of other parts of wrist and hand', 'ICD10_2010'), +('S60.7', 'Multiple superficial injuries of wrist and hand', 'ICD10_2010'), +('S60.8', 'Other superficial injuries of wrist and hand', 'ICD10_2010'), +('S60.9', 'Superficial injury of wrist and hand, unspecified', 'ICD10_2010'), +('S61', 'Open wound of wrist and hand', 'ICD10_2010'), +('S61.0', 'Open wound of finger(s) without damage to nail', 'ICD10_2010'), +('S61.1', 'Open wound of finger(s) with damage to nail', 'ICD10_2010'), +('S61.7', 'Multiple open wounds of wrist and hand', 'ICD10_2010'), +('S61.8', 'Open wound of other parts of wrist and hand', 'ICD10_2010'), +('S61.9', 'Open wound of wrist and hand part, part unspecified', 'ICD10_2010'), +('S62', 'Fracture at wrist and hand level', 'ICD10_2010'), +('S62.0', 'Fracture of navicular [scaphoid] bone of hand', 'ICD10_2010'), +('S62.00', 'Fracture of navicular [scaphoid] bone of hand , closed', 'ICD10_2010'), +('S62.01', 'Fracture of navicular [scaphoid] bone of hand , open', 'ICD10_2010'), +('S62.1', 'Fracture of other carpal bone(s)', 'ICD10_2010'), +('S62.10', 'Fracture of other carpal bone(s) , closed', 'ICD10_2010'), +('S62.11', 'Fracture of other carpal bone(s) , open', 'ICD10_2010'), +('S62.2', 'Fracture of first metacarpal bone', 'ICD10_2010'), +('S62.20', 'Fracture of first metacarpal bone , closed', 'ICD10_2010'), +('S62.21', 'Fracture of first metacarpal bone , open', 'ICD10_2010'), +('S62.3', 'Fracture of other metacarpal bone', 'ICD10_2010'), +('S62.30', 'Fracture of other metacarpal bone, closed', 'ICD10_2010'), +('S62.31', 'Fracture of other metacarpal bone, open', 'ICD10_2010'), +('S62.4', 'Multiple fractures of metacarpal bones', 'ICD10_2010'), +('S62.40', 'Multiple fractures of metacarpal bones , closed', 'ICD10_2010'), +('S62.41', 'Multiple fractures of metacarpal bones , open', 'ICD10_2010'), +('S62.5', 'Fracture of thumb', 'ICD10_2010'), +('S62.50', 'Fracture of thumb , closed', 'ICD10_2010'), +('S62.51', 'Fracture of thumb , open', 'ICD10_2010'), +('S62.6', 'Fracture of other finger', 'ICD10_2010'), +('S62.60', 'Fracture of other finger , closed', 'ICD10_2010'), +('S62.61', 'Fracture of other finger , open', 'ICD10_2010'), +('S62.7', 'Multiple fractures of fingers', 'ICD10_2010'), +('S62.70', 'Multiple fractures of fingers, closed', 'ICD10_2010'), +('S62.71', 'Multiple fractures of fingers, open', 'ICD10_2010'), +('S62.8', 'Fracture of other and unspecified parts of wrist and hand', 'ICD10_2010'), +('S62.80', 'Fracture of other and unspecified parts of wrist and hand, closed', 'ICD10_2010'), +('S62.81', 'Fracture of other and unspecified parts of wrist and hand, open', 'ICD10_2010'), +('S63', 'Dislocation, sprain and strain of joints and ligaments at wrist and hand level', 'ICD10_2010'), +('S63.0', 'Dislocation of wrist', 'ICD10_2010'), +('S63.1', 'Dislocation of finger', 'ICD10_2010'), +('S63.2', 'Multiple dislocations of fingers', 'ICD10_2010'), +('S63.3', 'Traumatic rupture of ligament of wrist and carpus', 'ICD10_2010'), +('S63.4', 'Traumatic rupture of ligament of finger at metacarpophalangeal and interphalangeal joint(s)', 'ICD10_2010'), +('S63.5', 'Sprain and strain of wrist', 'ICD10_2010'), +('S63.6', 'Sprain and strain of finger(s)', 'ICD10_2010'), +('S63.7', 'Sprain and strain of other and unspecified parts of hand', 'ICD10_2010'), +('S64', 'Injury of nerves at wrist and hand level', 'ICD10_2010'), +('S64.0', 'Injury of ulnar nerve at wrist and hand level', 'ICD10_2010'), +('S64.1', 'Injury of median nerve at wrist and hand level', 'ICD10_2010'), +('S64.2', 'Injury of radial nerve at wrist and hand level', 'ICD10_2010'), +('S64.3', 'Injury of digital nerve of thumb', 'ICD10_2010'), +('S64.4', 'Injury of digital nerve of other finger', 'ICD10_2010'), +('S64.7', 'Injury of multiple nerves at wrist and hand level', 'ICD10_2010'), +('S64.8', 'Injury of other nerves at wrist and hand level', 'ICD10_2010'), +('S64.9', 'Injury of unspecified nerve at wrist and hand level', 'ICD10_2010'), +('S65', 'Injury of blood vessels at wrist and hand level', 'ICD10_2010'), +('S65.0', 'Injury of ulnar artery at wrist and hand level', 'ICD10_2010'), +('S65.1', 'Injury of radial artery at wrist and hand level', 'ICD10_2010'), +('S65.2', 'Injury of superficial palmar arch', 'ICD10_2010'), +('S65.3', 'Injury of deep palmar arch', 'ICD10_2010'), +('S65.4', 'Injury of blood vessel(s) of thumb', 'ICD10_2010'), +('S65.5', 'Injury of blood vessel(s) of other finger', 'ICD10_2010'), +('S65.7', 'Injury of multiple blood vessels at wrist and hand level', 'ICD10_2010'), +('S65.8', 'Injury of other blood vessels at wrist and hand level', 'ICD10_2010'), +('S65.9', 'Injury of unspecified blood vessel at wrist and hand level', 'ICD10_2010'), +('S66', 'Injury of muscle and tendon at wrist and hand level', 'ICD10_2010'), +('S66.0', 'Injury of long flexor muscle and tendon of thumb at wrist and hand level', 'ICD10_2010'), +('S66.1', 'Injury of flexor muscle and tendon of other finger at wrist and hand level', 'ICD10_2010'), +('S66.2', 'Injury of extensor muscle and tendon of thumb at wrist and hand level', 'ICD10_2010'), +('S66.3', 'Injury of extensor muscle and tendon of other finger at wrist and hand level', 'ICD10_2010'), +('S66.4', 'Injury of intrinsic muscle and tendon of thumb at wrist and hand level', 'ICD10_2010'), +('S66.5', 'Injury of intrinsic muscle and tendon other finger at wrist and hand level', 'ICD10_2010'), +('S66.6', 'Injury of multiple flexor muscles and tendons at wrist and hand level', 'ICD10_2010'), +('S66.7', 'Injury of multiple extensor muscles and tendons at wrist and hand level', 'ICD10_2010'), +('S66.8', 'Injury of other muscles and tendons at wrist and hand level', 'ICD10_2010'), +('S66.9', 'Injury unspecified muscle and tendon at wrist and hand level', 'ICD10_2010'), +('S67', 'Crushing injury of wrist and hand', 'ICD10_2010'), +('S67.0', 'Crushing injury of thumb and other finger(s)', 'ICD10_2010'), +('S67.8', 'Crush injury other and unspecified parts of wrist and hand', 'ICD10_2010'), +('S68', 'Traumatic amputation of wrist and hand', 'ICD10_2010'), +('S68.0', 'Traumatic amputation of thumb (complete)(partial)', 'ICD10_2010'), +('S68.1', 'Traumatic amputation of other single finger (complete)(partial)', 'ICD10_2010'), +('S68.2', 'Traumatic amputation two or more fingers alone (cmpte/part)', 'ICD10_2010'), +('S68.3', 'Combination traumatic amputation of (part of) finger(s) with other parts wrist and hand', 'ICD10_2010'), +('S68.4', 'Traumatic amputation of hand at wrist level', 'ICD10_2010'), +('S68.8', 'Traumatic amputation of other parts of wrist and hand', 'ICD10_2010'), +('S68.9', 'Traumatic amputation of wrist and hand, level unspecified', 'ICD10_2010'), +('S69', 'Other and unspecified injuries of wrist and hand', 'ICD10_2010'), +('S69.7', 'Multiple injuries of wrist and hand', 'ICD10_2010'), +('S69.8', 'Other specified injuries of wrist and hand', 'ICD10_2010'), +('S69.9', 'Unspecified injury of wrist and hand', 'ICD10_2010'), +('S70', 'Superficial injury of hip and thigh', 'ICD10_2010'), +('S70.0', 'Contusion of hip', 'ICD10_2010'), +('S70.1', 'Contusion of thigh', 'ICD10_2010'), +('S70.7', 'Multiple superficial injuries of hip and thigh', 'ICD10_2010'), +('S70.8', 'Other superficial injuries of hip and thigh', 'ICD10_2010'), +('S70.9', 'Superficial injury of hip and thigh, unspecified', 'ICD10_2010'), +('S71', 'Open wound of hip and thigh', 'ICD10_2010'), +('S71.0', 'Open wound of hip', 'ICD10_2010'), +('S71.1', 'Open wound of thigh', 'ICD10_2010'), +('S71.7', 'Multiple open wounds of hip and thigh', 'ICD10_2010'), +('S71.8', 'Open wound of other and unspecified parts of pelvic girdle', 'ICD10_2010'), +('S72', 'Fracture of femur', 'ICD10_2010'), +('S72.0', 'Fracture of neck of femur', 'ICD10_2010'), +('S72.00', 'Fracture of neck of femur, closed', 'ICD10_2010'), +('S72.01', 'Fracture of neck of femur, open', 'ICD10_2010'), +('S72.1', 'Pertrochanteric fracture', 'ICD10_2010'), +('S72.10', 'Pertrochanteric fracture, closed', 'ICD10_2010'), +('S72.11', 'Pertrochanteric fracture, open', 'ICD10_2010'), +('S72.2', 'Subtrochanteric fracture', 'ICD10_2010'), +('S72.20', 'Subtrochanteric fracture, closed', 'ICD10_2010'), +('S72.21', 'Subtrochanteric fracture, open', 'ICD10_2010'), +('S72.3', 'Fracture of shaft of femur', 'ICD10_2010'), +('S72.30', 'Fracture of shaft of femur, closed', 'ICD10_2010'), +('S72.31', 'Fracture of shaft of femur, open', 'ICD10_2010'), +('S72.4', 'Fracture of lower end of femur', 'ICD10_2010'), +('S72.40', 'Fracture of lower end of femur, closed', 'ICD10_2010'), +('S72.41', 'Fracture of lower end of femur, open', 'ICD10_2010'), +('S72.7', 'Multiple fractures of femur', 'ICD10_2010'), +('S72.70', 'Multiple fractures of femur, closed', 'ICD10_2010'), +('S72.71', 'Multiple fractures of femur, open', 'ICD10_2010'), +('S72.8', 'Fractures of other parts of femur', 'ICD10_2010'), +('S72.80', 'Fractures of other parts of femur, closed', 'ICD10_2010'), +('S72.81', 'Fractures of other parts of femur, open', 'ICD10_2010'), +('S72.9', 'Fracture of femur, part unspecified', 'ICD10_2010'), +('S72.90', 'Fracture of femur, part unspecified, closed', 'ICD10_2010'), +('S72.91', 'Fracture of femur, part unspecified , open', 'ICD10_2010'), +('S73', 'Dislocation, sprain and strain of joint and ligaments of hip', 'ICD10_2010'), +('S73.0', 'Dislocation of hip', 'ICD10_2010'), +('S73.1', 'Sprain and strain of hip', 'ICD10_2010'), +('S74', 'Injury of nerves at hip and thigh level', 'ICD10_2010'), +('S74.0', 'Injury of sciatic nerve at hip and thigh level', 'ICD10_2010'), +('S74.1', 'Injury of femoral nerve at hip and thigh level', 'ICD10_2010'), +('S74.2', 'Injury of cutaneous sensory nerve at hip and thigh level', 'ICD10_2010'), +('S74.7', 'Injury of multiple nerves at hip and thigh level', 'ICD10_2010'), +('S74.8', 'Injury of other nerves at hip and thigh level', 'ICD10_2010'), +('S74.9', 'Injury of unspecified nerve at hip and thigh level', 'ICD10_2010'), +('S75', 'Injury of blood vessels at hip and thigh level', 'ICD10_2010'), +('S75.0', 'Injury of femoral artery', 'ICD10_2010'), +('S75.1', 'Injury of femoral vein at hip and thigh level', 'ICD10_2010'), +('S75.2', 'Injury of greater saphenous vein at hip and thigh level', 'ICD10_2010'), +('S75.7', 'Injury of multiple blood vessels at hip and thigh level', 'ICD10_2010'), +('S75.8', 'Injury of other blood vessels at hip and thigh level', 'ICD10_2010'), +('S75.9', 'Injury of unspecified blood vessel at hip and thigh level', 'ICD10_2010'), +('S76', 'Injury of muscle and tendon at hip and thigh level', 'ICD10_2010'), +('S76.0', 'Injury of muscle and tendon of hip', 'ICD10_2010'), +('S76.1', 'Injury of quadriceps muscle and tendon', 'ICD10_2010'), +('S76.2', 'Injury of adductor muscle and tendon of thigh', 'ICD10_2010'), +('S76.3', 'Injury of muscle and tendon of the posterior muscle group at thigh level', 'ICD10_2010'), +('S76.4', 'Injury of other and unspec muscles and tendons at thigh level', 'ICD10_2010'); +INSERT INTO `icd10` (`ID_ICD10`, `Diagnosa`, `Versi_ICD10`) VALUES +('S76.7', 'Injury of multiple muscles and tendons at hip & thigh level', 'ICD10_2010'), +('S77', 'Crushing injury of hip and thigh', 'ICD10_2010'), +('S77.0', 'Crushing injury of hip', 'ICD10_2010'), +('S77.1', 'Crushing injury of thigh', 'ICD10_2010'), +('S77.2', 'Crushing injury of hip with thigh', 'ICD10_2010'), +('S78', 'Traumatic amputation of hip and thigh', 'ICD10_2010'), +('S78.0', 'Traumatic amputation at hip joint', 'ICD10_2010'), +('S78.1', 'Traumatic amputation at level between hip and knee', 'ICD10_2010'), +('S78.9', 'Traumatic amputation of hip and thigh, level unspecified', 'ICD10_2010'), +('S79', 'Other and specified injuries of hip and thigh', 'ICD10_2010'), +('S79.7', 'Multiple injuries of hip and thigh', 'ICD10_2010'), +('S79.8', 'Other specified injuries of hip and thigh', 'ICD10_2010'), +('S79.9', 'Unspecified injury of hip and thigh', 'ICD10_2010'), +('S80', 'Superficial injury of lower leg', 'ICD10_2010'), +('S80.0', 'Contusion of knee', 'ICD10_2010'), +('S80.1', 'Contusion of other and unspecified parts of lower leg', 'ICD10_2010'), +('S80.7', 'Multiple superficial injuries of lower leg', 'ICD10_2010'), +('S80.8', 'Other superficial injuries of lower leg', 'ICD10_2010'), +('S80.9', 'Superficial injury of lower leg, unspecified', 'ICD10_2010'), +('S81', 'Open wound of lower leg', 'ICD10_2010'), +('S81.0', 'Open wound of knee', 'ICD10_2010'), +('S81.7', 'Multiple open wounds of lower leg', 'ICD10_2010'), +('S81.8', 'Open wound of other parts of lower leg', 'ICD10_2010'), +('S81.9', 'Open wound of lower leg, part unspecified', 'ICD10_2010'), +('S82', 'Fracture of lower leg, including ankle', 'ICD10_2010'), +('S82.0', 'Fracture of patella', 'ICD10_2010'), +('S82.00', 'Fracture of patella, closed', 'ICD10_2010'), +('S82.01', 'Fracture of patella, open', 'ICD10_2010'), +('S82.1', 'Fracture of upper end of tibia', 'ICD10_2010'), +('S82.10', 'Fracture of upper end of tibia, closed', 'ICD10_2010'), +('S82.11', 'Fracture of upper end of tibia , open', 'ICD10_2010'), +('S82.2', 'Fracture of shaft of tibia', 'ICD10_2010'), +('S82.20', 'Fracture of shaft of tibia, closed', 'ICD10_2010'), +('S82.21', 'Fracture of shaft of tibia , open', 'ICD10_2010'), +('S82.3', 'Fracture of lower end of tibia', 'ICD10_2010'), +('S82.30', 'Fracture of lower end of tibia, closed', 'ICD10_2010'), +('S82.31', 'Fracture of lower end of tibia , open', 'ICD10_2010'), +('S82.4', 'Fracture of fibula alone', 'ICD10_2010'), +('S82.40', 'Fracture of fibula alone, closed', 'ICD10_2010'), +('S82.41', 'Fracture of fibula alone , open', 'ICD10_2010'), +('S82.5', 'Fracture of medial malleolus', 'ICD10_2010'), +('S82.50', 'Fracture of medial malleolus, closed', 'ICD10_2010'), +('S82.51', 'Fracture of medial malleolus , open', 'ICD10_2010'), +('S82.6', 'Fracture of lateral malleolus', 'ICD10_2010'), +('S82.60', 'Fracture of lateral malleolus, closed', 'ICD10_2010'), +('S82.61', 'Fracture of lateral malleolus, open', 'ICD10_2010'), +('S82.7', 'Multiple fractures of lower leg', 'ICD10_2010'), +('S82.70', 'Multiple fractures of lower leg, closed', 'ICD10_2010'), +('S82.71', 'Multiple fractures of lower leg, open', 'ICD10_2010'), +('S82.8', 'Fractures of other parts of lower leg', 'ICD10_2010'), +('S82.80', 'Fractures of other parts of lower leg, closed', 'ICD10_2010'), +('S82.81', 'Fractures of other parts of lower leg, open', 'ICD10_2010'), +('S82.9', 'Fracture of lower leg, part unspecified', 'ICD10_2010'), +('S82.90', 'Fracture of lower leg, part unspecified, closed', 'ICD10_2010'), +('S82.91', 'Fracture of lower leg, part unspecified , open', 'ICD10_2010'), +('S83', 'Dislocation, sprain and strain of joints and ligaments of knee', 'ICD10_2010'), +('S83.0', 'Dislocation of patella', 'ICD10_2010'), +('S83.1', 'Dislocation of knee', 'ICD10_2010'), +('S83.2', 'Tear of meniscus, current', 'ICD10_2010'), +('S83.3', 'Tear of articular cartilage of knee, current', 'ICD10_2010'), +('S83.4', 'Sprain and strain involving (fibular)(tibial) collateral lig knee', 'ICD10_2010'), +('S83.5', 'Sprain and strain involving (anterior)(posterior) cruciate lig knee', 'ICD10_2010'), +('S83.6', 'Sprain and strain of other and unspecified parts of knee', 'ICD10_2010'), +('S83.7', 'Injury to multiple structures of knee', 'ICD10_2010'), +('S84', 'Injury of nerves at lower leg level', 'ICD10_2010'), +('S84.0', 'Injury of tibial nerve at lower leg level', 'ICD10_2010'), +('S84.1', 'Injury of peroneal nerve at lower leg level', 'ICD10_2010'), +('S84.2', 'Injury of cutaneous sensory nerve at lower leg level', 'ICD10_2010'), +('S84.7', 'Injury of multiple nerves at lower leg level', 'ICD10_2010'), +('S84.8', 'Injury of other nerves at lower leg level', 'ICD10_2010'), +('S84.9', 'Injury of unspecified nerve at lower leg level', 'ICD10_2010'), +('S85', 'Injury of blood vessels at lower leg level', 'ICD10_2010'), +('S85.0', 'Injury of popliteal artery', 'ICD10_2010'), +('S85.1', 'Injury of (anterior)(posterior) tibial artery', 'ICD10_2010'), +('S85.2', 'Injury of peroneal artery', 'ICD10_2010'), +('S85.3', 'Injury of greater saphenous vein at lower leg level', 'ICD10_2010'), +('S85.4', 'Injury of lesser saphenous vein at lower leg level', 'ICD10_2010'), +('S85.5', 'Injury of popliteal vein', 'ICD10_2010'), +('S85.7', 'Injury of multiple blood vessels at lower leg level', 'ICD10_2010'), +('S85.8', 'Injury of other blood vessels at lower leg level', 'ICD10_2010'), +('S85.9', 'Injury of unspecified blood vessel at lower leg level', 'ICD10_2010'), +('S86', 'Injury of muscle and tendon at lower leg level', 'ICD10_2010'), +('S86.0', 'Injury of achilles tendon', 'ICD10_2010'), +('S86.1', 'Injury other muscle(s) tendon(s) of posterior muscle group at low leg level', 'ICD10_2010'), +('S86.2', 'Injury of muscle(s) and tendon(s) of anterior muscle group at lower leg level', 'ICD10_2010'), +('S86.3', 'Injury of muscle(s) and tendon(s) peroneal muscle group at lower leg level', 'ICD10_2010'), +('S86.7', 'Injury of multiple muscles and tendons at lower leg level', 'ICD10_2010'), +('S86.8', 'Injury of other muscles and tendons at lower leg level', 'ICD10_2010'), +('S86.9', 'Injury of unspecified muscle and tendon at lower leg level', 'ICD10_2010'), +('S87', 'Crushing injury of lower leg', 'ICD10_2010'), +('S87.0', 'Crushing injury of knee', 'ICD10_2010'), +('S87.8', 'Crushing injury of other and unspecified parts of lower leg', 'ICD10_2010'), +('S88', 'Traumatic amputation of lower leg', 'ICD10_2010'), +('S88.0', 'Traumatic amputation at knee level', 'ICD10_2010'), +('S88.1', 'Traumatic amputation at level between knee and ankle', 'ICD10_2010'), +('S88.9', 'Traumatic amputation of lower leg, level unspecified', 'ICD10_2010'), +('S89', 'Other and unspecified injuries of lower leg', 'ICD10_2010'), +('S89.7', 'Multiple injuries of lower leg', 'ICD10_2010'), +('S89.8', 'Other specified injuries of lower leg', 'ICD10_2010'), +('S89.9', 'Unspecified injury of lower leg', 'ICD10_2010'), +('S90', 'Superficial injury of ankle and foot', 'ICD10_2010'), +('S90.0', 'Contusion of ankle', 'ICD10_2010'), +('S90.1', 'Contusion of toe(s) without damage to nail', 'ICD10_2010'), +('S90.2', 'Contusion of toe(s) with damage to nail', 'ICD10_2010'), +('S90.3', 'Contusion of other and unspecified parts of foot', 'ICD10_2010'), +('S90.7', 'Multiple superficial injuries of ankle and foot', 'ICD10_2010'), +('S90.8', 'Other superficial injuries of ankle and foot', 'ICD10_2010'), +('S90.9', 'Superficial injury of ankle and foot, unspecified', 'ICD10_2010'), +('S91', 'Open wound of ankle and foot', 'ICD10_2010'), +('S91.0', 'Open wound of ankle', 'ICD10_2010'), +('S91.1', 'Open wound of toe(s) without damage to nail', 'ICD10_2010'), +('S91.2', 'Open wound of toe(s) with damage to nail', 'ICD10_2010'), +('S91.3', 'Open wound of other parts of foot', 'ICD10_2010'), +('S91.7', 'Multiple open wounds of ankle and foot', 'ICD10_2010'), +('S92', 'Fracture of foot, except ankle', 'ICD10_2010'), +('S92.0', 'Fracture of calcaneus', 'ICD10_2010'), +('S92.00', 'Fracture of calcaneus, closed', 'ICD10_2010'), +('S92.01', 'Fracture of calcaneus , open', 'ICD10_2010'), +('S92.1', 'Fracture of talus', 'ICD10_2010'), +('S92.10', 'Fracture of talus, closed', 'ICD10_2010'), +('S92.11', 'Fracture of talus, open', 'ICD10_2010'), +('S92.2', 'Fracture of other tarsal bone(s)', 'ICD10_2010'), +('S92.20', 'Fracture of other tarsal bone(s) , closed', 'ICD10_2010'), +('S92.21', 'Fracture of other tarsal bone(s) , open', 'ICD10_2010'), +('S92.3', 'Fracture of metatarsal bone', 'ICD10_2010'), +('S92.30', 'Fracture of metatarsal bone, closed', 'ICD10_2010'), +('S92.31', 'Fracture of metatarsal bone , open', 'ICD10_2010'), +('S92.4', 'Fracture of great toe', 'ICD10_2010'), +('S92.40', 'Fracture of great toe, closed', 'ICD10_2010'), +('S92.41', 'Fracture of great toe, open', 'ICD10_2010'), +('S92.5', 'Fracture of other toe', 'ICD10_2010'), +('S92.50', 'Fracture of other toe, closed', 'ICD10_2010'), +('S92.51', 'Fracture of other toe, open', 'ICD10_2010'), +('S92.7', 'Multiple fractures of foot', 'ICD10_2010'), +('S92.70', 'Multiple fractures of foot, closed', 'ICD10_2010'), +('S92.71', 'Multiple fractures of foot , open', 'ICD10_2010'), +('S92.9', 'Fracture of foot, unspecified', 'ICD10_2010'), +('S92.90', 'Fracture of foot, unspecified, closed', 'ICD10_2010'), +('S92.91', 'Fracture of foot, unspecified , open', 'ICD10_2010'), +('S93', 'Dislocation, sprain and strain of joints and ligaments at ankle and foot level', 'ICD10_2010'), +('S93.0', 'Dislocation of ankle joint', 'ICD10_2010'), +('S93.1', 'Dislocation of toe(s)', 'ICD10_2010'), +('S93.2', 'Rupture of ligaments at ankle and foot level', 'ICD10_2010'), +('S93.3', 'Dislocation of other and unspecified parts of foot', 'ICD10_2010'), +('S93.4', 'Sprain and strain of ankle', 'ICD10_2010'), +('S93.5', 'Sprain and strain of toe(s)', 'ICD10_2010'), +('S93.6', 'Sprain and strain of other and unspecified parts of foot', 'ICD10_2010'), +('S94', 'Injury of nerves at ankle and foot level', 'ICD10_2010'), +('S94.0', 'Injury of lateral plantar nerve', 'ICD10_2010'), +('S94.1', 'Injury of medial plantar nerve', 'ICD10_2010'), +('S94.2', 'Injury of deep peroneal nerve at ankle and foot level', 'ICD10_2010'), +('S94.3', 'Injury of cutaneous sensory nerve at ankle and foot level', 'ICD10_2010'), +('S94.7', 'Injury of multiple nerves at ankle and foot level', 'ICD10_2010'), +('S94.8', 'Injury of other nerves at ankle and foot level', 'ICD10_2010'), +('S94.9', 'Injury of unspecified nerve at ankle and foot level', 'ICD10_2010'), +('S95', 'Injury of blood vessels at ankle and foot level', 'ICD10_2010'), +('S95.0', 'Injury of dorsal artery of foot', 'ICD10_2010'), +('S95.1', 'Injury of plantar artery of foot', 'ICD10_2010'), +('S95.2', 'Injury of dorsal vein of foot', 'ICD10_2010'), +('S95.7', 'Injury of multiple blood vessels at ankle and foot level', 'ICD10_2010'), +('S95.8', 'Injury of other blood vessels at ankle and foot level', 'ICD10_2010'), +('S95.9', 'Injury of unspecified blood vessel at ankle and foot level', 'ICD10_2010'), +('S96', 'Injury of muscle and tendon at ankle and foot level', 'ICD10_2010'), +('S96.0', 'Injury muscle and tendon of long flexor muscle toe at ankle and foot level', 'ICD10_2010'), +('S96.1', 'Injury muscle & tendon long extensor muscle toe at ankle and foot level', 'ICD10_2010'), +('S96.2', 'Injury of intrinsic muscle and tendon at ankle and foot level', 'ICD10_2010'), +('S96.7', 'Injury of multi muscles and tendons at ankle and foot level', 'ICD10_2010'), +('S96.8', 'Injury of other muscles and tendons at ankle and foot level', 'ICD10_2010'), +('S96.9', 'Injury of unspec muscle and tendon at ankle and foot level', 'ICD10_2010'), +('S97', 'Crushing injury of ankle and foot', 'ICD10_2010'), +('S97.0', 'Crushing injury of ankle', 'ICD10_2010'), +('S97.1', 'Crushing injury of toe(s)', 'ICD10_2010'), +('S97.8', 'Crushing injury of other parts of ankle and foot', 'ICD10_2010'), +('S98', 'Traumatic amputation of ankle and foot', 'ICD10_2010'), +('S98.0', 'Traumatic amputation of foot at ankle level', 'ICD10_2010'), +('S98.1', 'Traumatic amputation of one toe', 'ICD10_2010'), +('S98.2', 'Traumatic amputation of two or more toes', 'ICD10_2010'), +('S98.3', 'Traumatic amputation of other parts of foot', 'ICD10_2010'), +('S98.4', 'Traumatic amputation of foot, level unspecified', 'ICD10_2010'), +('S99', 'Other and unspecified injuries of ankle and foot', 'ICD10_2010'), +('S99.7', 'Multiple injuries of ankle and foot', 'ICD10_2010'), +('S99.8', 'Other specified injuries of ankle and foot', 'ICD10_2010'), +('S99.9', 'Unspecified injury of ankle and foot', 'ICD10_2010'), +('T00', 'Superficial injuries involving multiple body regions', 'ICD10_2010'), +('T00.0', 'Superficial injuries involving head with neck', 'ICD10_2010'), +('T00.1', 'Superficial injuries involving thorax with abdomen, lower back and pelvis', 'ICD10_2010'), +('T00.2', 'Superficial injuries involving multiple region of upper limb(s)', 'ICD10_2010'), +('T00.3', 'Superficial injuries involving multiple region of lower limb(s)', 'ICD10_2010'), +('T00.6', 'Superficial injuries involving multiple region upper limb(s) with lower limb(s)', 'ICD10_2010'), +('T00.8', 'Superfic injuries involving oth combinations of body regions', 'ICD10_2010'), +('T00.9', 'Multiple superficial injuries, unspecified', 'ICD10_2010'), +('T01', 'Open wounds involving multiple body regions', 'ICD10_2010'), +('T01.0', 'Open wounds involving head with neck', 'ICD10_2010'), +('T01.1', 'Open wounds involving thorax wth abdomen, lower back and pelvis', 'ICD10_2010'), +('T01.2', 'Open wounds involving multiple regions of upper limb(s)', 'ICD10_2010'), +('T01.3', 'Open wounds involving multiple regions of lower limb(s)', 'ICD10_2010'), +('T01.6', 'Open wounds involving multiple regions of up limb(s) with low limb(s)', 'ICD10_2010'), +('T01.8', 'Open wounds involving other combinations of body regions', 'ICD10_2010'), +('T01.9', 'Multiple open wounds, unspecified', 'ICD10_2010'), +('T02', 'Fractures involving multiple body regions', 'ICD10_2010'), +('T02.0', 'Fractures involving head with neck', 'ICD10_2010'), +('T02.00', 'Fractures involving head with neck, closed', 'ICD10_2010'), +('T02.01', 'Fractures involving head with neck, open', 'ICD10_2010'), +('T02.1', 'Fractures involving thorax with lower back and pelvis', 'ICD10_2010'), +('T02.10', 'Fractures involving thorax with lower back and pelvis, closed', 'ICD10_2010'), +('T02.11', 'Fractures involving thorax with lower back and pelvis, open', 'ICD10_2010'), +('T02.2', 'Fractures involving multiple regions of one upper limb', 'ICD10_2010'), +('T02.20', 'Fractures involving multiple regions of one upper limb, closed', 'ICD10_2010'), +('T02.21', 'Fractures involving multiple regions of one upper limb, open', 'ICD10_2010'), +('T02.3', 'Fractures involving multiple regions of one lower limb', 'ICD10_2010'), +('T02.30', 'Fractures involving multiple regions of one lower limb, closed', 'ICD10_2010'), +('T02.31', 'Fractures involving multiple regions of one lower limb, open', 'ICD10_2010'), +('T02.4', 'Fractures involving multiple regions of both upper limbs', 'ICD10_2010'), +('T02.40', 'Fractures involving multiple regions of both upper limbs, closed', 'ICD10_2010'), +('T02.41', 'Fractures involving multiple regions of both upper limbs, open', 'ICD10_2010'), +('T02.5', 'Fractures involving multiple regions of both lower limbs', 'ICD10_2010'), +('T02.50', 'Fractures involving multiple regions of both lower limbs, closed', 'ICD10_2010'), +('T02.51', 'Fractures involving multiple regions of both lower limbs, open', 'ICD10_2010'), +('T02.6', 'Fractures involving multiple regions of up limb(s) with low limb(s)', 'ICD10_2010'), +('T02.60', 'Fractures involving multiple regions of up limb(s) with low limb(s), closed', 'ICD10_2010'), +('T02.61', 'Fractures involving multiple regions of up limb(s) with low limb(s), open', 'ICD10_2010'), +('T02.7', 'Fractures involving thorax with lower back and pelvis with limb(s)', 'ICD10_2010'), +('T02.70', 'Fractures involving thorax with lower back and pelvis with limb(s), closed', 'ICD10_2010'), +('T02.71', 'Fractures involving thorax with lower back and pelvis with limb(s), open', 'ICD10_2010'), +('T02.8', 'Fractures involving other combinations of body regions', 'ICD10_2010'), +('T02.80', 'Fractures involving other combinations of body regions, closed', 'ICD10_2010'), +('T02.81', 'Fractures involving other combinations of body regions, open', 'ICD10_2010'), +('T02.9', 'Multiple fractures, unspecified', 'ICD10_2010'), +('T02.90', 'Multiple fractures, unspecified, closed', 'ICD10_2010'), +('T02.91', 'Multiple fractures, unspecified, open', 'ICD10_2010'), +('T03', 'Dislocations, sprains and strains involving multiple body regions', 'ICD10_2010'), +('T03.0', 'Dislocations, sprains and strains involving head with neck', 'ICD10_2010'), +('T03.1', 'Dislocation sprains and strains involving thorax wth lower back and pelvis', 'ICD10_2010'), +('T03.2', 'Dislocation sprains and strains involving multiple regions upper limb(s)', 'ICD10_2010'), +('T03.3', 'Dislocation sprains and strains involving multiple reginns lower limb(s)', 'ICD10_2010'), +('T03.4', 'Dislocation sprains and strains involving multiple regions upper & lower limb(s)', 'ICD10_2010'), +('T03.8', 'Dislocation sprains and strains involving other combinations body regions', 'ICD10_2010'), +('T03.9', 'Multiple dislocations, sprains and strains, unspecified', 'ICD10_2010'), +('T04', 'Crushing injuries involving multiple body regions', 'ICD10_2010'), +('T04.0', 'Crushing injuries involving head with neck', 'ICD10_2010'), +('T04.1', 'Crush injuries involving thorax with abdomen lower back and pelvis', 'ICD10_2010'), +('T04.2', 'Crushing injuries involving multiple region of upper limb(s)', 'ICD10_2010'), +('T04.3', 'Crushing injuries involving multiple region of lower limb(s)', 'ICD10_2010'), +('T04.4', 'Crushing injuries involving multiple regions of upper limb(s) with lower limb(s)', 'ICD10_2010'), +('T04.7', 'Crushing injuries of thorax with abdomen, lower back and pelvis with limb(s)', 'ICD10_2010'), +('T04.8', 'Crushing injuries involving other combinations of body regions', 'ICD10_2010'), +('T04.9', 'Multiple crushing injuries, unspecified', 'ICD10_2010'), +('T05', 'Traumatic amputations involving multiple body regions', 'ICD10_2010'), +('T05.0', 'Traumatic amputation of both hands', 'ICD10_2010'), +('T05.1', 'Traumatic amputation of one hand and other arm [any level, except hand]', 'ICD10_2010'), +('T05.2', 'Traumatic amputation of both arms [any level]', 'ICD10_2010'), +('T05.3', 'Traumatic amputation of both feet', 'ICD10_2010'), +('T05.4', 'Traumatic amputation of one foot and other leg [any level except foot]', 'ICD10_2010'), +('T05.5', 'Traumatic amputation of both legs [any level]', 'ICD10_2010'), +('T05.6', 'Traumatic amputation of upper and lower limbs, any combination [any level]', 'ICD10_2010'), +('T05.8', 'Traumatic amputations involving other combinations of body regions', 'ICD10_2010'), +('T05.9', 'Multiple traumatic amputations, unspecified', 'ICD10_2010'), +('T06', 'Other injuries involving multiple body regions, not elsewhere classified', 'ICD10_2010'), +('T06.0', 'Injuries of brain and cranial nerve with injuries of nerves and spinal cord neck level', 'ICD10_2010'), +('T06.1', 'Injuries of nerves and spinal cord involving other multiple body regions', 'ICD10_2010'), +('T06.2', 'Injuries of nerves involving multiple body regions', 'ICD10_2010'), +('T06.3', 'Injuries of blood vessels involving multiple body regions', 'ICD10_2010'), +('T06.4', 'Injuries of muscles and tendons involving multiple body regions', 'ICD10_2010'), +('T06.5', 'Injuries of intrathoracic organ with intra-abdominal and pelvic organs', 'ICD10_2010'), +('T06.8', 'Other specified injuries involving multiple body regions', 'ICD10_2010'), +('T07', 'Unspecified multiple injuries', 'ICD10_2010'), +('T08', 'Fracture of spine, level unspecified', 'ICD10_2010'), +('T08.0', 'Fracture of spine, level unspecified , closed', 'ICD10_2010'), +('T08.1', 'Fracture of spine, level unspecified , open', 'ICD10_2010'), +('T09', 'Other injuries of spine and trunk, level unspecified', 'ICD10_2010'), +('T09.0', 'Superficial injury of trunk, level unspecified', 'ICD10_2010'), +('T09.1', 'Open wound of trunk, level unspecified', 'ICD10_2010'), +('T09.2', 'Dislocation sprain and strain unspec joint and ligament trunk', 'ICD10_2010'), +('T09.3', 'Injury of spinal cord, level unspecified', 'ICD10_2010'), +('T09.4', 'Injury unspecified nerve, spinal nerve root and plexus of trunk', 'ICD10_2010'), +('T09.5', 'Injury of unspecified muscle and tendon of trunk', 'ICD10_2010'), +('T09.6', 'Traumatic amputation of trunk, level unspecified', 'ICD10_2010'), +('T09.8', 'Other specified injuries of trunk, level unspecified', 'ICD10_2010'), +('T09.9', 'Unspecified injury of trunk, level unspecified', 'ICD10_2010'), +('T10', 'Fracture of upper limb, level unspecified', 'ICD10_2010'), +('T10.0', 'Fracture of upper limb, level unspecified , closed', 'ICD10_2010'), +('T10.1', 'Fracture of upper limb, level unspecified , open', 'ICD10_2010'), +('T11', 'Other injuries of upper limb, level unspecified', 'ICD10_2010'), +('T11.0', 'Superficial injury of upper limb, level unspecified', 'ICD10_2010'), +('T11.1', 'Open wound of upper limb, level unspecified', 'ICD10_2010'), +('T11.2', 'Disl\'n sprain/strain unsp joint & ligament upr limb lvl unsp', 'ICD10_2010'), +('T11.3', 'Injury of unspecified nerve of upper limb, level unspecified', 'ICD10_2010'), +('T11.4', 'Injury of unspec blood vessel of upper limb level unspec act', 'ICD10_2010'), +('T11.5', 'Injury of unspec muscle & tendon of upr limb level unspec act', 'ICD10_2010'), +('T11.6', 'Traumatic amputation of upper limb, level unspecified', 'ICD10_2010'), +('T11.8', 'Other specified injuries of upper limb, level unspecified', 'ICD10_2010'), +('T11.9', 'Unspecified injury of upper limb, level unspecified', 'ICD10_2010'), +('T12', 'Fracture of lower limb, level unspecified', 'ICD10_2010'), +('T12.0', 'Fracture of lower limb, level unspecified, closed', 'ICD10_2010'), +('T12.1', 'Fracture of lower limb, level unspecified, open', 'ICD10_2010'), +('T13', 'Other injuries of lower limb, level unspecified', 'ICD10_2010'), +('T13.0', 'Superficial injury of lower limb, level unspecified', 'ICD10_2010'), +('T13.1', 'Open wound of lower limb, level unspecified', 'ICD10_2010'), +('T13.2', 'Dislocation sprain and strain unspecified joint and ligament of lower limb, level unspecified', 'ICD10_2010'), +('T13.3', 'Injury of unspecified nerve of lower limb, level unspecified', 'ICD10_2010'), +('T13.4', 'Injury of unspecified blood vessel of lower limb level unspecified', 'ICD10_2010'), +('T13.5', 'Injury of unspecified muscle & tendon of lower limb, level unspecified', 'ICD10_2010'), +('T13.6', 'Traumatic amputation of lower limb, level unspecified', 'ICD10_2010'), +('T13.8', 'Other specified injuries of lower limb, level unspecified', 'ICD10_2010'), +('T13.9', 'Unspecified injury of lower limb, level unspecified', 'ICD10_2010'), +('T14', 'Injury of unspecified body region', 'ICD10_2010'), +('T14.0', 'Superficial injury of unspecified body region', 'ICD10_2010'), +('T14.1', 'Open wound of unspecified body region', 'ICD10_2010'), +('T14.2', 'Fracture of unspecified body region', 'ICD10_2010'), +('T14.20', 'Fracture of unspecified body region, closed', 'ICD10_2010'), +('T14.21', 'Fracture of unspecified body region, open', 'ICD10_2010'), +('T14.3', 'Dislocation, sprain and strain of unspecified body region', 'ICD10_2010'), +('T14.30', 'Dislocation, sprain and strain of unspecified body region, closed', 'ICD10_2010'), +('T14.31', 'Dislocation, sprain and strain of unspecified body region, open', 'ICD10_2010'), +('T14.4', 'Injury of nerve(s) of unspecified body region', 'ICD10_2010'), +('T14.40', 'Injury of nerve(s) of unspecified body region, closed', 'ICD10_2010'), +('T14.41', 'Injury of nerve(s) of unspecified body region, open', 'ICD10_2010'), +('T14.5', 'Injury of blood vessel(s) of unspecified body region', 'ICD10_2010'), +('T14.50', 'Injury of blood vessel(s) of unspecified body region, closed', 'ICD10_2010'), +('T14.51', 'Injury of blood vessel(s) of unspecified body region, open', 'ICD10_2010'), +('T14.6', 'Injury of muscles and tendons of unspecified body region', 'ICD10_2010'), +('T14.60', 'Injury of muscles and tendons of unspecified body region, closed', 'ICD10_2010'), +('T14.61', 'Injury of muscles and tendons of unspecified body region, open', 'ICD10_2010'), +('T14.7', 'Crush injury and traumatic amputation of unspec body region', 'ICD10_2010'), +('T14.70', 'Crush injury and traumatic amputation of unspec body region, closed', 'ICD10_2010'), +('T14.71', 'Crush injury and traumatic amputation of unspec body region, open', 'ICD10_2010'), +('T14.8', 'Other injuries of unspecified body region', 'ICD10_2010'), +('T14.80', 'Other injuries of unspecified body region, closed', 'ICD10_2010'), +('T14.81', 'Other injuries of unspecified body region, open', 'ICD10_2010'), +('T14.9', 'Injury, unspecified', 'ICD10_2010'), +('T14.90', 'Injury, unspecified, closed', 'ICD10_2010'), +('T14.91', 'Injury, unspecified, open', 'ICD10_2010'), +('T15', 'Foreign body on external eye', 'ICD10_2010'), +('T15.0', 'Foreign body in cornea', 'ICD10_2010'), +('T15.1', 'Foreign body in conjunctival sac', 'ICD10_2010'), +('T15.8', 'Foreign body in other and multiple parts of external eye', 'ICD10_2010'), +('T15.9', 'Foreign body on external eye, part unspecified', 'ICD10_2010'), +('T16', 'Foreign body in ear', 'ICD10_2010'), +('T17', 'Foreign body in respiratory tract', 'ICD10_2010'), +('T17.0', 'Foreign body in nasal sinus', 'ICD10_2010'), +('T17.1', 'Foreign body in nostril', 'ICD10_2010'), +('T17.2', 'Foreign body in pharynx', 'ICD10_2010'), +('T17.3', 'Foreign body in larynx', 'ICD10_2010'), +('T17.4', 'Foreign body in trachea', 'ICD10_2010'), +('T17.5', 'Foreign body in bronchus', 'ICD10_2010'), +('T17.8', 'Foreign body in other and multiple parts of respiratory tract', 'ICD10_2010'), +('T17.9', 'Foreign body in respiratory tract, part unspecified', 'ICD10_2010'), +('T18', 'Foreign body in alimentary tract', 'ICD10_2010'), +('T18.0', 'Foreign body in mouth', 'ICD10_2010'), +('T18.1', 'Foreign body in oesophagus', 'ICD10_2010'), +('T18.2', 'Foreign body in stomach', 'ICD10_2010'), +('T18.3', 'Foreign body in small intestine', 'ICD10_2010'), +('T18.4', 'Foreign body in colon', 'ICD10_2010'), +('T18.5', 'Foreign body in anus and rectum', 'ICD10_2010'), +('T18.8', 'Foreign body in other and multiple parts of alimentary tract', 'ICD10_2010'), +('T18.9', 'Foreign body in alimentary tract, part unspecified', 'ICD10_2010'), +('T19', 'Foreign body in genitourinary tract', 'ICD10_2010'), +('T19.0', 'Foreign body in urethra', 'ICD10_2010'), +('T19.1', 'Foreign body in bladder', 'ICD10_2010'), +('T19.2', 'Foreign body in vulva and vagina', 'ICD10_2010'), +('T19.3', 'Foreign body in uterus [any part]', 'ICD10_2010'), +('T19.8', 'Foreign body in oth and multiple part of genitourinary tract', 'ICD10_2010'), +('T19.9', 'Foreign body in genitourinary tract, part unspecified', 'ICD10_2010'), +('T20', 'Burn and corrosion of head and neck', 'ICD10_2010'), +('T20.0', 'Burn of unspecified degree of head and neck', 'ICD10_2010'), +('T20.1', 'Burn of first degree of head and neck', 'ICD10_2010'), +('T20.2', 'Burn of second degree of head and neck', 'ICD10_2010'), +('T20.3', 'Burn of third degree of head and neck', 'ICD10_2010'), +('T20.4', 'Corrosion of unspecified degree of head and neck', 'ICD10_2010'), +('T20.5', 'Corrosion of first degree of head and neck', 'ICD10_2010'), +('T20.6', 'Corrosion of second degree of head and neck', 'ICD10_2010'), +('T20.7', 'Corrosion of third degree of head and neck', 'ICD10_2010'), +('T21', 'Burn and corrosion of trunk', 'ICD10_2010'), +('T21.0', 'Burn of unspecified degree of trunk', 'ICD10_2010'), +('T21.1', 'Burn of first degree of trunk', 'ICD10_2010'), +('T21.2', 'Burn of second degree of trunk', 'ICD10_2010'), +('T21.3', 'Burn of third degree of trunk', 'ICD10_2010'), +('T21.4', 'Corrosion of unspecified degree of trunk', 'ICD10_2010'), +('T21.5', 'Corrosion of first degree of trunk', 'ICD10_2010'), +('T21.6', 'Corrosion of second degree of trunk', 'ICD10_2010'), +('T21.7', 'Corrosion of third degree of trunk', 'ICD10_2010'), +('T22', 'Burn and corrosion of shoulder and upper limb, except wrist and hand', 'ICD10_2010'), +('T22.0', 'Burn of unspecified degree of shoulder and upper limb except wrist and hand', 'ICD10_2010'), +('T22.1', 'Burn of first degree of shoulder and upper limb, except wrist and hand', 'ICD10_2010'), +('T22.2', 'Burn of secondary degree of shoulder and upper limb, except wrist and hand', 'ICD10_2010'), +('T22.3', 'Burn of third degree of shoulder and upper limb excpt wrist and hand', 'ICD10_2010'), +('T22.4', 'Corrosion unspecified degree of shoulder and upper limb except wrist and hand', 'ICD10_2010'), +('T22.5', 'Corrosion of first degree of shoulder and upper limb, except wrist and hand', 'ICD10_2010'), +('T22.6', 'Corrosion secondary degree shoulder and upper limb except wrist and hand', 'ICD10_2010'), +('T22.7', 'Corrosion of third degree shoulder and upper limb, except wrist and hand', 'ICD10_2010'), +('T23', 'Burn and corrosion of wrist and hand', 'ICD10_2010'), +('T23.0', 'Burn of unspecified degree of wrist and hand', 'ICD10_2010'), +('T23.1', 'Burn of first degree of wrist and hand', 'ICD10_2010'), +('T23.2', 'Burn of second degree of wrist and hand', 'ICD10_2010'), +('T23.3', 'Burn of third degree of wrist and hand', 'ICD10_2010'), +('T23.4', 'Corrosion of unspecified degree of wrist and hand', 'ICD10_2010'), +('T23.5', 'Corrosion of first degree of wrist and hand', 'ICD10_2010'), +('T23.6', 'Corrosion of second degree of wrist and hand', 'ICD10_2010'), +('T23.7', 'Corrosion of third degree of wrist and hand', 'ICD10_2010'), +('T24', 'Burn and corrosion of hip and lower limb, except ankle and foot', 'ICD10_2010'), +('T24.0', 'Burn of unspecified degree of hip and lower limb except ankle and foot', 'ICD10_2010'), +('T24.1', 'Burn of first degree hip and lower limb except ankle and foot', 'ICD10_2010'), +('T24.2', 'Burn of second degree hip and lower limb except ankle and foot', 'ICD10_2010'), +('T24.3', 'Burn of third degree hip and lower limb except ankle and foot', 'ICD10_2010'), +('T24.4', 'Corrosion of unspecified degree hip and lower limb except ankle & foot', 'ICD10_2010'), +('T24.5', 'Corrosion of first degree hip and lower limb, except ankle & foot', 'ICD10_2010'), +('T24.6', 'Corrosion of second degree hip and lower limb, except ankle and foot', 'ICD10_2010'), +('T24.7', 'Corrosion of third degree of hip and lower limb, except ankle and foot', 'ICD10_2010'), +('T25', 'Burn and corrosion of ankle and foot', 'ICD10_2010'), +('T25.0', 'Burn of unspecified degree of ankle and foot', 'ICD10_2010'), +('T25.1', 'Burn of first degree of ankle and foot', 'ICD10_2010'), +('T25.2', 'Burn of second degree of ankle and foot', 'ICD10_2010'), +('T25.3', 'Burn of third degree of ankle and foot', 'ICD10_2010'), +('T25.4', 'Corrosion of unspecified degree of ankle and foot', 'ICD10_2010'), +('T25.5', 'Corrosion of first degree of ankle and foot', 'ICD10_2010'), +('T25.6', 'Corrosion of second degree of ankle and foot', 'ICD10_2010'), +('T25.7', 'Corrosion of third degree of ankle and foot', 'ICD10_2010'), +('T26', 'Burn and corrosion confined to eye and adnexa', 'ICD10_2010'), +('T26.0', 'Burn of eyelid and periocular area', 'ICD10_2010'), +('T26.1', 'Burn of cornea and conjunctival sac', 'ICD10_2010'), +('T26.2', 'Burn with resulting rupture and destruction of eyeball', 'ICD10_2010'), +('T26.3', 'Burn of other parts of eye and adnexa', 'ICD10_2010'), +('T26.4', 'Burn of eye and adnexa, part unspecified', 'ICD10_2010'), +('T26.5', 'Corrosion of eyelid and periocular area', 'ICD10_2010'), +('T26.6', 'Corrosion of cornea and conjunctival sac', 'ICD10_2010'), +('T26.7', 'Corrosion with resulting rupture and destruction of eyeball', 'ICD10_2010'), +('T26.8', 'Corrosion of other parts of eye and adnexa', 'ICD10_2010'), +('T26.9', 'Corrosion of eye and adnexa, part unspecified', 'ICD10_2010'), +('T27', 'Burn and corrosion of respiratory tract', 'ICD10_2010'), +('T27.0', 'Burn of larynx and trachea', 'ICD10_2010'), +('T27.1', 'Burn involving larynx and trachea with lung', 'ICD10_2010'), +('T27.2', 'Burn of other parts of respiratory tract', 'ICD10_2010'), +('T27.3', 'Burn of respiratory tract, part unspecified', 'ICD10_2010'), +('T27.4', 'Corrosion of larynx and trachea', 'ICD10_2010'), +('T27.5', 'Corrosion involving larynx and trachea with lung', 'ICD10_2010'), +('T27.6', 'Corrosion of other parts of respiratory tract', 'ICD10_2010'), +('T27.7', 'Corrosion of respiratory tract, part unspecified', 'ICD10_2010'), +('T28', 'Burn and corrosion of other internal organs', 'ICD10_2010'), +('T28.0', 'Burn of mouth and pharynx', 'ICD10_2010'), +('T28.1', 'Burn of oesophagus', 'ICD10_2010'), +('T28.2', 'Burn of other parts of alimentary tract', 'ICD10_2010'), +('T28.3', 'Burn of internal genitourinary organs', 'ICD10_2010'), +('T28.4', 'Burn of other and unspecified internal organs', 'ICD10_2010'), +('T28.5', 'Corrosion of mouth and pharynx', 'ICD10_2010'), +('T28.6', 'Corrosion of oesophagus', 'ICD10_2010'), +('T28.7', 'Corrosion of other parts of alimentary tract', 'ICD10_2010'), +('T28.8', 'Corrosion of internal genitourinary organs', 'ICD10_2010'), +('T28.9', 'Corrosion of other and unspecified internal organs', 'ICD10_2010'), +('T29', 'Burns and corrosions of multiple body regions', 'ICD10_2010'), +('T29.0', 'Burns of multiple regions, unspecified degree', 'ICD10_2010'), +('T29.1', 'Burns multi regions no more than first-degree burns mentioned', 'ICD10_2010'), +('T29.2', 'Burns multi regions no more than second-degree burns mentioned', 'ICD10_2010'), +('T29.3', 'Burns multi regions at least one burn of third degree mentioned', 'ICD10_2010'), +('T29.4', 'Corrosions of multiple regions, unspecified degree', 'ICD10_2010'), +('T29.5', 'Corrosions of multiple regions, no more than first-deg corrosions mentioned', 'ICD10_2010'), +('T29.6', 'Corrosions of multiple regions, no more than second-degree corrosions mentioned', 'ICD10_2010'), +('T29.7', 'Corros multi reg at least one corros of third deg mentioned', 'ICD10_2010'), +('T30', 'Burn and corrosion, body region unspecified', 'ICD10_2010'), +('T30.0', 'Burn of unspecified body region, unspecified degree', 'ICD10_2010'), +('T30.1', 'Burn of first degree, body region unspecified', 'ICD10_2010'), +('T30.2', 'Burn of second degree, body region unspecified', 'ICD10_2010'), +('T30.3', 'Burn of third degree, body region unspecified', 'ICD10_2010'), +('T30.4', 'Corrosion of unspecified body region, unspecified degree', 'ICD10_2010'), +('T30.5', 'Corrosion of first degree, body region unspecified', 'ICD10_2010'), +('T30.6', 'Corrosion of second degree, body region unspecified', 'ICD10_2010'), +('T30.7', 'Corrosion of third degree, body region unspecified', 'ICD10_2010'), +('T31', 'Burns classified according to extent of body surface involved', 'ICD10_2010'), +('T31.0', 'Burns involving less than 10% of body surface', 'ICD10_2010'), +('T31.1', 'Burns involving 10-19% of body surface', 'ICD10_2010'), +('T31.2', 'Burns involving 20-29% of body surface', 'ICD10_2010'), +('T31.3', 'Burns involving 30-39% of body surface', 'ICD10_2010'), +('T31.4', 'Burns involving 40-49% of body surface', 'ICD10_2010'), +('T31.5', 'Burns involving 50-59% of body surface', 'ICD10_2010'), +('T31.6', 'Burns involving 60-69% of body surface', 'ICD10_2010'), +('T31.7', 'Burns involving 70-79% of body surface', 'ICD10_2010'), +('T31.8', 'Burns involving 80-89% of body surface', 'ICD10_2010'), +('T31.9', 'Burns involving 90% or more of body surface', 'ICD10_2010'), +('T32', 'Corrosions classified according to extent of body surface involved', 'ICD10_2010'), +('T32.0', 'Corrosions involving less than 10% of body surface', 'ICD10_2010'), +('T32.1', 'Corrosions involving 10-19% of body surface', 'ICD10_2010'), +('T32.2', 'Corrosions involving 20-29% of body surface', 'ICD10_2010'), +('T32.3', 'Corrosions involving 30-39% of body surface', 'ICD10_2010'), +('T32.4', 'Corrosions involving 40-49% of body surface', 'ICD10_2010'), +('T32.5', 'Corrosions involving 50-59% of body surface', 'ICD10_2010'), +('T32.6', 'Corrosions involving 60-69% of body surface', 'ICD10_2010'), +('T32.7', 'Corrosions involving 70-79% of body surface', 'ICD10_2010'), +('T32.8', 'Corrosions involving 80-89% of body surface', 'ICD10_2010'), +('T32.9', 'Corrosions involving 90% or more of body surface', 'ICD10_2010'), +('T33', 'Superficial frostbite', 'ICD10_2010'), +('T33.0', 'Superficial frostbite of head', 'ICD10_2010'), +('T33.1', 'Superficial frostbite of neck', 'ICD10_2010'), +('T33.2', 'Superficial frostbite of thorax', 'ICD10_2010'), +('T33.3', 'Superficial frostbite of abdominal wall, lower back and pelvis', 'ICD10_2010'), +('T33.4', 'Superficial frostbite of arm', 'ICD10_2010'), +('T33.5', 'Superficial frostbite of wrist and hand', 'ICD10_2010'), +('T33.6', 'Superficial frostbite of hip and thigh', 'ICD10_2010'), +('T33.7', 'Superficial frostbite of knee and lower leg', 'ICD10_2010'), +('T33.8', 'Superficial frostbite of ankle and foot', 'ICD10_2010'), +('T33.9', 'Superficial frostbite of other and unspecified sites', 'ICD10_2010'), +('T34', 'Frostbite with tissue necrosis', 'ICD10_2010'), +('T34.0', 'Frostbite with tissue necrosis of head', 'ICD10_2010'), +('T34.1', 'Frostbite with tissue necrosis of neck', 'ICD10_2010'), +('T34.2', 'Frostbite with tissue necrosis of thorax', 'ICD10_2010'), +('T34.3', 'Frostbite with tissue necrosis abdominal wall, lower back and pelvis', 'ICD10_2010'), +('T34.4', 'Frostbite with tissue necrosis of arm', 'ICD10_2010'), +('T34.5', 'Frostbite with tissue necrosis of wrist and hand', 'ICD10_2010'), +('T34.6', 'Frostbite with tissue necrosis of hip and thigh', 'ICD10_2010'), +('T34.7', 'Frostbite with tissue necrosis of knee and lower leg', 'ICD10_2010'), +('T34.8', 'Frostbite with tissue necrosis of ankle and foot', 'ICD10_2010'), +('T34.9', 'Frostbite with tissue necrosis of other and unspec sites', 'ICD10_2010'), +('T35', 'Frostbite involving multiple body regions and unspecified frostbite', 'ICD10_2010'), +('T35.0', 'Superficial frostbite involving multiple body regions', 'ICD10_2010'), +('T35.1', 'Frostbite with tissue necrosis involving multiple body regions', 'ICD10_2010'), +('T35.2', 'Unspecified frostbite of head and neck', 'ICD10_2010'), +('T35.3', 'Unspecified frostbite thorax, abdomen, lowerr back and pelvis', 'ICD10_2010'), +('T35.4', 'Unspecified frostbite of upper limb', 'ICD10_2010'), +('T35.5', 'Unspecified frostbite of lower limb', 'ICD10_2010'), +('T35.6', 'Unspecified frostbite involving multiple body regions', 'ICD10_2010'), +('T35.7', 'Unspecified frostbite of unspecified site', 'ICD10_2010'), +('T36', 'Poisoning by systemic antibiotics', 'ICD10_2010'), +('T36.0', 'Poisoning, penicillins', 'ICD10_2010'), +('T36.1', 'Poisoning, cefalosporins and other beta-lactam antibiotics', 'ICD10_2010'), +('T36.2', 'Poisoning, chloramphenicol group', 'ICD10_2010'), +('T36.3', 'Poisoning, macrolides', 'ICD10_2010'), +('T36.4', 'Poisoning, tetracyclines', 'ICD10_2010'), +('T36.5', 'Poisoning, aminoglycosides', 'ICD10_2010'), +('T36.6', 'Poisoning, rifamycins', 'ICD10_2010'), +('T36.7', 'Poisoning, antifungal antibiotics, systemically used', 'ICD10_2010'), +('T36.8', 'Poisoning, other systemic antibiotics', 'ICD10_2010'), +('T36.9', 'Poisoning, systemic antibiotic, unspecified', 'ICD10_2010'), +('T37', 'Poisoning by other systemic anti-infectives and antiparasitics', 'ICD10_2010'), +('T37.0', 'Poisoning, sulfonamides', 'ICD10_2010'), +('T37.1', 'Poisoning, antimycobacterial drugs', 'ICD10_2010'), +('T37.2', 'Poisoning, antimalarials and drugs acting on other blood protozoa', 'ICD10_2010'), +('T37.3', 'Poisoning, other antiprotozoal drugs', 'ICD10_2010'), +('T37.4', 'Poisoning, anthelminthics', 'ICD10_2010'), +('T37.5', 'Poisoning, antiviral drugs', 'ICD10_2010'), +('T37.8', 'Poisoning, other specified systemic anti-infectives and antiparasitics', 'ICD10_2010'), +('T37.9', 'Poisoning, systemic anti-infective and antiparasitic, unspecified', 'ICD10_2010'), +('T38', 'Poisoning by hormones and their synthetic substitutes and antagonists, not elsewhere classified', 'ICD10_2010'), +('T38.0', 'Poisoning, glucocorticoids and synthetic analogues', 'ICD10_2010'), +('T38.1', 'Poisoning, thyroid hormones and substitutes', 'ICD10_2010'), +('T38.2', 'Poisoning, antithyroid drugs', 'ICD10_2010'), +('T38.3', 'Poisoning, insulin and oral hypoglycaemic [antidiabetic] drugs', 'ICD10_2010'), +('T38.4', 'Poisoning, oral contraceptives', 'ICD10_2010'), +('T38.5', 'Poisoning, other estrogens and progestogens', 'ICD10_2010'), +('T38.6', 'Poisoning, antigonadotropins, antiestrogens, antiandrogens nec', 'ICD10_2010'), +('T38.7', 'Poisoning, androgens and anabolic congeners', 'ICD10_2010'), +('T38.8', 'Poisoning, other and unspecified hormones and their synthetic substitutes', 'ICD10_2010'), +('T38.9', 'Poisoning, other and unspecified hormone antagonists', 'ICD10_2010'), +('T39', 'Poisoning by nonopioid analgesics, antipyretics and antirheumatics', 'ICD10_2010'), +('T39.0', 'Poisoning, salicylates', 'ICD10_2010'), +('T39.1', 'Poisoning, 4-aminophenol derivatives', 'ICD10_2010'), +('T39.2', 'Poisoning, pyrazolone derivatives', 'ICD10_2010'), +('T39.3', 'Poisoning, other nonsteroidal anti-inflammatory drugs [NSAID]', 'ICD10_2010'), +('T39.4', 'Poisoning, antirheumatics, not elsewhere classified', 'ICD10_2010'), +('T39.8', 'Poisoning, other nonopiod analgesics and antipyretics nec', 'ICD10_2010'), +('T39.9', 'Poisoning, nonopioid analgesic, antipyretic and antirheumatic unspec act', 'ICD10_2010'), +('T40', 'Poisoning by narcotics and psychodysleptics [hallucinogens]', 'ICD10_2010'), +('T40.0', 'Poisoning, opium', 'ICD10_2010'), +('T40.1', 'Poisoning, heroin', 'ICD10_2010'), +('T40.2', 'Poisoning, other opioids', 'ICD10_2010'), +('T40.3', 'Poisoning, methadone', 'ICD10_2010'), +('T40.4', 'Poisoning, other synthetic narcotics', 'ICD10_2010'), +('T40.5', 'Poisoning, cocaine', 'ICD10_2010'), +('T40.6', 'Poisoning, other and unspecified narcotics', 'ICD10_2010'), +('T40.7', 'Poisoning, cannabis (derivatives)', 'ICD10_2010'), +('T40.8', 'Poisoning, lysergide [lsd]', 'ICD10_2010'), +('T40.9', 'Poisoning, other and unspecified psychodysleptics [hallucinogens]', 'ICD10_2010'), +('T41', 'Poisoning by anaesthetics and therapeutic gases', 'ICD10_2010'), +('T41.0', 'Poisoning, inhaled anaesthetics', 'ICD10_2010'), +('T41.1', 'Poisoning, intravenous anaesthetics', 'ICD10_2010'), +('T41.2', 'Poisoning, other and unspecified general anaesthetics', 'ICD10_2010'), +('T41.3', 'Poisoning, local anaesthetics', 'ICD10_2010'), +('T41.4', 'Poisoning, anaesthetic, unspecified', 'ICD10_2010'), +('T41.5', 'Poisoning, therapeutic gases', 'ICD10_2010'), +('T42', 'Poisoning by antiepileptic, sedative-hypnotic and antiparkinsonism drugs', 'ICD10_2010'), +('T42.0', 'Poisoning, hydantoin derivatives', 'ICD10_2010'), +('T42.1', 'Poisoning, iminostilbenes', 'ICD10_2010'), +('T42.2', 'Poisoning, succinimides and oxazolidinediones', 'ICD10_2010'), +('T42.3', 'Poisoning, barbiturates', 'ICD10_2010'), +('T42.4', 'Poisoning, benzodiazepines', 'ICD10_2010'), +('T42.5', 'Poisoning, mixed antiepileptics, not elsewhere classified', 'ICD10_2010'), +('T42.6', 'Poisoning, other antiepileptic and sedative-hypnotic drugs', 'ICD10_2010'), +('T42.7', 'Poisoning, antiepileptic and sedative-hypnotic drugs, unspecified', 'ICD10_2010'), +('T42.8', 'Poisoning, antiparkinson drug and other central muscle-tone depressant', 'ICD10_2010'), +('T43', 'Poisoning by psychotropic drugs, not elsewhere classified', 'ICD10_2010'), +('T43.0', 'Poisoning, tricyclic and tetracyclic antidepressants', 'ICD10_2010'), +('T43.1', 'Poisoning, monoamine-oxidase-inhibitor antidepressants', 'ICD10_2010'), +('T43.2', 'Poisoning, other and unspecified antidepressants', 'ICD10_2010'), +('T43.3', 'Poisoning, phenothiazine antipsychotics and neuroleptics', 'ICD10_2010'), +('T43.4', 'Poisoning, butyrophenone and thioxanthene neuroleptics', 'ICD10_2010'), +('T43.5', 'Poisoning, other and unspecified antipsychotics and neuroleptics', 'ICD10_2010'), +('T43.6', 'Poisoning, psychostimulants with abuse potential', 'ICD10_2010'), +('T43.8', 'Poisoning, other psychotropic drugs, not elsewhere classified', 'ICD10_2010'), +('T43.9', 'Poisoning, psychotropic drug, unspecified', 'ICD10_2010'), +('T44', 'Poisoning by drugs primarily affecting the autonomic nervous system', 'ICD10_2010'), +('T44.0', 'Poisoning, anticholinesterase agents', 'ICD10_2010'), +('T44.1', 'Poisoning, other parasympathomimetics [cholinergics]', 'ICD10_2010'), +('T44.2', 'Poisoning, ganglionic blocking drugs, not elsewhere classified', 'ICD10_2010'), +('T44.3', 'Poisoning, oth parasympatholy [antichol and antimusc] spasmolytics nec', 'ICD10_2010'), +('T44.4', 'Poisoning, predominantly alpha-adrenoreceptor agonists nec', 'ICD10_2010'), +('T44.5', 'Poisoning, predominantly beta-adrenreceptor agonists nec', 'ICD10_2010'), +('T44.6', 'Poisoning, alpha-adrenoreceptor agonists nec', 'ICD10_2010'), +('T44.7', 'Poisoning, beta-adrenreceptor agonists nec', 'ICD10_2010'), +('T44.8', 'Poisoning, centrally acting and adrenergic-neuron-blocking agents nec', 'ICD10_2010'), +('T44.9', 'Poisoning, other unspecified drugs primarily affect the autonomic nervous system', 'ICD10_2010'), +('T45', 'Poisoning by primarily systemic and haematological agents, not elsewhere classified', 'ICD10_2010'), +('T45.0', 'Poisoning, antiallergic and antiemetic drugs', 'ICD10_2010'), +('T45.1', 'Poisoning, antineoplastic and immunosuppressive drugs', 'ICD10_2010'), +('T45.2', 'Poisoning, vitamins, not elsewhere classified', 'ICD10_2010'), +('T45.3', 'Poisoning, enzymes, not elsewhere classified', 'ICD10_2010'), +('T45.4', 'Poisoning, iron and its compounds', 'ICD10_2010'), +('T45.5', 'Poisoning, anticoagulants', 'ICD10_2010'), +('T45.6', 'Poisoning, fibrinolysis-affecting drugs', 'ICD10_2010'), +('T45.7', 'Poisoning, anticoagulant antagonists, vitamin k and other coagulants', 'ICD10_2010'), +('T45.8', 'Poisoning, other primarily systemic and haematological agents', 'ICD10_2010'), +('T45.9', 'Poisoning, primarily systemic and haematological agent, unspecified', 'ICD10_2010'), +('T46', 'Poisoning by agents primarily affecting the cardiovascular system', 'ICD10_2010'), +('T46.0', 'Poisoning, cardiac-stimulant glycosides and drugs of similar action', 'ICD10_2010'), +('T46.1', 'Poisoning, calcium-channel blockers', 'ICD10_2010'), +('T46.2', 'Poisoning, other antidysrhythmic drugs, not elsewhere classified', 'ICD10_2010'), +('T46.3', 'Poisoning, coronary vasodilators, not elsewhere classified', 'ICD10_2010'), +('T46.4', 'Poisoning, angiotensin-converting-enzyme inhibitors', 'ICD10_2010'), +('T46.5', 'Poisoning, other antihypertensive drugs, not elsewhere classified', 'ICD10_2010'), +('T46.6', 'Poisoning, antihyperlipidaemic and antiarteriosclerotic drugs', 'ICD10_2010'), +('T46.7', 'Poisoning, peripheral vasodilators', 'ICD10_2010'), +('T46.8', 'Poisoning, antivaricose drugs, including sclerosing agents', 'ICD10_2010'), +('T46.9', 'Poisoning, oth and unspec agent primarily affect the cardiovascular sys', 'ICD10_2010'), +('T47', 'Poisoning by agents primarily affecting the gastrointestinal system', 'ICD10_2010'), +('T47.0', 'Poisoning, histamine h2-receptor antagonists', 'ICD10_2010'), +('T47.1', 'Poisoning, other antacids and anti-gastric-secretion drugs', 'ICD10_2010'), +('T47.2', 'Poisoning, stimulant laxatives', 'ICD10_2010'), +('T47.3', 'Poisoning, saline and osmotic laxatives', 'ICD10_2010'), +('T47.4', 'Poisoning, other laxatives', 'ICD10_2010'), +('T47.5', 'Poisoning, digestants', 'ICD10_2010'), +('T47.6', 'Poisoning, antidiarrhoeal drugs', 'ICD10_2010'), +('T47.7', 'Poisoning, emetics', 'ICD10_2010'), +('T47.8', 'Poisoning, other agents primarily affecting the gastrointestinal system', 'ICD10_2010'), +('T47.9', 'Poisoning, agent primarily affecting the gastrointestinal syst unspec act', 'ICD10_2010'), +('T48', 'Poisoning by agents primarily acting on smooth and skeletal muscles and the respiratory system', 'ICD10_2010'), +('T48.0', 'Poisoning, oxytocic drugs', 'ICD10_2010'), +('T48.1', 'Poisoning, skeletal muscle relaxants [neuromuscular blocking agents]', 'ICD10_2010'), +('T48.2', 'Poisoning, other and unspecified agents primarily acting on muscles', 'ICD10_2010'), +('T48.3', 'Poisoning, antitussives', 'ICD10_2010'), +('T48.4', 'Poisoning, expectorants', 'ICD10_2010'), +('T48.5', 'Poisoning, anti-common-cold drugs', 'ICD10_2010'), +('T48.6', 'Poisoning, antiasthmatics, not elsewhere classified', 'ICD10_2010'), +('T48.7', 'Poisoning, other and unspec agents primarily acting on the respiratory system', 'ICD10_2010'), +('T49', 'Poisoning by topical agents primarily affecting skin and mucous membrane and by ophthalmological, otorhinolaryngological and dental drugs', 'ICD10_2010'), +('T49.0', 'Poisoning, loc antifungal anti-infective & anti-inflammatory drug nec', 'ICD10_2010'), +('T49.1', 'Poisoning, antipruritics', 'ICD10_2010'), +('T49.2', 'Poisoning, local astringents and local detergents', 'ICD10_2010'), +('T49.3', 'Poisoning, emollients, demulcents and protectants', 'ICD10_2010'), +('T49.4', 'Poisoning, keratolytics keratoplastics oth hair treat drugs and preps', 'ICD10_2010'), +('T49.5', 'Poisoning, ophthalmological drugs and preparations', 'ICD10_2010'), +('T49.6', 'Poisoning, otorhinolaryngological drugs and preparations', 'ICD10_2010'), +('T49.7', 'Poisoning, dental drugs, topically applied', 'ICD10_2010'), +('T49.8', 'Poisoning, other topical agents', 'ICD10_2010'), +('T49.9', 'Poisoning, topical agent, unspecified', 'ICD10_2010'), +('T50', 'Poisoning by diuretics and other and unspecified drugs, medicaments and biological substances', 'ICD10_2010'), +('T50.0', 'Poisoning, mineralocorticoids and their antagonists', 'ICD10_2010'), +('T50.1', 'Poisoning, loop [high-ceiling] diuretics', 'ICD10_2010'), +('T50.2', 'Poisoning, carbonic-anhydrase inhibitors benzothiadiazide oth diuretic', 'ICD10_2010'), +('T50.3', 'Poisoning, electrolytic, caloric and water-balance agents', 'ICD10_2010'), +('T50.4', 'Poisoning, drugs affecting uric acid metabolism', 'ICD10_2010'), +('T50.5', 'Poisoning, appetite depressants', 'ICD10_2010'), +('T50.6', 'Poisoning, antidotes and chelating agents, not elsewhere classified', 'ICD10_2010'), +('T50.7', 'Poisoning, analeptics and opioid receptor antagonists', 'ICD10_2010'), +('T50.8', 'Poisoning, diagnostic agents', 'ICD10_2010'), +('T50.9', 'Poisoning, other and unspec drugs medicaments & biological subs', 'ICD10_2010'), +('T51', 'Toxic effect of alcohol', 'ICD10_2010'), +('T51.0', 'Toxic effect, ethanol', 'ICD10_2010'), +('T51.1', 'Toxic effect, methanol', 'ICD10_2010'), +('T51.2', 'Toxic effect, 2-propanol', 'ICD10_2010'), +('T51.3', 'Toxic effect, fusel oil', 'ICD10_2010'), +('T51.8', 'Toxic effect, other alcohols', 'ICD10_2010'), +('T51.9', 'Toxic effect, alcohol, unspecified', 'ICD10_2010'), +('T52', 'Toxic effect of organic solvents', 'ICD10_2010'), +('T52.0', 'Toxic effect, petroleum products', 'ICD10_2010'), +('T52.1', 'Toxic effect, benzene', 'ICD10_2010'), +('T52.2', 'Toxic effect, homologues of benzene', 'ICD10_2010'), +('T52.3', 'Toxic effect, glycols', 'ICD10_2010'), +('T52.4', 'Toxic effect, ketones', 'ICD10_2010'), +('T52.8', 'Toxic effect, other organic solvents', 'ICD10_2010'), +('T52.9', 'Toxic effect, organic solvent, unspecified', 'ICD10_2010'), +('T53', 'Toxic effect of halogen derivatives of aliphatic and aromatic hydrocarbons', 'ICD10_2010'), +('T53.0', 'Toxic effect, carbon tetrachloride', 'ICD10_2010'); +INSERT INTO `icd10` (`ID_ICD10`, `Diagnosa`, `Versi_ICD10`) VALUES +('T53.1', 'Toxic effect, chloroform', 'ICD10_2010'), +('T53.2', 'Toxic effect, trichloroethylene', 'ICD10_2010'), +('T53.3', 'Toxic effect, tetrachloroethylene', 'ICD10_2010'), +('T53.4', 'Toxic effect, dichloromethane', 'ICD10_2010'), +('T53.5', 'Toxic effect, chlorofluorocarbons', 'ICD10_2010'), +('T53.6', 'Toxic effect, other halogen derivatives of aliphatic hydrocarbons', 'ICD10_2010'), +('T53.7', 'Toxic effect, other halogen derivatives of aromatic hydrocarbons', 'ICD10_2010'), +('T53.9', 'Toxic effect, halogen derivative of aliphatic and aromatic hydrocarbons', 'ICD10_2010'), +('T54', 'Toxic effect of corrosive substances', 'ICD10_2010'), +('T54.0', 'Toxic effect, phenol and phenol homologues', 'ICD10_2010'), +('T54.1', 'Toxic effect, other corrosive organic compounds', 'ICD10_2010'), +('T54.2', 'Toxic effect, corrosive acids and acid-like substances', 'ICD10_2010'), +('T54.3', 'Toxic effect, corrosive alkalis and alkali-like substances', 'ICD10_2010'), +('T54.9', 'Toxic effect, corrosive substance, unspecified', 'ICD10_2010'), +('T55', 'Toxic effect of soaps and detergents', 'ICD10_2010'), +('T56', 'Toxic effect of metals', 'ICD10_2010'), +('T56.0', 'Toxic effect, lead and its compounds', 'ICD10_2010'), +('T56.1', 'Toxic effect, mercury and its compounds', 'ICD10_2010'), +('T56.2', 'Toxic effect, chromium and its compounds', 'ICD10_2010'), +('T56.3', 'Toxic effect, cadmium and its compounds', 'ICD10_2010'), +('T56.4', 'Toxic effect, copper and its compounds', 'ICD10_2010'), +('T56.5', 'Toxic effect, zinc and its compounds', 'ICD10_2010'), +('T56.6', 'Toxic effect, tin and its compounds', 'ICD10_2010'), +('T56.7', 'Toxic effect, beryllium and its compounds', 'ICD10_2010'), +('T56.8', 'Toxic effect, other metals', 'ICD10_2010'), +('T56.9', 'Toxic effect, metal, unspecified', 'ICD10_2010'), +('T57', 'Toxic effect of other inorganic substances', 'ICD10_2010'), +('T57.0', 'Toxic effect, arsenic and its compounds', 'ICD10_2010'), +('T57.1', 'Toxic effect, phosphorus and its compounds', 'ICD10_2010'), +('T57.2', 'Toxic effect, manganese and its compounds', 'ICD10_2010'), +('T57.3', 'Toxic effect, hydrogen cyanide', 'ICD10_2010'), +('T57.8', 'Toxic effect, other specified inorganic substances', 'ICD10_2010'), +('T57.9', 'Toxic effect, inorganic substance, unspecified', 'ICD10_2010'), +('T58', 'Toxic effect of carbon monoxide', 'ICD10_2010'), +('T59', 'Toxic effect of other gases, fumes and vapours', 'ICD10_2010'), +('T59.0', 'Toxic effect, nitrogen oxides', 'ICD10_2010'), +('T59.1', 'Toxic effect, sulfur dioxide', 'ICD10_2010'), +('T59.2', 'Toxic effect, formaldehyde', 'ICD10_2010'), +('T59.3', 'Toxic effect, lacrimogenic gas', 'ICD10_2010'), +('T59.4', 'Toxic effect, chlorine gas', 'ICD10_2010'), +('T59.5', 'Toxic effect, fluorine gas and hydrogen fluoride', 'ICD10_2010'), +('T59.6', 'Toxic effect, hydrogen sulfide', 'ICD10_2010'), +('T59.7', 'Toxic effect, carbon dioxide', 'ICD10_2010'), +('T59.8', 'Toxic effect, other specified gases, fumes and vapours', 'ICD10_2010'), +('T59.9', 'Toxic effect, gases, fumes and vapours, unspecified', 'ICD10_2010'), +('T60', 'Toxic effect of pesticides', 'ICD10_2010'), +('T60.0', 'Toxic effect, organophosphate and carbamate insecticides', 'ICD10_2010'), +('T60.1', 'Toxic effect, halogenated insecticides', 'ICD10_2010'), +('T60.2', 'Toxic effect, other insecticides', 'ICD10_2010'), +('T60.3', 'Toxic effect, herbicides and fungicides', 'ICD10_2010'), +('T60.4', 'Toxic effect, rodenticides', 'ICD10_2010'), +('T60.8', 'Toxic effect, other pesticides', 'ICD10_2010'), +('T60.9', 'Toxic effect, pesticide, unspecified', 'ICD10_2010'), +('T61', 'Toxic effect of noxious substances eaten as seafood', 'ICD10_2010'), +('T61.0', 'Toxic effect, ciguatera fish poisoning', 'ICD10_2010'), +('T61.1', 'Toxic effect, scombroid fish poisoning', 'ICD10_2010'), +('T61.2', 'Toxic effect, other fish and shellfish poisoning', 'ICD10_2010'), +('T61.8', 'Toxic effect of other seafoods', 'ICD10_2010'), +('T61.9', 'Toxic effect of unspecified seafood', 'ICD10_2010'), +('T62', 'Toxic effect of other noxious substances eaten as food', 'ICD10_2010'), +('T62.0', 'Toxic effect, ingested mushrooms', 'ICD10_2010'), +('T62.1', 'Toxic effect, ingested berries', 'ICD10_2010'), +('T62.2', 'Toxic effect, other ingested (parts of) plant(s)', 'ICD10_2010'), +('T62.8', 'Toxic effect, other specified noxious substances eaten as food', 'ICD10_2010'), +('T62.9', 'Toxic effect, noxious substance eaten as food, unspecified', 'ICD10_2010'), +('T63', 'Toxic effect of contact with venomous animals', 'ICD10_2010'), +('T63.0', 'Toxic effect, snake venom', 'ICD10_2010'), +('T63.1', 'Toxic effect, venom of other reptiles', 'ICD10_2010'), +('T63.2', 'Toxic effect, venom of scorpion', 'ICD10_2010'), +('T63.3', 'Toxic effect, venom of spider', 'ICD10_2010'), +('T63.4', 'Toxic effect, venom of other arthropods', 'ICD10_2010'), +('T63.5', 'Toxic effect of contact with fish', 'ICD10_2010'), +('T63.6', 'Toxic effect of contact with other marine animals', 'ICD10_2010'), +('T63.8', 'Toxic effect of contact with other venomous animals', 'ICD10_2010'), +('T63.9', 'Toxic effect of contact with unspecified venomous animal', 'ICD10_2010'), +('T64', 'Toxic effect of aflatoxin and other mycotoxin food contams', 'ICD10_2010'), +('T65', 'Toxic effect of other and unspecified substances', 'ICD10_2010'), +('T65.0', 'Toxic effect, cyanides', 'ICD10_2010'), +('T65.1', 'Toxic effect, strychnine and its salts', 'ICD10_2010'), +('T65.2', 'Toxic effect, tobacco and nicotine', 'ICD10_2010'), +('T65.3', 'Toxic effect, nitroderivs and aminoderivs of benzene and its homologues', 'ICD10_2010'), +('T65.4', 'Toxic effect, carbon disulfide', 'ICD10_2010'), +('T65.5', 'Toxic effect, nitroglycerin and other nitric acids and esters', 'ICD10_2010'), +('T65.6', 'Toxic effect, paints and dyes, not elsewhere classified', 'ICD10_2010'), +('T65.8', 'Toxic effect of other specified substances', 'ICD10_2010'), +('T65.9', 'Toxic effect of unspecified substance', 'ICD10_2010'), +('T66', 'Unspecified effects of radiation', 'ICD10_2010'), +('T67', 'Effects of heat and light', 'ICD10_2010'), +('T67.0', 'Heatstroke and sunstroke', 'ICD10_2010'), +('T67.1', 'Heat syncope', 'ICD10_2010'), +('T67.2', 'Heat cramp', 'ICD10_2010'), +('T67.3', 'Heat exhaustion, anhydrotic', 'ICD10_2010'), +('T67.4', 'Heat exhaustion due to salt depletion', 'ICD10_2010'), +('T67.5', 'Heat exhaustion, unspecified', 'ICD10_2010'), +('T67.6', 'Heat fatigue, transient', 'ICD10_2010'), +('T67.7', 'Heat oedema', 'ICD10_2010'), +('T67.8', 'Other effects of heat and light', 'ICD10_2010'), +('T67.9', 'Effect of heat and light, unspecified', 'ICD10_2010'), +('T68', 'Hypothermia', 'ICD10_2010'), +('T69', 'Other effects of reduced temperature', 'ICD10_2010'), +('T69.0', 'Immersion hand and foot', 'ICD10_2010'), +('T69.1', 'Chilblains', 'ICD10_2010'), +('T69.8', 'Other specified effects of reduced temperature', 'ICD10_2010'), +('T69.9', 'Effect of reduced temperature, unspecified', 'ICD10_2010'), +('T70', 'Effects of air pressure and water pressure', 'ICD10_2010'), +('T70.0', 'Otitic barotrauma', 'ICD10_2010'), +('T70.1', 'Sinus barotrauma', 'ICD10_2010'), +('T70.2', 'Other and unspecified effects of high altitude', 'ICD10_2010'), +('T70.3', 'Caisson disease [decompression sickness]', 'ICD10_2010'), +('T70.4', 'Effects of high-pressure fluids', 'ICD10_2010'), +('T70.8', 'Other effects of air pressure and water pressure', 'ICD10_2010'), +('T70.9', 'Effect of air pressure and water pressure, unspecified', 'ICD10_2010'), +('T71', 'Asphyxiation', 'ICD10_2010'), +('T73', 'Effects of other deprivation', 'ICD10_2010'), +('T73.0', 'Effects of hunger', 'ICD10_2010'), +('T73.1', 'Effects of thirst', 'ICD10_2010'), +('T73.2', 'Exhaustion due to exposure', 'ICD10_2010'), +('T73.3', 'Exhaustion due to excessive exertion', 'ICD10_2010'), +('T73.8', 'Other effects of deprivation', 'ICD10_2010'), +('T73.9', 'Effect of deprivation, unspecified', 'ICD10_2010'), +('T74', 'Maltreatment syndromes', 'ICD10_2010'), +('T74.0', 'Neglect or abandonment', 'ICD10_2010'), +('T74.1', 'Physical abuse', 'ICD10_2010'), +('T74.2', 'Sexual abuse', 'ICD10_2010'), +('T74.3', 'Psychological abuse', 'ICD10_2010'), +('T74.8', 'Other maltreatment syndromes', 'ICD10_2010'), +('T74.9', 'Maltreatment syndrome, unspecified', 'ICD10_2010'), +('T75', 'Effects of other external causes', 'ICD10_2010'), +('T75.0', 'Effects of lightning', 'ICD10_2010'), +('T75.1', 'Drowning and nonfatal submersion', 'ICD10_2010'), +('T75.2', 'Effects of vibration', 'ICD10_2010'), +('T75.3', 'Motion sickness', 'ICD10_2010'), +('T75.4', 'Effects of electric current', 'ICD10_2010'), +('T75.8', 'Other specified effects of external causes', 'ICD10_2010'), +('T78', 'Adverse effects, not elsewhere classified', 'ICD10_2010'), +('T78.0', 'Anaphylactic shock due to adverse food reaction', 'ICD10_2010'), +('T78.1', 'Other adverse food reactions, not elsewhere classified', 'ICD10_2010'), +('T78.2', 'Anaphylactic shock, unspecified', 'ICD10_2010'), +('T78.3', 'Angioneurotic oedema', 'ICD10_2010'), +('T78.4', 'Allergy, unspecified', 'ICD10_2010'), +('T78.8', 'Other adverse effects, not elsewhere classified', 'ICD10_2010'), +('T78.9', 'Adverse effect, unspecified', 'ICD10_2010'), +('T79', 'Certain early complications of trauma, not elsewhere classified', 'ICD10_2010'), +('T79.0', 'Air embolism (traumatic)', 'ICD10_2010'), +('T79.1', 'Fat embolism (traumatic)', 'ICD10_2010'), +('T79.2', 'Traumatic secondary and recurrent haemorrhage', 'ICD10_2010'), +('T79.3', 'Post-traumatic wound infection, not elsewhere classified', 'ICD10_2010'), +('T79.4', 'Traumatic shock', 'ICD10_2010'), +('T79.5', 'Traumatic anuria', 'ICD10_2010'), +('T79.6', 'Traumatic ischaemia of muscle', 'ICD10_2010'), +('T79.7', 'Traumatic subcutaneous emphysema', 'ICD10_2010'), +('T79.8', 'Other early complications of trauma', 'ICD10_2010'), +('T79.9', 'Unspecified early complication of trauma', 'ICD10_2010'), +('T80', 'Complications following infusion, transfusion and therapeutic injection', 'ICD10_2010'), +('T80.0', 'Air embolism following infusion transfusion and therapeutic inject', 'ICD10_2010'), +('T80.1', 'Vasc comps following infusion transfusion and therapeutic inject', 'ICD10_2010'), +('T80.2', 'Infections following infusion transfusion and therapeutic inject', 'ICD10_2010'), +('T80.3', 'ABO incompatibility reaction', 'ICD10_2010'), +('T80.4', 'Rh incompatibility reaction', 'ICD10_2010'), +('T80.5', 'Anaphylactic shock due to serum', 'ICD10_2010'), +('T80.6', 'Other serum reactions', 'ICD10_2010'), +('T80.8', 'Other complications following infusion transfusion & therap inject', 'ICD10_2010'), +('T80.9', 'Unspecified complication following infusion transfusion and therapeutic inject', 'ICD10_2010'), +('T81', 'Complications of procedures, not elsewhere classified', 'ICD10_2010'), +('T81.0', 'Haemorrhage and haematoma complicating a procedure nec', 'ICD10_2010'), +('T81.1', 'Shock during or resulting from a procedure nec', 'ICD10_2010'), +('T81.2', 'Accidental puncture and laceration during a procedure nec', 'ICD10_2010'), +('T81.3', 'Disruption of operation wound, not elsewhere classified', 'ICD10_2010'), +('T81.4', 'Infection following a procedure, not elsewhere classified', 'ICD10_2010'), +('T81.5', 'Foreign body accidentally left in body cavity or operation wound following a procedure', 'ICD10_2010'), +('T81.6', 'Acute reaction to foreign substance accident left during a procedures', 'ICD10_2010'), +('T81.7', 'Vascular complications following a procedure', 'ICD10_2010'), +('T81.8', 'Other complications of procedures, not elsewhere classified', 'ICD10_2010'), +('T81.9', 'Unspecified complication of procedure', 'ICD10_2010'), +('T82', 'Complications of cardiac and vascular prosthetic devices, implants and grafts', 'ICD10_2010'), +('T82.0', 'Mechanical complication of heart valve prosthesis', 'ICD10_2010'), +('T82.1', 'Mechanical complication of cardiac electronic device', 'ICD10_2010'), +('T82.2', 'Mech complication of coronary artery bypass and valve grafts', 'ICD10_2010'), +('T82.3', 'Mechanical complication of other vascular grafts', 'ICD10_2010'), +('T82.4', 'Mechanical complication of vascular dialysis catheter', 'ICD10_2010'), +('T82.5', 'Mechanical complication of other cardiac and vascular devices and implants', 'ICD10_2010'), +('T82.6', 'Infection and inflammatory reaction due to cardiac valve prosthesis', 'ICD10_2010'), +('T82.7', 'Infection and inflammatory reaction due other cardiac and vascular devices, implant and grafts', 'ICD10_2010'), +('T82.8', 'Other complications of cardic and vascular prosthetic devices, implants and grafts', 'ICD10_2010'), +('T82.9', 'Unspecified complications of cardiac and vascular prosthetic devices, implants and grafts', 'ICD10_2010'), +('T83', 'Complications of genitourinary prosthetic devices, implants and grafts', 'ICD10_2010'), +('T83.0', 'Mechanical complication of urinary (indwelling) catheter', 'ICD10_2010'), +('T83.1', 'Mechanical complication of other urinary devices and implants', 'ICD10_2010'), +('T83.2', 'Mechanical complication of graft of urinary organ', 'ICD10_2010'), +('T83.3', 'Mechanical complication of intrauterine contraceptive device', 'ICD10_2010'), +('T83.4', 'Mechanical complication of other prosthetic devices, implants and grafts in genital tract', 'ICD10_2010'), +('T83.5', 'Infection and inflammatory reaction due to prosthetic devices, implant and graft urinary system', 'ICD10_2010'), +('T83.6', 'Infection inflammatory reaction due to prosthetic device, implant and graft in genital tract', 'ICD10_2010'), +('T83.8', 'Others complications of genitourinary prosthetic device, implants and grafts', 'ICD10_2010'), +('T83.9', 'Unspecified complication of genitourinary prosthetic devices, implant and graft', 'ICD10_2010'), +('T84', 'Complications of internal orthopaedic prosthetic devices, implants and grafts', 'ICD10_2010'), +('T84.0', 'Mechanical complication of internal joint prosthesis', 'ICD10_2010'), +('T84.1', 'Mechanical complication of internal fixation device of bones of limb', 'ICD10_2010'), +('T84.2', 'Mechanical complication of internal fixation device of other bones', 'ICD10_2010'), +('T84.3', 'Mechanical complication other bone devices implants and grafts', 'ICD10_2010'), +('T84.4', 'Mechanical complication of other internal orthopaedic devices, implants and grafts', 'ICD10_2010'), +('T84.5', 'Infection and inflammatory reaction due to internal joint pros', 'ICD10_2010'), +('T84.6', 'Infection and inflammatory reaction due internal fixation device [any site]', 'ICD10_2010'), +('T84.7', 'Infection and inflammatory reaction due to other internal orthopedic prosthetic devices, implants and grafts', 'ICD10_2010'), +('T84.8', 'Other complications of internal orthopaedic prosthtic devices, implants & grafts', 'ICD10_2010'), +('T84.9', 'Unspecified complication of internal othopaedic prosthetic device, implant & graft', 'ICD10_2010'), +('T85', 'Complications of other internal prosthetic devices, implants and grafts', 'ICD10_2010'), +('T85.0', 'Mechanical complication of ventricular intracranial (communicating) shunt', 'ICD10_2010'), +('T85.1', 'Mechanical complication implanted electronic stimulator of nervous system', 'ICD10_2010'), +('T85.2', 'Mechanical complication of intraocular lens', 'ICD10_2010'), +('T85.3', 'Mechanical complication of other ocular prosthetic devices, implants and grafts', 'ICD10_2010'), +('T85.4', 'Mechanical complication of breast prosthesis and implant', 'ICD10_2010'), +('T85.5', 'Mechanical complication of gastrointestinal prosthetic devices, implants and grafts', 'ICD10_2010'), +('T85.6', 'Mechanical complication of other specified internal prosthetic devices, implants and grafts', 'ICD10_2010'), +('T85.7', 'Infection inflammatory reaction due to other internal prosthetic devices, implants and grafts', 'ICD10_2010'), +('T85.8', 'Other complications of internal prosthetic devices, implants and grafts nec', 'ICD10_2010'), +('T85.9', 'Unspecified complication of internal prosthetic device, implant and graft', 'ICD10_2010'), +('T86', 'Failure and rejection of transplanted organs and tissues', 'ICD10_2010'), +('T86.0', 'Bone-marrow transplant rejection', 'ICD10_2010'), +('T86.1', 'Kidney transplant failure and rejection', 'ICD10_2010'), +('T86.2', 'Heart transplant failure and rejection', 'ICD10_2010'), +('T86.3', 'Heart-lung transplant failure and rejection', 'ICD10_2010'), +('T86.4', 'Liver transplant failure and rejection', 'ICD10_2010'), +('T86.8', 'Failure and reject of other transplanted organs and tissues', 'ICD10_2010'), +('T86.9', 'Failure and reject of unspecified transplanted organ and tissue', 'ICD10_2010'), +('T87', 'Complications peculiar to reattachment and amputation', 'ICD10_2010'), +('T87.0', 'Complications of reattached (part of) upper extremity', 'ICD10_2010'), +('T87.1', 'Complications of reattached (part of) lower extremity', 'ICD10_2010'), +('T87.2', 'Complications of other reattached body part', 'ICD10_2010'), +('T87.3', 'Neuroma of amputation stump', 'ICD10_2010'), +('T87.4', 'Infection of amputation stump', 'ICD10_2010'), +('T87.5', 'Necrosis of amputation stump', 'ICD10_2010'), +('T87.6', 'Other and unspecified complications of amputation stump', 'ICD10_2010'), +('T88', 'Other complications of surgical and medical care, not elsewhere classified', 'ICD10_2010'), +('T88.0', 'Infection following immunization', 'ICD10_2010'), +('T88.1', 'Other complications following immunization nec', 'ICD10_2010'), +('T88.2', 'Shock due to anaesthesia', 'ICD10_2010'), +('T88.3', 'Malignant hyperthermia due to anaesthesia', 'ICD10_2010'), +('T88.4', 'Failed or difficult intubation', 'ICD10_2010'), +('T88.5', 'Other complications of anaesthesia', 'ICD10_2010'), +('T88.6', 'Anaphylactic shock due adverse effect of correct drug or medicament properly administered', 'ICD10_2010'), +('T88.7', 'Unspecified adverse effect of drug or medicament', 'ICD10_2010'), +('T88.8', 'Other specified complications of surgical and medical care nec', 'ICD10_2010'), +('T88.9', 'Complication of surgical and medical care, unspecified', 'ICD10_2010'), +('T90', 'Sequelae of injuries of head', 'ICD10_2010'), +('T90.0', 'Sequelae of superficial injury of head', 'ICD10_2010'), +('T90.1', 'Sequelae of open wound of head', 'ICD10_2010'), +('T90.2', 'Sequelae of fracture of skull and facial bones', 'ICD10_2010'), +('T90.3', 'Sequelae of injury of cranial nerves', 'ICD10_2010'), +('T90.4', 'Sequelae of injury of eye and orbit', 'ICD10_2010'), +('T90.5', 'Sequelae of intracranial injury', 'ICD10_2010'), +('T90.8', 'Sequelae of other specified injuries of head', 'ICD10_2010'), +('T90.9', 'Sequelae of unspecified injury of head', 'ICD10_2010'), +('T91', 'Sequelae of injuries of neck and trunk', 'ICD10_2010'), +('T91.0', 'Sequelae of superficial injury and open wound of neck and trunk', 'ICD10_2010'), +('T91.1', 'Sequelae of fracture of spine', 'ICD10_2010'), +('T91.2', 'Sequelae of other fracture of thorax and pelvis', 'ICD10_2010'), +('T91.3', 'Sequelae of injury of spinal cord', 'ICD10_2010'), +('T91.4', 'Sequelae of injury of intrathoracic organs', 'ICD10_2010'), +('T91.5', 'Sequelae of injury of intra-abdominal and pelvic organs', 'ICD10_2010'), +('T91.8', 'Sequelae of other specified injuries of neck and trunk', 'ICD10_2010'), +('T91.9', 'Sequelae of unspecified injury of neck and trunk', 'ICD10_2010'), +('T92', 'Sequelae of injuries of upper limb', 'ICD10_2010'), +('T92.0', 'Sequelae of open wound of upper limb', 'ICD10_2010'), +('T92.1', 'Sequelae of fracture of arm', 'ICD10_2010'), +('T92.2', 'Sequelae of fracture at wrist and hand level', 'ICD10_2010'), +('T92.3', 'Sequelae of dislocation, sprain and strain of upper limb', 'ICD10_2010'), +('T92.4', 'Sequelae of injury of nerve of upper limb', 'ICD10_2010'), +('T92.5', 'Sequelae of injury of muscle and tendon of upper limb', 'ICD10_2010'), +('T92.6', 'Sequelae of crushing injury and traumatic amputation of upper limb', 'ICD10_2010'), +('T92.8', 'Sequelae of other specified injuries of upper limb', 'ICD10_2010'), +('T92.9', 'Sequelae of unspecified injury of upper limb', 'ICD10_2010'), +('T93', 'Sequelae of injuries of lower limb', 'ICD10_2010'), +('T93.0', 'Sequelae of open wound of lower limb', 'ICD10_2010'), +('T93.1', 'Sequelae of fracture of femur', 'ICD10_2010'), +('T93.2', 'Sequelae of other fractures of lower limb', 'ICD10_2010'), +('T93.3', 'Sequelae of dislocation, sprain and strain of lower limb', 'ICD10_2010'), +('T93.4', 'Sequelae of injury of nerve of lower limb', 'ICD10_2010'), +('T93.5', 'Sequelae of injury of muscle and tendon of lower limb', 'ICD10_2010'), +('T93.6', 'Sequelae of crush injury and traumatic amputation of lower limb', 'ICD10_2010'), +('T93.8', 'Sequelae of other specified injuries of lower limb', 'ICD10_2010'), +('T93.9', 'Sequelae of unspecified injury of lower limb', 'ICD10_2010'), +('T94', 'Sequelae of injuries involving multiple and unspecified body regions', 'ICD10_2010'), +('T94.0', 'Sequelae of injuries involving multiple body regions', 'ICD10_2010'), +('T94.1', 'Sequelae of injuries, not specified by body region', 'ICD10_2010'), +('T95', 'Sequelae of burns, corrosions and frostbite', 'ICD10_2010'), +('T95.0', 'Sequelae of burn, corrosion and frostbite of head and neck', 'ICD10_2010'), +('T95.1', 'Sequelae of burn, corrosion and frostbite of trunk', 'ICD10_2010'), +('T95.2', 'Sequelae of burn, corrosion and frostbite of upper limb', 'ICD10_2010'), +('T95.3', 'Sequelae of burn, corrosion and frostbite of lower limb', 'ICD10_2010'), +('T95.4', 'Seq burn and corros class only accord extent body surf involved', 'ICD10_2010'), +('T95.8', 'Sequelae of other specified burn, corrosion and frostbite', 'ICD10_2010'), +('T95.9', 'Sequelae of unspecified burn, corrosion and frostbite', 'ICD10_2010'), +('T96', 'Sequelae of poisoning by drugs medicaments and biological substances', 'ICD10_2010'), +('T97', 'Sequelae of toxic effects substances chiefly nonmedicinal as to source', 'ICD10_2010'), +('T98', 'Sequelae of other and unspecified effects of external causes', 'ICD10_2010'), +('T98.0', 'Sequelae of effects foreign body entering through natural orifice', 'ICD10_2010'), +('T98.1', 'Sequelae of other and unspecified effects of external causes', 'ICD10_2010'), +('T98.2', 'Sequelae of certain early complications of trauma', 'ICD10_2010'), +('T98.3', 'Sequelae of complications of surgical and medical care nec', 'ICD10_2010'), +('U04', 'Severe acute respiratory syndrome [SARS]', 'ICD10_2010'), +('U04.9', 'Severe acute respiratory syndrome [SARS], unspecified', 'ICD10_2010'), +('U07.1', 'COVID-19, virus identified', 'ICD10_2010'), +('U07.2', 'COVID-19, virus not identified', 'ICD10_2010'), +('U11.9', 'Need for immunization against COVID-19, unspecified', 'ICD10_2010'), +('U12.9', 'COVID-19 vacciness causing adverse effects in therapeutic use', 'ICD10_2010'), +('U80', 'Agent resistant to penicillin and related antibiotics', 'ICD10_2010'), +('U80.0', 'Penicillin resistant agent', 'ICD10_2010'), +('U80.1', 'Methicillin resistant agent', 'ICD10_2010'), +('U80.8', 'Agent resistant to other penicillin-related antibiotic', 'ICD10_2010'), +('U81', 'Agent resistant to vancomycin and related antibiotics', 'ICD10_2010'), +('U81.0', 'Vancomycin resistant agent', 'ICD10_2010'), +('U81.8', 'Agent resistant to other penicillin-related antibiotic', 'ICD10_2010'), +('U88', 'Agent resistant to multiple antibiotics', 'ICD10_2010'), +('U89', 'Agent resistant to other and unspecified antibiotics', 'ICD10_2010'), +('U89.8', 'Agent resistant to other single specified antibiotic', 'ICD10_2010'), +('U89.9', 'Agent resistant to unspecified antibiotic', 'ICD10_2010'), +('V01', 'Pedestrian injured in collision with pedal cycle', 'ICD10_2010'), +('V01.0', 'Pedestrian injured in collision with pedal cycle: Nontraffic accident', 'ICD10_2010'), +('V01.1', 'Pedestrian injured in collision with pedal cycle: Traffic accident', 'ICD10_2010'), +('V01.9', 'Pedestrian injured in collision with pedal cycle: Unspecified whether traffic or nontraffic accident', 'ICD10_2010'), +('V02', 'Pedestrian injured in collision with two- or three-wheeled motor vehicle', 'ICD10_2010'), +('V02.0', 'Pedestrian injured in collision with two- or three-wheeled motor vehicle: Nontraffic accident', 'ICD10_2010'), +('V02.1', 'Pedestrian injured in collision with two- or three-wheeled motor vehicle: Traffic accident', 'ICD10_2010'), +('V02.9', 'Pedestrian injured in collision with two- or three-wheeled motor vehicle: Unspecified whether traffic or nontraffic accident', 'ICD10_2010'), +('V03', 'Pedestrian injured in collision with car, pick-up truck or van', 'ICD10_2010'), +('V03.0', 'Pedestrian injured in collision with car, pick-up truck or van: Nontraffic accident', 'ICD10_2010'), +('V03.1', 'Pedestrian injured in collision with car, pick-up truck or van: Traffic accident', 'ICD10_2010'), +('V03.9', 'Pedestrian injured in collision with car, pick-up truck or van: Unspecified whether traffic or nontraffic accident', 'ICD10_2010'), +('V04', 'Pedestrian injured in collision with heavy transport vehicle or bus', 'ICD10_2010'), +('V04.0', 'Pedestrian injured in collision with heavy transport vehicle or bus: Nontraffic accident', 'ICD10_2010'), +('V04.1', 'Pedestrian injured in collision with heavy transport vehicle or bus: Traffic accident', 'ICD10_2010'), +('V04.9', 'Pedestrian injured in collision with heavy transport vehicle or bus: Unspecified whether traffic or nontraffic accident', 'ICD10_2010'), +('V05', 'Pedestrian injured in collision with railway train or railway vehicle', 'ICD10_2010'), +('V05.0', 'Pedestrian injured in collision with railway train or railway vehicle: Nontraffic accident', 'ICD10_2010'), +('V05.1', 'Pedestrian injured in collision with railway train or railway vehicle: Traffic accident', 'ICD10_2010'), +('V05.9', 'Pedestrian injured in collision with railway train or railway vehicle: Unspecified whether traffic or nontraffic accident', 'ICD10_2010'), +('V06', 'Pedestrian injured in collision with other nonmotor vehicle', 'ICD10_2010'), +('V06.0', 'Pedestrian injured in collision with other nonmotor vehicle: Nontraffic accident', 'ICD10_2010'), +('V06.1', 'Pedestrian injured in collision with other nonmotor vehicle: Traffic accident', 'ICD10_2010'), +('V06.9', 'Pedestrian injured in collision with other nonmotor vehicle: Unspecified whether traffic or nontraffic accident', 'ICD10_2010'), +('V09', 'Pedestrian injured in other and unspecified transport accidents', 'ICD10_2010'), +('V09.0', 'Pedestrian injured in nontraffic accident involving other and unspecified motor vehicles', 'ICD10_2010'), +('V09.1', 'Pedestrian injured in unspecified nontraffic accident', 'ICD10_2010'), +('V09.2', 'Pedestrian injured in traffic accident involving other and unspecified motor vehicles', 'ICD10_2010'), +('V09.3', 'Pedestrian injured in unspecified traffic accident', 'ICD10_2010'), +('V09.9', 'Pedestrian injured in unspecified transport accident', 'ICD10_2010'), +('V10', 'Pedal cyclist injured in collision with pedestrian or animal', 'ICD10_2010'), +('V10.0', 'Pedal cyclist injured in collision with pedestrian or animal: Driver injured in nontraffic accident', 'ICD10_2010'), +('V10.1', 'Pedal cyclist injured in collision with pedestrian or animal: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V10.2', 'Pedal cyclist injured in collision with pedestrian or animal: Unspecified pedal cyclist injured in nontraffic accident', 'ICD10_2010'), +('V10.3', 'Pedal cyclist injured in collision with pedestrian or animal: Person injured while boarding or alighting', 'ICD10_2010'), +('V10.4', 'Pedal cyclist injured in collision with pedestrian or animal: Driver injured in traffic accident', 'ICD10_2010'), +('V10.5', 'Pedal cyclist injured in collision with pedestrian or animal: Passenger injured in traffic accident', 'ICD10_2010'), +('V10.9', 'Pedal cyclist injured in collision with pedestrian or animal: Unspecified pedal cyclist injured in traffic accident', 'ICD10_2010'), +('V11', 'Pedal cyclist injured in collision with other pedal cycle', 'ICD10_2010'), +('V11.0', 'Pedal cyclist injured in collision with other pedal cycle: Driver injured in nontraffic accident', 'ICD10_2010'), +('V11.1', 'Pedal cyclist injured in collision with other pedal cycle: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V11.2', 'Pedal cyclist injured in collision with other pedal cycle: Unspecified pedal cyclist injured in nontraffic accident', 'ICD10_2010'), +('V11.3', 'Pedal cyclist injured in collision with other pedal cycle: Person injured while boarding or alighting', 'ICD10_2010'), +('V11.4', 'Pedal cyclist injured in collision with other pedal cycle: Driver injured in traffic accident', 'ICD10_2010'), +('V11.5', 'Pedal cyclist injured in collision with other pedal cycle: Passenger injured in traffic accident', 'ICD10_2010'), +('V11.9', 'Pedal cyclist injured in collision with other pedal cycle: Unspecified pedal cyclist injured in traffic accident', 'ICD10_2010'), +('V12', 'Pedal cyclist injured in collision with two- or three-wheeled motor vehicle', 'ICD10_2010'), +('V12.0', 'Pedal cyclist injured in collision with two- or three-wheeled motor vehicle: Driver injured in nontraffic accident', 'ICD10_2010'), +('V12.1', 'Pedal cyclist injured in collision with two- or three-wheeled motor vehicle: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V12.2', 'Pedal cyclist injured in collision with two- or three-wheeled motor vehicle: Unspecified pedal cyclist injured in nontraffic accident', 'ICD10_2010'), +('V12.3', 'Pedal cyclist injured in collision with two- or three-wheeled motor vehicle: Person injured while boarding or alighting', 'ICD10_2010'), +('V12.4', 'Pedal cyclist injured in collision with two- or three-wheeled motor vehicle: Driver injured in traffic accident', 'ICD10_2010'), +('V12.5', 'Pedal cyclist injured in collision with two- or three-wheeled motor vehicle: Passenger injured in traffic accident', 'ICD10_2010'), +('V12.9', 'Pedal cyclist injured in collision with two- or three-wheeled motor vehicle: Unspecified pedal cyclist injured in traffic accident', 'ICD10_2010'), +('V13', 'Pedal cyclist injured in collision with car, pick-up truck or van', 'ICD10_2010'), +('V13.0', 'Pedal cyclist injured in collision with car, pick-up truck or van: Driver injured in nontraffic accident', 'ICD10_2010'), +('V13.1', 'Pedal cyclist injured in collision with car, pick-up truck or van: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V13.2', 'Pedal cyclist injured in collision with car, pick-up truck or van: Unspecified pedal cyclist injured in nontraffic accident', 'ICD10_2010'), +('V13.3', 'Pedal cyclist injured in collision with car, pick-up truck or van: Person injured while boarding or alighting', 'ICD10_2010'), +('V13.4', 'Pedal cyclist injured in collision with car, pick-up truck or van: Driver injured in traffic accident', 'ICD10_2010'), +('V13.5', 'Pedal cyclist injured in collision with car, pick-up truck or van: Passenger injured in traffic accident', 'ICD10_2010'), +('V13.9', 'Pedal cyclist injured in collision with car, pick-up truck or van: Unspecified pedal cyclist injured in traffic accident', 'ICD10_2010'), +('V14', 'Pedal cyclist injured in collision with heavy transport vehicle or bus', 'ICD10_2010'), +('V14.0', 'Pedal cyclist injured in collision with heavy transport vehicle or bus: Driver injured in nontraffic accident', 'ICD10_2010'), +('V14.1', 'Pedal cyclist injured in collision with heavy transport vehicle or bus: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V14.2', 'Pedal cyclist injured in collision with heavy transport vehicle or bus: Unspecified pedal cyclist injured in nontraffic accident', 'ICD10_2010'), +('V14.3', 'Pedal cyclist injured in collision with heavy transport vehicle or bus: Person injured while boarding or alighting', 'ICD10_2010'), +('V14.4', 'Pedal cyclist injured in collision with heavy transport vehicle or bus: Driver injured in traffic accident', 'ICD10_2010'), +('V14.5', 'Pedal cyclist injured in collision with heavy transport vehicle or bus: Passenger injured in traffic accident', 'ICD10_2010'), +('V14.9', 'Pedal cyclist injured in collision with heavy transport vehicle or bus: Unspecified pedal cyclist injured in traffic accident', 'ICD10_2010'), +('V15', 'Pedal cyclist injured in collision with railway train or railway vehicle', 'ICD10_2010'), +('V15.0', 'Pedal cyclist injured in collision with railway train or railway vehicle: Driver injured in nontraffic accident', 'ICD10_2010'), +('V15.1', 'Pedal cyclist injured in collision with railway train or railway vehicle: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V15.2', 'Pedal cyclist injured in collision with railway train or railway vehicle: Unspecified pedal cyclist injured in nontraffic accident', 'ICD10_2010'), +('V15.3', 'Pedal cyclist injured in collision with railway train or railway vehicle: Person injured while boarding or alighting', 'ICD10_2010'), +('V15.4', 'Pedal cyclist injured in collision with railway train or railway vehicle: Driver injured in traffic accident', 'ICD10_2010'), +('V15.5', 'Pedal cyclist injured in collision with railway train or railway vehicle: Passenger injured in traffic accident', 'ICD10_2010'), +('V15.9', 'Pedal cyclist injured in collision with railway train or railway vehicle: Unspecified pedal cyclist injured in traffic accident', 'ICD10_2010'), +('V16', 'Pedal cyclist injured in collision with other nonmotor vehicle', 'ICD10_2010'), +('V16.0', 'Pedal cyclist injured in collision with other nonmotor vehicle: Driver injured in nontraffic accident', 'ICD10_2010'), +('V16.1', 'Pedal cyclist injured in collision with other nonmotor vehicle: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V16.2', 'Pedal cyclist injured in collision with other nonmotor vehicle: Unspecified pedal cyclist injured in nontraffic accident', 'ICD10_2010'), +('V16.3', 'Pedal cyclist injured in collision with other nonmotor vehicle: Person injured while boarding or alighting', 'ICD10_2010'), +('V16.4', 'Pedal cyclist injured in collision with other nonmotor vehicle: Driver injured in traffic accident', 'ICD10_2010'), +('V16.5', 'Pedal cyclist injured in collision with other nonmotor vehicle: Passenger injured in traffic accident', 'ICD10_2010'), +('V16.9', 'Pedal cyclist injured in collision with other nonmotor vehicle: Unspecified pedal cyclist injured in traffic accident', 'ICD10_2010'), +('V17', 'Pedal cyclist injured in collision with fixed or stationary object', 'ICD10_2010'), +('V17.0', 'Pedal cyclist injured in collision with fixed or stationary object: Driver injured in nontraffic accident', 'ICD10_2010'), +('V17.1', 'Pedal cyclist injured in collision with fixed or stationary object: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V17.2', 'Pedal cyclist injured in collision with fixed or stationary object: Unspecified pedal cyclist injured in nontraffic accident', 'ICD10_2010'), +('V17.3', 'Pedal cyclist injured in collision with fixed or stationary object: Person injured while boarding or alighting', 'ICD10_2010'), +('V17.4', 'Pedal cyclist injured in collision with fixed or stationary object: Driver injured in traffic accident', 'ICD10_2010'), +('V17.5', 'Pedal cyclist injured in collision with fixed or stationary object: Passenger injured in traffic accident', 'ICD10_2010'), +('V17.9', 'Pedal cyclist injured in collision with fixed or stationary object: Unspecified pedal cyclist injured in traffic accident', 'ICD10_2010'), +('V18', 'Pedal cyclist injured in noncollision transport accident', 'ICD10_2010'), +('V18.0', 'Pedal cyclist injured in noncollision transport accident: Driver injured in nontraffic accident', 'ICD10_2010'), +('V18.1', 'Pedal cyclist injured in noncollision transport accident: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V18.2', 'Pedal cyclist injured in noncollision transport accident: Unspecified pedal cyclist injured in nontraffic accident', 'ICD10_2010'), +('V18.3', 'Pedal cyclist injured in noncollision transport accident: Person injured while boarding or alighting', 'ICD10_2010'), +('V18.4', 'Pedal cyclist injured in noncollision transport accident: Driver injured in traffic accident', 'ICD10_2010'), +('V18.5', 'Pedal cyclist injured in noncollision transport accident: Passenger injured in traffic accident', 'ICD10_2010'), +('V18.9', 'Pedal cyclist injured in noncollision transport accident: Unspecified pedal cyclist injured in traffic accident', 'ICD10_2010'), +('V19', 'Pedal cyclist injured in other and unspecified transport accidents', 'ICD10_2010'), +('V19.0', 'Driver injured in collision with other and unspecified motor vehicles in nontraffic accident', 'ICD10_2010'), +('V19.1', 'Passenger injured in collision with other and unspecified motor vehicles in nontraffic accident', 'ICD10_2010'), +('V19.2', 'Unspecified pedal cyclist injured in collision with other and unspecified motor vehicles in nontraffic accident', 'ICD10_2010'), +('V19.3', 'Pedal cyclist [any] injured in unspecified nontraffic accident', 'ICD10_2010'), +('V19.4', 'Driver injured in collision with other and unspecified motor vehicles in traffic accident', 'ICD10_2010'), +('V19.5', 'Passenger injured in collision with other and unspecified motor vehicles in traffic accident', 'ICD10_2010'), +('V19.6', 'Unspecified pedal cyclist injured in collision with other and unspecified motor vehicles in traffic accident', 'ICD10_2010'), +('V19.8', 'Pedal cyclist [any] injured in other specified transport accidents', 'ICD10_2010'), +('V19.9', 'Pedal cyclist [any] injured in unspecified traffic accident', 'ICD10_2010'), +('V20', 'Motorcycle rider injured in collision with pedestrian or animal', 'ICD10_2010'), +('V20.0', 'Motorcycle rider injured in collision with pedestrian or animal: Driver injured in nontraffic accident', 'ICD10_2010'), +('V20.1', 'Motorcycle rider injured in collision with pedestrian or animal: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V20.2', 'Motorcycle rider injured in collision with pedestrian or animal: Unspecified motorcycle rider injured in nontraffic accident', 'ICD10_2010'), +('V20.3', 'Motorcycle rider injured in collision with pedestrian or animal: Person injured while boarding or alighting', 'ICD10_2010'), +('V20.4', 'Motorcycle rider injured in collision with pedestrian or animal: Driver injured in traffic accident', 'ICD10_2010'), +('V20.5', 'Motorcycle rider injured in collision with pedestrian or animal: Passenger injured in traffic accident', 'ICD10_2010'), +('V20.9', 'Motorcycle rider injured in collision with pedestrian or animal: Unspecified motorcycle rider injured in traffic accident', 'ICD10_2010'), +('V21', 'Motorcycle rider injured in collision with pedal cycle', 'ICD10_2010'), +('V21.0', 'Motorcycle rider injured in collision with pedal cycle: Driver injured in nontraffic accident', 'ICD10_2010'), +('V21.1', 'Motorcycle rider injured in collision with pedal cycle: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V21.2', 'Motorcycle rider injured in collision with pedal cycle: Unspecified motorcycle rider injured in nontraffic accident', 'ICD10_2010'), +('V21.3', 'Motorcycle rider injured in collision with pedal cycle: Person injured while boarding or alighting', 'ICD10_2010'), +('V21.4', 'Motorcycle rider injured in collision with pedal cycle: Driver injured in traffic accident', 'ICD10_2010'), +('V21.5', 'Motorcycle rider injured in collision with pedal cycle: Passenger injured in traffic accident', 'ICD10_2010'), +('V21.9', 'Motorcycle rider injured in collision with pedal cycle: Unspecified motorcycle rider injured in traffic accident', 'ICD10_2010'), +('V22', 'Motorcycle rider injured in collision with two- or three-wheeled motor vehicle', 'ICD10_2010'), +('V22.0', 'Motorcycle rider injured in collision with two- or three-wheeled motor vehicle: Driver injured in nontraffic accident', 'ICD10_2010'), +('V22.1', 'Motorcycle rider injured in collision with two- or three-wheeled motor vehicle: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V22.2', 'Motorcycle rider injured in collision with two- or three-wheeled motor vehicle: Unspecified motorcycle rider injured in nontraffic accident', 'ICD10_2010'), +('V22.3', 'Motorcycle rider injured in collision with two- or three-wheeled motor vehicle: Person injured while boarding or alighting', 'ICD10_2010'), +('V22.4', 'Motorcycle rider injured in collision with two- or three-wheeled motor vehicle: Driver injured in traffic accident', 'ICD10_2010'), +('V22.5', 'Motorcycle rider injured in collision with two- or three-wheeled motor vehicle: Passenger injured in traffic accident', 'ICD10_2010'), +('V22.9', 'Motorcycle rider injured in collision with two- or three-wheeled motor vehicle: Unspecified motorcycle rider injured in traffic accident', 'ICD10_2010'), +('V23', 'Motorcycle rider injured in collision with car, pick-up truck or van', 'ICD10_2010'), +('V23.0', 'Motorcycle rider injured in collision with car, pick-up truck or van: Driver injured in nontraffic accident', 'ICD10_2010'), +('V23.1', 'Motorcycle rider injured in collision with car, pick-up truck or van: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V23.2', 'Motorcycle rider injured in collision with car, pick-up truck or van: Unspecified motorcycle rider injured in nontraffic accident', 'ICD10_2010'), +('V23.3', 'Motorcycle rider injured in collision with car, pick-up truck or van: Person injured while boarding or alighting', 'ICD10_2010'), +('V23.4', 'Motorcycle rider injured in collision with car, pick-up truck or van: Driver injured in traffic accident', 'ICD10_2010'), +('V23.5', 'Motorcycle rider injured in collision with car, pick-up truck or van: Passenger injured in traffic accident', 'ICD10_2010'), +('V23.9', 'Motorcycle rider injured in collision with car, pick-up truck or van: Unspecified motorcycle rider injured in traffic accident', 'ICD10_2010'), +('V24', 'Motorcycle rider injured in collision with heavy transport vehicle or bus', 'ICD10_2010'), +('V24.0', 'Motorcycle rider injured in collision with heavy transport vehicle or bus: Driver injured in nontraffic accident', 'ICD10_2010'), +('V24.1', 'Motorcycle rider injured in collision with heavy transport vehicle or bus: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V24.2', 'Motorcycle rider injured in collision with heavy transport vehicle or bus: Unspecified motorcycle rider injured in nontraffic accident', 'ICD10_2010'), +('V24.3', 'Motorcycle rider injured in collision with heavy transport vehicle or bus: Person injured while boarding or alighting', 'ICD10_2010'), +('V24.4', 'Motorcycle rider injured in collision with heavy transport vehicle or bus: Driver injured in traffic accident', 'ICD10_2010'), +('V24.5', 'Motorcycle rider injured in collision with heavy transport vehicle or bus: Passenger injured in traffic accident', 'ICD10_2010'), +('V24.9', 'Motorcycle rider injured in collision with heavy transport vehicle or bus: Unspecified motorcycle rider injured in traffic accident', 'ICD10_2010'), +('V25', 'Motorcycle rider injured in collision with railway train or railway vehicle', 'ICD10_2010'), +('V25.0', 'Motorcycle rider injured in collision with railway train or railway vehicle: Driver injured in nontraffic accident', 'ICD10_2010'), +('V25.1', 'Motorcycle rider injured in collision with railway train or railway vehicle: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V25.2', 'Motorcycle rider injured in collision with railway train or railway vehicle: Unspecified motorcycle rider injured in nontraffic accident', 'ICD10_2010'), +('V25.3', 'Motorcycle rider injured in collision with railway train or railway vehicle: Person injured while boarding or alighting', 'ICD10_2010'), +('V25.4', 'Motorcycle rider injured in collision with railway train or railway vehicle: Driver injured in traffic accident', 'ICD10_2010'), +('V25.5', 'Motorcycle rider injured in collision with railway train or railway vehicle: Passenger injured in traffic accident', 'ICD10_2010'), +('V25.9', 'Motorcycle rider injured in collision with railway train or railway vehicle: Unspecified motorcycle rider injured in traffic accident', 'ICD10_2010'), +('V26', 'Motorcycle rider injured in collision with other nonmotor vehicle', 'ICD10_2010'), +('V26.0', 'Motorcycle rider injured in collision with other nonmotor vehicle: Driver injured in nontraffic accident', 'ICD10_2010'), +('V26.1', 'Motorcycle rider injured in collision with other nonmotor vehicle: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V26.2', 'Motorcycle rider injured in collision with other nonmotor vehicle: Unspecified motorcycle rider injured in nontraffic accident', 'ICD10_2010'), +('V26.3', 'Motorcycle rider injured in collision with other nonmotor vehicle: Person injured while boarding or alighting', 'ICD10_2010'), +('V26.4', 'Motorcycle rider injured in collision with other nonmotor vehicle: Driver injured in traffic accident', 'ICD10_2010'), +('V26.5', 'Motorcycle rider injured in collision with other nonmotor vehicle: Passenger injured in traffic accident', 'ICD10_2010'), +('V26.9', 'Motorcycle rider injured in collision with other nonmotor vehicle: Unspecified motorcycle rider injured in traffic accident', 'ICD10_2010'), +('V27', 'Motorcycle rider injured in collision with fixed or stationary object', 'ICD10_2010'), +('V27.0', 'Motorcycle rider injured in collision with fixed or stationary object: Driver injured in nontraffic accident', 'ICD10_2010'), +('V27.1', 'Motorcycle rider injured in collision with fixed or stationary object: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V27.2', 'Motorcycle rider injured in collision with fixed or stationary object: Unspecified motorcycle rider injured in nontraffic accident', 'ICD10_2010'), +('V27.3', 'Motorcycle rider injured in collision with fixed or stationary object: Person injured while boarding or alighting', 'ICD10_2010'), +('V27.4', 'Motorcycle rider injured in collision with fixed or stationary object: Driver injured in traffic accident', 'ICD10_2010'), +('V27.5', 'Motorcycle rider injured in collision with fixed or stationary object: Passenger injured in traffic accident', 'ICD10_2010'), +('V27.9', 'Motorcycle rider injured in collision with fixed or stationary object: Unspecified motorcycle rider injured in traffic accident', 'ICD10_2010'), +('V28', 'Motorcycle rider injured in noncollision transport accident', 'ICD10_2010'), +('V28.0', 'Motorcycle rider injured in noncollision transport accident: Driver injured in nontraffic accident', 'ICD10_2010'), +('V28.1', 'Motorcycle rider injured in noncollision transport accident: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V28.2', 'Motorcycle rider injured in noncollision transport accident: Unspecified motorcycle rider injured in nontraffic accident', 'ICD10_2010'), +('V28.3', 'Motorcycle rider injured in noncollision transport accident: Person injured while boarding or alighting', 'ICD10_2010'), +('V28.4', 'Motorcycle rider injured in noncollision transport accident: Driver injured in traffic accident', 'ICD10_2010'), +('V28.5', 'Motorcycle rider injured in noncollision transport accident: Passenger injured in traffic accident', 'ICD10_2010'), +('V28.9', 'Motorcycle rider injured in noncollision transport accident: Unspecified motorcycle rider injured in traffic accident', 'ICD10_2010'), +('V29', 'Motorcycle rider injured in other and unspecified transport accidents', 'ICD10_2010'), +('V29.0', 'Driver injured in collision with other and unspecified motor vehicles in nontraffic accident', 'ICD10_2010'), +('V29.1', 'Passenger injured in collision with other and unspecified motor vehicles in nontraffic accident', 'ICD10_2010'), +('V29.2', 'Unspecified motorcycle rider injured in collision with other and unspecified motor vehicles in nontraffic accident', 'ICD10_2010'), +('V29.3', 'Motorcycle rider [any] injured in unspecified nontraffic accident', 'ICD10_2010'), +('V29.4', 'Driver injured in collision with other and unspecified motor vehicles in traffic accident', 'ICD10_2010'), +('V29.5', 'Passenger injured in collision with other and unspecified motor vehicles in traffic accident', 'ICD10_2010'), +('V29.6', 'Unspecified motorcycle rider injured in collision with other and unspecified motor vehicles in traffic accident', 'ICD10_2010'), +('V29.8', 'Motorcycle rider [any] injured in other specified transport accidents', 'ICD10_2010'), +('V29.9', 'Motorcycle rider [any] injured in unspecified traffic accident', 'ICD10_2010'), +('V30', 'Occupant of three-wheeled motor vehicle injured in collision with pedestrian or animal', 'ICD10_2010'), +('V30.0', 'Occupant of three-wheeled motor vehicle injured in collision with pedestrian or animal: Driver injured in nontraffic accident', 'ICD10_2010'), +('V30.1', 'Occupant of three-wheeled motor vehicle injured in collision with pedestrian or animal: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V30.2', 'Occupant of three-wheeled motor vehicle injured in collision with pedestrian or animal: Person on outside of vehicle injured in nontraffic accident', 'ICD10_2010'), +('V30.3', 'Occupant of three-wheeled motor vehicle injured in collision with pedestrian or animal: Unspecified occupant of three-wheeled motor vehicle injured in', 'ICD10_2010'), +('V30.4', 'Occupant of three-wheeled motor vehicle injured in collision with pedestrian or animal: Person injured while boarding or alighting', 'ICD10_2010'), +('V30.5', 'Occupant of three-wheeled motor vehicle injured in collision with pedestrian or animal: Driver injured in traffic accident', 'ICD10_2010'), +('V30.6', 'Occupant of three-wheeled motor vehicle injured in collision with pedestrian or animal: Passenger injured in traffic accident', 'ICD10_2010'), +('V30.7', 'Occupant of three-wheeled motor vehicle injured in collision with pedestrian or animal: Person on outside of vehicle injured in traffic accident', 'ICD10_2010'), +('V30.9', 'Occupant of three-wheeled motor vehicle injured in collision with pedestrian or animal: Unspecified occupant of three-wheeled motor vehicle injured in', 'ICD10_2010'), +('V31', 'Occupant of three-wheeled motor vehicle injured in collision with pedal cycle', 'ICD10_2010'), +('V31.0', 'Occupant of three-wheeled motor vehicle injured in collision with pedal cycle: Driver injured in nontraffic accident', 'ICD10_2010'), +('V31.1', 'Occupant of three-wheeled motor vehicle injured in collision with pedal cycle: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V31.2', 'Occupant of three-wheeled motor vehicle injured in collision with pedal cycle: Person on outside of vehicle injured in nontraffic accident', 'ICD10_2010'), +('V31.3', 'Occupant of three-wheeled motor vehicle injured in collision with pedal cycle: Unspecified occupant of three-wheeled motor vehicle injured in nontraff', 'ICD10_2010'), +('V31.4', 'Occupant of three-wheeled motor vehicle injured in collision with pedal cycle: Person injured while boarding or alighting', 'ICD10_2010'), +('V31.5', 'Occupant of three-wheeled motor vehicle injured in collision with pedal cycle: Driver injured in traffic accident', 'ICD10_2010'); +INSERT INTO `icd10` (`ID_ICD10`, `Diagnosa`, `Versi_ICD10`) VALUES +('V31.6', 'Occupant of three-wheeled motor vehicle injured in collision with pedal cycle: Passenger injured in traffic accident', 'ICD10_2010'), +('V31.7', 'Occupant of three-wheeled motor vehicle injured in collision with pedal cycle: Person on outside of vehicle injured in traffic accident', 'ICD10_2010'), +('V31.9', 'Occupant of three-wheeled motor vehicle injured in collision with pedal cycle: Unspecified occupant of three-wheeled motor vehicle injured in traffic ', 'ICD10_2010'), +('V32', 'Occupant of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle', 'ICD10_2010'), +('V32.0', 'Occupant of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle: Driver injured in nontraffic accident', 'ICD10_2010'), +('V32.1', 'Occupant of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle: Passenger injured in nontraffic accident', 'ICD10_2010'), +('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 nontraf', 'ICD10_2010'), +('V32.3', 'Occupant of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle: Unspecified occupant of three-wheeled motor veh', 'ICD10_2010'), +('V32.4', 'Occupant of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle: Person injured while boarding or alighting', 'ICD10_2010'), +('V32.5', 'Occupant of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle: Driver injured in traffic accident', 'ICD10_2010'), +('V32.6', 'Occupant of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle: Passenger injured in traffic accident', 'ICD10_2010'), +('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', 'ICD10_2010'), +('V32.9', 'Occupant of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle: Unspecified occupant of three-wheeled motor veh', 'ICD10_2010'), +('V33', 'Occupant of three-wheeled motor vehicle injured in collision with car, pick-up truck or van', 'ICD10_2010'), +('V33.0', 'Occupant of three-wheeled motor vehicle injured in collision with car, pick-up truck or van: Driver injured in nontraffic accident', 'ICD10_2010'), +('V33.1', 'Occupant of three-wheeled motor vehicle injured in collision with car, pick-up truck or van: Passenger injured in nontraffic accident', 'ICD10_2010'), +('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 accide', 'ICD10_2010'), +('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 injur', 'ICD10_2010'), +('V33.4', 'Occupant of three-wheeled motor vehicle injured in collision with car, pick-up truck or van: Person injured while boarding or alighting', 'ICD10_2010'), +('V33.5', 'Occupant of three-wheeled motor vehicle injured in collision with car, pick-up truck or van: Driver injured in traffic accident', 'ICD10_2010'), +('V33.6', 'Occupant of three-wheeled motor vehicle injured in collision with car, pick-up truck or van: Passenger injured in traffic accident', 'ICD10_2010'), +('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', 'ICD10_2010'), +('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 injur', 'ICD10_2010'), +('V34', 'Occupant of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus', 'ICD10_2010'), +('V34.0', 'Occupant of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus: Driver injured in nontraffic accident', 'ICD10_2010'), +('V34.1', 'Occupant of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus: Passenger injured in nontraffic accident', 'ICD10_2010'), +('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 a', 'ICD10_2010'), +('V34.3', 'Occupant of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus: Unspecified occupant of three-wheeled motor vehicle ', 'ICD10_2010'), +('V34.4', 'Occupant of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus: Person injured while boarding or alighting', 'ICD10_2010'), +('V34.5', 'Occupant of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus: Driver injured in traffic accident', 'ICD10_2010'), +('V34.6', 'Occupant of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus: Passenger injured in traffic accident', 'ICD10_2010'), +('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 acci', 'ICD10_2010'), +('V34.9', 'Occupant of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus: Unspecified occupant of three-wheeled motor vehicle ', 'ICD10_2010'), +('V35', 'Occupant of three-wheeled motor vehicle injured in collision with railway train or railway vehicle', 'ICD10_2010'), +('V35.0', 'Occupant of three-wheeled motor vehicle injured in collision with railway train or railway vehicle: Driver injured in nontraffic accident', 'ICD10_2010'), +('V35.1', 'Occupant of three-wheeled motor vehicle injured in collision with railway train or railway vehicle: Passenger injured in nontraffic accident', 'ICD10_2010'), +('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', 'ICD10_2010'), +('V35.3', 'Occupant of three-wheeled motor vehicle injured in collision with railway train or railway vehicle: Unspecified occupant of three-wheeled motor vehicl', 'ICD10_2010'), +('V35.4', 'Occupant of three-wheeled motor vehicle injured in collision with railway train or railway vehicle: Person injured while boarding or alighting', 'ICD10_2010'), +('V35.5', 'Occupant of three-wheeled motor vehicle injured in collision with railway train or railway vehicle: Driver injured in traffic accident', 'ICD10_2010'), +('V35.6', 'Occupant of three-wheeled motor vehicle injured in collision with railway train or railway vehicle: Passenger injured in traffic accident', 'ICD10_2010'), +('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 ac', 'ICD10_2010'), +('V35.9', 'Occupant of three-wheeled motor vehicle injured in collision with railway train or railway vehicle: Unspecified occupant of three-wheeled motor vehicl', 'ICD10_2010'), +('V36', 'Occupant of three-wheeled motor vehicle injured in collision with other nonmotor vehicle', 'ICD10_2010'), +('V36.0', 'Occupant of three-wheeled motor vehicle injured in collision with other nonmotor vehicle: Driver injured in nontraffic accident', 'ICD10_2010'), +('V36.1', 'Occupant of three-wheeled motor vehicle injured in collision with other nonmotor vehicle: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V36.2', 'Occupant of three-wheeled motor vehicle injured in collision with other nonmotor vehicle: Person on outside of vehicle injured in nontraffic accident', 'ICD10_2010'), +('V36.3', 'Occupant of three-wheeled motor vehicle injured in collision with other nonmotor vehicle: Unspecified occupant of three-wheeled motor vehicle injured ', 'ICD10_2010'), +('V36.4', 'Occupant of three-wheeled motor vehicle injured in collision with other nonmotor vehicle: Person injured while boarding or alighting', 'ICD10_2010'), +('V36.5', 'Occupant of three-wheeled motor vehicle injured in collision with other nonmotor vehicle: Driver injured in traffic accident', 'ICD10_2010'), +('V36.6', 'Occupant of three-wheeled motor vehicle injured in collision with other nonmotor vehicle: Passenger injured in traffic accident', 'ICD10_2010'), +('V36.7', 'Occupant of three-wheeled motor vehicle injured in collision with other nonmotor vehicle: Person on outside of vehicle injured in traffic accident', 'ICD10_2010'), +('V36.9', 'Occupant of three-wheeled motor vehicle injured in collision with other nonmotor vehicle: Unspecified occupant of three-wheeled motor vehicle injured ', 'ICD10_2010'), +('V37', 'Occupant of three-wheeled motor vehicle injured in collision with fixed or stationary object', 'ICD10_2010'), +('V37.0', 'Occupant of three-wheeled motor vehicle injured in collision with fixed or stationary object: Driver injured in nontraffic accident', 'ICD10_2010'), +('V37.1', 'Occupant of three-wheeled motor vehicle injured in collision with fixed or stationary object: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V37.2', 'Occupant of three-wheeled motor vehicle injured in collision with fixed or stationary object: Person on outside of vehicle injured in nontraffic accid', 'ICD10_2010'), +('V37.3', 'Occupant of three-wheeled motor vehicle injured in collision with fixed or stationary object: Unspecified occupant of three-wheeled motor vehicle inju', 'ICD10_2010'), +('V37.4', 'Occupant of three-wheeled motor vehicle injured in collision with fixed or stationary object: Person injured while boarding or alighting', 'ICD10_2010'), +('V37.5', 'Occupant of three-wheeled motor vehicle injured in collision with fixed or stationary object: Driver injured in traffic accident', 'ICD10_2010'), +('V37.6', 'Occupant of three-wheeled motor vehicle injured in collision with fixed or stationary object: Passenger injured in traffic accident', 'ICD10_2010'), +('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', 'ICD10_2010'), +('V37.9', 'Occupant of three-wheeled motor vehicle injured in collision with fixed or stationary object: Unspecified occupant of three-wheeled motor vehicle inju', 'ICD10_2010'), +('V38', 'Occupant of three-wheeled motor vehicle injured in noncollision transport accident', 'ICD10_2010'), +('V38.0', 'Occupant of three-wheeled motor vehicle injured in noncollision transport accident: Driver injured in nontraffic accident', 'ICD10_2010'), +('V38.1', 'Occupant of three-wheeled motor vehicle injured in noncollision transport accident: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V38.2', 'Occupant of three-wheeled motor vehicle injured in noncollision transport accident: Person on outside of vehicle injured in nontraffic accident', 'ICD10_2010'), +('V38.3', 'Occupant of three-wheeled motor vehicle injured in noncollision transport accident: Unspecified occupant of three-wheeled motor vehicle injured in non', 'ICD10_2010'), +('V38.4', 'Occupant of three-wheeled motor vehicle injured in noncollision transport accident: Person injured while boarding or alighting', 'ICD10_2010'), +('V38.5', 'Occupant of three-wheeled motor vehicle injured in noncollision transport accident: Driver injured in traffic accident', 'ICD10_2010'), +('V38.6', 'Occupant of three-wheeled motor vehicle injured in noncollision transport accident: Passenger injured in traffic accident', 'ICD10_2010'), +('V38.7', 'Occupant of three-wheeled motor vehicle injured in noncollision transport accident: Person on outside of vehicle injured in traffic accident', 'ICD10_2010'), +('V38.9', 'Occupant of three-wheeled motor vehicle injured in noncollision transport accident: Unspecified occupant of three-wheeled motor vehicle injured in tra', 'ICD10_2010'), +('V39', 'Occupant of three-wheeled motor vehicle injured in other and unspecified transport accidents', 'ICD10_2010'), +('V39.0', 'Driver injured in collision with other and unspecified motor vehicles in nontraffic accident', 'ICD10_2010'), +('V39.1', 'Passenger injured in collision with other and unspecified motor vehicles in nontraffic accident', 'ICD10_2010'), +('V39.2', 'Unspecified occupant of three-wheeled motor vehicle injured in collision with other and unspecified motor vehicles in nontraffic accident', 'ICD10_2010'), +('V39.3', 'Occupant [any] of three-wheeled motor vehicle injured in unspecified nontraffic accident', 'ICD10_2010'), +('V39.4', 'Driver injured in collision with other and unspecified motor vehicles in traffic accident', 'ICD10_2010'), +('V39.5', 'Passenger injured in collision with other and unspecified motor vehicles in traffic accident', 'ICD10_2010'), +('V39.6', 'Unspecified occupant of three-wheeled motor vehicle injured in collision with other and unspecified motor vehicles in traffic accident', 'ICD10_2010'), +('V39.8', 'Occupant [any] of three-wheeled motor vehicle injured in other specified transport accidents', 'ICD10_2010'), +('V39.9', 'Occupant [any] of three-wheeled motor vehicle injured in unspecified traffic accident', 'ICD10_2010'), +('V40', 'Car occupant injured in collision with pedestrian or animal', 'ICD10_2010'), +('V40.0', 'Car occupant injured in collision with pedestrian or animal: Driver injured in nontraffic accident', 'ICD10_2010'), +('V40.1', 'Car occupant injured in collision with pedestrian or animal: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V40.2', 'Car occupant injured in collision with pedestrian or animal: Person on outside of vehicle injured in nontraffic accident', 'ICD10_2010'), +('V40.3', 'Car occupant injured in collision with pedestrian or animal: Unspecified car occupant injured in nontraffic accident', 'ICD10_2010'), +('V40.4', 'Car occupant injured in collision with pedestrian or animal: Person injured while boarding or alighting', 'ICD10_2010'), +('V40.5', 'Car occupant injured in collision with pedestrian or animal: Driver injured in traffic accident', 'ICD10_2010'), +('V40.6', 'Car occupant injured in collision with pedestrian or animal: Passenger injured in traffic accident', 'ICD10_2010'), +('V40.7', 'Car occupant injured in collision with pedestrian or animal: Person on outside of vehicle injured in traffic accident', 'ICD10_2010'), +('V40.9', 'Car occupant injured in collision with pedestrian or animal: Unspecified car occupant injured in traffic accident', 'ICD10_2010'), +('V41', 'Car occupant injured in collision with pedal cycle', 'ICD10_2010'), +('V41.0', 'Car occupant injured in collision with pedal cycle: Driver injured in nontraffic accident', 'ICD10_2010'), +('V41.1', 'Car occupant injured in collision with pedal cycle: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V41.2', 'Car occupant injured in collision with pedal cycle: Person on outside of vehicle injured in nontraffic accident', 'ICD10_2010'), +('V41.3', 'Car occupant injured in collision with pedal cycle: Unspecified car occupant injured in nontraffic accident', 'ICD10_2010'), +('V41.4', 'Car occupant injured in collision with pedal cycle: Person injured while boarding or alighting', 'ICD10_2010'), +('V41.5', 'Car occupant injured in collision with pedal cycle: Driver injured in traffic accident', 'ICD10_2010'), +('V41.6', 'Car occupant injured in collision with pedal cycle: Passenger injured in traffic accident', 'ICD10_2010'), +('V41.7', 'Car occupant injured in collision with pedal cycle: Person on outside of vehicle injured in traffic accident', 'ICD10_2010'), +('V41.9', 'Car occupant injured in collision with pedal cycle: Unspecified car occupant injured in traffic accident', 'ICD10_2010'), +('V42', 'Car occupant injured in collision with two- or three-wheeled motor vehicle', 'ICD10_2010'), +('V42.0', 'Car occupant injured in collision with two- or three-wheeled motor vehicle: Driver injured in nontraffic accident', 'ICD10_2010'), +('V42.1', 'Car occupant injured in collision with two- or three-wheeled motor vehicle: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V42.2', 'Car occupant injured in collision with two- or three-wheeled motor vehicle: Person on outside of vehicle injured in nontraffic accident', 'ICD10_2010'), +('V42.3', 'Car occupant injured in collision with two- or three-wheeled motor vehicle: Unspecified car occupant injured in nontraffic accident', 'ICD10_2010'), +('V42.4', 'Car occupant injured in collision with two- or three-wheeled motor vehicle: Person injured while boarding or alighting', 'ICD10_2010'), +('V42.5', 'Car occupant injured in collision with two- or three-wheeled motor vehicle: Driver injured in traffic accident', 'ICD10_2010'), +('V42.6', 'Car occupant injured in collision with two- or three-wheeled motor vehicle: Passenger injured in traffic accident', 'ICD10_2010'), +('V42.7', 'Car occupant injured in collision with two- or three-wheeled motor vehicle: Person on outside of vehicle injured in traffic accident', 'ICD10_2010'), +('V42.9', 'Car occupant injured in collision with two- or three-wheeled motor vehicle: Unspecified car occupant injured in traffic accident', 'ICD10_2010'), +('V43', 'Car occupant injured in collision with car, pick-up truck or van', 'ICD10_2010'), +('V43.0', 'Car occupant injured in collision with car, pick-up truck or van: Driver injured in nontraffic accident', 'ICD10_2010'), +('V43.1', 'Car occupant injured in collision with car, pick-up truck or van: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V43.2', 'Car occupant injured in collision with car, pick-up truck or van: Person on outside of vehicle injured in nontraffic accident', 'ICD10_2010'), +('V43.3', 'Car occupant injured in collision with car, pick-up truck or van: Unspecified car occupant injured in nontraffic accident', 'ICD10_2010'), +('V43.4', 'Car occupant injured in collision with car, pick-up truck or van: Person injured while boarding or alighting', 'ICD10_2010'), +('V43.5', 'Car occupant injured in collision with car, pick-up truck or van: Driver injured in traffic accident', 'ICD10_2010'), +('V43.6', 'Car occupant injured in collision with car, pick-up truck or van: Passenger injured in traffic accident', 'ICD10_2010'), +('V43.7', 'Car occupant injured in collision with car, pick-up truck or van: Person on outside of vehicle injured in traffic accident', 'ICD10_2010'), +('V43.9', 'Car occupant injured in collision with car, pick-up truck or van: Unspecified car occupant injured in traffic accident', 'ICD10_2010'), +('V44', 'Car occupant injured in collision with heavy transport vehicle or bus', 'ICD10_2010'), +('V44.0', 'Car occupant injured in collision with heavy transport vehicle or bus: Driver injured in nontraffic accident', 'ICD10_2010'), +('V44.1', 'Car occupant injured in collision with heavy transport vehicle or bus: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V44.2', 'Car occupant injured in collision with heavy transport vehicle or bus: Person on outside of vehicle injured in nontraffic accident', 'ICD10_2010'), +('V44.3', 'Car occupant injured in collision with heavy transport vehicle or bus: Unspecified car occupant injured in nontraffic accident', 'ICD10_2010'), +('V44.4', 'Car occupant injured in collision with heavy transport vehicle or bus: Person injured while boarding or alighting', 'ICD10_2010'), +('V44.5', 'Car occupant injured in collision with heavy transport vehicle or bus: Driver injured in traffic accident', 'ICD10_2010'), +('V44.6', 'Car occupant injured in collision with heavy transport vehicle or bus: Passenger injured in traffic accident', 'ICD10_2010'), +('V44.7', 'Car occupant injured in collision with heavy transport vehicle or bus: Person on outside of vehicle injured in traffic accident', 'ICD10_2010'), +('V44.9', 'Car occupant injured in collision with heavy transport vehicle or bus: Unspecified car occupant injured in traffic accident', 'ICD10_2010'), +('V45', 'Car occupant injured in collision with railway train or railway vehicle', 'ICD10_2010'), +('V45.0', 'Car occupant injured in collision with railway train or railway vehicle: Driver injured in nontraffic accident', 'ICD10_2010'), +('V45.1', 'Car occupant injured in collision with railway train or railway vehicle: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V45.2', 'Car occupant injured in collision with railway train or railway vehicle: Person on outside of vehicle injured in nontraffic accident', 'ICD10_2010'), +('V45.3', 'Car occupant injured in collision with railway train or railway vehicle: Unspecified car occupant injured in nontraffic accident', 'ICD10_2010'), +('V45.4', 'Car occupant injured in collision with railway train or railway vehicle: Person injured while boarding or alighting', 'ICD10_2010'), +('V45.5', 'Car occupant injured in collision with railway train or railway vehicle: Driver injured in traffic accident', 'ICD10_2010'), +('V45.6', 'Car occupant injured in collision with railway train or railway vehicle: Passenger injured in traffic accident', 'ICD10_2010'), +('V45.7', 'Car occupant injured in collision with railway train or railway vehicle: Person on outside of vehicle injured in traffic accident', 'ICD10_2010'), +('V45.9', 'Car occupant injured in collision with railway train or railway vehicle: Unspecified car occupant injured in traffic accident', 'ICD10_2010'), +('V46', 'Car occupant injured in collision with other nonmotor vehicle', 'ICD10_2010'), +('V46.0', 'Car occupant injured in collision with other nonmotor vehicle: Driver injured in nontraffic accident', 'ICD10_2010'), +('V46.1', 'Car occupant injured in collision with other nonmotor vehicle: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V46.2', 'Car occupant injured in collision with other nonmotor vehicle: Person on outside of vehicle injured in nontraffic accident', 'ICD10_2010'), +('V46.3', 'Car occupant injured in collision with other nonmotor vehicle: Unspecified car occupant injured in nontraffic accident', 'ICD10_2010'), +('V46.4', 'Car occupant injured in collision with other nonmotor vehicle: Person injured while boarding or alighting', 'ICD10_2010'), +('V46.5', 'Car occupant injured in collision with other nonmotor vehicle: Driver injured in traffic accident', 'ICD10_2010'), +('V46.6', 'Car occupant injured in collision with other nonmotor vehicle: Passenger injured in traffic accident', 'ICD10_2010'), +('V46.7', 'Car occupant injured in collision with other nonmotor vehicle: Person on outside of vehicle injured in traffic accident', 'ICD10_2010'), +('V46.9', 'Car occupant injured in collision with other nonmotor vehicle: Unspecified car occupant injured in traffic accident', 'ICD10_2010'), +('V47', 'Car occupant injured in collision with fixed or stationary object', 'ICD10_2010'), +('V47.0', 'Car occupant injured in collision with fixed or stationary object: Driver injured in nontraffic accident', 'ICD10_2010'), +('V47.1', 'Car occupant injured in collision with fixed or stationary object: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V47.2', 'Car occupant injured in collision with fixed or stationary object: Person on outside of vehicle injured in nontraffic accident', 'ICD10_2010'), +('V47.3', 'Car occupant injured in collision with fixed or stationary object: Unspecified car occupant injured in nontraffic accident', 'ICD10_2010'), +('V47.4', 'Car occupant injured in collision with fixed or stationary object: Person injured while boarding or alighting', 'ICD10_2010'), +('V47.5', 'Car occupant injured in collision with fixed or stationary object: Driver injured in traffic accident', 'ICD10_2010'), +('V47.6', 'Car occupant injured in collision with fixed or stationary object: Passenger injured in traffic accident', 'ICD10_2010'), +('V47.7', 'Car occupant injured in collision with fixed or stationary object: Person on outside of vehicle injured in traffic accident', 'ICD10_2010'), +('V47.9', 'Car occupant injured in collision with fixed or stationary object: Unspecified car occupant injured in traffic accident', 'ICD10_2010'), +('V48', 'Car occupant injured in noncollision transport accident', 'ICD10_2010'), +('V48.0', 'Car occupant injured in noncollision transport accident: Driver injured in nontraffic accident', 'ICD10_2010'), +('V48.1', 'Car occupant injured in noncollision transport accident: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V48.2', 'Car occupant injured in noncollision transport accident: Person on outside of vehicle injured in nontraffic accident', 'ICD10_2010'), +('V48.3', 'Car occupant injured in noncollision transport accident: Unspecified car occupant injured in nontraffic accident', 'ICD10_2010'), +('V48.4', 'Car occupant injured in noncollision transport accident: Person injured while boarding or alighting', 'ICD10_2010'), +('V48.5', 'Car occupant injured in noncollision transport accident: Driver injured in traffic accident', 'ICD10_2010'), +('V48.6', 'Car occupant injured in noncollision transport accident: Passenger injured in traffic accident', 'ICD10_2010'), +('V48.7', 'Car occupant injured in noncollision transport accident: Person on outside of vehicle injured in traffic accident', 'ICD10_2010'), +('V48.9', 'Car occupant injured in noncollision transport accident: Unspecified car occupant injured in traffic accident', 'ICD10_2010'), +('V49', 'Car occupant injured in other and unspecified transport accidents', 'ICD10_2010'), +('V49.0', 'Driver injured in collision with other and unspecified motor vehicles in nontraffic accident', 'ICD10_2010'), +('V49.1', 'Passenger injured in collision with other and unspecified motor vehicles in nontraffic accident', 'ICD10_2010'), +('V49.2', 'Unspecified car occupant injured in collision with other and unspecified motor vehicles in nontraffic accident', 'ICD10_2010'), +('V49.3', 'Car occupant [any] injured in unspecified nontraffic accident', 'ICD10_2010'), +('V49.4', 'Driver injured in collision with other and unspecified motor vehicles in traffic accident', 'ICD10_2010'), +('V49.5', 'Passenger injured in collision with other and unspecified motor vehicles in traffic accident', 'ICD10_2010'), +('V49.6', 'Unspecified car occupant injured in collision with other and unspecified motor vehicles in traffic accident', 'ICD10_2010'), +('V49.8', 'Car occupant [any] injured in other specified transport accidents', 'ICD10_2010'), +('V49.9', 'Car occupant [any] injured in unspecified traffic accident', 'ICD10_2010'), +('V50', 'Occupant of pick-up truck or van injured in collision with pedestrian or animal', 'ICD10_2010'), +('V50.0', 'Occupant of pick-up truck or van injured in collision with pedestrian or animal: Driver injured in nontraffic accident', 'ICD10_2010'), +('V50.1', 'Occupant of pick-up truck or van injured in collision with pedestrian or animal: Passenger injured in nontraffic accident', 'ICD10_2010'), +('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', 'ICD10_2010'), +('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 ac', 'ICD10_2010'), +('V50.4', 'Occupant of pick-up truck or van injured in collision with pedestrian or animal: Person injured while boarding or alighting', 'ICD10_2010'), +('V50.5', 'Occupant of pick-up truck or van injured in collision with pedestrian or animal: Driver injured in traffic accident', 'ICD10_2010'), +('V50.6', 'Occupant of pick-up truck or van injured in collision with pedestrian or animal: Passenger injured in traffic accident', 'ICD10_2010'), +('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', 'ICD10_2010'), +('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 accid', 'ICD10_2010'), +('V51', 'Occupant of pick-up truck or van injured in collision with pedal cycle', 'ICD10_2010'), +('V51.0', 'Occupant of pick-up truck or van injured in collision with pedal cycle: Driver injured in nontraffic accident', 'ICD10_2010'), +('V51.1', 'Occupant of pick-up truck or van injured in collision with pedal cycle: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V51.2', 'Occupant of pick-up truck or van injured in collision with pedal cycle: Person on outside of vehicle injured in nontraffic accident', 'ICD10_2010'), +('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', 'ICD10_2010'), +('V51.4', 'Occupant of pick-up truck or van injured in collision with pedal cycle: Person injured while boarding or alighting', 'ICD10_2010'), +('V51.5', 'Occupant of pick-up truck or van injured in collision with pedal cycle: Driver injured in traffic accident', 'ICD10_2010'), +('V51.6', 'Occupant of pick-up truck or van injured in collision with pedal cycle: Passenger injured in traffic accident', 'ICD10_2010'), +('V51.7', 'Occupant of pick-up truck or van injured in collision with pedal cycle: Person on outside of vehicle injured in traffic accident', 'ICD10_2010'), +('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', 'ICD10_2010'), +('V52', 'Occupant of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle', 'ICD10_2010'), +('V52.0', 'Occupant of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle: Driver injured in nontraffic accident', 'ICD10_2010'), +('V52.1', 'Occupant of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle: Passenger injured in nontraffic accident', 'ICD10_2010'), +('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 acc', 'ICD10_2010'), +('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 i', 'ICD10_2010'), +('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', 'ICD10_2010'), +('V52.5', 'Occupant of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle: Driver injured in traffic accident', 'ICD10_2010'), +('V52.6', 'Occupant of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle: Passenger injured in traffic accident', 'ICD10_2010'), +('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 accide', 'ICD10_2010'), +('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 i', 'ICD10_2010'), +('V53', 'Occupant of pick-up truck or van injured in collision with car, pick-up truck or van', 'ICD10_2010'), +('V53.0', 'Occupant of pick-up truck or van injured in collision with car, pick-up truck or van: Driver injured in nontraffic accident', 'ICD10_2010'), +('V53.1', 'Occupant of pick-up truck or van injured in collision with car, pick-up truck or van: Passenger injured in nontraffic accident', 'ICD10_2010'), +('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', 'ICD10_2010'), +('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 nontraff', 'ICD10_2010'), +('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', 'ICD10_2010'), +('V53.5', 'Occupant of pick-up truck or van injured in collision with car, pick-up truck or van: Driver injured in traffic accident', 'ICD10_2010'), +('V53.6', 'Occupant of pick-up truck or van injured in collision with car, pick-up truck or van: Passenger injured in traffic accident', 'ICD10_2010'), +('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', 'ICD10_2010'), +('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 ', 'ICD10_2010'), +('V54', 'Occupant of pick-up truck or van injured in collision with heavy transport vehicle or bus', 'ICD10_2010'), +('V54.0', 'Occupant of pick-up truck or van injured in collision with heavy transport vehicle or bus: Driver injured in nontraffic accident', 'ICD10_2010'), +('V54.1', 'Occupant of pick-up truck or van injured in collision with heavy transport vehicle or bus: Passenger injured in nontraffic accident', 'ICD10_2010'), +('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', 'ICD10_2010'), +('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 non', 'ICD10_2010'), +('V54.4', 'Occupant of pick-up truck or van injured in collision with heavy transport vehicle or bus: Person injured while boarding or alighting', 'ICD10_2010'), +('V54.5', 'Occupant of pick-up truck or van injured in collision with heavy transport vehicle or bus: Driver injured in traffic accident', 'ICD10_2010'), +('V54.6', 'Occupant of pick-up truck or van injured in collision with heavy transport vehicle or bus: Passenger injured in traffic accident', 'ICD10_2010'), +('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', 'ICD10_2010'), +('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 tra', 'ICD10_2010'), +('V55', 'Occupant of pick-up truck or van injured in collision with railway train or railway vehicle', 'ICD10_2010'), +('V55.0', 'Occupant of pick-up truck or van injured in collision with railway train or railway vehicle: Driver injured in nontraffic accident', 'ICD10_2010'), +('V55.1', 'Occupant of pick-up truck or van injured in collision with railway train or railway vehicle: Passenger injured in nontraffic accident', 'ICD10_2010'), +('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 accide', 'ICD10_2010'), +('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 n', 'ICD10_2010'), +('V55.4', 'Occupant of pick-up truck or van injured in collision with railway train or railway vehicle: Person injured while boarding or alighting', 'ICD10_2010'), +('V55.5', 'Occupant of pick-up truck or van injured in collision with railway train or railway vehicle: Driver injured in traffic accident', 'ICD10_2010'), +('V55.6', 'Occupant of pick-up truck or van injured in collision with railway train or railway vehicle: Passenger injured in traffic accident', 'ICD10_2010'), +('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', 'ICD10_2010'), +('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 t', 'ICD10_2010'), +('V56', 'Occupant of pick-up truck or van injured in collision with other nonmotor vehicle', 'ICD10_2010'), +('V56.0', 'Occupant of pick-up truck or van injured in collision with other nonmotor vehicle: Driver injured in nontraffic accident', 'ICD10_2010'), +('V56.1', 'Occupant of pick-up truck or van injured in collision with other nonmotor vehicle: Passenger injured in nontraffic accident', 'ICD10_2010'), +('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', 'ICD10_2010'), +('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 ', 'ICD10_2010'), +('V56.4', 'Occupant of pick-up truck or van injured in collision with other nonmotor vehicle: Person injured while boarding or alighting', 'ICD10_2010'), +('V56.5', 'Occupant of pick-up truck or van injured in collision with other nonmotor vehicle: Driver injured in traffic accident', 'ICD10_2010'), +('V56.6', 'Occupant of pick-up truck or van injured in collision with other nonmotor vehicle: Passenger injured in traffic accident', 'ICD10_2010'), +('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', 'ICD10_2010'), +('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 acc', 'ICD10_2010'), +('V57', 'Occupant of pick-up truck or van injured in collision with fixed or stationary object', 'ICD10_2010'), +('V57.0', 'Occupant of pick-up truck or van injured in collision with fixed or stationary object: Driver injured in nontraffic accident', 'ICD10_2010'), +('V57.1', 'Occupant of pick-up truck or van injured in collision with fixed or stationary object: Passenger injured in nontraffic accident', 'ICD10_2010'), +('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', 'ICD10_2010'), +('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 nontraf', 'ICD10_2010'), +('V57.4', 'Occupant of pick-up truck or van injured in collision with fixed or stationary object: Person injured while boarding or alighting', 'ICD10_2010'), +('V57.5', 'Occupant of pick-up truck or van injured in collision with fixed or stationary object: Driver injured in traffic accident', 'ICD10_2010'), +('V57.6', 'Occupant of pick-up truck or van injured in collision with fixed or stationary object: Passenger injured in traffic accident', 'ICD10_2010'), +('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', 'ICD10_2010'), +('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', 'ICD10_2010'), +('V58', 'Occupant of pick-up truck or van injured in noncollision transport accident', 'ICD10_2010'), +('V58.0', 'Occupant of pick-up truck or van injured in noncollision transport accident: Driver injured in nontraffic accident', 'ICD10_2010'), +('V58.1', 'Occupant of pick-up truck or van injured in noncollision transport accident: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V58.2', 'Occupant of pick-up truck or van injured in noncollision transport accident: Person on outside of vehicle injured in nontraffic accident', 'ICD10_2010'), +('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 accide', 'ICD10_2010'), +('V58.4', 'Occupant of pick-up truck or van injured in noncollision transport accident: Person injured while boarding or alighting', 'ICD10_2010'), +('V58.5', 'Occupant of pick-up truck or van injured in noncollision transport accident: Driver injured in traffic accident', 'ICD10_2010'), +('V58.6', 'Occupant of pick-up truck or van injured in noncollision transport accident: Passenger injured in traffic accident', 'ICD10_2010'), +('V58.7', 'Occupant of pick-up truck or van injured in noncollision transport accident: Person on outside of vehicle injured in traffic accident', 'ICD10_2010'), +('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', 'ICD10_2010'), +('V59', 'Occupant of pick-up truck or van injured in other and unspecified transport accidents', 'ICD10_2010'), +('V59.0', 'Driver injured in collision with other and unspecified motor vehicles in nontraffic accident', 'ICD10_2010'), +('V59.1', 'Passenger injured in collision with other and unspecified motor vehicles in nontraffic accident', 'ICD10_2010'), +('V59.2', 'Unspecified occupant of pick-up truck or van injured in collision with other and unspecified motor vehicles in nontraffic accident', 'ICD10_2010'), +('V59.3', 'Occupant [any] of pick-up truck or van injured in unspecified nontraffic accident', 'ICD10_2010'), +('V59.4', 'Driver injured in collision with other and unspecified motor vehicles in traffic accident', 'ICD10_2010'), +('V59.5', 'Passenger injured in collision with other and unspecified motor vehicles in traffic accident', 'ICD10_2010'), +('V59.6', 'Unspecified occupant of pick-up truck or van injured in collision with other and unspecified motor vehicles in traffic accident', 'ICD10_2010'), +('V59.8', 'Occupant [any] of pick-up truck or van injured in other specified transport accidents', 'ICD10_2010'), +('V59.9', 'Occupant [any] of pick-up truck or van injured in unspecified traffic accident', 'ICD10_2010'), +('V60', 'Occupant of heavy transport vehicle injured in collision with pedestrian or animal', 'ICD10_2010'), +('V60.0', 'Occupant of heavy transport vehicle injured in collision with pedestrian or animal: Driver injured in nontraffic accident', 'ICD10_2010'), +('V60.1', 'Occupant of heavy transport vehicle injured in collision with pedestrian or animal: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V60.2', 'Occupant of heavy transport vehicle injured in collision with pedestrian or animal: Person on outside of vehicle injured in nontraffic accident', 'ICD10_2010'), +('V60.3', 'Occupant of heavy transport vehicle injured in collision with pedestrian or animal: Unspecified occupant of heavy transport vehicle injured in nontraf', 'ICD10_2010'), +('V60.4', 'Occupant of heavy transport vehicle injured in collision with pedestrian or animal: Person injured while boarding or alighting', 'ICD10_2010'), +('V60.5', 'Occupant of heavy transport vehicle injured in collision with pedestrian or animal: Driver injured in traffic accident', 'ICD10_2010'), +('V60.6', 'Occupant of heavy transport vehicle injured in collision with pedestrian or animal: Passenger injured in traffic accident', 'ICD10_2010'), +('V60.7', 'Occupant of heavy transport vehicle injured in collision with pedestrian or animal: Person on outside of vehicle injured in traffic accident', 'ICD10_2010'), +('V60.9', 'Occupant of heavy transport vehicle injured in collision with pedestrian or animal: Unspecified occupant of heavy transport vehicle injured in traffic', 'ICD10_2010'), +('V61', 'Occupant of heavy transport vehicle injured in collision with pedal cycle', 'ICD10_2010'), +('V61.0', 'Occupant of heavy transport vehicle injured in collision with pedal cycle: Driver injured in nontraffic accident', 'ICD10_2010'), +('V61.1', 'Occupant of heavy transport vehicle injured in collision with pedal cycle: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V61.2', 'Occupant of heavy transport vehicle injured in collision with pedal cycle: Person on outside of vehicle injured in nontraffic accident', 'ICD10_2010'), +('V61.3', 'Occupant of heavy transport vehicle injured in collision with pedal cycle: Unspecified occupant of heavy transport vehicle injured in nontraffic accid', 'ICD10_2010'), +('V61.4', 'Occupant of heavy transport vehicle injured in collision with pedal cycle: Person injured while boarding or alighting', 'ICD10_2010'), +('V61.5', 'Occupant of heavy transport vehicle injured in collision with pedal cycle: Driver injured in traffic accident', 'ICD10_2010'), +('V61.6', 'Occupant of heavy transport vehicle injured in collision with pedal cycle: Passenger injured in traffic accident', 'ICD10_2010'), +('V61.7', 'Occupant of heavy transport vehicle injured in collision with pedal cycle: Person on outside of vehicle injured in traffic accident', 'ICD10_2010'), +('V61.9', 'Occupant of heavy transport vehicle injured in collision with pedal cycle: Unspecified occupant of heavy transport vehicle injured in traffic accident', 'ICD10_2010'), +('V62', 'Occupant of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle', 'ICD10_2010'), +('V62.0', 'Occupant of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle: Driver injured in nontraffic accident', 'ICD10_2010'), +('V62.1', 'Occupant of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle: Passenger injured in nontraffic accident', 'ICD10_2010'), +('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 ', 'ICD10_2010'), +('V62.3', 'Occupant of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle: Unspecified occupant of heavy transport vehicle inj', 'ICD10_2010'), +('V62.4', 'Occupant of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle: Person injured while boarding or alighting', 'ICD10_2010'), +('V62.5', 'Occupant of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle: Driver injured in traffic accident', 'ICD10_2010'), +('V62.6', 'Occupant of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle: Passenger injured in traffic accident', 'ICD10_2010'), +('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 acc', 'ICD10_2010'), +('V62.9', 'Occupant of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle: Unspecified occupant of heavy transport vehicle inj', 'ICD10_2010'), +('V63', 'Occupant of heavy transport vehicle injured in collision with car, pick-up truck or van', 'ICD10_2010'), +('V63.0', 'Occupant of heavy transport vehicle injured in collision with car, pick-up truck or van: Driver injured in nontraffic accident', 'ICD10_2010'), +('V63.1', 'Occupant of heavy transport vehicle injured in collision with car, pick-up truck or van: Passenger injured in nontraffic accident', 'ICD10_2010'), +('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', 'ICD10_2010'), +('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 no', 'ICD10_2010'), +('V63.4', 'Occupant of heavy transport vehicle injured in collision with car, pick-up truck or van: Person injured while boarding or alighting', 'ICD10_2010'), +('V63.5', 'Occupant of heavy transport vehicle injured in collision with car, pick-up truck or van: Driver injured in traffic accident', 'ICD10_2010'), +('V63.6', 'Occupant of heavy transport vehicle injured in collision with car, pick-up truck or van: Passenger injured in traffic accident', 'ICD10_2010'), +('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', 'ICD10_2010'), +('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 tr', 'ICD10_2010'), +('V64', 'Occupant of heavy transport vehicle injured in collision with heavy transport vehicle or bus', 'ICD10_2010'), +('V64.0', 'Occupant of heavy transport vehicle injured in collision with heavy transport vehicle or bus: Driver injured in nontraffic accident', 'ICD10_2010'), +('V64.1', 'Occupant of heavy transport vehicle injured in collision with heavy transport vehicle or bus: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V64.2', 'Occupant of heavy transport vehicle injured in collision with heavy transport vehicle or bus: Person on outside of vehicle injured in nontraffic accid', 'ICD10_2010'), +('V64.3', 'Occupant of heavy transport vehicle injured in collision with heavy transport vehicle or bus: Unspecified occupant of heavy transport vehicle injured ', 'ICD10_2010'), +('V64.4', 'Occupant of heavy transport vehicle injured in collision with heavy transport vehicle or bus: Person injured while boarding or alighting', 'ICD10_2010'), +('V64.5', 'Occupant of heavy transport vehicle injured in collision with heavy transport vehicle or bus: Driver injured in traffic accident', 'ICD10_2010'), +('V64.6', 'Occupant of heavy transport vehicle injured in collision with heavy transport vehicle or bus: Passenger injured in traffic accident', 'ICD10_2010'), +('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', 'ICD10_2010'), +('V64.9', 'Occupant of heavy transport vehicle injured in collision with heavy transport vehicle or bus: Unspecified occupant of heavy transport vehicle injured ', 'ICD10_2010'), +('V65', 'Occupant of heavy transport vehicle injured in collision with railway train or railway vehicle', 'ICD10_2010'), +('V65.0', 'Occupant of heavy transport vehicle injured in collision with railway train or railway vehicle: Driver injured in nontraffic accident', 'ICD10_2010'), +('V65.1', 'Occupant of heavy transport vehicle injured in collision with railway train or railway vehicle: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V65.2', 'Occupant of heavy transport vehicle injured in collision with railway train or railway vehicle: Person on outside of vehicle injured in nontraffic acc', 'ICD10_2010'); +INSERT INTO `icd10` (`ID_ICD10`, `Diagnosa`, `Versi_ICD10`) VALUES +('V65.3', 'Occupant of heavy transport vehicle injured in collision with railway train or railway vehicle: Unspecified occupant of heavy transport vehicle injure', 'ICD10_2010'), +('V65.4', 'Occupant of heavy transport vehicle injured in collision with railway train or railway vehicle: Person injured while boarding or alighting', 'ICD10_2010'), +('V65.5', 'Occupant of heavy transport vehicle injured in collision with railway train or railway vehicle: Driver injured in traffic accident', 'ICD10_2010'), +('V65.6', 'Occupant of heavy transport vehicle injured in collision with railway train or railway vehicle: Passenger injured in traffic accident', 'ICD10_2010'), +('V65.7', 'Occupant of heavy transport vehicle injured in collision with railway train or railway vehicle: Person on outside of vehicle injured in traffic accide', 'ICD10_2010'), +('V65.9', 'Occupant of heavy transport vehicle injured in collision with railway train or railway vehicle: Unspecified occupant of heavy transport vehicle injure', 'ICD10_2010'), +('V66', 'Occupant of heavy transport vehicle injured in collision with other nonmotor vehicle', 'ICD10_2010'), +('V66.0', 'Occupant of heavy transport vehicle injured in collision with other nonmotor vehicle: Driver injured in nontraffic accident', 'ICD10_2010'), +('V66.1', 'Occupant of heavy transport vehicle injured in collision with other nonmotor vehicle: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V66.2', 'Occupant of heavy transport vehicle injured in collision with other nonmotor vehicle: Person on outside of vehicle injured in nontraffic accident', 'ICD10_2010'), +('V66.3', 'Occupant of heavy transport vehicle injured in collision with other nonmotor vehicle: Unspecified occupant of heavy transport vehicle injured in nontr', 'ICD10_2010'), +('V66.4', 'Occupant of heavy transport vehicle injured in collision with other nonmotor vehicle: Person injured while boarding or alighting', 'ICD10_2010'), +('V66.5', 'Occupant of heavy transport vehicle injured in collision with other nonmotor vehicle: Driver injured in traffic accident', 'ICD10_2010'), +('V66.6', 'Occupant of heavy transport vehicle injured in collision with other nonmotor vehicle: Passenger injured in traffic accident', 'ICD10_2010'), +('V66.7', 'Occupant of heavy transport vehicle injured in collision with other nonmotor vehicle: Person on outside of vehicle injured in traffic accident', 'ICD10_2010'), +('V66.9', 'Occupant of heavy transport vehicle injured in collision with other nonmotor vehicle: Unspecified occupant of heavy transport vehicle injured in traff', 'ICD10_2010'), +('V67', 'Occupant of heavy transport vehicle injured in collision with fixed or stationary object', 'ICD10_2010'), +('V67.0', 'Occupant of heavy transport vehicle injured in collision with fixed or stationary object: Driver injured in nontraffic accident', 'ICD10_2010'), +('V67.1', 'Occupant of heavy transport vehicle injured in collision with fixed or stationary object: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V67.2', 'Occupant of heavy transport vehicle injured in collision with fixed or stationary object: Person on outside of vehicle injured in nontraffic accident', 'ICD10_2010'), +('V67.3', 'Occupant of heavy transport vehicle injured in collision with fixed or stationary object: Unspecified occupant of heavy transport vehicle injured in n', 'ICD10_2010'), +('V67.4', 'Occupant of heavy transport vehicle injured in collision with fixed or stationary object: Person injured while boarding or alighting', 'ICD10_2010'), +('V67.5', 'Occupant of heavy transport vehicle injured in collision with fixed or stationary object: Driver injured in traffic accident', 'ICD10_2010'), +('V67.6', 'Occupant of heavy transport vehicle injured in collision with fixed or stationary object: Passenger injured in traffic accident', 'ICD10_2010'), +('V67.7', 'Occupant of heavy transport vehicle injured in collision with fixed or stationary object: Person on outside of vehicle injured in traffic accident', 'ICD10_2010'), +('V67.9', 'Occupant of heavy transport vehicle injured in collision with fixed or stationary object: Unspecified occupant of heavy transport vehicle injured in t', 'ICD10_2010'), +('V68', 'Occupant of heavy transport vehicle injured in noncollision transport accident', 'ICD10_2010'), +('V68.0', 'Occupant of heavy transport vehicle injured in noncollision transport accident: Driver injured in nontraffic accident', 'ICD10_2010'), +('V68.1', 'Occupant of heavy transport vehicle injured in noncollision transport accident: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V68.2', 'Occupant of heavy transport vehicle injured in noncollision transport accident: Person on outside of vehicle injured in nontraffic accident', 'ICD10_2010'), +('V68.3', 'Occupant of heavy transport vehicle injured in noncollision transport accident: Unspecified occupant of heavy transport vehicle injured in nontraffic ', 'ICD10_2010'), +('V68.4', 'Occupant of heavy transport vehicle injured in noncollision transport accident: Person injured while boarding or alighting', 'ICD10_2010'), +('V68.5', 'Occupant of heavy transport vehicle injured in noncollision transport accident: Driver injured in traffic accident', 'ICD10_2010'), +('V68.6', 'Occupant of heavy transport vehicle injured in noncollision transport accident: Passenger injured in traffic accident', 'ICD10_2010'), +('V68.7', 'Occupant of heavy transport vehicle injured in noncollision transport accident: Person on outside of vehicle injured in traffic accident', 'ICD10_2010'), +('V68.9', 'Occupant of heavy transport vehicle injured in noncollision transport accident: Unspecified occupant of heavy transport vehicle injured in traffic acc', 'ICD10_2010'), +('V69', 'Occupant of heavy transport vehicle injured in other and unspecified transport accidents', 'ICD10_2010'), +('V69.0', 'Driver injured in collision with other and unspecified motor vehicles in nontraffic accident', 'ICD10_2010'), +('V69.1', 'Passenger injured in collision with other and unspecified motor vehicles in nontraffic accident', 'ICD10_2010'), +('V69.2', 'Unspecified occupant of heavy transport vehicle injured in collision with other and unspecified motor vehicles in nontraffic accident', 'ICD10_2010'), +('V69.3', 'Occupant [any] of heavy transport vehicle injured in unspecified nontraffic accident', 'ICD10_2010'), +('V69.4', 'Driver injured in collision with other and unspecified motor vehicles in traffic accident', 'ICD10_2010'), +('V69.5', 'Passenger injured in collision with other and unspecified motor vehicles in traffic accident', 'ICD10_2010'), +('V69.6', 'Unspecified occupant of heavy transport vehicle injured in collision with other and unspecified motor vehicles in traffic accident', 'ICD10_2010'), +('V69.8', 'Occupant [any] of heavy transport vehicle injured in other specified transport accidents', 'ICD10_2010'), +('V69.9', 'Occupant [any] of heavy transport vehicle injured in unspecified traffic accident', 'ICD10_2010'), +('V70', 'Bus occupant injured in collision with pedestrian or animal', 'ICD10_2010'), +('V70.0', 'Bus occupant injured in collision with pedestrian or animal: Driver injured in nontraffic accident', 'ICD10_2010'), +('V70.1', 'Bus occupant injured in collision with pedestrian or animal: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V70.2', 'Bus occupant injured in collision with pedestrian or animal: Person on outside of vehicle injured in nontraffic accident', 'ICD10_2010'), +('V70.3', 'Bus occupant injured in collision with pedestrian or animal: Unspecified bus occupant injured in nontraffic accident', 'ICD10_2010'), +('V70.4', 'Bus occupant injured in collision with pedestrian or animal: Person injured while boarding or alighting', 'ICD10_2010'), +('V70.5', 'Bus occupant injured in collision with pedestrian or animal: Driver injured in traffic accident', 'ICD10_2010'), +('V70.6', 'Bus occupant injured in collision with pedestrian or animal: Passenger injured in traffic accident', 'ICD10_2010'), +('V70.7', 'Bus occupant injured in collision with pedestrian or animal: Person on outside of vehicle injured in traffic accident', 'ICD10_2010'), +('V70.9', 'Bus occupant injured in collision with pedestrian or animal: Unspecified bus occupant injured in traffic accident', 'ICD10_2010'), +('V71', 'Bus occupant injured in collision with pedal cycle', 'ICD10_2010'), +('V71.0', 'Bus occupant injured in collision with pedal cycle: Driver injured in nontraffic accident', 'ICD10_2010'), +('V71.1', 'Bus occupant injured in collision with pedal cycle: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V71.2', 'Bus occupant injured in collision with pedal cycle: Person on outside of vehicle injured in nontraffic accident', 'ICD10_2010'), +('V71.3', 'Bus occupant injured in collision with pedal cycle: Unspecified bus occupant injured in nontraffic accident', 'ICD10_2010'), +('V71.4', 'Bus occupant injured in collision with pedal cycle: Person injured while boarding or alighting', 'ICD10_2010'), +('V71.5', 'Bus occupant injured in collision with pedal cycle: Driver injured in traffic accident', 'ICD10_2010'), +('V71.6', 'Bus occupant injured in collision with pedal cycle: Passenger injured in traffic accident', 'ICD10_2010'), +('V71.7', 'Bus occupant injured in collision with pedal cycle: Person on outside of vehicle injured in traffic accident', 'ICD10_2010'), +('V71.9', 'Bus occupant injured in collision with pedal cycle: Unspecified bus occupant injured in traffic accident', 'ICD10_2010'), +('V72', 'Bus occupant injured in collision with two- or three-wheeled motor vehicle', 'ICD10_2010'), +('V72.0', 'Bus occupant injured in collision with two- or three-wheeled motor vehicle: Driver injured in nontraffic accident', 'ICD10_2010'), +('V72.1', 'Bus occupant injured in collision with two- or three-wheeled motor vehicle: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V72.2', 'Bus occupant injured in collision with two- or three-wheeled motor vehicle: Person on outside of vehicle injured in nontraffic accident', 'ICD10_2010'), +('V72.3', 'Bus occupant injured in collision with two- or three-wheeled motor vehicle: Unspecified bus occupant injured in nontraffic accident', 'ICD10_2010'), +('V72.4', 'Bus occupant injured in collision with two- or three-wheeled motor vehicle: Person injured while boarding or alighting', 'ICD10_2010'), +('V72.5', 'Bus occupant injured in collision with two- or three-wheeled motor vehicle: Driver injured in traffic accident', 'ICD10_2010'), +('V72.6', 'Bus occupant injured in collision with two- or three-wheeled motor vehicle: Passenger injured in traffic accident', 'ICD10_2010'), +('V72.7', 'Bus occupant injured in collision with two- or three-wheeled motor vehicle: Person on outside of vehicle injured in traffic accident', 'ICD10_2010'), +('V72.9', 'Bus occupant injured in collision with two- or three-wheeled motor vehicle: Unspecified bus occupant injured in traffic accident', 'ICD10_2010'), +('V73', 'Bus occupant injured in collision with car, pick-up truck or van', 'ICD10_2010'), +('V73.0', 'Bus occupant injured in collision with car, pick-up truck or van: Driver injured in nontraffic accident', 'ICD10_2010'), +('V73.1', 'Bus occupant injured in collision with car, pick-up truck or van: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V73.2', 'Bus occupant injured in collision with car, pick-up truck or van: Person on outside of vehicle injured in nontraffic accident', 'ICD10_2010'), +('V73.3', 'Bus occupant injured in collision with car, pick-up truck or van: Unspecified bus occupant injured in nontraffic accident', 'ICD10_2010'), +('V73.4', 'Bus occupant injured in collision with car, pick-up truck or van: Person injured while boarding or alighting', 'ICD10_2010'), +('V73.5', 'Bus occupant injured in collision with car, pick-up truck or van: Driver injured in traffic accident', 'ICD10_2010'), +('V73.6', 'Bus occupant injured in collision with car, pick-up truck or van: Passenger injured in traffic accident', 'ICD10_2010'), +('V73.7', 'Bus occupant injured in collision with car, pick-up truck or van: Person on outside of vehicle injured in traffic accident', 'ICD10_2010'), +('V73.9', 'Bus occupant injured in collision with car, pick-up truck or van: Unspecified bus occupant injured in traffic accident', 'ICD10_2010'), +('V74', 'Bus occupant injured in collision with heavy transport vehicle or bus', 'ICD10_2010'), +('V74.0', 'Bus occupant injured in collision with heavy transport vehicle or bus: Driver injured in nontraffic accident', 'ICD10_2010'), +('V74.1', 'Bus occupant injured in collision with heavy transport vehicle or bus: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V74.2', 'Bus occupant injured in collision with heavy transport vehicle or bus: Person on outside of vehicle injured in nontraffic accident', 'ICD10_2010'), +('V74.3', 'Bus occupant injured in collision with heavy transport vehicle or bus: Unspecified bus occupant injured in nontraffic accident', 'ICD10_2010'), +('V74.4', 'Bus occupant injured in collision with heavy transport vehicle or bus: Person injured while boarding or alighting', 'ICD10_2010'), +('V74.5', 'Bus occupant injured in collision with heavy transport vehicle or bus: Driver injured in traffic accident', 'ICD10_2010'), +('V74.6', 'Bus occupant injured in collision with heavy transport vehicle or bus: Passenger injured in traffic accident', 'ICD10_2010'), +('V74.7', 'Bus occupant injured in collision with heavy transport vehicle or bus: Person on outside of vehicle injured in traffic accident', 'ICD10_2010'), +('V74.9', 'Bus occupant injured in collision with heavy transport vehicle or bus: Unspecified bus occupant injured in traffic accident', 'ICD10_2010'), +('V75', 'Bus occupant injured in collision with railway train or railway vehicle', 'ICD10_2010'), +('V75.0', 'Bus occupant injured in collision with railway train or railway vehicle: Driver injured in nontraffic accident', 'ICD10_2010'), +('V75.1', 'Bus occupant injured in collision with railway train or railway vehicle: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V75.2', 'Bus occupant injured in collision with railway train or railway vehicle: Person on outside of vehicle injured in nontraffic accident', 'ICD10_2010'), +('V75.3', 'Bus occupant injured in collision with railway train or railway vehicle: Unspecified bus occupant injured in nontraffic accident', 'ICD10_2010'), +('V75.4', 'Bus occupant injured in collision with railway train or railway vehicle: Person injured while boarding or alighting', 'ICD10_2010'), +('V75.5', 'Bus occupant injured in collision with railway train or railway vehicle: Driver injured in traffic accident', 'ICD10_2010'), +('V75.6', 'Bus occupant injured in collision with railway train or railway vehicle: Passenger injured in traffic accident', 'ICD10_2010'), +('V75.7', 'Bus occupant injured in collision with railway train or railway vehicle: Person on outside of vehicle injured in traffic accident', 'ICD10_2010'), +('V75.9', 'Bus occupant injured in collision with railway train or railway vehicle: Unspecified bus occupant injured in traffic accident', 'ICD10_2010'), +('V76', 'Bus occupant injured in collision with other nonmotor vehicle', 'ICD10_2010'), +('V76.0', 'Bus occupant injured in collision with other nonmotor vehicle: Driver injured in nontraffic accident', 'ICD10_2010'), +('V76.1', 'Bus occupant injured in collision with other nonmotor vehicle: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V76.2', 'Bus occupant injured in collision with other nonmotor vehicle: Person on outside of vehicle injured in nontraffic accident', 'ICD10_2010'), +('V76.3', 'Bus occupant injured in collision with other nonmotor vehicle: Unspecified bus occupant injured in nontraffic accident', 'ICD10_2010'), +('V76.4', 'Bus occupant injured in collision with other nonmotor vehicle: Person injured while boarding or alighting', 'ICD10_2010'), +('V76.5', 'Bus occupant injured in collision with other nonmotor vehicle: Driver injured in traffic accident', 'ICD10_2010'), +('V76.6', 'Bus occupant injured in collision with other nonmotor vehicle: Passenger injured in traffic accident', 'ICD10_2010'), +('V76.7', 'Bus occupant injured in collision with other nonmotor vehicle: Person on outside of vehicle injured in traffic accident', 'ICD10_2010'), +('V76.9', 'Bus occupant injured in collision with other nonmotor vehicle: Unspecified bus occupant injured in traffic accident', 'ICD10_2010'), +('V77', 'Bus occupant injured in collision with fixed or stationary object', 'ICD10_2010'), +('V77.0', 'Bus occupant injured in collision with fixed or stationary object: Driver injured in nontraffic accident', 'ICD10_2010'), +('V77.1', 'Bus occupant injured in collision with fixed or stationary object: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V77.2', 'Bus occupant injured in collision with fixed or stationary object: Person on outside of vehicle injured in nontraffic accident', 'ICD10_2010'), +('V77.3', 'Bus occupant injured in collision with fixed or stationary object: Unspecified bus occupant injured in nontraffic accident', 'ICD10_2010'), +('V77.4', 'Bus occupant injured in collision with fixed or stationary object: Person injured while boarding or alighting', 'ICD10_2010'), +('V77.5', 'Bus occupant injured in collision with fixed or stationary object: Driver injured in traffic accident', 'ICD10_2010'), +('V77.6', 'Bus occupant injured in collision with fixed or stationary object: Passenger injured in traffic accident', 'ICD10_2010'), +('V77.7', 'Bus occupant injured in collision with fixed or stationary object: Person on outside of vehicle injured in traffic accident', 'ICD10_2010'), +('V77.9', 'Bus occupant injured in collision with fixed or stationary object: Unspecified bus occupant injured in traffic accident', 'ICD10_2010'), +('V78', 'Bus occupant injured in noncollision transport accident', 'ICD10_2010'), +('V78.0', 'Bus occupant injured in noncollision transport accident: Driver injured in nontraffic accident', 'ICD10_2010'), +('V78.1', 'Bus occupant injured in noncollision transport accident: Passenger injured in nontraffic accident', 'ICD10_2010'), +('V78.2', 'Bus occupant injured in noncollision transport accident: Person on outside of vehicle injured in nontraffic accident', 'ICD10_2010'), +('V78.3', 'Bus occupant injured in noncollision transport accident: Unspecified bus occupant injured in nontraffic accident', 'ICD10_2010'), +('V78.4', 'Bus occupant injured in noncollision transport accident: Person injured while boarding or alighting', 'ICD10_2010'), +('V78.5', 'Bus occupant injured in noncollision transport accident: Driver injured in traffic accident', 'ICD10_2010'), +('V78.6', 'Bus occupant injured in noncollision transport accident: Passenger injured in traffic accident', 'ICD10_2010'), +('V78.7', 'Bus occupant injured in noncollision transport accident: Person on outside of vehicle injured in traffic accident', 'ICD10_2010'), +('V78.9', 'Bus occupant injured in noncollision transport accident: Unspecified bus occupant injured in traffic accident', 'ICD10_2010'), +('V79', 'Bus occupant injured in other and unspecified transport accidents', 'ICD10_2010'), +('V79.0', 'Driver injured in collision with other and unspecified motor vehicles in nontraffic accident', 'ICD10_2010'), +('V79.1', 'Passenger injured in collision with other and unspecified motor vehicles in nontraffic accident', 'ICD10_2010'), +('V79.2', 'Unspecified bus occupant injured in collision with other and unspecified motor vehicles in nontraffic accident', 'ICD10_2010'), +('V79.3', 'Bus occupant [any] injured in unspecified nontraffic accident', 'ICD10_2010'), +('V79.4', 'Driver injured in collision with other and unspecified motor vehicles in traffic accident', 'ICD10_2010'), +('V79.5', 'Passenger injured in collision with other and unspecified motor vehicles in traffic accident', 'ICD10_2010'), +('V79.6', 'Unspecified bus occupant injured in collision with other and unspecified motor vehicles in traffic accident', 'ICD10_2010'), +('V79.8', 'Bus occupant [any] injured in other specified transport accidents', 'ICD10_2010'), +('V79.9', 'Bus occupant [any] injured in unspecified traffic accident', 'ICD10_2010'), +('V80', 'Animal-rider or occupant of animal-drawn vehicle injured in transport accident', 'ICD10_2010'), +('V80.0', 'Rider or occupant injured by fall from or being thrown from animal or animal-drawn vehicle in noncollision accident', 'ICD10_2010'), +('V80.1', 'Rider or occupant injured in collision with pedestrian or animal', 'ICD10_2010'), +('V80.2', 'Rider or occupant injured in collision with pedal cycle', 'ICD10_2010'), +('V80.3', 'Rider or occupant injured in collision with two- or three-wheeled motor vehicle', 'ICD10_2010'), +('V80.4', 'Rider or occupant injured in collision with car, pick-up truck, van, heavy transport vehicle or bus', 'ICD10_2010'), +('V80.5', 'Rider or occupant injured in collision with other specified motor vehicle', 'ICD10_2010'), +('V80.6', 'Rider or occupant injured in collision with railway train or railway vehicle', 'ICD10_2010'), +('V80.7', 'Rider or occupant injured in collision with other nonmotor vehicle', 'ICD10_2010'), +('V80.8', 'Rider or occupant injured in collision with fixed or stationary object', 'ICD10_2010'), +('V80.9', 'Rider or occupant injured in other and unspecified transport accidents', 'ICD10_2010'), +('V81', 'Occupant of railway train or railway vehicle injured in transport accident', 'ICD10_2010'), +('V81.0', 'Occupant of railway train or railway vehicle injured in collision with motor vehicle in nontraffic accident', 'ICD10_2010'), +('V81.1', 'Occupant of railway train or railway vehicle injured in collision with motor vehicle in traffic accident', 'ICD10_2010'), +('V81.2', 'Occupant of railway train or railway vehicle injured in collision with or hit by rolling stock', 'ICD10_2010'), +('V81.3', 'Occupant of railway train or railway vehicle injured in collision with other object', 'ICD10_2010'), +('V81.4', 'Person injured while boarding or alighting from railway train or railway vehicle', 'ICD10_2010'), +('V81.5', 'Occupant of railway train or railway vehicle injured by fall in railway train or railway vehicle', 'ICD10_2010'), +('V81.6', 'Occupant of railway train or railway vehicle injured by fall from railway train or railway vehicle', 'ICD10_2010'), +('V81.7', 'Occupant of railway train or railway vehicle injured in derailment without antecedent collision', 'ICD10_2010'), +('V81.8', 'Occupant of railway train or railway vehicle injured in other specified railway accidents', 'ICD10_2010'), +('V81.9', 'Occupant of railway train or railway vehicle injured in unspecified railway accident', 'ICD10_2010'), +('V82', 'Occupant of streetcar injured in transport accident', 'ICD10_2010'), +('V82.0', 'Occupant of streetcar injured in collision with motor vehicle in nontraffic accident', 'ICD10_2010'), +('V82.1', 'Occupant of streetcar injured in collision with motor vehicle in traffic accident', 'ICD10_2010'), +('V82.2', 'Occupant of streetcar injured in collision with or hit by rolling stock', 'ICD10_2010'), +('V82.3', 'Occupant of streetcar injured in collision with other object', 'ICD10_2010'), +('V82.4', 'Person injured while boarding or alighting from streetcar', 'ICD10_2010'), +('V82.5', 'Occupant of streetcar injured by fall in streetcar', 'ICD10_2010'), +('V82.6', 'Occupant of streetcar injured by fall from streetcar', 'ICD10_2010'), +('V82.7', 'Occupant of streetcar injured in derailment without antecedent collision', 'ICD10_2010'), +('V82.8', 'Occupant of streetcar injured in other specified transport accidents', 'ICD10_2010'), +('V82.9', 'Occupant of streetcar injured in unspecified traffic accident', 'ICD10_2010'), +('V83', 'Occupant of special vehicle mainly used on industrial premises injured in transport accident', 'ICD10_2010'), +('V83.0', 'Driver of special industrial vehicle injured in traffic accident', 'ICD10_2010'), +('V83.1', 'Passenger of special industrial vehicle injured in traffic accident', 'ICD10_2010'), +('V83.2', 'Person on outside of special industrial vehicle injured in traffic accident', 'ICD10_2010'), +('V83.3', 'Unspecified occupant of special industrial vehicle injured in traffic accident', 'ICD10_2010'), +('V83.4', 'Person injured while boarding or alighting from special industrial vehicle', 'ICD10_2010'), +('V83.5', 'Driver of special industrial vehicle injured in nontraffic accident', 'ICD10_2010'), +('V83.6', 'Passenger of special industrial vehicle injured in nontraffic accident', 'ICD10_2010'), +('V83.7', 'Person on outside of special industrial vehicle injured in nontraffic accident', 'ICD10_2010'), +('V83.9', 'Unspecified occupant of special industrial vehicle injured in nontraffic accident', 'ICD10_2010'), +('V84', 'Occupant of special vehicle mainly used in agriculture injured in transport accident', 'ICD10_2010'), +('V84.0', 'Driver of special agricultural vehicle injured in traffic accident', 'ICD10_2010'), +('V84.1', 'Passenger of special agricultural vehicle injured in traffic accident', 'ICD10_2010'), +('V84.2', 'Person on outside of special agricultural vehicle injured in traffic accident', 'ICD10_2010'), +('V84.3', 'Unspecified occupant of special agricultural vehicle injured in traffic accident', 'ICD10_2010'), +('V84.4', 'Person injured while boarding or alighting from special agricultural vehicle', 'ICD10_2010'), +('V84.5', 'Driver of special agricultural vehicle injured in nontraffic accident', 'ICD10_2010'), +('V84.6', 'Passenger of special agricultural vehicle injured in nontraffic accident', 'ICD10_2010'), +('V84.7', 'Person on outside of special agricultural vehicle injured in nontraffic accident', 'ICD10_2010'), +('V84.9', 'Unspecified occupant of special agricultural vehicle injured in nontraffic accident', 'ICD10_2010'), +('V85', 'Occupant of special construction vehicle injured in transport accident', 'ICD10_2010'), +('V85.0', 'Driver of special construction vehicle injured in traffic accident', 'ICD10_2010'), +('V85.1', 'Passenger of special construction vehicle injured in traffic accident', 'ICD10_2010'), +('V85.2', 'Person on outside of special construction vehicle injured in traffic accident', 'ICD10_2010'), +('V85.3', 'Unspecified occupant of special construction vehicle injured in traffic accident', 'ICD10_2010'), +('V85.4', 'Person injured while boarding or alighting from special construction vehicle', 'ICD10_2010'), +('V85.5', 'Driver of special construction vehicle injured in nontraffic accident', 'ICD10_2010'), +('V85.6', 'Passenger of special construction vehicle injured in nontraffic accident', 'ICD10_2010'), +('V85.7', 'Person on outside of special construction vehicle injured in nontraffic accident', 'ICD10_2010'), +('V85.9', 'Unspecified occupant of special construction vehicle injured in nontraffic accident', 'ICD10_2010'), +('V86', 'Occupant of special all-terrain or other motor vehicle designed primarily for off-road use, injured in transport accident', 'ICD10_2010'), +('V86.0', 'Driver of all-terrain or other off-road motor vehicle injured in traffic accident', 'ICD10_2010'), +('V86.1', 'Passenger of all-terrain or other off-road motor vehicle injured in traffic accident', 'ICD10_2010'), +('V86.2', 'Person on outside of all-terrain or other off-road motor vehicle injured in traffic accident', 'ICD10_2010'), +('V86.3', 'Unspecified occupant of all-terrain or other off-road motor vehicle injured in traffic accident', 'ICD10_2010'), +('V86.4', 'Person injured while boarding or alighting from all-terrain or other off-road motor vehicle', 'ICD10_2010'), +('V86.5', 'Driver of all-terrain or other off-road motor vehicle injured in nontraffic accident', 'ICD10_2010'), +('V86.6', 'Passenger of all-terrain or other off-road motor vehicle injured in nontraffic accident', 'ICD10_2010'), +('V86.7', 'Person on outside of all-terrain or other off-road motor vehicle injured in nontraffic accident', 'ICD10_2010'), +('V86.9', 'Unspecified occupant of all-terrain or other off-road motor vehicle injured in nontraffic accident', 'ICD10_2010'), +('V87', 'Traffic accident of specified type but victim\'s mode of transport unknown', 'ICD10_2010'), +('V87.0', 'Person injured in collision between car and two- or three-wheeled motor vehicle (traffic)', 'ICD10_2010'), +('V87.1', 'Person injured in collision between other motor vehicle and two- or three-wheeled motor vehicle (traffic)', 'ICD10_2010'), +('V87.2', 'Person injured in collision between car and pick-up truck or van (traffic)', 'ICD10_2010'), +('V87.3', 'Person injured in collision between car and bus (traffic)', 'ICD10_2010'), +('V87.4', 'Person injured in collision between car and heavy transport vehicle (traffic)', 'ICD10_2010'), +('V87.5', 'Person injured in collision between heavy transport vehicle and bus (traffic)', 'ICD10_2010'), +('V87.6', 'Person injured in collision between railway train or railway vehicle and car (traffic)', 'ICD10_2010'), +('V87.7', 'Person injured in collision between other specified motor vehicles (traffic)', 'ICD10_2010'), +('V87.8', 'Person injured in other specified noncollision transport accidents involving motor vehicle (traffic)', 'ICD10_2010'), +('V87.9', 'Person injured in other specified (collision)(noncollision) transport accidents involving nonmotor vehicle (traffic)', 'ICD10_2010'), +('V88', 'Nontraffic accident of specified type but victim\'s mode of transport unknown', 'ICD10_2010'), +('V88.0', 'Person injured in collision between car and two- or three-wheeled motor vehicle, nontraffic', 'ICD10_2010'), +('V88.1', 'Person injured in collision between other motor vehicle and two- or three-wheeled motor vehicle, nontraffic', 'ICD10_2010'), +('V88.2', 'Person injured in collision between car and pick-up truck or van, nontraffic', 'ICD10_2010'), +('V88.3', 'Person injured in collision between car and bus, nontraffic', 'ICD10_2010'), +('V88.4', 'Person injured in collision between car and heavy transport vehicle, nontraffic', 'ICD10_2010'), +('V88.5', 'Person injured in collision between heavy transport vehicle and bus, nontraffic', 'ICD10_2010'), +('V88.6', 'Person injured in collision between railway train or railway vehicle and car, nontraffic', 'ICD10_2010'), +('V88.7', 'Person injured in collision between other specified motor vehicles, nontraffic', 'ICD10_2010'), +('V88.8', 'Person injured in other specified noncollision transport accidents involving motor vehicle, nontraffic', 'ICD10_2010'), +('V88.9', 'Person injured in other specified (collision)(noncollision) transport accidents involving nonmotor vehicle, nontraffic', 'ICD10_2010'), +('V89', 'Motor- or nonmotor-vehicle accident, type of vehicle unspecified', 'ICD10_2010'), +('V89.0', 'Person injured in unspecified motor-vehicle accident, nontraffic', 'ICD10_2010'), +('V89.1', 'Person injured in unspecified nonmotor-vehicle accident, nontraffic', 'ICD10_2010'), +('V89.2', 'Person injured in unspecified motor-vehicle accident, traffic', 'ICD10_2010'), +('V89.3', 'Person injured in unspecified nonmotor-vehicle accident, traffic', 'ICD10_2010'), +('V89.9', 'Person injured in unspecified vehicle accident', 'ICD10_2010'), +('V90', 'Accident to watercraft causing drowning and submersion', 'ICD10_2010'), +('V90.0', 'Accident to watercraft causing drowning and submersion: Merchant ship', 'ICD10_2010'), +('V90.1', 'Accident to watercraft causing drowning and submersion: Passenger ship', 'ICD10_2010'), +('V90.2', 'Accident to watercraft causing drowning and submersion: Fishing boat', 'ICD10_2010'), +('V90.3', 'Accident to watercraft causing drowning and submersion: Other powered watercraft', 'ICD10_2010'), +('V90.4', 'Accident to watercraft causing drowning and submersion: Sailboat', 'ICD10_2010'), +('V90.5', 'Accident to watercraft causing drowning and submersion: Canoe or kayak', 'ICD10_2010'), +('V90.6', 'Accident to watercraft causing drowning and submersion: Inflatable craft (nonpowered)', 'ICD10_2010'), +('V90.7', 'Accident to watercraft causing drowning and submersion: Water-skis', 'ICD10_2010'), +('V90.8', 'Accident to watercraft causing drowning and submersion: Other unpowered watercraft', 'ICD10_2010'), +('V90.9', 'Accident to watercraft causing drowning and submersion: Unspecified watercraft', 'ICD10_2010'), +('V91', 'Accident to watercraft causing other injury', 'ICD10_2010'), +('V91.0', 'Accident to watercraft causing other injury: Merchant ship', 'ICD10_2010'), +('V91.1', 'Accident to watercraft causing other injury: Passenger ship', 'ICD10_2010'), +('V91.2', 'Accident to watercraft causing other injury: Fishing boat', 'ICD10_2010'), +('V91.3', 'Accident to watercraft causing other injury: Other powered watercraft', 'ICD10_2010'), +('V91.4', 'Accident to watercraft causing other injury: Sailboat', 'ICD10_2010'), +('V91.5', 'Accident to watercraft causing other injury: Canoe or kayak', 'ICD10_2010'), +('V91.6', 'Accident to watercraft causing other injury: Inflatable craft (nonpowered)', 'ICD10_2010'), +('V91.7', 'Accident to watercraft causing other injury: Water-skis', 'ICD10_2010'), +('V91.8', 'Accident to watercraft causing other injury: Other unpowered watercraft', 'ICD10_2010'), +('V91.9', 'Accident to watercraft causing other injury: Unspecified watercraft', 'ICD10_2010'), +('V92', 'Water-transport-related drowning and submersion without accident to watercraft', 'ICD10_2010'), +('V92.0', 'Water-transport-related drowning and submersion without accident to watercraft: Merchant ship', 'ICD10_2010'), +('V92.1', 'Water-transport-related drowning and submersion without accident to watercraft: Passenger ship', 'ICD10_2010'), +('V92.2', 'Water-transport-related drowning and submersion without accident to watercraft: Fishing boat', 'ICD10_2010'), +('V92.3', 'Water-transport-related drowning and submersion without accident to watercraft: Other powered watercraft', 'ICD10_2010'), +('V92.4', 'Water-transport-related drowning and submersion without accident to watercraft: Sailboat', 'ICD10_2010'), +('V92.5', 'Water-transport-related drowning and submersion without accident to watercraft: Canoe or kayak', 'ICD10_2010'), +('V92.6', 'Water-transport-related drowning and submersion without accident to watercraft: Inflatable craft (nonpowered)', 'ICD10_2010'), +('V92.7', 'Water-transport-related drowning and submersion without accident to watercraft: Water-skis', 'ICD10_2010'), +('V92.8', 'Water-transport-related drowning and submersion without accident to watercraft: Other unpowered watercraft', 'ICD10_2010'), +('V92.9', 'Water-transport-related drowning and submersion without accident to watercraft: Unspecified watercraft', 'ICD10_2010'), +('V93', 'Accident on board watercraft without accident to watercraft, not causing drowning and submersion', 'ICD10_2010'), +('V93.0', 'Accident on board watercraft without accident to watercraft, not causing drowning and submersion: Merchant ship', 'ICD10_2010'), +('V93.1', 'Accident on board watercraft without accident to watercraft, not causing drowning and submersion: Passenger ship', 'ICD10_2010'), +('V93.2', 'Accident on board watercraft without accident to watercraft, not causing drowning and submersion: Fishing boat', 'ICD10_2010'), +('V93.3', 'Accident on board watercraft without accident to watercraft, not causing drowning and submersion: Other powered watercraft', 'ICD10_2010'), +('V93.4', 'Accident on board watercraft without accident to watercraft, not causing drowning and submersion: Sailboat', 'ICD10_2010'), +('V93.5', 'Accident on board watercraft without accident to watercraft, not causing drowning and submersion: Canoe or kayak', 'ICD10_2010'), +('V93.6', 'Accident on board watercraft without accident to watercraft, not causing drowning and submersion: Inflatable craft (nonpowered)', 'ICD10_2010'), +('V93.7', 'Accident on board watercraft without accident to watercraft, not causing drowning and submersion: Water-skis', 'ICD10_2010'), +('V93.8', 'Accident on board watercraft without accident to watercraft, not causing drowning and submersion: Other unpowered watercraft', 'ICD10_2010'), +('V93.9', 'Accident on board watercraft without accident to watercraft, not causing drowning and submersion: Unspecified watercraft', 'ICD10_2010'), +('V94', 'Other and unspecified water transport accidents', 'ICD10_2010'), +('V94.0', 'Other and unspecified water transport accidents: Merchant ship', 'ICD10_2010'), +('V94.1', 'Other and unspecified water transport accidents: Passenger ship', 'ICD10_2010'), +('V94.2', 'Other and unspecified water transport accidents: Fishing boat', 'ICD10_2010'), +('V94.3', 'Other and unspecified water transport accidents: Other powered watercraft', 'ICD10_2010'), +('V94.4', 'Other and unspecified water transport accidents: Sailboat', 'ICD10_2010'), +('V94.5', 'Other and unspecified water transport accidents: Canoe or kayak', 'ICD10_2010'), +('V94.6', 'Other and unspecified water transport accidents: Inflatable craft (nonpowered)', 'ICD10_2010'), +('V94.7', 'Other and unspecified water transport accidents: Water-skis', 'ICD10_2010'), +('V94.8', 'Other and unspecified water transport accidents: Other unpowered watercraft', 'ICD10_2010'), +('V94.9', 'Other and unspecified water transport accidents: Unspecified watercraft', 'ICD10_2010'), +('V95', 'Accident to powered aircraft causing injury to occupant', 'ICD10_2010'), +('V95.0', 'Helicopter accident injuring occupant', 'ICD10_2010'), +('V95.1', 'Ultralight, microlight or powered-glider accident injuring occupant', 'ICD10_2010'), +('V95.2', 'Accident to other private fixed-wing aircraft, injuring occupant', 'ICD10_2010'), +('V95.3', 'Accident to commercial fixed-wing aircraft, injuring occupant', 'ICD10_2010'), +('V95.4', 'Spacecraft accident injuring occupant', 'ICD10_2010'), +('V95.8', 'Other aircraft accidents injuring occupant', 'ICD10_2010'), +('V95.9', 'Unspecified aircraft accident injuring occupant', 'ICD10_2010'), +('V96', 'Accident to nonpowered aircraft causing injury to occupant', 'ICD10_2010'), +('V96.0', 'Balloon accident injuring occupant', 'ICD10_2010'), +('V96.1', 'Hang-glider accident injuring occupant', 'ICD10_2010'), +('V96.2', 'Glider (nonpowered) accident injuring occupant', 'ICD10_2010'), +('V96.8', 'Other nonpowered-aircraft accidents injuring occupant', 'ICD10_2010'), +('V96.9', 'Unspecified nonpowered-aircraft accident injuring occupant', 'ICD10_2010'), +('V97', 'Other specified air transport accidents', 'ICD10_2010'), +('V97.0', 'Occupant of aircraft injured in other specified air transport accidents', 'ICD10_2010'), +('V97.1', 'Person injured while boarding or alighting from aircraft', 'ICD10_2010'), +('V97.2', 'Parachutist injured in air transport accident', 'ICD10_2010'), +('V97.3', 'Person on ground injured in air transport accident', 'ICD10_2010'), +('V97.8', 'Other air transport accidents, not elsewhere classified', 'ICD10_2010'), +('V98', 'Other specified transport accidents', 'ICD10_2010'), +('V99', 'Unspecified transport accident', 'ICD10_2010'), +('W00', 'Fall on same level involving ice and snow', 'ICD10_2010'), +('W00.0', 'Fall on same level involving ice and snow, Home', 'ICD10_2010'), +('W00.1', 'Fall on same level involving ice and snow, Residential Institution', 'ICD10_2010'), +('W00.2', 'Fall on same level involving ice and snow, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W00.3', 'Fall on same level involving ice and snow, Sports and Athletic Areas', 'ICD10_2010'), +('W00.4', 'Fall on same level involving ice and snow, Street and Highway', 'ICD10_2010'), +('W00.5', 'Fall on same level involving ice and snow, Trade and Service Area', 'ICD10_2010'), +('W00.6', 'Fall on same level involving ice and snow, Industrial and Construction Area', 'ICD10_2010'), +('W00.7', 'Fall on same level involving ice and snow, Farm', 'ICD10_2010'), +('W00.8', 'Fall on same level involving ice and snow, Other Specified Area', 'ICD10_2010'), +('W00.9', 'Fall on same level involving ice and snow, Unspecified Place', 'ICD10_2010'), +('W01', 'Fall on same level from slipping, tripping and stumbling', 'ICD10_2010'), +('W01.0', 'Fall on same level from slipping, tripping and stumbling, Home', 'ICD10_2010'), +('W01.1', 'Fall on same level from slipping, tripping and stumbling, Residential Institution', 'ICD10_2010'), +('W01.2', 'Fall on same level from slipping, tripping and stumbling, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W01.3', 'Fall on same level from slipping, tripping and stumbling, Sports and Athletic Areas', 'ICD10_2010'), +('W01.4', 'Fall on same level from slipping, tripping and stumbling, Street and Highway', 'ICD10_2010'), +('W01.5', 'Fall on same level from slipping, tripping and stumbling, Trade and Service Area', 'ICD10_2010'), +('W01.6', 'Fall on same level from slipping, tripping and stumbling, Industrial and Construction Area', 'ICD10_2010'), +('W01.7', 'Fall on same level from slipping, tripping and stumbling, Farm', 'ICD10_2010'), +('W01.8', 'Fall on same level from slipping, tripping and stumbling, Other Specified Area', 'ICD10_2010'), +('W01.9', 'Fall on same level from slipping, tripping and stumbling, Unspecified Place', 'ICD10_2010'), +('W02', 'Fall involving ice-skates, skis, roller-skates or skateboards', 'ICD10_2010'), +('W02.0', 'Fall involving ice-skates, skis, roller-skates or skateboards, Home', 'ICD10_2010'), +('W02.1', 'Fall involving ice-skates, skis, roller-skates or skateboards, Residential Institution', 'ICD10_2010'), +('W02.2', 'Fall involving ice-skates, skis, roller-skates or skateboards, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W02.3', 'Fall involving ice-skates, skis, roller-skates or skateboards, Sports and Athletic Areas', 'ICD10_2010'), +('W02.4', 'Fall involving ice-skates, skis, roller-skates or skateboards, Street and Highway', 'ICD10_2010'), +('W02.5', 'Fall involving ice-skates, skis, roller-skates or skateboards, Trade and Service Area', 'ICD10_2010'), +('W02.6', 'Fall involving ice-skates, skis, roller-skates or skateboards, Industrial and Construction Area', 'ICD10_2010'), +('W02.7', 'Fall involving ice-skates, skis, roller-skates or skateboards, Farm', 'ICD10_2010'), +('W02.8', 'Fall involving ice-skates, skis, roller-skates or skateboards, Other Specified Area', 'ICD10_2010'), +('W02.9', 'Fall involving ice-skates, skis, roller-skates or skateboards, Unspecified Place', 'ICD10_2010'), +('W03', 'Other fall on same level due to collision with, or pushing by, another person', 'ICD10_2010'), +('W03.0', 'Other fall on same level due to collision with, or pushing by, another person, Home', 'ICD10_2010'), +('W03.1', 'Other fall on same level due to collision with, or pushing by, another person, Residential Institution', 'ICD10_2010'), +('W03.2', 'Other fall on same level due to collision with, or pushing by, another person, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W03.3', 'Other fall on same level due to collision with, or pushing by, another person, Sports and Athletic Areas', 'ICD10_2010'), +('W03.4', 'Other fall on same level due to collision with, or pushing by, another person, Street and Highway', 'ICD10_2010'), +('W03.5', 'Other fall on same level due to collision with, or pushing by, another person, Trade and Service Area', 'ICD10_2010'), +('W03.6', 'Other fall on same level due to collision with, or pushing by, another person, Industrial and Construction Area', 'ICD10_2010'), +('W03.7', 'Other fall on same level due to collision with, or pushing by, another person, Farm', 'ICD10_2010'), +('W03.8', 'Other fall on same level due to collision with, or pushing by, another person, Other Specified Area', 'ICD10_2010'), +('W03.9', 'Other fall on same level due to collision with, or pushing by, another person, Unspecified Place', 'ICD10_2010'), +('W04', 'Fall while being carried or supported by other persons', 'ICD10_2010'), +('W04.0', 'Fall while being carried or supported by other persons, Home', 'ICD10_2010'), +('W04.1', 'Fall while being carried or supported by other persons, Residential Institution', 'ICD10_2010'), +('W04.2', 'Fall while being carried or supported by other persons, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W04.3', 'Fall while being carried or supported by other persons, Sports and Athletic Areas', 'ICD10_2010'), +('W04.4', 'Fall while being carried or supported by other persons, Street and Highway', 'ICD10_2010'), +('W04.5', 'Fall while being carried or supported by other persons, Trade and Service Area', 'ICD10_2010'), +('W04.6', 'Fall while being carried or supported by other persons, Industrial and Construction Area', 'ICD10_2010'), +('W04.7', 'Fall while being carried or supported by other persons, Farm', 'ICD10_2010'), +('W04.8', 'Fall while being carried or supported by other persons, Other Specified Area', 'ICD10_2010'), +('W04.9', 'Fall while being carried or supported by other persons, Unspecified Place', 'ICD10_2010'), +('W05', 'Fall involving wheelchair', 'ICD10_2010'), +('W05.0', 'Fall involving wheelchair, Home', 'ICD10_2010'), +('W05.1', 'Fall involving wheelchair, Residential Institution', 'ICD10_2010'), +('W05.2', 'Fall involving wheelchair, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W05.3', 'Fall involving wheelchair, Sports and Athletic Areas', 'ICD10_2010'), +('W05.4', 'Fall involving wheelchair, Street and Highway', 'ICD10_2010'), +('W05.5', 'Fall involving wheelchair, Trade and Service Area', 'ICD10_2010'), +('W05.6', 'Fall involving wheelchair, Industrial and Construction Area', 'ICD10_2010'), +('W05.7', 'Fall involving wheelchair, Farm', 'ICD10_2010'), +('W05.8', 'Fall involving wheelchair, Other Specified Area', 'ICD10_2010'), +('W05.9', 'Fall involving wheelchair, Unspecified Place', 'ICD10_2010'), +('W06', 'Fall involving bed', 'ICD10_2010'), +('W06.0', 'Fall involving bed, Home', 'ICD10_2010'), +('W06.1', 'Fall involving bed, Residential Institution', 'ICD10_2010'), +('W06.2', 'Fall involving bed, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W06.3', 'Fall involving bed, Sports and Athletic Areas', 'ICD10_2010'), +('W06.4', 'Fall involving bed, Street and Highway', 'ICD10_2010'), +('W06.5', 'Fall involving bed, Trade and Service Area', 'ICD10_2010'), +('W06.6', 'Fall involving bed, Industrial and Construction Area', 'ICD10_2010'), +('W06.7', 'Fall involving bed, Farm', 'ICD10_2010'), +('W06.8', 'Fall involving bed, Other Specified Area', 'ICD10_2010'), +('W06.9', 'Fall involving bed, Unspecified Place', 'ICD10_2010'), +('W07', 'Fall involving chair', 'ICD10_2010'), +('W07.0', 'Fall involving chair, Home', 'ICD10_2010'), +('W07.1', 'Fall involving chair, Residential Institution', 'ICD10_2010'), +('W07.2', 'Fall involving chair, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W07.3', 'Fall involving chair, Sports and Athletic Areas', 'ICD10_2010'), +('W07.4', 'Fall involving chair, Street and Highway', 'ICD10_2010'), +('W07.5', 'Fall involving chair, Trade and Service Area', 'ICD10_2010'), +('W07.6', 'Fall involving chair, Industrial and Construction Area', 'ICD10_2010'), +('W07.7', 'Fall involving chair, Farm', 'ICD10_2010'), +('W07.8', 'Fall involving chair, Other Specified Area', 'ICD10_2010'), +('W07.9', 'Fall involving chair, Unspecified Place', 'ICD10_2010'), +('W08', 'Fall involving other furniture', 'ICD10_2010'), +('W08.0', 'Fall involving other furniture, Home', 'ICD10_2010'), +('W08.1', 'Fall involving other furniture, Residential Institution', 'ICD10_2010'), +('W08.2', 'Fall involving other furniture, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W08.3', 'Fall involving other furniture, Sports and Athletic Areas', 'ICD10_2010'), +('W08.4', 'Fall involving other furniture, Street and Highway', 'ICD10_2010'), +('W08.5', 'Fall involving other furniture, Trade and Service Area', 'ICD10_2010'), +('W08.6', 'Fall involving other furniture, Industrial and Construction Area', 'ICD10_2010'), +('W08.7', 'Fall involving other furniture, Farm', 'ICD10_2010'), +('W08.8', 'Fall involving other furniture, Other Specified Area', 'ICD10_2010'), +('W08.9', 'Fall involving other furniture, Unspecified Place', 'ICD10_2010'), +('W09', 'Fall involving playground equipment', 'ICD10_2010'), +('W09.0', 'Fall involving playground equipment, Home', 'ICD10_2010'), +('W09.1', 'Fall involving playground equipment, Residential Institution', 'ICD10_2010'), +('W09.2', 'Fall involving playground equipment, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W09.3', 'Fall involving playground equipment, Sports and Athletic Areas', 'ICD10_2010'), +('W09.4', 'Fall involving playground equipment, Street and Highway', 'ICD10_2010'), +('W09.5', 'Fall involving playground equipment, Trade and Service Area', 'ICD10_2010'), +('W09.6', 'Fall involving playground equipment, Industrial and Construction Area', 'ICD10_2010'), +('W09.7', 'Fall involving playground equipment, Farm', 'ICD10_2010'), +('W09.8', 'Fall involving playground equipment, Other Specified Area', 'ICD10_2010'), +('W09.9', 'Fall involving playground equipment, Unspecified Place', 'ICD10_2010'), +('W10', 'Fall on and from stairs and steps', 'ICD10_2010'), +('W10.0', 'Fall on and from stairs and steps, Home', 'ICD10_2010'), +('W10.1', 'Fall on and from stairs and steps, Residential Institution', 'ICD10_2010'), +('W10.2', 'Fall on and from stairs and steps, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W10.3', 'Fall on and from stairs and steps, Sports and Athletic Areas', 'ICD10_2010'), +('W10.4', 'Fall on and from stairs and steps, Street and Highway', 'ICD10_2010'), +('W10.5', 'Fall on and from stairs and steps, Trade and Service Area', 'ICD10_2010'), +('W10.6', 'Fall on and from stairs and steps, Industrial and Construction Area', 'ICD10_2010'), +('W10.7', 'Fall on and from stairs and steps, Farm', 'ICD10_2010'), +('W10.8', 'Fall on and from stairs and steps, Other Specified Area', 'ICD10_2010'), +('W10.9', 'Fall on and from stairs and steps, Unspecified Place', 'ICD10_2010'), +('W11', 'Fall on and from ladder', 'ICD10_2010'), +('W11.0', 'Fall on and from ladder, Home', 'ICD10_2010'), +('W11.1', 'Fall on and from ladder, Residential Institution', 'ICD10_2010'), +('W11.2', 'Fall on and from ladder, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W11.3', 'Fall on and from ladder, Sports and Athletic Areas', 'ICD10_2010'), +('W11.4', 'Fall on and from ladder, Street and Highway', 'ICD10_2010'), +('W11.5', 'Fall on and from ladder, Trade and Service Area', 'ICD10_2010'), +('W11.6', 'Fall on and from ladder, Industrial and Construction Area', 'ICD10_2010'), +('W11.7', 'Fall on and from ladder, Farm', 'ICD10_2010'), +('W11.8', 'Fall on and from ladder, Other Specified Area', 'ICD10_2010'), +('W11.9', 'Fall on and from ladder, Unspecified Place', 'ICD10_2010'); +INSERT INTO `icd10` (`ID_ICD10`, `Diagnosa`, `Versi_ICD10`) VALUES +('W12', 'Fall on and from scaffolding', 'ICD10_2010'), +('W12.0', 'Fall on and from scaffolding, Home', 'ICD10_2010'), +('W12.1', 'Fall on and from scaffolding, Residential Institution', 'ICD10_2010'), +('W12.2', 'Fall on and from scaffolding, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W12.3', 'Fall on and from scaffolding, Sports and Athletic Areas', 'ICD10_2010'), +('W12.4', 'Fall on and from scaffolding, Street and Highway', 'ICD10_2010'), +('W12.5', 'Fall on and from scaffolding, Trade and Service Area', 'ICD10_2010'), +('W12.6', 'Fall on and from scaffolding, Industrial and Construction Area', 'ICD10_2010'), +('W12.7', 'Fall on and from scaffolding, Farm', 'ICD10_2010'), +('W12.8', 'Fall on and from scaffolding, Other Specified Area', 'ICD10_2010'), +('W12.9', 'Fall on and from scaffolding, Unspecified Place', 'ICD10_2010'), +('W13', 'Fall from, out of or through building or structure', 'ICD10_2010'), +('W13.0', 'Fall from, out of or through building or structure, Home', 'ICD10_2010'), +('W13.1', 'Fall from, out of or through building or structure, Residential Institution', 'ICD10_2010'), +('W13.2', 'Fall from, out of or through building or structure, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W13.3', 'Fall from, out of or through building or structure, Sports and Athletic Areas', 'ICD10_2010'), +('W13.4', 'Fall from, out of or through building or structure, Street and Highway', 'ICD10_2010'), +('W13.5', 'Fall from, out of or through building or structure, Trade and Service Area', 'ICD10_2010'), +('W13.6', 'Fall from, out of or through building or structure, Industrial and Construction Area', 'ICD10_2010'), +('W13.7', 'Fall from, out of or through building or structure, Farm', 'ICD10_2010'), +('W13.8', 'Fall from, out of or through building or structure, Other Specified Area', 'ICD10_2010'), +('W13.9', 'Fall from, out of or through building or structure, Unspecified Place', 'ICD10_2010'), +('W14', 'Fall from tree', 'ICD10_2010'), +('W14.0', 'Fall from tree, Home', 'ICD10_2010'), +('W14.1', 'Fall from tree, Residential Institution', 'ICD10_2010'), +('W14.2', 'Fall from tree, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W14.3', 'Fall from tree, Sports and Athletic Areas', 'ICD10_2010'), +('W14.4', 'Fall from tree, Street and Highway', 'ICD10_2010'), +('W14.5', 'Fall from tree, Trade and Service Area', 'ICD10_2010'), +('W14.6', 'Fall from tree, Industrial and Construction Area', 'ICD10_2010'), +('W14.7', 'Fall from tree, Farm', 'ICD10_2010'), +('W14.8', 'Fall from tree, Other Specified Area', 'ICD10_2010'), +('W14.9', 'Fall from tree, Unspecified Place', 'ICD10_2010'), +('W15', 'Fall from cliff', 'ICD10_2010'), +('W15.0', 'Fall from cliff, Home', 'ICD10_2010'), +('W15.1', 'Fall from cliff, Residential Institution', 'ICD10_2010'), +('W15.2', 'Fall from cliff, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W15.3', 'Fall from cliff, Sports and Athletic Areas', 'ICD10_2010'), +('W15.4', 'Fall from cliff, Street and Highway', 'ICD10_2010'), +('W15.5', 'Fall from cliff, Trade and Service Area', 'ICD10_2010'), +('W15.6', 'Fall from cliff, Industrial and Construction Area', 'ICD10_2010'), +('W15.7', 'Fall from cliff, Farm', 'ICD10_2010'), +('W15.8', 'Fall from cliff, Other Specified Area', 'ICD10_2010'), +('W15.9', 'Fall from cliff, Unspecified Place', 'ICD10_2010'), +('W16', 'Diving or jumping into water causing injury other than drowning or submersion', 'ICD10_2010'), +('W16.0', 'Diving or jumping into water causing injury other than drowning or submersion, Home', 'ICD10_2010'), +('W16.1', 'Diving or jumping into water causing injury other than drowning or submersion, Residential Institution', 'ICD10_2010'), +('W16.2', 'Diving or jumping into water causing injury other than drowning or submersion, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W16.3', 'Diving or jumping into water causing injury other than drowning or submersion, Sports and Athletic Areas', 'ICD10_2010'), +('W16.4', 'Diving or jumping into water causing injury other than drowning or submersion, Street and Highway', 'ICD10_2010'), +('W16.5', 'Diving or jumping into water causing injury other than drowning or submersion, Trade and Service Area', 'ICD10_2010'), +('W16.6', 'Diving or jumping into water causing injury other than drowning or submersion, Industrial and Construction Area', 'ICD10_2010'), +('W16.7', 'Diving or jumping into water causing injury other than drowning or submersion, Farm', 'ICD10_2010'), +('W16.8', 'Diving or jumping into water causing injury other than drowning or submersion, Other Specified Area', 'ICD10_2010'), +('W16.9', 'Diving or jumping into water causing injury other than drowning or submersion, Unspecified Place', 'ICD10_2010'), +('W17', 'Other fall from one level to another', 'ICD10_2010'), +('W17.0', 'Other fall from one level to another, Home', 'ICD10_2010'), +('W17.1', 'Other fall from one level to another, Residential Institution', 'ICD10_2010'), +('W17.2', 'Other fall from one level to another, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W17.3', 'Other fall from one level to another, Sports and Athletic Areas', 'ICD10_2010'), +('W17.4', 'Other fall from one level to another, Street and Highway', 'ICD10_2010'), +('W17.5', 'Other fall from one level to another, Trade and Service Area', 'ICD10_2010'), +('W17.6', 'Other fall from one level to another, Industrial and Construction Area', 'ICD10_2010'), +('W17.7', 'Other fall from one level to another, Farm', 'ICD10_2010'), +('W17.8', 'Other fall from one level to another, Other Specified Area', 'ICD10_2010'), +('W17.9', 'Other fall from one level to another, Unspecified Place', 'ICD10_2010'), +('W18', 'Other fall on same level', 'ICD10_2010'), +('W18.0', 'Other fall on same level, Home', 'ICD10_2010'), +('W18.1', 'Other fall on same level, Residential Institution', 'ICD10_2010'), +('W18.2', 'Other fall on same level, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W18.3', 'Other fall on same level, Sports and Athletic Areas', 'ICD10_2010'), +('W18.4', 'Other fall on same level, Street and Highway', 'ICD10_2010'), +('W18.5', 'Other fall on same level, Trade and Service Area', 'ICD10_2010'), +('W18.6', 'Other fall on same level, Industrial and Construction Area', 'ICD10_2010'), +('W18.7', 'Other fall on same level, Farm', 'ICD10_2010'), +('W18.8', 'Other fall on same level, Other Specified Area', 'ICD10_2010'), +('W18.9', 'Other fall on same level, Unspecified Place', 'ICD10_2010'), +('W19', 'Unspecified fall', 'ICD10_2010'), +('W19.0', 'Unspecified fall, Home', 'ICD10_2010'), +('W19.1', 'Unspecified fall, Residential Institution', 'ICD10_2010'), +('W19.2', 'Unspecified fall, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W19.3', 'Unspecified fall, Sports and Athletic Areas', 'ICD10_2010'), +('W19.4', 'Unspecified fall, Street and Highway', 'ICD10_2010'), +('W19.5', 'Unspecified fall, Trade and Service Area', 'ICD10_2010'), +('W19.6', 'Unspecified fall, Industrial and Construction Area', 'ICD10_2010'), +('W19.7', 'Unspecified fall, Farm', 'ICD10_2010'), +('W19.8', 'Unspecified fall, Other Specified Area', 'ICD10_2010'), +('W19.9', 'Unspecified fall, Unspecified Place', 'ICD10_2010'), +('W20', 'Struck by thrown, projected or falling object', 'ICD10_2010'), +('W20.0', 'Struck by thrown, projected or falling object, Home', 'ICD10_2010'), +('W20.1', 'Struck by thrown, projected or falling object, Residential Institution', 'ICD10_2010'), +('W20.2', 'Struck by thrown, projected or falling object, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W20.3', 'Struck by thrown, projected or falling object, Sports and Athletic Areas', 'ICD10_2010'), +('W20.4', 'Struck by thrown, projected or falling object, Street and Highway', 'ICD10_2010'), +('W20.5', 'Struck by thrown, projected or falling object, Trade and Service Area', 'ICD10_2010'), +('W20.6', 'Struck by thrown, projected or falling object, Industrial and Construction Area', 'ICD10_2010'), +('W20.7', 'Struck by thrown, projected or falling object, Farm', 'ICD10_2010'), +('W20.8', 'Struck by thrown, projected or falling object, Other Specified Area', 'ICD10_2010'), +('W20.9', 'Struck by thrown, projected or falling object, Unspecified Place', 'ICD10_2010'), +('W21', 'Striking against or struck by sports equipment', 'ICD10_2010'), +('W21.0', 'Striking against or struck by sports equipment, Home', 'ICD10_2010'), +('W21.1', 'Striking against or struck by sports equipment, Residential Institution', 'ICD10_2010'), +('W21.2', 'Striking against or struck by sports equipment, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W21.3', 'Striking against or struck by sports equipment, Sports and Athletic Areas', 'ICD10_2010'), +('W21.4', 'Striking against or struck by sports equipment, Street and Highway', 'ICD10_2010'), +('W21.5', 'Striking against or struck by sports equipment, Trade and Service Area', 'ICD10_2010'), +('W21.6', 'Striking against or struck by sports equipment, Industrial and Construction Area', 'ICD10_2010'), +('W21.7', 'Striking against or struck by sports equipment, Farm', 'ICD10_2010'), +('W21.8', 'Striking against or struck by sports equipment, Other Specified Area', 'ICD10_2010'), +('W21.9', 'Striking against or struck by sports equipment, Unspecified Place', 'ICD10_2010'), +('W22', 'Striking against or struck by other objects', 'ICD10_2010'), +('W22.0', 'Striking against or struck by other objects, Home', 'ICD10_2010'), +('W22.1', 'Striking against or struck by other objects, Residential Institution', 'ICD10_2010'), +('W22.2', 'Striking against or struck by other objects, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W22.3', 'Striking against or struck by other objects, Sports and Athletic Areas', 'ICD10_2010'), +('W22.4', 'Striking against or struck by other objects, Street and Highway', 'ICD10_2010'), +('W22.5', 'Striking against or struck by other objects, Trade and Service Area', 'ICD10_2010'), +('W22.6', 'Striking against or struck by other objects, Industrial and Construction Area', 'ICD10_2010'), +('W22.7', 'Striking against or struck by other objects, Farm', 'ICD10_2010'), +('W22.8', 'Striking against or struck by other objects, Other Specified Area', 'ICD10_2010'), +('W22.9', 'Striking against or struck by other objects, Unspecified Place', 'ICD10_2010'), +('W23', 'Caught, crushed, jammed or pinched in or between objects', 'ICD10_2010'), +('W23.0', 'Caught, crushed, jammed or pinched in or between objects, Home', 'ICD10_2010'), +('W23.1', 'Caught, crushed, jammed or pinched in or between objects, Residential Institution', 'ICD10_2010'), +('W23.2', 'Caught, crushed, jammed or pinched in or between objects, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W23.3', 'Caught, crushed, jammed or pinched in or between objects, Sports and Athletic Areas', 'ICD10_2010'), +('W23.4', 'Caught, crushed, jammed or pinched in or between objects, Street and Highway', 'ICD10_2010'), +('W23.5', 'Caught, crushed, jammed or pinched in or between objects, Trade and Service Area', 'ICD10_2010'), +('W23.6', 'Caught, crushed, jammed or pinched in or between objects, Industrial and Construction Area', 'ICD10_2010'), +('W23.7', 'Caught, crushed, jammed or pinched in or between objects, Farm', 'ICD10_2010'), +('W23.8', 'Caught, crushed, jammed or pinched in or between objects, Other Specified Area', 'ICD10_2010'), +('W23.9', 'Caught, crushed, jammed or pinched in or between objects, Unspecified Place', 'ICD10_2010'), +('W24', 'Contact with lifting and transmission devices, not elsewhere classified', 'ICD10_2010'), +('W24.0', 'Contact with lifting and transmission devices, not elsewhere classified, Home', 'ICD10_2010'), +('W24.1', 'Contact with lifting and transmission devices, not elsewhere classified, Residential Institution', 'ICD10_2010'), +('W24.2', 'Contact with lifting and transmission devices, not elsewhere classified, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W24.3', 'Contact with lifting and transmission devices, not elsewhere classified, Sports and Athletic Areas', 'ICD10_2010'), +('W24.4', 'Contact with lifting and transmission devices, not elsewhere classified, Street and Highway', 'ICD10_2010'), +('W24.5', 'Contact with lifting and transmission devices, not elsewhere classified, Trade and Service Area', 'ICD10_2010'), +('W24.6', 'Contact with lifting and transmission devices, not elsewhere classified, Industrial and Construction Area', 'ICD10_2010'), +('W24.7', 'Contact with lifting and transmission devices, not elsewhere classified, Farm', 'ICD10_2010'), +('W24.8', 'Contact with lifting and transmission devices, not elsewhere classified, Other Specified Area', 'ICD10_2010'), +('W24.9', 'Contact with lifting and transmission devices, not elsewhere classified, Unspecified Place', 'ICD10_2010'), +('W25', 'Contact with sharp glass', 'ICD10_2010'), +('W25.0', 'Contact with sharp glass, Home', 'ICD10_2010'), +('W25.1', 'Contact with sharp glass, Residential Institution', 'ICD10_2010'), +('W25.2', 'Contact with sharp glass, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W25.3', 'Contact with sharp glass, Sports and Athletic Areas', 'ICD10_2010'), +('W25.4', 'Contact with sharp glass, Street and Highway', 'ICD10_2010'), +('W25.5', 'Contact with sharp glass, Trade and Service Area', 'ICD10_2010'), +('W25.6', 'Contact with sharp glass, Industrial and Construction Area', 'ICD10_2010'), +('W25.7', 'Contact with sharp glass, Farm', 'ICD10_2010'), +('W25.8', 'Contact with sharp glass, Other Specified Area', 'ICD10_2010'), +('W25.9', 'Contact with sharp glass, Unspecified Place', 'ICD10_2010'), +('W26', 'Contact with knife, sword or dagger', 'ICD10_2010'), +('W26.0', 'Contact with knife, sword or dagger, Home', 'ICD10_2010'), +('W26.1', 'Contact with knife, sword or dagger, Residential Institution', 'ICD10_2010'), +('W26.2', 'Contact with knife, sword or dagger, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W26.3', 'Contact with knife, sword or dagger, Sports and Athletic Areas', 'ICD10_2010'), +('W26.4', 'Contact with knife, sword or dagger, Street and Highway', 'ICD10_2010'), +('W26.5', 'Contact with knife, sword or dagger, Trade and Service Area', 'ICD10_2010'), +('W26.6', 'Contact with knife, sword or dagger, Industrial and Construction Area', 'ICD10_2010'), +('W26.7', 'Contact with knife, sword or dagger, Farm', 'ICD10_2010'), +('W26.8', 'Contact with knife, sword or dagger, Other Specified Area', 'ICD10_2010'), +('W26.9', 'Contact with knife, sword or dagger, Unspecified Place', 'ICD10_2010'), +('W27', 'Contact with nonpowered hand tool', 'ICD10_2010'), +('W27.0', 'Contact with nonpowered hand tool, Home', 'ICD10_2010'), +('W27.1', 'Contact with nonpowered hand tool, Residential Institution', 'ICD10_2010'), +('W27.2', 'Contact with nonpowered hand tool, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W27.3', 'Contact with nonpowered hand tool, Sports and Athletic Areas', 'ICD10_2010'), +('W27.4', 'Contact with nonpowered hand tool, Street and Highway', 'ICD10_2010'), +('W27.5', 'Contact with nonpowered hand tool, Trade and Service Area', 'ICD10_2010'), +('W27.6', 'Contact with nonpowered hand tool, Industrial and Construction Area', 'ICD10_2010'), +('W27.7', 'Contact with nonpowered hand tool, Farm', 'ICD10_2010'), +('W27.8', 'Contact with nonpowered hand tool, Other Specified Area', 'ICD10_2010'), +('W27.9', 'Contact with nonpowered hand tool, Unspecified Place', 'ICD10_2010'), +('W28', 'Contact with powered lawnmower', 'ICD10_2010'), +('W28.0', 'Contact with powered lawnmower, Home', 'ICD10_2010'), +('W28.1', 'Contact with powered lawnmower, Residential Institution', 'ICD10_2010'), +('W28.2', 'Contact with powered lawnmower, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W28.3', 'Contact with powered lawnmower, Sports and Athletic Areas', 'ICD10_2010'), +('W28.4', 'Contact with powered lawnmower, Street and Highway', 'ICD10_2010'), +('W28.5', 'Contact with powered lawnmower, Trade and Service Area', 'ICD10_2010'), +('W28.6', 'Contact with powered lawnmower, Industrial and Construction Area', 'ICD10_2010'), +('W28.7', 'Contact with powered lawnmower, Farm', 'ICD10_2010'), +('W28.8', 'Contact with powered lawnmower, Other Specified Area', 'ICD10_2010'), +('W28.9', 'Contact with powered lawnmower, Unspecified Place', 'ICD10_2010'), +('W29', 'Contact with other powered hand tools and household machinery', 'ICD10_2010'), +('W29.0', 'Contact with other powered hand tools and household machinery, Home', 'ICD10_2010'), +('W29.1', 'Contact with other powered hand tools and household machinery, Residential Institution', 'ICD10_2010'), +('W29.2', 'Contact with other powered hand tools and household machinery, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W29.3', 'Contact with other powered hand tools and household machinery, Sports and Athletic Areas', 'ICD10_2010'), +('W29.4', 'Contact with other powered hand tools and household machinery, Street and Highway', 'ICD10_2010'), +('W29.5', 'Contact with other powered hand tools and household machinery, Trade and Service Area', 'ICD10_2010'), +('W29.6', 'Contact with other powered hand tools and household machinery, Industrial and Construction Area', 'ICD10_2010'), +('W29.7', 'Contact with other powered hand tools and household machinery, Farm', 'ICD10_2010'), +('W29.8', 'Contact with other powered hand tools and household machinery, Other Specified Area', 'ICD10_2010'), +('W29.9', 'Contact with other powered hand tools and household machinery, Unspecified Place', 'ICD10_2010'), +('W30', 'Contact with agricultural machinery', 'ICD10_2010'), +('W30.0', 'Contact with agricultural machinery, Home', 'ICD10_2010'), +('W30.1', 'Contact with agricultural machinery, Residential Institution', 'ICD10_2010'), +('W30.2', 'Contact with agricultural machinery, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W30.3', 'Contact with agricultural machinery, Sports and Athletic Areas', 'ICD10_2010'), +('W30.4', 'Contact with agricultural machinery, Street and Highway', 'ICD10_2010'), +('W30.5', 'Contact with agricultural machinery, Trade and Service Area', 'ICD10_2010'), +('W30.6', 'Contact with agricultural machinery, Industrial and Construction Area', 'ICD10_2010'), +('W30.7', 'Contact with agricultural machinery, Farm', 'ICD10_2010'), +('W30.8', 'Contact with agricultural machinery, Other Specified Area', 'ICD10_2010'), +('W30.9', 'Contact with agricultural machinery, Unspecified Place', 'ICD10_2010'), +('W31', 'Contact with other and unspecified machinery', 'ICD10_2010'), +('W31.0', 'Contact with other and unspecified machinery, Home', 'ICD10_2010'), +('W31.1', 'Contact with other and unspecified machinery, Residential Institution', 'ICD10_2010'), +('W31.2', 'Contact with other and unspecified machinery, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W31.3', 'Contact with other and unspecified machinery, Sports and Athletic Areas', 'ICD10_2010'), +('W31.4', 'Contact with other and unspecified machinery, Street and Highway', 'ICD10_2010'), +('W31.5', 'Contact with other and unspecified machinery, Trade and Service Area', 'ICD10_2010'), +('W31.6', 'Contact with other and unspecified machinery, Industrial and Construction Area', 'ICD10_2010'), +('W31.7', 'Contact with other and unspecified machinery, Farm', 'ICD10_2010'), +('W31.8', 'Contact with other and unspecified machinery, Other Specified Area', 'ICD10_2010'), +('W31.9', 'Contact with other and unspecified machinery, Unspecified Place', 'ICD10_2010'), +('W32', 'Handgun discharge', 'ICD10_2010'), +('W32.0', 'Handgun discharge, Home', 'ICD10_2010'), +('W32.1', 'Handgun discharge, Residential Institution', 'ICD10_2010'), +('W32.2', 'Handgun discharge, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W32.3', 'Handgun discharge, Sports and Athletic Areas', 'ICD10_2010'), +('W32.4', 'Handgun discharge, Street and Highway', 'ICD10_2010'), +('W32.5', 'Handgun discharge, Trade and Service Area', 'ICD10_2010'), +('W32.6', 'Handgun discharge, Industrial and Construction Area', 'ICD10_2010'), +('W32.7', 'Handgun discharge, Farm', 'ICD10_2010'), +('W32.8', 'Handgun discharge, Other Specified Area', 'ICD10_2010'), +('W32.9', 'Handgun discharge, Unspecified Place', 'ICD10_2010'), +('W33', 'Rifle, shotgun and larger firearm discharge', 'ICD10_2010'), +('W33.0', 'Rifle, shotgun and larger firearm discharge, Home', 'ICD10_2010'), +('W33.1', 'Rifle, shotgun and larger firearm discharge, Residential Institution', 'ICD10_2010'), +('W33.2', 'Rifle, shotgun and larger firearm discharge, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W33.3', 'Rifle, shotgun and larger firearm discharge, Sports and Athletic Areas', 'ICD10_2010'), +('W33.4', 'Rifle, shotgun and larger firearm discharge, Street and Highway', 'ICD10_2010'), +('W33.5', 'Rifle, shotgun and larger firearm discharge, Trade and Service Area', 'ICD10_2010'), +('W33.6', 'Rifle, shotgun and larger firearm discharge, Industrial and Construction Area', 'ICD10_2010'), +('W33.7', 'Rifle, shotgun and larger firearm discharge, Farm', 'ICD10_2010'), +('W33.8', 'Rifle, shotgun and larger firearm discharge, Other Specified Area', 'ICD10_2010'), +('W33.9', 'Rifle, shotgun and larger firearm discharge, Unspecified Place', 'ICD10_2010'), +('W34', 'Discharge from other and unspecified firearms', 'ICD10_2010'), +('W34.0', 'Discharge from other and unspecified firearms, Home', 'ICD10_2010'), +('W34.1', 'Discharge from other and unspecified firearms, Residential Institution', 'ICD10_2010'), +('W34.2', 'Discharge from other and unspecified firearms, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W34.3', 'Discharge from other and unspecified firearms, Sports and Athletic Areas', 'ICD10_2010'), +('W34.4', 'Discharge from other and unspecified firearms, Street and Highway', 'ICD10_2010'), +('W34.5', 'Discharge from other and unspecified firearms, Trade and Service Area', 'ICD10_2010'), +('W34.6', 'Discharge from other and unspecified firearms, Industrial and Construction Area', 'ICD10_2010'), +('W34.7', 'Discharge from other and unspecified firearms, Farm', 'ICD10_2010'), +('W34.8', 'Discharge from other and unspecified firearms, Other Specified Area', 'ICD10_2010'), +('W34.9', 'Discharge from other and unspecified firearms, Unspecified Place', 'ICD10_2010'), +('W35', 'Explosion and rupture of boiler', 'ICD10_2010'), +('W35.0', 'Explosion and rupture of boiler, Home', 'ICD10_2010'), +('W35.1', 'Explosion and rupture of boiler, Residential Institution', 'ICD10_2010'), +('W35.2', 'Explosion and rupture of boiler, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W35.3', 'Explosion and rupture of boiler, Sports and Athletic Areas', 'ICD10_2010'), +('W35.4', 'Explosion and rupture of boiler, Street and Highway', 'ICD10_2010'), +('W35.5', 'Explosion and rupture of boiler, Trade and Service Area', 'ICD10_2010'), +('W35.6', 'Explosion and rupture of boiler, Industrial and Construction Area', 'ICD10_2010'), +('W35.7', 'Explosion and rupture of boiler, Farm', 'ICD10_2010'), +('W35.8', 'Explosion and rupture of boiler, Other Specified Area', 'ICD10_2010'), +('W35.9', 'Explosion and rupture of boiler, Unspecified Place', 'ICD10_2010'), +('W36', 'Explosion and rupture of gas cylinder', 'ICD10_2010'), +('W36.0', 'Explosion and rupture of gas cylinder, Home', 'ICD10_2010'), +('W36.1', 'Explosion and rupture of gas cylinder, Residential Institution', 'ICD10_2010'), +('W36.2', 'Explosion and rupture of gas cylinder, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W36.3', 'Explosion and rupture of gas cylinder, Sports and Athletic Areas', 'ICD10_2010'), +('W36.4', 'Explosion and rupture of gas cylinder, Street and Highway', 'ICD10_2010'), +('W36.5', 'Explosion and rupture of gas cylinder, Trade and Service Area', 'ICD10_2010'), +('W36.6', 'Explosion and rupture of gas cylinder, Industrial and Construction Area', 'ICD10_2010'), +('W36.7', 'Explosion and rupture of gas cylinder, Farm', 'ICD10_2010'), +('W36.8', 'Explosion and rupture of gas cylinder, Other Specified Area', 'ICD10_2010'), +('W36.9', 'Explosion and rupture of gas cylinder, Unspecified Place', 'ICD10_2010'), +('W37', 'Explosion and rupture of pressurized tyre, pipe or hose', 'ICD10_2010'), +('W37.0', 'Explosion and rupture of pressurized tyre, pipe or hose, Home', 'ICD10_2010'), +('W37.1', 'Explosion and rupture of pressurized tyre, pipe or hose, Residential Institution', 'ICD10_2010'), +('W37.2', 'Explosion and rupture of pressurized tyre, pipe or hose, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W37.3', 'Explosion and rupture of pressurized tyre, pipe or hose, Sports and Athletic Areas', 'ICD10_2010'), +('W37.4', 'Explosion and rupture of pressurized tyre, pipe or hose, Street and Highway', 'ICD10_2010'), +('W37.5', 'Explosion and rupture of pressurized tyre, pipe or hose, Trade and Service Area', 'ICD10_2010'), +('W37.6', 'Explosion and rupture of pressurized tyre, pipe or hose, Industrial and Construction Area', 'ICD10_2010'), +('W37.7', 'Explosion and rupture of pressurized tyre, pipe or hose, Farm', 'ICD10_2010'), +('W37.8', 'Explosion and rupture of pressurized tyre, pipe or hose, Other Specified Area', 'ICD10_2010'), +('W37.9', 'Explosion and rupture of pressurized tyre, pipe or hose, Unspecified Place', 'ICD10_2010'), +('W38', 'Explosion and rupture of other specified pressurized devices', 'ICD10_2010'), +('W38.0', 'Explosion and rupture of other specified pressurized devices, Home', 'ICD10_2010'), +('W38.1', 'Explosion and rupture of other specified pressurized devices, Residential Institution', 'ICD10_2010'), +('W38.2', 'Explosion and rupture of other specified pressurized devices, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W38.3', 'Explosion and rupture of other specified pressurized devices, Sports and Athletic Areas', 'ICD10_2010'), +('W38.4', 'Explosion and rupture of other specified pressurized devices, Street and Highway', 'ICD10_2010'), +('W38.5', 'Explosion and rupture of other specified pressurized devices, Trade and Service Area', 'ICD10_2010'), +('W38.6', 'Explosion and rupture of other specified pressurized devices, Industrial and Construction Area', 'ICD10_2010'), +('W38.7', 'Explosion and rupture of other specified pressurized devices, Farm', 'ICD10_2010'), +('W38.8', 'Explosion and rupture of other specified pressurized devices, Other Specified Area', 'ICD10_2010'), +('W38.9', 'Explosion and rupture of other specified pressurized devices, Unspecified Place', 'ICD10_2010'), +('W39', 'Discharge of firework', 'ICD10_2010'), +('W39.0', 'Discharge of firework, Home', 'ICD10_2010'), +('W39.1', 'Discharge of firework, Residential Institution', 'ICD10_2010'), +('W39.2', 'Discharge of firework, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W39.3', 'Discharge of firework, Sports and Athletic Areas', 'ICD10_2010'), +('W39.4', 'Discharge of firework, Street and Highway', 'ICD10_2010'), +('W39.5', 'Discharge of firework, Trade and Service Area', 'ICD10_2010'), +('W39.6', 'Discharge of firework, Industrial and Construction Area', 'ICD10_2010'), +('W39.7', 'Discharge of firework, Farm', 'ICD10_2010'), +('W39.8', 'Discharge of firework, Other Specified Area', 'ICD10_2010'), +('W39.9', 'Discharge of firework, Unspecified Place', 'ICD10_2010'), +('W40', 'Explosion of other materials', 'ICD10_2010'), +('W40.0', 'Explosion of other materials, Home', 'ICD10_2010'), +('W40.1', 'Explosion of other materials, Residential Institution', 'ICD10_2010'), +('W40.2', 'Explosion of other materials, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W40.3', 'Explosion of other materials, Sports and Athletic Areas', 'ICD10_2010'), +('W40.4', 'Explosion of other materials, Street and Highway', 'ICD10_2010'), +('W40.5', 'Explosion of other materials, Trade and Service Area', 'ICD10_2010'), +('W40.6', 'Explosion of other materials, Industrial and Construction Area', 'ICD10_2010'), +('W40.7', 'Explosion of other materials, Farm', 'ICD10_2010'), +('W40.8', 'Explosion of other materials, Other Specified Area', 'ICD10_2010'), +('W40.9', 'Explosion of other materials, Unspecified Place', 'ICD10_2010'), +('W41', 'Exposure to high-pressure jet', 'ICD10_2010'), +('W41.0', 'Exposure to high-pressure jet, Home', 'ICD10_2010'), +('W41.1', 'Exposure to high-pressure jet, Residential Institution', 'ICD10_2010'), +('W41.2', 'Exposure to high-pressure jet, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W41.3', 'Exposure to high-pressure jet, Sports and Athletic Areas', 'ICD10_2010'), +('W41.4', 'Exposure to high-pressure jet, Street and Highway', 'ICD10_2010'), +('W41.5', 'Exposure to high-pressure jet, Trade and Service Area', 'ICD10_2010'), +('W41.6', 'Exposure to high-pressure jet, Industrial and Construction Area', 'ICD10_2010'), +('W41.7', 'Exposure to high-pressure jet, Farm', 'ICD10_2010'), +('W41.8', 'Exposure to high-pressure jet, Other Specified Area', 'ICD10_2010'), +('W41.9', 'Exposure to high-pressure jet, Unspecified Place', 'ICD10_2010'), +('W42', 'Exposure to noise', 'ICD10_2010'), +('W42.0', 'Exposure to noise, Home', 'ICD10_2010'), +('W42.1', 'Exposure to noise, Residential Institution', 'ICD10_2010'), +('W42.2', 'Exposure to noise, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W42.3', 'Exposure to noise, Sports and Athletic Areas', 'ICD10_2010'), +('W42.4', 'Exposure to noise, Street and Highway', 'ICD10_2010'), +('W42.5', 'Exposure to noise, Trade and Service Area', 'ICD10_2010'), +('W42.6', 'Exposure to noise, Industrial and Construction Area', 'ICD10_2010'), +('W42.7', 'Exposure to noise, Farm', 'ICD10_2010'), +('W42.8', 'Exposure to noise, Other Specified Area', 'ICD10_2010'), +('W42.9', 'Exposure to noise, Unspecified Place', 'ICD10_2010'), +('W43', 'Exposure to vibration', 'ICD10_2010'), +('W43.0', 'Exposure to vibration, Home', 'ICD10_2010'), +('W43.1', 'Exposure to vibration, Residential Institution', 'ICD10_2010'), +('W43.2', 'Exposure to vibration, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W43.3', 'Exposure to vibration, Sports and Athletic Areas', 'ICD10_2010'), +('W43.4', 'Exposure to vibration, Street and Highway', 'ICD10_2010'), +('W43.5', 'Exposure to vibration, Trade and Service Area', 'ICD10_2010'), +('W43.6', 'Exposure to vibration, Industrial and Construction Area', 'ICD10_2010'), +('W43.7', 'Exposure to vibration, Farm', 'ICD10_2010'), +('W43.8', 'Exposure to vibration, Other Specified Area', 'ICD10_2010'), +('W43.9', 'Exposure to vibration, Unspecified Place', 'ICD10_2010'), +('W44', 'Foreign body entering into or through eye or natural orifice', 'ICD10_2010'), +('W44.0', 'Foreign body entering into or through eye or natural orifice, Home', 'ICD10_2010'), +('W44.1', 'Foreign body entering into or through eye or natural orifice, Residential Institution', 'ICD10_2010'), +('W44.2', 'Foreign body entering into or through eye or natural orifice, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W44.3', 'Foreign body entering into or through eye or natural orifice, Sports and Athletic Areas', 'ICD10_2010'), +('W44.4', 'Foreign body entering into or through eye or natural orifice, Street and Highway', 'ICD10_2010'), +('W44.5', 'Foreign body entering into or through eye or natural orifice, Trade and Service Area', 'ICD10_2010'), +('W44.6', 'Foreign body entering into or through eye or natural orifice, Industrial and Construction Area', 'ICD10_2010'), +('W44.7', 'Foreign body entering into or through eye or natural orifice, Farm', 'ICD10_2010'), +('W44.8', 'Foreign body entering into or through eye or natural orifice, Other Specified Area', 'ICD10_2010'), +('W44.9', 'Foreign body entering into or through eye or natural orifice, Unspecified Place', 'ICD10_2010'), +('W45', 'Foreign body or object entering through skin', 'ICD10_2010'), +('W45.0', 'Foreign body or object entering through skin, Home', 'ICD10_2010'), +('W45.1', 'Foreign body or object entering through skin, Residential Institution', 'ICD10_2010'), +('W45.2', 'Foreign body or object entering through skin, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W45.3', 'Foreign body or object entering through skin, Sports and Athletic Areas', 'ICD10_2010'), +('W45.4', 'Foreign body or object entering through skin, Street and Highway', 'ICD10_2010'), +('W45.5', 'Foreign body or object entering through skin, Trade and Service Area', 'ICD10_2010'), +('W45.6', 'Foreign body or object entering through skin, Industrial and Construction Area', 'ICD10_2010'), +('W45.7', 'Foreign body or object entering through skin, Farm', 'ICD10_2010'), +('W45.8', 'Foreign body or object entering through skin, Other Specified Area', 'ICD10_2010'), +('W45.9', 'Foreign body or object entering through skin, Unspecified Place', 'ICD10_2010'), +('W46', 'Contact with hypodermic needle', 'ICD10_2010'), +('W46.0', 'Contact with hypodermic needle, Home', 'ICD10_2010'), +('W46.1', 'Contact with hypodermic needle, Residential Institution', 'ICD10_2010'), +('W46.2', 'Contact with hypodermic needle, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W46.3', 'Contact with hypodermic needle, Sports and Athletic Areas', 'ICD10_2010'), +('W46.4', 'Contact with hypodermic needle, Street and Highway', 'ICD10_2010'), +('W46.5', 'Contact with hypodermic needle, Trade and Service Area', 'ICD10_2010'), +('W46.6', 'Contact with hypodermic needle, Industrial and Construction Area', 'ICD10_2010'), +('W46.7', 'Contact with hypodermic needle, Farm', 'ICD10_2010'), +('W46.8', 'Contact with hypodermic needle, Other Specified Area', 'ICD10_2010'), +('W46.9', 'Contact with hypodermic needle, Unspecified Place', 'ICD10_2010'), +('W49', 'Exposure to other and unspecified inanimate mechanical forces', 'ICD10_2010'), +('W49.0', 'Exposure to other and unspecified inanimate mechanical forces, Home', 'ICD10_2010'), +('W49.1', 'Exposure to other and unspecified inanimate mechanical forces, Residential Institution', 'ICD10_2010'), +('W49.2', 'Exposure to other and unspecified inanimate mechanical forces, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W49.3', 'Exposure to other and unspecified inanimate mechanical forces, Sports and Athletic Areas', 'ICD10_2010'), +('W49.4', 'Exposure to other and unspecified inanimate mechanical forces, Street and Highway', 'ICD10_2010'), +('W49.5', 'Exposure to other and unspecified inanimate mechanical forces, Trade and Service Area', 'ICD10_2010'), +('W49.6', 'Exposure to other and unspecified inanimate mechanical forces, Industrial and Construction Area', 'ICD10_2010'), +('W49.7', 'Exposure to other and unspecified inanimate mechanical forces, Farm', 'ICD10_2010'), +('W49.8', 'Exposure to other and unspecified inanimate mechanical forces, Other Specified Area', 'ICD10_2010'), +('W49.9', 'Exposure to other and unspecified inanimate mechanical forces, Unspecified Place', 'ICD10_2010'), +('W50', 'Hit, struck, kicked, twisted, bitten or scratched by another person', 'ICD10_2010'), +('W50.0', 'Hit, struck, kicked, twisted, bitten or scratched by another person, Home', 'ICD10_2010'), +('W50.1', 'Hit, struck, kicked, twisted, bitten or scratched by another person, Residential Institution', 'ICD10_2010'), +('W50.2', 'Hit, struck, kicked, twisted, bitten or scratched by another person, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W50.3', 'Hit, struck, kicked, twisted, bitten or scratched by another person, Sports and Athletic Areas', 'ICD10_2010'), +('W50.4', 'Hit, struck, kicked, twisted, bitten or scratched by another person, Street and Highway', 'ICD10_2010'), +('W50.5', 'Hit, struck, kicked, twisted, bitten or scratched by another person, Trade and Service Area', 'ICD10_2010'), +('W50.6', 'Hit, struck, kicked, twisted, bitten or scratched by another person, Industrial and Construction Area', 'ICD10_2010'), +('W50.7', 'Hit, struck, kicked, twisted, bitten or scratched by another person, Farm', 'ICD10_2010'), +('W50.8', 'Hit, struck, kicked, twisted, bitten or scratched by another person, Other Specified Area', 'ICD10_2010'), +('W50.9', 'Hit, struck, kicked, twisted, bitten or scratched by another person, Unspecified Place', 'ICD10_2010'), +('W51', 'Striking against or bumped into by another person', 'ICD10_2010'), +('W51.0', 'Striking against or bumped into by another person, Home', 'ICD10_2010'), +('W51.1', 'Striking against or bumped into by another person, Residential Institution', 'ICD10_2010'), +('W51.2', 'Striking against or bumped into by another person, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W51.3', 'Striking against or bumped into by another person, Sports and Athletic Areas', 'ICD10_2010'), +('W51.4', 'Striking against or bumped into by another person, Street and Highway', 'ICD10_2010'), +('W51.5', 'Striking against or bumped into by another person, Trade and Service Area', 'ICD10_2010'), +('W51.6', 'Striking against or bumped into by another person, Industrial and Construction Area', 'ICD10_2010'), +('W51.7', 'Striking against or bumped into by another person, Farm', 'ICD10_2010'), +('W51.8', 'Striking against or bumped into by another person, Other Specified Area', 'ICD10_2010'), +('W51.9', 'Striking against or bumped into by another person, Unspecified Place', 'ICD10_2010'), +('W52', 'Crushed, pushed or stepped on by crowd or human stampede', 'ICD10_2010'), +('W52.0', 'Crushed, pushed or stepped on by crowd or human stampede, Home', 'ICD10_2010'), +('W52.1', 'Crushed, pushed or stepped on by crowd or human stampede, Residential Institution', 'ICD10_2010'), +('W52.2', 'Crushed, pushed or stepped on by crowd or human stampede, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W52.3', 'Crushed, pushed or stepped on by crowd or human stampede, Sports and Athletic Areas', 'ICD10_2010'), +('W52.4', 'Crushed, pushed or stepped on by crowd or human stampede, Street and Highway', 'ICD10_2010'), +('W52.5', 'Crushed, pushed or stepped on by crowd or human stampede, Trade and Service Area', 'ICD10_2010'), +('W52.6', 'Crushed, pushed or stepped on by crowd or human stampede, Industrial and Construction Area', 'ICD10_2010'), +('W52.7', 'Crushed, pushed or stepped on by crowd or human stampede, Farm', 'ICD10_2010'), +('W52.8', 'Crushed, pushed or stepped on by crowd or human stampede, Other Specified Area', 'ICD10_2010'), +('W52.9', 'Crushed, pushed or stepped on by crowd or human stampede, Unspecified Place', 'ICD10_2010'), +('W53', 'Bitten by rat', 'ICD10_2010'), +('W53.0', 'Bitten by rat, Home', 'ICD10_2010'), +('W53.1', 'Bitten by rat, Residential Institution', 'ICD10_2010'), +('W53.2', 'Bitten by rat, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W53.3', 'Bitten by rat, Sports and Athletic Areas', 'ICD10_2010'), +('W53.4', 'Bitten by rat, Street and Highway', 'ICD10_2010'), +('W53.5', 'Bitten by rat, Trade and Service Area', 'ICD10_2010'), +('W53.6', 'Bitten by rat, Industrial and Construction Area', 'ICD10_2010'), +('W53.7', 'Bitten by rat, Farm', 'ICD10_2010'), +('W53.8', 'Bitten by rat, Other Specified Area', 'ICD10_2010'), +('W53.9', 'Bitten by rat, Unspecified Place', 'ICD10_2010'), +('W54', 'Bitten or struck by dog', 'ICD10_2010'), +('W54.0', 'Bitten or struck by dog, Home', 'ICD10_2010'), +('W54.1', 'Bitten or struck by dog, Residential Institution', 'ICD10_2010'), +('W54.2', 'Bitten or struck by dog, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W54.3', 'Bitten or struck by dog, Sports and Athletic Areas', 'ICD10_2010'), +('W54.4', 'Bitten or struck by dog, Street and Highway', 'ICD10_2010'), +('W54.5', 'Bitten or struck by dog, Trade and Service Area', 'ICD10_2010'), +('W54.6', 'Bitten or struck by dog, Industrial and Construction Area', 'ICD10_2010'), +('W54.7', 'Bitten or struck by dog, Farm', 'ICD10_2010'), +('W54.8', 'Bitten or struck by dog, Other Specified Area', 'ICD10_2010'), +('W54.9', 'Bitten or struck by dog, Unspecified Place', 'ICD10_2010'), +('W55', 'Bitten or struck by other mammals', 'ICD10_2010'), +('W55.0', 'Bitten or struck by other mammals, Home', 'ICD10_2010'), +('W55.1', 'Bitten or struck by other mammals, Residential Institution', 'ICD10_2010'), +('W55.2', 'Bitten or struck by other mammals, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W55.3', 'Bitten or struck by other mammals, Sports and Athletic Areas', 'ICD10_2010'), +('W55.4', 'Bitten or struck by other mammals, Street and Highway', 'ICD10_2010'), +('W55.5', 'Bitten or struck by other mammals, Trade and Service Area', 'ICD10_2010'), +('W55.6', 'Bitten or struck by other mammals, Industrial and Construction Area', 'ICD10_2010'), +('W55.7', 'Bitten or struck by other mammals, Farm', 'ICD10_2010'), +('W55.8', 'Bitten or struck by other mammals, Other Specified Area', 'ICD10_2010'), +('W55.9', 'Bitten or struck by other mammals, Unspecified Place', 'ICD10_2010'), +('W56', 'Contact with marine animal', 'ICD10_2010'), +('W56.0', 'Contact with marine animal, Home', 'ICD10_2010'), +('W56.1', 'Contact with marine animal, Residential Institution', 'ICD10_2010'), +('W56.2', 'Contact with marine animal, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W56.3', 'Contact with marine animal, Sports and Athletic Areas', 'ICD10_2010'), +('W56.4', 'Contact with marine animal, Street and Highway', 'ICD10_2010'), +('W56.5', 'Contact with marine animal, Trade and Service Area', 'ICD10_2010'), +('W56.6', 'Contact with marine animal, Industrial and Construction Area', 'ICD10_2010'), +('W56.7', 'Contact with marine animal, Farm', 'ICD10_2010'), +('W56.8', 'Contact with marine animal, Other Specified Area', 'ICD10_2010'), +('W56.9', 'Contact with marine animal, Unspecified Place', 'ICD10_2010'), +('W57', 'Bitten or stung by nonvenomous insect and other nonvenomous arthropods', 'ICD10_2010'), +('W57.0', 'Bitten or stung by nonvenomous insect and other nonvenomous arthropods, Home', 'ICD10_2010'), +('W57.1', 'Bitten or stung by nonvenomous insect and other nonvenomous arthropods, Residential Institution', 'ICD10_2010'), +('W57.2', 'Bitten or stung by nonvenomous insect and other nonvenomous arthropods, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W57.3', 'Bitten or stung by nonvenomous insect and other nonvenomous arthropods, Sports and Athletic Areas', 'ICD10_2010'), +('W57.4', 'Bitten or stung by nonvenomous insect and other nonvenomous arthropods, Street and Highway', 'ICD10_2010'), +('W57.5', 'Bitten or stung by nonvenomous insect and other nonvenomous arthropods, Trade and Service Area', 'ICD10_2010'), +('W57.6', 'Bitten or stung by nonvenomous insect and other nonvenomous arthropods, Industrial and Construction Area', 'ICD10_2010'), +('W57.7', 'Bitten or stung by nonvenomous insect and other nonvenomous arthropods, Farm', 'ICD10_2010'), +('W57.8', 'Bitten or stung by nonvenomous insect and other nonvenomous arthropods, Other Specified Area', 'ICD10_2010'), +('W57.9', 'Bitten or stung by nonvenomous insect and other nonvenomous arthropods, Unspecified Place', 'ICD10_2010'), +('W58', 'Bitten or struck by crocodile or alligator', 'ICD10_2010'), +('W58.0', 'Bitten or struck by crocodile or alligator, Home', 'ICD10_2010'), +('W58.1', 'Bitten or struck by crocodile or alligator, Residential Institution', 'ICD10_2010'), +('W58.2', 'Bitten or struck by crocodile or alligator, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W58.3', 'Bitten or struck by crocodile or alligator, Sports and Athletic Areas', 'ICD10_2010'), +('W58.4', 'Bitten or struck by crocodile or alligator, Street and Highway', 'ICD10_2010'), +('W58.5', 'Bitten or struck by crocodile or alligator, Trade and Service Area', 'ICD10_2010'), +('W58.6', 'Bitten or struck by crocodile or alligator, Industrial and Construction Area', 'ICD10_2010'), +('W58.7', 'Bitten or struck by crocodile or alligator, Farm', 'ICD10_2010'), +('W58.8', 'Bitten or struck by crocodile or alligator, Other Specified Area', 'ICD10_2010'), +('W58.9', 'Bitten or struck by crocodile or alligator, Unspecified Place', 'ICD10_2010'), +('W59', 'Bitten or crushed by other reptiles', 'ICD10_2010'), +('W59.0', 'Bitten or crushed by other reptiles, Home', 'ICD10_2010'), +('W59.1', 'Bitten or crushed by other reptiles, Residential Institution', 'ICD10_2010'), +('W59.2', 'Bitten or crushed by other reptiles, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W59.3', 'Bitten or crushed by other reptiles, Sports and Athletic Areas', 'ICD10_2010'), +('W59.4', 'Bitten or crushed by other reptiles, Street and Highway', 'ICD10_2010'), +('W59.5', 'Bitten or crushed by other reptiles, Trade and Service Area', 'ICD10_2010'), +('W59.6', 'Bitten or crushed by other reptiles, Industrial and Construction Area', 'ICD10_2010'), +('W59.7', 'Bitten or crushed by other reptiles, Farm', 'ICD10_2010'), +('W59.8', 'Bitten or crushed by other reptiles, Other Specified Area', 'ICD10_2010'), +('W59.9', 'Bitten or crushed by other reptiles, Unspecified Place', 'ICD10_2010'), +('W60', 'Contact with plant thorns and spines and sharp leaves', 'ICD10_2010'), +('W60.0', 'Contact with plant thorns and spines and sharp leaves, Home', 'ICD10_2010'), +('W60.1', 'Contact with plant thorns and spines and sharp leaves, Residential Institution', 'ICD10_2010'), +('W60.2', 'Contact with plant thorns and spines and sharp leaves, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W60.3', 'Contact with plant thorns and spines and sharp leaves, Sports and Athletic Areas', 'ICD10_2010'), +('W60.4', 'Contact with plant thorns and spines and sharp leaves, Street and Highway', 'ICD10_2010'), +('W60.5', 'Contact with plant thorns and spines and sharp leaves, Trade and Service Area', 'ICD10_2010'), +('W60.6', 'Contact with plant thorns and spines and sharp leaves, Industrial and Construction Area', 'ICD10_2010'), +('W60.7', 'Contact with plant thorns and spines and sharp leaves, Farm', 'ICD10_2010'), +('W60.8', 'Contact with plant thorns and spines and sharp leaves, Other Specified Area', 'ICD10_2010'), +('W60.9', 'Contact with plant thorns and spines and sharp leaves, Unspecified Place', 'ICD10_2010'), +('W64', 'Exposure to other and unspecified animate mechanical forces', 'ICD10_2010'), +('W64.0', 'Exposure to other and unspecified animate mechanical forces, Home', 'ICD10_2010'), +('W64.1', 'Exposure to other and unspecified animate mechanical forces, Residential Institution', 'ICD10_2010'), +('W64.2', 'Exposure to other and unspecified animate mechanical forces, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W64.3', 'Exposure to other and unspecified animate mechanical forces, Sports and Athletic Areas', 'ICD10_2010'), +('W64.4', 'Exposure to other and unspecified animate mechanical forces, Street and Highway', 'ICD10_2010'), +('W64.5', 'Exposure to other and unspecified animate mechanical forces, Trade and Service Area', 'ICD10_2010'), +('W64.6', 'Exposure to other and unspecified animate mechanical forces, Industrial and Construction Area', 'ICD10_2010'), +('W64.7', 'Exposure to other and unspecified animate mechanical forces, Farm', 'ICD10_2010'), +('W64.8', 'Exposure to other and unspecified animate mechanical forces, Other Specified Area', 'ICD10_2010'), +('W64.9', 'Exposure to other and unspecified animate mechanical forces, Unspecified Place', 'ICD10_2010'), +('W65', 'Drowning and submersion while in bath-tub', 'ICD10_2010'), +('W65.0', 'Drowning and submersion while in bath-tub, Home', 'ICD10_2010'), +('W65.1', 'Drowning and submersion while in bath-tub, Residential Institution', 'ICD10_2010'), +('W65.2', 'Drowning and submersion while in bath-tub, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W65.3', 'Drowning and submersion while in bath-tub, Sports and Athletic Areas', 'ICD10_2010'), +('W65.4', 'Drowning and submersion while in bath-tub, Street and Highway', 'ICD10_2010'), +('W65.5', 'Drowning and submersion while in bath-tub, Trade and Service Area', 'ICD10_2010'), +('W65.6', 'Drowning and submersion while in bath-tub, Industrial and Construction Area', 'ICD10_2010'), +('W65.7', 'Drowning and submersion while in bath-tub, Farm', 'ICD10_2010'), +('W65.8', 'Drowning and submersion while in bath-tub, Other Specified Area', 'ICD10_2010'), +('W65.9', 'Drowning and submersion while in bath-tub, Unspecified Place', 'ICD10_2010'), +('W66', 'Drowning and submersion following fall into bath-tub', 'ICD10_2010'), +('W66.0', 'Drowning and submersion following fall into bath-tub, Home', 'ICD10_2010'), +('W66.1', 'Drowning and submersion following fall into bath-tub, Residential Institution', 'ICD10_2010'), +('W66.2', 'Drowning and submersion following fall into bath-tub, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W66.3', 'Drowning and submersion following fall into bath-tub, Sports and Athletic Areas', 'ICD10_2010'), +('W66.4', 'Drowning and submersion following fall into bath-tub, Street and Highway', 'ICD10_2010'), +('W66.5', 'Drowning and submersion following fall into bath-tub, Trade and Service Area', 'ICD10_2010'), +('W66.6', 'Drowning and submersion following fall into bath-tub, Industrial and Construction Area', 'ICD10_2010'), +('W66.7', 'Drowning and submersion following fall into bath-tub, Farm', 'ICD10_2010'), +('W66.8', 'Drowning and submersion following fall into bath-tub, Other Specified Area', 'ICD10_2010'), +('W66.9', 'Drowning and submersion following fall into bath-tub, Unspecified Place', 'ICD10_2010'), +('W67', 'Drowning and submersion while in swimming-pool', 'ICD10_2010'), +('W67.0', 'Drowning and submersion while in swimming-pool, Home', 'ICD10_2010'), +('W67.1', 'Drowning and submersion while in swimming-pool, Residential Institution', 'ICD10_2010'), +('W67.2', 'Drowning and submersion while in swimming-pool, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W67.3', 'Drowning and submersion while in swimming-pool, Sports and Athletic Areas', 'ICD10_2010'), +('W67.4', 'Drowning and submersion while in swimming-pool, Street and Highway', 'ICD10_2010'), +('W67.5', 'Drowning and submersion while in swimming-pool, Trade and Service Area', 'ICD10_2010'), +('W67.6', 'Drowning and submersion while in swimming-pool, Industrial and Construction Area', 'ICD10_2010'), +('W67.7', 'Drowning and submersion while in swimming-pool, Farm', 'ICD10_2010'), +('W67.8', 'Drowning and submersion while in swimming-pool, Other Specified Area', 'ICD10_2010'), +('W67.9', 'Drowning and submersion while in swimming-pool, Unspecified Place', 'ICD10_2010'); +INSERT INTO `icd10` (`ID_ICD10`, `Diagnosa`, `Versi_ICD10`) VALUES +('W68', 'Drowning and submersion following fall into swimming-pool', 'ICD10_2010'), +('W68.0', 'Drowning and submersion following fall into swimming-pool, Home', 'ICD10_2010'), +('W68.1', 'Drowning and submersion following fall into swimming-pool, Residential Institution', 'ICD10_2010'), +('W68.2', 'Drowning and submersion following fall into swimming-pool, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W68.3', 'Drowning and submersion following fall into swimming-pool, Sports and Athletic Areas', 'ICD10_2010'), +('W68.4', 'Drowning and submersion following fall into swimming-pool, Street and Highway', 'ICD10_2010'), +('W68.5', 'Drowning and submersion following fall into swimming-pool, Trade and Service Area', 'ICD10_2010'), +('W68.6', 'Drowning and submersion following fall into swimming-pool, Industrial and Construction Area', 'ICD10_2010'), +('W68.7', 'Drowning and submersion following fall into swimming-pool, Farm', 'ICD10_2010'), +('W68.8', 'Drowning and submersion following fall into swimming-pool, Other Specified Area', 'ICD10_2010'), +('W68.9', 'Drowning and submersion following fall into swimming-pool, Unspecified Place', 'ICD10_2010'), +('W69', 'Drowning and submersion while in natural water', 'ICD10_2010'), +('W69.0', 'Drowning and submersion while in natural water, Home', 'ICD10_2010'), +('W69.1', 'Drowning and submersion while in natural water, Residential Institution', 'ICD10_2010'), +('W69.2', 'Drowning and submersion while in natural water, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W69.3', 'Drowning and submersion while in natural water, Sports and Athletic Areas', 'ICD10_2010'), +('W69.4', 'Drowning and submersion while in natural water, Street and Highway', 'ICD10_2010'), +('W69.5', 'Drowning and submersion while in natural water, Trade and Service Area', 'ICD10_2010'), +('W69.6', 'Drowning and submersion while in natural water, Industrial and Construction Area', 'ICD10_2010'), +('W69.7', 'Drowning and submersion while in natural water, Farm', 'ICD10_2010'), +('W69.8', 'Drowning and submersion while in natural water, Other Specified Area', 'ICD10_2010'), +('W69.9', 'Drowning and submersion while in natural water, Unspecified Place', 'ICD10_2010'), +('W70', 'Drowning and submersion following fall into natural water', 'ICD10_2010'), +('W70.0', 'Drowning and submersion following fall into natural water, Home', 'ICD10_2010'), +('W70.1', 'Drowning and submersion following fall into natural water, Residential Institution', 'ICD10_2010'), +('W70.2', 'Drowning and submersion following fall into natural water, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W70.3', 'Drowning and submersion following fall into natural water, Sports and Athletic Areas', 'ICD10_2010'), +('W70.4', 'Drowning and submersion following fall into natural water, Street and Highway', 'ICD10_2010'), +('W70.5', 'Drowning and submersion following fall into natural water, Trade and Service Area', 'ICD10_2010'), +('W70.6', 'Drowning and submersion following fall into natural water, Industrial and Construction Area', 'ICD10_2010'), +('W70.7', 'Drowning and submersion following fall into natural water, Farm', 'ICD10_2010'), +('W70.8', 'Drowning and submersion following fall into natural water, Other Specified Area', 'ICD10_2010'), +('W70.9', 'Drowning and submersion following fall into natural water, Unspecified Place', 'ICD10_2010'), +('W73', 'Other specified drowning and submersion', 'ICD10_2010'), +('W73.0', 'Other specified drowning and submersion, Home', 'ICD10_2010'), +('W73.1', 'Other specified drowning and submersion, Residential Institution', 'ICD10_2010'), +('W73.2', 'Other specified drowning and submersion, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W73.3', 'Other specified drowning and submersion, Sports and Athletic Areas', 'ICD10_2010'), +('W73.4', 'Other specified drowning and submersion, Street and Highway', 'ICD10_2010'), +('W73.5', 'Other specified drowning and submersion, Trade and Service Area', 'ICD10_2010'), +('W73.6', 'Other specified drowning and submersion, Industrial and Construction Area', 'ICD10_2010'), +('W73.7', 'Other specified drowning and submersion, Farm', 'ICD10_2010'), +('W73.8', 'Other specified drowning and submersion, Other Specified Area', 'ICD10_2010'), +('W73.9', 'Other specified drowning and submersion, Unspecified Place', 'ICD10_2010'), +('W74', 'Unspecified drowning and submersion', 'ICD10_2010'), +('W74.0', 'Unspecified drowning and submersion, Home', 'ICD10_2010'), +('W74.1', 'Unspecified drowning and submersion, Residential Institution', 'ICD10_2010'), +('W74.2', 'Unspecified drowning and submersion, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W74.3', 'Unspecified drowning and submersion, Sports and Athletic Areas', 'ICD10_2010'), +('W74.4', 'Unspecified drowning and submersion, Street and Highway', 'ICD10_2010'), +('W74.5', 'Unspecified drowning and submersion, Trade and Service Area', 'ICD10_2010'), +('W74.6', 'Unspecified drowning and submersion, Industrial and Construction Area', 'ICD10_2010'), +('W74.7', 'Unspecified drowning and submersion, Farm', 'ICD10_2010'), +('W74.8', 'Unspecified drowning and submersion, Other Specified Area', 'ICD10_2010'), +('W74.9', 'Unspecified drowning and submersion, Unspecified Place', 'ICD10_2010'), +('W75', 'Accidental suffocation and strangulation in bed', 'ICD10_2010'), +('W75.0', 'Accidental suffocation and strangulation in bed, Home', 'ICD10_2010'), +('W75.1', 'Accidental suffocation and strangulation in bed, Residential Institution', 'ICD10_2010'), +('W75.2', 'Accidental suffocation and strangulation in bed, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W75.3', 'Accidental suffocation and strangulation in bed, Sports and Athletic Areas', 'ICD10_2010'), +('W75.4', 'Accidental suffocation and strangulation in bed, Street and Highway', 'ICD10_2010'), +('W75.5', 'Accidental suffocation and strangulation in bed, Trade and Service Area', 'ICD10_2010'), +('W75.6', 'Accidental suffocation and strangulation in bed, Industrial and Construction Area', 'ICD10_2010'), +('W75.7', 'Accidental suffocation and strangulation in bed, Farm', 'ICD10_2010'), +('W75.8', 'Accidental suffocation and strangulation in bed, Other Specified Area', 'ICD10_2010'), +('W75.9', 'Accidental suffocation and strangulation in bed, Unspecified Place', 'ICD10_2010'), +('W76', 'Other accidental hanging and strangulation', 'ICD10_2010'), +('W76.0', 'Other accidental hanging and strangulation, Home', 'ICD10_2010'), +('W76.1', 'Other accidental hanging and strangulation, Residential Institution', 'ICD10_2010'), +('W76.2', 'Other accidental hanging and strangulation, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W76.3', 'Other accidental hanging and strangulation, Sports and Athletic Areas', 'ICD10_2010'), +('W76.4', 'Other accidental hanging and strangulation, Street and Highway', 'ICD10_2010'), +('W76.5', 'Other accidental hanging and strangulation, Trade and Service Area', 'ICD10_2010'), +('W76.6', 'Other accidental hanging and strangulation, Industrial and Construction Area', 'ICD10_2010'), +('W76.7', 'Other accidental hanging and strangulation, Farm', 'ICD10_2010'), +('W76.8', 'Other accidental hanging and strangulation, Other Specified Area', 'ICD10_2010'), +('W76.9', 'Other accidental hanging and strangulation, Unspecified Place', 'ICD10_2010'), +('W77', 'Threat to breathing due to cave-in, falling earth and other substances', 'ICD10_2010'), +('W77.0', 'Threat to breathing due to cave-in, falling earth and other substances, Home', 'ICD10_2010'), +('W77.1', 'Threat to breathing due to cave-in, falling earth and other substances, Residential Institution', 'ICD10_2010'), +('W77.2', 'Threat to breathing due to cave-in, falling earth and other substances, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W77.3', 'Threat to breathing due to cave-in, falling earth and other substances, Sports and Athletic Areas', 'ICD10_2010'), +('W77.4', 'Threat to breathing due to cave-in, falling earth and other substances, Street and Highway', 'ICD10_2010'), +('W77.5', 'Threat to breathing due to cave-in, falling earth and other substances, Trade and Service Area', 'ICD10_2010'), +('W77.6', 'Threat to breathing due to cave-in, falling earth and other substances, Industrial and Construction Area', 'ICD10_2010'), +('W77.7', 'Threat to breathing due to cave-in, falling earth and other substances, Farm', 'ICD10_2010'), +('W77.8', 'Threat to breathing due to cave-in, falling earth and other substances, Other Specified Area', 'ICD10_2010'), +('W77.9', 'Threat to breathing due to cave-in, falling earth and other substances, Unspecified Place', 'ICD10_2010'), +('W78', 'Inhalation of gastric contents', 'ICD10_2010'), +('W78.0', 'Inhalation of gastric contents, Home', 'ICD10_2010'), +('W78.1', 'Inhalation of gastric contents, Residential Institution', 'ICD10_2010'), +('W78.2', 'Inhalation of gastric contents, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W78.3', 'Inhalation of gastric contents, Sports and Athletic Areas', 'ICD10_2010'), +('W78.4', 'Inhalation of gastric contents, Street and Highway', 'ICD10_2010'), +('W78.5', 'Inhalation of gastric contents, Trade and Service Area', 'ICD10_2010'), +('W78.6', 'Inhalation of gastric contents, Industrial and Construction Area', 'ICD10_2010'), +('W78.7', 'Inhalation of gastric contents, Farm', 'ICD10_2010'), +('W78.8', 'Inhalation of gastric contents, Other Specified Area', 'ICD10_2010'), +('W78.9', 'Inhalation of gastric contents, Unspecified Place', 'ICD10_2010'), +('W79', 'Inhalation and ingestion of food causing obstruction of respiratory tract', 'ICD10_2010'), +('W79.0', 'Inhalation and ingestion of food causing obstruction of respiratory tract, Home', 'ICD10_2010'), +('W79.1', 'Inhalation and ingestion of food causing obstruction of respiratory tract, Residential Institution', 'ICD10_2010'), +('W79.2', 'Inhalation and ingestion of food causing obstruction of respiratory tract, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W79.3', 'Inhalation and ingestion of food causing obstruction of respiratory tract, Sports and Athletic Areas', 'ICD10_2010'), +('W79.4', 'Inhalation and ingestion of food causing obstruction of respiratory tract, Street and Highway', 'ICD10_2010'), +('W79.5', 'Inhalation and ingestion of food causing obstruction of respiratory tract, Trade and Service Area', 'ICD10_2010'), +('W79.6', 'Inhalation and ingestion of food causing obstruction of respiratory tract, Industrial and Construction Area', 'ICD10_2010'), +('W79.7', 'Inhalation and ingestion of food causing obstruction of respiratory tract, Farm', 'ICD10_2010'), +('W79.8', 'Inhalation and ingestion of food causing obstruction of respiratory tract, Other Specified Area', 'ICD10_2010'), +('W79.9', 'Inhalation and ingestion of food causing obstruction of respiratory tract, Unspecified Place', 'ICD10_2010'), +('W80', 'Inhalation and ingestion of other objects causing obstruction of respiratory tract', 'ICD10_2010'), +('W80.0', 'Inhalation and ingestion of other objects causing obstruction of respiratory tract, Home', 'ICD10_2010'), +('W80.1', 'Inhalation and ingestion of other objects causing obstruction of respiratory tract, Residential Institution', 'ICD10_2010'), +('W80.2', 'Inhalation and ingestion of other objects causing obstruction of respiratory tract, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W80.3', 'Inhalation and ingestion of other objects causing obstruction of respiratory tract, Sports and Athletic Areas', 'ICD10_2010'), +('W80.4', 'Inhalation and ingestion of other objects causing obstruction of respiratory tract, Street and Highway', 'ICD10_2010'), +('W80.5', 'Inhalation and ingestion of other objects causing obstruction of respiratory tract, Trade and Service Area', 'ICD10_2010'), +('W80.6', 'Inhalation and ingestion of other objects causing obstruction of respiratory tract, Industrial and Construction Area', 'ICD10_2010'), +('W80.7', 'Inhalation and ingestion of other objects causing obstruction of respiratory tract, Farm', 'ICD10_2010'), +('W80.8', 'Inhalation and ingestion of other objects causing obstruction of respiratory tract, Other Specified Area', 'ICD10_2010'), +('W80.9', 'Inhalation and ingestion of other objects causing obstruction of respiratory tract, Unspecified Place', 'ICD10_2010'), +('W81', 'Confined to or trapped in a low-oxygen environment', 'ICD10_2010'), +('W81.0', 'Confined to or trapped in a low-oxygen environment, Home', 'ICD10_2010'), +('W81.1', 'Confined to or trapped in a low-oxygen environment, Residential Institution', 'ICD10_2010'), +('W81.2', 'Confined to or trapped in a low-oxygen environment, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W81.3', 'Confined to or trapped in a low-oxygen environment, Sports and Athletic Areas', 'ICD10_2010'), +('W81.4', 'Confined to or trapped in a low-oxygen environment, Street and Highway', 'ICD10_2010'), +('W81.5', 'Confined to or trapped in a low-oxygen environment, Trade and Service Area', 'ICD10_2010'), +('W81.6', 'Confined to or trapped in a low-oxygen environment, Industrial and Construction Area', 'ICD10_2010'), +('W81.7', 'Confined to or trapped in a low-oxygen environment, Farm', 'ICD10_2010'), +('W81.8', 'Confined to or trapped in a low-oxygen environment, Other Specified Area', 'ICD10_2010'), +('W81.9', 'Confined to or trapped in a low-oxygen environment, Unspecified Place', 'ICD10_2010'), +('W83', 'Other specified threats to breathing', 'ICD10_2010'), +('W83.0', 'Other specified threats to breathing, Home', 'ICD10_2010'), +('W83.1', 'Other specified threats to breathing, Residential Institution', 'ICD10_2010'), +('W83.2', 'Other specified threats to breathing, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W83.3', 'Other specified threats to breathing, Sports and Athletic Areas', 'ICD10_2010'), +('W83.4', 'Other specified threats to breathing, Street and Highway', 'ICD10_2010'), +('W83.5', 'Other specified threats to breathing, Trade and Service Area', 'ICD10_2010'), +('W83.6', 'Other specified threats to breathing, Industrial and Construction Area', 'ICD10_2010'), +('W83.7', 'Other specified threats to breathing, Farm', 'ICD10_2010'), +('W83.8', 'Other specified threats to breathing, Other Specified Area', 'ICD10_2010'), +('W83.9', 'Other specified threats to breathing, Unspecified Place', 'ICD10_2010'), +('W84', 'Unspecified threat to breathing', 'ICD10_2010'), +('W84.0', 'Unspecified threat to breathing, Home', 'ICD10_2010'), +('W84.1', 'Unspecified threat to breathing, Residential Institution', 'ICD10_2010'), +('W84.2', 'Unspecified threat to breathing, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W84.3', 'Unspecified threat to breathing, Sports and Athletic Areas', 'ICD10_2010'), +('W84.4', 'Unspecified threat to breathing, Street and Highway', 'ICD10_2010'), +('W84.5', 'Unspecified threat to breathing, Trade and Service Area', 'ICD10_2010'), +('W84.6', 'Unspecified threat to breathing, Industrial and Construction Area', 'ICD10_2010'), +('W84.7', 'Unspecified threat to breathing, Farm', 'ICD10_2010'), +('W84.8', 'Unspecified threat to breathing, Other Specified Area', 'ICD10_2010'), +('W84.9', 'Unspecified threat to breathing, Unspecified Place', 'ICD10_2010'), +('W85', 'Exposure to electric transmission lines', 'ICD10_2010'), +('W85.0', 'Exposure to electric transmission lines, Home', 'ICD10_2010'), +('W85.1', 'Exposure to electric transmission lines, Residential Institution', 'ICD10_2010'), +('W85.2', 'Exposure to electric transmission lines, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W85.3', 'Exposure to electric transmission lines, Sports and Athletic Areas', 'ICD10_2010'), +('W85.4', 'Exposure to electric transmission lines, Street and Highway', 'ICD10_2010'), +('W85.5', 'Exposure to electric transmission lines, Trade and Service Area', 'ICD10_2010'), +('W85.6', 'Exposure to electric transmission lines, Industrial and Construction Area', 'ICD10_2010'), +('W85.7', 'Exposure to electric transmission lines, Farm', 'ICD10_2010'), +('W85.8', 'Exposure to electric transmission lines, Other Specified Area', 'ICD10_2010'), +('W85.9', 'Exposure to electric transmission lines, Unspecified Place', 'ICD10_2010'), +('W86', 'Exposure to other specified electric current', 'ICD10_2010'), +('W86.0', 'Exposure to other specified electric current, Home', 'ICD10_2010'), +('W86.1', 'Exposure to other specified electric current, Residential Institution', 'ICD10_2010'), +('W86.2', 'Exposure to other specified electric current, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W86.3', 'Exposure to other specified electric current, Sports and Athletic Areas', 'ICD10_2010'), +('W86.4', 'Exposure to other specified electric current, Street and Highway', 'ICD10_2010'), +('W86.5', 'Exposure to other specified electric current, Trade and Service Area', 'ICD10_2010'), +('W86.6', 'Exposure to other specified electric current, Industrial and Construction Area', 'ICD10_2010'), +('W86.7', 'Exposure to other specified electric current, Farm', 'ICD10_2010'), +('W86.8', 'Exposure to other specified electric current, Other Specified Area', 'ICD10_2010'), +('W86.9', 'Exposure to other specified electric current, Unspecified Place', 'ICD10_2010'), +('W87', 'Exposure to unspecified electric current', 'ICD10_2010'), +('W87.0', 'Exposure to unspecified electric current, Home', 'ICD10_2010'), +('W87.1', 'Exposure to unspecified electric current, Residential Institution', 'ICD10_2010'), +('W87.2', 'Exposure to unspecified electric current, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W87.3', 'Exposure to unspecified electric current, Sports and Athletic Areas', 'ICD10_2010'), +('W87.4', 'Exposure to unspecified electric current, Street and Highway', 'ICD10_2010'), +('W87.5', 'Exposure to unspecified electric current, Trade and Service Area', 'ICD10_2010'), +('W87.6', 'Exposure to unspecified electric current, Industrial and Construction Area', 'ICD10_2010'), +('W87.7', 'Exposure to unspecified electric current, Farm', 'ICD10_2010'), +('W87.8', 'Exposure to unspecified electric current, Other Specified Area', 'ICD10_2010'), +('W87.9', 'Exposure to unspecified electric current, Unspecified Place', 'ICD10_2010'), +('W88', 'Exposure to ionizing radiation', 'ICD10_2010'), +('W88.0', 'Exposure to ionizing radiation, Home', 'ICD10_2010'), +('W88.1', 'Exposure to ionizing radiation, Residential Institution', 'ICD10_2010'), +('W88.2', 'Exposure to ionizing radiation, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W88.3', 'Exposure to ionizing radiation, Sports and Athletic Areas', 'ICD10_2010'), +('W88.4', 'Exposure to ionizing radiation, Street and Highway', 'ICD10_2010'), +('W88.5', 'Exposure to ionizing radiation, Trade and Service Area', 'ICD10_2010'), +('W88.6', 'Exposure to ionizing radiation, Industrial and Construction Area', 'ICD10_2010'), +('W88.7', 'Exposure to ionizing radiation, Farm', 'ICD10_2010'), +('W88.8', 'Exposure to ionizing radiation, Other Specified Area', 'ICD10_2010'), +('W88.9', 'Exposure to ionizing radiation, Unspecified Place', 'ICD10_2010'), +('W89', 'Exposure to man-made visible and ultraviolet light', 'ICD10_2010'), +('W89.0', 'Exposure to man-made visible and ultraviolet light, Home', 'ICD10_2010'), +('W89.1', 'Exposure to man-made visible and ultraviolet light, Residential Institution', 'ICD10_2010'), +('W89.2', 'Exposure to man-made visible and ultraviolet light, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W89.3', 'Exposure to man-made visible and ultraviolet light, Sports and Athletic Areas', 'ICD10_2010'), +('W89.4', 'Exposure to man-made visible and ultraviolet light, Street and Highway', 'ICD10_2010'), +('W89.5', 'Exposure to man-made visible and ultraviolet light, Trade and Service Area', 'ICD10_2010'), +('W89.6', 'Exposure to man-made visible and ultraviolet light, Industrial and Construction Area', 'ICD10_2010'), +('W89.7', 'Exposure to man-made visible and ultraviolet light, Farm', 'ICD10_2010'), +('W89.8', 'Exposure to man-made visible and ultraviolet light, Other Specified Area', 'ICD10_2010'), +('W89.9', 'Exposure to man-made visible and ultraviolet light, Unspecified Place', 'ICD10_2010'), +('W90', 'Exposure to other nonionizing radiation', 'ICD10_2010'), +('W90.0', 'Exposure to other nonionizing radiation, Home', 'ICD10_2010'), +('W90.1', 'Exposure to other nonionizing radiation, Residential Institution', 'ICD10_2010'), +('W90.2', 'Exposure to other nonionizing radiation, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W90.3', 'Exposure to other nonionizing radiation, Sports and Athletic Areas', 'ICD10_2010'), +('W90.4', 'Exposure to other nonionizing radiation, Street and Highway', 'ICD10_2010'), +('W90.5', 'Exposure to other nonionizing radiation, Trade and Service Area', 'ICD10_2010'), +('W90.6', 'Exposure to other nonionizing radiation, Industrial and Construction Area', 'ICD10_2010'), +('W90.7', 'Exposure to other nonionizing radiation, Farm', 'ICD10_2010'), +('W90.8', 'Exposure to other nonionizing radiation, Other Specified Area', 'ICD10_2010'), +('W90.9', 'Exposure to other nonionizing radiation, Unspecified Place', 'ICD10_2010'), +('W91', 'Exposure to unspecified type of radiation', 'ICD10_2010'), +('W91.0', 'Exposure to unspecified type of radiation, Home', 'ICD10_2010'), +('W91.1', 'Exposure to unspecified type of radiation, Residential Institution', 'ICD10_2010'), +('W91.2', 'Exposure to unspecified type of radiation, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W91.3', 'Exposure to unspecified type of radiation, Sports and Athletic Areas', 'ICD10_2010'), +('W91.4', 'Exposure to unspecified type of radiation, Street and Highway', 'ICD10_2010'), +('W91.5', 'Exposure to unspecified type of radiation, Trade and Service Area', 'ICD10_2010'), +('W91.6', 'Exposure to unspecified type of radiation, Industrial and Construction Area', 'ICD10_2010'), +('W91.7', 'Exposure to unspecified type of radiation, Farm', 'ICD10_2010'), +('W91.8', 'Exposure to unspecified type of radiation, Other Specified Area', 'ICD10_2010'), +('W91.9', 'Exposure to unspecified type of radiation, Unspecified Place', 'ICD10_2010'), +('W92', 'Exposure to excessive heat of man-made origin', 'ICD10_2010'), +('W92.0', 'Exposure to excessive heat of man-made origin, Home', 'ICD10_2010'), +('W92.1', 'Exposure to excessive heat of man-made origin, Residential Institution', 'ICD10_2010'), +('W92.2', 'Exposure to excessive heat of man-made origin, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W92.3', 'Exposure to excessive heat of man-made origin, Sports and Athletic Areas', 'ICD10_2010'), +('W92.4', 'Exposure to excessive heat of man-made origin, Street and Highway', 'ICD10_2010'), +('W92.5', 'Exposure to excessive heat of man-made origin, Trade and Service Area', 'ICD10_2010'), +('W92.6', 'Exposure to excessive heat of man-made origin, Industrial and Construction Area', 'ICD10_2010'), +('W92.7', 'Exposure to excessive heat of man-made origin, Farm', 'ICD10_2010'), +('W92.8', 'Exposure to excessive heat of man-made origin, Other Specified Area', 'ICD10_2010'), +('W92.9', 'Exposure to excessive heat of man-made origin, Unspecified Place', 'ICD10_2010'), +('W93', 'Exposure to excessive cold of man-made origin', 'ICD10_2010'), +('W93.0', 'Exposure to excessive cold of man-made origin, Home', 'ICD10_2010'), +('W93.1', 'Exposure to excessive cold of man-made origin, Residential Institution', 'ICD10_2010'), +('W93.2', 'Exposure to excessive cold of man-made origin, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W93.3', 'Exposure to excessive cold of man-made origin, Sports and Athletic Areas', 'ICD10_2010'), +('W93.4', 'Exposure to excessive cold of man-made origin, Street and Highway', 'ICD10_2010'), +('W93.5', 'Exposure to excessive cold of man-made origin, Trade and Service Area', 'ICD10_2010'), +('W93.6', 'Exposure to excessive cold of man-made origin, Industrial and Construction Area', 'ICD10_2010'), +('W93.7', 'Exposure to excessive cold of man-made origin, Farm', 'ICD10_2010'), +('W93.8', 'Exposure to excessive cold of man-made origin, Other Specified Area', 'ICD10_2010'), +('W93.9', 'Exposure to excessive cold of man-made origin, Unspecified Place', 'ICD10_2010'), +('W94', 'Exposure to high and low air pressure and changes in air pressure', 'ICD10_2010'), +('W94.0', 'Exposure to high and low air pressure and changes in air pressure, Home', 'ICD10_2010'), +('W94.1', 'Exposure to high and low air pressure and changes in air pressure, Residential Institution', 'ICD10_2010'), +('W94.2', 'Exposure to high and low air pressure and changes in air pressure, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W94.3', 'Exposure to high and low air pressure and changes in air pressure, Sports and Athletic Areas', 'ICD10_2010'), +('W94.4', 'Exposure to high and low air pressure and changes in air pressure, Street and Highway', 'ICD10_2010'), +('W94.5', 'Exposure to high and low air pressure and changes in air pressure, Trade and Service Area', 'ICD10_2010'), +('W94.6', 'Exposure to high and low air pressure and changes in air pressure, Industrial and Construction Area', 'ICD10_2010'), +('W94.7', 'Exposure to high and low air pressure and changes in air pressure, Farm', 'ICD10_2010'), +('W94.8', 'Exposure to high and low air pressure and changes in air pressure, Other Specified Area', 'ICD10_2010'), +('W94.9', 'Exposure to high and low air pressure and changes in air pressure, Unspecified Place', 'ICD10_2010'), +('W99', 'Exposure to other and unspecified man-made environmental factors', 'ICD10_2010'), +('W99.0', 'Exposure to other and unspecified man-made environmental factors, Home', 'ICD10_2010'), +('W99.1', 'Exposure to other and unspecified man-made environmental factors, Residential Institution', 'ICD10_2010'), +('W99.2', 'Exposure to other and unspecified man-made environmental factors, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('W99.3', 'Exposure to other and unspecified man-made environmental factors, Sports and Athletic Areas', 'ICD10_2010'), +('W99.4', 'Exposure to other and unspecified man-made environmental factors, Street and Highway', 'ICD10_2010'), +('W99.5', 'Exposure to other and unspecified man-made environmental factors, Trade and Service Area', 'ICD10_2010'), +('W99.6', 'Exposure to other and unspecified man-made environmental factors, Industrial and Construction Area', 'ICD10_2010'), +('W99.7', 'Exposure to other and unspecified man-made environmental factors, Farm', 'ICD10_2010'), +('W99.8', 'Exposure to other and unspecified man-made environmental factors, Other Specified Area', 'ICD10_2010'), +('W99.9', 'Exposure to other and unspecified man-made environmental factors, Unspecified Place', 'ICD10_2010'), +('X00', 'Exposure to uncontrolled fire in building or structure', 'ICD10_2010'), +('X00.0', 'Exposure to uncontrolled fire in building or structure, Home', 'ICD10_2010'), +('X00.1', 'Exposure to uncontrolled fire in building or structure, Residential Institution', 'ICD10_2010'), +('X00.2', 'Exposure to uncontrolled fire in building or structure, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X00.3', 'Exposure to uncontrolled fire in building or structure, Sports and Athletic Areas', 'ICD10_2010'), +('X00.4', 'Exposure to uncontrolled fire in building or structure, Street and Highway', 'ICD10_2010'), +('X00.5', 'Exposure to uncontrolled fire in building or structure, Trade and Service Area', 'ICD10_2010'), +('X00.6', 'Exposure to uncontrolled fire in building or structure, Industrial and Construction Area', 'ICD10_2010'), +('X00.7', 'Exposure to uncontrolled fire in building or structure, Farm', 'ICD10_2010'), +('X00.8', 'Exposure to uncontrolled fire in building or structure, Other Specified Area', 'ICD10_2010'), +('X00.9', 'Exposure to uncontrolled fire in building or structure, Unspecified Place', 'ICD10_2010'), +('X01', 'Exposure to uncontrolled fire, not in building or structure', 'ICD10_2010'), +('X01.0', 'Exposure to uncontrolled fire, not in building or structure, Home', 'ICD10_2010'), +('X01.1', 'Exposure to uncontrolled fire, not in building or structure, Residential Institution', 'ICD10_2010'), +('X01.2', 'Exposure to uncontrolled fire, not in building or structure, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X01.3', 'Exposure to uncontrolled fire, not in building or structure, Sports and Athletic Areas', 'ICD10_2010'), +('X01.4', 'Exposure to uncontrolled fire, not in building or structure, Street and Highway', 'ICD10_2010'), +('X01.5', 'Exposure to uncontrolled fire, not in building or structure, Trade and Service Area', 'ICD10_2010'), +('X01.6', 'Exposure to uncontrolled fire, not in building or structure, Industrial and Construction Area', 'ICD10_2010'), +('X01.7', 'Exposure to uncontrolled fire, not in building or structure, Farm', 'ICD10_2010'), +('X01.8', 'Exposure to uncontrolled fire, not in building or structure, Other Specified Area', 'ICD10_2010'), +('X01.9', 'Exposure to uncontrolled fire, not in building or structure, Unspecified Place', 'ICD10_2010'), +('X02', 'Exposure to controlled fire in building or structure', 'ICD10_2010'), +('X02.0', 'Exposure to controlled fire in building or structure, Home', 'ICD10_2010'), +('X02.1', 'Exposure to controlled fire in building or structure, Residential Institution', 'ICD10_2010'), +('X02.2', 'Exposure to controlled fire in building or structure, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X02.3', 'Exposure to controlled fire in building or structure, Sports and Athletic Areas', 'ICD10_2010'), +('X02.4', 'Exposure to controlled fire in building or structure, Street and Highway', 'ICD10_2010'), +('X02.5', 'Exposure to controlled fire in building or structure, Trade and Service Area', 'ICD10_2010'), +('X02.6', 'Exposure to controlled fire in building or structure, Industrial and Construction Area', 'ICD10_2010'), +('X02.7', 'Exposure to controlled fire in building or structure, Farm', 'ICD10_2010'), +('X02.8', 'Exposure to controlled fire in building or structure, Other Specified Area', 'ICD10_2010'), +('X02.9', 'Exposure to controlled fire in building or structure, Unspecified Place', 'ICD10_2010'), +('X03', 'Exposure to controlled fire, not in building or structure', 'ICD10_2010'), +('X03.0', 'Exposure to controlled fire, not in building or structure, Home', 'ICD10_2010'), +('X03.1', 'Exposure to controlled fire, not in building or structure, Residential Institution', 'ICD10_2010'), +('X03.2', 'Exposure to controlled fire, not in building or structure, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X03.3', 'Exposure to controlled fire, not in building or structure, Sports and Athletic Areas', 'ICD10_2010'), +('X03.4', 'Exposure to controlled fire, not in building or structure, Street and Highway', 'ICD10_2010'), +('X03.5', 'Exposure to controlled fire, not in building or structure, Trade and Service Area', 'ICD10_2010'), +('X03.6', 'Exposure to controlled fire, not in building or structure, Industrial and Construction Area', 'ICD10_2010'), +('X03.7', 'Exposure to controlled fire, not in building or structure, Farm', 'ICD10_2010'), +('X03.8', 'Exposure to controlled fire, not in building or structure, Other Specified Area', 'ICD10_2010'), +('X03.9', 'Exposure to controlled fire, not in building or structure, Unspecified Place', 'ICD10_2010'), +('X04', 'Exposure to ignition of highly flammable material', 'ICD10_2010'), +('X04.0', 'Exposure to ignition of highly flammable material, Home', 'ICD10_2010'), +('X04.1', 'Exposure to ignition of highly flammable material, Residential Institution', 'ICD10_2010'), +('X04.2', 'Exposure to ignition of highly flammable material, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X04.3', 'Exposure to ignition of highly flammable material, Sports and Athletic Areas', 'ICD10_2010'), +('X04.4', 'Exposure to ignition of highly flammable material, Street and Highway', 'ICD10_2010'), +('X04.5', 'Exposure to ignition of highly flammable material, Trade and Service Area', 'ICD10_2010'), +('X04.6', 'Exposure to ignition of highly flammable material, Industrial and Construction Area', 'ICD10_2010'), +('X04.7', 'Exposure to ignition of highly flammable material, Farm', 'ICD10_2010'), +('X04.8', 'Exposure to ignition of highly flammable material, Other Specified Area', 'ICD10_2010'), +('X04.9', 'Exposure to ignition of highly flammable material, Unspecified Place', 'ICD10_2010'), +('X05', 'Exposure to ignition or melting of nightwear', 'ICD10_2010'), +('X05.0', 'Exposure to ignition or melting of nightwear, Home', 'ICD10_2010'), +('X05.1', 'Exposure to ignition or melting of nightwear, Residential Institution', 'ICD10_2010'), +('X05.2', 'Exposure to ignition or melting of nightwear, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X05.3', 'Exposure to ignition or melting of nightwear, Sports and Athletic Areas', 'ICD10_2010'), +('X05.4', 'Exposure to ignition or melting of nightwear, Street and Highway', 'ICD10_2010'), +('X05.5', 'Exposure to ignition or melting of nightwear, Trade and Service Area', 'ICD10_2010'), +('X05.6', 'Exposure to ignition or melting of nightwear, Industrial and Construction Area', 'ICD10_2010'), +('X05.7', 'Exposure to ignition or melting of nightwear, Farm', 'ICD10_2010'), +('X05.8', 'Exposure to ignition or melting of nightwear, Other Specified Area', 'ICD10_2010'), +('X05.9', 'Exposure to ignition or melting of nightwear, Unspecified Place', 'ICD10_2010'), +('X06', 'Exposure to ignition or melting of other clothing and apparel', 'ICD10_2010'), +('X06.0', 'Exposure to ignition or melting of other clothing and apparel, Home', 'ICD10_2010'), +('X06.1', 'Exposure to ignition or melting of other clothing and apparel, Residential Institution', 'ICD10_2010'), +('X06.2', 'Exposure to ignition or melting of other clothing and apparel, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X06.3', 'Exposure to ignition or melting of other clothing and apparel, Sports and Athletic Areas', 'ICD10_2010'), +('X06.4', 'Exposure to ignition or melting of other clothing and apparel, Street and Highway', 'ICD10_2010'), +('X06.5', 'Exposure to ignition or melting of other clothing and apparel, Trade and Service Area', 'ICD10_2010'), +('X06.6', 'Exposure to ignition or melting of other clothing and apparel, Industrial and Construction Area', 'ICD10_2010'), +('X06.7', 'Exposure to ignition or melting of other clothing and apparel, Farm', 'ICD10_2010'), +('X06.8', 'Exposure to ignition or melting of other clothing and apparel, Other Specified Area', 'ICD10_2010'), +('X06.9', 'Exposure to ignition or melting of other clothing and apparel, Unspecified Place', 'ICD10_2010'), +('X08', 'Exposure to other specified smoke, fire and flames', 'ICD10_2010'), +('X08.0', 'Exposure to other specified smoke, fire and flames, Home', 'ICD10_2010'), +('X08.1', 'Exposure to other specified smoke, fire and flames, Residential Institution', 'ICD10_2010'), +('X08.2', 'Exposure to other specified smoke, fire and flames, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X08.3', 'Exposure to other specified smoke, fire and flames, Sports and Athletic Areas', 'ICD10_2010'), +('X08.4', 'Exposure to other specified smoke, fire and flames, Street and Highway', 'ICD10_2010'), +('X08.5', 'Exposure to other specified smoke, fire and flames, Trade and Service Area', 'ICD10_2010'), +('X08.6', 'Exposure to other specified smoke, fire and flames, Industrial and Construction Area', 'ICD10_2010'), +('X08.7', 'Exposure to other specified smoke, fire and flames, Farm', 'ICD10_2010'), +('X08.8', 'Exposure to other specified smoke, fire and flames, Other Specified Area', 'ICD10_2010'), +('X08.9', 'Exposure to other specified smoke, fire and flames, Unspecified Place', 'ICD10_2010'), +('X09', 'Exposure to unspecified smoke, fire and flames', 'ICD10_2010'), +('X09.0', 'Exposure to unspecified smoke, fire and flames, Home', 'ICD10_2010'), +('X09.1', 'Exposure to unspecified smoke, fire and flames, Residential Institution', 'ICD10_2010'), +('X09.2', 'Exposure to unspecified smoke, fire and flames, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X09.3', 'Exposure to unspecified smoke, fire and flames, Sports and Athletic Areas', 'ICD10_2010'), +('X09.4', 'Exposure to unspecified smoke, fire and flames, Street and Highway', 'ICD10_2010'), +('X09.5', 'Exposure to unspecified smoke, fire and flames, Trade and Service Area', 'ICD10_2010'), +('X09.6', 'Exposure to unspecified smoke, fire and flames, Industrial and Construction Area', 'ICD10_2010'), +('X09.7', 'Exposure to unspecified smoke, fire and flames, Farm', 'ICD10_2010'), +('X09.8', 'Exposure to unspecified smoke, fire and flames, Other Specified Area', 'ICD10_2010'), +('X09.9', 'Exposure to unspecified smoke, fire and flames, Unspecified Place', 'ICD10_2010'), +('X10', 'Contact with hot drinks, food, fats and cooking oils', 'ICD10_2010'), +('X10.0', 'Contact with hot drinks, food, fats and cooking oils, Home', 'ICD10_2010'), +('X10.1', 'Contact with hot drinks, food, fats and cooking oils, Residential Institution', 'ICD10_2010'), +('X10.2', 'Contact with hot drinks, food, fats and cooking oils, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X10.3', 'Contact with hot drinks, food, fats and cooking oils, Sports and Athletic Areas', 'ICD10_2010'), +('X10.4', 'Contact with hot drinks, food, fats and cooking oils, Street and Highway', 'ICD10_2010'), +('X10.5', 'Contact with hot drinks, food, fats and cooking oils, Trade and Service Area', 'ICD10_2010'), +('X10.6', 'Contact with hot drinks, food, fats and cooking oils, Industrial and Construction Area', 'ICD10_2010'), +('X10.7', 'Contact with hot drinks, food, fats and cooking oils, Farm', 'ICD10_2010'), +('X10.8', 'Contact with hot drinks, food, fats and cooking oils, Other Specified Area', 'ICD10_2010'), +('X10.9', 'Contact with hot drinks, food, fats and cooking oils, Unspecified Place', 'ICD10_2010'), +('X11', 'Contact with hot tap-water', 'ICD10_2010'), +('X11.0', 'Contact with hot tap-water, Home', 'ICD10_2010'), +('X11.1', 'Contact with hot tap-water, Residential Institution', 'ICD10_2010'), +('X11.2', 'Contact with hot tap-water, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X11.3', 'Contact with hot tap-water, Sports and Athletic Areas', 'ICD10_2010'), +('X11.4', 'Contact with hot tap-water, Street and Highway', 'ICD10_2010'), +('X11.5', 'Contact with hot tap-water, Trade and Service Area', 'ICD10_2010'), +('X11.6', 'Contact with hot tap-water, Industrial and Construction Area', 'ICD10_2010'), +('X11.7', 'Contact with hot tap-water, Farm', 'ICD10_2010'), +('X11.8', 'Contact with hot tap-water, Other Specified Area', 'ICD10_2010'), +('X11.9', 'Contact with hot tap-water, Unspecified Place', 'ICD10_2010'), +('X12', 'Contact with other hot fluids', 'ICD10_2010'), +('X12.0', 'Contact with other hot fluids, Home', 'ICD10_2010'), +('X12.1', 'Contact with other hot fluids, Residential Institution', 'ICD10_2010'), +('X12.2', 'Contact with other hot fluids, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X12.3', 'Contact with other hot fluids, Sports and Athletic Areas', 'ICD10_2010'), +('X12.4', 'Contact with other hot fluids, Street and Highway', 'ICD10_2010'), +('X12.5', 'Contact with other hot fluids, Trade and Service Area', 'ICD10_2010'), +('X12.6', 'Contact with other hot fluids, Industrial and Construction Area', 'ICD10_2010'), +('X12.7', 'Contact with other hot fluids, Farm', 'ICD10_2010'), +('X12.8', 'Contact with other hot fluids, Other Specified Area', 'ICD10_2010'), +('X12.9', 'Contact with other hot fluids, Unspecified Place', 'ICD10_2010'), +('X13', 'Contact with steam and hot vapours', 'ICD10_2010'), +('X13.0', 'Contact with steam and hot vapours, Home', 'ICD10_2010'), +('X13.1', 'Contact with steam and hot vapours, Residential Institution', 'ICD10_2010'), +('X13.2', 'Contact with steam and hot vapours, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X13.3', 'Contact with steam and hot vapours, Sports and Athletic Areas', 'ICD10_2010'), +('X13.4', 'Contact with steam and hot vapours, Street and Highway', 'ICD10_2010'), +('X13.5', 'Contact with steam and hot vapours, Trade and Service Area', 'ICD10_2010'), +('X13.6', 'Contact with steam and hot vapours, Industrial and Construction Area', 'ICD10_2010'), +('X13.7', 'Contact with steam and hot vapours, Farm', 'ICD10_2010'), +('X13.8', 'Contact with steam and hot vapours, Other Specified Area', 'ICD10_2010'), +('X13.9', 'Contact with steam and hot vapours, Unspecified Place', 'ICD10_2010'), +('X14', 'Contact with hot air and gases', 'ICD10_2010'), +('X14.0', 'Contact with hot air and gases, Home', 'ICD10_2010'), +('X14.1', 'Contact with hot air and gases, Residential Institution', 'ICD10_2010'), +('X14.2', 'Contact with hot air and gases, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X14.3', 'Contact with hot air and gases, Sports and Athletic Areas', 'ICD10_2010'), +('X14.4', 'Contact with hot air and gases, Street and Highway', 'ICD10_2010'), +('X14.5', 'Contact with hot air and gases, Trade and Service Area', 'ICD10_2010'), +('X14.6', 'Contact with hot air and gases, Industrial and Construction Area', 'ICD10_2010'), +('X14.7', 'Contact with hot air and gases, Farm', 'ICD10_2010'), +('X14.8', 'Contact with hot air and gases, Other Specified Area', 'ICD10_2010'), +('X14.9', 'Contact with hot air and gases, Unspecified Place', 'ICD10_2010'), +('X15', 'Contact with hot household appliances', 'ICD10_2010'), +('X15.0', 'Contact with hot household appliances, Home', 'ICD10_2010'), +('X15.1', 'Contact with hot household appliances, Residential Institution', 'ICD10_2010'), +('X15.2', 'Contact with hot household appliances, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X15.3', 'Contact with hot household appliances, Sports and Athletic Areas', 'ICD10_2010'), +('X15.4', 'Contact with hot household appliances, Street and Highway', 'ICD10_2010'), +('X15.5', 'Contact with hot household appliances, Trade and Service Area', 'ICD10_2010'), +('X15.6', 'Contact with hot household appliances, Industrial and Construction Area', 'ICD10_2010'), +('X15.7', 'Contact with hot household appliances, Farm', 'ICD10_2010'), +('X15.8', 'Contact with hot household appliances, Other Specified Area', 'ICD10_2010'), +('X15.9', 'Contact with hot household appliances, Unspecified Place', 'ICD10_2010'), +('X16', 'Contact with hot heating appliances, radiators and pipes', 'ICD10_2010'), +('X16.0', 'Contact with hot heating appliances, radiators and pipes, Home', 'ICD10_2010'), +('X16.1', 'Contact with hot heating appliances, radiators and pipes, Residential Institution', 'ICD10_2010'), +('X16.2', 'Contact with hot heating appliances, radiators and pipes, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X16.3', 'Contact with hot heating appliances, radiators and pipes, Sports and Athletic Areas', 'ICD10_2010'), +('X16.4', 'Contact with hot heating appliances, radiators and pipes, Street and Highway', 'ICD10_2010'), +('X16.5', 'Contact with hot heating appliances, radiators and pipes, Trade and Service Area', 'ICD10_2010'), +('X16.6', 'Contact with hot heating appliances, radiators and pipes, Industrial and Construction Area', 'ICD10_2010'), +('X16.7', 'Contact with hot heating appliances, radiators and pipes, Farm', 'ICD10_2010'), +('X16.8', 'Contact with hot heating appliances, radiators and pipes, Other Specified Area', 'ICD10_2010'), +('X16.9', 'Contact with hot heating appliances, radiators and pipes, Unspecified Place', 'ICD10_2010'), +('X17', 'Contact with hot engines, machinery and tools', 'ICD10_2010'), +('X17.0', 'Contact with hot engines, machinery and tools, Home', 'ICD10_2010'), +('X17.1', 'Contact with hot engines, machinery and tools, Residential Institution', 'ICD10_2010'), +('X17.2', 'Contact with hot engines, machinery and tools, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X17.3', 'Contact with hot engines, machinery and tools, Sports and Athletic Areas', 'ICD10_2010'), +('X17.4', 'Contact with hot engines, machinery and tools, Street and Highway', 'ICD10_2010'), +('X17.5', 'Contact with hot engines, machinery and tools, Trade and Service Area', 'ICD10_2010'), +('X17.6', 'Contact with hot engines, machinery and tools, Industrial and Construction Area', 'ICD10_2010'), +('X17.7', 'Contact with hot engines, machinery and tools, Farm', 'ICD10_2010'), +('X17.8', 'Contact with hot engines, machinery and tools, Other Specified Area', 'ICD10_2010'), +('X17.9', 'Contact with hot engines, machinery and tools, Unspecified Place', 'ICD10_2010'), +('X18', 'Contact with other hot metals', 'ICD10_2010'), +('X18.0', 'Contact with other hot metals, Home', 'ICD10_2010'), +('X18.1', 'Contact with other hot metals, Residential Institution', 'ICD10_2010'), +('X18.2', 'Contact with other hot metals, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X18.3', 'Contact with other hot metals, Sports and Athletic Areas', 'ICD10_2010'), +('X18.4', 'Contact with other hot metals, Street and Highway', 'ICD10_2010'), +('X18.5', 'Contact with other hot metals, Trade and Service Area', 'ICD10_2010'), +('X18.6', 'Contact with other hot metals, Industrial and Construction Area', 'ICD10_2010'), +('X18.7', 'Contact with other hot metals, Farm', 'ICD10_2010'), +('X18.8', 'Contact with other hot metals, Other Specified Area', 'ICD10_2010'), +('X18.9', 'Contact with other hot metals, Unspecified Place', 'ICD10_2010'), +('X19', 'Contact with other and unspecified heat and hot substances', 'ICD10_2010'), +('X19.0', 'Contact with other and unspecified heat and hot substances, Home', 'ICD10_2010'), +('X19.1', 'Contact with other and unspecified heat and hot substances, Residential Institution', 'ICD10_2010'), +('X19.2', 'Contact with other and unspecified heat and hot substances, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X19.3', 'Contact with other and unspecified heat and hot substances, Sports and Athletic Areas', 'ICD10_2010'), +('X19.4', 'Contact with other and unspecified heat and hot substances, Street and Highway', 'ICD10_2010'), +('X19.5', 'Contact with other and unspecified heat and hot substances, Trade and Service Area', 'ICD10_2010'), +('X19.6', 'Contact with other and unspecified heat and hot substances, Industrial and Construction Area', 'ICD10_2010'), +('X19.7', 'Contact with other and unspecified heat and hot substances, Farm', 'ICD10_2010'), +('X19.8', 'Contact with other and unspecified heat and hot substances, Other Specified Area', 'ICD10_2010'), +('X19.9', 'Contact with other and unspecified heat and hot substances, Unspecified Place', 'ICD10_2010'), +('X20', 'Contact with venomous snakes and lizards', 'ICD10_2010'), +('X20.0', 'Contact with venomous snakes and lizards, Home', 'ICD10_2010'), +('X20.1', 'Contact with venomous snakes and lizards, Residential Institution', 'ICD10_2010'), +('X20.2', 'Contact with venomous snakes and lizards, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X20.3', 'Contact with venomous snakes and lizards, Sports and Athletic Areas', 'ICD10_2010'), +('X20.4', 'Contact with venomous snakes and lizards, Street and Highway', 'ICD10_2010'), +('X20.5', 'Contact with venomous snakes and lizards, Trade and Service Area', 'ICD10_2010'), +('X20.6', 'Contact with venomous snakes and lizards, Industrial and Construction Area', 'ICD10_2010'), +('X20.7', 'Contact with venomous snakes and lizards, Farm', 'ICD10_2010'), +('X20.8', 'Contact with venomous snakes and lizards, Other Specified Area', 'ICD10_2010'), +('X20.9', 'Contact with venomous snakes and lizards, Unspecified Place', 'ICD10_2010'), +('X21', 'Contact with venomous spiders', 'ICD10_2010'), +('X21.0', 'Contact with venomous spiders, Home', 'ICD10_2010'), +('X21.1', 'Contact with venomous spiders, Residential Institution', 'ICD10_2010'), +('X21.2', 'Contact with venomous spiders, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X21.3', 'Contact with venomous spiders, Sports and Athletic Areas', 'ICD10_2010'), +('X21.4', 'Contact with venomous spiders, Street and Highway', 'ICD10_2010'), +('X21.5', 'Contact with venomous spiders, Trade and Service Area', 'ICD10_2010'), +('X21.6', 'Contact with venomous spiders, Industrial and Construction Area', 'ICD10_2010'), +('X21.7', 'Contact with venomous spiders, Farm', 'ICD10_2010'), +('X21.8', 'Contact with venomous spiders, Other Specified Area', 'ICD10_2010'), +('X21.9', 'Contact with venomous spiders, Unspecified Place', 'ICD10_2010'), +('X22', 'Contact with scorpions', 'ICD10_2010'), +('X22.0', 'Contact with scorpions, Home', 'ICD10_2010'), +('X22.1', 'Contact with scorpions, Residential Institution', 'ICD10_2010'), +('X22.2', 'Contact with scorpions, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X22.3', 'Contact with scorpions, Sports and Athletic Areas', 'ICD10_2010'), +('X22.4', 'Contact with scorpions, Street and Highway', 'ICD10_2010'), +('X22.5', 'Contact with scorpions, Trade and Service Area', 'ICD10_2010'), +('X22.6', 'Contact with scorpions, Industrial and Construction Area', 'ICD10_2010'), +('X22.7', 'Contact with scorpions, Farm', 'ICD10_2010'), +('X22.8', 'Contact with scorpions, Other Specified Area', 'ICD10_2010'), +('X22.9', 'Contact with scorpions, Unspecified Place', 'ICD10_2010'), +('X23', 'Contact with hornets, wasps and bees', 'ICD10_2010'), +('X23.0', 'Contact with hornets, wasps and bees, Home', 'ICD10_2010'), +('X23.1', 'Contact with hornets, wasps and bees, Residential Institution', 'ICD10_2010'), +('X23.2', 'Contact with hornets, wasps and bees, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X23.3', 'Contact with hornets, wasps and bees, Sports and Athletic Areas', 'ICD10_2010'), +('X23.4', 'Contact with hornets, wasps and bees, Street and Highway', 'ICD10_2010'), +('X23.5', 'Contact with hornets, wasps and bees, Trade and Service Area', 'ICD10_2010'), +('X23.6', 'Contact with hornets, wasps and bees, Industrial and Construction Area', 'ICD10_2010'), +('X23.7', 'Contact with hornets, wasps and bees, Farm', 'ICD10_2010'), +('X23.8', 'Contact with hornets, wasps and bees, Other Specified Area', 'ICD10_2010'), +('X23.9', 'Contact with hornets, wasps and bees, Unspecified Place', 'ICD10_2010'), +('X24', 'Contact with centipedes and venomous millipedes (tropical)', 'ICD10_2010'); +INSERT INTO `icd10` (`ID_ICD10`, `Diagnosa`, `Versi_ICD10`) VALUES +('X24.0', 'Contact with centipedes and venomous millipedes (tropical), Home', 'ICD10_2010'), +('X24.1', 'Contact with centipedes and venomous millipedes (tropical), Residential Institution', 'ICD10_2010'), +('X24.2', 'Contact with centipedes and venomous millipedes (tropical), School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X24.3', 'Contact with centipedes and venomous millipedes (tropical), Sports and Athletic Areas', 'ICD10_2010'), +('X24.4', 'Contact with centipedes and venomous millipedes (tropical), Street and Highway', 'ICD10_2010'), +('X24.5', 'Contact with centipedes and venomous millipedes (tropical), Trade and Service Area', 'ICD10_2010'), +('X24.6', 'Contact with centipedes and venomous millipedes (tropical), Industrial and Construction Area', 'ICD10_2010'), +('X24.7', 'Contact with centipedes and venomous millipedes (tropical), Farm', 'ICD10_2010'), +('X24.8', 'Contact with centipedes and venomous millipedes (tropical), Other Specified Area', 'ICD10_2010'), +('X24.9', 'Contact with centipedes and venomous millipedes (tropical), Unspecified Place', 'ICD10_2010'), +('X25', 'Contact with other venomous arthropods', 'ICD10_2010'), +('X25.0', 'Contact with other venomous arthropods, Home', 'ICD10_2010'), +('X25.1', 'Contact with other venomous arthropods, Residential Institution', 'ICD10_2010'), +('X25.2', 'Contact with other venomous arthropods, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X25.3', 'Contact with other venomous arthropods, Sports and Athletic Areas', 'ICD10_2010'), +('X25.4', 'Contact with other venomous arthropods, Street and Highway', 'ICD10_2010'), +('X25.5', 'Contact with other venomous arthropods, Trade and Service Area', 'ICD10_2010'), +('X25.6', 'Contact with other venomous arthropods, Industrial and Construction Area', 'ICD10_2010'), +('X25.7', 'Contact with other venomous arthropods, Farm', 'ICD10_2010'), +('X25.8', 'Contact with other venomous arthropods, Other Specified Area', 'ICD10_2010'), +('X25.9', 'Contact with other venomous arthropods, Unspecified Place', 'ICD10_2010'), +('X26', 'Contact with venomous marine animals and plants', 'ICD10_2010'), +('X26.0', 'Contact with venomous marine animals and plants, Home', 'ICD10_2010'), +('X26.1', 'Contact with venomous marine animals and plants, Residential Institution', 'ICD10_2010'), +('X26.2', 'Contact with venomous marine animals and plants, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X26.3', 'Contact with venomous marine animals and plants, Sports and Athletic Areas', 'ICD10_2010'), +('X26.4', 'Contact with venomous marine animals and plants, Street and Highway', 'ICD10_2010'), +('X26.5', 'Contact with venomous marine animals and plants, Trade and Service Area', 'ICD10_2010'), +('X26.6', 'Contact with venomous marine animals and plants, Industrial and Construction Area', 'ICD10_2010'), +('X26.7', 'Contact with venomous marine animals and plants, Farm', 'ICD10_2010'), +('X26.8', 'Contact with venomous marine animals and plants, Other Specified Area', 'ICD10_2010'), +('X26.9', 'Contact with venomous marine animals and plants, Unspecified Place', 'ICD10_2010'), +('X27', 'Contact with other specified venomous animals', 'ICD10_2010'), +('X27.0', 'Contact with other specified venomous animals, Home', 'ICD10_2010'), +('X27.1', 'Contact with other specified venomous animals, Residential Institution', 'ICD10_2010'), +('X27.2', 'Contact with other specified venomous animals, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X27.3', 'Contact with other specified venomous animals, Sports and Athletic Areas', 'ICD10_2010'), +('X27.4', 'Contact with other specified venomous animals, Street and Highway', 'ICD10_2010'), +('X27.5', 'Contact with other specified venomous animals, Trade and Service Area', 'ICD10_2010'), +('X27.6', 'Contact with other specified venomous animals, Industrial and Construction Area', 'ICD10_2010'), +('X27.7', 'Contact with other specified venomous animals, Farm', 'ICD10_2010'), +('X27.8', 'Contact with other specified venomous animals, Other Specified Area', 'ICD10_2010'), +('X27.9', 'Contact with other specified venomous animals, Unspecified Place', 'ICD10_2010'), +('X28', 'Contact with other specified venomous plants', 'ICD10_2010'), +('X28.0', 'Contact with other specified venomous plants, Home', 'ICD10_2010'), +('X28.1', 'Contact with other specified venomous plants, Residential Institution', 'ICD10_2010'), +('X28.2', 'Contact with other specified venomous plants, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X28.3', 'Contact with other specified venomous plants, Sports and Athletic Areas', 'ICD10_2010'), +('X28.4', 'Contact with other specified venomous plants, Street and Highway', 'ICD10_2010'), +('X28.5', 'Contact with other specified venomous plants, Trade and Service Area', 'ICD10_2010'), +('X28.6', 'Contact with other specified venomous plants, Industrial and Construction Area', 'ICD10_2010'), +('X28.7', 'Contact with other specified venomous plants, Farm', 'ICD10_2010'), +('X28.8', 'Contact with other specified venomous plants, Other Specified Area', 'ICD10_2010'), +('X28.9', 'Contact with other specified venomous plants, Unspecified Place', 'ICD10_2010'), +('X29', 'Contact with unspecified venomous animal or plant', 'ICD10_2010'), +('X29.0', 'Contact with unspecified venomous animal or plant, Home', 'ICD10_2010'), +('X29.1', 'Contact with unspecified venomous animal or plant, Residential Institution', 'ICD10_2010'), +('X29.2', 'Contact with unspecified venomous animal or plant, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X29.3', 'Contact with unspecified venomous animal or plant, Sports and Athletic Areas', 'ICD10_2010'), +('X29.4', 'Contact with unspecified venomous animal or plant, Street and Highway', 'ICD10_2010'), +('X29.5', 'Contact with unspecified venomous animal or plant, Trade and Service Area', 'ICD10_2010'), +('X29.6', 'Contact with unspecified venomous animal or plant, Industrial and Construction Area', 'ICD10_2010'), +('X29.7', 'Contact with unspecified venomous animal or plant, Farm', 'ICD10_2010'), +('X29.8', 'Contact with unspecified venomous animal or plant, Other Specified Area', 'ICD10_2010'), +('X29.9', 'Contact with unspecified venomous animal or plant, Unspecified Place', 'ICD10_2010'), +('X30', 'Exposure to excessive natural heat', 'ICD10_2010'), +('X30.0', 'Exposure to excessive natural heat, Home', 'ICD10_2010'), +('X30.1', 'Exposure to excessive natural heat, Residential Institution', 'ICD10_2010'), +('X30.2', 'Exposure to excessive natural heat, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X30.3', 'Exposure to excessive natural heat, Sports and Athletic Areas', 'ICD10_2010'), +('X30.4', 'Exposure to excessive natural heat, Street and Highway', 'ICD10_2010'), +('X30.5', 'Exposure to excessive natural heat, Trade and Service Area', 'ICD10_2010'), +('X30.6', 'Exposure to excessive natural heat, Industrial and Construction Area', 'ICD10_2010'), +('X30.7', 'Exposure to excessive natural heat, Farm', 'ICD10_2010'), +('X30.8', 'Exposure to excessive natural heat, Other Specified Area', 'ICD10_2010'), +('X30.9', 'Exposure to excessive natural heat, Unspecified Place', 'ICD10_2010'), +('X31', 'Exposure to excessive natural cold', 'ICD10_2010'), +('X31.0', 'Exposure to excessive natural cold, Home', 'ICD10_2010'), +('X31.1', 'Exposure to excessive natural cold, Residential Institution', 'ICD10_2010'), +('X31.2', 'Exposure to excessive natural cold, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X31.3', 'Exposure to excessive natural cold, Sports and Athletic Areas', 'ICD10_2010'), +('X31.4', 'Exposure to excessive natural cold, Street and Highway', 'ICD10_2010'), +('X31.5', 'Exposure to excessive natural cold, Trade and Service Area', 'ICD10_2010'), +('X31.6', 'Exposure to excessive natural cold, Industrial and Construction Area', 'ICD10_2010'), +('X31.7', 'Exposure to excessive natural cold, Farm', 'ICD10_2010'), +('X31.8', 'Exposure to excessive natural cold, Other Specified Area', 'ICD10_2010'), +('X31.9', 'Exposure to excessive natural cold, Unspecified Place', 'ICD10_2010'), +('X32', 'Exposure to sunlight', 'ICD10_2010'), +('X32.0', 'Exposure to sunlight, Home', 'ICD10_2010'), +('X32.1', 'Exposure to sunlight, Residential Institution', 'ICD10_2010'), +('X32.2', 'Exposure to sunlight, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X32.3', 'Exposure to sunlight, Sports and Athletic Areas', 'ICD10_2010'), +('X32.4', 'Exposure to sunlight, Street and Highway', 'ICD10_2010'), +('X32.5', 'Exposure to sunlight, Trade and Service Area', 'ICD10_2010'), +('X32.6', 'Exposure to sunlight, Industrial and Construction Area', 'ICD10_2010'), +('X32.7', 'Exposure to sunlight, Farm', 'ICD10_2010'), +('X32.8', 'Exposure to sunlight, Other Specified Area', 'ICD10_2010'), +('X32.9', 'Exposure to sunlight, Unspecified Place', 'ICD10_2010'), +('X33', 'Victim of lightning', 'ICD10_2010'), +('X33.0', 'Victim of lightning, Home', 'ICD10_2010'), +('X33.1', 'Victim of lightning, Residential Institution', 'ICD10_2010'), +('X33.2', 'Victim of lightning, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X33.3', 'Victim of lightning, Sports and Athletic Areas', 'ICD10_2010'), +('X33.4', 'Victim of lightning, Street and Highway', 'ICD10_2010'), +('X33.5', 'Victim of lightning, Trade and Service Area', 'ICD10_2010'), +('X33.6', 'Victim of lightning, Industrial and Construction Area', 'ICD10_2010'), +('X33.7', 'Victim of lightning, Farm', 'ICD10_2010'), +('X33.8', 'Victim of lightning, Other Specified Area', 'ICD10_2010'), +('X33.9', 'Victim of lightning, Unspecified Place', 'ICD10_2010'), +('X34', 'Victim of earthquake', 'ICD10_2010'), +('X34.0', 'Victim of earthquake, Home', 'ICD10_2010'), +('X34.1', 'Victim of earthquake, Residential Institution', 'ICD10_2010'), +('X34.2', 'Victim of earthquake, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X34.3', 'Victim of earthquake, Sports and Athletic Areas', 'ICD10_2010'), +('X34.4', 'Victim of earthquake, Street and Highway', 'ICD10_2010'), +('X34.5', 'Victim of earthquake, Trade and Service Area', 'ICD10_2010'), +('X34.6', 'Victim of earthquake, Industrial and Construction Area', 'ICD10_2010'), +('X34.7', 'Victim of earthquake, Farm', 'ICD10_2010'), +('X34.8', 'Victim of earthquake, Other Specified Area', 'ICD10_2010'), +('X34.9', 'Victim of earthquake, Unspecified Place', 'ICD10_2010'), +('X35', 'Victim of volcanic eruption', 'ICD10_2010'), +('X35.0', 'Victim of volcanic eruption, Home', 'ICD10_2010'), +('X35.1', 'Victim of volcanic eruption, Residential Institution', 'ICD10_2010'), +('X35.2', 'Victim of volcanic eruption, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X35.3', 'Victim of volcanic eruption, Sports and Athletic Areas', 'ICD10_2010'), +('X35.4', 'Victim of volcanic eruption, Street and Highway', 'ICD10_2010'), +('X35.5', 'Victim of volcanic eruption, Trade and Service Area', 'ICD10_2010'), +('X35.6', 'Victim of volcanic eruption, Industrial and Construction Area', 'ICD10_2010'), +('X35.7', 'Victim of volcanic eruption, Farm', 'ICD10_2010'), +('X35.8', 'Victim of volcanic eruption, Other Specified Area', 'ICD10_2010'), +('X35.9', 'Victim of volcanic eruption, Unspecified Place', 'ICD10_2010'), +('X36', 'Victim of avalanche, landslide and other earth movements', 'ICD10_2010'), +('X36.0', 'Victim of avalanche, landslide and other earth movements, Home', 'ICD10_2010'), +('X36.1', 'Victim of avalanche, landslide and other earth movements, Residential Institution', 'ICD10_2010'), +('X36.2', 'Victim of avalanche, landslide and other earth movements, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X36.3', 'Victim of avalanche, landslide and other earth movements, Sports and Athletic Areas', 'ICD10_2010'), +('X36.4', 'Victim of avalanche, landslide and other earth movements, Street and Highway', 'ICD10_2010'), +('X36.5', 'Victim of avalanche, landslide and other earth movements, Trade and Service Area', 'ICD10_2010'), +('X36.6', 'Victim of avalanche, landslide and other earth movements, Industrial and Construction Area', 'ICD10_2010'), +('X36.7', 'Victim of avalanche, landslide and other earth movements, Farm', 'ICD10_2010'), +('X36.8', 'Victim of avalanche, landslide and other earth movements, Other Specified Area', 'ICD10_2010'), +('X36.9', 'Victim of avalanche, landslide and other earth movements, Unspecified Place', 'ICD10_2010'), +('X37', 'Victim of cataclysmic storm', 'ICD10_2010'), +('X37.0', 'Victim of cataclysmic storm, Home', 'ICD10_2010'), +('X37.1', 'Victim of cataclysmic storm, Residential Institution', 'ICD10_2010'), +('X37.2', 'Victim of cataclysmic storm, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X37.3', 'Victim of cataclysmic storm, Sports and Athletic Areas', 'ICD10_2010'), +('X37.4', 'Victim of cataclysmic storm, Street and Highway', 'ICD10_2010'), +('X37.5', 'Victim of cataclysmic storm, Trade and Service Area', 'ICD10_2010'), +('X37.6', 'Victim of cataclysmic storm, Industrial and Construction Area', 'ICD10_2010'), +('X37.7', 'Victim of cataclysmic storm, Farm', 'ICD10_2010'), +('X37.8', 'Victim of cataclysmic storm, Other Specified Area', 'ICD10_2010'), +('X37.9', 'Victim of cataclysmic storm, Unspecified Place', 'ICD10_2010'), +('X38', 'Victim of flood', 'ICD10_2010'), +('X38.0', 'Victim of flood, Home', 'ICD10_2010'), +('X38.1', 'Victim of flood, Residential Institution', 'ICD10_2010'), +('X38.2', 'Victim of flood, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X38.3', 'Victim of flood, Sports and Athletic Areas', 'ICD10_2010'), +('X38.4', 'Victim of flood, Street and Highway', 'ICD10_2010'), +('X38.5', 'Victim of flood, Trade and Service Area', 'ICD10_2010'), +('X38.6', 'Victim of flood, Industrial and Construction Area', 'ICD10_2010'), +('X38.7', 'Victim of flood, Farm', 'ICD10_2010'), +('X38.8', 'Victim of flood, Other Specified Area', 'ICD10_2010'), +('X38.9', 'Victim of flood, Unspecified Place', 'ICD10_2010'), +('X39', 'Exposure to other and unspecified forces of nature', 'ICD10_2010'), +('X39.0', 'Exposure to other and unspecified forces of nature, Home', 'ICD10_2010'), +('X39.1', 'Exposure to other and unspecified forces of nature, Residential Institution', 'ICD10_2010'), +('X39.2', 'Exposure to other and unspecified forces of nature, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X39.3', 'Exposure to other and unspecified forces of nature, Sports and Athletic Areas', 'ICD10_2010'), +('X39.4', 'Exposure to other and unspecified forces of nature, Street and Highway', 'ICD10_2010'), +('X39.5', 'Exposure to other and unspecified forces of nature, Trade and Service Area', 'ICD10_2010'), +('X39.6', 'Exposure to other and unspecified forces of nature, Industrial and Construction Area', 'ICD10_2010'), +('X39.7', 'Exposure to other and unspecified forces of nature, Farm', 'ICD10_2010'), +('X39.8', 'Exposure to other and unspecified forces of nature, Other Specified Area', 'ICD10_2010'), +('X39.9', 'Exposure to other and unspecified forces of nature, Unspecified Place', 'ICD10_2010'), +('X40', 'Accidental poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics', 'ICD10_2010'), +('X40.0', 'Accidental poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, Home', 'ICD10_2010'), +('X40.1', 'Accidental poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, Residential Institution', 'ICD10_2010'), +('X40.2', 'Accidental poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, School, Other Institution and Public Admimistration Are', 'ICD10_2010'), +('X40.3', 'Accidental poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, Sports and Athletic Areas', 'ICD10_2010'), +('X40.4', 'Accidental poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, Street and Highway', 'ICD10_2010'), +('X40.5', 'Accidental poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, Trade and Service Area', 'ICD10_2010'), +('X40.6', 'Accidental poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, Industrial and Construction Area', 'ICD10_2010'), +('X40.7', 'Accidental poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, Farm', 'ICD10_2010'), +('X40.8', 'Accidental poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, Other Specified Area', 'ICD10_2010'), +('X40.9', 'Accidental poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, Unspecified Place', 'ICD10_2010'), +('X41', 'Accidental poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified', 'ICD10_2010'), +('X41.0', 'Accidental poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, Home', 'ICD10_2010'), +('X41.1', 'Accidental poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, Residenti', 'ICD10_2010'), +('X41.2', 'Accidental poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, School, O', 'ICD10_2010'), +('X41.3', 'Accidental poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, Sports an', 'ICD10_2010'), +('X41.4', 'Accidental poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, Street an', 'ICD10_2010'), +('X41.5', 'Accidental poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, Trade and', 'ICD10_2010'), +('X41.6', 'Accidental poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, Industria', 'ICD10_2010'), +('X41.7', 'Accidental poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, Farm', 'ICD10_2010'), +('X41.8', 'Accidental poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, Other Spe', 'ICD10_2010'), +('X41.9', 'Accidental poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, Unspecifi', 'ICD10_2010'), +('X42', 'Accidental poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified', 'ICD10_2010'), +('X42.0', 'Accidental poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, Home', 'ICD10_2010'), +('X42.1', 'Accidental poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, Residential Institution', 'ICD10_2010'), +('X42.2', 'Accidental poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, School, Other Institution and Public', 'ICD10_2010'), +('X42.3', 'Accidental poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, Sports and Athletic Areas', 'ICD10_2010'), +('X42.4', 'Accidental poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, Street and Highway', 'ICD10_2010'), +('X42.5', 'Accidental poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, Trade and Service Area', 'ICD10_2010'), +('X42.6', 'Accidental poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, Industrial and Construction Area', 'ICD10_2010'), +('X42.7', 'Accidental poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, Farm', 'ICD10_2010'), +('X42.8', 'Accidental poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, Other Specified Area', 'ICD10_2010'), +('X42.9', 'Accidental poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, Unspecified Place', 'ICD10_2010'), +('X43', 'Accidental poisoning by and exposure to other drugs acting on the autonomic nervous system', 'ICD10_2010'), +('X43.0', 'Accidental poisoning by and exposure to other drugs acting on the autonomic nervous system, Home', 'ICD10_2010'), +('X43.1', 'Accidental poisoning by and exposure to other drugs acting on the autonomic nervous system, Residential Institution', 'ICD10_2010'), +('X43.2', 'Accidental poisoning by and exposure to other drugs acting on the autonomic nervous system, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X43.3', 'Accidental poisoning by and exposure to other drugs acting on the autonomic nervous system, Sports and Athletic Areas', 'ICD10_2010'), +('X43.4', 'Accidental poisoning by and exposure to other drugs acting on the autonomic nervous system, Street and Highway', 'ICD10_2010'), +('X43.5', 'Accidental poisoning by and exposure to other drugs acting on the autonomic nervous system, Trade and Service Area', 'ICD10_2010'), +('X43.6', 'Accidental poisoning by and exposure to other drugs acting on the autonomic nervous system, Industrial and Construction Area', 'ICD10_2010'), +('X43.7', 'Accidental poisoning by and exposure to other drugs acting on the autonomic nervous system, Farm', 'ICD10_2010'), +('X43.8', 'Accidental poisoning by and exposure to other drugs acting on the autonomic nervous system, Other Specified Area', 'ICD10_2010'), +('X43.9', 'Accidental poisoning by and exposure to other drugs acting on the autonomic nervous system, Unspecified Place', 'ICD10_2010'), +('X44', 'Accidental poisoning by and exposure to other and unspecified drugs, medicaments and biological substances', 'ICD10_2010'), +('X44.0', 'Accidental poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, Home', 'ICD10_2010'), +('X44.1', 'Accidental poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, Residential Institution', 'ICD10_2010'), +('X44.2', 'Accidental poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, School, Other Institution and Public Admim', 'ICD10_2010'), +('X44.3', 'Accidental poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, Sports and Athletic Areas', 'ICD10_2010'), +('X44.4', 'Accidental poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, Street and Highway', 'ICD10_2010'), +('X44.5', 'Accidental poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, Trade and Service Area', 'ICD10_2010'), +('X44.6', 'Accidental poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, Industrial and Construction Area', 'ICD10_2010'), +('X44.7', 'Accidental poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, Farm', 'ICD10_2010'), +('X44.8', 'Accidental poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, Other Specified Area', 'ICD10_2010'), +('X44.9', 'Accidental poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, Unspecified Place', 'ICD10_2010'), +('X45', 'Accidental poisoning by and exposure to alcohol', 'ICD10_2010'), +('X45.0', 'Accidental poisoning by and exposure to alcohol, Home', 'ICD10_2010'), +('X45.1', 'Accidental poisoning by and exposure to alcohol, Residential Institution', 'ICD10_2010'), +('X45.2', 'Accidental poisoning by and exposure to alcohol, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X45.3', 'Accidental poisoning by and exposure to alcohol, Sports and Athletic Areas', 'ICD10_2010'), +('X45.4', 'Accidental poisoning by and exposure to alcohol, Street and Highway', 'ICD10_2010'), +('X45.5', 'Accidental poisoning by and exposure to alcohol, Trade and Service Area', 'ICD10_2010'), +('X45.6', 'Accidental poisoning by and exposure to alcohol, Industrial and Construction Area', 'ICD10_2010'), +('X45.7', 'Accidental poisoning by and exposure to alcohol, Farm', 'ICD10_2010'), +('X45.8', 'Accidental poisoning by and exposure to alcohol, Other Specified Area', 'ICD10_2010'), +('X45.9', 'Accidental poisoning by and exposure to alcohol, Unspecified Place', 'ICD10_2010'), +('X46', 'Accidental poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours', 'ICD10_2010'), +('X46.0', 'Accidental poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, Home', 'ICD10_2010'), +('X46.1', 'Accidental poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, Residential Institution', 'ICD10_2010'), +('X46.2', 'Accidental poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, School, Other Institution and Public Admimist', 'ICD10_2010'), +('X46.3', 'Accidental poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, Sports and Athletic Areas', 'ICD10_2010'), +('X46.4', 'Accidental poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, Street and Highway', 'ICD10_2010'), +('X46.5', 'Accidental poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, Trade and Service Area', 'ICD10_2010'), +('X46.6', 'Accidental poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, Industrial and Construction Area', 'ICD10_2010'), +('X46.7', 'Accidental poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, Farm', 'ICD10_2010'), +('X46.8', 'Accidental poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, Other Specified Area', 'ICD10_2010'), +('X46.9', 'Accidental poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, Unspecified Place', 'ICD10_2010'), +('X47', 'Accidental poisoning by and exposure to other gases and vapours', 'ICD10_2010'), +('X47.0', 'Accidental poisoning by and exposure to other gases and vapours, Home', 'ICD10_2010'), +('X47.1', 'Accidental poisoning by and exposure to other gases and vapours, Residential Institution', 'ICD10_2010'), +('X47.2', 'Accidental poisoning by and exposure to other gases and vapours, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X47.3', 'Accidental poisoning by and exposure to other gases and vapours, Sports and Athletic Areas', 'ICD10_2010'), +('X47.4', 'Accidental poisoning by and exposure to other gases and vapours, Street and Highway', 'ICD10_2010'), +('X47.5', 'Accidental poisoning by and exposure to other gases and vapours, Trade and Service Area', 'ICD10_2010'), +('X47.6', 'Accidental poisoning by and exposure to other gases and vapours, Industrial and Construction Area', 'ICD10_2010'), +('X47.7', 'Accidental poisoning by and exposure to other gases and vapours, Farm', 'ICD10_2010'), +('X47.8', 'Accidental poisoning by and exposure to other gases and vapours, Other Specified Area', 'ICD10_2010'), +('X47.9', 'Accidental poisoning by and exposure to other gases and vapours, Unspecified Place', 'ICD10_2010'), +('X48', 'Accidental poisoning by and exposure to pesticides', 'ICD10_2010'), +('X48.0', 'Accidental poisoning by and exposure to pesticides, Home', 'ICD10_2010'), +('X48.1', 'Accidental poisoning by and exposure to pesticides, Residential Institution', 'ICD10_2010'), +('X48.2', 'Accidental poisoning by and exposure to pesticides, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X48.3', 'Accidental poisoning by and exposure to pesticides, Sports and Athletic Areas', 'ICD10_2010'), +('X48.4', 'Accidental poisoning by and exposure to pesticides, Street and Highway', 'ICD10_2010'), +('X48.5', 'Accidental poisoning by and exposure to pesticides, Trade and Service Area', 'ICD10_2010'), +('X48.6', 'Accidental poisoning by and exposure to pesticides, Industrial and Construction Area', 'ICD10_2010'), +('X48.7', 'Accidental poisoning by and exposure to pesticides, Farm', 'ICD10_2010'), +('X48.8', 'Accidental poisoning by and exposure to pesticides, Other Specified Area', 'ICD10_2010'), +('X48.9', 'Accidental poisoning by and exposure to pesticides, Unspecified Place', 'ICD10_2010'), +('X49', 'Accidental poisoning by and exposure to other and unspecified chemicals and noxious substances', 'ICD10_2010'), +('X49.0', 'Accidental poisoning by and exposure to other and unspecified chemicals and noxious substances, Home', 'ICD10_2010'), +('X49.1', 'Accidental poisoning by and exposure to other and unspecified chemicals and noxious substances, Residential Institution', 'ICD10_2010'), +('X49.2', 'Accidental poisoning by and exposure to other and unspecified chemicals and noxious substances, School, Other Institution and Public Admimistration Ar', 'ICD10_2010'), +('X49.3', 'Accidental poisoning by and exposure to other and unspecified chemicals and noxious substances, Sports and Athletic Areas', 'ICD10_2010'), +('X49.4', 'Accidental poisoning by and exposure to other and unspecified chemicals and noxious substances, Street and Highway', 'ICD10_2010'), +('X49.5', 'Accidental poisoning by and exposure to other and unspecified chemicals and noxious substances, Trade and Service Area', 'ICD10_2010'), +('X49.6', 'Accidental poisoning by and exposure to other and unspecified chemicals and noxious substances, Industrial and Construction Area', 'ICD10_2010'), +('X49.7', 'Accidental poisoning by and exposure to other and unspecified chemicals and noxious substances, Farm', 'ICD10_2010'), +('X49.8', 'Accidental poisoning by and exposure to other and unspecified chemicals and noxious substances, Other Specified Area', 'ICD10_2010'), +('X49.9', 'Accidental poisoning by and exposure to other and unspecified chemicals and noxious substances, Unspecified Place', 'ICD10_2010'), +('X50', 'Overexertion and strenuous or repetitive movements', 'ICD10_2010'), +('X50.0', 'Overexertion and strenuous or repetitive movements, Home', 'ICD10_2010'), +('X50.1', 'Overexertion and strenuous or repetitive movements, Residential Institution', 'ICD10_2010'), +('X50.2', 'Overexertion and strenuous or repetitive movements, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X50.3', 'Overexertion and strenuous or repetitive movements, Sports and Athletic Areas', 'ICD10_2010'), +('X50.4', 'Overexertion and strenuous or repetitive movements, Street and Highway', 'ICD10_2010'), +('X50.5', 'Overexertion and strenuous or repetitive movements, Trade and Service Area', 'ICD10_2010'), +('X50.6', 'Overexertion and strenuous or repetitive movements, Industrial and Construction Area', 'ICD10_2010'), +('X50.7', 'Overexertion and strenuous or repetitive movements, Farm', 'ICD10_2010'), +('X50.8', 'Overexertion and strenuous or repetitive movements, Other Specified Area', 'ICD10_2010'), +('X50.9', 'Overexertion and strenuous or repetitive movements, Unspecified Place', 'ICD10_2010'), +('X51', 'Travel and motion', 'ICD10_2010'), +('X51.0', 'Travel and motion, Home', 'ICD10_2010'), +('X51.1', 'Travel and motion, Residential Institution', 'ICD10_2010'), +('X51.2', 'Travel and motion, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X51.3', 'Travel and motion, Sports and Athletic Areas', 'ICD10_2010'), +('X51.4', 'Travel and motion, Street and Highway', 'ICD10_2010'), +('X51.5', 'Travel and motion, Trade and Service Area', 'ICD10_2010'), +('X51.6', 'Travel and motion, Industrial and Construction Area', 'ICD10_2010'), +('X51.7', 'Travel and motion, Farm', 'ICD10_2010'), +('X51.8', 'Travel and motion, Other Specified Area', 'ICD10_2010'), +('X51.9', 'Travel and motion, Unspecified Place', 'ICD10_2010'), +('X52', 'Prolonged stay in weightless environment', 'ICD10_2010'), +('X52.0', 'Prolonged stay in weightless environment, Home', 'ICD10_2010'), +('X52.1', 'Prolonged stay in weightless environment, Residential Institution', 'ICD10_2010'), +('X52.2', 'Prolonged stay in weightless environment, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X52.3', 'Prolonged stay in weightless environment, Sports and Athletic Areas', 'ICD10_2010'), +('X52.4', 'Prolonged stay in weightless environment, Street and Highway', 'ICD10_2010'), +('X52.5', 'Prolonged stay in weightless environment, Trade and Service Area', 'ICD10_2010'), +('X52.6', 'Prolonged stay in weightless environment, Industrial and Construction Area', 'ICD10_2010'), +('X52.7', 'Prolonged stay in weightless environment, Farm', 'ICD10_2010'), +('X52.8', 'Prolonged stay in weightless environment, Other Specified Area', 'ICD10_2010'), +('X52.9', 'Prolonged stay in weightless environment, Unspecified Place', 'ICD10_2010'), +('X53', 'Lack of food', 'ICD10_2010'), +('X53.0', 'Lack of food, Home', 'ICD10_2010'), +('X53.1', 'Lack of food, Residential Institution', 'ICD10_2010'), +('X53.2', 'Lack of food, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X53.3', 'Lack of food, Sports and Athletic Areas', 'ICD10_2010'), +('X53.4', 'Lack of food, Street and Highway', 'ICD10_2010'), +('X53.5', 'Lack of food, Trade and Service Area', 'ICD10_2010'), +('X53.6', 'Lack of food, Industrial and Construction Area', 'ICD10_2010'), +('X53.7', 'Lack of food, Farm', 'ICD10_2010'), +('X53.8', 'Lack of food, Other Specified Area', 'ICD10_2010'), +('X53.9', 'Lack of food, Unspecified Place', 'ICD10_2010'), +('X54', 'Lack of water', 'ICD10_2010'), +('X54.0', 'Lack of water, Home', 'ICD10_2010'), +('X54.1', 'Lack of water, Residential Institution', 'ICD10_2010'), +('X54.2', 'Lack of water, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X54.3', 'Lack of water, Sports and Athletic Areas', 'ICD10_2010'), +('X54.4', 'Lack of water, Street and Highway', 'ICD10_2010'), +('X54.5', 'Lack of water, Trade and Service Area', 'ICD10_2010'), +('X54.6', 'Lack of water, Industrial and Construction Area', 'ICD10_2010'), +('X54.7', 'Lack of water, Farm', 'ICD10_2010'), +('X54.8', 'Lack of water, Other Specified Area', 'ICD10_2010'), +('X54.9', 'Lack of water, Unspecified Place', 'ICD10_2010'), +('X57', 'Unspecified privation', 'ICD10_2010'), +('X57.0', 'Unspecified privation, Home', 'ICD10_2010'), +('X57.1', 'Unspecified privation, Residential Institution', 'ICD10_2010'), +('X57.2', 'Unspecified privation, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X57.3', 'Unspecified privation, Sports and Athletic Areas', 'ICD10_2010'), +('X57.4', 'Unspecified privation, Street and Highway', 'ICD10_2010'), +('X57.5', 'Unspecified privation, Trade and Service Area', 'ICD10_2010'), +('X57.6', 'Unspecified privation, Industrial and Construction Area', 'ICD10_2010'), +('X57.7', 'Unspecified privation, Farm', 'ICD10_2010'), +('X57.8', 'Unspecified privation, Other Specified Area', 'ICD10_2010'), +('X57.9', 'Unspecified privation, Unspecified Place', 'ICD10_2010'), +('X58', 'Exposure to other specified factors', 'ICD10_2010'), +('X58.0', 'Exposure to other specified factors, Home', 'ICD10_2010'), +('X58.1', 'Exposure to other specified factors, Residential Institution', 'ICD10_2010'), +('X58.2', 'Exposure to other specified factors, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X58.3', 'Exposure to other specified factors, Sports and Athletic Areas', 'ICD10_2010'), +('X58.4', 'Exposure to other specified factors, Street and Highway', 'ICD10_2010'), +('X58.5', 'Exposure to other specified factors, Trade and Service Area', 'ICD10_2010'), +('X58.6', 'Exposure to other specified factors, Industrial and Construction Area', 'ICD10_2010'), +('X58.7', 'Exposure to other specified factors, Farm', 'ICD10_2010'), +('X58.8', 'Exposure to other specified factors, Other Specified Area', 'ICD10_2010'), +('X58.9', 'Exposure to other specified factors, Unspecified Place', 'ICD10_2010'), +('X59', 'Exposure to unspecified factor', 'ICD10_2010'), +('X59.0', 'Exposure to unspecified factor, Home', 'ICD10_2010'), +('X59.1', 'Exposure to unspecified factor, Residential Institution', 'ICD10_2010'), +('X59.2', 'Exposure to unspecified factor, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X59.3', 'Exposure to unspecified factor, Sports and Athletic Areas', 'ICD10_2010'), +('X59.4', 'Exposure to unspecified factor, Street and Highway', 'ICD10_2010'), +('X59.5', 'Exposure to unspecified factor, Trade and Service Area', 'ICD10_2010'), +('X59.6', 'Exposure to unspecified factor, Industrial and Construction Area', 'ICD10_2010'), +('X59.7', 'Exposure to unspecified factor, Farm', 'ICD10_2010'), +('X59.8', 'Exposure to unspecified factor, Other Specified Area', 'ICD10_2010'), +('X59.9', 'Exposure to unspecified factor, Unspecified Place', 'ICD10_2010'), +('X60', 'Intentional self-poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics', 'ICD10_2010'), +('X60.0', 'Intentional self-poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, Home', 'ICD10_2010'), +('X60.1', 'Intentional self-poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, Residential Institution', 'ICD10_2010'), +('X60.2', 'Intentional self-poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, School, Other Institution and Public Admimistrati', 'ICD10_2010'), +('X60.3', 'Intentional self-poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, Sports and Athletic Areas', 'ICD10_2010'), +('X60.4', 'Intentional self-poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, Street and Highway', 'ICD10_2010'), +('X60.5', 'Intentional self-poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, Trade and Service Area', 'ICD10_2010'), +('X60.6', 'Intentional self-poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, Industrial and Construction Area', 'ICD10_2010'), +('X60.7', 'Intentional self-poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, Farm', 'ICD10_2010'), +('X60.8', 'Intentional self-poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, Other Specified Area', 'ICD10_2010'), +('X60.9', 'Intentional self-poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, Unspecified Place', 'ICD10_2010'), +('X61', 'Intentional self-poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified', 'ICD10_2010'), +('X61.0', 'Intentional self-poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, Hom', 'ICD10_2010'), +('X61.1', 'Intentional self-poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, Res', 'ICD10_2010'), +('X61.2', 'Intentional self-poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, Sch', 'ICD10_2010'), +('X61.3', 'Intentional self-poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, Spo', 'ICD10_2010'), +('X61.4', 'Intentional self-poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, Str', 'ICD10_2010'), +('X61.5', 'Intentional self-poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, Tra', 'ICD10_2010'), +('X61.6', 'Intentional self-poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, Ind', 'ICD10_2010'), +('X61.7', 'Intentional self-poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, Far', 'ICD10_2010'), +('X61.8', 'Intentional self-poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, Oth', 'ICD10_2010'), +('X61.9', 'Intentional self-poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, Uns', 'ICD10_2010'), +('X62', 'Intentional self-poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified', 'ICD10_2010'), +('X62.0', 'Intentional self-poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, Home', 'ICD10_2010'), +('X62.1', 'Intentional self-poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, Residential Institution', 'ICD10_2010'), +('X62.2', 'Intentional self-poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, School, Other Institution and ', 'ICD10_2010'), +('X62.3', 'Intentional self-poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, Sports and Athletic Areas', 'ICD10_2010'), +('X62.4', 'Intentional self-poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, Street and Highway', 'ICD10_2010'), +('X62.5', 'Intentional self-poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, Trade and Service Area', 'ICD10_2010'), +('X62.6', 'Intentional self-poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, Industrial and Construction Ar', 'ICD10_2010'), +('X62.7', 'Intentional self-poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, Farm', 'ICD10_2010'), +('X62.8', 'Intentional self-poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, Other Specified Area', 'ICD10_2010'), +('X62.9', 'Intentional self-poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, Unspecified Place', 'ICD10_2010'), +('X63', 'Intentional self-poisoning by and exposure to other drugs acting on the autonomic nervous system', 'ICD10_2010'), +('X63.0', 'Intentional self-poisoning by and exposure to other drugs acting on the autonomic nervous system, Home', 'ICD10_2010'), +('X63.1', 'Intentional self-poisoning by and exposure to other drugs acting on the autonomic nervous system, Residential Institution', 'ICD10_2010'), +('X63.2', 'Intentional self-poisoning by and exposure to other drugs acting on the autonomic nervous system, School, Other Institution and Public Admimistration ', 'ICD10_2010'), +('X63.3', 'Intentional self-poisoning by and exposure to other drugs acting on the autonomic nervous system, Sports and Athletic Areas', 'ICD10_2010'), +('X63.4', 'Intentional self-poisoning by and exposure to other drugs acting on the autonomic nervous system, Street and Highway', 'ICD10_2010'), +('X63.5', 'Intentional self-poisoning by and exposure to other drugs acting on the autonomic nervous system, Trade and Service Area', 'ICD10_2010'), +('X63.6', 'Intentional self-poisoning by and exposure to other drugs acting on the autonomic nervous system, Industrial and Construction Area', 'ICD10_2010'), +('X63.7', 'Intentional self-poisoning by and exposure to other drugs acting on the autonomic nervous system, Farm', 'ICD10_2010'), +('X63.8', 'Intentional self-poisoning by and exposure to other drugs acting on the autonomic nervous system, Other Specified Area', 'ICD10_2010'), +('X63.9', 'Intentional self-poisoning by and exposure to other drugs acting on the autonomic nervous system, Unspecified Place', 'ICD10_2010'), +('X64', 'Intentional self-poisoning by and exposure to other and unspecified drugs, medicaments and biological substances', 'ICD10_2010'), +('X64.0', 'Intentional self-poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, Home', 'ICD10_2010'), +('X64.1', 'Intentional self-poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, Residential Institution', 'ICD10_2010'), +('X64.2', 'Intentional self-poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, School, Other Institution and Public', 'ICD10_2010'), +('X64.3', 'Intentional self-poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, Sports and Athletic Areas', 'ICD10_2010'), +('X64.4', 'Intentional self-poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, Street and Highway', 'ICD10_2010'), +('X64.5', 'Intentional self-poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, Trade and Service Area', 'ICD10_2010'), +('X64.6', 'Intentional self-poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, Industrial and Construction Area', 'ICD10_2010'), +('X64.7', 'Intentional self-poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, Farm', 'ICD10_2010'), +('X64.8', 'Intentional self-poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, Other Specified Area', 'ICD10_2010'), +('X64.9', 'Intentional self-poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, Unspecified Place', 'ICD10_2010'), +('X65', 'Intentional self-poisoning by and exposure to alcohol', 'ICD10_2010'), +('X65.0', 'Intentional self-poisoning by and exposure to alcohol, Home', 'ICD10_2010'), +('X65.1', 'Intentional self-poisoning by and exposure to alcohol, Residential Institution', 'ICD10_2010'), +('X65.2', 'Intentional self-poisoning by and exposure to alcohol, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X65.3', 'Intentional self-poisoning by and exposure to alcohol, Sports and Athletic Areas', 'ICD10_2010'), +('X65.4', 'Intentional self-poisoning by and exposure to alcohol, Street and Highway', 'ICD10_2010'), +('X65.5', 'Intentional self-poisoning by and exposure to alcohol, Trade and Service Area', 'ICD10_2010'), +('X65.6', 'Intentional self-poisoning by and exposure to alcohol, Industrial and Construction Area', 'ICD10_2010'), +('X65.7', 'Intentional self-poisoning by and exposure to alcohol, Farm', 'ICD10_2010'), +('X65.8', 'Intentional self-poisoning by and exposure to alcohol, Other Specified Area', 'ICD10_2010'), +('X65.9', 'Intentional self-poisoning by and exposure to alcohol, Unspecified Place', 'ICD10_2010'), +('X66', 'Intentional self-poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours', 'ICD10_2010'), +('X66.0', 'Intentional self-poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, Home', 'ICD10_2010'), +('X66.1', 'Intentional self-poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, Residential Institution', 'ICD10_2010'), +('X66.2', 'Intentional self-poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, School, Other Institution and Public Ad', 'ICD10_2010'), +('X66.3', 'Intentional self-poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, Sports and Athletic Areas', 'ICD10_2010'), +('X66.4', 'Intentional self-poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, Street and Highway', 'ICD10_2010'), +('X66.5', 'Intentional self-poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, Trade and Service Area', 'ICD10_2010'), +('X66.6', 'Intentional self-poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, Industrial and Construction Area', 'ICD10_2010'), +('X66.7', 'Intentional self-poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, Farm', 'ICD10_2010'), +('X66.8', 'Intentional self-poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, Other Specified Area', 'ICD10_2010'), +('X66.9', 'Intentional self-poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, Unspecified Place', 'ICD10_2010'), +('X67', 'Intentional self-poisoning by and exposure to other gases and vapours', 'ICD10_2010'), +('X67.0', 'Intentional self-poisoning by and exposure to other gases and vapours, Home', 'ICD10_2010'), +('X67.1', 'Intentional self-poisoning by and exposure to other gases and vapours, Residential Institution', 'ICD10_2010'), +('X67.2', 'Intentional self-poisoning by and exposure to other gases and vapours, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X67.3', 'Intentional self-poisoning by and exposure to other gases and vapours, Sports and Athletic Areas', 'ICD10_2010'), +('X67.4', 'Intentional self-poisoning by and exposure to other gases and vapours, Street and Highway', 'ICD10_2010'), +('X67.5', 'Intentional self-poisoning by and exposure to other gases and vapours, Trade and Service Area', 'ICD10_2010'), +('X67.6', 'Intentional self-poisoning by and exposure to other gases and vapours, Industrial and Construction Area', 'ICD10_2010'), +('X67.7', 'Intentional self-poisoning by and exposure to other gases and vapours, Farm', 'ICD10_2010'), +('X67.8', 'Intentional self-poisoning by and exposure to other gases and vapours, Other Specified Area', 'ICD10_2010'), +('X67.9', 'Intentional self-poisoning by and exposure to other gases and vapours, Unspecified Place', 'ICD10_2010'), +('X68', 'Intentional self-poisoning by and exposure to pesticides', 'ICD10_2010'), +('X68.0', 'Intentional self-poisoning by and exposure to pesticides, Home', 'ICD10_2010'), +('X68.1', 'Intentional self-poisoning by and exposure to pesticides, Residential Institution', 'ICD10_2010'), +('X68.2', 'Intentional self-poisoning by and exposure to pesticides, School, Other Institution and Public Admimistration Area', 'ICD10_2010'); +INSERT INTO `icd10` (`ID_ICD10`, `Diagnosa`, `Versi_ICD10`) VALUES +('X68.3', 'Intentional self-poisoning by and exposure to pesticides, Sports and Athletic Areas', 'ICD10_2010'), +('X68.4', 'Intentional self-poisoning by and exposure to pesticides, Street and Highway', 'ICD10_2010'), +('X68.5', 'Intentional self-poisoning by and exposure to pesticides, Trade and Service Area', 'ICD10_2010'), +('X68.6', 'Intentional self-poisoning by and exposure to pesticides, Industrial and Construction Area', 'ICD10_2010'), +('X68.7', 'Intentional self-poisoning by and exposure to pesticides, Farm', 'ICD10_2010'), +('X68.8', 'Intentional self-poisoning by and exposure to pesticides, Other Specified Area', 'ICD10_2010'), +('X68.9', 'Intentional self-poisoning by and exposure to pesticides, Unspecified Place', 'ICD10_2010'), +('X69', 'Intentional self-poisoning by and exposure to other and unspecified chemicals and noxious substances', 'ICD10_2010'), +('X69.0', 'Intentional self-poisoning by and exposure to other and unspecified chemicals and noxious substances, Home', 'ICD10_2010'), +('X69.1', 'Intentional self-poisoning by and exposure to other and unspecified chemicals and noxious substances, Residential Institution', 'ICD10_2010'), +('X69.2', 'Intentional self-poisoning by and exposure to other and unspecified chemicals and noxious substances, School, Other Institution and Public Admimistrat', 'ICD10_2010'), +('X69.3', 'Intentional self-poisoning by and exposure to other and unspecified chemicals and noxious substances, Sports and Athletic Areas', 'ICD10_2010'), +('X69.4', 'Intentional self-poisoning by and exposure to other and unspecified chemicals and noxious substances, Street and Highway', 'ICD10_2010'), +('X69.5', 'Intentional self-poisoning by and exposure to other and unspecified chemicals and noxious substances, Trade and Service Area', 'ICD10_2010'), +('X69.6', 'Intentional self-poisoning by and exposure to other and unspecified chemicals and noxious substances, Industrial and Construction Area', 'ICD10_2010'), +('X69.7', 'Intentional self-poisoning by and exposure to other and unspecified chemicals and noxious substances, Farm', 'ICD10_2010'), +('X69.8', 'Intentional self-poisoning by and exposure to other and unspecified chemicals and noxious substances, Other Specified Area', 'ICD10_2010'), +('X69.9', 'Intentional self-poisoning by and exposure to other and unspecified chemicals and noxious substances, Unspecified Place', 'ICD10_2010'), +('X70', 'Intentional self-harm by hanging, strangulation and suffocation', 'ICD10_2010'), +('X70.0', 'Intentional self-harm by hanging, strangulation and suffocation, Home', 'ICD10_2010'), +('X70.1', 'Intentional self-harm by hanging, strangulation and suffocation, Residential Institution', 'ICD10_2010'), +('X70.2', 'Intentional self-harm by hanging, strangulation and suffocation, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X70.3', 'Intentional self-harm by hanging, strangulation and suffocation, Sports and Athletic Areas', 'ICD10_2010'), +('X70.4', 'Intentional self-harm by hanging, strangulation and suffocation, Street and Highway', 'ICD10_2010'), +('X70.5', 'Intentional self-harm by hanging, strangulation and suffocation, Trade and Service Area', 'ICD10_2010'), +('X70.6', 'Intentional self-harm by hanging, strangulation and suffocation, Industrial and Construction Area', 'ICD10_2010'), +('X70.7', 'Intentional self-harm by hanging, strangulation and suffocation, Farm', 'ICD10_2010'), +('X70.8', 'Intentional self-harm by hanging, strangulation and suffocation, Other Specified Area', 'ICD10_2010'), +('X70.9', 'Intentional self-harm by hanging, strangulation and suffocation, Unspecified Place', 'ICD10_2010'), +('X71', 'Intentional self-harm by drowning and submersion', 'ICD10_2010'), +('X71.0', 'Intentional self-harm by drowning and submersion, Home', 'ICD10_2010'), +('X71.1', 'Intentional self-harm by drowning and submersion, Residential Institution', 'ICD10_2010'), +('X71.2', 'Intentional self-harm by drowning and submersion, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X71.3', 'Intentional self-harm by drowning and submersion, Sports and Athletic Areas', 'ICD10_2010'), +('X71.4', 'Intentional self-harm by drowning and submersion, Street and Highway', 'ICD10_2010'), +('X71.5', 'Intentional self-harm by drowning and submersion, Trade and Service Area', 'ICD10_2010'), +('X71.6', 'Intentional self-harm by drowning and submersion, Industrial and Construction Area', 'ICD10_2010'), +('X71.7', 'Intentional self-harm by drowning and submersion, Farm', 'ICD10_2010'), +('X71.8', 'Intentional self-harm by drowning and submersion, Other Specified Area', 'ICD10_2010'), +('X71.9', 'Intentional self-harm by drowning and submersion, Unspecified Place', 'ICD10_2010'), +('X72', 'Intentional self-harm by handgun discharge', 'ICD10_2010'), +('X72.0', 'Intentional self-harm by handgun discharge, Home', 'ICD10_2010'), +('X72.1', 'Intentional self-harm by handgun discharge, Residential Institution', 'ICD10_2010'), +('X72.2', 'Intentional self-harm by handgun discharge, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X72.3', 'Intentional self-harm by handgun discharge, Sports and Athletic Areas', 'ICD10_2010'), +('X72.4', 'Intentional self-harm by handgun discharge, Street and Highway', 'ICD10_2010'), +('X72.5', 'Intentional self-harm by handgun discharge, Trade and Service Area', 'ICD10_2010'), +('X72.6', 'Intentional self-harm by handgun discharge, Industrial and Construction Area', 'ICD10_2010'), +('X72.7', 'Intentional self-harm by handgun discharge, Farm', 'ICD10_2010'), +('X72.8', 'Intentional self-harm by handgun discharge, Other Specified Area', 'ICD10_2010'), +('X72.9', 'Intentional self-harm by handgun discharge, Unspecified Place', 'ICD10_2010'), +('X73', 'Intentional self-harm by rifle, shotgun and larger firearm discharge', 'ICD10_2010'), +('X73.0', 'Intentional self-harm by rifle, shotgun and larger firearm discharge, Home', 'ICD10_2010'), +('X73.1', 'Intentional self-harm by rifle, shotgun and larger firearm discharge, Residential Institution', 'ICD10_2010'), +('X73.2', 'Intentional self-harm by rifle, shotgun and larger firearm discharge, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X73.3', 'Intentional self-harm by rifle, shotgun and larger firearm discharge, Sports and Athletic Areas', 'ICD10_2010'), +('X73.4', 'Intentional self-harm by rifle, shotgun and larger firearm discharge, Street and Highway', 'ICD10_2010'), +('X73.5', 'Intentional self-harm by rifle, shotgun and larger firearm discharge, Trade and Service Area', 'ICD10_2010'), +('X73.6', 'Intentional self-harm by rifle, shotgun and larger firearm discharge, Industrial and Construction Area', 'ICD10_2010'), +('X73.7', 'Intentional self-harm by rifle, shotgun and larger firearm discharge, Farm', 'ICD10_2010'), +('X73.8', 'Intentional self-harm by rifle, shotgun and larger firearm discharge, Other Specified Area', 'ICD10_2010'), +('X73.9', 'Intentional self-harm by rifle, shotgun and larger firearm discharge, Unspecified Place', 'ICD10_2010'), +('X74', 'Intentional self-harm by other and unspecified firearm discharge', 'ICD10_2010'), +('X74.0', 'Intentional self-harm by other and unspecified firearm discharge, Home', 'ICD10_2010'), +('X74.1', 'Intentional self-harm by other and unspecified firearm discharge, Residential Institution', 'ICD10_2010'), +('X74.2', 'Intentional self-harm by other and unspecified firearm discharge, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X74.3', 'Intentional self-harm by other and unspecified firearm discharge, Sports and Athletic Areas', 'ICD10_2010'), +('X74.4', 'Intentional self-harm by other and unspecified firearm discharge, Street and Highway', 'ICD10_2010'), +('X74.5', 'Intentional self-harm by other and unspecified firearm discharge, Trade and Service Area', 'ICD10_2010'), +('X74.6', 'Intentional self-harm by other and unspecified firearm discharge, Industrial and Construction Area', 'ICD10_2010'), +('X74.7', 'Intentional self-harm by other and unspecified firearm discharge, Farm', 'ICD10_2010'), +('X74.8', 'Intentional self-harm by other and unspecified firearm discharge, Other Specified Area', 'ICD10_2010'), +('X74.9', 'Intentional self-harm by other and unspecified firearm discharge, Unspecified Place', 'ICD10_2010'), +('X75', 'Intentional self-harm by explosive material', 'ICD10_2010'), +('X75.0', 'Intentional self-harm by explosive material, Home', 'ICD10_2010'), +('X75.1', 'Intentional self-harm by explosive material, Residential Institution', 'ICD10_2010'), +('X75.2', 'Intentional self-harm by explosive material, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X75.3', 'Intentional self-harm by explosive material, Sports and Athletic Areas', 'ICD10_2010'), +('X75.4', 'Intentional self-harm by explosive material, Street and Highway', 'ICD10_2010'), +('X75.5', 'Intentional self-harm by explosive material, Trade and Service Area', 'ICD10_2010'), +('X75.6', 'Intentional self-harm by explosive material, Industrial and Construction Area', 'ICD10_2010'), +('X75.7', 'Intentional self-harm by explosive material, Farm', 'ICD10_2010'), +('X75.8', 'Intentional self-harm by explosive material, Other Specified Area', 'ICD10_2010'), +('X75.9', 'Intentional self-harm by explosive material, Unspecified Place', 'ICD10_2010'), +('X76', 'Intentional self-harm by smoke, fire and flames', 'ICD10_2010'), +('X76.0', 'Intentional self-harm by smoke, fire and flames, Home', 'ICD10_2010'), +('X76.1', 'Intentional self-harm by smoke, fire and flames, Residential Institution', 'ICD10_2010'), +('X76.2', 'Intentional self-harm by smoke, fire and flames, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X76.3', 'Intentional self-harm by smoke, fire and flames, Sports and Athletic Areas', 'ICD10_2010'), +('X76.4', 'Intentional self-harm by smoke, fire and flames, Street and Highway', 'ICD10_2010'), +('X76.5', 'Intentional self-harm by smoke, fire and flames, Trade and Service Area', 'ICD10_2010'), +('X76.6', 'Intentional self-harm by smoke, fire and flames, Industrial and Construction Area', 'ICD10_2010'), +('X76.7', 'Intentional self-harm by smoke, fire and flames, Farm', 'ICD10_2010'), +('X76.8', 'Intentional self-harm by smoke, fire and flames, Other Specified Area', 'ICD10_2010'), +('X76.9', 'Intentional self-harm by smoke, fire and flames, Unspecified Place', 'ICD10_2010'), +('X77', 'Intentional self-harm by steam, hot vapours and hot objects', 'ICD10_2010'), +('X77.0', 'Intentional self-harm by steam, hot vapours and hot objects, Home', 'ICD10_2010'), +('X77.1', 'Intentional self-harm by steam, hot vapours and hot objects, Residential Institution', 'ICD10_2010'), +('X77.2', 'Intentional self-harm by steam, hot vapours and hot objects, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X77.3', 'Intentional self-harm by steam, hot vapours and hot objects, Sports and Athletic Areas', 'ICD10_2010'), +('X77.4', 'Intentional self-harm by steam, hot vapours and hot objects, Street and Highway', 'ICD10_2010'), +('X77.5', 'Intentional self-harm by steam, hot vapours and hot objects, Trade and Service Area', 'ICD10_2010'), +('X77.6', 'Intentional self-harm by steam, hot vapours and hot objects, Industrial and Construction Area', 'ICD10_2010'), +('X77.7', 'Intentional self-harm by steam, hot vapours and hot objects, Farm', 'ICD10_2010'), +('X77.8', 'Intentional self-harm by steam, hot vapours and hot objects, Other Specified Area', 'ICD10_2010'), +('X77.9', 'Intentional self-harm by steam, hot vapours and hot objects, Unspecified Place', 'ICD10_2010'), +('X78', 'Intentional self-harm by sharp object', 'ICD10_2010'), +('X78.0', 'Intentional self-harm by sharp object, Home', 'ICD10_2010'), +('X78.1', 'Intentional self-harm by sharp object, Residential Institution', 'ICD10_2010'), +('X78.2', 'Intentional self-harm by sharp object, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X78.3', 'Intentional self-harm by sharp object, Sports and Athletic Areas', 'ICD10_2010'), +('X78.4', 'Intentional self-harm by sharp object, Street and Highway', 'ICD10_2010'), +('X78.5', 'Intentional self-harm by sharp object, Trade and Service Area', 'ICD10_2010'), +('X78.6', 'Intentional self-harm by sharp object, Industrial and Construction Area', 'ICD10_2010'), +('X78.7', 'Intentional self-harm by sharp object, Farm', 'ICD10_2010'), +('X78.8', 'Intentional self-harm by sharp object, Other Specified Area', 'ICD10_2010'), +('X78.9', 'Intentional self-harm by sharp object, Unspecified Place', 'ICD10_2010'), +('X79', 'Intentional self-harm by blunt object', 'ICD10_2010'), +('X79.0', 'Intentional self-harm by blunt object, Home', 'ICD10_2010'), +('X79.1', 'Intentional self-harm by blunt object, Residential Institution', 'ICD10_2010'), +('X79.2', 'Intentional self-harm by blunt object, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X79.3', 'Intentional self-harm by blunt object, Sports and Athletic Areas', 'ICD10_2010'), +('X79.4', 'Intentional self-harm by blunt object, Street and Highway', 'ICD10_2010'), +('X79.5', 'Intentional self-harm by blunt object, Trade and Service Area', 'ICD10_2010'), +('X79.6', 'Intentional self-harm by blunt object, Industrial and Construction Area', 'ICD10_2010'), +('X79.7', 'Intentional self-harm by blunt object, Farm', 'ICD10_2010'), +('X79.8', 'Intentional self-harm by blunt object, Other Specified Area', 'ICD10_2010'), +('X79.9', 'Intentional self-harm by blunt object, Unspecified Place', 'ICD10_2010'), +('X80', 'Intentional self-harm by jumping from a high place', 'ICD10_2010'), +('X80.0', 'Intentional self-harm by jumping from a high place, Home', 'ICD10_2010'), +('X80.1', 'Intentional self-harm by jumping from a high place, Residential Institution', 'ICD10_2010'), +('X80.2', 'Intentional self-harm by jumping from a high place, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X80.3', 'Intentional self-harm by jumping from a high place, Sports and Athletic Areas', 'ICD10_2010'), +('X80.4', 'Intentional self-harm by jumping from a high place, Street and Highway', 'ICD10_2010'), +('X80.5', 'Intentional self-harm by jumping from a high place, Trade and Service Area', 'ICD10_2010'), +('X80.6', 'Intentional self-harm by jumping from a high place, Industrial and Construction Area', 'ICD10_2010'), +('X80.7', 'Intentional self-harm by jumping from a high place, Farm', 'ICD10_2010'), +('X80.8', 'Intentional self-harm by jumping from a high place, Other Specified Area', 'ICD10_2010'), +('X80.9', 'Intentional self-harm by jumping from a high place, Unspecified Place', 'ICD10_2010'), +('X81', 'Intentional self-harm by jumping or lying before moving object', 'ICD10_2010'), +('X81.0', 'Intentional self-harm by jumping or lying before moving object, Home', 'ICD10_2010'), +('X81.1', 'Intentional self-harm by jumping or lying before moving object, Residential Institution', 'ICD10_2010'), +('X81.2', 'Intentional self-harm by jumping or lying before moving object, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X81.3', 'Intentional self-harm by jumping or lying before moving object, Sports and Athletic Areas', 'ICD10_2010'), +('X81.4', 'Intentional self-harm by jumping or lying before moving object, Street and Highway', 'ICD10_2010'), +('X81.5', 'Intentional self-harm by jumping or lying before moving object, Trade and Service Area', 'ICD10_2010'), +('X81.6', 'Intentional self-harm by jumping or lying before moving object, Industrial and Construction Area', 'ICD10_2010'), +('X81.7', 'Intentional self-harm by jumping or lying before moving object, Farm', 'ICD10_2010'), +('X81.8', 'Intentional self-harm by jumping or lying before moving object, Other Specified Area', 'ICD10_2010'), +('X81.9', 'Intentional self-harm by jumping or lying before moving object, Unspecified Place', 'ICD10_2010'), +('X82', 'Intentional self-harm by crashing of motor vehicle', 'ICD10_2010'), +('X82.0', 'Intentional self-harm by crashing of motor vehicle, Home', 'ICD10_2010'), +('X82.1', 'Intentional self-harm by crashing of motor vehicle, Residential Institution', 'ICD10_2010'), +('X82.2', 'Intentional self-harm by crashing of motor vehicle, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X82.3', 'Intentional self-harm by crashing of motor vehicle, Sports and Athletic Areas', 'ICD10_2010'), +('X82.4', 'Intentional self-harm by crashing of motor vehicle, Street and Highway', 'ICD10_2010'), +('X82.5', 'Intentional self-harm by crashing of motor vehicle, Trade and Service Area', 'ICD10_2010'), +('X82.6', 'Intentional self-harm by crashing of motor vehicle, Industrial and Construction Area', 'ICD10_2010'), +('X82.7', 'Intentional self-harm by crashing of motor vehicle, Farm', 'ICD10_2010'), +('X82.8', 'Intentional self-harm by crashing of motor vehicle, Other Specified Area', 'ICD10_2010'), +('X82.9', 'Intentional self-harm by crashing of motor vehicle, Unspecified Place', 'ICD10_2010'), +('X83', 'Intentional self-harm by other specified means', 'ICD10_2010'), +('X83.0', 'Intentional self-harm by other specified means, Home', 'ICD10_2010'), +('X83.1', 'Intentional self-harm by other specified means, Residential Institution', 'ICD10_2010'), +('X83.2', 'Intentional self-harm by other specified means, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X83.3', 'Intentional self-harm by other specified means, Sports and Athletic Areas', 'ICD10_2010'), +('X83.4', 'Intentional self-harm by other specified means, Street and Highway', 'ICD10_2010'), +('X83.5', 'Intentional self-harm by other specified means, Trade and Service Area', 'ICD10_2010'), +('X83.6', 'Intentional self-harm by other specified means, Industrial and Construction Area', 'ICD10_2010'), +('X83.7', 'Intentional self-harm by other specified means, Farm', 'ICD10_2010'), +('X83.8', 'Intentional self-harm by other specified means, Other Specified Area', 'ICD10_2010'), +('X83.9', 'Intentional self-harm by other specified means, Unspecified Place', 'ICD10_2010'), +('X84', 'Intentional self-harm by unspecified means', 'ICD10_2010'), +('X84.0', 'Intentional self-harm by unspecified means, Home', 'ICD10_2010'), +('X84.1', 'Intentional self-harm by unspecified means, Residential Institution', 'ICD10_2010'), +('X84.2', 'Intentional self-harm by unspecified means, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X84.3', 'Intentional self-harm by unspecified means, Sports and Athletic Areas', 'ICD10_2010'), +('X84.4', 'Intentional self-harm by unspecified means, Street and Highway', 'ICD10_2010'), +('X84.5', 'Intentional self-harm by unspecified means, Trade and Service Area', 'ICD10_2010'), +('X84.6', 'Intentional self-harm by unspecified means, Industrial and Construction Area', 'ICD10_2010'), +('X84.7', 'Intentional self-harm by unspecified means, Farm', 'ICD10_2010'), +('X84.8', 'Intentional self-harm by unspecified means, Other Specified Area', 'ICD10_2010'), +('X84.9', 'Intentional self-harm by unspecified means, Unspecified Place', 'ICD10_2010'), +('X85', 'Assault by drugs, medicaments and biological substances', 'ICD10_2010'), +('X85.0', 'Assault by drugs, medicaments and biological substances, Home', 'ICD10_2010'), +('X85.1', 'Assault by drugs, medicaments and biological substances, Residential Institution', 'ICD10_2010'), +('X85.2', 'Assault by drugs, medicaments and biological substances, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X85.3', 'Assault by drugs, medicaments and biological substances, Sports and Athletic Areas', 'ICD10_2010'), +('X85.4', 'Assault by drugs, medicaments and biological substances, Street and Highway', 'ICD10_2010'), +('X85.5', 'Assault by drugs, medicaments and biological substances, Trade and Service Area', 'ICD10_2010'), +('X85.6', 'Assault by drugs, medicaments and biological substances, Industrial and Construction Area', 'ICD10_2010'), +('X85.7', 'Assault by drugs, medicaments and biological substances, Farm', 'ICD10_2010'), +('X85.8', 'Assault by drugs, medicaments and biological substances, Other Specified Area', 'ICD10_2010'), +('X85.9', 'Assault by drugs, medicaments and biological substances, Unspecified Place', 'ICD10_2010'), +('X86', 'Assault by corrosive substance', 'ICD10_2010'), +('X86.0', 'Assault by corrosive substance, Home', 'ICD10_2010'), +('X86.1', 'Assault by corrosive substance, Residential Institution', 'ICD10_2010'), +('X86.2', 'Assault by corrosive substance, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X86.3', 'Assault by corrosive substance, Sports and Athletic Areas', 'ICD10_2010'), +('X86.4', 'Assault by corrosive substance, Street and Highway', 'ICD10_2010'), +('X86.5', 'Assault by corrosive substance, Trade and Service Area', 'ICD10_2010'), +('X86.6', 'Assault by corrosive substance, Industrial and Construction Area', 'ICD10_2010'), +('X86.7', 'Assault by corrosive substance, Farm', 'ICD10_2010'), +('X86.8', 'Assault by corrosive substance, Other Specified Area', 'ICD10_2010'), +('X86.9', 'Assault by corrosive substance, Unspecified Place', 'ICD10_2010'), +('X87', 'Assault by pesticides', 'ICD10_2010'), +('X87.0', 'Assault by pesticides, Home', 'ICD10_2010'), +('X87.1', 'Assault by pesticides, Residential Institution', 'ICD10_2010'), +('X87.2', 'Assault by pesticides, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X87.3', 'Assault by pesticides, Sports and Athletic Areas', 'ICD10_2010'), +('X87.4', 'Assault by pesticides, Street and Highway', 'ICD10_2010'), +('X87.5', 'Assault by pesticides, Trade and Service Area', 'ICD10_2010'), +('X87.6', 'Assault by pesticides, Industrial and Construction Area', 'ICD10_2010'), +('X87.7', 'Assault by pesticides, Farm', 'ICD10_2010'), +('X87.8', 'Assault by pesticides, Other Specified Area', 'ICD10_2010'), +('X87.9', 'Assault by pesticides, Unspecified Place', 'ICD10_2010'), +('X88', 'Assault by gases and vapours', 'ICD10_2010'), +('X88.0', 'Assault by gases and vapours, Home', 'ICD10_2010'), +('X88.1', 'Assault by gases and vapours, Residential Institution', 'ICD10_2010'), +('X88.2', 'Assault by gases and vapours, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X88.3', 'Assault by gases and vapours, Sports and Athletic Areas', 'ICD10_2010'), +('X88.4', 'Assault by gases and vapours, Street and Highway', 'ICD10_2010'), +('X88.5', 'Assault by gases and vapours, Trade and Service Area', 'ICD10_2010'), +('X88.6', 'Assault by gases and vapours, Industrial and Construction Area', 'ICD10_2010'), +('X88.7', 'Assault by gases and vapours, Farm', 'ICD10_2010'), +('X88.8', 'Assault by gases and vapours, Other Specified Area', 'ICD10_2010'), +('X88.9', 'Assault by gases and vapours, Unspecified Place', 'ICD10_2010'), +('X89', 'Assault by other specified chemicals and noxious substances', 'ICD10_2010'), +('X89.0', 'Assault by other specified chemicals and noxious substances, Home', 'ICD10_2010'), +('X89.1', 'Assault by other specified chemicals and noxious substances, Residential Institution', 'ICD10_2010'), +('X89.2', 'Assault by other specified chemicals and noxious substances, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X89.3', 'Assault by other specified chemicals and noxious substances, Sports and Athletic Areas', 'ICD10_2010'), +('X89.4', 'Assault by other specified chemicals and noxious substances, Street and Highway', 'ICD10_2010'), +('X89.5', 'Assault by other specified chemicals and noxious substances, Trade and Service Area', 'ICD10_2010'), +('X89.6', 'Assault by other specified chemicals and noxious substances, Industrial and Construction Area', 'ICD10_2010'), +('X89.7', 'Assault by other specified chemicals and noxious substances, Farm', 'ICD10_2010'), +('X89.8', 'Assault by other specified chemicals and noxious substances, Other Specified Area', 'ICD10_2010'), +('X89.9', 'Assault by other specified chemicals and noxious substances, Unspecified Place', 'ICD10_2010'), +('X90', 'Assault by unspecified chemical or noxious substance', 'ICD10_2010'), +('X90.0', 'Assault by unspecified chemical or noxious substance, Home', 'ICD10_2010'), +('X90.1', 'Assault by unspecified chemical or noxious substance, Residential Institution', 'ICD10_2010'), +('X90.2', 'Assault by unspecified chemical or noxious substance, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X90.3', 'Assault by unspecified chemical or noxious substance, Sports and Athletic Areas', 'ICD10_2010'), +('X90.4', 'Assault by unspecified chemical or noxious substance, Street and Highway', 'ICD10_2010'), +('X90.5', 'Assault by unspecified chemical or noxious substance, Trade and Service Area', 'ICD10_2010'), +('X90.6', 'Assault by unspecified chemical or noxious substance, Industrial and Construction Area', 'ICD10_2010'), +('X90.7', 'Assault by unspecified chemical or noxious substance, Farm', 'ICD10_2010'), +('X90.8', 'Assault by unspecified chemical or noxious substance, Other Specified Area', 'ICD10_2010'), +('X90.9', 'Assault by unspecified chemical or noxious substance, Unspecified Place', 'ICD10_2010'), +('X91', 'Assault by hanging, strangulation and suffocation', 'ICD10_2010'), +('X91.0', 'Assault by hanging, strangulation and suffocation, Home', 'ICD10_2010'), +('X91.1', 'Assault by hanging, strangulation and suffocation, Residential Institution', 'ICD10_2010'), +('X91.2', 'Assault by hanging, strangulation and suffocation, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X91.3', 'Assault by hanging, strangulation and suffocation, Sports and Athletic Areas', 'ICD10_2010'), +('X91.4', 'Assault by hanging, strangulation and suffocation, Street and Highway', 'ICD10_2010'), +('X91.5', 'Assault by hanging, strangulation and suffocation, Trade and Service Area', 'ICD10_2010'), +('X91.6', 'Assault by hanging, strangulation and suffocation, Industrial and Construction Area', 'ICD10_2010'), +('X91.7', 'Assault by hanging, strangulation and suffocation, Farm', 'ICD10_2010'), +('X91.8', 'Assault by hanging, strangulation and suffocation, Other Specified Area', 'ICD10_2010'), +('X91.9', 'Assault by hanging, strangulation and suffocation, Unspecified Place', 'ICD10_2010'), +('X92', 'Assault by drowning and submersion', 'ICD10_2010'), +('X92.0', 'Assault by drowning and submersion, Home', 'ICD10_2010'), +('X92.1', 'Assault by drowning and submersion, Residential Institution', 'ICD10_2010'), +('X92.2', 'Assault by drowning and submersion, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X92.3', 'Assault by drowning and submersion, Sports and Athletic Areas', 'ICD10_2010'), +('X92.4', 'Assault by drowning and submersion, Street and Highway', 'ICD10_2010'), +('X92.5', 'Assault by drowning and submersion, Trade and Service Area', 'ICD10_2010'), +('X92.6', 'Assault by drowning and submersion, Industrial and Construction Area', 'ICD10_2010'), +('X92.7', 'Assault by drowning and submersion, Farm', 'ICD10_2010'), +('X92.8', 'Assault by drowning and submersion, Other Specified Area', 'ICD10_2010'), +('X92.9', 'Assault by drowning and submersion, Unspecified Place', 'ICD10_2010'), +('X93', 'Assault by handgun discharge', 'ICD10_2010'), +('X93.0', 'Assault by handgun discharge, Home', 'ICD10_2010'), +('X93.1', 'Assault by handgun discharge, Residential Institution', 'ICD10_2010'), +('X93.2', 'Assault by handgun discharge, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X93.3', 'Assault by handgun discharge, Sports and Athletic Areas', 'ICD10_2010'), +('X93.4', 'Assault by handgun discharge, Street and Highway', 'ICD10_2010'), +('X93.5', 'Assault by handgun discharge, Trade and Service Area', 'ICD10_2010'), +('X93.6', 'Assault by handgun discharge, Industrial and Construction Area', 'ICD10_2010'), +('X93.7', 'Assault by handgun discharge, Farm', 'ICD10_2010'), +('X93.8', 'Assault by handgun discharge, Other Specified Area', 'ICD10_2010'), +('X93.9', 'Assault by handgun discharge, Unspecified Place', 'ICD10_2010'), +('X94', 'Assault by rifle, shotgun and larger firearm discharge', 'ICD10_2010'), +('X94.0', 'Assault by rifle, shotgun and larger firearm discharge, Home', 'ICD10_2010'), +('X94.1', 'Assault by rifle, shotgun and larger firearm discharge, Residential Institution', 'ICD10_2010'), +('X94.2', 'Assault by rifle, shotgun and larger firearm discharge, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X94.3', 'Assault by rifle, shotgun and larger firearm discharge, Sports and Athletic Areas', 'ICD10_2010'), +('X94.4', 'Assault by rifle, shotgun and larger firearm discharge, Street and Highway', 'ICD10_2010'), +('X94.5', 'Assault by rifle, shotgun and larger firearm discharge, Trade and Service Area', 'ICD10_2010'), +('X94.6', 'Assault by rifle, shotgun and larger firearm discharge, Industrial and Construction Area', 'ICD10_2010'), +('X94.7', 'Assault by rifle, shotgun and larger firearm discharge, Farm', 'ICD10_2010'), +('X94.8', 'Assault by rifle, shotgun and larger firearm discharge, Other Specified Area', 'ICD10_2010'), +('X94.9', 'Assault by rifle, shotgun and larger firearm discharge, Unspecified Place', 'ICD10_2010'), +('X95', 'Assault by other and unspecified firearm discharge', 'ICD10_2010'), +('X95.0', 'Assault by other and unspecified firearm discharge, Home', 'ICD10_2010'), +('X95.1', 'Assault by other and unspecified firearm discharge, Residential Institution', 'ICD10_2010'), +('X95.2', 'Assault by other and unspecified firearm discharge, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X95.3', 'Assault by other and unspecified firearm discharge, Sports and Athletic Areas', 'ICD10_2010'), +('X95.4', 'Assault by other and unspecified firearm discharge, Street and Highway', 'ICD10_2010'), +('X95.5', 'Assault by other and unspecified firearm discharge, Trade and Service Area', 'ICD10_2010'), +('X95.6', 'Assault by other and unspecified firearm discharge, Industrial and Construction Area', 'ICD10_2010'), +('X95.7', 'Assault by other and unspecified firearm discharge, Farm', 'ICD10_2010'), +('X95.8', 'Assault by other and unspecified firearm discharge, Other Specified Area', 'ICD10_2010'), +('X95.9', 'Assault by other and unspecified firearm discharge, Unspecified Place', 'ICD10_2010'), +('X96', 'Assault by explosive material', 'ICD10_2010'), +('X96.0', 'Assault by explosive material, Home', 'ICD10_2010'), +('X96.1', 'Assault by explosive material, Residential Institution', 'ICD10_2010'), +('X96.2', 'Assault by explosive material, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X96.3', 'Assault by explosive material, Sports and Athletic Areas', 'ICD10_2010'), +('X96.4', 'Assault by explosive material, Street and Highway', 'ICD10_2010'), +('X96.5', 'Assault by explosive material, Trade and Service Area', 'ICD10_2010'), +('X96.6', 'Assault by explosive material, Industrial and Construction Area', 'ICD10_2010'), +('X96.7', 'Assault by explosive material, Farm', 'ICD10_2010'), +('X96.8', 'Assault by explosive material, Other Specified Area', 'ICD10_2010'), +('X96.9', 'Assault by explosive material, Unspecified Place', 'ICD10_2010'), +('X97', 'Assault by smoke, fire and flames', 'ICD10_2010'), +('X97.0', 'Assault by smoke, fire and flames, Home', 'ICD10_2010'), +('X97.1', 'Assault by smoke, fire and flames, Residential Institution', 'ICD10_2010'), +('X97.2', 'Assault by smoke, fire and flames, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X97.3', 'Assault by smoke, fire and flames, Sports and Athletic Areas', 'ICD10_2010'), +('X97.4', 'Assault by smoke, fire and flames, Street and Highway', 'ICD10_2010'), +('X97.5', 'Assault by smoke, fire and flames, Trade and Service Area', 'ICD10_2010'), +('X97.6', 'Assault by smoke, fire and flames, Industrial and Construction Area', 'ICD10_2010'), +('X97.7', 'Assault by smoke, fire and flames, Farm', 'ICD10_2010'), +('X97.8', 'Assault by smoke, fire and flames, Other Specified Area', 'ICD10_2010'), +('X97.9', 'Assault by smoke, fire and flames, Unspecified Place', 'ICD10_2010'), +('X98', 'Assault by steam, hot vapours and hot objects', 'ICD10_2010'), +('X98.0', 'Assault by steam, hot vapours and hot objects, Home', 'ICD10_2010'), +('X98.1', 'Assault by steam, hot vapours and hot objects, Residential Institution', 'ICD10_2010'), +('X98.2', 'Assault by steam, hot vapours and hot objects, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X98.3', 'Assault by steam, hot vapours and hot objects, Sports and Athletic Areas', 'ICD10_2010'), +('X98.4', 'Assault by steam, hot vapours and hot objects, Street and Highway', 'ICD10_2010'), +('X98.5', 'Assault by steam, hot vapours and hot objects, Trade and Service Area', 'ICD10_2010'), +('X98.6', 'Assault by steam, hot vapours and hot objects, Industrial and Construction Area', 'ICD10_2010'), +('X98.7', 'Assault by steam, hot vapours and hot objects, Farm', 'ICD10_2010'), +('X98.8', 'Assault by steam, hot vapours and hot objects, Other Specified Area', 'ICD10_2010'), +('X98.9', 'Assault by steam, hot vapours and hot objects, Unspecified Place', 'ICD10_2010'), +('X99', 'Assault by sharp object', 'ICD10_2010'), +('X99.0', 'Assault by sharp object, Home', 'ICD10_2010'), +('X99.1', 'Assault by sharp object, Residential Institution', 'ICD10_2010'), +('X99.2', 'Assault by sharp object, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('X99.3', 'Assault by sharp object, Sports and Athletic Areas', 'ICD10_2010'), +('X99.4', 'Assault by sharp object, Street and Highway', 'ICD10_2010'), +('X99.5', 'Assault by sharp object, Trade and Service Area', 'ICD10_2010'), +('X99.6', 'Assault by sharp object, Industrial and Construction Area', 'ICD10_2010'), +('X99.7', 'Assault by sharp object, Farm', 'ICD10_2010'), +('X99.8', 'Assault by sharp object, Other Specified Area', 'ICD10_2010'), +('X99.9', 'Assault by sharp object, Unspecified Place', 'ICD10_2010'), +('Y00', 'Assault by blunt object', 'ICD10_2010'), +('Y00.0', 'Assault by blunt object, Home', 'ICD10_2010'), +('Y00.1', 'Assault by blunt object, Residential Institution', 'ICD10_2010'), +('Y00.2', 'Assault by blunt object, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('Y00.3', 'Assault by blunt object, Sports and Athletic Areas', 'ICD10_2010'), +('Y00.4', 'Assault by blunt object, Street and Highway', 'ICD10_2010'), +('Y00.5', 'Assault by blunt object, Trade and Service Area', 'ICD10_2010'), +('Y00.6', 'Assault by blunt object, Industrial and Construction Area', 'ICD10_2010'), +('Y00.7', 'Assault by blunt object, Farm', 'ICD10_2010'), +('Y00.8', 'Assault by blunt object, Other Specified Area', 'ICD10_2010'), +('Y00.9', 'Assault by blunt object, Unspecified Place', 'ICD10_2010'), +('Y01', 'Assault by pushing from high place', 'ICD10_2010'), +('Y01.0', 'Assault by pushing from high place, Home', 'ICD10_2010'), +('Y01.1', 'Assault by pushing from high place, Residential Institution', 'ICD10_2010'), +('Y01.2', 'Assault by pushing from high place, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('Y01.3', 'Assault by pushing from high place, Sports and Athletic Areas', 'ICD10_2010'), +('Y01.4', 'Assault by pushing from high place, Street and Highway', 'ICD10_2010'), +('Y01.5', 'Assault by pushing from high place, Trade and Service Area', 'ICD10_2010'), +('Y01.6', 'Assault by pushing from high place, Industrial and Construction Area', 'ICD10_2010'), +('Y01.7', 'Assault by pushing from high place, Farm', 'ICD10_2010'), +('Y01.8', 'Assault by pushing from high place, Other Specified Area', 'ICD10_2010'), +('Y01.9', 'Assault by pushing from high place, Unspecified Place', 'ICD10_2010'), +('Y02', 'Assault by pushing or placing victim before moving object', 'ICD10_2010'), +('Y02.0', 'Assault by pushing or placing victim before moving object, Home', 'ICD10_2010'), +('Y02.1', 'Assault by pushing or placing victim before moving object, Residential Institution', 'ICD10_2010'), +('Y02.2', 'Assault by pushing or placing victim before moving object, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('Y02.3', 'Assault by pushing or placing victim before moving object, Sports and Athletic Areas', 'ICD10_2010'), +('Y02.4', 'Assault by pushing or placing victim before moving object, Street and Highway', 'ICD10_2010'), +('Y02.5', 'Assault by pushing or placing victim before moving object, Trade and Service Area', 'ICD10_2010'), +('Y02.6', 'Assault by pushing or placing victim before moving object, Industrial and Construction Area', 'ICD10_2010'), +('Y02.7', 'Assault by pushing or placing victim before moving object, Farm', 'ICD10_2010'), +('Y02.8', 'Assault by pushing or placing victim before moving object, Other Specified Area', 'ICD10_2010'), +('Y02.9', 'Assault by pushing or placing victim before moving object, Unspecified Place', 'ICD10_2010'), +('Y03', 'Assault by crashing of motor vehicle', 'ICD10_2010'), +('Y03.0', 'Assault by crashing of motor vehicle, Home', 'ICD10_2010'), +('Y03.1', 'Assault by crashing of motor vehicle, Residential Institution', 'ICD10_2010'), +('Y03.2', 'Assault by crashing of motor vehicle, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('Y03.3', 'Assault by crashing of motor vehicle, Sports and Athletic Areas', 'ICD10_2010'), +('Y03.4', 'Assault by crashing of motor vehicle, Street and Highway', 'ICD10_2010'), +('Y03.5', 'Assault by crashing of motor vehicle, Trade and Service Area', 'ICD10_2010'), +('Y03.6', 'Assault by crashing of motor vehicle, Industrial and Construction Area', 'ICD10_2010'), +('Y03.7', 'Assault by crashing of motor vehicle, Farm', 'ICD10_2010'), +('Y03.8', 'Assault by crashing of motor vehicle, Other Specified Area', 'ICD10_2010'), +('Y03.9', 'Assault by crashing of motor vehicle, Unspecified Place', 'ICD10_2010'), +('Y04', 'Assault by bodily force', 'ICD10_2010'), +('Y04.0', 'Assault by bodily force, Home', 'ICD10_2010'), +('Y04.1', 'Assault by bodily force, Residential Institution', 'ICD10_2010'), +('Y04.2', 'Assault by bodily force, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('Y04.3', 'Assault by bodily force, Sports and Athletic Areas', 'ICD10_2010'), +('Y04.4', 'Assault by bodily force, Street and Highway', 'ICD10_2010'), +('Y04.5', 'Assault by bodily force, Trade and Service Area', 'ICD10_2010'), +('Y04.6', 'Assault by bodily force, Industrial and Construction Area', 'ICD10_2010'), +('Y04.7', 'Assault by bodily force, Farm', 'ICD10_2010'), +('Y04.8', 'Assault by bodily force, Other Specified Area', 'ICD10_2010'), +('Y04.9', 'Assault by bodily force, Unspecified Place', 'ICD10_2010'), +('Y05', 'Sexual assault by bodily force', 'ICD10_2010'), +('Y05.0', 'Sexual assault by bodily force, Home', 'ICD10_2010'), +('Y05.1', 'Sexual assault by bodily force, Residential Institution', 'ICD10_2010'), +('Y05.2', 'Sexual assault by bodily force, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('Y05.3', 'Sexual assault by bodily force, Sports and Athletic Areas', 'ICD10_2010'), +('Y05.4', 'Sexual assault by bodily force, Street and Highway', 'ICD10_2010'), +('Y05.5', 'Sexual assault by bodily force, Trade and Service Area', 'ICD10_2010'), +('Y05.6', 'Sexual assault by bodily force, Industrial and Construction Area', 'ICD10_2010'), +('Y05.7', 'Sexual assault by bodily force, Farm', 'ICD10_2010'), +('Y05.8', 'Sexual assault by bodily force, Other Specified Area', 'ICD10_2010'), +('Y05.9', 'Sexual assault by bodily force, Unspecified Place', 'ICD10_2010'), +('Y06', 'Neglect and abandonment', 'ICD10_2010'), +('Y06.0', 'By spouse or partner', 'ICD10_2010'), +('Y06.1', 'By parent', 'ICD10_2010'), +('Y06.2', 'By acquaintance or friend', 'ICD10_2010'), +('Y06.8', 'By other specified persons', 'ICD10_2010'), +('Y06.9', 'By unspecified person', 'ICD10_2010'), +('Y07', 'Other maltreatment', 'ICD10_2010'), +('Y07.0', 'By spouse or partner', 'ICD10_2010'), +('Y07.1', 'By parent', 'ICD10_2010'), +('Y07.2', 'By acquaintance or friend', 'ICD10_2010'), +('Y07.3', 'By official authorities', 'ICD10_2010'), +('Y07.8', 'By other specified persons', 'ICD10_2010'), +('Y07.9', 'By unspecified person', 'ICD10_2010'), +('Y08', 'Assault by other specified means', 'ICD10_2010'), +('Y08.0', 'Assault by other specified means, Home', 'ICD10_2010'), +('Y08.1', 'Assault by other specified means, Residential Institution', 'ICD10_2010'), +('Y08.2', 'Assault by other specified means, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('Y08.3', 'Assault by other specified means, Sports and Athletic Areas', 'ICD10_2010'), +('Y08.4', 'Assault by other specified means, Street and Highway', 'ICD10_2010'), +('Y08.5', 'Assault by other specified means, Trade and Service Area', 'ICD10_2010'), +('Y08.6', 'Assault by other specified means, Industrial and Construction Area', 'ICD10_2010'), +('Y08.7', 'Assault by other specified means, Farm', 'ICD10_2010'), +('Y08.8', 'Assault by other specified means, Other Specified Area', 'ICD10_2010'), +('Y08.9', 'Assault by other specified means, Unspecified Place', 'ICD10_2010'), +('Y09', 'Assault by unspecified means', 'ICD10_2010'), +('Y09.0', 'Assault by unspecified means, Home', 'ICD10_2010'), +('Y09.1', 'Assault by unspecified means, Residential Institution', 'ICD10_2010'), +('Y09.2', 'Assault by unspecified means, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('Y09.3', 'Assault by unspecified means, Sports and Athletic Areas', 'ICD10_2010'), +('Y09.4', 'Assault by unspecified means, Street and Highway', 'ICD10_2010'), +('Y09.5', 'Assault by unspecified means, Trade and Service Area', 'ICD10_2010'), +('Y09.6', 'Assault by unspecified means, Industrial and Construction Area', 'ICD10_2010'), +('Y09.7', 'Assault by unspecified means, Farm', 'ICD10_2010'), +('Y09.8', 'Assault by unspecified means, Other Specified Area', 'ICD10_2010'), +('Y09.9', 'Assault by unspecified means, Unspecified Place', 'ICD10_2010'), +('Y10', 'Poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, undetermined intent', 'ICD10_2010'), +('Y10.0', 'Poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, undetermined intent, Home', 'ICD10_2010'), +('Y10.1', 'Poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, undetermined intent, Residential Institution', 'ICD10_2010'), +('Y10.2', 'Poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, undetermined intent, School, Other Institution and Public Admimist', 'ICD10_2010'), +('Y10.3', 'Poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, undetermined intent, Sports and Athletic Areas', 'ICD10_2010'), +('Y10.4', 'Poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, undetermined intent, Street and Highway', 'ICD10_2010'), +('Y10.5', 'Poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, undetermined intent, Trade and Service Area', 'ICD10_2010'), +('Y10.6', 'Poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, undetermined intent, Industrial and Construction Area', 'ICD10_2010'), +('Y10.7', 'Poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, undetermined intent, Farm', 'ICD10_2010'), +('Y10.8', 'Poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, undetermined intent, Other Specified Area', 'ICD10_2010'), +('Y10.9', 'Poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, undetermined intent, Unspecified Place', 'ICD10_2010'), +('Y11', 'Poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, undetermined intent', 'ICD10_2010'), +('Y11.0', 'Poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, undetermined intent,', 'ICD10_2010'), +('Y11.1', 'Poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, undetermined intent,', 'ICD10_2010'), +('Y11.2', 'Poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, undetermined intent,', 'ICD10_2010'), +('Y11.3', 'Poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, undetermined intent,', 'ICD10_2010'), +('Y11.4', 'Poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, undetermined intent,', 'ICD10_2010'), +('Y11.5', 'Poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, undetermined intent,', 'ICD10_2010'), +('Y11.6', 'Poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, undetermined intent,', 'ICD10_2010'), +('Y11.7', 'Poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, undetermined intent,', 'ICD10_2010'), +('Y11.8', 'Poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, undetermined intent,', 'ICD10_2010'), +('Y11.9', 'Poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, undetermined intent,', 'ICD10_2010'), +('Y12', 'Poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, undetermined intent', 'ICD10_2010'), +('Y12.0', 'Poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, undetermined intent, Home', 'ICD10_2010'), +('Y12.1', 'Poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, undetermined intent, Residential Institution', 'ICD10_2010'), +('Y12.2', 'Poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, undetermined intent, School, Other Institution ', 'ICD10_2010'), +('Y12.3', 'Poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, undetermined intent, Sports and Athletic Areas', 'ICD10_2010'), +('Y12.4', 'Poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, undetermined intent, Street and Highway', 'ICD10_2010'), +('Y12.5', 'Poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, undetermined intent, Trade and Service Area', 'ICD10_2010'), +('Y12.6', 'Poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, undetermined intent, Industrial and Constructio', 'ICD10_2010'), +('Y12.7', 'Poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, undetermined intent, Farm', 'ICD10_2010'), +('Y12.8', 'Poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, undetermined intent, Other Specified Area', 'ICD10_2010'), +('Y12.9', 'Poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, undetermined intent, Unspecified Place', 'ICD10_2010'), +('Y13', 'Poisoning by and exposure to other drugs acting on the autonomic nervous system, undetermined intent', 'ICD10_2010'), +('Y13.0', 'Poisoning by and exposure to other drugs acting on the autonomic nervous system, undetermined intent, Home', 'ICD10_2010'), +('Y13.1', 'Poisoning by and exposure to other drugs acting on the autonomic nervous system, undetermined intent, Residential Institution', 'ICD10_2010'), +('Y13.2', 'Poisoning by and exposure to other drugs acting on the autonomic nervous system, undetermined intent, School, Other Institution and Public Admimistrat', 'ICD10_2010'), +('Y13.3', 'Poisoning by and exposure to other drugs acting on the autonomic nervous system, undetermined intent, Sports and Athletic Areas', 'ICD10_2010'), +('Y13.4', 'Poisoning by and exposure to other drugs acting on the autonomic nervous system, undetermined intent, Street and Highway', 'ICD10_2010'), +('Y13.5', 'Poisoning by and exposure to other drugs acting on the autonomic nervous system, undetermined intent, Trade and Service Area', 'ICD10_2010'), +('Y13.6', 'Poisoning by and exposure to other drugs acting on the autonomic nervous system, undetermined intent, Industrial and Construction Area', 'ICD10_2010'), +('Y13.7', 'Poisoning by and exposure to other drugs acting on the autonomic nervous system, undetermined intent, Farm', 'ICD10_2010'), +('Y13.8', 'Poisoning by and exposure to other drugs acting on the autonomic nervous system, undetermined intent, Other Specified Area', 'ICD10_2010'), +('Y13.9', 'Poisoning by and exposure to other drugs acting on the autonomic nervous system, undetermined intent, Unspecified Place', 'ICD10_2010'), +('Y14', 'Poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, undetermined intent', 'ICD10_2010'), +('Y14.0', 'Poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, undetermined intent, Home', 'ICD10_2010'), +('Y14.1', 'Poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, undetermined intent, Residential Institution', 'ICD10_2010'), +('Y14.2', 'Poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, undetermined intent, School, Other Institution and Pu', 'ICD10_2010'), +('Y14.3', 'Poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, undetermined intent, Sports and Athletic Areas', 'ICD10_2010'), +('Y14.4', 'Poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, undetermined intent, Street and Highway', 'ICD10_2010'), +('Y14.5', 'Poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, undetermined intent, Trade and Service Area', 'ICD10_2010'), +('Y14.6', 'Poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, undetermined intent, Industrial and Construction Area', 'ICD10_2010'), +('Y14.7', 'Poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, undetermined intent, Farm', 'ICD10_2010'), +('Y14.8', 'Poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, undetermined intent, Other Specified Area', 'ICD10_2010'), +('Y14.9', 'Poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, undetermined intent, Unspecified Place', 'ICD10_2010'); +INSERT INTO `icd10` (`ID_ICD10`, `Diagnosa`, `Versi_ICD10`) VALUES +('Y15', 'Poisoning by and exposure to alcohol, undetermined intent', 'ICD10_2010'), +('Y15.0', 'Poisoning by and exposure to alcohol, undetermined intent, Home', 'ICD10_2010'), +('Y15.1', 'Poisoning by and exposure to alcohol, undetermined intent, Residential Institution', 'ICD10_2010'), +('Y15.2', 'Poisoning by and exposure to alcohol, undetermined intent, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('Y15.3', 'Poisoning by and exposure to alcohol, undetermined intent, Sports and Athletic Areas', 'ICD10_2010'), +('Y15.4', 'Poisoning by and exposure to alcohol, undetermined intent, Street and Highway', 'ICD10_2010'), +('Y15.5', 'Poisoning by and exposure to alcohol, undetermined intent, Trade and Service Area', 'ICD10_2010'), +('Y15.6', 'Poisoning by and exposure to alcohol, undetermined intent, Industrial and Construction Area', 'ICD10_2010'), +('Y15.7', 'Poisoning by and exposure to alcohol, undetermined intent, Farm', 'ICD10_2010'), +('Y15.8', 'Poisoning by and exposure to alcohol, undetermined intent, Other Specified Area', 'ICD10_2010'), +('Y15.9', 'Poisoning by and exposure to alcohol, undetermined intent, Unspecified Place', 'ICD10_2010'), +('Y16', 'Poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, undetermined intent', 'ICD10_2010'), +('Y16.0', 'Poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, undetermined intent, Home', 'ICD10_2010'), +('Y16.1', 'Poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, undetermined intent, Residential Institution', 'ICD10_2010'), +('Y16.2', 'Poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, undetermined intent, School, Other Institution and Publi', 'ICD10_2010'), +('Y16.3', 'Poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, undetermined intent, Sports and Athletic Areas', 'ICD10_2010'), +('Y16.4', 'Poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, undetermined intent, Street and Highway', 'ICD10_2010'), +('Y16.5', 'Poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, undetermined intent, Trade and Service Area', 'ICD10_2010'), +('Y16.6', 'Poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, undetermined intent, Industrial and Construction Area', 'ICD10_2010'), +('Y16.7', 'Poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, undetermined intent, Farm', 'ICD10_2010'), +('Y16.8', 'Poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, undetermined intent, Other Specified Area', 'ICD10_2010'), +('Y16.9', 'Poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, undetermined intent, Unspecified Place', 'ICD10_2010'), +('Y17', 'Poisoning by and exposure to other gases and vapours, undetermined intent', 'ICD10_2010'), +('Y17.0', 'Poisoning by and exposure to other gases and vapours, undetermined intent, Home', 'ICD10_2010'), +('Y17.1', 'Poisoning by and exposure to other gases and vapours, undetermined intent, Residential Institution', 'ICD10_2010'), +('Y17.2', 'Poisoning by and exposure to other gases and vapours, undetermined intent, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('Y17.3', 'Poisoning by and exposure to other gases and vapours, undetermined intent, Sports and Athletic Areas', 'ICD10_2010'), +('Y17.4', 'Poisoning by and exposure to other gases and vapours, undetermined intent, Street and Highway', 'ICD10_2010'), +('Y17.5', 'Poisoning by and exposure to other gases and vapours, undetermined intent, Trade and Service Area', 'ICD10_2010'), +('Y17.6', 'Poisoning by and exposure to other gases and vapours, undetermined intent, Industrial and Construction Area', 'ICD10_2010'), +('Y17.7', 'Poisoning by and exposure to other gases and vapours, undetermined intent, Farm', 'ICD10_2010'), +('Y17.8', 'Poisoning by and exposure to other gases and vapours, undetermined intent, Other Specified Area', 'ICD10_2010'), +('Y17.9', 'Poisoning by and exposure to other gases and vapours, undetermined intent, Unspecified Place', 'ICD10_2010'), +('Y18', 'Poisoning by and exposure to pesticides, undetermined intent', 'ICD10_2010'), +('Y18.0', 'Poisoning by and exposure to pesticides, undetermined intent, Home', 'ICD10_2010'), +('Y18.1', 'Poisoning by and exposure to pesticides, undetermined intent, Residential Institution', 'ICD10_2010'), +('Y18.2', 'Poisoning by and exposure to pesticides, undetermined intent, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('Y18.3', 'Poisoning by and exposure to pesticides, undetermined intent, Sports and Athletic Areas', 'ICD10_2010'), +('Y18.4', 'Poisoning by and exposure to pesticides, undetermined intent, Street and Highway', 'ICD10_2010'), +('Y18.5', 'Poisoning by and exposure to pesticides, undetermined intent, Trade and Service Area', 'ICD10_2010'), +('Y18.6', 'Poisoning by and exposure to pesticides, undetermined intent, Industrial and Construction Area', 'ICD10_2010'), +('Y18.7', 'Poisoning by and exposure to pesticides, undetermined intent, Farm', 'ICD10_2010'), +('Y18.8', 'Poisoning by and exposure to pesticides, undetermined intent, Other Specified Area', 'ICD10_2010'), +('Y18.9', 'Poisoning by and exposure to pesticides, undetermined intent, Unspecified Place', 'ICD10_2010'), +('Y19', 'Poisoning by and exposure to other and unspecified chemicals and noxious substances, undetermined intent', 'ICD10_2010'), +('Y19.0', 'Poisoning by and exposure to other and unspecified chemicals and noxious substances, undetermined intent, Home', 'ICD10_2010'), +('Y19.1', 'Poisoning by and exposure to other and unspecified chemicals and noxious substances, undetermined intent, Residential Institution', 'ICD10_2010'), +('Y19.2', 'Poisoning by and exposure to other and unspecified chemicals and noxious substances, undetermined intent, School, Other Institution and Public Admimis', 'ICD10_2010'), +('Y19.3', 'Poisoning by and exposure to other and unspecified chemicals and noxious substances, undetermined intent, Sports and Athletic Areas', 'ICD10_2010'), +('Y19.4', 'Poisoning by and exposure to other and unspecified chemicals and noxious substances, undetermined intent, Street and Highway', 'ICD10_2010'), +('Y19.5', 'Poisoning by and exposure to other and unspecified chemicals and noxious substances, undetermined intent, Trade and Service Area', 'ICD10_2010'), +('Y19.6', 'Poisoning by and exposure to other and unspecified chemicals and noxious substances, undetermined intent, Industrial and Construction Area', 'ICD10_2010'), +('Y19.7', 'Poisoning by and exposure to other and unspecified chemicals and noxious substances, undetermined intent, Farm', 'ICD10_2010'), +('Y19.8', 'Poisoning by and exposure to other and unspecified chemicals and noxious substances, undetermined intent, Other Specified Area', 'ICD10_2010'), +('Y19.9', 'Poisoning by and exposure to other and unspecified chemicals and noxious substances, undetermined intent, Unspecified Place', 'ICD10_2010'), +('Y20', 'Hanging, strangulation and suffocation, undetermined intent', 'ICD10_2010'), +('Y20.0', 'Hanging, strangulation and suffocation, undetermined intent, Home', 'ICD10_2010'), +('Y20.1', 'Hanging, strangulation and suffocation, undetermined intent, Residential Institution', 'ICD10_2010'), +('Y20.2', 'Hanging, strangulation and suffocation, undetermined intent, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('Y20.3', 'Hanging, strangulation and suffocation, undetermined intent, Sports and Athletic Areas', 'ICD10_2010'), +('Y20.4', 'Hanging, strangulation and suffocation, undetermined intent, Street and Highway', 'ICD10_2010'), +('Y20.5', 'Hanging, strangulation and suffocation, undetermined intent, Trade and Service Area', 'ICD10_2010'), +('Y20.6', 'Hanging, strangulation and suffocation, undetermined intent, Industrial and Construction Area', 'ICD10_2010'), +('Y20.7', 'Hanging, strangulation and suffocation, undetermined intent, Farm', 'ICD10_2010'), +('Y20.8', 'Hanging, strangulation and suffocation, undetermined intent, Other Specified Area', 'ICD10_2010'), +('Y20.9', 'Hanging, strangulation and suffocation, undetermined intent, Unspecified Place', 'ICD10_2010'), +('Y21', 'Drowning and submersion, undetermined intent', 'ICD10_2010'), +('Y21.0', 'Drowning and submersion, undetermined intent, Home', 'ICD10_2010'), +('Y21.1', 'Drowning and submersion, undetermined intent, Residential Institution', 'ICD10_2010'), +('Y21.2', 'Drowning and submersion, undetermined intent, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('Y21.3', 'Drowning and submersion, undetermined intent, Sports and Athletic Areas', 'ICD10_2010'), +('Y21.4', 'Drowning and submersion, undetermined intent, Street and Highway', 'ICD10_2010'), +('Y21.5', 'Drowning and submersion, undetermined intent, Trade and Service Area', 'ICD10_2010'), +('Y21.6', 'Drowning and submersion, undetermined intent, Industrial and Construction Area', 'ICD10_2010'), +('Y21.7', 'Drowning and submersion, undetermined intent, Farm', 'ICD10_2010'), +('Y21.8', 'Drowning and submersion, undetermined intent, Other Specified Area', 'ICD10_2010'), +('Y21.9', 'Drowning and submersion, undetermined intent, Unspecified Place', 'ICD10_2010'), +('Y22', 'Handgun discharge, undetermined intent', 'ICD10_2010'), +('Y22.0', 'Handgun discharge, undetermined intent, Home', 'ICD10_2010'), +('Y22.1', 'Handgun discharge, undetermined intent, Residential Institution', 'ICD10_2010'), +('Y22.2', 'Handgun discharge, undetermined intent, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('Y22.3', 'Handgun discharge, undetermined intent, Sports and Athletic Areas', 'ICD10_2010'), +('Y22.4', 'Handgun discharge, undetermined intent, Street and Highway', 'ICD10_2010'), +('Y22.5', 'Handgun discharge, undetermined intent, Trade and Service Area', 'ICD10_2010'), +('Y22.6', 'Handgun discharge, undetermined intent, Industrial and Construction Area', 'ICD10_2010'), +('Y22.7', 'Handgun discharge, undetermined intent, Farm', 'ICD10_2010'), +('Y22.8', 'Handgun discharge, undetermined intent, Other Specified Area', 'ICD10_2010'), +('Y22.9', 'Handgun discharge, undetermined intent, Unspecified Place', 'ICD10_2010'), +('Y23', 'Rifle, shotgun and larger firearm discharge, undetermined intent', 'ICD10_2010'), +('Y23.0', 'Rifle, shotgun and larger firearm discharge, undetermined intent, Home', 'ICD10_2010'), +('Y23.1', 'Rifle, shotgun and larger firearm discharge, undetermined intent, Residential Institution', 'ICD10_2010'), +('Y23.2', 'Rifle, shotgun and larger firearm discharge, undetermined intent, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('Y23.3', 'Rifle, shotgun and larger firearm discharge, undetermined intent, Sports and Athletic Areas', 'ICD10_2010'), +('Y23.4', 'Rifle, shotgun and larger firearm discharge, undetermined intent, Street and Highway', 'ICD10_2010'), +('Y23.5', 'Rifle, shotgun and larger firearm discharge, undetermined intent, Trade and Service Area', 'ICD10_2010'), +('Y23.6', 'Rifle, shotgun and larger firearm discharge, undetermined intent, Industrial and Construction Area', 'ICD10_2010'), +('Y23.7', 'Rifle, shotgun and larger firearm discharge, undetermined intent, Farm', 'ICD10_2010'), +('Y23.8', 'Rifle, shotgun and larger firearm discharge, undetermined intent, Other Specified Area', 'ICD10_2010'), +('Y23.9', 'Rifle, shotgun and larger firearm discharge, undetermined intent, Unspecified Place', 'ICD10_2010'), +('Y24', 'Other and unspecified firearm discharge, undetermined intent', 'ICD10_2010'), +('Y24.0', 'Other and unspecified firearm discharge, undetermined intent, Home', 'ICD10_2010'), +('Y24.1', 'Other and unspecified firearm discharge, undetermined intent, Residential Institution', 'ICD10_2010'), +('Y24.2', 'Other and unspecified firearm discharge, undetermined intent, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('Y24.3', 'Other and unspecified firearm discharge, undetermined intent, Sports and Athletic Areas', 'ICD10_2010'), +('Y24.4', 'Other and unspecified firearm discharge, undetermined intent, Street and Highway', 'ICD10_2010'), +('Y24.5', 'Other and unspecified firearm discharge, undetermined intent, Trade and Service Area', 'ICD10_2010'), +('Y24.6', 'Other and unspecified firearm discharge, undetermined intent, Industrial and Construction Area', 'ICD10_2010'), +('Y24.7', 'Other and unspecified firearm discharge, undetermined intent, Farm', 'ICD10_2010'), +('Y24.8', 'Other and unspecified firearm discharge, undetermined intent, Other Specified Area', 'ICD10_2010'), +('Y24.9', 'Other and unspecified firearm discharge, undetermined intent, Unspecified Place', 'ICD10_2010'), +('Y25', 'Contact with explosive material, undetermined intent', 'ICD10_2010'), +('Y25.0', 'Contact with explosive material, undetermined intent, Home', 'ICD10_2010'), +('Y25.1', 'Contact with explosive material, undetermined intent, Residential Institution', 'ICD10_2010'), +('Y25.2', 'Contact with explosive material, undetermined intent, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('Y25.3', 'Contact with explosive material, undetermined intent, Sports and Athletic Areas', 'ICD10_2010'), +('Y25.4', 'Contact with explosive material, undetermined intent, Street and Highway', 'ICD10_2010'), +('Y25.5', 'Contact with explosive material, undetermined intent, Trade and Service Area', 'ICD10_2010'), +('Y25.6', 'Contact with explosive material, undetermined intent, Industrial and Construction Area', 'ICD10_2010'), +('Y25.7', 'Contact with explosive material, undetermined intent, Farm', 'ICD10_2010'), +('Y25.8', 'Contact with explosive material, undetermined intent, Other Specified Area', 'ICD10_2010'), +('Y25.9', 'Contact with explosive material, undetermined intent, Unspecified Place', 'ICD10_2010'), +('Y26', 'Exposure to smoke, fire and flames, undetermined intent', 'ICD10_2010'), +('Y26.0', 'Exposure to smoke, fire and flames, undetermined intent, Home', 'ICD10_2010'), +('Y26.1', 'Exposure to smoke, fire and flames, undetermined intent, Residential Institution', 'ICD10_2010'), +('Y26.2', 'Exposure to smoke, fire and flames, undetermined intent, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('Y26.3', 'Exposure to smoke, fire and flames, undetermined intent, Sports and Athletic Areas', 'ICD10_2010'), +('Y26.4', 'Exposure to smoke, fire and flames, undetermined intent, Street and Highway', 'ICD10_2010'), +('Y26.5', 'Exposure to smoke, fire and flames, undetermined intent, Trade and Service Area', 'ICD10_2010'), +('Y26.6', 'Exposure to smoke, fire and flames, undetermined intent, Industrial and Construction Area', 'ICD10_2010'), +('Y26.7', 'Exposure to smoke, fire and flames, undetermined intent, Farm', 'ICD10_2010'), +('Y26.8', 'Exposure to smoke, fire and flames, undetermined intent, Other Specified Area', 'ICD10_2010'), +('Y26.9', 'Exposure to smoke, fire and flames, undetermined intent, Unspecified Place', 'ICD10_2010'), +('Y27', 'Contact with steam, hot vapours and hot objects, undetermined intent', 'ICD10_2010'), +('Y27.0', 'Contact with steam, hot vapours and hot objects, undetermined intent, Home', 'ICD10_2010'), +('Y27.1', 'Contact with steam, hot vapours and hot objects, undetermined intent, Residential Institution', 'ICD10_2010'), +('Y27.2', 'Contact with steam, hot vapours and hot objects, undetermined intent, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('Y27.3', 'Contact with steam, hot vapours and hot objects, undetermined intent, Sports and Athletic Areas', 'ICD10_2010'), +('Y27.4', 'Contact with steam, hot vapours and hot objects, undetermined intent, Street and Highway', 'ICD10_2010'), +('Y27.5', 'Contact with steam, hot vapours and hot objects, undetermined intent, Trade and Service Area', 'ICD10_2010'), +('Y27.6', 'Contact with steam, hot vapours and hot objects, undetermined intent, Industrial and Construction Area', 'ICD10_2010'), +('Y27.7', 'Contact with steam, hot vapours and hot objects, undetermined intent, Farm', 'ICD10_2010'), +('Y27.8', 'Contact with steam, hot vapours and hot objects, undetermined intent, Other Specified Area', 'ICD10_2010'), +('Y27.9', 'Contact with steam, hot vapours and hot objects, undetermined intent, Unspecified Place', 'ICD10_2010'), +('Y28', 'Contact with sharp object, undetermined intent', 'ICD10_2010'), +('Y28.0', 'Contact with sharp object, undetermined intent, Home', 'ICD10_2010'), +('Y28.1', 'Contact with sharp object, undetermined intent, Residential Institution', 'ICD10_2010'), +('Y28.2', 'Contact with sharp object, undetermined intent, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('Y28.3', 'Contact with sharp object, undetermined intent, Sports and Athletic Areas', 'ICD10_2010'), +('Y28.4', 'Contact with sharp object, undetermined intent, Street and Highway', 'ICD10_2010'), +('Y28.5', 'Contact with sharp object, undetermined intent, Trade and Service Area', 'ICD10_2010'), +('Y28.6', 'Contact with sharp object, undetermined intent, Industrial and Construction Area', 'ICD10_2010'), +('Y28.7', 'Contact with sharp object, undetermined intent, Farm', 'ICD10_2010'), +('Y28.8', 'Contact with sharp object, undetermined intent, Other Specified Area', 'ICD10_2010'), +('Y28.9', 'Contact with sharp object, undetermined intent, Unspecified Place', 'ICD10_2010'), +('Y29', 'Contact with blunt object, undetermined intent', 'ICD10_2010'), +('Y29.0', 'Contact with blunt object, undetermined intent, Home', 'ICD10_2010'), +('Y29.1', 'Contact with blunt object, undetermined intent, Residential Institution', 'ICD10_2010'), +('Y29.2', 'Contact with blunt object, undetermined intent, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('Y29.3', 'Contact with blunt object, undetermined intent, Sports and Athletic Areas', 'ICD10_2010'), +('Y29.4', 'Contact with blunt object, undetermined intent, Street and Highway', 'ICD10_2010'), +('Y29.5', 'Contact with blunt object, undetermined intent, Trade and Service Area', 'ICD10_2010'), +('Y29.6', 'Contact with blunt object, undetermined intent, Industrial and Construction Area', 'ICD10_2010'), +('Y29.7', 'Contact with blunt object, undetermined intent, Farm', 'ICD10_2010'), +('Y29.8', 'Contact with blunt object, undetermined intent, Other Specified Area', 'ICD10_2010'), +('Y29.9', 'Contact with blunt object, undetermined intent, Unspecified Place', 'ICD10_2010'), +('Y30', 'Falling, jumping or pushed from a high place, undetermined intent', 'ICD10_2010'), +('Y30.0', 'Falling, jumping or pushed from a high place, undetermined intent, Home', 'ICD10_2010'), +('Y30.1', 'Falling, jumping or pushed from a high place, undetermined intent, Residential Institution', 'ICD10_2010'), +('Y30.2', 'Falling, jumping or pushed from a high place, undetermined intent, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('Y30.3', 'Falling, jumping or pushed from a high place, undetermined intent, Sports and Athletic Areas', 'ICD10_2010'), +('Y30.4', 'Falling, jumping or pushed from a high place, undetermined intent, Street and Highway', 'ICD10_2010'), +('Y30.5', 'Falling, jumping or pushed from a high place, undetermined intent, Trade and Service Area', 'ICD10_2010'), +('Y30.6', 'Falling, jumping or pushed from a high place, undetermined intent, Industrial and Construction Area', 'ICD10_2010'), +('Y30.7', 'Falling, jumping or pushed from a high place, undetermined intent, Farm', 'ICD10_2010'), +('Y30.8', 'Falling, jumping or pushed from a high place, undetermined intent, Other Specified Area', 'ICD10_2010'), +('Y30.9', 'Falling, jumping or pushed from a high place, undetermined intent, Unspecified Place', 'ICD10_2010'), +('Y31', 'Falling, lying or running before or into moving object, undetermined intent', 'ICD10_2010'), +('Y31.0', 'Falling, lying or running before or into moving object, undetermined intent, Home', 'ICD10_2010'), +('Y31.1', 'Falling, lying or running before or into moving object, undetermined intent, Residential Institution', 'ICD10_2010'), +('Y31.2', 'Falling, lying or running before or into moving object, undetermined intent, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('Y31.3', 'Falling, lying or running before or into moving object, undetermined intent, Sports and Athletic Areas', 'ICD10_2010'), +('Y31.4', 'Falling, lying or running before or into moving object, undetermined intent, Street and Highway', 'ICD10_2010'), +('Y31.5', 'Falling, lying or running before or into moving object, undetermined intent, Trade and Service Area', 'ICD10_2010'), +('Y31.6', 'Falling, lying or running before or into moving object, undetermined intent, Industrial and Construction Area', 'ICD10_2010'), +('Y31.7', 'Falling, lying or running before or into moving object, undetermined intent, Farm', 'ICD10_2010'), +('Y31.8', 'Falling, lying or running before or into moving object, undetermined intent, Other Specified Area', 'ICD10_2010'), +('Y31.9', 'Falling, lying or running before or into moving object, undetermined intent, Unspecified Place', 'ICD10_2010'), +('Y32', 'Crashing of motor vehicle, undetermined intent', 'ICD10_2010'), +('Y32.0', 'Crashing of motor vehicle, undetermined intent, Home', 'ICD10_2010'), +('Y32.1', 'Crashing of motor vehicle, undetermined intent, Residential Institution', 'ICD10_2010'), +('Y32.2', 'Crashing of motor vehicle, undetermined intent, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('Y32.3', 'Crashing of motor vehicle, undetermined intent, Sports and Athletic Areas', 'ICD10_2010'), +('Y32.4', 'Crashing of motor vehicle, undetermined intent, Street and Highway', 'ICD10_2010'), +('Y32.5', 'Crashing of motor vehicle, undetermined intent, Trade and Service Area', 'ICD10_2010'), +('Y32.6', 'Crashing of motor vehicle, undetermined intent, Industrial and Construction Area', 'ICD10_2010'), +('Y32.7', 'Crashing of motor vehicle, undetermined intent, Farm', 'ICD10_2010'), +('Y32.8', 'Crashing of motor vehicle, undetermined intent, Other Specified Area', 'ICD10_2010'), +('Y32.9', 'Crashing of motor vehicle, undetermined intent, Unspecified Place', 'ICD10_2010'), +('Y33', 'Other specified events, undetermined intent', 'ICD10_2010'), +('Y33.0', 'Other specified events, undetermined intent, Home', 'ICD10_2010'), +('Y33.1', 'Other specified events, undetermined intent, Residential Institution', 'ICD10_2010'), +('Y33.2', 'Other specified events, undetermined intent, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('Y33.3', 'Other specified events, undetermined intent, Sports and Athletic Areas', 'ICD10_2010'), +('Y33.4', 'Other specified events, undetermined intent, Street and Highway', 'ICD10_2010'), +('Y33.5', 'Other specified events, undetermined intent, Trade and Service Area', 'ICD10_2010'), +('Y33.6', 'Other specified events, undetermined intent, Industrial and Construction Area', 'ICD10_2010'), +('Y33.7', 'Other specified events, undetermined intent, Farm', 'ICD10_2010'), +('Y33.8', 'Other specified events, undetermined intent, Other Specified Area', 'ICD10_2010'), +('Y33.9', 'Other specified events, undetermined intent, Unspecified Place', 'ICD10_2010'), +('Y34', 'Unspecified event, undetermined intent', 'ICD10_2010'), +('Y34.0', 'Unspecified event, undetermined intent, Home', 'ICD10_2010'), +('Y34.1', 'Unspecified event, undetermined intent, Residential Institution', 'ICD10_2010'), +('Y34.2', 'Unspecified event, undetermined intent, School, Other Institution and Public Admimistration Area', 'ICD10_2010'), +('Y34.3', 'Unspecified event, undetermined intent, Sports and Athletic Areas', 'ICD10_2010'), +('Y34.4', 'Unspecified event, undetermined intent, Street and Highway', 'ICD10_2010'), +('Y34.5', 'Unspecified event, undetermined intent, Trade and Service Area', 'ICD10_2010'), +('Y34.6', 'Unspecified event, undetermined intent, Industrial and Construction Area', 'ICD10_2010'), +('Y34.7', 'Unspecified event, undetermined intent, Farm', 'ICD10_2010'), +('Y34.8', 'Unspecified event, undetermined intent, Other Specified Area', 'ICD10_2010'), +('Y34.9', 'Unspecified event, undetermined intent, Unspecified Place', 'ICD10_2010'), +('Y35', 'Legal intervention', 'ICD10_2010'), +('Y35.0', 'Legal intervention involving firearm discharge', 'ICD10_2010'), +('Y35.1', 'Legal intervention involving explosives', 'ICD10_2010'), +('Y35.2', 'Legal intervention involving gas', 'ICD10_2010'), +('Y35.3', 'Legal intervention involving blunt objects', 'ICD10_2010'), +('Y35.4', 'Legal intervention involving sharp objects', 'ICD10_2010'), +('Y35.5', 'Legal execution', 'ICD10_2010'), +('Y35.6', 'Legal intervention involving other specified means', 'ICD10_2010'), +('Y35.7', 'Legal intervention, means unspecified', 'ICD10_2010'), +('Y36', 'Operations of war', 'ICD10_2010'), +('Y36.0', 'War operations involving explosion of marine weapons', 'ICD10_2010'), +('Y36.1', 'War operations involving destruction of aircraft', 'ICD10_2010'), +('Y36.2', 'War operations involving other explosions and fragments', 'ICD10_2010'), +('Y36.3', 'War operations involving fires, conflagrations and hot substances', 'ICD10_2010'), +('Y36.4', 'War operations involving firearm discharge and other forms of conventional warfare', 'ICD10_2010'), +('Y36.5', 'War operations involving nuclear weapons', 'ICD10_2010'), +('Y36.6', 'War operations involving biological weapons', 'ICD10_2010'), +('Y36.7', 'War operations involving chemical weapons and other forms of unconventional warfare', 'ICD10_2010'), +('Y36.8', 'War operations occurring after cessation of hostilities', 'ICD10_2010'), +('Y36.9', 'War operations, unspecified', 'ICD10_2010'), +('Y40', 'Systemic antibiotics', 'ICD10_2010'), +('Y40.0', 'Penicillins', 'ICD10_2010'), +('Y40.1', 'Cefalosporins and other beta-lactam antibiotics', 'ICD10_2010'), +('Y40.2', 'Chloramphenicol group', 'ICD10_2010'), +('Y40.3', 'Macrolides', 'ICD10_2010'), +('Y40.4', 'Tetracyclines', 'ICD10_2010'), +('Y40.5', 'Aminoglycosides', 'ICD10_2010'), +('Y40.6', 'Rifamycins', 'ICD10_2010'), +('Y40.7', 'Antifungal antibiotics, systemically used', 'ICD10_2010'), +('Y40.8', 'Other systemic antibiotics', 'ICD10_2010'), +('Y40.9', 'Systemic antibiotic, unspecified', 'ICD10_2010'), +('Y41', 'Other systemic anti-infectives and antiparasitics', 'ICD10_2010'), +('Y41.0', 'Sulfonamides', 'ICD10_2010'), +('Y41.1', 'Antimycobacterial drugs', 'ICD10_2010'), +('Y41.2', 'Antimalarials and drugs acting on other blood protozoa', 'ICD10_2010'), +('Y41.3', 'Other antiprotozoal drugs', 'ICD10_2010'), +('Y41.4', 'Anthelminthics', 'ICD10_2010'), +('Y41.5', 'Antiviral drugs', 'ICD10_2010'), +('Y41.8', 'Other specified systemic anti-infectives and antiparasitics', 'ICD10_2010'), +('Y41.9', 'Systemic anti-infective and antiparasitic, unspecified', 'ICD10_2010'), +('Y42', 'Hormones and their synthetic substitutes and antagonists, not elsewhere classified', 'ICD10_2010'), +('Y42.0', 'Glucocorticoids and synthetic analogues', 'ICD10_2010'), +('Y42.1', 'Thyroid hormones and substitutes', 'ICD10_2010'), +('Y42.2', 'Antithyroid drugs', 'ICD10_2010'), +('Y42.3', 'Insulin and oral hypoglycaemic [antidiabetic] drugs', 'ICD10_2010'), +('Y42.4', 'Oral contraceptives', 'ICD10_2010'), +('Y42.5', 'Other estrogens and progestogens', 'ICD10_2010'), +('Y42.6', 'Antigonadotrophins, antiestrogens, antiandrogens, not elsewhere classified', 'ICD10_2010'), +('Y42.7', 'Androgens and anabolic congeners', 'ICD10_2010'), +('Y42.8', 'Other and unspecified hormones and their synthetic substitutes', 'ICD10_2010'), +('Y42.9', 'Other and unspecified hormone antagonists', 'ICD10_2010'), +('Y43', 'Primarily systemic agents', 'ICD10_2010'), +('Y43.0', 'Antiallergic and antiemetic drugs', 'ICD10_2010'), +('Y43.1', 'Antineoplastic antimetabolites', 'ICD10_2010'), +('Y43.2', 'Antineoplastic natural products', 'ICD10_2010'), +('Y43.3', 'Other antineoplastic drugs', 'ICD10_2010'), +('Y43.4', 'Immunosuppressive agents', 'ICD10_2010'), +('Y43.5', 'Acidifying and alkalizing agents', 'ICD10_2010'), +('Y43.6', 'Enzymes, not elsewhere classified', 'ICD10_2010'), +('Y43.8', 'Other primarily systemic agents, not elsewhere classified', 'ICD10_2010'), +('Y43.9', 'Primarily systemic agent, unspecified', 'ICD10_2010'), +('Y44', 'Agents primarily affecting blood constituents', 'ICD10_2010'), +('Y44.0', 'Iron preparations and other anti-hypochromic-anaemia preparations', 'ICD10_2010'), +('Y44.1', 'Vitamin B12, folic acid and other anti-megaloblastic-anaemia preparations', 'ICD10_2010'), +('Y44.2', 'Anticoagulants', 'ICD10_2010'), +('Y44.3', 'Anticoagulant antagonists, vitamin K and other coagulants', 'ICD10_2010'), +('Y44.4', 'Antithrombotic drugs [platelet-aggregation inhibitors]', 'ICD10_2010'), +('Y44.5', 'Thrombolytic drugs', 'ICD10_2010'), +('Y44.6', 'Natural blood and blood products', 'ICD10_2010'), +('Y44.7', 'Plasma substitutes', 'ICD10_2010'), +('Y44.9', 'Other and unspecified agents affecting blood constituents', 'ICD10_2010'), +('Y45', 'Analgesics, antipyretics and anti-inflammatory drugs', 'ICD10_2010'), +('Y45.0', 'Opioids and related analgesics', 'ICD10_2010'), +('Y45.1', 'Salicylates', 'ICD10_2010'), +('Y45.2', 'Propionic acid derivatives', 'ICD10_2010'), +('Y45.3', 'Other nonsteroidal anti-inflammatory drugs [NSAID]', 'ICD10_2010'), +('Y45.4', 'Antirheumatics', 'ICD10_2010'), +('Y45.5', '4-Aminophenol derivatives', 'ICD10_2010'), +('Y45.8', 'Other analgesics and antipyretics', 'ICD10_2010'), +('Y45.9', 'Analgesic, antipyretic and anti-inflammatory drug, unspecified', 'ICD10_2010'), +('Y46', 'Antiepileptics and antiparkinsonism drugs', 'ICD10_2010'), +('Y46.0', 'Succinimides', 'ICD10_2010'), +('Y46.1', 'Oxazolidinediones', 'ICD10_2010'), +('Y46.2', 'Hydantoin derivatives', 'ICD10_2010'), +('Y46.3', 'Deoxybarbiturates', 'ICD10_2010'), +('Y46.4', 'Iminostilbenes', 'ICD10_2010'), +('Y46.5', 'Valproic acid', 'ICD10_2010'), +('Y46.6', 'Other and unspecified antiepileptics', 'ICD10_2010'), +('Y46.7', 'Antiparkinsonism drugs', 'ICD10_2010'), +('Y46.8', 'Antispasticity drugs', 'ICD10_2010'), +('Y47', 'Sedatives, hypnotics and antianxiety drugs', 'ICD10_2010'), +('Y47.0', 'Barbiturates, not elsewhere classified', 'ICD10_2010'), +('Y47.1', 'Benzodiazepines', 'ICD10_2010'), +('Y47.2', 'Cloral derivatives', 'ICD10_2010'), +('Y47.3', 'Paraldehyde', 'ICD10_2010'), +('Y47.4', 'Bromine compounds', 'ICD10_2010'), +('Y47.5', 'Mixed sedatives and hypnotics, not elsewhere classified', 'ICD10_2010'), +('Y47.8', 'Other sedatives, hypnotics and antianxiety drugs', 'ICD10_2010'), +('Y47.9', 'Sedative, hypnotic and antianxiety drug, unspecified', 'ICD10_2010'), +('Y48', 'Anaesthetics and therapeutic gases', 'ICD10_2010'), +('Y48.0', 'Inhaled anaesthetics', 'ICD10_2010'), +('Y48.1', 'Parenteral anaesthetics', 'ICD10_2010'), +('Y48.2', 'Other and unspecified general anaesthetics', 'ICD10_2010'), +('Y48.3', 'Local anaesthetics', 'ICD10_2010'), +('Y48.4', 'Anaesthetic, unspecified', 'ICD10_2010'), +('Y48.5', 'Therapeutic gases', 'ICD10_2010'), +('Y49', 'Psychotropic drugs, not elsewhere classified', 'ICD10_2010'), +('Y49.0', 'Tricyclic and tetracyclic antidepressants', 'ICD10_2010'), +('Y49.1', 'Monoamine-oxidase-inhibitor antidepressants', 'ICD10_2010'), +('Y49.2', 'Other and unspecified antidepressants', 'ICD10_2010'), +('Y49.3', 'Phenothiazine antipsychotics and neuroleptics', 'ICD10_2010'), +('Y49.4', 'Butyrophenone and thioxanthene neuroleptics', 'ICD10_2010'), +('Y49.5', 'Other antipsychotics and neuroleptics', 'ICD10_2010'), +('Y49.6', 'Psychodysleptics [hallucinogens]', 'ICD10_2010'), +('Y49.7', 'Psychostimulants with abuse potential', 'ICD10_2010'), +('Y49.8', 'Other psychotropic drugs, not elsewhere classified', 'ICD10_2010'), +('Y49.9', 'Psychotropic drug, unspecified', 'ICD10_2010'), +('Y50', 'Central nervous system stimulants, not elsewhere classified', 'ICD10_2010'), +('Y50.0', 'Analeptics', 'ICD10_2010'), +('Y50.1', 'Opioid receptor antagonists', 'ICD10_2010'), +('Y50.2', 'Methylxanthines, not elsewhere classified', 'ICD10_2010'), +('Y50.8', 'Other central nervous system stimulants', 'ICD10_2010'), +('Y50.9', 'Central nervous system stimulant, unspecified', 'ICD10_2010'), +('Y51', 'Drugs primarily affecting the autonomic nervous system', 'ICD10_2010'), +('Y51.0', 'Anticholinesterase agents', 'ICD10_2010'), +('Y51.1', 'Other parasympathomimetics [cholinergics]', 'ICD10_2010'), +('Y51.2', 'Ganglionic blocking drugs, not elsewhere classified', 'ICD10_2010'), +('Y51.3', 'Other parasympatholytics [anticholinergics and antimuscarinics] and spasmolytics, not elsewhere classified', 'ICD10_2010'), +('Y51.4', 'Predominantly alpha-adrenoreceptor agonists, not elsewhere classified', 'ICD10_2010'), +('Y51.5', 'Predominantly beta-adrenoreceptor agonists, not elsewhere classified', 'ICD10_2010'), +('Y51.6', 'Alpha-adrenoreceptor antagonists, not elsewhere classified', 'ICD10_2010'), +('Y51.7', 'Beta-adrenoreceptor antagonists, not elsewhere classified', 'ICD10_2010'), +('Y51.8', 'Centrally acting and adrenergic-neuron-blocking agents, not elsewhere classified', 'ICD10_2010'), +('Y51.9', 'Other and unspecified drugs primarily affecting the autonomic nervous system', 'ICD10_2010'), +('Y52', 'Agents primarily affecting the cardiovascular system', 'ICD10_2010'), +('Y52.0', 'Cardiac-stimulant glycosides and drugs of similar action', 'ICD10_2010'), +('Y52.1', 'Calcium-channel blockers', 'ICD10_2010'), +('Y52.2', 'Other antidysrhythmic drugs, not elsewhere classified', 'ICD10_2010'), +('Y52.3', 'Coronary vasodilators, not elsewhere classified', 'ICD10_2010'), +('Y52.4', 'Angiotensin-converting-enzyme inhibitors', 'ICD10_2010'), +('Y52.5', 'Other antihypertensive drugs, not elsewhere classified', 'ICD10_2010'), +('Y52.6', 'Antihyperlipidaemic and antiarteriosclerotic drugs', 'ICD10_2010'), +('Y52.7', 'Peripheral vasodilators', 'ICD10_2010'), +('Y52.8', 'Antivaricose drugs, including sclerosing agents', 'ICD10_2010'), +('Y52.9', 'Other and unspecified agents primarily affecting the cardiovascular system', 'ICD10_2010'), +('Y53', 'Agents primarily affecting the gastrointestinal system', 'ICD10_2010'), +('Y53.0', 'Histamine H2-receptor antagonists', 'ICD10_2010'), +('Y53.1', 'Other antacids and anti-gastric-secretion drugs', 'ICD10_2010'), +('Y53.2', 'Stimulant laxatives', 'ICD10_2010'), +('Y53.3', 'Saline and osmotic laxatives', 'ICD10_2010'), +('Y53.4', 'Other laxatives', 'ICD10_2010'), +('Y53.5', 'Digestants', 'ICD10_2010'), +('Y53.6', 'Antidiarrhoeal drugs', 'ICD10_2010'), +('Y53.7', 'Emetics', 'ICD10_2010'), +('Y53.8', 'Other agents primarily affecting the gastrointestinal system', 'ICD10_2010'), +('Y53.9', 'Agent primarily affecting the gastrointestinal system, unspecified', 'ICD10_2010'), +('Y54', 'Agents primarily affecting water-balance and mineral and uric acid metabolism', 'ICD10_2010'), +('Y54.0', 'Mineralocorticoids', 'ICD10_2010'), +('Y54.1', 'Mineralocorticoid antagonists [aldosterone antagonists]', 'ICD10_2010'), +('Y54.2', 'Carbonic-anhydrase inhibitors', 'ICD10_2010'), +('Y54.3', 'Benzothiadiazine derivatives', 'ICD10_2010'), +('Y54.4', 'Loop [high-ceiling] diuretics', 'ICD10_2010'), +('Y54.5', 'Other diuretics', 'ICD10_2010'), +('Y54.6', 'Electrolytic, caloric and water-balance agents', 'ICD10_2010'), +('Y54.7', 'Agents affecting calcification', 'ICD10_2010'), +('Y54.8', 'Agents affecting uric acid metabolism', 'ICD10_2010'), +('Y54.9', 'Mineral salts, not elsewhere classified', 'ICD10_2010'), +('Y55', 'Agents primarily acting on smooth and skeletal muscles and the respiratory system', 'ICD10_2010'), +('Y55.0', 'Oxytocic drugs', 'ICD10_2010'), +('Y55.1', 'Skeletal muscle relaxants [neuromuscular blocking agents]', 'ICD10_2010'), +('Y55.2', 'Other and unspecified agents primarily acting on muscles', 'ICD10_2010'), +('Y55.3', 'Antitussives', 'ICD10_2010'), +('Y55.4', 'Expectorants', 'ICD10_2010'), +('Y55.5', 'Anti-common-cold drugs', 'ICD10_2010'), +('Y55.6', 'Antiasthmatics, not elsewhere classified', 'ICD10_2010'), +('Y55.7', 'Other and unspecified agents primarily acting on the respiratory system', 'ICD10_2010'), +('Y56', 'Topical agents primarily affecting skin and mucous membrane and ophthalmological, otorhinolaryngological and dental drugs', 'ICD10_2010'), +('Y56.0', 'Local antifungal, anti-infective and anti-inflammatory drugs, not elsewhere classified', 'ICD10_2010'), +('Y56.1', 'Antipruritics', 'ICD10_2010'), +('Y56.2', 'Local astringents and local detergents', 'ICD10_2010'), +('Y56.3', 'Emollients, demulcents and protectants', 'ICD10_2010'), +('Y56.4', 'Keratolytics, keratoplastics and other hair treatment drugs and preparations', 'ICD10_2010'), +('Y56.5', 'Ophthalmological drugs and preparations', 'ICD10_2010'), +('Y56.6', 'Otorhinolaryngological drugs and preparations', 'ICD10_2010'), +('Y56.7', 'Dental drugs, topically applied', 'ICD10_2010'), +('Y56.8', 'Other topical agents', 'ICD10_2010'), +('Y56.9', 'Topical agent, unspecified', 'ICD10_2010'), +('Y57', 'Other and unspecified drugs and medicaments', 'ICD10_2010'), +('Y57.0', 'Appetite depressants [anorectics]', 'ICD10_2010'), +('Y57.1', 'Lipotropic drugs', 'ICD10_2010'), +('Y57.2', 'Antidotes and chelating agents, not elsewhere classified', 'ICD10_2010'), +('Y57.3', 'Alcohol deterrents', 'ICD10_2010'), +('Y57.4', 'Pharmaceutical excipients', 'ICD10_2010'), +('Y57.5', 'X-ray contrast media', 'ICD10_2010'), +('Y57.6', 'Other diagnostic agents', 'ICD10_2010'), +('Y57.7', 'Vitamins, not elsewhere classified', 'ICD10_2010'), +('Y57.8', 'Other drugs and medicaments', 'ICD10_2010'), +('Y57.9', 'Drug or medicament, unspecified', 'ICD10_2010'), +('Y58', 'Bacterial vaccines', 'ICD10_2010'), +('Y58.0', 'BCG vaccine', 'ICD10_2010'), +('Y58.1', 'Typhoid and paratyphoid vaccine', 'ICD10_2010'), +('Y58.2', 'Cholera vaccine', 'ICD10_2010'), +('Y58.3', 'Plague vaccine', 'ICD10_2010'), +('Y58.4', 'Tetanus vaccine', 'ICD10_2010'), +('Y58.5', 'Diphtheria vaccine', 'ICD10_2010'), +('Y58.6', 'Pertussis vaccine, including combinations with a pertussis component', 'ICD10_2010'), +('Y58.8', 'Mixed bacterial vaccines, except combinations with a pertussis component', 'ICD10_2010'), +('Y58.9', 'Other and unspecified bacterial vaccines', 'ICD10_2010'), +('Y59', 'Other and unspecified vaccines and biological substances', 'ICD10_2010'), +('Y59.0', 'Viral vaccines', 'ICD10_2010'), +('Y59.1', 'Rickettsial vaccines', 'ICD10_2010'), +('Y59.2', 'Protozoal vaccines', 'ICD10_2010'), +('Y59.3', 'Immunoglobulin', 'ICD10_2010'), +('Y59.8', 'Other specified vaccines and biological substances', 'ICD10_2010'), +('Y59.9', 'Vaccine or biological substance, unspecified', 'ICD10_2010'), +('Y60', 'Unintentional cut, puncture, perforation or haemorrhage during surgical and medical care', 'ICD10_2010'), +('Y60.0', 'During surgical operation', 'ICD10_2010'), +('Y60.1', 'During infusion or transfusion', 'ICD10_2010'), +('Y60.2', 'During kidney dialysis or other perfusion', 'ICD10_2010'), +('Y60.3', 'During injection or immunization', 'ICD10_2010'), +('Y60.4', 'During endoscopic examination', 'ICD10_2010'), +('Y60.5', 'During heart catheterization', 'ICD10_2010'), +('Y60.6', 'During aspiration, puncture and other catheterization', 'ICD10_2010'), +('Y60.7', 'During administration of enema', 'ICD10_2010'), +('Y60.8', 'During other surgical and medical care', 'ICD10_2010'), +('Y60.9', 'During unspecified surgical and medical care', 'ICD10_2010'), +('Y61', 'Foreign object accidentally left in body during surgical and medical care', 'ICD10_2010'), +('Y61.0', 'During surgical operation', 'ICD10_2010'), +('Y61.1', 'During infusion or transfusion', 'ICD10_2010'), +('Y61.2', 'During kidney dialysis or other perfusion', 'ICD10_2010'), +('Y61.3', 'During injection or immunization', 'ICD10_2010'), +('Y61.4', 'During endoscopic examination', 'ICD10_2010'), +('Y61.5', 'During heart catheterization', 'ICD10_2010'), +('Y61.6', 'During aspiration, puncture and other catheterization', 'ICD10_2010'), +('Y61.7', 'During removal of catheter or packing', 'ICD10_2010'), +('Y61.8', 'During other surgical and medical care', 'ICD10_2010'), +('Y61.9', 'During unspecified surgical and medical care', 'ICD10_2010'), +('Y62', 'Failure of sterile precautions during surgical and medical care', 'ICD10_2010'), +('Y62.0', 'During surgical operation', 'ICD10_2010'), +('Y62.1', 'During infusion or transfusion', 'ICD10_2010'), +('Y62.2', 'During kidney dialysis or other perfusion', 'ICD10_2010'), +('Y62.3', 'During injection or immunization', 'ICD10_2010'), +('Y62.4', 'During endoscopic examination', 'ICD10_2010'), +('Y62.5', 'During heart catheterization', 'ICD10_2010'), +('Y62.6', 'During aspiration, puncture and other catheterization', 'ICD10_2010'), +('Y62.8', 'During other surgical and medical care', 'ICD10_2010'), +('Y62.9', 'During unspecified surgical and medical care', 'ICD10_2010'), +('Y63', 'Failure in dosage during surgical and medical care', 'ICD10_2010'), +('Y63.0', 'Excessive amount of blood or other fluid given during transfusion or infusion', 'ICD10_2010'), +('Y63.1', 'Incorrect dilution of fluid used during infusion', 'ICD10_2010'), +('Y63.2', 'Overdose of radiation given during therapy', 'ICD10_2010'), +('Y63.3', 'Inadvertent exposure of patient to radiation during medical care', 'ICD10_2010'), +('Y63.4', 'Failure in dosage in electroshock or insulin-shock therapy', 'ICD10_2010'), +('Y63.5', 'Inappropriate temperature in local application and packing', 'ICD10_2010'), +('Y63.6', 'Nonadministration of necessary drug, medicament or biological substance', 'ICD10_2010'), +('Y63.8', 'Failure in dosage during other surgical and medical care', 'ICD10_2010'), +('Y63.9', 'Failure in dosage during unspecified surgical and medical care', 'ICD10_2010'), +('Y64', 'Contaminated medical or biological substances', 'ICD10_2010'), +('Y64.0', 'Contaminated medical or biological substance, transfused or infused', 'ICD10_2010'), +('Y64.1', 'Contaminated medical or biological substance, injected or used for immunization', 'ICD10_2010'), +('Y64.8', 'Contaminated medical or biological substance administered by other means', 'ICD10_2010'), +('Y64.9', 'Contaminated medical or biological substance administered by unspecified means', 'ICD10_2010'), +('Y65', 'Other misadventures during surgical and medical care', 'ICD10_2010'), +('Y65.0', 'Mismatched blood used in transfusion', 'ICD10_2010'), +('Y65.1', 'Wrong fluid used in infusion', 'ICD10_2010'), +('Y65.2', 'Failure in suture or ligature during surgical operation', 'ICD10_2010'), +('Y65.3', 'Endotracheal tube wrongly placed during anaesthetic procedure', 'ICD10_2010'), +('Y65.4', 'Failure to introduce or to remove other tube or instrument', 'ICD10_2010'), +('Y65.5', 'Performance of inappropriate operation', 'ICD10_2010'), +('Y65.8', 'Other specified misadventures during surgical and medical care', 'ICD10_2010'), +('Y66', 'Nonadministration of surgical and medical care', 'ICD10_2010'), +('Y69', 'Unspecified misadventure during surgical and medical care', 'ICD10_2010'), +('Y70', 'Anaesthesiology devices associated with adverse incidents', 'ICD10_2010'), +('Y70.0', 'Anaesthesiology devices associated with adverse incidents: Diagnostic and monitoring devices', 'ICD10_2010'), +('Y70.1', 'Anaesthesiology devices associated with adverse incidents: Therapeutic (nonsurgical) and rehabilitative devices', 'ICD10_2010'), +('Y70.2', 'Anaesthesiology devices associated with adverse incidents: Prosthetic and other implants, materials and accessory devices', 'ICD10_2010'), +('Y70.3', 'Anaesthesiology devices associated with adverse incidents: Surgical instruments, materials and devices (including sutures)', 'ICD10_2010'), +('Y70.8', 'Anaesthesiology devices associated with adverse incidents: Miscellaneous devices, not elsewhere classified', 'ICD10_2010'), +('Y71', 'Cardiovascular devices associated with adverse incidents', 'ICD10_2010'), +('Y71.0', 'Cardiovascular devices associated with adverse incidents: Diagnostic and monitoring devices', 'ICD10_2010'), +('Y71.1', 'Cardiovascular devices associated with adverse incidents: Therapeutic (nonsurgical) and rehabilitative devices', 'ICD10_2010'), +('Y71.2', 'Cardiovascular devices associated with adverse incidents: Prosthetic and other implants, materials and accessory devices', 'ICD10_2010'), +('Y71.3', 'Cardiovascular devices associated with adverse incidents: Surgical instruments, materials and devices (including sutures)', 'ICD10_2010'), +('Y71.8', 'Cardiovascular devices associated with adverse incidents: Miscellaneous devices, not elsewhere classified', 'ICD10_2010'), +('Y72', 'Otorhinolaryngological devices associated with adverse incidents', 'ICD10_2010'), +('Y72.0', 'Otorhinolaryngological devices associated with adverse incidents: Diagnostic and monitoring devices', 'ICD10_2010'), +('Y72.1', 'Otorhinolaryngological devices associated with adverse incidents: Therapeutic (nonsurgical) and rehabilitative devices', 'ICD10_2010'), +('Y72.2', 'Otorhinolaryngological devices associated with adverse incidents: Prosthetic and other implants, materials and accessory devices', 'ICD10_2010'), +('Y72.3', 'Otorhinolaryngological devices associated with adverse incidents: Surgical instruments, materials and devices (including sutures)', 'ICD10_2010'), +('Y72.8', 'Otorhinolaryngological devices associated with adverse incidents: Miscellaneous devices, not elsewhere classified', 'ICD10_2010'), +('Y73', 'Gastroenterology and urology devices associated with adverse incidents', 'ICD10_2010'), +('Y73.0', 'Gastroenterology and urology devices associated with adverse incidents: Diagnostic and monitoring devices', 'ICD10_2010'), +('Y73.1', 'Gastroenterology and urology devices associated with adverse incidents: Therapeutic (nonsurgical) and rehabilitative devices', 'ICD10_2010'), +('Y73.2', 'Gastroenterology and urology devices associated with adverse incidents: Prosthetic and other implants, materials and accessory devices', 'ICD10_2010'), +('Y73.3', 'Gastroenterology and urology devices associated with adverse incidents: Surgical instruments, materials and devices (including sutures)', 'ICD10_2010'), +('Y73.8', 'Gastroenterology and urology devices associated with adverse incidents: Miscellaneous devices, not elsewhere classified', 'ICD10_2010'), +('Y74', 'General hospital and personal-use devices associated with adverse incidents', 'ICD10_2010'), +('Y74.0', 'General hospital and personal-use devices associated with adverse incidents: Diagnostic and monitoring devices', 'ICD10_2010'), +('Y74.1', 'General hospital and personal-use devices associated with adverse incidents: Therapeutic (nonsurgical) and rehabilitative devices', 'ICD10_2010'), +('Y74.2', 'General hospital and personal-use devices associated with adverse incidents: Prosthetic and other implants, materials and accessory devices', 'ICD10_2010'), +('Y74.3', 'General hospital and personal-use devices associated with adverse incidents: Surgical instruments, materials and devices (including sutures)', 'ICD10_2010'), +('Y74.8', 'General hospital and personal-use devices associated with adverse incidents: Miscellaneous devices, not elsewhere classified', 'ICD10_2010'), +('Y75', 'Neurological devices associated with adverse incidents', 'ICD10_2010'), +('Y75.0', 'Neurological devices associated with adverse incidents: Diagnostic and monitoring devices', 'ICD10_2010'), +('Y75.1', 'Neurological devices associated with adverse incidents: Therapeutic (nonsurgical) and rehabilitative devices', 'ICD10_2010'), +('Y75.2', 'Neurological devices associated with adverse incidents: Prosthetic and other implants, materials and accessory devices', 'ICD10_2010'), +('Y75.3', 'Neurological devices associated with adverse incidents: Surgical instruments, materials and devices (including sutures)', 'ICD10_2010'), +('Y75.8', 'Neurological devices associated with adverse incidents: Miscellaneous devices, not elsewhere classified', 'ICD10_2010'), +('Y76', 'Obstetric and gynaecological devices associated with adverse incidents', 'ICD10_2010'), +('Y76.0', 'Obstetric and gynaecological devices associated with adverse incidents: Diagnostic and monitoring devices', 'ICD10_2010'), +('Y76.1', 'Obstetric and gynaecological devices associated with adverse incidents: Therapeutic (nonsurgical) and rehabilitative devices', 'ICD10_2010'), +('Y76.2', 'Obstetric and gynaecological devices associated with adverse incidents: Prosthetic and other implants, materials and accessory devices', 'ICD10_2010'), +('Y76.3', 'Obstetric and gynaecological devices associated with adverse incidents: Surgical instruments, materials and devices (including sutures)', 'ICD10_2010'), +('Y76.8', 'Obstetric and gynaecological devices associated with adverse incidents: Miscellaneous devices, not elsewhere classified', 'ICD10_2010'), +('Y77', 'Ophthalmic devices associated with adverse incidents', 'ICD10_2010'), +('Y77.0', 'Ophthalmic devices associated with adverse incidents: Diagnostic and monitoring devices', 'ICD10_2010'), +('Y77.1', 'Ophthalmic devices associated with adverse incidents: Therapeutic (nonsurgical) and rehabilitative devices', 'ICD10_2010'), +('Y77.2', 'Ophthalmic devices associated with adverse incidents: Prosthetic and other implants, materials and accessory devices', 'ICD10_2010'), +('Y77.3', 'Ophthalmic devices associated with adverse incidents: Surgical instruments, materials and devices (including sutures)', 'ICD10_2010'), +('Y77.8', 'Ophthalmic devices associated with adverse incidents: Miscellaneous devices, not elsewhere classified', 'ICD10_2010'), +('Y78', 'Radiological devices associated with adverse incidents', 'ICD10_2010'), +('Y78.0', 'Radiological devices associated with adverse incidents: Diagnostic and monitoring devices', 'ICD10_2010'), +('Y78.1', 'Radiological devices associated with adverse incidents: Therapeutic (nonsurgical) and rehabilitative devices', 'ICD10_2010'), +('Y78.2', 'Radiological devices associated with adverse incidents: Prosthetic and other implants, materials and accessory devices', 'ICD10_2010'), +('Y78.3', 'Radiological devices associated with adverse incidents: Surgical instruments, materials and devices (including sutures)', 'ICD10_2010'), +('Y78.8', 'Radiological devices associated with adverse incidents: Miscellaneous devices, not elsewhere classified', 'ICD10_2010'), +('Y79', 'Orthopaedic devices associated with adverse incidents', 'ICD10_2010'), +('Y79.0', 'Orthopaedic devices associated with adverse incidents: Diagnostic and monitoring devices', 'ICD10_2010'), +('Y79.1', 'Orthopaedic devices associated with adverse incidents: Therapeutic (nonsurgical) and rehabilitative devices', 'ICD10_2010'), +('Y79.2', 'Orthopaedic devices associated with adverse incidents: Prosthetic and other implants, materials and accessory devices', 'ICD10_2010'), +('Y79.3', 'Orthopaedic devices associated with adverse incidents: Surgical instruments, materials and devices (including sutures)', 'ICD10_2010'), +('Y79.8', 'Orthopaedic devices associated with adverse incidents: Miscellaneous devices, not elsewhere classified', 'ICD10_2010'), +('Y80', 'Physical medicine devices associated with adverse incidents', 'ICD10_2010'); +INSERT INTO `icd10` (`ID_ICD10`, `Diagnosa`, `Versi_ICD10`) VALUES +('Y80.0', 'Physical medicine devices associated with adverse incidents: Diagnostic and monitoring devices', 'ICD10_2010'), +('Y80.1', 'Physical medicine devices associated with adverse incidents: Therapeutic (nonsurgical) and rehabilitative devices', 'ICD10_2010'), +('Y80.2', 'Physical medicine devices associated with adverse incidents: Prosthetic and other implants, materials and accessory devices', 'ICD10_2010'), +('Y80.3', 'Physical medicine devices associated with adverse incidents: Surgical instruments, materials and devices (including sutures)', 'ICD10_2010'), +('Y80.8', 'Physical medicine devices associated with adverse incidents: Miscellaneous devices, not elsewhere classified', 'ICD10_2010'), +('Y81', 'General- and plastic-surgery devices associated with adverse incidents', 'ICD10_2010'), +('Y81.0', 'General- and plastic-surgery devices associated with adverse incidents: Diagnostic and monitoring devices', 'ICD10_2010'), +('Y81.1', 'General- and plastic-surgery devices associated with adverse incidents: Therapeutic (nonsurgical) and rehabilitative devices', 'ICD10_2010'), +('Y81.2', 'General- and plastic-surgery devices associated with adverse incidents: Prosthetic and other implants, materials and accessory devices', 'ICD10_2010'), +('Y81.3', 'General- and plastic-surgery devices associated with adverse incidents: Surgical instruments, materials and devices (including sutures)', 'ICD10_2010'), +('Y81.8', 'General- and plastic-surgery devices associated with adverse incidents: Miscellaneous devices, not elsewhere classified', 'ICD10_2010'), +('Y82', 'Other and unspecified medical devices associated with adverse incidents', 'ICD10_2010'), +('Y82.0', 'Other and unspecified medical devices associated with adverse incidents: Diagnostic and monitoring devices', 'ICD10_2010'), +('Y82.1', 'Other and unspecified medical devices associated with adverse incidents: Therapeutic (nonsurgical) and rehabilitative devices', 'ICD10_2010'), +('Y82.2', 'Other and unspecified medical devices associated with adverse incidents: Prosthetic and other implants, materials and accessory devices', 'ICD10_2010'), +('Y82.3', 'Other and unspecified medical devices associated with adverse incidents: Surgical instruments, materials and devices (including sutures)', 'ICD10_2010'), +('Y82.8', 'Other and unspecified medical devices associated with adverse incidents: Miscellaneous devices, not elsewhere classified', 'ICD10_2010'), +('Y83', 'Surgical operation and other surgical procedures as the cause of abnormal reaction of the patient, or of later complication, without mention of misadv', 'ICD10_2010'), +('Y83.0', 'Surgical operation with transplant of whole organ', 'ICD10_2010'), +('Y83.1', 'Surgical operation with implant of artificial internal device', 'ICD10_2010'), +('Y83.2', 'Surgical operation with anastomosis, bypass or graft', 'ICD10_2010'), +('Y83.3', 'Surgical operation with formation of external stoma', 'ICD10_2010'), +('Y83.4', 'Other reconstructive surgery', 'ICD10_2010'), +('Y83.5', 'Amputation of limb(s)', 'ICD10_2010'), +('Y83.6', 'Removal of other organ (partial) (total)', 'ICD10_2010'), +('Y83.8', 'Other surgical procedures', 'ICD10_2010'), +('Y83.9', 'Surgical procedure, unspecified', 'ICD10_2010'), +('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 th', 'ICD10_2010'), +('Y84.0', 'Cardiac catheterization', 'ICD10_2010'), +('Y84.1', 'Kidney dialysis', 'ICD10_2010'), +('Y84.2', 'Radiological procedure and radiotherapy', 'ICD10_2010'), +('Y84.3', 'Shock therapy', 'ICD10_2010'), +('Y84.4', 'Aspiration of fluid', 'ICD10_2010'), +('Y84.5', 'Insertion of gastric or duodenal sound', 'ICD10_2010'), +('Y84.6', 'Urinary catheterization', 'ICD10_2010'), +('Y84.7', 'Blood-sampling', 'ICD10_2010'), +('Y84.8', 'Other medical procedures', 'ICD10_2010'), +('Y84.9', 'Medical procedure, unspecified', 'ICD10_2010'), +('Y85', 'Sequelae of transport accidents', 'ICD10_2010'), +('Y85.0', 'Sequelae of motor-vehicle accident', 'ICD10_2010'), +('Y85.9', 'Sequelae of other and unspecified transport accidents', 'ICD10_2010'), +('Y86', 'Sequelae of other accidents', 'ICD10_2010'), +('Y87', 'Sequelae of intentional self-harm, assault and events of undetermined intent', 'ICD10_2010'), +('Y87.0', 'Sequelae of intentional self-harm', 'ICD10_2010'), +('Y87.1', 'Sequelae of assault', 'ICD10_2010'), +('Y87.2', 'Sequelae of events of undetermined intent', 'ICD10_2010'), +('Y88', 'Sequelae with surgical and medical care as external cause', 'ICD10_2010'), +('Y88.0', 'Sequelae of adverse effects caused by drugs, medicaments and biological substances in therapeutic use', 'ICD10_2010'), +('Y88.1', 'Sequelae of misadventures to patients during surgical and medical procedures', 'ICD10_2010'), +('Y88.2', 'Sequelae of adverse incidents associated with medical devices in diagnostic and therapeutic use', 'ICD10_2010'), +('Y88.3', 'Sequelae of surgical and medical procedures as the cause of abnormal reaction of the patient, or of later complication, without mention of misadventur', 'ICD10_2010'), +('Y89', 'Sequelae of other external causes', 'ICD10_2010'), +('Y89.0', 'Sequelae of legal intervention', 'ICD10_2010'), +('Y89.1', 'Sequelae of war operations', 'ICD10_2010'), +('Y89.9', 'Sequelae of unspecified external cause', 'ICD10_2010'), +('Y90', 'Evidence of alcohol involvement determined by blood alcohol level', 'ICD10_2010'), +('Y90.0', 'Blood alcohol level of less than 20 mg/100 ml', 'ICD10_2010'), +('Y90.1', 'Blood alcohol level of 20-39 mg/100 ml', 'ICD10_2010'), +('Y90.2', 'Blood alcohol level of 40-59 mg/100 ml', 'ICD10_2010'), +('Y90.3', 'Blood alcohol level of 60-79 mg/100 ml', 'ICD10_2010'), +('Y90.4', 'Blood alcohol level of 80-99 mg/100 ml', 'ICD10_2010'), +('Y90.5', 'Blood alcohol level of 100-119 mg/100 ml', 'ICD10_2010'), +('Y90.6', 'Blood alcohol level of 120-199 mg/100 ml', 'ICD10_2010'), +('Y90.7', 'Blood alcohol level of 200-239 mg/100 ml', 'ICD10_2010'), +('Y90.8', 'Blood alcohol level of 240 mg/100 ml or more', 'ICD10_2010'), +('Y90.9', 'Presence of alcohol in blood, level not specified', 'ICD10_2010'), +('Y91', 'Evidence of alcohol involvement determined by level of intoxication', 'ICD10_2010'), +('Y91.0', 'Mild alcohol intoxication', 'ICD10_2010'), +('Y91.1', 'Moderate alcohol intoxication', 'ICD10_2010'), +('Y91.2', 'Severe alcohol intoxication', 'ICD10_2010'), +('Y91.3', 'Very severe alcohol intoxication', 'ICD10_2010'), +('Y91.9', 'Alcohol involvement, not otherwise specified', 'ICD10_2010'), +('Y95', 'Nosocomial condition', 'ICD10_2010'), +('Y96', 'Work-related condition', 'ICD10_2010'), +('Y97', 'Environmental-pollution-related condition', 'ICD10_2010'), +('Y98', 'Lifestyle-related condition', 'ICD10_2010'), +('Z00', 'General examination and investigation of persons without complaint and reported diagnosis', 'ICD10_2010'), +('Z00.0', 'General medical examination', 'ICD10_2010'), +('Z00.1', 'Routine child health examination', 'ICD10_2010'), +('Z00.2', 'Examination for period of rapid growth in childhood', 'ICD10_2010'), +('Z00.3', 'Examination for adolescent development state', 'ICD10_2010'), +('Z00.4', 'General psychiatric examination, nec', 'ICD10_2010'), +('Z00.5', 'Examination of potential donor of organ and tissue', 'ICD10_2010'), +('Z00.6', 'Exam normal comparison and control in clin research program', 'ICD10_2010'), +('Z00.8', 'Other general examinations', 'ICD10_2010'), +('Z01', 'Other special examinations and investigations of persons without complaint or reported diagnosis', 'ICD10_2010'), +('Z01.0', 'Examination of eyes and vision', 'ICD10_2010'), +('Z01.1', 'Examination of ears and hearing', 'ICD10_2010'), +('Z01.2', 'Dental examination', 'ICD10_2010'), +('Z01.3', 'Examination of blood pressure', 'ICD10_2010'), +('Z01.4', 'Gynaecological examination (general)(routine)', 'ICD10_2010'), +('Z01.5', 'Diagnostic skin and sensitization tests', 'ICD10_2010'), +('Z01.6', 'Radiological examination, nec', 'ICD10_2010'), +('Z01.7', 'Laboratory examination', 'ICD10_2010'), +('Z01.8', 'Other specified special examinations', 'ICD10_2010'), +('Z01.9', 'Special examination, unspecified', 'ICD10_2010'), +('Z02', 'Examination and encounter for administrative purposes', 'ICD10_2010'), +('Z02.0', 'Examination for admission to educational institution', 'ICD10_2010'), +('Z02.1', 'Pre-employment examination', 'ICD10_2010'), +('Z02.2', 'Examination for admission to residential institutions', 'ICD10_2010'), +('Z02.3', 'Examination for recruitment to armed forces', 'ICD10_2010'), +('Z02.4', 'Examination for driving licence', 'ICD10_2010'), +('Z02.5', 'Examination for participation in sport', 'ICD10_2010'), +('Z02.6', 'Examination for insurance purposes', 'ICD10_2010'), +('Z02.7', 'Issue of medical certificate', 'ICD10_2010'), +('Z02.8', 'Other examinations for administrative purposes', 'ICD10_2010'), +('Z02.9', 'Examination for administrative purposes, unspecified', 'ICD10_2010'), +('Z03', 'Medical observation and evaluation for suspected diseases and conditions', 'ICD10_2010'), +('Z03.0', 'Observation for suspected tuberculosis', 'ICD10_2010'), +('Z03.1', 'Observation for suspected malignant neoplasm', 'ICD10_2010'), +('Z03.2', 'Observation for suspected mental and behavioural disorders', 'ICD10_2010'), +('Z03.3', 'Observation for suspected nervous system disorder', 'ICD10_2010'), +('Z03.4', 'Observation for suspected myocardial infarction', 'ICD10_2010'), +('Z03.5', 'Observation for other suspected cardiovascular diseases', 'ICD10_2010'), +('Z03.6', 'Observation for suspected toxic effect from ingested substances', 'ICD10_2010'), +('Z03.8', 'Observation for other suspected diseases and conditions', 'ICD10_2010'), +('Z03.9', 'Observation for suspected disease or condition, unspecified', 'ICD10_2010'), +('Z04', 'Examination and observation for other reasons', 'ICD10_2010'), +('Z04.0', 'Blood-alcohol and blood-drug test', 'ICD10_2010'), +('Z04.1', 'Examination and observation following transport accident', 'ICD10_2010'), +('Z04.2', 'Examination and observation following work accident', 'ICD10_2010'), +('Z04.3', 'Examination and observation following other accident', 'ICD10_2010'), +('Z04.4', 'Exam and observation following alleged rape and seduction', 'ICD10_2010'), +('Z04.5', 'Examination and observation following other inflicted injury', 'ICD10_2010'), +('Z04.6', 'General psychiatric examination, requested by authority', 'ICD10_2010'), +('Z04.8', 'Examination and observation for other specified reasons', 'ICD10_2010'), +('Z04.9', 'Examination and observation for unspecified reason', 'ICD10_2010'), +('Z08', 'Follow-up examination after treatment for malignant neoplasms', 'ICD10_2010'), +('Z08.0', 'Follow-up examination after surgery for malignant neoplasm', 'ICD10_2010'), +('Z08.1', 'Follow-up examination after radiotherapy for malignant neoplasm', 'ICD10_2010'), +('Z08.2', 'Follow-up examination after chemotherapy for malignant neoplasm', 'ICD10_2010'), +('Z08.7', 'Follow-up examination after combined treatment for malig neoplasm', 'ICD10_2010'), +('Z08.8', 'Follow-up examination after other treatment for malignant neoplasm', 'ICD10_2010'), +('Z08.9', 'Follow-up examination after unspecified treatment for malignant neoplasm', 'ICD10_2010'), +('Z09', 'Follow-up examination after treatment for conditions other than malignant neoplasms', 'ICD10_2010'), +('Z09.0', 'Follow-up examination after surgery for other conditions', 'ICD10_2010'), +('Z09.1', 'Follow-up examination after radiotherapy for oth conditions', 'ICD10_2010'), +('Z09.2', 'Follow-up examination after chemotherapy for oth conditions', 'ICD10_2010'), +('Z09.3', 'Follow-up examination after psychotherapy', 'ICD10_2010'), +('Z09.4', 'Follow-up examination after treatment of fracture', 'ICD10_2010'), +('Z09.7', 'Follow-up exam after combined treatment for other conditions', 'ICD10_2010'), +('Z09.8', 'Follow-up exam after other treatment for other conditions', 'ICD10_2010'), +('Z09.9', 'Follow-up exam after unspecified treatment for other conditions', 'ICD10_2010'), +('Z10', 'Routine general health check-up of defined subpopulation', 'ICD10_2010'), +('Z10.0', 'Occupational health examination', 'ICD10_2010'), +('Z10.1', 'Routine gen health check-up of inhabitants of institutions', 'ICD10_2010'), +('Z10.2', 'Routine general health check-up of armed forces', 'ICD10_2010'), +('Z10.3', 'Routine general health check-up of sports teams', 'ICD10_2010'), +('Z10.8', 'Routine general health check-up of other defined subpopulations', 'ICD10_2010'), +('Z11', 'Special screening examination for infectious and parasitic diseases', 'ICD10_2010'), +('Z11.0', 'Special screening examination for intestinal infectious diseases', 'ICD10_2010'), +('Z11.1', 'Special screening examination for respiratory tuberculosis', 'ICD10_2010'), +('Z11.2', 'Special screening examination for other bacterial diseases', 'ICD10_2010'), +('Z11.3', 'Special screening examination infection with predominantly sexual mode transmis', 'ICD10_2010'), +('Z11.4', 'Special screening examination for human immunodeficiency virus [hiv]', 'ICD10_2010'), +('Z11.5', 'Special screening examination for other viral diseases', 'ICD10_2010'), +('Z11.6', 'Special screening examination for oth protozoal dis and helminthiases', 'ICD10_2010'), +('Z11.8', 'Special screening examination for other infectious and parasitic diseases', 'ICD10_2010'), +('Z11.9', 'Special screening examination for infectious and parasitic disease unspecified', 'ICD10_2010'), +('Z12', 'Special screening examination for neoplasms', 'ICD10_2010'), +('Z12.0', 'Special screening examination for neoplasm of stomach', 'ICD10_2010'), +('Z12.1', 'Special screening examination for neoplasm of intestinal tract', 'ICD10_2010'), +('Z12.2', 'Special screening examination for neoplasm of respiratory organs', 'ICD10_2010'), +('Z12.3', 'Special screening examination for neoplasm of breast', 'ICD10_2010'), +('Z12.4', 'Special screening examination for neoplasm of cervix', 'ICD10_2010'), +('Z12.5', 'Special screening examination for neoplasm of prostate', 'ICD10_2010'), +('Z12.6', 'Special screening examination for neoplasm of bladder', 'ICD10_2010'), +('Z12.8', 'Special screening examination for neoplasms of other sites', 'ICD10_2010'), +('Z12.9', 'Special screening examination for neoplasm, unspecified', 'ICD10_2010'), +('Z13', 'Special screening examination for other diseases and disorders', 'ICD10_2010'), +('Z13.0', 'Special screening examination disease blood and blood forming organs and certain disoders involving the immune mechanism', 'ICD10_2010'), +('Z13.1', 'Special screening examination for diabetes mellitus', 'ICD10_2010'), +('Z13.2', 'Special screening examination for nutritional disorders', 'ICD10_2010'), +('Z13.3', 'Special screening examination for mental and behavioural disorders', 'ICD10_2010'), +('Z13.4', 'Special screening examination certain development disorders in childhood', 'ICD10_2010'), +('Z13.5', 'Special screening examination for eye and ear disorders', 'ICD10_2010'), +('Z13.6', 'Special screening examination for cardiovascular disorders', 'ICD10_2010'), +('Z13.7', 'Special screening examination for congenital malformations, deformations and chromosomal abnormalities', 'ICD10_2010'), +('Z13.8', 'Special screening examination for other specified diseases and disorders', 'ICD10_2010'), +('Z13.9', 'Special screening examination, unspecified', 'ICD10_2010'), +('Z20', 'Contact with and exposure to communicable diseases', 'ICD10_2010'), +('Z20.0', 'Contact with and exposure to intestinal infectious diseases', 'ICD10_2010'), +('Z20.1', 'Contact with and exposure to tuberculosis', 'ICD10_2010'), +('Z20.2', 'Contact with and exposure infection with a predominantly sex mode transmission', 'ICD10_2010'), +('Z20.3', 'Contact with and exposure to rabies', 'ICD10_2010'), +('Z20.4', 'Contact with and exposure to rubella', 'ICD10_2010'), +('Z20.5', 'Contact with and exposure to viral hepatitis', 'ICD10_2010'), +('Z20.6', 'Contact with and exposure to human immunodefic virus [HIV]', 'ICD10_2010'), +('Z20.7', 'Contact with and exposure pediculosis acariasis and other infestations', 'ICD10_2010'), +('Z20.8', 'Contact with and exposure to other communicable diseases', 'ICD10_2010'), +('Z20.9', 'Contact with and exposure to unspecified communicable disease', 'ICD10_2010'), +('Z21', 'Asymptomatic human immunodefic virus [hiv] infect status', 'ICD10_2010'), +('Z22', 'Carrier of infectious disease', 'ICD10_2010'), +('Z22.0', 'Carrier of typhoid', 'ICD10_2010'), +('Z22.1', 'Carrier of other intestinal infectious diseases', 'ICD10_2010'), +('Z22.2', 'Carrier of diphtheria', 'ICD10_2010'), +('Z22.3', 'Carrier of other specified bacterial diseases', 'ICD10_2010'), +('Z22.4', 'Carrier of infections with a predom sexual mode of transmission', 'ICD10_2010'), +('Z22.5', 'Carrier of viral hepatitis', 'ICD10_2010'), +('Z22.6', 'Carrier of human T-lymphotropic virus type-1 [HTLV-1] infection', 'ICD10_2010'), +('Z22.8', 'Carrier of other infectious diseases', 'ICD10_2010'), +('Z22.9', 'Carrier of infectious disease, unspecified', 'ICD10_2010'), +('Z23', 'Need for immunization against single bacterial diseases', 'ICD10_2010'), +('Z23.0', 'Need for immunization against cholera alone', 'ICD10_2010'), +('Z23.1', 'Need for immuniz against typhoid-paratyphoid alone [TAB]', 'ICD10_2010'), +('Z23.2', 'Need for immunization against tuberculosis [BCG]', 'ICD10_2010'), +('Z23.3', 'Need for immunization against plague', 'ICD10_2010'), +('Z23.4', 'Need for immunization against tularaemia', 'ICD10_2010'), +('Z23.5', 'Need for immunization against tetanus alone', 'ICD10_2010'), +('Z23.6', 'Need for immunization against diphtheria alone', 'ICD10_2010'), +('Z23.7', 'Need for immunization against pertussis alone', 'ICD10_2010'), +('Z23.8', 'Need for immunization against other single bacterial diseases', 'ICD10_2010'), +('Z24', 'Need for immunization against certain single viral diseases', 'ICD10_2010'), +('Z24.0', 'Need for immunization against poliomyelitis', 'ICD10_2010'), +('Z24.1', 'Need for immunization against arthropod-borne viral encephalitis', 'ICD10_2010'), +('Z24.2', 'Need for immunization against rabies', 'ICD10_2010'), +('Z24.3', 'Need for immunization against yellow fever', 'ICD10_2010'), +('Z24.4', 'Need for immunization against measles alone', 'ICD10_2010'), +('Z24.5', 'Need for immunization against rubella alone', 'ICD10_2010'), +('Z24.6', 'Need for immunization against viral hepatitis', 'ICD10_2010'), +('Z25', 'Need for immunization against other single viral diseases', 'ICD10_2010'), +('Z25.0', 'Need for immunization against mumps alone', 'ICD10_2010'), +('Z25.1', 'Need for immunization against influenza', 'ICD10_2010'), +('Z25.8', 'Need for immunization against oth specified single viral diseases', 'ICD10_2010'), +('Z26', 'Need for immunization against other single infectious diseases', 'ICD10_2010'), +('Z26.0', 'Need for immunization against leishmaniasis', 'ICD10_2010'), +('Z26.8', 'Need for immunization against other specified single infectious diseases', 'ICD10_2010'), +('Z26.9', 'Need for immunization against unspecified infectious disease', 'ICD10_2010'), +('Z27', 'Need for immunization against combinations of infectious diseases', 'ICD10_2010'), +('Z27.0', 'Need for immunization against cholera with typhoid-paratyphoid [cholera + TAB]', 'ICD10_2010'), +('Z27.1', 'Need for immunization against diphtheria-tetanus-pertussis combined [DTP]', 'ICD10_2010'), +('Z27.2', 'Need for immunization against diphtheria-tetanus-pertussis with typhoid-paratyph [DTP + TAB]', 'ICD10_2010'), +('Z27.3', 'Need for immunization against diphtheria-tetanus-pertussis with poliomyelitis [DTP + polio]', 'ICD10_2010'), +('Z27.4', 'Need for immunization against measles-mumps-rubella [MMR]', 'ICD10_2010'), +('Z27.8', 'Need for immunization against other combinations of infectious diseases', 'ICD10_2010'), +('Z27.9', 'Need for immunization against unspec combs of infectious diseases', 'ICD10_2010'), +('Z28', 'Immunization not carried out', 'ICD10_2010'), +('Z28.0', 'Immunization not carried out because of contraindication', 'ICD10_2010'), +('Z28.1', 'Immunization not carried out because of patient\'s decision for reason of belief or group pressure', 'ICD10_2010'), +('Z28.2', 'Immunization not carried out because patient\'s decision for other unspecified reasons', 'ICD10_2010'), +('Z28.8', 'Immunization not carried out for other reasons', 'ICD10_2010'), +('Z28.9', 'Immunization not carried out for unspecified reason', 'ICD10_2010'), +('Z29', 'Need for other prophylactic measures', 'ICD10_2010'), +('Z29.0', 'Isolation', 'ICD10_2010'), +('Z29.1', 'Prophylactic immunotherapy', 'ICD10_2010'), +('Z29.2', 'Other prophylactic chemotherapy', 'ICD10_2010'), +('Z29.8', 'Other specified prophylactic measures', 'ICD10_2010'), +('Z29.9', 'Prophylactic measure, unspecified', 'ICD10_2010'), +('Z30', 'Contraceptive management', 'ICD10_2010'), +('Z30.0', 'General counselling and advice on contraception', 'ICD10_2010'), +('Z30.1', 'Insertion of (intrauterine) contraceptive device', 'ICD10_2010'), +('Z30.2', 'Sterilization', 'ICD10_2010'), +('Z30.3', 'Menstrual extraction', 'ICD10_2010'), +('Z30.4', 'Surveillance of contraceptive drugs', 'ICD10_2010'), +('Z30.5', 'Surveillance of (intrauterine) contraceptive device', 'ICD10_2010'), +('Z30.8', 'Other contraceptive management', 'ICD10_2010'), +('Z30.9', 'Contraceptive management, unspecified', 'ICD10_2010'), +('Z31', 'Procreative management', 'ICD10_2010'), +('Z31.0', 'Tuboplasty or vasoplasty after previous sterilization', 'ICD10_2010'), +('Z31.1', 'Artificial insemination', 'ICD10_2010'), +('Z31.2', 'In vitro fertilization', 'ICD10_2010'), +('Z31.3', 'Other assisted fertilization methods', 'ICD10_2010'), +('Z31.4', 'Procreative investigation and testing', 'ICD10_2010'), +('Z31.5', 'Genetic counselling', 'ICD10_2010'), +('Z31.6', 'General counselling and advice on procreation', 'ICD10_2010'), +('Z31.8', 'Other procreative management', 'ICD10_2010'), +('Z31.9', 'Procreative management, unspecified', 'ICD10_2010'), +('Z32', 'Pregnancy examination and test', 'ICD10_2010'), +('Z32.0', 'Pregnancy, not (yet) confirmed', 'ICD10_2010'), +('Z32.1', 'Pregnancy confirmed', 'ICD10_2010'), +('Z33', 'Pregnant state, incidental', 'ICD10_2010'), +('Z34', 'Supervision of normal pregnancy', 'ICD10_2010'), +('Z34.0', 'Supervision of normal first pregnancy', 'ICD10_2010'), +('Z34.8', 'Supervision of other normal pregnancy', 'ICD10_2010'), +('Z34.9', 'Supervision of normal pregnancy, unspecified', 'ICD10_2010'), +('Z35', 'Supervision of high-risk pregnancy', 'ICD10_2010'), +('Z35.0', 'Supervision of pregnancy with history of infertility', 'ICD10_2010'), +('Z35.1', 'Supervision of pregnancy with history of abortive outcome', 'ICD10_2010'), +('Z35.2', 'Supervision of pregnancy with other poor reproductive or obstetric history', 'ICD10_2010'), +('Z35.3', 'Supervision of pregnancy with history insufficient antenatal care', 'ICD10_2010'), +('Z35.4', 'Supervision of pregnancy with grand multiparity', 'ICD10_2010'), +('Z35.5', 'Supervision of elderly primigravida', 'ICD10_2010'), +('Z35.6', 'Supervision of very young primigravida', 'ICD10_2010'), +('Z35.7', 'Supervision of high-risk pregnancy due to social problems', 'ICD10_2010'), +('Z35.8', 'Supervision of other high-risk pregnancies', 'ICD10_2010'), +('Z35.9', 'Supervision of high-risk pregnancy, unspecified', 'ICD10_2010'), +('Z36', 'Antenatal screening', 'ICD10_2010'), +('Z36.0', 'Antenatal screening for chromosomal anomalies', 'ICD10_2010'), +('Z36.1', 'Antenatal screening for raised alphafetoprotein level', 'ICD10_2010'), +('Z36.2', 'Other antenatal screening based on amniocentesis', 'ICD10_2010'), +('Z36.3', 'Antenatal screening malformation using ultrasound and other physical methods', 'ICD10_2010'), +('Z36.4', 'Antenatal screening fetal growth retardation using ultrasound oth physical methods', 'ICD10_2010'), +('Z36.5', 'Antenatal screening for isoimmunization', 'ICD10_2010'), +('Z36.8', 'Other antenatal screening', 'ICD10_2010'), +('Z36.9', 'Antenatal screening, unspecified', 'ICD10_2010'), +('Z37', 'Outcome of delivery', 'ICD10_2010'), +('Z37.0', 'Single live birth', 'ICD10_2010'), +('Z37.1', 'Single stillbirth', 'ICD10_2010'), +('Z37.2', 'Twins, both liveborn', 'ICD10_2010'), +('Z37.3', 'Twins, one liveborn and one stillborn', 'ICD10_2010'), +('Z37.4', 'Twins, both stillborn', 'ICD10_2010'), +('Z37.5', 'Other multiple births, all liveborn', 'ICD10_2010'), +('Z37.6', 'Other multiple births, some liveborn', 'ICD10_2010'), +('Z37.7', 'Other multiple births, all stillborn', 'ICD10_2010'), +('Z37.9', 'Outcome of delivery, unspecified', 'ICD10_2010'), +('Z38', 'Liveborn infants according to place of birth', 'ICD10_2010'), +('Z38.0', 'Singleton, born in hospital', 'ICD10_2010'), +('Z38.1', 'Singleton, born outside hospital', 'ICD10_2010'), +('Z38.2', 'Singleton, unspecified as to place of birth', 'ICD10_2010'), +('Z38.3', 'Twin, born in hospital', 'ICD10_2010'), +('Z38.4', 'Twin, born outside hospital', 'ICD10_2010'), +('Z38.5', 'Twin, unspecified as to place of birth', 'ICD10_2010'), +('Z38.6', 'Other multiple, born in hospital', 'ICD10_2010'), +('Z38.7', 'Other multiple, born outside hospital', 'ICD10_2010'), +('Z38.8', 'Other multiple, unspecified as to place of birth', 'ICD10_2010'), +('Z39', 'Postpartum care and examination', 'ICD10_2010'), +('Z39.0', 'Care and examination immediately after delivery', 'ICD10_2010'), +('Z39.1', 'Care and examination of lactating mother', 'ICD10_2010'), +('Z39.2', 'Routine postpartum follow-up', 'ICD10_2010'), +('Z40', 'Prophylactic surgery', 'ICD10_2010'), +('Z40.0', 'Prophyl surgery for risk-factors related to mal neoplasms', 'ICD10_2010'), +('Z40.8', 'Other prophylactic surgery', 'ICD10_2010'), +('Z40.9', 'Prophylactic surgery, unspecified', 'ICD10_2010'), +('Z41', 'Procedures for purposes other than remedying health state', 'ICD10_2010'), +('Z41.0', 'Hair transplant', 'ICD10_2010'), +('Z41.1', 'Other plastic surgery for unacceptable cosmetic appearance', 'ICD10_2010'), +('Z41.2', 'Routine and ritual circumcision', 'ICD10_2010'), +('Z41.3', 'Ear piercing', 'ICD10_2010'), +('Z41.8', 'Other procedures for purposes other than remedying health state', 'ICD10_2010'), +('Z41.9', 'Procedures for purposes other than remedying health state, unspecified', 'ICD10_2010'), +('Z42', 'Follow-up care involving plastic surgery', 'ICD10_2010'), +('Z42.0', 'Follow-up care involving plastic surgery of head and neck', 'ICD10_2010'), +('Z42.1', 'Follow-up care involving plastic surgery of breast', 'ICD10_2010'), +('Z42.2', 'Follow-up care involving plastic surgery of ther parts of trunk', 'ICD10_2010'), +('Z42.3', 'Follow-up care involving plastic surgery of upper extremity', 'ICD10_2010'), +('Z42.4', 'Follow-up care involving plastic surgery of lower extremity', 'ICD10_2010'), +('Z42.8', 'Follow-up care involving plastic surgery of other body part', 'ICD10_2010'), +('Z42.9', 'Follow-up care involving plastic surgery, unspecified', 'ICD10_2010'), +('Z43', 'Attention to artificial openings', 'ICD10_2010'), +('Z43.0', 'Attention to tracheostomy', 'ICD10_2010'), +('Z43.1', 'Attention to gastrostomy', 'ICD10_2010'), +('Z43.2', 'Attention to ileostomy', 'ICD10_2010'), +('Z43.3', 'Attention to colostomy', 'ICD10_2010'), +('Z43.4', 'Attention to other artificial openings of digestive tract', 'ICD10_2010'), +('Z43.5', 'Attention to cystostomy', 'ICD10_2010'), +('Z43.6', 'Attention to other artificial openings of urinary tract', 'ICD10_2010'), +('Z43.7', 'Attention to artificial vagina', 'ICD10_2010'), +('Z43.8', 'Attention to other artificial openings', 'ICD10_2010'), +('Z43.9', 'Attention to unspecified artificial opening', 'ICD10_2010'), +('Z44', 'Fitting and adjustment of external prosthetic device', 'ICD10_2010'), +('Z44.0', 'Fitting and adjustment of artificial arm (complete)(partial)', 'ICD10_2010'), +('Z44.1', 'Fitting and adjustment of artificial leg (complete)(partial)', 'ICD10_2010'), +('Z44.2', 'Fitting and adjustment of artificial eye', 'ICD10_2010'), +('Z44.3', 'Fitting and adjustment of external breast prosthesis', 'ICD10_2010'), +('Z44.8', 'Fitting and adjustment of other external prosthetic devices', 'ICD10_2010'), +('Z44.9', 'Fitting and adjustment of unspecified external prosthetic device', 'ICD10_2010'), +('Z45', 'Adjustment and management of implanted device', 'ICD10_2010'), +('Z45.0', 'Adjustment and management of cardiac pacemaker', 'ICD10_2010'), +('Z45.1', 'Adjustment and management of infusion pump', 'ICD10_2010'), +('Z45.2', 'Adjustment and management of vascular access device', 'ICD10_2010'), +('Z45.3', 'Adjustment and management of implanted hearing device', 'ICD10_2010'), +('Z45.8', 'Adjustment and management of other implanted devices', 'ICD10_2010'), +('Z45.9', 'Adjustment and management of unspecified implanted device', 'ICD10_2010'), +('Z46', 'Fitting and adjustment of other devices', 'ICD10_2010'), +('Z46.0', 'Fitting and adjustment of spectacles and contact lenses', 'ICD10_2010'), +('Z46.1', 'Fitting and adjustment of hearing aid', 'ICD10_2010'), +('Z46.2', 'Fitting and adjustment of other devicess related to nervous system and special senses', 'ICD10_2010'), +('Z46.3', 'Fitting and adjustment of dental prosthetic device', 'ICD10_2010'), +('Z46.4', 'Fitting and adjustment of orthodontic device', 'ICD10_2010'), +('Z46.5', 'Fitting and adjustment of ileostomy and oth intestinal appliances', 'ICD10_2010'), +('Z46.6', 'Fitting and adjustment of urinary device', 'ICD10_2010'), +('Z46.7', 'Fitting and adjustment of orthopaedic device', 'ICD10_2010'), +('Z46.8', 'Fitting and adjustment of other specified devices', 'ICD10_2010'), +('Z46.9', 'Fitting and adjustment of unspecified device', 'ICD10_2010'), +('Z47', 'Other orthopaedic follow-up care', 'ICD10_2010'), +('Z47.0', 'Follow-up care involving removal of fracture plate and other internal fixation device', 'ICD10_2010'), +('Z47.8', 'Other specified orthopaedic follow-up care', 'ICD10_2010'), +('Z47.9', 'Orthopaedic follow-up care, unspecified', 'ICD10_2010'), +('Z48', 'Other surgical follow-up care', 'ICD10_2010'), +('Z48.0', 'Attention to surgical dressings and sutures', 'ICD10_2010'), +('Z48.8', 'Other specified surgical follow-up care', 'ICD10_2010'), +('Z48.9', 'Surgical follow-up care, unspecified', 'ICD10_2010'), +('Z49', 'Care involving dialysis', 'ICD10_2010'), +('Z49.0', 'Preparatory care for dialysis', 'ICD10_2010'), +('Z49.1', 'Extracorporeal dialysis', 'ICD10_2010'), +('Z49.2', 'Other dialysis', 'ICD10_2010'), +('Z50', 'Care involving use of rehabilitation procedures', 'ICD10_2010'), +('Z50.0', 'Cardiac rehabilitation', 'ICD10_2010'), +('Z50.1', 'Other physical therapy', 'ICD10_2010'), +('Z50.2', 'Alcohol rehabilitation', 'ICD10_2010'), +('Z50.3', 'Drug rehabilitation', 'ICD10_2010'), +('Z50.4', 'Psychotherapy, nec', 'ICD10_2010'), +('Z50.5', 'Speech therapy', 'ICD10_2010'), +('Z50.6', 'Orthoptic training', 'ICD10_2010'), +('Z50.7', 'Occupational therapy and vocational rehabilitation nec', 'ICD10_2010'), +('Z50.8', 'Care involving use of other rehabilitation procedures', 'ICD10_2010'), +('Z50.9', 'Care involving use of rehabilitation procedure, unspecified', 'ICD10_2010'), +('Z51', 'Other medical care', 'ICD10_2010'), +('Z51.0', 'Radiotherapy session', 'ICD10_2010'), +('Z51.1', 'Chemotherapy session for neoplasm', 'ICD10_2010'), +('Z51.2', 'Other chemotherapy', 'ICD10_2010'), +('Z51.3', 'Blood transfusion without reported diagnosis', 'ICD10_2010'), +('Z51.4', 'Preparatory care for subsequent treatment nec', 'ICD10_2010'), +('Z51.5', 'Palliative care', 'ICD10_2010'), +('Z51.6', 'Desensitization to allergens', 'ICD10_2010'), +('Z51.8', 'Other specified medical care', 'ICD10_2010'), +('Z51.9', 'Medical care, unspecified', 'ICD10_2010'), +('Z52', 'Donors of organs and tissues', 'ICD10_2010'), +('Z52.0', 'Blood donor', 'ICD10_2010'), +('Z52.1', 'Skin donor', 'ICD10_2010'), +('Z52.2', 'Bone donor', 'ICD10_2010'), +('Z52.3', 'Bone marrow donor', 'ICD10_2010'), +('Z52.4', 'Kidney donor', 'ICD10_2010'), +('Z52.5', 'Cornea donor', 'ICD10_2010'), +('Z52.6', 'Liver donor', 'ICD10_2010'), +('Z52.7', 'Heart donor', 'ICD10_2010'), +('Z52.8', 'Donor of other organs and tissues', 'ICD10_2010'), +('Z52.9', 'Donor of unspecified organ or tissue', 'ICD10_2010'), +('Z53', 'Persons encountering health services for specific procedures, not carried out', 'ICD10_2010'), +('Z53.0', 'Procedure not carried out because of contraindication', 'ICD10_2010'), +('Z53.1', 'Procedure not carried out bacause patient\'s decision reasons belief and group pressure', 'ICD10_2010'), +('Z53.2', 'Procedure not carried out because patient\'s decision for other unspecified reasons', 'ICD10_2010'), +('Z53.8', 'Procedure not carried out for other reasons', 'ICD10_2010'), +('Z53.9', 'Procedure not carried out, unspecified reason', 'ICD10_2010'), +('Z54', 'Convalescence', 'ICD10_2010'), +('Z54.0', 'Convalescence following surgery', 'ICD10_2010'), +('Z54.1', 'Convalescence following radiotherapy', 'ICD10_2010'), +('Z54.2', 'Convalescence following chemotherapy', 'ICD10_2010'), +('Z54.3', 'Convalescence following psychotherapy', 'ICD10_2010'), +('Z54.4', 'Convalescence following treatment of fracture', 'ICD10_2010'), +('Z54.7', 'Convalescence following combined treatment', 'ICD10_2010'), +('Z54.8', 'Convalescence following other treatment', 'ICD10_2010'), +('Z54.9', 'Convalescence following unspecified treatment', 'ICD10_2010'), +('Z55', 'Problems related to education and literacy', 'ICD10_2010'), +('Z55.0', 'Illiteracy and low-level literacy', 'ICD10_2010'), +('Z55.1', 'Schooling unavailable and unattainable', 'ICD10_2010'), +('Z55.2', 'Failed examinations', 'ICD10_2010'), +('Z55.3', 'Underachievement in school', 'ICD10_2010'), +('Z55.4', 'Education maladjustment and discord with teachers and classmates', 'ICD10_2010'), +('Z55.8', 'Other problems related to education and literacy', 'ICD10_2010'), +('Z55.9', 'Problem related to education and literacy, unspecified', 'ICD10_2010'), +('Z56', 'Problems related to employment and unemployment', 'ICD10_2010'), +('Z56.0', 'Unemployment, unspecified', 'ICD10_2010'), +('Z56.1', 'Change of job', 'ICD10_2010'), +('Z56.2', 'Threat of job loss', 'ICD10_2010'), +('Z56.3', 'Stressful work schedule', 'ICD10_2010'), +('Z56.4', 'Discord with boss and workmates', 'ICD10_2010'), +('Z56.5', 'Uncongenial work', 'ICD10_2010'), +('Z56.6', 'Other physical and mental strain related to work', 'ICD10_2010'), +('Z56.7', 'Other and unspecified problems related to employment', 'ICD10_2010'), +('Z57', 'Occupational exposure to risk-factors', 'ICD10_2010'), +('Z57.0', 'Occupational exposure to noise', 'ICD10_2010'), +('Z57.1', 'Occupational exposure to radiation', 'ICD10_2010'), +('Z57.2', 'Occupational exposure to dust', 'ICD10_2010'), +('Z57.3', 'Occupational exposure to other air contaminants', 'ICD10_2010'), +('Z57.4', 'Occupational exposure to toxic agents in agriculture', 'ICD10_2010'), +('Z57.5', 'Occupational exposure to toxic agents in other industries', 'ICD10_2010'), +('Z57.6', 'Occupational exposure to extreme temperature', 'ICD10_2010'), +('Z57.7', 'Occupational exposure to vibration', 'ICD10_2010'), +('Z57.8', 'Occupational exposure to other risk-factors', 'ICD10_2010'), +('Z57.9', 'Occupational exposure to unspecified risk-factor', 'ICD10_2010'), +('Z58', 'Problems related to physical environment', 'ICD10_2010'), +('Z58.0', 'Exposure to noise', 'ICD10_2010'), +('Z58.1', 'Exposure to air pollution', 'ICD10_2010'), +('Z58.2', 'Exposure to water pollution', 'ICD10_2010'), +('Z58.3', 'Exposure to soil pollution', 'ICD10_2010'), +('Z58.4', 'Exposure to radiation', 'ICD10_2010'), +('Z58.5', 'Exposure to other pollution', 'ICD10_2010'), +('Z58.6', 'Inadequate drinking-water supply', 'ICD10_2010'), +('Z58.7', 'Exposure to tobacco smoke', 'ICD10_2010'), +('Z58.8', 'Other problems related to physical environment', 'ICD10_2010'), +('Z58.9', 'Problem related to physical environment, unspecified', 'ICD10_2010'), +('Z59', 'Problems related to housing and economic circumstances', 'ICD10_2010'), +('Z59.0', 'Homelessness', 'ICD10_2010'), +('Z59.1', 'Inadequate housing', 'ICD10_2010'), +('Z59.2', 'Discord with neighbours, lodgers and landlord', 'ICD10_2010'), +('Z59.3', 'Problems related to living in residential institution', 'ICD10_2010'), +('Z59.4', 'Lack of adequate food', 'ICD10_2010'), +('Z59.5', 'Extreme poverty', 'ICD10_2010'), +('Z59.6', 'Low income', 'ICD10_2010'), +('Z59.7', 'Insufficient social insurance and welfare support', 'ICD10_2010'), +('Z59.8', 'Other problems related to housing and economic circumstances', 'ICD10_2010'), +('Z59.9', 'Problem related to housing and economic circumstances, unspecified', 'ICD10_2010'), +('Z60', 'Problems related to social environment', 'ICD10_2010'), +('Z60.0', 'Problems of adjustment to life-cycle transitions', 'ICD10_2010'), +('Z60.1', 'Atypical parenting situation', 'ICD10_2010'), +('Z60.2', 'Living alone', 'ICD10_2010'), +('Z60.3', 'Acculturation difficulty', 'ICD10_2010'), +('Z60.4', 'Social exclusion and rejection', 'ICD10_2010'), +('Z60.5', 'Target of perceived adverse discrimination and persecution', 'ICD10_2010'), +('Z60.8', 'Other problems related to social environment', 'ICD10_2010'), +('Z60.9', 'Problem related to social environment, unspecified', 'ICD10_2010'), +('Z61', 'Problems related to negative life events in childhood', 'ICD10_2010'), +('Z61.0', 'Loss of love relationship in childhood', 'ICD10_2010'), +('Z61.1', 'Removal from home in childhood', 'ICD10_2010'), +('Z61.2', 'Altered pattern of family relationships in childhood', 'ICD10_2010'), +('Z61.3', 'Events resulting in loss of self-esteem in childhood', 'ICD10_2010'), +('Z61.4', 'Problems related to alleged sexual abuse of child by person within primary support group', 'ICD10_2010'), +('Z61.5', 'Problems related to alleged sexual abuse of child by person out primary support group', 'ICD10_2010'), +('Z61.6', 'Problems related to alleged physical abuse of child', 'ICD10_2010'), +('Z61.7', 'Personal frightening experience in childhood', 'ICD10_2010'), +('Z61.8', 'Other negative life events in childhood', 'ICD10_2010'), +('Z61.9', 'Negative life event in childhood, unspecified', 'ICD10_2010'), +('Z62', 'Other problems related to upbringing', 'ICD10_2010'), +('Z62.0', 'Inadequate parental supervision and control', 'ICD10_2010'), +('Z62.1', 'Parental overprotection', 'ICD10_2010'), +('Z62.2', 'Institutional upbringing', 'ICD10_2010'), +('Z62.3', 'Hostility towards and scapegoating of child', 'ICD10_2010'), +('Z62.4', 'Emotional neglect of child', 'ICD10_2010'), +('Z62.5', 'Other problems related to neglect in upbringing', 'ICD10_2010'), +('Z62.6', 'Inappropriate parental pressure and other abnormal qualities of upbringing', 'ICD10_2010'), +('Z62.8', 'Other specified problems related to upbringing', 'ICD10_2010'), +('Z62.9', 'Problem related to upbringing, unspecified', 'ICD10_2010'), +('Z63', 'Other problems related to primary support group, including family circumstances', 'ICD10_2010'), +('Z63.0', 'Problems in relationship with spouse or partner', 'ICD10_2010'), +('Z63.1', 'Problems in relationship with parents and in-laws', 'ICD10_2010'), +('Z63.2', 'Inadequate family support', 'ICD10_2010'), +('Z63.3', 'Absence of family member', 'ICD10_2010'), +('Z63.4', 'Disappearance and death of family member', 'ICD10_2010'), +('Z63.5', 'Disruption of family by separation and divorce', 'ICD10_2010'), +('Z63.6', 'Dependent relative needing care at home', 'ICD10_2010'), +('Z63.7', 'Other stressful life events affecting family and household', 'ICD10_2010'), +('Z63.8', 'Other specified problems related to primary support group', 'ICD10_2010'), +('Z63.9', 'Problem related to primary support group, unspecified', 'ICD10_2010'), +('Z64', 'Problems related to certain psychosocial circumstances', 'ICD10_2010'), +('Z64.0', 'Problems related to unwanted pregnancy', 'ICD10_2010'), +('Z64.1', 'Problems related to multiparity', 'ICD10_2010'), +('Z64.2', 'Seeking and accepting physical, nutritional and chemical intervention known to be hazardous harmful', 'ICD10_2010'), +('Z64.3', 'Seeking and accepting behavioural and psychological intervention known hazard and harmful', 'ICD10_2010'), +('Z64.4', 'Discord with counsellors', 'ICD10_2010'), +('Z65', 'Problems related to other psychosocial circumstances', 'ICD10_2010'), +('Z65.0', 'Conviction in civil and criminal proceedings without imprisonment', 'ICD10_2010'), +('Z65.1', 'Imprisonment and other incarceration', 'ICD10_2010'), +('Z65.2', 'Problems related to release from prison', 'ICD10_2010'), +('Z65.3', 'Problems related to other legal circumstances', 'ICD10_2010'), +('Z65.4', 'Victim of crime and terrorism', 'ICD10_2010'), +('Z65.5', 'Exposure to disaster, war and other hostilities', 'ICD10_2010'), +('Z65.8', 'Other specif problems related to psychosocial circumstances', 'ICD10_2010'), +('Z65.9', 'Problem related to unspecified psychosocial circumstances', 'ICD10_2010'), +('Z70', 'Counselling related to sexual attitude, behaviour and orientation', 'ICD10_2010'), +('Z70.0', 'Counselling related to sexual attitude', 'ICD10_2010'), +('Z70.1', 'Counselling related to patient\'s sexual behavior and orientation', 'ICD10_2010'), +('Z70.2', 'Counselling related to patient\'s sexual behavior and orientation of third party', 'ICD10_2010'), +('Z70.3', 'Counselling related to combined concerns regarding sexual attitude, behaviour and orientation', 'ICD10_2010'), +('Z70.8', 'Other sex counselling', 'ICD10_2010'), +('Z70.9', 'Sex counselling, unspecified', 'ICD10_2010'), +('Z71', 'Persons encountering health services for other counselling and medical advice, not elsewhere classified', 'ICD10_2010'), +('Z71.0', 'Person consulting on behalf of another person', 'ICD10_2010'), +('Z71.1', 'Person with feared complaint in whom no diagnosis is made', 'ICD10_2010'), +('Z71.2', 'Person consulting for explanation of investigation findings', 'ICD10_2010'), +('Z71.3', 'Dietary counselling and surveillance', 'ICD10_2010'), +('Z71.4', 'Alcohol abuse counselling and surveillance', 'ICD10_2010'), +('Z71.5', 'Drug abuse counselling and surveillance', 'ICD10_2010'), +('Z71.6', 'Tobacco abuse counselling', 'ICD10_2010'), +('Z71.7', 'Human immunodeficiency virus [HIV] counselling', 'ICD10_2010'), +('Z71.8', 'Other specified counselling', 'ICD10_2010'), +('Z71.9', 'Counselling, unspecified', 'ICD10_2010'), +('Z72', 'Problems related to lifestyle', 'ICD10_2010'), +('Z72.0', 'Tobacco use', 'ICD10_2010'), +('Z72.1', 'Alcohol use', 'ICD10_2010'), +('Z72.2', 'Drug use', 'ICD10_2010'), +('Z72.3', 'Lack of physical exercise', 'ICD10_2010'), +('Z72.4', 'Inappropriate diet and eating habits', 'ICD10_2010'), +('Z72.5', 'High-risk sexual behaviour', 'ICD10_2010'), +('Z72.6', 'Gambling and betting', 'ICD10_2010'), +('Z72.8', 'Other problems related to lifestyle', 'ICD10_2010'), +('Z72.9', 'Problem related to lifestyle, unspecified', 'ICD10_2010'), +('Z73', 'Problems related to life-management difficulty', 'ICD10_2010'), +('Z73.0', 'Burn-out', 'ICD10_2010'), +('Z73.1', 'Accentuation of personality traits', 'ICD10_2010'), +('Z73.2', 'Lack of relaxation and leisure act', 'ICD10_2010'), +('Z73.3', 'Stress, nec', 'ICD10_2010'), +('Z73.4', 'Inadequate social skills, nec', 'ICD10_2010'), +('Z73.5', 'Social role conflict, nec', 'ICD10_2010'), +('Z73.6', 'Limitation of activities due to disability', 'ICD10_2010'), +('Z73.8', 'Other problems related to life-management difficulty', 'ICD10_2010'), +('Z73.9', 'Problem related to life-management difficulty, unspecified', 'ICD10_2010'), +('Z74', 'Problems related to care-provider dependency', 'ICD10_2010'), +('Z74.0', 'Reduced mobility', 'ICD10_2010'), +('Z74.1', 'Need for assistance with personal care', 'ICD10_2010'), +('Z74.2', 'Need for assistance at home and no other household member able render care', 'ICD10_2010'), +('Z74.3', 'Need for continuous supervision', 'ICD10_2010'), +('Z74.8', 'Other problems related to care-provider dependency', 'ICD10_2010'), +('Z74.9', 'Problem related to care-provider dependency, unspecified', 'ICD10_2010'), +('Z75', 'Problems related to medical facilities and other health care', 'ICD10_2010'), +('Z75.0', 'Medical services not available in home', 'ICD10_2010'), +('Z75.1', 'Person awaiting admission to adequate facility elsewhere', 'ICD10_2010'), +('Z75.2', 'Other waiting period for investigation and treatment', 'ICD10_2010'), +('Z75.3', 'Unavailability and inaccessibility of health-care facilities', 'ICD10_2010'), +('Z75.4', 'Unavailability and inaccessibility of other helping agencies', 'ICD10_2010'), +('Z75.5', 'Holiday relief care', 'ICD10_2010'), +('Z75.8', 'Other problems related to medical facilities and other health care', 'ICD10_2010'), +('Z75.9', 'Unspecified problem related to medical facilities and other health care', 'ICD10_2010'), +('Z76', 'Persons encountering health services in other circumstances', 'ICD10_2010'), +('Z76.0', 'Issue of repeat prescription', 'ICD10_2010'), +('Z76.1', 'Health supervision and care of foundling', 'ICD10_2010'), +('Z76.2', 'Health supervision and care of other healthy infant and child', 'ICD10_2010'), +('Z76.3', 'Healthy person accompanying sick person', 'ICD10_2010'), +('Z76.4', 'Other boarder in health-care facility', 'ICD10_2010'), +('Z76.5', 'Malingerer [conscious simulation]', 'ICD10_2010'), +('Z76.8', 'Persons encountering health services in other specified circumstances', 'ICD10_2010'), +('Z76.9', 'Person encountering health services in unspecified circumstances', 'ICD10_2010'), +('Z80', 'Family history of malignant neoplasm', 'ICD10_2010'), +('Z80.0', 'Family history of malignant neoplasm of digestive organs', 'ICD10_2010'), +('Z80.1', 'Family history of malignant neoplasm of trachea, bronchus and lung', 'ICD10_2010'), +('Z80.2', 'Family history of malignant neoplasm of other respiratory and intrathoracic orgs', 'ICD10_2010'), +('Z80.3', 'Family history of malignant neoplasm of breast', 'ICD10_2010'), +('Z80.4', 'Family history of malignant neoplasm of genital organs', 'ICD10_2010'), +('Z80.5', 'Family history of malignant neoplasm of urinary tract', 'ICD10_2010'), +('Z80.6', 'Family history of leukaemia', 'ICD10_2010'), +('Z80.7', 'Famly history of other malignant neoplasms of lymphoid, heematopoietic and and related tissues', 'ICD10_2010'), +('Z80.8', 'Family history of malignant neoplasm of other organs or systems', 'ICD10_2010'), +('Z80.9', 'Family history of malignant neoplasm, unspecified', 'ICD10_2010'), +('Z81', 'Family history of mental and behavioural disorders', 'ICD10_2010'), +('Z81.0', 'Family history of mental retardation', 'ICD10_2010'), +('Z81.1', 'Family history of alcohol abuse', 'ICD10_2010'), +('Z81.2', 'Family history of tobacco abuse', 'ICD10_2010'), +('Z81.3', 'Family history of other psychoactive substance abuse', 'ICD10_2010'), +('Z81.4', 'Family history of other substance abuse', 'ICD10_2010'), +('Z81.8', 'Family history of other mental and behavioural disorders', 'ICD10_2010'), +('Z82', 'Family history of certain disabilities and chronic diseases leading to disablement', 'ICD10_2010'), +('Z82.0', 'Family history of epilepsy and other dis of the nervous sys', 'ICD10_2010'), +('Z82.1', 'Family history of blindness and visual loss', 'ICD10_2010'), +('Z82.2', 'Family history of deafness and hearing loss', 'ICD10_2010'), +('Z82.3', 'Family history of stroke', 'ICD10_2010'), +('Z82.4', 'Family history ischaemic heart disease and other disease of the circulatory system', 'ICD10_2010'), +('Z82.5', 'Family history of asthma and other chronic lower respiratory disease', 'ICD10_2010'), +('Z82.6', 'Family history of arthritis and other disease musculoskeletal system and connective tissue', 'ICD10_2010'), +('Z82.7', 'Family history of congenital malformations, deformation and chromosomal abnorms', 'ICD10_2010'), +('Z82.8', 'Family history of other disabilities and chronic disease leading disablement nec', 'ICD10_2010'), +('Z83', 'Family history of other specific disorders', 'ICD10_2010'), +('Z83.0', 'Family history of human immunodeficiency virus [HIV] disease', 'ICD10_2010'), +('Z83.1', 'Family history of other infectious and parasitic diseases', 'ICD10_2010'), +('Z83.2', 'Family history of disease of the blood and blood forming organs and certain disorder involving immune mechanism', 'ICD10_2010'), +('Z83.3', 'Family history of diabetes mellitus', 'ICD10_2010'), +('Z83.4', 'Fam hist of other endocrine, nutritional and metabolic diseases', 'ICD10_2010'), +('Z83.5', 'Family history of eye and ear disorders', 'ICD10_2010'), +('Z83.6', 'Family history of diseases of the respiratory system', 'ICD10_2010'), +('Z83.7', 'Family history of diseases of the digestive system', 'ICD10_2010'), +('Z84', 'Family history of other conditions', 'ICD10_2010'), +('Z84.0', 'Family history of diseases of the skin and subcutaneous tissue', 'ICD10_2010'), +('Z84.1', 'Family history of disorders of kidney and ureter', 'ICD10_2010'), +('Z84.2', 'Family history of other diseases of the genitourinary system', 'ICD10_2010'), +('Z84.3', 'Family history of consanguinity', 'ICD10_2010'), +('Z84.8', 'Family history of other specified conditions', 'ICD10_2010'), +('Z85', 'Personal history of malignant neoplasm', 'ICD10_2010'), +('Z85.0', 'Personal history of malignant neoplasm of digestive organs', 'ICD10_2010'), +('Z85.1', 'Personal history of malignant neoplasm of trachea, bronchus and lung', 'ICD10_2010'), +('Z85.2', 'Personal history malignant neoplasm of other respiratory and intrathoracic organs', 'ICD10_2010'), +('Z85.3', 'Personal history of malignant neoplasm of breast', 'ICD10_2010'), +('Z85.4', 'Personal history of malignant neoplasm of genital organs', 'ICD10_2010'), +('Z85.5', 'Personal history of malignant neoplasm of urinary tract', 'ICD10_2010'), +('Z85.6', 'Personal history of leukaemia', 'ICD10_2010'), +('Z85.7', 'Personal history of other malignant neoplasms of lymphoid haematopoietic and related tissue', 'ICD10_2010'), +('Z85.8', 'Personal history of malignant neoplasms of other organs and system', 'ICD10_2010'), +('Z85.9', 'Personal history of malignant neoplasm, unspecified', 'ICD10_2010'), +('Z86', 'Personal history of certain other diseases', 'ICD10_2010'), +('Z86.0', 'Personal history of other neoplasms', 'ICD10_2010'), +('Z86.1', 'Personal history of infectious and parasitic diseases', 'ICD10_2010'), +('Z86.2', 'Personal history of disease of the blood and blood-forming organs and certain disorders involving the immune mechanism', 'ICD10_2010'), +('Z86.3', 'Personal history of endocrine, nutritional and metabolic diseases', 'ICD10_2010'), +('Z86.4', 'Personal history of psychoactive substance abuse', 'ICD10_2010'), +('Z86.5', 'Personal history of other mental and behavioural disorders', 'ICD10_2010'), +('Z86.6', 'Personal history of disease of the nervous system and sense organs', 'ICD10_2010'), +('Z86.7', 'Personal history of diseases of the circulatory system', 'ICD10_2010'), +('Z87', 'Personal history of other diseases and conditions', 'ICD10_2010'), +('Z87.0', 'Personal history of diseases of the respiratory system', 'ICD10_2010'), +('Z87.1', 'Personal history of diseases of the digestive system', 'ICD10_2010'), +('Z87.2', 'Personal history of disease of the skin and subcutaneous tissue', 'ICD10_2010'), +('Z87.3', 'Personal history of disease of the musculoskeletal system and connective tissue', 'ICD10_2010'), +('Z87.4', 'Personal history of diseases of the genitourinary system', 'ICD10_2010'), +('Z87.5', 'Personal history complications of pregnancy, childbirth and the puerperium', 'ICD10_2010'), +('Z87.6', 'Personal history of certain conditions arising in perinatal period', 'ICD10_2010'), +('Z87.7', 'Personal history of congenital malformations, deformations and chromosomal abnomalities', 'ICD10_2010'); +INSERT INTO `icd10` (`ID_ICD10`, `Diagnosa`, `Versi_ICD10`) VALUES +('Z87.8', 'Personal history of other specified conditions', 'ICD10_2010'), +('Z88', 'Personal history of allergy to drugs, medicaments and biological substances', 'ICD10_2010'), +('Z88.0', 'Personal history of allergy to penicillin', 'ICD10_2010'), +('Z88.1', 'Personal history of allergy to other antibiotic agents', 'ICD10_2010'), +('Z88.2', 'Personal history of allergy to sulfonamides', 'ICD10_2010'), +('Z88.3', 'Personal history of allergy to other anti-infective agents', 'ICD10_2010'), +('Z88.4', 'Personal history of allergy to anaesthetic agent', 'ICD10_2010'), +('Z88.5', 'Personal history of allergy to narcotic agent', 'ICD10_2010'), +('Z88.6', 'Personal history of allergy to analgesic agent', 'ICD10_2010'), +('Z88.7', 'Personal history of allergy to serum and vaccine', 'ICD10_2010'), +('Z88.8', 'Personal history of allergy to other drugs, medicaments and biological substances', 'ICD10_2010'), +('Z88.9', 'Personal history of allergy to unspecified drugs, medicaments and biological substances', 'ICD10_2010'), +('Z89', 'Acquired absence of limb', 'ICD10_2010'), +('Z89.0', 'Acquired absence of finger(s) [including thumb], unilateral', 'ICD10_2010'), +('Z89.1', 'Acquired absence of hand and wrist', 'ICD10_2010'), +('Z89.2', 'Acquired absence of upper limb above wrist', 'ICD10_2010'), +('Z89.3', 'Acquired absence of both upper limbs [any level]', 'ICD10_2010'), +('Z89.4', 'Acquired absence of foot and ankle', 'ICD10_2010'), +('Z89.5', 'Acquired absence of leg at or below knee', 'ICD10_2010'), +('Z89.6', 'Acquired absence of leg above knee', 'ICD10_2010'), +('Z89.7', 'Acquired absence of both lower limbs [any level, except toes alone]', 'ICD10_2010'), +('Z89.8', 'Acquired absence of upper and lower limbs [any level]', 'ICD10_2010'), +('Z89.9', 'Acquired absence of limb, unspecified', 'ICD10_2010'), +('Z90', 'Acquired absence of organs, not elsewhere classified', 'ICD10_2010'), +('Z90.0', 'Acquired absence of part of head and neck', 'ICD10_2010'), +('Z90.1', 'Acquired absence of breast(s)', 'ICD10_2010'), +('Z90.2', 'Acquired absence of lung [part of]', 'ICD10_2010'), +('Z90.3', 'Acquired absence of part of stomach', 'ICD10_2010'), +('Z90.4', 'Acquired absence of other parts of digestive tract', 'ICD10_2010'), +('Z90.5', 'Acquired absence of kidney', 'ICD10_2010'), +('Z90.6', 'Acquired absence of other organs of urinary tract', 'ICD10_2010'), +('Z90.7', 'Acquired absence of genital organ(s)', 'ICD10_2010'), +('Z90.8', 'Acquired absence of other organs', 'ICD10_2010'), +('Z91', 'Personal history of risk-factors, not elsewhere classified', 'ICD10_2010'), +('Z91.0', 'Personal hist of allergy oth than to drugs and biol subs', 'ICD10_2010'), +('Z91.1', 'Personal hist noncompliance with med treatment and regimen', 'ICD10_2010'), +('Z91.2', 'Personal history of poor personal hygiene', 'ICD10_2010'), +('Z91.3', 'Personal history of unhealthy sleep-wake schedule', 'ICD10_2010'), +('Z91.4', 'Personal history of psychological trauma nec', 'ICD10_2010'), +('Z91.5', 'Personal history of self-harm', 'ICD10_2010'), +('Z91.6', 'Personal history of other physical trauma', 'ICD10_2010'), +('Z91.8', 'Personal history of other specified risk-factors nec', 'ICD10_2010'), +('Z92', 'Personal history of medical treatment', 'ICD10_2010'), +('Z92.0', 'Personal history of contraception', 'ICD10_2010'), +('Z92.1', 'Personal history long -term (current) use of anticoagulants', 'ICD10_2010'), +('Z92.2', 'Personal history of long-term use of other medicaments', 'ICD10_2010'), +('Z92.3', 'Personal history of irradiation', 'ICD10_2010'), +('Z92.4', 'Personal history of major surgery, nec', 'ICD10_2010'), +('Z92.5', 'Personal history of rehabilitation measures', 'ICD10_2010'), +('Z92.6', 'Personal history of chemotheraphy for neoplastic disease', 'ICD10_2010'), +('Z92.8', 'Personal history of other medical treatment', 'ICD10_2010'), +('Z92.9', 'Personal history of medical treatment, unspecified', 'ICD10_2010'), +('Z93', 'Artificial opening status', 'ICD10_2010'), +('Z93.0', 'Tracheostomy status', 'ICD10_2010'), +('Z93.1', 'Gastrostomy status', 'ICD10_2010'), +('Z93.2', 'Ileostomy status', 'ICD10_2010'), +('Z93.3', 'Colostomy status', 'ICD10_2010'), +('Z93.4', 'Other artificial openings of gastrointestinal tract status', 'ICD10_2010'), +('Z93.5', 'Cystostomy status', 'ICD10_2010'), +('Z93.6', 'Other artificial openings of urinary tract status', 'ICD10_2010'), +('Z93.8', 'Other artificial opening status', 'ICD10_2010'), +('Z93.9', 'Artificial opening status, unspecified', 'ICD10_2010'), +('Z94', 'Transplanted organ and tissue status', 'ICD10_2010'), +('Z94.0', 'Kidney transplant status', 'ICD10_2010'), +('Z94.1', 'Heart transplant status', 'ICD10_2010'), +('Z94.2', 'Lung transplant status', 'ICD10_2010'), +('Z94.3', 'Heart and lungs transplant status', 'ICD10_2010'), +('Z94.4', 'Liver transplant status', 'ICD10_2010'), +('Z94.5', 'Skin transplant status', 'ICD10_2010'), +('Z94.6', 'Bone transplant status', 'ICD10_2010'), +('Z94.7', 'Corneal transplant status', 'ICD10_2010'), +('Z94.8', 'Other transplanted organ and tissue status', 'ICD10_2010'), +('Z94.9', 'Transplanted organ and tissue status, unspecified', 'ICD10_2010'), +('Z95', 'Presence of cardiac and vascular implants and grafts', 'ICD10_2010'), +('Z95.0', 'Presence of cardiac pacemaker', 'ICD10_2010'), +('Z95.1', 'Presence of aortocoronary bypass graft', 'ICD10_2010'), +('Z95.2', 'Presence of prosthetic heart valve', 'ICD10_2010'), +('Z95.3', 'Presence of xenogenic heart valve', 'ICD10_2010'), +('Z95.4', 'Presence of other heart-valve replacement', 'ICD10_2010'), +('Z95.5', 'Presence of coronary angioplasty implant and graft', 'ICD10_2010'), +('Z95.8', 'Presence of other cardiac and vascular implants and grafts', 'ICD10_2010'), +('Z95.9', 'Presence of cardiac and vascular implant and graft unspec act', 'ICD10_2010'), +('Z96', 'Presence of other functional implants', 'ICD10_2010'), +('Z96.0', 'Presence of urogenital implants', 'ICD10_2010'), +('Z96.1', 'Presence of intraocular lens', 'ICD10_2010'), +('Z96.2', 'Presence of otological and audiological implants', 'ICD10_2010'), +('Z96.3', 'Presence of artificial larynx', 'ICD10_2010'), +('Z96.4', 'Presence of endocrine implants', 'ICD10_2010'), +('Z96.5', 'Presence of tooth-root and mandibular implants', 'ICD10_2010'), +('Z96.6', 'Presence of orthopaedic joint implants', 'ICD10_2010'), +('Z96.7', 'Presence of other bone and tendon implants', 'ICD10_2010'), +('Z96.8', 'Presence of other specified functional implants', 'ICD10_2010'), +('Z96.9', 'Presence of functional implant, unspecified', 'ICD10_2010'), +('Z97', 'Presence of other devices', 'ICD10_2010'), +('Z97.0', 'Presence of artificial eye', 'ICD10_2010'), +('Z97.1', 'Presence of artificial limb (complete)(partial)', 'ICD10_2010'), +('Z97.2', 'Presence of dental prosthetic device (complete)(partial)', 'ICD10_2010'), +('Z97.3', 'Presence of spectacles and contact lenses', 'ICD10_2010'), +('Z97.4', 'Presence of external hearing-aid', 'ICD10_2010'), +('Z97.5', 'Presence of (intrauterine) contraceptive device', 'ICD10_2010'), +('Z97.8', 'Presence of other specified devices', 'ICD10_2010'), +('Z98', 'Other postsurgical states', 'ICD10_2010'), +('Z98.0', 'Intestinal bypass and anastomosis status', 'ICD10_2010'), +('Z98.1', 'Arthrodesis status', 'ICD10_2010'), +('Z98.2', 'Presence of cerebrospinal fluid drainage device', 'ICD10_2010'), +('Z98.8', 'Other specified postsurgical states', 'ICD10_2010'), +('Z99', 'Dependence on enabling machines and devices, not elsewhere classified', 'ICD10_2010'), +('Z99.0', 'Dependence on aspirator', 'ICD10_2010'), +('Z99.1', 'Dependence on respirator', 'ICD10_2010'), +('Z99.2', 'Dependence on renal dialysis', 'ICD10_2010'), +('Z99.3', 'Dependence on wheelchair', 'ICD10_2010'), +('Z99.8', 'Dependence on other enabling machines and devices', 'ICD10_2010'), +('Z99.9', 'Dependence on unspecified enabling machine and device', 'ICD10_2010'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `ina_cbg_rawatinap` +-- + +CREATE TABLE `ina_cbg_rawatinap` ( + `ID_INACBG_RI` varchar(20) NOT NULL, + `Tindakan_RI` varchar(150) DEFAULT NULL, + `Tarif_Kelas_3` decimal(15,2) DEFAULT NULL, + `Tarif_Kelas_2` decimal(15,2) DEFAULT NULL, + `Tarif_Kelas_1` decimal(15,2) DEFAULT NULL +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; + +-- +-- Dumping data for table `ina_cbg_rawatinap` +-- + +INSERT INTO `ina_cbg_rawatinap` (`ID_INACBG_RI`, `Tindakan_RI`, `Tarif_Kelas_3`, `Tarif_Kelas_2`, `Tarif_Kelas_1`) VALUES +('A-4-10-I', 'SEPTIKEMIA (RINGAN)', 3702300.00, 4313200.00, 4924100.00), +('A-4-10-II', 'SEPTIKEMIA (SEDANG)', 6323900.00, 7367300.00, 8410800.00), +('A-4-10-III', 'SEPTIKEMIA (BERAT)', 8526600.00, 9933500.00, 11340400.00), +('A-4-11-I', 'INFEKSI SESUDAH OPERASI & TRAUMA (RINGAN)', 4917700.00, 5729100.00, 6540500.00), +('A-4-11-II', 'INFEKSI SESUDAH OPERASI & TRAUMA (SEDANG)', 6465700.00, 7532500.00, 8599300.00), +('A-4-11-III', 'INFEKSI SESUDAH OPERASI & TRAUMA (BERAT)', 8841500.00, 10300300.00, 11759200.00), +('A-4-12-I', 'DEMAM YANG TIDAK DITENTUKAN (RINGAN)', 2927100.00, 3410100.00, 3893100.00), +('A-4-12-II', 'DEMAM YANG TIDAK DITENTUKAN (SEDANG)', 5052600.00, 5886300.00, 6720000.00), +('A-4-12-III', 'DEMAM YANG TIDAK DITENTUKAN (BERAT)', 7279900.00, 8481100.00, 9682300.00), +('A-4-13-I', 'INFEKSI VIRAL & NON-BAKTERIAL LAIN (RINGAN)', 2178600.00, 2538100.00, 2897600.00), +('A-4-13-II', 'INFEKSI VIRAL & NON-BAKTERIAL LAIN (SEDANG)', 3850100.00, 4485400.00, 5120700.00), +('A-4-13-III', 'INFEKSI VIRAL & NON-BAKTERIAL LAIN (BERAT)', 4620100.00, 5382400.00, 6144800.00), +('A-4-14-I', 'PENYAKIT INFEKSI BAKTERI DAN PARASIT LAIN-LAIN (RINGAN)', 2449100.00, 2853200.00, 3257300.00), +('A-4-14-II', 'PENYAKIT INFEKSI BAKTERI DAN PARASIT LAIN-LAIN (SEDANG)', 4106400.00, 4784000.00, 5461500.00), +('A-4-14-III', 'PENYAKIT INFEKSI BAKTERI DAN PARASIT LAIN-LAIN (BERAT)', 4927700.00, 5740800.00, 6553800.00), +('A-4-15-I', 'INFEKSI HIV (RINGAN)', 19053700.00, 22197500.00, 25341300.00), +('A-4-15-II', 'INFEKSI HIV (SEDANG)', 23728100.00, 27643200.00, 31558300.00), +('A-4-15-III', 'INFEKSI HIV (BERAT)', 26806100.00, 31229100.00, 35652100.00), +('B-1-01-I', 'PENCANGKOKAN HATI (RINGAN)', 300709600.00, 350326600.00, 399943700.00), +('B-1-01-II', 'PENCANGKOKAN HATI (SEDANG)', 303348900.00, 353401500.00, 403454000.00), +('B-1-01-III', 'PENCANGKOKAN HATI (BERAT)', 306473400.00, 357041500.00, 407609600.00), +('B-1-10-I', 'PROSEDUR HATI DAN PANKREAS (RINGAN)', 13222300.00, 15404000.00, 17585700.00), +('B-1-10-II', 'PROSEDUR HATI DAN PANKREAS (SEDANG)', 20950400.00, 24407200.00, 27864000.00), +('B-1-10-III', 'PROSEDUR HATI DAN PANKREAS (BERAT)', 37209400.00, 43348900.00, 49488500.00), +('B-1-11-I', 'PROSEDUR SALURAN EMPEDU KOMPLEK (RINGAN)', 33886600.00, 39477900.00, 45069200.00), +('B-1-11-II', 'PROSEDUR SALURAN EMPEDU KOMPLEK (SEDANG)', 40377600.00, 47039900.00, 53702300.00), +('B-1-11-III', 'PROSEDUR SALURAN EMPEDU KOMPLEK (BERAT)', 62394800.00, 72689900.00, 82985100.00), +('B-1-12-I', 'CHOLESISTEKTOMI TANPA LAPAROSKOPIK (RINGAN)', 9971600.00, 11616900.00, 13262300.00), +('B-1-12-II', 'CHOLESISTEKTOMI TANPA LAPAROSKOPIK (SEDANG)', 11090300.00, 12920200.00, 14750100.00), +('B-1-12-III', 'CHOLESISTEKTOMI TANPA LAPAROSKOPIK (BERAT)', 17349400.00, 20212100.00, 23074800.00), +('B-1-13-I', 'PROSEDUR PANKREAS DAN HEPATOBILLIARI LAIN-LAIN (RINGAN)', 9781900.00, 11395900.00, 13009900.00), +('B-1-13-II', 'PROSEDUR PANKREAS DAN HEPATOBILLIARI LAIN-LAIN (SEDANG)', 13771600.00, 16043900.00, 18316100.00), +('B-1-13-III', 'PROSEDUR PANKREAS DAN HEPATOBILLIARI LAIN-LAIN (BERAT)', 20430100.00, 23801000.00, 27172000.00), +('B-1-14-I', 'CHOLESISTEKTOMI DENGAN LAPAROSKOPIK (RINGAN)', 20809300.00, 24242800.00, 27676400.00), +('B-1-14-II', 'CHOLESISTEKTOMI DENGAN LAPAROSKOPIK (SEDANG)', 21855600.00, 25461800.00, 29068000.00), +('B-1-14-III', 'CHOLESISTEKTOMI DENGAN LAPAROSKOPIK (BERAT)', 38688200.00, 45071800.00, 51455400.00), +('B-4-10-I', 'SIROSIS HATI DAN HEPATITIS ALKOHOLIK (RINGAN)', 4394400.00, 5119500.00, 5844500.00), +('B-4-10-II', 'SIROSIS HATI DAN HEPATITIS ALKOHOLIK (SEDANG)', 5729800.00, 6675200.00, 7620700.00), +('B-4-10-III', 'SIROSIS HATI DAN HEPATITIS ALKOHOLIK (BERAT)', 8692500.00, 10126700.00, 11561000.00), +('B-4-11-I', 'TUMOR SISTEM HEPATOBILLIARI DAN PANCREAS (RINGAN)', 7119100.00, 8293800.00, 9468500.00), +('B-4-11-II', 'TUMOR SISTEM HEPATOBILLIARI DAN PANCREAS (SEDANG)', 9966900.00, 11611400.00, 13256000.00), +('B-4-11-III', 'TUMOR SISTEM HEPATOBILLIARI DAN PANCREAS (BERAT)', 12074700.00, 14067000.00, 16059400.00), +('B-4-12-I', 'GANGGUAN PANKREAS SELAIN TUMOR (RINGAN)', 6935700.00, 8080100.00, 9224500.00), +('B-4-12-II', 'GANGGUAN PANKREAS SELAIN TUMOR (SEDANG)', 10075800.00, 11738300.00, 13400800.00), +('B-4-12-III', 'GANGGUAN PANKREAS SELAIN TUMOR (BERAT)', 13636000.00, 15885900.00, 18135900.00), +('B-4-13-I', 'GANGGUAN HATI LAIN-LAIN (RINGAN)', 6139900.00, 7153000.00, 8166100.00), +('B-4-13-II', 'GANGGUAN HATI LAIN-LAIN (SEDANG)', 7152800.00, 8333000.00, 9513200.00), +('B-4-13-III', 'GANGGUAN HATI LAIN-LAIN (BERAT)', 9853500.00, 11479300.00, 13105200.00), +('B-4-14-I', 'GANGGUAN SALURAN EMPEDU LAIN-LAIN (RINGAN)', 6133400.00, 7145400.00, 8157400.00), +('B-4-14-II', 'GANGGUAN SALURAN EMPEDU LAIN-LAIN (SEDANG)', 7155300.00, 8335900.00, 9516600.00), +('B-4-14-III', 'GANGGUAN SALURAN EMPEDU LAIN-LAIN (BERAT)', 9584700.00, 11166200.00, 12747700.00), +('C-4-10-I', 'LEUKEMIA AKUT (RINGAN)', 12422400.00, 14472100.00, 16521800.00), +('C-4-10-II', 'LEUKEMIA AKUT (SEDANG)', 19978600.00, 23275100.00, 26571600.00), +('C-4-10-III', 'LEUKEMIA AKUT (BERAT)', 37433400.00, 43609900.00, 49786400.00), +('C-4-11-I', 'LIMFOMA & LEUKEMIA NON AKUT (RINGAN)', 6466300.00, 7533200.00, 8600200.00), +('C-4-11-II', 'LIMFOMA & LEUKEMIA NON AKUT (SEDANG)', 8652800.00, 10080500.00, 11508300.00), +('C-4-11-III', 'LIMFOMA & LEUKEMIA NON AKUT (BERAT)', 13303800.00, 15498900.00, 17694100.00), +('C-4-12-I', 'RADIOTERAPI (RINGAN)', 7256600.00, 8453900.00, 9651200.00), +('C-4-12-II', 'RADIOTERAPI (SEDANG)', 13001300.00, 15146400.00, 17291600.00), +('C-4-12-III', 'RADIOTERAPI (BERAT)', 21779100.00, 25372600.00, 28966200.00), +('C-4-13-I', 'KEMOTERAPI (RINGAN)', 3236800.00, 3770900.00, 4305000.00), +('C-4-13-II', 'KEMOTERAPI (SEDANG)', 6091700.00, 7096800.00, 8102000.00), +('C-4-13-III', 'KEMOTERAPI (BERAT)', 8246100.00, 9606700.00, 10967400.00), +('C-4-14-I', 'TUMOR MYELOPROLIFERATIF LAIN-LAIN (RINGAN)', 5719900.00, 6663600.00, 7607400.00), +('C-4-14-II', 'TUMOR MYELOPROLIFERATIF LAIN-LAIN (SEDANG)', 7604800.00, 8859600.00, 10114400.00), +('C-4-14-III', 'TUMOR MYELOPROLIFERATIF LAIN-LAIN (BERAT)', 11241000.00, 13095800.00, 14950600.00), +('D-1-10-I', 'PENCANGKOKAN SUMSUM TULANG (RINGAN)', 32492900.00, 37854200.00, 43215600.00), +('D-1-10-II', 'PENCANGKOKAN SUMSUM TULANG (SEDANG)', 49488900.00, 57654600.00, 65820300.00), +('D-1-10-III', 'PENCANGKOKAN SUMSUM TULANG (BERAT)', 70923000.00, 82625300.00, 94327600.00), +('D-1-11-I', 'PROSEDUR LIMPA (RINGAN)', 11289200.00, 13151900.00, 15014600.00), +('D-1-11-II', 'PROSEDUR LIMPA (SEDANG)', 22214300.00, 25879700.00, 29545000.00), +('D-1-11-III', 'PROSEDUR LIMPA (BERAT)', 28868400.00, 33631700.00, 38395000.00), +('D-1-20-I', 'PROSEDUR PADA DARAH DAN ORGAN PEMBENTUK DARAH LAIN-LAIN (RINGAN)', 7541600.00, 8786000.00, 10030400.00), +('D-1-20-II', 'PROSEDUR PADA DARAH DAN ORGAN PEMBENTUK DARAH LAIN-LAIN (SEDANG)', 20783600.00, 24212900.00, 27642200.00), +('D-1-20-III', 'PROSEDUR PADA DARAH DAN ORGAN PEMBENTUK DARAH LAIN-LAIN (BERAT)', 32968800.00, 38408600.00, 43848500.00), +('D-4-10-I', 'AGRANULOSITOSIS (RINGAN)', 3290400.00, 3833300.00, 4376200.00), +('D-4-10-II', 'AGRANULOSITOSIS (SEDANG)', 5185200.00, 6040700.00, 6896300.00), +('D-4-10-III', 'AGRANULOSITOSIS (BERAT)', 7981500.00, 9298400.00, 10615400.00), +('D-4-11-I', 'GANGGUAN PEMBEKUAN DARAH (RINGAN)', 5904100.00, 6878300.00, 7852500.00), +('D-4-11-II', 'GANGGUAN PEMBEKUAN DARAH (SEDANG)', 10609400.00, 12359900.00, 14110500.00), +('D-4-11-III', 'GANGGUAN PEMBEKUAN DARAH (BERAT)', 14574600.00, 16979400.00, 19384300.00), +('D-4-12-I', 'KRISIS ANEMIA SEL SICKLE (RINGAN)', 5264500.00, 6133100.00, 7001700.00), +('D-4-12-II', 'KRISIS ANEMIA SEL SICKLE (SEDANG)', 7301900.00, 8506700.00, 9711600.00), +('D-4-12-III', 'KRISIS ANEMIA SEL SICKLE (BERAT)', 10841100.00, 12629900.00, 14418700.00), +('D-4-13-I', 'GANGGUAN SEL DARAH MERAH SELAIN KRISIS ANEMIA SEL SICKLE (RINGAN)', 4362200.00, 5081900.00, 5801700.00), +('D-4-13-II', 'GANGGUAN SEL DARAH MERAH SELAIN KRISIS ANEMIA SEL SICKLE (SEDANG)', 6173900.00, 7192600.00, 8211300.00), +('D-4-13-III', 'GANGGUAN SEL DARAH MERAH SELAIN KRISIS ANEMIA SEL SICKLE (BERAT)', 7896600.00, 9199500.00, 10502500.00), +('D-4-14-I', 'GANGGUAN PADA DARAH & ORGAN PEMBENTUK DARAH LAIN-LAIN (RINGAN)', 4678500.00, 5450500.00, 6222500.00), +('D-4-14-II', 'GANGGUAN PADA DARAH & ORGAN PEMBENTUK DARAH LAIN-LAIN (SEDANG)', 7660000.00, 8923900.00, 10187800.00), +('D-4-14-III', 'GANGGUAN PADA DARAH & ORGAN PEMBENTUK DARAH LAIN-LAIN (BERAT)', 9368900.00, 10914800.00, 12460700.00), +('E-1-01-I', 'PROSEDUR KELENJAR PITUITARI DAN PINEAL (RINGAN)', 18442100.00, 21485100.00, 24528000.00), +('E-1-01-II', 'PROSEDUR KELENJAR PITUITARI DAN PINEAL (SEDANG)', 21095200.00, 24575900.00, 28056600.00), +('E-1-01-III', 'PROSEDUR KELENJAR PITUITARI DAN PINEAL (BERAT)', 36392700.00, 42397500.00, 48402300.00), +('E-1-10-I', 'PROSEDUR KELENJAR ADRENAL (RINGAN)', 13969800.00, 16274800.00, 18579800.00), +('E-1-10-II', 'PROSEDUR KELENJAR ADRENAL (SEDANG)', 18368700.00, 21399500.00, 24430400.00), +('E-1-10-III', 'PROSEDUR KELENJAR ADRENAL (BERAT)', 32880000.00, 38305200.00, 43730400.00), +('E-1-20-I', 'PROSEDUR PADA TIROID, PARATIROID DAN SALURAN TIROGLOSAL (RINGAN)', 10976800.00, 12788000.00, 14599200.00), +('E-1-20-II', 'PROSEDUR PADA TIROID, PARATIROID DAN SALURAN TIROGLOSAL (SEDANG)', 14774500.00, 17212300.00, 19650100.00), +('E-1-20-III', 'PROSEDUR PADA TIROID, PARATIROID DAN SALURAN TIROGLOSAL (BERAT)', 20362200.00, 23722000.00, 27081800.00), +('E-4-10-I', 'PENYAKIT KENCING MANIS & GANGGUAN NUTRISI/ METABOLIK (RINGAN)', 3884700.00, 4525700.00, 5166700.00), +('E-4-10-II', 'PENYAKIT KENCING MANIS & GANGGUAN NUTRISI/ METABOLIK (SEDANG)', 7524000.00, 8765400.00, 10006900.00), +('E-4-10-III', 'PENYAKIT KENCING MANIS & GANGGUAN NUTRISI/ METABOLIK (BERAT)', 12607200.00, 14687400.00, 16767600.00), +('E-4-11-I', 'HIPOVOLEMIA & GANGGUAN ELEKROLIT (RINGAN)', 4315200.00, 5027200.00, 5739300.00), +('E-4-11-II', 'HIPOVOLEMIA & GANGGUAN ELEKROLIT (SEDANG)', 6578900.00, 7664400.00, 8750000.00), +('E-4-11-III', 'HIPOVOLEMIA & GANGGUAN ELEKROLIT (BERAT)', 8914900.00, 10385800.00, 11856800.00), +('E-4-12-I', 'GANGGUAN METABOLIK BAWAAN (RINGAN)', 4958100.00, 5776200.00, 6594300.00), +('E-4-12-II', 'GANGGUAN METABOLIK BAWAAN (SEDANG)', 8586200.00, 10002900.00, 11419700.00), +('E-4-12-III', 'GANGGUAN METABOLIK BAWAAN (BERAT)', 10177800.00, 11857100.00, 13536500.00), +('E-4-13-I', 'GANGGUAN KELENJAR ENDOKRIN LAIN-LAIN (RINGAN)', 5399200.00, 6290100.00, 7181000.00), +('E-4-13-II', 'GANGGUAN KELENJAR ENDOKRIN LAIN-LAIN (SEDANG)', 7908800.00, 9213800.00, 10518800.00), +('E-4-13-III', 'GANGGUAN KELENJAR ENDOKRIN LAIN-LAIN (BERAT)', 10338500.00, 12044300.00, 13750200.00), +('F-4-10-I', 'SCHIZOFRENIA (RINGAN)', 5748200.00, 6696600.00, 7645100.00), +('F-4-10-II', 'SCHIZOFRENIA (SEDANG)', 6606300.00, 7696300.00, 8786400.00), +('F-4-10-III', 'SCHIZOFRENIA (BERAT)', 7927600.00, 9235600.00, 10543700.00), +('F-4-11-I', 'DEPRESI MAYOR (RINGAN)', 6309700.00, 7350800.00, 8391900.00), +('F-4-11-II', 'DEPRESI MAYOR (SEDANG)', 6477300.00, 7546000.00, 8614800.00), +('F-4-11-III', 'DEPRESI MAYOR (BERAT)', 8306200.00, 9676700.00, 11047300.00), +('F-4-12-I', 'GANGGUAN PERSONALITI & KONTROL IMPULSE (RINGAN)', 3679400.00, 4286500.00, 4893600.00), +('F-4-12-II', 'GANGGUAN PERSONALITI & KONTROL IMPULSE (SEDANG)', 5410900.00, 6303600.00, 7196400.00), +('F-4-12-III', 'GANGGUAN PERSONALITI & KONTROL IMPULSE (BERAT)', 10826100.00, 12612400.00, 14398700.00), +('F-4-13-I', 'GANGGUAN BIPOLAR (RINGAN)', 4478200.00, 5217100.00, 5956100.00), +('F-4-13-II', 'GANGGUAN BIPOLAR (SEDANG)', 7285300.00, 8487300.00, 9689400.00), +('F-4-13-III', 'GANGGUAN BIPOLAR (BERAT)', 9298600.00, 10832800.00, 12367100.00), +('F-4-14-I', 'DEPRESI (RINGAN)', 2555100.00, 2976700.00, 3398300.00), +('F-4-14-II', 'DEPRESI (SEDANG)', 3277200.00, 3817900.00, 4358700.00), +('F-4-14-III', 'DEPRESI (BERAT)', 5117700.00, 5962100.00, 6806500.00), +('F-4-15-I', 'FOBIA,ANXIETAS DAN NEUROSIS LAIN-LAIN (RINGAN)', 4069100.00, 4740500.00, 5411900.00), +('F-4-15-II', 'FOBIA,ANXIETAS DAN NEUROSIS LAIN-LAIN (SEDANG)', 6063400.00, 7063900.00, 8064400.00), +('F-4-15-III', 'FOBIA,ANXIETAS DAN NEUROSIS LAIN-LAIN (BERAT)', 8005600.00, 9326500.00, 10647500.00), +('F-4-16-I', 'GANGGUAN ORGANIK LAIN-LAIN TERMASUK KETERBELAKANGAN MENTAL (RINGAN)', 8006100.00, 9327100.00, 10648100.00), +('F-4-16-II', 'GANGGUAN ORGANIK LAIN-LAIN TERMASUK KETERBELAKANGAN MENTAL (SEDANG)', 9308300.00, 10844200.00, 12380100.00), +('F-4-16-III', 'GANGGUAN ORGANIK LAIN-LAIN TERMASUK KETERBELAKANGAN MENTAL (BERAT)', 12425000.00, 14475100.00, 16525300.00), +('F-4-17-I', 'GANGGUAN MENTAL PADA KANAK-KANAK (RINGAN)', 2551000.00, 2971900.00, 3392800.00), +('F-4-17-II', 'GANGGUAN MENTAL PADA KANAK-KANAK (SEDANG)', 6706600.00, 7813200.00, 8919800.00), +('F-4-17-III', 'GANGGUAN MENTAL PADA KANAK-KANAK (BERAT)', 7201300.00, 8389500.00, 9577800.00), +('F-4-18-I', 'GANGGUAN NUTRISI KOMPULSIF (RINGAN)', 6956700.00, 8104500.00, 9252400.00), +('F-4-18-II', 'GANGGUAN NUTRISI KOMPULSIF (SEDANG)', 8702300.00, 10138100.00, 11574000.00), +('F-4-18-III', 'GANGGUAN NUTRISI KOMPULSIF (BERAT)', 13490400.00, 15716300.00, 17942200.00), +('F-4-19-I', 'GANGGUAN MENTAL LAIN-LAIN (RINGAN)', 5982700.00, 6969900.00, 7957000.00), +('F-4-19-II', 'GANGGUAN MENTAL LAIN-LAIN (SEDANG)', 6808100.00, 7931400.00, 9054800.00), +('F-4-19-III', 'GANGGUAN MENTAL LAIN-LAIN (BERAT)', 8476000.00, 9874500.00, 11273100.00), +('G-1-01-I', 'PROSEDUR PADA PEMBULUH DARAH INTRA KRANIAL (RINGAN)', 32973800.00, 38414400.00, 43855100.00), +('G-1-01-II', 'PROSEDUR PADA PEMBULUH DARAH INTRA KRANIAL (SEDANG)', 38138900.00, 44431800.00, 50724700.00), +('G-1-01-III', 'PROSEDUR PADA PEMBULUH DARAH INTRA KRANIAL (BERAT)', 60188500.00, 70119600.00, 80050600.00), +('G-1-10-I', 'KRANIOTOMI (RINGAN)', 35066200.00, 40852100.00, 46638000.00), +('G-1-10-II', 'KRANIOTOMI (SEDANG)', 42947300.00, 50033600.00, 57119900.00), +('G-1-10-III', 'KRANIOTOMI (BERAT)', 52776400.00, 61484500.00, 70192600.00), +('G-1-11-I', 'PROSEDUR VENTRICULAR SHUNT (RINGAN)', 17260000.00, 20107900.00, 22955800.00), +('G-1-11-II', 'PROSEDUR VENTRICULAR SHUNT (SEDANG)', 31555200.00, 36761800.00, 41968400.00), +('G-1-11-III', 'PROSEDUR VENTRICULAR SHUNT (BERAT)', 50707800.00, 59074600.00, 67441400.00), +('G-1-12-I', 'PROSEDUR PEMBULUH DARAH EXTRA KRANIAL (RINGAN)', 7463000.00, 8694400.00, 9925800.00), +('G-1-12-II', 'PROSEDUR PEMBULUH DARAH EXTRA KRANIAL (SEDANG)', 13509100.00, 15738100.00, 17967200.00), +('G-1-12-III', 'PROSEDUR PEMBULUH DARAH EXTRA KRANIAL (BERAT)', 18410400.00, 21448100.00, 24485800.00), +('G-1-13-I', 'PROSEDUR CARPAL TUNNEL RELEASE (RINGAN)', 3781100.00, 4405000.00, 5028800.00), +('G-1-13-II', 'PROSEDUR CARPAL TUNNEL RELEASE (SEDANG)', 6212200.00, 7237200.00, 8262200.00), +('G-1-13-III', 'PROSEDUR CARPAL TUNNEL RELEASE (BERAT)', 13174000.00, 15347700.00, 17521400.00), +('G-1-20-I', 'PROSEDUR SARAF KRANIAL DAN PERIFER (RINGAN)', 12204900.00, 14218700.00, 16232500.00), +('G-1-20-II', 'PROSEDUR SARAF KRANIAL DAN PERIFER (SEDANG)', 19456300.00, 22666600.00, 25876900.00), +('G-1-20-III', 'PROSEDUR SARAF KRANIAL DAN PERIFER (BERAT)', 31491000.00, 36687000.00, 41883100.00), +('G-1-30-I', 'PROSEDUR TULANG BELAKANG (RINGAN)', 30405500.00, 35422400.00, 40439300.00), +('G-1-30-II', 'PROSEDUR TULANG BELAKANG (SEDANG)', 40994000.00, 47758000.00, 54522000.00), +('G-1-30-III', 'PROSEDUR TULANG BELAKANG (BERAT)', 61559500.00, 71716800.00, 81874200.00), +('G-4-10-I', 'KECEDERAAN & GANGGUAN TULANG BELAKANG (RINGAN)', 6186100.00, 7206800.00, 8227600.00), +('G-4-10-II', 'KECEDERAAN & GANGGUAN TULANG BELAKANG (SEDANG)', 7561600.00, 8809200.00, 10056900.00), +('G-4-10-III', 'KECEDERAAN & GANGGUAN TULANG BELAKANG (BERAT)', 10375700.00, 12087700.00, 13799700.00), +('G-4-11-I', 'TUMOR SISTEM PERSARAFAN & GANGGUAN DEGENERATIF (RINGAN)', 6475900.00, 7544400.00, 8613000.00), +('G-4-11-II', 'TUMOR SISTEM PERSARAFAN & GANGGUAN DEGENERATIF (SEDANG)', 8602500.00, 10021900.00, 11441300.00), +('G-4-11-III', 'TUMOR SISTEM PERSARAFAN & GANGGUAN DEGENERATIF (BERAT)', 12639900.00, 14725500.00, 16811100.00), +('G-4-12-I', 'SKLEROSIS MULTIPLE & ATAXIA CEREBELAR (RINGAN)', 7184300.00, 8369700.00, 9555100.00), +('G-4-12-II', 'SKLEROSIS MULTIPLE & ATAXIA CEREBELAR (SEDANG)', 9364800.00, 10910000.00, 12455200.00), +('G-4-12-III', 'SKLEROSIS MULTIPLE & ATAXIA CEREBELAR (BERAT)', 15118400.00, 17612900.00, 20107500.00), +('G-4-13-I', 'PERDARAHAN INTRA KRANIAL BUKAN TRAUMATIK (RINGAN)', 5115400.00, 5959400.00, 6803400.00), +('G-4-13-II', 'PERDARAHAN INTRA KRANIAL BUKAN TRAUMATIK (SEDANG)', 7525800.00, 8767500.00, 10009200.00), +('G-4-13-III', 'PERDARAHAN INTRA KRANIAL BUKAN TRAUMATIK (BERAT)', 10230000.00, 11917900.00, 13605800.00), +('G-4-14-I', 'KECEDERAAN PEMBULUH DARAH OTAK DENGAN INFARK (RINGAN)', 7321100.00, 8529100.00, 9737100.00), +('G-4-14-II', 'KECEDERAAN PEMBULUH DARAH OTAK DENGAN INFARK (SEDANG)', 9787700.00, 11402700.00, 13017700.00), +('G-4-14-III', 'KECEDERAAN PEMBULUH DARAH OTAK DENGAN INFARK (BERAT)', 12284700.00, 14311700.00, 16338700.00), +('G-4-15-I', 'KECEDERAAN PEMBULUH DARAH OTAK NON SPESIFIK & PENYUMBATAN PRE-CEREBRAL TANPA INFARK (RINGAN)', 5982100.00, 6969100.00, 7956100.00), +('G-4-15-II', 'KECEDERAAN PEMBULUH DARAH OTAK NON SPESIFIK & PENYUMBATAN PRE-CEREBRAL TANPA INFARK (SEDANG)', 7139200.00, 8317200.00, 9495100.00), +('G-4-15-III', 'KECEDERAAN PEMBULUH DARAH OTAK NON SPESIFIK & PENYUMBATAN PRE-CEREBRAL TANPA INFARK (BERAT)', 10076400.00, 11739000.00, 13401500.00), +('G-4-16-I', 'ISKEMIK TRANSIENT (RINGAN)', 4931300.00, 5745000.00, 6558700.00), +('G-4-16-II', 'ISKEMIK TRANSIENT (SEDANG)', 6547000.00, 7627200.00, 8707500.00), +('G-4-16-III', 'ISKEMIK TRANSIENT (BERAT)', 9323400.00, 10861800.00, 12400200.00), +('G-4-17-I', 'GANGUAN PERSARAFAN KRANIAL DAN PERIFER (RINGAN)', 6568200.00, 7651900.00, 8735700.00), +('G-4-17-II', 'GANGUAN PERSARAFAN KRANIAL DAN PERIFER (SEDANG)', 8612300.00, 10033300.00, 11454400.00), +('G-4-17-III', 'GANGUAN PERSARAFAN KRANIAL DAN PERIFER (BERAT)', 10821800.00, 12607400.00, 14393000.00), +('G-4-18-I', 'INFEKSI BAKTERI SISTEM PERSARAFAN (RINGAN)', 6472500.00, 7540400.00, 8608400.00), +('G-4-18-II', 'INFEKSI BAKTERI SISTEM PERSARAFAN (SEDANG)', 8967600.00, 10447300.00, 11926900.00), +('G-4-18-III', 'INFEKSI BAKTERI SISTEM PERSARAFAN (BERAT)', 9935000.00, 11574300.00, 13213600.00), +('G-4-19-I', 'INFEKSI NON BAKTERI SISTEM PERSARAFAN (TIDAK TERMASUK MENINGITIS VIRUS) (RINGAN)', 5397000.00, 6287500.00, 7178000.00), +('G-4-19-II', 'INFEKSI NON BAKTERI SISTEM PERSARAFAN (TIDAK TERMASUK MENINGITIS VIRUS) (SEDANG)', 9122100.00, 10627200.00, 12132400.00), +('G-4-19-III', 'INFEKSI NON BAKTERI SISTEM PERSARAFAN (TIDAK TERMASUK MENINGITIS VIRUS) (BERAT)', 11976900.00, 13953100.00, 15929300.00), +('G-4-20-I', 'MENINGITIS VIRUS (RINGAN)', 4354700.00, 5073200.00, 5791700.00), +('G-4-20-II', 'MENINGITIS VIRUS (SEDANG)', 6395600.00, 7450800.00, 8506100.00), +('G-4-20-III', 'MENINGITIS VIRUS (BERAT)', 9987700.00, 11635700.00, 13283600.00), +('G-4-21-I', 'KOMA & STUPOR NON TRAUMA (RINGAN)', 4306200.00, 5016700.00, 5727200.00), +('G-4-21-II', 'KOMA & STUPOR NON TRAUMA (SEDANG)', 6654100.00, 7752000.00, 8850000.00), +('G-4-21-III', 'KOMA & STUPOR NON TRAUMA (BERAT)', 7820100.00, 9110400.00, 10400800.00), +('G-4-22-I', 'SERANGAN KEJANG (RINGAN)', 3251900.00, 3788400.00, 4325000.00), +('G-4-22-II', 'SERANGAN KEJANG (SEDANG)', 5216400.00, 6077100.00, 6937900.00), +('G-4-22-III', 'SERANGAN KEJANG (BERAT)', 8228500.00, 9586200.00, 10943900.00), +('G-4-23-I', 'MIGREN DAN SAKIT KEPALA LAIN (RINGAN)', 3870200.00, 4508800.00, 5147400.00), +('G-4-23-II', 'MIGREN DAN SAKIT KEPALA LAIN ((SEDANG)', 4855800.00, 5657000.00, 6458200.00), +('G-4-23-III', 'MIGREN DAN SAKIT KEPALA LAIN (BERAT)', 6913400.00, 8054100.00, 9194900.00), +('G-4-24-I', 'TRAUMA KEPALA (RINGAN)', 4310800.00, 5022100.00, 5733400.00), +('G-4-24-II', 'TRAUMA KEPALA (SEDANG)', 5553800.00, 6470200.00, 7386600.00), +('G-4-24-III', 'TRAUMA KEPALA (BERAT)', 8972500.00, 10452900.00, 11933400.00), +('G-4-25-I', 'GEGAR OTAK (RINGAN)', 3683500.00, 4291300.00, 4899100.00), +('G-4-25-II', 'GEGAR OTAK (SEDANG)', 4658200.00, 5426800.00, 6195500.00), +('G-4-25-III', 'GEGAR OTAK (BERAT)', 6173100.00, 7191600.00, 8210200.00), +('G-4-26-I', 'GANGGUAN - PENYAKIT SISTEM PERSARAFAN LAIN-LAIN (RINGAN)', 4199500.00, 4892400.00, 5585400.00), +('G-4-26-II', 'GANGGUAN - PENYAKIT SISTEM PERSARAFAN LAIN-LAIN (SEDANG)', 4885300.00, 5691400.00, 6497500.00), +('G-4-26-III', 'GANGGUAN - PENYAKIT SISTEM PERSARAFAN LAIN-LAIN (BERAT)', 7305000.00, 8510300.00, 9715700.00), +('H-1-20-I', 'PROSEDUR EKSTRAOKULER DAN ORBITA (RINGAN)', 12422200.00, 14471800.00, 16521400.00), +('H-1-20-II', 'PROSEDUR EKSTRAOKULER DAN ORBITA (SEDANG)', 13728400.00, 15993600.00, 18258700.00), +('H-1-20-III', 'PROSEDUR EKSTRAOKULER DAN ORBITA (BERAT)', 18669800.00, 21750300.00, 24830800.00), +('H-1-30-I', 'PROSEDUR LENSA DAN INTRA OKULER (RINGAN)', 8464600.00, 9861300.00, 11258000.00), +('H-1-30-II', 'PROSEDUR LENSA DAN INTRA OKULER (SEDANG)', 10516400.00, 12251600.00, 13986900.00), +('H-1-30-III', 'PROSEDUR LENSA DAN INTRA OKULER (BERAT)', 14729800.00, 17160200.00, 19590700.00), +('H-4-10-I', 'INFEKSI MATA AKUT MAYOR (RINGAN)', 4530100.00, 5277500.00, 6025000.00), +('H-4-10-II', 'INFEKSI MATA AKUT MAYOR (SEDANG)', 6089400.00, 7094200.00, 8099000.00), +('H-4-10-III', 'INFEKSI MATA AKUT MAYOR (BERAT)', 11969100.00, 13944000.00, 15918900.00), +('H-4-11-I', 'GANGGUAN PERSARAFAN MATA (RINGAN)', 4303700.00, 5013800.00, 5723900.00), +('H-4-11-II', 'GANGGUAN PERSARAFAN MATA (SEDANG)', 4909100.00, 5719100.00, 6529200.00), +('H-4-11-III', 'GANGGUAN PERSARAFAN MATA (BERAT)', 7029600.00, 8189500.00, 9349400.00), +('H-4-12-I', 'GANGGUAN MATA LAIN-LAIN (RINGAN)', 5074100.00, 5911300.00, 6748600.00), +('H-4-12-II', 'GANGGUAN MATA LAIN-LAIN (SEDANG)', 6062500.00, 7062800.00, 8063200.00), +('H-4-12-III', 'GANGGUAN MATA LAIN-LAIN (BERAT)', 10159700.00, 11836100.00, 13512500.00), +('I-1-01-I', 'TRANPLANTASI PARU ATAU/DAN JANTUNG (RINGAN)', 301625300.00, 351393400.00, 401161600.00), +('I-1-01-II', 'TRANPLANTASI PARU ATAU/DAN JANTUNG (SEDANG)', 308979700.00, 359961300.00, 410942900.00), +('I-1-01-III', 'TRANPLANTASI PARU ATAU/DAN JANTUNG (BERAT)', 315528400.00, 367590600.00, 419652800.00), +('I-1-02-I', 'PROSEDUR KATUP JANTUNG DENGAN KATETERISASI (RINGAN)', 72665800.00, 84655700.00, 96645500.00), +('I-1-02-II', 'PROSEDUR KATUP JANTUNG DENGAN KATETERISASI (SEDANG)', 90540100.00, 105479300.00, 120418400.00), +('I-1-02-III', 'PROSEDUR KATUP JANTUNG DENGAN KATETERISASI (BERAT)', 136616100.00, 159157700.00, 181699400.00), +('I-1-03-I', 'OPERASI KARDIOTORASIK KOMPLEKS PADA JANTUNG ANOMALI (RINGAN)', 47918300.00, 55824800.00, 63731300.00), +('I-1-03-II', 'OPERASI KARDIOTORASIK KOMPLEKS PADA JANTUNG ANOMALI (SEDANG)', 66424600.00, 77384700.00, 88344800.00), +('I-1-03-III', 'OPERASI KARDIOTORASIK KOMPLEKS PADA JANTUNG ANOMALI (BERAT)', 82896100.00, 96573900.00, 110251800.00), +('I-1-04-I', 'PROSEDUR KATUP JANTUNG TANPA KATETERISASI JANTUNG (RINGAN)', 71944100.00, 83814800.00, 95685600.00), +('I-1-04-II', 'PROSEDUR KATUP JANTUNG TANPA KATETERISASI JANTUNG (SEDANG)', 89776200.00, 104589300.00, 119402300.00), +('I-1-04-III', 'PROSEDUR KATUP JANTUNG TANPA KATETERISASI JANTUNG (BERAT)', 135487100.00, 157842500.00, 180197900.00), +('I-1-05-I', 'PEMBEDAHAN BYPASS PEMBULUH KORONER DENGAN KATETERISASI JANTUNG (RINGAN)', 89014800.00, 103702200.00, 118389700.00), +('I-1-05-II', 'PEMBEDAHAN BYPASS PEMBULUH KORONER DENGAN KATETERISASI JANTUNG (SEDANG)', 108795800.00, 126747100.00, 144698500.00), +('I-1-05-III', 'PEMBEDAHAN BYPASS PEMBULUH KORONER DENGAN KATETERISASI JANTUNG (BERAT)', 149841500.00, 174565400.00, 199289200.00), +('I-1-06-I', 'PROSEDUR KARDIOTORASIK LAIN (RINGAN)', 50834000.00, 59221600.00, 67609200.00), +('I-1-06-II', 'PROSEDUR KARDIOTORASIK LAIN (SEDANG)', 73637100.00, 85787200.00, 97937400.00), +('I-1-06-III', 'PROSEDUR KARDIOTORASIK LAIN (BERAT)', 87862700.00, 102360000.00, 116857400.00), +('I-1-07-I', 'PROSEDUR BYPASS KORONER TANPA KATETERISASI JANTUNG (RINGAN)', 79304100.00, 92389300.00, 105474400.00), +('I-1-07-II', 'PROSEDUR BYPASS KORONER TANPA KATETERISASI JANTUNG (SEDANG)', 98905300.00, 115224700.00, 131544100.00), +('I-1-07-III', 'PROSEDUR BYPASS KORONER TANPA KATETERISASI JANTUNG (BERAT)', 148357900.00, 172837000.00, 197316100.00), +('I-1-11-I', 'DEFIBRILATOR JANTUNG DAN PEMASANGAN SISTEM BANTUAN JANTUNG (RINGAN)', 5925200.00, 6902800.00, 7880500.00), +('I-1-11-II', 'DEFIBRILATOR JANTUNG DAN PEMASANGAN SISTEM BANTUAN JANTUNG (SEDANG)', 6619200.00, 7711300.00, 8803500.00), +('I-1-11-III', 'DEFIBRILATOR JANTUNG DAN PEMASANGAN SISTEM BANTUAN JANTUNG (BERAT)', 8766800.00, 10213300.00, 11659900.00), +('I-1-12-I', 'PROSEDUR PEMBULUH DARAH TORASIK KOMPLEKS (RINGAN)', 17055400.00, 19869500.00, 22683700.00), +('I-1-12-II', 'PROSEDUR PEMBULUH DARAH TORASIK KOMPLEKS (SEDANG)', 27854800.00, 32450800.00, 37046900.00), +('I-1-12-III', 'PROSEDUR PEMBULUH DARAH TORASIK KOMPLEKS (BERAT)', 36647200.00, 42694000.00, 48740800.00), +('I-1-13-I', 'PROSEDUR PEMBULUH DARAH ABDOMINAL KOMPLEK (RINGAN)', 16543400.00, 19273100.00, 22002800.00), +('I-1-13-II', 'PROSEDUR PEMBULUH DARAH ABDOMINAL KOMPLEK (SEDANG)', 22451900.00, 26156400.00, 29861000.00), +('I-1-13-III', 'PROSEDUR PEMBULUH DARAH ABDOMINAL KOMPLEK (BERAT)', 27478900.00, 32012900.00, 36546900.00), +('I-1-14-I', 'PEMASANGAN PACEMAKER JANTUNG PERMANEN (RINGAN)', 33860400.00, 39447300.00, 45034300.00), +('I-1-14-II', 'PEMASANGAN PACEMAKER JANTUNG PERMANEN (SEDANG)', 42083400.00, 49027200.00, 55971000.00), +('I-1-14-III', 'PEMASANGAN PACEMAKER JANTUNG PERMANEN (BERAT)', 55143800.00, 64242500.00, 73341300.00), +('I-1-15-I', 'KATETERISASI JANTUNG (RINGAN)', 7075800.00, 8243300.00, 9410800.00), +('I-1-15-II', 'KATETERISASI JANTUNG (SEDANG)', 8982900.00, 10465100.00, 11947200.00), +('I-1-15-III', 'KATETERISASI JANTUNG (BERAT)', 17297400.00, 20151500.00, 23005500.00), +('I-1-16-I', 'REVISI DEFIBRILATOR & PACEMAKER JANTUNG TIDAK TERMASUK PENGGANTIAN ALAT (RINGAN)', 16675400.00, 19426800.00, 22178300.00), +('I-1-16-II', 'REVISI DEFIBRILATOR & PACEMAKER JANTUNG TIDAK TERMASUK PENGGANTIAN ALAT (SEDANG)', 37729600.00, 43955000.00, 50180400.00), +('I-1-16-III', 'REVISI DEFIBRILATOR & PACEMAKER JANTUNG TIDAK TERMASUK PENGGANTIAN ALAT (BERAT)', 43520500.00, 50701400.00, 57882300.00), +('I-1-17-I', 'LIGASI DAN STRIPPING PEMBULUH DARAH VENA (RINGAN)', 19308500.00, 22494400.00, 25680300.00), +('I-1-17-II', 'LIGASI DAN STRIPPING PEMBULUH DARAH VENA (SEDANG)', 24176100.00, 28165100.00, 32154200.00), +('I-1-17-III', 'LIGASI DAN STRIPPING PEMBULUH DARAH VENA (BERAT)', 29905400.00, 34839800.00, 39774200.00), +('I-1-20-I', 'PROSEDUR SISTIM PEREDARAN DARAH LAIN-LAIN (RINGAN)', 21764000.00, 25355000.00, 28946100.00), +('I-1-20-II', 'PROSEDUR SISTIM PEREDARAN DARAH LAIN-LAIN (SEDANG)', 27189200.00, 31675400.00, 36161700.00), +('I-1-20-III', 'PROSEDUR SISTIM PEREDARAN DARAH LAIN-LAIN (BERAT)', 32022200.00, 37305900.00, 42589600.00), +('I-1-30-I', 'PENGGANTIAN ALAT DEFIBRILATOR DAN PACEMAKER JANTUNG (RINGAN)', 26861900.00, 31294100.00, 35726300.00), +('I-1-30-II', 'PENGGANTIAN ALAT DEFIBRILATOR DAN PACEMAKER JANTUNG (SEDANG)', 35549300.00, 41415000.00, 47280600.00), +('I-1-30-III', 'PENGGANTIAN ALAT DEFIBRILATOR DAN PACEMAKER JANTUNG (BERAT)', 53070700.00, 61827400.00, 70584100.00), +('I-1-40-I', 'PROSEDUR KARDIOVASKULAR PERKUTAN (RINGAN)', 17668500.00, 20583800.00, 23499100.00), +('I-1-40-II', 'PROSEDUR KARDIOVASKULAR PERKUTAN (SEDANG)', 37561600.00, 43759300.00, 49957000.00), +('I-1-40-III', 'PROSEDUR KARDIOVASKULAR PERKUTAN (BERAT)', 50169600.00, 58447600.00, 66725600.00), +('I-4-10-I', 'INFARK MYOKARD AKUT (RINGAN)', 6013500.00, 7005800.00, 7998000.00), +('I-4-10-II', 'INFARK MYOKARD AKUT (SEDANG)', 10226500.00, 11913900.00, 13601200.00), +('I-4-10-III', 'INFARK MYOKARD AKUT (BERAT)', 14735000.00, 17166300.00, 19597500.00), +('I-4-11-I', 'ENDOKARDITIS AKUT DAN SUBAKUT (RINGAN)', 8811300.00, 10265100.00, 11719000.00), +('I-4-11-II', 'ENDOKARDITIS AKUT DAN SUBAKUT (SEDANG)', 10904000.00, 12703100.00, 14502300.00), +('I-4-11-III', 'ENDOKARDITIS AKUT DAN SUBAKUT (BERAT)', 20171100.00, 23499300.00, 26827600.00), +('I-4-12-I', 'KEGAGALAN JANTUNG (RINGAN)', 5120700.00, 5965600.00, 6810500.00), +('I-4-12-II', 'KEGAGALAN JANTUNG (SEDANG)', 5871300.00, 6840100.00, 7808900.00), +('I-4-12-III', 'KEGAGALAN JANTUNG (BERAT)', 7045500.00, 8208000.00, 9370600.00), +('I-4-13-I', 'THROMBOPHLEBITIS PADA PEMBULUH DARAH VENA (RINGAN)', 5154500.00, 6005000.00, 6855500.00), +('I-4-13-II', 'THROMBOPHLEBITIS PADA PEMBULUH DARAH VENA (SEDANG)', 9203900.00, 10722500.00, 12241200.00), +('I-4-13-III', 'THROMBOPHLEBITIS PADA PEMBULUH DARAH VENA (BERAT)', 13261500.00, 15449600.00, 17637800.00), +('I-4-14-I', 'CARDIAC ARREST DAN LAIN-LAIN (RINGAN)', 4867500.00, 5670600.00, 6473800.00), +('I-4-14-II', 'CARDIAC ARREST DAN LAIN-LAIN (SEDANG)', 5179400.00, 6034000.00, 6888600.00), +('I-4-14-III', 'CARDIAC ARREST DAN LAIN-LAIN (BERAT)', 8826400.00, 10282700.00, 11739100.00), +('I-4-15-I', 'PENYAKIT PEMBULUH DARAH DAN LAIN-LAIN (RINGAN)', 4971200.00, 5791400.00, 6611600.00), +('I-4-15-II', 'PENYAKIT PEMBULUH DARAH DAN LAIN-LAIN (SEDANG)', 9374000.00, 10920700.00, 12467400.00), +('I-4-15-III', 'PENYAKIT PEMBULUH DARAH DAN LAIN-LAIN (BERAT)', 11248800.00, 13104900.00, 14960900.00), +('I-4-16-I', 'ATHEROSKLEROSIS (RINGAN)', 3225800.00, 3758000.00, 4290200.00), +('I-4-16-II', 'ATHEROSKLEROSIS (SEDANG)', 4933100.00, 5747000.00, 6560900.00), +('I-4-16-III', 'ATHEROSKLEROSIS (BERAT)', 5919700.00, 6896400.00, 7873100.00), +('I-4-17-I', 'HIPERTENSI (RINGAN)', 2153700.00, 2509100.00, 2864400.00), +('I-4-17-II', 'HIPERTENSI (SEDANG)', 3310000.00, 3856100.00, 4402200.00), +('I-4-17-III', 'HIPERTENSI (BERAT)', 4633900.00, 5398500.00, 6163000.00), +('I-4-18-I', 'PENYAKIT JANTUNG KONGENITAL DAN KATUP JANTUNG (RINGAN)', 5972300.00, 6957700.00, 7943100.00), +('I-4-18-II', 'PENYAKIT JANTUNG KONGENITAL DAN KATUP JANTUNG (SEDANG)', 9022200.00, 10510900.00, 11999600.00), +('I-4-18-III', 'PENYAKIT JANTUNG KONGENITAL DAN KATUP JANTUNG (BERAT)', 12249100.00, 14270200.00, 16291400.00), +('I-4-19-I', 'GANGGUAN KONDUKSI & ARITMIA JANTUNG (RINGAN)', 5717200.00, 6660500.00, 7603900.00), +('I-4-19-II', 'GANGGUAN KONDUKSI & ARITMIA JANTUNG (SEDANG)', 8924900.00, 10397500.00, 11870100.00), +('I-4-19-III', 'GANGGUAN KONDUKSI & ARITMIA JANTUNG (BERAT)', 10654600.00, 12412600.00, 14170600.00), +('I-4-20-I', 'ANGINA PEKTORIS DAN NYERI DADA (RINGAN)', 5953400.00, 6935700.00, 7917900.00), +('I-4-20-II', 'ANGINA PEKTORIS DAN NYERI DADA (SEDANG)', 6876100.00, 8010600.00, 9145100.00), +('I-4-20-III', 'ANGINA PEKTORIS DAN NYERI DADA (BERAT)', 10281100.00, 11977500.00, 13673800.00), +('I-4-21-I', 'SYNCOPE & COLLAPSE (RINGAN)', 4009400.00, 4670900.00, 5332500.00), +('I-4-21-II', 'SYNCOPE & COLLAPSE (SEDANG)', 5079900.00, 5918100.00, 6756300.00), +('I-4-21-III', 'SYNCOPE & COLLAPSE (BERAT)', 7332200.00, 8542000.00, 9751900.00), +('I-4-22-I', 'KARDIOMIOPATHI (RINGAN)', 3869400.00, 4507800.00, 5146300.00), +('I-4-22-II', 'KARDIOMIOPATHI (SEDANG)', 4546800.00, 5297000.00, 6047300.00), +('I-4-22-III', 'KARDIOMIOPATHI (BERAT)', 6706800.00, 7813400.00, 8920000.00), +('I-4-23-I', 'MALFUNGSI, REAKSI DAN KOMPLIKASI DARI ALAT ATAU PROSEDUR KARDIOVASKULER (RINGAN)', 4886800.00, 5693100.00, 6499500.00), +('I-4-23-II', 'MALFUNGSI, REAKSI DAN KOMPLIKASI DARI ALAT ATAU PROSEDUR KARDIOVASKULER (SEDANG)', 6867900.00, 8001100.00, 9134400.00), +('I-4-23-III', 'MALFUNGSI, REAKSI DAN KOMPLIKASI DARI ALAT ATAU PROSEDUR KARDIOVASKULER (BERAT)', 11722800.00, 13657100.00, 15591400.00), +('I-4-24-I', 'GANGGUAN SISTEM PEMBULUH DARAH LAIN-LAIN (RINGAN)', 3364700.00, 3919800.00, 4475000.00), +('I-4-24-II', 'GANGGUAN SISTEM PEMBULUH DARAH LAIN-LAIN (SEDANG)', 7480400.00, 8714600.00, 9948900.00), +('I-4-24-III', 'GANGGUAN SISTEM PEMBULUH DARAH LAIN-LAIN (BERAT)', 9376600.00, 10923700.00, 12470900.00), +('J-1-01-I', 'VENTILASI MEKANIKAL LONG TERM DENGAN TRAKEOSTOMI (RINGAN)', 100590700.00, 117188200.00, 133785700.00), +('J-1-01-II', 'VENTILASI MEKANIKAL LONG TERM DENGAN TRAKEOSTOMI (SEDANG)', 113837100.00, 132620200.00, 151403400.00), +('J-1-01-III', 'VENTILASI MEKANIKAL LONG TERM DENGAN TRAKEOSTOMI (BERAT)', 156147200.00, 181911500.00, 207675800.00), +('J-1-02-I', 'VENTILASI MEKANIKAL LONG TERM TANPA TRAKEOSTOMI (RINGAN)', 62014000.00, 72246300.00, 82478600.00), +('J-1-02-II', 'VENTILASI MEKANIKAL LONG TERM TANPA TRAKEOSTOMI (SEDANG)', 78249600.00, 91160800.00, 104072000.00), +('J-1-02-III', 'VENTILASI MEKANIKAL LONG TERM TANPA TRAKEOSTOMI (BERAT)', 91540900.00, 106645200.00, 121749400.00), +('J-1-10-I', 'PROSEDUR SISTEM PERNAFASAN SANGAT KOMPLEKS (RINGAN)', 35651800.00, 41534400.00, 47416900.00), +('J-1-10-II', 'PROSEDUR SISTEM PERNAFASAN SANGAT KOMPLEKS (SEDANG)', 39314400.00, 45801300.00, 52288200.00), +('J-1-10-III', 'PROSEDUR SISTEM PERNAFASAN SANGAT KOMPLEKS (BERAT)', 46983600.00, 54735800.00, 62488100.00), +('J-1-20-I', 'PROSEDUR SISTEM PERNAFASAN NON-KOMPLEKS (RINGAN)', 35243900.00, 41059100.00, 46874400.00), +('J-1-20-II', 'PROSEDUR SISTEM PERNAFASAN NON-KOMPLEKS (SEDANG)', 36905100.00, 42994400.00, 49083800.00), +('J-1-20-III', 'PROSEDUR SISTEM PERNAFASAN NON-KOMPLEKS (BERAT)', 46515700.00, 54190700.00, 61865800.00), +('J-1-30-I', 'PROSEDUR SISTEM PERNAFASAN KOMPLEKS (RINGAN)', 10676600.00, 12438200.00, 14199900.00), +('J-1-30-II', 'PROSEDUR SISTEM PERNAFASAN KOMPLEKS (SEDANG)', 23742000.00, 27659500.00, 31576900.00), +('J-1-30-III', 'PROSEDUR SISTEM PERNAFASAN KOMPLEKS (BERAT)', 44660300.00, 52029300.00, 59398200.00), +('J-4-10-I', 'KISTA FIBROSIS (RINGAN)', 5851900.00, 6817400.00, 7783000.00), +('J-4-10-II', 'KISTA FIBROSIS (SEDANG)', 8443800.00, 9837000.00, 11230200.00), +('J-4-10-III', 'KISTA FIBROSIS (BERAT)', 10286800.00, 11984100.00, 13681500.00), +('J-4-11-I', 'KEGAGALAN PERNAFASAN (RINGAN)', 4121100.00, 4801000.00, 5481000.00), +('J-4-11-II', 'KEGAGALAN PERNAFASAN (SEDANG)', 5946400.00, 6927500.00, 7908600.00), +('J-4-11-III', 'KEGAGALAN PERNAFASAN (BERAT)', 7269300.00, 8468700.00, 9668200.00), +('J-4-12-I', 'EMBOLI PARU (RINGAN)', 6613500.00, 7704700.00, 8796000.00), +('J-4-12-II', 'EMBOLI PARU (SEDANG)', 7659300.00, 8923100.00, 10186900.00), +('J-4-12-III', 'EMBOLI PARU (BERAT)', 10754500.00, 12529000.00, 14303500.00), +('J-4-13-I', 'TRAUMA DADA (RINGAN)', 5847500.00, 6812300.00, 7777200.00), +('J-4-13-II', 'TRAUMA DADA (SEDANG)', 8139500.00, 9482500.00, 10825600.00), +('J-4-13-III', 'TRAUMA DADA (BERAT)', 15185600.00, 17691200.00, 20196900.00), +('J-4-14-I', 'TUMOR PARU (RINGAN)', 6447000.00, 7510700.00, 8574400.00), +('J-4-14-II', 'TUMOR PARU (SEDANG)', 10491100.00, 12222100.00, 13953100.00), +('J-4-14-III', 'TUMOR PARU (BERAT)', 12412000.00, 14460000.00, 16507900.00), +('J-4-15-I', 'PERADANGAN DAN INFEKSI PERNAFASAN (RINGAN)', 4665100.00, 5434800.00, 6204600.00), +('J-4-15-II', 'PERADANGAN DAN INFEKSI PERNAFASAN (SEDANG)', 7725400.00, 9000100.00, 10274800.00), +('J-4-15-III', 'PERADANGAN DAN INFEKSI PERNAFASAN (BERAT)', 14031600.00, 16346800.00, 18662000.00), +('J-4-16-I', 'SIMPLE PNEUMONIA & WHOOPING COUGH (RINGAN)', 3887000.00, 4528400.00, 5169800.00), +('J-4-16-II', 'SIMPLE PNEUMONIA & WHOOPING COUGH (SEDANG)', 7571200.00, 8820400.00, 10069700.00), +('J-4-16-III', 'SIMPLE PNEUMONIA & WHOOPING COUGH (BERAT)', 12923000.00, 15055300.00, 17187600.00), +('J-4-17-I', 'PENYAKIT PARU OBSTRUKTIF KRONIS (RINGAN)', 5387100.00, 6276000.00, 7164800.00), +('J-4-17-II', 'PENYAKIT PARU OBSTRUKTIF KRONIS (SEDANG)', 6451200.00, 7515600.00, 8580000.00), +('J-4-17-III', 'PENYAKIT PARU OBSTRUKTIF KRONIS (BERAT)', 8465800.00, 9862700.00, 11259500.00), +('J-4-18-I', 'ASTHMA & BRONKIOLITIS (RINGAN)', 2394600.00, 2789700.00, 3184800.00), +('J-4-18-II', 'ASTHMA & BRONKIOLITIS (SEDANG)', 4565100.00, 5318300.00, 6071600.00), +('J-4-18-III', 'ASTHMA & BRONKIOLITIS (BERAT)', 6487300.00, 7557700.00, 8628100.00), +('J-4-19-I', 'PENYAKIT PARU INTERSTITIAL (RINGAN)', 6829100.00, 7955900.00, 9082700.00), +('J-4-19-II', 'PENYAKIT PARU INTERSTITIAL (SEDANG)', 7744600.00, 9022400.00, 10300300.00), +('J-4-19-III', 'PENYAKIT PARU INTERSTITIAL (BERAT)', 8552900.00, 9964100.00, 11375400.00), +('J-4-20-I', 'PLEURAL EFUSI DAN PNEUMOTORAK (RINGAN)', 5640300.00, 6570900.00, 7501500.00), +('J-4-20-II', 'PLEURAL EFUSI DAN PNEUMOTORAK (SEDANG)', 7985100.00, 9302600.00, 10620100.00), +('J-4-20-III', 'PLEURAL EFUSI DAN PNEUMOTORAK (BERAT)', 8946000.00, 10422100.00, 11898100.00), +('J-4-21-I', 'GEJALA, TANDA DAN DIAGNOSIS SISTEM PERNAFASAN LAIN-LAIN (RINGAN)', 3103700.00, 3615800.00, 4127900.00), +('J-4-21-II', 'GEJALA, TANDA DAN DIAGNOSIS SISTEM PERNAFASAN LAIN-LAIN (SEDANG)', 6930400.00, 8073900.00, 9217500.00), +('J-4-21-III', 'GEJALA, TANDA DAN DIAGNOSIS SISTEM PERNAFASAN LAIN-LAIN (BERAT)', 13055600.00, 15209800.00, 17364000.00), +('K-1-10-I', 'PROSEDUR NON KOMPLEKS USUS HALUS & USUS BESAR (RINGAN)', 11598200.00, 13511900.00, 15425600.00), +('K-1-10-II', 'PROSEDUR NON KOMPLEKS USUS HALUS & USUS BESAR (SEDANG)', 14985300.00, 17457800.00, 19930400.00), +('K-1-10-III', 'PROSEDUR NON KOMPLEKS USUS HALUS & USUS BESAR (BERAT)', 17375100.00, 20241900.00, 23108800.00), +('K-1-11-I', 'ADHESIOLISIS PERITONEAL (RINGAN)', 10892100.00, 12689300.00, 14486500.00), +('K-1-11-II', 'ADHESIOLISIS PERITONEAL (SEDANG)', 14300000.00, 16659500.00, 19019000.00), +('K-1-11-III', 'ADHESIOLISIS PERITONEAL (BERAT)', 28265200.00, 32928900.00, 37592700.00), +('K-1-12-I', 'PROSEDUR HERNIA TIDAK TERMASUK INGUINAL & FEMORAL (RINGAN)', 6945300.00, 8091300.00, 9237200.00), +('K-1-12-II', 'PROSEDUR HERNIA TIDAK TERMASUK INGUINAL & FEMORAL (SEDANG)', 8436900.00, 9829000.00, 11221100.00), +('K-1-12-III', 'PROSEDUR HERNIA TIDAK TERMASUK INGUINAL & FEMORAL (BERAT)', 15851200.00, 18466700.00, 21082100.00), +('K-1-13-I', 'PROSEDUR APPENDIK (RINGAN)', 5891300.00, 6863300.00, 7835300.00), +('K-1-13-II', 'PROSEDUR APPENDIK (SEDANG)', 7014800.00, 8172200.00, 9329600.00), +('K-1-13-III', 'PROSEDUR APPENDIK (BERAT)', 9648800.00, 11240800.00, 12832800.00), +('K-1-14-I', 'PROSEDUR HERNIA INGUINAL DAN FEMORAL (RINGAN)', 8016000.00, 9338600.00, 10661300.00), +('K-1-14-II', 'PROSEDUR HERNIA INGUINAL DAN FEMORAL (SEDANG)', 9394500.00, 10944600.00, 12494700.00), +('K-1-14-III', 'PROSEDUR HERNIA INGUINAL DAN FEMORAL (BERAT)', 16400100.00, 19106100.00, 21812100.00), +('K-1-20-I', 'PROSEDUR INTESTINAL KOMPLEKS (RINGAN)', 17246000.00, 20091600.00, 22937200.00), +('K-1-20-II', 'PROSEDUR INTESTINAL KOMPLEKS (SEDANG)', 24088800.00, 28063400.00, 32038100.00), +('K-1-20-III', 'PROSEDUR INTESTINAL KOMPLEKS (BERAT)', 35172200.00, 40975600.00, 46779000.00), +('K-1-30-I', 'PROSEDUR DUODENUM, ESOFAGUS & LAMBUNG NON KOMPLEKS (RINGAN)', 11089400.00, 12919100.00, 14748900.00), +('K-1-30-II', 'PROSEDUR DUODENUM, ESOFAGUS & LAMBUNG NON KOMPLEKS (SEDANG)', 18113500.00, 21102200.00, 24091000.00), +('K-1-30-III', 'PROSEDUR DUODENUM, ESOFAGUS & LAMBUNG NON KOMPLEKS (BERAT)', 24924400.00, 29036900.00, 33149500.00), +('K-1-40-I', 'PROSEDUR SISTEM PENCERNAAN LAIN-LAIN (RINGAN)', 11379900.00, 13257600.00, 15135300.00), +('K-1-40-II', 'PROSEDUR SISTEM PENCERNAAN LAIN-LAIN (SEDANG)', 12546700.00, 14616900.00, 16687200.00), +('K-1-40-III', 'PROSEDUR SISTEM PENCERNAAN LAIN-LAIN (BERAT)', 21262200.00, 24770500.00, 28278800.00), +('K-1-50-I', 'PROSEDUR ANAL (RINGAN)', 8695500.00, 10130200.00, 11564900.00), +('K-1-50-II', 'PROSEDUR ANAL (SEDANG)', 11292200.00, 13155400.00, 15018500.00), +('K-1-50-III', 'PROSEDUR ANAL (BERAT)', 15957800.00, 18590800.00, 21223800.00), +('K-4-10-I', 'TUMOR PENCERNAAN (RINGAN)', 7178500.00, 8363000.00, 9547500.00), +('K-4-10-II', 'TUMOR PENCERNAAN (SEDANG)', 10314500.00, 12016400.00, 13718300.00), +('K-4-10-III', 'TUMOR PENCERNAAN (BERAT)', 15723800.00, 18318200.00, 20912700.00), +('K-4-11-I', 'GASTRITIS & ULKUS PEPTIKUM (RINGAN)', 3397500.00, 3958000.00, 4518600.00), +('K-4-11-II', 'GASTRITIS & ULKUS PEPTIKUM (SEDANG)', 5902600.00, 6876600.00, 7850500.00), +('K-4-11-III', 'GASTRITIS & ULKUS PEPTIKUM (BERAT)', 6994500.00, 8148600.00, 9302600.00), +('K-4-12-I', 'GANGGUAN ESOFAGUS (RINGAN)', 4315200.00, 5027200.00, 5739300.00), +('K-4-12-II', 'GANGGUAN ESOFAGUS (SEDANG)', 5807000.00, 6765100.00, 7723300.00), +('K-4-12-III', 'GANGGUAN ESOFAGUS (BERAT)', 9606600.00, 11191700.00, 12776800.00), +('K-4-13-I', 'DIVERTIKULITIS, DIVERTIKULOSIS DAN PENYAKIT PERADANGAN USUS BESAR (RINGAN)', 5856300.00, 6822600.00, 7788900.00), +('K-4-13-II', 'DIVERTIKULITIS, DIVERTIKULOSIS DAN PENYAKIT PERADANGAN USUS BESAR (SEDANG)', 8450000.00, 9844300.00, 11238500.00), +('K-4-13-III', 'DIVERTIKULITIS, DIVERTIKULOSIS DAN PENYAKIT PERADANGAN USUS BESAR (BERAT)', 11800500.00, 13747600.00, 15694600.00), +('K-4-14-I', 'GANGGUAN PEMBULUH DARAH GASTROINTERTINAL (RINGAN)', 3319400.00, 3867100.00, 4414800.00), +('K-4-14-II', 'GANGGUAN PEMBULUH DARAH GASTROINTERTINAL (SEDANG)', 4455600.00, 5190800.00, 5926000.00), +('K-4-14-III', 'GANGGUAN PEMBULUH DARAH GASTROINTERTINAL (BERAT)', 7149500.00, 8329200.00, 9508900.00), +('K-4-15-I', 'OBSTRUKSI SALURAN GASTROINTESTINAL (RINGAN)', 4731300.00, 5512000.00, 6292700.00), +('K-4-15-II', 'OBSTRUKSI SALURAN GASTROINTESTINAL (SEDANG)', 7286700.00, 8489000.00, 9691300.00), +('K-4-15-III', 'OBSTRUKSI SALURAN GASTROINTESTINAL (BERAT)', 10371600.00, 12082900.00, 13794300.00), +('K-4-16-I', 'INFEKSI-INFEKSI GASTROINTESTINAL (RINGAN)', 4407600.00, 5134900.00, 5862100.00), +('K-4-16-II', 'INFEKSI-INFEKSI GASTROINTESTINAL (SEDANG)', 5754600.00, 6704100.00, 7653600.00), +('K-4-16-III', 'INFEKSI-INFEKSI GASTROINTESTINAL (BERAT)', 8194100.00, 9546100.00, 10898100.00), +('K-4-17-I', 'NYERI ABDOMEN & GASTROENTERITIS LAIN-LAIN (RINGAN)', 2101900.00, 2448700.00, 2795400.00), +('K-4-17-II', 'NYERI ABDOMEN & GASTROENTERITIS LAIN-LAIN (SEDANG)', 2588400.00, 3015500.00, 3442500.00), +('K-4-17-III', 'NYERI ABDOMEN & GASTROENTERITIS LAIN-LAIN (BERAT)', 3128400.00, 3644600.00, 4160700.00), +('K-4-18-I', 'GANGGUAN SISTEM PENCERNAAN LAIN-LAIN (RINGAN)', 1905800.00, 2220200.00, 2534700.00), +('K-4-18-II', 'GANGGUAN SISTEM PENCERNAAN LAIN-LAIN (SEDANG)', 3125500.00, 3641200.00, 4157000.00), +('K-4-18-III', 'GANGGUAN SISTEM PENCERNAAN LAIN-LAIN (BERAT)', 3750600.00, 4369400.00, 4988300.00), +('L-1-20-I', 'PEMINDAHAN KULIT PADA LUKA BAKAR (RINGAN)', 27496600.00, 32033500.00, 36570500.00), +('L-1-20-II', 'PEMINDAHAN KULIT PADA LUKA BAKAR (SEDANG)', 41505400.00, 48353800.00, 55202200.00), +('L-1-20-III', 'PEMINDAHAN KULIT PADA LUKA BAKAR (BERAT)', 59373200.00, 69169800.00, 78966400.00), +('L-1-30-I', 'PEMINDAHAN KULIT TANPA LUKA BAKAR (RINGAN)', 12973200.00, 15113800.00, 17254400.00), +('L-1-30-II', 'PEMINDAHAN KULIT TANPA LUKA BAKAR (SEDANG)', 22261100.00, 25934200.00, 29607300.00), +('L-1-30-III', 'PEMINDAHAN KULIT TANPA LUKA BAKAR (BERAT)', 27637500.00, 32197700.00, 36757900.00), +('L-1-40-I', 'PROSEDUR PADA KULIT, JARINGAN) BAWAH KULIT (RINGAN)', 7270600.00, 8470200.00, 9669800.00), +('L-1-40-II', 'PROSEDUR PADA KULIT, JARINGAN) BAWAH KULIT (SEDANG)', 12533300.00, 14601300.00, 16669200.00), +('L-1-40-III', 'PROSEDUR PADA KULIT, JARINGAN) BAWAH KULIT (BERAT)', 20585100.00, 23981600.00, 27378100.00), +('L-1-50-I', 'PROSEDUR PADA PAYUDARA (RINGAN)', 9544700.00, 11119600.00, 12694500.00), +('L-1-50-II', 'PROSEDUR PADA PAYUDARA (SEDANG)', 15361100.00, 17895700.00, 20430300.00), +('L-1-50-III', 'PROSEDUR PADA PAYUDARA (BERAT)', 21972500.00, 25598000.00, 29223500.00), +('L-4-10-I', 'PENYAKIT KULIT MAYOR (RINGAN)', 2754100.00, 3208500.00, 3662900.00), +('L-4-10-II', 'PENYAKIT KULIT MAYOR (SEDANG)', 3424400.00, 3989400.00, 4554500.00), +('L-4-10-III', 'PENYAKIT KULIT MAYOR (BERAT)', 3922200.00, 4569300.00, 5216500.00), +('L-4-11-I', 'TUMOR PAYUDARA (RINGAN)', 5228000.00, 6090600.00, 6953300.00), +('L-4-11-II', 'TUMOR PAYUDARA (SEDANG)', 7185400.00, 8371000.00, 9556600.00), +('L-4-11-III', 'TUMOR PAYUDARA (BERAT)', 16327400.00, 19021400.00, 21715500.00), +('L-4-12-I', 'PERADANGAN KULIT/CELLULITIS (RINGAN)', 2821600.00, 3287100.00, 3752600.00), +('L-4-12-II', 'PERADANGAN KULIT/CELLULITIS (SEDANG)', 3940700.00, 4590900.00, 5241000.00), +('L-4-12-III', 'PERADANGAN KULIT/CELLULITIS (BERAT)', 10858500.00, 12650100.00, 14441700.00), +('L-4-13-I', 'TRAUMA PADA KULIT, JA(RINGAN) BAWAH KULIT DAN PAYUDARA (RINGAN)', 3560200.00, 4147600.00, 4735100.00), +('L-4-13-II', 'TRAUMA PADA KULIT, JA(RINGAN) BAWAH KULIT DAN PAYUDARA (SEDANG)', 4789000.00, 5579200.00, 6369400.00), +('L-4-13-III', 'TRAUMA PADA KULIT, JA(RINGAN) BAWAH KULIT DAN PAYUDARA (BERAT)', 8555500.00, 9967200.00, 11378900.00), +('L-4-14-I', 'GANGGUAN PADA KULIT & PAYUDARA LAIN-LAIN (RINGAN)', 4299400.00, 5008800.00, 5718200.00), +('L-4-14-II', 'GANGGUAN PADA KULIT & PAYUDARA LAIN-LAIN (SEDANG)', 6457800.00, 7523300.00, 8588900.00), +('L-4-14-III', 'GANGGUAN PADA KULIT & PAYUDARA LAIN-LAIN (BERAT)', 9103100.00, 10605100.00, 12107100.00), +('M-1-01-I', 'PROSEDUR BILATERAL DAN MULTIPLE PADA SENDI TUNGKAI BAWAH (RINGAN)', 15197800.00, 17705400.00, 20213100.00), +('M-1-01-II', 'PROSEDUR BILATERAL DAN MULTIPLE PADA SENDI TUNGKAI BAWAH (SEDANG)', 21813200.00, 25412300.00, 29011500.00), +('M-1-01-III', 'PROSEDUR BILATERAL DAN MULTIPLE PADA SENDI TUNGKAI BAWAH (BERAT)', 35374200.00, 41211000.00, 47047700.00), +('M-1-02-I', 'AMPUTASI (RINGAN)', 13470100.00, 15692600.00, 17915200.00), +('M-1-02-II', 'AMPUTASI (SEDANG)', 22097000.00, 25743000.00, 29389100.00), +('M-1-02-III', 'AMPUTASI (BERAT)', 37542300.00, 43736800.00, 49931300.00), +('M-1-03-I', 'PROSEDUR FUSI TULANG BELAKANG PADA LENGKUNGAN TULANG BELAKANG (RINGAN)', 53844600.00, 62728900.00, 71613200.00), +('M-1-03-II', 'PROSEDUR FUSI TULANG BELAKANG PADA LENGKUNGAN TULANG BELAKANG (SEDANG)', 62979000.00, 73370500.00, 83762000.00), +('M-1-03-III', 'PROSEDUR FUSI TULANG BELAKANG PADA LENGKUNGAN TULANG BELAKANG (BERAT)', 77947000.00, 90808300.00, 103669500.00), +('M-1-04-I', 'PROSEDUR PADA SENDI TUNGKAI BAWAH (RINGAN)', 31713400.00, 36946100.00, 42178700.00), +('M-1-04-II', 'PROSEDUR PADA SENDI TUNGKAI BAWAH (SEDANG)', 38971000.00, 45401200.00, 51831400.00), +('M-1-04-III', 'PROSEDUR PADA SENDI TUNGKAI BAWAH (BERAT)', 46205800.00, 53829800.00, 61453700.00), +('M-1-05-I', 'PROSEDUR PADA SENDI TUNGKAI ATAS (RINGAN)', 16970900.00, 19771000.00, 22571200.00), +('M-1-05-II', 'PROSEDUR PADA SENDI TUNGKAI ATAS (SEDANG)', 21554700.00, 25111200.00, 28667700.00), +('M-1-05-III', 'PROSEDUR PADA SENDI TUNGKAI ATAS (BERAT)', 25632200.00, 29861500.00, 34090800.00), +('M-1-07-I', 'PROSEDUR FUSI TULANG BELAKANG SELAIN LENGKUNGAN TULANG BELAKANG (RINGAN)', 27367500.00, 31883100.00, 36398700.00), +('M-1-07-II', 'PROSEDUR FUSI TULANG BELAKANG SELAIN LENGKUNGAN TULANG BELAKANG (SEDANG)', 32349500.00, 37687200.00, 43024800.00), +('M-1-07-III', 'PROSEDUR FUSI TULANG BELAKANG SELAIN LENGKUNGAN TULANG BELAKANG (BERAT)', 41077100.00, 47854800.00, 54632500.00), +('M-1-10-I', 'PROSEDUR KRANIAL DAN REKONSTRUKSI TULANG WAJAH (RINGAN)', 23703800.00, 27614900.00, 31526000.00), +('M-1-10-II', 'PROSEDUR KRANIAL DAN REKONSTRUKSI TULANG WAJAH (SEDANG)', 55375100.00, 64512000.00, 73648900.00), +('M-1-10-III', 'PROSEDUR KRANIAL DAN REKONSTRUKSI TULANG WAJAH (BERAT)', 119438900.00, 139146300.00, 158853800.00), +('M-1-20-I', 'PROSEDUR PADA PAHA DAN SENDI PANGGUL (RINGAN)', 18047500.00, 21025300.00, 24003200.00), +('M-1-20-II', 'PROSEDUR PADA PAHA DAN SENDI PANGGUL (SEDANG)', 23061000.00, 26866100.00, 30671200.00), +('M-1-20-III', 'PROSEDUR PADA PAHA DAN SENDI PANGGUL (BERAT)', 57406100.00, 66878100.00, 76350100.00), +('M-1-30-I', 'PROSEDUR KAKI (RINGAN)', 12381000.00, 14423900.00, 16466800.00), +('M-1-30-II', 'PROSEDUR KAKI (SEDANG)', 20062300.00, 23372600.00, 26682900.00), +('M-1-30-III', 'PROSEDUR KAKI (BERAT)', 28687300.00, 33420700.00, 38154200.00), +('M-1-40-I', 'EKSISI LOKAL DAN PENGANGKATAN ALAT FIKSASI INTERNAL (RINGAN)', 7562900.00, 8810800.00, 10058700.00), +('M-1-40-II', 'EKSISI LOKAL DAN PENGANGKATAN ALAT FIKSASI INTERNAL (SEDANG)', 11177100.00, 13021300.00, 14865600.00), +('M-1-40-III', 'EKSISI LOKAL DAN PENGANGKATAN ALAT FIKSASI INTERNAL (BERAT)', 16521300.00, 19247300.00, 21973300.00), +('M-1-50-I', 'PROSEDUR JARINGAN LUNAK (RINGAN)', 7552600.00, 8798800.00, 10044900.00), +('M-1-50-II', 'PROSEDUR JARINGAN LUNAK (SEDANG)', 13786600.00, 16061400.00, 18336200.00), +('M-1-50-III', 'PROSEDUR JARINGAN LUNAK (BERAT)', 22643600.00, 26379800.00, 30116000.00), +('M-1-60-I', 'PROSEDUR SISTEM MUSKULOSKLETAL & JARINGAN PENGHUBUNG LAIN-LAIN (RINGAN)', 11664200.00, 13588800.00, 15513400.00), +('M-1-60-II', 'PROSEDUR SISTEM MUSKULOSKLETAL & JARINGAN PENGHUBUNG LAIN-LAIN (SEDANG)', 14664600.00, 17084200.00, 19503900.00), +('M-1-60-III', 'PROSEDUR SISTEM MUSKULOSKLETAL & JARINGAN PENGHUBUNG LAIN-LAIN (BERAT)', 22152600.00, 25807800.00, 29463000.00), +('M-1-70-I', 'PROSEDUR LUTUT DAN TUNGKAI BAWAH SELAIN KAKI (RINGAN)', 21610100.00, 25175700.00, 28741400.00), +('M-1-70-II', 'PROSEDUR LUTUT DAN TUNGKAI BAWAH SELAIN KAKI (SEDANG)', 23771000.00, 27693200.00, 31615500.00), +('M-1-70-III', 'PROSEDUR LUTUT DAN TUNGKAI BAWAH SELAIN KAKI (BERAT)', 27214600.00, 31705000.00, 36195500.00), +('M-1-80-I', 'PROSEDUR ANGGOTA TUBUH ATAS (RINGAN)', 12284500.00, 14311400.00, 16338300.00), +('M-1-80-II', 'PROSEDUR ANGGOTA TUBUH ATAS (SEDANG)', 14588900.00, 16996100.00, 19403200.00), +('M-1-80-III', 'PROSEDUR ANGGOTA TUBUH ATAS (BERAT)', 29552700.00, 34428900.00, 39305100.00), +('M-4-10-I', 'FRAKTUR FEMUR (RINGAN)', 4327300.00, 5041300.00, 5755400.00), +('M-4-10-II', 'FRAKTUR FEMUR (SEDANG)', 6886700.00, 8023000.00, 9159300.00), +('M-4-10-III', 'FRAKTUR FEMUR (BERAT)', 13390300.00, 15599700.00, 17809000.00), +('M-4-11-I', 'FRAKTUR PELVIS ATAU DISLOKASI SENDI PANGGUL (RINGAN)', 5903500.00, 6877500.00, 7851600.00), +('M-4-11-II', 'FRAKTUR PELVIS ATAU DISLOKASI SENDI PANGGUL (SEDANG)', 11822300.00, 13773000.00, 15723700.00), +('M-4-11-III', 'FRAKTUR PELVIS ATAU DISLOKASI SENDI PANGGUL (BERAT)', 17093100.00, 19913400.00, 22733800.00), +('M-4-12-I', 'FRAKTUR/DISLOKASI SELAIN FEMUR DAN PELVIS (RINGAN)', 4304300.00, 5014500.00, 5724700.00), +('M-4-12-II', 'FRAKTUR/DISLOKASI SELAIN FEMUR DAN PELVIS (SEDANG)', 7159100.00, 8340400.00, 9521700.00), +('M-4-12-III', 'FRAKTUR/DISLOKASI SELAIN FEMUR DAN PELVIS (BERAT)', 9576100.00, 11156200.00, 12736300.00), +('M-4-13-I', 'TUMOR MUSKULOSKLETAL,JARINGAN KONEKTIF DAN FRAKTUR PATOLOGIS (RINGAN)', 7167000.00, 8349600.00, 9532200.00), +('M-4-13-II', 'TUMOR MUSKULOSKLETAL,JARINGAN KONEKTIF DAN FRAKTUR PATOLOGIS (SEDANG)', 10768100.00, 12544800.00, 14321600.00), +('M-4-13-III', 'TUMOR MUSKULOSKLETAL,JARINGAN KONEKTIF DAN FRAKTUR PATOLOGIS (BERAT)', 21008300.00, 24474700.00, 27941100.00), +('M-4-14-I', 'OSTEOMIELITIS (RINGAN)', 8387500.00, 9771400.00, 11155300.00), +('M-4-14-II', 'OSTEOMIELITIS (SEDANG)', 10081100.00, 11744500.00, 13407900.00), +('M-4-14-III', 'OSTEOMIELITIS (BERAT)', 15148900.00, 17648500.00, 20148100.00), +('M-4-15-I', 'ARTRITIS SEPSIS (RINGAN)', 5227400.00, 6089900.00, 6952400.00), +('M-4-15-II', 'ARTRITIS SEPSIS (SEDANG)', 7392400.00, 8612100.00, 9831900.00), +('M-4-15-III', 'ARTRITIS SEPSIS (BERAT)', 14660600.00, 17079600.00, 19498600.00); +INSERT INTO `ina_cbg_rawatinap` (`ID_INACBG_RI`, `Tindakan_RI`, `Tarif_Kelas_3`, `Tarif_Kelas_2`, `Tarif_Kelas_1`) VALUES +('M-4-16-I', 'GANGGUAN JARINGAN KONEKTIF (RINGAN)', 4149700.00, 4834400.00, 5519000.00), +('M-4-16-II', 'GANGGUAN JARINGAN KONEKTIF (SEDANG)', 6645200.00, 7741600.00, 8838000.00), +('M-4-16-III', 'GANGGUAN JARINGAN KONEKTIF (BERAT)', 11721500.00, 13655500.00, 15589500.00), +('M-4-17-I', 'MASALAH BAGIAN PUNGGUNG/PINGGANG BELAKANG (RINGAN)', 4847000.00, 5646800.00, 6446600.00), +('M-4-17-II', 'MASALAH BAGIAN PUNGGUNG/PINGGANG BELAKANG (SEDANG)', 6779100.00, 7897700.00, 9016300.00), +('M-4-17-III', 'MASALAH BAGIAN PUNGGUNG/PINGGANG BELAKANG (BERAT)', 9466600.00, 11028600.00, 12590600.00), +('M-4-18-I', 'PENYAKIT TULANG DAN SENDI LAIN-LAIN (RINGAN)', 4070700.00, 4742400.00, 5414100.00), +('M-4-18-II', 'PENYAKIT TULANG DAN SENDI LAIN-LAIN (SEDANG)', 6134700.00, 7146900.00, 8159200.00), +('M-4-18-III', 'PENYAKIT TULANG DAN SENDI LAIN-LAIN (BERAT)', 7386400.00, 8605200.00, 9824000.00), +('M-4-19-I', 'MALFUNGSI, REAKSI ATAU KOMPLIKASI DARI PROSEDUR ATAU PEMASANGAN ALAT ORTOPEDIK (RINGAN)', 6345700.00, 7392800.00, 8439800.00), +('M-4-19-II', 'MALFUNGSI, REAKSI ATAU KOMPLIKASI DARI PROSEDUR ATAU PEMASANGAN ALAT ORTOPEDIK (SEDANG)', 11036200.00, 12857200.00, 14678100.00), +('M-4-19-III', 'MALFUNGSI, REAKSI ATAU KOMPLIKASI DARI PROSEDUR ATAU PEMASANGAN ALAT ORTOPEDIK (BERAT)', 13965000.00, 16269200.00, 18573500.00), +('M-4-20-I', 'TANDA, GEJALA & PERADANGAN MUSKULOSKELETAL (RINGAN)', 3854000.00, 4489900.00, 5125800.00), +('M-4-20-II', 'TANDA, GEJALA & PERADANGAN MUSKULOSKELETAL (SEDANG)', 5643400.00, 6574500.00, 7505700.00), +('M-4-20-III', 'TANDA, GEJALA & PERADANGAN MUSKULOSKELETAL (BERAT)', 6466300.00, 7533300.00, 8600200.00), +('M-4-21-I', 'GANGGUAN SISTEM MUSKULOSKELETAL & JA(RINGAN) PENYAMBUNG LAIN-LAIN (RINGAN)', 5043700.00, 5875900.00, 6708000.00), +('M-4-21-II', 'GANGGUAN SISTEM MUSKULOSKELETAL & JA(RINGAN) PENYAMBUNG LAIN-LAIN (SEDANG)', 6150000.00, 7164700.00, 8179400.00), +('M-4-21-III', 'GANGGUAN SISTEM MUSKULOSKELETAL & JA(RINGAN) PENYAMBUNG LAIN-LAIN (BERAT)', 10881500.00, 12676900.00, 14472300.00), +('N-1-01-I', 'TRANSPLANTASI GINJAL (RINGAN)', 298446200.00, 347689800.00, 396933500.00), +('N-1-01-II', 'TRANSPLANTASI GINJAL (SEDANG)', 299938400.00, 349428300.00, 398918100.00), +('N-1-01-III', 'TRANSPLANTASI GINJAL (BERAT)', 300973400.00, 350634000.00, 400294600.00), +('N-1-11-I', 'PROSEDUR KANDUNG KEMIH KOMPLEK (RINGAN)', 12437100.00, 14489200.00, 16541400.00), +('N-1-11-II', 'PROSEDUR KANDUNG KEMIH KOMPLEK (SEDANG)', 19666100.00, 22911000.00, 26156000.00), +('N-1-11-III', 'PROSEDUR KANDUNG KEMIH KOMPLEK (BERAT)', 30659400.00, 35718200.00, 40777100.00), +('N-1-12-I', 'MEMBUAT BARU, MEREVISI DAN MEMINDAHKAN ALAT DIALISIS (RINGAN)', 8495400.00, 9897100.00, 11298800.00), +('N-1-12-II', 'MEMBUAT BARU, MEREVISI DAN MEMINDAHKAN ALAT DIALISIS (SEDANG)', 13530700.00, 15763300.00, 17995800.00), +('N-1-12-III', 'MEMBUAT BARU, MEREVISI DAN MEMINDAHKAN ALAT DIALISIS (BERAT)', 27385600.00, 31904200.00, 36422800.00), +('N-1-20-I', 'PROSEDUR SALURAN URIN ATAS (RINGAN)', 13859000.00, 16145700.00, 18432500.00), +('N-1-20-II', 'PROSEDUR SALURAN URIN ATAS (SEDANG)', 19394900.00, 22595100.00, 25795300.00), +('N-1-20-III', 'PROSEDUR SALURAN URIN ATAS (BERAT)', 27140800.00, 31619000.00, 36097300.00), +('N-1-30-I', 'PROSEDUR KANDUNG KEMIH DAN SALURAN URIN BAWAH (RINGAN)', 12683400.00, 14776200.00, 16869000.00), +('N-1-30-II', 'PROSEDUR KANDUNG KEMIH DAN SALURAN URIN BAWAH (SEDANG)', 19187500.00, 22353400.00, 25519400.00), +('N-1-30-III', 'PROSEDUR KANDUNG KEMIH DAN SALURAN URIN BAWAH (BERAT)', 22083000.00, 25726700.00, 29370400.00), +('N-1-40-I', 'PROSEDUR PADA URETRA DAN TRANSURETRA (RINGAN)', 11390700.00, 13270200.00, 15149600.00), +('N-1-40-II', 'PROSEDUR PADA URETRA DAN TRANSURETRA (SEDANG)', 15468200.00, 18020500.00, 20572700.00), +('N-1-40-III', 'PROSEDUR PADA URETRA DAN TRANSURETRA (BERAT)', 18003100.00, 20973600.00, 23944000.00), +('N-4-10-I', 'TUMOR GINJAL & SALURAN URIN & GAGAL GINJAL (RINGAN)', 4839500.00, 5638000.00, 6436500.00), +('N-4-10-II', 'TUMOR GINJAL & SALURAN URIN & GAGAL GINJAL (SEDANG)', 5853500.00, 6819300.00, 7785100.00), +('N-4-10-III', 'TUMOR GINJAL & SALURAN URIN & GAGAL GINJAL (BERAT)', 8609500.00, 10030100.00, 11450600.00), +('N-4-11-I', 'PERADANGAN GINJAL (RINGAN)', 3715100.00, 4328100.00, 4941100.00), +('N-4-11-II', 'PERADANGAN GINJAL (SEDANG)', 6490700.00, 7561600.00, 8632600.00), +('N-4-11-III', 'PERADANGAN GINJAL (BERAT)', 8075800.00, 9408300.00, 10740800.00), +('N-4-12-I', 'INFEKSI GINJAL DAN SALURAN URIN (RINGAN)', 2801100.00, 3263300.00, 3725400.00), +('N-4-12-II', 'INFEKSI GINJAL DAN SALURAN URIN (SEDANG)', 6620000.00, 7712300.00, 8804500.00), +('N-4-12-III', 'INFEKSI GINJAL DAN SALURAN URIN (BERAT)', 9455800.00, 11016000.00, 12576100.00), +('N-4-13-I', 'BATU URIN (RINGAN)', 3790400.00, 4415800.00, 5041100.00), +('N-4-13-II', 'BATU URIN (SEDANG)', 6336600.00, 7382100.00, 8427600.00), +('N-4-13-III', 'BATU URIN (BERAT)', 13109000.00, 15272000.00, 17434900.00), +('N-4-14-I', 'MALFUNGSI, REAKSI ATAU KOMPLIKASI DARI PEMASANGAN ALAT SALURAN URIN, PEMINDAHAN KULIT ATAU\nPENCAKOKAN (RINGAN)', 4814800.00, 5609200.00, 6403700.00), +('N-4-14-II', 'MALFUNGSI, REAKSI ATAU KOMPLIKASI DARI PEMASANGAN ALAT SALURAN URIN, PEMINDAHAN KULIT ATAU\nPENCAKOKAN (SEDANG)', 7494300.00, 8730800.00, 9967400.00), +('N-4-14-III', 'MALFUNGSI, REAKSI ATAU KOMPLIKASI DARI PEMASANGAN ALAT SALURAN URIN, PEMINDAHAN KULIT ATAU\nPENCAKOKAN (BERAT)', 9951400.00, 11593400.00, 13235400.00), +('N-4-15-I', 'GEJALA, TANDA-TANDA PADA GINJAL DAN SALURAN URIN (RINGAN)', 4407900.00, 5135200.00, 5862500.00), +('N-4-15-II', 'GEJALA, TANDA-TANDA PADA GINJAL DAN SALURAN URIN (SEDANG)', 5469400.00, 6371800.00, 7274300.00), +('N-4-15-III', 'GEJALA, TANDA-TANDA PADA GINJAL DAN SALURAN URIN (BERAT)', 6241500.00, 7271300.00, 8301200.00), +('N-4-16-I', 'PENYAKIT GINJAL DAN SALURAN URIN LAIN-LAIN (RINGAN)', 5397400.00, 6288000.00, 7178600.00), +('N-4-16-II', 'PENYAKIT GINJAL DAN SALURAN URIN LAIN-LAIN (SEDANG)', 7703800.00, 8974900.00, 10246100.00), +('N-4-16-III', 'PENYAKIT GINJAL DAN SALURAN URIN LAIN-LAIN (BERAT)', 10254300.00, 11946300.00, 13638300.00), +('O-6-10-I', 'OPERASI PEMBEDAHAN CAESAR (RINGAN)', 5532400.00, 6445200.00, 7358100.00), +('O-6-10-II', 'OPERASI PEMBEDAHAN CAESAR (SEDANG)', 7121000.00, 8296000.00, 9470900.00), +('O-6-10-III', 'OPERASI PEMBEDAHAN CAESAR (BERAT)', 11225100.00, 13077200.00, 14929400.00), +('O-6-11-I', 'PERSALINAN VAGINAL DENGAN STERILISASI &/ DILATASI & KURET (RINGAN)', 5121500.00, 5966500.00, 6811500.00), +('O-6-11-II', 'PERSALINAN VAGINAL DENGAN STERILISASI &/ DILATASI & KURET (SEDANG)', 5738800.00, 6685700.00, 7632600.00), +('O-6-11-III', 'PERSALINAN VAGINAL DENGAN STERILISASI &/ DILATASI & KURET (BERAT)', 7502700.00, 8740600.00, 9978500.00), +('O-6-12-I', 'PERSALINAN VAGINAL DENGAN PROSEDUR SELAIN STERILISASI &/ DILATASI &KURET (RINGAN)', 3668800.00, 4274200.00, 4879500.00), +('O-6-12-II', 'PERSALINAN VAGINAL DENGAN PROSEDUR SELAIN STERILISASI &/ DILATASI & KURET (SEDANG)', 4426100.00, 5156400.00, 5886700.00), +('O-6-12-III', 'PERSALINAN VAGINAL DENGAN PROSEDUR SELAIN STERILISASI &/ DILATASI & KURET (BERAT)', 7211700.00, 8401600.00, 9591500.00), +('O-6-13-I', 'PERSALINAN VAGINAL (RINGAN)', 2613500.00, 3044700.00, 3475900.00), +('O-6-13-II', 'PERSALINAN VAGINAL (SEDANG)', 3343300.00, 3894900.00, 4446500.00), +('O-6-13-III', 'PERSALINAN VAGINAL (BERAT)', 4186800.00, 4877600.00, 5568400.00), +('P-8-01-I', 'NEONATAL DENGAN PENCANGKOKAN ORGAN ATAU OKSIGENASI SELAPUT EKSTRAKORPORAL (RINGAN)', 79373700.00, 92470400.00, 105567100.00), +('P-8-01-II', 'NEONATAL DENGAN PENCANGKOKAN ORGAN ATAU OKSIGENASI SELAPUT EKSTRAKORPORAL (SEDANG)', 98213100.00, 114418300.00, 130623500.00), +('P-8-01-III', 'NEONATAL DENGAN PENCANGKOKAN ORGAN ATAU OKSIGENASI SELAPUT EKSTRAKORPORAL (BERAT)', 115274600.00, 134294900.00, 153315200.00), +('P-8-02-I', 'NEONATAL, BERAT BADAN LAHIR GROUP-1 DENGAN PROSEDUR MAYOR (RINGAN)', 108341400.00, 126217700.00, 144094100.00), +('P-8-02-II', 'NEONATAL, BERAT BADAN LAHIR GROUP-1 DENGAN PROSEDUR MAYOR (SEDANG)', 124278500.00, 144784400.00, 165290400.00), +('P-8-02-III', 'NEONATAL, BERAT BADAN LAHIR GROUP-1 DENGAN PROSEDUR MAYOR (BERAT)', 141997000.00, 165426500.00, 188856000.00), +('P-8-03-I', 'NEONATAL, BERAT BADAN LAHIR GROUP-1 TANPA PROSEDUR MAYOR (RINGAN)', 16251100.00, 18932500.00, 21614000.00), +('P-8-03-II', 'NEONATAL, BERAT BADAN LAHIR GROUP-1 TANPA PROSEDUR MAYOR (SEDANG)', 21510600.00, 25059800.00, 28609100.00), +('P-8-03-III', 'NEONATAL, BERAT BADAN LAHIR GROUP-1 TANPA PROSEDUR MAYOR (BERAT)', 32580600.00, 37956400.00, 43332200.00), +('P-8-04-I', 'NEONATAL, BERAT BADAN LAHIR GROUP-2 DENGAN PROSEDUR MAYOR (RINGAN)', 52369900.00, 61010900.00, 69652000.00), +('P-8-04-II', 'NEONATAL, BERAT BADAN LAHIR GROUP-2 DENGAN PROSEDUR MAYOR (SEDANG)', 67964800.00, 79179000.00, 90393200.00), +('P-8-04-III', 'NEONATAL, BERAT BADAN LAHIR GROUP-2 DENGAN PROSEDUR MAYOR (BERAT)', 97444400.00, 113522700.00, 129601100.00), +('P-8-05-I', 'NEONATAL, BERAT BADAN LAHIR GROUP-3 DENGAN PROSEDUR MAYOR (RINGAN)', 28477100.00, 33175800.00, 37874600.00), +('P-8-05-II', 'NEONATAL, BERAT BADAN LAHIR GROUP-3 DENGAN PROSEDUR MAYOR (SEDANG)', 43930900.00, 51179500.00, 58428100.00), +('P-8-05-III', 'NEONATAL, BERAT BADAN LAHIR GROUP-3 DENGAN PROSEDUR MAYOR (BERAT)', 59468500.00, 69280800.00, 79093100.00), +('P-8-06-I', 'NEONATAL, BERAT BADAN LAHIR GROUP-4 DENGAN PROSEDUR MAYOR (RINGAN)', 14270900.00, 16625600.00, 18980300.00), +('P-8-06-II', 'NEONATAL, BERAT BADAN LAHIR GROUP-4 DENGAN PROSEDUR MAYOR (SEDANG)', 28411600.00, 33099600.00, 37787500.00), +('P-8-06-III', 'NEONATAL, BERAT BADAN LAHIR GROUP-4 DENGAN PROSEDUR MAYOR (BERAT)', 38767600.00, 45164200.00, 51560900.00), +('P-8-07-I', 'NEONATAL, BERAT BADAN LAHIR GROUP-5 DENGAN PROSEDUR MAYOR (RINGAN)', 12610400.00, 14691100.00, 16771800.00), +('P-8-07-II', 'NEONATAL, BERAT BADAN LAHIR GROUP-5 DENGAN PROSEDUR MAYOR (SEDANG)', 25795500.00, 30051800.00, 34308100.00), +('P-8-07-III', 'NEONATAL, BERAT BADAN LAHIR GROUP-5 DENGAN PROSEDUR MAYOR (BERAT)', 38674600.00, 45056000.00, 51437300.00), +('P-8-08-I', 'NEONATAL, BERAT BADAN LAHIR GROUP-5 DENGAN SINDROMA DISTRES PERNAFASAN (RINGAN)', 5276500.00, 6147100.00, 7017700.00), +('P-8-08-II', 'NEONATAL, BERAT BADAN LAHIR GROUP-5 DENGAN SINDROMA DISTRES PERNAFASAN (SEDANG)', 7472500.00, 8705400.00, 9938300.00), +('P-8-08-III', 'NEONATAL, BERAT BADAN LAHIR GROUP-5 DENGAN SINDROMA DISTRES PERNAFASAN (BERAT)', 14536800.00, 16935400.00, 19333900.00), +('P-8-11-I', 'NEONATAL, BBL 1000 - 1499 GR TANPA PROSEDUR MAYOR (RINGAN)', 13542600.00, 15777100.00, 18011700.00), +('P-8-11-II', 'NEONATAL, BBL 1000 - 1499 GR TANPA PROSEDUR MAYOR (SEDANG)', 20597100.00, 23995600.00, 27394100.00), +('P-8-11-III', 'NEONATAL, BBL 1000 - 1499 GR TANPA PROSEDUR MAYOR (BERAT)', 27821900.00, 32412500.00, 37003100.00), +('P-8-12-I', 'NEONATAL, BBL 1500 - 1999 GR TANPA PROSEDUR MAYOR (RINGAN)', 12311600.00, 14343000.00, 16374300.00), +('P-8-12-II', 'NEONATAL, BBL 1500 - 1999 GR TANPA PROSEDUR MAYOR (SEDANG)', 15044100.00, 17526400.00, 20008600.00), +('P-8-12-III', 'NEONATAL, BBL 1500 - 1999 GR TANPA PROSEDUR MAYOR (BERAT)', 21916700.00, 25532900.00, 29149100.00), +('P-8-13-I', 'NEONATAL, BBL 2000 - 2499 GR TANPA PROSEDUR MAYOR (RINGAN)', 6839700.00, 7968300.00, 9096900.00), +('P-8-13-II', 'NEONATAL, BBL 2000 - 2499 GR TANPA PROSEDUR MAYOR (SEDANG)', 10670000.00, 12430500.00, 14191100.00), +('P-8-13-III', 'NEONATAL, BBL 2000 - 2499 GR TANPA PROSEDUR MAYOR (BERAT)', 16858900.00, 19640600.00, 22422400.00), +('P-8-14-I', 'NEONATAL, BBL > 2499 GR DENGAN ANOMALI MAYOR ATAU KONDISI HEREDITER (RINGAN)', 7851700.00, 9147300.00, 10442800.00), +('P-8-14-II', 'NEONATAL, BBL > 2499 GR DENGAN ANOMALI MAYOR ATAU KONDISI HEREDITER (SEDANG)', 15881500.00, 18501900.00, 21122400.00), +('P-8-14-III', 'NEONATAL, BBL > 2499 GR DENGAN ANOMALI MAYOR ATAU KONDISI HEREDITER (BERAT)', 41206600.00, 48005700.00, 54804800.00), +('P-8-15-I', 'NEONATAL, BBL > 2499 GR DENGAN SINDROMA ASPIRASI (RINGAN)', 3883000.00, 4523700.00, 5164400.00), +('P-8-15-II', 'NEONATAL, BBL > 2499 GR DENGAN SINDROMA ASPIRASI (SEDANG)', 7795400.00, 9081600.00, 10367900.00), +('P-8-15-III', 'NEONATAL, BBL > 2499 GR DENGAN SINDROMA ASPIRASI (BERAT)', 9123400.00, 10628800.00, 12134200.00), +('P-8-16-I', 'NEONATAL, BBL > 2499 GR DENGAN KONGENITAL/INFEKSI PERINATAL (RINGAN)', 3514200.00, 4094000.00, 4673800.00), +('P-8-16-II', 'NEONATAL, BBL > 2499 GR DENGAN KONGENITAL/INFEKSI PERINATAL (SEDANG)', 6753000.00, 7867200.00, 8981400.00), +('P-8-16-III', 'NEONATAL, BBL > 2499 GR DENGAN KONGENITAL/INFEKSI PERINATAL (BERAT)', 15836700.00, 18449700.00, 21062700.00), +('P-8-17-I', 'NEONATAL, BBL > 2499 GR TANPA PROSEDUR MAYOR (RINGAN)', 4559800.00, 5312200.00, 6064600.00), +('P-8-17-II', 'NEONATAL, BBL > 2499 GR TANPA PROSEDUR MAYOR (SEDANG)', 8207600.00, 9561900.00, 10916200.00), +('P-8-17-III', 'NEONATAL, BBL > 2499 GR TANPA PROSEDUR MAYOR (BERAT)', 14049100.00, 16367200.00, 18685300.00), +('S-4-10-I', 'KECEDERAAN PADA TEMPAT YANG TAK SPESIFIK ATAU BANYAK TEMPAT (RINGAN)', 3962200.00, 4615900.00, 5269700.00), +('S-4-10-II', 'KECEDERAAN PADA TEMPAT YANG TAK SPESIFIK ATAU BANYAK TEMPAT (SEDANG)', 4910200.00, 5720400.00, 6530600.00), +('S-4-10-III', 'KECEDERAAN PADA TEMPAT YANG TAK SPESIFIK ATAU BANYAK TEMPAT (BERAT)', 6682800.00, 7785500.00, 8888200.00), +('S-4-11-I', 'REAKSI ALLERGI (RINGAN)', 2296000.00, 2674800.00, 3053700.00), +('S-4-11-II', 'REAKSI ALLERGI (SEDANG)', 3701000.00, 4311600.00, 4922300.00), +('S-4-11-III', 'REAKSI ALLERGI (BERAT)', 8539100.00, 9948100.00, 11357100.00), +('S-4-12-I', 'EFEK TOKSIK DAN KERACUNAN OBAT (RINGAN)', 2913000.00, 3393600.00, 3874300.00), +('S-4-12-II', 'EFEK TOKSIK DAN KERACUNAN OBAT (SEDANG)', 3877000.00, 4516700.00, 5156500.00), +('S-4-12-III', 'EFEK TOKSIK DAN KERACUNAN OBAT (BERAT)', 6720900.00, 7829800.00, 8938800.00), +('S-4-13-I', 'KOMPLIKASI DARI PENATALAKSANAAN PASIEN (RINGAN)', 4643200.00, 5409300.00, 6175400.00), +('S-4-13-II', 'KOMPLIKASI DARI PENATALAKSANAAN PASIEN (SEDANG)', 7631500.00, 8890700.00, 10149900.00), +('S-4-13-III', 'KOMPLIKASI DARI PENATALAKSANAAN PASIEN (BERAT)', 12386700.00, 14430500.00, 16474400.00), +('S-4-14-I', 'SINDROMA MALTREATMENT PADA DEWASA ATAU KANAK-KANAK (RINGAN)', 2177000.00, 2536200.00, 2895400.00), +('S-4-14-II', 'SINDROMA MALTREATMENT PADA DEWASA ATAU KANAK-KANAK (SEDANG)', 4624000.00, 5386900.00, 6149900.00), +('S-4-14-III', 'SINDROMA MALTREATMENT PADA DEWASA ATAU KANAK-KANAK (BERAT)', 8768700.00, 10215500.00, 11662400.00), +('S-4-15-I', 'LUKA BAKAR, DIRUJUK KE FASILITAS PERAWATAN AKUT YANG LAIN (RINGAN)', 1457400.00, 1697900.00, 1938400.00), +('S-4-15-II', 'LUKA BAKAR, DIRUJUK KE FASILITAS PERAWATAN AKUT YANG LAIN (SEDANG)', 2750400.00, 3204200.00, 3658000.00), +('S-4-15-III', 'LUKA BAKAR, DIRUJUK KE FASILITAS PERAWATAN AKUT YANG LAIN (BERAT)', 3562300.00, 4150000.00, 4737800.00), +('S-4-16-I', 'LUKA BAKAR (RINGAN)', 7555800.00, 8802500.00, 10049200.00), +('S-4-16-II', 'LUKA BAKAR (SEDANG)', 10126900.00, 11797800.00, 13468700.00), +('S-4-16-III', 'LUKA BAKAR (BERAT)', 14635800.00, 17050700.00, 19465600.00), +('S-4-17-I', 'DIAGNOSIS KECEDERAAN, KERACUNAN DAN EFEK TOKSIK LAIN-LAIN (RINGAN)', 3661200.00, 4265300.00, 4869400.00), +('S-4-17-II', 'DIAGNOSIS KECEDERAAN, KERACUNAN DAN EFEK TOKSIK LAIN-LAIN (SEDANG)', 5392900.00, 6282700.00, 7172600.00), +('S-4-17-III', 'DIAGNOSIS KECEDERAAN, KERACUNAN DAN EFEK TOKSIK LAIN-LAIN (BERAT)', 6486100.00, 7556300.00, 8626600.00), +('T-1-10-I', 'TERAPI REHABILITASI &/ DETOKSIKASI ALKOHOL & OBAT (RINGAN)', 2431300.00, 2832500.00, 3233700.00), +('T-1-10-II', 'TERAPI REHABILITASI &/ DETOKSIKASI ALKOHOL & OBAT (SEDANG)', 3265500.00, 3804300.00, 4343200.00), +('T-1-10-III', 'TERAPI REHABILITASI &/ DETOKSIKASI ALKOHOL & OBAT (BERAT)', 5940400.00, 6920600.00, 7900800.00), +('T-4-10-I', 'PENYALAHGUNAAN & KETERGANTUNGAN OBAT DAN ALKOHOL, MENOLAK NASEHAT DOKTER (RINGAN)', 1331300.00, 1551000.00, 1770700.00), +('T-4-10-II', 'PENYALAHGUNAAN & KETERGANTUNGAN OBAT DAN ALKOHOL, MENOLAK NASEHAT DOKTER (SEDANG)', 2536700.00, 2955300.00, 3373900.00), +('T-4-10-III', 'PENYALAHGUNAAN & KETERGANTUNGAN OBAT DAN ALKOHOL, MENOLAK NASEHAT DOKTER (BERAT)', 3687200.00, 4295600.00, 4904000.00), +('T-4-11-I', 'PENYALAHGUNAAN & KETERGANTUNGAN ALKOHOL,OPIUM DAN KOKAIN (RINGAN)', 1285700.00, 1497800.00, 1710000.00), +('T-4-11-II', 'PENYALAHGUNAAN & KETERGANTUNGAN ALKOHOL,OPIUM DAN KOKAIN (SEDANG)', 2023400.00, 2357200.00, 2691100.00), +('T-4-11-III', 'PENYALAHGUNAAN & KETERGANTUNGAN ALKOHOL,OPIUM DAN KOKAIN (BERAT)', 3259000.00, 3796700.00, 4334500.00), +('T-4-12-I', 'PENYALAHGUNAAN & KETERGANTUNGAN OBAT LAIN-LAIN (RINGAN)', 3012500.00, 3509500.00, 4006600.00), +('T-4-12-II', 'PENYALAHGUNAAN & KETERGANTUNGAN OBAT LAIN-LAIN (SEDANG)', 4547600.00, 5298000.00, 6048400.00), +('T-4-12-III', 'PENYALAHGUNAAN & KETERGANTUNGAN OBAT LAIN-LAIN (BERAT)', 7039000.00, 8200400.00, 9361900.00), +('U-1-10-I', 'PROSEDUR KOMPLEKS LARING (RINGAN)', 14162500.00, 16499300.00, 18836100.00), +('U-1-10-II', 'PROSEDUR KOMPLEKS LARING (SEDANG)', 22918700.00, 26700300.00, 30481900.00), +('U-1-10-III', 'PROSEDUR KOMPLEKS LARING (BERAT)', 36030300.00, 41975300.00, 47920300.00), +('U-1-11-I', 'PROSEDUR KOMPLEK LEHER DAN KEPALA LAIN-LAIN (RINGAN)', 12665900.00, 14755800.00, 16845700.00), +('U-1-11-II', 'PROSEDUR KOMPLEK LEHER DAN KEPALA LAIN-LAIN (SEDANG)', 18911900.00, 22032400.00, 25152900.00), +('U-1-11-III', 'PROSEDUR KOMPLEK LEHER DAN KEPALA LAIN-LAIN (BERAT)', 25240300.00, 29404900.00, 33569500.00), +('U-1-12-I', 'PROSEDUR MASTOID DAN SINUS (RINGAN)', 9604400.00, 11189100.00, 12773900.00), +('U-1-12-II', 'PROSEDUR MASTOID DAN SINUS (SEDANG)', 14727800.00, 17157900.00, 19588000.00), +('U-1-12-III', 'PROSEDUR MASTOID DAN SINUS (BERAT)', 21632000.00, 25201300.00, 28770600.00), +('U-1-13-I', 'PROSEDUR KELENJAR LUDAH (RINGAN)', 9611000.00, 11196800.00, 12782700.00), +('U-1-13-II', 'PROSEDUR KELENJAR LUDAH (SEDANG)', 11198300.00, 13046000.00, 14893800.00), +('U-1-13-III', 'PROSEDUR KELENJAR LUDAH (BERAT)', 18563300.00, 21626200.00, 24689200.00), +('U-1-14-I', 'OPERASI BIBIR SUMBING & LANGIT-LANGIT MULUT (RINGAN)', 6484500.00, 7554400.00, 8624300.00), +('U-1-14-II', 'OPERASI BIBIR SUMBING & LANGIT-LANGIT MULUT (SEDANG)', 9271000.00, 10800700.00, 12330400.00), +('U-1-14-III', 'OPERASI BIBIR SUMBING & LANGIT-LANGIT MULUT (BERAT)', 10888100.00, 12684700.00, 14481200.00), +('U-1-15-I', 'PROSEDUR TONSIL & ADENOID (RINGAN)', 4953900.00, 5771300.00, 6588700.00), +('U-1-15-II', 'PROSEDUR TONSIL & ADENOID (SEDANG)', 6427100.00, 7487600.00, 8548100.00), +('U-1-15-III', 'PROSEDUR TONSIL & ADENOID (BERAT)', 9790500.00, 11405900.00, 13021400.00), +('U-1-20-I', 'PROSEDUR TENGGOROKAN, MULUT, HIDUNG DAN TELINGA LAIN-LAIN (RINGAN)', 9169300.00, 10682200.00, 12195100.00), +('U-1-20-II', 'PROSEDUR TENGGOROKAN, MULUT, HIDUNG DAN TELINGA LAIN-LAIN (SEDANG)', 14398800.00, 16774600.00, 19150300.00), +('U-1-20-III', 'PROSEDUR TENGGOROKAN, MULUT, HIDUNG DAN TELINGA LAIN-LAIN (BERAT)', 26800200.00, 31222300.00, 35644300.00), +('U-1-30-I', 'PROSEDUR MULUT (RINGAN)', 7519700.00, 8760400.00, 10001200.00), +('U-1-30-II', 'PROSEDUR MULUT (SEDANG)', 10196300.00, 11878700.00, 13561100.00), +('U-1-30-III', 'PROSEDUR MULUT (BERAT)', 19939200.00, 23229200.00, 26519200.00), +('U-4-10-I', 'NEOPLASMA TELIGA, HIDUNG, MULUT DAN TENGGOROKAN (RINGAN)', 5411500.00, 6304400.00, 7197300.00), +('U-4-10-II', 'NEOPLASMA TELIGA, HIDUNG, MULUT DAN TENGGOROKAN (SEDANG)', 12388400.00, 14432500.00, 16476600.00), +('U-4-10-III', 'NEOPLASMA TELIGA, HIDUNG, MULUT DAN TENGGOROKAN (BERAT)', 19020100.00, 22158400.00, 25296700.00), +('U-4-11-I', 'DYSEQUILIBRIUM (RINGAN)', 2009400.00, 2341000.00, 2672500.00), +('U-4-11-II', 'DYSEQUILIBRIUM (SEDANG)', 3005100.00, 3500900.00, 3996800.00), +('U-4-11-III', 'DYSEQUILIBRIUM (BERAT)', 3294900.00, 3838500.00, 4382100.00), +('U-4-12-I', 'EPISTAKSIS/PERDARAHAN HIDUNG (RINGAN)', 3116900.00, 3631100.00, 4145400.00), +('U-4-12-II', 'EPISTAKSIS/PERDARAHAN HIDUNG (SEDANG)', 4531900.00, 5279700.00, 6027500.00), +('U-4-12-III', 'EPISTAKSIS/PERDARAHAN HIDUNG (BERAT)', 7936700.00, 9246300.00, 10555900.00), +('U-4-13-I', 'PERADANGAN EPIGLOTIS, TELINGA TENGAH, ISPA DAN LARINGOTRAKEITIS (RINGAN)', 2130300.00, 2481800.00, 2833200.00), +('U-4-13-II', 'PERADANGAN EPIGLOTIS, TELINGA TENGAH, ISPA DAN LARINGOTRAKEITIS (SEDANG)', 3481000.00, 4055300.00, 4629600.00), +('U-4-13-III', 'PERADANGAN EPIGLOTIS, TELINGA TENGAH, ISPA DAN LARINGOTRAKEITIS (BERAT)', 5620600.00, 6548000.00, 7475300.00), +('U-4-14-I', 'PENYAKIT MULUT DAN GIGI (RINGAN)', 5879400.00, 6849500.00, 7819500.00), +('U-4-14-II', 'PENYAKIT MULUT DAN GIGI (SEDANG)', 7830800.00, 9122900.00, 10414900.00), +('U-4-14-III', 'PENYAKIT MULUT DAN GIGI (BERAT)', 10831300.00, 12618500.00, 14405600.00), +('U-4-15-I', 'PENYAKIT TELINGA, HIDUNG, MULUT DAN TENGGOROKAN LAIN-LAIN (RINGAN)', 4689600.00, 5463400.00, 6237200.00), +('U-4-15-II', 'PENYAKIT TELINGA, HIDUNG, MULUT DAN TENGGOROKAN LAIN-LAIN (SEDANG)', 5393500.00, 6283500.00, 7173400.00), +('U-4-15-III', 'PENYAKIT TELINGA, HIDUNG, MULUT DAN TENGGOROKAN LAIN-LAIN (BERAT)', 7541100.00, 8785400.00, 10029700.00), +('V-1-10-I', 'PROSEDUR PENGANGKATAN PROSTAT KOMPLEK (RINGAN)', 9256700.00, 10784000.00, 12311400.00), +('V-1-10-II', 'PROSEDUR PENGANGKATAN PROSTAT KOMPLEK (SEDANG)', 14531700.00, 16929400.00, 19327200.00), +('V-1-10-III', 'PROSEDUR PENGANGKATAN PROSTAT KOMPLEK (BERAT)', 17821100.00, 20761600.00, 23702100.00), +('V-1-11-I', 'PROSEDUR PADA PENIS (RINGAN)', 13420700.00, 15635100.00, 17849500.00), +('V-1-11-II', 'PROSEDUR PADA PENIS (SEDANG)', 15324700.00, 17853300.00, 20381900.00), +('V-1-11-III', 'PROSEDUR PADA PENIS (BERAT)', 23999100.00, 27959000.00, 31918900.00), +('V-1-12-I', 'PROSEDUR PADA SKROTUM DAN PROSTAT KOMPLEK-MODERAT (RINGAN)', 12617900.00, 14699900.00, 16781900.00), +('V-1-12-II', 'PROSEDUR PADA SKROTUM DAN PROSTAT KOMPLEK-MODERAT (SEDANG)', 17230800.00, 20073900.00, 22917000.00), +('V-1-12-III', 'PROSEDUR PADA SKROTUM DAN PROSTAT KOMPLEK-MODERAT (BERAT)', 21840300.00, 25443900.00, 29047600.00), +('V-1-13-I', 'PROSEDUR PADA SKROTUM DAN PROSTAT NON KOMPLEK (RINGAN)', 6581700.00, 7667700.00, 8753700.00), +('V-1-13-II', 'PROSEDUR PADA SKROTUM DAN PROSTAT NON KOMPLEK (SEDANG)', 12575500.00, 14650400.00, 16725400.00), +('V-1-13-III', 'PROSEDUR PADA SKROTUM DAN PROSTAT NON KOMPLEK (BERAT)', 19729300.00, 22984600.00, 26240000.00), +('V-1-14-I', 'PENGANGKATAN PROSTAT MELALUI URETRA (RINGAN)', 12906700.00, 15036300.00, 17165900.00), +('V-1-14-II', 'PENGANGKATAN PROSTAT MELALUI URETRA (SEDANG)', 18753000.00, 21847200.00, 24941500.00), +('V-1-14-III', 'PENGANGKATAN PROSTAT MELALUI URETRA (BERAT)', 23416400.00, 27280100.00, 31143900.00), +('V-1-15-I', 'SIRKUMSISI (RINGAN)', 2078700.00, 2421700.00, 2764700.00), +('V-1-15-II', 'SIRKUMSISI (SEDANG)', 2514400.00, 2929300.00, 3344200.00), +('V-1-15-III', 'SIRKUMSISI (BERAT)', 3078400.00, 3586400.00, 4094300.00), +('V-4-10-I', 'TUMOR PADA SISTEM REPRODUKSI LAKI-LAKI (RINGAN)', 5617300.00, 6544200.00, 7471100.00), +('V-4-10-II', 'TUMOR PADA SISTEM REPRODUKSI LAKI-LAKI (SEDANG)', 9330700.00, 10870200.00, 12409800.00), +('V-4-10-III', 'TUMOR PADA SISTEM REPRODUKSI LAKI-LAKI (BERAT)', 15382900.00, 17921100.00, 20459300.00), +('V-4-11-I', 'PENYAKIT SISTEM REPRODUKSI LAKI-LAKI SELAIN TUMOR (RINGAN)', 5393000.00, 6282800.00, 7172700.00), +('V-4-11-II', 'PENYAKIT SISTEM REPRODUKSI LAKI-LAKI SELAIN TUMOR (SEDANG)', 7236000.00, 8429900.00, 9623900.00), +('V-4-11-III', 'PENYAKIT SISTEM REPRODUKSI LAKI-LAKI SELAIN TUMOR (BERAT)', 9692700.00, 11292000.00, 12891300.00), +('W-1-01-I', 'OPERASI PENGANGKATAN RAHIM DAN VULVA RADIKAL & EVISCERASI (RINGAN)', 14699400.00, 17124800.00, 19550200.00), +('W-1-01-II', 'OPERASI PENGANGKATAN RAHIM DAN VULVA RADIKAL & EVISCERASI (SEDANG)', 17852000.00, 20797600.00, 23743200.00), +('W-1-01-III', 'OPERASI PENGANGKATAN RAHIM DAN VULVA RADIKAL & EVISCERASI (BERAT)', 25140700.00, 29288900.00, 33437100.00), +('W-1-10-I', 'PROSEDUR ABORSI (RINGAN)', 3284600.00, 3826500.00, 4368400.00), +('W-1-10-II', 'PROSEDUR ABORSI (SEDANG)', 5723500.00, 6667900.00, 7612200.00), +('W-1-10-III', 'PROSEDUR ABORSI (BERAT)', 5925500.00, 6903200.00, 7880800.00), +('W-1-11-I', 'PROSEDUR DILATASI, KURET, INTRAUTERIN & SERVIK (RINGAN)', 3259100.00, 3796800.00, 4334500.00), +('W-1-11-II', 'PROSEDUR DILATASI, KURET, INTRAUTERIN & SERVIK (SEDANG)', 5347600.00, 6229900.00, 7112200.00), +('W-1-11-III', 'PROSEDUR DILATASI, KURET, INTRAUTERIN & SERVIK (BERAT)', 5843600.00, 6807800.00, 7771900.00), +('W-1-12-I', 'PROSEDUR PADAA TUBA FALOPII (RINGAN)', 4528700.00, 5275900.00, 6023100.00), +('W-1-12-II', 'PROSEDUR PADAA TUBA FALOPII (SEDANG)', 6687100.00, 7790500.00, 8893900.00), +('W-1-12-III', 'PROSEDUR PADAA TUBA FALOPII (BERAT)', 9351400.00, 10894400.00, 12437400.00), +('W-1-13-I', 'INTERUPSI TUBA DENGAN ENDOSKOP (RINGAN)', 3603900.00, 4198500.00, 4793200.00), +('W-1-13-II', 'INTERUPSI TUBA DENGAN ENDOSKOP (SEDANG)', 3912600.00, 4558200.00, 5203800.00), +('W-1-13-III', 'INTERUPSI TUBA DENGAN ENDOSKOP (BERAT)', 5255600.00, 6122800.00, 6990000.00), +('W-1-20-I', 'PROSEDUR PADA RAHIM & ADNEKSA (RINGAN)', 12068900.00, 14060300.00, 16051700.00), +('W-1-20-II', 'PROSEDUR PADA RAHIM & ADNEKSA (SEDANG)', 15080200.00, 17568400.00, 20056700.00), +('W-1-20-III', 'PROSEDUR PADA RAHIM & ADNEKSA (BERAT)', 17481800.00, 20366300.00, 23250800.00), +('W-1-30-I', 'PROSEDUR PADA VAGINA, SERVIK & VULVA (RINGAN)', 6813100.00, 7937200.00, 9061400.00), +('W-1-30-II', 'PROSEDUR PADA VAGINA, SERVIK & VULVA (SEDANG)', 10866800.00, 12659800.00, 14452900.00), +('W-1-30-III', 'PROSEDUR PADA VAGINA, SERVIK & VULVA (BERAT)', 26662200.00, 31061500.00, 35460800.00), +('W-4-10-I', 'TUMOR SISTEM REPRODUKSI WANITA (RINGAN)', 5076400.00, 5914000.00, 6751700.00), +('W-4-10-II', 'TUMOR SISTEM REPRODUKSI WANITA (SEDANG)', 7525600.00, 8767300.00, 10009100.00), +('W-4-10-III', 'TUMOR SISTEM REPRODUKSI WANITA (BERAT)', 14872100.00, 17326000.00, 19779900.00), +('W-4-11-I', 'INFEKSI SISTEM REPRODUKSI WANITA (RINGAN)', 4155000.00, 4840600.00, 5526200.00), +('W-4-11-II', 'INFEKSI SISTEM REPRODUKSI WANITA (SEDANG)', 6307900.00, 7348700.00, 8389600.00), +('W-4-11-III', 'INFEKSI SISTEM REPRODUKSI WANITA (BERAT)', 7677900.00, 8944800.00, 10211700.00), +('W-4-12-I', 'GANGGUAN MENSTRUASI & SISTEM REPRODUKSI WANITA LAIN-LAIN (RINGAN)', 3115700.00, 3629800.00, 4143900.00), +('W-4-12-II', 'GANGGUAN MENSTRUASI & SISTEM REPRODUKSI WANITA LAIN-LAIN (SEDANG)', 5929200.00, 6907500.00, 7885900.00), +('W-4-12-III', 'GANGGUAN MENSTRUASI & SISTEM REPRODUKSI WANITA LAIN-LAIN (BERAT)', 8725200.00, 10164900.00, 11604600.00), +('W-4-13-I', 'ABORTUS (RINGAN)', 1816400.00, 2116100.00, 2415900.00), +('W-4-13-II', 'ABORTUS (SEDANG)', 2742200.00, 3194700.00, 3647100.00), +('W-4-13-III', 'ABORTUS (BERAT)', 3133500.00, 3650500.00, 4167500.00), +('W-4-14-I', 'ABORTUS MENGANCAM (RINGAN)', 2427500.00, 2828000.00, 3228500.00), +('W-4-14-II', 'ABORTUS MENGANCAM (SEDANG)', 2889400.00, 3366100.00, 3842800.00), +('W-4-14-III', 'ABORTUS MENGANCAM (BERAT)', 4428800.00, 5159500.00, 5890200.00), +('W-4-15-I', 'PERSALINAN FALSE LABOR (RINGAN)', 2198300.00, 2561000.00, 2923700.00), +('W-4-15-II', 'PERSALINAN FALSE LABOR (SEDANG)', 2904200.00, 3383300.00, 3862500.00), +('W-4-15-III', 'PERSALINAN FALSE LABOR (BERAT)', 5044300.00, 5876600.00, 6708900.00), +('W-4-16-I', 'GANGGUAN ANTEPARTUM (RINGAN)', 2332700.00, 2717600.00, 3102400.00), +('W-4-16-II', 'GANGGUAN ANTEPARTUM (SEDANG)', 4323700.00, 5037100.00, 5750400.00), +('W-4-16-III', 'GANGGUAN ANTEPARTUM (BERAT)', 7910800.00, 9216100.00, 10521300.00), +('W-4-17-I', 'GANGGUAN POSTPARTUM (RINGAN)', 2320900.00, 2703900.00, 3086800.00), +('W-4-17-II', 'GANGGUAN POSTPARTUM (SEDANG)', 4307500.00, 5018200.00, 5729000.00), +('W-4-17-III', 'GANGGUAN POSTPARTUM (BERAT)', 8597500.00, 10016100.00, 11434700.00), +('Z-4-10-I', 'REHABILITASI (RINGAN)', 5119200.00, 5963900.00, 6808600.00), +('Z-4-10-II', 'REHABILITASI (SEDANG)', 6794600.00, 7915700.00, 9036800.00), +('Z-4-10-III', 'REHABILITASI (BERAT)', 9652900.00, 11245600.00, 12838400.00), +('Z-4-11-I', 'GEJALA-GEJALA DAN TANDA-TANDA (RINGAN)', 3332600.00, 3882500.00, 4432400.00), +('Z-4-11-II', 'GEJALA-GEJALA DAN TANDA-TANDA (SEDANG)', 4002600.00, 4663000.00, 5323500.00), +('Z-4-11-III', 'GEJALA-GEJALA DAN TANDA-TANDA (BERAT)', 5501900.00, 6409700.00, 7317500.00), +('Z-4-12-I', 'FAKTOR-FAKTOR YANG MEMPENGARUHI STATUS KESEHATAN LAIN-LAIN (RINGAN)', 2480100.00, 2889300.00, 3298500.00), +('Z-4-12-II', 'FAKTOR-FAKTOR YANG MEMPENGARUHI STATUS KESEHATAN LAIN-LAIN (SEDANG)', 4444500.00, 5177800.00, 5911100.00), +('Z-4-12-III', 'FAKTOR-FAKTOR YANG MEMPENGARUHI STATUS KESEHATAN LAIN-LAIN (BERAT)', 9330700.00, 10870300.00, 12409800.00); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `ina_cbg_rawatjalan` +-- + +CREATE TABLE `ina_cbg_rawatjalan` ( + `ID_INACBG_RJ` varchar(20) NOT NULL, + `Tindakan_RJ` varchar(150) DEFAULT NULL, + `Tarif_RJ` decimal(15,2) DEFAULT NULL +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; + +-- +-- Dumping data for table `ina_cbg_rawatjalan` +-- + +INSERT INTO `ina_cbg_rawatjalan` (`ID_INACBG_RJ`, `Tindakan_RJ`, `Tarif_RJ`) VALUES +('B-2-10-0', 'RUMAH SAKIT KELAS A PEMERINTAH', 1390000.00), +('B-2-11-0', 'RAWAT JALAN', 1803000.00), +('B-2-12-0', 'PROSEDUR KOLESISTEKTOMI TANPA LAPAROSKOPI', 3352900.00), +('B-2-13-0', 'PROSEDUR LAIN-LAIN PADA HEPATOBILIARI & PANKREAS', 3463500.00), +('B-2-14-0', 'PROSEDUR KOLESISTEKTOMI DENGAN LAPAROSKOPI', 3705500.00), +('B-3-10-0', 'PROSEDUR PADA PERKUTAN HATI & SALURAN EMPEDU', 1290400.00), +('B-3-11-0', 'PROSEDUR ENDOSKOPI SALURAN EMPEDU', 1677500.00), +('B-3-12-0', 'PROSEDUR LAIN-LAIN PADA SISTEM HEPATOBILIARI DAN PANKREAS', 517900.00), +('C-3-10-0', 'PROSEDUR RADIOTERAPI', 1144400.00), +('C-3-11-0', 'KEMOTERAPI PADA TUMOR PARU & KANDUNG KEMIH', 1036000.00), +('C-3-12-0', 'KEMOTERAPI PADA TUMOR KOLON', 1128300.00), +('C-3-13-0', 'KEMOTERAPI PADA TUMOR PAYUDARA ATAU OVARIUM', 1674900.00), +('C-3-14-0', 'KEMOTERAPI PADA TUMOR GASTROINTESTINAL', 2284500.00), +('C-3-15-0', 'KEMOTERAPI PADA TUMOR MELANOMA, GINJAL ATAU PROSTAT', 2093800.00), +('C-3-16-0', 'KEMOTERAPI PADA TUMOR OTAK', 786800.00), +('C-3-17-0', 'KEMOTERAPI PADA TUMOR KEPALA ATAU LEHER', 1598500.00), +('C-3-18-0', 'KEMOTERAPI PADA LEUKEMIA AKUT', 731400.00), +('C-3-19-0', 'KEMOTERAPI PADA TUMOR LIMFOMA, MYELOMA ATAU TESTIS', 1325200.00), +('C-3-20-0', 'KEMOTERAPI PADA TUMOR KULIT', 2969800.00), +('C-3-21-0', 'KEMOTERAPI PADA TUMOR GINEKOLOGI', 1416500.00), +('C-3-22-0', 'KEMOTERAPI PADA TUMOR METASTASE', 2511700.00), +('C-3-23-0', 'KEMOTERAPI PADA TUMOR LAIN-LAIN', 612800.00), +('D-2-10-0', 'PROSEDUR PENCANGKOKAN SUMSUM TULANG', 1787000.00), +('D-2-11-0', 'PROSEDUR LIMPA', 2558500.00), +('D-2-21-0', 'PROSEDUR BESAR PADA NODUL LIMPA DAN TYMUS', 2556500.00), +('D-2-22-0', 'PROSEDUR KECIL PADA NODUL LIMPA DAN TYMUS', 628400.00), +('D-3-10-0', 'PROSEDUR TRANSFUSI & TERAPI SUMSUM TULANG', 1509000.00), +('D-3-11-0', 'PROSEDUR DIAGNOSTIK DARAH DAN ORGAN PEMBENTUK DARAH', 1234000.00), +('E-2-10-0', 'PROSEDUR PADA KELENJAR ADRENAL', 741500.00), +('E-2-21-0', 'PROSEDUR BESAR PADA KELENJAR TIROID DAN PARATIROID', 927600.00), +('E-2-22-0', 'PROSEDUR KECIL PADA KELENJAR TIROID,PARATIROID DAN SALURAN THYROGLOSSAL', 722400.00), +('E-3-10-0', 'PROSEDUR DIAGNOSTIK PADA KELENJAR ENDOKRIN', 634200.00), +('F-3-10-0', 'TERAPI SHOCK', 690800.00), +('F-5-10-0', 'PELAYANAN KESEHATAN MENTAL EKSTENSIF', 471500.00), +('F-5-11-0', 'TERAPI KELOMPOK', 512600.00), +('F-5-12-0', 'PROSEDUR TES DIAGNOSTIK KESEHATAN JIWA', 418100.00), +('F-5-13-0', 'PSIKOTERAPI INDIVIDU DEWASA AKUT', 683700.00), +('F-5-14-0', 'PSIKOTHERAPI INDIVIDU DEWASA BUKAN AKUT', 354400.00), +('F-5-15-0', 'PENGOBATAN INDIVIDU KETERBELAKANGAN MENTAL', 351700.00), +('F-5-16-0', 'PSIKOTHERAPI INDIVIDU PADA KANAK-KANAK MASALAH KESEHATAN MENTAL', 372500.00), +('G-2-10-0', 'PROSEDUR KRANIOTOMI', 8183600.00), +('G-2-11-0', 'PROSEDUR SHUNT VENTRIKEL', 3942200.00), +('G-2-12-0', 'PROSEDUR PADA PEMBULUH DARAH EKSTRAKRANIAL', 3281600.00), +('G-2-13-0', 'PROSEDUR CARPAL TUNNEL RELEASE', 1141900.00), +('G-2-21-0', 'PROSEDUR BESAR PADA SARAF PERIFER', 2581400.00), +('G-2-22-0', 'PROSEDUR KECIL PADA SARAF PERIFER', 1447300.00), +('G-2-31-0', 'PROSEDUR BESAR PADA TULANG BELAKANG', 2584000.00), +('G-2-32-0', 'PROSEDUR KECIL PADA TULANG BELAKANG', 1756200.00), +('G-3-10-0', 'PROSEDUR TAP & INJEKSI PADA SPINAL', 794000.00), +('G-3-11-0', 'PROSEDUR INJEKSI PADA SARAF PERIFER', 574500.00), +('G-3-12-0', 'PROSEDUR PEMERIKSAAN NEUROLOGIS LAIN', 786100.00), +('G-3-13-0', 'PROSEDUR ELEKROENSEFALOGRAFI (EEG)', 596500.00), +('G-5-17-0', 'PENYAKIT SARAF KRANIAL DAN SARAF PERIFER LAIN-LAIN', 371500.00), +('H-2-21-0', 'PROSEDUR BESAR PADA MATA', 3623600.00), +('H-2-22-0', 'PROSEDUR SEDANG PADA MATA', 1791600.00), +('H-2-23-0', 'PROSEDUR KECIL PADA MATA', 966300.00), +('H-2-31-0', 'PROSEDUR BESAR PADA SEGMEN ANTERIOR MATA', 4036200.00), +('H-2-32-0', 'PROSEDUR SEDANG PADA SEGMEN ANTERIOR MATA', 2731800.00), +('H-2-33-0', 'PROSEDUR KECIL PADA SEGMEN ANTERIOR MATA', 509900.00), +('H-2-34-0', 'PROSEDUR BESAR PADA SEGMEN POSTERIOR MATA', 4086400.00), +('H-2-35-0', 'PROSEDUR KECIL PADA SEGMEN POSTERIOR MATA', 3081700.00), +('H-2-36-0', 'PROSEDUR OPERASI KATARAK', 4410000.00), +('H-2-37-0', 'PROSEDUR PHOTOKOAGULASI DAN KRIOTHERAPI PADA RETINA', 1662000.00), +('H-3-10-0', 'PROSEDUR LASER SEDANG PADA MATA', 1007200.00), +('H-3-11-0', 'PROSEDUR KECIL PADA EKTRAOKULER', 424100.00), +('H-3-12-0', 'PROSEDUR LAIN-LAIN PADA MATA', 384800.00), +('H-3-13-0', 'PROSEDUR DIAGNOSTIK & IMAGING PADA MATA', 401900.00), +('I-2-11-0', 'PEMASANGAN/PENYISIPAN DEFIBRILATOR JANTUNG & SISTEM BANTU JANTUNG', 5570300.00), +('I-2-12-0', 'PROSEDUR BESAR PADA PEMBULUH DARAH TORASIK', 3125100.00), +('I-2-13-0', 'PROSEDUR BESAR PADA PEMBULUH DARAH ABDOMEN', 3446100.00), +('I-2-14-0', 'PROSEDUR PEMASANGAN/PENYISIPAN ALAT PACU PERMANEN PADA JANTUNG', 7046700.00), +('I-2-15-0', 'PROSEDUR KATETERISASI JANTUNG', 6479700.00), +('I-2-16-0', 'PROSEDUR REVISI DEFIBRILATOR DAN ALAT PACU JANTUNG TIDAK TERMASUK PENGGANTIAN ALAT', 3852100.00), +('I-2-17-0', 'PROSEDUR LIGASI DAN STRIPPING PEMBULUH DARAH VENA', 1274400.00), +('I-2-21-0', 'ANGIOGRAFI ARTERI BUKAN JANTUNG', 4287500.00), +('I-2-22-0', 'PROSEDUR SEDANG PADA PEMBULUH DARAH', 2799500.00), +('I-2-23-0', 'PROSEDUR KECIL PADA PEMBULUH DARAH', 751800.00), +('I-2-31-0', 'PEMASANGAN ATAU PENGGANTIAN ALAT DEFIBRILATOR JANTUNG', 7437500.00), +('I-2-32-0', 'PEMASANGAN ATAU PENGGANTIAN ALAT PACU JANTUNG', 6733000.00), +('I-2-41-0', 'PROSEDUR ELEKTROFISIOLOGIK', 4514500.00), +('I-2-42-0', 'PROSEDUR ANGIOPLASTI PEMBULUH DARAH KORONER DAN KARDIOVASKULAR PERKUTAN LAIN', 4303800.00), +('I-3-10-0', 'PROSEDUR RESUSITASI', 1030700.00), +('I-3-11-0', 'PROSEDUR KARDIOVERSI', 935000.00), +('I-3-12-0', 'PROSEDUR KECIL LAIN-LAIN PADA JANTUNG', 1768900.00), +('I-3-13-0', 'PROSEDUR EKOKARDIOGRAFI', 515800.00), +('I-3-14-0', 'PROSEDUR STRESS TESTING', 475100.00), +('I-3-15-0', 'PROSEDUR PENGAWASAN FUNGSI KARDIOVASKULAR', 476000.00), +('J-2-10-0', 'PROSEDUR BESAR PADA SISTEM SALURAN PERNAFASAN', 2394000.00), +('J-2-21-0', 'PROSEDUR VENTILASI MEKANIKAL JANGKA PENDEK', 2477100.00), +('J-2-22-0', 'PROSEDUR PADA LARING DAN TRAKEA', 1949400.00), +('J-2-31-0', 'PROSEDUR THORAKOSKOPI/MEDIASTINOSKOPI', 2182900.00), +('J-2-32-0', 'PROSEDUR DADA INTERMEDIATE', 1303300.00), +('J-3-10-0', 'PROSEDUR PADA DINDING DADA', 883700.00), +('J-3-11-0', 'PROSEDUR PEMASANGAN/PENYISIPAN TUBE PADA DADA', 1150500.00), +('J-3-12-0', 'PROSEDUR THORACENTESIS', 792100.00), +('J-3-13-0', 'PROSEDUR TERAPI SALURAN PERNAFASAN', 473300.00), +('J-3-14-0', 'PROSEDUR BIOPSI PERKUTAN DAN ASPIRASI', 762100.00), +('J-3-15-0', 'PROSEDUR BRONKOSKOPI', 586500.00), +('J-3-16-0', 'PROSEDUR UJI FUNGSI PARU', 667700.00), +('J-3-17-0', 'PROSEDUR LAIN-LAIN PADA SISTEM SALURAN PERNAFASAN', 391400.00), +('K-2-10-0', 'PROSEDUR KECIL PADA USUS BESAR DAN KECIL', 1123400.00), +('K-2-11-0', 'PROSEDUR ADHESIOLYSIS PADA PERITONEUM', 2110000.00), +('K-2-12-0', 'PROSEDUR PADA HERNIA TIDAK TERMASUK HERNIA INGUINALIS DAN FEMORALIS', 1571600.00), +('K-2-13-0', 'PROSEDUR PADA USUS BUNTU', 3694800.00), +('K-2-14-0', 'PROSEDUR PADA HERNIA INGUINALIS DAN FEMORALIS', 804700.00), +('K-2-21-0', 'PROSEDUR BESAR PADA USUS HALUS DAN USUS BESAR', 932700.00), +('K-2-22-0', 'PROSEDUR BESAR PADA GASTROINTESTINAL ATAS', 4267700.00), +('K-2-31-0', 'PROSEDUR SEDANG PADA GASTROINTESTINAL ATAS', 1985300.00), +('K-2-32-0', 'PROSEDUR LAIN-LAIN PADA GASTROINTESTINAL ATAS', 688900.00), +('K-2-41-0', 'PROSEDUR LAPAROSKOPI', 2132900.00), +('K-2-42-0', 'PROSEDUR LAPAROTOMI & GASTROINTESTINAL LAINNYA', 4576800.00), +('K-2-51-0', 'PROSEDUR UNTUK WASIR', 1050800.00), +('K-2-52-0', 'PROSEDUR SEDANG PADA ANUS & REKTUM', 1157000.00), +('K-2-53-0', 'PROSEDUR KECIL PADA ANUS & REKTUM', 444600.00), +('K-3-10-0', 'PROSEDUR KECIL LAIN-LAIN PADA GASTROINTESTINAL', 366000.00), +('K-3-11-0', 'PROSEDUR KECIL PADA ANUS & REKTUM', 549000.00), +('K-3-12-0', 'PROSEDUR SIGMOIDOSKOPI DAN ANOSKOPI', 1049200.00), +('K-3-13-0', 'PROSEDUR KOLONOSKOPI', 2678200.00), +('K-3-14-0', 'PROSEDUR ENDOSKOPI BESAR PADA GASTROINTESTINAL ATAS', 2177800.00), +('K-3-15-0', 'PROSEDUR ENDOSKOPI KECIL PADA GASTROINTESTINAL ATAS', 1679000.00), +('K-3-16-0', 'PROSEDUR LAIN-LAIN PADA GASTROINTESTINAL', 675000.00), +('K-5-18-0', 'PENYAKIT SISTEM PENCERNAAN LAIN-LAIN', 371500.00), +('L-2-21-0', 'PROSEDUR BESAR PEMINDAHAN KULIT PADA LUKA BAKAR', 2243700.00), +('L-2-22-0', 'PROSEDUR KECIL PEMINDAHAN KULIT PADA LUKA BAKAR', 1438300.00), +('L-2-31-0', 'PROSEDUR BESAR PEMINDAHAN KULIT TANPA LUKA BAKAR', 1026900.00), +('L-2-32-0', 'PROSEDUR KECIL PEMINDAHAN KULIT TANPA LUKA BAKAR', 844100.00), +('L-2-41-0', 'PROSEDUR BEDAH PLASTIK', 2011400.00), +('L-2-42-0', 'PROSEDUR LAIN-LAIN PADA KULIT DAN JARINGAN BAWAH KULIT', 619800.00), +('L-2-51-0', 'PROSEDUR PENGANGKATAN PAYUDARA', 2615200.00), +('L-2-52-0', 'PROSEDUR BESAR PADA PAYUDARA TANPA PENGANGKATAN PAYUDARA', 1965200.00), +('L-2-53-0', 'PROSEDUR KECIL PADA PAYUDARA TANPA PENGANGKATAN PAYUDARA', 1007900.00), +('L-3-10-0', 'PROSEDUR KECIL LAIN-LAIN PADA PAYUDARA', 696400.00), +('L-3-11-0', 'PROSEDUR BESAR PADA KULIT', 570100.00), +('L-3-12-0', 'PROSEDUR KECIL PADA KULIT', 442400.00), +('M-2-10-0', 'PROSEDUR REKONTRUKSI TULANG KRANIAL DAN WAJAH', 2141200.00), +('M-2-21-0', 'PROSEDUR BESAR PADA SENDI PANGGUL DAN PAHA', 2353500.00), +('M-2-22-0', 'PROSEDUR KECIL PADA SENDI PANGGUL DAN PAHA', 501800.00), +('M-2-31-0', 'PROSEDUR BUNION', 1429500.00), +('M-2-32-0', 'PROSEDUR LAIN-LAIN PADA KAKI', 566200.00), +('M-2-41-0', 'PROSEDUR EKSISI, INSISI DAN ARTHROTOMI TULANG', 798600.00), +('M-2-42-0', 'PROSEDUR PEMINDAHAN ALAT IMPLAN', 557300.00), +('M-2-51-0', 'PROSEDUR BESAR PADA JARINGAN LUNAK', 1199900.00), +('M-2-52-0', 'PROSEDUR KECIL PADA JARINGAN LUNAK', 921000.00), +('M-2-61-0', 'PROSEDUR ARTROSKOPI', 1632700.00), +('M-2-62-0', 'PROSEDUR LAIN-LAIN PADA SENDI & TULANG', 560700.00), +('M-2-63-0', 'PROSEDUR INSISI, BIOPSI DAN GRAFT PADA TULANG', 1478700.00), +('M-2-64-0', 'PROSEDUR BESAR PADA TULANG KEPALA & WAJAH', 2238700.00), +('M-2-65-0', 'PROSEDUR KECIL PADA TULANG KEPALA & WAJAH', 477900.00), +('M-2-71-0', 'PROSEDUR BESAR PADA LUTUT & TUNGKAI BAWAH', 2387300.00), +('M-2-72-0', 'PROSEDUR KECIL PADA LUTUT & TUNGKAI BAWAH', 1293700.00), +('M-2-81-0', 'PROSEDUR BESAR PADA LENGAN, SIKU & BAHU', 2795700.00), +('M-2-82-0', 'PROSEDUR KECIL PADA LENGAN, SIKU & BAHU', 1411300.00), +('M-2-83-0', 'PROSEDUR BESAR PADA TANGAN & PERGELANGAN TANGAN', 1074700.00), +('M-2-84-0', 'PROSEDUR KECIL PADA TANGAN & PERGELANGAN TANGAN', 699900.00), +('M-3-10-0', 'PROSEDUR MANIPULATIVE OSTEOPATHIC', 165700.00), +('M-3-11-0', 'PROSEDUR DIAGNOSTIK DAN TERAPEUTIK MUSKULOSKELETAL', 621400.00), +('M-3-12-0', 'PROSEDUR BIOPSI SENDI DAN TRAKSI SKELETAL', 1404100.00), +('M-3-13-0', 'PROSEDUR REDUKSI FRAKTUR TERTUTUP', 728000.00), +('M-3-14-0', 'PROSEDUR REDUKSI FRAKTUR WAJAH TERTUTUP', 739100.00), +('M-3-15-0', 'PROSEDUR APLIKASI CASTS DAN SPLINTS', 485600.00), +('M-3-16-0', 'PROSEDUR THERAPI FISIK DAN PROSEDUR KECIL MUSKULOSKLETAL', 201000.00), +('M-3-17-0', 'PROSEDUR PEMASANGAN ALAT PROSTETIK', 426800.00), +('N-2-11-0', 'PROSEDUR BESAR PADA KANDUNG KEMIH', 6356400.00), +('N-2-12-0', 'PROSEDUR MEMBUAT BARU, MEREVISI DAN MEMINDAHKAN ALAT DIALISIS', 4483300.00), +('N-2-21-0', 'EXTRACORPOREAL SHOCKWAVE LITHOTRIPSY (ESWL) PADA SALURAN KEMIH', 6211300.00), +('N-2-22-0', 'PROSEDUR BESAR PADA GINJAL DAN URETER', 2378000.00), +('N-2-23-0', 'PROSEDUR SEDANG PADA GINJAL DAN URETER', 1540900.00), +('N-2-24-0', 'PROSEDUR KECIL PADA GINJAL DAN URETER', 1089800.00), +('N-2-31-0', 'PROSEDUR BESAR PADA KANDUNG KEMIH DAN URETHRA', 1365300.00), +('N-2-32-0', 'PROSEDUR KECIL PADA KANDUNG KEMIH DAN URETHRA', 815600.00), +('N-2-41-0', 'PROSEDUR BESAR PADA URETHRA DAN TRANSURETHRA', 1612800.00), +('N-2-42-0', 'PROSEDUR KECIL PADA URETHRA DAN TRANSURETHRA', 957600.00), +('N-3-10-0', 'PROSEDUR PADA GINJAL DAN URETER', 524700.00), +('N-3-11-0', 'PROSEDUR DIAGNOSTIK LAIN PADA STUDI SALURAN KEMIH', 783300.00), +('N-3-12-0', 'PROSEDUR CYSTOSCOPI & PROSEDUR KECIL ENDOSKOPI SALURAN KEMIH', 1085200.00), +('N-3-13-0', 'PROSEDUR BESAR ENDOSKOPI PADA SALURAN KEMIH', 1245400.00), +('N-3-14-0', 'PROSEDUR KECIL ENDOSKOPI PADA SALURAN KEMIH', 522800.00), +('N-3-15-0', 'PROSEDUR DIALISIS', 992300.00), +('O-7-10-0', 'PROSEDUR PERSALINAN DENGAN BEDAH CAESAR', 2665200.00), +('O-7-11-0', 'PERSALINAN VAGINAL DENGAN STERILISASI DAN ATAU PELEBARAN DAN KURETASE', 2388300.00), +('O-7-12-0', 'PROSEDUR PERSALINAN VAGINAL DENGAN PROSEDUR SELAIN STERILISASI DAN ATAU PELEBARAN DAN KURETASE', 2110400.00), +('O-7-13-0', 'PROSEDUR PERSALINAN MELALUI VAGINAL/JALAN LAHIR', 1601400.00), +('P-9-11-0', 'NEONATAL, BBL GROUP-2', 515900.00), +('P-9-12-0', 'NEONATAL, BBL GROUP-3', 499900.00), +('P-9-13-0', 'NEONATAL, BBL GROUP-4', 453200.00), +('P-9-14-0', 'NEONATAL, BBL GROUP-5 DENGAN ANOMALI MAYOR ATAU KONDISI HEREDITER', 432300.00), +('P-9-15-0', 'NEONATAL, BBL GROUP-5 DENGAN SINDROM ASPIRASI', 372400.00), +('P-9-16-0', 'NEONATAL, BBL GROUP-5 DENGAN KONGENITAL/INFEKSI PERINATAL', 423200.00), +('P-9-17-0', 'NEONATAL, BBL GROUP-5', 451300.00), +('Q-5-10-0', 'PENYALAHGUNAAN ZAT KIMIA AKUT', 488100.00), +('Q-5-11-0', 'PENYALAHGUNAAN ZAT KIMIA BUKAN AKUT', 359500.00), +('Q-5-12-0', 'GIGI', 318400.00), +('Q-5-13-0', 'MEDICAL CHECK-UP', 149400.00), +('Q-5-14-0', 'RONGENT (PLAIN FILM)', 197400.00), +('Q-5-15-0', 'ELEKTROKARDIOGRAM (ECG)', 100500.00), +('Q-5-16-0', 'VAKSINASI', 114800.00), +('Q-5-17-0', 'PASANG INFUS', 112600.00), +('Q-5-18-0', 'KONSULTASI ATAU PEMERIKSAAN LAIN-LAIN', 369200.00), +('Q-5-19-0', 'KONTAK PELAYANAN KESEHATAN LAIN-LAIN', 195000.00), +('Q-5-20-0', 'ABORSI MENGANCAM', 252200.00), +('Q-5-21-0', 'ABORSI', 276800.00), +('Q-5-22-0', 'PERSALINAN YANG SUKAR (FALSE LABOR)', 167200.00), +('Q-5-23-0', 'PEMERIKSAAN ANTEPARTUM', 178800.00), +('Q-5-24-0', 'PEMERIKSAAN POSTPARTUM', 113700.00), +('Q-5-25-0', 'GASTROINTESTINAL AKUT', 182200.00), +('Q-5-26-0', 'BRONKIAL AKUT', 231400.00), +('Q-5-27-0', 'SISTEM PERSARAFAN PUSAT AKUT', 173800.00), +('Q-5-28-0', 'KECEDERAAN SISTEM PERSARAFAN PUSAT', 282900.00), +('Q-5-29-0', 'GAGAL JANTUNG KONGESTIF DAN KONDISI JANTUNG LAIN-LAIN', 799600.00), +('Q-5-30-0', 'INFARK MIOKARD AKUT DAN ARITMIA', 927000.00), +('Q-5-31-0', 'FRAKTUR', 220600.00), +('Q-5-32-0', 'SALURAN KEMIH AKUT', 384800.00), +('Q-5-33-0', 'HEMATOLOGI AKUT', 218300.00), +('Q-5-34-0', 'INFEKSI VIRUS HIV', 263100.00), +('Q-5-35-0', 'INFEKSI AKUT', 647300.00), +('Q-5-36-0', 'KEKACAUAN METABOLIK AKUT', 554100.00), +('Q-5-37-0', 'CARDIAC ARREST, RESPIRATORY ARREST & SHOCK', 447400.00), +('Q-5-38-0', 'PARU AKUT', 377200.00), +('Q-5-39-0', 'KECEDERAAN BESAR PADA JARINGAN LUNAK', 207600.00), +('Q-5-40-0', 'INFEKSI SALURAN KEMIH AKUT', 176800.00), +('Q-5-41-0', 'PENYAKIT AKUT BESAR LAIN-LAIN', 444100.00), +('Q-5-42-0', 'PENYAKIT AKUT KECIL LAIN-LAIN', 332900.00), +('Q-5-43-0', 'PENYAKIT KRONIS BESAR LAIN-LAIN', 477500.00), +('Q-5-44-0', 'PENYAKIT KRONIS KECIL LAIN-LAIN', 377100.00), +('T-2-10-0', 'PEMULIHAN ALKOHOL, OBAT DAN ATAU TERAPI DETOKSIKASI', 217800.00), +('U-2-10-0', 'PROSEDUR BESAR PADA LARING', 3492100.00), +('U-2-11-0', 'PROSEDUR BESAR LAIN-LAIN PADA KEPALA & LEHER', 2873600.00), +('U-2-12-0', 'PROSEDUR PADA SINUS & MASTOID', 612400.00), +('U-2-13-0', 'PROSEDUR KELENJAR LUDAH', 821200.00), +('U-2-14-0', 'PROSEDUR OPERASI BIBIR SUMBING & LANGIT-LANGIT MULUT', 1614900.00), +('U-2-15-0', 'PROSEDUR OPERASI TONSIL & AMANDEL', 1561800.00), +('U-2-21-0', 'PROSEDUR BESAR PADA TELINGA, HIDUNG, MULUT DAN TENGGOROKAN', 1157600.00), +('U-2-22-0', 'PROSEDUR SEDANG PADA TELINGA, HIDUNG, MULUT DAN TENGGOROKAN', 598000.00), +('U-2-23-0', 'PROSEDUR PERBAIKAN HIDUNG (RHINOPLASTY)', 1863500.00), +('U-2-24-0', 'PROSEDUR KECIL PADA HIDUNG', 330600.00), +('U-2-25-0', 'PROSEDUR PADA TELINGA TENGAH', 486000.00), +('U-2-31-0', 'PROSEDUR BESAR PADA MULUT DAN LIDAH', 782500.00), +('U-2-32-0', 'PROSEDUR KECIL PADA MULUT DAN LIDAH', 488200.00), +('U-3-10-0', 'PROSEDUR SEDANG LAIN-LAIN PADA TELINGA, HIDUNG, MULUT DAN TENGGOROKAN', 493100.00), +('U-3-11-0', 'PROSEDUR KECIL LAIN-LAIN PADA TELINGA, HIDUNG, MULUT DAN TENGGOROKAN', 466700.00), +('U-3-12-0', 'PROSEDUR KAUTERISASI & PACKING PADA RONGGA HIDUNG', 276000.00), +('U-3-13-0', 'PROSEDUR DIAGNOSTIK LAIN-LAIN PADA TELINGA, HIDUNG, MULUT DAN TENGGOROKAN', 480300.00), +('U-3-14-0', 'PROSEDUR TES FUNGSI PADA TELINGA, HIDUNG, MULUT DAN TENGGOROKAN', 434800.00), +('U-3-15-0', 'PROSEDUR LAIN-LAIN PADA TELINGA, HIDUNG, MULUT DAN TENGGOROKAN', 385100.00), +('U-3-16-0', 'PROSEDUR PADA GIGI', 446500.00), +('V-2-10-0', 'PROSEDUR BESAR PADA PENGANGKATAN PROSTAT', 3605600.00), +('V-2-11-0', 'PROSEDUR PADA PENIS', 625700.00), +('V-2-12-0', 'PROSEDUR SEDANG PADA PROSTAT DAN SKROTUM', 1297600.00), +('V-2-13-0', 'PROSEDUR KECIL PADA PROSTAT DAN SKROTUM', 472000.00), +('V-2-14-0', 'PENGANGKATAN PROSTAT MELALUI TRANSURETHRAL', 834700.00), +('V-2-15-0', 'SIRKUMSISI/SUNAT', 543500.00), +('V-3-10-0', 'PROSEDUR STERILISASI PADA LAKI-LAKI', 478200.00), +('V-3-11-0', 'PROSEDUR DIAGNOSTIK DAN TERAPEUTIK PADA ALAT GENITAL LAKI-LAKI', 1165500.00), +('V-3-12-0', 'PROSEDUR LAIN PADA ALAT GENITAL LAKI-LAKI', 1154000.00), +('W-2-10-0', 'PROSEDUR ABORSI', 1583700.00), +('W-2-11-0', 'PROSEDUR PELEBARAN, KURETASE DALAM RAHIM & LEHER RAHIM', 1412900.00), +('W-2-12-0', 'PROSEDUR MEMBUKA TUBA YANG TERHALANG/TERGANGGU', 1586700.00), +('W-2-13-0', 'PROSEDUR ENDOSKOPI TUBA YANG TERHALANG/TERGANGGU', 1139900.00), +('W-2-21-0', 'PROSEDUR BESAR PADA FRAKTUR RONGGA PANGGUL TERBUKA', 2782800.00), +('W-2-22-0', 'PROSEDUR KECIL PADA FRAKTUR RONGGA PANGGUL TERBUKA', 671800.00), +('W-2-23-0', 'PROSEDUR LAPAROSKOPI GINEKOLOGI', 1501000.00), +('W-2-31-0', 'PROSEDUR PEMBUANGAN RAHIM MELALUI JALAN LAHIR', 3205800.00), +('W-2-32-0', 'PROSEDUR PERBAIKAN CYSTOCELE DAN VULVOVAGINAL INTERMEDIATE', 2965400.00), +('W-2-33-0', 'PROSEDUR KECIL VULVOVAGINAL', 1306400.00), +('W-2-34-0', 'PROSEDUR GINEKOLOGI LAIN-LAIN', 551700.00), +('W-3-10-0', 'PROSEDUR KECIL GINEKOLOGI & ENDOSKOPI', 1102000.00), +('W-3-11-0', 'PROSEDUR SEDANG GINEKOLOGI', 912000.00), +('W-3-12-0', 'PROSEDUR KECIL GINEKOLOGI', 422700.00), +('Z-3-10-0', 'PROSEDUR RADIOSURGICAL', 3313100.00), +('Z-3-11-0', 'EXTRACORPOREAL SHOCKWAVE LITHOTRIPSY (ESWL) SELAIN URINARI DAN SALURAN EMPEDU', 3205400.00), +('Z-3-12-0', 'PROSEDUR REHABILITASI', 241200.00), +('Z-3-13-0', 'PROSEDUR KECIL PELAYANAN PENUNJANG LAIN-LAIN', 207200.00), +('Z-3-14-0', 'DIAGNOSTIK TIDUR', 501400.00), +('Z-3-15-0', 'IMAGING NUKLIR JANTUNG', 615700.00), +('Z-3-16-0', 'PROSEDUR MAGNETIC RESONANCE IMAGING (MRI)', 1436700.00), +('Z-3-17-0', 'PENGOBATAN NUKLIR', 1646300.00), +('Z-3-18-0', 'CT-SCAN KEPALA', 1405100.00), +('Z-3-19-0', 'CT SCAN LAIN-LAIN', 1703300.00), +('Z-3-20-0', 'IMAGING KONTRAS SALURAN URINARI', 852100.00), +('Z-3-21-0', 'IMAGING KONTRAS PEMBULUH DARAH', 1264500.00), +('Z-3-22-0', 'IMAGING KONTRAS LAIN-LAIN', 819100.00), +('Z-3-23-0', 'PROSEDUR ULTRASOUND LAIN-LAIN', 655700.00), +('Z-3-24-0', 'PROSEDUR ULTRASOUND PEMBULUH DARAH', 790600.00), +('Z-3-25-0', 'PROSEDUR ULTRASOUND GINEKOLOGIK', 454900.00), +('Z-3-26-0', 'PROSEDUR BESAR RADIOGRAFI', 1075400.00), +('Z-3-27-0', 'PERAWATAN LUKA', 222200.00), +('Z-3-28-0', 'IMAGING PAYUDARA', 851100.00), +('Z-3-29-0', 'IMAGING LAIN-LAIN', 1810900.00), +('Z-3-30-0', 'FOTOTERAPI', 122700.00); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `pasien` +-- + +CREATE TABLE `pasien` ( + `ID_Pasien` int(11) NOT NULL, + `Nama_Pasien` varchar(100) NOT NULL, + `Jenis_Kelamin` enum('Laki-laki','Perempuan') NOT NULL, + `Usia` int(11) DEFAULT NULL, + `Ruangan` varchar(100) DEFAULT NULL, + `Kelas` enum('1','2','3') DEFAULT NULL +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; + +-- +-- Dumping data for table `pasien` +-- + +INSERT INTO `pasien` (`ID_Pasien`, `Nama_Pasien`, `Jenis_Kelamin`, `Usia`, `Ruangan`, `Kelas`) VALUES +(1, 'mahdi Jamaludin', 'Laki-laki', 21, 'R. Nusa Dua', '2'), +(2, 'yeston', 'Laki-laki', 15, 'R. Gili Trawangan', '3'), +(3, 'rocket', 'Laki-laki', 15, 'R. Gili Trawangan', '1'), +(4, 'Angger', 'Laki-laki', 55, 'R. Gili Trawangan', '3'), +(5, 'hartono', 'Laki-laki', 23, 'R. Gili Trawangan', '1'), +(6, 'jamal', 'Laki-laki', 23, 'R. Gili Trawangan', '1'), +(11, 'sabiru', 'Laki-laki', 18, 'R. Nusa Dua', '1'), +(12, 'samerah', 'Laki-laki', 14, 'R. Parangtritis', '3'), +(13, 'sujono binti sujii', '', 26, 'Ruang Tondano', '3'), +(14, 'mr x', '', 50, 'R. Gili Trawangan', '1'), +(15, 'mr y', '', 62, 'R. HCU Ciliwung', '1'), +(16, 'mr a', '', 35, 'R. HCU Mahakam', '1'), +(17, 'membran racing', 'Laki-laki', 26, 'R. HCU Ciliwung', '1'), +(18, 'mr z', 'Perempuan', 32, 'R. HCU Brantas', '3'), +(19, 'mamanracing', 'Laki-laki', 25, 'Ruang Rinjani', '3'), +(20, 'kurama', 'Laki-laki', 29, 'Ruang Kerinci', '3'), +(21, 'yusuf', 'Laki-laki', 31, 'R. Nusa Dua', '3'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `ruangan` +-- + +CREATE TABLE `ruangan` ( + `ID_Ruangan` int(11) NOT NULL, + `Jenis_Ruangan` varchar(100) DEFAULT NULL, + `Nama_Ruangan` varchar(100) DEFAULT NULL, + `keterangan` varchar(100) DEFAULT NULL, + `kategori_ruangan` varchar(100) DEFAULT NULL +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; + +-- +-- Dumping data for table `ruangan` +-- + +INSERT INTO `ruangan` (`ID_Ruangan`, `Jenis_Ruangan`, `Nama_Ruangan`, `keterangan`, `kategori_ruangan`) VALUES +(2, 'Rawat Inap Kelas I', 'R. Gili Trawangan', 'Pasien psikiatri', 'IRNA 1Rawat Inap I (Penyakit Dalam)'), +(3, 'Rawat Inap Kelas I', 'R. Nusa Dua', 'Ruang perawatan L/P raber', 'IRNA 1Rawat Inap I (Penyakit Dalam)'), +(4, 'Rawat Inap Kelas II', 'R. Gili Trawangan', 'Pasien psikiatri', 'IRNA 1Rawat Inap I (Penyakit Dalam)'), +(5, 'Rawat Inap Kelas II', 'R. Bunaken & R. Jimbaran', 'Ruang perawatan L/P raber', 'IRNA 1Rawat Inap I (Penyakit Dalam)'), +(6, 'Rawat Inap Kelas II', 'R. HCU Mahakam', 'Pasien Stroke', 'IRNA 1Rawat Inap I (Penyakit Dalam)'), +(7, 'Rawat Inap Kelas II', 'R. HCU Ciliwung', 'Pasien HCU (IPD) infeksi & non infeksi, medical bedah.', 'IRNA 1Rawat Inap I (Penyakit Dalam)'), +(8, 'Rawat Inap Kelas II', 'R. HCU Brantas', 'Pasien HCU (Paru) TB dan Non TB', 'IRNA 1Rawat Inap I (Penyakit Dalam)'), +(9, 'Rawat Inap Kelas II', 'R. HCU Cisadane', 'HCU Bedah L/P', 'IRNA 1Rawat Inap I (Penyakit Dalam)'), +(10, 'Rawat Inap Kelas III', 'R. Bunaken & R. Losari', 'Ruang perawatan L/P raber', 'IRNA 1Rawat Inap I (Penyakit Dalam)'), +(11, 'Rawat Inap Kelas III', 'R. Parangtritis', 'Pasien Perempuan raber', 'IRNA 1Rawat Inap I (Penyakit Dalam)'), +(12, 'Rawat Inap Kelas III', 'R. Pangandaran', 'Pasien Laki-laki raber', 'IRNA 1Rawat Inap I (Penyakit Dalam)'), +(13, 'Rawat Inap Kelas III', 'R. Gili Trawangan', 'Psikiatri (L/P) & medical bedah', 'IRNA 1Rawat Inap I (Penyakit Dalam)'), +(14, 'Tindakan', 'R. Apharesis', 'R. Apharesis', 'IRNA 1Rawat Inap I (Penyakit Dalam)'), +(15, 'Tindakan', 'R. FOB (OK Paru)', 'R. FOB (OK Paru)', 'IRNA 1Rawat Inap I (Penyakit Dalam)'), +(16, 'R. Endoscopy', 'R. Endoscopy', 'Endoscopy Diagnostik dan Endoscopy Therapy dengan GA.', 'IRNA 1Rawat Inap I (Penyakit Dalam)'), +(17, 'Tindakan', 'R. Neuro diagnostic', 'Ruang EEG, EMG, PSG, TCD', 'IRNA 1Rawat Inap I (Penyakit Dalam)'), +(18, 'Tindakan', 'R. Tindakan Non Bedah', 'Pasien yang membutuhkan USG', 'IRNA 1Rawat Inap I (Penyakit Dalam)'), +(19, 'Ruang Rawat Inap Barito', 'Ruang Rawat Inap Barito', '17 tempat tidur', 'Ruang Pelayanan IPJVT'), +(20, 'Ruang Rawat Inap Bengawan Solo', 'Ruang Rawat Inap Bengawan Solo', '10 tempat tidur', 'Ruang Pelayanan IPJVT'), +(21, 'Ruang VIP', 'Ruang VIP', '4 tempat tidur', 'Ruang Pelayanan IPJVT'), +(22, 'Ruang Cardiovascular Care Unit (CVCU)', 'Ruang Cardiovascular Care Unit (CVCU)', '13 tempat tidur', 'Ruang Pelayanan IPJVT'), +(23, 'Ruang Non Invasif (echocardiografi, holter, tilt table test, dupplex- vascular, dan plathysmogr', 'Ruang Non Invasif (echocardiografi, holter, tilt table test, dupplex- vascular, dan plathysmogr', 'Ruang Tindakan', 'Ruang Pelayanan IPJVT'), +(24, 'Ruang Rehabilitasi Jantung', 'Ruang Rehabilitasi Jantung', 'Ruang Tindakan', 'Ruang Pelayanan IPJVT'), +(25, 'Ruang Kateterisasi Jantung', 'Ruang Kateterisasi Jantung', 'Ruang Tindakan', 'Ruang Pelayanan IPJVT'), +(26, 'Ruang Rinjani', 'Ruang Rinjani', 'Ruang perawatan bedah anak laki-laki dan perempuan (Kelas I,II dan III)', 'IRNA 2-Instalasi Rawat Inap II (Bedah)'), +(27, 'Ruang Bromo', 'Ruang Bromo', 'Ruang perawatan Bedah lakiโ€“laki dan perempuan', 'IRNA 2-Instalasi Rawat Inap II (Bedah)'), +(28, 'Ruang HCU Kawi', 'Ruang HCU Kawi', 'Ruang perawatan HCU luka bakar (Combustio)', 'IRNA 2-Instalasi Rawat Inap II (Bedah)'), +(29, 'Ruang Kerinci', 'Ruang Kerinci', 'Ruang perawatan lakiโ€“laki dan perempuan', 'IRNA 2-Instalasi Rawat Inap II (Bedah)'), +(30, 'Ruang Galunggung', 'Ruang Galunggung', 'Ruang perawatan lakiโ€“laki dan perempuan', 'IRNA 2-Instalasi Rawat Inap II (Bedah)'), +(31, 'Ruang Semeru', 'Ruang Semeru', 'Ruang perawatan kemoterapi terpadu kelas III lakiโ€“laki dan perempuan.', 'IRNA 2-Instalasi Rawat Inap II (Bedah)'), +(32, 'Ruang Tindakan', 'Ruang Tindakan', '๏‚ง Ruang Tindakan THT, ruang tindakan lokal anestesi. ๏‚ง Ruang tindakan Mata. ๏‚ง Ruang tindakan E', 'IRNA 2-Instalasi Rawat Inap II (Bedah)'), +(33, 'Tindakan', 'Tindakan', 'Ruang tindakan untuk persalinan', 'IRNA 3-Instalasi Rawat Inap III (Obgyn)'), +(34, 'Kelas VIP, I, II, II', 'Kelas VIP, I, II, II', 'Untuk pelayanan onstetri, ginekologi, onkologi, dan rawat gabungan', 'IRNA 3-Instalasi Rawat Inap III (Obgyn)'), +(35, 'Kelas II', 'Kelas II', 'Untuk pelayanan onstetri, ginekologi, onkologi, dan rawat gabungan', 'IRNA 3-Instalasi Rawat Inap III (Obgyn)'), +(36, 'Kelas III', 'Kelas III', 'Spesifikasi pelayanan pasien kanker kandungan dan ginekologi', 'IRNA 3-Instalasi Rawat Inap III (Obgyn)'), +(37, 'Ruang Kelimutu', 'Ruang Kelimutu', 'Ruang perawatan anak dan kemoterapi', 'IRNA 4-Instalasi Rawat Inap IV (Anak)'), +(38, 'Ruang HCU Sarangan', 'Ruang HCU Sarangan', 'Ruang High Care Unit (HCU) Anak', 'IRNA 4-Instalasi Rawat Inap IV (Anak)'), +(39, 'Ruang Tondano', 'Ruang Tondano', 'Ruang perawatan anak dan kemoterapi', 'IRNA 4-Instalasi Rawat Inap IV (Anak)'), +(40, 'Ruang HCU Ranu Pani', 'Ruang HCU Ranu Pani', 'Ruang High Care Unit (HCU) perawatan neonatal', 'IRNA 4-Instalasi Rawat Inap IV (Anak)'), +(41, 'Ruang NICU Maninjau', 'Ruang NICU Maninjau', 'Ruang Intensif Care Unit (NICU) untuk Neonatal', 'IRNA 4-Instalasi Rawat Inap IV (Anak)'), +(42, 'Rawat Inap Kelas VIP/VVIP', 'Rawat Inap Kelas VIP/VVIP', 'Rawat Inap Kelas VIP/VVIP', 'Rawat Inap Gran Paviliun'), +(43, 'Rawat Inap Kelas Utama', 'Rawat Inap Kelas Utama', 'Rawat Inap Kelas Utama', 'Rawat Inap Gran Paviliun'), +(44, 'Ruang Bougenvill', 'Ruang Bougenvill', 'ruang rawat inap khusus airbone bertekanan negatif', 'Rawat inap Instalasi Pelayanan Infeksi Terpadu'), +(45, 'Ruang Dahlia', 'Ruang Dahlia', 'ruang rawat inap infeksi non airbone maupun non infeksi', 'Rawat inap Instalasi Pelayanan Infeksi Terpadu'), +(46, 'Ruang Mawar', 'Ruang Mawar', 'ruang rawat inap infeksi non airbone maupun non infeksi', 'Rawat inap Instalasi Pelayanan Infeksi Terpadu'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `tarif_rs` +-- + +CREATE TABLE `tarif_rs` ( + `ID_Tarif_RS` varchar(20) NOT NULL, + `Tindakan_RS` varchar(255) DEFAULT NULL, + `Tarif_RS` int(11) DEFAULT NULL, + `Kategori_RS` varchar(255) DEFAULT NULL +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; + +-- +-- Dumping data for table `tarif_rs` +-- + +INSERT INTO `tarif_rs` (`ID_Tarif_RS`, `Tindakan_RS`, `Tarif_RS`, `Kategori_RS`) VALUES +('DAR.001', 'PEMERIKSAAN', 80000, 'RAWAT DARURAT'), +('DAR.002', 'KONSULTASI', 70000, 'RAWAT DARURAT'), +('KFM.001', 'AMPHETHAMINE', 77000, 'PEMULASARAAN JENAZAH'), +('KFM.002', 'BARBITURATE', 77000, 'PEMULASARAAN JENAZAH'), +('KFM.003', 'BENZODIAZEPANES', 77000, 'PEMULASARAAN JENAZAH'), +('KFM.004', 'BERCAK DARAH BASAH', 139000, 'PEMULASARAAN JENAZAH'), +('KFM.005', 'BERCAK DARAH KERING', 139000, 'PEMULASARAAN JENAZAH'), +('KFM.006', 'BERCAK DARAH PAKAIAN', 139000, 'PEMULASARAAN JENAZAH'), +('KFM.007', 'BERCAK DARAH TEST BENZIDINE', 139000, 'PEMULASARAAN JENAZAH'), +('KFM.008', 'BERCAK DARAH TEST LMG ALDRIEN', 139000, 'PEMULASARAAN JENAZAH'), +('KFM.009', 'BERCAK DARAH TEST LUMINOL', 139000, 'PEMULASARAAN JENAZAH'), +('KFM.010', 'BERCAK DARAH TEST PADA KERTAS', 139000, 'PEMULASARAAN JENAZAH'), +('KFM.011', 'BERCAK DARAH TEST PADA BATU', 139000, 'PEMULASARAAN JENAZAH'), +('KFM.012', 'BERCAK DARAH TEST PADA KAPAS', 139000, 'PEMULASARAAN JENAZAH'), +('KFM.013', 'BERCAK DARAH TEST PADA KAYU', 139000, 'PEMULASARAAN JENAZAH'), +('KFM.014', 'BERCAK DARAH TEST PADA PAKAIAN / KAIN', 139000, 'PEMULASARAAN JENAZAH'), +('KFM.015', 'BERCAK DARAH TEST PADA SENJATA TAJAM', 139000, 'PEMULASARAAN JENAZAH'), +('KFM.016', 'BERCAK DARAH TEST PADA SENJATA TUMPUL (PALU)', 139000, 'PEMULASARAAN JENAZAH'), +('KFM.017', 'BERCAK DARAH TEST PADA TISSUE', 139000, 'PEMULASARAAN JENAZAH'), +('KFM.018', 'BERCAK DARAH TEST PHENOLPHITHALIN', 139000, 'PEMULASARAAN JENAZAH'), +('KFM.019', 'BERCAK DARAH TEST TAKAYAMA', 139000, 'PEMULASARAAN JENAZAH'), +('KFM.020', 'BERCAK DARAH TEST TEICHMANN', 139000, 'PEMULASARAAN JENAZAH'), +('KFM.021', 'COCAINE', 77000, 'PEMULASARAAN JENAZAH'), +('KFM.022', 'IDENTIFIKASI RAMBUT MIKROSKOPIS', 139000, 'PEMULASARAAN JENAZAH'), +('KFM.023', 'IDENTIFIKASI SISIK RAMBUT', 139000, 'PEMULASARAAN JENAZAH'), +('KFM.024', 'KETERANGAN BAP', 660000, 'PEMULASARAAN JENAZAH'), +('KFM.025', 'KONSERVASI JENAZAH ( PENGAWETAN JENAZAH )', 3466000, 'PEMULASARAAN JENAZAH'), +('KFM.026', 'KONSULTASI MEDIK', 264000, 'PEMULASARAAN JENAZAH'), +('KFM.027', 'METHAMPHETAMINE', 77000, 'PEMULASARAAN JENAZAH'), +('KFM.028', 'OPIUM / MORPHINE / MOP', 77000, 'PEMULASARAAN JENAZAH'), +('KFM.029', 'OTOPSI JENAZAH LUAR NEGERI', 1452000, 'PEMULASARAAN JENAZAH'), +('KFM.030', 'OTOPSI REPOT JENAZAH LUAR NEGERI', 1386000, 'PEMULASARAAN JENAZAH'), +('KFM.031', 'PEMERIKSAAN BARBITURATE', 35000, 'PEMULASARAAN JENAZAH'), +('KFM.032', 'PEMERIKSAAN FORENSIK KLINIK DAN PEMBUATAN VISUM ET REPERTUM', 462000, 'PEMULASARAAN JENAZAH'), +('KFM.033', 'PEMERIKSAAN JENAZAH DAN PEMBUATAN VISUM ET REPERTUM', 1003000, 'PEMULASARAAN JENAZAH'), +('KFM.034', 'PEMERIKSAAN NARKOBA TOKSIKOLOGI (5 ITEM)', 277000, 'PEMULASARAAN JENAZAH'), +('KFM.035', 'PEMERIKSAAN RACUN ALKOHOL SECARA KUALITATIF', 42000, 'PEMULASARAAN JENAZAH'), +('KFM.036', 'PEMERIKSAAN RACUN ALKOHOL SECARA KUANTITATIF', 55000, 'PEMULASARAAN JENAZAH'), +('KFM.037', 'PEMERIKSAAN RACUN ARSENIKUM', 35000, 'PEMULASARAAN JENAZAH'), +('KFM.038', 'PEMERIKSAAN RACUN CREOLIN', 35000, 'PEMULASARAAN JENAZAH'), +('KFM.039', 'PEMERIKSAAN RACUN CYANIDA', 42000, 'PEMULASARAAN JENAZAH'), +('KFM.040', 'PEMERIKSAAN RACUN FENOL', 35000, 'PEMULASARAAN JENAZAH'), +('KFM.041', 'PEMERIKSAAN RACUN IKAN TONGKOL', 42000, 'PEMULASARAAN JENAZAH'), +('KFM.042', 'PEMERIKSAAN RACUN INSEKTISIDA', 70000, 'PEMULASARAAN JENAZAH'), +('KFM.043', 'PEMERIKSAAN RACUN KARBONDIOKSIDA', 28000, 'PEMULASARAAN JENAZAH'), +('KFM.044', 'PEMERIKSAAN RACUN KARBONMONOKSIDA', 28000, 'PEMULASARAAN JENAZAH'), +('KFM.045', 'PEMERIKSAAN RACUN LOGAM BERAT', 35000, 'PEMULASARAAN JENAZAH'), +('KFM.046', 'PEMERIKSAAN RACUN MAKANAN', 42000, 'PEMULASARAAN JENAZAH'), +('KFM.047', 'PEMERIKSAAN RACUN MINYAK TANAH', 70000, 'PEMULASARAAN JENAZAH'), +('KFM.048', 'PEMERIKSAAN RACUN OBAT SALISILAT', 35000, 'PEMULASARAAN JENAZAH'), +('KFM.049', 'PEMERIKSAAN RACUN SINGKONG ATAU UBI-UBIAN', 42000, 'PEMULASARAAN JENAZAH'), +('KFM.050', 'PEMERIKSAAN TOKSIKOLOGI LAINNYA', 139000, 'PEMULASARAAN JENAZAH'), +('KFM.051', 'PENGAWETAN JENAZAH FORMULA', 6930000, 'PEMULASARAAN JENAZAH'), +('KFM.052', 'PENGAWETAN JENAZAH LUAR NEGERI', 4158000, 'PEMULASARAAN JENAZAH'), +('KFM.053', 'PENGAWETAN JENAZAH MENULAR', 6930000, 'PEMULASARAAN JENAZAH'), +('KFM.054', 'PENGGALIAN JENAZAH', 6930000, 'PEMULASARAAN JENAZAH'), +('KFM.055', 'PERAWATAN JENAZAH HIV / AIDS', 1016000, 'PEMULASARAAN JENAZAH'), +('KFM.056', 'PERAWATAN JENAZAH LUAR NEGERI', 218000, 'PEMULASARAAN JENAZAH'), +('KFM.057', 'PERAWATAN JENAZAH MENULAR DAN MENGKAFANI JENAZAH', 1320000, 'PEMULASARAAN JENAZAH'), +('KFM.058', 'PERAWATAN JENAZAH MENULAR, MENGKAFANI DENGAN PETI', 3168000, 'PEMULASARAAN JENAZAH'), +('KFM.059', 'PERAWATAN JENAZAH TIDAK MENULAR', 396000, 'PEMULASARAAN JENAZAH'), +('KFM.060', 'PERAWATAN JENAZAH TIDAK MENULAR DAN MENGKAFANI JENAZAH', 541000, 'PEMULASARAAN JENAZAH'), +('KFM.061', 'PENGAWETAN JENAZAH DENGAN KAMAR PENDINGIN', 88000, 'PEMULASARAAN JENAZAH'), +('KFM.062', 'TEST DNA', 6930000, 'PEMULASARAAN JENAZAH'), +('KFM.063', 'TEST APUNG DIATOMEA', 139000, 'PEMULASARAAN JENAZAH'), +('KFM.064', 'TEST APUNG GETAH PARU', 139000, 'PEMULASARAAN JENAZAH'), +('KFM.065', 'TEST CAIRAN ANALISA SWAB ANUS', 209000, 'PEMULASARAAN JENAZAH'), +('KFM.066', 'TEST CAIRAN ANALISA SPERMA BAHAN BERCAK PAKAIAN', 209000, 'PEMULASARAAN JENAZAH'), +('KFM.067', 'TEST CAIRAN ANALISA SPERMA BAHAN CAIRAN VAGINA', 209000, 'PEMULASARAAN JENAZAH'), +('KFM.068', 'TEST CAIRAN ANALISA SPERMA BAHAN RAMBUT', 209000, 'PEMULASARAAN JENAZAH'), +('KFM.069', 'TEST CAIRAN ANALISA SPERMA BAHAN RAMBUT', 209000, 'PEMULASARAAN JENAZAH'), +('KFM.070', 'TEST CAIRAN ANALISA SWAB VAGINA', 209000, 'PEMULASARAAN JENAZAH'), +('KFM.071', 'TEST GOLONGAN DARAH BAHAN BERCAK PAKAIAN', 139000, 'PEMULASARAAN JENAZAH'), +('KFM.072', 'TEST GOLONGAN DARAH BAHAN DARAH KERING', 139000, 'PEMULASARAAN JENAZAH'), +('KFM.073', 'TEST GOLONGAN DARAH BAHAN DARAH RUSAK', 139000, 'PEMULASARAAN JENAZAH'), +('KFM.074', 'TEST GOLONGAN DARAH BAHAN GIGI', 209000, 'PEMULASARAAN JENAZAH'), +('KFM.075', 'TEST GOLONGAN DARAH BAHAN KERINGAT', 209000, 'PEMULASARAAN JENAZAH'), +('KFM.076', 'TEST GOLONGAN DARAH BAHAN KUKU', 139000, 'PEMULASARAAN JENAZAH'), +('KFM.077', 'TEST GOLONGAN DARAH BAHAN RAMBUT', 139000, 'PEMULASARAAN JENAZAH'), +('KFM.078', 'TEST GOLONGAN DARAH BAHAN RAMBUT & KULIT KEPALA BAYI', 209000, 'PEMULASARAAN JENAZAH'), +('KFM.079', 'TEST GOLONGAN DARAH BAHAN SALIVA', 209000, 'PEMULASARAAN JENAZAH'), +('KFM.080', 'TEST GOLONGAN DARAH BAHAN SPERMATOZOA', 209000, 'PEMULASARAAN JENAZAH'), +('KFM.081', 'TEST GOLONGAN DARAH BAHAN TULANG DADA', 139000, 'PEMULASARAAN JENAZAH'), +('KFM.082', 'TEST GOLONGAN DARAH BAHAN TULANG IGA', 139000, 'PEMULASARAAN JENAZAH'), +('KFM.083', 'TEST GOLONGAN DARAH BAHAN TULANG KERANGKA', 139000, 'PEMULASARAAN JENAZAH'), +('KFM.084', 'TEST GOLONGAN DARAH BAHAN TULANG SELANGKA', 139000, 'PEMULASARAAN JENAZAH'), +('KFM.085', 'TEST GOLONGAN DARAH ABO', 12000, 'PEMULASARAAN JENAZAH'), +('KFM.086', 'TEST GOLONGAN DARAH RHESUS', 12000, 'PEMULASARAAN JENAZAH'), +('KFM.087', 'TEST MIKROBIOLOGI (DAHAK)', 139000, 'PEMULASARAAN JENAZAH'), +('KFM.088', 'TEST MIKROBIOLOGI (LAINNYA)', 139000, 'PEMULASARAAN JENAZAH'), +('KFM.089', 'TEST MIKROBIOLOGI (SWAB VAGINA) / ANALISA SPERMATOZOA', 139000, 'PEMULASARAAN JENAZAH'), +('KFM.090', 'TEST PARASITOLOGI (TELUR, LARVA, LALAT FILARIA TEST)', 174000, 'PEMULASARAAN JENAZAH'), +('KFM.091', 'TEST PRESIPITAN', 173000, 'PEMULASARAAN JENAZAH'), +('KFM.092', 'THC / CANNABINOID', 77000, 'PEMULASARAAN JENAZAH'), +('KFM.093', 'PENGAWETAN ORGAN DENGAN KAMAR PENDINGIN', 42000, 'PEMULASARAAN JENAZAH'), +('KODE', 'URAIAN', 0, 'TINDAKAN OPERATIF'), +('R.AKO.001', 'JASA AKOMODASI - KELAS 3', 150000, 'RAWAT INAP'), +('R.AKO.002', 'JASA AKOMODASI - KELAS 2', 200000, 'RAWAT INAP'), +('R.AKO.003', 'JASA AKOMODASI - KELAS 1', 250000, 'RAWAT INAP'), +('R.AKO.004', 'JASA AKOMODASI BAYI - KELAS 3 (RAWAT GABUNG)', 75000, 'RAWAT INAP'), +('R.AKO.005', 'JASA AKOMODASI BAYI - KELAS 2 (RAWAT GABUNG)', 100000, 'RAWAT INAP'), +('R.AKO.006', 'JASA AKOMODASI BAYI - KELAS 1 (RAWAT GABUNG)', 125000, 'RAWAT INAP'), +('R.DRH.001', 'BLOOD TAP (PHLEBOTOMI)', 95000, 'PELAYANAN DARAH'), +('R.DRH.002', 'DIREK COOBS TEST', 86000, 'PELAYANAN DARAH'), +('R.DRH.003', 'GOLONGAN DARAH ABO', 23000, 'PELAYANAN DARAH'), +('R.DRH.004', 'GOLONGAN DARAH NEWBORN', 167000, 'PELAYANAN DARAH'), +('R.DRH.005', 'GOLONGAN DARAH RHESUS', 23000, 'PELAYANAN DARAH'), +('R.DRH.006', 'IDENTIFIKASI ANTIBODI GOLONGAN DARAH', 661000, 'PELAYANAN DARAH'), +('R.DRH.007', 'IMMEDIATE SPIN', 14000, 'PELAYANAN DARAH'), +('R.DRH.008', 'KOMPONEN DARAH', 436000, 'PELAYANAN DARAH'), +('R.DRH.009', 'KOMPONEN DARAH AFERESES', 4140000, 'PELAYANAN DARAH'), +('R.DRH.010', 'KOMPONEN DARAH PRC LEUKOREDUCED', 802000, 'PELAYANAN DARAH'), +('R.DRH.011', 'KOMPONEN DARAH PRC LEUKOREDUCED PEDIATRI', 403000, 'PELAYANAN DARAH'), +('R.DRH.012', 'PEMERIKSAAN PRA TRANSFUSI', 205000, 'PELAYANAN DARAH'), +('R.DRH.013', 'PRC LEUKODEPLETED', 926000, 'PELAYANAN DARAH'), +('R.DRH.014', 'SKRINING ANTIBODI GOLONGAN DARAH PASIEN', 159000, 'PELAYANAN DARAH'), +('R.DRH.015', 'TES UJI SILANG SERASI', 98000, 'PELAYANAN DARAH'), +('R.DRH.016', 'WASHED ERYTHROCYTE 250 CC', 1484000, 'PELAYANAN DARAH'), +('R.DRH.017', 'JASA KONSULTASI', 100000, 'PELAYANAN DARAH'), +('R.FAR.0001', 'ASUHAN KEFARMASIAN SELAMA PERAWATAN - RAWAT INAP', 150000, 'PELAYANAN FARMASI'), +('R.FAR.0002', 'KONSELING FARMASI - RAWAT JALAN', 35000, 'PELAYANAN FARMASI'), +('R.FAR.0003', 'PRODUKSI STERIL DAN NON STERIL', 250000, 'PELAYANAN FARMASI'), +('R.FAR.0004', 'REKONSTITUSI SITOSTATIKA', 25000, 'PELAYANAN FARMASI'), +('R.FAR.0005', 'REPACKING (KEMAS ULANG) SEDIAAN INJEKSI', 160000, 'PELAYANAN FARMASI'), +('R.GZ.0001', 'ASUHAN GIZI SELAMA PERAWATAN - RAWAT INAP', 150000, 'PELAYANAN GIZI'), +('R.GZ.0002', 'KONSELING GIZI - RAWAT JALAN', 35000, 'PELAYANAN GIZI'), +('R.JAL.001', 'PEMERIKSAAN', 50000, 'RAWAT JALAN'), +('R.JAL.002', 'KONSULTASI', 40000, 'RAWAT JALAN'), +('R.KSL.001', 'JASA KONSULTASI - REGULER', 100000, 'RAWAT INAP'), +('R.LMK.001', 'BIAKAN AEROB + UJI KEPEKAAN (AUTOMATIC)', 362000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.002', 'BIAKAN AEROB SPECIMEN CAIRAN TUBUH (SELAIN DARAH)', 362000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.003', 'BIAKAN AEROB SPECIMEN DARAH (PAKET 2 BACTEC) + IDE', 478000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.004', 'BIAKAN AEROB SPECIMEN FECES + UJI KEPEKAAN (OTOMATIS)', 315000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.005', 'BIAKAN AEROB SPECIMEN PUS + UJI KEPEKAAN (OTOMATIS)', 362000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.006', 'BIAKAN AEROB SPECIMEN SPUTUM NON SPESIFIK + UJI KE', 362000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.007', 'BIAKAN AEROB SPECIMEN SWAB + UJI KEPEKAAN (OTOMATIS)', 362000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.008', 'BIAKAN AEROB SPECIMEN URINE + UJI KEPEKAAN (OTOMATIS)', 362000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.009', 'BIAKAN KHUSUS C DIPHTERIAE', 137000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.010', 'BIAKAN KHUSUS H.INFLUENZAE', 274000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.011', 'BIAKAN KHUSUS H.PYLORI', 315000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.012', 'BIAKAN KHUSUS JAMUR', 137000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.013', 'BIAKAN KHUSUS LEPTOSPIRA', 137000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.014', 'BIAKAN KHUSUS MYCOBACTERIUM + UJI KEPEKAAN (KONVEN', 274000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.015', 'BIAKAN KHUSUS MYCOBACTERIUM + UJI KEPEKAAN (MGIT)', 315000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.016', 'BIAKAN KHUSUS N. GO', 274000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.017', 'BIOMOLEKULER CHLAMYDIA', 274000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.018', 'BIOMOLEKULER CYTOMEGALOVIRUS', 1045000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.019', 'BIOMOLEKULER HCV (GENOTYPING)', 1045000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.020', 'BIOMOLEKULER HCV (KUALITATIF)', 660000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.021', 'BIOMOLEKULER HCV (KUANTITATIF)', 1463000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.022', 'BIOMOLEKULER HIV KUANTITATIF', 1045000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.023', 'BIOMOLEKULER HUMAN PAPILOMAVIRUS (KUALITATIF)', 660000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.024', 'BIOMOLEKULER HUMAN PAPILOMAVIRUS (KUANTITATIF)', 1463000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.025', 'BIOMOLEKULER M. TBC', 362000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.026', 'BIOMOLEKULER MOTT (MYCOBACTERIUM OTHER THAN TUBERC', 315000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.027', 'BTA CAIRAN ASCITES', 219000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.028', 'BTA CAIRAN CAPD', 219000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.029', 'BTA CAIRAN DRAIN', 219000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.030', 'BTA CAIRAN PERICARD', 219000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.031', 'BTA CAIRAN PERITONEUM', 219000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.032', 'BTA CAIRAN PLEURA', 219000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.033', 'BTA CAIRAN SENDI', 219000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.034', 'BTA FECES', 219000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.035', 'BTA PUS', 219000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.036', 'CCI', 219000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.037', 'KULTUR ANAEROB', 792000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.038', 'Kultur anaerob +AST', 792000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.039', 'KULTUR BTA TANPA UJI RESISTENSI', 274000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.040', 'KULTUR CAIRAN CAPD', 416000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.041', 'KULTUR CAIRAN CAPD +AST', 416000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.042', 'KULTUR CAIRAN DRAIN', 416000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.043', 'KULTUR CAIRAN OTAK & UJI KEPEKAAN AB', 416000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.044', 'KULTUR CAIRAN PERICARDIUM & UJI KEPEKAAN AB', 416000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.045', 'KULTUR CAIRAN PERITONEUM & UJI KEPEKAAN AB', 416000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.046', 'KULTUR CAIRAN PLEURA & UJI KEPEKAAN AB', 416000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.047', 'KULTUR CAIRAN SENDI & UJI KEPEKAAN AB', 416000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.048', 'KULTUR CAIRAN STERIL LAIN', 416000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.049', 'KULTUR DARAH AEROB & UJI KEPEKAAN AB', 550000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.050', 'Kultur Darah Anaerob', 550000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.051', 'Kultur Darah Jamur', 550000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.052', 'KULTUR DIFTERI TANPA UJI RESISTENSI', 219000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.053', 'KULTUR FESES AEROB & UJI KEPEKAAN AB', 416000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.054', 'Kultur Helicobacter pylori + AST', 416000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.055', 'KULTUR IDENTIFIKASI TANPA TES SENSITIFITAS ANTIBIOTIK', 871000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.056', 'KULTUR JAMUR CAIRAN ASCITES', 478000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.057', 'KULTUR JAMUR CAIRAN DRAIN', 478000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.058', 'KULTUR JAMUR CAIRAN OTAK', 478000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.059', 'KULTUR JAMUR CAIRAN PERITONEUM', 478000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.060', 'KULTUR JAMUR CAIRAN PLEURA', 478000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.061', 'KULTUR JAMUR CAIRAN SENDI', 478000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.062', 'KULTUR JAMUR CAPD', 478000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.063', 'KULTUR JAMUR PUS', 478000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.064', 'KULTUR JAMUR SPUTUM', 478000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.065', 'KULTUR JAMUR SWAB', 478000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.066', 'KULTUR JAMUR URINE', 478000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.067', 'KULTUR JAMUR YEAST DAN UJI SENSITIVITAS ANTI JAMUR', 478000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.068', 'KULTUR Neisseria gonorrhoeae + AST', 416000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.069', 'KULTUR PUS AEROB & UJI KEPEKAAN AB', 416000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.070', 'KULTUR SPUTUM AEROB NON SPESIFIK & UJI KEPEKAAN AB', 416000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.071', 'KULTUR SWAB HIDUNG & UJI KEPEKAAN AB', 416000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.072', 'KULTUR SWAB MATA & UJI KEPEKAAN AB', 416000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.073', 'KULTUR SWAB TELINGA & UJI KEPEKAAN AB', 416000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.074', 'KULTUR SWAB TENGGOROK & UJI KEPEKAAN AB', 416000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.075', 'KULTUR SWAB VAGINA & UJI KEPEKAAN AB', 416000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.076', 'KULTUR TB DENGAN METODE MGIT TANPA ADA UJI KEPEKAAN', 550000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.077', 'KULTUR URINE AEROB & UJI KEPEKAAN AB', 416000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.078', 'Negative staining', 478000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.079', 'PEMERIKSAAN BTA CAIRAN OTAK', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.080', 'PEMERIKSAAN BTA CAIRAN TUBUH', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.081', 'PEMERIKSAAN BTA LEPRA HIDUNG', 137000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.082', 'PEMERIKSAAN BTA LEPRA KEROKAN KULIT', 137000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.083', 'PEMERIKSAAN BTA REITZ SERUM LEPRA TELINGA', 137000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.084', 'PEMERIKSAAN BTA SPS', 72000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.085', 'PEMERIKSAAN BTA SPUTUM', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.086', 'PEMERIKSAAN BTA URINE', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.087', 'PEMERIKSAAN CHLAMYDIA TRACHOMATIS Ag', 274000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.088', 'PEMERIKSAAN CRYPTOCOCCUS Ag', 315000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.089', 'PEMERIKSAAN DIFTERI NEISSER', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.090', 'PEMERIKSAAN GENE EXPERT', 871000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.091', 'PEMERIKSAAN INFLUENZA A & B VIRUS Ag', 478000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.092', 'PEMERIKSAAN JAMUR CAIRAN OTAK', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.093', 'PEMERIKSAAN JAMUR CAIRAN PERICADIUM', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.094', 'PEMERIKSAAN JAMUR CAIRAN PERITONEUM', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.095', 'PEMERIKSAAN JAMUR CAIRAN PLEURA', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.096', 'PEMERIKSAAN JAMUR CAIRAN SENDI', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.097', 'PEMERIKSAAN JAMUR DARAH', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.098', 'PEMERIKSAAN JAMUR KEROKAN KULIT', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.099', 'PEMERIKSAAN JAMUR PUS', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.100', 'PEMERIKSAAN JAMUR SPUTUM', 72000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.101', 'PEMERIKSAAN LEGIONELLA Ig G', 274000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.102', 'PEMERIKSAAN LEGIONELLA Ig M', 274000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.103', 'PEMERIKSAAN LEPTOSPIRA Ig G', 219000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.104', 'PEMERIKSAAN LEPTOSPIRA Ig M', 219000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.105', 'PEMERIKSAAN MIKROSKOP FLUORESCENT CHLAMYDIA TRACHO', 416000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.106', 'PEMERIKSAAN MIKROSKOP FLUORESCENT CMV', 550000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.107', 'PEMERIKSAAN MIKROSKOP FLUORESCENT H.PYLOR', 362000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.108', 'PEMERIKSAAN MIKROSKOP FLUORESCENT LEGIONELA', 416000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.109', 'PEMERIKSAAN MIKROSKOP FLUORESCENT STREPTOCOCCUS PN', 550000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.110', 'PEMERIKSAAN ROTAVIRUS Ag', 315000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.111', 'PEMERIKSAAN VAGINOSIS BAKTERIALIS (CLUE CELLS)', 72000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.112', 'PEMERIKSAAN VIRAL LOAD HIV', 478000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.113', 'PENGAMBILAN DARAH VENA', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.114', 'PENGAMBILAN SAMPEL USAP NASOFARING', 137000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.115', 'PENGAMBILAN SAMPEL USAP OROFARING', 137000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.116', 'PETA KUMAN >30 - 50 ISOLAT', 660000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.117', 'PETA KUMAN >50 ISOLAT', 792000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.118', 'PETA KUMAN 1 - 30 ISOLAT', 660000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.119', 'PEWARNAAN DLM GRAM', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.120', 'PEWARNAAN GIEMSA', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.121', 'PEWARNAAN GRAM CAIRAN ASCITES', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.122', 'PEWARNAAN GRAM CAIRAN CAPD', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.123', 'PEWARNAAN GRAM CAIRAN DRAIN', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.124', 'PEWARNAAN GRAM CAIRAN OTAK', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.125', 'PEWARNAAN GRAM CAIRAN PERICARD', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.126', 'PEWARNAAN GRAM CAIRAN PERITONEUM', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.127', 'PEWARNAAN GRAM CAIRAN SENDI', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.128', 'PEWARNAAN GRAM CAIRAN STERIL LAIN', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.129', 'PEWARNAAN GRAM DARAH', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.130', 'PEWARNAAN GRAM PUS', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.131', 'PEWARNAAN GRAM SPUTUM', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.132', 'PEWARNAAN GRAM SWAB HIDUNG', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.133', 'PEWARNAAN GRAM SWAB MATA', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.134', 'PEWARNAAN GRAM SWAB TELINGA', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.135', 'PEWARNAAN GRAM SWAB TENGGOROK', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.136', 'PEWARNAAN GRAM SWAB VAGINA', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.137', 'PEWARNAAN GRAM URINE', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.138', 'PEWARNAAN KOH', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.139', 'PEWARNAAN KOH CAIRAN DRAIN', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.140', 'PEWARNAAN KOH CAIRAN LAIN', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.141', 'PEWARNAAN KOH CAIRAN OTAK', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.142', 'PEWARNAAN KOH CAIRAN PERITONEUM', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.143', 'PEWARNAAN KOH CAIRAN PLEURA', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.144', 'PEWARNAAN KOH CAIRAN SENDI', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.145', 'PEWARNAAN KOH CAPD', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.146', 'PEWARNAAN KOH DARAH', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.147', 'PEWARNAAN KOH PUS', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.148', 'PEWARNAAN KOH SPUTUM', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.149', 'PEWARNAAN KOH SWAB', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.150', 'PEWARNAAN KOH URINE', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.151', 'PEWARNAAN NEISSER', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.152', 'pewarnaan PAS', 219000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.153', 'PEWARNAAN SPORA', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.154', 'PEWARNAAN ZN', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.155', 'Rapid urease Test Helicobacter pylori', 219000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.156', 'SKRINING MRSA', 219000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.157', 'TCM CLAMYDIA TRACHOMATIS DAN MEISSERIA GONORRAE BHP', 1045000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.158', 'TCM HBV NON PROGRAM', 792000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.159', 'TCM HBV VIRAL LOAD', 792000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.160', 'TCM HBV VL', 792000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.161', 'TCM HCV VIRAL LOAD NON PROGRAM', 871000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.162', 'TCM HCV VIRAL LOAD PROGRAM', 871000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.163', 'TCM HIV VIRAL LOAD PROGRAM', 871000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.164', 'TCM HIV VL non program', 871000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.165', 'TCM HPV (HUMAN PAPILLOMA VIRUS)', 871000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.166', 'TCM Sarscov2 + Influenza AB + RSV', 871000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.167', 'TCM TB PROGRAM', 871000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.168', 'UJI MIKROBIOLOGI RUANG OPERASI PER METER PER SEGI', 478000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.169', 'UJI POTENSI DESINFEKTAN / ANTISEPTIK PER SAMPEL', 478000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.170', 'JASA KONSULTASI', 100000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.171', 'TCM HCV VIRAL LOAD PROGRAM', 55000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.172', 'TCM HIV VIRAL LOAD PROGRAM', 25000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LMK.173', 'TCM TB PROGRAM', 25000, 'TINDAKAN/PEMERIKSAAN MIKROBIOLOGI KLINIK'), +('R.LPA.001', 'C1q-FITC ANTIBODY', 967000, 'TINDAKAN/PEMERIKSAAN PATOLOGI ANATOMI'), +('R.LPA.002', 'C3c-FITC ANTIBODY', 967000, 'TINDAKAN/PEMERIKSAAN PATOLOGI ANATOMI'), +('R.LPA.003', 'C4c-FITC ANTIBODY', 967000, 'TINDAKAN/PEMERIKSAAN PATOLOGI ANATOMI'), +('R.LPA.004', 'C4d-FITC ANTIBODY', 967000, 'TINDAKAN/PEMERIKSAAN PATOLOGI ANATOMI'), +('R.LPA.005', 'FIBRINOGEN', 967000, 'TINDAKAN/PEMERIKSAAN PATOLOGI ANATOMI'), +('R.LPA.006', 'IgA', 967000, 'TINDAKAN/PEMERIKSAAN PATOLOGI ANATOMI'), +('R.LPA.007', 'IgG', 967000, 'TINDAKAN/PEMERIKSAAN PATOLOGI ANATOMI'), +('R.LPA.008', 'IgM', 967000, 'TINDAKAN/PEMERIKSAAN PATOLOGI ANATOMI'), +('R.LPA.009', 'KAPPA LIGHT CHAIN', 967000, 'TINDAKAN/PEMERIKSAAN PATOLOGI ANATOMI'), +('R.LPA.010', 'KONSUL DISERTAI PEMBUATAN SLIDE', 170000, 'TINDAKAN/PEMERIKSAAN PATOLOGI ANATOMI'), +('R.LPA.011', 'LAMBDA LIGHT CHAIN', 967000, 'TINDAKAN/PEMERIKSAAN PATOLOGI ANATOMI'), +('R.LPA.012', 'SITOLOGI FNAB KIRIMAN SLIDE', 272000, 'TINDAKAN/PEMERIKSAAN PATOLOGI ANATOMI'), +('R.LPA.013', 'KONSULTASI / SECOND OPINION', 100000, 'TINDAKAN/PEMERIKSAAN PATOLOGI ANATOMI'), +('R.LPA.014', 'PEMERIKSAAN HISTOPATOLOGI', 900000, 'TINDAKAN/PEMERIKSAAN PATOLOGI ANATOMI'), +('R.LPA.015', 'PEMERIKSAAN SITOLOGI', 450000, 'TINDAKAN/PEMERIKSAAN PATOLOGI ANATOMI'), +('R.LPA.016', 'PEMERIKSAAN FNAB TANPA TUNTUNAN', 800000, 'TINDAKAN/PEMERIKSAAN PATOLOGI ANATOMI'), +('R.LPA.017', 'PEMERIKSAAN FNAB DENGAN TUNTUNAN (USG / CT SCAN)', 1000000, 'TINDAKAN/PEMERIKSAAN PATOLOGI ANATOMI'), +('R.LPA.018', 'PEMERIKSAAN FROZEN SECTION (VC) NON RADIKALITAS', 1000000, 'TINDAKAN/PEMERIKSAAN PATOLOGI ANATOMI'), +('R.LPA.019', 'HISTOKIMIA 1 REAGEN', 500000, 'TINDAKAN/PEMERIKSAAN PATOLOGI ANATOMI'), +('R.LPA.020', 'HISTOKIMIA 2 REAGEN', 1000000, 'TINDAKAN/PEMERIKSAAN PATOLOGI ANATOMI'), +('R.LPA.021', 'HISTOKIMIA 3 REAGEN', 1500000, 'TINDAKAN/PEMERIKSAAN PATOLOGI ANATOMI'), +('R.LPA.022', 'PEMERIKSAAN IMMUNOHISTOKIMIA 1 ANTIBODI', 750000, 'TINDAKAN/PEMERIKSAAN PATOLOGI ANATOMI'), +('R.LPA.023', 'PEMERIKSAAN IMMUNOHISTOKIMIA 2 ANTIBODI', 1500000, 'TINDAKAN/PEMERIKSAAN PATOLOGI ANATOMI'), +('R.LPA.024', 'PEMERIKSAAN IMMUNOHISTOKIMIA 3 ANTIBODI', 2250000, 'TINDAKAN/PEMERIKSAAN PATOLOGI ANATOMI'), +('R.LPA.025', 'PEMERIKSAAN IMMUNOHISTOKIMIA 4 ANTIBODI', 3000000, 'TINDAKAN/PEMERIKSAAN PATOLOGI ANATOMI'), +('R.LPA.026', 'PEMERIKSAAN IMMUNOHISTOKIMIA 5 ANTIBODI', 3750000, 'TINDAKAN/PEMERIKSAAN PATOLOGI ANATOMI'), +('R.LPA.027', 'PEMERIKSAAN EGFR', 1500000, 'TINDAKAN/PEMERIKSAAN PATOLOGI ANATOMI'), +('R.LPA.028', 'JASA KONSULTASI', 100000, 'TINDAKAN/PEMERIKSAAN PATOLOGI ANATOMI'), +('R.LPK.001', 'ACTIVATED CLOTING TIME (ACT)', 413000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.002', 'AFP', 197000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.003', 'ALBUMIN DARAH', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.004', 'ALKALI FOSFATASE', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.005', 'Amilase Pankreatik', 114000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.006', 'ANA TES ELISA', 359000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.007', 'ANALISA BATU', 137000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.008', 'ANALISA CAIRAN CAPD', 164000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.009', 'ANALISA CAIRAN PERITONEUM', 164000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.010', 'Analisa Cairan XT 4000 i', 79000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.011', 'ANALISA SPERMA', 628000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.012', 'ANALISIS CACING', 271000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.013', 'ANALISIS LARVA', 271000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.014', 'Anti Cardiolipin IgG', 359000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.015', 'Anti Cardiolipin IgM', 359000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.016', 'Anti CCP 3', 628000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.017', 'Anti DS DNA', 359000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.018', 'Anti HAV IgM Elecsys', 312000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.019', 'Anti HBc Elecsys', 312000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.020', 'ANTI HBC IgM', 546000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.022', 'Anti HCV', 312000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.023', 'Anti HCV Elecsys', 312000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.024', 'Anti HSV-1 IgG', 359000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.025', 'Anti HSV-1 IgM', 359000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.026', 'Anti HSV-2 IgG', 359000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.027', 'Anti HSV-2 IgM', 359000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.028', 'Anti MCV', 359000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.029', 'Anti SARS CoV-2 Kuantitatif (Post Vaksin)', 359000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.030', 'APTT', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.031', 'APTT CS 2100', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.032', 'Asam Laktat', 475000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.033', 'ASAM URAT', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.034', 'ASTO', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.035', 'bcr - ABL Quantitatif', 1836000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.036', 'BCR ABL Kualitatif', 1412000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.037', 'BENCE JONES PROTEIN URINE', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.038', 'BGA LACTAD', 236000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.039', 'BGA NOVA', 164000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.040', 'B-HCG', 197000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.041', 'BILIRUBIN DIREK', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.042', 'BILIRUBIN TOTAL', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.043', 'Billirubin Cairan Empedu', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.044', 'BJ PLASMA / SERUM', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.045', 'BMP', 546000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.046', 'C.K. NAC', 79000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.047', 'C.K.M.B.', 95000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.048', 'C3', 475000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.049', 'CA 125', 413000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.050', 'CA 125 Elecsys', 413000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.051', 'CA 15-3', 413000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.052', 'CA 15-3 Elecsys', 413000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.053', 'CA 19-9', 413000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.055', 'Cairan Asites', 197000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.056', 'Cairan L.C.S', 164000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.057', 'Cairan Perikardium', 197000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.058', 'Cairan Peritoneum', 197000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.059', 'Cairan Pleura', 197000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.060', 'Cairan Sendi', 197000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.061', 'Calcium Urine', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.062', 'CALSIUM SERUM', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.063', 'CALSIUM URINE', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.064', 'CAPD', 197000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.065', 'CBC 5 diff 4 EHD', 79000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.066', 'CBC Diff (EHD) XN', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.067', 'CBC XN', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.068', 'CCT', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.069', 'CD - 4', 359000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.070', 'CDC Cross Match (Limfosit T/B)', 2754000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.071', 'CDC CROSSMATCH', 1086000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.072', 'CEA', 197000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.073', 'CEA Elecsys', 236000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.074', 'CHOLESTEROL HDL DIREK', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.075', 'CHOLESTEROL TOTAL', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.076', 'CMV Ig G', 197000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.077', 'CMV Ig M', 197000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.078', 'CMV IgG Elecsys', 236000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.079', 'CMV IgM Elecsys', 236000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.080', 'COLLUM CHROMATO Hb A2', 475000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.081', 'Complement C4', 475000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.082', 'COOMB?S TEST', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.083', 'Cortisol', 271000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.084', 'C-peptide', 271000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.085', 'CREATININE DARAH', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.086', 'CREATININE URINE', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.087', 'CRP KUANTITATIF', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.088', 'D\'dimer', 546000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.089', 'Ds DNA IGG', 359000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.090', 'Ds DNA IGM', 359000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.091', 'Ds DNA Total', 359000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.092', 'EHD AEROSPRAY', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.093', 'Ekatraksi DNA', 475000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.094', 'Ekstraksi DNA & QPCR premix', 628000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.095', 'ELEKTROFORESE Hb', 475000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.096', 'ELEKTROFORESE PROTEIN', 312000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.097', 'ESBACH', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.098', 'Estradiol ( E2 )', 312000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.099', 'EVALUASI HAPUSAN DARAH', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.100', 'FAECES LENGKAP/ TINJA LENGKAP', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.101', 'Ferritin Elecsys', 197000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.102', 'Fibrinogen CS 2100', 197000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.103', 'FILARIA', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.104', 'Filaria Filter', 312000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.105', 'FOBT', 137000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.106', 'FOSFOR SERUM', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.107', 'Free PSA', 312000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.108', 'Free PSA Elecsys', 312000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.109', 'FREE T4 (MEIA)', 197000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.110', 'Fruktosamin', 95000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.111', 'FSH', 271000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.112', 'GAMMA-GT', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.113', 'Glocosa POCT', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.114', 'GLUKOSA URINE', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.115', 'GOL DARAH A, B, O', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.116', 'GULA DARAH', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.117', 'GULA DARAH 2', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.118', 'Gula Darah Sewaktu', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.119', 'Hb Cairan', 79000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.120', 'HbA 1 C', 236000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.121', 'Hbe Ag Elecsys', 312000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.122', 'HBe ANTIBODI (MEIA)', 312000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.123', 'HBe ANTIGEN (MEIA)', 312000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.124', 'HBs Ag Elecsys', 164000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.125', 'HBs ANTIBODI (MEIA)', 137000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.126', 'HBs ANTIGEN (MEIA)', 114000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.127', 'HBV DNA Kuantitatif', 1836000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.128', 'HCV RNA Kuantitatif', 2754000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.129', 'HIV DETERMINE', 114000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.130', 'HIV VIRAL LOAD', 754000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.131', 'HLA ANTIBODI', 10465000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.132', 'HLA ANTIBODI POST TRANSPLANT', 10465000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.133', 'HLA TYPING', 10465000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.134', 'IgA', 271000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.135', 'IgE', 164000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.136', 'Igm anti HAV', 312000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.137', 'IgM Salmonella', 312000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.138', 'IL - 6', 312000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.139', 'Inclusion Body', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.140', 'insulin', 197000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.141', 'IT rasio', 114000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.142', 'K+ Na+ Cl+ ION (ELEKTROLIT)', 114000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.143', 'KETON POCT', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.144', 'Kolesterol LDL Plus Vers 2', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.145', 'Kontrol PCR', 359000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.146', 'Kreatinin Cairan Drain', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.147', 'LAJU ENDAP DARAH (LED)', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.148', 'LDH', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.149', 'LE-CELL', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.150', 'LED Alifax', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.151', 'Leptospira', 114000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.152', 'LH', 236000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.153', 'Lipase', 137000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.154', 'Magnesium', 114000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.155', 'Malaria Hapusan ( tetes tipis )', 114000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.156', 'MALARIA ICT', 312000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.157', 'MALARIA TETES TEBAL', 114000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.158', 'MASA PEMBEKUAN', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.159', 'MASA PERDARAHAN', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.160', 'Mikroskopik Urine', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.161', 'MIRNA + EKSTRAKSI DNA PER SAMPEL PER PAKET 50', 2754000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.162', 'MIRNA PER MARKER PER PAKET 50', 1836000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.163', 'MIRNA PER MARKER PER SAMPEL', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.164', 'N S E', 754000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.165', 'NONNE', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.166', 'NS-1', 312000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.167', 'OCCULT BLOOD TEST/ BENZIDIN', 114000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.168', 'PANDY', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.169', 'Panel Auto Antobodi ANA', 1086000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.170', 'PANEL FLOWCYTOMETRI LEUKEMIA AKUT PAKET EGIL-MPAL', 1836000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.171', 'PANEL FLOWCYTOMETRI LEUKEMIA AKUT PAKET MYELOID', 1412000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.172', 'PANEL FLOWCYTOMETRI LEUKIMIA AKUT PAKET LIMFOID', 1412000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.173', 'PANEL HLA TYPING LOKUS SPESIFIK', 1836000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.174', 'PANEL LEUKIMIA AKUT FLOWCYTOMETRI', 1836000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.175', 'PANEL TES ALERGI', 1412000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.176', 'PCR KONVENSIONAL + EKSTRAKSI DNA PER MARKER PER\nPAKET 50', 2754000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.177', 'PCR KONVENSIONAL PER MARKER PER PAKET 50', 1086000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.178', 'PCR KONVENSIONAL PER MARKER PER SAMPEL', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.179', 'PCR REAL TIME + EKSTRAKSI DNA PER MARKER PER PAKET 50', 2754000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.180', 'PCR REAL TIME PER MARKER PER PAKET 50', 905000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.181', 'PCR REAL TIME PER MARKER PER SAMPEL', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.182', 'PCR SARS Cov-2 MANDIRI', 546000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.183', 'PEMERIKSAAN ELISA PER MARKER PER PAKET 48', 413000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.184', 'PEMERIKSAAN ELISA PER MARKER PER PAKET 96', 905000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.185', 'PEMERIKSAAN ELISA PER SAMPEL', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.186', 'PEMERIKSAAN HUMAN LEUCOCYTE ANTIBODY TYPING', 10465000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.187', 'PEMERIKSAAN PAKET SKRINNING TRANSPLANTASI GINJAL', 21977000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.188', 'PEMERIKSAAN PANEL REACTIVE ANTIBODY', 10465000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.189', 'PEMR. NARKOBA COCAINE', 114000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.190', 'PEMR. NARKOBA MARIYUANA', 114000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.191', 'PEMR. NARKOBA METAMPHETAMINE', 114000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.192', 'PEMR. NARKOBA MORPHINE', 114000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.193', 'Pemr.NARKOBA THC', 114000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.194', 'PENELITIAN DATA SEKUNDER PADA LIS PER PASIEN', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.195', 'PENGECATAN BESI', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.196', 'PENGECATAN GRAM', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.197', 'PENGECATAN WRIGHT', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.198', 'PENGECATATAN VVP', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.199', 'PENYIMPANAN SAMPEL BOX BESAR MAKS. UK. 30x30x10 CM\nPER BULAN', 164000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.200', 'PENYIMPANAN SAMPEL BOX KECIL MAKS. UK. 20x20x5 CM\nPER BULAN', 114000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.201', 'PHLEBOTOMI', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.202', 'Platelete Rich Plasma ( PRP )', 114000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.203', 'PLTF XN + CBC Diff (EHD) XN', 95000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.204', 'PPT CS 2100', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.205', 'Prealbumin', 271000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.206', 'PREPARASI SAMPEL (SERUM / PLASMA) PER SAMPEL', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.207', 'Pro BNP', 754000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.208', 'Procalcitonin', 754000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.209', 'Progesteron', 236000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.210', 'Prolaktin', 236000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.211', 'PRP', 79000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.212', 'PSA', 312000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.213', 'PSA Elecsys', 312000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.214', 'Q-PCR premix', 359000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.215', 'RA FAKTOR', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.216', 'RAPID ANTIGEN SARS Cov-2', 164000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.217', 'Rasio protein urine dan kreatinin urine', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.218', 'RETIKULOSIT', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.219', 'Retikulosit + CBC Diff (EHD) XN', 79000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.220', 'RETIKULOSIT XT', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.221', 'RHESUS', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.222', 'Rheumatoid Factor IgG', 359000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.223', 'Rheumatoid Factor IgM', 359000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.224', 'Rubella Ig G', 312000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.225', 'Rubella Ig M', 312000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.226', 'Rubella IgG Elecsys', 312000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.227', 'Rubella IgM Elecsys', 312000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.228', 'RUMATAN METHADON', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.229', 'S 100 B', 754000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.230', 'S.I.', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.231', 'SAAG', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.232', 'SCRENING TRANSPLANTASI GINJAL', 21977000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.233', 'SEDIMEN URINE', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.234', 'Sel sezary', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.235', 'Serum Elektrolit Urine', 114000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.236', 'Serum Mata', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.237', 'SGOT', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.238', 'SGPT', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.239', 'T.I.B.C.', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.240', 'T3 TOTAL (MEIA)', 164000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.241', 'TACROLIMUS', 905000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.242', 'TB IGRA', 905000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.243', 'TB-DOT', 236000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.244', 'Tes Alergi', 1086000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.245', 'TES KEHAMILAN', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.246', 'TES KEHAMILAN TITRASI', 95000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.247', 'TES SEROLOGI ANT1BODI SARS CoV-2 ECLIA', 164000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.248', 'Test ANA (Cytobead IF)', 754000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.249', 'Testosteron', 236000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.250', 'THROMBOELASTOGRAFI (TEG) TABUNG HEPARIN', 905000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.251', 'THROMBOELASTOGRAFI (TEG) TABUNG PLAIN', 754000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.252', 'TINJA LENGKAP (FL)', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.253', 'TOTAL PROTEIN', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.254', 'TOXOPLASMA IgG (MEIA)', 197000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.255', 'TOXOPLASMA IgM (MEIA)', 197000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.256', 'TPHA', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.257', 'TRIGLISERIDA', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.258', 'TROPONIN I', 413000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'); +INSERT INTO `tarif_rs` (`ID_Tarif_RS`, `Tindakan_RS`, `Tarif_RS`, `Kategori_RS`) VALUES +('R.LPK.259', 'TSH (MEIA)', 164000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.260', 'UACR KUANTITATIF', 236000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.261', 'UACR SEMI KUANTITATIF', 164000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.262', 'UJI KONFIRMATIF HIV', 312000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.263', 'UJI PERFORMA ALAT BESAR UKURAN WATT > 1000 VA', 905000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.264', 'UJI PERFORMA ALAT KECIL UKURAN WATT < 1000 VA', 905000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.265', 'UREUM DARAH', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.266', 'UREUM URINE', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.267', 'URINE LENGKAP', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.268', 'Urine Lengkap Clinitex Adventus', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.269', 'Urine Lengkap UX2000', 95000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.270', 'VDRL', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.271', 'vitamin D', 413000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.272', 'WIDAL', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.273', 'WPC + CBC Diff (EHD) XN', 95000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.274', 'ANALISA KROMOSOM', 2754000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.275', 'PCR URIN', 1836000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.276', '17-OHP', 1412000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.277', 'FAKTOR VIII', 1412000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.278', 'FAKTOR IX', 1412000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.279', 'ALDOSTERON', 2754000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.280', 'IGRA', 1412000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.281', 'ASAM AMINO', 2754000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.282', 'GAD 65', 2754000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.283', 'FENITOIN', 1412000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.284', 'FENOBARBITAL', 2754000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.285', 'PTH INTACT', 1086000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.286', 'LUPUS ANTIKOAGULAN', 905000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.287', 'GROWTH HORMON', 2754000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.288', 'G6PD', 475000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.289', 'TRAb', 905000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.290', 'Anti TPO', 1412000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.291', 'NMDAR', 4600000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.292', 'IMUNOHISTOTYPING', 1836000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.293', 'JAK 2 MUTATION', 1086000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.294', 'Vitamin B12', 1412000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.295', 'Vitamin B1', 905000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.296', 'Cd8', 413000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.297', 'Anca', 754000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.298', 'Igg', 905000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.299', 'Igm', 905000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.300', 'Kadar digoxin darah', 1836000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.301', 'VMA Urin', 197000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.302', 'AMH', 1086000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.303', 'SRY', 1836000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.304', 'JASA KONSULTASI', 100000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.305', 'ALBUMIN DARAH', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.306', 'Anti CCP 3', 546000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.307', 'Anti DS DNA', 312000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.308', 'ANTI HBC IgM', 475000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.309', 'Anti HBc IgM', 546000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.310', 'Anti HCV', 271000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.311', 'Anti HCV Elecsys', 271000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.312', 'Anti HSV-1 IgG', 312000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.313', 'Anti HSV-1 IgM', 312000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.314', 'Anti HSV-2 IgG', 312000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.315', 'Anti HSV-2 IgM', 312000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.316', 'ASAM URAT', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.317', 'BGA LACTAD', 359000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.318', 'BILIRUBIN DIREK', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.319', 'BILIRUBIN TOTAL', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.320', 'Billirubin Cairan Empedu', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.321', 'BMP', 1836000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.322', 'CA 125', 359000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.323', 'CA 125 Elecsys', 359000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.324', 'CA 15-3', 359000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.325', 'CA 15-3 Elecsys', 359000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.326', 'CA 19-9', 359000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.327', 'CA 19-9', 413000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.328', 'CBC 5 diff 4 EHD', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.329', 'CBC Diff (EHD) XN', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.330', 'CBC XN', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.331', 'CD - 4', 312000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.332', 'CEA Elecsys', 197000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.333', 'CHOLESTEROL HDL DIREK', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.334', 'CHOLESTEROL TOTAL', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.335', 'CMV IgG Elecsys', 197000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.336', 'CMV IgM Elecsys', 197000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.337', 'CREATININE DARAH', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.338', 'CREATININE URINE', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.339', 'D\'dimer', 475000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.340', 'Ds DNA IGG', 312000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.341', 'Ds DNA IGM', 312000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.342', 'Ds DNA Total', 312000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.343', 'ELEKTROFORESE Hb', 413000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.344', 'ELEKTROFORESE PROTEIN', 271000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.345', 'Estradiol ( E2 )', 271000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.346', 'EVALUASI HAPUSAN DARAH', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.347', 'Fibrinogen CS 2100', 164000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.348', 'FREE T4 (MEIA)', 164000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.349', 'FSH', 236000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.350', 'Glocosa POCT', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.351', 'GLUKOSA URINE', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.352', 'GOL DARAH A, B, O', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.353', 'GULA DARAH', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.354', 'GULA DARAH 2', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.355', 'Gula Darah Sewaktu', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.356', 'HbA 1 C', 197000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.357', 'Hbe Ag Elecsys', 271000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.358', 'HBe ANTIBODI (MEIA)', 271000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.359', 'HBe ANTIGEN (MEIA)', 271000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.360', 'IgA', 754000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.361', 'Igm anti HAV', 271000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.362', 'IgM Salmonella', 271000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.363', 'KETON POCT', 79000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.364', 'Kolesterol LDL Plus Vers 2', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.365', 'Kreatinin Cairan Drain', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.366', 'MALARIA ICT', 271000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.367', 'NS-1', 271000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.368', 'PCR SARS Cov-2 MANDIRI', 312000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.369', 'PEMERIKSAAN ELISA PER MARKER PER PAKET 48', 359000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.370', 'PEMERIKSAAN ELISA PER MARKER PER PAKET 96', 754000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.371', 'PEMR. NARKOBA COCAINE', 95000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.372', 'PEMR. NARKOBA MARIYUANA', 95000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.373', 'PEMR. NARKOBA METAMPHETAMINE', 95000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.374', 'PEMR. NARKOBA MORPHINE', 95000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.375', 'Pemr.NARKOBA THC', 95000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.376', 'PHLEBOTOMI', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.377', 'PLTF XN + CBC Diff (EHD) XN', 79000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.378', 'Pro BNP', 628000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.379', 'Procalcitonin', 628000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.380', 'PRP', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.381', 'PSA Elecsys', 271000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.382', 'RAPID ANTIGEN SARS Cov-2', 95000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.383', 'RHESUS', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.384', 'Rubella Ig G', 271000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.385', 'Rubella Ig M', 271000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.386', 'Rubella IgG Elecsys', 271000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.387', 'Rubella IgM Elecsys', 271000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.388', 'SGOT', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.389', 'SGPT', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.390', 'T3 TOTAL (MEIA)', 137000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.391', 'Test ANA (Cytobead IF)', 1086000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.392', 'TOTAL PROTEIN', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.393', 'TRIGLISERIDA', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.394', 'TROPONIN I', 359000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.395', 'TSH (MEIA)', 137000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.396', 'UREUM DARAH', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.397', 'UREUM URINE', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.398', 'URINE LENGKAP', 55000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.399', 'VDRL', 66000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.400', 'vitamin D', 359000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.401', 'ANALISA KROMOSOM', 3663000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.402', 'FENITOIN', 1836000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.403', 'G6PD', 546000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.404', 'NMDAR', 5359000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.405', 'IgM & Anti Dengue', 236000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.406', 'IgG Anti Dengue', 236000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.407', 'Magnesium Urin', 114000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.408', 'Syphilis', 197000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.409', 'Anti Tyroglubulin', 754000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.410', 'B2 Microglobulin', 1412000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.411', 'Renin Activity Plasma', 1836000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.412', 'Inhibator Faktor VIII', 1412000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.413', 'Faktor VII', 1836000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.414', 'Panel POCT', 905000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.415', 'BGA POCT iStat', 475000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.416', 'Amonia (NH3)', 1086000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.LPK.417', 'Tyroglobulin', 905000, 'TINDAKAN/PEMERIKSAAN PATOLOGI KLINIK'), +('R.PAT.0001', 'PELAYANAN ADVOKASI DONOR TRANSPLANTASI', 8500000, 'TINDAKAN NON OPERATIF'), +('R.RDL.001', 'ABDOMEN 1', 85000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.002', 'ABDOMEN 2', 85000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.003', 'ABDOMEN 3 POSISI 1', 205000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.004', 'ABDOMEN 3 POSISI 2', 128000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.005', 'ANTEBRACHI 1 AP/LAT', 205000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.006', 'ANTEBRACHI 2 AP/LAT', 205000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.007', 'ARTERIOGRAFI PERIPER', 1021000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.008', 'ARTHROGRAFI', 1021000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.009', 'BACA ULANG FOTO CT SCAN ABDOMEN', 503000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.010', 'BACA ULANG FOTO CT SCAN KEPALA', 359000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.011', 'BACA ULANG FOTO CT SCAN THORAX', 359000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.012', 'BACA ULANG FOTO THORAX', 65000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.013', 'BACA ULANG MRI ABDOMEN', 503000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.014', 'BACA ULANG MRI KEPALA', 359000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.015', 'BASIS CRANI', 65000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.016', 'BONE MINERAL DENSITOMETRI (BMD)', 1021000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.017', 'BRAIN TUMOR SCREENING (MINI MRI)', 503000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.018', 'C-ARM < 3 JAM', 359000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.019', 'C-ARM > 3 JAM', 503000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.020', 'CAUDOGRAFI', 1429000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.021', 'CERVICAL 1 4 X', 128000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.022', 'CERVICAL 2 4 X', 128000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.023', 'CERVICAL AP/LAT 1', 128000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.024', 'CERVICAL AP/LAT 2', 85000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.025', 'CETAK ULANG FOTO', 65000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.026', 'CETAK ULANG FOTO CT SCAN ABDOMEN', 359000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.027', 'CETAK ULANG FOTO CT SCAN KEPALA', 128000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.028', 'CETAK ULANG FOTO CT SCAN THORAX', 205000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.029', 'CETAK ULANG FOTO MRI ABDOMEN DENGAN KONTRAS', 654000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.030', 'CETAK ULANG FOTO MRI DENGAN KONTRAS', 503000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.031', 'CETAK ULANG FOTO MRI KEPALA', 359000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.032', 'CHOLECYSTOGRAFI', 1021000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.033', 'CLAVICULA 1', 85000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.034', 'CLAVICULA 2', 65000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.035', 'COLON INLOOP 1', 1021000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.036', 'COLON INLOOP 2', 654000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.037', 'COR ANALYSE', 785000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.038', 'CRURIS 1 AP/LAT', 205000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.039', 'CRURIS 2 AP/LAT', 205000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.040', 'CT SCAN ABDOMEN', 1858000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.041', 'CT SCAN ABDOMEN 2 FASE DENGAN KONTRAS', 3055000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.042', 'CT SCAN ABDOMEN 3 FASE DENGAN KONTRAS', 3697000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.043', 'CT SCAN AGIOGRAFI DENGAN KONTRAS', 3361000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.044', 'CT SCAN CA SCORING', 1429000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.045', 'CT SCAN EXTREMITAS', 1429000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.046', 'CT SCAN EXTREMITAS DENGAN KONTRAS', 1858000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.047', 'CT SCAN EXTREMITAS DENGAN REKONSTRUKSI', 2415000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.048', 'CT SCAN EXTREMITAS DENGAN REKONSTRUKSI + C', 2777000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.049', 'CT SCAN FNAB', 1021000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.050', 'CT SCAN JANTUNG DENGAN KONTRAS', 4474000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.051', 'CT SCAN KEPALA', 1021000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.052', 'CT SCAN KEPALA DENGAN KONTRAS', 1429000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.053', 'CT SCAN MASTOID', 1429000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.054', 'CT SCAN MASTOID DENGAN KONTRAS', 1858000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.055', 'CT SCAN NASOPHARING', 1429000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.056', 'CT SCAN NASOPHARING DENGAN KONTRAS', 1858000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.057', 'CT SCAN ORBITA DENGAN KONTRAS', 1858000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.058', 'CT SCAN PLANNING', 1021000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.059', 'CT SCAN PLANNING DENGAN KONTRAS', 1429000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.060', 'CT SCAN THORAX', 1858000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.061', 'CT SCAN THORAX DENGAN KONTRAS', 3055000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.062', 'CT SCAN TYROID', 1429000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.063', 'CT SCAN TYROID DENGAN KONTRAS', 1858000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.064', 'CT SCAN UROLOGI DENGAN KONTRAS', 3361000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.065', 'CT SCAN VERTEBRA', 1429000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.066', 'CT SCAN VERTEBRA DENGAN KONTRAS', 1858000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.067', 'CT SCAN VERTEBRA DENGAN REKONSTRUKSI', 2415000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.068', 'CT SCAN VERTEBRA DENGAN REKONSTRUKSI + C', 2777000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.069', 'CT. SCAN ORBITA', 1429000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.070', 'CT.SCAN KEPALA 3 D', 1429000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.071', 'CT.SCAN TELINGA', 1021000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.072', 'CT.SCAN TELINGA - DENGAN KONTRAS', 1858000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.073', 'CT.SCAN THORACAL / LUMBAL SPINE', 1429000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.074', 'CT.SCAN THORACAL / LUMBAL SPINE DG KONTRAS', 1858000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.075', 'CT.SCAN THYROID DGN.KONTRAS', 1858000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.076', 'CYSTOOGRAFI', 1021000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.077', 'DACRIOCYSTOGRAFI', 785000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.078', 'FEMUR 1 AP/LAT', 205000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.079', 'FEMUR 2 AP/LAT', 205000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.080', 'FISTULOGRAFI', 654000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.081', 'GENU 1 AP/LAT', 205000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.082', 'GENU 2 AP/LAT', 205000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.083', 'H S G', 654000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.084', 'HUMERIS 1', 85000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.085', 'HUMERIS 2', 65000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.086', 'I V P 1', 1021000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.087', 'I V P 2', 1021000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.088', 'I V P INFUSION', 2415000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.089', 'KEPALA AP/LAT 1', 128000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.090', 'KEPALA AP/LAT 2', 85000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.091', 'KEPALA AP/LAT.IRD', 205000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.092', 'KONSULTASI RADIOLOGI', 128000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.093', 'LOPOGRAFI', 785000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.094', 'LUMBO SACRAL 1', 128000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.095', 'LUMBO SACRAL 2', 128000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.096', 'LYMPHOGRAFI', 1021000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.097', 'MAAG FOTO / UGI 1', 785000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.098', 'MAMOGRAPHY', 359000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.099', 'MR NAVIGASI NON CONTRAST (GK)', 2415000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.100', 'MR NAVIGASI CONTRAST (GK)', 2415000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.101', 'MRA 3T ABDOMINALIS CONTRAST ENHANCED', 4067000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.102', 'MRA 3T CONTRAST', 3697000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.103', 'MRA 3T EXTREMITAS ATAS (HUMERUS/ANTEBRATA)', 4067000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.104', 'MRA 3T EXTREMITAS BAWAH (FEMUR/CRURIS)', 4067000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.105', 'MRA 3T NON CONTRAST', 2777000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.106', 'MRA 3T RUN OFF EXTREMITAS BAWAH', 4067000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.107', 'MRA 3T THORACALIS CONTRAST ENHANCED', 4067000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.108', 'MRA TOTAL BODY IMAGING CONTRAST', 6688000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.109', 'MRI 3T + MRA 3T HEAD CONTRAST', 4067000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.110', 'MRI 3T + MRA 3T HEAD NON CONTRAST', 3361000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.111', 'MRI 3T ANKLE JOINT CONTRAST', 3361000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.112', 'MRI 3T ANKLE JOINT NON CONTRAST', 2777000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.113', 'MRI 3T BREAST CONTRAST', 3361000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.114', 'MRI 3T BREAST NON CONTRAST', 2777000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.115', 'MRI 3T CARDIAC CORONARY NON CONTRAST', 4474000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.116', 'MRI 3T CARDIAC FUNCTION CONTRAST', 4474000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.117', 'MRI 3T CARDIAC PERFUSION CONTRAST', 4474000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.118', 'MRI 3T CAROTIS CONTRAST ENHANCED', 3361000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.119', 'MRI 3T CAROTIS NON CONTRAST', 2777000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.120', 'MRI 3T CAROTIS-CIRCULUS WILLISI CONTRAST', 4067000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.121', 'MRI 3T CAROTIS-CIRCULUS WILLISI NON CONTRAST', 2777000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.122', 'MRI 3T CERVICAL CONTRAST', 3361000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.123', 'MRI 3T CERVICAL NON CONTRAST', 2777000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.124', 'MRI 3T CONTRAST', 3697000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.125', 'MRI 3T ELBOW CONTRAST', 3361000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.126', 'MRI 3T ELBOW NON CONTRAST', 2777000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.127', 'MRI 3T EXREMITAS NON CONTRAST', 2777000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.128', 'MRI 3T EXREMITAS CONTRAST', 4067000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.129', 'MRI 3T EXREMITAS PERFUSION', 3361000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.130', 'MRI 3T HEAD + BOLD (BRAIN OXYGEN)', 2415000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.131', 'MRI 3T HEAD + DTI/FIBRE TRACT/TRACTOGRA', 2415000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.132', 'MRI 3T HEAD + PERFUSION', 3361000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.133', 'MRI 3T HEAD + SPECTROSCOPY', 3697000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.134', 'MRI 3T HEAD + VESTIBULOCOHCLEAR CONTRAST', 3055000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.135', 'MRI 3T HEAD + VESTIBULOCOHCLEAR NON CONTRAST', 2415000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.136', 'MRI 3T HEAD CONTRAST', 3361000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.137', 'MRI 3T HEAD CONTRAST ENHANCED', 3361000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.138', 'MRI 3T HEAD EARLY STROKE PACKAGE (SPECIAL)', 2415000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.139', 'MRI 3T HEAD NON CONTRAST', 2777000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.140', 'MRI 3T HEAD SCREENING STROKE PACKAGE', 2415000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.141', 'MRI 3T HIP JOINT CONTRAST', 3361000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.142', 'MRI 3T HIP JOINT NON CONTRAST', 2777000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.143', 'MRI 3T KNEE JOINT CONTRAST', 3361000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.144', 'MRI 3T KNEE JOINT NON CONTRAST', 2777000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.145', 'MRI 3T LARYNX CONTRAST', 3361000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.146', 'MRI 3T LARYNX NON CONTRAST', 2777000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.147', 'MRI 3T LIVER CONTRAST', 6688000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.148', 'MRI 3T LIVER NON CONTRAST', 2415000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.149', 'MRI 3T LUMBAL CONTRAST', 3361000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.150', 'MRI 3T LUMBAL NON CONTRAST', 2777000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.151', 'MRI 3T MASTOID CONTRAST', 3361000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.152', 'MRI 3T MASTOID NON CONTRAST', 2777000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.153', 'MRI 3T MRCP (CHOLANGIO PANREATOGRAPHY)', 2777000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.154', 'MRI 3T MRCP (CHOLANGIO PANREATOGRAPHY) CONTRAST', 3361000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.155', 'MRI 3T NASOPHARYNK CONTRAST', 3361000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.156', 'MRI 3T NASOPHARYNK NON CONTRAST', 2777000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.157', 'MRI 3T NAVIGASI CONTRAST', 3361000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.158', 'MRI 3T NAVIGASI NON CONTRAST', 2777000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.159', 'MRI 3T NECK ANTERIOR CONTRAST', 3361000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.160', 'MRI 3T NECK ANTERIOR NON CONTRAST', 2415000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.161', 'MRI 3T NON CONTRAST', 2777000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.162', 'MRI 3T ORBITA CONTRAST', 3361000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.163', 'MRI 3T ORBITA NON CONTRAST', 2777000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.164', 'MRI 3T PEDIS CONTRAST', 3361000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.165', 'MRI 3T PEDIS NON CONTRAST', 2777000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.166', 'MRI 3T PELVIS CONTRAST', 4067000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.167', 'MRI 3T PELVIS NON CONTRAST', 2777000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.168', 'MRI 3T PLANNING ABDOMEN DENGAN KONTRAS', 4474000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.169', 'MRI 3T PLANNING ABDOMEN NON KONTRAS', 2777000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.170', 'MRI 3T PLANNING CERVICAL DENGAN KONTRAS', 3697000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.171', 'MRI 3T PLANNING CERVICAL NON KONTRAS', 2777000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.172', 'MRI 3T PLANNING EKSTRIMITAS DENGAN KONTRAS', 4474000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.173', 'MRI 3T PLANNING EKSTRIMITAS NON KONTRAS', 2777000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.174', 'MRI 3T PLANNING HEAD DENGAN KONTRAS', 3697000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.175', 'MRI 3T PLANNING HEAD NON KONTRAS', 2777000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.176', 'MRI 3T PLANNING PELVIS DENGAN KONTRAS', 4474000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.177', 'MRI 3T PLANNING PELVIS NON KONTRAS', 2777000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.178', 'MRI 3T PLANNING THORAX DENGAN KONTRAS', 4067000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.179', 'MRI 3T PLANNING THORAX NON KONTRAS', 2777000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.180', 'MRI 3T RUN OFF EXTREMITAS BAWAH', 4067000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.181', 'MRI 3T SHOULDER CONTRAST', 3361000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.182', 'MRI 3T SHOULDER NON CONTRAST', 2777000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.183', 'MRI 3T SINUS PARANASALIS CONTRAST', 3361000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.184', 'MRI 3T SINUS PARANASALIS NON CONTRAST', 2415000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.185', 'MRI 3T THORACAL CONTRAST', 4067000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.186', 'MRI 3T THORACAL NON CONTRAST', 3055000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.187', 'MRI 3T THORAX CONTRAST', 3361000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.188', 'MRI 3T THORAX NON CONTRAST', 2777000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.189', 'MRI 3T TOTAL SPINE CONTRAST', 5816000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.190', 'MRI 3T TOTAL SPINE NON CONTRAST', 4474000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.191', 'MRI 3T UPPER ABDOMEN + PELVIS CONTRAST', 4474000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.192', 'MRI 3T UPPER ABDOMEN + PELVIS NON CONTRAST', 4067000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.193', 'MRI 3T UPPER ABDOMEN CONTRAST', 4067000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.194', 'MRI 3T UPPER ABDOMEN NON CONTRAST', 2777000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.195', 'MRI 3T WRIST JOIN CONTRAST', 3361000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.196', 'MRI 3T WRIST JOIN NON CONTRAST', 2777000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.197', 'MRI TOTAL BODY IMAGING CONTRAST', 9363000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.198', 'MRI TOTAL BODY IMAGING NON CONTRAST', 5816000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.199', 'MYLOGRAFI', 1429000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.200', 'OESOPHAGUS', 503000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.201', 'PANAROMIC', 65000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.202', 'PEDIS 1 AP/LAT', 205000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.203', 'PEDIS 2 AP/LAT', 128000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.204', 'PELVIS 1 AP/LAT', 205000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.205', 'PELVIS 2 AP/LAT', 205000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.206', 'PHLEBOGRAFI', 1021000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.207', 'R P G / A P G', 1021000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.208', 'RONTGEN FOTO INTRA ORAL (PER GIGI)', 65000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.209', 'SIALOGRAFI', 1021000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.210', 'T.TUBE CHOLEDOCHOGRAFI', 785000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.211', 'TANGEN 1 AP/LAT', 205000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.212', 'TANGEN 2 AP/LAT', 128000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.213', 'THORACO LUMBAL 1', 128000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.214', 'THORACO LUMBAL 2', 128000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.215', 'THORAX 1', 85000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.216', 'THORAX 2', 85000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.217', 'THORAX 3', 85000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.218', 'THORAX AP/LAT 1', 205000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.219', 'THORAX AP/LAT 2', 128000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.220', 'THORAX AP/LAT 3', 85000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.221', 'U G I 2', 785000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.222', 'URETHROGRAFI', 654000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.223', 'USG', 205000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.225', 'USG.COLOR DOPPLER ( PER ORGAN)', 654000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.226', 'WATERS / SINUS', 85000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.227', 'JASA KONSULTASI', 100000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.228', 'CEPHALOMETRI', 65000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.229', 'ANKLE AP LAT', 205000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.230', 'WRIST AP LAT', 85000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.231', 'MANUS AP LAT', 85000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.232', 'ELBOW AP LAT', 205000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.233', 'SHOULDER', 85000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.234', 'SCHULLER', 128000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.235', 'TMJ (TEMPORO MANDIBULA JOINT)', 128000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.236', 'CUBITI', 205000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.237', 'BONE AGE', 85000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.238', 'THORACOABDOMINAL', 128000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.239', 'TIBIA', 205000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.240', 'MORTIS VIEW', 205000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.241', 'CALCANEUS', 205000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.242', 'GLENO HUMERAL JOINT', 85000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.243', 'DYNAMIC VIEW', 128000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.244', 'BARIUM ESOFAGUSGRAM', 503000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.245', 'APPENDICOGRAM', 654000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.246', 'REFLUX STUDY', 654000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.247', 'BVCUG (BIPOLAR VOIDING CYSTOURETROGRAFI)', 1021000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.248', 'BARIUM INTAKE', 785000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.249', 'GENITOGRAFI', 654000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.250', 'SPLINTOGRAFI', 1021000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.251', 'GENU SUNRISE VIEW', 205000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.252', 'BABY GRAM', 85000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.253', 'COXAE', 205000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.254', 'ABDOMEN 2 POSISI', 85000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.255', 'BONE SURVEY', 785000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.256', 'SCANOGRAM', 654000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.257', 'SCOLIOSIS SERIES', 503000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.258', 'WHOLESPINE', 503000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RDL.259', 'VCUG (VOIDING CYSTOURETROGRAFI)', 1021000, 'TINDAKAN / PEMERIKSAAN RADIODIAGNOSTIK'), +('R.RHM.001', 'AUDIO VISUAL TACTILE STIMULATION', 535000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.002', 'B M D TEST', 113000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.003', 'BIO FEED BACK TRAINER (MYOMED)', 446000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.004', 'CHEST PHYSICAL THERAPHY', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.005', 'COGNITIVE TRAINING', 446000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.006', 'CONTINUOUS PASSIVE MOVEMENT', 94000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.007', 'EMG BIOFEEDBACK', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.008', 'ERGOCYCLE', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.009', 'HOTPACK', 49000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.010', 'ICING/CRYOJET', 49000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.011', 'INFRARED', 49000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.012', 'INJEKSI EKSTRAARTIKULAR', 124000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.013', 'INJEKSI INTRAARTIKULAR', 124000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.014', 'INJEKSI PROLOTERAPI', 124000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.015', 'INJEKSI SOFT TISSUE', 124000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.016', 'INJEKSI STEROID', 124000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.017', 'IVES', 124000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.018', 'KINETIZER', 103000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.019', 'LASER THERAPY UNIT', 94000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.020', 'LATIHAN A D L', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.021', 'LATIHAN AMBULASI', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.022', 'LATIHAN ARTIKULASI', 49000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.023', 'LATIHAN BAHASA', 64000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.024', 'LATIHAN CEREBRAL PALSY', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.025', 'LATIHAN ENDURANCE', 85000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.026', 'LATIHAN FEEDING/ORAL STIMULASI', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.027', 'LATIHAN FUNGSI TANGAN', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.028', 'LATIHAN KESEIMBANGAN', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.029', 'LATIHAN KETANGKASAN/AGILITY', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.030', 'LATIHAN KOORDINASI', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.031', 'LATIHAN LBP (WILLIAM FLEXION)', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.032', 'LATIHAN LUAS GERAK SENDI', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.033', 'LATIHAN NECK CALLIET', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.034', 'LATIHAN OSTEOPOROSIS', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.035', 'LATIHAN PADA BAYI', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.036', 'LATIHAN PARKINSON', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.037', 'LATIHAN PENGUATAN', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.038', 'LATIHAN PEREGANGAN', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.039', 'LATIHAN SCI (SPINAL CORD INJURY)', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.040', 'LATIHAN SENSORY INTEGRASI', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.041', 'LATIHAN SKOLIOSIS', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.042', 'LATIHAN STROKE', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.043', 'LATIHAN SUARA', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.044', 'LATIHAN VERTIGO', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.045', 'LATIHAN VOKASIONAL', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.046', 'LOTCA', 1027000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.047', 'LYMPHASTIM', 1027000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.048', 'M W D', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.049', 'MAGNETO THERAPY UNIT', 103000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.050', 'MANUAL MANIPULASI', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.051', 'MANUAL MUSCLE TEST', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.052', 'MASAGE', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.053', 'NEBULIZER ULTRASONIC MOBILE', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.054', 'OVERHEAD PULLEY', 64000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.055', 'PARAFINE BATH', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.056', 'PEAK FLOW METER', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.057', 'PEMASANGAN NEUROMUSCULAR TAPPING', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.058', 'PEMERIKSAAN EVALUASI ORTESA', 223000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.059', 'PEMERIKSAAN EVALUASI PROTESA', 223000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.060', 'PEMERIKSAAN UJI FUNGSI KARDIORESPIRASI', 223000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.061', 'PEMERIKSAAN UJI KEKUATAN OTOT', 223000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.062', 'PEMERIKSAAN UJI KEMAMPUAN FUNGSIONAL DAN PERAWATAN', 223000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.063', 'PEMERIKSAAN / SKRINING MASALAH SOSIAL', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.064', 'POSTURAL DRAINAGE', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.065', 'PRESSO/COMPRESSI EXTREMITER', 103000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.066', 'QUADRICEP EXERCISE', 64000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.067', 'REHAB JANTUNG', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.068', 'REHAB PARU', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.069', 'REHABILITASI STROKE', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.070', 'S W D', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.071', 'SENAM ASMA', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.072', 'SENAM BEDAH CAESAR', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.073', 'SENAM HAMIL', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.074', 'SENAM NIFAS', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.075', 'SENSORY RESENSITIZATION', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.076', 'SNOOZELLEN ROOM THERAPHY', 113000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.077', 'STEP LADDER', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.078', 'TENS/ES/FARADISASI', 56000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.079', 'TERAPI CBT (COGNITIVE BEHAVIOR THERAPY)', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.080', 'TERAPI CTS', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.081', 'TERAPI MEMORI', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.082', 'TERAPI OKUPASI', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.083', 'TERAPI PERILAKU', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.084', 'TERAPI VOCASTIM', 446000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.085', 'TERAPI WICARA', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.086', 'TEST KECERDASAN/PERILAKU', 94000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.087', 'THUMP SPLINT', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.088', 'TILT TABLE', 74000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.089', 'TRAKSI CERVICAL LISTRIK', 103000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.090', 'TRAKSI PELVIS LISTRIK', 103000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.091', 'TREADMILL W./ STRESS TEST ECG', 136000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.092', 'U S D', 94000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.093', 'WHIRL POLL', 94000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.094', 'WHOLEBODY TRAINING', 94000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.095', 'PEMERIKSAAN ORTOTIK PROSTETIK', 223000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.096', 'PENGUKURAN ALAT ORTOSIS', 223000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.097', 'PENGUKURAN ALAT PROSTESIS', 223000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.098', 'PEMASANGAN DAN LATIHAN PENGGUNAAN ORTOSIS', 446000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.099', 'PEMASANGAN DAN LATIHAN PENGGUNAAN PROSTESIS', 446000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.100', 'EVALUASI PEMAKAIAN ORTOSIS', 535000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.101', 'EVALUASI PEMAKAIAN PROSTESIS', 535000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.102', 'JASA KONSULTASI', 100000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.103', 'INJEKSI PROLOTERAPI II', 223000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.104', 'INJEKSI PROLOTERAPI III', 446000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.105', 'TERAPI TRAKSI CERVICAL', 49000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.106', 'TERAPI LUMBAL', 49000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.107', 'TERAPI SPINAL DECOMPRESSION', 124000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.108', 'TERAPI HIGH INTENSITY LASER', 446000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.109', 'TERAPI LOW INTENSITY LASER', 49000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.110', 'TERAPI PNEUMATIC COMPRESSION', 124000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.111', 'TERAPI VITALSTIM', 124000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RHM.112', 'TERAPI EMSELA', 1027000, 'TINDAKAN/PEMERIKSAAN REHABILITASI MEDIK'), +('R.RTP.001', 'ALAT BANTU LAIN / BOLUS / WAX', 390000, 'TINDAKAN/PEMERIKSAAN RADIOTERAPI'), +('R.RTP.002', 'ALAT BANTU MOULDING BLOK INDIVIDUAL', 1676000, 'TINDAKAN/PEMERIKSAAN RADIOTERAPI'), +('R.RTP.003', 'ALAT BANTU MOULDING KONTUR', 449000, 'TINDAKAN/PEMERIKSAAN RADIOTERAPI'), +('R.RTP.004', 'ALAT BANTU MOULDING MASKER BESAR', 1676000, 'TINDAKAN/PEMERIKSAAN RADIOTERAPI'), +('R.RTP.005', 'ALAT BANTU MOULDING MASKER KECIL', 1214000, 'TINDAKAN/PEMERIKSAAN RADIOTERAPI'), +('R.RTP.006', 'C-ARM BRACHY TERAPI < 3 JAM', 390000, 'TINDAKAN/PEMERIKSAAN RADIOTERAPI'), +('R.RTP.007', 'C-ARM BRACHY TERAPI > 3 JAM', 449000, 'TINDAKAN/PEMERIKSAAN RADIOTERAPI'), +('R.RTP.008', 'CT SIMULATOR DENGAN KONTRAS', 1457000, 'TINDAKAN/PEMERIKSAAN RADIOTERAPI'), +('R.RTP.009', 'CT SIMULATOR TANPA KONTRAS', 1214000, 'TINDAKAN/PEMERIKSAAN RADIOTERAPI'), +('R.RTP.010', 'EKSTERNAL RADIASI COBALT - 60', 674000, 'TINDAKAN/PEMERIKSAAN RADIOTERAPI'), +('R.RTP.011', 'EKSTERNAL RADIASI COBALT - 60 PALIATIF', 809000, 'TINDAKAN/PEMERIKSAAN RADIOTERAPI'), +('R.RTP.012', 'EKSTERNAL RADIASI LINAC', 1214000, 'TINDAKAN/PEMERIKSAAN RADIOTERAPI'), +('R.RTP.013', 'PEMASANGAN APLIKASI LENGKAP', 2849000, 'TINDAKAN/PEMERIKSAAN RADIOTERAPI'), +('R.RTP.014', 'PEMASANGAN APLIKASI TIDAK LENGKAP', 1457000, 'TINDAKAN/PEMERIKSAAN RADIOTERAPI'), +('R.RTP.015', 'RADIOAKTIF IRIDIUM - 192', 674000, 'TINDAKAN/PEMERIKSAAN RADIOTERAPI'), +('R.RTP.016', 'RADIOTERAPI RINGAN', 2849000, 'TINDAKAN/PEMERIKSAAN RADIOTERAPI'), +('R.RTP.017', 'RAWAT LUKA SINAR', 130000, 'TINDAKAN/PEMERIKSAAN RADIOTERAPI'), +('R.RTP.018', 'SIMULATOR DENGAN KONTRAS', 809000, 'TINDAKAN/PEMERIKSAAN RADIOTERAPI'), +('R.RTP.019', 'SIMULATOR TANPA KONTRAS', 674000, 'TINDAKAN/PEMERIKSAAN RADIOTERAPI'), +('R.RTP.020', 'TPS ( TREATMENT PLANNING SYTEM ) 2D', 390000, 'TINDAKAN/PEMERIKSAAN RADIOTERAPI'), +('R.RTP.021', 'TPS ( TREATMENT PLANNING SYTEM ) 3D', 674000, 'TINDAKAN/PEMERIKSAAN RADIOTERAPI'), +('R.RTP.022', 'TPS ( TREATMENT PLANNING SYTEM ) KONFORMAL', 809000, 'TINDAKAN/PEMERIKSAAN RADIOTERAPI'), +('R.RTP.023', 'TREATMENT PLANNING SYSTEM (TPS) IMRT', 1457000, 'TINDAKAN/PEMERIKSAAN RADIOTERAPI'), +('R.RTP.024', 'JASA KONSULTASI', 100000, 'TINDAKAN/PEMERIKSAAN RADIOTERAPI'), +('R.TDE.001', 'AMBULATORY CARDIAC MONITORING', 372000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.002', 'AUTOREFRAKTOMETRI', 103000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.003', 'CARDIAC MONITOR - PER HARI', 124000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.004', 'COLOR VISION STUDY - 9506', 179000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.005', 'COMPREHENSIVE EYE EXAMINATION - 9502', 179000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.006', 'CONTINUOUS POSITIVE AIRWAY PRESSURE (CIPAP) - 93.90', 535000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.007', 'CYCLOPLEGI', 310000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.008', 'DARK ADAPTATION STUDY - 9507', 179000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.009', 'DISPENSING OF OTHER LOW VISION AIDS - 9533', 642000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.010', 'DRY EYE EXAMINATION', 179000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.011', 'E E C P', 1916000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.012', 'ECHOCARDIOGRAFI', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.013', 'ECHOCARDIOGRAFI BUBBLE TEST', 642000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.014', 'ECHOCARDIOGRAFI DOPPLER VASCULER', 642000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.015', 'EEG (ELECTROENCEFALOGRAFI)', 924000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.016', 'EKG', 86000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.017', 'ELECTROCARDIOGRAM', 149000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.018', 'ELECTROMYOGRAM OF EYE [EMG] - 9525', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.019', 'ELECTRONYSTAGMOGRAM [ENG] - 9524', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.020', 'ELECTRO-OCULOGRAM [EOG] - 9522', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.021', 'ELECTRORETINOGRAM [ERG] - 9521', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.022', 'EMG ) ELECTROMYOGRAFI > 6 OTOT', 1109000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.023', 'EMG 1 - 6 OTOT + TIDAKAN LAIN', 1109000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.024', 'EMG ELECTROMYOGRAFI 1 - 6 OTOT', 924000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.025', 'EMG LEBIH 6 OTOT + TIDAKAN LAIN', 1109000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'); +INSERT INTO `tarif_rs` (`ID_Tarif_RS`, `Tindakan_RS`, `Tarif_RS`, `Kategori_RS`) VALUES +('R.TDE.026', 'EXTENDED OPHTHALMOLOGIC WORK-UP - 9503', 215000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.027', 'EYE EXAMINATION UNDER ANESTHESIA - 9504', 1109000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.028', 'EYE EXAMINATION, NOT OTHERWISE SPECIFIED - 9509', 215000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.029', 'FITTING AND DISPENSING OF SPECTACLES - 9531', 310000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.030', 'FLUORESCEIN ANGIOGRAPHY OR ANGIOSCOPY OF EYE - 9512', 1109000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.031', 'FUNDUS PHOTOGRAPHY - 9511', 310000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.032', 'INFANT WARMER - PER HARI', 50000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.033', 'INFUSION PUMP ANAK - PER HARI', 50000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.034', 'INFUSION PUMP DEWASA - PER HARI', 50000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.035', 'KERATOMETRI', 103000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.036', 'LENSOMETRI', 103000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.037', 'LIMITED EYE EXAMINATION - 9501', 103000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.038', 'MANTOUX TEST - ANAK', 50000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.039', 'MONITORING SaO2 (OXYMETRI)', 86000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.040', 'MONITORING TTV ATAU CARDIAC - PER HARI', 50000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.041', 'OCT POSTERIOR', 535000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.042', 'OCULAR MOTILITY STUDY - 9515', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.043', 'OCULAR PROSTHETICS - 9534', 535000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.044', 'OPHTHALMOLOGIC COUNSELING AND INSTRUCTION - 9536', 535000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.045', 'ORTHOPTIC TRAINING - 9535', 642000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.046', 'P32 AND OTHER TRACER STUDIES OF EYE - 9516', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.047', 'PEMAKAIAN ANUSKOPI', 50000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.048', 'PEMAKAIAN INFUSION PUMP - PER HARI', 149000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.049', 'PEMAKAIAN INKUBATOR', 50000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.050', 'PEMAKAIAN MONITOR TINDAKAN - PER HARI', 86000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.051', 'PEMAKAIAN PEAK FLOW', 50000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.052', 'PEMAKAIAN VENTILATOR MEKANIK - PER HARI', 906000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.053', 'PEMAKAIAN WARM FLUID', 50000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.054', 'PEMANTAUAN VITAL SIGN - HARI', 86000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.055', 'PEMASANGAN BANDAGE PELVIS', 60000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.056', 'PEMASANGAN BANDAGE WOUND', 60000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.057', 'PRESCRIPTION, FITTING, AND DISPENSING OF CONT - 9532', 642000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.058', 'RETINOMETRI', 103000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.059', 'STREAK RETINOSKOPI', 310000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.060', 'SYNOPTOPHORE', 310000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.061', 'SYRINGE PUMP - PER HARI', 50000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.062', 'SYRINGE PUMP ANAK - PER HARI', 50000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.063', 'SYRINGE PUMP DEWASA - PER HARI', 50000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.064', 'ULTRASOUND STUDY OF EYE - 9513', 215000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.066', 'USG 4 D', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.068', 'VISUAL EVOKED POTENTIAL [VEP] - 9523', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.069', 'VISUAL FIELD STUDY - 9505', 310000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.070', 'ABLB (AUDIOMETRY) - 95.41', 372000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.071', 'ACROMIO-CLAVICULAR JOINT USG', 258000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.072', 'AIDED ASSR (OTHER AUDITORY AND VESTIBULAR FUNCTION\nTESTS) - 95.46', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.073', 'AIDED AUDIOMETRY (OTHER AUDITORY AND VESTIBULAR\nFUNCTION TESTS) - 95.46', 215000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.074', 'ASSR (OTHER AUDITORY AND VESTIBULAR FUNCTION TESTS) -\n95.46', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.075', 'AUDIOMETRI NADA MURNI / AUDIOMETRY - 95.41', 215000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.076', 'AUDIOMETRI TES GLISEROL / AUDIOMETRY (WITH GLISEROL) -\n95.41', 215000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.077', 'AUDIOMETRI TUTUR (SPEECH AUDIOMETRY) - 95.41', 258000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.078', 'AUDIOMETRI TUTUR DALAM BISING (AUDIOMETRY OF SPEECH\nIN NOISE) - 95.41', 372000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.079', 'AUDITORY CORTICAL TESTING (OTHER AUDITORY AND\nVESTIBULAR FUNCTION TESTS) - 95.46', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.080', 'BAKER?S CYST USG', 258000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.081', 'BALLON TEST OCCLUSION', 3311000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.082', 'BEHAVIORAL OBSERVATION AUDIOMETRY (OTHER AUDITORY\nAND VESTIBULAR FUNCTION TESTS) - 95.46', 215000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.083', 'BERA (OTHER AUDITORY AND VESTIBULAR FUNCTION TESTS) -\n95.46', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.084', 'BLINK REFLEX.', 310000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.085', 'BRAINSTEM AUDITORY EVOKED POTENTIAL (BAEP).', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.086', 'BRONKODILATOR TES - 89,383', 72000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.087', 'CAROTID DOPLER', 3311000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.088', 'CARPAL TUNNEL SYNDROME USG', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.089', 'CENTRAL MOTOR CONDUCTION TIME (CMCT)', 103000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.090', 'CONDITIONED ORIENTATION REFLEX (OTHER AUDITORY AND\nVESTIBULAR FUNCTION TESTS) - 95.46', 215000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.091', 'CONDITIONED PLAY AUDIOMETRY (OTHER AUDITORY AND\nVESTIBULAR FUNCTION TESTS) - 95.46', 372000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.092', 'CRITICAL CARE ULTRASOUND - 88.72', 1109000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.093', 'DE QUERVAIN SYNDROME USG', 258000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.094', 'DERMOSCOPY - 86.19', 103000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.095', 'DESENSITIZATION - 99.12', 179000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.096', 'DOPPLER VERTEBRALIS', 3311000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.097', 'DUPPLEX PERIFER', 3311000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.098', 'EABR (OTHER AUDITORY AND VESTIBULAR FUNCTION TESTS) -\n95.46', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.099', 'ECG - 89.52', 124000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.100', 'EEG (ICU/HCU)', 179000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.101', 'EEG CHALLENGE DIAZEPAM', 179000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.102', 'EEG INTRACORTICAL (ELECTRO CORTICO GRAPHY)', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.103', 'EEG INTRACRANIAL (LONG TERM)', 215000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.104', 'EEG MOBILE', 1331000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.105', 'EEG PREMEDIKASI', 1331000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.106', 'EEG RUTIN', 1331000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.107', 'EEG SLEEP DEPRIVASI', 124000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.108', 'EEG WADA TEST', 179000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.109', 'EKOKARDIOGRAFI TRANSESOFAGEAL (TEE) DENGAN ANESTESI\nUMUM - 88.72', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.110', 'EKOKARDIOGRAFI TRANSESOFAGEAL (TEE) LANJUT - 88.72', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.111', 'EKOKARDIOGRAFI TRANSESOFAGEAL (TEE) LANJUT + BUBBLE\nTEST - 88.72', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.112', 'EKOKARDIOGRAFI TRANSESOFAGEAL (TEE) PADA PROSEDUR\nBEDAH/NON BEDAH - 88.72', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.113', 'EKOKARDIOGRAFI TRANSESOFAGUS (TEE) DENGAN ANESTESI\nUMUM - 88.72', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.114', 'EKOKARDIOGRAFI TRANSESOFAGUS (TEE) LANJUT - 88.72', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.115', 'EKOKARDIOGRAFI TRANSESOFAGUS (TEE) LANJUT + BUBBLE -\n88.72', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.116', 'EKOKARDIOGRAFI TRANSESOFAGUS (TEE) PADA PROSEDUR\nINTERVENSI BEDAH/NON BEDAH - 88.72', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.117', 'EKOKARDIOGRAFI TRANSTORAKAL (TTE) DENGAN BUBBLE TEST -\n88.72', 924000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.118', 'EKOKARDIOGRAFI TRANSTORAKAL (TTE) DENGAN KONTRAS\n(NON-BUBBLE) - 88.72', 924000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.119', 'EKOKARDIOGRAFI TRANSTORAKAL (TTE) DENGAN KONTRAS\n(NON-BUBBLE) - 88.72', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.120', 'EKOKARDIOGRAFI TRANSTORAKAL (TTE) LANJUT (STRAIN / 3D/\nEVALUASI RV) - 88.72', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.121', 'EKOKARDIOGRAFI TRANSTORAKAL (TTE) LANJUT (STRAIN / 3D/\nEVALUASI RV) - 88.72', 924000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.122', 'EKOKARDIOGRAFI TRANSTORAKAL (TTE) PADA PROSEDUR\nINTERVENSI BEDAH/NON BEDAH - 88.72', 924000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.123', 'EKOKARDIOGRAFI TRANSTORAKAL (TTE) PADA PROSEDUR\nINTERVENSI NON BEDAH - 88.72', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.124', 'ELECTROCOCHLEOGRAPHY - 20.31', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.125', 'ELECTROMYOGRAPHY (EMG) 1 EKSTREMITAS DENGAN NEEDLE.', 86000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.126', 'ELECTROMYOGRAPHY (EMG) 2 EKSTREMITAS DENGAN NEEDLE.', 86000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.127', 'ELECTROMYOGRAPHY (EMG) 3 EKSTREMITAS DENGAN NEEDLE.', 103000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.128', 'ELECTROMYOGRAPHY (EMG) BULBAR DENGAN NEEDLE.', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.129', 'ELECTROMYOGRAPHY (EMG) DIAFRAGMA DENGAN NEEDLE.', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.130', 'ELECTROMYOGRAPHY (EMG) FASIALIS DENGAN NEEDLE.', 103000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.131', 'ELECTROMYOGRAPHY (EMG) RECTUM DENGAN NEEDLE.', 103000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.132', 'ELECTROMYOGRAPHY (EMG) TRUNKAL DENGAN NEEDLE.', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.133', 'ELECTRONEUROGRAPHY (ENOG) FASIALIS.', 310000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.134', 'ELECTRONYSTAGMOGRAM [ENG] - 95.24', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.135', 'EUSTACHIAN TUBE FUCTION TEST (AUDIOMETRY) - 95.41', 215000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.136', 'EXERCISE ABI - 89.44', 372000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.137', 'EXERCISE STRESS ECHOCARDIOGRAPHY DENGAN TREADMILL -\n88.72', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.138', 'FASCITIS PLANTARIS USG', 258000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.139', 'FEMORAL ENTRAPMENT USG', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.140', 'FITTING OF HEARING AID - 95.48', 372000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.141', 'FUNCTIONAL TCD', 86000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.142', 'GASTRIC LAVAGE - 96.33', 72000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.143', 'GENE EXPERT - 011.14', 124000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.144', 'GENERAL PHYSICAL EXAMINATION - 89.70', 86000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.145', 'GLENO-HUMERAL USG', 258000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.146', 'GOLFER ELBOW USG', 258000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.147', 'GUYON SYNDROME USG', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.148', 'HOLTER MONITORING - 89.5', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.149', 'H-REFLEX.', 103000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.150', 'ICP CATHETER INSERTION - 01.19', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.151', 'IMPINGEMENT USG', 258000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.152', 'INDUKSI SPUTUM - 786.4', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.153', 'INFUSION PUMP PADA PASIEN KRITIS - 86.06', 103000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.154', 'INTERVIEW AND EVALUATION, DESCRIBED AS COMPREHENSIVE\n- 89.03', 72000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.155', 'INTRA CARDIAC ECHOCARDIOGRAPHY - 37.28', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.156', 'INTRAARTIKULER 1 USG', 258000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.157', 'INTRAARTIKULER 2 USG', 258000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.158', 'INTRADERMAL SKIN TEST - 99.1', 179000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.159', 'JAW REFLEX.', 310000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.160', 'KECEPATAN HANTAR SARAF (KHS) 1 EKSTREMITAS DAN LATE\nRESPONSE.', 535000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.161', 'KECEPATAN HANTAR SARAF (KHS) 1 EKSTREMITAS.', 535000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.162', 'KECEPATAN HANTAR SARAF (KHS) 2 EKSTREMITAS DAN LATE\nRESPONSE.', 179000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.163', 'KECEPATAN HANTAR SARAF (KHS) 2 EKSTREMITAS.', 60000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.164', 'KECEPATAN HANTAR SARAF (KHS) 3 EKSTREMITAS DAN LATE\nRESPONSE.', 103000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.165', 'KECEPATAN HANTAR SARAF (KHS) 3 EKSTREMITAS.', 103000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.166', 'KECEPATAN HANTAR SARAF (KHS) FASIALIS.', 103000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.167', 'KECEPATAN HANTAR SARAF (KHS) FRENIKUS/ DIAFRAGMA.', 372000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.168', 'LATE RESPONSE F-WAVE.', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.169', 'LONG EXERCISE TEST ELECTROMYOGRAPHY.', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.170', 'LONG TERM MONITORING EEG', 1331000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.171', 'LUMBAL PUNKSI', 86000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.172', 'LUMBAL PUNKSI USG GUIDED', 103000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.173', 'LUMBAR DRAINAGE CATHETER INSERTION - 01.19', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.174', 'LUMBAR FACET JOINT INJECTION USG', 372000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.175', 'LUMBAR INTERLAMINAR INJECTION USG', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.176', 'LUMBAR MEDIAN BRANCH INJECTION USG', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.177', 'LUMBAR SYMPATHETIC INJECTION USG', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.178', 'LUMBAR TRANSFORAMINAL INJECTION USG', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.179', 'MAPPING COCHLEAR IMPLAN (OTHER NONOPERATIVE\nPROCEDURES RELATED TO HEARING) - 95.49', 372000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.180', 'MASSETER INHIBITORY REFLEX.', 310000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.181', 'MEXAMETER EXAMINATION - 86.19', 103000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.182', 'MONITORING BRAIN FISIOLOGI INVASIF - 01.19', 3311000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.183', 'MONITORING BRAIN FISIOLOGI NON INVASIF - 01.19', 2299000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.184', 'MONITORING EMBOLIC DETECTION - TCD', 3311000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.185', 'MOTOR EVOKED POTENTIAL (MEP) DENGAN TRANSCRANIAL\nMAGNETIC STIMULATION (TMS) EKSTREMITAS ATAS DAN BAWAH.', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.186', 'MOTOR EVOKED POTENTIAL (MEP) DENGAN TRANSCRANIAL MAGNETIC STIMULATION (TMS) EKSTREMITAS ATAS.', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.187', 'MOTOR EVOKED POTENTIAL (MEP) DENGAN TRANSCRANIAL MAGNETIC STIMULATION (TMS) EKSTREMITAS BAWAH.', 103000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.188', 'NASAL FUNCTION STUDY RHINOMANOMETRY - 89.12', 215000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.189', 'NEBULIZER PADA PASIEN KRITIS - 93.94', 103000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.190', 'NEURAL RESPON THRESHOLD (OTHER AUDITORY AND\nVESTIBULAR FUNCTION TESTS) - 95.46', 372000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.191', 'NMES (NEUROMUSCULAR ELECTRICAL STIMULATION)', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.192', 'NO - FOTO FUNDUS', 258000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.193', 'NO - FUNDUSKOPI', 86000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.194', 'NO - NEUROOPHTALMOLOGY', 103000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.195', 'NO- KAMPIMETRI', 179000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.196', 'OPTIMALISASI CRT GUIDED EKG - V53.31', 372000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.197', 'OSCILOMETRI - 89,382', 535000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.198', 'OTO-ACOUSTIC EMISSION (OTHER AUDITORY AND VESTIBULAR\nFUNCTION TESTS) - 95.46', 215000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.199', 'P300 (OTHER AUDITORY AND VESTIBULAR FUNCTION TESTS) -\n95.46', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.200', 'P300 EVOKED RESPONSE POTENTIAL.', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.201', 'PAIRED-PULSE H-REFLEX.', 310000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.202', 'PEAK FLOW METER (PEF) - 89,382', 72000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.203', 'PEMERIKSAAN AUSPITZ - 91.61', 50000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.204', 'PEMERIKSAAN BASAH - 91.44', 50000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.205', 'PEMERIKSAAN HAPUSAN KULIT - 70.01', 50000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.206', 'PEMERIKSAAN KAARSVLEK - 91.61', 50000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.207', 'PEMERIKSAAN MONOFILAMEN - 92.26', 50000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.208', 'PEMERIKSAAN NO + KAMPIMETRI + FOTO FUNDUS', 179000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.209', 'PENGAMBILAN DAHAK UTK GENE EXPERT - 96.53', 60000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.210', 'PENILAIAN FUNGSI SISTEM SARAF OTONOM (HRV) - 94.08', 50000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.211', 'PERONEAL ENTRAPMENT USG', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.212', 'PHARMACOLOGIC STRESS ECHOCARDIOGRAPHY :\nDOBUTAMIN/ADENOSINE/DIPIRIDAMOLE STRESS ECHOCARDIOGRAPHY - 88.72', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.213', 'PIRIFORMIS SYNDROME USG', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.214', 'PLETHYSMOGRAFI/ABI/TBI - 89.58', 372000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.215', 'POCUS ALIRAN ARTERI DAN VENA ORGAN-ORGAN\nABDOMEN/SPLANCHNIK PADA PASIEN KRITIS - 88.77', 642000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.216', 'POCUS JANTUNG TEE NEONATUS - ANAK PADA PASIEN KRITIS -\n88.72', 642000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.217', 'POCUS JANTUNG TEE 2D DEWASA PADA PASIEN KRITIS - 88.72', 642000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.218', 'POCUS JANTUNG TEE 2D DIAGNOSTIK PASIEN KRITIS - 88.72', 642000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.219', 'POCUS JANTUNG TEE 3D ECHO INTRAPROSEDURAL INTERVENSI\nPADA PASIEN KRITIS - 88.72', 642000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.220', 'POCUS NERVUS OPTICUS - 88.71', 642000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.221', 'POCUS RETROPERITONEAL (RENAL, AORTA, KGB), B-SCAN\nDAN/ATAU REAL TIME PADA PASIEN KRITIS - 88.76', 642000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.222', 'POCUS TRANSCRANIAL DOPPLER (TCD) - 88.71', 642000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.223', 'POPLITEAL ENTRAPMENT USG', 258000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.224', 'PRPP INJECTION USG', 258000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.225', 'PUDENDAL REFLEX SURFACE.', 310000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.226', 'PUDENDAL REFLEX WITH NEEDLE.', 310000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.227', 'RADIOFREKUENS ILUMBOSACRAL USG', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.228', 'RADIOFREKWENSI SERVIKAL USG', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.229', 'REFLEKS STAPEDIUS IPSILATERAL / KONTRALATERAL\n(AUDIOMETRY) - 95.41', 215000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.230', 'REHABILITASI JANTUNG /KALI - 93.36', 215000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.231', 'REPETITIVE NERVE STIMULATION (RNS).', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.232', 'REPROGRAM ICD/CRT - 89.49', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.233', 'REPROGRAM PACEMAKER - 89.46', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.234', 'SACRAL EPIDURAL INJECTION USG', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.235', 'SACRAL TRANSFORAMINAL INJECTION USG', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.236', 'SACROILIAC JOINT DYSFUNCTION USG', 372000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.237', 'SEBUMETER EXAMINATION - 86.19', 103000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.238', 'SEDIAAN BASAH - 91.44', 50000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.239', 'SEDIAAN GIEMSA - 91.65', 50000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.240', 'SEDIAAN GRAM - 91.61', 50000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.241', 'SEDIAAN SCRAPPING ECTOPARASIT - 91.64', 50000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.242', 'SERVIKAL FACET JOINT INJECTION USG', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.243', 'SERVIKAL INTERLAMINAR INJECTION USG', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.244', 'SERVIKAL MEDIAN BRANCH INJECTION USG', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.245', 'SERVIKAL SYMPATHETIC INJECTION USG', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.246', 'SHORT EXERCISE TEST ELECTROMYOGRAPHY.', 103000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.247', 'SHORT LATENCY AFFERENT INHIBITION', 103000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.248', 'SINGLE FIBER ELECTROMYOGRAPHY (SF-EMG) DENGAN\nNEEDLE.', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.249', 'SISI (AUDIOMETRY) - 95.41', 372000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.250', 'SJVO2 CATHETER INSERTION DENGAN USG - 01.19', 642000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.251', 'SJVO2 CATHETER INSERTION TANPA USG - 01.19', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.252', 'SKIN PROVOCATION TEST - 86.19', 179000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.253', 'SMWT DENGAN TELEMETRI - 89.44', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.254', 'SOMATO-SENSORY EVOKED POTENTIAL (SSEP) EKSTREMITAS\nATAS DAN BAWAH.', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.255', 'SOMATO-SENSORY EVOKED POTENTIAL (SSEP) EKSTREMITAS\nATAS.', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.256', 'SOMATO-SENSORY EVOKED POTENTIAL (SSEP) EKSTREMITAS\nBAWAH.', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.257', 'SOMATO-SENSORY EVOKED POTENTIAL (SSEP) PUDENDAL.', 103000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.258', 'STRESS MRI JANTUNG - 88.72', 2759000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.259', 'SUPRA SCAPULAR USG', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.260', 'SURFACE ELECTROMYOGRAPHY 1 CHANNEL.', 535000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.261', 'SURFACE ELECTROMYOGRAPHY 2 CHANNEL.', 179000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.262', 'SURFACE ELECTROMYOGRAPHY 3 CHANNEL.', 103000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.263', 'SYMPATHETIC SKIN RESPONSE', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.264', 'SYRINGE PUMP PADA PASIEN KRITIS - 86.06', 103000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.265', 'TARSAL TUNNEL SYNDROME USG', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.266', 'TCD (TRANSCRANIAL DOPPLER)', 86000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.267', 'TCD (TRANSCRANIAL DOPPLER)', 3311000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.268', 'TCD BUBBLE CONTRAST', 3311000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.269', 'TCD BUBLE CONTRAST', 103000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.270', 'TEE PJB KOMPLEKS DENGAN SEDASI - 88.72', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.271', 'TEE PJB SIMPEL (ASD, VSD, PDA, POST DEVICE CLOSURE)\nDENGAN ANESTESI - 88.72', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.272', 'TEE PJB SIMPEL (ASD, VSD, PDA, POST DEVICE CLOSURE)\nDENGAN SEDASI - 88.72', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.273', 'TEE PJB SIMPEL (ASD, VSD, PDA, POST DEVICE CLOSURE) TANPA\nSEDASI - 88.72', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.274', 'TENDINITIS BICIPITALIS USG', 258000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.275', 'TENDINITIS PATELLA USG', 258000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.276', 'TENNIS ELBOW USG', 258000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.277', 'TERAPI HYPEROSMOLAR - 01.19', 372000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.278', 'TERES MAYOR USG', 258000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.279', 'TEST PROVOKASI BRONCHIAL - 89.390', 535000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.280', 'TEWAMETER EXAMINATION - 86.19', 103000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.281', 'TIBIAL ENTRAPMENT USG', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.282', 'TILT TABLE TEST - 89.59', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.283', 'TILT TABLE TEST WITH STRESS TEST - 89.44', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.284', 'TIMPANOMETRI (AUDIOMETRY) - 95.41', 215000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.285', 'TONE DECAY (AUDIOMETRY) - 95.41', 372000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.286', 'TRANSESOPHAGEAL ECHOCARDIOGRAPHY (TEE) INTRAPROCEDURE INTERVENTION PERKUTAN /BEDAH - 88.73', 3311000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.287', 'TRANSTHORACAL ECHOCARDIOGRAPHY PEDIATRIK KOMPLEK -\n88.72', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.288', 'TRANSTHORACAL ECHOCARDIOGRAPHY PEDIATRIK SIMPLE -\n88.72', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.289', 'TRANSTORAKAL EKOKARDIOGRAFI (TTE) DENGAN BUBBLE TEST -\n88.72', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.290', 'TRANSVENOUS PACEMAKER INSERTION PASIEN KRITIS - 37.78', 924000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.291', 'TRIGGER FINGER USG', 258000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.292', 'TRIGGER POINT USG', 103000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.293', 'TTE PJB ADVANCE (3D, 4D, STRAIN) DENGAN SEDASI - 88.72', 1597000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.294', 'TTE PJB KOMPLEKS DENGAN ANESTESI - 88.72', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.295', 'TTE PJB KOMPLEKS DENGAN SEDASI - 88.72', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.296', 'TTE PJB KOMPLEKS TANPA SEDASI - 88.72', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.297', 'TTE PJB SIMPEL (ASD, VSD, PDA, POST DEVICE CLOSURE)\nDENGAN ANESTESI - 88.72', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.298', 'TTE PJB SIMPEL (ASD, VSD, PDA, POST DEVICE CLOSURE)\nDENGAN SEDASI - 88.72', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.299', 'TTE PJB SIMPEL (ASD, VSD, PDA, POST DEVICE CLOSURE) TANPA\nSEDASI - 88.72', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.300', 'ULTRASOUND GUIDING COMPRESSION THERAPY - 0.03', 1331000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.301', 'USG GUIDE INJEKSI INTRAARTIKULER - 88.79', 535000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.302', 'USG GUIDE INJEKSI STRUKTUR PERIARTIKULER - 88.79', 535000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.303', 'USG PEMBULUH DARAH', 3311000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.304', 'USG TIROID - 88.71', 310000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.305', 'USG TIROID - 88.71', 310000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.306', 'VENTILASI MEKANIK AMBULATOAR - 96.70', 2299000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.307', 'VESTIBULAR EVOKED MYOGENIC POTENSIAL (OTHER AUDITORY\nAND VESTIBULAR FUNCTION TESTS) - 95.46', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.308', 'VESTIBULAR EVOKED MYOGENIC POTENTIAL (VEMP).', 103000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.309', 'VIDEO HEAD IMPULSE TEST (OTHER AUDITORY AND\nVESTIBULAR FUNCTION TESTS) - 95.46', 446000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.310', 'VISUAL EVOKED POTENTIAL (VEP)', 103000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.311', 'VISUAL REINFORCEMENT AUDIOMETRY (OTHER AUDITORY AND\nVESTIBULAR FUNCTION TESTS) - 95.46', 372000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TDE.312', 'TREADMILL', 770000, 'TINDAKAN DIAGNOSTIK ELEKTROMEDIK'), +('R.TNO.0001', 'DIRECT PULP CAPPING PASIEN HANDCAPPED CHILDREN (PER\nGIGI)', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0002', 'EKSTRAKSI GIGI SULUNG DGN INFILTRASI ANASTESI (PER GIGI)', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0003', 'FISSURE SEALANT PASIEN HANDCAPPED CHILDREN (PER GIGI)', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0004', 'PERITONEAL EQUILIBRIUM TEST ( PET )', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0005', 'PULPECTOMI GIGI SULUNG POSTERIOR (PER GIGI) PASIEN', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0006', 'REPOSISI DISLOKASI MANDUBULA SECARA MANUAL', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0007', '[ENDOSCOPIC] POLYPECTOMY OF RECTUM', 6598000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0008', '04.81 BLOK DIAGNOSTIK PADA SARAF PERIFER', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0009', '6 MINUTES WALK TEST', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0011', '83.94 ASPIRASI CAIRAN BURSA', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0015', '9401 ADMINISTRATION OF INTELLIGENCE TEST', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0016', '9402 ADMINISTRATION OF PSYCHOLOGIC TEST', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0017', '9403 CHARACTER ANALYSIS', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0018', '9408 OTHER PSYCHOLOGIC EVALUATION AND TESTING', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0019', '9409 PSYCHOLOGIC MENTAL STATUS DETERMINATION, NOS', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0020', '9411 PSYCHIATRIC MENTAL STATUS DETERMINATION', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0021', '9423 NEUROLEPTIC THERAPY', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0022', '9425 OTHERPSYCHIATRIC DRUG THERAPY', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0023', '9426 SUBCONVULSIVE ELECTROSHOCKTHERAPY', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0024', '9427 OTHER ELECTROSHOCK THERAPY', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0025', '9429 OTHER PSYCHIATRIC SOMATOTHERAPY', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0026', '9432 HYPNOTHERAPY', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0027', '9433 BEHAVIOR THERAPY', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0028', '9436 PLAY PSYCHOTHERAPY', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0029', '9437 EXPLORATORY VERBAL PSYCHOTHERAPY', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0030', '9438 SUPPORTIVE VERBAL PSYCHOTHERAPY', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0031', '9439 OTHER INDIVIDUAL PSYCHOTHERAPY', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0032', '9441 GROUP THERAPY FOR PSYCHOSEXUAL DYSFUNCTION', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0033', '9442 FAMILY THERAPY', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0034', '9443 PSYCHODRAMA', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0035', '9444 OTHER GROUP THERAPY', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0036', 'ABOVE ELBOW CAST', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0037', 'ABR SWT', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0038', 'ABR UM', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0039', 'ABSES DOUGLAS - PUNKSI, DRAIN, LA', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0040', 'ACUPUNCTURE FOR ANESTHESIA', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0041', 'ACUTE PAIN SERVICE', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0042', 'AFF DRAIN / WSD / CVC', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0043', 'AFF DRAIN ORBITA', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0044', 'AFF JAHITAN', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0045', 'AFF JAHITAN KORNEO SKLERA', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0046', 'AFF JAHITAN ORBITA', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0047', 'AFF JAHITAN PALPEBRA', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0048', 'ALERGI SKIN TEST', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0049', 'ALVEOLEKTOMI (PER REGIO)', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0050', 'AMALGAM KLAS I (PER GIGI)', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0051', 'AMALGAM KLAS I PADA PASIEN HANDCAPPED CHILDREN', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0052', 'AMALGAM KLAS II DO/MO (PER GIGI)', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0053', 'AMALGAM KLAS II DO/MO PADA PASIEN HANDCAPPED\nCHILDREN', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0054', 'AMALGAM KLS II MOD (PER GIGI)', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0055', 'AMALGAM KLS II MOD PADA PASIEN HANDCAPPED CHILDREN', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0056', 'AMBIL DARAH VENA PD ANAK-ANAK', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0057', 'ANAL FISTULECTOMY', 3818000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0058', 'ANAL FISTULOTOMY', 3818000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0059', 'ANEL', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0060', 'ANESTESI LUAR OK PROSEDUR DIAGNOSTIK RESIKO BESAR', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0061', 'ANESTESI LUAR OK PROSEDUR DIAGNOSTIK RESIKO KECIL', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0062', 'ANESTESI LUAR OK PROSEDUR DIAGNOSTIK RESIKO SEDANG', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0063', 'ANESTESI LUAR OK PROSEDUR INTERVENSIONAL KHUSUS', 2652000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0064', 'ANESTESI LUAR OK PROSEDUR INTERVENSIONAL RESIKO\nBESAR', 2210000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0065', 'ANESTESI LUAR OK PROSEDUR INTERVENSIONAL RESIKO KECIL', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0066', 'ANESTESI LUAR OK PROSEDUR INTERVENSIONAL RESIKO\nSEDANG', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0067', 'ANGIOGRAFI ARTERI/VENA PERIFER', 3818000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0068', 'ANGIOPLASTI ARTERI/VENA PERIFER', 4582000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0069', 'ANGIOPLASTY DAN STENTING PADA AV SHUNT STENOSIS', 7918000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0070', 'ANGKAT ARCH BARR', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0071', 'ANGKAT DRAIN', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0072', 'ANGKAT DRAIN DI WAJAH', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0073', 'ANGKAT DRAIN DILUARWAJAH', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0074', 'ANGKAT DRAIN ORBITA', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0075', 'ANGKAT IMF', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0076', 'ANGKAT INTER DENTAL WIRING (IDW) (PER RAHANG)', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0077', 'ANGKAT INTER OSEUS WIRING (IOW) (PER RAHANG)', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0078', 'ANGKAT JAHITAN : >20 JAHITAN', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0079', 'ANGKAT JAHITAN : 01 - 05 JAHITAN', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0080', 'ANGKAT JAHITAN : 01 - 10 JAHITAN', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0081', 'ANGKAT JAHITAN : 01 - 20 JAHITAN', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0082', 'ANGKAT JAHITAN BOLA MATA', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0083', 'ANGKAT JAHITAN CONJUNTIVA / CORNEA', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0084', 'ANGKAT JAHITAN DILUAR WAJAH : > 20 JAHITAN', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0085', 'ANGKAT JAHITAN DILUAR WAJAH : 01 - 05 JAHITAN', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0086', 'ANGKAT JAHITAN DILUAR WAJAH : 01 - 10 JAHITAN', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0087', 'ANGKAT JAHITAN DILUAR WAJAH : 01 - 20 JAHITAN', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0088', 'ANGKAT JAHITAN PALPEBRA', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0089', 'ANGKAT JAHITAN POST OPERASI (PER RAHANG)', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0090', 'ANGKAT JAHITAN STSG : > 20 JAHITAN', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0091', 'ANGKAT JAHITAN STSG : 01 - 05 JAHITAN', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0092', 'ANGKAT JAHITAN STSG : 01 - 10 JAHITAN', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0093', 'ANGKAT JAHITAN STSG : 01 - 20 JAHITAN', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0094', 'ANGKAT JAHITAN WAJAH : > 20 JAHITAN', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0095', 'ANGKAT JAHITAN WAJAH : 01 - 05 JAHITAN', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0096', 'ANGKAT JAHITAN WAJAH : 01 - 10 JAHITAN', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0097', 'ANGKAT JAHITAN WAJAH : 01 - 20 JAHITAN', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0098', 'ANGKAT PERIODONTAL PACK', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0099', 'ANGKAT TAMPON HIDUNG', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0100', 'ANGKAT WIRE', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0101', 'ANOSCOPY', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0102', 'ANTENATAL CARE', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0103', 'ANUSKOPI/PROKTOSKOPI RIGID', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0104', 'APEK RESEKSI (PER GIGI)', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0105', 'APEKSIFIKASI (PER GIGI)', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0106', 'APEKSIFIKASI PADA PASIEN HANDCAPPED CHILDREN (PER\nGIGI)', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0107', 'APIKOEKTOMI (PER GIGI)', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0108', 'APT.DOWNEY TEST', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0109', 'ARTERIOGRAFI', 5498000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0110', 'ASPIRASI ABSES HATI', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0111', 'ASPIRATION OF THYROID FIELD', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0112', 'ASSESMEN DAN PENYUSUNAN RENCANA TERAPI', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0113', 'ASSESMENT NEUROBEHAVIOR', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0114', 'ASSESMENT PSIKOGERIATRI', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0115', 'ASSESSMENT BEDAH KOSMETIK', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0116', 'ASSESSMENT GERIATRI KOMPREHENSIF', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0117', 'ASSESSMENT KAKI DIABETIK', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0118', 'ATROPINISASI', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0119', 'AUDIOMETRI DNG / TANPA PEM. TAMBAHAN', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0120', 'AUDITORY STEADY STATE RESPONSE (ASSR)', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0121', 'BACK SLAB', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0122', 'BED SITE MONITOR SELAMA PERAWATAN', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0123', 'BEDAH LASER SEDERHANA BESAR', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0124', 'BEDAH LASER SEDERHANA KECIL', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0125', 'BEDAH LASER SEDERHANA SEDANG', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0126', 'BELLOQUE TAMPON', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0127', 'BELOW ELBOW CAST', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0128', 'BELOW KNEE (ANAK)', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0129', 'BELOW KNEE (DEWASA)', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0130', 'BELOW KNEE CAST', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0131', 'BGA', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0132', 'BIER\'S BLOCK', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0133', 'BILASAN BRONKUS', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0134', 'BIOMATIKLIPOMETRI', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0135', 'BIOMETRI + KERATOMETRI', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0136', 'BIOPSI BESAR', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0137', 'BIOPSI EXSISI', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0138', 'BIOPSI GASTER COLON', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0139', 'BIOPSI GINJAL ANAK', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0140', 'BIOPSI GINJAL DEWASA', 2210000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0141', 'BIOPSI HATI / FUNGSI ABSES HATI', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0142', 'BIOPSI KECIL', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0143', 'BIOPSI KULIT', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0144', 'BIOPSI LIVER', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0145', 'BIOPSI PARU', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0146', 'BIOPSI REKTUM', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0147', 'BIOPSI SEDANG', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0148', 'BIOPSI SERVIKS', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0149', 'BIOPSY OF ABDOMINAL WALL OR UMBILICUS', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0150', 'BIOPSY OF ANUS', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0151', 'BIOPSY OF PERIANAL TISSUE', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0152', 'BIOPSY OF PERIRECTAL TISSUE', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0153', 'BLANKET ROLL PENDINGIN / PEMANAS - PER HARI', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0154', 'BLEACING EKTERNAL', 3818000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0155', 'BLEACING INTERNAL', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0156', 'BOA, VIRA, TYMPAND', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0157', 'BODY JACKET - ANAK', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0158', 'BODY JACKET - DEWASA', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0159', 'BODYPLETHYSMOGRAPHY', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0160', 'BONE MARROW ASPIRATION (BMA)', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0161', 'BONE MARROW PUNCTURE (BMP)', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0162', 'BONGKAR DENTURE (GTC) (PER RAHANG)', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0163', 'BONGKAR RESTORASI (PER GIGI)', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0164', 'BONGKAR RESTORASI PASIEN HANDCAPPED CHILDREN (PER\nGIGI)', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0165', 'BREAST SIZING', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0166', 'BRONCHIAL TOILET - PER HARI', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0167', 'BRONCHOSCOPY', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0168', 'BRONKODILATOR TES', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0169', 'BUKA GIPS - ANAK', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0170', 'BUKA GIPS - DEWASA', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0171', 'BUSINASI ANUS / REKTUM', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0172', 'BUSINASI HURST', 3818000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0174', 'BWCK DIGITAL', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0175', 'CARDIOPULMONARY RESUSCITATION ( TERMASUK INTUBASI)', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0176', 'CATHETER UMBLICALIS', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0177', 'CEMENTING (CROWN & BRIDGE & PIN & RESTORASI YANG\nLEPAS)', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0178', 'CEPHALOMETRY ASSESSMENT', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0179', 'CETAK (SINGLE IPRESSION)', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0180', 'CETAK HIDUNG', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0181', 'CHARACTER ANALYSIS - 9403', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0182', 'CHEMICAL CAUTER KULIT (TCA)', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0183', 'CHEMICAL PEELING (AHA)', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0184', 'CHEMICAL RESURFASING (TCA)', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0187', 'CHEST FISIOTERAPI', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0188', 'CHEST TUBE INSERTION', 2210000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0190', 'CHLORETHYL SPRY', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0191', 'CIRCUMSISI ANAK', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0192', 'CIRCUMSISI DEWASA', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0193', 'CISTOTOMY', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0194', 'CLOSED (PERCUTANEOUS) [NEEDLE] BIOPSY OF LIVER', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0195', 'CLOSED [ENDOSCOPIC] BIOPSY OF ESOPHAGUS', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0196', 'CLOSED [ENDOSCOPIC] BIOPSY OF LARGE INTESTINE', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0197', 'CLOSED [ENDOSCOPIC] BIOPSY OF RECTUM', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0198', 'CLOSED [ENDOSCOPIC] BIOPSY OF SMALL INTESTINE', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0199', 'CLOSED [ENDOSCOPIC] BIOPSY OF STOMACH', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0200', 'CLOSED PERCUTANEUS NEEDLE BIOPSY OF THYROID GLAND', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0201', 'CO ANALYZER', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0202', 'COLAR & CUP', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0203', 'COLONOSCOPI', 4582000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0204', 'CONTOURING PER RAHANG', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0205', 'CONTRAST SENSITIVITY', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0206', 'COOLING TERAPHY SELAMA PERAWATAN', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0207', 'CORSET - ANAK', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0208', 'CORSET - DEWASA', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0209', 'COUTERISASI KOMPLEK', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0210', 'COUTERISASI SEDERHANA', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0211', 'CPR - PER 30 MENIT', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0212', 'CPX', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0213', 'CRANIAL PUNKSI', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0214', 'CROSS INSISI', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0215', 'CRYO COLPOSCOPY', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0216', 'CRYO SURGERY', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0217', 'CUKUR CILIA', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0218', 'DARK FIELD MOCROKOP', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0219', 'DC SHOCK - CARDIOVERSI', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0220', 'DEFIBRILASI', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0221', 'DEKTOSIFIKASI LAMBUNG / KULIT', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0222', 'DERMABRASI', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0223', 'DESENSITISASI', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0224', 'DEVITAL PULPOTOMI / MUMIFIKASI (PER GIGI)', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0225', 'DEVITAL PULPOTOMI / MUMIFIKASI PASIEN HANDCAPPED\nCHILDREN', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0226', 'DIAGNOSTIC ULTRASOUND OF ABDOMEN AND\nRETROPERITONE', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0227', 'DIGITAL EXAMINATION OF ENTEROSTOMY STOMA', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0228', 'DIGITAL EXAMINATION OF RECTUM', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0229', 'DILATACT PHYMOHSIS', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0230', 'DILATASI', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0231', 'DILATION OF ANAL SPHINCTER', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0232', 'DILATION OF ESOPHAGUS', 3182000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0233', 'DILATION OF RECTUM', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0234', 'DIRECT PULP CAPPING (PER GIGI)', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0235', 'DIRECT PULP CAPPING PASIEN HANDCAPPED CHILDREN (PER\nGIGI)', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0236', 'DORSUMSISI ANAK', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0237', 'DORSUMSISI DEWASA', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0238', 'DOUBLE LUMEN TUBE INSERTION', 2652000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0239', 'DRAINAGE ABSES HATI', 2652000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0240', 'DRAINASE', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0241', 'DRAINASE SEROMA SKIN GRAFTING', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0242', 'DUNLOP TRAKSI', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0243', 'E C T ( 1 PAKET )', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0244', 'EAR PIERCING PASCALOBULOPLASTY', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0245', 'ECG (MDR TB)', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0246', 'EGD DENGAN POLIPEKTOMI KECIL', 5498000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0247', 'EGD DENGAN POLIPEKTOMI SEDANG', 6598000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0248', 'EKSISI / EKSTERPASI BESAR', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0249', 'EKSISI / EKSTERPASI KECIL', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0250', 'EKSISI / EKSTERPASI SEDANG', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0251', 'EKSISI OPERKULUM / OPERKULEKTOMI (PER GIGI)', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0252', 'EKSISIONAL BIOPSI', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0253', 'EKSTERPASI - KULIT', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0254', 'EKSTERPASI CORPUS ALIENUM CONJUNCTIVA / CORNEA', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0255', 'EKSTERPASI LITHIASIS / GRANULOMA', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0256', 'EKSTERPASI POLIP', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0257', 'EKSTIRPASI CORPUS ALIENUM', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0258', 'EKSTIRPASI EPULIS (PER REGIO)', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0259', 'EKSTIRPASI FIBROMA (PER REGIO)', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0260', 'EKSTIRPASI KISTA RADIKULARIS (PER GIGI)', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0261', 'EKSTIRPASI MUKOKEL (PER MUKOKEL)', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0262', 'EKSTIRPASI ODONTOMA/OSTEOMA/TORUS (PER REGIO)', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0263', 'EKSTRAKSI CORPUS HIDUNG', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0264', 'EKSTRAKSI CORPUS MATA', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0265', 'EKSTRAKSI CORPUS PADA OTOT/JARINGAN', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0266', 'EKSTRAKSI GIGI PERMANEN DENGAN PENYULIT (PER GIGI)', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0267', 'EKSTRAKSI GIGI PERMANEN TANPA PENYULIT (PER GIGI)', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0268', 'EKSTRAKSI GIGI SULUNG DGN INFILTRASI ANASTESI (PER GIGI)', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0269', 'EKSTRAKSI GIGI SULUNG DGN TOPIKAL ANASTESI (PER GIGI)', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0270', 'EKSTRAKSI KORPUS ALIENUM THT DERAJAT 1', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0271', 'EKSTRAKSI KORPUS ALIENUM THT DERAJAT 2', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0272', 'EKSTRAKSI KUKU (ROSERPLASTY)', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0273', 'EKSTRAKSI PREMATUR GIGI SULUNG (DIRUANG BAYI) (PER\nGIGI)', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0274', 'EKSTUBASI ENDOTRAKEA', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0275', 'ELASTIC BANDAGE', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0276', 'ELIMINASI RACUN PADA INTOKSIKASI', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0277', 'ENDO INTRAKANAL ANTERIOR (PER GIGI)', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0278', 'ENDO INTRAKANAL ANTERIOR PASIEN HANDCAPPED\nCHILDREN', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0279', 'ENDO INTRAKANAL POSTERIOR (PER GIGI)', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0280', 'ENDO INTRAKANAL POSTERIOR PASIEN HANDCAPPED\nCHILDREN', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0281', 'ENDOSCOPIC CONTROL OF GASTRIC OR DUODENAL BLEEDING', 6598000, 'TINDAKAN NON OPERATIF'); +INSERT INTO `tarif_rs` (`ID_Tarif_RS`, `Tindakan_RS`, `Tarif_RS`, `Kategori_RS`) VALUES +('R.TNO.0282', 'ENDOSCOPIC POLYPECTOMY OF LARGE INTESTINE', 7918000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0283', 'ENDOSCOPIC RETROGRADE CHOLANGIOGRAPHY [ERC]', 9502000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0284', 'ENDOSCOPY OF SMALL INTESTINE THROUGH ARTIFICIAL ST', 3818000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0285', 'ENDOSKOPI', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0286', 'ENDOSKOPI ESOPHAGUS GASTRODUODENOUSCOPY', 3818000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0287', 'ENUKLEASI KISTA RAHANG (PER REGIO)', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0288', 'EPILASI', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0289', 'ERCP DIAGNOSTIK', 9502000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0290', 'ERCP TERAPEUTIK', 9502000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0291', 'ERGOCYCLE / EXCUSICE TEST', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0292', 'ERYTHROCYTAFARESIS', 6598000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0293', 'ESOPHAGEAL MANOMETRY', 5498000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0294', 'ESOPHAGOGASTRODUODENOSCOPY [EGD] WITH CLOSED\nBIOPSI', 3818000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0295', 'EVACUATION OF THROMBOSED HEMORRHOIDS', 2652000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0296', 'EVAKUASI CAIRAN PLEURA (THORACO CENCIS)', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0297', 'EVAKUASI MANUAL SKIBALA/FEKALIT', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0298', 'EVAKUASI PLEURA EFUSI', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0299', 'EVAKUASI-DRAINASE HEMATOM', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0300', 'EVALUASI GRAFT', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0301', 'EVISERASI', 2210000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0302', 'EXCHANGE TRANSFUSION', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0303', 'EXCISION OF HEMORRHOIDS', 2652000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0304', 'EXCOCHLEASI BESAR', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0305', 'EXCOCHLEASI KECIL', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0306', 'EXCOCHLEASI SEDANG', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0307', 'EXPLORASI', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0308', 'EXTUBASI ETT', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0309', 'EYCOCHEASI', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0310', 'F O B', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0311', 'F.N.A.B.', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0312', 'FAAL PARU', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0313', 'FFA', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0314', 'FIBEROPTIK BRONKOSKOPI', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0315', 'FIBROSCAN', 2652000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0316', 'FIKSASI JARI', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0317', 'FIKSASI LUAR HIDUNG', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0318', 'FISIOTERAPI DADA ANAK SELAMA PERAWATAN', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0319', 'FISIOTERAPI DADA PER EPISODE', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0320', 'FISSURE SEALANT (PER GIGI)', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0321', 'FISSURE SEALANT PASIEN HANDCAPPED CHILDREN (PER GIGI)', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0322', 'FITTING LENSA KONTAK', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0323', 'FIXASI FRAKTUR COSTAE', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0324', 'FLEXIBLE SIGMOIDOSCOPY', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0325', 'FLOURESCEIN TEST', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0326', 'FLUROSKOPI', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0327', 'FORCE SLAB', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0328', 'FORCEPS EXTERPASI / VACUM', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0329', 'FOTO FUNDUS', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0330', 'FOTO TERAPI / NB UVB', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0331', 'FOTO TERAPI BESAR - PER HARI', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0332', 'FOTO TERAPI KECIL - PER HARI', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0333', 'FOTO TERAPI SEDANG - PER HARI', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0334', 'FRAKTUR PROS.DENTOALV. DENGAN IDW (PER RAHANG)', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0335', 'FRAKTUR RAHANG REDUKSI TERBUKA +IOW+IDW (PER\nRAHANG)', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0336', 'FRAKTUR RAHANG REDUKSI TERBUKA +IOW+IDW+IMW(RA &\nRB)', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0337', 'FRAKTUR RAHANG REDUKSI TERTUTUP +IDW+IMW (PER\nRAHANG)', 2652000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0338', 'FRAKTUR RAHANG REDUKSI TERTUTUP +IMW (PER RAHANG)', 2210000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0339', 'FRAKTUR SENDI REDUKSI TERTUTUP +IMW+PESAWAT\nMONOBLOK', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0340', 'FRENECTOMY', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0341', 'FULGURASI', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0342', 'FULL CAST CROWN (PER GIGI)', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0343', 'FULL CAST CROWN (PER GIGI) PASIEN HANDCAPPED CHILD', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0344', 'FULL DENTURE 1 RAHANG RA & RB', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0345', 'FULL DENTURE 2 RAHANG RA & RB', 3818000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0346', 'FULL DENTURE,MUKOSA FLABBY/RIDGE DATAR', 5498000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0347', 'FUNDUSKOPI', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0348', 'FUNGSI ASITES', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0349', 'FUNGSI GENU ( SENDI )', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0350', 'GALVANIC IONTOPHORESIS', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0351', 'GANTI DRAIN POST PERAWATAN ABSES', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0352', 'GANTI HAS POST EKTIRPASI KISTA/TUMOR', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0353', 'GANTI KARET ARCH BARR', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0354', 'GANTI TAMPON HIDUNG', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0355', 'GASTRIC COOLING', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0356', 'GASTRIC FREEZING', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0357', 'GASTRIC LAVAGE', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0358', 'GEMELLI SPONTAN, SPONTAN', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0359', 'GEMELLI SPONTAN, TINDAKAN PARABDOMINAL', 2210000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0360', 'GEMELLI SPONTAN, TINDAKAN PERVAGINA', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0361', 'GIGI TIRUAN BERIKUTNYA', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0362', 'GIGI TIRUAN CEKAT PORSELEN (FUSE MENTAL) PER GIGI', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0363', 'GIGI TIRUAN CEKAT PORSELEN ALL CERAMIC (ANTERIOR)', 3818000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0364', 'GIGI TIRUAN CEKAT PORSELEN ALL CERAMIC (POSTERIOR)', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0365', 'GIGI TIRUAN VALPLAST PLUS 1 GIGI', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0366', 'GINGIVAL TIRUAN PER REGIO', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0367', 'GINGIVEKTOMI (PER REGIO)', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0368', 'GINGIVOPLASTI (PER REGIO)', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0369', 'GIPS JARI TANGAN', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0370', 'GIPS SEPATU - ANAK', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0371', 'GIPS SEPATU - DEWASA', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0372', 'GIPS SEPATU / WALKING CAST', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0373', 'GLASS IONOMER CEMENT KLS I', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0374', 'GLASS IONOMER CEMENT KLS I PASIEN HANDCAPPED\nCHILDREN', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0375', 'GLASS IONOMER CEMENT KLS II MESIAL/DISTAL', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0376', 'GLASS IONOMER CEMENT KLS III MESIAL/DISTAL', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0377', 'GLASS IONOMER CEMENT KLS IV MESIAL/DISTAL', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0378', 'GLASS IONOMER CEMENT KLS V\nBUKAL/PALATAL/LINGUAL/LABIAL/SERVIKAL', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0379', 'GLISON TRAKSI', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0380', 'GONIOSCOPY / THREE MIRROR LENS', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0381', 'GRAM + BASAH', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0382', 'GROSS DECONTAMINATION', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0383', 'GTSL GIGI BERIKUTNYA (PER GIGI)', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0384', 'GTSL 1 GIGI PERTAMA', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0385', 'GTSL 1 GIGI PERTAMA AKRILIK', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0386', 'GTSL DGN RIDGE ALVEOLAR DATAR/MUKOSA FLABBY (GIGI)', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0387', 'GTSL FRAME METAL (4 GIGI PERTAMA) VALPLAST', 3818000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0388', 'GTSL FRAME METAL 1 GIGI PERTAMA', 2652000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0389', 'GTSL FRAME METAL DGN RIDGE ALVEOLAR DATAR/MUKOSA\nFLABBY', 2210000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0390', 'GTSL FRAME METAL GIGI BERIKUTNYA (PER GIGI) AKRILI', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0391', 'GTSL FRAME METAL GIGI BERIKUTNYA (PER GIGI) VALPLA', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0392', 'HEATHING PERINEUM', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0393', 'HEATING SEKUNDER', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0394', 'HEATING TENDON', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0395', 'HECHTING : > 20 JAHITAN', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0396', 'HECHTING : 01 - 05 JAHITAN', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0397', 'HECHTING : 01 - 10 JAHITAN', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0398', 'HECHTING : 01 - 20 JAHITAN', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0399', 'HECTING - KOSMETIC : > 15 JAHITAN', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0400', 'HECTING - KOSMETIC : 01 - 05 JAHITAN', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0401', 'HECTING - KOSMETIC : 01 - 10 JAHITAN', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0402', 'HECTING - KOSMETIC : 01 - 15 JAHITAN', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0403', 'HELMET REMOVAL', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0404', 'HEMI SPICA - ANAK', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0405', 'HEMI SPICA - DEWASA', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0406', 'HEMISEKSI DENTAL (PER GIGI)', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0407', 'HEMODIAFILTRASI', 2652000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0409', 'HEPARINISASI (LMWH)', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0410', 'HEPARINISASI (UNFRACTIONATED HEPARIN)', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0411', 'HOLDER / BP.MONITOR', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0412', 'HYDROTUBASI, LA', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0413', 'HYPNOTHERAPY', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0414', 'IABP - INSERTION AND REMOVAL', 4582000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0415', 'IMMEDIATE DENTURE', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0416', 'IMMEDIATE OVER DENTURE', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0417', 'IMMUNISASI / VAKSINASI', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0418', 'IMMUNOFENOTYPING SUMSUM TULANG/DARAH TEPI/KGB', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0419', 'IMMUNOSUPRESIVE PULSE', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0420', 'IMUNISASI (DEWASA)', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0421', 'IMUNISASI BCG', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0422', 'IMUNISASI CAMPAK', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0423', 'IMUNISASI DPT COMBO', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0424', 'IMUNISASI DT', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0425', 'IMUNISASI HB', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0426', 'IMUNISASI TD', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0427', 'IMUNISASI TT / Ca CERVIX', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0428', 'IMUNOTERAPY', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0429', 'INCLINE BITE PLANE : PELEPASAN INCLINE BITE PLANE', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0430', 'INCLINE BITE PLANE : PEMASANGAN INCLINE BITE PLANE', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0431', 'INCUBASI ENDOTRACHEAL', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0432', 'INCUBATOR - PER HARI', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0433', 'INDDIRECT PULP CAPPING (PER GIGI)', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0434', 'INDDIRECT PULP CAPPING (PER GIGI) PASIEN HANDCAPPED', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0435', 'INDIRECT OPHTHALMOSCOPY', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0436', 'INFULTRASI ANASTHESI', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0437', 'INFUS STEROID MEGADOSE', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0438', 'INFUS+ DRIP+ TRANFUSI', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0439', 'INJECTIE (MDR TB)', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0440', 'INJECTION OF HEMORRHOIDS', 2652000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0441', 'INJECTION OF INSULIN (CONTINUOUS INSULIN TREATMENT)', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0442', 'INJEKSI', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0443', 'INJEKSI ANTIBIOTIKA SUB ESCHAR (KLISIS)', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0444', 'INJEKSI BOTOX BESAR', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0445', 'INJEKSI BOTOX KECIL', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0446', 'INJEKSI BOTOX SEDANG', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0447', 'INJEKSI EPO SUBCUTAN', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0448', 'INJEKSI ETHANOL INTRATHYROID DGN TUNTUNAN USG', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0449', 'INJEKSI FERUS SULFAT', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0450', 'INJEKSI IMUNOLOGI', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0451', 'INJEKSI INTRA ARTIKULER', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0452', 'INJEKSI INTRALESI BESAR', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0453', 'INJEKSI INTRALESI KECIL', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0454', 'INJEKSI INTRALESI SEDANG', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0455', 'INJEKSI KASUS NYERI SEDERHANA', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0456', 'INJEKSI KEMOTERAPI INTRATEKAL', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0457', 'INJEKSI KHUSUS KASUS NEUROLOGI', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0458', 'INJEKSI KORTIKOSTEROID STRUKTUR PERIARTIKULAR', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0459', 'INJEKSI PRAMEDIKASI', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0460', 'INJEKSI SCLEROTHERAPY', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0461', 'INJEKSI SITOSTATIKA', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0462', 'INJEKSI SLEROTING AGENT', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0463', 'INJEKSI TESTOSTERON', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0464', 'INJEKSI TRIAMCINOLONE', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0465', 'INLAY KOMPOSIT DO/MO (PER GIGI)', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0466', 'INLAY KOMPOSIT DO/MO (PER GIGI) PASIEN HANDCAPPED', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0467', 'INLAY KOMPOSIT MOD (PER GIGI)', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0468', 'INLAY KOMPOSIT MOD (PER GIGI) PASIEN HANDCAPPED\nCHILDREN', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0469', 'INLAY LOGAM DO/MO (PER GIGI PASIEN HANDCAPPED\nCHILDREN', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0470', 'INLAY LOGAM DO/MO (PER GIGI)', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0471', 'INLAY LOGAM MOD (PER GIGI)', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0472', 'INLAY LOGAM MOD (PER GIGI) PASIEN HANDCAPPED\nCHILDREN', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0473', 'INLAY PORCELAIN DO/MO (PER GIGI)', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0474', 'INLAY PORCELAIN DO/MO (PER GIGI) PASIEN HANDCAPPED', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0475', 'INLAY PORCELAIN MOD (PER GIGI)', 3182000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0476', 'INLAY PORCELAIN MOD (PER GIGI) PASIEN HANDCAPPED\nCHILDREN', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0477', 'INSERI CVP', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0478', 'INSERSI KATETER VENA SENTRAL DENGAN USG', 2210000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0479', 'INSERSI KATETER VENA SENTRAL TANPA USG', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0480', 'INSERSI KATETER VENA SENTRAL UNTUK HEMODIALISA', 2652000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0481', 'INSERSI NASOGASTRIC TUBE DENGAN PENYULIT', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0482', 'INSERSI NASOGASTRIC TUBE DENGAN SEDASI', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0483', 'INSERSI NASOGASTRIC TUBE TANPA PENYULIT', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0484', 'INSERSI PICC CAVAVIX', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0485', 'INSERTI / EKSTRAKSI IUD', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0486', 'INSERTI EKSTRAKSI NORPLANT', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0487', 'INSERTION OF (NASO-)INTESTINAL TUBE', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0488', 'INSERTION OF OTHER (NASO-)GASTRIC TUBE', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0489', 'INSERTION OF RECTAL TUBE', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0490', 'INSERTION OF SENGSTAKEN TUBE', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0491', 'INSISI ABSCES', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0492', 'INSISI ABSES BARTHOLINI', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0493', 'INSISI ABSES BESAR', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0494', 'INSISI ABSES EKTRA / INTRA ORAL', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0495', 'INSISI ABSES KECIL', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0496', 'INSISI ABSES KOMPLEKS', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0497', 'INSISI ABSES SEDANG', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0498', 'INSISI BARTOLINI', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0499', 'INSISI BESAR', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0500', 'INSISI CHALAZION / HORDEOLUM / MILIA', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0501', 'INSISI KECIL', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0502', 'INSISI KOMPLEKS', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0503', 'INSISI SEDANG', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0504', 'INSISI THT', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0505', 'INSISI/EKSISI BIOPSI INTRA/EXTRA ORAL', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0506', 'INSISIONAL BIOPSY', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0507', 'INSPECULO', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0508', 'INTERCOSTAL NERVE BLOCK', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0509', 'INTERVENSI KATUP (PTMC, BVP, DLL)', 9502000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0510', 'INTERVENSI KONGINETAL (ADO, ASO, DLL)', 9502000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0511', 'INTERVENSI PERIFER (PTA, PTRA )', 9502000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0512', 'INTESTINAL BIOPSY, SITE UNSPECIFIED', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0513', 'INTRA AORTIC BALLOON PUMP', 6598000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0514', 'INTRA OSSEUS', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0515', 'INTRA-ARTERIAL LINE INSERTION', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0516', 'INTRACRANIAL PRESSURE MONITOR INSERTION', 6598000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0517', 'INTRATECAL SITOSTATIKA - PER HARI', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0518', 'INTUBASI (PASANG ETT)', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0519', 'INTUBASI DAN EKSTUBASI ETT', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0520', 'INTUBASI DAN EKSTUBASI PIPA ENDOTRAKEAL', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0521', 'INTUBASI ENDOTRACHEAL', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0522', 'INTUBASI ENDOTRAKHEAL DENGAN PENYULIT', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0523', 'INTUBASI ENDOTRAKHEAL TANPA PENYULIT', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0524', 'INTUBASI NASOTRAKEA', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0525', 'IRIGASI MATA', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0526', 'IRIGASI TELINGA', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0527', 'IRIGASI TRAUMA KIMIA', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0528', 'IRRIGATION OF GASTROSTOMY OR ENTEROSTOMY', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0529', 'IV A, DETEKSI DINI KANKER', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0530', 'JAHIT LUKA SEKUNDER', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0531', 'KATERISASI DIAGNOSTIK KONGINETAL', 5498000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0532', 'KATERISASI INVASIF MONITOR - PER HARI', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0533', 'KATERISASI JANTUNG ANGIOGRAFI KORONER', 9502000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0534', 'KATERISASI JANTUNG ANGIOPLASTI KORONER', 9502000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0535', 'KATERISASI JANTUNG BMV', 9502000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0536', 'KATERISASI JANTUNG DIAGNOSTIK NON KORONER', 5498000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0537', 'KATETERISASI PENUTUPAN ASD/VSD/PDA', 4582000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0538', 'KATETERISASI RET. URINE', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0539', 'KATETERISASI/ANGIOGRAFI KORONER /DIAGNOSTIK', 5498000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0540', 'KAUSTIK KONKA', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0541', 'KAUTER ELEKTRIK (ELECTRIC CAUTER) BESAR', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0542', 'KAUTER ELEKTRIK (ELECTRIC CAUTER) KECIL', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0543', 'KAUTER ELEKTRIK (ELECTRIC CAUTER) SEDANG', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0544', 'KAUTERISASI CHEMIS (CHEMOCAUTER)', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0545', 'KEGAWATAN PSIKIATRI', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0546', 'KEMOTERAPI', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0547', 'KENACORT -A. ID ( OBAT BELI SENDIRI )', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0548', 'KOCHER - ANAK', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0549', 'KOCHER CAST', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0550', 'KOCHER - DEWASA', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0551', 'KOLPOSKOPI', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0552', 'KOMPLIKASI EKTRAKSI GIGI DGN OBAT-OBATAN (PER GIGI)', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0553', 'KOMPLIKASI EKTRAKSI GIGI DGN TINDAKAN BEDAH (PER GIGI)', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0554', 'KOMPOSIT LC KLS I (PER GIGI)', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0555', 'KOMPOSIT LC KLS I (PER GIGI) PASIEN HANDCAPPED\nCHILDREN', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0556', 'KOMPOSIT LC KLS II DO/MO (PER GIGI)', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0557', 'KOMPOSIT LC KLS II DO/MO (PER GIGI) PASIEN HANDCAPPED', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0558', 'KOMPOSIT LC KLS II MOD (PER GIGI)', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0559', 'KOMPOSIT LC KLS II MOD (PER GIGI) PASIEN HANDCAPPED', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0560', 'KOMPOSIT LC KLS III DISTAL/MESIAL (PER GIGI)', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0561', 'KOMPOSIT LC KLS III DISTAL/MESIAL (PER GIGI)', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0562', 'KOMPOSIT LC KLS IV DISTAL/MESIAL (PER GIGI)', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0563', 'KOMPOSIT LC KLS IV DISTAL/MESIAL (PER GIGI) PASIEN', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0564', 'KOMPOSIT LC KLS V BUKAL/LABIAL/LINGUAL/PALATAL (PER\nGIGI)', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0565', 'KOMPOSIT LC KLS VI (PER GIGI)', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0566', 'KOMPOSIT LC KLS VI (PER GIGI) PASIEN HANDCAPPED\nCHILDREN', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0567', 'KOMPRES HANGAT / DINGIN', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0568', 'KOMPRESI BIMANUIL', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0569', 'KONSELING DASAR ADIKSI NAPZA', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0570', 'KONSELING HIV', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0571', 'KONSELING POLI VCT (PER KALI)', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0572', 'KONSULTASI DAN PENDAMPINGAN TINDAKAN OPERASI\nREGUL', 2210000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0573', 'KONTROL GRINDING', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0574', 'KONTROL IUD', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0575', 'KUMBAH LAMBUNG PER EPISODE', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0576', 'KURETASE PER REGIO', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0577', 'KURETASE PERIODONTAL >1/4 s/d 1/2 RAHANG', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0578', 'KURETASE PERIODONTAL < 1/4 RAHANG', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0579', 'KURETASE PERIODONTAL > 1/2 RAHANG', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0580', 'LABIAL VENEER/KOMPOSIT (PER GIGI)', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0581', 'LABIAL VENEER/KOMPOSIT (PER GIGI) PASIEN HANDCAPPED', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0582', 'LARVA MIGRAN CRYOTHERAPI', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0583', 'LASER', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0584', 'LASER CO 2 ABLASI', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0585', 'LASER CO 2 RESURFASING', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0586', 'LATIHAN VERTIGO', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0587', 'LAVEMENT / STERILISASI USUS', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0588', 'LAVEMENT ANAK', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0589', 'LEEP', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0590', 'LEKOPHARESIS', 3818000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0591', 'LEPAS IUD', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0592', 'LEPAS PESSARIUM', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0593', 'LEPAS SUSUK', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0594', 'LEUCOREDUCTION (LEUCOFARESIS)', 6598000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0595', 'LIGASI VARICES ESOPHAGUS', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0596', 'LIGATION OF ESOPHAGEAL VARICES', 5498000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0597', 'LIGATION OF GASTRIC VARICES', 6598000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0598', 'LIGATION OF HEMORRHOIDS', 2652000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0599', 'LOADING DOSE PHENYTOIN', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0600', 'LOBULOPLASTI', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0601', 'LOCAL EXCISION OF RECTAL LESION OR TISSUE', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0602', 'LONG ARM CAST', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0603', 'LONG LEG CAST ANAK', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0604', 'LONG LEG CAST DEWASA', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0605', 'LOUSET MAURESEAU', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0606', 'LOW VISION (VISUS + STREAK + KONTRAS + KONFRONTASI)', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0607', 'LUMBAL PUNKSI - ANAK', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0608', 'LUMBAL PUNKSI - DEWASA', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0609', 'MAHKOTA AKRILIK 1 GIGI', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0610', 'MAHKOTA AKRILIK 1 GIGI PASIEN HANDCAPPED CHILDREN', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0611', 'MAHKOTA LOGAM 1 GIGI', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0612', 'MAHKOTA LOGAM 1 GIGI PASIEN HANDCAPPED CHILDREN', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0613', 'MAHKOTA PIGURA 1 GIGI', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0614', 'MAHKOTA PIGURA 1 GIGI PASIEN HANDCAPPED CHILDREN', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0615', 'MAHKOTA PORSELEN (FUSE MENTAL) PER GIGI', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0616', 'MAHKOTA PORSELEN ALL CERAMIC (POSTERIOR)', 2210000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0617', 'MAHKOTA SEMENTARA 1 GIGI', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0618', 'MAHKOTA SEMENTARA 1 GIGI PASIEN HANDCAPPED\nCHILDREN', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0619', 'MAJELIS PENGUJI KESEHATAN JIWA (MPK) DAN VISUM ET', 2210000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0620', 'MANDIBULAR BANDAGE', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0621', 'MANTOUX TEST - DEWASA', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0622', 'MANTOUXT TEST', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0623', 'MANUAL PLACENTA', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0624', 'MANUAL REDUCTION OF ENTEROSTOMY PROLAPSE', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0625', 'MANUAL REDUCTION OF RECTAL PROLAPSE', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0626', 'MARSUPIALISASI', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0627', 'MARSUPIALISASI KISTA/RANULA (WINDOW) (PER GIGI)', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0628', 'MATRAS ANTI DECUBITUS - PER HARI', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0629', 'MAXILLOMANDIBULAR RELATIONSHIP', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0630', 'MELAKUKAN BAGGING SELAMA PERAWATAN', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0631', 'MELAKUKAN DEFIBRILASI/CARDIOVERSI', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0632', 'MELAKUKAN INJEKSI IM/IV/SC/IC', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0633', 'MELEPAS ICP', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0634', 'MELEPAS ARTERIAL LINE', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0635', 'MELEPAS CVP', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0636', 'MELEPAS DOWER KATETER', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0637', 'MELEPAS FOWLEY KATETER', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0638', 'MELEPAS INFUS/IV LINE', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0639', 'MELEPAS KATETER URETRA', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0640', 'MELEPAS KATETER URETROPLASTY', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0641', 'MELEPAS NGT', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0642', 'MELEPAS SKIN TRAKSI', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0643', 'MELEPAS SPLINT DNL', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0644', 'MELEPAS TAMPON', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0645', 'MELEPAS TRACHEOSTOMI', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0646', 'MELEPAS WSD', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0647', 'MEMASANG DARMBUIS', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0648', 'MEMASANG DOLLES VERBAND', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0649', 'MEMASANG DOWER KATETER', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0650', 'MEMASANG FOWLEY KATETER', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0651', 'MEMASANG GIPS NASLE', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0652', 'MEMASANG GIPS PALK', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0653', 'MEMASANG GLISON TAKSI', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0654', 'MEMASANG INFUS ANAK - PER HARI', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0655', 'MEMASANG KATETER ANAK', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0656', 'MEMASANG MATRAS ANTIDECUBITUS - PER EPISODE', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0657', 'MEMASANG NGT', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0658', 'MEMASANG OROFARINGEAL / NASOFARINGEAL TUBE', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0659', 'MEMASANG PELVIS SLING', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0660', 'MEMASANG PLUG', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0661', 'MEMASANG RANSEL VERBAND', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0662', 'MEMASANG SKELETAL TRAKSI', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0663', 'MEMASANG SKIN TRAKSI', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0664', 'MEMASANG TAMPON', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0665', 'MEMASANG THORAKS DRAIN', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0666', 'MEMASANG THORAKS FIXATION', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0667', 'MEMASANG U-SLAB', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0668', 'MEMASANG VELLPEAU VERBAND', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0669', 'MEMASUKKAN OBAT SITOSTATIKA - PER 1 PROGRAM', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0670', 'MEMASUKKAN OBAT STREPTOKINASE', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0671', 'MEMBERIKAN NEBULIZER LEWAT VENTILATOR - PER EPISODE', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0672', 'MEMBERIKAN TRANSFUSI DARAH', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0673', 'MEMBUAT GIPS PALK', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0674', 'MEMOTONG COLOSTOMI', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0675', 'MEMPERTAHANKAN SUHU TUBUH', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0676', 'MENCABUT CYSTOTOMI', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0677', 'MENCABUT WSD', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0678', 'MENDAMPINGI PASIEN KRITIS UNTUK TINDAKAN DIAGNOSTIK', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0679', 'MENGAMBIL SPESIMEN DARAH/URINE/SPUTUM/PUS/\nCAIRAN', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0680', 'MENGAMBIL SPESIMEN SPUTUM MELALUI ETT', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0681', 'MENGAMBIL SPESIMEN DARAH / URINE / SPUTUM PER HARI', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0682', 'MENGHITUNG KEBUTUHAN KALORI PER EPISODE', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0683', 'MENGHITUNG OSMOLARITAS PLASMA PER EPISODE', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0684', 'MENGUKUR CVP - PER EPISODE', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0685', 'MENIMBANG BERAT BADAN DENGAN PASIEN DIATAS TEMPAT', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0686', 'MENOMETRORAGHIA', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0687', 'MENYELENGGARAKAN FAMILY MEETING', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0688', 'MENYUNTIK KELOID', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0689', 'MERAWAT ARTERIAL LINE', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0690', 'MERAWAT COLOSTOMY/BOGOTA BAG - PER EPISODE', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0691', 'MERAWAT DEKUBITUS - PER HARI', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0692', 'MERAWAT ICP', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0693', 'MERAWAT JENAZAH', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0694', 'MERAWAT LUKA TANPA HECHTING', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0695', 'MERAWAT POTONG POST COLOSTOMY', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0696', 'MEREKAM DAN INTEPRETASI ECG', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0697', 'METHYLPREDNISOLONE MEGA DOSE IV', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0698', 'METODE KANGGURU', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0699', 'MICRONEEDLE BESAR', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0700', 'MICRONEEDLE KECIL', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0701', 'MICRONEEDLE SEDANG', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0702', 'MIKRO DERMABRASI DIAMOND', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0703', 'MIKRO DERMABRASI KRISTAL', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0704', 'MIKRO DERMOBRASI DIAMOND', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0705', 'MIKRO DERMOBRASI KRISTAL', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0706', 'MIKROSKOP TELINGA', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0707', 'MINERVA ANAK', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0708', 'MINERVA DEWASA', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0709', 'MONITORING INVASIF BLOOD PRESSURE PER EPISODE', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0710', 'MONITORING ANESTESIA CARE DENGAN PENYULIT', 2210000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0711', 'MONITORING ANESTESIA CARE TANPA PENYULIT', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0712', 'MONITORING PASIEN CPAP PER EPISODE', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0713', 'MONITORING PASIEN SELAMA PEMAKAIAN CRRT PER EPISODE', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0714', 'MORFOLOGI DARAH TEPI', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0715', 'MULTIPLE INCISI', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0716', 'NASOENDOSKOPI', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0717', 'NCT (NON CONTACT TONOMETRI)', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0719', 'NEBULIZER - PER HARI', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0720', 'NEEDLE DECOMPRESSION', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0721', 'NEKROTOMI', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0722', 'NIGHT GUARD PER RAHANG', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0723', 'NON INVASIVE VENTILATION (EPANFAREOLIS)', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0724', 'NON INVASIVE VENTILATION W/PEEP (ASCICTED) / JAM', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0725', 'NST / AT', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0726', 'OAE SWT', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0727', 'OAE UM', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0728', 'OBSERVASI 12 JAM', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0729', 'OBSERVASI 24 JAM', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0730', 'OBSERVASI HIS, DJJ - PER HARI', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0731', 'OBSEVASI PASIEN - PER 2 JAM', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0732', 'OBTURATOR BAYI (AKRILIK)', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0733', 'OBTURATOR BAYI (SILIKON)', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0734', 'OBTURATOR TANPA GIGI', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0735', 'OCCLUSAL ADJUSMENT', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0736', 'OCT ANTERIOR', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0737', 'ODONTEKTOMI BERAT DGN ANAESTESI LOKAL (PER GIGI)', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0738', 'ODONTEKTOMI RINGAN DGN ANAESTESI LOKAL (PER GIGI)', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0739', 'ODONTEKTOMI SEDANG DGN ANAESTESI LOKAL (PER GIGI)', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0740', 'OKLUSAI ADJUSTMENT RAHANG ATAS DAN RAHANG BAWAH', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0741', 'ONE VISIT ENDODONTIK ANTERIOR (PER GIGI)', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0742', 'ONE VISIT ENDODONTIK ANTERIOR (PER GIGI) PASIEN\nHANDCAPPED', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0743', 'ONE VISIT ENDODONTIK POSTERIOR (PER GIGI)', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0744', 'ONLAY/UPLAY (PER GIGI)', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0745', 'ONLAY/UPLAY (PER GIGI) PASIEN HANDCAPPED CHILDREN', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0746', 'ORAL HYGIENE PASIEN TOTAL CARE', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0747', 'ORTODONTIK : PAKET ORTODONTIK LEPASAN (PER RAHANG)', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0748', 'ORTODONTIK : PAKET ORTODONTIK REMOFIX (PER RAHANG)', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0749', 'ORTODONTIK : KONTROL ORTODONTIK CEKAT', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0750', 'ORTODONTIK : KONTROL ORTODONTIK LEPASAN', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0751', 'ORTODONTIK : KONTROL ORTODONTIK REMOFIX', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0752', 'ORTODONTIK : PASANG BREKET GIGI IMPAKSI (PER RAHANG', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0753', 'ORTODONTIK : PASANG MINISCREW (PER RAHANG)', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0754', 'ORTODONTIK : PASANG WAFER (PER RAHANG)', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0755', 'ORTODONTIK : PELEPASAN ALAT ORTODONTIK CEKAT (PER\nRAHANG)', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0756', 'ORTODONTIK : PELEPASAN ALAT ORTODONTIK REMOFIX (PER\nRAHANG)', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0757', 'ORTODONTIK : PEMBUATAN ALAT ORTODONTIK LEPASAN\n(PER RAHANG)', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0758', 'ORTODONTIK : REPARASI ALAT ORTODONTIK LEPASAN (PER\nRAHANG)', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0759', 'OTHER DIAGNOSTIC PROCEDURES ON LARGE INTESTINE', 2652000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0760', 'OTHER ENDOSCOPY OF SMALL INTESTINE', 4582000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0761', 'OTHER INJECTION OF THERAPEUTIC SUBSTANCE INTO LIVE', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0762', 'OTHER IRRIGATION OF (NASO-)GASTRIC TUBE', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0763', 'OTHER PROCEDURES ON HEMORRHOIDS', 2652000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0764', 'OTHER PSYCHOLOGIC EVALUATION AND TESTING - 9408', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0765', 'OTHER TRANSANAL ENEMA (LAVEMEN)', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0766', 'OVER DENTURE DGN MAGNET', 3182000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0767', 'OXYMETRI', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0768', 'PACE MAKER TEMPORER', 3818000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0769', 'PACU JANTUNG PERMANENT', 6598000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0770', 'PAKET PILKADA (FIT & PROPER TEST)', 2210000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0771', 'PAP SMEAR', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0772', 'PARASENTESE', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0773', 'PARASINTESIS BANYAK (2000 S/D 4000 CC)', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0774', 'PARASINTESIS SEDIKIT (<2000 CC)', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0775', 'PARASINTESIS TOTAL (LARGE PARACYNTESIS)', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0776', 'PARTUS NORMAL', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0777', 'PARTUS NORMAL DENGAN DRIP', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0778', 'PARTUS PRESIPILATUS', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0779', 'PARTUS SPONTAN', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0780', 'PASAK RICHMOND(MAHKOTA PORSELEN)', 2210000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0781', 'PASAK TUANG LOGAM', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0782', 'PASAK TUANG LOGAM GANDA', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0783', 'PASAK/POST GANDA (FABRICATED)', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0784', 'PASAK/POST TUNGGAL (FABRICATED)', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0785', 'PASANG GIPS KECIL DEWASA', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0786', 'PASANG COLAR AND CUFF', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0787', 'PASANG COLAR IN CUP', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0788', 'PASANG GIPS BESAR ANAK', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0789', 'PASANG GIPS BESAR DEWASA', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0790', 'PASANG GIPS KECIL ANAK', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0791', 'PASANG GIPS KECIL DEWASA', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0792', 'PASANG GIPS SEDANG ANAK', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0793', 'PASANG GIPS SEDANG DEWASA', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0794', 'PASANG IUD', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0795', 'PASANG NOSTRIL RETAINER', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0796', 'PASANG PACU JANTUNG PERMANEN', 9502000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0797', 'PASANG PACU JANTUNG TEMPORER', 5498000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0798', 'PASANG PESSARIUM', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0799', 'PASANG PIG TAIL KATHETER THORAK', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0800', 'PASANG RANSEL VERBAN', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0801', 'PASANG SLING/ BANDAGE', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0802', 'PASANG SUSUK', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0803', 'PASANG VELPEAU VERBAN', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0804', 'PEAK FLOW METER (PEF)', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0805', 'PELEPASAN ORTODONTI CEKAT PADA JENAZAH', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0806', 'PELVIC SLING', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0808', 'PEMAKAIAN SYRING PUMP - PER HARI', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0809', 'PEMAKAIAN C-ARM', 3182000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0810', 'PEMAKAIAN INFANT WARMER - PER HARI', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0811', 'PEMAKAIAN MATRAS DEKUBITUS - PER HARI', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0813', 'PEMANTAUAN PEMBERIAN VASOPRESSIN / INOTROPIC\n(INFUS)', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0814', 'PEMANTAUAN VITAL SIGN/SPO2/LEVEL NYERI - PER EPISODE', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0815', 'PEMASANGAN BIDAI', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0816', 'PEMASANGAN CATHETER UMBLICALIS', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0817', 'PEMASANGAN CVP', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0818', 'PEMASANGAN ETT', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0819', 'PEMASANGAN FLOW-CARE SECARA ENDOSKOPIK', 4582000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0820', 'PEMASANGAN GIPS SPALK', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0821', 'PEMASANGAN IABP', 6598000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0822', 'PEMASANGAN INFUS', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0823', 'PEMASANGAN IV PLUG', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0824', 'PEMASANGAN KATETER INTRAVENA (IV LINE)', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0825', 'PEMASANGAN KATETER SEMI PERMANEN UTK HEMODIALISIS', 6598000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0826', 'PEMASANGAN KATETER VENA SENTRAL (CVC)', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0827', 'PEMASANGAN LMA', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0828', 'PEMASANGAN LONG LINE / VENA SEKSI', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0829', 'PEMASANGAN MAYO', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0831', 'PEMASANGAN NUTRICATH', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0832', 'PEMASANGAN PICC', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0833', 'PEMASANGAN PIPA NASOFARING OROFARING', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0834', 'PEMASANGAN PIPA NASOGASTRIK', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0836', 'PEMASANGAN RANCEL VERBAND', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0837', 'PEMASANGAN SB TUBE', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0838', 'PEMASANGAN SCEW IMPLANT (PER GIGI)', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0839', 'PEMASANGAN SELANG REKTUM (RECTAL TUBE)', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0840', 'PEMASANGAN SWAN GANZ KATETER', 6598000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0841', 'PEMASANGAN TAMPON NASAL', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0842', 'PEMASANGAN TENCHKOFF CATHETER UNTUK PERITONEAL\nDIALISIS', 9502000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0843', 'PEMASANGAN TENCHKOFF UTK CAPD DGN TEKNIK SELDINGER', 7918000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0844', 'PEMASANGAN TRACHEOSTOMY', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0845', 'PEMASANGAN U-SLAP', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0846', 'PEMASANGAN WSD', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0847', 'PEMBERIAN ANTIDOTUM', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0848', 'PEMBERIAN ATROPINIRASI', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0849', 'PEMBERIAN CHARCOAL', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0850', 'PEMBERIAN IVIG', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0852', 'PEMBERIAN OBAT RECTAL', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0853', 'PEMBERIAN OBAT SEDASI', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0854', 'PEMBUATAN BASE PLATE PER RAHANG', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0855', 'PEMBUATAN WINDOW ERUPSI', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0856', 'PEMERIKSAAN DARAH STIK', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0857', 'PEMERIKSAAN FAAL PARU (SPIROMETRI)', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0858', 'PEMERIKSAAN FITTING CONTCT LENS', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0859', 'PEMERIKSAAN FLUORESCINE (FL)', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0860', 'PEMERIKSAAN FUNDOSKOPI (F)', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0861', 'PEMERIKSAAN MIDRIATIK SIKLOPLEGIA (M)', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0862', 'PEMERIKSAAN PAKET FL + SL', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0863', 'PEMERIKSAAN PAKET T + M + F', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0864', 'PEMERIKSAAN PAKET V+R+AR+T+F+SL+M (PAKET\nPEMERIKSAAN MATA DASAR)', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0865', 'PEMERIKSAAN PAKET V+R+AR+T+F+SL+M+BW (PAKET\nPEMERIKSAAN KIR MATA)', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0866', 'PEMERIKSAAN REFRAKSI (R)', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0867', 'PEMERIKSAAN SLITLAMP (SL)', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0868', 'PEMERIKSAAN AIR MATA', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0869', 'PEMERIKSAAN AUTOPERIMETRI', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0870', 'PEMERIKSAAN AUTOREFRAKSI (AR)', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0871', 'PEMERIKSAAN BMD', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0872', 'PEMERIKSAAN BTA', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0873', 'PEMERIKSAAN BUTA WARNA (BW)', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0874', 'PEMERIKSAAN DARKFIELD MICROSCOPE', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0875', 'PEMERIKSAAN DIRECT SWAB', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0876', 'PEMERIKSAAN DOPPLER VASCULAR', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0877', 'PEMERIKSAAN FITTING PROSTHESIS', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0878', 'PEMERIKSAAN FUNDUSKOPI', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0879', 'PEMERIKSAAN GDA STICK', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0880', 'PEMERIKSAAN GENITALIA WANITA', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0881', 'PEMERIKSAAN GIEMSA', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0882', 'PEMERIKSAAN GRAM', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0883', 'PEMERIKSAAN H PYLORI DGN BIOPSI', 2652000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0884', 'PEMERIKSAAN KOH', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0885', 'PEMERIKSAAN LENGKAP DEMENSIA', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0886', 'PEMERIKSAAN PASIEN SESUDAH PROSES PENYAPIHAN - PER\nEPISODE', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0887', 'PEMERIKSAAN SKRINING DEMENSIA', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0888', 'PEMERIKSAAN TONOMETRI (T)', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0889', 'PEMERIKSAAN URINE ALISIS OPIAT ( 3 JENIS )', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0890', 'PEMERIKSAAN VISUS (V)', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0891', 'PENANGANAN GANGGUAN CAIRAN DAN ELEKTROLIT', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0892', 'PENANGANAN KEDARURATAN DELIRIUM/ACUTE\nCONFUSIONAL', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0893', 'PENCABUTAN DOUBLE LUMEN KATETER SEMI PERMANEN', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0894', 'PENCABUTAN DOUBLE LUMEN KATETER TEMPORER HD', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0895', 'PENCABUTAN DRAIN\nINTRA/RETROPERITONEAL/EKSTRAPERITONEAL', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0896', 'PENCABUTAN KATETER TENCHKOFF CAPD', 2652000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0897', 'PENCETAKAN DOUBLE IMPRESSION PER RAHANG', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0898', 'PENCETAKAN POLYVINYL SILOXANE MONOPHASE PER\nRAHANG', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0899', 'PENDAMPINGAN TINDAKAN BRACHI TERAPI', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0900', 'PENDAMPINGAN TINDAKAN KEMOTERAPI', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0901', 'PENDAMPINGAN TINDAKAN OPERASI CYTO', 3182000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0902', 'PENDAMPINGAN TINDAKAN RADIOTERAPI', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0903', 'PENDAMPINGAN TINDAKAN REHABILITASI', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0904', 'PENDAMPINGAN TINDAKAN STRESS TESTING', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0905', 'PENDAMPINGAN TRANSPORTASI ANTAR KOTA PER JAM', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0906', 'PENDAMPINGAN TRANSPORTASI DALAM KOTA PER JAM', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0907', 'PENDAMPINGAN TRANSPORTASI LUAR NEGERI PER HARI', 4582000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0908', 'PENGAMBILAN BAHAN PAP-SMEAR (VVP)', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0909', 'PENGAMBILAN BAHAN POST-COITAL', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0910', 'PENGAMBILAN BAHAN SITOHORMONAL', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0911', 'PENGAMBILAN DARAH / BGA', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0912', 'PENGAMBILAN DARAH ARTERI', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0913', 'PENGAMBILAN SEDIAAN FNAB', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0914', 'PENGAWASAN MINUM OBAT (MDR TB)', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0915', 'PENGERATAN CUTTING SETON', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0916', 'PENGGANTIAN KATETER SISTOSTOMI', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0917', 'PENGGANTIAN KATETER URETRA', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0918', 'PENGGANTIAN KATETER/TUBE ENTEROSTOMI', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0919', 'PENILAIAN RESIKO JATUH', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0920', 'PENILAIAN RESIKO TROMBOSIS', 101000, 'TINDAKAN NON OPERATIF'); +INSERT INTO `tarif_rs` (`ID_Tarif_RS`, `Tindakan_RS`, `Tarif_RS`, `Kategori_RS`) VALUES +('R.TNO.0921', 'PENILAIAN STATUS FUNGSIONAL', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0922', 'PENILAIAN STATUS GIZI', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0923', 'PENILAIAN STATUS KOGNITIF', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0925', 'PENUTUPAN PERFORASI SINUS MAKSILARIS;FISTULA OROAN', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0926', 'PENUTUPAN PERFORASI SINUS MAKSILARIS;FISTULA\nOROANTRAL', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0927', 'PERAWATAN DIAHPERAS', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0928', 'PERAWATAN ETT', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0929', 'PERAWATAN TRACHEO CANULE', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0930', 'PERAWATAN ARCHBARR (GANTIKARET)', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0931', 'PERAWATAN CATETER UMBILICAL PER EPISODE', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0932', 'PERAWATAN CATHETER TEMPORER / CAPD', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0933', 'PERAWATAN CHEST TUBE', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0934', 'PERAWATAN COVIS PER HARI', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0935', 'PERAWATAN CVP', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0936', 'PERAWATAN DECUBITES', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0937', 'PERAWATAN GANGGREN', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0938', 'PERAWATAN GIGI HIPERSENSITIF PER REGIO', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0939', 'PERAWATAN GLANULOMA', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0940', 'PERAWATAN ICP MONITOR', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0941', 'PERAWATAN INFUS', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0942', 'PERAWATAN INKUBATOR', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0943', 'PERAWATAN JENAZAH', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0944', 'PERAWATAN KAKI DIABETES BESAR', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0945', 'PERAWATAN KAKI DIABETES KECIL', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0946', 'PERAWATAN KAKI DIABETES SEDANG', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0947', 'PERAWATAN KATETER URETROPLASTY', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0948', 'PERAWATAN LUKA GANGREN', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0949', 'PERAWATAN LUKA MENINGOPLASTY', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0950', 'PERAWATAN LUKA NON DEKUBITUS / NON DIABET', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0951', 'PERAWATAN LUKA POST INSISI ABSES', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0952', 'PERAWATAN LUKA TRAKEOSTOMY', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0953', 'PERAWATAN LUKA TRAUMA JAR.LUNAK DEBRIDEMEN DGN\nJAHIT', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0954', 'PERAWATAN LUKA TRAUMA JAR.LUNAK DEBRIDEMEN TANPA\nJAR. LUNAK DEBRIDEMEN TANPA JAHIT', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0955', 'PERAWATAN MATA - PER EPISODE', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0956', 'PERAWATAN MIKROGRAFTING', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0957', 'PERAWATAN MOUNIALIASIS', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0958', 'PERAWATAN NEONATUS', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0959', 'PERAWATAN ORTO CEKAT (PER PAKET)', 2652000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0960', 'PERAWATAN ORTO CEKAT (PER TINDAKAN)', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0961', 'PERAWATAN PERDARAHAN DGN MEDIKAMENTOSA', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0962', 'PERAWATAN PERDARAHAN DGN TINDAKAN BEDAH (PER\nREGIO)', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0963', 'PERAWATAN TALI PUSAT', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0964', 'PERAWATAN TRACHEOSTOMI - PER HARI', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0965', 'PERAWATAN TRISMUS DENGAN RETRAKSI', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0966', 'PERAWATAN TRISMUS DENGAN SOLUKS', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0967', 'PERAWATAN WSD - PER HARI', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0968', 'PERCUTANEOUS (ENDOSCOPIC) JEJUNOSTOMY [PEJ]', 9502000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0969', 'PERCUTANEOUS [ENDOSCOPIC] GASTROJEJUNOSTOMY', 9502000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0970', 'PERCUTANEOUS [ENDOSCOPIC] GASTROSTOMY [PEG]', 9502000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0971', 'PERCUTANEOUS ABLATION OF LIVER LESION OR TISSUE', 5498000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0972', 'PERCUTANEOUS ASPIRATION OF GALLBLADDER', 5498000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0973', 'PERCUTANEOUS ASPIRATION OF LIVER', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0974', 'PERCUTANEUS TRACHEOSTOMI', 3182000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0975', 'PERFORASI + CRANIOCLASI/ CUNAM MUZEAUX, LA', 4582000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0976', 'PERICARDIOCENTESIS', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0977', 'PERITONEAL EQUILIBRIUM TEST ( PET )', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0978', 'PERITONIAL DIALISA', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0979', 'PERSPIRASI TEST', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0980', 'PFR', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0981', 'PH METRI', 4582000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0982', 'PHLEBOTOMI', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0983', 'PHONOCARDIOGRAFI', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0984', 'PIN RETAINED', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0985', 'PIN RETAINED PASIEN HANDCAPPED CHILDREN', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0986', 'PLASMAPHARESIS', 5498000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0987', 'PLEURODESIS', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0988', 'POLYSOMNOGRAFI', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0989', 'PREMEDIKASI PRO KEMO', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0990', 'PROCTOSCOPY', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0991', 'PROCTOSIGMOIDOSCOPY THROUGH ARTIFICIAL STOMA', 3818000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0992', 'PROEF PUNCTI', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0993', 'PROOF ABSES/KISTA HATI', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0994', 'PROOF PUNKSI', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0995', 'PROS.DENTOALV. KOMPLEK DENGAN IDW (PER RAHANG)', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0996', 'PROSTIGMIN/TENSILON TEST', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0997', 'PSIKO TEST PER-ITEM : M M P I', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.0998', 'PSIKOTERAPI - PER TERAPI', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1000', 'PSIKOTEST ADVANCE', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1002', 'PSIKOTEST BASIC', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1003', 'PSIKOTEST INTERMEDIET', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1004', 'PSIKOTEST MMPI-2', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1005', 'PSIKOTEST RUTIN', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1006', 'PSYCHIATRIC MENTAL STATUS DETERMINATION - 9411', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1007', 'PSYCOLOGIC MENTAL STATUS DETERMINATION, NOS - 9409', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1008', 'PTB CAST / SARMENTO CAST', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1009', 'PULPECTOMI ANTERIOR (PER GIGI)', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1010', 'PULPECTOMI ANTERIOR (PER GIGI) PASIEN HANDCAPPED\nCHILDREN', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1011', 'PULPECTOMI GIGI SULUNG ANTERIOR (PER GIGI)', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1012', 'PULPECTOMI GIGI SULUNG POSTERIOR (PER GIGI)', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1013', 'PULPECTOMI POSTERIOR (PER GIGI)', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1014', 'PULPECTOMI POSTERIOR (PER GIGI) PASIEN HANDCAPPED', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1015', 'PULSE IMMUNOSUPPRESIVE', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1016', 'PUNKSI ABSES HATI (DENGAN TUNTUNAN USG)', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1017', 'PUNKSI ASCITES', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1018', 'PUNKSI PERICARD', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1019', 'PUNKSI PLEURA', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1020', 'PUNKSI SENDI BESAR', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1021', 'PUNKSI SENDI KECIL', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1022', 'PUNKSI SEROMA', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1024', 'PUNKSI THORAX', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1025', 'PUNKSI VENA - PER HARI', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1026', 'RANSEL VERBAN', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1027', 'RAWAT ABSCES', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1028', 'RAWAT KOLOSTOMI', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1029', 'RAWAT LUKA (PASIEN UMUM)', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1030', 'RAWAT LUKA BAKAR / RENDAM BERAT', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1031', 'RAWAT LUKA BAKAR / RENDAM KECIL', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1032', 'RAWAT LUKA BAKAR / RENDAM SEDANG', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1033', 'RAWAT LUKA BAKAR RAW SURFACE <10 %', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1034', 'RAWAT LUKA BAKAR RAW SURFACE 10-15%', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1035', 'RAWAT LUKA BESAR', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1036', 'RAWAT LUKA BOLA MATA', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1037', 'RAWAT LUKA DENGAN MODERN DRESSING', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1038', 'RAWAT LUKA KANKER PAYUDARA', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1039', 'RAWAT LUKA KECIL', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1040', 'RAWAT LUKA KOMPLEKS', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1041', 'RAWAT LUKA SEDANG', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1042', 'RAWAT LUKA SOCKET', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1043', 'RAWAT LUKA SOCKET ANOPHTHALMIA', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1044', 'RAWAT STOMA', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1045', 'RAWAT TRACHEOSTOMI', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1046', 'RAWAT URETHROPLASTY', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1047', 'REBASING ACRILIC', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1048', 'REBASING FULL DENTURE', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1049', 'REBASING SOFT LINER', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1050', 'RECTAL MASSAGE (FOR LEVATOR SPASM)', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1051', 'RECTAL TOUCHER', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1052', 'RECTOSCOPY', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1053', 'REHAB MENTAL SELAMA PERAWATAN', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1054', 'REHABILITASI LOW VISION (NEAR READING + FAR READING\nTEST)', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1055', 'REHABILITASI PASIF', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1056', 'REHIDRASI', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1057', 'REINSERTEN BRACKET ORTODONTIK', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1058', 'REINSERTEN MOLAR TUBE ORTODONTIK', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1059', 'REINSERTEN WIRE ORTO', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1060', 'REKTOSKOPI', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1061', 'RELIEF OF PAIN', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1062', 'RELINING', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1063', 'REMOVAL OF IMPACTED FECES', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1064', 'REMOVAL OF INTRALUMINAL FOREIGN BODY FROM\nESOPHAGUS', 5498000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1065', 'REMOVAL SUB UNGUAL HEMATOMA', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1066', 'REPAIR GIPS STUWING', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1067', 'REPAIR PERINEUM', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1069', 'REPAIR POST CIRCUMCICI', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1070', 'REPAIR STUMB', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1071', 'REPARASI GELIGI TIRUAN', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1072', 'REPLACEMENT OF (NASO-)GASTRIC OR ESOPHAGOSTOMY\nTUBE', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1073', 'REPLACEMENT OF CENTAL VENOUS CATHETER', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1074', 'REPLACEMENT OF GASTROSTOMY TUBE', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1075', 'REPLACEMENT OF TUBE OR ENTEROSTOMY DEVICE OF LARGE', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1076', 'REPLACEMENT OF TUBE OR ENTEROSTOMY DEVICE OF SMALL', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1077', 'REPOSISI DISLOKASI DGN INJEKSI ANAESTESI INTRA KONPILAR', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1078', 'REPOSISI DISLOKASI MANDUBULA SECARA MANUAL', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1079', 'REPOSISI DISLOKASI TMJ HABITUAL', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1080', 'REPOSISI THORAK KATHETER', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1081', 'RESUSITASI', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1082', 'RESUSITASI CAIRAN / REHIDRASI CEPAT', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1083', 'RESUSITASI CAIRAN ANAK SELAMA PERAWATAN', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1084', 'RETREATMENT GIGI ANTERIOR (PER GIGI)', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1085', 'RETREATMENT GIGI POSTERIOR (PER GIGI)', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1086', 'RING HEMOROID', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1087', 'RING PEMOVAL', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1088', 'RONTGEN FOTO INTRA ORAL (PER GIGI)', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1089', 'ROUZERPLASTY', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1090', 'RUMATAN METADON', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1091', 'S T E', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1092', 'SADDLE', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1093', 'SALUT POSISI', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1094', 'SCALING PER RAHANG', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1095', 'SCRAPPING ECTOPARASIT', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1096', 'SCRATCH TEST', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1097', 'SCUREN GENITAL', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1098', 'SCUREN KEPALA', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1099', 'SEDIAAN BTA', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1100', 'SEDIAAN KOH', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1101', 'SEDIMEN + GRAM', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1102', 'SEP ( SENSORY EVOKED POTENSIAL )', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1103', 'SERIAL CAST', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1104', 'SETING MESIN CPAP', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1105', 'SHAKE TEST', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1106', 'SIKATAN BRONKUS', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1107', 'SIMPATEKTOMI ARTERI RENALIS', 7918000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1108', 'SITOGENETIKA SUMSUM TULANG/DARAH TEPI', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1109', 'SITOKIMIA SUMSUM TULANG', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1110', 'SITOLOGI SUMSUM TULANG', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1111', 'SITOSTATIKA - PER 1 KALI', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1112', 'SITOSTATIKA DRIP AMBULATOR', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1113', 'SIX MINUTE WALKING TEST', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1114', 'SKELETAL TRAKSI', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1115', 'SKIN PRICK TEST', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1116', 'SKIN TEST - PER 1 KALI', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1117', 'SKIREN KEPALA', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1118', 'SKLEROTERAPI HEMOROID INTERNAL', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1119', 'SKLEROTERAPI VARISES ESOFAGUS', 5498000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1120', 'SLEM / PNEUMO SUCTION - PER HARI', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1121', 'SLEM SUCTION', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1122', 'SLIM ZUIKKER SELAMA PERAWATAN', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1123', 'SLIMING & FIRMING', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1124', 'SLING / BANDAGE', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1125', 'SONOTROMBOLISIS', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1126', 'SPACE MAINTAINER CEKAT', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1127', 'SPACE MAINTAINER LEPASAN', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1128', 'SPACE MAINTAINER LEPASAN FUNCTIONAL GIGI BERIKUTNYA', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1129', 'SPACE MAINTAINER LEPASAN FUNCTIONAL GIGI PERTAMA', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1130', 'SPACE REGAINER CEKAT', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1131', 'SPACE REGAINER LEPASAN', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1132', 'SPALK HIDUNG', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1133', 'SPEECH TERAPI', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1134', 'SPILNTING FRAKTUR', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1135', 'SPIROMETRI', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1137', 'SPIROMETRI + DLCO', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1138', 'SPLINTING FIBER PER REGIO', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1139', 'SPLINTING HIDUNG', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1140', 'SPLINTING NASAL', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1141', 'SPOELING PIG TAIL', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1142', 'SPONDILOTOMI', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1143', 'SPONTAN BRACHT', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1144', 'SPOOLING CHATETER POST TUR/B/P', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1145', 'SPOOLING KATETER - PER EPISODE', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1146', 'SPOOLING KATHETER', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1147', 'SPT BRACHT', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1148', 'SPT GEMELLI', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1149', 'SPULING ANUS', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1150', 'SRAPPING BIOPSI', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1151', 'STREAK RETINOSCOPY', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1152', 'SUCTION PUMP - PER HARI', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1153', 'SUNTIK OBAT UMUM ( OBAT DARI RS)', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1154', 'SURFACE COOLING', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1155', 'TAMPON BELOG', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1156', 'TAMPON HIDUNG ANTERIOR', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1157', 'TAMPON TELINGA LUAR', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1158', 'TARSORAPPHY', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1159', 'TELEMENTRI', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1160', 'TENSI OCULI,VISUS SENTRALIS', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1161', 'TENSI OKULI', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1162', 'TENSILON TEST', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1163', 'TERAPI ADIKSI - PER TERAPI', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1164', 'TERAPI AKTIFITAS KELOMPOK - PER TERAPI', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1165', 'TERAPI BERMAIN (PLAY TERAPI)', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1166', 'TERAPI GESTALT - PER TERAPI', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1167', 'TERAPI KELUARGA - PER TERAPI', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1168', 'TERAPI KERJA - PER TERAPI', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1169', 'TERAPI MARITAL - PER TERAPI', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1170', 'TERAPI MEDIKA', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1171', 'TERAPI NUTRISI', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1172', 'TERAPI OKUPASIONAL - PER TERAPI', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1173', 'TERAPI PSICHOSEXUAL DYSFUNCTION - PER TERAPI', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1174', 'TERAPI SIMTOMATIK', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1175', 'TERAPI SUPPORTIVE - PER TERAPI', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1176', 'TERAPI SURFAKTAN SELAMA PERAWATAN', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1177', 'TERAPI VOKASIONAL - PER TERAPI', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1178', 'TES ALERGI - ANAK', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1179', 'TES ALERGI - DEWASA', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1180', 'TES ALERGI PARU', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1181', 'TES ALLERGI / SKIN TEST', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1182', 'TES AUDIOVISUAL RUANGAN', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1183', 'TES MENELAN', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1184', 'TES NEUROLOGI ANAK LENGKAP AWAL', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1185', 'TES NEUROLOGI ANAK LENGKAP LANJUTAN', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1186', 'TES NEUROREHABILITASI', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1187', 'TES PATEN SINEOURETRA', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1188', 'TES PATENSI VELOFARINGEAL', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1189', 'TES PERSPIRASI', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1190', 'TES PERTUMBUHAN AWAL', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1191', 'TES PERTUMBUHAN LANJUTAN', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1192', 'TES SUARA HIPERNASAL', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1193', 'TES SUPRESI DEKSAMETASONE', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1194', 'TES TOLERANSI GLUKOSA ORAL', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1195', 'TEST ALERGI ( PATCH TEST)', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1196', 'TEST ALERGI ( PRICK TEST)', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1197', 'TEST BENDER GESTALT', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1198', 'TEST BISIK', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1199', 'TEST CPM', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1201', 'TEST EPPS', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1202', 'TEST FLUOROSENT', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1203', 'TEST GRAFIS', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1204', 'TEST IST', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1206', 'TEST KEPRIBADIAN', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1207', 'TEST KESEIMBANGAN', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1209', 'TEST KREAPLIN', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1210', 'TEST PAULI', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1211', 'TEST PROVOKASI BRONCHIAL', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1212', 'TEST RORCHSACH', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1213', 'TEST SKRINING PERKEMBANGAN AWAL', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1214', 'TEST SKRINING PERKEMBANGAN LANJUTAN', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1215', 'TEST SKRINING PERKEMBANGAN REMAJA (GANGGUAN TIDUR)', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1216', 'TEST WAIS', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1217', 'TEST WARTEGG', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1218', 'TEST WISC', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1219', 'THORACENTESIS', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1220', 'THORACENTESIS GUIDING USG', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1221', 'THORACOCINTESIS', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1222', 'THROMBOPARESIS', 3818000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1223', 'THROMBOREDUCTION (THROMBOFARESIS)', 6598000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1224', 'TIMPANOMETRI', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1225', 'TINDAKAN KEGAWATAN PSIKIATRI', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1226', 'TINDAKAN PARABDOMINAL', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1227', 'TINDAKAN PERVAG.+TIND. PER.ABDOMINAL', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1228', 'TINDAKAN PERVAG.+TINDAKAN PERVAGINAL', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1229', 'TINDAKAN PTCA DENGAN STENT', 9502000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1230', 'TINDAKAN PTCA TANPA STENT', 9502000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1231', 'TINDIK', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1232', 'TONOMETRI APPLANASI', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1233', 'TOPIKAL ANTIBIOTIK PER REGIO', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1234', 'TRAKEOSTOMI', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1235', 'TRANCUTANEUS PACING', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1236', 'TRANFUSI', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1237', 'TRANSBRONKIAL BIOPSI', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1238', 'TRANSCRANIAL DOPLER (TCD) DIAGNOSTIK', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1239', 'TRANSCRANIAL DOPLER (TCD) EVALUASI EMBOLIK', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1240', 'TRANSESOFAGEAL ECHOCARDIOGRAFI', 2652000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1241', 'TRANSVENOUS PACING WIRE INSERTION', 6598000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1242', 'TREADMILL', 2210000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1243', 'TUBE THORACOSTOMY', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1244', 'TUMPATAN SEMENTARA', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1245', 'U - SLEB', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1246', 'URODINAMIK', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1247', 'UROFLOWMETRI', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1248', 'USCOM', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1251', 'USG MUSKULOSKELETAL', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1255', 'VAC TERAPI', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1256', 'VACUM EKSTRAKSI', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1257', 'VAGAL MANUVER', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1258', 'VAGINAL TOUCHER', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1259', 'VAKSINASI DEWASA', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1260', 'VELPEU VERBAN', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1261', 'VENA PUNCTURE (MDR TB)', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1262', 'VENA PUNKSI - PER HARI', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1263', 'VENA SEKSI', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1264', 'VENEER PORCELAIN', 2652000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1265', 'VENIPUNCTURE', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1266', 'VEP (VISUAL EVOKED POT\'AL )', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1267', 'VEXATIE JARI', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1268', 'VIRGIN ASSESSMENT', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1269', 'VISUM PERKOSAAN', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1270', 'VISUM, KLL', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1271', 'VISUS EVALUASI', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1272', 'WARMER TRANFUSION', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1273', 'WATER DEPRIVATION TEST', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1274', 'WEDGING ANAK', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1275', 'WEDGING DEWASA', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1276', 'WOOD LAMP', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1277', 'WOOD LAMP + KOH (DERMATOMI KOSIR)', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1278', 'WORTH FOUR DOT TEST', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1279', 'WOUND TOILET', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1280', 'MANAJEMEN CENTRAL VENOUS MONITORING - PER EPISODE', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1281', 'MANAJEMEN TOTAL PARENTERAL NUTRITION (TPN)', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1282', 'MANAJEMEN INTRAVASCULAR ARTERIAL PRESSURE\nMONITORING', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1283', 'MANAJEMEN SWANZ GANZ MONITORING PER EPISODE', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1284', 'MANAJEMEN TOTAL PARENTERAL NUTRITION ( TPN ) PER\nEPISODE', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1285', 'TATALAKSANA DAN MONITORING CONTINOUS\nINTRAARTERIAL BLOOD GAS (CIABG)', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1286', 'TATALAKSANA DAN MONITORING PULMUNARY ARTERIAL\nWEDGE PRESSURE (PAP) SWANZ GANZ', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1287', 'MANAJEMEN PASIEN KRITIS DENGAN POTENSI GAGAL ORGAN', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1288', 'MANAJEMEN PASIEN KRITIS DENGAN 1 ATAU 2 GAGAL ORGAN', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1289', 'MANAJEMEN INTRACRANIAL PRESSURE MONITORING - PER\nEPISODE', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1290', 'MANAJEMEN INOTROPES', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1291', 'TATALAKSANA DAN MONITORING PASIEN KRITIS DENGAN\nATAU LEBIH 3 GAGAL ORGAN', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1292', 'MANAJEMEN SEDATION / PARALYSIS / ANALGESIA - PER\nEPISODE', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1293', 'INTRA-AORTIC BALLOON PUMP ( IABP ) ? PER EPISODE', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1294', 'TATALAKSANA DAN MONITORING CONTINOUS REPLACEMENT\nRENAL THERAPY (CRRT)', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1295', 'TATALAKSANA INOTOPIC / CARDIAC OUTPUT PROBLEM', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1296', 'INJECTION OF STEROID', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1297', 'INJEKSI KASUS NYERI SEDANG (INTRARTIKULER ATAU\nEKSTRATIKULER)', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1298', 'REDUCTION OF INTUSSUSCEPTION OF ALIMENTARY TRACT', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1299', 'REPLACEMENT OF STENT (TUBE) IN BILIARY OR PANCREAT', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1300', 'CLOSED [PERCUTANEOUS] [NEEDLE] BIOPSY OF INTRA-ABD', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1301', 'REPLACEMENT OF CENTAL VENOUS CATHETER FOR HEMODIAL', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1302', 'SKIN FLAP SEDERHANA', 2210000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1303', 'CENTRAL VENOUS PRESSURE / DIALYSIS CATHETER INSERT', 2652000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1304', 'ENDOSCOPY OF LARGE INTESTINE THROUGH ARTIFICIAL ST', 3182000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1305', 'PULMONARY ARTERY CATHETER INSERTION / PICCO CATHET', 4582000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1306', 'PEMASANGAN KATHETER TEMPORER UNTUK DIALYSIS PADA V', 5498000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1307', 'REMOVAL OF INTRALUMINAL FOREIGN BODY FROM LARGE IN', 6598000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1308', 'REMOVAL OF INTRALUMINAL FOREIGN BODY FROM RECTUM\nA', 6598000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1309', 'ANGIOPLASTY DAN STENTING PADA RAS', 7918000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1310', '3 STEP TEST', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1311', 'ACUTE PERITONEAL DIALYSIS - 54.98', 7918000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1312', 'AFF BEBAT PENIS', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1313', 'AKSES INTRAOSSEUS -', 5498000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1314', 'ALAT RETENSI CLEAR PER RAHANG', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1315', 'ALAT RETENSI HAWLEY PER RAHANG', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1316', 'ANGKAT PERIODONTAL PACK', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1317', 'ANGKAT TAMPON HIDUNG ANTERIOR UNILATERAL /\nREMOVAL OF NASAL PACKING (2 SIDE) - 97.32', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1318', 'ANTROPOMETRI ( BB, PB, LK, LL) - 89.07', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1319', 'APUS HIDUNG / OTHER DIAGNOSTIC PROCEDURES ON NOSE\n(NASAL SWAB) - 21.29', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1320', 'APUS TELINGA / OTHER DIAGNOSTIC PROCEDURES ON\nEXTERNAL EAR (EAR SWAB) - 18.19', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1321', 'APUS TENGGOROK / OTHER DIAGNOSTIC PROCEDURES ON\nPHARYNX (FARING SWAB) - 29.19', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1322', 'ASPIRASI ABSES - 86.01', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1323', 'ASPIRASI SEROMA - 86.01', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1324', 'ASSESSMENT OF: OTHER PERIPHERAL VESSELS VESSELS OF\nARM(S) VESSELS OF LEG(S)', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1325', 'ASUHAN KEPERAWATAN MINIMAL CARE PER HARI', 100000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1326', 'ASUHAN KEPERAWATAN PARTIAL CARE PER HARI', 125000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1327', 'ASUHAN KEPERAWATAN TOTAL CARE PER HARI', 150000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1328', 'ASUHAN NUTRISI PEDIATRI DENGAN PENYAKIT TERTENTU -', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1329', 'BAKER?S CYST MANUAL (TANPA PANDUAN)', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1330', 'BIOPSI PLEURA - 34.24', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1331', 'BODY MEASUREMENT - 93.07', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1332', 'BOTULINUM TOXIN INJECTION ( 26 - 50 IU)', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1333', 'BOTULINUM TOXIN INJECTION ( 51 ? 100 IU)', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1334', 'BOTULINUM TOXIN INJECTION (< 10 IU)', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1335', 'BOTULINUM TOXIN INJECTION 10 ? 25 IU', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1336', 'BOTULINUM TOXIN INJECTION GUIDED EMG', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1337', 'BOTULINUM TOXIN INJECTION GUIDED USG', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1338', 'BRAIN AUDITORY STIMULATION', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1339', 'BRAIN COGNITIVE STIMULATION', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1340', 'BRAIN DYNAMIC MIND CONDITIONING (HYPNOTHERAPY)', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1341', 'BRAINWAVE MODULATION (AUDITORI, VISUAL)', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1342', 'BRONCHOSCOPY DAN TOILETING TRAKEOSTOMI PADA PASIEN\nKRITIS - 33.22;96.55', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1343', 'CANALITH REPOSITIONAL THERAPY (CRT) / REHABILITATION,\nNOT ELSEWHERE CLASSIFIED - 93.89', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1344', 'CARDIAC OUTPUT STUDY NON INVASIVE AND MANAGEMENT\n(TERMASUK USCOM, ICON, DSB) - 88.72', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1345', 'CARDIOPULMONARY RESUSCITATION (TERMASUK INTUBASI) DAN ADVANCED LIFE SUPPORT PASIEN KRITIS - 99.60;96.04', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1346', 'CARPAL TUNNEL SYNDROME MANUAL (TANPA PANDUAN)', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1347', 'CAUDAL BLOCK - 03.91', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1348', 'CAUDAL BLOCK CONTINUOUS - 03.90', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1349', 'CENTRAL VENOUS DIALYSIS CATHETER INSERTION TANPA\nUSG PADA PASIEN KRITIS - 38.95', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1350', 'CENTRAL VENOUS INSERTION WITH USG PADA PASIEN KRITIS\n38.90', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1351', 'CENTRAL VENOUS CATHETER INSERTION TANPA USG PADA\nPASIEN KRITIS - 38.93', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1352', 'CENTRAL VENOUS DYALISIS CATHETER INSERTION WITH USG\nPADA PASIEN KRITIS - 38.90', 2210000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1353', 'CENTRAL VENOUS PRESSURE MONITORING - 89.62', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1354', 'CETAK PADA PASIEN DENGAN FRAKTUR / HANDICAPPED PER\nRAHANG', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1355', 'CHORDOTOMY - 03.21', 7918000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1356', 'CIC/EDUKASI CIC', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1357', 'CIMT (CONSTRAINT MOVEMENT THERAPY)', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1358', 'CLOSED REDUCTION OF TEMPOROMANDIBULAR DISLOCATION\n- 76.93', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1359', 'CONSULTATION, DESCRIBED AS COMPREHENSIVE - 89.07', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1360', 'CONTINOUS RENAL REPLACEMENT THERAPY (CRRT) PASIEN\nKRITIS (PER PRESKRIPSI) - 39.95', 7918000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1361', 'CORE BIOPSI PARU - 33.26', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1362', 'CPR - 99.6', 2210000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1363', 'CRANIAL NERVE RADIOFREQUENCY (RF) - 04.2', 4582000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1364', 'CRANIAL NERVE REGENERATIVE PAIN THERAPY - 04.81;03.91', 3182000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1365', 'CRANIAL NERVE TEST BLOCK - 04.81;03.91', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1366', 'CRYO SURGERY BESAR - 86.3', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1367', 'CRYO SURGERY KECIL - 86.3', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1368', 'CRYO SURGERY SEDANG - 86.3', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1369', 'CUCI KANUL TRAKEOSTOMI PADA MUCOUS PLUG / OTHER IRRIGATION OF WOUND (TRACHEA) - 96.59', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1370', 'CUCI LUKA (OPERASI HIDUNG / TELINGA) / OTHER IRRIGATION OF WOUND (HEAD AND NECK) - 96.59', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1371', 'DE QUERVAIN SYNDROME MANUAL (TANPA PANDUAN)', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1372', 'DEBRIDEMANT LUKA PASCA PDT - 96.56;33.22', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1373', 'DEEP BRAIN STIMULATION PROGRAMMING', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1374', 'DEKANULASI PASCA PDT - 96.57;33.22', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1375', 'DESENSITIZATION - 99.12', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1376', 'DESENSITIZATION - 99.12', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1377', 'DESENSITIZATION ADS (BESREDKA ADS) - 99.12', 7918000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1378', 'DESENSITIZATION ATS (BESREDEKA ATS) - 99.12', 7918000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1379', 'DILATASI URETRA', 2210000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1380', 'DIRECT VIDEOLARYNGOSCOPE - 96.04', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1381', 'DOUBLE LUMEN TUBE INTUBATION PADA PASIEN KRITIS -\n96.05', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1382', 'DRY NEEDLING (PAKET 1)', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1383', 'DRY NEEDLING (PAKET 2)', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1384', 'DRY NEEDLING (PAKET 3)', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1385', 'EKSTRAKSI / IRIGASI SERUMEN BILATERAL / IRRIGATION OF\nEAR (BILATERAL) - 96.52', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1386', 'EKSTRAKSI / IRIGASI SERUMEN DENGAN PENYULIT BILATERAL\n/ IRRIGATION OF EAR (COMPLICATED BILATERAL) - 96.52', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1387', 'EKSTRAKSI / IRIGASI SERUMEN DENGAN PENYULIT UNILATERAL / IRRIGATION OF EAR (COMPLICATED\nUNILATERAL) - 96.52', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1388', 'EKSTRAKSI / IRIGASI SERUMEN UNILATERAL / IRRIGATION OF\nEAR (UNILATERAL) - 96.52', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1389', 'EKSTRAKSI BENDA ASING FARING DENGAN ENDOSKOPI / REMOVAL OF INTRALUMINAL FOREIGN BODY FROM PHARYNX\nWITHOUT INCISION (WITH ENDOSCOPY) - 98.13', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1390', 'EKSTRAKSI BENDA ASING HIDUNG /REMOVAL OF INTRALUMINAL FOREIGN BODY FROM NOSE WITHOUT\nINCISION - 98.12', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1391', 'EKSTRAKSI BENDA ASING MULUT /REMOVAL OF INTRALUMINAL FOREIGN BODY FROM MOUTH WITHOUT\nINCISION - 98.01', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1392', 'EKSTRAKSI BENDA ASING TELINGA / REMOVAL OF INTRALUMINAL FOREIGN BODY FROM EAR WITHOUT INCISION\n(COMPLICATED) - 98.11', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1393', 'EKSTRAKSI BENDA ASING TELINGA DENGAN PENYULIT / REMOVAL OF INTRALUMINAL FOREIGN BODY FROM EAR\nWITHOUT INCISION - 98.11', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1394', 'EKSTRAKSI BENDA ASING TONSIL-FARING / REMOVAL OF INTRALUMINAL FOREIGN BODY FROM PHARYNX WITHOUT\nINCISION - 98.13', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1395', 'EKSTRAKSI DENGAN FLAP', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1396', 'EKSTUBASI PIPA ENDOTRAKEAL PASIEN KRITIS - 96.04', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1397', 'ENDOKSOPI TELINGA / OTHER DIAGNOSTIC PROCEDURES ON\nEXTERNAL EAR (ENDOSCOPE) - 18.19', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1398', 'ENTERAL INFUSION OF CONCENTRATED NUTRITIONAL\nSUBSTANCES - 99.6', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1399', 'EPIDURAL BLOCK - 03.91', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1400', 'EPIDURAL BLOCK CONTINUOUS - 03.90', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1401', 'ESWL', 9502000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1402', 'EUS-FNA', 2210000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1403', 'EXCHANGE TRANSFUSION PADA PASIEN KRITIS - 99.01', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1404', 'FASCITIS PLANTARIS MANUAL (TANPA PANDUAN)', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1405', 'FEMORAL ENTRAPMENT MANUAL (TANPA PANDUAN)', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1406', 'FIBER POST', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1407', 'FISIOTERAPI DADA - 93.18', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1408', 'FIT AND PROPER TEST', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1409', 'FIXED LINGUAL RETAINER PER RAHANG', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1410', 'FLEXIBLE ENDOSCOPIC EVALUATION OF SWALLOWING / OTHER DIAGNOSTIC PROCEDURES ON PHARYNX (FEES) - 29.19', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1411', 'FLEXIBLE VIDEOLARYNGOBRONCOSCOPY - 96.05', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1412', 'FORCED DUCTION TEST, ACTIVE FORCE GENERATION &\nSACCADIC', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1413', 'FRENEKTOMI LABIAL', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1414', 'FRENEKTOMI LINGUL', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1415', 'FUNGSI LUHUR BEDSIDE', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1416', 'FUNGSI LUHUR DIAGNOSTIC', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1417', 'FUNGSI LUHUR GLOBAL (MMSE, MOCA, VCAT)', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1418', 'FUNGSI LUHUR GLOBAL + CERAD', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1419', 'FUNGSI LUHUR LEGAL', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1420', 'FUNGSI LUHUR OKUPASIONAL', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1421', 'FUNGSI LUHUR TERAPEUTIK', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1422', 'GANTI NGT / REPLACEMENT NASOGRASTIC TUBE - 97.01', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1423', 'GANTI VERBAN / REPLACEMENT OF WOUND PACKING OR\nDRAIN - 97.16', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1424', 'GLENO-HUMERAL C ARM (DI RUANG OPERASI)', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1425', 'GOLFER ELBOW MANUAL (TANPA PANDUAN)', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1426', 'GREAT OCCIPITAL NERVE BLOCKADE (GONB)', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1427', 'GUYON SYNDROME MANUAL (TANPA PANDUAN)', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1428', 'HESS SCREEN TEST', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1429', 'HIFEM', 6598000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1430', 'HIPODERMOKLISIS / TERAPI SUBKUTAN - 99.29', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1431', 'IMUNISASI PCV - 99.55', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1432', 'IMUNISASI POLIO (IPV, OPV) - 99.41', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1433', 'IMUNISASI ROTAVIRUS - 99.55', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1434', 'IMUNOTERAPI / IMMUNIZATION FOR ALLERGY - 99.12', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1435', 'INCISI EKSTRA ORAL', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1436', 'INCISI INTRA ORAL', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1437', 'INFUSION OF VASOPRESSOR AGENT - 00.17', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1438', 'INJECTION OF THERAPEUTIC SUBSTANCE INTO\nTEMPOROMANDIBULAR JOINT.', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1439', 'INJECTION SYMPATHETIC NERVE/ GANGLION', 7918000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1440', 'INJEKSI AGEN BIOLOGIS - 99.28', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1441', 'INJEKSI AGEN PRP/PRF - 86.02', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1442', 'INJEKSI ANTIDOTUM PADA KERACUNAN - 99.16', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1443', 'INJEKSI HISTOAKRIL', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1444', 'INJEKSI IMUNOTERAPI - 99.12', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1445', 'INJEKSI INTRALESI - 83.98', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1446', 'INJEKSI IVIG', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1447', 'INJEKSI OBAT ANTI HEMOFILIA (TRANSFUSION OF\nCOAGULATION FACTORS) - 99.06', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1448', 'INJEKSI OBAT KHUSUS GCSF (TRANSFUSSION OF\nGRANULOCYTES) - 99.09', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1449', 'INJEKSI/KOREKSI INFUS ELEKTROLIT - 99.18', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1450', 'INSERT GASTRIC TUBE (DECOMPRESION) - 96.07', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1451', 'INSERT RECTAL TUBE - 96.09', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1452', 'INSISI DENGAN DRAINASE - 86.04', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1453', 'INTER PROXIMAL REDUCTION', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1454', 'INTERFASCIA NERVE BLOCK - 04.81', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1455', 'INTERFASCIA NERVE BLOCK CONTINUOUS - 03.90', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1456', 'INTRAARTIKULER 1 MANUAL (TANPA PANDUAN)', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1457', 'INTRAARTIKULER 2 MANUAL (TANPA PANDUAN)', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1458', 'INTRACOMPARTEMENT NERVE BLOCK - 04.81', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1459', 'INTRACOMPARTEMENT NERVE BLOCK CONTINUOUS - 03.90', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1460', 'INTRACRANIAL OXYGEN MONITORING (NIRS) PER 24 JAM -\n01.16', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1461', 'INTRACRANIAL PRESSURE MONITOR PASIEN KRITIS (PER HARI)\n- 01.19', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1462', 'INTRADERMAL SKIN TEST - 99.1', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1463', 'INTRAOPERATIVE MONITORING DENGAN ALAT - 794.02', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1464', 'INTRAOSSEUS ACCESS PADA PASIEN KRITIS - 99.18', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1465', 'INTRAVENOUS TROMBOLITIK - 99.1', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1466', 'INTUBASI PIPA ENDOTRAKEAL PASIEN KRITIS - 96.04', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1467', 'IOM HNP LUMBAL SAKRAL', 5498000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1468', 'IOM HNP SERVIKAL', 5498000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1469', 'IOM PLEKSUS BRACHIALIS/N. FASIALIS', 5498000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1470', 'IOM SKOLIOSIS', 5498000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1471', 'IOM TUMOR FOSA ANTERIOR KORTIKAL MAPPING', 5498000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1472', 'IOM TUMOR FOSA POSTERIOR', 5498000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1473', 'IOM TUMOR MEDULA SPINALIS', 5498000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1474', 'IRIGASI / CUCI HIDUNG / LAVAGE OF NOSE - 96.53', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1475', 'IVES', 2652000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1476', 'KARDIOVERSI PADA PASIEN KRITIS - 99.62', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1477', 'KAUSTIK FARING / OTHER EXCISION OR DESTRUCTION OF LESION OR TISSUE OF PHARYNX (LARYNX CAUSTIC) - 29.39', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1478', 'KAUSTIK HIDUNG EPISTAXIS / CONTROL OF EPISTAXIS BY\nCAUTERIZATION (AND PACKING) - 21.03', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1479', 'KONSELING ( SECARA UMUM ) MEDIKOLEGAL - 65.40', 2652000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1480', 'KONSELING KEHAMILAN DENGAN IMS - 65.45', 2652000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1481', 'LANG TEST', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1482', 'LARYNGOSCOPY AND OTHER TRACHEOSCOPY - 31.42', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1483', 'LASER BEAM - 86.3', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1484', 'LASER EXCIMER BESAR - 99.82', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1485', 'LASER EXCIMER BESAR - 99.82', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1486', 'LASER EXCIMER KECIL - 99.82', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1487', 'LASER EXCIMER KECIL - 99.82', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1488', 'LASER EXCIMER SEDANG - 99.82', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1489', 'LASER EXCIMER SEDANG - 99.82', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1490', 'LASER FOTONA (ND:YAG - ER:YAG) - BESAR - 86.3', 2210000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1491', 'LASER FOTONA (ND:YAG - ER:YAG) - KECIL - 86.3', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1492', 'LASER FOTONA (ND:YAG - ER:YAG) - SEDANG - 86.3', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1493', 'LASER HAIR REMOVAL - BESAR - 86.3', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1494', 'LASER HAIR REMOVAL - KECIL - 86.3', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1495', 'LASER HAIR REMOVAL - SEDANG - 86.3', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1496', 'LASER IPL - BESAR - 86.3', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1497', 'LASER IPL - KECIL - 86.3', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1498', 'LASER IPL - SEDANG - 86.3', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1499', 'LASER ND-YAG LONG PULSE - BESAR - 86.3', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1500', 'LASER ND-YAG LONG PULSE - KECIL - 86.3', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1501', 'LASER ND-YAG LONG PULSE - SEDANG - 86.3', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1502', 'LASER ND-YAG Q-SWITCHED - BESAR - 86.3', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1503', 'LASER ND-YAG Q-SWITCHED - KECIL - 86.3', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1504', 'LASER ND-YAG Q-SWITCHED - SEDANG - 86.3', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1505', 'LEPAS CHEST TUBE - WSD - 97.41', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1506', 'LEVODOPA CHALLENGE TEST', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1507', 'LUMBAL PUNKSI DIAKDOSTIK', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1508', 'LUMBAL PUNKSI TERAPETIK', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1509', 'LUMBAR FACET JOINT INJECTION C ARM (DI RUANG OPERASI)', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1510', 'LUMBAR INTERLAMINAR INJECTION C ARM (DI RUANG\nOPERASI)', 3182000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1511', 'LUMBAR MEDIAN BRANCH INJECTION C ARM (DI RUANG\nOPERASI)', 3182000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1512', 'LUMBAR SYMPATHETIC INJECTION C ARM (DI RUANG\nOPERASI)', 7918000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1513', 'LUMBAR TRANSFORAMINAL INJECTION C ARM (DI RUANG\nOPERASI)', 7918000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1514', 'MAHKOTA PORCELAINE EMAX', 3818000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1515', 'MAHKOTA PORCELAINE ZIRCONIA', 4582000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1516', 'MANAJEMEN PERIOPERATIF PADA PASIEN GERIATRI', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1517', 'MANAJEMEN PREOPERATIF - 72.84', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1518', 'MANAJEMEN TOTAL PARENTERAL NUTRITION (TPN) - 99.15', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1519', 'MASSIVE TRANFUSION - 99.0', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1520', 'MEDIKAMEN DENGAN PERIODONTAL PACK', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1521', 'MIKROSKOP TELINGA LUAR BIILATERAL / OTHER DIAGNOSTIC PROCEDURES ON EXTERNAL EAR (BILATERAL) - 18.19', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1522', 'MIKROSKOP TELINGA LUAR UNILATERAL / OTHER DIAGNOSTIC PROCEDURES ON EXTERNAL EAR (UNILATERAL) - 18.19', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1523', 'MIKROSKOP TELINGA TENGAH BIILATERAL / OTHER\nDIAGNOSTIC PROCEDURES ON MIDDLE AND INNER EAR (BILATERAL) - 20.39', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1524', 'MIKROSKOP TELINGA TENGAH UNILATERAL / OTHER\nDIAGNOSTIC PROCEDURES ON MIDDLE AND INNER EAR (UNILATERAL) - 20.39', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1525', 'MIRROR TERAPI', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1526', 'MULLER MANUVER / OTHER DIAGNOSTIC PROCEDURES ON\nPHARYNX (MULLER MANUVER) - 29.19', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1527', 'MUSCULOSCELETAL (BURSA, TENDON, JARINGAN LUNAK,\nSENDI, OTOT, LIGAMENT) INJECTION LOCAL ANAESTHESIA + SUBSTANCE - 81.92;83.98;83.97', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1528', 'MUSCULOSKELETAL PERIFERAL NERVE INJECTION OF LOCAL\nANAESTHESIA + SUBSTANCE - 04.81;03.91', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1529', 'MUSCULOSKELETAL PERIFERAL NERVE PULSE\nRADIOFREQUENCY (PRF) - 04.2', 5498000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1530', 'MUSCULOSKELETAL PERIFERAL NERVE REGENERATIVE PAIN\nTHERAPY - 81.92;83.98', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1531', 'MUSCULOSKELETAL PERIFERAL NERVE TEST BLOCK -\n04.81;03.91', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1532', 'NASOENDOSCOPY / OTHER DIAGNOSTIC PROCEDURES ON\nNASAL SINUSES - 22.19', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1533', 'NASOENDOSKOPI FLEKSIBEL / OTHER DIAGNOSTIC\nPROCEDURES ON NASAL SINUSES (FLEXIBLE NASOENDOSCOPY) - 22.19', 287000, 'TINDAKAN NON OPERATIF'); +INSERT INTO `tarif_rs` (`ID_Tarif_RS`, `Tindakan_RS`, `Tarif_RS`, `Kategori_RS`) VALUES +('R.TNO.1534', 'NASOOROGRASTRIC CATHERTER INSERTION - 96.6', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1535', 'ND YAG LASER PADA PASIEN ANAK', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1536', 'NEEDLE THORACOCENTESIS - 96.72', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1537', 'NEURAXIAL ANALGESIA TERMASUK ILA, DLL - 03.91', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1538', 'NEUROAKSIAL CERVICAL NEUROLYSIS - 05.32', 3818000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1539', 'NEUROAKSIAL CERVICAL RADIOFREQUENCY - 04.2', 5498000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1540', 'NEUROAKSIAL CERVICAL REGENERATIVE PAIN THERAPY -\n81.92;83.98', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1541', 'NEUROAKSIAL CERVICAL TEST BLOCK - 04.81;03.91', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1542', 'NEUROAKSIAL LUMBAL NEUROLYSIS - 05.32', 3818000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1543', 'NEUROAKSIAL LUMBAL RADIOFREQUENCY - 04.2', 5498000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1544', 'NEUROAKSIAL LUMBAL REGENERATIVE PAIN THERAPY -\n81.92;83.98', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1545', 'NEUROAKSIAL LUMBAL TEST BLOCK - 04.81;03.91', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1546', 'NEUROAKSIAL SACROCOXIGEAL NEUROLYSIS - 05.32', 3818000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1547', 'NEUROAKSIAL SACROCOXIGEAL RADIOFREQUENCY - 04.2', 5498000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1548', 'NEUROAKSIAL SACROCOXIGEAL REGENERATIVE PAIN THERAPY\n- 81.92;83.98', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1549', 'NEUROAKSIAL SACROCOXIGEAL TEST BLOCK - 04.81;03.91', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1550', 'NEUROAKSIAL THORACAL NEUROLYSIS - 05.32', 3818000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1551', 'NEUROAKSIAL THORACAL RADIOFREQUENCY - 04.2', 5498000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1552', 'NEUROAKSIAL THORACAL REGENERATIVE PAIN THERAPY -\n81.92;83.98', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1553', 'NEUROAKSIAL THORACAL TEST BLOCK - 04.81;03.91', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1554', 'NEUROLOGY MUSIC THERAPY', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1555', 'NEUROMUSCULAR TAPPING (<2.5 M)', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1556', 'NEUROMUSCULAR TAPPING (> 2.5 M)', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1557', 'NEURORESTORASI (DIAGNOSTIK)', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1558', 'NEURORESTORASI ROBOTIK', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1559', 'NIGHT GUARD', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1560', 'NON INVASIVE MECH VENT (CPAP, NIPPV, NEOPUFF) 24 JAM -\n93.90', 4582000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1561', 'NON MECHAN RESUSCITATION (NEONATUS RESUSCITATION) -\n93.93', 4582000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1562', 'NON-INVASIVE MECHANICAL VENTILATION - 93.90', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1563', 'NOT - PEMERIKSAAN VERTIGO', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1564', 'NOT - TERAPI REHABILITATIVE VESTIBULAR', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1565', 'NOT ? TERAPI REPOSISI OTOLITH', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1566', 'OCCLUSAL ADJUSMENT RA RB', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1567', 'OPEN THORACOCENTESIS - 96.72', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1568', 'OTHER PHOTOTHERAPY - 99.83', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1569', 'PASANG ENDOSKOPI DENGAN ENDOSKOPI / INSERTION OF OTHER (NASO-)GASTRIC TUBE (WITH ENDOSCOPY) - 96.07', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1570', 'PASANG GUEDEL OPA/NPA PADA PASIEN KRITIS - 96.02', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1571', 'PASANG TAMPON ANTERIOR HIDUNG BILATERAL / CONTROL\nOF EPISTAXIS BY ANTERIOR NASAL PACKING (BILATERAL) - 21.01', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1572', 'PASANG TAMPON ANTERIOR HIDUNG UNILATERAL / CONTROL\nOF EPISTAXIS BY ANTERIOR NASAL PACKING (UNILATERAL) - 21.01', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1573', 'PASANG TAMPON POSTERIOR HIDUNG / CONTROL OF EPISTAXIS BY POSTERIOR (AND ANTERIOR) PACKING - 21.02', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1574', 'PASANG TAMPON TELINGA BILATERAL / PACKING OF\nEXTERNAL AUDITORY CANAL (BILATERAL) - 96.11', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1575', 'PASANG TAMPON TELINGA UNILATERAL / PACKING OF\nEXTERNAL AUDITORY CANAL (UNILATERAL) - 96.11', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1576', 'PATCH TEST TELINGA BILATERAL / OTHER DIAGNOSTIC\nPROCEDURES ON EXTERNAL EAR (PATCH TEST BILATERAL) - 18.19', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1577', 'PATCH TEST TELINGA UNILATERAL / OTHER DIAGNOSTIC\nPROCEDURES ON EXTERNAL EAR (PATCH TEST UNILATERAL) - 18.19', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1578', 'PEMAKAIAN OKSIGEN VIA ETT PER HARI', 200000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1579', 'PEMAKAIAN OKSIGEN VIA NASAL CANULE PER HARI', 25000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1580', 'PEMAKAIAN OKSIGEN VIA NRBM PER HARI', 50000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1581', 'PEMAKAIAN OKSIGEN VIA SIMPLE MASK PER HARI', 50000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1582', 'PEMASANGAN BLANKET PADA PASIEN KRITIS - 93.35', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1583', 'PEMASANGAN CATHETER DOUBLE LUMEN (CDL) UNTUK\nDIALISI, PLASMAFERESIS DENGAN USG -', 5498000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1584', 'PEMASANGAN CATHETER DOUBLE LUMEN (CDL) UNTUK\nDIALYSIS, PLASMAFERESIS -', 5498000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1585', 'PEMASANGAN CVC - 38.97', 2210000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1586', 'PEMASANGAN EXTRA CORPOREAL MEMBRAN OXYGEN\n(ECMO)/FILTER PADA PASIEN KRITIS - 39.65', 9502000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1587', 'PEMASANGAN KATETER URIN PADA PASIEN KRITIS - 59.8', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1588', 'PEMASANGAN MONITORING INVASIF KONTINYU (PICCO)/24\nJAM PADA PASIEN KRITIS - 89.68', 4582000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1589', 'PEMASANGAN NGT PADA PASIEN KRITIS - 96.07', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1590', 'PEMASANGAN PICC - 38.93', 5498000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1591', 'PEMASANGAN PICC DENGAN GUIDE USG -', 5498000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1592', 'PEMASANGAN PULMONARI ARTERI CATHETER (SWAN-GANS)\nPADA PASIEN KRITIS - 89.63', 3818000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1593', 'PEMBERIAN IMUNOTERAPI (NON STEROID)', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1594', 'PEMBERIAN NUTRISI ENTERAL/SONDE VIA NGT PADA PASIEN\nKRITIS - 96.60', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1595', 'PEMBERIAN STEROID PULSE DOSES', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1596', 'PEMBERIAN TERAPI BISFOSFONAT DAN OBAT RESORPTIF\nLAINNYA - 93.37', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1597', 'PEMBERIAN TERAPI DMARD BIOLOGIK (SUBKUTAN) - 00.18', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1598', 'PEMBERIAN TERAPI INTRAVENA DMARD BIOLOGIK - 00.18', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1599', 'PEMERIKSAAN BASAH - 91.44', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1600', 'PEMERIKSAAN DAN PENCEGAHAN KOMPLIKASI IMOBILITAS', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1601', 'PEMERIKSAAN DAN TALAKSANA PALIATIF GERIATRI', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1602', 'PEMERIKSAAN DUKUNGAN BAGI CAREGIVER', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1603', 'PEMERIKSAAN DUKUNGAN SOSIAL', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1604', 'PEMERIKSAAN ELDER MISTREATMENT', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1605', 'PEMERIKSAAN FRAILITY (STATUS KERENTANAN)', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1606', 'PEMERIKSAAN GERIATRIC KOMPREHENSIF', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1607', 'PEMERIKSAAN HAPUSAN KULIT - 70.01', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1608', 'PEMERIKSAAN IADL-ADL', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1609', 'PEMERIKSAAN INKONTINENSIA URIN', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1610', 'PEMERIKSAAN INKONTINESIA ALVI', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1611', 'PEMERIKSAAN KLINIS NEUROLOGI UMUM', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1612', 'PEMERIKSAAN KUALITAS HIDUP', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1613', 'PEMERIKSAAN MONOFILAMEN - 92.26', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1614', 'PEMERIKSAAN NYERI', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1615', 'PEMERIKSAAN PACHYMETRY', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1616', 'PEMERIKSAAN PERAWATAN PATENSI PASCA PDT -\n96.55;33.22', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1617', 'PEMERIKSAAN POSISI BOLA MATA (COVER, UNCOVER,\nKRIMSKY, HIRSCHBERG, ACT, PCT)', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1618', 'PEMERIKSAAN SARKOPENIA', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1619', 'PEMERIKSAAN SINDROMA DELIRIUM AKUT', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1620', 'PENANGANAN KEDARURATAN DELIRIUM / ACITE CONFUSION', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1621', 'PENDAMPINGAN AKHIR HAYAT', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1622', 'PENDAMPINGAN/MONITORING KARIOVASKULAR DAN/ATAU PEMBACAAN HASIL PEMERIKSAAN NUKLIR JANTUNG - 88.72', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1623', 'PENDAMPINGAN/MONITORING KARIOVASKULAR DAN/ATAU PEMBACAAN HASIL PEMERIKSAAN RADIOLOGI ( CT SCAN ANGIOGRAFI KORONER DAN CT SCAN JANTUNG) - 88.72', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1624', 'PENDAMPINGAN/MONITORING KARIOVASKULAR DAN/ATAU\nPEMBACAAN HASIL PEMERIKSAAN RADIOLOGI ( MRI JANTUNG) - 88.72', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1625', 'PENGANGKATAN KATETER SALURAN EMPEDU - 51.95', 2210000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1626', 'PENGANGKATAN TUBE DRAINAGE INTRAABDOMEN - 54.91', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1627', 'PENGELUPASAN KIMIAWI BHA (SA) - 86.24', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1628', 'PENGELUPASAN KIMIAWI BIBIR - 86.24', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1629', 'PENGELUPASAN KIMIAWI DADA - 86.24', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1630', 'PENGELUPASAN KIMIAWI KELOPAK MATA ATAS - 86.24', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1631', 'PENGELUPASAN KIMIAWI KELOPAK MATA BAWAH - 86.24', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1632', 'PENGELUPASAN KIMIAWI KETIAK - 86.24', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1633', 'PENGELUPASAN KIMIAWI LEHER - 86.24', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1634', 'PENGELUPASAN KIMIAWI PUNGGUNG - 86.24', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1635', 'PENGELUPASAN KIMIAWI PUNGGUNG KAKI - 86.24', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1636', 'PENGELUPASAN KIMIAWI PUNGGUNG TANGAN - 86.24', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1637', 'PENGELUPASAN KIMIAWI SELANGKANGAN - 86.24', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1638', 'PENGELUPASAN KIMIAWI TUNGKAI ATAS - 86.24', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1639', 'PENGELUPASAN KIMIAWI TUNGKAI BAWAH - 86.24', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1640', 'PENGGANTIAN BRACKET / BUCCAL TUBE BARU', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1641', 'PENGGANTIAN KATETER NEFROSTOMY', 2210000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1642', 'PENGGANTIAN KATETER SALURAN EMPEDU - 51.95', 3818000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1643', 'PENGGANTIAN KATETER UCS (URETEROKUTANEOSTOMI)', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1644', 'PENGGANTIAN MOLAR BAND BARU', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1645', 'PENILAIAN PSIKOMETRIK UNTUK AXIETAS, DEPRESI, GANGGUAN PSIKOSOMATIK, KUALITAS HIDUP (HADS, BDI,\nDASS, SCL 90, HRS DLL) - 94.09', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1646', 'PENILAIAN STATUS ANTROPOMETRI ANAK - 93.07', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1647', 'PENINGGIAN GIGIT', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1648', 'PENUTUPANSTROMA TRAKEOSTOMI / CLOSURE OF EXTERNAL\nFISTULA OF TRACHEA - 31.72', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1649', 'PERAWATAN DENTIN HIPERSENSITIF PER REGIO', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1650', 'PERCUTANEUS DENERVATION OF FACET - 03.96', 3182000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1651', 'PERCUTANEUS DILATATION TRACHEOSTOMY (PDT) PADA\nPASIEN KRITIS - 31.1', 3182000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1652', 'PERIBULBAR BLOCK - 04.81', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1653', 'PERIFERAL NERVE BLOCK - 04.81', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1654', 'PERIFERAL NERVE BLOCK CONTINUOUS - 04.81', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1655', 'PERIFERAL NERVE HYDRODESECTION - 03.6', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1656', 'PERIFERAL NERVE NEUROLYSIS - 04.2', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1657', 'PERIOPERATIVE AUTOLOGOUS TRANSFUSION OF WHOLE BLOOD OR BLOOD COMPONENTS; INTRAOPERATIVE BLOOD COLLECTION; POSTOPERATIVE BLOOD COLLECTION; SALVAGE -\n99.00', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1658', 'PERIPHERAL MAGNETIC STIMULATION', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1659', 'PERONEAL ENTRAPMENT MANUAL (TANPA PANDUAN)', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1660', 'PERSIAPAN TERAPI KANKER USIA LANJUT', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1661', 'PHOTOTHERAPY - BLUE LIGHT - 99.82', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1662', 'PHOTOTHERAPY - RED LIGHT - 99.82', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1663', 'PICC INSERTION TANPA/WITH USG PADA PASIEN KRITIS -\n39.90', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1664', 'PIRIFORMIS SYNDROME C ARM (DI RUANG OPERASI)', 2652000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1665', 'PLDD (PERCUTANEOUS LASER DISC DECOMPRESSION) - 80.59', 7918000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1666', 'POCUS DIAGNOSTIK JANTUNG PADA PASIEN KRITIS - 88.72', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1667', 'POCUS GINJAL PADA PASIEN KRITIS - 88.75', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1668', 'POCUS ABDOMEN PADA PASIEN KRITIS - 88.76', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1669', 'POCUS THORAKS DAN PARU PADA PASIEN KRITIS - 88.73', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1670', 'POPLITEAL ENTRAPMENT MANUAL (TANPA PANDUAN)', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1671', 'PRONE MECHANICAL VENTILATION - 96.70', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1672', 'PROSEDUR INTERVENSI NYERI NEUROMUSCULOSCELETAL\nDENGAN USG - 81.92;83.98;83.97', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1673', 'PROSEDUR INTERVENSI NYERI NEUROMUSCULOSCELETAL\nTANPA USG - 81.92;83.98;83.97', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1674', 'PROSEDUR RELEASE PERIFERAL NERVE INTRAPMENT -\n81.92;83.98', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1675', 'PROSEDUR TRIGGER POINT PAIN INJECTION -\n81.92;83.98;83.99', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1676', 'PRPP INJECTION C ARM (DI RUANG OPERASI)', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1677', 'PRPP INJECTION MANUAL (TANPA PANDUAN)', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1678', 'PSIKOTERAPI INDIVIDU PADA ANAK-ANAK MASALAH\nKESEHATAN MENTAL - 94.3', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1679', 'PUNGSI SENDI - 81.91', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1680', 'RADIOFREKUENSI LUMBOSACRAL C ARM (DI RUANG OPERASI)', 7918000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1681', 'RADIOFREKWENSI SERVIKAL C ARM (DI RUANG OPERASI)', 7918000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1682', 'RECRUITMENT MANUEVER - 96.72', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1683', 'REIMPLANTASI GIGI DENGAN BRACKET ANTERIOR', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1684', 'REINSERSI BRACKET LEPAS', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1685', 'REPETITIVE TRANSCRANIAL MAGNETIC STIMULATION\n(TERAPEUTIK)', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1686', 'REPETITIVE TRANSCRANIAL MAGNETIC STIMULATION\n(TERAPEUTIK) DENGAN ROBOTIK', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1687', 'RESEMENTASI BAND ORTO PER RAHANG', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1688', 'RESUSITASI PASIEN KRITIS DENGAN 1 ATAU 2 GAGAL ORGAN\n(SOFA SCORE 6 - 15 (PER HARI) - 93.93', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1689', 'RESUSITASI PASIEN KRITIS DENGAN 3 ATAU LEBIH GAGAL\nORGAN (SOFA SCORE > 15 (PER HARI) - 93.93', 1066000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1690', 'RESUSITASI PASIEN KRITIS DENGAN POTENSI GAGAL ORGAN\n(SOFA SCORE < 6 (PER HARI) - 93.93', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1691', 'RIGID VIDEOLARYNGOSCOPY - 96.04', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1692', 'SACRAL EPIDURAL INJECTION C ARM (DI RUANG OPERASI)', 7918000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1693', 'SACRAL TRANSFORAMINAL INJECTION C ARM (DI RUANG\nOPERASI)', 7918000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1694', 'SACROILIAC JOINT DYSFUNCTION C ARM (DI RUANG OPERASI)', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1695', 'SAKARIN TES', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1696', 'SCALLING PER RAHANG', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1697', 'SCALP BLOCK DENGAN USG - 04.81', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1698', 'SCALP BLOCK TANPA USG - 04.81', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1699', 'SCREENING RETINOPATHY OF PREMATURITY', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1700', 'SEDASI DILUAR KAMAR OPERASI - 89.50', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1701', 'SEDATION, PARALYSIS, ANALGESIA PASIEN PERAWATAN KRITIS\n- 99.21', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1702', 'SEDATION/ PARALYSIS/ ANALGESIA PADA PASIEN KRITIS (PER\nHARI) - 99.26;04.81', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1703', 'SEDIAAN BASAH - 91.44', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1704', 'SEDIAAN GIEMSA - 91.65', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1705', 'SEDIAAN GRAM - 91.61', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1706', 'SEDIAAN SCRAPPING ECTOPARASIT - 91.64', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1707', 'SERVIKAL FACET JOINT INJECTION C ARM (DI RUANG OPERASI)', 7918000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1708', 'SERVIKAL INTERLAMINAR INJECTION C ARM (DI RUANG\nOPERASI)', 7918000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1709', 'SERVIKAL MEDIAN BRANCH INJECTION C ARM (DI RUANG\nOPERASI)', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1710', 'SERVIKAL SYMPATHETIC INJECTION C ARM (DI RUANG\nOPERASI)', 7918000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1711', 'SINGLE PULSE TRANSCRANIAL MAGNETIC STIMULATION\n(DIAGNOSTIK)', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1712', 'SKIN AUGMENTATION - FILLER HA - BESAR - 86.93', 5498000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1713', 'SKIN AUGMENTATION - FILLER HA - KECIL - 86.93', 3818000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1714', 'SKIN AUGMENTATION - FILLER HA - SEDANG - 86.93', 4582000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1715', 'SKIN AUGMENTATION - FILLER PRF - BESAR - 86.93', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1716', 'SKIN AUGMENTATION - FILLER PRF - KECIL - 86.93', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1717', 'SKIN AUGMENTATION - FILLER PRF - SEDANG - 86.93', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1718', 'SKIN AUGMENTATION - FILLER PRP - BESAR - 86.93', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1719', 'SKIN AUGMENTATION - FILLER PRP - KECIL - 86.93', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1720', 'SKIN AUGMENTATION - FILLER PRP - SEDANG - 86.93', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1721', 'SKIN PRICK TEST / OTHER DIAGNOSTIC PROCEDURES ON SKIN\nAND SUBCUTANEOUS TISSUE - 86.19', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1722', 'SKIN PROVOCATION TEST - 86.19', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1723', 'SMELL TEST (TES AMBANG ALKOHOL) / OTHER DIAGNOSTIC\nPROCEDURES ON NOSE (SMELL TEST) - 21.29', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1724', 'SNIFFIN STICK TEST', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1725', 'SPINAL BLOOD PATCH - 03.95', 3182000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1726', 'SPINAL CORD STIMULATION - 03.93', 7918000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1727', 'SPLINTING FIBER PER GIGI', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1728', 'STEREOSKOPIS DENGAN BUTTERFLY', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1729', 'STEREOSKOPIS DENGAN TNO', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1730', 'SUB ARACHNOID BLOCK - 03.91', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1731', 'SUB ARACHNOID BLOCK CONTINUOUS - 03.90', 1842000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1732', 'SUBTENON BLOCK - 04.81', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1733', 'SYMPATHETIC NERVE NEUROLYSIS - 05.31;05.32', 5498000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1734', 'TAPPING/ PHLEBOTOMI (TERAPEUTIK DAN DIAGNOSTIK) -\n38.99', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1735', 'TARSAL TUNNEL SYNDROME MANUAL (TANPA PANDUAN)', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1736', 'TBS (INTERMITTENT THETA BURST STIMULATION)', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1737', 'TENDINITIS BICIPITALIS MANUAL (TANPA PANDUAN)', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1738', 'TENDINITIS PATELLA MANUAL (TANPA PANDUAN)', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1739', 'TENNIS ELBOW MANUAL (TANPA PANDUAN)', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1740', 'TERAPI PLASMAPHERESIS PASIEN KRITIS (PER HARI) - 99.7', 7918000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1741', 'TERAPI ANTIANGIOGENIK BEVACIZUMAB IV', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1742', 'TERAPI BISPHOSPHONATE IV', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1743', 'TERAPI FISIK NEURORESTORASI (NEUROFASILITASI)', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1744', 'TERAPI HYPOTHERMIA - 99.21', 170000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1745', 'TERAPI OKUPASI NEURORESTORASI (NEUROFASILITASI)', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1746', 'TERAPI SURFAKTAN - 93.94', 6598000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1747', 'TERAPI WICARA NEURORESTORASI (NEUROFASILITASI)', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1748', 'TERES MAYOR MANUAL (TANPA PANDUAN)', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1749', 'TES ALERGI (SKINPRCK TES) - 86.12', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1750', 'TES BISIK / CLINICAL TEST OF HEARING - 95.42', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1751', 'TES BUCKNER', 60000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1752', 'TES DIX HALLPIKE DENGAN FRENZEL / OTHER AUDITORY AND\nVESTIBULAR FUNCTION TESTS (DIX HALLPIKE) - 95.46', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1753', 'TES FUNGSI N VII / OTHER NONOPERATIVE NEUROLOGIC\nFUNCTION TESTS (N. VII TEST) - 89.15', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1754', 'TES GARPUTALA / CLINICAL TEST OF HEARING (TUNING FORK) -\n95.42', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1755', 'TES KALORI / VESTIBULER KLINIS / CLINICAL VESTIBULAR\nFUNCTION TESTS (CALORY TEST) - 95.44', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1756', 'TES KESEIMBANGAN SEDERHANA / CLINICAL VESTIBULAR\nFUNCTION TEST - 95.44', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1757', 'TES TOPOGNOSTIK SARAF FACIALIS / CLINICAL VESTIBULAR\nFUNCTION TESTS - 95.44', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1758', 'TEST SKREENING PERKEMBANGAN ANAK AWAL - 94.1', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1759', 'TEST SKREENING PERKEMBANGAN ANAK LANJUTAN - 94.19', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1760', 'TIBIAL ENTRAPMENT MANUAL (TANPA PANDUAN)', 820000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1761', 'TINDAKAN KOREKSI ALBUMIN INTRAVENA PADA PASIEN\nKRITIS - 99.15', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1762', 'TINDAKAN KOREKSI ASAM BASA PADA PASIEN KRITIS -\n99.18;99.15', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1763', 'TINDAKAN KOREKSI ELEKTROLIT PADA PASIEN KRITIS - 99.18', 221000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1764', 'TINDAKAN SUCTION TRAKEA/ORAL PADA PASIEN KRITIS -\n96.56', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1765', 'TINDAKAN THERAPEUTIC PLASMA EXCHANGE ( TPE ) PADA\nPASIEN KRITIS - 99.71', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1766', 'TOPIKAL ANTIBIOTIK PER REGIO', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1767', 'TOPIKAL HYALURONIC ACID GEL', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1768', 'TOTAL PARENTERAL NUTRITION (TPN) PASIEN KRITIS (PER\nHARI) - 99.15', 373000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1769', 'TRAKEOSKOPI FLEKSIBEL / TRACHEOSCOPY THROUGH\nARTIFICIAL STOMA - 31.41', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1770', 'TRANCRANIAL MAGNETIC STIMULATION CENTRAL', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1771', 'TRANS NASAL ESOFAGOSKOPI FLEKSIBEL / OTHER DIAGNOSTIC\nPROCEDURES ON PHARYNX (TRANS NASAL FLEXIBLE ENDOSCOPY) - 29.19', 485000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1772', 'TRANSCRANIAL DIRECT CURRENT STIMULATION (TDCS)', 1279000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1773', 'TRANSCRANIAL PULSE STIMULATION', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1774', 'TRANSFUSION OF OTHER SERUM/PLASMA - 99.07', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1775', 'TRANSFUSION OF PACKED CELLS - 99.04', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1776', 'TRANSFUSION OF PLATELETS - 99.05', 631000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1777', 'TRANSFUSION OF PREVIOUSLY COLLECTED AUTOLOGOUS\nBLOOD - 99.02', 7918000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1778', 'TRIGGER FINGER MANUAL (TANPA PANDUAN)', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1779', 'TRIGGER POINT MANUAL (TANPA PANDUAN)', 78000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1780', 'UMBILICAL VEIN CATHETER - 38.92', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1781', 'VESTIBULER REHABILITATION THERAPY - 93.89', 287000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1782', 'VRT (VIRTUAL REALITY THERAPY)', 131000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1783', 'WOUND TOILET/RAWAT LUKA', 101000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1784', 'LASER MATA', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1785', 'HEMODIALISA', 1535000, 'TINDAKAN NON OPERATIF'), +('R.TNO.1786', 'AKUPUNKTUR RINGAN', 30000, 'TINDAKAN KOMPLEMENTER'), +('R.TNO.1787', 'AKUPUNKTUR SEDANG', 40000, 'TINDAKAN KOMPLEMENTER'), +('R.TNO.1788', 'AKUPUNKTUR BERAT', 60000, 'TINDAKAN KOMPLEMENTER'), +('R.TNO.1789', 'LASERPUNKTUR RINGAN', 40000, 'TINDAKAN KOMPLEMENTER'), +('R.TNO.1790', 'LASERPUNKTUR SEDANG', 60000, 'TINDAKAN KOMPLEMENTER'), +('R.TNO.1791', 'LASERPUNKTUR BERAT', 80000, 'TINDAKAN KOMPLEMENTER'), +('R.TNO.1792', 'TENS', 60000, 'TINDAKAN KOMPLEMENTER'), +('R.TNO.1793', 'TDP', 60000, 'TINDAKAN KOMPLEMENTER'), +('R.TNO.1794', 'AKUPRESSURE RINGAN', 40000, 'TINDAKAN KOMPLEMENTER'), +('R.TNO.1795', 'AKUPRESSURE SEDANG', 50000, 'TINDAKAN KOMPLEMENTER'), +('R.TNO.1796', 'AKUPRESSURE BERAT', 60000, 'TINDAKAN KOMPLEMENTER'), +('R.TNO.1797', 'MEDICAL CHECK UP BEBAS KETUNAAN', 200000, 'MEDICAL CHECK UP'), +('R.TNO.1798', 'MEDICAL CHECK UP BEBAS KETUNAAN DENGAN AUDIOMETRI', 301000, 'MEDICAL CHECK UP'), +('R.TNO.1799', 'MEDICAL CHECK UP BEBAS KETUNAAN DAN BEBAS TB PARU', 200000, 'MEDICAL CHECK UP'), +('R.TNO.1800', 'MEDICAL CHECK UP PELAJAR', 200000, 'MEDICAL CHECK UP'), +('R.TNO.1801', 'MEDICAL CHECK UP CALON MAHASISWA BARU', 200000, 'MEDICAL CHECK UP'), +('R.TNO.1802', 'MEDICAL CHECK UP CALON KARYAWAN', 326000, 'MEDICAL CHECK UP'), +('R.TNO.1803', 'MEDICAL CHECK UP SEKOLAH KEDINASAN', 326000, 'MEDICAL CHECK UP'), +('R.TNO.1804', 'MEDICAL CHECK UP CALON JEMAAH HAJI KHUSUS LAKI - LAKI DAN JEMAAH HAJI KHUSUS PEREMPUAN USIA > 60 TAHUN', 624000, 'MEDICAL CHECK UP'), +('R.TNO.1805', 'MEDICAL CHECK UP CALON JEMAAH HAJI KHUSUS PEREMPUAN\nUSIA < 60 TAHUN', 624000, 'MEDICAL CHECK UP'), +('R.TNO.1806', 'MEDICAL CHECK UP KELAYAKAN TUGAS PNS / KARYAWAN NON\nPNS', 326000, 'MEDICAL CHECK UP'), +('R.TNO.1807', 'MEDICAL CHECK UP PERSYARATAN STUDI KE LUAR NEGERI', 427000, 'MEDICAL CHECK UP'), +('R.TNO.1808', 'MEDICAL CHECK UP PERSYARATAN SELEKSI JABATAN', 2778000, 'MEDICAL CHECK UP'), +('R.TNO.1809', 'MEDICAL CHECK UP PERSYARATAN BEKERJA KE LUAR NEGERI', 568000, 'MEDICAL CHECK UP'), +('R.TNO.1810', 'MEDICAL CHECK UP SELEKSI PPDS', 326000, 'MEDICAL CHECK UP'), +('R.TNO.1811', 'MEDICAL CHECK UP SELEKSI PPDS PRODI JANTUNG DAN PEMBULUH DARAH', 427000, 'MEDICAL CHECK UP'), +('R.TNO.1812', 'MEDICAL CHECK UP UNTUK USIA > 18 TAHUN', 126000, 'MEDICAL CHECK UP'), +('R.TNO.1813', 'MEDICAL CHECK UP PENGANGKATAN PNS', 587000, 'MEDICAL CHECK UP'), +('R.TNO.1814', 'MEDICAL CHECK UP JASMANI DAN ROHANI UMUM', 221000, 'MEDICAL CHECK UP'), +('R.TNO.1815', 'MEDICAL CHECK UP JASMANI DAN ROHANI KHUSUS', 442000, 'MEDICAL CHECK UP'), +('R.TNO.1816', 'MEDICAL CHECK UP JASMANI DAN ROHANI LENGKAP', 574000, 'MEDICAL CHECK UP'), +('R.TNO.1817', 'MEDICAL CHECK UP JASMANI DAN ROHANI UNTUK ADOPSI DAN HAK ASUH ANAK', 663000, 'MEDICAL CHECK UP'), +('R.TNO.1818', 'MEDICAL CHECK UP JASMANI DAN ROHANI UMUM DAN BEBAS NAPZA', 221000, 'MEDICAL CHECK UP'), +('R.TNO.1819', 'MEDICAL CHECK UP JASMANI DAN ROHANI UNTUK CALON PPDS ATAU STAF BARU BIDANG MEDIS', 858000, 'MEDICAL CHECK UP'), +('R.TNO.1820', 'MEDICAL CHECK UP JASMANI DAN ROHANI KHUSUS DAN BEBAS NAPZA', 442000, 'MEDICAL CHECK UP'), +('R.TNO.1821', 'MEDICAL CHECK UP JASMANI DAN ROHANI LENGKAP DAN BEBAS NAPZA', 574000, 'MEDICAL CHECK UP'), +('R.TNO.1822', 'MEDICAL CHECK UP JASMANI DAN ROHANI UNTUK CALON PPDS ATAU STAF BARU BIDANG MEDIS DAN BEBAS NAPZA', 858000, 'MEDICAL CHECK UP'), +('R.TNO.1823', 'MEDICAL CHECK UP JASMANI & ROHANI UNTUK SELEKSI JABATAN', 1851000, 'MEDICAL CHECK UP'), +('R.TNO.1824', 'MEDICAL CHECK UP JASMANI DAN ROHANI UNTUK KASUS HUKUM / LEGAL', 1630000, 'MEDICAL CHECK UP'), +('R.TNO.1825', 'MEDICAL CHECK UP JASMANI DAN ROHANI UNTUK SELEKSI JABATAN DAN BEBAS NAPZA', 1851000, 'MEDICAL CHECK UP'), +('R.TO.0001', 'ABDOMEN, LAPAROTOMY, TRAUMA REOPERATION', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0002', 'ABDOMEN, LAPAROTOMY, TRAUMA, DAMAGE CONTROL,\nHAEMOSTASIS, PACKING', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0003', 'ABDOMEN, MAJOR/MULTIPLE ORGAN REPAIR (TRAUMA)', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0004', 'ABDOMEN, PERITONEAL CAVITY, ASCITES/FLUID/ABSCESS COLLECTION, IMAGING GUIDED PERCUTANEOUS ASPIRATION/DIAGNOSTIC\nTAP/CATHETER', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0005', 'ABDOMEN, RETROPERITONEUM, ABSCESS, DRAINAGE\nWITH/WITHOUT LAPAROTOMY', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0006', 'ABDOMEN, RETROPERITONEUM, TUMOR, REMOVAL', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0007', 'ABDOMEN/PELVIS, CATHETER BLOCKAGE, IMAGING GUIDED CATHETER CHANGE/CATHETER\nADJUSTMENT/CHECK TUBE', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.0008', 'ABDOMEN/PELVIS, VARIOUS LESIONS, IMAGING GUIDED\nPERCUTANEOUS BIOPSY', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.0009', 'ABDOMEN/PELVIS, VARIOUS LESIONS, INSERTION OF\nPERITONEAL DIALYSIS CATHETER', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.0010', 'ABDOMEN/PELVIS, VARIOUS LESIONS, REMOVAL OF\nPERITONEAL DIALYSIS CATHETER', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.0011', 'ABDOMINAL CAVITY, ADHESIONS (EXTENSIVE), LYSIS AS PRIMARY PROCEDURE, EXTENSIVE WITH OR WITHOUT BOWEL RESECTION (MIS/OPEN) WHERE TIME TAKEN IS\nMORE THAN 2HOURS', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0012', 'ABDOMINAL CAVITY, ADHESIONS (LIMITED), LYSIS AS PRIMARY PROCEDURE (MIS/OPEN) WHERE TIME TAKEN IS LESS THAN\n2HOURS', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0013', 'ABDOMINAL CAVITY, LYMPHOMA,FOR GRADING LYMPHOMA WITH SPLENECTOMY/LIVER/LYMPH NODE BIOPSY (MIS/OPEN)', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0014', 'ABDOMINAL CAVITY, MULTIPLE RUPTURES, MAJOR\nREPAIR/REMOVAL', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0015', 'ABDOMINAL CAVITY, NEONATAL ALIMENTARY OBSTRUCTION,\nLAPAROTOMY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0016', 'ABDOMINAL CAVITY, RECURRENT ABDOMINAL TUMOR, RESECTION WITH COMPLETE ABDOMINOPELVIC PERITONECTOMY AND HYPERTHERMIC INTRAOPERATIVE\nCHEMOTHERAPY', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.0017', 'ABDOMINAL CAVITY, RUPTURED VISCUS, SIMPLE REPAIR', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0018', 'ABDOMINAL CAVITY, SUBPHRENIC ABSCESS, DRAINAGE', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0019', 'ABDOMINAL CAVITY, VARIOUS LESIONS, EXPLORATORY\nLAPAROTOMY (MIS/OPEN)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0020', 'ABDOMINAL CAVITY, VARIOUS LESIONS, INCLUDING\nCOLOSTOMY/ENTEROSTOMY/GASTROSTOMY (MIS/OPEN)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0021', 'ABDOMINAL CAVITY, VARIOUS LESIONS, NOT CLASSIFIED\nELSEWHERE (MIS/OPEN)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0022', 'ABDOMINAL WALL, BURST ABDOMEN, REPAIR', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0023', 'ABDOMINAL WALL, EPIGASTRIC/UMBILICAL HERNIA, REPAIR\n(MIS/OPEN)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0024', 'ABDOMINAL WALL, EXOMPHALOS/GASTROSCHISIS, OPERATING\nBY PLASTIC FLAP', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.0025', 'ABDOMINAL WALL, EXOMPHALOS/GASTROSCHISIS, REPAIR', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0026', 'ABDOMINAL WALL, INGUINAL HERNIA (INFANTS & CHILDREN),\nHERNIOTOMY (BILATERAL)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0027', 'ABDOMINAL WALL, INGUINAL HERNIA (INFANTS & CHILDREN),\nHERNIOTOMY (UNILATERAL)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0028', 'ABDOMINAL WALL, INGUINAL HERNIA (NEONATES),\nHERNIOTOMY (BILATERAL)', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.0029', 'ABDOMINAL WALL, INGUINAL HERNIA (NEONATES),\nHERNIOTOMY (UNILATERAL)', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0030', 'ABDOMINAL WALL, INGUINAL/FEMORAL HERNIA, BILATERAL\nHERNIORRHAPHY (MIS/OPEN)', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.0031', 'ABDOMINAL WALL, INGUINAL/FEMORAL HERNIA, UNILATERAL\nHERNIORRHAPHY (MIS/OPEN)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0032', 'ABDOMINAL WALL, STRANGULATED/OBSTRUCTED HERNIA,\nREPAIR WITH BOWEL RESECTION', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.0033', 'ABDOMINAL WALL, STRANGULATED/OBSTRUCTED HERNIA,\nREPAIR WITHOUT BOWEL RESECTION', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0034', 'ABDOMINAL WALL, VENTRAL/INCISIONAL/RECURRENT HERNIA,\nREPAIR (MIS/OPEN)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0035', 'ABDOMINAL/RETROPERITONEAL TUMOUR, RECURRENT RESECTION WITH OR WITHOUT VASCULAR INVOLVEMENT AND\nVASCULAR REPAIR', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0036', 'ADENOIDS, VARIOUS LESIONS, REMOVAL', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0037', 'ADRENAL, VARIOUS LESIONS, ADRENAL VENOUS SAMPLING', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0038', 'ADRENALS, VARIOUS LESIONS, BIOPSY/EXCISION (OPEN OR LAP)', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0039', 'ANAL INCONTINENCE, ARTIFICIAL BOWEL SPHINCTER INSERTION', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0040', 'ANAL INCONTINENCE, COMPLEX PROCEDURES INCLUDING\nMUSCLE TRANSPOSITION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0041', 'ANAL SPHINCTER BULKING INJECTION WITH OR WITHOUT\nRECTAL ULTRASOUND GUIDANCE', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0042', 'ANGIOEMBOLISATION FOR TRAUMA', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0043', 'ANKLE, ANKLE FRACTURE, BIMALLEOLAR, ORIF', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0044', 'ANKLE, ANKLE FRACTURE, UNIMALLEOLAR, ORIF', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0045', 'ANKLE, COMMINUTED PLAFOND FRACTURE ORIF', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0046', 'ANKLE, DISLOCATION, OPEN REDUCTION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0047', 'ANKLE, LIGAMENTOUS INSTABILITY, RECONSTRUCTION OF\nLIGAMENTS (EG. BOSTROM, CHRISMAN-SNOOK)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0048', 'ANKLE, THERAPEUTIC ARTHROSCOPY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0049', 'ANKLE, VARIOUS LESIONS, ARTHRODESIS (SURGICAL FUSION)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0050', 'ANKLE, VARIOUS LESIONS, OPEN EXCISION/INTERPOSITION\nARTHROPLASTY, WITH OR WITHOUT RESURFACING', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.0051', 'ANKLE, VARIOUS LESIONS, PRIMARY TOTAL JOINT\nREPLACEMENT WITH AUGMENTATION, REQUIRING EXTRA IMPLANTS OR BONE GRAFTS, OPEN/MIS/NAVIGATED', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0052', 'ANKLE, VARIOUS LESIONS, PRIMARY TOTAL JOINT\nREPLACEMENT, OPEN/MIS/NAVIGATED', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.0053', 'ANKLE, VARIOUS LESIONS, REPAIR OF LIGAMENTS', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0054', 'ANKLE, VARIOUS LESIONS, REVISION TOTAL JOINT\nREPLACEMENT, OPEN/MIS/NAVIGATED', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.0055', 'ANKLE, VARIOUS LESIONS, SYNOVECTOMIES', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0056', 'ANTERIOR CHAMBER PARACENTESIS, IRRIGATION OR\nREFORMATION', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0057', 'ANTERIOR CHAMBER, VARIOUS LESIONS, VITREOUS REMOVAL', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0058', 'ANUS, ANO-RECTAL MALFORMATION\n(CLOACA/ABDOMINOPERINEAL)', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.0059', 'ANUS, ANO-RECTAL MALFORMATION, ANOPLASTY', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0060', 'ANUS, ANO-RECTAL MALFORMATION, ANORECTOPLASTY (MIS)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0061', 'ANUS, ANO-RECTAL MALFORMATION, LIMITED POSTERIOR\nSAGITTAL ANORECTOPLASTY (PSARP)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0062', 'ANUS, ANO-RECTAL MALFORMATION, POSTERIOR SAGITTAL\nANORECTOPLASTY (PSARP)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0063', 'ANUS, ANO-RECTAL PROLAPSE, CIRCUMANAL SUTURE', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.0064', 'ANUS, ANO-RECTAL PROLAPSE, INJECTION', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.0065', 'ANUS, ANO-RECTAL PROLAPSE, RADICAL OPERATION WITH\nRESECTION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0066', 'ANUS, ANO-RECTAL PROLAPSE, RADICAL OPERATION WITHOUT\nRESECTION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0067', 'ANUS, FISSURE, EXCISION/LATERAL SPHINCTEROTOMY', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.0068', 'ANUS, FISTULA-IN-ANO (HIGH), COMPLEX AND RECURRENT\nFISTULECTOMY', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0069', 'ANUS, FISTULA-IN-ANO, EXCISION/ FISTULECTOMY', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.0070', 'ANUS, FISTULA-IN-ANO, INSERTION OF SETON', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.0071', 'ANUS, HEMORRHOIDS, CRYOSURGERY', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.0072', 'ANUS, HEMORRHOIDS, HEMORRHOIDECTOMY WITH OR\nWITHOUT SIGMOIDOSCOPY', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0073', 'ANUS, HEMORRHOIDS, REMOVAL OF EXTERNAL ANAL TAGS', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0074', 'ANUS, HEMORRHOIDS, TRANSANAL HAEMORRHOIDAL\nDEARTERIALIZATION (THD)', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0075', 'ANUS, HEMORRHOIDS,STAPLED HAEMORRHOIDECTOMY', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0076', 'ANUS, INCONTINENCE, OPERATION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0077', 'ANUS, ISCHIORECTAL ABSCESS, SAUCERISATION', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0078', 'ANUS, PERINEAL ABSCESS, SAUCERISATION/DRAINAGE', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0079', 'ANUS, SPHINCTEROPLASTY FOR ANAL INCONTINENCE', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0080', 'ANUS, STRICTURE, DILATATION', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0081', 'ANUS, STRICTURE, REPAIR', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0082', 'ANUS, TUMOR, ABDOMINO-PERINEAL RESECTION (OPEN OR\nLAP)', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0083', 'ANUS, VARIOUS LESIONS, BIOPSY OF MUSCLE/MUCOSA', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0084', 'AORTA, ABDOMINAL AORTIC ANEURYSM, ENDOVASCULAR\nANEURYSM REPAIR (EVAR)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0085', 'AORTA, ABDOMINAL AORTIC ANEURYSM, EXCISION AND\nINSERTION OF GRAFT', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0086', 'AORTA, ANEURYSM, JUXTARENAL TYPE', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0087', 'AORTA, COARCTATION, ENDOVASCULAR STENT PLACEMENT', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.0088', 'AORTA, DESCENDING AORTIC ANEURYSM, EXCISION AND\nINSERTION OF GRAFT', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.0089', 'AORTA, RUPTURED ABDOMINAL AORTIC ANEURYSM, EXCISION\nAND INSERTION OF GRAFT', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0090', 'AORTA, RUPTURED AORTIC ANEURYSM (THORACIC OR\nABDOMINAL), ENDO-VASCULAR AORTIC REPAIR (EVAR)', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.0091', 'AORTA, THORACIC AORTIC ANEURYSM, THORACIC\nENDOVASCULAR ANEURYSM REPAIR (TEVAR)', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.0092', 'AORTA, THORACO-ABDOMINAL ANEURYSM, EXCISION AND\nINSERTION OF GRAFT', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.0093', 'AORTA, THORACOABDOMINAL AORTIC ANEURYSM,\nENDOVASCULAR ANEURYSM REPAIR (EVAR)', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.0094', 'AORTA, TOTAL ARCH REPLACEMENT', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.0095', 'AORTA, VARIOUS LESIONS, INSERTION/REMOVAL OF INTRA\nAORTIC BALLOON', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0096', 'AORTIC DISSECTION, ENDOVASCULAR FENESTRATION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0097', 'AORTIC DISSECTION, ENDOVASCULAR STENT GRAFT REPAIR', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0098', 'APPENDIX, ABSCESS, DRAINAGE ONLY', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0099', 'APPENDIX, TUMOR, RIGHT HEMICOLECTOMY WITH/WITHOUT\nADHESIOLYSIS (OPEN OR LAP)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0100', 'APPENDIX, VARIOUS LESIONS, APPENDICECTOMY WITHOUT\nDRAINAGE, MIS/OPEN', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0101', 'APPENDIX, VARIOUS LESIONS/ABSCESS, APPENDICECTOMY\nWITH DRAINAGE (MIS/OPEN)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0102', 'ARRHYTHMIA SURGERY MAZE (INCLUDES THE MINI- MAZE\nPROCEDURE WITH RADIOFREQUENCY CLAM)', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0103', 'ARTERIOVENOUS FISTULA GRAFT, THROMBECTOMY', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0104', 'ARTERIOVENOUS FISTULA, ANGIOGRAM', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.0105', 'ARTERIOVENOUS FISTULA, ANGIOPLASTY WITH/WITHOUT\nSTENTING', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0106', 'ARTERIOVENOUS FISTULA, LIGATION OF SIDE BRANCH', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.0107', 'ARTERIOVENOUS FISTULA, SYNTHETIC GRAFT', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0108', 'ARTERY (DISTAL EXTREMITY/DIGIT), VARIOUS LESIONS,\nMICROVASCULAR REPAIR', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0109', 'ARTERY (EXTREMITY), THROMBOSIS, ENDARTERECTOMY', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.0110', 'ARTERY (FEMORAL/ILIAC), THROMBOSIS, ENDARTERECTOMY', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.0111', 'ARTERY (LARGE), VARIOUS LESIONS, LIGATION', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0112', 'ARTERY (MAJOR), ANEURYSM, EXCISION AND INSERTION OF\nGRAFT', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0113', 'ARTERY (MAJOR), TRAUMA, REPAIR', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0114', 'ARTERY (NECK AND EXTREMITIES), EMBOLISM, EMBOLECTOMY', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0115', 'ARTERY (OTHERS), THROMBOSIS, ENDARTERECTOMY', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.0116', 'ARTERY (TEMPORAL), VARIOUS LESIONS, BIOPSY', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.0117', 'ARTERY (TRUNK), EMBOLISM, EMBOLECTOMY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0118', 'ARTERY, ARTERIO-VENOUS FISTULA (LARGE), EXCISION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0119', 'ARTERY, ARTERIO-VENOUS FISTULA (SMALL), EXCISION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0120', 'ARTERY, ARTERIO-VENOUS FISTULA, DISSECTION AND REPAIR\nWITH RESTORATION OF CONTINUITY', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0121', 'ARTERY, ARTERIO-VENOUS FISTULA, LIGATION', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.0122', 'ARTERY, BYPASS, ABOVE/BELOW-KNEE WITH VEIN', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0123', 'ARTERY, BYPASS, DISTAL LEG/PEDAL WITH VEIN', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0124', 'ARTERY, BYPASS, VISCERAL, MULTIPLE', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.0125', 'ARTERY, BYPASS, VISCERAL, SINGLE', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0126', 'ARTERY, CAROTICO-CAVERNOUS FISTULA, EMBOLISATION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0127', 'ARTERY, DEFECT, ARTERIAL PATCH GRAFT', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0128', 'ARTERY, EXTRACRANIAL, VARIOUS LESIONS, BALLOON TEST\nOCCLUSION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0129', 'ARTERY, EXTRACRANIAL, VARIOUS LESIONS, DIAGNOSTIC\nEXTRACRANIAL ANGIOGRAPHY', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0130', 'ARTERY, EXTRACRANIAL, VARIOUS LESIONS, INFUSION', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0131', 'ARTERY, EXTRACRANIAL, VARIOUS LESIONS, PERCUTANEOUS\nTRANSCATHETER EMBOLIZATION', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0132', 'ARTERY, EXTRACRANIAL, VARIOUS LESIONS, PERCUTANEOUS\nTRANSLUMINAL ANGIOPLASTY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0133', 'ARTERY, EXTRACRANIAL, VARIOUS LESIONS, STENTING', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0134', 'ARTERY, INTRACRANIAL, ANEURYSM/ARTERIO-VENOUS\nMALFORMATION, EMBOLISATION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0135', 'ARTERY, INTRACRANIAL, THROMBOSIS, PERCUTANEOUS\nCATHETER DIRECTED THROMBOLYSIS/THROMBECTOMY', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0136', 'ARTERY, INTRACRANIAL, TUMOUR, PERCUTANEOUS\nTRANSCATHETER EMBOLIZATION', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0137', 'ARTERY, INTRACRANIAL, VARIOUS LESIONS, DIAGNOSTIC\nCEREBRAL ANGIOGRAPHY', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0138', 'ARTERY, INTRACRANIAL, VARIOUS LESIONS, PERCUTANEOUS\nTRANSLUMINAL ANGIOPLASTY', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.0139', 'ARTERY, INTRACRANIAL, VARIOUS LESIONS, STENTING', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0140', 'ARTERY, PULMONARY, ENDOVASCULAR STENT PLACEMENT', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0141', 'ARTERY, SMALL, INJURY, REPAIR (SINGLE)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0142', 'ARTERY, SPINAL, ANEURYSM/ARTERIO-VENOUS\nMALFORMATION, EMBOLISATION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0143', 'ARTERY, SPINAL, TUMOUR, PERCUTANEOUS TRANSCATHETER\nEMBOLIZATION', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0144', 'ARTERY, SPINAL, VARIOUS LESIONS, DIAGNOSTIC ANGIOGRAPHY', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0145', 'ARTERY, STENOSIS/OCCLUSION (E.G. PULMONARY, COARCTATION, SUBINTIMAL, BELOW KNEE),\nPERCUTANEOUS ANGIOPLASTY (PTA), DIFFICULT', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0146', 'ARTERY, STENOSIS/OCCLUSION, PERCUTANEOUS\nATHERECTOMY (MECHANICAL OR LASER)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0147', 'ARTERY, STENOSIS/OCCLUSION, PERCUTANEOUS\nTRANSLUMINAL ANGIOPLASTY (PTA), SIMPLE', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0148', 'ARTERY, THROMBOSIS, PERCUTANEOUS CATHETER DIRECTED THROMBOLYSIS, WITH OR WITHOUT ANGIOPLASTY/STENTING', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0149', 'ARTERY, TRAUMA/RESECTION, ARTERIAL ANASTOMOSIS', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0150', 'ARTERY, TRAUMA/RESECTION, MICRO-VASCULAR GRAFT', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0151', 'ARTERY, TUMOUR, TRANS-ARTERIAL CHEMO- EMBOLIZATION\n(TACE)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0152', 'ARTERY, TUMOUR, TRANS-ARTERIAL RADIO NUCLIDE INFUSION', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0153', 'ARTERY, VARIOUS LESIONS, ARTERIO-VENUOUS FISTULA\nCREATION', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0154', 'ARTERY, VARIOUS LESIONS, ARTERIO-VENUOUS FISTULA,\nCORRECTION AT ORIGINAL SITE', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0155', 'ARTERY, VARIOUS LESIONS, AXILLARY- FEMORAL/SUBCLAVIAN-\nFEMORAL BY-PASS', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0156', 'ARTERY, VARIOUS LESIONS, BY-PASS/GRAFT', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0157', 'ARTERY, VARIOUS LESIONS, DIAGNOSTIC ANGIOGRAM OF\nMULTIPLE VESSELS', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0158', 'ARTERY, VARIOUS LESIONS, DIAGNOSTIC ANGIOGRAM USING MICROCATHETER, WITH OR WITHOUT INTRAVASCULAR\nIMAGING', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0159', 'ARTERY, VARIOUS LESIONS, ENDOVASCULAR STENT GRAFT /\nCOVERED STENT PLACEMENT', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0160', 'ARTERY, VARIOUS LESIONS, ENDOVASCULAR STENT PLACEMENT', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0161', 'ARTERY, VARIOUS LESIONS, FLUSH AORTOGRAM OR SINGLE\nVESSEL DIAGNOSTIC ANGIOGRAM', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0162', 'ARTERY, VARIOUS LESIONS, INTRA-ARTERIAL INFUSION', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0163', 'ARTERY, VARIOUS LESIONS, LIGATION (INCLUDE REPAIR OF\nARTIFICIAL ARTERIO-VENOUS FISTULA)', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.0164', 'ARTERY, VARIOUS LESIONS, PERCUTANEOUS TRANSCATHETER\nEMBOLISATION OF 1 TO 2 VESSELS', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0165', 'ARTERY, VARIOUS LESIONS, PERCUTANEOUS TRANSCATHETER EMBOLISATION OF MORE THAN 2\nVESSELS', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0166', 'ARTERY, VARIOUS LESIONS, TRANSLUMINAL ARTERIOPLASTY', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0167', 'ARTERY,LARGE, INJURY, REPAIR WITH GRAFTING', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0168', 'ARTERY,SMALL, INJURY, REPAIR (MULTIPLE)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0169', 'ARTERY-CAROTID, ANEURYSM-REPAIR/GRAFTING', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.0170', 'ARTERY-CAROTID, ARTERIO-OCCLUSIVE LESIONS, EXTERNAL\nCAROTID INTERNAL CAROTID BYPASS, COMPLEX', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.0171', 'ARTERY-CAROTID, ARTERIO-OCCLUSIVE LESIONS, EXTERNAL CAROTID INTERNAL CAROTID BYPASS,\nSIMPLE', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0172', 'ARTERY-CAROTID, ATHEROSCLEROSIS, CAROTID\nENDARTERECTOMY', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0173', 'ARTERY-CAROTID, CAROTID BODY TUMOR, EXCISION', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.0174', 'ARTERY-CAROTID, THROMBOSIS, ENDARTERECTOMY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0175', 'ARTERY-PROFUNDA FEMORIS, STENOSIS, PROFUNDOPLASTY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0176', 'ARTERY-PSEUDOANEURYSM, EXCISION AND LIGATION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0177', 'ARTERY-PSEUDOANEURYSM, EXCISION AND PATCH REPAIR', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0178', 'ARTERY-PSEUDOANEURYSM, THROMBIN INJECTION', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.0179', 'ARTERY-PULMONARY, PULMONARY EMBOLISM, PULMONARY EMBOLECTOMY USING CARDIOPULMONARY BYPASS', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.0180', 'ARTERY-VISCERAL, STENOSIS, ANGIOPLASTY OF VISCERAL\nARTERY', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0181', 'ARTERY-VISCERAL, STENOSIS, STENTING', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0182', 'ASPIRATION, DEEP MUSCULOSKELETAL TISSUES, UNDER\nRADIOLOGICAL GUIDANCE', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.0183', 'AUTOFLUORESCENCE/ NARROW BAND IMAGING (NBI)\nBRONCHOSCOPY', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0184', 'BILE DUCT, BILIARY ATRESIA, PORTO-ENTEROSTOMY', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0185', 'BILE DUCT, ENDOSCOPIC RETROGRADE\nCHOLANGIOPANCREATOGRAPHY (ERCP)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0186', 'BILE DUCT, VARIOUS LESIONS, CHOLEDOCHO-\nDUODENOSTOMY/CHOLEDOCHO-GASTROSTOMY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0187', 'BILE DUCT, VARIOUS LESIONS, CHOLEDOCHO- JEJUNOSTOMY', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.0188', 'BILE DUCT, VARIOUS LESIONS, CHOLEDOCHOTOMY\n(EXPLORATION COMMON BILE DUCT ONLY)', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.0189', 'BILE DUCT, VARIOUS LESIONS, HEPATICOJEJUNOSTOMY INVOLVING ANASTOMOSIS TO HEPATIC DUCTS BUT WITHOUT\nLIVER RESECTION', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.0190', 'BILE DUCT, VARIOUS LESIONS, OPERATIVE CHOLEDOCHOSCOPY', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0191', 'BILE DUCT, VARIOUS LESIONS, REVISION HIGH BILIARY\nSTRICTURE/ RADICAL RESECTION', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.0192', 'BILE DUCT, VARIOUS LESIONS, TRANSDUODENAL\nSPHINCTEROPLASTY/ SPHINCTEROTOMY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0193', 'BILE DUCT, VARIOUS LESIONS. EXCISION OF LOWER 1/3 OF COMMON BILE DUCT BUT WITH PRESERVATION OF\nPANCREATIC HEAD', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.0194', 'BILE DUCT, VARIOUS LESIONS. HEPATICOJEJUNOSTOMY UP TO BUT NOT INCLUDING THE CONFLUENCE OF THE\nHEPATIC DUCTS', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0195', 'BILE DUCT/GALL BLADDER, ENDOSCOPIC DILATION OF BILIARY\nSTRICTURE', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0196', 'BILE DUCT/GALL BLADDER, ENDOSCOPIC RETROGRADE CHOLANGIOPANCREATOGRAPHY (ERCP) WITH INSERTION OF\nNASOBILIARY DRAIN', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0197', 'BILE DUCT/GALL BLADDER, ENDOSCOPY, ENDOSCOPIC\nSPHINCTEROTOMY +/- EXTRACTION OF STONE', 10268000, 'TINDAKAN OPERATIF'); +INSERT INTO `tarif_rs` (`ID_Tarif_RS`, `Tindakan_RS`, `Tarif_RS`, `Kategori_RS`) VALUES +('R.TO.0198', 'BILE DUCTS, CATHETER BLOCKAGE, IMAGING GUIDED CATHETER CHANGE / CATHETER ADJUSTMENT / CHECK\nCHOLANGIOGRAM', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.0199', 'BILE DUCTS, STONES, PERCUTANEOUS TRANSHEPATIC BILIARY\nSTONES REMOVAL', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0200', 'BILE DUCTS, STRICTURE, PERCUTANEOUS TRANSHEPATIC\nBALLOON DILATATION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0201', 'BILE DUCTS, STRICTURE, PERCUTANEOUS TRANSHEPATIC\nBILIARY STENT PLACEMENT', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0202', 'BILE DUCTS, VARIOUS LESIONS, CHECK CHOLANGIOGRAM', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.0203', 'BILE DUCTS, VARIOUS LESIONS, PERCUTANEOUS TRANSHEPATIC\nCHOLANGIOGRAPHY (PTC)', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0204', 'BILE DUCTS, VARIOUS LESIONS, PERCUTANEOUS TRANSHEPATIC CHOLANGIOGRAPHY AND DRAINAGE\nCATHETER INSERTION (PTC AND DRAINAGE)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0205', 'BIOPSY: CORNEAL, LIMBAL, ORAL, CONJUNCTIVA', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0206', 'BLADDER, BLADDER NECK CONTRACTURE,\n(ACQUIRED/CONGENITAL), WEDGE EXCISION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0207', 'BLADDER, CALCULUS, VESICOLITHOTOMY/LITHOLAPAXY/ULTRASONIC LITHOTRIPSY', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0208', 'BLADDER, CUTANEOUS FISTULA, CLOSURE', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0209', 'BLADDER, CYSTOSCOPIC INTRADETRUSOR INJECTION OF\nBOTULINUM', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0210', 'BLADDER, CYSTOSCOPY, EXTERNAL SPHINCTEROTOMY FOR\nNEUROGENIC BLADDER NECK OBSTRUCTION', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0211', 'BLADDER, CYSTOSCOPY, REMOVAL OF FOREIGN\nBODY/URETERIC STENT', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.0212', 'BLADDER, CYSTOSCOPY, WITH CONTROLLED HYDRODILATATION\nOF THE BLADDER', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0213', 'BLADDER, CYSTOSCOPY, WITH ENDOSCOPIC\nREMOVAL/MANIPULATION OF URETERIC CALCULUS', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0214', 'BLADDER, CYSTOSCOPY, WITH ENDOSCOPIC\nRESECTION/INCISION OF BLADDER NECK', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0215', 'BLADDER, CYSTOSCOPY, WITH OR WITHOUT BIOPSY', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0216', 'BLADDER, CYSTOSCOPY, WITH URETERIC MEATOTOMY/WITH\nRESECTION OF URETEROCELE', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0217', 'BLADDER, DIVERTICULUM, MIS EXCISION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0218', 'BLADDER, DIVERTICULUM, OPEN EXCISION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0219', 'BLADDER, ECTOPIA VESICAE/ECTOPIA CLOACAE WITH CONGENITAL INCONTINENCE, SPHINCTER\nRECONSTRUCTION', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.0220', 'BLADDER, INCONTINENCE, CORRECTION, ABDOMINAL\nAPPROACH', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0221', 'BLADDER, MILD STRESS INCONTINENCE, CYCTOSCOPIC\nINJECTION OF COLLAGEN', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0222', 'BLADDER, RETENTION OF URINE, SUPRAPUBIC CYSTOSTOMY', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0223', 'BLADDER, STANDARD URODYNAMICS STUDY, COMPLEX (WITH\nVIDEO)', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.0224', 'BLADDER, STANDARD URODYNAMICS STUDY, SIMPLE\n(WITHOUT VIDEO)', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.0225', 'BLADDER, TUMOR, ANTERIOR EXENTERATION (FEMALE)', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0226', 'BLADDER, URACHAL FISTULA, MIS EXCISION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0227', 'BLADDER, URACHAL FISTULA, OPEN EXCISION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0228', 'BLADDER, VARIOUS LESIONS, ENLARGEMENT CYSTOPLASTY\nWITH BOWEL', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0229', 'BLADDER, VARIOUS LESIONS, IMAGE GUIDED SUPRAPUBIC\nCYSTOSTOMY', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.0230', 'BLADDER, VARIOUS LESIONS, MIS PARTIAL EXCISION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0231', 'BLADDER, VARIOUS LESIONS, OPEN PARTIAL EXCISION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0232', 'BLADDER, VARIOUS LESIONS, TOTAL CYSTECTOMY WITH ILEAL\nCONDUIT', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0233', 'BLADDER, VARIOUS LESIONS, TOTAL RADICAL CYSTECTOMY,\nFOR MALIGNANCY + CREATION OF ILEAL NEOBLADDER', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.0234', 'BLADDER, VESICO-INTESTINAL FISTULA, CLOSURE', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0235', 'BLADDER, VESICOSTOMY', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0236', 'BLADDER, VESICO-VAGINAL FISTULA, CLOSURE BY ABDOMINAL\nROUTE', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0237', 'BLADDER, VESICO-VAGINAL FISTULA, CORRECTION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0238', 'BLADDER/URETER, CYSTOSCOPY, WITH URETERIC\nCATHETERISATION', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.0239', 'BLADDER/URETER, LYMPHOLYSIS FOR CHYLURIA, MIS', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0240', 'BLADDER/URETHRA, CYSTOSCOPY, WITH URETHRAL\nDILATATION', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.0241', 'BLADDER/URETHRA, TRANSURETHRAL RESECTION OF BLADDER\nTUMOUR (<3CM)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0242', 'BLADDER/URETHRA, TRANSURETHRAL RESECTION OF BLADDER\nTUMOUR (>3CM)', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0243', 'BLOOD VESSELS (LARGE), DISRUPTION/OBSTRUCTION, REPAIR\nWITH AUTOGENOUS VEIN GRAFTING', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0244', 'BLOOD VESSELS, DEFECT, MAJOR GRAFTS (MULTIPLE)', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0245', 'BLOOD VESSELS, HICKMAN LINE INSERTION', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.0246', 'BLOOD VESSELS, PULMONARY EMBOLECTOMY', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0247', 'BLOOD VESSELS, RENAL ANGIOGRAPHY', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0248', 'BLOOD VESSELS, SAPHENOUS VEIN, HARVEST, MINIMALLY\nINVASIVE ENDOSCOPIC', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0249', 'BLOOD VESSELS, SUBCUTANEOUS IMPLANTED VASCULAR PORT,\nINSERTION', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0250', 'BLOOD VESSELS, SUBCUTANEOUS IMPLANTED VASCULAR PORT,\nREMOVAL', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0251', 'BLOOD VESSELS, VASCULAR INTERVENTION, RADIOLOGY,\nINTRAVASCULAR FOREIGN BODY RETRIEVAL', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0252', 'BONE (LOWER LIMB), DEFECT/NON UNION, IMPLANTATION OF\nBONE STIMULATOR', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0253', 'BONE (LOWER LIMB), DEFORMITIES, CORRECTIVE SURGERY WITH INTERNAL FIXATION WITH OR WITHOUT\nFLUOROSCOPY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0254', 'BONE (LOWER LIMB), DEFORMITIES, CORRECTIVE SURGERY\nWITH OSTEOTOMY ALONE', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0255', 'BONE (LOWER LIMB), FRACTURE/DISLOCATION, MANIPULATION\nAND KIRSCHNER WIRE FIXATION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0256', 'BONE (LOWER LIMB), GRADE 1 AND 2 OPEN FRACTURES/OPEN DISLOCATION OR OPEN FRACTURE-\nDISLOCATION WOUND DEBRIDEMENT', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.0257', 'BONE (LOWER LIMB), OSTEOMYELITIS, DRAINAGE WITH\nCURETTAGE AND IRRIGATION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0258', 'BONE (LOWER LIMB), OSTEOMYELITIS, SIMPLE DRAINAGE', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.0259', 'BONE (LOWER LIMB), TUMOR (BENIGN), <3 CM WITH BONE GRAFTING +/- RECONSTRUCTION/INTERNAL\nFIXATION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0260', 'BONE (LOWER LIMB), TUMOR (BENIGN), >3 CM WITH BONE GRAFTING +/- RECONSTRUCTION/INTERNAL\nFIXATION', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0261', 'BONE (LOWER LIMB), TUMOR (MALIGNANT), RADICAL EXCISION (<6CM) WITH RECONSTRUCTION AND BONE GRAFTING', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0262', 'BONE (LOWER LIMB), TUMOR (MALIGNANT), RADICAL EXCISION\n>6CM WITH RECONSTRUCTION AND BONE GRAFT', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.0263', 'BONE (LOWER LIMB), VARIOUS LESIONS, EPIPHYSIOLYSIS\nWITH/WITHOUT MICROSURGERY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0264', 'BONE (SKULL), TUMOR (LARGE>3CM) EXCISION WITH\nCRANIOPLASTY', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0265', 'BONE (SKULL), TUMOR (LARGE>3CM), EXCISION AND EXTENSIVE\nRECONSTRUCTION (DURA, SKULL, SKIN)', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.0266', 'BONE (SKULL), TUMOR (MALIGNANT), WIDE EXCISION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0267', 'BONE (SKULL), TUMOR (SMALL<3CM) EXCISION WITH\nCRANIOPLASTY', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.0268', 'BONE (UPPER LIMB), DEFORMITIES, CORRECTIVE SURGERY', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0269', 'BONE (UPPER LIMB), GRADE 1 AND 2 OPEN FRACTURES/OPEN DISLOCATION OR OPEN FRACTURE- DISLOCATION, WOUND\nDEBRIDEMENT', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.0270', 'BONE (UPPER LIMB), OSTEOMYELITIS SIMPLE DRAINAGE', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.0271', 'BONE (UPPER LIMB), OSTEOMYELITIS, EXTENSIVE\nCURETTAGE/DEBRIDEMENT AND IRRIGATION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0272', 'BONE (UPPER LIMB), TUMOR (BENIGN), MAJOR EXCISION\n<3 CM WITH BONE GRAFTING +/- RECONSTRUCTION/INTERNAL FIXATION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0273', 'BONE (UPPER LIMB), TUMOR (BENIGN), MAJOR EXCISION\n>3 CM WITH BONE GRAFTING +/- RECONSTRUCTION/INTERNAL FIXATION', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0274', 'BONE (UPPER LIMB), TUMOR (MALIGNANT), RADICAL EXCISION\nWITH RECONSTRUCTION/INTERNAL FIXATION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0275', 'BONE (UPPER LIMB), TUMOUR (MALIGNANT), WIDE EXCISION\nWITH RECONSTRUCTION/INTERNAL FIXATION', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0276', 'BONE (UPPER LIMB/LOWER LIMB), VARIOUS LESIONS,\nVASCULARISED BONE TRANSFER', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.0277', 'BONE (UPPER/LOWER LIMB), BONE LOSS/NONUNION, BONE\nGRAFTING', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0278', 'BONE (UPPER/LOWER LIMB), EXOSTOSIS, EXCISION BIOPSY\n(MORE THAN1/ BILATERAL)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0279', 'BONE (UPPER/LOWER LIMB), EXOSTOSIS, EXCISION BIOPSY\n(SINGLE)', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0280', 'BONE (UPPER/LOWER LIMB), VARIOUS LESIONS, BONE LOSS,\nBONE TRANSFER', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.0281', 'BONE AND JOINTS (LOWER LIMB), PLATES AND SCREWS/NAILS,\nREMOVAL', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.0282', 'BONE AND JOINTS (LOWER LIMB), REMOVAL OF SIMPLE IMPLANTS (E.G. RUSH RODS/WIRES/K- WIRES/PINS/SCREWS)', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.0283', 'BONE AND JOINTS (UPPER LIMB), DEFORMITIES, OSTEOTOMIES AND FIXATION WITH OR WITHOUT\nFLUOROSCOPY/BONE GRAFT', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0284', 'BONE AND JOINTS (UPPER LIMB), PLATES AND SCREWS,\nREMOVAL', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.0285', 'BONE AND JOINTS (UPPER LIMB), REMOVAL OF SIMPLE IMPLANTS (E.G. RUSH RODS/WIRES/K- WIRES/PINS/SCREWS)', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.0286', 'BONE, CYST/TUMOUR BENIGN/BENIGN AGGRESSIVE,\nCURRETTAGE/BURRING/BONE GRAFTING/CEMENTING', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0287', 'BONE, TUMOR (MALIGNANT), AROUND JOINTS WITH LIMB\nRECONSTRUCTION AND JOINT REPLACEMENT', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.0288', 'BONE, TUMOR (MALIGNANT), WIDE/MAJOR RESECTION AND\nRECONSTRUCTION (NON VASCULARISED BONE GRAFT)', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0289', 'BONE, TUMOUR (MALIGNANT), WIDE/MAJOR RESECTION AND\nRECONSTRUCTION (VASCULARISED BONE GRAFT)', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.0290', 'BONE, TUMOUR, IMAGING GUIDED PERCUTANEOUS LOCAL\nABLATION (RADIOFREQUENCY, CRYOTHERAPY, MICROWAVE, LASER, ALCOHOL,ETC) , SINGLE LESION', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0291', 'BONE, TUMOUR, IMAGING GUIDED PERCUTANEOUS LOCAL\nABLATION, COMPLEX, > 1 LESION (RADIOFREQUENCY, CRYOTHERAPY, MICROWAVE, LASER, ALCOHOL, ETC)', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0292', 'BONE, TUMOUR, IMAGING GUIDED PERCUTANEOUS LOCAL\nABLATION, SIMPLE, > 1 LESION (RADIOFREQUENCY, CRYOTHERAPY, MICROWAVE, LASER, ALCOHOL, ETC)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0293', 'BONE, VARIOUS LESIONS, BIOPSY', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0294', 'BONE, VARIOUS LESIONS, OPEN BIOPSY, CEMENTING/PLATE\nFIXATION', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0295', 'BONE/ SOFT TISSUE, VARIOUS LESIONS, IMAGING GUIDED\nPERCUTANEOUS BIOPSY', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.0296', 'BONE/JOINTS (LOWER LIMB), MAJOR CRUSH INJURIES, WOUND\nDEBRIDEMENT', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0297', 'BONE/SOFT TISSUE, VARIOUS LESIONS, TRUCUT BIOPSY', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0298', 'BOWEL (ESOPHAGUS, STOMACH, DUODENUM, COLON, RECTUM), STRICTURE, IMAGING GUIDED BALLOON\nDILATATION', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0299', 'BOWEL (ESOPHAGUS, STOMACH, DUODENUM, COLON,\nRECTUM), STRICTURE, IMAGING GUIDED STENT PLACEMENT', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0300', 'BOWELS, ENDOSCOPIC ULTRASOUND WITH COELIAC AXIS\nNEUROLYSIS', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0301', 'BOWELS, ENDOSCOPIC ULTRASOUND WITH FINE NEEDLE\nASPIRATION', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0302', 'BOWELS, ENDOSCOPIC ULTRASOUND WITH PSEUDOCYST\nDRAINAGE', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0303', 'BOWELS, ENDOSCOPIC ULTRASOUND WITH STENT INSERTION', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0304', 'BOWELS, ENDOSCOPIC ULTRASOUND WITHOUT FINE NEEDLE\nASPIRATION', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0305', 'BOWELS, SINGLE/DOUBLE BALLOON ENTEROSCOPY,\nDIAGNOSTIC', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0306', 'BOWELS, SINGLE/DOUBLE BALLOON ENTEROSCOPY,\nTHERAPEUTIC', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0307', 'BRACHIAL PLEXUS, BLOCK, CATHETER', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.0308', 'BRACHIAL PLEXUS, BLOCK, NO CATHETER', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0309', 'BRACHIAL PLEXUS, EXPLORATION AND NEUROLYSIS', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.0310', 'BRACHIAL PLEXUS, EXPLORATION AND/OR NEUROTISATION AND/OR MULTIPLE NERVE\nGRAFTING/CROSSED NERVE TRANSFERS', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0311', 'BRAIN AND SPINE, ARACHNOIDAL CYST, OPERATION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0312', 'BRAIN, ACOUSTIC TUMOR/CEREBELLO-PONTINE ANGLE TUMOR,\nEXCISION, COMPLEX', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.0313', 'BRAIN, ACOUSTIC TUMOR/CEREBELLO-PONTINE ANGLE TUMOR,\nEXCISION, SIMPLE', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.0314', 'BRAIN, ANEURYSM/ARTERIO-VENOUS MALFORMATION,\nCLIPPING/EXCISION, COMPLEX', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.0315', 'BRAIN, ANEURYSM/ARTERIO-VENOUS MALFORMATION,\nCLIPPING/EXCISION, SIMPLE', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.0316', 'BRAIN, CAROTICO-CAVERNOUS FISTULA, EXTRACRANIAL AND\nINTRACRANIAL TRAPPING', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.0317', 'BRAIN, CORTICAL STIMULATION/MAPPING FOR FUNCTIONAL\nNEUROSURGERY', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.0318', 'BRAIN, DEEP BRAIN STIMULATION, BILATERAL', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.0319', 'BRAIN, DEEP BRAIN STIMULATION, UNILATERAL', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.0320', 'BRAIN, EPILEPSY, CRANIOTOMY, COMPLEX (AWAKE\nCRANIOTOMY)', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.0321', 'BRAIN, EPILEPSY, CRANIOTOMY, SIMPLE', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0322', 'BRAIN, HYDROCEPHALUS AND OTHER LESIONS,\nVENTRICULOATRIAL/VENTRICULOPERITONEAL SHUNT', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0323', 'BRAIN, HYDROCEPHALUS AND OTHER LESIONS,\nVENTRICULOATRIAL/VENTRICULOPERITONEAL SHUNT, BILATERAL', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.0324', 'BRAIN, HYDROCEPHALUS, EXTERNAL VENTRICULAR DRAINAGE,\nBILATERAL', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0325', 'BRAIN, HYDROCEPHALUS, EXTERNAL VENTRICULAR DRAINAGE,\nUNILATERAL', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0326', 'BRAIN, HYDROCEPHALUS, REVISION/REMOVAL OF SHUNT', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0327', 'BRAIN, HYDROCEPHALUS, SPINO-PERITONEAL SHUNT', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0328', 'BRAIN, HYDROCEPHALUS, THIRD VENTRICULOSTOMY', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.0329', 'BRAIN, INTRACEREBRAL TUMOR, BIOPSY AND/OR\nDECOMPRESSION/REMOVAL VIA CRANIOTOMY, COMPLEX', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.0330', 'BRAIN, INTRACEREBRAL TUMOR, BIOPSY AND/OR\nDECOMPRESSION/REMOVAL VIA CRANIOTOMY, SIMPLE', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0331', 'BRAIN, INTRACRANIAL ABSCESS, CRANIECTOMY AND DRAINAGE', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.0332', 'BRAIN, INTRACRANIAL ABSCESS, DRAINAGE VIA BURR- HOLE', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0333', 'BRAIN, INTRACRANIAL ABSCESS, EXCISION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0334', 'BRAIN, INTRACRANIAL EXTRACEREBRAL TUMOR, CRANIOTOMY\n& REMOVAL, COMPLEX', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.0335', 'BRAIN, INTRACRANIAL EXTRACEREBRAL TUMOR, CRANIOTOMY\n& REMOVAL, SIMPLE', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0336', 'BRAIN, INTRACRANIAL EXTRACEREBRAL TUMOR,\nCRANIOTOMY/HEMISPHERECTOMY', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0337', 'BRAIN, INTRACRANIAL TUMOR/INTRACRANIAL CYST,\nBIOPSY/DRAINAGE VIA BURR-HOLE', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0338', 'BRAIN, TUMOR, VENTRICULAR PUNCTURE THROUGH BURR-\nHOLE', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.0339', 'BRAIN, VARIOUS LESIONS, INSERTION OF OMMAYA RESERVOIR', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0340', 'BRAIN, VARIOUS LESIONS, PALLIDOTOMY/THALAMOTOMY/OTHER STEREOTACTIC\nPROCEDURE - BILATERAL', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.0341', 'BRAIN, VARIOUS LESIONS,\nPALLIDOTOMY/THALAMOTOMY/OTHER STEREOTACTIC PROCEDURE - UNILATERAL', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.0342', 'BRAIN/SPINE ENDOSCOPIC CSF (CEREBROSPINAL FLUID LEAK)\nLEAK REPAIR', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0343', 'BREAST (NIPPLE), VARIOUS LESIONS, GRAFT AND/OR FLAP\nRECONSTRUCTION (BILATERAL)', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0344', 'BREAST (NIPPLE), VARIOUS LESIONS, GRAFT AND/OR FLAP\nRECONSTRUCTION (UNILATERAL)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0345', 'BREAST, DIFFUSE HYPERTROPHY, REDUCTION >250G\n(UNILATERAL)', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0346', 'BREAST, DIFFUSE HYPERTROPHY, REDUCTION MAMMOPLASTY\n>500G (BILATERAL)', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.0347', 'BREAST, DROOPING, MASTOPEXY/REDUCTION (BILATERAL)', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.0348', 'BREAST, DROOPING, MASTOPEXY/REDUCTION (UNILATERAL)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0349', 'BREAST, DUCTAL LESIONS, MICRODOCHECTOMY (BILATERAL)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0350', 'BREAST, DUCTAL LESIONS, MICRODOCHECTOMY (UNILATERAL)', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0351', 'BREAST, GYNECOMASTIA, REDUCTION (BILATERAL)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0352', 'BREAST, GYNECOMASTIA, REDUCTION (UNILATERAL)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0353', 'BREAST, HYPOPLASIA, AUGMENTATION MAMMOPLASTY\n(PROSTHETIC AND BILATERAL)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0354', 'BREAST, HYPOPLASIA, AUGMENTATION MAMMOPLASTY\n(PROSTHETIC AND UNILATERAL)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0355', 'BREAST, INVERTED NIPPLE, SURGICAL EVERSION (UNILATERAL)', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0356', 'BREAST, INVERTED NIPPLES, SURGICAL EVERSION (BILATERAL)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0357', 'BREAST, LUMP (REMOVAL) WITH PARENCHYMAL FLAP CLOSURE\n(UNILATERAL/BILATERAL)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0358', 'BREAST, LUMP (SINGLE), EXCISION BIOPSY', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0359', 'BREAST, LUMPS (MULTIPLE/BILATERAL), EXCISION BIOPSY', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0360', 'BREAST, LUMPS, IMAGING GUIDED VACUUM ASSISTED BIOPSY,\n> 1 LESIONS', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0361', 'BREAST, LUMPS, IMAGING GUIDED VACUUM ASSISTED BIOPSY,\nSINGLE LESION', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.0362', 'BREAST, POST MASTECTOMY, IMPLANT/EXPANDER\nRECONSTRUCTION (BILATERAL)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0363', 'BREAST, POST MASTECTOMY, IMPLANT/EXPANDER\nRECONSTRUCTION (UNILATERAL)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0364', 'BREAST, POST MASTECTOMY, LATISSMUS DORSI PEDICLED FLAP WITH OR WITHOUT IMPLANT RECONSTRUCTION (BILATERAL)', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.0365', 'BREAST, POST MASTECTOMY, LATISSMUS DORSI PEDICLED FLAP WITH OR WITHOUT IMPLANT RECONSTRUCTION (UNILATERAL)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0366', 'BREAST, POST MASTECTOMY, RECONSTRUCTION USING FREE\nFLAP (UNILATERAL)', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.0367', 'BREAST, POST MASTECTOMY, RECONSTRUCTION USING PEDICLED TRANSVERSE RECTUS ABDOMINIS\nMUSCULOCUTANEOUS FLAP (UNILATERAL)', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.0368', 'BREAST, POST MASTECTOMY, RECONSTRUCTION USING\nPEDICLED TRANSVERSE RECTUS ABDOMINIS MUSCULOCUTANEOUS FLAP (BILATERAL)', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.0369', 'BREAST, POST PROSTHETIC CONTRACTION, CAPSULOTOMY\n(BILATERAL)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0370', 'BREAST, POST PROSTHETIC CONTRACTION, CAPSULOTOMY\n(UNILATERAL)', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0371', 'BREAST, TUMOR (MALIGNANT), NIPPLE/SKIN SPARING\nMASTECTOMY', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.0372', 'BREAST, TUMOR (MALIGNANT), NIPPLE/SKIN SPARING\nMASTECTOMY WITH AXILIARY CLEARANCE, WITH/WITHOUT SENTINEL NODE BIOPSY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0373', 'BREAST, TUMOR (MALIGNANT), NIPPLE/SKIN SPARING\nMASTECTOMY WITH SENTINEL NODE BIOPSY/AXILIARY NODE SAMPLING', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0374', 'BREAST, TUMOR (MALIGNANT), RADICAL MASTECTOMY\nWITH/WITHOUT AXILIARY CLEARANCE', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0375', 'BREAST, TUMOR (MALIGNANT), SIMPLE MASTECTOMY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0376', 'BREAST, TUMOR (MALIGNANT), SIMPLE MASTECTOMY WITH AXILIARY CLEARANCE, WITH/WITHOUT SENTINEL\nNODE BIOPSY', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0377', 'BREAST, TUMOR (MALIGNANT), SIMPLE MASTECTOMY WITH\nSENTINEL NODE BIOPSY/ AXILIARY NODE SAMPLING', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.0378', 'BREAST, TUMOR (MALIGNANT), WIDE EXCISION/ LUMPECTOMY/SEGMENTAL MASTECTOMY/ PARTIAL MASTECTOMY, WITH AXILIARY CLEARANCE, WITH/WITHOUT\nSENTINEL NODE BIOPSY', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.0379', 'BREAST, TUMOR (MALIGNANT), WIDE EXCISION/ LUMPECTOMY/SEGMENTAL MASTECTOMY/ PARTIAL\nMASTECTOMY', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0380', 'BREAST, TUMOR (MALIGNANT), WIDE EXCISION/ LUMPECTOMY/SEGMENTAL MASTECTOMY/ PARTIAL MASTECTOMY, WITH SENTINEL NODE BIOPSY/ AXILIARY NODE\nSAMPLING', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0381', 'BREAST, VARIOUS LESIONS, SUBCUTANEOUS MASTECTOMY\nBILATERAL, EXCLUDING GYNAECOMASTIA', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0382', 'BREAST, VARIOUS LESIONS, SUBCUTANEOUS MASTECTOMY UNILATERAL, EXCLUDING\nGYNAECOMASTIA', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0383', 'BREAST, VARIOUS LESIONS, TRUCUT BIOPSY', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.0384', 'BREAST, VARIOUS LESIONS, TRUCUT BIOPSY, ULTRASOUND\nGUIDED OR STEREOTACTIC (MULTIPLE)', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.0385', 'BREAST, VARIOUS LESIONS, TRUCUT BIOPSY, ULTRASOUND\nGUIDED OR STEREOTACTIC (SINGLE)', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0386', 'BREAST, VARIOUS LESIONS, WIRE LOCALISATION, EXCISION\n(MULTIPLE)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0387', 'BREAST, VARIOUS LESIONS, WIRE LOCALISATION, EXCISION\n(SINGLE)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0388', 'BRONCHUS, FOREIGN BODY, REMOVAL VIA BRONCHOTOMY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0389', 'BRONCHUS, VARIOUS LESIONS, BRONCHIAL\nTHERMOPLASTY/BRONCHUS RADIOFREQUENCY ABLATION', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0390', 'BRONCHUS, VARIOUS LESIONS, BRONCHOPLASTIC PROCEDURE', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0391', 'BRONCHUS/LUNG, BRONCHOSCOPY WITH BIOPSY,\nBRONCHOALVEOLAR LAVAGE', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.0392', 'BRONCHUS/LUNG, BRONCHOSCOPY WITH/WITHOUT BIOPSY', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0393', 'BRONCHUS/LUNG, BRONCHOSCOPY, BLIND TRANSBRONCHIAL\nLUNG BIOPSY FOR DIFFUSE DISEASE', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.0394', 'BRONCHUS/LUNG, BRONCHOSCOPY, TARGETED\nTRANSBRONCHIAL LUNG BIOPSY FOR FOCAL LESIONS (IMAGING- GUIDED)', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0395', 'BRONCHUS/LUNG, BRONCHOSCOPY, WITH DILATATION OF\nTRACHEAL AND BRONCHIAL STRICTURE', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0396', 'BRONCHUS/LUNG, TRANSBRONCHIAL NEEDLE ASPIRATION OF\nMEDIASTINAL LYMPH NODES, WITH OR WITHOUT ENDOBRONCHIAL ULTRASOUND (EBUS)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0397', 'BRONCHUS/TRACHEA, VARIOUS LESIONS, LASER APPLICATION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0398', 'BROW, BROWLIFT, ENDOSCOPIC, BILATERAL', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0399', 'BROW, BROWLIFT, ENDOSCOPIC, BILATERAL WITH MID- FACE\nLIFT', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0400', 'BROW, BROWLIFT, ENDOSCOPIC, UNILATERAL', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0401', 'BROW, DIRECT BROWPLASTY, BILATERAL', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0402', 'BROW, DIRECT BROWPLASTY, UNILATERAL', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0403', 'BURSA, BURSITIS, EXCISION BIOPSY (MORE THAN\n1/BILATERAL)', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0404', 'BURSA, BURSITIS, EXCISION BIOPSY (SINGLE)', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.0405', 'CALCANEUM FRACTURE EXTRA-ARTICULAR OPEN REDUCTION\nINTERNAL FIXATION', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0406', 'CAPSULE ENDOSCOPY', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0407', 'CARPUS, DELAYED/NON UNION, RECONSTRUCTION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0408', 'CARPUS, FRACTURE/DISLOCATION, OPEN REDUCTION AND\nINTERNAL FIXATION', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0409', 'CERVICAL SPINE, APPLICATION OF HALO DEVICE WITHOUT\nOTHER PROCEDURES', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.0410', 'CERVICAL SPINE, CLOSED REDUCTION WITH APPLICATION OF\nSKULL DEVICES BUT WITHOUT OTHER PROCEDURES', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.0411', 'CERVICAL SPINE, EXCISION OF CERVICAL RIB', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.0412', 'CERVICAL SPINE, VARIOUS LESIONS - ANTERIOR\nDECOMPRESSION AND FUSION OR DISC REPLACEMENT (1 SEGMENT)', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.0413', 'CERVICAL SPINE, VARIOUS LESIONS - ANTERIOR DECOMPRESSION AND FUSION OR DISC REPLACEMENT (2\nSEGMENTS)', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0414', 'CERVICAL SPINE, VARIOUS LESIONS, LAMINOPLASTY (WITHOUT\nINSTRUMENTATION)', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0415', 'CERVICAL SPINE, VARIOUS LESIONS,ANTERIOR DECOMPRESSION AND FUSION OR DISC REPLACEMENT\n(3 OR MORE SEGMENTS)', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.0416', 'CERVIX, CANCER, RADICAL TRACHELECTOMY WITH/WITHOUT\nLYMPHADENECTOMY', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.0417', 'CERVIX, CERVICAL INCOMPETENCE, CERCLAGE', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.0418', 'CERVIX, CERVICAL INCOMPETENCE, REMOVAL OF SUTURE', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.0419', 'CERVIX, CERVICAL INTRAEPITHELIAL NEOPLASIA, CONE BIOPSY\nWITH/WITHOUT LASER', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0420', 'CERVIX, ECTROPION, AMPUTATION/REPAIR OF CERVIX\n(TRACHELORRHAPHY)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0421', 'CERVIX, POLYP, EXCISION/EROSION (COMPLICATED) INCLUDES\nD&C WITH BIOPSY', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.0422', 'CERVIX, POLYP, EXCISION/EROSION (SIMPLE) WITH BIOPSY', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0423', 'CERVIX, POLYP/EROSION, LASER THERAPY WITHOUT\nCOLPOSCOPY', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0424', 'CERVIX, STENOSIS, DILATATION', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0425', 'CERVIX, TEAR, REPAIR UNDER ANESTHESIA', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.0426', 'CERVIX, TRANSCERVICAL RESECTION (TCR) MYOMA (<3CM),\nHYSTEROSCOPIC', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0427', 'CERVIX, TRANSCERVICAL RESECTION (TCR) MYOMA (>3CM),\nHYSTEREOSCOPIC', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0428', 'CERVIX, TRANSCERVICAL RESECTION (TCR) POLYP (<2CM),\nHYSTEROSCOPIC', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.0429', 'CERVIX, TRANSCERVICAL RESECTION (TCR) POLYP (>2CM),\nHYSTEROSCOPIC', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0430', 'CERVIX, TRANSCERVICAL RESECTION (TCR) SEPTUM,\nHYSTEROSCOPIC', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0431', 'CERVIX, VARIOUS LESIONS, COLPOSCOPY AND BIOPSY', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.0432', 'CERVIX, VARIOUS LESIONS, COLPOSCOPY, ABLATIONAL AND/OR EXCISIONAL TREATMENT (E.G. LASER VAPOURISATION/LOOP ELECTROSURGICAL EXCISION PROCEDURE/LASER EXCISION OF TRANSFORMATION ZONE WITH BIOPSY)', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.0433', 'CERVIX, VARIOUS LESIONS, PUNCH BIOPSY', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.0434', 'CLAVICLE, CLAVICLE FRACTURE, COMMINUTED PLATING WITH\nOR WITHOUT BONE GRAFTING', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0435', 'CLAVICLE, CLAVICLE FRACTURE, DELAYED UNION/REVISION AND\nORIF WITH/WITHOUT BONE GRAFTING', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0436', 'CLAVICLE, CLAVICLE FRACTURE, SIMPLE', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0437', 'CLITORIS, CLITOROMEGALY, AMPUTATION', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0438', 'COCCYX, VARIOUS LESIONS, EXCISION', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0439', 'COELIAC PLEXUS, BLOCK, ANAESTHETIC', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.0440', 'COELIAC PLEXUS, BLOCK, NEUROLYTIC', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.0441', 'COLON, ANTERIOR RESECTION (OPEN/MIS)', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.0442', 'COLON, COLONOSCOPY (SCREENING), FIBREOPTIC WITH REMOVAL OF POLYP (SINGLE OR MULTIPLE LESS THAN\n1CM)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0443', 'COLON, COLONOSCOPY (SCREENING), FIBREOPTIC WITH\nREMOVAL OF POLYPS (MULTIPLE MORE THAN 1CM)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0444', 'COLON, COLONOSCOPY (SCREENING), FIBREOPTIC\nWITH/WITHOUT BIOPSY', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0445', 'COLON, COLONOSCOPY WITH ENDOSCOPIC MUCOSAL\nRESECTION (EMR) OF LARGE POLYPS (>3CM)', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0446', 'COLON, COLONOSCOPY WITH ENDOSCOPIC SUBMUCOSAL\nDISSECTION (ESD) OF LARGE POLYPS (>3CM)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0447', 'COLON, COLONOSCOPY, FIBREOPTIC WITH REMOVAL OF POLYP\n(SINGLE OR MULTIPLE LESS THAN 1CM)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0448', 'COLON, COLONOSCOPY, FIBREOPTIC WITH REMOVAL OF POLYPS\n(MULTIPLE MORE THAN 1CM)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0449', 'COLON, COLONOSCOPY, FIBREOPTIC WITH/WITHOUT\nBIOPSY', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0450', 'COLON, COLOSTOMY, CLOSURE WITHOUT RESECTION OF\nBOWEL', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0451', 'COLON, HIRSCHSPRUNG?S DISEASE, ENDORECTAL\nPULLTHROUGH (MIS)', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.0452', 'COLON, HIRSCHSPRUNG\'S DISEASE, PULLTHROUGH FOR LONG\nSEGMENT DISEASE (MIS/OPEN)', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.0453', 'COLON, SIGMOID, SIGMOIDOSCOPY (FLEXIBLE), FIBREOPTIC\nWITH/WITHOUT BIOPSY', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0454', 'COLON, SIGMOID, SIGMOIDOSCOPY WITH POLYPECTOMY WITH\nBIOPSY', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.0455', 'COLON, TOTAL COLECTOMY / SUBTOTAL COLECTOMY', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.0456', 'COLON, TOTAL PROCTOCOLECTOMY & ILEO-ANAL POUCH\nRECONSTRUCTION', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.0457', 'COLON, VARIOUS LESIONS, COLOSTOMY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0458', 'COLON, VARIOUS LESIONS, RIGHT/LEFT HEMICOLECTOMY\n(MIS/OPEN)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0459', 'COLON, VARIOUS LESIONS, TOTAL COLECTOMY WITH\nILEORECTAL ANASTOMOSIS/ILEOSTOMY', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.0460', 'COLON, VARIOUS LESIONS, TOTAL PROCTO-COLECTOMY AND\nILEOSTOMY', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0461', 'COLON, VARIOUS LESIONS, TRANVERSE/SIGMOID COLECTOMY\n(MIS/OPEN)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0462', 'CONJUNCTIVA, EXCISION OF PTERYGIUM, BARE SCLERA', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.0463', 'CONJUNCTIVA, LIMBIC TUMOR, REMOVAL', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0464', 'CONJUNCTIVA, NAEVUS, REMOVAL', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0465', 'CONJUNCTIVA, PINGUECULA, REMOVAL', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0466', 'CONJUNCTIVA, PTERYGIUM, REMOVAL WITH CONJUNCTIVAL\nGRAFT', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0467', 'CONJUNCTIVA, PTERYGIUM, REMOVAL, COMPLEX (RECURRENT,\nDOUBLE, SYMBLEPHARON), WITH OR WITHOUT AMNIOTIC MEMBRANE TRANSPLANT', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0468', 'CONTRALATERAL MASTOPEXY/REDUCTION FOLLOWING BREAST, TUMOUR (MALIGNANT) WIDE EXCISION/LUMPECTOMY/SEGMENTAL OR PARTIAL MASTECTOMY, WITH OR WITHOUT SENTINEL NODE BIOPSY\nAND/OR AXILLARY CLEARANCE', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0469', 'CORNEA, ASTIGMATIC KERATOTOMY (WITH OR WITHOUT LIMBAL RELAXING INCISIONS / GRAFT REFRACTIVE\nSURGERY)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0470', 'CORNEA, BAND KERATOPATHY, REMOVAL WITH ETHYLENE\nDIAMINE TETRA-ACETIC ACID', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.0471', 'CORNEA, DESCEMET\'S MEMBRANE ENDOTHELIAL\nKERATOPLASTY (DMEK)', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0472', 'CORNEA, LACERATION, CONJUNCTIVAL GRAFT OVER CORNEA', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0473', 'CORNEA, LACERATION, CONJUNCTIVAL PERITOMY/REPAIR BY\nCONJUNCTIVAL FLAP', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0474', 'CORNEA, MYOPIA, PHOTOTHERAPEUTIC KERATECTOMY/LASER\nIN-SITU KERATOMILEUSIS', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0475', 'CORNEA, RIBOFLAVIN-UVA INDUCED COLLAGEN CROSSLINKING TREATMENT FOR CORNEAL ECTASIA (CXL-CROSSLINKING LASER/POST LASIK KERATECTOMY/KERATITIS)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0476', 'CORNEA, SUPERFICIAL KERATECTOMY', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.0477', 'CORNEA, VARIOUS LESIONS, KERATOPLASTY, COMPLEX\n(TECTONIC, THERAPEUTIC, LAMELLAR, DESCEMET STRIPPING AUTOMATED ENDOTHELIAL KERATOPLASTY)', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.0478', 'CORNEA, VARIOUS LESIONS, TRANSPLANTATION\n(SUPERFICIAL/LAMELLAR/FULL THICKNESS)', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.0479', 'CORNEA, VARIOUS LESIONS, TRANSPLANTATION WITH\nCATARACT EXTRACTION AND INTRA-OCULAR LENS IMPLANTATION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0480', 'CORNEA/CONJUNCTIVA, GUNDERSON FLAP', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0481', 'CORNEAL/OCULAR SURFACE, OSTEO-ODONTO-\nKERATOPROSTHESIS STAGE 1', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.0482', 'CORNEAL/OCULAR SURFACE, OSTEO-ODONTO-\nKERATOPROSTHESIS STAGE 2', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0483', 'DIAPHRAGM, DIAPHRAGMATIC/HIATUS HERNIA, REPAIR\n(MIS/OPEN)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0484', 'DIAPHRAGM, TUMOR, EXCISION', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0485', 'DIAPHRAGM, TUMOR, EXCISION WITH WEDGE RESECTION OF\nLUNG', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0486', 'DIGIT(S), NAIL BED, DEFORMITY/DEFECT, RECONSTRUCTION', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0487', 'DIGIT(S), NAILBED LACERATION, NAILBED GRAFTING', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0488', 'DIGIT(S), SOFT TISSUE DEFECT, COMPLEX SMALL SKIN FLAPS,\nMULTIPLE FLAPS', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0489', 'DIGIT(S), SOFT TISSUE DEFECT, LARGE COMPLEX PEDICLED\nFLAPS', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0490', 'DIGIT(S), SOFT TISSUE DEFECT, SIMPLE SKIN FLAP', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0491', 'DUODENUM, TRAUMA, BYPASS OPERATION', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0492', 'DUODENUM, TUMOR, PANCREATICO-DUODENECTOMY', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.0493', 'DUODENUM, TUMOUR, PANCREAS PRESERVING\nDUODENECTOMY WITH RECONSTRUCTION OF AMPULLA', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.0494', 'DUODENUM, ULCER, PARTIAL GASTRECTOMY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0495', 'DUODENUM, ULCER, VAGOTOMY - ALL TYPES', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0496', 'DUODENUM, VARIOUS LESIONS,\nGASTROENTEROSTOMY/GASTRODUODENOSTOMY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0497', 'EAR (MIDDLE), ABSCESS/INFLAMMATION, OPERATION', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0498', 'EAR (MIDDLE), COCHLEAR IMPLANT', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.0499', 'EAR (MIDDLE), MIDDLE EAR IMPLANT SURGERY', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.0500', 'EAR (MIDDLE), ROUND WINDOW PERFORATION, REPAIR', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0501', 'EAR (MIDDLE), VARIOUS LESIONS (BENIGN CONDITION),\nEXCISION BIOPSY', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.0502', 'EAR (MIDDLE), VARIOUS LESIONS, EXPLORATION AND\nTYMPANOTOMY', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0503', 'EAR (MIDDLE), VARIOUS LESIONS, STAPEDECTOMY', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0504', 'EAR, AUDITORY MEATUS (INTERNAL), TUMOR, TRANSMASTOID REMOVAL WITH EXTENDED\nMASTOIDECTOMY', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0505', 'EAR, BILATERAL PREAURICULAR SINUS EXCISION', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0506', 'EAR, CAULIFLOWER EAR, CORRECTION', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0507', 'EAR, CONGENITAL ATRESIA, RECONSTRUCTION OF EXTERNAL\nAUDITORY CANAL AND MIDDLE EAR', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0508', 'EAR, DEFORMITY, COMPOSITE GRAFT', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0509', 'EAR, DEFORMITY, CORRECTION (BILATERAL)', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0510', 'EAR, DEFORMITY, CORRECTION (UNILATERAL)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0511', 'EAR, DEFORMITY, LOBULE RECONSTRUCTION (BILATERAL)', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0512', 'EAR, DEFORMITY, LOBULE RECONSTRUCTION (UNILATERAL)', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.0513', 'EAR, EUSTACHIAN TUBE, VARIOUS LESIONS,\nCATHETERISATION/INFLATION', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.0514', 'EAR, EXCISION PSEUDOCYST PINNA', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.0515', 'EAR, EXOSTOSIS OBTURANS, EXCISION BIOPSY', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0516', 'EAR, FOREIGN BODY, COMPLEX REMOVAL/EXCISION\n(EMBEDDED/LARGE)', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0517', 'EAR, HEMATOMA/SEROMA, EVACUATION/INCISION &\nDRAINAGE', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0518', 'EAR, IMPLANTATION OF BONE-ANCHORED HEARING AID', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0519', 'EAR, KERATOSIS OBTURANS MODERATE/SEVERE, EXCISION\nBIOPSY UNDER GA', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.0520', 'EAR, LACERATION (FULL THICKNESS), REPAIR > 3CM', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0521', 'EAR, MICROTIA, CREATION OF POST-AURICULAR SULCUS WITH\nSKIN GRAFT', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0522', 'EAR, MICROTIA, INSERTION OF CARTILAGE/SILASTIC\nFRAMEWORK', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0523', 'EAR, MICROTIA, REPOSITIONING OF LOBULE', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.0524', 'EAR, PARTIAL AMPUTATION, RECONSTRUCTION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0525', 'EAR, POLYP, REMOVAL', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0526', 'EAR, SEBACEOUS CYST, EXCISION', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0527', 'EAR, TOTAL AMPUTATION, MICROVASCULAR RECONSTRUCTION', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.0528', 'EAR, TOTAL AMPUTATION, STAGED RECONSTRUCTION (EACH\nSTAGE)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0529', 'EAR, TYMPANIC MEMBRANE, BILATERAL MYRINGOTOMY WITH\nTUBE', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.0530', 'EAR, TYMPANIC MEMBRANE, BILATERAL MYRINGOTOMY\nWITHOUT TUBE', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.0531', 'EAR, TYMPANIC MEMBRANE, PERFORATION,\nCAUTERISATION/DIATHERMY', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0532', 'EAR, TYMPANIC MEMBRANE, PERFORATION, ROUND WINDOW\nREPAIR', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0533', 'EAR, TYMPANIC MEMBRANE, UNILATERAL MYRINGOTOMY\nWITH TUBE', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.0534', 'EAR, TYMPANIC MEMBRANE, UNILATERAL, TRANSTYMPANIC PERFUSION OF DRUGS, WITH INJECTIONS/MYRINGOTOMY INCLUDING REPEAT\nPROCEDURES DURING A 90-DAY PERIOD IN THE SAME EAR', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.0535', 'EAR, TYMPANIC MEMBRANE, UNILATERAL,MYRINGOTOMY\nWITHOUT TUBE', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0536', 'EAR, UNILATERAL PRE AURICULAR SINUS EXCISION', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.0537', 'EAR, VARIOUS LESIONS, MEATOPLASTY/CANALPLASTY WITH /\nWITHOUT SPLIT SKIN GRAFT', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0538', 'EAR, VARIOUS LESIONS, MIDDLE FOSSA EXTRA-DURAL APPROACH TO TEMPORAL BONE WITH/WITHOUT\nTRANSMASTOID APPROACH COMBINED ACCESS', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0539', 'EAR, VARIOUS LESIONS, MYRINGOPLASTY (LATERAL GRAFT/ONLAY GRAFT TECHNIQUE) WITH/WITHOUT\nCANALPLASTY', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0540', 'EAR, VARIOUS LESIONS, MYRINGOPLASTY (POST-\nAURAL/ENDAURAL APPROACH)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0541', 'EAR, VARIOUS LESIONS, MYRINGOPLASTY (SIMPLE)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0542', 'EAR, VARIOUS LESIONS, OSSICULAR CHAIN RECONSTRUCTION\nWITH/WITHOUT MYRINGOPLASTY', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0543', 'EAR, VARIOUS LESIONS, VARIOUS GRAFT TO FENESTRATION\nCAVITY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0544', 'ELBOW (MEDIAL EPICONDYLE), FRACTURE, EXCISION BONY\nFRAGMENT', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.0545', 'ELBOW, CONDYLE/RADIAL HEAD FRACTURE, RADIAL HEAD\nEXCISION/CONDYLE/ARTHROPLASTY', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0546', 'ELBOW, CORONOID FRACTURE, ORIF', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0547', 'ELBOW, DISLOCATION , LIGAMENT REPAIR (COMPLEX,\nWITH/WITHOUT IMPLANT)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0548', 'ELBOW, DISLOCATION , LIGAMENT REPAIR (SINGLE)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0549', 'ELBOW, FRACTURE/ DISLOCATION, REPAIR OF LIGAMENTS/ ORIF', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0550', 'ELBOW, FRACTURE/DISLOCATION, OPEN REDUCTION AND\nINTERNAL FIXATION (ORIF)', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0551', 'ELBOW, SUPRACONDYLAR FRACTURE, M&R, PERCUTANEOUS\nPINNING', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0552', 'ELBOW, TENNIS ELBOW, RELEASE', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.0553', 'ELBOW, VARIOUS LESIONS, PRIMARY TOTAL JOINT ARTHROPLASTY WITH AUGMENTATION, REQUIRING EXTRA\nIMPLANTS OR BONE GRAFTS, OPEN/MIS/NAVIGATED', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0554', 'ELBOW, VARIOUS LESIONS, PRIMARY TOTAL JOINT\nARTHROPLASTY, OPEN/MIS/NAVIGATED', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.0555', 'ELBOW, VARIOUS LESIONS, RECONSTRUCTION WITH OR\nWITHOUT SYNOVECTOMY', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0556', 'ELBOW, VARIOUS LESIONS, REVISION TOTAL JOINT\nARTHROPLASTY, OPEN/MIS/NAVIGATED', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.0557', 'ELBOW,THERAPEUTIC ARTHROSCOPY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0558', 'ENDOLYMPHATIC SAC, VARIOUS LESIONS, TRANSMASTOID\nSHUNT PROCEDURE', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0559', 'ENDOSCOPIC RETROGRADE CHOLANGIOPANCREATOGRAPHY (ERCP) WITH\nSPHINCTEROTOMY/REMOVAL OF STONE/INSERTION OF\nBILIARY STENT', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0560', 'ESOPHAGUS, ACHALASIA, CARDIOMYOTOMY (OPEN/MIS)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0561', 'ESOPHAGUS, ATRESIA, REPAIR AND ANASTOMOSIS', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0562', 'ESOPHAGUS, BENIGN TUMOUR, RESECTION (MIS/OPEN)', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.0563', 'ESOPHAGUS, DIVERTICULUM, EXCISION (MIS/OPEN)', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.0564', 'ESOPHAGUS, MOTILITY DISORDER, LONG MYOTOMY\n(MIS/OPEN)', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0565', 'ESOPHAGUS, STRICTURE, DILATATION (ENDOSCOPIC)', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.0566', 'ESOPHAGUS, TUMOR, ALLISON/IVOR-LEWIS OPERATION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0567', 'ESOPHAGUS, TUMOR, BYPASS WITH STOMACH/INTESTINE\n(MIS/OPEN)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0568', 'ESOPHAGUS, TUMOR, CERVICAL/LARYNGOPHARYNGECTOMY WITH\nTRACHEOSTOMY WITH/WITHOUT PLASTIC\nRECONSTRUCTION', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.0569', 'ESOPHAGUS, TUMOR, TOTAL ESOPHAGECTOMY', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.0570', 'ESOPHAGUS, VARICES, ESOPHAGEAL/TRANSECTION WITH\nSPLENECTOMY', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0571', 'ESOPHAGUS, VARICES, GASTRO ESOPHAGEAL\nDEVASCULARISATION WITH ESOPHAGEAL TRANSECTION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0572', 'ESOPHAGUS, VARIOUS LESIONS, CERVICAL ESOPHAGOSTOMY', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0573', 'ESOPHAGUS/INTESTINE/STOMACH, UPPER GI ENDOSCOPY WITH COMPLICATED POLYPECTOMY (E.G.\nLARGE POLYP REQUIRING MULTIPLE PIECEMEAL RESECTIONS, MULTIPLE POLYPS >2, OR POLYPS WITH COMPLICATIONS SUCH AS BLEEDING) OR ENDOSCOPIC\nMUCOSAL RESECTION', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0574', 'ESOPHAGUS/INTESTINE/STOMACH, UPPER GI ENDOSCOPY\nWITH ENDOSCOPIC SUBMUCOSAL DISSECTION', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0575', 'ESOPHAGUS/INTESTINE/STOMACH, UPPER GL ENDOSCOPY\nWITH INSERTION OF PROSTHESIS', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0576', 'ESOPHAGUS/STOMACH, GASTROSCOPY AND DILATATION', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0577', 'ESOPHAGUS/STOMACH, GASTROSCOPY WITH THERAPY EG. APC-\nFULGARISATION OF TUMOR', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0578', 'ESOPHAGUS/STOMACH/COLON, GASTROINTESTINAL\nENDOSCOPY, ABLATIVE TREATMENT', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0579', 'EXAMINATION UNDER ANAESTHESIA (GENERAL OR REGIONAL)\nWITHOUT OTHER SURGICAL PROCEDURES', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.0580', 'EYE, EXOPHTHALMOS DUE TO THYROTOXICOSIS, RETRACTOR\nRECESSIONS (BILATERAL)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0581', 'EYE, EXOPHTHALMOS DUE TO THYROTOXICOSIS, RETRACTOR\nRECESSIONS (UNILATERAL)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0582', 'EYE, GLAUCOMA DRAINAGE IMPLANTS EG. AHMED VALVE\nIMPLANT, MOLTENO IMPLANT , BAERVELDT TUBE SHUNT', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0583', 'EYE, GLAUCOMA, CYCLODESTRUCTIVE PROCEDURES', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0584', 'EYE, GLAUCOMA, FILTERING AND ALLIED OPERATIONS\n(INCLUDING TRABECULECTOMY / SCLERECTOMY)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0585', 'EYE, GLAUCOMA, FILTERING AND ALLIED OPERATIONS\n(INCLUDING TRABECULECTOMY / SCLERECTOMY) WITH ANTI-METABOLITES', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0586', 'EYE, GLAUCOMA, FILTERING AND ALLIED OPERATIONS AND\nCATARACT SURGERY, WITH OR WITHOUT INTRAOCULAR LENS IMPLANT', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0587', 'EYE, GLAUCOMA, GONIOSYNECHIOLYSIS', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0588', 'EYE, GLAUCOMA, GONIOTOMY/TRABECULOTOMY (BILATERAL)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0589', 'EYE, GLAUCOMA, GONIOTOMY/TRABECULOTOMY (BILATERAL) -\nPAEDIATRIC', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0590', 'EYE, GLAUCOMA, GONIOTOMY/TRABECULOTOMY\n(UNILATERAL)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0591', 'EYE, GLAUCOMA, GONIOTOMY/TRABECULOTOMY\n(UNILATERAL) - PAEDIATRIC', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0592', 'EYE, GLAUCOMA, SELECTIVE LASER TRABECULOPLASTY\n(BILATERAL)', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0593', 'EYE, GLAUCOMA, SELECTIVE LASER TRABECULOPLASTY\n(UNILATERAL)', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.0594', 'EYE, INTRAOCULAR FOREIGN BODY, REMOVAL FROM ANTERIOR\nSEGMENT', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0595', 'EYE, INTRAOCULAR FOREIGN BODY, REMOVAL FROM\nPOSTERIOR SEGMENT', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0596', 'EYE, MEDIAL CANTHAL RECONSTRUCTION, BILATERAL', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0597', 'EYE, MEDIAL CANTHAL RECONSTRUCTION, UNILATERAL', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0598', 'EYE, NEEDLING OF BLEBS WITH ANTI-METABOLITES', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.0599', 'EYE, PERFORATING WOUND (NOT INVOLVING INTRAOCULAR\nSTRUCTURES), REPAIR', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0600', 'EYE, PERFORATING WOUND (WITH INCARCERATION/PROLAPSE OF UVEAL TISSUE/LENS/VITREOUS), REPAIR', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0601', 'EYE, SOCKET, COMPLEX ANOPHTHALMIC SOCKET\nRECONSTRUCTION', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0602', 'EYE, SQUINT, COMPLEX STRABISMUS SURGERY (4 OR MORE\nMUSCLES, TRANSPOSITION, MUSCLE SPLITTING)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0603', 'EYE, SQUINT, COMPLEX STRABISMUS SURGERY (VESSEL SPARING SX, PARALYTIC AND RESTRICTIVE STRABISMUS,\nHORIZONTAL COMBINED WITH OBLIQUE/VERTICAL', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.0604', 'EYE, SQUINT, OPERATION (ONE/BOTH EYES - 2 MUSCLES)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0605', 'EYE, SQUINT, OPERATION (ONE/BOTH EYES - 3 MUSCLES OR\nMORE)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0606', 'EYE, SQUINT, OPERATION (ONE/BOTH EYES - ADJUSTABLE\nSUTURES)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0607', 'EYE, SQUINT, OPERATION (ONE/BOTH EYES - TRANSPOSITION)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0608', 'EYE, THERMAL PHOTOCOAGULATION OF CHOROIDAL\nNEOVASCULARIZATION AND ALLIED CONDITIONS', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0609', 'EYE, VARIOUS LESIONS, ENUCLEATION WITHOUT IMPLANT', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0610', 'EYE, VARIOUS LESIONS, EVISCERATION', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0611', 'EYE, VARIOUS LESIONS, RESUTURING OF WOUND FOLLOWING\nINTRAOCULAR PROCEDURES', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.0612', 'EYEBALL, ENUCLEATION WITH ACRYLIC & SCLERAL BALL\nIMPLANT', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.0613', 'EYELID LOWERING (GOLD WEIGHT IMPLANT), BILATERAL', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0614', 'EYELID LOWERING (GOLD WEIGHT IMPLANT), UNILATERAL', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0615', 'EYELID, INVOLUTIONAL ENTROPION / ECTROPION CORRECTION\n(UNILATERAL)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0616', 'EYELID, PTOSIS, CONJUNCTIVAL MULLERECTOMY (BILATERAL)', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0617', 'EYELID, PTOSIS, CONJUNCTIVAL MULLERECTOMY (UNILATERAL)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0618', 'EYELIDS, BOTOX INJECTIONS FOR BLEPHAROSPASM &\nHEMIFACIAL SPASM', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.0619', 'EYELIDS, CHALAZION OR STYE EXCISION UNDER GENERAL\nANAESTHESIA', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.0620', 'EYELIDS, EXPOSURE, TARSORRHAPHY (PERMANENT)', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0621', 'EYELIDS, EXPOSURE, TARSORRHAPHY (TEMPORARY)', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.0622', 'EYELIDS, FULL THICKNESS LACERATION, REPAIR', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0623', 'EYELIDS, HEMANGIOMA, INTRA-LESION INJECTIONS (FULL\nCOURSE)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0624', 'EYELIDS, INVOLUTIONAL ECTROPION/ ENTROPION CORRECTION\n(BILATERAL)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0625', 'EYELIDS, NON-INVOLUTIONAL ECTROPION/ ENTROPION,\nCORRECTION (BILATERAL)', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0626', 'EYELIDS, NON-INVOLUTIONAL ENTROPION/ ECTROPION\nCORRECTION (UNILATERAL)', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0627', 'EYELIDS, PTOSIS, CORRECTION FASANELLA (BILATERAL)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0628', 'EYELIDS, PTOSIS, CORRECTION FASANELLA (UNILATERAL)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0629', 'EYELIDS, PTOSIS, CORRECTION LEVATOR PALPEBRAE SUPERIORIS\nRESECTION (BILATERAL)', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.0630', 'EYELIDS, PTOSIS, CORRECTION LEVATOR PALPEBRAE SUPERIORIS\nRESECTION (UNILATERAL)', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0631', 'EYELIDS, PTOSIS, CORRECTION WITH FASCIA LATA GRAFT\n(BILATERAL)', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.0632', 'EYELIDS, PTOSIS, CORRECTION WITH FASCIA LATA GRAFT\n(UNILATERAL)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0633', 'EYELIDS, SIMPLE LACERATION, REPAIR', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0634', 'EYELIDS, TRICHIASIS, CRYOTHERAPY', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0635', 'EYELIDS, TUMOR, EXCISION AND REPAIR WITH FULL THICKNESS\nSKIN GRAFTING', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0636', 'EYELIDS, TUMOR, EXCISION AND REPAIR WITH LOCAL FLAP', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0637', 'EYELIDS, TUMOR, SHAVING EXCISION', 2600000, 'TINDAKAN OPERATIF'); +INSERT INTO `tarif_rs` (`ID_Tarif_RS`, `Tindakan_RS`, `Tarif_RS`, `Kategori_RS`) VALUES +('R.TO.0638', 'EYELIDS, VARIOUS LESIONS, CANTHOPLASTY (MEDIAL/LATERAL)', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.0639', 'EYELIDS, VARIOUS LESIONS, COMPOSITE GRAFT (CHONDRO-\nCUTANEOUS/CHONDRO-MUCOSAL)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0640', 'EYELIDS, VARIOUS LESIONS, FULL THICKNESS WEDGE RESECTION\nWITH REPAIR', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0641', 'EYELIDS, VARIOUS LESIONS, MAJOR RECONSTRUCTION, INVOLVING ANTERIOR AND POSTERIOR LAMELLA AND MORE\nTHAN 1/3 LID', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.0642', 'EYELIDS, VARIOUS LESIONS, MULTIPLE PLASTIC LID PROCEDURES', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.0643', 'EYELIDS, VARIOUS LESIONS, RECONSTRUCTION USING FULL\nTHICKNESS FLAP', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0644', 'EYELIDS, VARIOUS LESIONS, UPPER BLEPHAROPLASTY,\nBILATERAL', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0645', 'EYELIDS, VARIOUS LESIONS, UPPER BLEPHAROPLASTY,\nUNILATERAL', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0646', 'EYELIDS, VARIOUS LESIONS, WHOLE THICKNESS\nRECONSTRUCTION (OTHER THAN DIRECT SUTURE ONLY)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0647', 'FACE, CONTOUR DEFECT, RECONSTRUCTION / INSERTION OF\nIMPLANT(S)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0648', 'FACE, DEFECT / DEFORMITY, RECONSTRUCTION / INSERTION OF\nIMPLANT', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0649', 'FACE, FRACTURE, ENDOSCOPIC REDUCTION AND FIXATION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0650', 'FACE, FRACTURES (MORE THAN 2), OPEN REDUCTION AND\nINTERNAL FIXATION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0651', 'FACE, FRACTURES (PANFACIAL), OPEN REDUCTION AND\nINTERNAL FIXATION', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.0652', 'FACE, INFECTION / OSTEOMYELITIS, MAJOR\nDRAINAGE/SEQUESTRECTOMY', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0653', 'FACE, INFECTION / OSTEOMYELITIS, SIMPLE DRAINAGE\n/SEQUESTRECTOMY', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0654', 'FACE, INTRAOSSEOUS TUMOR (LARGE), EXCISION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0655', 'FACE, INTRAOSSEOUS TUMOR (SMALL), EXCISION', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0656', 'FACIAL, TRIGEMINAL GANGLION BLOCK, ANAESTHETIC', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0657', 'FACIAL, TRIGEMINAL GANGLION BLOCK, NEUROLYTIC', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0658', 'FACIAL, TRIGEMINAL NERVE BLOCK, ANAESTHETIC', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0659', 'FACIAL, TRIGEMINAL NERVE BLOCK, NEUROLYTIC', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.0660', 'FALLOPIAN TUBE, BLOCKED TUBE, FLUOROSCOPIC TRANSCERVICAL FALLOPIAN TUBAL RECANALISATION\n(FTR)', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0661', 'FALLOPIAN TUBE, BLOCKED TUBES, CORNUAL REANASTOMOSIS\n(MICROSURGERY/MIS)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0662', 'FALLOPIAN TUBE, BLOCKED TUBES, PLASTIC REPAIR\n(MICROSURGERY/MIS)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0663', 'FALLOPIAN TUBE, BLOCKED TUBES, PLASTIC REPAIR /\nSALPINGOSTOMY (MACROSURGERY)', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.0664', 'FALLOPIAN TUBE, BLOCKED TUBES, TUBAL REANASTOMOSIS,\nMIS', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0665', 'FALLOPIAN TUBE, BLOCKED TUBES, TUBOPLASTY,\nRECANALISATION, HYSTEROSCOPIC', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0666', 'FALLOPIAN TUBE, COMPLETED FAMILY, DIVISION/LIGATION', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.0667', 'FALLOPIAN TUBE, FALLOPOSCOPY', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.0668', 'FALLOPIAN TUBE, PERITUBAL ADHESIONS, SALPINGOLYSIS\n(MICROSURGERY/MIS)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0669', 'FALLOPIAN TUBE, PERITUBAL ADHESIONS,\nSALPINGOLYSIS (MACROSURGERY)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0670', 'FALLOPIAN TUBE, REMOVAL OF ECTOPIC GESTATION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0671', 'FALLOPIAN TUBE, STERILIZATION, HYSTEROSCOPIC', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.0672', 'FALLOPIAN TUBE, STERILIZATION, MIS', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.0673', 'FALLOPIAN TUBE, TUBAL PATHOLOGY OTHER THAN ECTOPIC,\nSALPINGECTOMY/ SALPINGOSTOMY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0674', 'FALLOPIAN TUBE, TUBAL PATHOLOGY, SALPINGECTOMY, MIS', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0675', 'FALLOPIAN TUBE, TUBO-OVARIAN ABSCESS,\nDRAINAGE(TRANSABDOMINAL)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0676', 'FALLOPIAN TUBE/UTERUS/OVARY, LAPAROSCOPY, DIAGNOSTIC,\nWITH HYDROTUBATION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0677', 'FALLOPIAN TUBE/UTERUS/OVARY, LAPAROSCOPY,\nTHERAPEUTIC', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0678', 'FASCIA (DEEP), RUPTURE WITH HERNIATED MUSCLE, REPAIR', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0679', 'FASCIA PALMAR, DUPUYTREN\'S CONTRACTURE, FASCIECTOMY\n(MULTIPLE)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0680', 'FASCIA PALMAR, DUPUYTREN\'S CONTRACTURE, FASCIECTOMY\n(SINGLE)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0681', 'FAT TRANSFER, CORRECTION OF CONTOURS/CONGENITAL DEFORMITIES, RECONSTRUCTION POST ABLATIVE SURGERY/TRAUMA,\n<=50CC', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.0682', 'FAT TRANSFER, CORRECTION OF CONTOURS/CONGENITAL DEFORMITIES,\nRECONSTRUCTION POST ABLATIVE SURGERY/TRAUMA,\n>= 100CC', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0683', 'FAT TRANSFER, CORRECTION OF CONTOURS/CONGENITAL DEFORMITIES,\nRECONSTRUCTION POST ABLATIVE SURGERY/TRAUMA,\n50 - 100CC', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0684', 'FEMALE GENITALIA, TRANSSEXUALISM (TRANSVESTISM), SEX\nREASSIGNMENT (FEMALE TO MALE)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0685', 'FEMALE GENITALIA, TRANSSEXUALISM (TRANSVESTISM), SEX REASSIGNMENT WITH MASTECTOMY (FEMALE TO\nMALE)', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0686', 'FEMUR, DELAYED/NON UNION, WITH BONE GRATING', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0687', 'FEMUR, DELAYED/NON UNION, WITH RE-INTERNAL FIXATION\nAND BONE GRAFTING', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0688', 'FEMUR, FRACTURE (COMPLEX INTRA-ARTICULAR), OPEN\nREDUCTION AND INTERNAL FIXATION (ORIF) WITH PLATE AND SCREWS', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0689', 'FEMUR, FRACTURE (FEMUR SHAFT), INTRAMEDULLARY\nNAILING/ROD (WITH OR WITHOUT LOCKING)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0690', 'FEMUR, FRACTURE (INTERCONDYLAR), OPEN REDUCTION AND\nINTERNAL FIXATION (ORIF)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0691', 'FEMUR, FRACTURE (MULTIFRAGMENTARY), INTRAMEDULLARY\nNAILING (WITH OR WITHOUT LOCKING)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0692', 'FEMUR, FRACTURE (PAEDIATRIC SHAFT), INTRAMEDULLARY\nFLEXIBLE NAILING', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0693', 'FEMUR, FRACTURE (SINGLE CONDYLAR), OPEN REDUCTION AND\nINTERNAL FIXATION (ORIF)', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0694', 'FEMUR, FRACTURE, OPEN REDUCTION AND INTERNAL FIXATION\nWITH PLATE AND SCREWS', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0695', 'FEMUR, NECK OF FEMUR FRACTURE (PAEDIATRIC), PIN\nFIXATION', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0696', 'FEMUR, SLIPPED CAPITAL FEMORAL EPIPHYSIS (SCFE), SCREW\nFIXATION', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0697', 'FINGER, DEFECT/CONTRACTURE (MULTIPLE), RECONSTRUCTION', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.0698', 'FINGER, DEFECT/CONTRACTURE (SINGLE), RECONSTRUCTION', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0699', 'FINGER, DEFORMITIES, CORRECTION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0700', 'FINGER, INJURY, DEBRIDEMENT', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0701', 'FINGER, MACRODACTYLY, SURGICAL REDUCTION OF ENLARGED\nELEMENTS, MULTIPLE DIGITS', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0702', 'FINGER, MACRODACTYLY, SURGICAL REDUCTION OF ENLARGED\nELEMENTS, SINGLE DIGIT', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0703', 'FINGER, RING CONSTRICTION (MULTIPLE), CORRECTION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0704', 'FINGER, RING CONSTRICTION (SINGLE), CORRECTION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0705', 'FINGER, SWAN NECK/BOUTONNIERE DEFORMITY (SINGLE),\nCORRECTION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0706', 'FINGER, SYNDACTYLY (MULTIPLE), SEPARATION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0707', 'FINGER, SYNDACTYLY (SINGLE), CORRECTION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0708', 'FINGER, TRAUMA, REPLANTATION (MULTIPLE)', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.0709', 'FINGER, TRAUMA, REPLANTATION/TRANSPLANTATION (SINGLE)', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0710', 'FINGER, TRAUMA, TERMINALISATION (MULTIPLE)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0711', 'FINGER, TRAUMA, TERMINALISATION (SINGLE)', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0712', 'FINGER, VARIOUS LESIONS, AMPUTATION (MULTIPLE)', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0713', 'FINGER, VARIOUS LESIONS, AMPUTATION (SINGLE)', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.0714', 'FINGER, VARIOUS LESIONS, RAY AMPUTATION (MULTIPLE)', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0715', 'FINGER, VARIOUS LESIONS, RAY AMPUTATION (SINGLE)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0716', 'FINGER, VARIOUS LESIONS, SYNOVECTOMY WITH SOFT TISSUE\nRECONSTRUCTION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0717', 'FOOT, ACHILLES TENDON RECONSTRUCTION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0718', 'FOOT, CONGENITAL TALIPES EQUINOVARUS (CTEV), BILATERAL\nRELEASE', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.0719', 'FOOT, CONGENITAL TALIPES EQUINOVARUS (CTEV), MEDIAL\nRELEASE', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0720', 'FOOT, CONGENITAL TALIPES EQUINOVARUS (CTEV), POST\nMEDIAL RELEASE', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.0721', 'FOOT, CONGENITAL TALIPES EQUINOVARUS (CTEV), POST\nRELEASE', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0722', 'FOOT, CONGENITAL TALIPES EQUINOVARUS (CTEV), POSTERIOR\nMEDIAL RELEASE WITH REVISION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0723', 'FOOT, CRUSH INJURIES (COMPLEX), WOUND DEBRIDEMENT', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0724', 'FOOT, CRUSH INJURIES (SIMPLE), WOUND DEBRIDEMENT', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0725', 'FOOT, FRACTURES, COMPLEX, MULTIPLE, INCLUDING TALUS AND CALCANEUM, OPEN REDUCTION AND INTERNAL FIXATION', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0726', 'FOOT, FRACTURES, SIMPLE, SINGLE', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0727', 'FOOT, HAGLUND\'S DEFORMITY, OSTEOTOMY', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0728', 'FOOT, HALLUX VALGUS/HAMMER TOE, PROXIMAL OSTEOTOMY, WITH OR WITHOUT SOFT TISSUE\nRECONSTRUCTION', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0729', 'FOOT, HALLUX VALGUS/HAMMER TOE, SOFT TISSUE\nRECONSTRUCTION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0730', 'FOOT, MULTIPLE FOOT OSTEOTOMIES', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0731', 'FOOT, ONE BONE OSTEOTOMY WITH SOFT TISSUE\nRELEASE, CUBOID', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0732', 'FOOT, ONE BONE OSTEOTOMY WITH SOFT TISSUE\nRELEASE, DWYER?S (CALCANEAL)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0733', 'FOOT, POLYDACTYLY, EXCISION', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.0734', 'FOOT, POLYDACTYLY, EXCISION WITH RECONSTRUCTION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0735', 'FOOT, POSTERIOR TIBIAL TENDON DYSFUNCTION (PTTD),\nPOSTERIOR TIBIALIS RECONSTRUCTION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0736', 'FOOT, TENDON TRANSFERS, SPLIT TIBIALIS ANTERIOR TENDON\nTRANSFER (SPLATT)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0737', 'FOOT, TENDON TRANSFERS, SPLIT TIBIALIS POSTERIOR TENDON\nTRANSFER (SPLOTT)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0738', 'FOOT, TENDON TRANSFERS, TIBIA ANTERIOR TRANSFER', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0739', 'FOOT, VARIOUS LESIONS, MORE THAN ONE JOINT,\nARTHRODESIS', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0740', 'FOOT, VARIOUS LESIONS, OSTEOTOMY, WITH OR WITHOUT\nTENDON RECONSTRUCTION', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0741', 'FOREARM, RADIAL HEAD FRACTURE, OPEN REDUCTION OF\nRADIAL HEAD FOR MISSED MONTEGGIA', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0742', 'FOREARM, RADIUS/ULNA SHAFT FRACTURE, INTRAMEDULLARY\nROD', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0743', 'GALLBLADDER (ACUTE/COMPLICATED), OPEN OR\nLAPARASCOPIC CHOLECYESTECTOMY', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.0744', 'GALLBLADDER, CHOLECYSTITIS, IMAGING GUIDED\nPERCUTANEOUS CHOLECYSTOSTOMY', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0745', 'GALLBLADDER, TUMOUR, RADICAL CHOLECYSTECTOMY WITH SEGMENT 4B AND 5 LIVER RESECTION AND\nRADICAL LYMPHADENECTOMY', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.0746', 'GALLBLADDER, TUMOUR, RADICAL CHOLECYSTECTOMY WITH SEGMENT 4B AND 5 LIVER RESECTION AND\nRADICAL LYMPHADENECTOMY AND CHOLEDOCHECTOMY WITH\nHEPATICO-ENTERIC ANASTOMOSIS', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.0747', 'GALLBLADDER, VARIOUS LESIONS, CHOLECYSTECTOMY (OPEN\nOR LAP)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0748', 'GALLBLADDER, VARIOUS LESIONS, CHOLECYSTECTOMY AND\nCHOLEDOCHO- JEJUNOSTOMY/DUODENOSTOMY/GASTROSTOMY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0749', 'GALLBLADDER, VARIOUS LESIONS, CHOLECYSTECTOMY AND\nREPAIR OF CHOLECYSTO-ENTERIC/ CHOLECYSTO- CHOLEDOCHAL FISTULA (OPEN OR LAP)', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.0750', 'GALLBLADDER, VARIOUS LESIONS, CHOLECYSTECTOMY WITH\nINTRAOPERATIVE CHOLANGIOGRAM (OPEN OR LAP)', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0751', 'GALLBLADDER, VARIOUS LESIONS, CHOLECYSTECTOMY,\nCHOLEDOCHOTOMY, COMMON BILE DUCT EXPLORATION WITH CHOLEDOCHO-DUODENOSTOMY (OPEN OR LAP)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0752', 'GALLBLADDER, VARIOUS LESIONS, CHOLECYSTO-\nDUODENOSTOMY/CHOLECYSTO- GASTRECTOMY/CHOLECYSTO-JEJUNOSTOMY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0753', 'GALLBLADDER, VARIOUS LESIONS, CHOLECYSTOSTOMY\n(PARTIAL, OPEN)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0754', 'GALLBLADDER, VARIOUS LESIONS, MIS/OPEN\nCHOLECYSTECTOMY AND TRANSCYSTIC COMMON BILE DUCT EXPLORATION', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0755', 'GENITAL TRACT, CANCER, STAGING UNDER GENERAL ANESTHESIA (INCLUDES CYSTOSCOPY/DILATATION &\nCURETTAGE/BIOPSY)', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.0756', 'GENITAL TRACT, PELVIC CYST, ULTRASOUND GUIDED\nPROCEDURE-ASPIRATION', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0757', 'HAND AND WRIST, RHEUMATOID HAND RECONSTRUCTION\nINCLUDING MULTIPLE JOINT SYNOVECTOMY, BONE/JOINT PROCEDURES WITH ARTHROPLASTY (MULTIPLE) AND SOFT TISSUE PROCEDURES', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.0758', 'HAND AND WRIST, RHEUMATOID HAND RECONSTRUCTION\nINCLUDING SYNOVECTOMY,\nBONE/JOINT PROCEDURES WITH/WITHOUT REPLACEMENT ARTHROPLASTY, AND SOFT TISSUE PROCEDURES', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0759', 'HAND, AMPUTATED DIGIT(S), TOE TO HAND TRANSFER', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.0760', 'HAND, BURNS (MAJOR), EXCISION AND SPLIT SKIN GRAFT', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0761', 'HAND, CLOSED FRACTURE, ORIF (MULTIPLE), JOINT', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0762', 'HAND, CLOSED FRACTURE, ORIF (MULTIPLE), NON-JOINT', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0763', 'HAND, CLOSED FRACTURE, ORIF WITH K- WIRE/CERCLAGE WIRE\nFIXATION', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0764', 'HAND, CLOSED FRACTURE, ORIF/PLATE AND SCREWS (SINGLE),\nJOINT/NON-JOINT', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0765', 'HAND, CLOSED FRACTURE/DISLOCATION, OPEN REDUCTION\nAND FIXATION (SINGLE)', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0766', 'HAND, COMPLEX INJURIES, DEBRIDEMENT WITH\nREPAIR/RECONSTRUCTION (1-2 TENDONS INVOLVED OR 1-2 FRACTURES)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0767', 'HAND, COMPLEX INJURIES, DEBRIDEMENT WITH\nREPAIR/RECONSTRUCTION (MORE THAN 2 TENDONS INVOLVED OR MORE THAN 2 FRACTURES)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0768', 'HAND, COMPLEX INJURIES, MICROSURGICAL\nREPAIR/RECONSTRUCTION, >1 DIGIT', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0769', 'HAND, COMPLEX INJURIES, MICROSURGICAL\nREPAIR/RECONSTRUCTION, SINGLE DIGIT', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0770', 'HAND, CRUSH INJURIES (COMPLEX), WOUND DEBRIDEMENT', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0771', 'HAND, CRUSH INJURIES (SIMPLE), WOUND DEBRIDEMENT', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.0772', 'HAND, DEEP INFECTION, DRAINAGE', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0773', 'HAND, DEFORMITIES, MAJOR RECONSTRUCTIVE PROCEDURES', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0774', 'HAND, DEFORMITIES, OSTEOTOMY', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0775', 'HAND, DEFORMITY, INTRINSIC MUSCLE\nRELEASE/TRANSFER/EXTENSOR RELOCATION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0776', 'HAND, EXTRA DIGIT, AMPUTATION/STUMP REVISION', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.0777', 'HAND, FLEXOR TENDON INJURIES, INSERTION OF SILASTIC\nROD(S)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0778', 'HAND, FLEXOR TENDON, PULLEY RECONSTRUCTION', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0779', 'HAND, FLEXOR TENDON, TRIGGER FINGER (MULTIPLE), RELEASE', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0780', 'HAND, FLEXOR TENDON, TRIGGER FINGER (SINGLE), RELEASE', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.0781', 'HAND, FOREIGN BODY (DEEP), REMOVAL WITH MOBILISATION\nOF NEUROVASCULAR BUNDLE', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0782', 'HAND, FOREIGN BODY (SUPERFICIAL), REMOVAL WITH\nMOBILISATION OF NEUROVASCULAR BUNDLE', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.0783', 'HAND, FRACTURE OF FINGERS/METACARPALS, EXTERNAL\nFIXATION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0784', 'HAND, FRACTURE OF FINGERS/METACARPALS, NON- UNION,\nBONE-GRAFTING AND FIXATION (MULTIPLE)', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.0785', 'HAND, FRACTURE OF FINGERS/METACARPALS, NON- UNION,\nBONE-GRAFTING AND FIXATION (SINGLE)', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0786', 'HAND, FRACTURES/DISLOCATION, OPEN REDUCTION AND\nINTERNAL FIXATION (MULTIPLE)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0787', 'HAND, FREE TOE PULP TRANSFER', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.0788', 'HAND, OPEN FRACTURE, DEBRIDEMENT AND ORIF (MULTIPLE),\nJOINT', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.0789', 'HAND, OPEN FRACTURE, DEBRIDEMENT AND ORIF (MULTIPLE),\nNON-JOINT', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.0790', 'HAND, OPEN FRACTURE, DEBRIDEMENT AND ORIF (SINGLE),\nJOINT', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0791', 'HAND, OPEN FRACTURE, DEBRIDEMENT AND ORIF (SINGLE),\nNON-JOINT', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0792', 'HAND, POLYDACTYLY, AMPUTATION WITH RECONSTRUCTION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0793', 'HAND, SCAR, REVISION', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0794', 'HAND, SOFT TISSUE TUMOR, EXCISION <1.5CM', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.0795', 'HAND, SOFT TISSUE TUMOR, EXCISION >1.5CM SIZE', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0796', 'HAND, SUPERFICIAL INFECTION, DRAINAGE', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.0797', 'HAND, TUMORS, EXCISION WITH DISSECTION OF\nNEUROVASCULAR BUNDLE', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0798', 'HAND, WART/CORN/NAEVUS, EXCISION', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0799', 'HEAD, VARIOUS LESIONS, CRANIOFACIAL RESECTION AND\nRECONSTRUCTION', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.0800', 'HEAD-FACE, SOFT TISSUE TUMORS (SMALL), EXCISION', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0801', 'HEAD-FACE, TRAUMA, CRANIOFACIAL APPROACH REDUCTION\nAND FIXATION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0802', 'HEAD-FACE, TRAUMA, CRANIOFACIAL APPROACH REDUCTION\nAND FIXATION WITH BONE GRAFT', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.0803', 'HEAD-FACE, VARIOUS LESIONS, MAJOR CORRECTIVE SURGERY', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.0804', 'HEART (GREAT VESSELS), VARIOUS LESIONS, INTRATHORACIC\nOPERATION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0805', 'HEART, AORTIC/MITRAL VALVE LESIONS, BALLOON\nVALVULOPLASTY', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0806', 'HEART, ARRHYTHMIA, IMPLANTABLE CARDIOVERTER\nDEFIBRILLATOR (ICD) IMPLANTATION', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.0807', 'HEART, AUTOMATIC IMPLANTABLE CARDIOVERTER\nDEFIBRILLATOR (AICD)/PACEMAKER LEAD EXTRACTION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0808', 'HEART, AUTOMATIC IMPLANTABLE CARDIOVERTER\nDEFRIBRILLATOR DUAL CHAMBER (INCLUSIVE OF DEFIBRILLATION THRESHOLD TESTING (DFT))', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.0809', 'HEART, AUTOMATIC IMPLANTABLE CARDIOVERTER\nDEFRIBRILLATOR SINGLE CHAMBER (INCLUSIVE OF DFT)', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0810', 'HEART, BIVENT AUTOMATIC IMPLANTABLE CARDIOVERTER\nDEFRIBRILLATOR (INCLUSIVE OF DFT)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0811', 'HEART, BIVENTRICULAR PACING', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0812', 'HEART, CARDIAC CATHETERISATION (LEFT & RIGHT), INVOLVING\nPRESSURE OR SATURATION MEASUREMENT (WITH LEFT AND/OR RIGHT VENTRICULOGRAPHY)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0813', 'HEART, CARDIAC CATHETERISATION (LEFT) AND INTRACORONARY PHYSIOLOGICAL ASSESSMENT (INCLUSIVE OF PRESSURE WIRE) WITHOUT PERCUTANEOUS\nTRANSLUMINAL CORONARY ANGIOPLASTY (PTCA)', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0814', 'HEART, CAROTID ANGIOPLASTY AND STENTING (WITH EMBOLIC\nPROTECTION)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0815', 'HEART, CONGENITAL HEART DISEASE (COMPLEX), OPEN HEART\nSURGERY', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.0816', 'HEART, CONGENITAL HEART DISEASE, BLALOCK- TAUSSIG\nOPERATION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0817', 'HEART, CONGENITAL HEART DISEASE, OPEN HEART SURGERY', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.0818', 'HEART, CORONARY ANGIOGRAPHY', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0819', 'HEART, CORONARY ARTERY BYPASS GRAFT AND VALVE\nSURGERY', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.0820', 'HEART, CORONARY ARTERY DISEASE, CARDIAC CATHERISATION\nAND CORONARY ANGIOGRAM WITH/WITHOUT CORONARY GRAFT ANGIOGRAPHY', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0821', 'HEART, CORONARY DISEASE, CORONARY ANGIOPLASTY\n(TRANSLUMINAL), WITH/WITHOUT ANGIOCARDIOGRAPHY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0822', 'HEART, CORONARY DISEASE, CORONARY ARTERY BYPASS GRAFT\n(OPEN/MIS/OFF PUMP)', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.0823', 'HEART, CORONARY GRAFT ANGIOGRAPHY WITH/WITHOUT\nANGIOGRAPHY OF NATIVE CORONARY ARTERIES', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0824', 'HEART, ELECTROPHYSIOLOGY STUDY WITHOUT ABLATION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0825', 'HEART, HEART BLOCK, REPLACEMENT OF TRANSVENOUS\nELECTRODE', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0826', 'HEART, HEART BLOCK/ARRHYTHMIA, INSERTION OF DUAL\nCHAMBER PACEMAKER (PERMANENT)', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0827', 'HEART, HEART BLOCK/ARRHYTHMIA, INSERTION OF SINGLE\nCHAMBER PACEMAKER (PERMANENT)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0828', 'HEART, IMPLANT OF EPICARDIAL LEADS FOR PERMANENT\nPACEMAKERS', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0829', 'HEART, IMPLANTATION OF MECHANICAL HEART DEVICE (LEFT\nVENTRICULAR ASSIST DEVICE IMPLANT)', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.0830', 'HEART, INSERTABLE LOOP RECORDER', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0831', 'HEART, INVASIVE INTRAVASCULAR IMAGING/VISUALIZATION, INCLUSIVE OF IV U/S AND OCT, WITHOUT PERCUTAENOUS TRANSLUMINAL CORONARY\nANGIOPLASTY (PTCA)', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0832', 'HEART, LEFT ATRIAL APPENDAGE CLOSURE WITH/WITHOUT\nWATCHMAN DEVICE IMPLANTATION', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0833', 'HEART, LEFT VENTRICULAR ANEURYSM, RESECTION WITHOUT\nCORONARY ARTERY BYPASS', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.0834', 'HEART, LUNG, EXTRA CORPOREAL MEMBRANE OXYGENATION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0835', 'HEART, MAPPING AND PERCUTANEOUS ABLATION OF VENTRICULAR ARRHYTHMIA CIRCUITS OR FOCI, INCLUDING ALL ASSOCIATED ELECTROPHYSIOLOGICAL\nSTUDIES PERFORMED ON THE SAME DAY', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0836', 'HEART, PATENT DUCTUS ARTERIOSUS, LIGATION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0837', 'HEART, PERCUTANEOUS ABLATION OF ARRHYTHMIA CIRCUIT OR FOCUS OR ISOLATION PROCEDURE\nINVOLVING 1 ATRIAL CHAMBER', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0838', 'HEART, PERCUTANEOUS ABLATION OF ARRHYTHMIA CIRCUITS OR FOCI, OR ISOLATION PROCEDURE\nINVOLVING BOTH ATRIAL CHAMBERS AND INCLUDING CURATIVE PROCEDURES FOR ATRIAL FIBRILLATION AND/OR ALL ASSOCIATED ELECTROPHYSIOLOGICAL STUDIES PERFORMED ON\nTHE SAME DAY', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.0839', 'HEART, PERCUTANEOUS CLOSURE OF CONGENITAL HEART\nDEFECT', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0840', 'HEART, PERCUTANEOUS TRANSLUMINAL CORONARY\nANGIOPLASTY (PTCA) + ARTERECTOMY (E.G ROTABLATION)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0841', 'HEART, PERCUTANEOUS TRANSLUMINAL CORONARY ANGIOPLASTY (PTCA) + STENTING (1 VESSEL), COMPLEX (E.G. RETROGRADE CTO INTERVENTION, COMPLEX BIFURCATION/TRIFURCATION, IABP, IMPELLA, LVAD), WITH/WITHOUT IVUS/FFR OR OTHER PHYSIOLOGICAL STUDIES2', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0842', 'HEART, PERCUTANEOUS TRANSLUMINAL CORONARY ANGIOPLASTY (PTCA) + STENTING (MORE THAN 1\nVESSEL), WITH/WITHOUT IVUS/FFR OR OTHER PHYSIOLOGICAL\nSTUDIES', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0843', 'HEART, PERICARDIAL DISEASE, PERICARDIECTOMY', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0844', 'HEART, PERICARDIAL EFFUSION, PARACENTESIS', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.0845', 'HEART, PERICARDIAL EFFUSION, TRANSTHORACIC DRAINAGE', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0846', 'HEART, PLACEMENT OF EPICARDIAL PACING WIRES (OPEN AND\nVIDEO-ASSISTED THORACIC SURGERY (VATS))', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0847', 'HEART, PRIMARY PERCUTANEOUS TRANSLUMINAL CORONARY ANGIOPLASTY FOR ST-ELEVATION MYOCARDIAL INFARCTION', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0848', 'HEART, PROXIMAL AORTIC ANEURYSM, AORTIC ROOT\nREPLACEMENT WITH CORONARY ARTERY REIMPLANTATION', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.0849', 'HEART, PULMONARY INCOMPETENCE, PULMONARY ARTERY\nBANDING', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0850', 'HEART, PULMONARY VALVE LESIONS, BALLOON\nVALVULOPLASTY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0851', 'HEART, REPLACEMENT OF PACEMAKER', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.0852', 'HEART, SEPTAL DEFECTS (ATRIAL/VENTRICULAR)/PATENT FORAMEN OVALE (PFO)\nDEFECT CLOSURE', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0853', 'HEART, SIMPLE CONGENITAL OPEN-HEART SURGERY (ATRIAL SEPTAL DEFECT & VENTRICULAR SEPTAL\nDEFECT)', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0854', 'HEART, SYNCHRONISED CARDIOVERSION', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.0855', 'HEART, TRANS-CATHETAR PERCUTANEOUS PATENT DUCTUS\nARTERIOSUS (PDA) OCCLUSION', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0856', 'HEART, TRANS-MYOCARDIAL REVASCULARISATION (TMR) AS A\nSOLE PROCEDURE', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0857', 'HEART, TRANS-MYOCARDIAL REVASCULARISATION (TMR) AS AN\nADJUNCT PROCEDURE', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0858', 'HEART, VALVE (REPAIR / REPLACEMENT), 1 VALVE', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.0859', 'HEART, VALVE (REPAIR / REPLACEMENT), MORE THAN 1\nVALVE', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.0860', 'HEART, VARIOUS LESIONS, ANEURYSMECTOMY AND/OR COMBINED VALVE REPLACEMENT AND/OR REPAIR AND\nCORONARY BYPASS GRAFTING', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.0861', 'HEART, VARIOUS LESIONS, BALLOON ATRIAL SEPTOSTOMY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0862', 'HEART, VARIOUS LESIONS, CARDIAC BIOPSY', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.0863', 'HEART, VARIOUS LESIONS, HEART TRANSPLANTATION', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.0864', 'HEART, VARIOUS LESIONS, OPEN HEART SURGERY (ONE\nPROCEDURE)', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.0865', 'HEART, VARIOUS LESIONS, OPEN HEART SURGERY ON COMBINED SURGERY, TWO PROCEDURES AT ONE\nSITTING', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.0866', 'HEART, VARIOUS LESIONS, RIGHT HEART CATHETERISATION WITH LEFT HEART\nCATHETERISATION (INDIRECT)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0867', 'HEART, VARIOUS LESIONS, RIGHT/LEFT HEART\nCATHETERIZATION', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0868', 'HEART/LUNG, VARIOUS LESIONS, CARDIOPULMONARY\nPERFUSION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0869', 'HEART/LUNG, VARIOUS LESIONS, HEART AND LUNG\nTRANSPLANTATION', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.0870', 'HEART-ATRIUM, ARRHYTHMIA, ARRHYTHMIA SURGERY', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0871', 'HEART-VENTRICLE, ARRHYTHMIA, ARRHYTHMIA SURGERY', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.0872', 'HIP, ACETABULUM, FRACTURE, DOUBLE COLUMN FIXATION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0873', 'HIP, ACETABULUM, FRACTURE, SINGLE COLUMN FIXATION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0874', 'HIP, AVASCULAR NECROSIS, CORE DECOMPRESSION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0875', 'HIP, AVASCULAR NECROSIS, CORE DECOMPRESSION WITH\nGRAFTING/BONE SUBSTITUTE/BONE CEMENT', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0876', 'HIP, CONGENITAL DISLOCATION, OPEN REDUCTION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0877', 'HIP, CONGENITAL DISLOCATION, OPEN REDUCTION INCLUDING\nRECONSTRUCTION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0878', 'HIP, DISLOCATION, MANIPULATION AND REDUCTION', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0879', 'HIP, DISLOCATION, OPEN REDUCTION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0880', 'HIP, OPEN REDUCTION WITH ACETABULAR OR FEMORAL\nOSTEOTOMIES', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.0881', 'HIP, SNAPPING SYNDROME, RELEASE', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0882', 'HIP, SOFT TISSUE RELEASE AND OPEN REDUCTION ONLY', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.0883', 'HIP, VARIOUS LESIONS, APPLICATION OF HIP SPICAS', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0884', 'HIP, VARIOUS LESIONS, ARTHRODESIS', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0885', 'HIP, VARIOUS LESIONS, ARTHROTOMY', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0886', 'HIP, VARIOUS LESIONS, ARTHROTOMY AND SYNOVECTOMY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0887', 'HIP, VARIOUS LESIONS, EXCISION/INTERPOSITION\nARTHROPLASTY', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0888', 'HIP, VARIOUS LESIONS, HEMI-ARTHROPLASTY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0889', 'HIP, VARIOUS LESIONS, PRIMARY TOTAL JOINT REPLACEMENT WITH AUGMENTATION, REQUIRING\nEXTRA IMPLANTS OR BONE GRAFTS, OPEN/MIS/NAVIGATED', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0890', 'HIP, VARIOUS LESIONS, PRIMARY TOTAL JOINT REPLACEMENT,\nOPEN/MIS/NAVIGATED', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.0891', 'HIP, VARIOUS LESIONS, REVISION TOTAL JOINT REPLACEMENT,\nOPEN/MIS/NAVIGATED', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.0892', 'HIP/KNEE, REMOVAL OF PROSTHESES WITH OR\nWITHOUT SPACER', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0893', 'HIP/KNEE, THERAPEUTIC ARTHROSCOPY, WITH/WITHOUT SYNOVECTOMY/ LABRAL REPAIR /FAI RESECTION FOR\nHIP', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0894', 'HUMERUS SUPRACONDYLAR AND INTERCONDYLAR FRACTURE', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0895', 'HUMERUS, CUBITUS VARUS, CORRECTIVE OSTEOTOMY WITH\nCAST OR PINNING', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0896', 'HUMERUS, CUBITUS VARUS, CORRECTIVE OSTEOTOMY WITH\nPLATING', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0897', 'HUMERUS, DELAYED/NON-UNION, RECONSTRUCTION WITH\nBONE GRAFTING WITHOUT INTERNAL FIXATION', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0898', 'HUMERUS, DELAYED/NON-UNION, RECONSTRUCTION WITH\nINTERNAL FIXATION AND BONE GRAFTING', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.0899', 'HUMERUS, HUMERUS SHAFT FRACTURE, CLOSED\nINTERLOCKING INTRAMEDULLARY NAIL', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0900', 'HUMERUS, HUMERUS SHAFT FRACTURE, COMPLEX MULTI-\nFRAGMENTARY INTRAMEDULLARY NAIL', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.0901', 'HUMERUS, PROXIMAL HUMERUS OR SUPRACONDYLAR\nFRACTURE, ORIF', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0902', 'INFERIOR TURBINATE REDUCTION (SUBMUCOUS\nDIATHERMY/RADIOFREQUENCY)', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.0903', 'INTERCOSTAL NERVE, BLOCK, ANAESTHETIC (MORE THAN 3\nLEVELS)', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.0904', 'INTERCOSTAL NERVE, BLOCK, ANAESTHETIC (UP TO 3\nLEVELS)', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0905', 'INTERCOSTAL NERVE, BLOCK, NEUROLYTIC (MORE THAN\n3 LEVELS)', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0906', 'INTERCOSTAL NERVE, BLOCK, NEUROLYTIC (UP TO 3\nLEVELS)', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.0907', 'INTERPLEURAL SPACE, BLOCK, CATHETER', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.0908', 'INTERPLEURAL SPACE, BLOCK, NO CATHETER', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0909', 'INTESTINE, BLEEDING GIT, MESENTERIC ARTERY EMBOLISATION', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0910', 'INTESTINE, ENTEROSTOMY, CLOSURE', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0911', 'INTESTINE, INTUSSUSCEPTION, REDUCTION (OPEN/MIS)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0912', 'INTESTINE, INTUSSUSCEPTION, REDUCTION BY FLUID', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.0913', 'INTESTINE, INTUSSUSCEPTION, RESECTION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0914', 'INTESTINE, MECKEL\'S DIVERTICULUM, VARIOUS LESIONS,\nRESECTION (LAP/OPEN)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0915', 'INTESTINE, SMALL BOWEL, ILEOSTOMY STENOSIS, REVISION', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0916', 'INTESTINE, SMALL BOWEL, VARIOUS LESIONS, ENTEROSTOMY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0917', 'INTESTINE, SMALL BOWEL, VARIOUS LESIONS, EXTENSIVE\nRESECTION WITH ANASTOMOSES, WITH OR WITHOUT STOMA (MIS/OPEN)', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.0918', 'INTESTINE, SMALL BOWEL, VARIOUS LESIONS, INTUBATION\nWITH/WITHOUT BIOPSY', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0919', 'INTESTINE, SMALL BOWEL, VARIOUS LESIONS, SIMPLE RESECTION WITH ANASTOMOSES, WITH OR WITHOUT\nSTOMA (MIS/OPEN)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0920', 'INTESTINE, SMALL BOWEL, VITELLO-INTESTINAL FISTULA,\nEXCISION', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0921', 'INTESTINE, TOTAL AGANGLIONOSIS, RECONSTRUCTION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0922', 'INTESTINE/STOMACH, UPPER GI ENDOSCOPY WITH POLYPECTOMY/REMOVAL OF FOREIGN BODY/DIATHERMY OF BLEEDING LESIONS/INJECTION OF\nVARICES/REMOVAL OF SINGLE POLYP3', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0923', 'INTESTINE/STOMACH, UPPER GI ENDOSCOPY WITH/WITHOUT\nBIOPSY4', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.0924', 'IPSILATERAL MASTOPEXY/REDUCTION FOLLOWING BREAST, TUMOUR (MALIGNANT) WIDE EXCISION/LUMPECTOMY/SEGMENTAL OR PARTIAL MASTECTOMY, WITH OR WITHOUT SENTINEL NODE BIOPSY\nAND/OR AXILLARY CLEARANCE', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0925', 'IRIS RECONSTRUCTION / PUPILLOPLASTY', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0926', 'IRIS, TUMOR, EXCISION', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0927', 'IRIS, VARIOUS LESIONS, IRIDECTOMY/IRIDOTOMY', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0928', 'JOINT, VARIOUS LESIONS, JOINT\nASPIRATION/ARTHROCENTESIS/INJECTION', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.0929', 'JOINTS (FINGER), CONTRACTURE,\nCAPSULECTOMY/CAPSULOTOMY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0930', 'JOINTS (FINGER), VARIOUS LESIONS, ARTHRODESIS', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0931', 'JOINTS (FINGER), VARIOUS LESIONS, EXCISION ARTHROPLASTY', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0932', 'JOINTS (FINGER), VARIOUS LESIONS, REPLACEMENT\nARTHROPLASTY', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.0933', 'JOINTS (FINGER, INTERPHALANGEAL JOINTS, METACARPOPHALANGEAL JOINTS), SYNOVITIS, SYNOVECTOMY', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0934', 'JOINTS (FOOT EXCLUDING ANKLE), SYNOVITIS, SYNOVECTOMY', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0935', 'JOINTS (LOWER LIMB), DEFORMITIES, CORRECTIVE SURGERY\nWITH OSTEOTOMY ALONE', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0936', 'JOINTS (LOWER LIMB), DEFORMITIES, CORRECTIVE SURGERY\nWITH PLATE FIXATION AND FLUOROSCOPY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0937', 'JOINTS (LOWER LIMB), DISLOCATIONS, MANIPULATION AND\nKIRSCHNER WIRE FIXATION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0938', 'JOINTS (LOWER LIMB), DISLOCATIONS, WOUND DEBRIDEMENT', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.0939', 'JOINTS (LOWER LIMB), LOOSE BODIES, REMOVAL', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0940', 'JOINTS (LOWER LIMB), SMALL, VARIOUS LESIONS,\nARTHROPLASTY', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0941', 'JOINTS (LOWER LIMB), VARIOUS LESIONS, EPIPHYSIOLYSIS\nWITH/WITHOUT MICROSURGERY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0942', 'JOINTS (LOWER LIMB, EXCEPT HIP), SEPTIC ARTHRITIS,\nDRAINAGE WITH CURETTAGE AND DEBRIDEMENT', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0943', 'JOINTS (LOWER LIMB, EXCEPT HIP), SEPTIC ARTHRITIS, SIMPLE\nDRAINAGE', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.0944', 'JOINTS (LOWER LIMB, HIP), SEPTIC ARTHRITIS,\nCURETTAGE/DEBRIDEMENT AND IRRIGATION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0945', 'JOINTS (LOWER LIMB, HIP), SEPTIC ARTHRITIS, SIMPLE\nDRAINAGE', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0946', 'JOINTS (OTHER THAN FINGER), VARIOUS LESIONS, TOTAL JOINT\nREPLACEMENT', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.0947', 'JOINTS (OTHER THAN HAND AND WRIST), VARIOUS LESIONS,\nARTHRODESIS', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0948', 'JOINTS (SHOULDER), VARIOUS LESIONS, IMPINGEMENT\nSYNDROME', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0949', 'JOINTS (TEMPORO-MANDIBULAR), DISLOCATION,\nREDUCTION UNDER GENERAL ANAESTHESIA', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.0950', 'JOINTS (TEMPOROMANDIBULAR), VARIOUS LESIONS,\nARTHROCENTESIS (BILATERAL)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0951', 'JOINTS (TEMPOROMANDIBULAR), VARIOUS LESIONS,\nARTHROCENTESIS (UNILATERAL)', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.0952', 'JOINTS (TEMPOROMANDIBULAR), VARIOUS LESIONS,\nARTHROSCOPY (BILATERAL)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0953', 'JOINTS (TEMPOROMANDIBULAR), VARIOUS LESIONS,\nARTHROSCOPY (UNILATERAL)', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0954', 'JOINTS (TEMPORO-MANDIBULAR), VARIOUS LESIONS,\nCONDYLECTOMY WITH RECONSTRUCTION (BILATERAL)', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.0955', 'JOINTS (TEMPORO-MANDIBULAR), VARIOUS LESIONS,\nCONDYLECTOMY WITH RECONSTRUCTION (UNILATERAL)', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0956', 'JOINTS (TEMPORO-MANDIBULAR), VARIOUS LESIONS,\nCONDYLECTOMY/CORONOIDECTOMY/MENISECTOMY', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0957', 'JOINTS (TEMPORO-MANDIBULAR), VARIOUS LESIONS,\nCONDYLOTOMY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0958', 'JOINTS (TEMPORO-MANDIBULAR), VARIOUS LESIONS,\nPLICATION OF DISC', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0959', 'JOINTS (TEMPORO-MANDIBULAR), VARIOUS LESIONS,\nRECONSTRUCTION (BILATERAL)', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.0960', 'JOINTS (TEMPORO-MANDIBULAR), VARIOUS LESIONS,\nRECONSTRUCTION (UNILATERAL)', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0961', 'JOINTS (UPPER LIMB), CONTRACTURE,\nCAPSULECTOMY/CAPSULOTOMY (MULTIPLE)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0962', 'JOINTS (UPPER LIMB), DEFORMITIES/CONTRACTURE,\nCORRECTIVE SURGERY', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0963', 'JOINTS (UPPER LIMB), VARIOUS LESIONS, VASCULARISED JOINT\nTRANSFER', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.0964', 'JOINTS (UPPER LIMB), VASCULAR INJURY, MAJOR VASCULAR\nRECONSTRUCTION/ANASTOMOSIS/GRAFT', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0965', 'JOINTS (UPPER LIMB, EXCEPT SHOULDER), SEPTIC ARTHRITIS, DRAINAGE WITH CURRETAGE AND DEBRIDEMENT', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.0966', 'JOINTS (UPPER LIMB, EXCEPT SHOULDER), SEPTIC ARTHRITIS,\nSIMPLE DRAINAGE', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.0967', 'JOINTS (UPPER LIMB, SHOULDER), SEPTIC ARTHRITIS/EFFUSION, CURETTAGE/DEBRIDEMENT AND IRRIGATION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0968', 'JOINTS (UPPER LIMB, SHOULDER), SEPTIC ARTHRITIS/EFFUSION,\nSIMPLE DRAINAGE', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0969', 'JOINTS (WRIST), VARIOUS LESIONS, ARTHRODESIS', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0970', 'JOINTS (WRIST, DISTAL RADIOULNAR JOINT), SYNOVITIS,\nSYNOVECTOMY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0971', 'JOINTS, ARTHROSCOPY, DIAGNOSTIC', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.0972', 'JOINTS, MAJOR INTRA-ARTICULAR FRACTURE WITH DISCONTINUITY OR BONE LOSS, RECONSTRUCTION (FOR\nLOWER LIMB)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0973', 'JOINTS, MAJOR INTRA-ARTICULAR FRACTURE WITH DISCONTINUITY OR BONE LOSS, RECONSTRUCTION (FOR\nUPPER LIMB)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0974', 'JOINTS, VARIOUS LESIONS, PRIMARY TOTAL JOINT REPLACEMENT WITH AUGMENTATION, REQUIRING EXTRA\nIMPLANTS OR BONE GRAFTS, OPEN/MIS/NAVIGATED', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.0975', 'JOINTS, VARIOUS LESIONS, REVISION TOTAL JOINT\nREPLACEMENT, OPEN/MIS/NAVIGATED', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.0976', 'KIDNEY AND URETER, VARIOUS LESIONS,\nNEPHROURETERECTOMY OPEN', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0977', 'KIDNEY AND URETER, VARIOUS LESIONS,\nNEPHROURETERECTOMY, MIS', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.0978', 'KIDNEY TRANSPLANT, DONATION (CADAVERIC DONOR)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.0979', 'KIDNEY TRANSPLANT, DONATION (LIVE DONOR), OPEN/MIS', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0980', 'KIDNEY TRANSPLANT, RECIPIENT', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.0981', 'KIDNEY TRANSPLANT, RECIPIENT, DUAL KIDNEY TRANSPLANT\n(MARGINAL DONOR)', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.0982', 'KIDNEY, BLOCKED NEPHROSTOMY TUBE, CHANGE', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.0983', 'KIDNEY, CALCULUS, EXTRA CORPOREAL SHOCKWAVE\nLITHOTRIPSY (ESWL)', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0984', 'KIDNEY, CALCULUS, NEPHROLITHOTOMY/PYELOLITHOTOMY', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.0985', 'KIDNEY, CALCULUS, PERCUTANEOUS NEPHROLITHOTOMY OR\nPERCUTANEOUS NEPHROSTOLITHOTOMY (PCNL)', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.0986', 'KIDNEY, CATHETER BLOCKAGE, IMAGING GUIDED NEPHROSTOMY CATHETER CHANGE/CATHETER\nADJUSTMENT', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.0987', 'KIDNEY, CYST, EXCISION', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.0988', 'KIDNEY, CYST, IMAGING GUIDED PERCUTANEOUS ALCOHOL\nABLATION', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.0989', 'KIDNEY, CYST, IMAGING GUIDED PERCUTANEOUS ASPIRATION', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.0990', 'KIDNEY, CYST, MARSUPIALISATION, MIS', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.0991', 'KIDNEY, HYDRONEPHROSIS, PERCUTANEOUS NEPHROSTOMY AND DRAINAGE CATHETER INSERTION\n(PCN AND DRAINAGE)', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.0992', 'KIDNEY, INJURY, REPAIR', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0993', 'KIDNEY, NEPHROPTOSIS, NEPHROPEXY', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0994', 'KIDNEY, PELVI-URETERIC JUNCTION OBSTRUCTION, OPEN\nPYELOPLASTY/URETEROCALYCOSTOMY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.0995', 'KIDNEY, PERINEPHRIC ABSCESS, DRAINAGE (OPEN)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0996', 'KIDNEY, PYONEPHROSIS, DRAINAGE (OPEN)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0997', 'KIDNEY, PYONEPHROSIS, NEPHROSTOMY/PYELOSTOMY (OPEN)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.0998', 'KIDNEY, RENAL ABSCESS/PERINEPHRIC ABSCESS, IMAGING\nGUIDED PERCUTANEOUS ASPIRATION', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.0999', 'KIDNEY, RENAL ABSCESS/PERINEPHRIC ABSCESS, IMAGING\nGUIDED PERCUTANEOUS DRAINAGE', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1000', 'KIDNEY, STAGHORN CALCULUS, NEPHROLITHOTOMY OR\nPERCUTANEOUS NEPHROSTOLITHOTOMY (PCNL)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1001', 'KIDNEY, STONES, IMAGING GUIDED PERCUTANEOUS RENAL\nSTONES REMOVAL', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1002', 'KIDNEY, TUMOUR, IMAGING GUIDED PERCUTANEOUS LOCAL ABLATION, SIMPLE (RADIOFREQUENCY,\nMICROWAVE, ETHANOL)', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1003', 'KIDNEY, TUMOUR, MIS GUIDED PERCUTANEOUS LOCAL\nABLATION (RADIOFREQUENCY, CRYOTHERAPY ETC)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1004', 'KIDNEY, VARIOUS LESIONS, BIOPSY (CLOSED)', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1005', 'KIDNEY, VARIOUS LESIONS, BIOPSY (OPEN)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1006', 'KIDNEY, VARIOUS LESIONS, CHECK NEPHROSTOGRAM', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.1007', 'KIDNEY, VARIOUS LESIONS, EXPLORATION', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1008', 'KIDNEY, VARIOUS LESIONS, IMAGING GUIDED PERCUTANEOUS\nBIOPSY (FOCAL LESIONS, TARGETED)', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1009', 'KIDNEY, VARIOUS LESIONS, IMAGING GUIDED PERCUTANEOUS BIOPSY (RENAL PARENCHYMA, NON DIRECTED)', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.1010', 'KIDNEY, VARIOUS LESIONS, PARTIAL NEPHRECTOMY,\nLAPARASCOPIC', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.1011', 'KIDNEY, VARIOUS LESIONS, PARTIAL NEPHRECTOMY, OPEN', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1012', 'KIDNEY, VARIOUS LESIONS, PERCUTANEOUS ANTEGRADE\nNEPHROSTOGRAPHY (PCN)', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.1013', 'KIDNEY, VARIOUS LESIONS, RADICAL NEPHRECTOMY\n(OPEN/MIS) WITH/WITHOUT IVC THROMBECTOMY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1014', 'KIDNEY, VARIOUS LESIONS, SIMPLE NEPHRECTOMY,\nLAPROSCOPIC', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.1015', 'KIDNEY, VARIOUS LESIONS, SIMPLE NEPHRECTOMY, OPEN', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1016', 'KIDNEY/URETER, ENDOPYELOTOMY (PERCUTANEOUS)', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1017', 'KIDNEY/URETER, PYELOPLASTY, UNILATERAL MIS/OPEN', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1018', 'KIDNEY/URETER, RETROGRADE INTRARENAL SURGERY OR RIRS\nUSING FLEXIBLE URETEROSCOPY (DIAGNOSTIC)', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1019', 'KIDNEY/URETER, RETROGRADE INTRARENAL SURGERY OR RIRS USING FLEXIBLE URETEROSCOPY (THERAPEUTIC - E.G.\nLITHOTRIPSY AND/OR BASKET EXTRACTION OF STONES)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1020', 'KNEE LIGAMENTS, DISRUPTION, RECONSTRUCTION AND REPAIR', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1021', 'KNEE, ARTHROSCOPY, KNEE LIGAMENT RECONSTRUCTION (1 OR\nMORE)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1022', 'KNEE, DISLOCATION, OPEN REDUCTION WITH REPAIR OF\nLIGAMENTS', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1023', 'KNEE, HEMARTHROSIS, ASPIRATION UNDER GENERAL\nANESTHESIA', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.1024', 'KNEE, LIGAMENTS/MENISCUS/CARTILAGE/BONE COMBINED,\nAUTOLOGOUS CHONDROCYTE IMPLANTATION WITH OSTEOTOMY', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.1025', 'KNEE, LIGAMENTS/MENISCUS/CARTILAGE/BONE COMBINED,\nMIS ACL OR PCL RECONSTRUCTION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1026', 'KNEE, LIGAMENTS/MENISCUS/CARTILAGE/BONE COMBINED, MIS LIGAMENT RECONSTRUCTION WITH MENISCAL REPAIR', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1027', 'KNEE, LIGAMENTS/MENISCUS/CARTILAGE/BONE COMBINED, MIS LIGAMENT RECONSTRUCTION WITH\nMENISCECTOMY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1028', 'KNEE, LIGAMENTS/MENISCUS/CARTILAGE/BONE COMBINED, MIS LIGAMENT RECONSTRUCTION WITH\nMICROFRACTURE', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1029', 'KNEE, LIGAMENTS/MENISCUS/CARTILAGE/BONE COMBINED, MIS PRIMARY DOUBLE BUNDLE ACL OR PCL RECONSTRUCTION', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.1030', 'KNEE, LIGAMENTS/MENISCUS/CARTILAGE/BONE COMBINED,\nMIS REVISION ACL RECONSTRUCTION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1031', 'KNEE, LIGAMENTS/MENISCUS/CARTILAGE/BONE COMBINED,\nMIS REVISION PCL RECONSTRUCTION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1032', 'KNEE, LIGAMENTS/MENISCUS/CARTILAGE/BONE COMBINED,\nMOSAICPLASTY OR OSTEOARTICULAR TRANSFER SYSTEM (OATS) WITH OSTEOTOMY', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.1033', 'KNEE, LIGAMENTS/MENISCUS/CARTILAGE/BONE COMBINED, MULTI-LIGAMENTED KNEE\nRECONSTRUCTION (3 OR MORE LIGAMENTS)', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.1034', 'KNEE, MENISCUS/CARTILAGE (SMALL DEFECTS), MIS/OPEN\nMOSAICPLASTY OR OATS', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1035', 'KNEE, MENISCUS/CARTILAGE, MIS ASSISTED ALLOGRAFT\nMENISCAL TRANSPLANTATION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1036', 'KNEE, MENISCUS/CARTILAGE, MIS CARTILAGE HARVESTING', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1037', 'KNEE, MENISCUS/CARTILAGE, MIS MENISCAL REPAIR', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1038', 'KNEE, VARIOUS LESIONS, ARTHRODESIS', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1039', 'KNEE, VARIOUS LESIONS, ARTHROTOMY', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1040', 'KNEE, VARIOUS LESIONS, ARTHROTOMY AND SYNOVECTOMY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1041', 'KNEE, VARIOUS LESIONS, EXCISION/INTERPOSITION\nARTHROPLASTY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1042', 'KNEE, VARIOUS LESIONS, MENISCECTOMY WITH/WITHOUT\nARTHROSCOPY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1043', 'KNEE, VARIOUS LESIONS, PRIMARY TOTAL JOINT REPLACEMENT (UNILATERAL) WITH AUGMENTATION,\nREQUIRING EXTRA IMPLANTS OR BONE GRAFTS,\nOPEN/MIS/NAVIGATED', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1044', 'KNEE, VARIOUS LESIONS, PRIMARY TOTAL JOINT REPLACEMENT\n(UNILATERAL), OPEN/MIS/NAVIGATED', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.1045', 'KNEE, VARIOUS LESIONS, REVISION TOTAL JOINT REPLACEMENT,\nOPEN/MIS/NAVIGATED', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.1046', 'KNEE, VARIOUS LESIONS, TOTAL JOINT REPLACEMENT\n(BILATERAL)', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.1047', 'LABYRINTH, VARIOUS LESIONS,\nDESTRUCTION/LABYRINTHOTOMY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1048', 'LACRIMAL CANALICULUS REPAIR, VARIOUS LESIONS,\nIMMEDIATE REPAIR', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1049', 'LACRIMAL GLAND (LACRIMAL SAC), VARIOUS LESIONS, EXCISION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1050', 'LACRIMAL GLAND (PUNCTUM), VARIOUS LESIONS, SNIP\nOPERATION', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1051', 'LACRIMAL GLAND, OBSTRUCTION, PROBING ONE/BOTH DUCTS', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1052', 'LACRIMAL GLAND/DUCT, VARIOUS LESIONS,\nDACROCYSTORHINOSTOMY (ENDOSCOPIC/NON- ENDOSCOPIC) OR CONJUNCTIVAL-DCR (LESTER JONES TUBE)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1053', 'LAPAROSCOPY, THERAPEUTIC, EXCEPT FOR RETRIEVAL AND\nPLACEMENT OF GAMETES AND PLACEMENT OF EMBRYOS', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1054', 'LAPAROTOMY DEBULKING (ADVANCED DISEASE,\nPRIMARY/RECURRENT)', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.1055', 'LARYNGOSCOPY WITH REMOVAL OF TUMOUR/LESIONS', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1056', 'LARYNX AND ESOPHAGUS, TUMOR, ESOPHAGECTOMY (TOTAL)/\nLARYNGOPHARYNGECTOMY WITH RESTORATION OF ALIMENTARY CONTINUITY', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.1057', 'LARYNX AND PHARYNX, VARIOUS LESIONS, LASER APPLICATION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1058', 'LARYNX AND TRACHEA, VARIOUS LESIONS, MAJOR\nMICROSURGERY WITHOUT RECONSTRUCTION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1059', 'LARYNX AND TRACHEA, VARIOUS LESIONS, MAJOR PLASTIC\nOPERATION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1060', 'LARYNX, FRACTURES, OPERATION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1061', 'LARYNX, LARYNGECTOMY WITH BILATERAL NECK DISSECTION', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.1062', 'LARYNX, LARYNGECTOMY WITH UNILATERAL NECK DISSECTION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1063', 'LARYNX, LARYNOGOFISSURE, EXTERNAL OPERATION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1064', 'LARYNX, TRANSCUTANEOUS INJECTION OF LARYNX', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.1065', 'LARYNX, TUMOR, LARYNGECTOMY (TOTAL)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1066', 'LARYNX, TUMOR, PARTIAL LARYNGECTOMY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1067', 'LARYNX, TUMOR, PARTIAL LARYNGECTOMY WITH BLOCK NECK\nDISSECTION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1068', 'LARYNX, VARIOUS DISORDERS, LARYNGEAL FRAMEWORK\nSURGERY, THYROPLASTY TYPES I-IV INCLUDING OPEN MEDIALISATION', 13579000, 'TINDAKAN OPERATIF'); +INSERT INTO `tarif_rs` (`ID_Tarif_RS`, `Tindakan_RS`, `Tarif_RS`, `Kategori_RS`) VALUES +('R.TO.1069', 'LARYNX, VARIOUS LESIONS, DIRECT LARYNGOSCOPE\nEXAMINATION WITH/WITHOUT BIOPSY', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1070', 'LARYNX, VARIOUS LESIONS, HEMI/PARTIAL LARYNGECTOMY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1071', 'LARYNX, VARIOUS LESIONS, HEMI/PARTIAL LARYNGECTOMY\nWITH RADICAL NECK DISSECTION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1072', 'LENS, CATARACT (JUVENILE), REMOVAL AND NEEDLINGS', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1073', 'LENS, CATARACT (PAEDIATRIC), EXTRACTION WITH ANTERIOR\nVITRECTOMY', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1074', 'LENS, CATARACT (PAEDIATRIC), EXTRACTION WITH ANTERIOR\nVITRECTOMY - BILATERAL', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1075', 'LENS, CATARACT (PAEDIATRIC), EXTRACTION WITH ANTERIOR VITRECTOMY AND INTRAOCULAR LENS IMPLANTATION', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.1076', 'LENS, CATARACT (PAEDIATRIC), EXTRACTION WITH ANTERIOR VITRECTOMY AND INTRAOCULAR LENS\nIMPLANTATION - BILATERAL', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.1077', 'LENS, CATARACT, EXTRACTION WITH INTRA-OCULAR LENS\nIMPLANT (BILATERAL)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1078', 'LENS, CATARACT, EXTRACTION WITH INTRA-OCULAR LENS\nIMPLANT (UNILATERAL LEFT)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1079', 'LENS, CATARACT, EXTRACTION WITH INTRA-OCULAR LENS\nIMPLANT (UNILATERAL RIGHT)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1080', 'LENS, CATARACT, EXTRACTION WITH INTRA-OCULAR LENS\nIMPLANT AND TRABECULECTOMY WITH/WITHOUT ANTIMETABOLITES', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1081', 'LENS, CATARACT, EXTRACTION WITH TRABECULECTOMY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1082', 'LENS, COMBINED GLAUCOMA IMPLANTS WITH CATARACT EXTRACTION (WITH OR WITHOUT INTRAOCULAR LENS\nIMPLANTATION)', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.1083', 'LENS, COMPLICATED CATARACT EXTRACTION WITH INTRAOCULAR LENS IMPLANT (CAPSULAR TENSION\nRING/CAPSULAR TENSION SEGMENT/)', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.1084', 'LENS, IMPLANTATION OF POSTERIOR SEGMENT DRUG DELIVERY\nDEVICE', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1085', 'LENS, SECONDARY SCLERAL FIXATED INTRAOCULAR LENS\nIMPLANTATION', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1086', 'LENS, SECTORIAL LASER PHOTOCOAGULATION', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1087', 'LENS, VARIOUS LESIONS, EXTRACTION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1088', 'LENS, VARIOUS LESIONS, REMOVAL OF INTRA-OCULAR\nARTIFICIAL LENS', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1089', 'LENS, VARIOUS LESIONS, SECONDARY ANTERIOR CHAMBER INTRA-OCULAR LENS IMPLANTATION WITHOUT\nVITRECTOMY9', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1090', 'LENS, VARIOUS LESIONS, YAG LASER CAPSULOTOMY', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.1091', 'LIP, MUCOUS CYST/MUCOCELE, REMOVAL', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1092', 'LIP, VARIOUS LESIONS, FULL THICKNESS WEDGE EXCISION WITH\nREPAIR', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1093', 'LIP, VARIOUS LESIONS, RECONSTRUCTION USING FULL\nTHICKNESS FLAP', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1094', 'LIP, VARIOUS LESIONS, VERMILIONECTOMY', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1095', 'LIVER TRANSPLANT, DONATION (CADAVERIC DONOR)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1096', 'LIVER TRANSPLANT, DONATION (LIVE DONOR)', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1097', 'LIVER TRANSPLANT, RECIPIENT', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.1098', 'LIVER, ABSCESS, IMAGING GUIDED PERCUTANEOUS ASPIRATION', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1099', 'LIVER, ABSCESS, IMAGING GUIDED PERCUTANEOUS DRAINAGE\nCATHETER INSERTION', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1100', 'LIVER, ABSCESS, TRANS-ABDOMINAL DRAINAGE (OPEN OR LAP)', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1101', 'LIVER, HYDATID CYST, TRANS-ABDOMINAL DRAINAGE\n(PERCUTANEOUS)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1102', 'LIVER, OBSTRUCTIVE JAUNDICE, LONGMIRE\nOPERATION/CHLODEDOCHO JEJUNOSTOMY', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.1103', 'LIVER, PORTAL HYPERTENSION, TRANSJULAR INTRAHEPATIC PORTO-SYSTEMIC SHUNT CREATION\n(TIPSS)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1104', 'LIVER, TRAUMA, MAJOR REPAIR LACERATION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1105', 'LIVER, TRAUMA, MINOR REPAIR LACERATION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1106', 'LIVER, TRAUMA/TUMOR, EXTENDED LOBECTOMY (5\nSEGMENTS/MORE)', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.1107', 'LIVER, TRAUMA/TUMOR, HEPATIC ARTERY LIGATION', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1108', 'LIVER, TRAUMA/TUMOR, LIVER TRANSPLANT', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.1109', 'LIVER, TUMOUR, IMAGING GUIDED PERCUTANEOUS LOCAL\nABLATION, COMPLEX (RADIOFREQUENCY, CRYOTHERAPY, MICROWAVE, LASER, ALCOHOL, ETC)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1110', 'LIVER, TUMOUR, IMAGING GUIDED PERCUTANEOUS LOCAL\nABLATION, SIMPLE (RADIOFREQUENCY, CRYOTHERAPY, MICROWAVE, LASER, ALCOHOL, ETC)', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1111', 'LIVER, TUMOUR, TRANS-ARTERIAL CHEMO- EMBOLIZATION\n(TACE)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1112', 'LIVER, TUMOUR, TRANS-ARTERIAL RADIO NUCLIDE INFUSION', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1113', 'LIVER, VARIOUS LESIONS, IMAGING GUIDED PERCUTANEOUS\nBIOPSY (FOCAL LESIONS, TARGETED)', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1114', 'LIVER, VARIOUS LESIONS, IMAGING GUIDED PERCUTANEOUS BIOPSY (LIVER PARENCHYMA, NON\nDIRECTED)', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.1115', 'LIVER, VARIOUS LESIONS, LOBECTOMY (3 - 4 SEGMENTS), OPEN\nOR LAP', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1116', 'LIVER, VARIOUS LESIONS, MIS ULTRASOUND AND LOCAL\nABLATION INCLUDING RADIO-FREQUENCY ABLATION', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1117', 'LIVER, VARIOUS LESIONS, PARTIAL LOBECTOMY/SEGMENTAL\nRESECTION (OPEN OR LAP)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1118', 'LIVER, VARIOUS LESIONS, TRANSJUGULAR LIVER BIOPSY', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1119', 'LIVER, VARIOUS LESIONS, WEDGE/LOCAL EXCISION (OPEN OR\nLAP)', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.1120', 'LOWER LIMB, CRUSH INJURIES (EXTENSIVE), DEBRIDEMENT\nWITH REPAIR OF BONE AND SOFT TISSUES', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1121', 'LOWER LIMB, CRUSH INJURIES (LIMITED), DEBRIDEMENT WITH\nREPAIR OF BONE AND SOFT TISSUES', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1122', 'LOWER LIMB, DEFORMITIES, EPIPHYSIODESIS', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1123', 'LOWER LIMB, FRACTURES, OPEN REDUCTION AND FIXATION\nWITH REPAIR OF ARTERIAL INJURIES', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1124', 'LOWER LIMB, FRACTURES/DISLOCATION, MANIPULATION AND\nREDUCTION WITH/WITHOUT APPLICATION OF CAST', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1125', 'LOWER LIMB, ISCHEMIA, FASCIOTOMY', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1126', 'LOWER LIMB, LENGTH DISCREPANCIES, LENGTHENING\nPROCEDURES', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1127', 'LOWER LIMB, LENGTH DISCREPANCIES, SHORTENING\nPROCEDURES', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1128', 'LOWER LIMB, MUSCLE (QUADRICEPS)/TENDON (INCLUDING PATELLAR TENDON), DISRUPTION, REPAIR OR\nRECONSTRUCTION', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1129', 'LOWER LIMB, OPEN TENDON RELEASE (INCLUDING OPEN SOFT\nTISSUE RELEASES E.G. GASTROCNEMIUS RECESSION)', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1130', 'LOWER LIMB, OPEN TENDON RELEASES AND CAST\nAPPLICATION, HAMSTRING RELEASES', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1131', 'LOWER LIMB, PERCUTANEOUS TENOTOMY AND CAST\nAPPLICATION, ADDUCTOR TENOTOMY', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1132', 'LOWER LIMB, PERCUTANEOUS TENOTOMY AND CAST\nAPPLICATION, TA TENOTOMY', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1133', 'LOWER LIMB, TRAUMATIC AMPUTATION, MAJOR\nREPLANTATION', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.1134', 'LOWER LIMB, VARIOUS LESIONS, AMPUTATION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1135', 'LOWER LIMB, VARIOUS LESIONS, HINDQUARTER AMPUTATION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1136', 'LOWER LIMB, VARIOUS LESIONS, HIP DISARTICULATION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1137', 'LUMBAR PLEXUS, BLOCK, CATHETER', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.1138', 'LUMBAR PLEXUS, BLOCK, NO CATHETER', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1139', 'LUNG, BRONCHOSCOPY, INSERTION OF PROSTHESIS', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1140', 'LUNG, MASSIVE HEMOPTYSIS, BRONCHIAL ARTERY\nEMBOLISATION', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1141', 'LUNG, PULMONARY ENDARTERECTOMY WITH\nCARDIOPULMONARY BYPASS', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.1142', 'LUNG, TUMOUR, IMAGING GUIDED PERCUTANEOUS LOCAL\nABLATION, COMPLEX (RADIOFREQUENCY, CRYOTHERAPY, MICROWAVE, LASER, ALCOHOL, ETC)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1143', 'LUNG, TUMOUR, IMAGING GUIDED PERCUTANEOUS LOCAL\nABLATION, SIMPLE (RADIOFREQUENCY, CRYOTHERAPY, MICROWAVE, LASER, ALCOHOL, ETC)', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1144', 'LUNG, VARIOUS LESIONS, LUNG RESECTION WITH MEDIASTINAL\nRESECTION, ANY APPROACH', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.1145', 'LUNG, VARIOUS LESIONS,\nPNEUMONECTOMY/LOBECTOMY/SEGMENTAL RESECTION', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.1146', 'LUNG, VARIOUS LESIONS, REPEAT/MULTIPLE/COMPLEX\nRESECTIONS', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1147', 'LUNG, VARIOUS LESIONS, WEDGE RESECTION', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1148', 'LYMPH NODE (AXILLARY), VARIOUS LESIONS, LIMITED\nEXCISION/BIOPSY', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1149', 'LYMPH NODE (AXILLARY), VARIOUS LESIONS, RADICAL EXCISION/CLEARANCE WITH OR WITHOUT SENTINEL\nLYMPH NODE BIOPSY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1150', 'LYMPH NODE (AXILLARY), VARIOUS LESIONS, SENTINEL LN\nBIOPSY ONLY', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1151', 'LYMPH NODE (CERVICAL), DEEP, VARIOUS LESIONS, BIOPSY', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1152', 'LYMPH NODE (CERVICAL), RADICAL WITH FLAP\nRECONSTRUCTION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1153', 'LYMPH NODE (CERVICAL), SUPERFICIAL, VARIOUS LESIONS,\nBIOPSY', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1154', 'LYMPH NODE (CERVICAL), VARIOUS LESIONS, NECK DISSECTION\nBILATERAL 3 OR LESS LEVELS', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1155', 'LYMPH NODE (CERVICAL), VARIOUS LESIONS, NECK DISSECTION BILATERAL AT LEAST WITH ONE SIDE 4 TO 5\nLEVELS', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.1156', 'LYMPH NODE (CERVICAL), VARIOUS LESIONS, NECK DISSECTION\nUNILATERAL 1-3 LEVELS', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1157', 'LYMPH NODE (CERVICAL), VARIOUS LESIONS, NECK DISSECTION\nUNILATERAL 4-5 LEVELS', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1158', 'LYMPH NODE (CERVICAL), VARIOUS LESIONS, RADICAL NECK\nDISSECTION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1159', 'LYMPH NODE (INGUINAL), VARIOUS LESIONS, LIMITED EXCISION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1160', 'LYMPH NODE (INGUINAL), VARIOUS LESIONS, RADICAL EXCISION', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1161', 'LYMPH NODE (PELVIC) DISSECTION, MIS/OPEN', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1162', 'LYMPH NODE (RETROPERITONEAL), VARIOUS LESIONS, LIMITED\nEXCISION', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1163', 'LYMPH NODE (RETROPHARYNGEAL), NECK DISSECTION\n(OPEN/TRANSORAL)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1164', 'LYMPH NODE (SINGLE), VARIOUS LESIONS, EXCISION BIOPSY', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.1165', 'LYMPH NODE (SINGLE), VARIOUS LESIONS, EXCISION BIOPSY\n(MIS)', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.1166', 'LYMPH NODE EXCISION FOR MYCOBACTERIUM AVIARE\nINTRACELLULARE SCROPHYLLORIUM', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1167', 'LYMPH NODE, VARIOUS LESIONS, BIOPSY', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1168', 'LYMPH NODE, VARIOUS LESIONS, IMAGING GUIDED PERCUTANEOUS BIOPSY, DEEP\n(INTRATHORACIC/ABDOMINAL/PELVIC, RETROPERITONEAL)', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1169', 'LYMPH NODE, VARIOUS LESIONS, IMAGING GUIDED\nPERCUTANEOUS BIOPSY, SUPERFICIAL', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1170', 'LYMPHATICS (FACE & NECK), CYSTIC HYGROMA, EXCISION\n(LARGE)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1171', 'LYMPHATICS (FACE & NECK), CYSTIC HYGROMA, EXCISION\n(MODERATE)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1172', 'LYMPHATICS (FACE & NECK), CYSTIC HYGROMA, EXCISION\n(SMALL)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1173', 'LYMPHATICS (UPPER LIMB), LYMPHANGIOMA, EXCISION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1174', 'LYMPHATICS AND SUBCUTANEOUS TISSUE, LYMPHEDEMA,\nMAJOR EXCISION AND GRAFTING', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1175', 'LYMPHATICS, CYSTIC HYGROMA, EXCISION (EXTENSIVE)\nWITH/WITHOUT THORACOTOMY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1176', 'LYMPHATICS, LYMPHANGIECTASIS, LIMITED EXCISION', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1177', 'LYMPHATICS, LYMPHANGIECTASIS, RADICAL EXCISION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1178', 'LYMPHATICS, LYMPHEDEMA, EXCISION (EXTENSIVE AND\nCOMPLEX)', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.1179', 'LYMPHATICS, LYMPHEDEMA, EXCISION (LARGE & DEEP SEATED)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1180', 'LYMPHATICS, LYMPHEDEMA, EXCISION (LARGE)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1181', 'LYMPHATICS, LYMPHEDEMA, EXCISION (MODERATE)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1182', 'LYMPHATICS, LYMPHEDEMA, EXCISION (SMALL)', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1183', 'LYMPHATICS, LYMPHEDEMA, LYMPHO- VENOUS/LYMPHATICO- VENULAR ANASTOMOSES,\nUNILATERAL(MICROSURGERY)', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.1184', 'LYMPHATICS, LYMPHEDEMA, MAJOR EXCISION & GRAFTING', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1185', 'LYMPHATICS, LYMPHEDEMA, THOMSON\'S PROCEDURE', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1186', 'MALE GENITALIA, ELECTROEJECULATION', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.1187', 'MALE GENITALIA, TRANSSEXUALISM (TRANSVESTISM), SEX\nREASSIGNMENT (MALE TO FEMALE)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1188', 'MALE GENITALIA, TRANSSEXUALISM (TRANSVESTISM), SEX\nREASSIGNMENT WITH MAMMOPLASTY (MALE TO FEMALE)', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1189', 'MANDIBLE (EXCLUDING ALVEOLAR MARGINS), VARIOUS\nLESIONS, COMPLEX OSTEOTOMY/OSTECTOMY', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1190', 'MANDIBLE AND MAXILLA, OLD FRACTURES/OSTEOTOMY,\nREMOVAL OF PLATES OR WIRES', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1191', 'MANDIBLE AND MAXILLA, VARIOUS LESIONS, OSTEOTOMY AND INSERTION OF DEVICE FOR\nDISTRACTION OSTEOGENESIS', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.1192', 'MANDIBLE AND MAXILLA, VARIOUS LESIONS, OSTEOTOMY INCLUDING SEGMENTAL OSTEOTOMY\nWITH/WITHOUT GRAFTING', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.1193', 'MANDIBLE AND/OR MAXILLA, VARIOUS LESIONS, INSERTION OF TRANSMANDIBULAR IMPLANT/ SUBPERIOSTEAL IMPLANT/\nZYGOMATICUS IMPLANT', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1194', 'MANDIBLE OR MAXILLA, ALVEOLAR DEFECT/DEFORMITY, COMPLEX ALVEOLOPLASTY/UNILATERAL (LATERAL WINDOW) SINUS LIFT/RIDGE AUGMENTATION WITH GRAFTING', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1195', 'MANDIBLE OR MAXILLA, ALVEOLAR DEFECT/DEFORMITY,\nSIMPLE ALVEOLOPLASTY/BONE REGENERATIVE PROCEDURE', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1196', 'MANDIBLE OR MAXILLA, BONY PROTUBERANCE, EXCISION', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1197', 'MANDIBLE OR MAXILLA, DENTAL IMPLANT(S), OSSEOINTEGRATED, TREPHINE REMOVAL (X NUMBER OF\nIMPLANTS REMOVED)', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.1198', 'MANDIBLE OR MAXILLA, ODONTOGENIC CYST (10MM OR\nSMALLER), ENUCLEATION', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1199', 'MANDIBLE OR MAXILLA, ODONTOGENIC CYST (11- 20MM),\nENUCLEATION', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1200', 'MANDIBLE OR MAXILLA, ODONTOGENIC CYST (20MM OR\nLARGER OR MULTIPLE CYSTS), ENUCLEATION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1201', 'MANDIBLE OR MAXILLA, ODONTOGENIC CYST,\nMARSUPIALIZATION', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1202', 'MANDIBLE OR MAXILLA, OLD FRACTURES / OSTEOTOMY,\nREMOVAL OF PLATES OR WIRES', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1203', 'MANDIBLE OR MAXILLA, TUMOR, MARGINAL RESECTION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1204', 'MANDIBLE OR MAXILLA, TUMOR, MARGINAL RESECTION WITH\nBONE GRAFT', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1205', 'MANDIBLE OR MAXILLA, VARIOUS LESIONS, ALVEOLOPLASTY WITH EPITHELIAL GRAFT OR\nBILATERAL SINUS-LIFT PROCEDURE OR RIDGE AUGMENTATION\n(MULTIPLE QUADRANTS) WITH GRAFTING', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1206', 'MANDIBLE OR MAXILLA, VARIOUS LESIONS, DENTOALVEOLAR OSTEOTOMY AND INSERTION OF DEVICE FOR DISTRACTION\nOSTEOGENESIS', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1207', 'MANDIBLE OR MAXILLA, VARIOUS LESIONS, INSERTION OF ENDOSSEOUS DENTAL IMPLANT (SINGLE)(FOR\nMULTIPLE PLACEMENT OF IMPLANTS, NUMBER OF\nCLAIMS = NUMBER OF IMPLANTS PLACED )', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1208', 'MANDIBLE OR MAXILLA, VARIOUS LESIONS, SEGMENTAL OSTEOTOMY AND INSERTION OF DEVICE FOR\nDISTRACTION OSTEOGENESIS AND BONE TRANSPORT', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.1209', 'MANDIBLE OR MAXILLA, VARIOUS LESIONS, VESTIBULOPLASTY,\nCOMPLEX', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1210', 'MANDIBLE OR MAXILLA, VARIOUS LESIONS, VESTIBULOPLASTY,\nSIMPLE', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1211', 'MANDIBLE, ATROPHY, LATERALISATION OF INFERIOR DENTAL NERVE WITH IMPLANT FIXTURES PLACEMENT,\nBILATERAL.', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1212', 'MANDIBLE, ATROPHY, LATERALISATION OF INFERIOR DENTAL NERVE WITH IMPLANT FIXTURES PLACEMENT,\nUNILATERAL', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1213', 'MANDIBLE, FRACTURE (COMMINUTED), OPEN REDUCTION AND\nFIXATION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1214', 'MANDIBLE, FRACTURE, CLOSED REDUCTION AND FIXATION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1215', 'MANDIBLE, FRACTURE, OPEN REDUCTION AND FIXATION', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1216', 'MANDIBLE, VARIOUS LESIONS, ALVEOLECTOMY (PER\nQUADRANT)', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1217', 'MANDIBLE, VARIOUS LESIONS, BODY OR RAMUS OSTEOTOMY WITH INSERTION OF DISTRACTION\nOSTEOGENESIS DEVICE', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1218', 'MANDIBLE, VARIOUS LESIONS, GENIOPLASTY (COMPLEX\n- NOT AS A COMBINED PROCEDURE)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1219', 'MANDIBLE, VARIOUS LESIONS, GENIOPLASTY (SIMPLE - NOT AS\nA COMBINED PROCEDURE)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1220', 'MANDIBLE, VARIOUS LESIONS, MANDIBULAR RAMUS/BODY OSTECTOMY/OSTEOTOMY WITH\nSEGMENTAL OSTEOTOMY', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1221', 'MANDIBLE, VARIOUS LESIONS, MANDIBULAR RAMUS/BODY OSTECTOMY/OSTEOTOMY WITHOUT SEGMENTAL OSTEOTOMY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1222', 'MANDIBLE, VARIOUS LESIONS, RECONSTRUCTION WITH BONE', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1223', 'MANDIBLE, VARIOUS LESIONS, SEGMENTAL\nOSTECTOMY/OSTEOTOMY (ONE SEGMENT ONLY)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1224', 'MANDIBLE, VARIOUS LESIONS, SEGMENTAL RESECTION WITH\nBONE GRAFT', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1225', 'MARROW, FOR VARIOUS LESIONS, HARVESTING & GRAFTING', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1226', 'MARROW, VARIOUS LESIONS, DIAGNOSTIC ASPIRATION', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.1227', 'MASTOID, VARIOUS LESIONS, MASTOIDECTOMY (CORTICAL)', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1228', 'MASTOID, VARIOUS LESIONS, MASTOIDECTOMY (RADICAL/MODIFIED RADICAL) WITH MYRINGOPLASTY\nAND OSSICULAR CHAIN RECONSTRUCTION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1229', 'MASTOID, VARIOUS LESIONS, MASTOIDECTOMY\n(RADICAL/MODIFIED)', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1230', 'MASTOID, VARIOUS LESIONS, MASTOIDECTOMY\n(RADICAL/MODIFIED) WITH MYRINGOPLASTY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1231', 'MASTOID, VARIOUS LESIONS, OBLITERATION / REDUCTION OF\nCAVITY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1232', 'MASTOID, VARIOUS LESIONS, REVISION MASTOIDECTOMY', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1233', 'MAXILLA (EXCLUDING ALVEOLAR MARGINS) AND/OR ZYGOMA, VARIOUS LESIONS, COMPLEX\nOSTECTOMY/OSTEOTOMY', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1234', 'MAXILLA DEFORMITY, LE FORT II OSTEOTOMY AND INSERTION\nOF DISTRACTION OSTEOGENESIS DEVICE', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1235', 'MAXILLA DEFORMITY, LE FORT III OSTEOTOMY AND INSERTION\nOF DISTRACTION OSTEOGENESIS DEVICE', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.1236', 'MAXILLA, ALVEOLAR CLEFT (BILATERAL COMPLETE), BONE\nGRAFT AND CLOSURE OF NASO BUCCAL FISTULA', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1237', 'MAXILLA, ALVEOLAR CLEFT (UNILATERAL COMPLETE), BONE\nGRAFT AND CLOSURE OF NASO BUCCAL FISTULA', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.1238', 'MAXILLA, ALVEOLAR CLEFT (UNILATERAL INCOMPLETE), BONE\nGRAFT', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1239', 'MAXILLA, BILATERAL INCOMPLETE ALVEOLAR CLEFT, BONE\nGRAFT', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.1240', 'MAXILLA, DEFORMITY - LEFORT I, OSTEOTOMY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1241', 'MAXILLA, DEFORMITY - LEFORT II, OSTEOTOMY', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1242', 'MAXILLA, DEFORMITY - LEFORT III, OSTEOTOMY', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.1243', 'MAXILLA, DEFORMITY, LE FORT I OSTEOTOMY AND INSERTION\nOF DISTRACTION OSTEOGENESIS DEVICE', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1244', 'MAXILLA, FRACTURE - LEFORT I, CLOSED REDUCTION AND\nFIXATION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1245', 'MAXILLA, FRACTURE - LEFORT I, OPEN REDUCTION AND\nFIXATION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1246', 'MAXILLA, FRACTURE - LEFORT II (COMPLEX), OPEN REDUCTION\nAND FIXATION.', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1247', 'MAXILLA, FRACTURE - LEFORT II / III, CLOSED REDUCTION AND\nFIXATION.', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1248', 'MAXILLA, FRACTURE - LEFORT III, OPEN REDUCTION AND\nFIXATION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1249', 'MAXILLA, FRACTURE - LEFORT III, OPEN REDUCTION AND\nFIXATION USING CRANIOFACIAL APPROACH', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.1250', 'MAXILLA, SINUSES, SINOSCOPY', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1251', 'MAXILLA, VARIOUS LESIONS, OSTECTOMY/OSTEOTOMY (MORE\nTHAN 1 SEGMENT)', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1252', 'MAXILLA, VARIOUS LESIONS, OSTECTOMY/OSTEOTOMY (ONE\nSEGMENT ONLY)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1253', 'MAXILLA, VARIOUS LESIONS, RESECTION WITH\nRECONSTRUCTION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1254', 'MAXILLA, VARIOUS LESIONS, RESECTION/HEMIMAXILLECTOMY (OPEN OR ENDOSCOPIC METHOD)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1255', 'MENINGES, MYELOMENINGOCELE, EXCISION OF SAC', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.1256', 'MENINGES, MYELOMENINGOCELE, EXTENSIVE REPAIR WITH\nSKIN FLAPS/Z-PLASTY', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1257', 'MIS REPAIR OF ESOPHAGEAL FISTULA AND ESOPHAGEAL\nATRESIA', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1258', 'MOUTH, ABSCESS (DEEP), DRAINAGE (INCLUDES SUBMASSETERIC, SUBMANDIBULAR, TEMPORAL, AND\nPTERYGOMANDIBULAR SPACES)', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1259', 'MOUTH, ABSCESS, (SUPERFICIAL), DRAINAGE', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.1260', 'MOUTH, ANGULAR CLEFT WITH MACROSTOMIA (BILATERAL)\nREPAIR', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.1261', 'MOUTH, ANGULAR CLEFT WITH MACROSTOMIA (UNILATERAL)\nREPAIR', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.1262', 'MOUTH, CAUTERY OF SOFT PALATE /TONGUE BASE', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1263', 'MOUTH, CLEFT LIP, BILATERAL PRIMARY REPAIR', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.1264', 'MOUTH, CLEFT LIP, SECONDARY CORRECTION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1265', 'MOUTH, CLEFT LIP, SECONDARY CORRECTION (ABBE FLAP)', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.1266', 'MOUTH, CLEFT LIP, SECONDARY CORRECTION OF\nNOSTRIL/NASAL TIP', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1267', 'MOUTH, CLEFT LIP, UNILATERAL PRIMARY REPAIR', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.1268', 'MOUTH, DEFECT, MUCOUS MEMBRANE/CONNECTIVE TISSUE\nGRAFT', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1269', 'MOUTH, DISLOCATED TEETH/DENTO-ALVEOLAR FRACTURE,\nREDUCTION AND IMMOBILISATION', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1270', 'MOUTH, FRENAL ATTACHMENT, RELEASE', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1271', 'MOUTH, INTRA ORAL TUMOUR RADICAL EXCISION WITH RESECTION OF MANDIBLE AND BILATERAL NECK\nDISSECTION', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.1272', 'MOUTH, INTRA ORAL TUMOUR RADICAL EXCISION WITH RESECTION OF MANDIBLE AND UNILATERAL NECK DISSECTION', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.1273', 'MOUTH, LEUKOPLAKIA, LIMITED EXCISION', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1274', 'MOUTH, LEUKOPLAKIA, WIDE EXCISION AND SKIN GRAFTING', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1275', 'MOUTH, MACROCHEILIA AND MACROGLOSSIA,\nRECONSTRUCTION', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1276', 'MOUTH, MALIGNANT TUMOR, WIDE EXCISION AND MAJOR\nRECONSTRUCTION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1277', 'MOUTH, MUCOUS CYST/RANULA OF FLOOR OF MOUTH,\nEXCISION WITH/WITHOUT BIOPSY', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1278', 'MOUTH, MUCOUS CYST/RANULA OF FLOOR OF MOUTH,\nMARSUPIALIZATION /BIOPSY', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1279', 'MOUTH, NASOLABIAL CYST, EXCISION BIOPSY', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1280', 'MOUTH, ORO-ANTRAL FISTULA, REMOVAL OF TOOTH/ROOTS IN\nANTRUM AND CLOSURE', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1281', 'MOUTH, PERIODONTIUM (WITHIN 1 QUADRANT),\nPERIODONTITIS, OPEN FLAP DEBRIDEMENT', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1282', 'MOUTH, PERIODONTIUM (WITHIN 1 QUADRANT), SOFT TISSUE\nDEFECT/DEFORMITY, GINGIVOPLASTY', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1283', 'MOUTH, PERIODONTIUM (WITHIN 1 QUADRANT), SOFT TISSUE\nDEFECT/DEFORMITY, GINGIVOPLASTY WITH AUTOGENOUS SOFT/HARD TISSUE GRAFT', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1284', 'MOUTH, PERIODONTIUM (WITHIN 2 QUADRANTS),\nPERIODONTITIS, OPEN FLAP DEBRIDEMENT', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1285', 'MOUTH, PERIODONTIUM (WITHIN 2 QUADRANTS), SOFT TISSUE\nDEFECT/DEFORMITY, GINGIVOPLASTY', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1286', 'MOUTH, PERIODONTIUM (WITHIN 2 QUADRANTS), SOFT TISSUE\nDEFECT/DEFORMITY, GINGIVOPLASTY WITH AUTOGENOUS SOFT/HARD TISSUE GRAFT', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1287', 'MOUTH, PERIODONTIUM, BONE DEFECT/DEFORMITY,\nAUGMENTATION (AUTOGENOUS) /REGENERATION', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1288', 'MOUTH, PERIODONTIUM, BONE DEFECT/DEFORMITY,\nAUGMENTATION (NON-AUTOGENOUS) /REGENERATION', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1289', 'MOUTH, SMALL SOFT TISSUE TUMOR, EXCISION BIOPSY <\n3CM', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1290', 'MOUTH, SUBLINGUAL GLAND, TUMOR, EXCISION BIOPSY', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1291', 'MOUTH, SUBMANDIBULAR GLAND, CALCULUS (DEEP),\nREMOVAL BIOPSY', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1292', 'MOUTH, SUBMANDIBULAR GLAND, CALCULUS, REMOVAL WITH\nBIOPSY', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.1293', 'MOUTH, SUBMANDIBULAR GLAND, VARIOUS LESIONS,\nEXCISION WITH BIOPSY', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1294', 'MOUTH, SUBMUCOSAL RESECTION, ENDOSCOPIC EXCISION\nWITH BIOPSY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1295', 'MOUTH, TUMOR, RADICAL EXCISION BIOPSY WITH RESECTION OF MANDIBLE AND LYMPH NODES AND RECONSTRUCTION', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.1296', 'MOUTH, VARIOUS LESIONS OF ORAL MUCOSA (LARGE/MULTIPLE), CRYOSURGICAL/LASER APPLICATION\nWITH BIOPSY', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1297', 'MOUTH, VARIOUS LESIONS, LASER APPLICATION', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1298', 'MOUTH, VARIOUS LESIONS, PHARYNGOTOMY (LATERAL) WITH\nEXCISION OF TONGUE', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1299', 'MOUTH, VARIOUS LESIONS, UVULOTOMY', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1300', 'MOUTH, VARIOUS/PATHOLOGIC LESIONS OF ORAL MUCOSA, CRYOSURGICAL/LASER APPLICATION WITH BIOPSY', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1301', 'MOUTH, VARIOUS/PATHOLOGIC LESIONS OF ORAL MUCOSA,\nLASER APPLICATION', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1302', 'MUCOUS MEMBRANE (EAR/NOSE/EYELID) AVULSION/COMPLEX\nLACERATION, FULL THICKNESS REPAIR', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1303', 'MUCOUS MEMBRANE, DEEP LACERATION/MULTIPLE\nLACERATIONS, REPAIR', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1304', 'MUCOUS MEMBRANE, SUPERFICIAL LACERATION EQUAL/LESS\nTHAN 7CM, REPAIR', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1305', 'MUCOUS MEMBRANE, SUPERFICIAL LACERATION(S) MORE\nTHAN 7 CM, REPAIR', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1306', 'MUCOUS MEMBRANE, TUMOR/CYST/ULCER/SCAR, EXCISION', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1307', 'MUSCLE (LOWER LIMB), DEEP ABSCESS, DRAINAGE', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1308', 'MUSCLE (LOWER LIMB), RUPTURE, REPAIR', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1309', 'MUSCLE (LOWER LIMB), VARIOUS LESIONS, MARGINAL\nEXCISION', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1310', 'MUSCLE (LOWER LIMB), VARIOUS LESIONS, WIDE EXCISION', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1311', 'MUSCLE (UPPER LIMB), DEEP ABSCESS, INCISION AND\nDRAINAGE', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1312', 'MUSCLE (UPPER LIMB), RUPTURE, REPAIR', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1313', 'MUSCLE (UPPER LIMB), VARIOUS LESIONS, MARGINAL EXCISION', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1314', 'MUSCLE (UPPER LIMB), VARIOUS LESIONS, WIDE EXCISION', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1315', 'MUSCLE AND DEEP TISSUE, FOREIGN BODY, REMOVAL', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1316', 'MUSCULOSKELETAL SYSTEM, VARIOUS LESIONS, FREE\nCOMPOSITE TISSUE GRAFT', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.1317', 'NAIL BED, LACERATION, REPAIR (MULTIPLE)', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1318', 'NAIL BED, LACERATION, REPAIR (SINGLE)', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.1319', 'NAIL, INFECTION/INJURY, AVULSION', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.1320', 'NECK, BRANCHIAL CYST, REMOVAL WITH BIOPSY', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1321', 'NECK, BRANCHIAL FISTULA, REMOVAL', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1322', 'NECK, TORTICOLLIS, CORRECTION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1323', 'NERVE (LOWER LIMB), DISRUPTION, MAJOR RECONSTRUCTION WITH REPAIR AND/OR\nNEUROVASCULAR TRANSFER', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1324', 'NERVE (LOWER LIMB), DISRUPTION, MAJOR REPAIR (SINGLE)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1325', 'NERVE (LOWER LIMB), ENTRAPMENT SYNDROME,\nDECOMPRESSION', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1326', 'NERVE (OROFACIAL), DEFECT, GRAFT (MULTIPLE) USING\nMICROSURGICAL TECHNIQUES (INCLUDE HARVESTING)', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.1327', 'NERVE (OROFACIAL), DEFECT, GRAFT (SINGLE)/NERVE SHARE, USING MICROSURGICAL TECHNIQUES (INCLUDE HARVESTING)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1328', 'NERVE (OROFACIAL), INJURY, DECOMPRESSION\n(MULTIPLE/SINGLE INTRAOSSEOUS)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1329', 'NERVE (OROFACIAL), INJURY, DECOMPRESSION (SINGLE)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1330', 'NERVE (OROFACIAL), INJURY, MICROSURGICAL REPAIR\n(MULTIPLE/ SINGLE INTRAOSSEOUS)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1331', 'NERVE (OROFACIAL), INJURY, MICROSURGICAL REPAIR (SINGLE)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1332', 'NERVE (UPPER LIMB), CARPAL TUNNEL SYNDROME, RELEASE,\nBILATERAL, (WITH ENDONEUROLYSIS)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1333', 'NERVE (UPPER LIMB), CARPAL TUNNEL SYNDROME, RELEASE,\nUNILATERAL, (WITH ENDONEUROLYSIS)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1334', 'NERVE (UPPER LIMB), DEFECT, GRAFT (SINGLE) USING\nMICROSURGICAL TECHNIQUES', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1335', 'NERVE (UPPER LIMB), DEFECT, GRAFTING/INTERFASCICULAR REPAIR/NEUROVASCULAR TRANSFER', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1336', 'NERVE (UPPER LIMB), ENTRAPMENT SYNDROME (OTHERS),\nDECOMPRESSION (BILATERAL)', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1337', 'NERVE (UPPER LIMB), ENTRAPMENT SYNDROME (OTHERS),\nDECOMPRESSION (UNILATERAL)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1338', 'NERVE (UPPER LIMB), GUYON\'S TUNNEL SYNDROME, RELEASE\n(BILATERAL WITH ENDONEUROLYSIS)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1339', 'NERVE (UPPER LIMB), GUYON\'S TUNNEL SYNDROME, RELEASE\n(UNILATERAL)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1340', 'NERVE (UPPER LIMB)-MAJOR, INJURY, MICROSURGICAL REPAIR\n(MULTIPLE)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1341', 'NERVE (UPPER LIMB)-MAJOR, INJURY, MICROSURGICAL REPAIR\n(SINGLE)', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1342', 'NERVE DEFECT, PERIPHERAL GRAFT (MICROSURGERY)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1343', 'NERVE ROOT, BLOCK (INJECTION OF ANAESTHETIC,\nTHERAPEUTIC SUBSTANCE) - CERVICAL, > 1 LEVEL', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1344', 'NERVE ROOT, BLOCK (INJECTION OF ANAESTHETIC,\nTHERAPEUTIC SUBSTANCE) - CERVICAL, 1 LEVEL', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1345', 'NERVE ROOT, BLOCK (INJECTION OF ANAESTHETIC, THERAPEUTIC SUBSTANCE), LUMBAR/THORACIC, 1\nLEVEL', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.1346', 'NERVE ROOT, BLOCK (INJECTION OF ANAESTHETIC,\nTHERAPEUTIC SUBSTANCE), LUMBAR/THORACIC, > 1 LEVEL', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1347', 'NERVE ROOTS, DORSAL ROOT GANGLION, ANAESTHETIC, MORE\nTHAN TWO', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1348', 'NERVE ROOTS, DORSAL ROOT GANGLION, ANAESTHETIC, ONE\nTO TWO', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1349', 'NERVE ROOTS, DORSAL ROOT GANGLION, RADIOFREQUENCY,\nNEUROLYTIC, MORE THAN TWO', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.1350', 'NERVE ROOTS, DORSAL ROOT GANGLION, RADIOFREQUENCY,\nNEUROLYTIC, ONE TO TWO', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1351', 'NERVE, FAECAL INCONTINENCE OR OTHER, PERCUTANEOUS\nTIBIAL NERVE STIMULATION', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.1352', 'NERVE, ULNAR, ENTRAPMENT, TRANSPOSITION', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1353', 'NERVE, VAGUS NERVE STIMULATOR', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.1354', 'NERVE, VARIOUS LESIONS, BIOPSY', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1355', 'NERVE, VARIOUS LESIONS, PRIMARY/SECONDARY SUTURE', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1356', 'NERVE-CRANIAL, VARIOUS LESIONS, MICROVASCULAR\nDECOMPRESSION/NEURECTOMY', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1357', 'NERVE-CUTANEOUS, INJURY, PRIMARY SUTURE', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1358', 'NERVE-DIGITAL, INJURY, MICROSURGICAL REPAIR (MULTIPLE)', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1359', 'NERVE-DIGITAL, INJURY, MICROSURGICAL REPAIR (SINGLE)', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1360', 'NERVE-DIGITAL, INJURY, PRIMARY REPAIR', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1361', 'NERVE-FACIAL (MASTOID PORTION), ENTRAPMENT,\nDECOMPRESSION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1362', 'NERVE-FACIAL PARALYSIS, FREE FASCIA AND/OR NERVE GRAFT\n(MICROSURGICAL ? STAGE 1)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1363', 'NERVE-FACIAL PARALYSIS, FREE FASCIA SLING/GRAFT\n(SINGLE/UNILATERAL)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1364', 'NERVE-FACIAL PARALYSIS, FREE MUSCLE FLAP (MICROSURGICAL\n? STAGE 2)', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.1365', 'NERVE-FACIAL PARALYSIS, LOCAL MUSCLE TRANSFER', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1366', 'NERVE-FACIAL, VARIOUS LESIONS, COMBINED MIDDLE FOSA AND TRANSMASTOID FACIAL NERVE DECOMPRESSION', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.1367', 'NERVE-PERIPHERAL (DEEP), TUMOR, EXCISION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1368', 'NERVE-PERIPHERAL (SUPERFICIAL), TUMOR, EXCISION', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1369', 'NERVE-SYMPATHETIC, VARIOUS LESIONS, SYMPATHECTOMY, WITH/WITHOUT VIDEO-ASSISTANCE, BILATERAL', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1370', 'NERVE-SYMPATHETIC, VARIOUS LESIONS, SYMPATHECTOMY, WITH/WITHOUT VIDEO-ASSISTANCE,\nUNILATERAL', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1371', 'NERVE-TRIGEMINAL (GANGLION), NEUROLAGIA, INJECTION WITH ALCOHOL/RADIOFREQUENCY\nGANGLIONOTOMY, IMAGING GUIDED', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1372', 'NEUROSTIMULATOR, INSERTION OF INTERNAL PULSE GENERATOR, INVOLVES OPENING OF WOUND, TUNNELING, OPENING OF POUCH FOR IPG & TESTING OF\nSYSTEM', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1373', 'NEUROSTIMULATOR, REVISION/REPLACEMENT OF\nIMPLANTABLE PULSE GENERATOR (DOES NOT INVOLVE TUNNELING)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1374', 'NOSE, CHOANAL ATRESIA, PLASTIC REPAIR', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1375', 'NOSE, CHOANAL ATRESIA, REPAIR BY PUNCTURE AND\nDILATATION', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1376', 'NOSE, HEMATOMA/ABSCESS, EVACUATION/INCISION &\nDRAINAGE', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.1377', 'NOSE, HEMORRHAGE, HEMOSTASIS (PACKING)/CRYOTHERAPY)', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1378', 'NOSE, LACERATION FULL THICKNESS, REPAIR >3CM', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1379', 'NOSE, NASOENDOSCOPY/NASOPHARYNGOLARYNGOSCOPY (SINGLE OR REPEAT EXAMINATIONS, DURING A 90 DAY GLOBAL\nPERIOD)', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.1380', 'NOSE, POLYPI (COMPLEX), NASOENDOSCOPY WITH EXCISION\nBIOPSY, MORE THAN 2', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1381', 'NOSE, POLYPI (SIMPLE), NASOENDOSCOPY WITH EXCISION\nBIOPSY, 1 TO 2', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1382', 'NOSE, POST-NASAL SPACE, LASER APPLICATION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1383', 'NOSE, RHINOPHYMA, EXCISION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1384', 'NOSE, RHINOPHYMA, TOTAL CONSTRUCTION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1385', 'NOSE, RHINOPLASTY, CORRECTION OF LATERAL/ALAR CARTILAGE AND/OR SEPTAL STRUT (INCLUDING ALL GRAFTS, EXTRACORPOREAL SEPTOPLASTY), RECONSTRUCTION OF NASAL VALVE(S), AND/OR EXTRANASAL CARTILAGE HARVEST', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.1386', 'NOSE, SIMPLE FRACTURE, MANIPULATION', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1387', 'NOSE, VARIOUS LESIONS (POSTNASAL SPACE), DIRECT\nEXAMINATION WITH BIOPSY AND NASENDOSCOPY', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1388', 'NOSE, VARIOUS LESIONS (TURBINATES), TURBINECTOMY/TURBINOPLASTY/SUBMUCOUS RESECTION\n(WITH OR WITHOUT ENDOSCOPES)', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1389', 'NOSE, VARIOUS LESIONS, CAUTERISATION/DIATHERMY', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.1390', 'NOSE, VARIOUS LESIONS, COMPOSITE GRAFT (CHONDRO-\nCUTANEOUS/CHONDRO-MUCOSAL)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1391', 'NOSE, VARIOUS LESIONS, RHINOPLASTY (AUGMENTATION\nEXCLUDING COST OF IMPLANTS)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1392', 'NOSE, VARIOUS LESIONS, RHINOPLASTY (CORRECTION OF BONY\nVAULT ONLY)', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.1393', 'NOSE, VARIOUS LESIONS, RHINOPLASTY (RESTORATION OF THE FACE INVOLVING AUTOGENOUS BONE OR\nCOSTAL CARTILAGE GRAFT)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1394', 'NOSE, VARIOUS LESIONS, RHINOPLASTY (SECONDARY REVISION)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1395', 'NOSE, VARIOUS LESIONS, RHINOPLASTY (TOTAL) INCLUDING CORRECTION OF ALL BONY AND CARTILAGINOUS ELEMENTS', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1396', 'NOSE, VARIOUS LESIONS, SEPTOPLASTY/SUBMUCOUS\nRESECTION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1397', 'OCULAR SURFACE PROCEDURE INCLUDING AMNIOTIC\nMEMBRANE TRANSPLANT (COMPLEX, CULTURED GRAFTS/EXTENSIVE RECONSTRUCTION)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1398', 'OPTIC NERVE SHEATH FENESTRATION', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1399', 'ORAL CAVITY AND PHARYNX, FOREIGN BODY, REMOVAL', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1400', 'ORBIT, CONTRACTURE, RECONSTRUCTION INCLUDING MUCOUS\nMEMBRANE GRAFTING AND STENT MOULD', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1401', 'ORBIT, RECONSTRUCTION, EXTENSIVE FLOOR/MEDIAL WALL\nFRACTURE', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1402', 'ORBIT, TUMOR, EXENTERATION/FLAP RECONSTRUCTION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1403', 'ORBIT, TUMOUR, EXENTERATION WITH ORBITECTOMY &\nPRIMARY RECONSTRUCTION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1404', 'ORBIT, VARIOUS LESIONS OF MID TO POSTERIOR ORBIT,\nEXCISION', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.1405', 'ORBIT, VARIOUS LESIONS, ANTERIOR ORBITOTOMY', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1406', 'ORBIT, VARIOUS LESIONS, ANTERIOR ORBITOTOMY (EXTENSIVE)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1407', 'ORBIT, VARIOUS LESIONS, DECOMPRESSION (BILATERAL)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1408', 'ORBIT, VARIOUS LESIONS, DECOMPRESSION (UNILATERAL)', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1409', 'ORBIT, VARIOUS LESIONS, EXTENDED LATERAL\nORBITOTOMY', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.1410', 'ORBIT, VARIOUS LESIONS, LATERAL ORBITOTOMY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1411', 'ORBIT, VARIOUS LESIONS, OPTIC NERVE DECOMPRESSION\n(BILATERAL)', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.1412', 'ORBIT, VARIOUS LESIONS, OPTIC NERVE DECOMPRESSION\n(UNILATERAL)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1413', 'ORBIT, VARIOUS LESIONS, RECONSTRUCTION INCLUDING ORBITAL SHIFT AND SOFT TISSUE (CRANIOFACIAL APPROACH)', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.1414', 'ORBIT, VARIOUS LESIONS, RECONSTRUCTION OF FLOOR/ROOF\nWITH ALLOPLASTIC MATERIAL', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1415', 'ORBIT, VARIOUS LESIONS, RECONSTRUCTION OF FLOOR/ROOF\nWITH BONE GRAFT', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1416', 'ORBIT, VARIOUS LESIONS/TUMOURS, EXENTERATION/REMOVAL\nVIA CRANIOTOMY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1417', 'ORBITAL, ENUCLEATION WITH INTEGRATED ORBITAL IMPLANT', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1418', 'ORBITAL/SCLERAL, EVISCERATION WITH IMPLANT & SCLERAL\nBALL', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1419', 'ORGAN PROCUREMENT COSTS: CORNEA11', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1420', 'ORGAN PROCUREMENT COSTS: HEART', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1421', 'ORGAN PROCUREMENT COSTS: LUNG', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1422', 'OTHERS, AUTOLOGOUS CHONDROCYTE IMPLANTATION', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1423', 'OVARIAN VEINS, PELVIC CONGESTION SYNDROME, OVARIAN\nVEIN EMBOLISATION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1424', 'OVARY, MALIGNANT TUMOR/CYST, STAGING LAPAROTOMY, AS\nTHE ONLY PROCEDURE', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1425', 'OVARY, MALIGNANT TUMOR/CYST, TOTAL HYSTERECTOMY BILATERAL SALPINGO-OOPHORECTOMY WITH OMENTECTOMY, SURGICAL STAGING\nWITH/WITHOUT LYMPHADENECTOMY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1426', 'OVARY, TUMOR/CYST, ASPIRATION EXCEPT FOR OVUM\nRETRIEVAL', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1427', 'OVARY, TUMOR/CYST, CYSTECTOMY (COMPLICATED,\n>5CM)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1428', 'OVARY, TUMOR/CYST, CYSTECTOMY (SIMPLE, <5CM)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1429', 'OVARY, TUMOR/CYST, OOPHORECTOMY/SALPINGO-\nOOPHORECTOMY (COMPLICATED)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1430', 'OVARY, TUMOR/CYST, OOPHORECTOMY/SALPINGO-\nOOPHORECTOMY (SIMPLE)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1431', 'OVARY, VARIOUS LESIONS, BIOPSY', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1432', 'OVARY, VARIOUS LESIONS, OVARIOPEXY', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1433', 'OVARY, VARIOUS LESIONS, OVARIOPLASTY, LAPAROTOMY/MIS (USING MICROSURGICAL\nTECHNIQUES)', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1434', 'OVARY, VARIOUS LESIONS, WEDGE RESECTION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1435', 'PALATE, CLEFT (COMPLETE), PRIMARY REPAIR', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1436', 'PALATE, CLEFT (PARTIAL), PRIMARY REPAIR', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1437', 'PALATE, CLEFT, SECONDARY REPAIR (CLOSURE OF FISTULA)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1438', 'PALATE, CLEFT, UVULOPHARYNGOPLASTY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1439', 'PALATE, SECONDARY REPAIR (LENGTHENING PROCEDURE)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1440', 'PANCREAS, CYST/PSEUDOCYST, MIS/OPEN DRAINAGE AND\nANASTOMOSIS TO INTESTINE/STOMACH', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1441', 'PANCREAS, PSEUDOCYST/ABSCESS, IMAGING GUIDED\nPERCUTANEOUS DRAINAGE CATHETER INSERTION', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1442', 'PANCREAS, TRANSPLANT (DONATION - CADAVERIC DONOR)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1443', 'PANCREAS, TRANSPLANT (RECIPIENT)', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.1444', 'PANCREAS, TUMOUR, TRIPLE BYPASS', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1445', 'PANCREAS, VARIOUS LESIONS, DISTAL\nPANCREATECTOMY/ANASTOMOSIS OF PANCREATIC DUCT', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1446', 'PANCREAS, VARIOUS LESIONS, DUODENUM PRESERVING PANCREATIC HEAD RESECTION WITH LONGITUDINAL\nPANCREATICO-ENTERIC ANASTOMOSIS (FREY\'S OPERATION)', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.1447', 'PANCREAS, VARIOUS LESIONS, DUODENUM PRESERVING\nPANCREATIC HEAD RESECTION (BEGER\'S OPERATION)', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.1448', 'PANCREAS, VARIOUS LESIONS, ENUCLEATION OF LESIONS (1 TO\n2)', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.1449', 'PANCREAS, VARIOUS LESIONS, ENUCLEATION OF LESIONS (3 OR\nMORE)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1450', 'PANCREAS, VARIOUS LESIONS, EXTERNAL DRAINAGE (OPEN)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1451', 'PANCREAS, VARIOUS LESIONS, IMAGING GUIDED\nPERCUTANEOUS BIOPSY', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1452', 'PANCREAS, VARIOUS LESIONS, MIS/OPEN DISTAL\nPANCREATECTOMY AND SPLENECTOMY', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.1453', 'PANCREAS, VARIOUS LESIONS, MIS/OPEN SPLEEN- PRESERVING\nDISTAL PANCREATECTOMY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1454', 'PANCREAS, VARIOUS LESIONS, MIS/OPEN SUBTOTAL PANCREATECTOMY (EXTENDING TO THE NECK) AND\nSPLENECTOMY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1455', 'PANCREAS, VARIOUS LESIONS, PORTAL VENOUS SAMPLING', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1456', 'PANCREAS, VARIOUS LESIONS, SEGMENTAL PANCREATECTOMY WITH PANCREATICO-ENTERIC\nANASTOMOSIS', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1457', 'PANCREAS, VARIOUS LESIONS, WHIPPLE OPERATION/TOTAL\nPANCREATECTOMY', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.1458', 'PARATHYROID, VARIOUS LESIONS, EXCISION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1459', 'PARATHYROID, VARIOUS LESIONS, RE EXPLORATION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1460', 'PARAVERTEBRAL REGION, BLOCK, ANAESTHETIC (MORE THAN 2\nLEVELS)', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1461', 'PARAVERTEBRAL REGION, BLOCK, ANAESTHETIC (UP TO\n2 LEVELS)', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1462', 'PAROTID, CALCULUS (DEEP), REMOVAL', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1463', 'PAROTID, CALCULUS (SUPERFICIAL), REMOVAL', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.1464', 'PAROTID, FISTULA, REPAIR', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1465', 'PAROTID, TOTAL PAROTIDECTOMY WITH NECK DISSECTION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1466', 'PAROTID, TOTAL PAROTIDECTOMY, WITH/WITHOUT\nPRESERVATION OF FACIAL NERVE', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.1467', 'PAROTID, TUMOR, SUPERFICIAL PAROTIDECTOMY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1468', 'PAROTID, TUMOR, TOTAL PAROTIDECTOMY WITH\nPARAPHARYNGEAL SPACE RESECTION AND FLAP RECONSTRUCTION', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.1469', 'PAROTID, TUMOR, TOTAL PAROTIDECTOMY WITH RADICAL\nNECK DISSECTION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1470', 'PAROTID, TUMOUR, TOTAL PAROTIDECTOMY WITH\nRECONSTRUCTION FACIAL NERVE', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1471', 'PATELLA, FRACTURE, OPEN REDUCTION AND INTERNAL\nFIXATION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1472', 'PATELLA, HABITUAL DISLOCATION- LATERAL RELEASE, MEDIAL\nPLICATION', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1473', 'PATELLA, RECURRENT DISLOCATION/CHONDROMALACIA,\nRECONSTRUCTION', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1474', 'PATELLA, VARIOUS LESIONS, PATELLECTOMY', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1475', 'PELVIC FLOOR RECONSTRUCTION, MIS', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.1476', 'PELVIS, ARTERY/VEIN, LIGATION / OCCLUSION', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1477', 'PELVIS, FRACTURE (DOUBLE COLUMNS), OPEN REDUCTION AND\nINTERNAL FIXATION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1478', 'PELVIS, FRACTURE, FIXATION OF ANTERIOR AND POSTERIOR\nRING', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1479', 'PELVIS, FRACTURE, OPEN REDUCTION AND INTERNAL FIXATION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1480', 'PELVIS, FRACTURE, PLATE/SCREW FIXATION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1481', 'PELVIS, FROZEN/DENSE PELVIC ADHESIONS, CONSERVATIVE RECONSTRUCTION OF OVARIES, TUBES, UTERUS, PELVIC FLOOR', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1482', 'PELVIS, MALIGNANT, SECOND LOOK LAPAROTOMY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1483', 'PENIS, EPISPADIAS, REPAIR INVOLVING BLADDER NECK CLOSURE', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.1484', 'PENIS, EPISPADIAS, REPAIR NOT INVOLVING SPHINCTER (EACH\nSTAGE)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1485', 'PENIS, GLANULAR HYPOSPADIAS, MEATOPLASTY AND\nCIRCUMCISION', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1486', 'PENIS, HYPOSPADIAS, CORRECTION OF CHORDEE', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1487', 'PENIS, HYPOSPADIAS, CORRECTION OF CHORDEE WITH\nTRANSPLANTATION OF PREPUCE', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1488', 'PENIS, HYPOSPADIAS, MEATOTOMY & HEMICIRCUMCISION', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1489', 'PENIS, HYPOSPADIAS, SECONDARY CORRECTION', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1490', 'PENIS, HYPOSPADIAS, URETHRAL RECONSTRUCTION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1491', 'PENIS, HYPOSPADIAS, URETHRAL RECONSTRUCTION &\nCORRECTION OF CHORDEE', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1492', 'PENIS, PARAPHIMOSIS/PHIMOSIS/REDUCTION PREPUCE,\nCIRCUMCISION', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1493', 'PENIS, PENILE WARTS, LASER VAPORISATION', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1494', 'PENIS, PEYRONIE\'S DISEASE, INCISION AND GRAFTING', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1495', 'PENIS, PEYRONIE\'S DISEASE, OPERATION', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1496', 'PENIS, PRIAPISM, DECOMPRESSION (SHUNT OP)', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1497', 'PENIS, PRIAPISM, DECOMPRESSION (SINGLE)', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1498', 'PENIS, REMOVAL OF \"PENILE\" IMPLANT', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1499', 'PENIS, SEX REASSIGNMENT (FEMALE TO MALE), IMPLANTATION\nOF PENILE PROSTHESIS', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1500', 'PENIS, TRAUMA (AMPUTATION), MICROVASCULAR\nREATTACHMENT', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.1501', 'PENIS, TRAUMA, RECONSTRUCTION (1ST STAGE)', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1502', 'PENIS, TRAUMA, RECONSTRUCTION (2ND STAGE)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1503', 'PENIS, TRAUMA, REPAIR OF AVULSION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1504', 'PENIS, TRAUMA, REPAIR OF LACERATION/FRACTURE INVOLVING\nCAVERNOUS TISSUE', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1505', 'PENIS, TUMOR, AMPUTATION (PARTIAL) + BILATERAL RADICAL\nLN DISSECTION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1506', 'PENIS, TUMOR, AMPUTATION (TOTAL)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1507', 'PENIS, TUMOR, AMPUTATION (TOTAL) WITH BLOCK DISSECTION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1508', 'PENIS, TUMOUR, AMPUTATION (PARTIAL)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1509', 'PENIS, VARIOUS LESIONS, EXCISION', 3120000, 'TINDAKAN OPERATIF'); +INSERT INTO `tarif_rs` (`ID_Tarif_RS`, `Tindakan_RS`, `Tarif_RS`, `Kategori_RS`) VALUES +('R.TO.1510', 'PENIS, VARIOUS LESIONS, INSERTION OF PENILE PROSTHESIS', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1511', 'PERIPHERAL NERVE, BLOCK, ANAESTHETIC (MORE THAN\n2 NERVES)', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.1512', 'PERIPHERAL NERVE, BLOCK, ANAESTHETIC (UP TO 2\nNERVES)', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.1513', 'PERIPHERAL NERVE, BLOCK, NEUROLYTIC (MORE THAN 2\nNERVES)', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1514', 'PERIPHERAL NERVE, BLOCK, NEUROLYTIC (UP TO 2\nNERVES)', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1515', 'PHARYNX, ADHESIONS, DIVISION', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1516', 'PHARYNX, CYSTS/VALLECULAR, REMOVAL', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1517', 'PHARYNX, POUCH, REMOVAL', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1518', 'PHARYNX, TONGUE BASE, FOR OSA, EXCISION OF LINGUAL\nTONSILS', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1519', 'PHARYNX, TUMOR, PARTIAL PHARYNGECTOMY AND RADICAL\nNECK DISSECTION WITH FLAP', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.1520', 'PHARYNX, VARIOUS LESIONS, FLAP/PHARYNGOPLASTY', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1521', 'PHARYNX, VARIOUS LESIONS, PARTIAL\nPHARYNGECTOMY WITH PRIMARY CLOSURE', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1522', 'PHARYNX, VARIOUS LESIONS, PHARYNGOTOMY (LATERAL) WITH\nEXCISION OF TONGUE AND RECONSTRUCTION', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.1523', 'PHARYNX/LARYNX, PARAPHARYNGEAL SPACE TUMOR EXCISION', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.1524', 'PHOTODYNAMIC THERAPY', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1525', 'PHOTOREFRACTIVE KERATECTOMY/PHOTOTHERAPEUTIC KERATECTOMY\n(FOR DISEASED EYE)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1526', 'PITUITARY, VARIOUS LESIONS, TRANSPHENOIDAL/TRANSEPTAL EXCISION WITH/WITHOUT GRAFTING (OPEN/MIS)', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1527', 'PROSTATE GLAND, ABSCESS, RETROPUBIC/ENDOSCOPIC\nDRAINAGE', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1528', 'PROSTATE GLAND, HYPERTROPHY, INSERTION OF PROSTATIC\nSTENT', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1529', 'PROSTATE GLAND, LASER VAPORISATION OF PROSTATE', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1530', 'PROSTATE GLAND, PROSTATE IMRT (INTENSITY MODULATED\nRADIATION THERAPY) GOLD SEEDS INSERTION', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1531', 'PROSTATE GLAND, PROSTATE, BENIGN HYPERPLASIA,\nMINIMALLY INVASIVE ABLATION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1532', 'PROSTATE GLAND, SIMPLE PROSTATECTOMY (MIS/OPEN)', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1533', 'PROSTATE GLAND, VARIOUS LESIONS, RADICAL\nPROSTATECTOMY (MIS/OPEN)', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.1534', 'PROSTATE GLAND, VARIOUS LESIONS, SATURATION PROSTATE\nBIOPSY', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1535', 'PROSTATE GLAND, VARIOUS LESIONS, TRANS-RECTAL\nULTRASOUND (TRUS)', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.1536', 'PROSTATE GLAND, VARIOUS LESIONS, TRANS-RECTAL\nULTRASOUND (TRUS) GUIDED BIOPSY', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1537', 'PROSTATE GLAND, VARIOUS LESIONS, TRANSURETHRAL\nRESECTION OF PROSTATE (TURP) (LESS THAN 30 GM)', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1538', 'PROSTATE GLAND, VARIOUS LESIONS, TRANSURETHRAL\nRESECTION OF PROSTATE (TURP) (MORE THAN 30 GM)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1539', 'RADICAL CHOLEDOCHECTOMY WITH LIVER RESECTION (LESS\nTHAN 4 SEGMENTS)', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.1540', 'RADICAL CHOLEDOCHECTOMY WITH LIVER RESECTIONS (4 OR\nMORE SEGMENTS) OR WITH MULTIPLE HEPATICOENTERIC ANASTOMOSIS', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.1541', 'RADIOTHERAPY, ENDOLUMINAL BRACHYTHERAPY: OESOPHAGUS, NASOPHARYNGEAL CARCINOMA (NPC),\nHEPATOBILIARY, CARDIAC, LUNG, OTHERS', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1542', 'RADIOTHERAPY, INTERSTITIAL BRACHYTHERAPY\n(WITH/WITHOUT OPEN SURGERY)', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1543', 'RADIOTHERAPY, INTERSTITIAL BRACHYTHERAPY (WITHOUT\nOPEN SURGERY): PROSTATE', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1544', 'RADIOTHERAPY, INTRACAVITARY BRACHYTHERAPY (MULTI-\nCHANNEL): CERVIX, OTHERS', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1545', 'RADIOTHERAPY, INTRACAVITARY BRACHYTHERAPY (SINGLE\nCHANNEL): ENDOMETRIUM, OTHERS', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1546', 'RADIOTHERAPY, INTRA-OPERATIVE RADIOTHERAPY (ELECTRONS\nOR KILOVOLTAGE): BREAST, SARCOMA, UPPER GI, LOWER GI, OTHER SITES', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1547', 'RADIUS (HEAD), VARIOUS LESIONS, EXCISION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1548', 'RADIUS AND ULNA, FRACTURE/DISLOCATION, NON\nUNION/DELAYED UNION BONE GRAFTING AND RE- FIXATION', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1549', 'RADIUS AND ULNA, FRACTURE/DISLOCATION, NON\nUNION/DELAYED UNION BONE GRAFTING ONLY', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1550', 'RADIUS AND ULNA, FRACTURE/DISLOCATION, OPEN REDUCTION AND INTERNAL FIXATION WITH OR WITHOUT BONE GRAFTING', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1551', 'RECTUM, HIRSCHSPRUNG\'S DISEASE, ANAL SPHINCTEROTOMY', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1552', 'RECTUM, HIRSCHSPRUNG\'S DISEASE, RECTAL MYECTOMY', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1553', 'RECTUM, HIRSCHSPRUNG\'S DISEASE, RECTO- SIGMOIDECTOMY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1554', 'RECTUM, PERINEAL RECTOSIGMOIDECTOMY FOR RECTAL\nPROLAPSE', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1555', 'RECTUM, RESECTION - RECTOPEXY FOR RECTAL PROLAPSE\n(OPEN/MIS)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1556', 'RECTUM, STARR - STAPLED HEMORROIDECTOMY', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1557', 'RECTUM, STRICTURE, LASER TREATMENT', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.1558', 'RECTUM, TUMOR, ANTERIOR RESECTION/ABDOMINO- PERINEAL RESECTION WITH SALPINGO-OOPHORECTOMY AND\nTOTAL HYSTERECTOMY', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.1559', 'RECTUM, TUMOR, LASER VAPORISATION/ENDOSCOPIC\nFULGURATION', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1560', 'RECTUM, ULTRA-LOW ANTERIOR RESECTION (TOTAL\nMESORECTAL EXCISION) WITH/WITHOUT PLND', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.1561', 'RECTUM, VARIOUS LESIONS, ABDOMINO-PERINEAL PULL\nTHROUGH RESECTION WITH COLO-ANAL ANASTOMOSIS', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1562', 'RECTUM, VARIOUS LESIONS, HARTMANN\'S PROCEDURE', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1563', 'RECTUM, VARIOUS LESIONS, TRANSANAL REMOVAL WITH\nBIOPSY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1564', 'RETINA, DETACHMENT (COMPLEX), OPERATION (MORE THAN\nONE PLOMB/ENCIRCLAGE)10', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1565', 'RETINA, DETACHMENT, REMOVAL OF ENCIRCLING SILICONE\nBAND', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1566', 'RETINA, DETACHMENT, RESECTION/BUCKLING\nOPERATION/REVISION OPERATION WITH SINGLE PLOMB', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1567', 'RETINA, LASER RETINOPEXY, COMPLEX (SUBRETINAL FLUID,\nVITREOUS HAEMORRHAGE, MULTIPLE TEARS)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1568', 'RETINA, PAN RETINAL PHOTOCOAGULATION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1569', 'RETINA, PNEUMATIC RETINOPEXY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1570', 'RETINA, ROP (RETINOPATHY OF PREMATURITY) LASER\nPHOTOCOAGULATION', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1571', 'RETINA, TEARS, CRYOTHERAPY OR PHOTOCOAGULATION\n(LASER) (BILATERAL)', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1572', 'RETINA, TEARS, DIATHERMY/CRYOTHERAPY (UNILATERAL)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1573', 'RETINA, TEARS, PHOTOCOAGULATION (LASER) (UNILATERAL)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1574', 'RETINA, TRANS PARS PLANA POSTERIOR CAPSULECTOMY', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1575', 'RETINA/MACULA, GRID AND FOCAL LASER\nPHOTOCOAGULATION', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1576', 'SACRAL NERVE STIMULATION', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1577', 'SACRAL ROOT BLOCK, NEUROLYTIC, RADIOFREQUENCY,\nIMAGING GUIDED, MORE THAN 2', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1578', 'SACRAL ROOT BLOCK, NEUROLYTIC, RADIOFREQUENCY,\nIMAGING GUIDED, UP TO 2', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1579', 'SACRO-ILIAC JOINT, RADIOFREQUENCY, BILATERAL', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1580', 'SACRO-ILIAC JOINT, RADIOFREQUENCY, UNILATERAL', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1581', 'SACRO-ILIAC JOINT, SACROILIAC JOINT BLOCK (INJECTION OF\nANAESTHETIC, THERAPEUTIC SUBSTANCE), BILATERAL', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1582', 'SACRO-ILIAC JOINT, SACROILIAC JOINT BLOCK (INJECTION OF ANAESTHETIC, THERAPEUTIC\nSUBSTANCE), UNILATERAL', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1583', 'SACRUM & COCCYX, PILONIDAL SINUS/CYST, EXCISION WITH\nBIOPSY', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1584', 'SACRUM & COCCYX, TUMOR, EXCISION WITH BIOPSY', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1585', 'SACRUM, FRACTURE, OPEN REDUCTION AND INTERNAL\nFIXATION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1586', 'SACRUM, GANGLION IMPAR, BLOCK, ANAESTHETIC', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1587', 'SACRUM, GANGLION IMPAR, BLOCK, RADIOFREQUENCY,\nNEUROLYTIC', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1588', 'SCAPULA, COMPLEX SCAPULAR FRACTURE (WITH/WITHOUT GLENOHUMERAL JOINT INVOLVEMENT),\nOPEN REDUCTION AND INTERNAL FIXATION (ORIF)', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.1589', 'SCAPULA, SCAPULAR FRACTURE, OPEN REDUCTION AND\nINTERNAL FIXATION (ORIF) WITH PLATING', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1590', 'SCIATIC NERVE, BLOCK', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.1591', 'SCROTUM, EXPLORATION, DETORSION OF TESTIS AND\nBILATERAL TESTES FIXATION', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1592', 'SCROTUM, HYDROCELE/VARICOCELE (BILATERAL), EXCISION', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1593', 'SCROTUM, HYDROCELE/VARICOCELE (UNILATERAL), EXCISION', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1594', 'SHOULDER FRACTURE/DISLOCATION, OPEN REDUCTION AND\nINTERNAL FIXATION (2 PART FRACTURE)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1595', 'SHOULDER FRACTURE/DISLOCATION, OPEN REDUCTION AND\nINTERNAL FIXATION (3 OR MORE PART FRACTURE)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1596', 'SHOULDER, ACROMIOCLAVICULAR JOINT\nSTABILISATION/RECONSTRUCTION', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.1597', 'SHOULDER, DEFORMITIES, CORRECTIVE SURGERY, OSTEOTOMY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1598', 'SHOULDER, SHOULDER SOFT TISSUE INJURY, MIS/OPEN BANKART OR SUPERIOR LABRUM FROM ANTERIOR TO\nPOSTERIOR (SLAP) REPAIR', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1599', 'SHOULDER, SHOULDER SOFT TISSUE INJURY, MIS/OPEN BANKART REPAIR WITH SUPERIOR LABRUM FROM ANTERIOR TO POSTERIOR (SLAP) REPAIR/ROTATOR\nCUFF REPAIR', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.1600', 'SHOULDER, SHOULDER SOFT TISSUE INJURY, MIS/OPEN\nDECOMPRESSION ALONE', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1601', 'SHOULDER, SHOULDER SOFT TISSUE INJURY, MIS/OPEN\nDECOMPRESSION WITH CUFF REPAIR', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.1602', 'SHOULDER, SHOULDER SOFT TISSUE INJURY, MIS/OPEN\nDECOMPRESSION WITH CUFF REPAIR & EXCISION OF DISTAL CLAVICLE', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1603', 'SHOULDER, SHOULDER SOFT TISSUE INJURY, MIS/OPEN\nDECOMPRESSION WITH EXCISION OF DISTAL CLAVICLE', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1604', 'SHOULDER, SHOULDER SOFT TISSUE INJURY, SHOULDER RECONSTRUCTION (EG, BRISTOW/LATARJET\nPROCEDURE)', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.1605', 'SHOULDER, THERAPEUTIC ARTHROSCOPY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1606', 'SHOULDER, VARIOUS LESIONS, HEMIARTHROPLASTY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1607', 'SHOULDER, VARIOUS LESIONS, PRIMARY TOTAL JOINT REPLACEMENT WITH AUGMENTATION, REQUIRING EXTRA\nIMPLANTS OR BONE GRAFTS, OPEN/MIS/NAVIGATED', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1608', 'SHOULDER, VARIOUS LESIONS, PRIMARY TOTAL JOINT\nREPLACEMENT, OPEN/MIS/NAVIGATED', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.1609', 'SHOULDER, VARIOUS LESIONS, REVISION TOTAL JOINT\nREPLACEMENT,OPEN/MIS/NAVIGATED', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.1610', 'SINAL-NASAL, ENDOSCOPIC HEMOSTASIS (COMPLEX, UNDER\nGENERAL ANAESTHESIA)', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1611', 'SINUSES FRONTAL, VARIOUS LESIONS, CATHETERISATION', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.1612', 'SINUSES FRONTAL, VARIOUS LESIONS, RADICAL OBLITERATION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1613', 'SINUSES FRONTAL, VARIOUS LESIONS, TREPHINE', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1614', 'SINUSES, ETHMOIDAL, VARIOUS LESIONS, EXTERNAL\nOPERATION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1615', 'SINUSES, NASAL, FOREIGN BODY/OTHER LESIONS, INTRANASAL\nOPERATION/REMOVAL OF FOREIGN BODY', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1616', 'SINUSES, NASAL, HEMATOMA/ABSCESS, ANTRAL DRAINAGE', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1617', 'SINUSES, NASAL, INFECTION, FUNCTIONAL SINUSCOPIC\nDRAINAGE OF ETHMOIDAL/ MAXILLARY SINUSES', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1618', 'SINUSES, NASAL, INFECTION, FUNCTIONAL SINUSCOPIC\nETHMOIDECTOMY (BILATERAL)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1619', 'SINUSES, NASAL, INFECTION, FUNCTIONAL SINUSCOPIC\nETHMOIDECTOMY (UNILATERAL)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1620', 'SINUSES, NASAL, ORO-ANTRAL FISTULA, CLOSURE', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1621', 'SINUSES, NASAL, VARIOUS LESIONS OF ANTRUM, PROOF\nPUNCTURE AND/OR LAVAGE', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1622', 'SINUSES, NASAL, VARIOUS LESIONS, ANTROSTOMY (RADICAL)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1623', 'SINUSES, NASAL, VARIOUS LESIONS, FRONTO-\nETHMOIDECTOMY (RADICAL) WITH OSTEOPLASTIC FLAP', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1624', 'SINUSES, NASAL, VARIOUS LESIONS, FRONTO-NASAL\nETHMOIDECTOMY WITH/WITHOUT SPHENOIDOTOMY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1625', 'SINUSES, NASAL, VARIOUS LESIONS, INTRANASAL OPERATION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1626', 'SINUSES, SPHENOIDAL, VARIOUS LESIONS, INTRANASAL\nOPERATION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1627', 'SKIN & SUBCUTANEOUS, PRE-SEPTAL/PERI-ORBITAL\nDERMOID/LESION, EXCISION', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1628', 'SKIN & SUBCUTANEOUS, SCAR REVISION, FACE & NECK (< 3CM)', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.1629', 'SKIN (UPPER LIMB), OPEN WOUND, MAJOR DESLOUGHING', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1630', 'SKIN AND MUCOUS MEMBRANE, VARIOUS LESIONS, EXCISION\nBIOPSY', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.1631', 'SKIN AND SUBCUTANEOUS TISSUE (EAR/NOSE/EYELID/FACE),\nCOMPLEX LACERATIONS, REPAIR', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1632', 'SKIN AND SUBCUTANEOUS TISSUE (FACE AND NECK), SCAR OF\nMORE THAN 3CM, REVISION', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1633', 'SKIN AND SUBCUTANEOUS TISSUE, ARTEIOVENOUS MALFORMATION/HEMANGIOMA/LYMPHANGIOMA (LARGE AND DEEP-SEATED), EXCISION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1634', 'SKIN AND SUBCUTANEOUS TISSUE, ARTERIOVENOUS\nMALFORMATION/HEMANGIOMA/LYMPHANGIOMA (EXTENSIVE AND COMPLEX), EXCISION', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.1635', 'SKIN AND SUBCUTANEOUS TISSUE, ARTERIOVENOUS\nMALFORMATION/HEMANGIOMA/LYMPHANGIOMA <3CM EXCLUDING FACE, HANDS, GENITALIA, EXCISION', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1636', 'SKIN AND SUBCUTANEOUS TISSUE, ARTERIOVENOUS\nMALFORMATION/HEMANGIOMA/LYMPHANGIOMA >3CM EXCLUDING FACE, HANDS, GENITALIA, EXCISION', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1637', 'SKIN AND SUBCUTANEOUS TISSUE, ARTERIOVENOUS\nMALFORMATION/HEMANGIOMA/LYMPHANGIOMA ON FACE, HANDS, GENITALIA, EXCISION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1638', 'SKIN AND SUBCUTANEOUS TISSUE, BURNS, ESCHAROTOMY\n(EXTENSIVE)', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1639', 'SKIN AND SUBCUTANEOUS TISSUE, BURNS, ESCHAROTOMY\n(LIMITED)', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.1640', 'SKIN AND SUBCUTANEOUS TISSUE, BURNS, EXCISION AND\nMAJOR FLAP REPAIR', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1641', 'SKIN AND SUBCUTANEOUS TISSUE, BURNS, EXCISION AND\nMAJOR FULL THICKNESS GRAFT', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1642', 'SKIN AND SUBCUTANEOUS TISSUE, BURNS, EXCISION AND\nSMALL FULL THICKNESS GRAFT', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1643', 'SKIN AND SUBCUTANEOUS TISSUE, DEEP>3CM/EXTENSIVE CONTAMINATED WOUND,\nDEBRIDEMENT', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1644', 'SKIN AND SUBCUTANEOUS TISSUE, DEFECT (DEEP), DERMOFAT/FASCIA GRAFT (INCLUDING\nTRANSPLANT/MUSCLE FLAP)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1645', 'SKIN AND SUBCUTANEOUS TISSUE, DEFECT (DEEP), DIRECT FLAP (CROSS ARM/RADIAL FORE ARM/ABDOMINAL/SIMILAR)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1646', 'SKIN AND SUBCUTANEOUS TISSUE, DEFECT (DEEP), DIRECT FLAP\nREPAIR (CROSS LEG)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1647', 'SKIN AND SUBCUTANEOUS TISSUE, DEFECT (DEEP), FREE FLAPS', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.1648', 'SKIN AND SUBCUTANEOUS TISSUE, DEFECT (DEEP), FREE GRAFT (SPLIT SKIN GRAFT - EXTENSIVE/INLAY GRAFT USING A MOULD)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1649', 'SKIN AND SUBCUTANEOUS TISSUE, DEFECT (DEEP), STAGED\nDISTANT FLAP (DIVISION)', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1650', 'SKIN AND SUBCUTANEOUS TISSUE, DEFECT (MULTIPLE DIGITS),\nFREE FULL THICKNESS GRAFT', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1651', 'SKIN AND SUBCUTANEOUS TISSUE, DEFECT (MULTIPLE DIGITS),\nSTAGED LOCAL FLAP (DIVISION)', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1652', 'SKIN AND SUBCUTANEOUS TISSUE, DEFECT (SINGLE DIGIT), FREE\nFULL THICKNESS GRAFT', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1653', 'SKIN AND SUBCUTANEOUS TISSUE, DEFECT, DIRECT FLAP\n(CROSS FINGER/SIMILAR FLAPS)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1654', 'SKIN AND SUBCUTANEOUS TISSUE, DEFECT, FREE GRAFT (SPLIT\nSKIN GRAFT/PINCH GRAFTS UNDER 1/2%)', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1655', 'SKIN AND SUBCUTANEOUS TISSUE, DEFECT, FREE GRAFTS (SPLIT\nSKIN GRAFT 1/2 TO LESS THAN 2%)', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1656', 'SKIN AND SUBCUTANEOUS TISSUE, DEFECT, FREE GRAFTS (SPLIT\nSKIN GRAFT 2 TO LESS THAN 5%)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1657', 'SKIN AND SUBCUTANEOUS TISSUE, DEFECT, FREE GRAFTS (SPLIT\nSKIN GRAFT 5 TO 10%)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1658', 'SKIN AND SUBCUTANEOUS TISSUE, DEFECT, FREE GRAFTS (SPLIT\nSKIN GRAFT MORE THAN 10%)', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.1659', 'SKIN AND SUBCUTANEOUS TISSUE, DEFECT, LOCAL FLAP TO MULTIPLE DIGITS (CROSS\nFINGER/THENAR/FLAG/ROTATION FLAP)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1660', 'SKIN AND SUBCUTANEOUS TISSUE, DEFECT, SINGLE STAGE\nLOCAL FLAP (COMPLICATED/LARGE)', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.1661', 'SKIN AND SUBCUTANEOUS TISSUE, DEFECT, SINGLE STAGE\nLOCAL FLAP (SIMPLE/SMALL)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1662', 'SKIN AND SUBCUTANEOUS TISSUE, DEFECT, STAGED LOCAL\nFLAP(DIVISION)', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1663', 'SKIN AND SUBCUTANEOUS TISSUE, FOREIGN BODY\n(SUBCUTANEOUS), REMOVAL', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.1664', 'SKIN AND SUBCUTANEOUS TISSUE, HEMATOMA\n/CARBUNCLE CELLULITIS/SIMILAR LESION>3CM, SAUCERISATION/INCISION WITH DRAINAGE', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1665', 'SKIN AND SUBCUTANEOUS TISSUE, HEMATOMA,\nABSCESS/CELLULITIS/SIMILAR LESION<3CM, SAUCERISATION/INCISION & DRAINAGE', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.1666', 'SKIN AND SUBCUTANEOUS TISSUE, LACERATION (SUPERFICIAL)\nOF LESS THAN 7CM, REPAIR', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1667', 'SKIN AND SUBCUTANEOUS TISSUE, LACERATION (SUPERFICIAL)\nOF MORE THAN 7CM, REPAIR', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1668', 'SKIN AND SUBCUTANEOUS TISSUE, LACERATIONS (DEEP\n>3CM/MULTIPLE) LACERATIONS, REPAIR/TOILET & SUTURE, WITH/WITHOUT DEBRIDEMENT', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1669', 'SKIN AND SUBCUTANEOUS TISSUE, NEUROFIBROMATOSIS OF\nFACE AND NECK, EXCISION (LARGE)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1670', 'SKIN AND SUBCUTANEOUS TISSUE, NEUROFIBROMATOSIS OF\nFACE AND NECK, EXCISION (MODERATE)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1671', 'SKIN AND SUBCUTANEOUS TISSUE, NEUROFIBROMATOSIS OF FACE AND NECK, EXCISION\n(LARGE >3CM AND COMPLICATED/MULTIPLE)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1672', 'SKIN AND SUBCUTANEOUS TISSUE, NEUROFIBROMATOSIS OF FACE AND NECK, EXCISION\n(SMALL<3CM)', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1673', 'SKIN AND SUBCUTANEOUS TISSUE, SINUS (DEEP>3CM),\nEXCISION WITH/WITHOUT BIOPSY', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1674', 'SKIN AND SUBCUTANEOUS TISSUE, SINUS (SHALLOW<3CM),\nEXCISION WITH/WITHOUT BIOPSY', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1675', 'SKIN AND SUBCUTANEOUS TISSUE, TUMOR/CYST/ULCER/ SCAR, EXCISION/PUNCH/SHAVE BIOPSY, LESION SIZE UP\nTO AND INCLUDING 15MM IN DIAMETER', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.1676', 'SKIN AND SUBCUTANEOUS TISSUE, TUMOR/CYST/ULCER/SCAR, EXCISION BIOPSY, LESION SIZE MORE THAN 15MM IN DIAMETER', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1677', 'SKIN AND SUBCUTANEOUS TISSUE, TUMOR/CYST/ULCER/SCAR, EXCISION BIOPSY, REMOVAL\nOF 2 OR MORE OR RECURRENT OR COMPLICATED\n(ADHERENT), EXCISION', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1678', 'SKIN AND SUBCUTANEOUS TISSUE, TUMOUR (MALIGNANT), WIDE EXCISION AND RECONSTRUCTION\nAND LOCAL FLAP/SKIN GRAFT', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1679', 'SKIN AND SUBCUTANEOUS TISSUE, TUMOUR (MALIGNANT), WIDE EXCISION WITH IMMEDIATE BLOCK DISSECTION', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1680', 'SKIN AND SUBCUTANEOUS TISSUE, WOUND (LARGE>3CM),\nSECONDARY SUTURE', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1681', 'SKIN AND SUBCUTANEOUS TISSUE, WOUND, DEBRIDEMENT\n<3CM', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.1682', 'SKIN CANCER, MOHS MICROGRAPHIC SURGERY WITH\nRECONSTRUCTION/GRAFT/FLAP ( 5 TISSUE BLOCKS)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1684', 'SKIN CANCER, MOHS MICROGRAPHIC SURGERY WITHOUT\nRECONSTRUCTION', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1685', 'SKIN, ANGIOMA, CAUTERISATION/INJECTION', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.1686', 'SKIN, BURNS (2% TO 5%), EXCISION', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1687', 'SKIN, BURNS (LESS THAN 2%), EXCISION', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1688', 'SKIN, BURNS (MORE THAN 10%), DRESSING', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1689', 'SKIN, BURNS (MORE THAN 10%), EXCISION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1690', 'SKIN, BURNS (MORE THAN 5% TO 10%) EXCISION', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1691', 'SKIN, DEFECT, DISTANT SKIN FLAPS', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1692', 'SKIN, DEFECT, NEUROVASCULAR ISLAND FLAP', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1693', 'SKIN, KERATOSES/WARTS/TAGS/SIMILAR LESIONS, EXCISION (6 -\n10 LESIONS)', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1694', 'SKIN, KERATOSES/WARTS/TAGS/SIMILAR LESIONS, EXCISION\n(MORE THAN10 LESIONS)', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1695', 'SKIN, KERATOSES/WARTS/TAGS/SIMILAR LESIONS, EXCISION\n(NOT MORE THAN 5 LESIONS)', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.1696', 'SKIN, NEUROMAS/HEMANGIOMAS, EXCISION/VAPORISATION BY LASER AND OTHER\nABLATIVE MODALITIES, THERAPEUTIC', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.1697', 'SKIN, PLANTAR WART, EXCISION OR VAPORISATION BY LASER', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.1698', 'SKIN, PLANTAR WARTS (MULTIPLE), EXCISION', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1699', 'SKIN, PRE-MALIGNANT LESIONS, EXCISION/VAPORISATION BY LASER AND OTHER\nABLATIVE MODALITIES, THERAPEUTIC, UP TO 4 SESSIONS IN 12 MONTHS*\n*TO PROVIDE HISTOPATHOLOGY REPORT IF AUDITED', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1700', 'SKIN, SCAR (EXTENSIVE), REVISION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1701', 'SKIN, SCAR, REVISION WITH Z-PLASTY', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1702', 'SKIN, SCAR/VARIOUS LESION (SINGLE), REMOVAL OF TISSUE\nEXPANDER/PROSTHESIS AND REVISION OF SCAR', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1703', 'SKIN, SCARS/LESIONS (MULTIPLE), REMOVAL OF TISSUE\nEXPANDER/PROSTHESIS AND REVISION/EXCISION OF SCARS', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1704', 'SKIN, SUPERFICIAL NASAL DERMOID, EXCISION', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1705', 'SKIN, SURGICAL TREATMENT FOR VITILIGO (INVOLVING NON-\nCULTURED CELLULAR GRAFTING) (<20 SQ CM)', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1706', 'SKIN, SURGICAL TREATMENT FOR VITILIGO (INVOLVING NON-\nCULTURED CELLULAR GRAFTING) (>40 SQ CM)', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1707', 'SKIN, SURGICAL TREATMENT FOR VITILIGO (INVOLVING NON-\nCULTURED CELLULAR GRAFTING) (20-40 SQ CM)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1708', 'SKIN, TATTOO (1% TO 2%), LASER EXCISION', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1709', 'SKIN, TATTOO (LESS THAN 1%), LASER EXCISION', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.1710', 'SKIN, TATTOO (MULTIPLE/MORE THAN 2%), LASER EXCISION', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1711', 'SKIN, TATTOO, REPEAT LASER EXCISION', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.1712', 'SKIN, VARIOUS LESIONS OF FACE (2 TO 3), EXCISION\nBIOPSY', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1713', 'SKIN, VARIOUS LESIONS OF FACE (4 AND ABOVE), EXCISION\nBIOPSY', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1714', 'SKIN, VARIOUS LESIONS OF FACE (SINGLE), EXCISION/PUNCH/\nSHAVE BIOPSY', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.1715', 'SKIN, VARIOUS LESIONS, ABRASIVE THERAPY (EXTENSIVE)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1716', 'SKIN, VARIOUS LESIONS, ABRASIVE THERAPY (LIMITED)', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1717', 'SKIN, VARIOUS LESIONS, INSERTION OF TISSUE EXPANDER\n(MULTIPLE)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1718', 'SKIN, VARIOUS LESIONS, INSERTION OF TISSUE EXPANDER\n(SINGLE)', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1719', 'SKIN, VARIOUS LESIONS, TRIAL DERMABRASION', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.1720', 'SKIN, WRINKLES, PARTIAL RHYTIDECTOMY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1721', 'SKIN, WRINKLES, TOTAL RHYTIDECTOMY', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1722', 'SKULL, BASE, ENDOSCOPIC OR OPEN RESECTION OF SKULL BASE SOFT TISSUE TUMOURS WITH NO BONE\nINVOLVEMENT', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1723', 'SKULL, BASE, ENDOSCOPIC OR OPEN RESECTION OF SKULL BASE SOFT TISSUE TUMOURS WITH RESECTION OF BONE AND DURA (INTRADURAL, INCLUDING CLIVUS,\nPARASELLAR AREA OR CAVERNOUS SINUS) WITH SKULL\nBASE RECONSTRUCTION', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.1724', 'SKULL, BASE, ENDOSCOPIC OR OPEN RESECTION OF SKULL BASE SOFT TISSUE TUMOURS, (INCLUDING NASOPHARYNGECTOMY) WITH RESECTION OF BONE AND PRESERVATION OF DURA\n(EXTRADURAL)', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.1725', 'SKULL, BURR HOLE, INSERTION OF INTRACRANIAL PRESSURE\n(ICP) MONITOR', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1726', 'SKULL, CHIARI MALFORMATION/SYRINGOMYELIA, POSTERIOR\nFOSSA DECOMPRESSION WITH DURAPLASTY', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.1727', 'SKULL, COMPOUND FRACTURE WITH DURAL PENETRATION AND\nBRAIN DAMAGE, OPERATION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1728', 'SKULL, COMPOUND FRACTURE WITHOUT DURAL PENETRATION,\nOPERATION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1729', 'SKULL, CRANIOSTENOSIS (MULTIPLE SUTURE), OPERATION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1730', 'SKULL, CRANIOSTENOSIS (SINGLE SUTURE), OPERATION', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.1731', 'SKULL, CRANIOSTENOSIS, OPERATION, CRANIOFACIAL\nRECONSTRUCTION', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.1732', 'SKULL, DEFECT, CRANIOPLASTY (LARGE)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1733', 'SKULL, DEFECT, CRANIOPLASTY (SMALL)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1734', 'SKULL, DEPRESSED/COMMINUTED FRACTURE, ELEVATION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1735', 'SKULL, FRACTURE WITH RHINORRHOEA/OTORRHOEA,\nCRANIOPLASTY AND REPAIR', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1736', 'SKULL, INTRACRANIAL HEMORRHAGE, BURR-HOLE\nCRANIOTOMY, (UNILATERAL)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1737', 'SKULL, INTRACRANIAL HEMORRHAGE, BURR-HOLE\nCRANIOTOMY, BILATERAL', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1738', 'SKULL, INTRACRANIAL HEMORRHAGE, OSTEOPLASTIC\nCRANIOTOMY/EXTENSIVE CRANIECTOMY, BILATERAL', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.1739', 'SKULL, INTRACRANIAL HEMORRHAGE, OSTEOPLASTIC\nCRANIOTOMY/EXTENSIVE CRANIECTOMY, UNILATERAL', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1740', 'SKULL, OSTEOMYELITIS, CRANIECTOMY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1741', 'SKULL/FACE, MALIGNANT TUMOUR/TRAUMA, CRANIOFACIAL\nRESECTION', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.1742', 'SOFT TISSUE (LOWER LIMB), CONTRACTURE, MAJOR RELEASE', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1743', 'SOFT TISSUE (LOWER LIMB), CONTRACTURE, MINOR RELEASE', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1744', 'SOFT TISSUE (LOWER LIMB), OPEN WOUND/INFECTION, MAJOR\nDESLOUGHING', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1745', 'SOFT TISSUE (LOWER LIMB), SMALL TUMORS (BENIGN),\nEXCISION BIOPSY UNDER GENERAL ANESTHESIA', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1746', 'SOFT TISSUE (LOWER LIMB), TUMOR/TUMOR-LIKE LESIONS,\nMARGINAL EXCISION', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1747', 'SOFT TISSUE (LOWER LIMB), TUMORS (BENIGN), WIDE EXCISION\nBIOPSY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1748', 'SOFT TISSUE (LOWER LIMB), TUMORS (MALIGNANT), RADICAL\nEXCISION BIOPSY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1749', 'SOFT TISSUE (LOWER LIMB), VARIOUS LESIONS, MAJOR RELEASE', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1750', 'SOFT TISSUE (LOWER LIMB), VARIOUS LESIONS, MINOR RELEASE', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1751', 'SOFT TISSUE (PALMAR SPACE), ABSCESS, DRAINAGE', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1752', 'SOFT TISSUE (UPPER LIMB), TUMORS (BENIGN), MAJOR\nEXCISION BIOPSY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1753', 'SOFT TISSUE (UPPER LIMB), TUMORS (MALIGNANT), RADICAL\nEXCISION BIOPSY', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1754', 'SOFT TISSUE (UPPER LIMB), TUMORS (MALIGNANT), WIDE\nEXCISION BIOPSY', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1755', 'SOFT TISSUE, TUMOR (MALIGNANT), MAJOR RESECTION AND\nRECONSTRUCTION (MICROSURGICAL)', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.1756', 'SOFT TISSUE, TUMOR (MALIGNANT), RADICAL EXCISION BIOPSY\n>7CM OTHER THAN UPPER/LOWER LIMBS', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1757', 'SOFT TISSUE, TUMOR (MALIGNANT), WIDE EXCISION BIOPSY\n<7CM OTHER THAN UPPER/LOWER LIMBS', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1758', 'SPERMATIC CORD, SPERMATOCELE/EPIDIDYMAL CYST, EXCISION', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1759', 'SPERMATIC CORD, VARIOUS LESIONS, EPIDIDYMECTOMY', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1760', 'SPHENOPALATINE GANGLION - BLOCK, NEUROLYTIC', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1761', 'SPHENOPALATINE GANGLION, BLOCK, ANAESTHETIC', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1762', 'SPINAL CORD, ANEURYSM/ARTERIO-VENOUS MALFORMATION\nCLIPPING/ EXCISION', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.1763', 'SPINAL CORD, STIMULATION/MODULATION,\nOPEN/CLOSED/PERCUTANEOUS', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1764', 'SPINAL CORD, TUMOURS, LAMINECTOMY AND EXCISION\n(EXTRADURAL)', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1765', 'SPINAL CORD, TUMOURS, LAMINECTOMY AND EXCISION\n(INTRADURAL EXTRAMEDULLARY)', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.1766', 'SPINAL CORD, TUMOURS, LAMINECTOMY AND EXCISION\n(INTRADURAL INTRAMEDULLARY)', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.1767', 'SPINAL- IMPLANT OF ELECTRICAL PUMP DEVICE', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1768', 'SPINAL/EPIDURAL REMOVAL, REVISION OF IMPLANTED\nRESERVOIR DEVICE (E.G. PAR)', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1769', 'SPINAL/EPIDURAL, EPIDUROSCOPY', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1770', 'SPINE (EXCLUDING CERVICAL SPINE), VARIOUS LESIONS, ANTERIOR CORPECTOMY AND FUSION WITH/WITHOUT\nINSTRUMENTATION (SINGLE VERTEBRAE)', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.1771', 'SPINE (EXCLUDING CERVICAL SPINE), VARIOUS LESIONS, ANTERIOR CORPECTOMY AND FUSION WITH/WITHOUT\nINSTRUMENTATION (TWO OR MORE VERTEBRA)', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.1772', 'SPINE (EXCLUDING CERVICAL SPINE), VARIOUS LESIONS, INTERBODY FUSION (MULTIPLE SEGMENTS) WITH\nANTERIOR/POSTERIOR INSTRUMENTATION', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.1773', 'SPINE (EXCLUDING CERVICAL SPINE), VARIOUS LESIONS, INTERBODY FUSION (MULTIPLE SEGMENTS) WITHOUT\nANTERIOR/POSTERIOR INSTRUMENTATION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1774', 'SPINE (EXCLUDING CERVICAL SPINE), VARIOUS LESIONS, INTERBODY FUSION (SINGLE SEGMENT) WITH\nANTERIOR/POSTERIOR INSTRUMENTATION', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.1775', 'SPINE (EXCLUDING CERVICAL SPINE), VARIOUS LESIONS, INTERBODY FUSION (SINGLE SEGMENT) WITHOUT\nANTERIOR/POSTERIOR INSTRUMENTATION', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.1776', 'SPINE (EXCLUDING CERVICAL SPINE), VARIOUS LESIONS, POSTERIOR DECOMPRESSION AND/OR DISCECTOMY WITH INSERTION OF INTERSPINOUS DEVICE (1\nSEGMENT) WITHOUT INSTRUMENTED FUSION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1777', 'SPINE (EXCLUDING CERVICAL SPINE), VARIOUS LESIONS, POSTERIOR DECOMPRESSION AND/OR DISCECTOMY WITH INSERTION OF INTERSPINOUS DEVICE (2 OR MORE SEGMENTS)\nWITHOUT INSTRUMENTED FUSION', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.1778', 'SPINE (EXCLUDING CERVICAL SPINE), VARIOUS LESIONS, POSTERIOR DECOMPRESSION AND/OR DISCECTOMY WITHOUT INSERTION OF INTERSPINOUS DEVICE (1\nSEGMENT) WITHOUT INSTRUMENTED FUSION', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.1779', 'SPINE (EXCLUDING CERVICAL SPINE), VARIOUS LESIONS, POSTERIOR DECOMPRESSION AND/OR DISCECTOMY WITHOUT INSERTION OF INTERSPINOUS DEVICE (2 OR MORE SEGMENTS)\nWITHOUT INSTRUMENTED FUSION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1780', 'SPINE, CERVICAL, EPIDURAL ADHESIOLYSIS, MULTIPLE CATHETER', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.1781', 'SPINE, CERVICAL, EPIDURAL ADHESIOLYSIS, SINGLE CATHETER', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1782', 'SPINE, CERVICAL/THORACIC, INJECTION, EPIDURAL, WITHOUT\nOTHER PROCEDURES', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.1783', 'SPINE, CERVICAL/THORACIC, INJECTION, INTRATHECAL\nWITHOUT OTHER PROCEDURES', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1784', 'SPINE, DEFORMITIES, THREE-COLUMN OSTEOTOMY (SUCH AS PSO, VCR, TOTAL SPONDYLECTOMY OR THEIR EQUIVALENT)', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.1785', 'SPINE, DISCOGRAM (1 TO 2 LEVELS)', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1786', 'SPINE, DISCOGRAM (MORE THAN 2 LEVELS)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1787', 'SPINE, FACET JOINT BLOCK (INJECTION OF ANAESTHETIC OR\nTHERAPEUTIC SUBSTANCE), MORE THAN 3 JOINTS', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1788', 'SPINE, FACET JOINT BLOCK (INJECTION OF ANAESTHETIC OR THERAPEUTIC SUBSTANCE), UP TO 3\nJOINTS', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1789', 'SPINE, FACET JOINT, RADIOFREQUENCY, MORE THAN 3\nJOINTS', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1790', 'SPINE, FACET JOINT, RADIOFREQUENCY, UP TO 3 JOINTS', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1791', 'SPINE, FRACTURE-DISLOCATION, OPEN REDUCTION AND\nSTABILISATION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1792', 'SPINE, IMPLANTATION OF PORT E.G. PORT-A-CATH', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1793', 'SPINE, INFECTION, ANTERIOR DRAINAGE AND DEBRIDEMENT\nWITHOUT FUSION OR OTHER PROCEDURES', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1794', 'SPINE, INFECTION, ANTERIOR DRAINAGE, DEBRIDEMENT AND REMOVAL OF IMPLANTS WITHOUT FUSION OR\nOTHER PROCEDURES', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.1795', 'SPINE, INFECTION, POSTERIOR DRAINAGE AND DEBRIDEMENT WITHOUT FUSION OR OTHER\nPROCEDURES', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1796', 'SPINE, INFECTION, POSTERIOR DRAINAGE, DEBRIDEMENT AND REMOVAL OF IMPLANTS, WITHOUT FUSION OR OTHER\nPROCEDURES', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1797', 'SPINE, LUMBAR/SACRAL/CAUDAL, INJECTION, EPIDURAL,\nWITHOUT OTHER PROCEDURES', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.1798', 'SPINE, LUMBAR/SACRAL/CAUDAL, INJECTION, INTRATHECAL\nWITHOUT OTHER PROCEDURES', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1799', 'SPINE, PERCUTANEOUS DISC ABLATION, 2 OR MORE LEVELS (EG. IDET - INTRADISCAL ELECTROTHERMAL ANNULOPLASTY)', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.1800', 'SPINE, PERCUTANEOUS DISC ABLATION, SINGLE LEVEL (EG IDET -\nINTRADISCAL ELECTROTHERMAL ANNULOPLASTY)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1801', 'SPINE, PERCUTANEOUS IMPLANT OF SPINAL CORD\nSTIMULATOR, (TRIAL), DOUBLE LEADS', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1802', 'SPINE, PERCUTANEOUS IMPLANT OF SPINAL CORD\nSTIMULATOR, (TRIAL), SINGLE LEAD', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1803', 'SPINE, PROLAPSED DISC, NUCLEOPLASTY', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1804', 'SPINE, REMOVAL OF SPINAL CORD STIMULATOR ELECTRICAL\nGENERATOR', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1805', 'SPINE, REMOVAL OF SPINE IMPLANTS WITHOUT OTHER\nPROCEDURES (ANTERIOR APPROACH)', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1806', 'SPINE, REMOVAL OF SPINE IMPLANTS WITHOUT OTHER\nPROCEDURES (POSTERIOR APPROACH)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1807', 'SPINE, REPLACEMENT OF COMPUTERIZED RESERVOIR DEVICE\n(E.G. SYNCHROMED)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1808', 'SPINE, REPLACEMENT OF SPINAL CORD STIMULATOR,\nELECTRICAL GENERATOR', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1809', 'SPINE, SYRINGOMYELIA, LAMINECTOMY AND DRAINAGE', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1810', 'SPINE, THORACIC/LUMBAR, EPIDURAL ADHESIOLYSIS, MULTIPLE\nCATHETER', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1811', 'SPINE, THORACIC/LUMBAR, EPIDURAL ADHESIOLYSIS, SINGLE\nCATHETER', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1812', 'SPINE, VARIOUS LESIONS, ANTERIOR DECOMPRESSION,\nCORPECTOMY, DEBRIDEMENT, BIOPSY STABILISATION WITHOUT INSTRUMENTATION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1813', 'SPINE, VARIOUS LESIONS, POSTERIOR INSTRUMENTATION (1 SEGMENT) WITH/WITHOUT\nDECOMPRESSION AND WITHOUT INTERBODY FUSION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1814', 'SPINE, VARIOUS LESIONS, POSTERIOR INSTRUMENTATION (2 SEGMENTS) WITH/WITHOUT DECOMPRESSION AND WITHOUT\nINTERBODY FUSION', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.1815', 'SPINE, VARIOUS LESIONS, POSTERIOR INSTRUMENTATION (3 OR MORE SEGMENTS) WITH/WITHOUT DECOMPRESSION AND WITHOUT\nINTERBODY FUSION', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.1816', 'SPINE, VARIOUS LESIONS, REVISION SURGERY, DECOMPRESSION AND/OR DISCECTOMY, WITH REVISION\nOF INSTRUMENTATION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1817', 'SPINE, VARIOUS LESIONS, REVISION SURGERY, DECOMPRESSION AND/OR DISCECTOMY, WITHOUT\nINSTRUMENTATION', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.1818', 'SPINE, VARIOUS LESIONS, SPINAL RHIZOLYSIS INVOLVING\nEXPOSURE OF SPINAL NERVE ROOTS', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1819', 'SPINE, VARIOUS LESIONS, SYRINGO-\nARACHNOID/PLEURAL/PERITONEAL SHUNT', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.1820', 'SPINE, VERTEBROPLASTY OR KYPHOPLASTY (MULTIPLE LEVELS)', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.1821', 'SPINE, VERTEBROPLASTY OR KYPHOPLASTY (SINGLE LEVEL)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1822', 'SPLANCHNIC NERVES, BLOCK, ANAESTHETIC', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1823', 'SPLANCHNIC NERVES, BLOCK, NEUROLYTIC', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1824', 'SPLEEN, HYPERSPLENISM/MASSIVE ENLARGEMENT,\nSPLENECTOMY (MIS/OPEN)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1825', 'SPLEEN, TRAUMA, CONSERVATION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1826', 'SPLEEN, TRAUMA, SPLENECTOMY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1827', 'SPLEEN, VARIOUS NON-TRAUMATIC LESIONS, SPLENECTOMY\n(MIS/OPEN)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1828', 'STELLATE GANGLION, BLOCK, ANAESTHETIC', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1829', 'STELLATE GANGLION, BLOCK, NEUROLYTIC', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1830', 'STOMACH, GASTROESOPHAGEAL REFLUX, FUNDOPLICATION, MIS/OPEN, WITH/WITHOUT GASTROTOMY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1831', 'STOMACH, MORBID OBESITY, BYPASS ONLY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1832', 'STOMACH, MORBID OBESITY, REDUCTION AND BYPASS\n(MIS/OPEN)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1833', 'STOMACH, OBESITY, BILIOPANCREATIC DIVERSION\nWITH/WITHOUT DUODENAL SWITCH', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1834', 'STOMACH, OBESITY, GASTRIC BANDING (MIS)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1835', 'STOMACH, OBESITY, SLEEVE GASTRECTOMY (MIS/OPEN)', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.1836', 'STOMACH, PARTIAL/SUBTOTAL GASTRECTOMY FOR BENIGN\nGASTRIC DISEASES', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1837', 'STOMACH, PYLORIC STENOSIS, PYLOROPLASTY', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1838', 'STOMACH, PYLORIC TUMOR (INFANT),\nPYLOROPLASTY/PYLOROMYOTOMY', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1839', 'STOMACH, PYLOROMYOTOMY, MIS', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1840', 'STOMACH, TOTAL/PROXIMAL GASTRECTOMY FOR BENIGN\nGASTRIC DISEASES', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1841', 'STOMACH, TUMOR OF CARDIA, ENDOSCOPIC YAG LASER\nSURGERY/VAPORISATION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1842', 'STOMACH, TUMOR/ULCER, GASTROJEJUNOSTOMY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1843', 'STOMACH, TUMOUR, SUBTOTAL GASTRECTOMY AND RADICAL\nLYMPHADENECTOMY', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1844', 'STOMACH, TUMOUR, TOTAL GASTRECTOMY AND RADICAL\nLYMPHADENECTOMY', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1845', 'STOMACH, ULCERS, VAGOTOMY - ALL TYPES (MIS/OPEN)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1846', 'STOMACH, VARIOUS LESIONS, IMAGING GUIDED INSERTION OF\nNASO-GASTRIC TUBE/NASO-JEJUNAL TUBE', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.1847', 'STOMACH, VARIOUS LESIONS, PARTIAL/SUBTOTAL\nGASTRECTOMY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1848', 'STOMACH, VARIOUS LESIONS, PERCUTANEOUS\nGASTROSTOMY/JEJUNOSTOMY (WITH OR WITHOUT IMAGE GUIDANCE)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1849', 'STOMACH, VARIOUS LESIONS, TOTAL/PROXIMAL\nGASTRECTOMY WITH/WITHOUT SPLENECTOMY', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1850', 'STOMACH, VARIOUS LESIONS, WEDGE RESECTION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1851', 'STOMACH, VARIOUS LESIONS/POST-GASTRECTOMY\nCOMPLICATIONS, REVISION GASTRECTOMY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1852', 'STOMACH, WEDGE RESECTION/STOMACH FOR BENIGN GASTRIC\nDISEASES', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1853', 'STOMACH/DUODENUM, PERFORATED ULCER, REPAIR (MIS OR\nOPEN)', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1854', 'SUBCUTANEOUS TISSUE (ABDOMEN), OBESITY, LIPOSUCTION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1855', 'SUBCUTANEOUS TISSUE (BUTTOCKS), OBESITY, LIPOSUCTION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1856', 'SUBCUTANEOUS TISSUE (FACE), OBESITY, LIPOSUCTION', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1857', 'SUBCUTANEOUS TISSUE (THIGH), OBESITY, LIPOSUCTION', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1858', 'SUBCUTANEOUS TISSUE (UPPER LIMBS), OBESITY, LIPOSUCTION', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1859', 'SUBCUTANEOUS TISSUE, OBESITY, EXCISION/LIPECTOMY, LIMBS (UNILATERAL/BILATERAL) FOLLOWING WEIGHT LOSS SURGERY\n(SF702S/SF703S/SF713S/SF803S/SF804S)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1860', 'SUBCUTANEOUS TISSUE, OBESITY, EXCISION/LIPECTOMY, THORAX/BACK/BUTTOCKS,\nFOLLOWING WEIGHT LOSS SURGERY\n(SF702S/SF703S/SF713S/SF803S/SF804S)', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1861', 'SUBCUTANEOUS TISSUE, OBESITY, LIPECTOMY, EXCISION WITH UNDERMINING OF SKIN EDGES AND STRENGTHENING OF ABDOMINAL WALL/RADICAL ABDOMINOPLASTY WITH REPAIR OF ABDOMINAL WALL\nAND TRANSPOSITION OF UMBILICUS FOLLOWING WEIGHT\nLOSS SURGERY (SF702S/SF703S/SF713S/SF', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1862', 'SUBCUTANEOUS TISSUE, OBESITY, LIPECTOMY, TRANSVERSE WEDGE EXCISION OF ABDOMINAL APRON/LIPECTOMY WITH EXCISION OF SKIN, FOLLOWING\nWEIGHT LOSS SURGERY\n(SF702S/SF703S/SF713S/SF803S/SF804S)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1863', 'SUPERIOR HYPOGASTRIC PLEXUS, VARIOUS LESIONS, IMAGING\nGUIDED INJECTION OF ANAESTHETIC', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1864', 'SUPERIOR HYPOGASTRIC PLEXUS, VARIOUS LESIONS, IMAGING GUIDED INJECTION OF NEUROLYTIC, RADIOFREQUENCY', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1865', 'SURFACE LESIONS, ANGIOSARCOMA, WITH BIOPSY', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1866', 'SWEAT GLAND, AXILLARY HYPERHIDROSIS, WEDGE EXCISION\n(BILATERAL)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1867', 'SWEAT GLAND, AXILLARY HYPERHIDROSIS, WEDGE EXCISION\n(UNILATERAL)', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1868', 'SYMPATHETIC NERVES, BLOCK, ANAESTHETIC\n(UNILATERAL/BILATERAL)', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1869', 'SYMPATHETIC NERVES, BLOCK, CATHETER\n(UNILATERAL/BILATERAL)', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1870', 'SYMPATHETIC NERVES, BLOCK, NEUROLYTIC\n(UNILATERAL/BILATERAL)', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1871', 'TEETH (2 OR MORE) UNERUPTED/PARTIALLY\nERUPTED/IMPACTED, SURGICAL EXPOSURE', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1872', 'TEETH (2 TO 3), IMPACTED, EXCISION WITH REMOVAL OF BONE\n(WITHOUT TOOTH DIVISION)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1873', 'TEETH (2 TO 3), IMPACTED, EXCISION WITH REMOVAL OF BONE\nAND TOOTH DIVISION', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1874', 'TEETH (2 TO 3), UNERUPTED/PARTIALLY ERUPTED/IMPACTED,\nSURGICAL EXPOSURE AND BONDING FOR TRACTION AND ASSISTED ERUPTION', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1875', 'TEETH (4 OR MORE) UNERUPTED/ PARTIALLY ERUPTED/\nIMPACTED, SURGICAL EXPOSURE AND BONDING FOR TRACTION AND ASSISTED ERUPTION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1876', 'TEETH (4 OR MORE), IMPACTED, EXCISION WITH REMOVAL OF\nBONE (WITHOUT TOOTH DIVISION)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1877', 'TEETH (4 OR MORE), IMPACTED, EXCISION WITH REMOVAL OF\nBONE AND TOOTH DIVISION', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1878', 'TEMPORAL ARTERY BIOPSY', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1879', 'TENDON (PERONEAL), SUBLUXATION, RECONSTRUCTION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1880', 'TENDON (UPPER LIMB), BOWSTRINGING/ENTRAPMENT, PULLEY\nRECONSTRUCTION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1881', 'TENDON (UPPER LIMB), CONTRACTURE, TENOTOMY', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1882', 'TENDON (UPPER LIMB), VARIOUS LESIONS, TENDON TRANSFER\n(MULTIPLE)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1883', 'TENDON (UPPER LIMB), VARIOUS LESIONS, TENDON TRANSFER\n(SINGLE)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1884', 'TENDON SHEATH (UPPER LIMB), DE QUERVAIN\'S (BILATERAL),\nRELEASE', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1885', 'TENDON SHEATH (UPPER LIMB), DE QUERVAIN\'S (UNILATERAL),\nRELEASE', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1886', 'TENDON SHEATH (UPPER LIMB), GANGLION/VILLO- NODULAR\nSYNOVITIS, EXCISION', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1887', 'TENDON SHEATH (UPPER LIMB), TENOSYNOVITIS (MULTIPLE),\nDRAINAGE', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1888', 'TENDON SHEATH (UPPER LIMB), TENOSYNOVITIS (SINGLE),\nDRAINAGE', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1889', 'TENDON SHEATH AND SUBCUTANEOUS TISSUE,\nGANGLION/LARGE BURSA, (>3CM) EXCISION BIOPSY', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1890', 'TENDON SHEATH AND SUBCUTANEOUS TISSUE,\nGANGLION/SMALL BURSA, (<3CM) EXCISION BIOPSY', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.1891', 'TENDON, EXTENSOR (UPPER LIMB), DEFECT, GRAFTING\n(MULTIPLE)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1892', 'TENDON, EXTENSOR (UPPER LIMB), DEFECT, GRAFTING (SINGLE)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1893', 'TENDON-ACHILLES (LOWER LIMB), DISRUPTION, REPAIR', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1894', 'TENDON-EXTENSOR (UPPER LIMB), ADHESION, TENOLYSIS\n(MULTIPLE)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1895', 'TENDON-EXTENSOR (UPPER LIMB), ADHESION, TENOLYSIS\n(SINGLE)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1896', 'TENDON-EXTENSOR (UPPER LIMB), INJURY, REPAIR (MULTIPLE)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1897', 'TENDON-EXTENSOR (UPPER LIMB), INJURY, REPAIR (SINGLE)', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1898', 'TENDON-FLEXOR (LOWER LIMB), DISRUPTION, REPAIR (SINGLE)', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1899', 'TENDON-FLEXOR (UPPER LIMB), ADHESION, TENOLYSIS\n(MULTIPLE)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1900', 'TENDON-FLEXOR (UPPER LIMB), ADHESION, TENOLYSIS (SINGLE)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1901', 'TENDON-FLEXOR (UPPER LIMB), DEFECT, GRAFTING (MULTIPLE)', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1902', 'TENDON-FLEXOR (UPPER LIMB), DEFECT, GRAFTING (SINGLE)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1903', 'TENDON-FLEXOR (UPPER LIMB), INJURY, REPAIR (MULTIPLE)', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1904', 'TENDON-FLEXOR (UPPER LIMB), INJURY, REPAIR (SINGLE)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1905', 'TENDON-FLEXOR (UPPER LIMB), INJURY, TENDON GRAFT', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.1906', 'TENDONS-FLEXOR (LOWER LIMB), DISRUPTION, REPAIR\n(MULTIPLE)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1907', 'TESTIS, TORSION TESTIS, ORCHIDECTOMY DONE WITH FIXATION\nOF CONTRALATERAL TESTIS', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1908', 'TESTIS, TUMOR, RETROPERITONEAL LYMPH NODE DISSECTION\nFOLLOWING ORCHIDECTOMY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1909', 'TESTIS, UNDESCENDED/ECTOPIC (BILATERAL),\nORCHIDOPEXY/TRANSPLANTATION WITH HERNIA REPAIR', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1910', 'TESTIS, UNDESCENDED/ECTOPIC (UNILATERAL),\nORCHIDOPEXY/TRANSPLANTATION WITH HERNIA REPAIR', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1911', 'TESTIS, UNDESCENDED/ECTOPIC, ORCHIDOPEXY WITH\nMICROVASCULAR ANASTOMOSIS', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1912', 'TESTIS, VARIOCOELE, SPERMATIC VEIN EMBOLISATION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1913', 'TESTIS, VARIOUS LESIONS, BIOPSY OR ASPIRATION', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.1914', 'TESTIS, VARIOUS LESIONS, EXPLORATION/REPAIR', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.1915', 'TESTIS, VARIOUS LESIONS, INSERTION OF TESTICULAR\nPROSTHESIS', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1916', 'TESTIS, VARIOUS LESIONS, ORCHIDECTOMY (SIMPLE)', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1917', 'TESTIS, VARIOUS LESIONS, ORCHIDECTOMY (SIMPLE)\n(MIS)', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1918', 'TESTIS, VARIOUS LESIONS, ORCHIDECTOMY WITH COMPLETE\nEXCISION OF SPERMATIC CORD', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1919', 'TESTIS, VARIOUS LESIONS, ORCHIDOPLASTY', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.1920', 'THORAX, CATHETER BLOCKAGE, IMAGING GUIDED CATHETER\nCHANGE/CATHETER ADJUSTMENT/CHECK TUBE', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.1921', 'THORAX, COASTAL CARTILAGE, HARVEST AND CREATION OF EAR\nCARTILAGE FRAMEWORK', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1922', 'THORAX, EFFUSION/FLUID/ABSCESS COLLECTION, IMAGING\nGUIDED PERCUTANEOUS DRAINAGE CATHETER INSERTION', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.1923', 'THORAX, EFFUSION/FLUID/ABSCESS COLLECTION, IMAGING GUIDED PERCUTANEOUS\nASPIRATION/DIAGNOSTIC TAP', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.1924', 'THORAX, EMPYEMA, RESECTION OF RIB AND OPEN DRAINAGE', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1925', 'THORAX, EVACUATION OF RETAINED HAEMOTHORAX (OPEN\nAND THORASCOPIC)', 11808000, 'TINDAKAN OPERATIF'); +INSERT INTO `tarif_rs` (`ID_Tarif_RS`, `Tindakan_RS`, `Tarif_RS`, `Kategori_RS`) VALUES +('R.TO.1926', 'THORAX, MEDIASTINAL LESIONS, CERVICAL EXPLORATION\nWITH/WITHOUT BIOPSY', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.1927', 'THORAX, MEDIASTINUM, MEDIASTINOSCOPY WITH/WITHOUT\nBIOPSY', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1928', 'THORAX, MIS DECORTICATION', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.1929', 'THORAX, MIS PLEURODESIS BILATERAL', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1930', 'THORAX, MIS THYMECTOMY', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1931', 'THORAX, PECTUS EXCAVATUM/PECTUS CARINATUM, RADICAL\nCORRECTION', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1932', 'THORAX, PERICARDIAL WINDOW CREATION', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1933', 'THORAX, PLEURAL EFFUSION, ASPIRATION', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.1934', 'THORAX, PLEURAL EFFUSION, BIOPSY', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.1935', 'THORAX, RESUSCITATIVE TRAUMA THORACOTOMY\n(HAEMOSTASIS, DAMAGE CONTROL, ORGAN REPAIR)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1936', 'THORAX, RIBS, OPEN FIXATION OF RIB FRACTURES (>3\nRIBS)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1937', 'THORAX, RIBS, OPEN FIXATION OF RIB FRACTURES (1 - 3\nRIBS)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1938', 'THORAX, THORACOSCOPY FOR PLEURODESIS', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1939', 'THORAX, THORACOSCOPY, WITH/WITHOUT DIVISION OF\nPLEURAL ADHESIONS', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1940', 'THORAX, TRAUMA RELOOK THORACOTOMY (INCLUDES\nHAEMOSTASIS, REMOVAL OF PACKS)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1941', 'THORAX, TUMOR (MEDIASTINAL), COMPLEX RESECTION', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.1942', 'THORAX, TUMOR (MEDIASTINAL), RESECTION', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1943', 'THORAX, VARIOUS LESIONS, CHEST WALL RESECTION AND\nMAJOR RECONSTRUCTION', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.1944', 'THORAX, VARIOUS LESIONS, CHEST WALL RESECTION AND\nMINOR RECONSTRUCTION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1945', 'THORAX, VARIOUS LESIONS, IMAGING GUIDED PERCUTANEOUS\nBIOPSY', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.1946', 'THORAX, VARIOUS LESIONS, INTERCOSTAL DRAIN (INSERTION\nWITHOUT RESECTION OF RIB)', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.1947', 'THORAX, VARIOUS LESIONS, INTRATHORACIC OPERATION ON\nLUNGS/BRONCHIAL TREE/MEDIASTINUM', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1948', 'THORAX, VARIOUS LESIONS, THORACOPLASTY (COMPLETE)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1949', 'THORAX, VARIOUS LESIONS, THORACOPLASTY (IN STAGES) -\nEACH STAGE', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1950', 'THORAX, VARIOUS LESIONS, THORACOTOMY (EXPLORATION)\nWITH/WITHOUT BIOPSY', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1951', 'THORAX, VARIOUS LESIONS, THORACOTOMY FOR PLEURECTOMY/PLEURODESIS/ ENUCLEATION HYDATID CYSTS', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.1952', 'THORAX, VARIOUS LESIONS, THORACOTOMY WITH\nPULMONARY DECORTICATION, WITH OR WITHOUT THORACOPLASTY AND/OR MYOPLASTY', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1953', 'THROAT, HYOID SUSPENSION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1954', 'THROAT, PALATOPLASTY WITH/WITHOUT UVULOPLASTY, USING\nLASER OR OTHER MODALITIES', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1955', 'THROAT, UVULOPALATOPHARYNGOPLASTY (U3P)', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1956', 'THUMB, DEFORMITIES, CORRECTION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1957', 'THUMB, PARALYSIS, OPPONENS PLASTY', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1958', 'THUMB, VARIOUS LESIONS, POLLICISATION OR MICROSURGICAL\nRECONSTRUCTION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1959', 'THYROGLOSSAL CYST, SISTRUNK OPERATION WITH HYOID BONE\nREMOVAL', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1960', 'THYROGLOSSAL DUCT, CYST FISTULA, EXCISION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1961', 'THYROID, TUMOR, EXCISION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1962', 'THYROID, VARIOUS LESIONS, HEMITHYROIDECTOMY/PARTIAL\nTHYROIDECTOMY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1963', 'THYROID, VARIOUS LESIONS, IMAGING GUIDED PERCUTANEOUS\nASPIRATION/BIOPSY', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1964', 'THYROID, VARIOUS LESIONS, TOTAL THYROIDECTOMY,\nCOMPLEX (RECURRENCE), WITH/WITHOUT STERNAL SPLIT', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.1965', 'THYROID, VARIOUS LESIONS, TOTAL/SUBTOTAL\nTHYROIDECTOMY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1966', 'THYROID, VARIOUS LESIONS, TOTAL/SUBTOTAL\nTHYROIDECTOMY WITH NECK DISSECTION (BILATERAL)', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.1967', 'THYROID, VARIOUS LESIONS, TOTAL/SUBTOTAL\nTHYROIDECTOMY WITH NECK DISSECTION (UNILATERAL)', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.1968', 'TIBIA, DELAYED/NON-UNION, RECONSTRUCTION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1969', 'TIBIA, FRACTURE(S), OPEN REDUCTION AND INTERNAL FIXATION\nWITH INTRAMEDULLARY ROD', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1970', 'TIBIA, FRACTURE, OPEN REDUCTION AND INTERNAL FIXATION\nWITH PLATES AND SCREWS, COMMINUTED', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.1971', 'TIBIA, FRACTURE, OPEN REDUCTION AND INTERNAL FIXATION\nWITH PLATES AND SCREWS, SIMPLE', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1972', 'TIBIA, TIBIAL PLATEAU, COMMINUTED BICONDYLAR, ORIF', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.1973', 'TIBIA, TIBIAL PLATEAU, UNICONDYLAR COMMINUTED/SIMPLE\nBICONDYLAR, ORIF', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.1974', 'TIBIA, TIBIAL PLATEAU, UNICONDYLAR, ORIF', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1975', 'TIBIA, TIBIAL SHAFT FRACTURE, INTRAMEDULLARY NAILING\n(LOCKED/UNLOCKED)', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.1976', 'TOES, TOE DEFORMITY', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.1977', 'TOES, TOE DEFORMITY, MULTIPLE/COMPLEX', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1978', 'TOES, VARIOUS LESIONS, ARTHRODESIS', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1979', 'TOES, VARIOUS LESIONS, RAY AMPUTATION (SINGLE)', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.1980', 'TOES, VARIOUS LESIONS, RAY AMPUTATION (TWO TO FOUR\nRAYS)', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1981', 'TOES, VARIOUS LESIONS, TOE AMPUTATION (SINGLE)', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.1982', 'TOES, VARIOUS LESIONS, TOE AMPUTATION (TWO TO FOUR\nTOES)', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1983', 'TONGUE SUSPENSION', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.1984', 'TONGUE, TONGUE TIE, RELEASE', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.1985', 'TONGUE, TONGUE TIE, REVISION', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1986', 'TONGUE, TRANSORAL RESECTION OF TONGUE BASE MUSCLE\nWITH OR WITHOUT LINGUAL TONSIL EXCISION', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.1987', 'TONGUE, TUMOR, GLOSSECTOMY WITH RADICAL NECK\nDISSECTION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.1988', 'TONGUE, TUMOR, HEMI-GLOSSECTOMY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1989', 'TONGUE, TUMOR, TOTAL GLOSSECTOMY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.1990', 'TONGUE, VARIOUS LESIONS (BENIGN CONDITION), EXCISION\nBIOPSY <3CM', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1991', 'TONGUE, VARIOUS LESIONS, PARTIAL EXCISION', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1992', 'TONSILS, ABSCESS, DRAINAGE', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.1993', 'TONSILS, HEMORRHAGE, HEMOSTASIS', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1994', 'TONSILS, VARIOUS LESIONS, REMOVAL WITH/WITHOUT\nADENOIDECTOMY', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.1995', 'TOOTH (DEEP, I.E. COMPLETELY BURIED IN BONE), EXCISION\nWITH REMOVAL OF BONE AND TOOTH DIVISION', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1996', 'TOOTH (MULTIPLE-ROOTED OR MORE THAN 1 TOOTH),\nVARIOUS LESIONS, PERI-RADICULAR SURGERY', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.1997', 'TOOTH (SINGLE-ROOTED), VARIOUS LESIONS, PERI- RADICULAR\nSURGERY', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.1998', 'TOOTH (SUPERFICIAL), UNERUPTED/PARTIALLY ERUPTED/IMPACTED, EXCISION WITH REMOVAL OF BONE\n(WITHOUT TOOTH DIVISION)', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.1999', 'TOOTH (SUPERFICIAL), UNERUPTED/PARTIALLY ERUPTED/IMPACTED, EXCISION WITH REMOVAL OF BONE\nAND TOOTH DIVISION', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2000', 'TOOTH, DISLOCATION, REIMPLANTATION AND\nTRANSPLANTATION', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.2001', 'TOOTH, SIMPLE UNERUPTED/PARTIALLY ERUPTED/IMPACTED/FRACTURED, REMOVAL OF MULTIPLE\nROOTS', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2002', 'TOOTH, UNERUPTED/PARTIALLY ERUPTED/IMPACTED, EXCISION\nWITH RELEASE OF NEUROVASCULAR BUNDLE', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2003', 'TOOTH, UNERUPTED/PARTIALLY ERUPTED/IMPACTED,\nSURGICAL EXPOSURE', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.2004', 'TOOTH, UNERUPTED/PARTIALLY ERUPTED/IMPACTED, SURGICAL EXPOSURE AND BONDING FOR TRACTION AND\nASSISTED ERUPTION', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2005', 'TRACHEA, FOREIGN BODY, REMOVAL', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.2006', 'TRACHEA, TRACHEO-ESOPHAGEAL FISTULA, LIGATION AND\nDIVISION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2007', 'TRACHEA, TRACHEOSTOMY, REVISION AND REINSERTION', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2008', 'TRACHEA, VARIOUS LESIONS, TRACHEA RECONSTRUCTION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2009', 'TRACHEA, VARIOUS LESIONS, TRACHEOSTOMY', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2010', 'TRACHEA/BRONCHUS, STRICTURE, IMAGING GUIDED BALLOON\nDILATATION', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2011', 'TRACHEA/BRONCHUS, STRICTURE, IMAGING GUIDED STENT\nPLACEMENT', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.2012', 'TRANSCATHETER VALVE OR CLIP IMPLANTATION WITH/WITHOUT TEE GUIDANCE (ENDOVASCULAR APPROACH)', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2013', 'UPPER LIMB, CONGENITAL DEFORMITY, MAJOR\nRECONSTRUCTION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2014', 'UPPER LIMB, DEFORMITY, BONY AND SOFT TISSUE\nRECONSTRUCTION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2015', 'UPPER LIMB, FRACTURE/DISLOCATION, MANIPULATION AND\nREDUCTION', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.2016', 'UPPER LIMB, ISCHEMIA, FASCIOTOMY', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.2017', 'UPPER LIMB, TRAUMA, MAJOR REPLANTATION', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2018', 'UPPER LIMB, VARIOUS LESIONS, AMPUTATION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2019', 'UPPER LIMB, VARIOUS LESIONS, FOREQUARTER AMPUTATION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2020', 'UPPER LIMB, VARIOUS LESIONS, VASCULARISED FREE MUSCLE\nTRANSFER', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2021', 'UPPER LIMB/LOWER LIMB, CLOSED FRACTURES, EXTERNAL\nFIXATION WITHOUT DEBRIDEMENT OR OTHER PROCEDURES', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2022', 'UPPER LIMB/LOWER LIMB, FRACTURE, EXTERNAL FIXATION,\nMULTIPLE PLANES', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2023', 'UPPER LIMB/LOWER LIMB, MAJOR SOFT TISSUE DEFECTS, FREE\nFLAP', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.2024', 'UPPER LIMB/LOWER LIMB, MAJOR SOFT TISSUE DEFECTS,\nPEDICLED FLAP', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2025', 'UPPER LIMB/LOWER LIMB, MALIGNANT TUMOUR, SOFT TISSUE,\nRADICAL EXCISION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2026', 'UPPER LIMB/LOWER LIMB, OPEN FRACTURES WITH\nDEBRIDEMENT AND EXTERNAL FIXATION', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2027', 'UPPER LIMB/LOWER LIMB, UPPER LIMB FRACTURES,\nMINIMALLY INVASIVE FIXATION', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2028', 'URETER, CALCULUS, URETEROLITHOTOMY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2029', 'URETER, CALCULUS, URETEROLITHOTOMY (MIS)', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2030', 'URETER, CALCULUS, URETEROSCOPY AND LITHOTRIPSY\nWITH/WITHOUT ULTRASOUND', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2031', 'URETER, CUTANEOUS URETEROSTOMY, CLOSURE', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2032', 'URETER, CYSTOSCOPY AND INSERTION OF DOUBLE J STENT', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2033', 'URETER, EXTRA CORPOREAL SHOCKWAVE LITHOTRIPSY (ESWL)\nFOR URETERIC STONE', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2034', 'URETER, PREVIOUS DIVERSION, REVISION', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2035', 'URETER, STRICTURE, PERCUTANEOUS ANTEGRADE BALLOON\nDILATATION', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.2036', 'URETER, URETEROSCOPY', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2037', 'URETER, VARIOUS LESIONS, BOARI FLAP REIMPLANTATION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2038', 'URETER, VARIOUS LESIONS, INTESTINAL CONDUIT', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2039', 'URETER, VARIOUS LESIONS, PERCUTANEOUS ANTEGRADE\nINSERTION OF DOUBLE J STENT', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2040', 'URETER, VARIOUS LESIONS, REDUCTION URETEROPLASTY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2041', 'URETER, VARIOUS LESIONS, REIMPLANTATION, BILATERAL', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2042', 'URETER, VARIOUS LESIONS, REIMPLANTATION, UNILATERAL', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2043', 'URETER, VARIOUS LESIONS, REPAIR', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2044', 'URETER, VARIOUS LESIONS, REPLACEMENT BY BOWEL', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2045', 'URETER, VARIOUS LESIONS, URETEROCALYCOSTOMY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2046', 'URETER, VARIOUS LESIONS, URETEROSTOMY', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2047', 'URETER, VARIOUS LESIONS, URETEROTOMY/INSERTION OF\nDOUBLE J STENT', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2048', 'URETER, VARIOUS LESIONS, URETEROURETEROSTOMY', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2049', 'URETHRA , EXCISION OF URETHRAL DIVERTICULUM', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2050', 'URETHRA, CARUNCLE/POLYP, EXCISION/LASER VAPORISATION', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.2051', 'URETHRA, EXCISION OF URETHRAL DIVERTICULUM', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2052', 'URETHRA, FISTULA, CLOSURE', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2053', 'URETHRA, INJURY, REPAIR/URETHROPLASTY OF ANTERIOR\nURETHRA', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2054', 'URETHRA, MEATAL STENOSIS, MEATOTOMY', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.2055', 'URETHRA, MID-URETHRAL SLINGS', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.2056', 'URETHRA, PROLAPSE, EXCISION', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.2057', 'URETHRA, STENOSIS, DILATATION', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.2058', 'URETHRA, STRICTURE, URETHRAL WALL STENTING', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2059', 'URETHRA, STRICTURE, URETHROTOMY', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2060', 'URETHRA, SUBSTITUTION URETHROPLASTY, FLAP OR GRAFT', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2061', 'URETHRA, URETHRO-RECTAL FISTULA, CLOSURE', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2062', 'URETHRA, URETHROSCOPY, WITH RELATED PROCEDURES', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.2063', 'URETHRA, VALVES/MEMBRANE, RESECTION (ENDOSCOPIC)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2064', 'URETHRA, VALVES/MEMBRANE, RESECTION (OPEN)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2065', 'URETHRA, VARIOUS LESIONS, ANTERIOR URETHROPLASTY', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2066', 'URETHRA, VARIOUS LESIONS, EXCISION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2067', 'URETHRA, VARIOUS LESIONS, POSTERIOR URETHROPLASTY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2068', 'URETHRA, VARIOUS LESIONS, STAGED URETHROPLASTY (EACH\nSTAGE)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2069', 'URETHRA, VARIOUS LESIONS, TRANSPUBIC URETHROPLASTY', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2070', 'URETHRA, VARIOUS LESIONS, URETHROPEXY', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.2071', 'URETHRA, VARIOUS LESIONS, URETHROTOMY', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2072', 'UTERUS, BENIGN CONDITIONS, TOTAL ABDOMINAL HYSTERECTOMY WITH/WITHOUT SALPINGO- OOPHORECTOMY AND PELVIC FLOOR REPAIR (COMBINED OPERATION)', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2073', 'UTERUS, BROAD LIGAMENT TUMOR, HYSTERECTOMY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2074', 'UTERUS, CONGENITAL ORGAN ABNORMALITY, PLASTIC REPAIR\nINCLUDING METROPLASTY', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2075', 'UTERUS, DISPLACED INTRAUTERINE CONTRACEPTIVE DEVICE,\nREMOVAL UNDER GENERAL ANESTHESIA', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.2076', 'UTERUS, ELONGATED CERVIX, CYSTOCOELE, RECTOCOELE, AMPUTATION OF CERVIX + ANTERIOR REPAIR + POSTERIOR\nREPAIR', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2077', 'UTERUS, ENDOMETRIAL ABLATION (BALLOON)', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.2078', 'UTERUS, ENDOMETRIAL ABLATION (HYSTEROSCOPIC)', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2079', 'UTERUS, ENDOMETRIOSIS, HYSTERECTOMY WITH/WITHOUT\nSALPINGO-OOPHORECTOMY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2080', 'UTERUS, FETAL DISORDER, ULTRASOUND GUIDED FETAL BLOOD\nSAMPLING/CORDOCENTESIS', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2081', 'UTERUS, FETAL DISORDER, ULTRASOUND GUIDED FETAL\nTHERAPY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2082', 'UTERUS, FETAL SURGERY', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2083', 'UTERUS, FIBROIDS, MYOMECTOMY (COMPLICATED E.G.\n>5CM, MULTIPLE >2, CHALLENGING LOCATION)6', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2084', 'UTERUS, FIBROIDS, MYOMECTOMY (SIMPLE, <5CM)5', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2085', 'UTERUS, FIBROIDS, UTERINE ARTERY EMBOLIZATION', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2086', 'UTERUS, FOETOSCOPY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2087', 'UTERUS, GENETIC ABNORMALITY, ULTRASOUND GUIDED\nCHORIONIC BIOPSY', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.2088', 'UTERUS, GENETIC ABNORMALITY/FETAL MATURITY,\nWITH/WITHOUT ULTRASOUND GUIDED AMNIOCENTESIS', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.2089', 'UTERUS, GRAVID, EVACUATION (COMPLICATED)', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.2090', 'UTERUS, GRAVID, EVACUATION (COMPLICATED)', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.2091', 'UTERUS, GRAVID, EVACUATION (SIMPLE)', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.2092', 'UTERUS, GRAVID, EVACUATION (SIMPLE)', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.2093', 'UTERUS, GRAVID, HYSTERECTOMY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2094', 'UTERUS, GRAVID, HYSTEROTOMY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2095', 'UTERUS, HYSTERECTOMY, FROZEN PELVIS', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2096', 'UTERUS, INVERSION, REPOSITIONING', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2097', 'UTERUS, LYSIS OF ASHERMAN\'S (COMPLICATED),\nHYSTEROSCOPIC', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.2098', 'UTERUS, LYSIS OF ASHERMAN\'S (SIMPLE), HYSTEROSCOPIC', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2099', 'UTERUS, MALIGNANT CONDITION, ANTERIOR PELVIC\nEXENTERATION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2100', 'UTERUS, MALIGNANT CONDITION, POSTERIOR PELVIC\nEXENTERATION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2101', 'UTERUS, MALIGNANT CONDITION, RADICAL HYSTERECTOMY\nWITH/WITHOUT LYMPHADENECTOMY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2102', 'UTERUS, MALIGNANT CONDITION, TOTAL HYSTERECTOMY WITH/WITHOUT SALPINGO-\nOOPHORECTOMY, WITH/WITHOUT LYMPH NODE DISSECTION,\nMIS/OPEN', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2103', 'UTERUS, MALIGNANT CONDITIONS, TOTAL PELVIC\nEXENTERATION', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.2104', 'UTERUS, MALIGNANT CONDITIONS, WERTHEIM\'S OPERATION\nINCLUDING PELVIC LYMPHADENECTOMY', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2105', 'UTERUS, MIS ABLATION OF ENDOMETRIOSIS (SIMPLE) (AS\nSINGLE PROCEDURE, NOT INVOLVING RECTUM, URETER)', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2106', 'UTERUS, PERFORATION, REPAIR', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2107', 'UTERUS, PREGNANCY AND MULTIPARITY, COMPLICATED CAESAREAN SECTION AND TUBAL LIGATION (SEE FOOTNOTE\nFOR DEFINITION OF \'COMPLICATED\')', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2108', 'UTERUS, PREGNANCY AND MULTIPARITY, COMPLICATED CAESAREAN SECTION AND TUBAL LIGATION (SEE FOOTNOTE\nFOR DEFINITION OF \'COMPLICATED\')', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2109', 'UTERUS, PREGNANCY AND MULTIPARITY, UNCOMPLICATED\nCAESAREAN SECTION AND TUBAL LIGATION', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2110', 'UTERUS, PREGNANCY AND MULTIPARITY, UNCOMPLICATED CAESAREAN SECTION AND TUBAL\nLIGATION', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2111', 'UTERUS, PREGNANCY, CAESAREAN SECTION WITH\nHYSTERECTOMY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2112', 'UTERUS, PREGNANCY, CAESAREAN SECTION WITH\nHYSTERECTOMY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2113', 'UTERUS, PREGNANCY, COMPLICATED CAESAREAN SECTION (SEE FOOTNOTE FOR DEFINITION OF\n\'COMPLICATED\'7)', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2114', 'UTERUS, PREGNANCY, COMPLICATED CAESAREAN SECTION (SEE FOOTNOTE FOR DEFINITION OF\n\'COMPLICATED\'8)', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2115', 'UTERUS, PREGNANCY, COMPLICATED VAGINAL DELIVERY (E.G. TWINS, BREECH, INSTRUMENTAL\nDELIVERY)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.2116', 'UTERUS, PREGNANCY, COMPLICATED VAGINAL DELIVERY (E.G. TWINS, BREECH, INSTRUMENTAL\nDELIVERY)', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.2117', 'UTERUS, PREGNANCY, UNCOMPLICATED CAESAREAN SECTION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2118', 'UTERUS, PREGNANCY, UNCOMPLICATED CAESAREAN SECTION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2119', 'UTERUS, PREGNANCY, VAGINAL DELIVERY (WITH OR WITHOUT\nEPISIOTOMY REPAIR)', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.2120', 'UTERUS, PREGNANCY, VAGINAL DELIVERY (WITH OR WITHOUT\nEPISIOTOMY REPAIR)', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.2121', 'UTERUS, PROLAPSE, CYSTOCOELE, RECTOCOELE, AMPUTATION OF CERVIX + VAGINAL SACROSPINOUS LIGAMENT HYSTEROPEXY\n+ ANTEIOR REPAIR + POSTERIOR REPAIR', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2122', 'UTERUS, PROLAPSE, CYSTOCOELE, RECTOCOELE,\nTRANSOBTURATOR MESH + TRANSSACROSPINOUS LIGAMENT MESH', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2123', 'UTERUS, PROLAPSE, CYSTOCOELE, RECTOCOELE, VAGINAL\nHYSTERECTOMY + ANTERIOR REPAIR + BILATERAL SALPINGO- OOPHORECTOMY ? POSTERIOR REPAIR', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2124', 'UTERUS, PROLAPSE, CYSTOCOELE, RECTOCOELE, VAGINAL\nSACROSPINOUS LIGAMENT HYSTEROPEXY + ANTERIOR REPAIR + POSTERIOR REPAIR', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2125', 'UTERUS, PROLAPSE, VAGINAL HYSTERECTOMY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2126', 'UTERUS, PROLAPSE, VAGINAL HYSTERECTOMY + BILATERAL\nSALPINGO-OOPHORECTOMY', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2127', 'UTERUS, RETAINED PLACENTA, MANUAL REMOVAL IN OT/GA', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.2128', 'UTERUS, RETROVERSION, VENTROSUSPENSION', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.2129', 'UTERUS, RUPTURED, REPAIR (COMPLICATED)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2130', 'UTERUS, RUPTURED, REPAIR (SIMPLE)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2131', 'UTERUS, SUB-TOTAL/TOTAL HYSTERECTOMY (<12\nWEEKS), WITH/WITHOUT SALPINGO-OOPHORECTOMY', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2132', 'UTERUS, SUB-TOTAL/TOTAL HYSTERECTOMY (?12\nWEEKS), WITH/WITHOUT SALPINGO-OOPHORECTOMY', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2133', 'UTERUS, VARIOUS LESIONS, CURETTAGE WITH\nCOLPOSCOPY/BIOPSY/DIATHERMY/ CRYOSURGERY/LASER THERAPY OF CERVIX', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2134', 'UTERUS, VARIOUS LESIONS, CURETTAGE WITH/WITHOUT\nDILATATION', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.2135', 'UTERUS/CERVIX, HYSTEROSCOPIC CANNULATION', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.2136', 'UTERUS/CERVIX, HYSTEROSCOPY, DIAGNOSTIC (WITH GENERAL\nANESTHESIA)', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.2137', 'UTERUS/CERVIX, HYSTEROSCOPY, DIAGNOSTIC (WITHOUT\nANAESTHESIA)', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.2138', 'UTERUS/CERVIX, HYSTEROSCOPY, DIAGNOSTIC, D&C', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.2139', 'UTERUS/VAGINA, MIS ASSISTED VAGINAL HYSTERECTOMY\n(LAVH) WITH/WITHOUT PELVIC FLOOR REPAIR (PFR)', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2140', 'UTERUS/VAGINA, MIS RECONSTRUCTION OF FROZEN PELVIS/LATERAL PELVIC WALL DISSECTION; EXTIRPATION OF\nRECTOVAGINAL ENDOMETRIOSIS', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2141', 'VAGINA, ATRESIA, VAGINOPLASTY', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2142', 'VAGINA, ATRESIA/STENOSIS, DILATATION', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.2143', 'VAGINA, CYSTOCOELE, ANTERIOR REPAIR/KELLY\'S OPERATION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2144', 'VAGINA, CYSTOCOELE, PARAVAGINAL DEFECT REPAIR\n(ABDOMINAL) / BURCH COLPOSUSPENSION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2145', 'VAGINA, CYSTOCOELE, RECTOCOELE, ANTERIOR REPAIR/KELLY\'S\nOPERATION + POSTERIOR REPAIR', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2146', 'VAGINA, CYSTOCOELE, TRANSOBTURATOR MESH', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2147', 'VAGINA, ENTEROCOELE, CYSTOCOELE, RECTOCOELE,\nABDOMINAL SACROCOLPOPEXY + PARAVAGINAL DEFECT REPAIR/BURCH COLPOSUSPENSION + POSTERIOR REPAIR', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2148', 'VAGINA, ENTEROCOELE, CYSTOCOELE, RECTOCOELE, VAGINAL\nSACROSPINOUS LIGAMENT/ILIOCOCCYGEUS FIXATION + ANTERIOR REPAIR + POSTERIOR REPAIR', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2149', 'VAGINA, ENTEROCOELE, REPAIR/VAGINAL VAULT SUSPENSION\n(ABDOMINAL)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2150', 'VAGINA, FISTULA, REPAIR (COMPLICATED/MULTIPLE)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2151', 'VAGINA, FISTULA, REPAIR (SIMPLE)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2152', 'VAGINA, FOREIGN BODY, REMOVAL', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.2153', 'VAGINA, INCARCERATED PESSARY, REMOVAL', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.2154', 'VAGINA, INTRA-EPITHELIAL NEOPLASIA COMPLETE/UPPER\nVAGINECTOMY', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2155', 'VAGINA, INTRA-EPITHELIAL NEOPLASIA VAGINECTOMY\n(PARTIAL)', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2156', 'VAGINA, LACERATIONS (COMPLEX AND INVOLVING ANAL\nSPHINCTER) AND DEBRIDEMENT/SUTURE UNDER GENERAL ANAESTHESIA', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2157', 'VAGINA, LACERATIONS (SIMPLE), DEBRIDEMENT/SUTURE\n(EXCLUDES EPISIOTOMY)', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.2158', 'VAGINA, MALIGNANT CONDITION, VAGINECTOMY', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2159', 'VAGINA, PELVIC ABSCESS, COLPOTOMY AND DRAINAGE', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2160', 'VAGINA, PROLAPSE, COLPORRHAPHY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2161', 'VAGINA, PROLAPSE, OBLITERATION (COLPOCLEISIS)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2162', 'VAGINA, RECTOCOELE, POSTERIOR REPAIR', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2163', 'VAGINA, SIMPLE TUMOR/GARTNER\'S CYST, REMOVAL WITH\nBIOPSY', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.2164', 'VAGINA, STRESS INCONTINENCE, ABDOMINAL\n/COMBINED ABDOMINOVAGINAL SLING OPERATIONS ( EG. WATKINS INTERPOSITION, ALDRIDGE SLING AND OTHER PUBOVAGINAL SLING OPERATIONS) +/- CYSTOSCOPY', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2165', 'VAGINA, STRESS INCONTINENCE, CYSTOCOELE, RECTOCOELE, MID-URETHRAL TAPE/SLING (?\nCYSTOSCOPY) + ANTERIOR REPAIR + POSTERIOR\nREPAIR', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2166', 'VAGINA, STRESS INCONTINENCE, KELLY\'S OPERATION +/-\nANTERIOR REPAIR.', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2167', 'VAGINA, TENSION FREE VAGINAL TAPE (TVT/TVTO)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2168', 'VAGINA, VARIOUS LESIONS, BIOPSY', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.2169', 'VAGINA/RECTUM, RECTO VAGINAL FISTULA, COMPLEX\nRECTAL/TRANSPERINEAL APPROACH WITH COLOSTOMY', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2170', 'VAGINA/RECTUM, RECTO VAGINAL FISTULA, COMPLEX RECTAL/TRANSPERINEAL APPROACH WITHOUT COLOSTOMY', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2171', 'VAGINAL HYSTERECTOMY + ANTERIOR REPAIR +/- POSTERIOR\nREPAIR', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2172', 'VAGINAL SEPTUM, EXCISION', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.2173', 'VAS DEFERENS, VARIOUS LESIONS, EXPLORATION\n(MICROSURGICAL) AND TESTICULAR BIOPSY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2174', 'VAS DEFERENS, VARIOUS LESIONS, REANASTOMOSIS\n(MICROSURGICAL)', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2175', 'VAS DEFERENS, VARIOUS LESIONS, VARICOCELECTOMY\n(MICROSURGICAL)', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2176', 'VAS DEFERENS, VARIOUS LESIONS, VASECTOMY', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.2177', 'VAS DEFERENS, VARIOUS LESIONS, VASOEPIDIDYMOGRAPHY &\nVASOVESICULOGRAPHY', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.2178', 'VAS DEFERENS, VARIOUS LESIONS, VASOEPIDIDYMOSTOMY\n(MICROSURGICAL)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2179', 'VEIN (DISTAL EXTREMITY/DIGIT), VARIOUS LESIONS,\nMICROVASCULAR REPAIR', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2180', 'VEIN (LARGE), VARIOUS LESIONS, LIGATION', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.2181', 'VEIN (MAJOR), TRAUMA, REPAIR', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2182', 'VEIN (SMALL), INJURY, REPAIR (SINGLE)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2183', 'VEIN, ARTERIO-VENOUS FISTULA, DISSECTION AND LIGATION', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.2184', 'VEIN, BLEEDING VARICOSITIES/VASCULAR MALFORMATION, IMAGE GUIDED SCLEROTHERAPY INJECTION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2185', 'VEIN, CATHETER BLOCKAGE, FIBRINSHEATH STRIPPING OR\nDISRUPTION', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.2186', 'VEIN, CATHETER BLOCKAGE, IMAGING GUIDED CATHETER\nCHANGE/CATHETER ADJUSTMENT', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.2187', 'VEIN, CENTRAL VEINS (SUPERIOR VENA CAVA, BRACHIOCEPHALIC VEINS, INFERIOR VENA CAVA, ILIAC VEINS)\nVARIOUS LESIONS, DIAGNOSTIC VENOGRAPHY', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.2188', 'VEIN, HEPATIC, PORTAL HYPERTENSION, DIAGNOSTIC HEPATIC VENOGRAPHY WITH OR WITHOUT PRESSURE MEASUREMENTS', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.2189', 'VEIN, INTRACRANIAL, VENOUS SAMPLING', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2190', 'VEIN, INTRAVENOUS SYMPATHETIC, BIER?S BLOCK', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.2191', 'VEIN, PERIPHERAL VEINS (UPPER/LOWER LIMBS/DIALYSIS ARTERIOVENUS\nFISTULA/ARTERIOVENUS GRAFT FISTULA), VARIOUS LESIONS,\nDIAGNOSTIC VENOGRAPHY', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.2192', 'VEIN, STENOSIS/OCCLUSION, PERCUTANEOUS TRANSLUMINAL\nANGIOPLASTY (PTA), DIFFICULT', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2193', 'VEIN, STENOSIS/OCCLUSION, PERCUTANEOUS TRANSLUMINAL\nANGIOPLASTY (PTA), SIMPLE', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.2194', 'VEIN, THROMBOSIS, PERCUTANEOUS CATHETER DIRECTED THROMBOLYSIS, WITH OR WITHOUT ANGIOPLASTY/STENTING', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2195', 'VEIN, VARICOSE VEINS, IMAGING GUIDED ENDOVENOUS LASER\nTREATMENT, 1 LEG', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2196', 'VEIN, VARICOSE VEINS, IMAGING GUIDED ENDOVENOUS LASER\nTREATMENT, 2 LEGS', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2197', 'VEIN, VARICOSITIES (RECURRENT) SURGERY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2198', 'VEIN, VARICOSITIES, ENDOVASCULAR LASER TREATMENT (1\nLEG)', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2199', 'VEIN, VARICOSITY, BILATERAL STRIPPING/EXCISION/MULTIPLE\nLIGATIONS', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2200', 'VEIN, VARICOSITY, HIGH LIGATION AND COMPLETE\nSTRIPPING/EXCISION OF LONG/LONG & SHORT SAPHENOUS VEIN (ENDOSCOPIC)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2201', 'VEIN, VARICOSITY, HIGH LIGATION AND COMPLETE STRIPPING/EXCISION OF LONG/LONG AND SHORT SAPHENOUS\nVEIN', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2202', 'VEIN, VARICOSITY, HIGH LIGATION AND COMPLETE\nSTRIPPING/EXCISION OF SHORT SAPHENOUS VEIN', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2203', 'VEIN, VARICOSITY, HIGH LIGATION OF SHORT SAPHENOUS VEIN\nAT SAPHENO-POPLITEAL JUNCTION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2204', 'VEIN, VARICOSITY, MULTIPLE LIGATIONS WITH/WITHOUT LOCAL\nSTRIPPING/EXCISION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2205', 'VEIN, VARICOSITY, SUB-FASCIAL LIGATION OF MULTIPLE\nPERFORATOR (ENDOSCOPIC)', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2206', 'VEIN, VARICOSITY, SUB-FASCIAL LIGATION OF SINGLE DEEP\nPERFORATOR', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.2207', 'VEIN, VARICOSITY, SUB-FASCIAL LIGATION OF SINGLE DEEP\nPERFORATOR (ENDOSCOPIC)', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.2208', 'VEIN, VARIOUS LESIONS, BYPASS/GRAFT', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2209', 'VEIN, VARIOUS LESIONS, ENDOVASCULAR STENT GRAFT/STENT\nPLACEMENT', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2210', 'VEIN, VARIOUS LESIONS, IMAGING GUIDED INSERTION OF NON\nTUNNELLED CENTRAL VENOUS CATHETER', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.2211', 'VEIN, VARIOUS LESIONS, IMAGING GUIDED INSERTION OF\nTUNNELLED CENTRAL VENOUS CATHETER', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.2212', 'VEIN, VARIOUS LESIONS, IMAGING GUIDED PERIPHERAL\nINSERTION OF CENTRAL CATHETER (PICC)', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.2213', 'VEIN, VARIOUS LESIONS, IMAGING GUIDED VENOUS PORT\nINSERTION', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2214', 'VEIN, VARIOUS LESIONS, INSERTION OF CENTRAL VENOUS LINE', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.2215', 'VEIN, VARIOUS LESIONS, INSERTION OF INFERIOR VENA CAVAL\nFILTER', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2216', 'VEIN, VARIOUS LESIONS, INTRA-ARTERIAL INFUSION OF\nARTERIES OF NECK/THORAX/ABDOMEN', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.2217', 'VEIN, VARIOUS LESIONS, LIGATION (INCLUDE REPAIR OF\nARTIFICIAL ARTERIO-VENOUS FISTULA)', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.2218', 'VEIN, VARIOUS LESIONS, PERCUTANEOUS TRANSCATHETER EMBOLISATION OF MORE THAN 2\nVESSELS', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2219', 'VEIN, VARIOUS LESIONS, PERCUTANEOUS TRANSCATHETER\nEMBOLIZATION OF 1 TO 2 VESSELS', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2220', 'VEIN, VARIOUS LESIONS, RETRIEVAL OF INFERIOR VENA CAVAL\nFILTER', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.2221', 'VEIN, VARIOUS LESIONS, SAPHENOL FEMORAL/ACCELO\nFEMORAL BYPASS GRAFT', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2222', 'VEIN-PORTAL, PORTAL HYPERTENSION, BYPASS', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2223', 'VENA CAVA INFERIOR, VARIOUS LESIONS, PLICATION/LIGATION', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2224', 'VITREOUS, INTRAVITREAL INJECTIONS', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.2225', 'VITREOUS, VARIOUS LESIONS, COMPLEX POSTERIOR\nVITRECTOMY (PVR, GRT, TRAUMA)', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2226', 'VITREOUS, VARIOUS LESIONS, POSTERIOR VITRECTOMY (PARS PLANA/ SCLEROTOMY/ LENSECTOMY-EXTRACTION\nWITH INTRA-OCULAR LENS IMPLANT/ ENDOLASER/ MEMBRANE\nPEELS)', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2227', 'VITREOUS, VARIOUS LESIONS, SIMPLE VITRECTOMY (PARS\nPLANA OR VITREOUS WASHOUT)', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2228', 'VITREOUS, VARIOUS LESIONS, VITRECTOMY (PARS\nPLANA/REMOVAL OF SILICONE OIL)', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2229', 'VULVA, ABSCESS, INCISION', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.2230', 'VULVA, ATRESIA/ABSENCE, DETACHMENT OF SKIN PEDICLE\nAFTER VAGINOPLASTY', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.2231', 'VULVA, BARTHOLIN CYST, EXCISION WITH/WITHOUT USE OF\nLASER', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.2232', 'VULVA, BARTHOLIN CYST, INCISION/MARSUPIALIZATION WITH\nOR WITHOUT USE OF LASER', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.2233', 'VULVA, HEMATOMA, EVACUATION <5CM (SIMPLE)', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.2234', 'VULVA, HEMATOMA, EVACUATION > 5CM\n(COMPLICATED/MORE THAN 1)', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.2235', 'VULVA, IMPERFORATE HYMEN, HYMENECTOMY', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.2236', 'VULVA, LABIAL ABNORMALITY, HYMENOPLASTY', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.2237', 'VULVA, LABIAL ABNORMALITY, LABIOPLASTY', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.2238', 'VULVA, LACERATION, DEBRIDEMENT/SUTURE >5CM\n(COMPLICATED/ MORE THAN 1)', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.2239', 'VULVA, MALIGNANT CONDITION WIDE LOCAL EXCISION WITH\nSKIN FLAP CLOSURE', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2240', 'VULVA, MALIGNANT CONDITION, RADICAL VULVECTOMY +\nGROIN + PELVIC NODE DISSECTION', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2241', 'VULVA, MALIGNANT CONDITION, RADICAL VULVECTOMY WITH GROIN DISSECTION AND WITH OR WITHOUT SKIN\nFLAP CLOSURE', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2242', 'VULVA, MALIGNANT CONDITION, SIMPLE VULVECTOMY +\nGROIN DISSECTION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2243', 'VULVA, MALIGNANT CONDITION, SIMPLE VULVECTOMY WITH\nSKIN FLAP CLOSURE', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2244', 'VULVA, MALIGNANT CONDITION, WIDE LOCAL EXCISION', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2245', 'VULVA, TIGHT INTROITUS, FENTON\'S OPERATION', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.2246', 'VULVA, WARTS, LASER VAPORISATION', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.2247', 'VULVA/VAGINA, VARIOUS LESIONS, COLPOSCOPY AND LASER\nVAPORISATION', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.2248', 'WEDGE RESECTION OF TOE NAIL (MULTIPLE TOES), MEDIAL\nAND/OR LATERAL, SIMPLE OR COMPLEX', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.2249', 'WEDGE RESECTION OF TOE NAIL (SINGLE TOE), MEDIAL AND/OR\nLATERAL, SIMPLE OR COMPLEX', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.2250', 'WRIST, AVASCULAR NECROSIS, RADIAL RECESSION/ULNAR\nLENGTHENING,', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2251', 'WRIST, DISTAL OR RADIAL ULNAR JOINT (DRUJ) INSTABILITY,\nCOMPLEX LIGAMENT RECONSTRUCTION', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2252', 'WRIST, DISTAL OR RADIAL ULNAR JOINT (DRUJ) INSTABILITY,\nDARRACH OR SIMILAR PROCEDURE', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.2253', 'WRIST, DISTAL RADIUS FRACTURE, M&R, PERCUTANEOUS\nPINNING', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2254', 'WRIST, DISTAL RADIUS FRACTURE, OPEN REDUCTION AND INTERNAL FIXATION (ORIF) (COMPLEX, WITH AUTOLOGOUS\nBONE GRAFT)', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2255', 'WRIST, DISTAL RADIUS FRACTURE, OPEN REDUCTION AND INTERNAL FIXATION (ORIF) (SIMPLE OPEN\nREDUCTION AND PINNING)', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2256', 'WRIST, DISTAL RADIUS FRACTURE, OPEN REDUCTION AND INTERNAL FIXATION (ORIF) (WITH ULNAR HEAD/STYLOID\nFIXATION/TFCC REPAIR)', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2257', 'WRIST, JOINT, VARIOUS LESIONS, PROXIMAL ROW\nCARPECTOMY OR 4 CORNER FUSION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2258', 'WRIST, LUNATE DISLOCATION/PERILUNATE DISLOCATION/COMPLEX LIGAMENT INJURY, RECONSTRUCTION', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2259', 'WRIST, SCAPHOID FRACTURE, OPEN REDUCTION AND INTERNAL\nFIXATION (ORIF) WITH BONE GRAFTING', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2260', 'WRIST, SCAPHOID OR CARPUS, VASCULARISED BONE GRAFT', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2261', 'WRIST, THERAPEUTIC ARTHROSCOPY', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2262', 'WRIST, ULNAR HEAD/STYLOID FRACTURE, PERCUTANEOUS\nPINNING/FIXATION', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.2263', 'WRIST, VARIOUS LESIONS, PRIMARY TOTAL JOINT\nARTHROPLASTY WITH AUGMENTATION, REQUIRING EXTRA IMPLANTS OR BONE GRAFTS, OPEN/MIS/NAVIGATED', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2264', 'WRIST, VARIOUS LESIONS, PRIMARY TOTAL JOINT\nARTHROPLASTY, OPEN/MIS/NAVIGATED', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2265', 'WRIST, VARIOUS LESIONS, REVISION TOTAL JOINT\nARTHROPLASTY, OPEN/MIS/NAVIGATED', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2266', 'ZYGOMA, DOWN FRACTURE, OSTECTOMY/ARTICULAR\nEMINECTOMY/AUGMENTATION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2267', 'ZYGOMA, FRACTURE, ELEVATION', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2268', 'TINDAKAN ANESTESI ASA 1', 899000, 'TINDAKAN OPERATIF'), +('R.TO.2269', 'TINDAKAN ANESTESI ASA 2', 2716000, 'TINDAKAN OPERATIF'), +('R.TO.2270', 'TINDAKAN ANESTESI ASA 3', 6047000, 'TINDAKAN OPERATIF'), +('R.TO.2271', 'AMPUTATION OF PENIS - 64.3', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2272', 'ARTHROSCOPIC ANKLE & FOOT PROCEDURE', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2273', 'AUGMENTATION GENIOPLASTY - 76.68', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2274', 'BURSECTOMY OF HAND - 82.31', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2275', 'CLOSED REDUCTION OF MALAR AND ZYGOMATIC FRACTURE -\n76.71', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2276', 'CLOSED REDUCTION OF MANDIBULAR FRACTURE - 76.75', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2277', 'CLOSED REDUCTION OF MAXILLARY FRACTURE - 76.73', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2278', 'CONSTRUCTION OF PENIS - 64.43', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2279', 'DORSAL OR LATERAL SLIT OF PREPUCE - 64.91', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2280', 'EXCISION OR DESTRUCTION OF LESION OR TISSUE OF SCROTUM\n- 61.3', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2281', 'FITTING OF EXTERNAL PROSTHESIS OF PENIS - 64.94', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2282', 'HYMENOTOMY - 70.11', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2283', 'INCISION AND DRAINAGE OF SCROTUM AND TUNICA\nVAGINALIS - 61.0', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2284', 'INSERTION OF TESTICULAR PROSTHESIS - 62.7', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2285', 'INSERTION OR REPLACEMENT OF INFLATABLE PENILE\nPROSTHESIS - 64.97', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2286', 'INSERTION OR REPLACEMENT OF NON-INFLATABLE PENILE\nPROSTHESIS - 64.95', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2287', 'LOCAL EXCISION OR DESTRUCTION OF LESION OF FACIAL BONE -\n76.2', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2288', 'LOCAL EXCISION OR DESTRUCTION OF LESION OF PENIS - 64.2', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2289', 'MARSUPIALIZATION OF BARTHOLIN\'S GLAND (CYST) - 71.23', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2290', 'OBLITERATION AND TOTAL EXCISION OF VAGINA - 70.4', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2291', 'OPEN OSTEOPLASTY [OSTEOTOMY] OF MANDIBULAR RAMUS -\n76.62', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2292', 'OPEN REDUCTION OF MANDIBULAR FRACTURE - 76.76', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2293', 'OPEN REDUCTION OF MAXILLARY FRACTURE - 76.74', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2294', 'OPERATIONS FOR SEX TRANSFORMATION, NOT ELSEWHERE\nCLASSIFIED - 64.5', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2295', 'OPERATIONS ON CLITORIS - 71.4', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2296', 'OSTEOPLASTY [OSTEOTOMY] OF BODY OF MANDIBLE - 76.63', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2297', 'OTHER FACIAL BONE REPAIR - 76.69', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2298', 'OTHER OPEN REDUCTION OF FACIAL FRACTURE (OPEN\nREDUCTION OF ORBIT RIM OR WALL) - 76.79', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2299', 'OTHER OPERATIONS ON PENIS - 64.98', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2300', 'OTHER RECONSTRUCTION OF MANDIBLE - 76.43', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2301', 'OTHER RECONSTRUCTION OF OTHER FACIAL BONE - 76.46', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2302', 'OTHER REPAIR OF PENIS - 64.49', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2303', 'OTHER REPAIR OF URETHRA - 58.49', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2304', 'OTHER REPAIR OR PLASTIC OPERATIONS ON BONE - 78.4', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2305', 'OTHER TOTAL MANDIBULECTOMY - 76.42', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2306', 'PARTIAL MANDIBULECTOMY - 76.31', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2307', 'REANASTOMOSIS OF URETHRA - 58.44', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2308', 'REDUCTION GENIOPLASTY - 76.67', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2309', 'RELEASE OF CHORDEE - 64.42', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2310', 'REMOVAL OF INTERNAL PROSTHESIS OF PENIS - 64.96', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2311', 'REPAIR OF COLOVAGINAL FISTULA - 70.72', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2312', 'REPAIR OF FISTULA OF VULVA OR PERINEUM - 71.72', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2313', 'REPAIR OF HYPOSPADIAS OR EPISPADIAS - 58.45', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2314', 'REPAIR OF OTHER VAGINOENTERIC FISTULA - 70.74', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2315', 'REPAIR OF RECTOVAGINAL FISTULA - 70.73', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2316', 'REPLANTATION OF PENIS - 64.45', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2317', 'SEGMENTAL OSTEOPLASTY [OSTEOTOMY] OF MAXILLA - 76.65', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2318', 'SUTURE OF LACERATION OF PENIS - 64.41', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2319', 'SUTURE OF LACERATION OF SCROTUM AND TUNICA VAGINALIS\n- 61.41', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2320', 'SUTURE OF LACERATION OF TESTIS - 62.61', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2321', 'SUTURE OF LACERATION OF URETHRA - 58.41', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2322', 'SUTURE OF LACERATION OF VULVA OR PERINEUM - 71.71', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2323', 'TOTAL OSTECTOMY OF OTHER FACIAL BONE WITH\nSYNCHRONOUS RECONSTRUCTION - 76.44', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2324', 'TOTAL OSTEOPLASTY [OSTEOTOMY] OF MAXILLA - 76.66', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2325', 'URETHRAL MEATOTOMY - 58.1', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2326', 'VAGINAL CONSTRUCTION - 70.61', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2327', 'VAGINAL CONSTRUCTION WITH GRAFT OR PROSTHESIS - 70.63', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2328', 'VAGINAL SUSPENSION AND FIXATION - 70.77', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2329', '(AORTO)CORONARY BYPASS OF FOUR OR MORE CORONARY\nARTERIES - 36.14', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.2330', '(AORTO)CORONARY BYPASS OF ONE CORONARY ARTERY - 36.11', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.2331', '(AORTO)CORONARY BYPASS OF THREE CORONARY ARTERIES -\n36.13', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.2332', '(AORTO)CORONARY BYPASS OF TWO CORONARY ARTERIES -\n36.12', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.2333', 'ABDOMINAL DRAINAGE, GA - 54.25', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.2334', 'ABDOMINAL-CORONARY ARTERY BYPASS - 36.17', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.2335', 'ABDOMINOCENTESIS, LA - 54.91', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.2336', 'ABDOMINOPERINEAL PULL THROUGH ( MALFORMASI\nANORECTAL), GA - 54.11, 45.95', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.2337', 'ADENOIDEKTOMI - 28.6', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.2338', 'ADO DISERTAI DENGAN TEE 2D INTRAOPERATIF NON BEDAH -\n39.79', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2339', 'ADVANCEMENT OF TENDON - 83.71', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2340', 'ADVANCEMENT OF TENDON OF HAND - 82.51', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2341', 'ALCOHOL SEPTAL ABLATION - 37.34', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2342', 'AMPUTATION ABOVE KNEE - 84.17', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2343', 'AMPUTATION AND DISARTICULATION OF FINGER - 84.01', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2344', 'AMPUTATION AND DISARTICULATION OF THUMB - 84.02', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2345', 'AMPUTATION OF ANKLE THROUGH MALLEOLI OF TIBIA AND\nFIBULA - 84.14', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2346', 'AMPUTATION OF TOE - 84.11', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2347', 'AMPUTATION THROUGH FOOT - 84.12', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2348', 'AMPUTATION THROUGH FOREARM - 84.05', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2349', 'AMPUTATION THROUGH HAND - 84.03', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2350', 'AMPUTATION THROUGH HUMERUS - 84.07', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2351', 'AMPUTATION, NOT OTHERWISE SPECIFIED - 84.91', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2352', 'AMVO - 35.55', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.2353', 'ANAL FISTULA/SINUS OPERATION -', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2354', 'ANALISIS HEADACHE DIARY', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2355', 'ANASTOMOSIS SARAF ASESORIUS-FASIALIS - 04.72', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2356', 'ANASTOMOSIS SARAF ASESORIUS-HIPOGLOSUS - 04.73', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2357', 'ANASTOMOSIS SARAF HIPOGLOSUS-FASIALIS - 04.71', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2358', 'ANGIO & STENTING A. VERTEBRALIS', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2359', 'ANGIOGRAFI - SPINAL', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2360', 'ANGIOGRAFI - SPINAL DENGAN ANESTESI', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2361', 'ANGIOGRAFI 4 VESSEL - CRANIOCERVICAL', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2362', 'ANGIOGRAFI 4 VESSEL - CRANIOCERVICAL DENGAN ANESTESI', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2363', 'ANGIOGRAFI 6 VESSEL - CRANIOCERVICAL', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2364', 'ANGIOGRAFI 6 VESSEL - CRANIOCERVICAL DENGAN ANESTESI', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2365', 'ANGIOGRAFI SUPERSELEKTIF', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2366', 'ANGIOPLASTI + STENTING CAROTIS', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2367', 'ANGIOPLASTI + STENTING INTRAKRANIAL', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2368', 'ANGIOPLASTI A. VERTEBRALIS', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2369', 'ANGIOPLASTI CAROTIS', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2370', 'ANGIOPLASTI INTRAKRANIAL', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2371', 'ANGIOPLASTY OF OTHER NON-CORONARY VESSEL(S) - 39.50', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2372', 'ANKLE & FOOT DEFORMITY RECONSTRUCTION (HALLUX VALGUS, MAL UNION, VARUS VALGUS ANKLE DEFORMITY, DLL)', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2373', 'ANNULOPLASTY - 35.33', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.2374', 'ANOPLASTY - 49.99', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2375', 'ANTERIOR CHAMBER, HYPOPION ASPIRATION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2376', 'ANTERIOR CHAMBER, INTRACAMERAL INJECTION', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2377', 'ANTESTERNAL ESOPHAGEAL ANASTOMOSIS WITH\nINTERPOSITION OF COLON - 42.65', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2378', 'ANTESTERNAL ESOPHAGEAL ANASTOMOSIS WITH\nINTERPOSITION OF SMALL BOWEL - 42.63', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2379', 'ANTESTERNAL ESOPHAGOESOPHAGOSTOMY - 42.61', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2380', 'ANTESTERNAL ESOPHAGOGASTROSTOMY - 42.62', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2381', 'ANTROTOMI INTRANASAL (FESS) - 22.2', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2382', 'AORTA-ILIAC-FEMORAL BYPASS - 39.25', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2383', 'AORTA-RENAL BYPASS - 39.24', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2384', 'AORTA-SUBCLAVIAN-CAROTID BYPASS - 39.22', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2385', 'AORTOCORONARY BYPASS FOR HEART REVASCULARIZATION,\nNOT OTHERWISE SPECIFIED - 36.10', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.2386', 'APPENDEKTOMI + PENYULIT PER-LAPAROSKOPIK, GA - 54.21,\n54.51, 47.01', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2387', 'APPENDEKTOMI DGN KOMPLIKASI, GA - 54.11, 54.59, 47.09', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2388', 'APPENDEKTOMI ELEKTIF / TANPA KOMPLIKASI, GA - 47.09', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2389', 'APPENDEKTOMI LAPAROSKOPIK, GA - 47.01', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2390', 'APPENDEKTOMI, GA - 47.09', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2391', 'ARITENOIDEKTOMI - 30.29', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2392', 'ARTERIAL CATHETERIZATION - 38.91', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2393', 'ARTERIAL OCCLUSION - SACRIFICE', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2394', 'ARTERIOVENOSTOMY FOR RENAL DIALYSIS - 39.27', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2395', 'ARTHROPLASTY OF CARPOCARPAL OR CARPOMETACARPAL\nJOINT WITH IMPLANT - 81.74', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2396', 'ARTHROPLASTY OF CARPOCARPAL OR CARPOMETACARPAL\nJOINT WITHOUT IMPLANT - 81.75', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2397', 'ARTHROPLASTY OF METACARPOPHALANGEAL AND\nINTERPHALANGEAL JOINT WITH IMPLANT - 81.71', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2398', 'ARTHROPLASTY OF METACARPOPHALANGEAL AND\nINTERPHALANGEAL JOINT WITHOUT IMPLANT - 81.72', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2399', 'ARTIFICIAL PNEUMOTHORAX FOR COLLAPSE OF LUNG - 33.32', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2400', 'ASO - 35.53', 33261000, 'TINDAKAN OPERATIF'); +INSERT INTO `tarif_rs` (`ID_Tarif_RS`, `Tindakan_RS`, `Tarif_RS`, `Kategori_RS`) VALUES +('R.TO.2401', 'ASO DISERTAI DENGAN TEE 2D INTRA OPERATIF NON BEDAH -\n35. 5', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2402', 'ASPIRATION OF BURSA OF HAND - 82.92', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2403', 'ASPIRATION OF OTHER SOFT TISSUE OF HAND - 82.93', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2404', 'ATIKOTOMI - 20.23', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2405', 'ATTICOANTROSTOMI / MASTOIDEKTOMI MODIFIKASI - 20.49', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2406', 'AVULSI KUKU - 86.23', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.2407', 'BALLON AORTA VULVULOPLASTY (BAV) - 35.96', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2408', 'BALLON ATRIAL SEPTOSTOMY (BAS) - 35.41', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2409', 'BALLON PULMONAL VULVULOPLASTY -', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2410', 'BALLON TEST OCCLUSION', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2411', 'BALLOON ATRIAL SEPTOSTOMY (BAS) (BEDSIDE) - 35.41', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2412', 'BALLOON DILATATION, ESOPHAGEAL STRICTURE - 45.13 & 42.92', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2413', 'BAS (DI CATHLAB) + ANESTESI - 35.41', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2414', 'BEDAH FLAP PERIODONTAL', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.2415', 'BILATERAL LUNG TRANSPLANTATION - 33.52', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2416', 'BILLROTH I & II/ RESEKSI GASTER PARSIAL - 43.6 / 43.7', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2417', 'BIOPSI EKSISI RONGGA MULUT - 29.29', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2418', 'BIOPSI GINJAL ANAK', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2419', 'BIOPSI GINJAL DEWASA', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2420', 'BIOPSI JANTUNG - 37.53', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.2421', 'BIOPSI KELENJAR HIPOFISIS TRANSSFENOID - 07.14', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2422', 'BIOPSI KELENJAR LIUR - 26.12', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2423', 'BIOPSI KELENJAR PARATIROID - 06.13', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2424', 'BIOPSI LESI JINAK SINONASAL DENGAN ENDOSKOPI - 22.11', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2425', 'BIOPSI LIANG TELINGA - 18.12', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.2426', 'BIOPSI NEOPLASMA BASIS LIDAH - 27.24', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2427', 'BIOPSI NEOPLASMA BIBIR - 27.23', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2428', 'BIOPSI NEOPLASMA BRONKUS DENGAN ENDOSKOPI - 33.24', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2429', 'BIOPSI NEOPLASMA CAVUM NASI - 21.22', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2430', 'BIOPSI NEOPLASMA ESOFAGUS DENGAN ENDOSKOPI FLEKSIBEL -\n42.24', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2431', 'BIOPSI NEOPLASMA ESOFAGUS DENGAN ENDOSKOPI RIGID -\n42.24', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2432', 'BIOPSI NEOPLASMA HIPOFARING - 29.12', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.2433', 'BIOPSI NEOPLASMA LARING DENGAN ENDOSKOPI - 31.44', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2434', 'BIOPSI NEOPLASMA LIDAH - 25.02', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2435', 'BIOPSI NEOPLASMA NASOFARING - 29.12', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2436', 'BIOPSI NEOPLASMA PALATUM DURUM - 27.21', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2437', 'BIOPSI NEOPLASMA RONGGA MULUT - 27.24', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2438', 'BIOPSI NEOPLASMA SINONASAL APP BUCOGINGIVAL - 22.61', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2439', 'BIOPSI NEOPLASMA SINONASAL DENGAN ENDOSKOPI - 22.11', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2440', 'BIOPSI NEOPLASMA TRAKEA DENGAN ENDOSKOPI - 31.44', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2441', 'BIOPSI NEOPLASMA UVULA DAN PALATUM MOLE - 27.22', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2442', 'BIOPSI PER-LAPAROTOMI - 54.11 & 54.4', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2443', 'BIOPSI PROSTAT TRANSPERINEAL', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2444', 'BIOPSI PROSTAT TRANSRECTAL', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2445', 'BIOPSI REKTUM, GA - 48.25', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2446', 'BIOPSI TELINGA TENGAH DAN DALAM - 20.32', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2447', 'BIOPSI TERBUKA LARING ATAU TRAKEA - 31.45', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2448', 'BIOPSI TONSIL DAN ADENOID - 28.11', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2449', 'BIOPSY OF BLOOD VESSEL - 38.21', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2450', 'BIOPSY OF CHEST WALL - 34.23', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2451', 'BIOPSY OF DIAPHRAGM - 34.27', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2452', 'BIOPSY OF HEART - 37.25', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2453', 'BIOPSY OF LYMPHATIC STRUCTURE - 40.11', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2454', 'BIOPSY OF PERICARDIUM - 37.24', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2455', 'BLADDER DISTROPHY WITH PELVIC DIASTASIS, OPEN\nREDUCTION + RING EXTERNAL FIXATION', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2456', 'B-LYNCH - 69.99', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2457', 'BONE / SOF TISSUE MARGINAL EXCISION', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2458', 'BONE GRAFT TO FACIAL BONE - 76.80', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2459', 'BONY BLOCK FOR JOINT INSTABILITY UPPER LIMB', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2460', 'BRANCHIAL CYST, EXCISION - 29.2', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2461', 'BRONKOSKOPI - 33.23', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2462', 'BRONKOSKOPI EBUS - TBNA - 33.27', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.2463', 'BRONKOSKOPI FIBER OPTIK - 33.22', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2464', 'BRONKOSKOPI MELALUI STOMA - 33.21', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2465', 'BUNIONECTOMY WITH SOFT TISSUE CORRECTION AND\nARTHRODESIS - 77.52', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2466', 'BUNIONECTOMY WITH SOFT TISSUE CORRECTION AND\nOSTEOTOMY OF THE FIRST METATARSAL - 77.51', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2467', 'BURSECTOMY - 83.5', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2468', 'BURSOTOMY OF HAND - 82.03', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2469', 'BUSINASI ANUS, GA - 48.99', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.2470', 'CALDWELL LUC - 22.61', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.2471', 'CANNULATION OF THORACIC DUCT - 40.61', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2472', 'CARDIOPLEGIA - 39.63', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2473', 'CARDIOTOMY - 37.11', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2474', 'CAROTID/VERTEBRAL ARTERI STENTING', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2475', 'CAROTID/VERTEBRAL ARTERI STENTING DENGAN ANESTESI', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2476', 'CAVAL-PULMONARY ARTERY ANASTOMOSIS - 39.21 BCPS /\nGLENN SHUNT', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2477', 'CENTRAL VENOUS CATHETER PLACEMENT WITH GUIDANCE -\n38.97', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2478', 'CENTRAL VENOUS LINE CARDIOVASCULAR CARE UNIT - 89.62', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.2479', 'CENTRALIZATION RADIAL CLUB HAND', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2480', 'CEREBRAL PALSY, SINGLE EVENT MULTILEVEL SURGERY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2481', 'CHOLANGIOSCOPY IN HEPATO PANCREATICO BILIARY\nPROCEDUR (MIS/OPEN) (OTHER DIAGNOSTIC PROCEDURES ON BILIARY TRACT) - 51.19', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2482', 'CHOLECYSTECTOMY, LAPAROSCOPY - 51.23', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2483', 'CHOLECYSTECTOMY, OPEN - 51.22', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2484', 'CIRCUMCISI, GA - 64.0', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.2485', 'CLIPPING OF ANEURYSM - 39.51', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2486', 'CLOACOSCOPY - 70.21, 57.32, 48.23', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.2487', 'CLOSED OSTEOPLASTY [OSTEOTOMY] OF MANDIBULAR RAMUS -\n76.61', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2488', 'CLOSED REDUCTION OF DISLOCATION OF HAND AND FINGER -\n79.74', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2489', 'CLOSED REDUCTION OF TEMPOROMANDIBULAR DISLOCATION -\n76.82', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2490', 'CLOSURE OF BRONCHIAL FISTULA - 33.42', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2491', 'CLOSURE OF EXTERNAL FISTULA OF TRACHEA - 31.72', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2492', 'CLOSURE OF FISTULA OF DIAPHRAGM - 34.83', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2493', 'CLOSURE OF FISTULA OF LARYNX - 31.62', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2494', 'CLOSURE OF FISTULA OF THORACIC DUCT - 40.63', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2495', 'CLOSURE OF LACERATION OF LUNG - 33.43', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2496', 'CLOSURE OF OTHER FISTULA OF THORAX - 34.73', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2497', 'CLOSURE OF OTHER FISTULA OF TRACHEA - 31.73', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2498', 'CLOSURE OF OTHER FISTULA OF URETHRA - 58.43', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2499', 'CLOSURE OF THORACOSTOMY - 34.72', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2500', 'CLOSURE OF URETHROSTOMY - 58.42', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2501', 'CO ARCTATIO BALLON + STENTING - 35.96', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2502', 'COARCTATIO AORTA STENTING TRANSKATETER + ANESTESI -\n36.06', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2503', 'COILING ANEURISMA (STENT-ASSISTED ATAU BALLOON-\nASISTED)', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2504', 'COILING ANEURISMA KOMPLEKS', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2505', 'COILING ANEURISMA MULTIPLE', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2506', 'COILING ANEURISMA SIMPEL', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2507', 'COLLING ANEURISMA INTRAKRANIAL', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2508', 'COMBINED HEART-LUNG TRANSPLANTATION - 33.6', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2509', 'COMPLETE SUBSTERNAL THYROIDECTOMY - 06.52', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2510', 'CONDUIT STENTING PERKUTAN + ANESTESI - 35.9', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2511', 'CONGENITAL PSEUDOARTHROSIS OF TIBIA, PALEY CROSSUNION\nPROCEDURE', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2512', 'CONJUNCTIVA, CONJUNCTIVAL RESECTION', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2513', 'CONJUNCTIVA, POSTERIOR SUBTENON INJECTION', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.2514', 'CONTROL OF HEMORRHAGE FOLLOWING VASCULAR SURGERY -\n39.41', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2515', 'CONTROL OF HEMORRHAGE, NOT OTHERWISE SPECIFIED - 39.98', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2516', 'CORECTIVE OSTEOTOMY MALUNION MULTIPLE UPOER LIMB', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2517', 'CORECTIVE OSTEOTOMY MALUNION SINGLE UPPER LIMB', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2518', 'CORNEA, AMNIOTIC MEMBRANE TRANSPLANTATION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2519', 'CORNEA, ANTERIOR STROMAL PUNCTURE', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.2520', 'CORNEA, INTRAL STROMAL INJECTION', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.2521', 'CREATION OF CONDUIT BETWEEN ATRIUM AND PULMONARY\nARTERY - 35.94', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.2522', 'CREATION OF CONDUIT BETWEEN LEFT VENTRICLE AND AORTA -\n35.93', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.2523', 'CREATION OF CONDUIT BETWEEN RIGHT VENTRICLE AND\nPULMONARY ARTERY - 35.92', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.2524', 'CREATION OF PLEUROPERITONEAL SHUNT - 34.05', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2525', 'CREATION OF SEPTAL DEFECT IN HEART - 35.42', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.2526', 'CROWN LENGHTENING DENGAN ASTEOKTOMI', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.2527', 'CROWN LENGHTENING TANPA OSTEOKTOMI', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.2528', 'CRYPTECTOMY / FISTULECTOMY, GA - 49.12', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.2529', 'CUCI TRAKEA DAN BRONKUS - 96.56', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2530', 'CYSTOJEJENOSTOMI, ROUX EN Y, PSEUDOKISTA PANKREAS -\n52.4, 45.91', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2531', 'DAKRIOSISTORINOSTOMI (DCR) - 04.42', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2532', 'DAWO / SAWO - 22.01', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.2533', 'DECOMPRESSION ENDOLYMPATIC SAC EXPOSURE - 20.93', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2534', 'DECORTICATION OF LUNG - 34.51', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2535', 'DEKOMPRESI SARAF FASIALIS - 04.42', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2536', 'DEKOMPRESI SARAF OPTIKUS - 04.42', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2537', 'DELAYED SUTURE OF FLEXOR TENDON OF HAND - 82.42', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2538', 'DELAYED SUTURE OF OTHER TENDON OF HAND - 82.43', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2539', 'DELAYED SUTURE OF TENDON - 83.62', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2540', 'DETORSI TESTIS, GA - 62.99', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.2541', 'DEVASCULARISATION OPERATION - 44.99', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2542', 'DEVELOPMENTAL DYSLPASIA OF HIP OSTEOTOMY OF HIP', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2543', 'DEVELOPMENTAL DYSLPASIA OF HIP OSTEOTOMY OF PROXIMAL\nFEMUR', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2544', 'DEVELOPMENTAL DYSLPASIA OF HIP, CLOSED REDUCTION +\nCAST', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2545', 'DEVELOPMENTAL DYSLPASIA OF HIP, OPEN REDUCTION + CAST', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2546', 'DILATASI DUKTUS FRONTONASAL - 96.21', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2547', 'DILATASI ESOFAGUS - 42.92', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2548', 'DILATASI KATUP AORTA (BALON AORTIC VALVULOTOMY /\nVALVULOPLASTY) DENGAN ANESTESI - 35.01', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2549', 'DILATASI KATUP MITRAL (BALON MITRAL VALVULOTOMY /\nVALVULOPLASTY) DENGAN TRANS ESOFAGEAL EKOKARDIOGRAFI (TEE) GUIDING DAN ANESTESI - 35.02', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2550', 'DILATASI KATUP PULMONAL (BALON PULMONAL VALVOTOMY) PADA CRITICAL PULMONARY STENOSIS + ANESTESI - 35.03', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2551', 'DILATASI KATUP PULMONAL (BALON PULMONAL VALVULOTOMY / VALVULOPLASTY) DENGAN ANESTESI - 35.03', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2552', 'DISARTICULATION OF ANKLE - 84.13', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2553', 'DISARTICULATION OF ELBOW - 84.06', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2554', 'DISARTICULATION OF KNEE - 84.16', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2555', 'DISARTICULATION OF WRIST - 84.04', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2556', 'DISEKSI LEHER RADIKAL - 40.42', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2557', 'DISEKSI LEHER RADIKAL MODIFIKASI - 40.41', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2558', 'DISEKSI LEHER SELEKTIF - 40.3', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2559', 'DIVERTIKULEKTOMI FARING - 29.32', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2560', 'DIVISION OF LARYNGEAL NERVE - 31.91', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2561', 'DIVISION OF MUSCLE OF HAND - 82.19', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2562', 'DIVISION OF PENILE ADHESIONS - 64.93', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2563', 'DORSUMSISI ANAK', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2564', 'DORSUMSISI DEWASA', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2565', 'DOUBLE INTERNAL MAMMARY-CORONARY ARTERY BYPASS -\n36.16', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.2566', 'DRAINAGE EKSTERNA KASUS BILIARIS, GA - 51.04', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2567', 'DRAINAGE EKSTERNA KISTA PANKREAS TERINFEKSI / IMMATURE\n- 52.01', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2568', 'DRAINAGE INTERNA KASUS BILIARIS, GA - 51.36', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2569', 'DSA KRANIOSERVIKAL', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2570', 'DSA SPINAL', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2571', 'DUODENODUODENOSTOMY, DUODENAL OBSTRUCTION - 45.90', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2572', 'DUODENOJEJUNOSTOMY, DUODENAL OBSTRUCTION - 45.90', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2573', 'EKSISI BAKER CYST, GA - 83.31', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2574', 'EKSISI DIVERTIKULUM ESOFAGUS - 42.31', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2575', 'EKSISI DUKTUS TIROGLOSUS - 06.7', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2576', 'EKSISI FISTEL / ABSES PREAURICULAR - 18.21', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.2577', 'EKSISI GANGLION, UPPER LIMB, GA - 83.31', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2578', 'EKSISI GRANULOMA UMBILICALIS - 54.3', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2579', 'EKSISI HEMANGIOMA BESAR/ MULTIPLE, GA - 86.4', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2580', 'EKSISI HEMANGIOMA DENGAN SKIN GRAFT STSG/FTSG, GA -\n86.4, 86.69', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2581', 'EKSISI HEMANGIOMA KECIL, GA - 86.3', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2582', 'EKSISI KISTA DUKTUS KOLEDOKUS + ROUX EN Y - 51.63, 51.37', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2583', 'EKSISI KULIT LUAS - 86.4', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2584', 'EKSISI LESI DI FARING - 29.39', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2585', 'EKSISI LESI DI TONSIL DAN ADENOID - 28.92', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2586', 'EKSISI LESI HIDUNG - 21.30', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.2587', 'EKSISI LESI LARING (PAPILOMA, NODUL) - 30.09', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2588', 'EKSISI LESI LIANG TELINGA - 18.29', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.2589', 'EKSISI LESI NEOPLASMA PALATUM DURUM - 27.31', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2590', 'EKSISI LESI TELINGA TENGAH - 20.51', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2591', 'EKSISI LESI TRAKEA - 31.5', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2592', 'EKSISI LUAS LIANG TELINGA - 18.31', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2593', 'EKSISI LUAS NEOPLASMA PALATUM DURUM - 27.32', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2594', 'EKSISI NEOPLASMA LARING DENGAN LASER - 31.69', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2595', 'EKSISI NEOPLASMA TELINGA - 18.12', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2596', 'EKSISI NEUROMA AKUSTIK - 04.01', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2597', 'EKSISI PARSIAL KELENJAR HIPOFISIS TRANSSFENOID - 07.62', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2598', 'EKSISI POLIP REKTI, GA - 48.35', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2599', 'EKSISI PSEUDOKISTA PANKREAS - 52.5', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2600', 'EKSISI TAG TONSIL - 28.4', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2601', 'EKSISI TERATOMA RETROPERITONEAL - 59.00', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2602', 'EKSISI TIROID LINGUAL - 06.6', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2603', 'EKSISI TONSIL LINGUAL - 28.3', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2604', 'EKSISI TOTAL KELENJAR HIPOFISIS TRANSSFENOID - 07.65', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2605', 'EKSISI UVULA - 27.72', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2606', 'EKSISI, GA - 83.39', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2607', 'EKSISI, LIGASI, KAUTERISASAI POLIP PER-KOLONOSKOPI - 48.36', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2608', 'EKSPLORASI ABSES MULTIPEL - 28.0', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2609', 'EKSPLORASI DAN REPARASI TRAUMA SARAF KRANIAL/PERIFER -\n04.76', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2610', 'EKSPLORASI LAPARATOMI - 54.11', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2611', 'EKSTIRPASI / EKSISI +/- STRIPPING, GA - 86.4', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2612', 'EKSTIRPASI / EKSISI, GA - 83.39', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2613', 'EKSTIRPASI ANGIOFIBROMA NASOFARING - 29.39', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2614', 'EKSTIRPASI KELENJAR SUBLINGUAL PARSIAL - 26.31', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2615', 'EKSTIRPASI KELENJAR SUBLINGUAL TOTAL - 26.32', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2616', 'EKSTIRPASI KELENJAR SUBMANDIBULA PARSIAL - 26.31', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2617', 'EKSTIRPASI KELENJAR SUBMANDIBULA TOTAL - 26.32', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2618', 'EKSTIRPASI KISTA BRAKIAL - 29.2', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2619', 'EKSTIRPASI MASSA SINONASAL DENGAN PENDEKATAN\nENDOSKOPI - 21.32', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2620', 'EKSTRAKSI BENDA ASING BRONKUS - 98.15', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2621', 'EKSTRAKSI BENDA ASING ESOFAGUS - 98.02', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2622', 'EKSTRAKSI BENDA ASING FARING - 98.13', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.2623', 'EKSTRAKSI BENDA ASING HIDUNG - 98.12', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.2624', 'EKSTRAKSI BENDA ASING LARING - 98.14', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2625', 'EKSTRAKSI BENDA ASING MULUT - 98.01', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.2626', 'EKSTRAKSI BENDA ASING TELINGA - 98.11', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.2627', 'EKSTRAKSI BENDA ASING TONSIL / ADENOID DENGAN INSISI -\n28.91', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2628', 'EKSTRAKSI BENDA ASING TRAKEA - 98.15', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2629', 'ELECTROPHYSIOLOGY STUDY / EPSL - 37.26', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2630', 'ELECTROPHYSIOLOGY STUDY / EPSL - 37.27', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2631', 'EMBOLISASI AVF KOMPLEKS', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2632', 'EMBOLISASI AVF SIMPLE', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2633', 'EMBOLISASI BALLON', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2634', 'EMBOLISASI BRAIN AVM KOMPLEKS KOMBINASI\nTRANSARTERIAL-TRANSVENA', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2635', 'EMBOLISASI BRAIN AVM KOMPLEKS TRANSARTERIAL', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2636', 'EMBOLISASI BRAIN AVM SIMPEL', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2637', 'EMBOLISASI CCF KOMPLEKS - BALLONING / COIL', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2638', 'EMBOLISASI CCF SIMPLE - BALLLOONING', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2639', 'EMBOLISASI CEREBRAL-GLUE', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2640', 'EMBOLISASI GLUE', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2641', 'EMBOLISASI KASUS TRAUMA NEUROVASKULAR', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2642', 'EMBOLISASI KASUS TUMOR OTAK HIPERVASKULER', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2643', 'EMBOLISASI ONYX', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2644', 'EMBOLISASI PERIOPERATIF', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2645', 'EMBOLISASI SPINAL AVM/AVF', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2646', 'EMBOLISASI SPINAL KOMPLEKS', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2647', 'EMBOLISASI SPINAL SIMPEL', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2648', 'EMBOLISASI TUMOR KOMPLEKS', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2649', 'EMBOLISASI TUMOR SIMPLE', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2650', 'EMBOLISASI/COILING FISTULA - 39.79', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2651', 'ENDARTERECTOMY, ABDOMINAL ARTERIES - 38.16', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2652', 'ENDARTERECTOMY, AORTA - 38.14', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2653', 'ENDARTERECTOMY, LOWER LIMB ARTERIES - 38.18', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2654', 'ENDARTERECTOMY, OTHER THORACIC VESSELS - 38.15', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2655', 'ENDARTERECTOMY, OTHER VESSELS OF HEAD AND NECK - 38.12', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2656', 'ENDARTERECTOMY, UNSPECIFIED SITE - 38.10', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2657', 'ENDARTERECTOMY, UPPER LIMB VESSELS - 38.13', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2658', 'ENDORECTAL PULL THROUGH (SOAVE- BOLLEY PROCEDURE) -\n48.41', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2659', 'ENDOSKOPI NASOFARINGEKTOMI - 29.39', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2660', 'ENDOVASCULAR (TOTAL) EMBOLIZATION OR OCCLUSION OF\nHEAD AND NECK VESSELS - 39.72', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2661', 'ENDOVASCULAR EMBOLIZATION OR OCCLUSION OF VESSEL(S)\nOF HEAD OR NECK USING BARE COILS - 39.75', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2662', 'ENDOVASCULAR EMBOLIZATION OR OCCLUSION OF VESSEL(S) OF HEAD OR NECK USING BIOACTIVE COILS - 39.76', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2663', 'ENDOVASCULAR IMPLANTATION OF BRANCHING OR\nFENESTRATED GRAFT(S) IN AORTA - 39.78', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2664', 'ENDOVASCULAR IMPLANTATION OF GRAFT IN THORACIC AORTA\n- 39.73', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2665', 'ENDOVASCULAR IMPLANTATION OF OTHER GRAFT IN\nABDOMINAL AORTA - 39.71', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2666', 'ENDOVASCULAR REMOVAL OF OBSTRUCTION FROM HEAD AND\nNECK VESSEL(S) - 39.74', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2667', 'ENLARGEMENT OF EXISTING ATRIAL SEPTAL DEFECT - 35.41', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.2668', 'EPIDURAL STEROID INJECTION (>1 LEVEL)', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.2669', 'EPIDURAL STEROID INJECTION (SINGLE LEVEL)', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.2670', 'EPIGLOTIKTOMI - 30.21', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2671', 'ESOFAGEAL MANOMETRI - 89.32', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2672', 'ESOFAGOSKOPI - 42.23', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2673', 'ESOFAGOSTOMI - 42.10', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2674', 'ESOFAGOSTOMI SERVIKAL - 42.11', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2675', 'ESOFAGOTOMI 1/3 PROKSIMAL - 42.0', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2676', 'ESOPHAGEAL REPLACEMENT PROCEDURE, ESOPHAGEAL\nATRESIA, COLONIC TRANSPOSITION - 42.55', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.2677', 'ESOPHAGEAL REPLACEMENT PROCEDURE, ESOPHAGEAL\nATRESIA, GASTRIC PULL-UP - 42.52 / 42.62', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2678', 'ESOPHAGECTOMY, NOT OTHERWISE SPECIFIED - 42.40', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2679', 'ESOPHAGOMYOTOMY (HELLER), GA - 42.7', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2680', 'ESOPHAGOSTOMY + GASTROSTOMY, ESOPHAGEAL ATRESIA, GA\n- 42.11 & 43.19', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2681', 'ESOPHAGOSTOMY + GASTROSTOMY, ESOPHAGEAL ATRESIA, LA -\n42.11 & 43.19', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2682', 'ESOPHAGOSTOMY, ESOPHAGEAL ATRESIA, GA - 42.11', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2683', 'ESOPHAGOSTOMY, ESOPHAGEAL ATRESIA, LA - 42.11', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2684', 'ETMOIDEKTOMI (FESS) - 22.63', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2685', 'ETMOIDEKTOMI EKSTERNAL - 22.51', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2686', 'EVAKUASI CAIRAN PERICARD - 37.0', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.2687', 'EVAR + PROSTHESIS - 39.71', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2688', 'EVENTRASIO DIAFRAGMA, PLIKASI - 53.81', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2689', 'EXCISION OF ANEURYSM OF HEART - 37.32', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.2690', 'EXCISION OF BONE FOR GRAFT - 77.7', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2691', 'EXCISION OF LESION OF MUSCLE - 83.32', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2692', 'EXCISION OF LESION OF MUSCLE OF HAND - 82.22', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2693', 'EXCISION OF LESION OF OTHER SOFT TISSUE - 83.39', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2694', 'EXCISION OF LESION OF TENDON SHEATH - 83.31', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2695', 'EXCISION OF LESION OF TENDON SHEATH OF HAND - 82.21', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2696', 'EXCISION OF LESION OR TISSUE OF DIAPHRAGM - 34.81', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2697', 'EXCISION OF MUSCLE OR FASCIA FOR GRAFT - 83.43', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2698', 'EXCISION OF MUSCLE OR FASCIA OF HAND FOR GRAFT - 82.34', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2699', 'EXCISION OF OTHER LESION OF SOFT TISSUE OF HAND - 82.23', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2700', 'EXCISION OF TENDON FOR GRAFT - 83.41', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2701', 'EXCISION OF TENDON OF HAND FOR GRAFT - 82.32', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2702', 'EXCISION OR CORRECTION OF BUNIONETTE - 77.54', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2703', 'EXCISION OR DESTRUCTION OF LESION OF CHEST WALL - 34.4', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2704', 'EXCISION OR DESTRUCTION OF LESION OR TISSUE OF\nMEDIASTINUM - 34.3', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2705', 'EXCISION OR DESTRUCTION OF LESION OR TISSUE OF URETHRA -\n58.3', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2706', 'EXCISION OR DESTRUCTION OF OTHER LESION OR TISSUE OF\nHEART, ENDOVASCULAR APPROACH - 37.34', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.2707', 'EXCISION OR DESTRUCTION OF OTHER LESION OR TISSUE OF\nHEART, OPEN APPROACH - 37.33', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.2708', 'EXCISION OR DESTRUCTION OF OTHER LESION OR TISSUE OF\nHEART, THORACOSCOPIC APPROACH - 37.37', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.2709', 'EXCISION OR OTHER DESTRUCTION OF BARTHOLIN\'S GLAND\n(CYST) - 71.24', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2710', 'EXCISION, DESTRUCTION, OR EXCLUSION OF LEFT ATRIAL\nAPPENDAGE (LAA) - 37.36', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.2711', 'EXPLORATION OF TENDON SHEATH OF HAND - 82.01', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2712', 'EXPLORATION OF THYMUS FIELD - 07.91', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2713', 'EXPLORATORY THORACOTOMY - 34.02', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2714', 'EXTRACORPOREAL CIRCULATION AUXILIARY TO OPEN HEART\nSURGERY - 39.61', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2715', 'EXTRACORPOREAL MEMBRANE OXYGENATION - ECMO - 39.65', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2716', 'EXTRACRANIAL-INTRACRANIAL (EC-IC) VASCULAR BYPASS -\n39.28', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2717', 'EYE, GLAUCOMA, GLAUCOMA DRAINAGE DEVICE / TUBE\nIMPLAN GLAUCOMA', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2718', 'EYE, GLAUKOMA, LASER INDOTOMY', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2719', 'FARINGEKTOMI - 29.33', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2720', 'FARINGOTOMI - 29.0', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2721', 'FASCIOTOMY - 83.14', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2722', 'FASCIOTOMY OF HAND - 82,12', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2723', 'FENESTRASI TELINGA DALAM - 20.61', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2724', 'FIBER-OPTIC BRONCHOSCOPY - 33.22', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2725', 'FISTULASASI TRAKEOESOFAGUS - 31.95', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2726', 'FISTULEKTOMI PERIANAL FISTEL, GA - 49.12', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.2727', 'FISTULIZATION OF THORACIC DUCT - 40.62', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2728', 'FLOW DIVERTER INTRAKRANIAL', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2729', 'FLOW DIVERTER STENT', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2730', 'FREE FUNCTIONAL MUSCLE TRANSFER FOR BRACHIAL PLEXUS\nINJURY', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2731', 'FREEING OF VESSEL - 39.91', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2732', 'FRENEKTOMI LINGUAL - 25.92', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.2733', 'FRONTAL SINUSOTOMI - 22.41', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2734', 'FRONTOETMOIDEKTOMI EKSTERNAL - 22.63', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2735', 'FUNDOPLIKASI GASTER - 44.66', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2736', 'GANGLION IMPAR BLOCK', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.2737', 'GANGLIONEKTOMI SFENOPALATINA - 05.21', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2738', 'GASTRIC REPAIR, GASTRIC PERFORATION - 44.41', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2739', 'GASTROPEXY, GASTRIC MALROTATION - 44.64', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2740', 'GASTROTOMY ANAK, GA - 43.19', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2741', 'GASTROTOMY ANAK, LA - 43.19', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2742', 'GASTROTOMY NEONATES, GA - 43.19', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2743', 'GASTROTOMY NEONATES, LA - 43.19', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2744', 'GENIOGLOSSUS ADVANCEMENT - 76.68', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2745', 'GENITOPLASTY (CLITOROPLASTY,VAGINOPLASTY,PHALIOPLASTY), GA - 71.4,\n70.61', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2746', 'GINGIVAL ABLASI', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.2747', 'GINGIVECTOMY / GINGIVOPLASTY', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.2748', 'GLOSEKTOMI PARSIAL / HEMIGLOSEKTOMI - 25.2', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2749', 'GLOSEKTOMI RADIKAL - 25.4', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2750', 'GLOSEKTOMI TOTAL - 25.3', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2751', 'GRAFT OF MUSCLE OR FASCIA - 83.82', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2752', 'GRAFT SARAF KRANIAL / PERIFER - 04.5', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2753', 'HAIR TRANSPLANT BESAR - 86.64', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2754', 'HAIR TRANSPLANT KECIL - 86.64', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2755', 'HAIR TRANSPLANT SEDANG - 86.64', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2756', 'HEART REVASCULARIZATION BY ARTERIAL IMPLANT - 36.2', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.2757', 'HEART TRANSPLANTATION - 37.51', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.2758', 'HECTING KELENJAR TIROID - 06.93', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2759', 'HECTING LASERASI FARING - 29.51', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.2760', 'HECTING LASERASI KELENJAR LIUR - 26.41', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.2761', 'HECTING LASERASI LARING - 27.53', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2762', 'HECTING LASERASI LIDAH - 25.51', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.2763', 'HECTING LASERASI PALATUM - 27.61', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.2764', 'HECTING LASERASI TELINGA LUAR - 18.4', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.2765', 'HEMIKOLEKTOMI DEKSTRA - EXTENDED, GA - 45.79', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2766', 'HEMIKOLEKTOMI DEKSTRA, GA - 45.73', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2767', 'HEMIKOLEKTOMI SINISTRA, GA - 45.75', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2768', 'HEMIKORDEKTOMI - 30.29', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2769', 'HEMILARINGEKTOMI - 30.1', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2770', 'HERNIA DIAFRAGMATIKA, REPAIR HERNIA - 53.72', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2771', 'HYMENORRHAPHY - 70.76', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2772', 'HYPOTHERMIA (SYSTEMIC) INCIDENTAL TO OPEN HEART\nSURGERY - 39.62', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2773', 'IMPLAN KOKLEA - 20.96', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2774', 'IMPLANT OF PULSATION BALLOON - 37.61', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2775', 'IMPLANT OF SINGLE VENTRICULAR (EXTRACORPOREAL)\nEXTERNAL HEART ASSIST SYSTEM - 37.65', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2776', 'IMPLANTASI PACU JANTUNG PERMANEN DUA CHAMBER - 00.50', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2777', 'IMPLANTASI PACU JANTUNG PERMANEN DUA CHAMBER (PPM\nDUAL CHAMBER) - 37.72', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.2778', 'IMPLANTASI PACU JANTUNG PERMANEN SATU CHAMBER -\n00.50', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2779', 'IMPLANTASI PACU JANTUNG PERMANEN SATU CHAMBER (PPM\nSINGLE CHAMBER) - 37.71', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.2780', 'IMPLANTASI PACU JANTUNG SEMENTARA - 00.50', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2781', 'IMPLANTASI PACU JANTUNG SEMENTARA (TPM) - 37.78', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2782', 'IMPLANTATION OF AUTOMATIC CARDIOVERTER/DEFIBRILLATOR\nLEAD(S) ONLY - 37.95', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2783', 'IMPLANTATION OF AUTOMATIC CARDIOVERTER/DEFIBRILLATOR PULSE GENERATOR ONLY - 37.96', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2784', 'IMPLANTATION OF CARDIOMYOSTIMULATION SYSTEM - 37.67', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2785', 'IMPLANTATION OF DIAPHRAGMATIC PACEMAKER - 34.85', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2786', 'IMPLANTATION OF PROSTHETIC CARDIAC SUPPORT DEVICE\nAROUND THE HEART - 37.41', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2787', 'IMPLANTATION OF TOTAL INTERNAL BIVENTRICULAR HEART\nREPLACEMENT SYSTEM - 37.52', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.2788', 'IMPLANTATION OR INSERTION OF BIVENTRICULAR EXTERNAL\nHEART ASSIST SYSTEM - 37.60', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2789', 'IMPLANTATION OR REPLACEMENT OF AUTOMATIC CARDIOVERTER/DEFIBRILLATOR, TOTAL SYSTEM - AICD - 37.94', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2790', 'IMPLANTATION OR REPLACEMENT OF CAROTID SINUS\nSTIMULATION DEVICE, TOTAL SYSTEM - 39.81', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2791', 'IMPLANTATION OR REPLACEMENT OF CAROTID SINUS\nSTIMULATION LEAD(S) ONLY - 39.82', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2792', 'IMPLANTATION OR REPLACEMENT OF CAROTID SINUS\nSTIMULATION PULSE GENERATOR ONLY - 39.83', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2793', 'INCISION AND DRAINAGE OF PALMAR OR THENAR SPACE - 82.04', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2794', 'INCISION OF BRONCHUS - 33.0', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2795', 'INCISION OF CHEST WALL - 34.01', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2796', 'INCISION OF HEART, NOT OTHERWISE SPECIFIED - 37.10', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2797', 'INCISION OF LUNG - 33.1', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2798', 'INCISION OF LYMPHATIC STRUCTURES - 40.0', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2799', 'INCISION OF MEDIASTINUM - 34.1', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2800', 'INCISION OF VESSEL, ABDOMINAL ARTERIES - 38.06', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2801', 'INCISION OF VESSEL, ABDOMINAL VEINS - 38.07', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2802', 'INCISION OF VESSEL, AORTA - 38.04', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2803', 'INCISION OF VESSEL, LOWER LIMB ARTERIES - 38.08', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2804', 'INCISION OF VESSEL, LOWER LIMB VEINS - 38.09', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2805', 'INCISION OF VESSEL, OTHER THORACIC VESSELS - 38.05', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2806', 'INCISION OF VESSEL, OTHER VESSELS OF HEAD AND NECK -\n38.02', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2807', 'INCISION OF VESSEL, UNSPECIFIED SITE - 38.00', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2808', 'INCISION OF VESSEL, UPPER LIMB VESSELS - 38.03', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2809', 'INDUKSI PROSTAGLANDIN ( INDUKSI PERSALINAN DENGAN\nMEDIKAMENTOSA) - 73.4', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.2810', 'INFUNDIBULECTOMY - 35.34', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.2811', 'INITIAL INSERTION OF DUAL-CHAMBER DEVICE - 37.83', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2812', 'INITIAL INSERTION OF SINGLE-CHAMBER DEVICE, NOT SPECIFIED\nAS RATE RESPONSIVE - 37.81', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2813', 'INITIAL INSERTION OF SINGLE-CHAMBER DEVICE, RATE\nRESPONSIVE - 37.82', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2814', 'INJECTION OF SCLEROSING AGENT INTO VEIN - 39.92', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2815', 'INJECTION OF THERAPEUTIC SUBSTANCE INTO BURSA OF HAND -\n82.94', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2816', 'INJECTION OF THERAPEUTIC SUBSTANCE INTO HEART - 37.92', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2817', 'INJECTION OF THERAPEUTIC SUBSTANCE INTO PERICARDIUM -\n37.93', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2818', 'INJECTION OF THERAPEUTIC SUBSTANCE INTO\nTEMPOROMANDIBULAR JOINT - 76.85', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2819', 'INJECTION OF THERAPEUTIC SUBSTANCE INTO TENDON OF\nHAND - 82.95', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2820', 'INJECTION OR INFUSION OF THROMBOLYTIC AGENT (RTPA)', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2821', 'INJEKSI LARING - 31.0', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2822', 'INJEKSI OBAT TEURAPETIK KE TRAKEA - 31.94', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2823', 'INJEKSI TELINGA DALAM - 20.72', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2824', 'INSERTION OF IMPLANTABLE HEART ASSIST SYSTEM - 37.66', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2825', 'INSERTION OF IMPLANTABLE PRESSURE SENSOR WITHOUT LEAD FOR INTRACARDIAC OR GREAT VESSEL HEMODYNAMIC\nMONITORING - 38.26', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2826', 'INSERTION OF INTERCOSTAL CATHETER FOR DRAINAGE - 34.04', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2827', 'INSERTION OF INTERCOSTAL CATHETER FOR DRAINAGE - 34.04', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2828', 'INSERTION OF LEFT ATRIAL APPENDAGE DEVICE - 37.90', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2829', 'INSERTION OF NON-DRUG-ELUTING PERIPHERAL (NON-\nCORONARY) VESSEL STENT(S) - 39.90', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2830', 'INSERTION OF PERMANENT PACEMAKER, INITIAL OR\nREPLACEMENT, TYPE OF DEVICE NOT SPECIFIED - 37.80', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2831', 'INSERTION OF SYNTHETIC IMPLANT IN FACIAL BONE - 76.81', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2832', 'INSERTION OF TEMPORARY NON-IMPLANTABLE\nEXTRACORPOREAL CIRCULATORY ASSIST DEVICE - 37.62', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2833', 'INSERTION OF TEMPORARY TRANSVENOUS PACEMAKER\nSYSTEM - 37.78', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2834', 'INSERTION OF VESSEL-TO-VESSEL CANNULA - 39.93', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2835', 'INSERTION OR REPLACEMENT OF EPICARDIAL LEAD -\nELECTRODE INTO EPICARDIUM - 37.74', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2836', 'INSISI ABSES HIDUNG / SEPTUM - 21.1', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.2837', 'INSISI ABSES PERIANAL, GA - 49.01', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.2838', 'INSISI DAN DRAINAGE ABSES PREAURIKULAR - 18.21', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.2839', 'INSISI DAN KOMPRESI PSEUDOKISTA / HEMATOMA AURIKULA -\n18.09', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2840', 'INSISI DRAINASE ABSES RETROAURIKULAR / MASTOID - 20.21', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2841', 'INSISI DRAINASE ABSES\nTONSIL/PERITONSIL/PARAFARING/RETROFARING - 28.0', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2842', 'INSISI DRAINASE ABSES WAJAH / SUBMANDIBULA / ANGINA\nLUDOVICI - 27.0', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2843', 'INSISI DRAINASE KELENJAR LIUR - 26.0', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.2844', 'INSISI DRAINASE LIANG TELINGA - 18.02', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.2845', 'INSISI DRAINASE/ DEBRIDEMENT ABSES, GA - 86.04', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.2846', 'INSISI PALATUM - 27.1', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2847', 'INSISI UVULA - 27.71', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2848', 'INSISI WEB ESOFAGUS - 42.01', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2849', 'INTERATRIAL STENTING PERKUTAN + ANESTESI - 36.06', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2850', 'INTERATRIAL TRANSPOSITION OF VENOUS RETURN - 35.91', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.2851', 'INTERRUPTION OF THE VENA CAVA - 38.7', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2852', 'INTRA ARTERIAL CEREBRAL STEM CELL', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2853', 'INTRA-ABDOMINAL VENOUS SHUNT - 39.1', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2854', 'INTRAARTERY CEREBRAL STEM CELL', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2855', 'INTRALESIONAL BIOPSY WITH VRIESCOUPE', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2856', 'INTRALESIONAL EXCISION TUMOR', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2857', 'INTRAOPERATIVE CARDIAC PACEMAKER - 39.64', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2858', 'INTRATHORACIC ESOPHAGEAL ANASTOMOSIS WITH\nINTERPOSITION OF COLON - 42.55', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2859', 'INTRATHORACIC ESOPHAGEAL ANASTOMOSIS WITH\nINTERPOSITION OF SMALL BOWEL - 42.53', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2860', 'INTRATHORACIC ESOPHAGEAL ANASTOMOSIS WITH OTHER\nINTERPOSITION - 42.58', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2861', 'INTRATHORACIC ESOPHAGOESOPHAGOSTOMY - 42.51', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2862', 'INTRATHORACIC ESOPHAGOGASTROSTOMY - 42.52', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2863', 'INTRAVASCULAR SPECTROSCOPY - 38.23', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2864', 'INTUBASI DENGAN BRONKOSKOPI FLEKSIBEL - 96.04', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2865', 'IRIGASI SINUS - 22.00', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.2866', 'IRIGASI SINUS DARI OSTIUM ALAMIAH - 22.02', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.2867', 'ISTHMUSEKTOMI - 06.31', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2868', 'IVA (INSPEKSI VISUAL ASETAT) PEMERIKSAAN CERVIX LAINNYA (\nIVA , PAP SMEAR) - 67.19', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.2869', 'JARI SYNDACTYLY (MULTIPLE), EKSISI, GA - 86.85', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2870', 'JARI, POLYDACTYLY, AMPUTASI WITH REKONTRUKSI, GA - 84.01', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2871', 'JARI, SYNDACTYLY (SINGLE), EKSISI, GA - 86.85', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2872', 'JEJUNOSTOMY FEEDING, GA - 46.01', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2873', 'KANALOPLASTI/MEATOPLASTY - 18.6', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2874', 'KATETERISASI ARTERI/VENA PERIFER DILANJUTKAN PIAT - 99.10', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2875', 'KATETERISASI ARTERI/VENA PERIFER DILANJUTKAN\nTROMBOSUCTION - 39.74', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2876', 'KATETERISASI DIAGNOSTIK KORONER - 88.55', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2877', 'KATETERISASI DIAGNOSTIK PEMBULUH DARAH ARTERI /VENA\nPERIFER - 88.40', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2878', 'KATETERISASI DIAGNOSTIK PEMBULUH DARAH ARTERI /VENA\nPERIFER DENGAN IVUS - 88.40', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2879', 'KIMURA PROCEDURE, DUODENAL OBSTRUCTION - 45.90', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2880', 'KISTOGASTROSTOMI, PSEUDOKISTA PANKREAS, LAPAROSKOPI -\n51.39', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2881', 'KISTOGASTROSTOMI, PSEUDOKISTA PANKREAS, OPEN - 52.4', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2882', 'KLITOROPLASTI, GA - 71.4', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2883', 'KOILING EMBOLISASI ARTERI/VENA PERIFER - 39.79', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2884', 'KOLOSTOMI ANAK - 46.11', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2885', 'KOLOSTOMI NEONATUS - 46.11', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2886', 'KOMPRESI BIMANUAL INTERNA/EKSTRNA', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.2887', 'KONKOTOMI - 21.62', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.2888', 'KONTROL EPISTAKSIS DENGAN EKSISI MUKOSA HIDUNG DAN\nGRAFT KULIT KE', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2889', 'KONTROL EPISTAKSIS DENGAN KAUTERISASI DAN TAMPON -\n21.03', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2890', 'KONTROL EPISTAKSIS DENGAN LIGASI ARTERI ETMOID /\nSFENOPALATINA - 21.04', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2891', 'KONTROL EPISTAKSIS DENGAN LIGASI ARTERI MAKSILARIS\nTRANSANTRAL - 21.05', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2892', 'KONTROL EPISTAKSIS DENGAN TAMPON ANTERIOR - 21.01', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.2893', 'KONTROL EPISTAKSIS DENGAN TAMPON POSTERIOR - 21.02', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.2894', 'KONTROL PERDARAHAN PASCA TONSILEKTOMI &\nADENOIDEKTOMI - 28.7', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.2895', 'KORDEKTOMI - 30.22', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2896', 'KOREKSI SCOLIOSIS >90 DERAJAT', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2897', 'KOREKSI SCOLIOSIS 50-90 DERAJAT', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2898', 'KURETASE JARINGAN GRANULASI CAE - 18.02', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2899', 'KURETASE PERIODONTAL PER REGIO', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.2900', 'LABIRINTECTOMY TRANSMASTOID - 20.79', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2901', 'LADD\'S PROCEDURE, MIDGUT MALROTATION - 54.11, 54.59,\n47.19, 46.62', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2902', 'LAPARATOMI APPENDEKTOMI, GA - 54.11, 47.09', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2903', 'LAPARATOMI EXPLORASI / DIAGNOSTIK - 54.11', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2904', 'LAPAROSCOPIC REPAIR OF DIAPHRAGMATIC HERNIA, WITH\nTHORACIC APPROACH - 53.83', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2905', 'LAPAROSKOPI ABLASI ENDOMETRIOSIS - 68.23', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2906', 'LAPAROSKOPI ADHESIOLISIS PADA OVARIUM DAN TUBA - 65.81', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2907', 'LAPAROSKOPI BILATERAL SALPHINGOOVOREKTOMI - 65.63', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2908', 'LAPAROSKOPI DIAGNOSTIK - 54.21', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2909', 'LAPAROSKOPI DIAGNOSTIK - 54.21', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2910', 'LAPAROSKOPI KISTEKTOMI - 65.25', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2911', 'LAPAROSKOPI LHCT - 66.18', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2912', 'LAPAROSKOPI MIEKTOMI - 68.29', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2913', 'LAPAROSKOPI OSHADA - 68.29', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2914', 'LAPAROSKOPI OVARIAN DRILLING - 65.99', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2915', 'LAPAROSKOPI PERITONEUM - 54.51', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2916', 'LAPAROSKOPI RH - 68.61', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2917', 'LAPAROSKOPI TAH-BSO - 68.41', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2918', 'LAPAROSKOPI TUBECTOMY - 66.29', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2919', 'LAPAROSKOPI UNILATERAL SALPHINGOOVOREKTOMI - 65.41', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2920', 'LAPAROSKOPIK DIAGNOSTIK - 54.21', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2921', 'LAPAROTOMI ABDOMINAL PREGNANCY', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2922', 'LAPAROTOMI ADHESIOLISIS - 54 11 & 54.59', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2923', 'LAPAROTOMI ADHESIOLISIS + RESEKSI + ANASTOMOSIS - 54.11\n& 54.59 & 45.62 & 45.91', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2924', 'LAPAROTOMI ADHESIOLISIS + RESEKSI + ANASTOMOSIS,\nNEONATUS - 54.11 & 54.59 & 45.62 & 45.91', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.2925', 'LAPAROTOMI ADHESIOLISIS + RESEKSI + STOMA - 54.11 & 54.59\n& 45.62 & 46.20', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2926', 'LAPAROTOMI ADHESIOLISIS + RESEKSI + STOMA, NEONATUS -\n54.11 & 54.59 & 45.62 & 46.20', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2927', 'LAPAROTOMI ADHESIOLISIS, NEONATUS - 54 11 & 54.59', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2928', 'LAPAROTOMI ASSISTED SWENSON TRANSANAL - 48.50', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2929', 'LAPAROTOMI, AFF PACKING HEPAR, TRAUMA - 50.99', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2930', 'LAPAROTOMI, PACKING HEPAR, TRAUMA - 54.11, 50.69', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2931', 'LARINGEKTOMI PARSIAL - 30.29', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2932', 'LARINGEKTOMI RADIKAL - 30.4', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2933', 'LARINGEKTOMI TOTAL - 30.3', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2934', 'LARINGOFISURE . 31.6', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2935', 'LARINGOSKOPI DIRECT - 31.42', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.2936', 'LASER ENDOVENOUSE VEIN - 39.79', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2937', 'LASER HEMORRHOIDOPLASTY (CONTROL OF HAEMORRHAGE\nFOLLOWING VASCULAR SURGERY) - 39.41', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2938', 'LASER HEMORRHOIDOPLASTY (OTHER PROCEDURES ON\nHEMORRHOIDS) - 49.49', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2939', 'LASER IN ANAL FISTULA - 48.33', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2940', 'LASER LARYNGEAL SURGERY - 31.98', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2941', 'LEPAS TAMPON VAGINA - 97.75', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.2942', 'LIGAMENT TRANSFER FOR JOINT INSTABILITY MUKTIPLE UPPER\nLIMB', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2943', 'LIGAMENT TRANSFER FOR JOINT INSTABILITY UPPER LIMB', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2944', 'LIGASI ARTERI KAROTIS EKSTERNA - 21.06', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2945', 'LIGASI PEMBULUH DARAH TIROID - 06.92', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2946', 'LIGASI TINGGI, HYDROCELE - 61.2', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2947', 'LIGATION AND STRIPPING OF VARICOSE VEINS, ABDOMINAL\nVEINS - 38.57', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2948', 'LIGATION AND STRIPPING OF VARICOSE VEINS, LOWER LIMB\nVEINS - 38.59', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2949', 'LIGATION AND STRIPPING OF VARICOSE VEINS, OTHER\nTHORACIC VESSELS - 38.55', 30237000, 'TINDAKAN OPERATIF'); +INSERT INTO `tarif_rs` (`ID_Tarif_RS`, `Tindakan_RS`, `Tarif_RS`, `Kategori_RS`) VALUES +('R.TO.2950', 'LIGATION AND STRIPPING OF VARICOSE VEINS, OTHER VESSELS\nOF HEAD AND NECK - 38.52', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2951', 'LIGATION AND STRIPPING OF VARICOSE VEINS, UNSPECIFIED\nSITE - 38.50', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2952', 'LIGATION AND STRIPPING OF VARICOSE VEINS, UPPER LIMB\nVESSELS - 38.53', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2953', 'LIGATION OF BRONCHUS - 33.92', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2954', 'LIGATION OF THORACIC DUCT - 40.64', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2955', 'LIP TIE INCISION, GA - 27.91', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.2956', 'LIPOMA, ATHEROMA, EXCISI/EXTIRPASI, LA - 86.3', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.2957', 'LIPOSUCTION BESAR - 86.63', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2958', 'LIPOSUCTION KECIL - 86.63', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.2959', 'LIPOSUCTION SEDANG - 86.63', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2960', 'LISIS PENYEMPITAN TRAKEA / LARING - 31.92', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2961', 'LOBEKTOMI - 06.39', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2962', 'LOBEKTOMI / SEGMENTEKTOMI HEPAR - 50.3', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.2963', 'LOWER BLEPHAROPLASTY - 08.7', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2964', 'LOWER LIMB AMPUTATION, NOT OTHERWISE SPECIFIED - 84.10', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2965', 'LUMBAR SYMPATHECTOMY - 05.23', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2966', 'LUNG TRANSPLANTATION, NOT OTHERWISE SPECIFIED - 33.50', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.2967', 'LUNG VOLUME REDUCTION SURGERY - 32.22', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.2968', 'LYMPH NODE (AXILLARY), VARIOUS LESIONS, EXCISION - 40.51', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2969', 'LYMPHATICS (AXILLARY), DEBULKING - 83.39', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2970', 'LYMPHATICS (AXILLARY), EXCISION - 86.4', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.2971', 'LYMPHATICS (AXILLARY), SCLEROTHERAPY, WITH USG - 39.92', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2972', 'LYMPHATICS (FACE & NECK), CYSTIC HYGROMA, BIOPSY - 40.19', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.2973', 'LYMPHATICS (FACE & NECK), CYSTIC HYGROMA, DEBULKING -\n83.39', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2974', 'LYMPHATICS (FACE & NECK), CYSTIC HYGROMA,\nSCLEROTHERAPY, WITH USG - 39.92', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.2975', 'LYSIS OF ADHESIONS OF HAND - 82.91', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2976', 'LYSIS OF ADHESIONS OF MUSCLE, TENDON, FASCIA, AND BURSA\n- 83.91', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.2977', 'LYSIS OF ADHESIONS OF TRACHEA OR LARYNX - 31.92', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2978', 'MACRODACTYLY RAY AMPUTATION', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.2979', 'MAKSILEKTOMI MEDIAL - 22.31', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2980', 'MAKSILEKTOMI PARSIAL - 76.39', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2981', 'MAKSILEKTOMI RADIKAL - 76.39', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2982', 'MAKSILEKTOMI TERBATAS - 76.39', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2983', 'MAKSILEKTOMI TOTAL - 76.39', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2984', 'MANDIBULEKTOMI PARSIAL - 76.31', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.2985', 'MANDIBULEKTOMI TOTAL - 76.41', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2986', 'MAPCA STENTING TRANSKATETER + ANESTESI - 36.06', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.2987', 'MARSUPIALISASI BARTOLIN - 71.23', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.2988', 'MARSUPIALISASI KISTA KELENJAR LIUR - 26.21', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2989', 'MARSUPIALISASI KISTA LARING - 30.01', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2990', 'MARSUPIALISASI KISTA OVARIUM - 64.21', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.2991', 'MASTOIDEKTOMI RADIKAL - 20.42', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2992', 'MASTOIDEKTOMI REVISI - 20.92', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.2993', 'MASTOIDEKTOMI SEDERHANA - 20.41', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.2994', 'MEDIAL BRACNH BLOCK', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.2995', 'MEDIASTINOSCOPY - 34.22', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.2996', 'MIDFASIAL DEGLOVING - 22.62', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.2997', 'MILES PROCEDURE, GA - 49.6', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.2998', 'MINI FACELIFT - 86.82', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.2999', 'MINIMAL/ LIMITED PSARP - 45.95', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3000', 'MIOTOMI KRIKOFARING - 29.31', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.3001', 'MIRINGOTOMI - 20.09', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.3002', 'MODIFIKASI BOGOTA BAG/SILO BAG, GA - 54.99', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.3003', 'MODIFIKASI BOGOTA BAG/SILO BAG, LA - 54.99', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.3004', 'MOHS MICROGRAPHIC SURGERY BESAR - 86.4', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.3005', 'MOHS MICROGRAPHIC SURGERY KECIL - 86.4', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.3006', 'MOHS MICROGRAPHIC SURGERY SEDANG - 86.4', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.3007', 'MONITORING THROMBOLISIS INTRAVENA', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.3008', 'MUCOCELE/RANULA, EXTIRPATION - 26.29', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.3009', 'MUSCLE TRANSFER OR TRANSPLANTATION - 83.77', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3010', 'MUSCULAR DISTROPHY, OPEN BIOPSY', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3011', 'MYOTOMY OF HAND - 82.02', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3012', 'NASOFARINGEKTOMI - 29.39', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.3013', 'NEKROTOMI, GA - 86.22', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.3014', 'NERVE TRANSFER PROCEDURE FOR NERVE INJURY', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3015', 'NEUREKTOMI POSTERIOR - 05.25', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.3016', 'OBLITERASI MASTOID/PENUTUPAN FISTEL MASTOID - 19.9', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.3017', 'OBTURATOR INTERIN RESIK AKRILIK MODIFIKASI SILIKON\nDENGAN HOLLOW BULP', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.3018', 'OKLUSI ASD DENGAN AMPLATZER - 35.52', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3019', 'OKLUSI PDA DENGAN AMPLATZER, COIL, PFM, ADO2, GA - 39.79', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3020', 'OKLUSI VSD DENGANAMPLATZER, NIT, LIFETECH, - 35.55', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3021', 'OKLUSI VSD DENGANAMPLATZER, NIT, LIFETECH, - 35.55', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3022', 'OPEN ABLATION OF LUNG LESION OR TISSUE - 32.23', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3023', 'OPEN AND OTHER REPLACEMENT OF AORTIC VALVE - 35.22', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3024', 'OPEN AND OTHER REPLACEMENT OF AORTIC VALVE WITH\nTISSUE GRAFT - 35.21', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3025', 'OPEN AND OTHER REPLACEMENT OF MITRAL VALVE - 35.24', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3026', 'OPEN AND OTHER REPLACEMENT OF MITRAL VALVE WITH\nTISSUE GRAFT - 35.23', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3027', 'OPEN AND OTHER REPLACEMENT OF PULMONARY VALVE -\n35.26', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3028', 'OPEN AND OTHER REPLACEMENT OF PULMONARY VALVE WITH\nTISSUE GRAFT - 35.25', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3029', 'OPEN AND OTHER REPLACEMENT OF TRICUSPID VALVE - 35.28', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3030', 'OPEN AND OTHER REPLACEMENT OF TRICUSPID VALVE WITH\nTISSUE GRAFT - 35.27', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3031', 'OPEN AND OTHER REPLACEMENT OF UNSPECIFIED HEART\nVALVE - 35.20', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3032', 'OPEN BIOPSY OF BRONCHUS - 33.25', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3033', 'OPEN BIOPSY OF LUNG - 33.28', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3034', 'OPEN CHEST CARDIAC MASSAGE - 37.91', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3035', 'OPEN CHEST CORONARY ARTERY ANGIOPLASTY - 36.03', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3036', 'OPEN CHEST TRANSMYOCARDIAL REVASCULARIZATION - 36.31', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3037', 'OPEN HEART VALVULOPLASTY OF AORTIC VALVE WITHOUT\nREPLACEMENT - 35.11', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3038', 'OPEN HEART VALVULOPLASTY OF MITRAL VALVE WITHOUT\nREPLACEMENT - 35.12', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3039', 'OPEN HEART VALVULOPLASTY OF PULMONARY VALVE\nWITHOUT REPLACEMENT - 35.13', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3040', 'OPEN HEART VALVULOPLASTY OF TRICUSPID VALVE WITHOUT\nREPLACEMENT - 35.14', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3041', 'OPEN HEART VALVULOPLASTY WITHOUT REPLACEMENT,\nUNSPECIFIED VALVE - 35.10', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3042', 'OPEN MEDIASTINAL BIOPSY - 34.26', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3043', 'OPEN REDUCTION OF ALVEOLAR FRACTURE - 76.77', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3044', 'OPEN REDUCTION OF DISLOCATION OF HAND AND FINGER -\n79.84', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3045', 'OPEN REDUCTION OF FRACTURE WITH INTERNAL FIXATION,\nOTHER SPECIFIED BONE - 79.39', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3046', 'OPEN REDUCTION OF MALAR AND ZYGOMATIC FRACTURE -\n76.72', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3047', 'OPEN REDUCTION OF TEMPOROMANDIBULAR DISLOCATION -\n76.83', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3048', 'OPERASI STOMA YANG LAIN, ANAK - 46.21', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3049', 'OPERASI STOMA YANG LAIN, NEONATUS - 46.21', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3050', 'OPERASI TUBA EUSTACHIUS - 20.8', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.3051', 'OPERATIONS ON CHORDAE TENDINEAE - 35.32', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3052', 'OPERATIONS ON OTHER STRUCTURES ADJACENT TO VALVES OF\nHEART - 35.39', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3053', 'OPERATIONS ON PAPILLARY MUSCLE - 35.31', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3054', 'OPERATIONS ON TRABECULAE CARNEAE CORDIS - 35.35', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3055', 'ORCHIOPEXY - 62.5', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3056', 'ORCHYDECTOMY, GA - 62.3', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.3057', 'ORCHYDOPEXY ASSISTED LAPAROSKOPI, GA - 54.21, 62.5', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3058', 'ORCHYDOPEXY TANPA EKSPLORASI, GA - 62.5', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.3059', 'OSSICULOPLASTY - 19.0', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.3060', 'OSSICULOPLASTY TAHAP II - 19.3', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.3061', 'OSTEOGENESIS IMPREFECTA, MULTIPLE OSTEOTOMY +\nINTERNAL FIXATION', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3062', 'OTHER (PERIPHERAL) VASCULAR SHUNT OR BYPASS - 39.29', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3063', 'OTHER AMPUTATION BELOW KNEE - 84.15', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3064', 'OTHER AND OPEN REPAIR OF DIAPHRAGMATIC HERNIA, WITH\nTHORACIC APPROACH - 53.84', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3065', 'OTHER AND UNSPECIFIED PNEUMONECTOMY - 32.59', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3066', 'OTHER AND UNSPECIFIED REPAIR OF ATRIAL SEPTAL DEFECT -\n35.71', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3067', 'OTHER AND UNSPECIFIED REPAIR OF ENDOCARDIAL CUSHION\nDEFECT - 35.73', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3068', 'OTHER AND UNSPECIFIED REPAIR OF UNSPECIFIED SEPTAL\nDEFECT OF HEART - 35.70', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3069', 'OTHER AND UNSPECIFIED REPAIR OF VENTRICULAR SEPTAL\nDEFECT - 35.72', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3070', 'OTHER AND UNSPECIFIED SEGMENTAL RESECTION OF LUNG -\n32.39', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3071', 'OTHER AND UNSPECIFIED THORACOSCOPIC OPERATIONS ON\nTHYMUS - 07.98', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3072', 'OTHER ANTESTERNAL ANASTOMOSIS OF ESOPHAGUS - 42.69', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3073', 'OTHER ANTESTERNAL ESOPHAGEAL ANASTOMOSIS WITH\nINTERPOSITION - 42.68', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3074', 'OTHER ANTESTERNAL ESOPHAGOCOLOSTOMY - 42.66', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3075', 'OTHER ANTESTERNAL ESOPHAGOENTEROSTOMY - 42.64', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3076', 'OTHER BRONCHOSCOPY - 33.23', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3077', 'OTHER BUNIONECTOMY - 77.58', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3078', 'OTHER BUNIONECTOMY WITH SOFT TISSUE CORRECTION -\n77.53', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3079', 'OTHER BYPASS ANASTOMOSIS FOR HEART REVASCULARIZATION\n- 36.19', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3080', 'OTHER CHANGE IN HAND MUSCLE OR TENDON LENGTH - 82.55', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3081', 'OTHER CHANGE IN MUSCLE OR TENDON LENGTH - 83.85', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3082', 'OTHER CLOSED REDUCTION OF FACIAL FRACTURE ((CLOSED\nREDUCTION OF ORBITAL FRACTURE) - 76.78', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3083', 'OTHER DIAGNOSTIC PROCEDURES ON BLOOD VESSELS - 38.29', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3084', 'OTHER DIAGNOSTIC PROCEDURES ON CHEST WALL, PLEURA,\nAND DIAPHRAGM - 34.28', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3085', 'OTHER DIAGNOSTIC PROCEDURES ON LUNG OR BRONCHUS -\n33.29', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3086', 'OTHER DIAGNOSTIC PROCEDURES ON LYMPHATIC STRUCTURES -\n40.19', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3087', 'OTHER DIAGNOSTIC PROCEDURES ON MEDIASTINUM - 34.29', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3088', 'OTHER ENDOVASCULAR PROCEDURES ON OTHER VESSELS -\n39.79', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3089', 'OTHER EXCISION OF LUNG - 32.9', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3090', 'OTHER EXCISION OF PLEURA - 34.59', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3091', 'OTHER EXCISION OF SOFT TISSUE - 83.49', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3092', 'OTHER EXCISION OF SOFT TISSUE OF HAND - 82.39', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3093', 'OTHER EXCISION OF VESSELS, ABDOMINAL ARTERIES - 38.66', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3094', 'OTHER EXCISION OF VESSELS, ABDOMINAL VEINS - 38.67', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3095', 'OTHER EXCISION OF VESSELS, AORTA, ABDOMINAL - 38.64', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3096', 'OTHER EXCISION OF VESSELS, LOWER LIMB ARTERIES - 38.68', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3097', 'OTHER EXCISION OF VESSELS, LOWER LIMB VEINS - 38.69', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3098', 'OTHER EXCISION OF VESSELS, OTHER VESSELS OF HEAD AND\nNECK - 38.62', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3099', 'OTHER EXCISION OF VESSELS, THORACIC VESSELS - 38.65', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3100', 'OTHER EXCISION OF VESSELS, UNSPECIFIED SITE - 38.60', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3101', 'OTHER EXCISION OF VESSELS, UPPER LIMB VESSELS - 38.63', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3102', 'OTHER EXCISION, FUSION AND REPAIR OF TOES - 77.57', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3103', 'OTHER FASCIECTOMY - 83.44', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3104', 'OTHER FASCIECTOMY OF HAND - 82.35', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3105', 'OTHER HAND MUSCLE TRANSFER OR TRANSPLANTATION - 82.58', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3106', 'OTHER HAND MUSCLE TRANSPOSITION - 82.59', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3107', 'OTHER HAND TENDON TRANSFER OR TRANSPLANTATION -\n82.56', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3108', 'OTHER HAND TENDON TRANSPOSITION - 82.57', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3109', 'OTHER HEART REVASCULARIZATION - 36.39', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3110', 'OTHER INCISION OF PLEURA - 34.09', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3111', 'OTHER INCISION OF SOFT TISSUE OF HAND - 82.09', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3112', 'OTHER INJECTION OF LOCALLY-ACTING THERAPEUTIC\nSUBSTANCE INTO SOFT TISSUE OF HAND - 82.96', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3113', 'OTHER INTRA-ABDOMINAL VASCULAR SHUNT OR BYPASS -\n39.26', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3114', 'OTHER INTRATHORACIC ANASTOMOSIS OF ESOPHAGUS - 42.59', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3115', 'OTHER INTRATHORACIC ESOPHAGOCOLOSTOMY - 42.56', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3116', 'OTHER INTRATHORACIC ESOPHAGOENTEROSTOMY - 42.54', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3117', 'OTHER INTRATHORACIC VASCULAR SHUNT OR BYPASS - 39.23', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3118', 'OTHER LOBECTOMY OF LUNG - 32.49', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3119', 'OTHER MANIPULATION OF TEMPOROMANDIBULAR JOINT -\n76.84', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3120', 'OTHER MUSCLE TRANSPOSITION - 83.79', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3121', 'OTHER MYECTOMY - 83.45', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3122', 'OTHER MYECTOMY OF HAND - 82.36', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3123', 'OTHER OPERATIONS ON BRONCHUS - 33.98', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3124', 'OTHER OPERATIONS ON CAROTID BODY, CAROTID SINUS AND\nOTHER VASCULAR BODIES - 39.89', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3125', 'OTHER OPERATIONS ON DIAPHRAGM - 34.89', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3126', 'OTHER OPERATIONS ON HEART AND PERICARDIUM - 37.99', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3127', 'OTHER OPERATIONS ON LARYNX - 31.98', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3128', 'OTHER OPERATIONS ON LUNG - 33.99', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3129', 'OTHER OPERATIONS ON LYMPHATIC STRUCTURES - 40.9', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3130', 'OTHER OPERATIONS ON MUSCLE, TENDON, AND FASCIA OF\nHAND - 82.99', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3131', 'OTHER OPERATIONS ON SEPTA OF HEART - 35.98', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3132', 'OTHER OPERATIONS ON THORACIC DUCT - 40.69', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3133', 'OTHER OPERATIONS ON THORAX - 34.99', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3134', 'OTHER OPERATIONS ON TRACHEA - 31.99', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3135', 'OTHER OPERATIONS ON VALVES OF HEART - 35.99', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3136', 'OTHER OPERATIONS ON VESSELS - 39.99', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3137', 'OTHER OPERATIONS ON VESSELS OF HEART - 36.99', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3138', 'OTHER ORTHOGNATHIC SURGERY ON MANDIBLE - 76.64', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3139', 'OTHER PARTIAL EXCISION OF THYMUS - 07.81', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3140', 'OTHER PARTIAL OSTECTOMY - 77.8', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3141', 'OTHER PERFUSION - 39.97', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3142', 'OTHER PLASTIC OPERATIONS ON FASCIA - 83.89', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3143', 'OTHER PLASTIC OPERATIONS ON HAND - 82.89', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3144', 'OTHER PLASTIC OPERATIONS ON MUSCLE - 83.87', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3145', 'OTHER PLASTIC OPERATIONS ON TENDON - 83.88', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3146', 'OTHER PLEURAL BIOPSY - 34.24', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3147', 'OTHER PUNCTURE OF ARTERY - 38.98', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3148', 'OTHER PUNCTURE OF VEIN - 38.99', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3149', 'OTHER RECONSTRUCTION OF THUMB - 82.69', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3150', 'OTHER RECONSTRUCTION OF URETHRA - 58.46', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3151', 'OTHER REPAIR AND PLASTIC OPERATIONS ON BRONCHUS -\n33.48', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3152', 'OTHER REPAIR AND PLASTIC OPERATIONS ON LUNG - 33.49', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3153', 'OTHER REPAIR AND PLASTIC OPERATIONS ON TRACHEA - 31.79', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3154', 'OTHER REPAIR OF ANEURYSM - 39.52', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3155', 'OTHER REPAIR OF CHEST WALL - 34.79', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3156', 'OTHER REPAIR OF DIAPHRAGM - 34.84', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3157', 'OTHER REPAIR OF HAND, FINGERS AND WRIST - 81.79', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3158', 'OTHER REPAIR OF HEART AND PERICARDIUM - 37.49', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3159', 'OTHER REPAIR OF LARYNX - 31.69', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3160', 'OTHER REPAIR OF SCROTUM AND TUNICA VAGINALIS - 61.49', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3161', 'OTHER REPAIR OF TESTIS - 62.69', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3162', 'OTHER REPAIR OF VESSEL - 39.59', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3163', 'OTHER REVISION OF VASCULAR PROCEDURE - 39.49', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3164', 'OTHER SURGICAL COLLAPSE OF LUNG - 33.39', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3165', 'OTHER SURGICAL OCCLUSION OF VESSELS, ABDOMINAL\nARTERIES - 38.86', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3166', 'OTHER SURGICAL OCCLUSION OF VESSELS, ABDOMINAL VEINS -\n38.87', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3167', 'OTHER SURGICAL OCCLUSION OF VESSELS, AORTA, ABDOMINAL -\n38.84', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3168', 'OTHER SURGICAL OCCLUSION OF VESSELS, LOWER LIMB\nARTERIES - 38.88', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3169', 'OTHER SURGICAL OCCLUSION OF VESSELS, LOWER LIMB VEINS -\n38.89', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3170', 'OTHER SURGICAL OCCLUSION OF VESSELS, OTHER VESSELS OF\nHEAD AND NECK - 38.82', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3171', 'OTHER SURGICAL OCCLUSION OF VESSELS, THORACIC VESSELS -\n38.85', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3172', 'OTHER SURGICAL OCCLUSION OF VESSELS, UNSPECIFIED SITE -\n38.80', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3173', 'OTHER SURGICAL OCCLUSION OF VESSELS, UPPER LIMB VESSELS\n- 38.83', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3174', 'OTHER SUTURE OF FLEXOR TENDON OF HAND - 82.44', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3175', 'OTHER SUTURE OF MUSCLE OR FASCIA - 83.65', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.3176', 'OTHER SUTURE OF OTHER TENDON OF HAND - 82.45', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3177', 'OTHER SYMPATHECTOMY AND GANGLIONECTOMY - 05.29', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3178', 'OTHER TENDON TRANSPOSITION - 83.76', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3179', 'OTHER TENODESIS OF HAND - 82.85', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3180', 'OTHER TENONECTOMY - 83.42', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3181', 'OTHER TENONECTOMY OF HAND - 82.33', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3182', 'OTHER TENOPLASTY OF HAND - 82.86', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3183', 'OTHER TOTAL EXCISION OF THYMUS - 07.82', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3184', 'OTHER TOTAL OSTECTOMY OF OTHER FACIAL BONE - 76.45', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3185', 'OTHER TRANSMYOCARDIAL REVASCULARIZATION - 36.32', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3186', 'OTHER VAGINOTOMY - 70.14', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3187', 'PARASTOMAL HERNIA REPAIR - 53.82', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3188', 'PARATIROIDEKTOMI TOTAL - 06.81', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.3189', 'PAROTIDEKTOMI PARSIAL - 26.31', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.3190', 'PAROTIDEKTOMI SUPERFISIAL - 26.31', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.3191', 'PARTIAL ESOPHAGECTOMY - 42.41', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3192', 'PARTIAL OSTECTOMY OF OTHER FACIAL BONE - 76.39', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3193', 'PARTIAL SUBSTERNAL THYROIDECTOMY - 06.51', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3194', 'PARTIAL VENTRICULECTOMY - 37.35', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3195', 'PCI DENGAN IVUS /OCT/FFR - 00.66', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3196', 'PCI DENGAN THROMBOLYTIC AGENT - 00.66', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3197', 'PCI DENGAN THROMBOSUCTION - 00.66', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3198', 'PCI WITH STENT DES - 36.07', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3199', 'PCI WITHOUT STENT ( PTCA) - 00.66', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3200', 'PDA STENTING / BT SHUNT STENTING + ANESTESI - 36.06', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3201', 'PDA STENTING / BT SHUNT STENTING ADVANCED + ANESTESI -\n36.06', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3202', 'PELEPASAN GROMMET - 20.1', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.3203', 'PEMASANGAN BANTUAN EKSTRAKORPORAL - 37.62', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3204', 'PEMASANGAN BONE ANCHORED HEARING AID (BAHA) - 20.95', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.3205', 'PEMASANGAN CVP DENGAN BANTUAN USG - 38.97', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.3206', 'PEMASANGAN CVVH - 39.95', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.3207', 'PEMASANGAN DOUBLE LUMEN KATETER DENGAN LOCAL\nANASTESI, GA - 38.95', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.3208', 'PEMASANGAN DOUBLE LUMEN KATETER DENGAN LOCAL\nANASTESI, LA - 38.95', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.3209', 'PEMASANGAN GROMMET - 20.1', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.3210', 'PEMASANGAN IABP - 37.61', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3211', 'PEMASANGAN SWAN GANZ - 89.65', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.3212', 'PEMASANGAN T-TUBE / GANTI T STENT - 31.93', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.3213', 'PEMASSANGAN LONG LINE IV, GA - 38.93', 6470000, 'TINDAKAN OPERATIF'), +('R.TO.3214', 'PEMBERSIHAN KANUL TRAKEOSTOMI - 96.55', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.3215', 'PENDEKATAN SUBLABIAL - 22.61', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.3216', 'PENGANGKATAN KANUL TRAKEOSTOMI - 97.37', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.3217', 'PENGANGKATAN TAMPON HIDUNG - 97.32', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.3218', 'PENGGANTIAN GENERATOR PACU JANTUNG DOUBLE CHAMBER\n- 37.87', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3219', 'PENGGANTIAN GENERATOR PACU JANTUNG SINGLE CHAMBER -\n37.85', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3220', 'PENGGANTIAN KANUL TRAKEOSTOMI - 97.23', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.3221', 'PENGGANTIAN NASOGASTRIC TUBE (NGT) - 97.01', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.3222', 'PENGGANTIAN STENT LARING / TRAKEA - 31.93', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.3223', 'PENGGANTIAN TAMPON HIDUNG - 97.21', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.3224', 'PENJAHITAN VULVA ATAU PERINEUM LAMA - 71.79', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.3225', 'PENUTUPAN AP WINDOW DENGAN DEVICE (IMPLANTASI\nOCCLUDER) DENGAN ANESTESI - 39.59', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3226', 'PENUTUPAN ARTERIOVENOUS MALFORMATION PULMONER\nDENGAN ANESTESI UMUM - 39.53', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3227', 'PENUTUPAN ASD DENGAN PH TRANSKATETER DENGAN DEVICE (IMPLANTASI OCCLUDER) DENGAN ANESTESI - 35.96', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3228', 'PENUTUPAN ASD TRANSKATETER DENGAN DEVICE (IMPLANTASI\nOCCLUDER) DENGAN ANESTESI - 35.96', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3229', 'PENUTUPAN AV MALFORMASI TRANSKATETER DENGAN DEVICE\n+ ANESTESI - 36.99', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3230', 'PENUTUPAN BT SHUNT TRANSKATETER DENGAN DEVICE\n(IMPLANTASI OCCLUDER) DENGAN ANESTESI - 35.96', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3231', 'PENUTUPAN FISTEL CELAH BRAKIAL - 29.52', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.3232', 'PENUTUPAN FISTEL FARING - 29.53', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.3233', 'PENUTUPAN FISTEL HIDUNG - 21.82', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.3234', 'PENUTUPAN FISTEL LARING - 31.62', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.3235', 'PENUTUPAN FISTEL MULUT - 27.53', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.3236', 'PENUTUPAN FISTEL SINUS - 22.71', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.3237', 'PENUTUPAN FISTEL TRAKEA - 31.72', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.3238', 'PENUTUPAN FISTULA KORONER DENGAN DEVICE (IMPLANTASI\nOCCLUDER) DENGAN ANESTESI - 36.99', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3239', 'PENUTUPAN PARAVALVULAR LEAKAGE DENGAN DEVICE\n(IMPLANTASI OCCLUDER) DENGAN ANESTESI - 35.70', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3240', 'PENUTUPAN PDA DENGAN PH TRANSKATETER DENGAN DEVICE (IMPLANTASI OCCLUDER) DENGAN ANESTESI - 35.96', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3241', 'PENUTUPAN PDA TRANSKATETER DENGAN DEVICE (IMPLANTASI\nOCCLUDER) DENGAN ANESTESI - 35.96', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3242', 'PENUTUPAN PFO TRANSKATETER DENGAN DEVICE (IMPLANTASI\nOCCLUDER) DENGAN ANESTESI DENGAN TRANSEPTAL PUNCTURE - 35.71', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3243', 'PENUTUPAN PFO TRANSKATETER DENGAN DEVICE (IMPLANTASI\nOCCLUDER) DENGAN ANESTESI TANPA TRANSEPTAL PUNCTURE - 35.71', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3244', 'PENUTUPAN SINUS VALSAVA RUPTURE DENGAN ANESTESI -\n35.39', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3245', 'PENUTUPAN SINUS VALSAVA RUPTURE DENGAN ANESTESI -\n35.39', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3246', 'PENUTUPAN SINUS VENOSUS DEFECT DENGAN DEVICE\n(IMPLANTASI COVERED STENT) DENGAN ANESTESI - 35.70', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3247', 'PENUTUPAN VSD DENGAN PH TRANSKATETER DENGAN DEVICE (IMPLANTASI OCCLUDER) DENGAN ANESTESI - 35.96', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3248', 'PENUTUPAN VSD TRANSKATETER DENGAN DEVICE (IMPLANTASI\nOCCLUDER) DENGAN ANESTESI - 35.96', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3249', 'PENYADAPAN KOMPLEKS (NEONATUS, VENTILATOR, CITO, BIUS\nUMUM, PJB KOMPLEKS) - 37.23', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.3250', 'PENYADAPAN SEDERHANA - 37.23', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.3251', 'PENYADAPAN SEMI KOMPLEKS (ON VENTILATOR PRO O2 TEST) -\n37.23', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.3252', 'PERCUTANEOUS ABLATION OF LUNG LESION OR TISSUE - 32.24', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3253', 'PERCUTANEOUS ANGIOSCOPY - 38.22', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3254', 'PERCUTANEOUS CARDIOPULMONARY BYPASS - 39.66', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3255', 'PERCUTANEUS INSTRUMENTATION (FLUOROSCOPY OR\nNAVIGATION)', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3256', 'PERCUTANEUS PULMONARY ANGIOPLASTY (PULMONARY PTA) PADA STENOSIS PERIFER PULMONAL + ANESTESI - 39.50', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3257', 'PERCUTANEUS PULMONARY INTERVENSI DENGAN STENT (PULMONARY PTA DENGAN STENT) PADA STENOSIS PERIFER\nPULMONAL + ANESTESI - 39.50', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3258', 'PERICARDIECTOMY - 37.31', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3259', 'PERICARDIOTOMY - 37.12', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3260', 'PETROSECTOMY - 20.59', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3261', 'PLASENTA ACCRETA WITH CONSERVATIVE SURGERY - 68.29', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3262', 'PLASENTA ACCRETA WITH HYSTERECTOMY ( SVH ) - 68.39', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3263', 'PLASENTA ACCRETA WITH HYSTERECTOMY ( TAH ) - 68.49', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3264', 'PLASTIC OPERATION ON HAND WITH GRAFT OF MUSCLE OR\nFASCIA - 82.72', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3265', 'PLASTIC OPERATION ON HAND WITH OTHER GRAFT OR\nIMPLANT - 82.79', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3266', 'PLICATION OF EMPHYSEMATOUS BLEB - 32.21', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3267', 'PLICATION OF THE DIAPHRAGM - 53.81', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3268', 'PNEUMOPERITONEUM FOR COLLAPSE OF LUNG - 33.33', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3269', 'POLIPEKTOMI NASAL - 21.31', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.3270', 'POLISIZATION FINGER TO THUMB TRANSFER', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3271', 'POLLICIZATION OPERATION CARRYING OVER NERVES AND\nBLOOD SUPPLY - 82.61', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3272', 'POSTERO SAGITAL ANORECTOVAGINOURETHROPLASTY/\nPSARVUP, GA - 45.95, 58.99, 70.62', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3273', 'POSTERO SAGITAL ANOREKTOPLASTI (PSARP) - 45.95', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3274', 'POTONG STUMP +/- PASANGN STAPPLER, GA - 48.69, 48.74', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.3275', 'PRIMARY CLOSURE GASTROSCHISIS, GA - 54.71', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3276', 'PRIMARY CLOSURE GASTROSCHISIS, LA - 54.71', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.3277', 'PROBING SALURAN LIUR - 26.91', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.3278', 'PROSEDUR 1 TAHAP KOREKSI HIPOSPADIA, GA - 58.46', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.3279', 'PROSEDUR DE LA TORRE PROLAPS RECTI / ALTEMEIER\nPROCEDURE - 48.69, 48.74', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.3280', 'PROSEDUR DEFINITIF HIRSCHSPRUNG ASSISTED LAPAROSKOPI -\n48.51', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3281', 'PROSEDUR DEFINITIF OMPHALOCELE, GA - 54.72', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3282', 'PROSEDUR DEFINITIF PENYAKIT HIRSCHSPRUNG (DUHAMEL) -\n48.65', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3283', 'PROSEDUR DEFINITIF PENYAKIT HIRSCHSPRUNG (TRANSANAL\nSWENSON) - 48.49', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3284', 'PROSEDUR DEFINITIF UDT, GA - 62.5', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.3285', 'PROSEDUR DEVASKULARISASI HIPERTENSI PORTAL, GA - 38.87', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3286', 'PROSEDUR KASAI + KOLANGIOGRAFI INTRAOPERATIF - 51.69,\n51.39, 87.53', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3287', 'PROSEDUR THIERSCH PADA PROLAP REKTI, GA - 49.72', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.3288', 'PROTESIS SUARA - 31.95', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.3289', 'PSARP + LAPAROTOMI, GA - 54.11, 45.95', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3290', 'PSARP + TUM - 45.95, 58.99, 70.62', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3291', 'PTA (ARTERI/ VENA PERIFER) - 39.50', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3292', 'PTA+STENTING (ARTERI /VENA PERIFER) - 39.90', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3293', 'PULMONARY VALVE REPLACEMENT PERKUTAN - 35.96', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3294', 'PUNCH GRAFTING BESAR - 86.63', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.3295', 'PUNCH GRAFTING KECIL - 86.63', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.3296', 'PUNCH GRAFTING SEDANG - 86.63', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.3297', 'PUNCTURE OF LUNG - 33.93', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3298', 'PYELOPLASTY, GA - 55.87', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3299', 'PYOLOROMYOTOMY (OPERASI FREDET RAMSTEDT),\nLAPAROSCOPIC - 54.21, 43.3', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.3300', 'PYOLOROMYOTOMY (OPERASI FREDET RAMSTEDT), OPEN - 43.3', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.3301', 'RADICAL DISSECTION OF THORACIC STRUCTURES - 32.6', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3302', 'RADIOFREKUENSI DASAR LIDAH - 27.99', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.3303', 'RADIOFREQUENCY ABLATION 2D - 37.34', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3304', 'RADIOFREQUENCY ABLATION 3D - 37.26', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3305', 'RADIOFREQUENCY ABLATION 3D ATRIAL FIBRILLASI - 35.42', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3306', 'REATTACHMENT OF MUSCLE - 83.74', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3307', 'REATTACHMENT OF MUSCLE OF HAND - 82.54', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3308', 'REATTACHMENT OF TENDON - 83.73', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3309', 'REATTACHMENT OF TENDON OF HAND - 82.53', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3310', 'RECESSION OF TENDON - 83.72', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3311', 'RECESSION OF TENDON OF HAND - 82.52', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3312', 'RECONSTRUCTION OF PENIS - 64.44', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3313', 'RECONSTRUCTION OF TRACHEA AND CONSTRUCTION OF\nARTIFICIAL LARYNX - 31.75', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3314', 'RECTOSCOPY, GA - 48.23', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.3315', 'REDUCTION OF FACIAL FRACTURE, NOT OTHERWISE SPECIFIED -\n76.70', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3316', 'REDUKSI FRAKTUR NASAL TERTUTUP - 22.71', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.3317', 'REDUKSI KONKA DENGAN KAUTER / RDF - 21.61', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.3318', 'RE-ENTRY OPERATION (AORTA) - 39.54', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3319', 'REIMPLANTATION OF ABERRANT RENAL VESSEL - 39.55', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3320', 'REKONSTRUKSI TRAKEA DAN KONSTRUKSI LARING - 31.75', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.3321', 'REKONSTRUKSI TRAUMA LEHER - 31.7', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.3322', 'RELEASE CHORDE, GA - 64.42', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3323', 'RELEASE SINEKIA VULVA, GA - 71.01', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.3324', 'REMOVAL OF ARTERIOVENOUS SHUNT FOR RENAL DIALYSIS -\n39.43', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3325', 'REMOVAL OF CAROTID SINUS STIMULATION DEVICE, TOTAL\nSYSTEM - 39.86', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3326', 'REMOVAL OF CAROTID SINUS STIMULATION LEAD(S) ONLY -\n39.87', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3327', 'REMOVAL OF CAROTID SINUS STIMULATION PULSE GENERATOR\nONLY - 39.88', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3328', 'REMOVAL OF EXTERNAL HEART ASSIST SYSTEM(S) OR DEVICE(S) -\n37.64', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3329', 'REMOVAL OF IMPLANTED DEVICES FROM BONE - 78.6', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3330', 'REMOVAL OF INTERNAL BIVENTRICULAR HEART REPLACEMENT\nSYSTEM - 37.55', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3331', 'REMOVAL OF INTERNAL FIXATION DEVICE FROM FACIAL BONE -\n76.86', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3332', 'REMOVAL OF LEAD(S) - ELECTRODE WITHOUT REPLACEMENT -\n37.77', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3333', 'REMOVAL OF MEDIASTINAL DRAIN - 97.42', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3334', 'REMOVAL OF OTHER DEVICE FROM THORAX - 97.49', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3335', 'REMOVAL OF SUTURES FROM THORAX - 97.43', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3336', 'REMOVAL OF THORACOTOMY TUBE OR PLEURAL CAVITY DRAIN -\n97.41', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3337', 'REMOVAL OF TRACHEOSTOMY TUBE - 97.37', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3338', 'RENAL DENERVASI - 05.25', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3339', 'REOPENING OF RECENT THORACOTOMY SITE - 34.03', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3340', 'REPAIR ATRESIA KOANA - 21.89', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.3341', 'REPAIR BLADDER EXTROPHY, GA - 57.86', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3342', 'REPAIR CLOACAL EXTROPHY, GA - 57.86, 45.52, 46.11', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3343', 'REPAIR DUKTUS URAKUS PERSISTEN - 57.51', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.3344', 'REPAIR FISTEL RECTOVAGINAL, GA - 70.73', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.3345', 'REPAIR HERNIA + LAPAROTOMY+ RESEKSI + STOMA - 53.02 &\n54.11 & 45.62 & 46.20', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3346', 'REPAIR HERNIA + LAPAROTOMY+ RESEKSI+ ANASTOMOSIS -\n53.02 & 54.11 & 45.62 & 45.91', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3347', 'REPAIR HERNIA INGUINAL BILATERAL - 53.12', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.3348', 'REPAIR HERNIA INGUINAL, LAPAROSKOPI - 17.12', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.3349', 'REPAIR HERNIA INGUINAL, UNILATERAL - 53.02', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.3350', 'REPAIR HERNIA RESIDIF - 53.02', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.3351', 'REPAIR HERNIA STRANGULATA - 53.02', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.3352', 'REPAIR HERNIA UMBILIKALIS - 53.49', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.3353', 'REPAIR OF ANEURYSM OF CORONARY VESSEL - 36.91', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3354', 'REPAIR OF ARTERIOVENOUS FISTULA - 39.53', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3355', 'REPAIR OF ATRIAL SEPTAL DEFECT WITH PROSTHESIS, OPEN\nTECHNIQUE - 35.51', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3356', 'REPAIR OF ATRIAL SEPTAL DEFECT WITH TISSUE GRAFT - 35.61', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3357', 'REPAIR OF BLOOD VESSEL WITH SYNTHETIC PATCH GRAFT -\n39.57', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3358', 'REPAIR OF BLOOD VESSEL WITH TISSUE PATCH GRAFT - 39.56', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3359', 'REPAIR OF BLOOD VESSEL WITH UNSPECIFIED TYPE OF PATCH\nGRAFT - 39.58', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3360', 'REPAIR OF CLAW TOE - 77.56', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3361', 'REPAIR OF CLEFT HAND - 82.82', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3362', 'REPAIR OF DIAPHRAGMATIC HERNIA WITH THORACIC\nAPPROACH, NOT OTHERWISE SPECIFIED - 53.80', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3363', 'REPAIR OF DIAPHRAGMATIC HERNIA, ABDOMINAL APPROACH,\nNOT OTHERWISE SPECIFIED - 53.75', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3364', 'REPAIR OF ENDOCARDIAL CUSHION DEFECT WITH PROSTHESIS -\n35.54', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3365', 'REPAIR OF ENDOCARDIAL CUSHION DEFECT WITH TISSUE GRAFT\n- 35.63', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3366', 'REPAIR OF HAMMER TOE - 77.55', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3367', 'REPAIR OF HEART ASSIST SYSTEM - 37.63', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3368', 'REPAIR OF LARYNGEAL FRACTURE - 31.64', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3369', 'REPAIR OF MACRODACTYLY - 82.83', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3370', 'REPAIR OF MALLET FINGER - 82.84', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3371', 'REPAIR OF OTHER FISTULA OF VAGINA - 70.75', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3372', 'REPAIR OF PARASTERNAL HERNIA - 53.82', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3373', 'REPAIR OF PECTUS DEFORMITY - 34.74', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3374', 'REPAIR OF PLEURA - 34.93', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3375', 'REPAIR OF SCROTAL FISTULA - 61.42', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3376', 'REPAIR OF UNSPECIFIED SEPTAL DEFECT OF HEART WITH\nPROSTHESIS - 35.50', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3377', 'REPAIR OF UNSPECIFIED SEPTAL DEFECT OF HEART WITH TISSUE\nGRAFT - 35.60', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3378', 'REPAIR OF URETHROCUTANEOUS FISTULE - 58.43', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.3379', 'REPAIR OF VENTRICULAR SEPTAL DEFECT WITH PROSTHESIS,\nOPEN TECHNIQUE - 35.53', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3380', 'REPAIR OF VENTRICULAR SEPTAL DEFECT WITH TISSUE GRAFT -\n35.62', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3381', 'REPAIR RUPTURE PERINEUM LAMA, GA - 71.71', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.3382', 'REPAIR STENOSIS SUBGLOTIS/TRAKEA - 31.98', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.3383', 'REPAIR UMBILICAL CORD HERNIA - 53.59', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3384', 'REPAIR VESIKA URINARIA, GA - 57.81', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.3385', 'REPARASI FISTEL ESOFAGUS - 42.84', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.3386', 'REPARASI FISTEL KEBOCORAN LCS - 02.12', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3387', 'REPARASI FRAKTUR LARING - 31.64', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.3388', 'REPARASI KEBOCORAN LCS DENGAN GRAFT ABDOMEN - 02.12', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3389', 'REPARASI OVAL/ROUND WINDOW - 20.93', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.3390', 'REPARASI STRIKTUR ESOFAGUS - 42.85', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.3391', 'REPLACEMENT OF ANY TYPE OF PACEMAKER DEVICE WITH\nSINGLE-CHAMBER DEVICE, RATE RESPONSIVE - 37.86', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3392', 'REPLACEMENT OF ANY TYPE PACEMAKER DEVICE WITH DUAL-\nCHAMBER DEVICE - 37.87', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3393', 'REPLACEMENT OF ANY TYPE PACEMAKER DEVICE WITH SINGLE- CHAMBER DEVICE, NOT SPECIFIED AS RATE RESPONSIVE - 37.85', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3394', 'REPLACEMENT OF AUTOMATIC CARDIOVERTER/DEFIBRILLATOR\nLEAD(S) ONLY - 37.97', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3395', 'REPLACEMENT OF AUTOMATIC CARDIOVERTER/DEFIBRILLATOR PULSE GENERATOR ONLY - 37.98', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3396', 'REPLACEMENT OF LARYNGEAL OR TRACHEAL STENT - 31.93', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3397', 'REPLACEMENT OF TRACHEOSTOMY TUBE - 97.23', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3398', 'REPLACEMENT OF TRANSVENOUS ATRIAL AND/OR\nVENTRICULAR LEAD(S) - ELECTRODE - 37.76', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3399', 'REPLACEMENT OF VESSEL-TO-VESSEL CANNULA - 39.94', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3400', 'REPLACEMENT OR REPAIR OF OTHER IMPLANTABLE COMPONENT OF (TOTAL) REPLACEMENT HEART SYSTEM - 37.54', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3401', 'REPLACEMENT OR REPAIR OF THORACIC UNIT OF (TOTAL)\nREPLACEMENT HEART SYSTEM - 37.53', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3402', 'RESECTION OF VESSEL WITH ANASTOMOSIS, ABDOMINAL\nARTERIES - 38.36', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3403', 'RESECTION OF VESSEL WITH ANASTOMOSIS, ABDOMINAL VEINS\n- 38.37', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3404', 'RESECTION OF VESSEL WITH ANASTOMOSIS, AORTA - 38.34', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3405', 'RESECTION OF VESSEL WITH ANASTOMOSIS, LOWER LIMB\nARTERIES - 38.38', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3406', 'RESECTION OF VESSEL WITH ANASTOMOSIS, LOWER LIMB VEINS\n- 38.39', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3407', 'RESECTION OF VESSEL WITH ANASTOMOSIS, OTHER THORACIC\nVESSELS - 38.35', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3408', 'RESECTION OF VESSEL WITH ANASTOMOSIS, OTHER VESSELS OF\nHEAD AND NECK - 38.32', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3409', 'RESECTION OF VESSEL WITH ANASTOMOSIS, UNSPECIFIED SITE -\n38.30', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3410', 'RESECTION OF VESSEL WITH ANASTOMOSIS, UPPER LIMB\nVESSELS - 38.33', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3411', 'RESECTION OF VESSEL WITH REPLACEMENT, ABDOMINAL\nARTERIES - 38.46', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3412', 'RESECTION OF VESSEL WITH REPLACEMENT, ABDOMINAL VEINS\n38.47', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3413', 'RESECTION OF VESSEL WITH REPLACEMENT, AORTA,\nABDOMINAL - 38.44', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3414', 'RESECTION OF VESSEL WITH REPLACEMENT, INTRACRANIAL\nVESSELS - 38.41', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3415', 'RESECTION OF VESSEL WITH REPLACEMENT, LOWER LIMB\nARTERIES - 38.48', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3416', 'RESECTION OF VESSEL WITH REPLACEMENT, LOWER LIMB VEINS\n- 38.49', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3417', 'RESECTION OF VESSEL WITH REPLACEMENT, OTHER VESSELS OF\nHEAD AND NECK - 38.42', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3418', 'RESECTION OF VESSEL WITH REPLACEMENT, THORACIC VESSELS\n38.45', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3419', 'RESECTION OF VESSEL WITH REPLACEMENT, UNSPECIFIED SITE -\n38.40', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3420', 'RESECTION OF VESSEL WITH REPLACEMENT, UPPER LIMB\nVESSELS - 38.43', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3421', 'RESEKSI ANASTOMOSIS, JEJUNOILEAL OBSTRUCTION,\nDUPLICATION. - 54.11, 45.62, 45.91', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3422', 'RESEKSI DENGAN STOMA, JEJUNOILEAL OBSTRUCTION,\nDUPLICATION. - 54.11, 45.62, 46.21', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3423', 'RESEKSI ESOFAGUS - 42.40', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.3424', 'RESEKSI HEPAR (TRAUMA, TUMOR) - 50.22', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3425', 'RESEKSI LOW ANTERIOR, GA - 48.62', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3426', 'RESEKSI NEUROBLASTOMA, GA - 07.22', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3427', 'RESEKSI SIGMOID, GA - 45.76', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.3428', 'RESEKSI TUMOR ABDOMEN, LAPAROTOMI - 54.11 & 54.4', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3429', 'RESEKSI TUMOR SACROCOCCYGEAL, GA - 80.99, 83.39', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3430', 'RESEKSI TUMOR WILM, GA - 55.51', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3431', 'REVISI FENESTRASI TELINGA DALAM - 20.62', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.3432', 'REVISI LARINGOSTOMI / REPAIR STOMA - 31.63', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.3433', 'REVISI OPERASI SARAF KRANIAL / PERIFER - 04.75', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.3434', 'REVISI POCKET / LEAD PACU JANTUNG PERMANEN TANPA\nPENGGANTIAN ALAT - 37.89', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.3435', 'REVISI SINEKIA HIDUNG - 21.91', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.3436', 'REVISI TRAKEOSTOMI - 31.74', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.3437', 'REVISION OF AMPUTATION STUMP - 84.3', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3438', 'REVISION OF ARTERIOVENOUS SHUNT FOR RENAL DIALYSIS -\n39.42', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3439', 'REVISION OF CAROTID SINUS STIMULATION LEAD(S) ONLY -\n39.84', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3440', 'REVISION OF CAROTID SINUS STIMULATION PULSE GENERATOR -\n39.85', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3441', 'REVISION OF CORRECTIVE PROCEDURE ON HEART - 35.95', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3442', 'REVISION OF LARYNGOSTOMY - 31.63', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3443', 'REVISION OF LEAD - ELECTRODE - 37.75', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3444', 'REVISION OF TRACHEOSTOMY - 31.74', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3445', 'REVISION OR RELOCATION OF CARDIAC DEVICE POCKET - 37.79', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3446', 'REVISION OR REMOVAL OF PACEMAKER DEVICE - 37.89', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3447', 'RHABDOMYOSARCOMA, SOFT TISSUE, EXTREMITY - 83.49', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3448', 'RHINOTOMI LATERAL - 21.30', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.3449', 'RVOT STENTING PERKUTAN + ANESTESI - 38.05', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3450', 'SACRECTOMY', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3451', 'SACRO-ILIAC JOINT BLOCK', 4493000, 'TINDAKAN OPERATIF'), +('R.TO.3452', 'SALPINGO OOPHOREKTOMI BILATERAL, GA - 65.64', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3453', 'SALPINGO OOPHOREKTOMI BILATERAL, LAPAROSKOPI,GA -\n65.63', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3454', 'SALPINGO OOPHOREKTOMI UNILATERAL, GA - 65.49', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3455', 'SALPINGO OOPHOREKTOMI UNILATERAL, LAPAROSKOPI, GA -\n65.41', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3456', 'SCARIFICATION OF PLEURA - 34.6', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3457', 'SCLEROTHERAPY - 39.92', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3458', 'SEPTOPLASTI DENGAN ENDOSKOPI - 21.88', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.3459', 'SEPTUM & DINDING LATERAL HIDUNG - 21.07', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.3460', 'SFENOIDEKTOMI (FESS) - 22.64', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.3461', 'SFENOIDEKTOMI EKSTERNAL - 22.52', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.3462', 'SHUNT ENDOLIMFATIK - 20.71', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.3463', 'SIALENDOSKOPI DIAGNOSTIK - 26.19', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.3464', 'SIALENDOSKOPI DIAGNOSTIK DAN DILATASI - 26.91', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.3465', 'SIALENDOSKOPI DIAGNOSTIK DAN TERAPEUTIK - 26.99', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.3466', 'SIALOLITHEKTOMI - 26.29', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.3467', 'SINGLE INTERNAL MAMMARY-CORONARY ARTERY BYPASS -\n36.15', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3468', 'SINUSEKTOMI SINUS FRONTAL (FESS) - 22.42', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.3469', 'SIRKUMSISI ANAK', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.3470', 'SIRKUMSISI DEWASA', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.3471', 'SISTOSTOMI, GA - 57.17 / 57.18', 5392000, 'TINDAKAN OPERATIF'), +('R.TO.3472', 'SLEEP ENDOSCOPY - 89.19', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.3473', 'SPINAL ENDOCOPIC DECOMPRESSION (>1 LEVEL)', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3474', 'SPINAL ENDOCOPIC DECOMPRESSION (SINGLE LEVEL)', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3475', 'SPINAL TUMOR EXCISION, EXTRA/INTRADURAL', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3476', 'SPINAL TUMOR EXCISION, EXTRADURA', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3477', 'SPINALCORD STIMULATION', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3478', 'SPLENEKTOMI PARSIEL / TOTAL, GA - 41.43 / 41.5', 30237000, 'TINDAKAN OPERATIF'); +INSERT INTO `tarif_rs` (`ID_Tarif_RS`, `Tindakan_RS`, `Tarif_RS`, `Kategori_RS`) VALUES +('R.TO.3479', 'STAPEDEKTOMI - 19.1', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.3480', 'STAPEDEKTOMI REVISI - 19.21', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.3481', 'STENTING PDA/ A. PULMONALIS - 39.90', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3482', 'STENTING SINUS VENA INTRAKRANIAL', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3483', 'STOMACH, MORBID OBESITY, CAPSULE/BALOONING\n(ENDOSCOPIC CONTROL OF GASTRIC OR DUODENAL BLEEDING) - 44.43', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3484', 'STOMACH, MORBID OBESSITY, GASNOPLASTY/SUTURE - 43.41', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3485', 'SUBCISION BESAR - 86.89', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.3486', 'SUBCISION KECIL - 86.89', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.3487', 'SUBCISION SEDANG - 86.89', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.3488', 'SUBMANDIBULAR MASS, EXCISION, BIOPSY - 26.12', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.3489', 'SUBSTERNAL THYROIDECTOMY, NOT OTHERWISE SPECIFIED -\n06.50', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3490', 'SUCTION RECTAL BIOPSY - 48.29', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.3491', 'SUPRACONDYLAR FRACTURE OF HUMERUS IN CHILDREN,\nCLOSED REDUCTION + CAST', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.3492', 'SUPRACONDYLAR FRACTURE OF HUMERUS IN CHILDREN, OPEN\nREDUCTION + INTERNAL FIXATION', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3493', 'SUPRAGLOTOPLASTY - 30.29', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.3494', 'SUTURE OF ARTERY - 39.31', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3495', 'SUTURE OF LACERATION OF BRONCHUS - 33.41', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3496', 'SUTURE OF LACERATION OF CHEST WALL - 34.71', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3497', 'SUTURE OF LACERATION OF DIAPHRAGM - 34.82', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3498', 'SUTURE OF LACERATION OF LARYNX - 31.61', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3499', 'SUTURE OF LACERATION OF TRACHEA - 31.71', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3500', 'SUTURE OF LACERATION OF VAGINA - 70.71', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3501', 'SUTURE OF MUSCLE OR FASCIA OF HAND - 82.46', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.3502', 'SUTURE OF TENDON SHEATH - 83.61', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.3503', 'SUTURE OF TENDON SHEATH OF HAND - 82.41', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.3504', 'SUTURE OF UNSPECIFIED BLOOD VESSEL - 39.30', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3505', 'SUTURE OF VEIN - 39.32', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3506', 'SYNDACTYLY RELEASE', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3507', 'SYSTEMIC TO PULMONARY ARTERY SHUNT - 39.0 BT SHUNT', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3508', 'TAMPON VAGINA - 96.14', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.3509', 'TEMPORARY (PARTIAL) THERAPEUTIC ENDOVASCULAR\nOCCLUSION OF VESSEL - 39.77', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3510', 'TEMPORARY TRACHEOSTOMY - 31.1', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3511', 'TEMPOROMANDIBULAR ARTHROPLASTY - 76.5', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3512', 'TENCKHOFF CATHETER INSERTION, LAPAROSCOPIC - 54.984', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3513', 'TENCKHOFF CATHETER INSERTION, OPEN - 54.981', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3514', 'TENDON GRAFT - 83.81', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3515', 'TENDON PULLEY RECONSTRUCTION - 82.71', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3516', 'TENDON PULLEY RECONSTRUCTION - 83.83', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3517', 'TENDON TRANSFER MULTIPLE', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3518', 'TENDON TRANSFER OR TRANSPLANTATION - 83.75', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3519', 'TENDON TRANSFER SINGLE', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3520', 'TENOTOMY OF HAND - 82.11', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3521', 'TEVAR + PROSTHESIS - 39.73', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3522', 'THORACENTESIS - 34.91', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3523', 'THORACENTESIS GUIDING USG - 88.73', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3524', 'THORACOPLASTY - 33.34', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3525', 'THORACOSCOPIC ABLATION OF LUNG LESION OR TISSUE - 32.25', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3526', 'THORACOSCOPIC DECORTICATION OF LUNG - 34.52', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3527', 'THORACOSCOPIC DRAINAGE OF PLEURAL CAVITY - 34.06', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3528', 'THORACOSCOPIC INCISION OF THYMUS - 07.95', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3529', 'THORACOSCOPIC LOBECTOMY OF LUNG - 32.41', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3530', 'THORACOSCOPIC LUNG BIOPSY - 33.20', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3531', 'THORACOSCOPIC PARTIAL EXCISION OF THYMUS - 07.83', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3532', 'THORACOSCOPIC PLEURAL BIOPSY - 34.20', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3533', 'THORACOSCOPIC PNEUMONECTOMY - 32.50', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3534', 'THORACOSCOPIC SEGMENTAL RESECTION OF LUNG - 32.30', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3535', 'THORACOSCOPIC TOTAL EXCISION OF THYMUS - 07.84', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3536', 'THORACOSCOPY, LIGASI FISTULA, ANASTOMOSIS ESOFAGUS,\nESOPHAGEAL ATRESIA - 34.21 & 42.51', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3537', 'THORACOTOMY, LIGASI FISTULA, ANASTOMOSIS ESOFAGUS,\nESOPHAGEAL ATRESIA - 42.51', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3538', 'THREAD LIFT - BESAR - 86.09', 3744000, 'TINDAKAN OPERATIF'), +('R.TO.3539', 'THREAD LIFT - KECIL - 86.09', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.3540', 'THREAD LIFT - SEDANG - 86.09', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.3541', 'THYMECTOMY, NOT OTHERWISE SPECIFIED - 07.80', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3542', 'TIMPANOPLASTI REVISI - 19.6', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.3543', 'TIMPANOPLASTI TIPE I/MIRINGOPLASTI - 19.4', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.3544', 'TIMPANOPLASTI TIPE II - 19.52', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.3545', 'TIMPANOPLASTI TIPE III - 19.53', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.3546', 'TIMPANOPLASTI TIPE IV - 19.54', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.3547', 'TIMPANOPLASTI TIPE V - 19.55', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.3548', 'TINDAKAN DIAGNOSTIK PER-KOLONOSKOPI, GA - 45.23', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.3549', 'TINDAKAN ESOFAGUS KOMPLEKS (EKSISI, VARISES) - 42.33', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.3550', 'TINDAKAN FOB (SEDANG)/ BILASAN PARU (MEMBEBASKAN\nSUMBATAN)/SIKATAN BRONKUS - 33.22', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.3551', 'TINDIK TELINGA - 18.01', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.3552', 'TIROIDEKTOMI TOTAL - 06.4', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.3553', 'TONGUE TIE INCISION, GA - 25.91', 3120000, 'TINDAKAN OPERATIF'), +('R.TO.3554', 'TONSILEKTOMI - 28.2', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.3555', 'TONSILEKTOMI DENGAN ADENOIDEKTOMI - 28.3', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.3556', 'TORAKOSKOPI - 34.21', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.3557', 'TOTAL BODY PERFUSION - 39.96', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3558', 'TOTAL CORRECTION OF TRANSPOSITION OF GREAT VESSELS,\nNOT ELSEWHERE CLASSIFIED - 35.84', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3559', 'TOTAL ESOPHAGECTOMY - 42.42', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3560', 'TOTAL GASTREKTOMI DAN REKONSTRUKSI - 43.91', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3561', 'TOTAL MANDIBULECTOMY WITH SYNCHRONOUS\nRECONSTRUCTION - 76.41', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3562', 'TOTAL OSTECTOMY - 77.9', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3563', 'TOTAL REPAIR OF TETRALOGY OF FALLOT - 35.81', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3564', 'TOTAL REPAIR OF TOTAL ANOMALOUS PULMONARY VENOUS\nCONNECTION - 35.82', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3565', 'TOTAL REPAIR OF TRUNCUS ARTERIOSUS - 35.83', 40246000, 'TINDAKAN OPERATIF'), +('R.TO.3566', 'TRACHEOESOPHAGEAL FISTULIZATION - 31.95', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3567', 'TRAKEOSKOPI MELALUI STOMA TRAKEA - 31.41', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.3568', 'TRAKEOSTOMI DENGAN PENYULIT - 31.1', 15616000, 'TINDAKAN OPERATIF'), +('R.TO.3569', 'TRAKEOSTOMI PERMANEN - 31.29', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.3570', 'TRAKEOSTOMI TEMPORER - 31.1', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.3571', 'TRANSABDOMINAL CIRCLAGE - 67.51', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.3572', 'TRANSANAL MUCOSECTOMY, TEPT - 48.49', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3573', 'TRANSFER OF FINGER, EXCEPT THUMB - 82.81', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3574', 'TRANSPLEURAL THORACOSCOPY - 34.21', 27488000, 'TINDAKAN OPERATIF'), +('R.TO.3575', 'TRANSPOSISI SARAF KRANIAL / PERIFER - 04.6', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.3576', 'TREPANASI SINUS FRONTALIS - 31.63', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.3577', 'TROMBEKTOMI', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3578', 'TROMBEKTOMI INTRASINUS/VENA', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3579', 'TROMBEKTOMI STROKE', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3580', 'TROMBOLISIS INTRAARTERI', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3581', 'TROMBOLISIS INTRASINUS', 33261000, 'TINDAKAN OPERATIF'), +('R.TO.3582', 'TUTUP STOMA USUS, GA - 46.52 / 46.51', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3583', 'UMBILICAL VEIN CATHETERIZATION - 38.92', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3584', 'UNILATERAL LUNG TRANSPLANTATION - 33.51', 36587000, 'TINDAKAN OPERATIF'), +('R.TO.3585', 'UPPER BLEPHAROPLASTY - 08.3', 13579000, 'TINDAKAN OPERATIF'), +('R.TO.3586', 'UPPER GI ENDOSCOPY, BIOPSY, GA - 45.16', 10268000, 'TINDAKAN OPERATIF'), +('R.TO.3587', 'UPPER GI ENDOSCOPY, DIAGNOSTIC - 45.13', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.3588', 'UPPER GI ENDOSCOPY, FOREIGN BODY RETRIEVAL - 45.13 &\n98.03', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.3589', 'UPPER GI ENDOSCOPY, POLYPEKTOMY, GA - 45.14', 11808000, 'TINDAKAN OPERATIF'), +('R.TO.3590', 'UPPER LIMB AMPUTATION, NOT OTHERWISE SPECIFIED - 84.00', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3591', 'URETERO NEOSISTOSTOMI, GA - 56.74', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3592', 'URETHRAL MEATOPLASTY - 58.47', 20652000, 'TINDAKAN OPERATIF'), +('R.TO.3593', 'URETHROPLASTY, GA - 58.45', 17958000, 'TINDAKAN OPERATIF'), +('R.TO.3594', 'VAGINAL RECONSTRUCTION - 70.62', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3595', 'VAGINAL RECONSTRUCTION WITH GRAFT OR PROSTHESIS -\n70.64', 30237000, 'TINDAKAN OPERATIF'), +('R.TO.3596', 'VAGINAL SUSPENSION AND FIXATION WITH GRAFT OR\nPROSTHESIS - 70.78', 24989000, 'TINDAKAN OPERATIF'), +('R.TO.3597', 'VENA SEKSI DAN PASANG AKSES VASKULER, GA - 38.94', 8929000, 'TINDAKAN OPERATIF'), +('R.TO.3598', 'VENA SEKSI DAN PASANG AKSES VASKULER, LA - 38.94', 7764000, 'TINDAKAN OPERATIF'), +('R.TO.3599', 'VENOUS CATHETERIZATION FOR RENAL DIALYSIS - 38.95\nDOUBLE LUMEN INSERTION', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3600', 'VENOUS CATHETERIZATION, NOT ELSEWHERE CLASSIFIED -\n38.93', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3601', 'VENOUS CUTDOWN - 38.94', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3602', 'VIDEO ASSIST FISTULOSCOPY -', 22717000, 'TINDAKAN OPERATIF'), +('R.TO.3603', 'VVP - 70.29', 2600000, 'TINDAKAN OPERATIF'), +('R.TO.3604', 'WOUND DEHISCENCE, REPAIR - 86.59', 10268000, 'TINDAKAN OPERATIF'), +('R.TOKH.001', 'TRANSPLANTASI GINJAL - KELAS 3', 283524000, 'TRANSPLANTASI GINJAL'), +('R.TOKH.002', 'TRANSPLANTASI GINJAL - KELAS 2', 340259000, 'TRANSPLANTASI GINJAL'), +('R.TOKH.003', 'TRANSPLANTASI GINJAL - KELAS 1', 396933000, 'TRANSPLANTASI GINJAL'), +('R.TOKH.004', 'PROSEDUR SALURAN URINE ATAS - KELAS 3', 13166000, 'TRANSPLANTASI GINJAL'), +('R.TOKH.005', 'PROSEDUR SALURAN URINE ATAS - KELAS 2', 15799000, 'TRANSPLANTASI GINJAL'), +('R.TOKH.006', 'PROSEDUR SALURAN URINE ATAS - KELAS 1', 18432000, 'TRANSPLANTASI GINJAL'), +('R.VST.001', 'JASA VISITE - REGULER', 100000, 'RAWAT INAP'); + +-- +-- Indexes for dumped tables +-- + +-- +-- Indexes for table `admin_ruangan` +-- +ALTER TABLE `admin_ruangan` + ADD PRIMARY KEY (`ID_Admin`), + ADD KEY `ID_Ruangan` (`ID_Ruangan`); + +-- +-- Indexes for table `billing_dokter` +-- +ALTER TABLE `billing_dokter` + ADD KEY `ID_Dokter` (`ID_Dokter`), + ADD KEY `ID_Billing` (`ID_Billing`); + +-- +-- Indexes for table `billing_icd9` +-- +ALTER TABLE `billing_icd9` + ADD KEY `ID_Billing` (`ID_Billing`), + ADD KEY `ID_ICD9` (`ID_ICD9`); + +-- +-- Indexes for table `billing_icd10` +-- +ALTER TABLE `billing_icd10` + ADD KEY `ID_Billing` (`ID_Billing`), + ADD KEY `ID_ICD10` (`ID_ICD10`); + +-- +-- Indexes for table `billing_inacbg_ri` +-- +ALTER TABLE `billing_inacbg_ri` + ADD KEY `ID_Billing` (`ID_Billing`), + ADD KEY `ID_INACBG_RI` (`ID_INACBG_RI`); + +-- +-- Indexes for table `billing_inacbg_rj` +-- +ALTER TABLE `billing_inacbg_rj` + ADD KEY `ID_Billing` (`ID_Billing`), + ADD KEY `ID_INACBG_RJ` (`ID_INACBG_RJ`); + +-- +-- Indexes for table `billing_pasien` +-- +ALTER TABLE `billing_pasien` + ADD PRIMARY KEY (`ID_Billing`), + ADD KEY `ID_Pasien` (`ID_Pasien`); + +-- +-- Indexes for table `billing_tindakan` +-- +ALTER TABLE `billing_tindakan` + ADD KEY `ID_Billing` (`ID_Billing`), + ADD KEY `ID_Tarif_RS` (`ID_Tarif_RS`); + +-- +-- Indexes for table `dokter` +-- +ALTER TABLE `dokter` + ADD PRIMARY KEY (`ID_Dokter`); + +-- +-- Indexes for table `icd9` +-- +ALTER TABLE `icd9` + ADD PRIMARY KEY (`ID_ICD9`); + +-- +-- Indexes for table `icd10` +-- +ALTER TABLE `icd10` + ADD PRIMARY KEY (`ID_ICD10`); + +-- +-- Indexes for table `ina_cbg_rawatinap` +-- +ALTER TABLE `ina_cbg_rawatinap` + ADD PRIMARY KEY (`ID_INACBG_RI`); + +-- +-- Indexes for table `ina_cbg_rawatjalan` +-- +ALTER TABLE `ina_cbg_rawatjalan` + ADD PRIMARY KEY (`ID_INACBG_RJ`); + +-- +-- Indexes for table `pasien` +-- +ALTER TABLE `pasien` + ADD PRIMARY KEY (`ID_Pasien`); + +-- +-- Indexes for table `ruangan` +-- +ALTER TABLE `ruangan` + ADD PRIMARY KEY (`ID_Ruangan`); + +-- +-- Indexes for table `tarif_rs` +-- +ALTER TABLE `tarif_rs` + ADD PRIMARY KEY (`ID_Tarif_RS`); + +-- +-- AUTO_INCREMENT for dumped tables +-- + +-- +-- AUTO_INCREMENT for table `admin_ruangan` +-- +ALTER TABLE `admin_ruangan` + MODIFY `ID_Admin` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; + +-- +-- AUTO_INCREMENT for table `billing_pasien` +-- +ALTER TABLE `billing_pasien` + MODIFY `ID_Billing` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=25; + +-- +-- AUTO_INCREMENT for table `dokter` +-- +ALTER TABLE `dokter` + MODIFY `ID_Dokter` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=1156; + +-- +-- AUTO_INCREMENT for table `pasien` +-- +ALTER TABLE `pasien` + MODIFY `ID_Pasien` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=22; + +-- +-- AUTO_INCREMENT for table `ruangan` +-- +ALTER TABLE `ruangan` + MODIFY `ID_Ruangan` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=47; + +-- +-- Constraints for dumped tables +-- + +-- +-- Constraints for table `billing_dokter` +-- +ALTER TABLE `billing_dokter` + ADD CONSTRAINT `billing_dokter_ibfk_1` FOREIGN KEY (`ID_Dokter`) REFERENCES `dokter` (`ID_Dokter`), + ADD CONSTRAINT `billing_dokter_ibfk_2` FOREIGN KEY (`ID_Billing`) REFERENCES `billing_pasien` (`ID_Billing`); + +-- +-- Constraints for table `billing_icd9` +-- +ALTER TABLE `billing_icd9` + ADD CONSTRAINT `billing_icd9_ibfk_1` FOREIGN KEY (`ID_Billing`) REFERENCES `billing_pasien` (`ID_Billing`), + ADD CONSTRAINT `billing_icd9_ibfk_2` FOREIGN KEY (`ID_ICD9`) REFERENCES `icd9` (`ID_ICD9`); + +-- +-- Constraints for table `billing_icd10` +-- +ALTER TABLE `billing_icd10` + ADD CONSTRAINT `billing_icd10_ibfk_1` FOREIGN KEY (`ID_Billing`) REFERENCES `billing_pasien` (`ID_Billing`), + ADD CONSTRAINT `billing_icd10_ibfk_2` FOREIGN KEY (`ID_ICD10`) REFERENCES `icd10` (`ID_ICD10`); + +-- +-- Constraints for table `billing_inacbg_ri` +-- +ALTER TABLE `billing_inacbg_ri` + ADD CONSTRAINT `billing_inacbg_ri_ibfk_1` FOREIGN KEY (`ID_Billing`) REFERENCES `billing_pasien` (`ID_Billing`), + ADD CONSTRAINT `billing_inacbg_ri_ibfk_2` FOREIGN KEY (`ID_INACBG_RI`) REFERENCES `ina_cbg_rawatinap` (`ID_INACBG_RI`); + +-- +-- Constraints for table `billing_inacbg_rj` +-- +ALTER TABLE `billing_inacbg_rj` + ADD CONSTRAINT `billing_inacbg_rj_ibfk_1` FOREIGN KEY (`ID_Billing`) REFERENCES `billing_pasien` (`ID_Billing`), + ADD CONSTRAINT `billing_inacbg_rj_ibfk_2` FOREIGN KEY (`ID_INACBG_RJ`) REFERENCES `ina_cbg_rawatjalan` (`ID_INACBG_RJ`); + +-- +-- Constraints for table `billing_pasien` +-- +ALTER TABLE `billing_pasien` + ADD CONSTRAINT `billing_pasien_ibfk_1` FOREIGN KEY (`ID_Pasien`) REFERENCES `pasien` (`ID_Pasien`); + +-- +-- Constraints for table `billing_tindakan` +-- +ALTER TABLE `billing_tindakan` + ADD CONSTRAINT `billing_tindakan_ibfk_1` FOREIGN KEY (`ID_Billing`) REFERENCES `billing_pasien` (`ID_Billing`), + ADD CONSTRAINT `billing_tindakan_ibfk_2` FOREIGN KEY (`ID_Tarif_RS`) REFERENCES `tarif_rs` (`ID_Tarif_RS`); + +-- ======================================== +-- VIEWS UNTUK OPTIMASI QUERY +-- ======================================== + +-- VIEW 1: Billing Pasien dengan Informasi Lengkap +CREATE OR REPLACE VIEW v_billing_pasien_info AS +SELECT + bp.ID_Billing, + bp.ID_Pasien, + p.Nama_Pasien, + p.Jenis_Kelamin, + p.Usia, + p.Ruangan, + p.Kelas, + bp.Cara_Bayar, + bp.Tanggal_Masuk, + bp.Tanggal_Keluar, + DATEDIFF(COALESCE(bp.Tanggal_Keluar, CURDATE()), bp.Tanggal_Masuk) AS Hari_Inap, + bp.Total_Tarif_RS, + bp.Total_Klaim, + bp.Billing_Sign, + CASE + WHEN bp.Tanggal_Keluar IS NULL THEN 'Aktif' + ELSE 'Selesai' + END AS Status_Pasien +FROM billing_pasien bp +LEFT JOIN pasien p ON bp.ID_Pasien = p.ID_Pasien; + +-- VIEW 2: Billing dengan Detail Dokter dan Tarif +CREATE OR REPLACE VIEW v_billing_detail AS +SELECT + bp.ID_Billing, + bp.ID_Pasien, + p.Nama_Pasien, + bp.Cara_Bayar, + bp.Tanggal_Masuk, + bp.Tanggal_Keluar, + GROUP_CONCAT(DISTINCT d.Nama_Dokter SEPARATOR ', ') AS Dokter, + GROUP_CONCAT(DISTINCT d.KSM SEPARATOR ', ') AS KSM, + COUNT(DISTINCT bd.ID_Dokter) AS Jumlah_Dokter, + COUNT(DISTINCT bt.ID_Tindakan) AS Jumlah_Tindakan, + bp.Total_Tarif_RS, + bp.Total_Klaim, + bp.Billing_Sign +FROM billing_pasien bp +LEFT JOIN pasien p ON bp.ID_Pasien = p.ID_Pasien +LEFT JOIN billing_dokter bd ON bp.ID_Billing = bd.ID_Billing +LEFT JOIN dokter d ON bd.ID_Dokter = d.ID_Dokter +LEFT JOIN billing_tindakan bt ON bp.ID_Billing = bt.ID_Billing +GROUP BY bp.ID_Billing; + +-- VIEW 3: Billing dengan Diagnosis dan Prosedur +CREATE OR REPLACE VIEW v_billing_diagnosis_procedure AS +SELECT + bp.ID_Billing, + p.Nama_Pasien, + bp.Cara_Bayar, + GROUP_CONCAT(DISTINCT bi10.ID_ICD10 SEPARATOR ', ') AS Kode_Diagnosa, + GROUP_CONCAT(DISTINCT i10.Diagnosa SEPARATOR '; ') AS Diagnosa, + COUNT(DISTINCT bi10.ID_ICD10) AS Jumlah_Diagnosa, + GROUP_CONCAT(DISTINCT bi9.ID_ICD9 SEPARATOR ', ') AS Kode_Prosedur, + GROUP_CONCAT(DISTINCT i9.Prosedur SEPARATOR '; ') AS Prosedur, + COUNT(DISTINCT bi9.ID_ICD9) AS Jumlah_Prosedur, + bp.Tanggal_Masuk, + bp.Tanggal_Keluar +FROM billing_pasien bp +LEFT JOIN pasien p ON bp.ID_Pasien = p.ID_Pasien +LEFT JOIN billing_icd10 bi10 ON bp.ID_Billing = bi10.ID_Billing +LEFT JOIN icd10 i10 ON bi10.ID_ICD10 = i10.ID_ICD10 +LEFT JOIN billing_icd9 bi9 ON bp.ID_Billing = bi9.ID_Billing +LEFT JOIN icd9 i9 ON bi9.ID_ICD9 = i9.ID_ICD9 +GROUP BY bp.ID_Billing; + +-- VIEW 4: Billing dengan INACBG Code +CREATE OR REPLACE VIEW v_billing_inacbg_code AS +SELECT + bp.ID_Billing, + p.Nama_Pasien, + bp.Cara_Bayar, + CASE + WHEN COUNT(DISTINCT bir.ID_INACBG_RI) > 0 THEN 'RI' + WHEN COUNT(DISTINCT brj.ID_INACBG_RJ) > 0 THEN 'RJ' + ELSE 'Unknown' + END AS Tipe_Perawatan, + GROUP_CONCAT(DISTINCT bir.ID_INACBG_RI SEPARATOR ', ') AS Kode_INACBG_RI, + GROUP_CONCAT(DISTINCT brj.ID_INACBG_RJ SEPARATOR ', ') AS Kode_INACBG_RJ, + COUNT(DISTINCT bir.ID_INACBG_RI) AS Jumlah_INACBG_RI, + COUNT(DISTINCT brj.ID_INACBG_RJ) AS Jumlah_INACBG_RJ, + bp.Total_Klaim, + bp.Billing_Sign +FROM billing_pasien bp +LEFT JOIN pasien p ON bp.ID_Pasien = p.ID_Pasien +LEFT JOIN billing_inacbg_ri bir ON bp.ID_Billing = bir.ID_Billing +LEFT JOIN billing_inacbg_rj brj ON bp.ID_Billing = brj.ID_Billing +GROUP BY bp.ID_Billing; + +-- VIEW 5: Ruangan dengan Pasien Aktif +CREATE OR REPLACE VIEW v_ruangan_pasien_aktif AS +SELECT + r.ID_Ruangan, + r.Nama_Ruangan, + r.Jenis_Ruangan, + r.Kategori_ruangan, + COUNT(DISTINCT p.ID_Pasien) AS Jumlah_Pasien_Aktif, + COUNT(DISTINCT CASE WHEN p.Kelas = '1' THEN p.ID_Pasien END) AS Pasien_Kelas_1, + COUNT(DISTINCT CASE WHEN p.Kelas = '2' THEN p.ID_Pasien END) AS Pasien_Kelas_2, + COUNT(DISTINCT CASE WHEN p.Kelas = '3' THEN p.ID_Pasien END) AS Pasien_Kelas_3, + GROUP_CONCAT(DISTINCT p.Nama_Pasien SEPARATOR ', ') AS Nama_Pasien +FROM ruangan r +LEFT JOIN pasien p ON r.ID_Ruangan = p.Ruangan +GROUP BY r.ID_Ruangan; + +-- VIEW 6: Dokter Billing Statistics +CREATE OR REPLACE VIEW v_dokter_billing_stat AS +SELECT + d.ID_Dokter, + d.Nama_Dokter, + d.Status, + d.KSM, + COUNT(DISTINCT bd.ID_Billing) AS Jumlah_Billing, + COUNT(DISTINCT p.ID_Pasien) AS Jumlah_Pasien, + ROUND(SUM(COALESCE(bp.Total_Klaim, 0)), 2) AS Total_Klaim, + MAX(bp.Tanggal_Masuk) AS Tanggal_Pasien_Terakhir, + GROUP_CONCAT(DISTINCT bp.Cara_Bayar SEPARATOR ', ') AS Tipe_Pasien +FROM dokter d +LEFT JOIN billing_dokter bd ON d.ID_Dokter = bd.ID_Dokter +LEFT JOIN billing_pasien bp ON bd.ID_Billing = bp.ID_Billing +LEFT JOIN pasien p ON bp.ID_Pasien = p.ID_Pasien +GROUP BY d.ID_Dokter; + +-- VIEW 7: Pasien Billing History +CREATE OR REPLACE VIEW v_pasien_billing_history AS +SELECT + p.ID_Pasien, + p.Nama_Pasien, + p.Jenis_Kelamin, + p.Usia, + p.Ruangan, + COUNT(DISTINCT bp.ID_Billing) AS Jumlah_Billing, + COUNT(DISTINCT CASE WHEN bp.Tanggal_Keluar IS NULL THEN bp.ID_Billing END) AS Jumlah_Billing_Aktif, + COUNT(DISTINCT CASE WHEN bp.Tanggal_Keluar IS NOT NULL THEN bp.ID_Billing END) AS Jumlah_Billing_Selesai, + ROUND(SUM(COALESCE(bp.Total_Klaim, 0)), 2) AS Total_Klaim_Keseluruhan, + MAX(bp.Tanggal_Masuk) AS Tanggal_Masuk_Terakhir, + MAX(bp.Tanggal_Keluar) AS Tanggal_Keluar_Terakhir, + GROUP_CONCAT(DISTINCT bp.Cara_Bayar SEPARATOR ', ') AS Riwayat_Cara_Bayar +FROM pasien p +LEFT JOIN billing_pasien bp ON p.ID_Pasien = bp.ID_Pasien +GROUP BY p.ID_Pasien; + +-- VIEW 8: Billing Summary Harian +CREATE OR REPLACE VIEW v_billing_summary_harian AS +SELECT + DATE(bp.Tanggal_Masuk) AS Tanggal, + COUNT(DISTINCT bp.ID_Billing) AS Jumlah_Billing_Masuk, + COUNT(DISTINCT CASE WHEN bp.Tanggal_Keluar = DATE(bp.Tanggal_Masuk) THEN bp.ID_Billing END) AS Billing_Keluar_Hari_Sama, + COUNT(DISTINCT CASE WHEN bp.Tanggal_Keluar IS NULL THEN bp.ID_Billing END) AS Billing_Aktif, + COUNT(DISTINCT CASE WHEN bp.Billing_Sign = 'Hijau' THEN bp.ID_Billing END) AS Status_Hijau, + COUNT(DISTINCT CASE WHEN bp.Billing_Sign = 'Kuning' THEN bp.ID_Billing END) AS Status_Kuning, + COUNT(DISTINCT CASE WHEN bp.Billing_Sign = 'Merah' THEN bp.ID_Billing END) AS Status_Merah, + ROUND(SUM(COALESCE(bp.Total_Tarif_RS, 0)), 2) AS Total_Tarif_RS_Harian, + ROUND(SUM(COALESCE(bp.Total_Klaim, 0)), 2) AS Total_Klaim_Harian, + GROUP_CONCAT(DISTINCT bp.Cara_Bayar SEPARATOR ', ') AS Tipe_Pasien_Masuk +FROM billing_pasien bp +GROUP BY DATE(bp.Tanggal_Masuk); + +-- VIEW 9: Billing Tarif Analysis +CREATE OR REPLACE VIEW v_billing_tarif_analysis AS +SELECT + bp.ID_Billing, + p.Nama_Pasien, + bp.Cara_Bayar, + bp.Total_Tarif_RS, + bp.Total_Klaim, + ROUND(bp.Total_Tarif_RS - COALESCE(bp.Total_Klaim, 0), 2) AS Selisih_Tarif_Klaim, + ROUND((COALESCE(bp.Total_Klaim, 0) / NULLIF(bp.Total_Tarif_RS, 0)) * 100, 2) AS Persentase_Klaim, + bp.Billing_Sign, + COUNT(DISTINCT bt.ID_Tindakan) AS Jumlah_Tindakan, + COUNT(DISTINCT bir.ID_INACBG_RI) + COUNT(DISTINCT brj.ID_INACBG_RJ) AS Jumlah_Kode_INACBG +FROM billing_pasien bp +LEFT JOIN pasien p ON bp.ID_Pasien = p.ID_Pasien +LEFT JOIN billing_tindakan bt ON bp.ID_Billing = bt.ID_Billing +LEFT JOIN billing_inacbg_ri bir ON bp.ID_Billing = bir.ID_Billing +LEFT JOIN billing_inacbg_rj brj ON bp.ID_Billing = brj.ID_Billing +GROUP BY bp.ID_Billing; + +-- VIEW 10: KSM Performance +CREATE OR REPLACE VIEW v_ksm_performance AS +SELECT + d.KSM, + COUNT(DISTINCT d.ID_Dokter) AS Jumlah_Dokter, + COUNT(DISTINCT bd.ID_Billing) AS Jumlah_Billing_Ditangani, + ROUND(COUNT(DISTINCT bd.ID_Billing) / NULLIF(COUNT(DISTINCT d.ID_Dokter), 0), 2) AS Avg_Billing_Per_Dokter, + ROUND(SUM(COALESCE(bp.Total_Klaim, 0)), 2) AS Total_Klaim_KSM, + COUNT(DISTINCT CASE WHEN bp.Billing_Sign = 'Hijau' THEN bp.ID_Billing END) AS Billing_Sign_Hijau, + COUNT(DISTINCT CASE WHEN bp.Billing_Sign = 'Kuning' THEN bp.ID_Billing END) AS Billing_Sign_Kuning, + COUNT(DISTINCT CASE WHEN bp.Billing_Sign = 'Merah' THEN bp.ID_Billing END) AS Billing_Sign_Merah +FROM dokter d +LEFT JOIN billing_dokter bd ON d.ID_Dokter = bd.ID_Dokter +LEFT JOIN billing_pasien bp ON bd.ID_Billing = bp.ID_Billing +WHERE d.KSM IS NOT NULL AND d.KSM != '' +GROUP BY d.KSM; + +COMMIT; + +/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; +/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; +/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; diff --git a/backendcareit_v4/sql/insert_admin_dummy.sql b/backendcareit_v4/sql/insert_admin_dummy.sql new file mode 100644 index 0000000..5a97be5 --- /dev/null +++ b/backendcareit_v4/sql/insert_admin_dummy.sql @@ -0,0 +1,16 @@ +-- Insert data dummy untuk admin ruangan +-- Username: admin +-- Password: admin123 + +-- Hapus data admin jika sudah ada (untuk testing) +DELETE FROM `admin_ruangan` WHERE `Nama_Admin` = 'admin'; + +-- Insert data admin baru +INSERT INTO `admin_ruangan` (`ID_Admin`, `Nama_Admin`, `Password`, `ID_Ruangan`) +VALUES (1, 'admin', 'admin123', NULL); + +-- Jika ID_Admin sudah ada, gunakan ID yang lebih tinggi +-- Atau biarkan AUTO_INCREMENT yang mengatur +-- INSERT INTO `admin_ruangan` (`Nama_Admin`, `Password`, `ID_Ruangan`) +-- VALUES ('admin', 'admin123', NULL); + diff --git a/backendcareit_v4/sql/postman_billing_request.json b/backendcareit_v4/sql/postman_billing_request.json new file mode 100644 index 0000000..ddda06b --- /dev/null +++ b/backendcareit_v4/sql/postman_billing_request.json @@ -0,0 +1,14 @@ +{ + "nama_dokter": "Dr. Ahmad Wijaya", + "nama_pasien": "Budi Santoso", + "jenis_kelamin": "Laki-laki", + "usia": 45, + "ruangan": "R001", + "kelas": "1", + "tindakan_rs": "T001", + "icd9": "ICD9-001", + "icd10": "ICD10-001", + "cara_bayar": "BPJS", + "total_tarif_rs": 500000 +} + diff --git a/backendcareit_v4/sql/postman_billing_request_full.json b/backendcareit_v4/sql/postman_billing_request_full.json new file mode 100644 index 0000000..ddda06b --- /dev/null +++ b/backendcareit_v4/sql/postman_billing_request_full.json @@ -0,0 +1,14 @@ +{ + "nama_dokter": "Dr. Ahmad Wijaya", + "nama_pasien": "Budi Santoso", + "jenis_kelamin": "Laki-laki", + "usia": 45, + "ruangan": "R001", + "kelas": "1", + "tindakan_rs": "T001", + "icd9": "ICD9-001", + "icd10": "ICD10-001", + "cara_bayar": "BPJS", + "total_tarif_rs": 500000 +} + diff --git a/backendcareit_v4/sql/postman_billing_response_example.json b/backendcareit_v4/sql/postman_billing_response_example.json new file mode 100644 index 0000000..e1640b1 --- /dev/null +++ b/backendcareit_v4/sql/postman_billing_response_example.json @@ -0,0 +1,26 @@ +{ + "status": "success", + "message": "Billing berhasil dibuat", + "data": { + "billing": { + "ID_Billing": "BILL-12345678-1234-1234-1234-123456789abc", + "ID_Pasien": "PAS-87654321-4321-4321-4321-cba987654321", + "Cara_Bayar": "BPJS", + "Tanggal_masuk": "2024-01-15T10:30:00Z", + "Tanggal_keluar": null, + "ID_Dokter": "DOK-001", + "Total_Tarif_RS": 500000, + "Total_Tarif_BPJS": 0, + "Billing_sign": "created" + }, + "pasien": { + "ID_Pasien": "PAS-87654321-4321-4321-4321-cba987654321", + "Nama_Pasien": "Budi Santoso", + "Jenis_Kelamin": "Laki-laki", + "Usia": 45, + "Ruangan": "R001", + "Kelas": "1" + } + } +} + diff --git a/backendcareit_v4/testingFE/adminRuanganFE/adminBilling.html b/backendcareit_v4/testingFE/adminRuanganFE/adminBilling.html new file mode 100644 index 0000000..81a6e11 --- /dev/null +++ b/backendcareit_v4/testingFE/adminRuanganFE/adminBilling.html @@ -0,0 +1,225 @@ + + + + + + Admin Billing INACBG + + + + +
+
+ + + + +
+ +
+
+

Data Billing Pasien

+
+
+ +
+ + +
+ + + + + + + + + + + + + + +
ID PasienNamaTotal Tarif RSTotal Klaim BPJSBilling SignAction
+
+
+
+
+ + + + + + + + diff --git a/backendcareit_v4/testingFE/adminRuanganFE/adminBilling_backup.html b/backendcareit_v4/testingFE/adminRuanganFE/adminBilling_backup.html new file mode 100644 index 0000000..9b61717 --- /dev/null +++ b/backendcareit_v4/testingFE/adminRuanganFE/adminBilling_backup.html @@ -0,0 +1,158 @@ + + + + + + Admin Billing INACBG + + + + +
+
+ + + + +
+ +
+
+

Data Billing Pasien

+
+
+ +
+ + +
+ + + + + + + + + + + + +
ID PasienNamaBilling SignAction
+
+
+
+
+ + + + + + + + diff --git a/backendcareit_v4/testingFE/adminRuanganFE/scriptAdmin.js b/backendcareit_v4/testingFE/adminRuanganFE/scriptAdmin.js new file mode 100644 index 0000000..9e8b589 --- /dev/null +++ b/backendcareit_v4/testingFE/adminRuanganFE/scriptAdmin.js @@ -0,0 +1,715 @@ +// Configuration +const API_BASE = 'http://localhost:8081'; +let billingData = []; +let currentEditingBilling = null; +let inacbgCodes = []; +let tarifCache = {}; // Cache for tarif data +let isManualInacbgMode = false; // Track if user is in manual input mode + +// Initialize on page load +document.addEventListener('DOMContentLoaded', () => { + updateCurrentDate(); + loadBillingData(); + setupEventListeners(); +}); + +// Update current date +function updateCurrentDate() { + const options = { weekday: 'long', year: 'numeric', month: 'long', day: 'numeric' }; + const today = new Date().toLocaleDateString('id-ID', options); + document.getElementById('currentDate').textContent = today; +} + +// Load billing data from API +async function loadBillingData() { + try { + const res = await fetch(`${API_BASE}/admin/billing`); + if (!res.ok) throw new Error(`HTTP ${res.status}`); + + const data = await res.json(); + billingData = data.data || []; + console.log('Billing data loaded:', billingData); + // Debug: cek apakah total_klaim ada di response + if (billingData.length > 0) { + console.log('Sample billing item:', billingData[0]); + console.log('Total klaim dari sample:', billingData[0].total_klaim); + } + + renderBillingTable(); + renderRuanganSidebar(); + } catch (err) { + console.error('Error loading billing data:', err); + document.getElementById('billingTableBody').innerHTML = ` + + Gagal memuat data: ${err.message} + + `; + } +} + +// Render billing table +function renderBillingTable() { + const tbody = document.getElementById('billingTableBody'); + tbody.innerHTML = ''; + + if (billingData.length === 0) { + tbody.innerHTML = ` + + Tidak ada data billing + + `; + return; + } + + billingData.forEach(billing => { + const row = document.createElement('tr'); + const badgeClass = getBillingSignBadgeClass(billing.billing_sign); + const badgeColor = getBillingSignColor(billing.billing_sign); + + const totalTarif = billing.total_tarif_rs || 0; + const totalKlaim = billing.total_klaim || 0; + + row.innerHTML = ` + ${billing.id_pasien || '-'} + + + ${billing.nama_pasien || '-'} + + + Rp ${Number(totalTarif).toLocaleString('id-ID')} + Rp ${Number(totalKlaim).toLocaleString('id-ID')} + + + + + + + `; + tbody.appendChild(row); + }); +} + +// Get billing sign badge class and color +function getBillingSignColor(billingSign) { + const normalizedSign = (billingSign || '').toString().toLowerCase(); + switch (normalizedSign) { + case 'hijau': + return '#28a745'; + case 'kuning': + return '#ffc107'; + case 'orange': + return '#fd7e14'; + case 'merah': + case 'created': + return '#dc3545'; + default: + return '#6c757d'; + } +} + +function getBillingSignBadgeClass(billingSign) { + const normalizedSign = (billingSign || '').toString().toLowerCase(); + switch (normalizedSign) { + case 'hijau': + return 'hijau'; + case 'kuning': + return 'kuning'; + case 'orange': + return 'orange'; + case 'merah': + return 'merah'; + case 'created': + return 'created'; + default: + return 'created'; + } +} + +// Render ruangan sidebar +function renderRuanganSidebar() { + const uniqueRuangans = [...new Set(billingData.map(b => b.ruangan))]; + const ruanganList = document.getElementById('ruanganList'); + ruanganList.innerHTML = ''; + + if (uniqueRuangans.length === 0) { + ruanganList.innerHTML = '

Tidak ada ruangan

'; + return; + } + + uniqueRuangans.forEach((ruangan, index) => { + const item = document.createElement('div'); + item.className = 'ruangan-item'; + item.textContent = ruangan || `Ruangan ${index + 1}`; + item.onclick = () => filterByRuangan(ruangan); + ruanganList.appendChild(item); + }); +} + +// Filter billing by ruangan +function filterByRuangan(ruangan) { + const filtered = billingData.filter(b => b.ruangan === ruangan); + const tbody = document.getElementById('billingTableBody'); + tbody.innerHTML = ''; + + if (filtered.length === 0) { + tbody.innerHTML = ` + + Tidak ada data untuk ruangan ini + + `; + return; + } + + filtered.forEach(billing => { + const row = document.createElement('tr'); + const badgeColor = getBillingSignColor(billing.billing_sign); + const badgeClass = getBillingSignBadgeClass(billing.billing_sign); + + const totalTarif = billing.total_tarif_rs || 0; + const totalKlaim = billing.total_klaim || 0; + + row.innerHTML = ` + ${billing.id_pasien || '-'} + + + ${billing.nama_pasien || '-'} + + + Rp ${Number(totalTarif).toLocaleString('id-ID')} + Rp ${Number(totalKlaim).toLocaleString('id-ID')} + + + + + + + `; + tbody.appendChild(row); + }); +} + +// Open edit modal +function openEditModal(billingId) { + currentEditingBilling = billingData.find(b => b.id_billing === billingId); + if (!currentEditingBilling) { + alert('Data billing tidak ditemukan'); + return; + } + + // Populate modal with billing data + document.getElementById('modalNamaPasien').value = currentEditingBilling.nama_pasien || ''; + document.getElementById('modalIdPasien').value = currentEditingBilling.id_pasien || ''; + document.getElementById('modalKelas').value = currentEditingBilling.Kelas || ''; + + // Tampilkan dokter yang menangani pasien + const dokterList = currentEditingBilling.nama_dokter || []; + const dokterListEl = document.getElementById('dokterList'); + if (dokterList.length > 0) { + dokterListEl.innerHTML = dokterList.map(dokter => + `${dokter}` + ).join(''); + } else { + dokterListEl.innerHTML = 'Belum ada data dokter'; + } + + // Total tarif & total klaim kumulatif + // Handle berbagai kemungkinan nama field (case-insensitive) + const totalTarif = Number(currentEditingBilling.total_tarif_rs || currentEditingBilling.Total_Tarif_RS || 0); + const totalKlaimLama = Number(currentEditingBilling.total_klaim || currentEditingBilling.Total_Klaim || currentEditingBilling.total_klaim_lama || 0); + document.getElementById('modalTotalTarif').value = totalTarif.toLocaleString('id-ID'); + + // Tindakan RS - semua yang ada sekarang = "lama" (karena tidak ada cara membedakan mana yang baru) + const tindakanLama = currentEditingBilling.tindakan_rs || []; + document.getElementById('tindakanLama').textContent = tindakanLama.length > 0 ? tindakanLama.join(', ') : 'Tidak ada'; + document.getElementById('tindakanBaru').textContent = 'Belum ada data baru'; + + // ICD9 & ICD10 - semua yang ada sekarang = "lama" + const icd9Lama = currentEditingBilling.icd9 || []; + const icd10Lama = currentEditingBilling.icd10 || []; + document.getElementById('icd9Lama').textContent = icd9Lama.length > 0 ? icd9Lama.join(', ') : 'Tidak ada'; + document.getElementById('icd10Lama').textContent = icd10Lama.length > 0 ? icd10Lama.join(', ') : 'Tidak ada'; + document.getElementById('icd9Baru').textContent = 'Belum ada data baru'; + document.getElementById('icd10Baru').textContent = 'Belum ada data baru'; + + // INACBG Lama + const existingRI = currentEditingBilling.inacbg_ri || []; + const existingRJ = currentEditingBilling.inacbg_rj || []; + const inacbgRILamaEl = document.getElementById('inacbgRILama'); + const inacbgRJLamaEl = document.getElementById('inacbgRJLama'); + const totalKlaimLamaEl = document.getElementById('totalKlaimLama'); + + // Debug: log untuk cek data yang diterima + console.log('=== DEBUG TOTAL KLAIM LAMA ==='); + console.log('Current editing billing:', currentEditingBilling); + console.log('total_klaim:', currentEditingBilling.total_klaim); + console.log('Total_Klaim:', currentEditingBilling.Total_Klaim); + console.log('total_klaim_lama:', currentEditingBilling.total_klaim_lama); + console.log('Total klaim lama (processed):', totalKlaimLama); + console.log('All keys in billing object:', Object.keys(currentEditingBilling)); + console.log('================================'); + + if (existingRI.length > 0) { + inacbgRILamaEl.innerHTML = `RI: ${existingRI.join(', ')}`; + } else { + inacbgRILamaEl.textContent = 'RI: Tidak ada'; + } + + if (existingRJ.length > 0) { + inacbgRJLamaEl.innerHTML = `RJ: ${existingRJ.join(', ')}`; + } else { + inacbgRJLamaEl.textContent = 'RJ: Tidak ada'; + } + + // Tampilkan total klaim lama (selalu tampilkan, meskipun 0) + totalKlaimLamaEl.textContent = `Total Klaim Lama: Rp ${totalKlaimLama.toLocaleString('id-ID')}`; + + // Set total klaim lama di input + document.getElementById('totalKlaimLamaInput').value = totalKlaimLama.toFixed(0); + + // Set tanggal keluar jika ada + // (akan diisi oleh admin, jadi kosong dulu) + document.getElementById('tanggalKeluar').value = ''; + + // Reset INACBG form + inacbgCodes = []; + isManualInacbgMode = false; + document.getElementById('inacbgCode').value = ''; + document.getElementById('inacbgCode').disabled = true; + document.getElementById('inacbgCode').classList.remove('d-none'); + document.getElementById('inacbgCodeManual').value = ''; + document.getElementById('inacbgCodeManual').classList.add('d-none'); + document.getElementById('inacbgCode').innerHTML = ''; + document.getElementById('tipeInacbg').value = ''; + document.getElementById('totalKlaim').value = '0'; + document.getElementById('codeList').innerHTML = 'Belum ada kode baru'; + document.getElementById('totalKlaimAkhir').value = totalKlaimLama.toFixed(0); + document.getElementById('formAlert').classList.add('d-none'); + + // Update billing sign display awal + updateBillingSignDisplay(); + + // Show modal + const modal = new bootstrap.Modal(document.getElementById('editModal')); + modal.show(); +} + +// Toggle between dropdown and manual input +function toggleInacbgInput() { + isManualInacbgMode = !isManualInacbgMode; + const codeSelect = document.getElementById('inacbgCode'); + const codeManual = document.getElementById('inacbgCodeManual'); + + if (isManualInacbgMode) { + // Switch to manual input + codeSelect.classList.add('d-none'); + codeManual.classList.remove('d-none'); + codeManual.focus(); + codeManual.value = ''; + } else { + // Switch back to dropdown + codeSelect.classList.remove('d-none'); + codeManual.classList.add('d-none'); + codeManual.value = ''; + } +} + +// Setup event listeners +function setupEventListeners() { + // Tipe INACBG change + document.getElementById('tipeInacbg').addEventListener('change', loadInacbgCodes); + + // Add code button + document.getElementById('addCodeBtn').addEventListener('click', addInacbgCode); + + // INACBG form submit + document.getElementById('inacbgForm').addEventListener('submit', submitInacbgForm); + + // Search input + document.getElementById('searchInput').addEventListener('input', searchBilling); + + // Manual input enter key + document.getElementById('inacbgCodeManual').addEventListener('keypress', (e) => { + if (e.key === 'Enter') { + e.preventDefault(); + addInacbgCode(); + } + }); +} + +// Load INACBG codes based on tipe +async function loadInacbgCodes() { + const tipe = document.getElementById('tipeInacbg').value; + const codeSelect = document.getElementById('inacbgCode'); + + if (!tipe) { + codeSelect.disabled = true; + codeSelect.innerHTML = ''; + return; + } + + const endpoint = tipe === 'RI' ? '/tarifBPJSRawatInap' : '/tarifBPJSRawatJalan'; + + try { + codeSelect.disabled = true; + codeSelect.innerHTML = ''; + + // Check cache first + if (!tarifCache[tipe]) { + const res = await fetch(`${API_BASE}${endpoint}`); + if (!res.ok) throw new Error(`HTTP ${res.status}`); + tarifCache[tipe] = await res.json(); + } + + const data = tarifCache[tipe] || []; + const items = Array.isArray(data) ? data : []; + + codeSelect.innerHTML = ''; + codeSelect.disabled = false; + + items.forEach(item => { + const option = document.createElement('option'); + // Use KodeINA as value and Deskripsi as display text + option.value = item.KodeINA || item.kodeINA || item.KodeINA || ''; + option.textContent = item.Deskripsi || item.deskripsi || item.Deskripsi || ''; + + // If value is empty but we have other fields, try alternatives + if (!option.value) { + option.value = item.KodeINA_RJ || item.kodeINA_RJ || item.KodeINA_RI || item.kodeINA_RI || ''; + } + + codeSelect.appendChild(option); + }); + + console.log(`Loaded ${items.length} INACBG codes for type ${tipe}`); + } catch (err) { + console.error('Error loading INACBG codes:', err); + codeSelect.disabled = true; + codeSelect.innerHTML = ``; + } +} + +// Get tarif for a code from cache or return 0 +function getTarifForCode(code, tipe, kelas = null) { + let tarif = 0; + const tarifData = tarifCache[tipe] || []; + const tarifItem = tarifData.find(item => (item.KodeINA || item.kodeINA) === code); + + if (tarifItem) { + if (tipe === 'RI') { + // Get tarif based on patient class + if (!kelas) kelas = currentEditingBilling.Kelas; + if (kelas === '1') { + tarif = tarifItem.Kelas1 || 0; + } else if (kelas === '2') { + tarif = tarifItem.Kelas2 || 0; + } else if (kelas === '3') { + tarif = tarifItem.Kelas3 || 0; + } + } else if (tipe === 'RJ') { + // Get tarif directly from TarifINACBG field + tarif = tarifItem.TarifINACBG || tarifItem.tarif_inacbg || 0; + } + } + + return tarif; +} + +// Add INACBG code (from dropdown or manual input) +async function addInacbgCode() { + const tipe = document.getElementById('tipeInacbg').value; + + if (!tipe) { + alert('Pilih tipe INACBG terlebih dahulu'); + return; + } + + let code = ''; + let codeText = ''; + + if (isManualInacbgMode) { + // Manual input mode + const manualInput = document.getElementById('inacbgCodeManual').value.trim().toUpperCase(); + if (!manualInput) { + alert('Masukkan kode INACBG'); + return; + } + code = manualInput; + codeText = manualInput; // Manual input, use code as text + } else { + // Dropdown mode + const codeSelect = document.getElementById('inacbgCode'); + const selectedOption = codeSelect.options[codeSelect.selectedIndex]; + code = codeSelect.value.trim(); + codeText = selectedOption.textContent.trim(); + + if (!code) { + alert('Pilih kode INACBG terlebih dahulu'); + return; + } + } + + if (inacbgCodes.some(c => c.value === code)) { + alert('Kode sudah ditambahkan'); + return; + } + + // Get tarif for this code + const tarif = getTarifForCode(code, tipe); + + inacbgCodes.push({ value: code, text: codeText, tarif: tarif }); + + // Clear input/select + if (isManualInacbgMode) { + document.getElementById('inacbgCodeManual').value = ''; + } else { + document.getElementById('inacbgCode').value = ''; + } + + renderCodeList(); + calculateTotalKlaim(); // Update total after adding code +} + +// Render code list +function renderCodeList() { + const codeList = document.getElementById('codeList'); + codeList.innerHTML = ''; + + if (inacbgCodes.length === 0) { + codeList.innerHTML = 'Belum ada kode baru'; + return; + } + + inacbgCodes.forEach((codeObj, index) => { + const badge = document.createElement('span'); + badge.className = 'code-badge'; + const tarifDisplay = codeObj.tarif ? `(Rp${codeObj.tarif.toLocaleString('id-ID')})` : ''; + badge.innerHTML = ` + ${codeObj.text || codeObj.value} ${tarifDisplay} + ร— + `; + codeList.appendChild(badge); + }); +} + +// Calculate total klaim dari kode baru SAJA (lama sudah tercatat di total_klaim backend) +function calculateTotalKlaim() { + const totalBaru = inacbgCodes.reduce((sum, code) => sum + (code.tarif || 0), 0); + document.getElementById('totalKlaim').value = totalBaru.toFixed(0); + + // Hitung total klaim akhir = lama + baru + const totalKlaimLama = parseFloat(document.getElementById('totalKlaimLamaInput').value) || 0; + const totalKlaimAkhir = totalKlaimLama + totalBaru; + document.getElementById('totalKlaimAkhir').value = totalKlaimAkhir.toFixed(0); + + // Update billing sign display berdasarkan total tarif RS kumulatif vs total klaim akhir + updateBillingSignDisplay(); +} + +// Remove INACBG code +function removeInacbgCode(index) { + inacbgCodes.splice(index, 1); + renderCodeList(); + calculateTotalKlaim(); // Update total after removing code +} + +// Hitung billing sign berdasarkan rumus: +// persentase = (total_tarif_rs / total_klaim_akhir) * 100 +function calculateBillingSign() { + // totalTarifRs sudah kumulatif (lama + baru) dari backend + const totalTarifRsStr = document.getElementById('modalTotalTarif').value.replace(/[^\d]/g, ''); + const totalTarifRs = parseFloat(totalTarifRsStr) || 0; + + // total klaim akhir = lama + baru + const totalKlaimAkhir = parseFloat(document.getElementById('totalKlaimAkhir').value) || 0; + + if (totalTarifRs <= 0 || totalKlaimAkhir <= 0) { + return { sign: null, percentage: 0 }; + } + + const percentage = (totalTarifRs / totalKlaimAkhir) * 100; + let sign = 'hijau'; + + if (percentage <= 25) { + sign = 'hijau'; + } else if (percentage >= 26 && percentage <= 50) { + sign = 'kuning'; + } else if (percentage >= 51 && percentage <= 75) { + sign = 'orange'; + } else if (percentage >= 76) { + sign = 'merah'; + } + + return { sign, percentage }; +} + +// Update tampilan billing sign di modal +function updateBillingSignDisplay() { + const container = document.getElementById('billingSignContainer'); + const badgeEl = document.getElementById('billingSignBadge'); + const textEl = document.getElementById('billingSignText'); + + if (!container || !badgeEl || !textEl) return; + + const { sign, percentage } = calculateBillingSign(); + + if (!sign) { + badgeEl.className = 'badge bg-secondary'; + badgeEl.textContent = '-'; + textEl.textContent = ''; + return; + } + + const color = getBillingSignColor(sign); + badgeEl.className = 'badge'; + badgeEl.style.backgroundColor = color; + badgeEl.textContent = sign.toUpperCase(); + + const roundedPct = percentage.toFixed(2); + textEl.textContent = `Tarif RS โ‰ˆ ${roundedPct}% dari BPJS`; +} + +// Format billing sign ke Title Case agar sesuai enum di DB +function formatBillingSignValue(sign) { + if (!sign) return ''; + const lower = sign.toLowerCase(); + return lower.charAt(0).toUpperCase() + lower.slice(1); +} + +// Submit INACBG form +async function submitInacbgForm(e) { + e.preventDefault(); + + const tipeInacbg = document.getElementById('tipeInacbg').value.trim(); + // total klaim BARU (tambahan); lama sudah tersimpan di backend + const totalKlaimBaru = parseFloat(document.getElementById('totalKlaim').value) || 0; + + // Validation + if (!currentEditingBilling) { + showAlert('danger', 'Data billing tidak ditemukan'); + return; + } + + if (inacbgCodes.length === 0) { + showAlert('danger', 'Tambahkan minimal satu kode INACBG'); + return; + } + + if (!tipeInacbg) { + showAlert('danger', 'Pilih tipe INACBG'); + return; + } + + if (totalKlaimBaru === 0) { + showAlert('danger', 'Total klaim tambahan tidak boleh 0'); + return; + } + + // Hitung billing sign berdasarkan total tarif RS dan total klaim + const { sign: billingSign } = calculateBillingSign(); + const formattedBillingSign = formatBillingSignValue(billingSign); + + // Ambil tanggal keluar jika diisi + const tanggalKeluar = document.getElementById('tanggalKeluar').value.trim(); + + // Prepare payload + const payload = { + id_billing: currentEditingBilling.id_billing, + tipe_inacbg: tipeInacbg, + kode_inacbg: inacbgCodes.map(c => c.value), // Extract just the codes + total_klaim: totalKlaimBaru, // Total klaim BARU saja (akan ditambahkan ke yang lama di backend) + billing_sign: formattedBillingSign, // kirim billing sign sesuai enum DB + tanggal_keluar: tanggalKeluar || '' // Tanggal keluar diisi oleh admin + }; + + try { + const res = await fetch(`${API_BASE}/admin/inacbg`, { + method: 'POST', + headers: { 'Content-Type': 'application/json' }, + body: JSON.stringify(payload) + }); + + const result = await res.json(); + + if (!res.ok) { + throw new Error(result.error || result.message || 'Gagal menyimpan INACBG'); + } + + showAlert('success', 'INACBG berhasil disimpan'); + setTimeout(() => { + bootstrap.Modal.getInstance(document.getElementById('editModal')).hide(); + loadBillingData(); + }, 1500); + + } catch (err) { + console.error('Error:', err); + showAlert('danger', err.message); + } +} + +// Show alert in modal +function showAlert(type, message) { + const alert = document.getElementById('formAlert'); + alert.className = `alert alert-${type}`; + alert.textContent = message; + alert.classList.remove('d-none'); +} + +// Search billing +function searchBilling(e) { + const keyword = e.target.value.toLowerCase().trim(); + + if (keyword === '') { + renderBillingTable(); + return; + } + + const filtered = billingData.filter(b => + (b.nama_pasien && b.nama_pasien.toLowerCase().includes(keyword)) || + (b.id_pasien && b.id_pasien.toString().includes(keyword)) + ); + + const tbody = document.getElementById('billingTableBody'); + tbody.innerHTML = ''; + + if (filtered.length === 0) { + tbody.innerHTML = ` + + Tidak ada hasil pencarian + + `; + return; + } + + filtered.forEach(billing => { + const row = document.createElement('tr'); + const badgeColor = getBillingSignColor(billing.billing_sign); + const badgeClass = getBillingSignBadgeClass(billing.billing_sign); + + const totalTarif = billing.total_tarif_rs || 0; + const totalKlaim = billing.total_klaim || 0; + + row.innerHTML = ` + ${billing.id_pasien || '-'} + + + ${billing.nama_pasien || '-'} + + + Rp ${Number(totalTarif).toLocaleString('id-ID')} + Rp ${Number(totalKlaim).toLocaleString('id-ID')} + + + + + + + `; + tbody.appendChild(row); + }); +} diff --git a/backendcareit_v4/testingFE/adminRuanganFE/scriptAdmin_backup.js b/backendcareit_v4/testingFE/adminRuanganFE/scriptAdmin_backup.js new file mode 100644 index 0000000..a0b3210 --- /dev/null +++ b/backendcareit_v4/testingFE/adminRuanganFE/scriptAdmin_backup.js @@ -0,0 +1,472 @@ +// Configuration +const API_BASE = 'http://localhost:8081'; +let billingData = []; +let currentEditingBilling = null; +let inacbgCodes = []; +let tarifCache = {}; // Cache for tarif data + +// Initialize on page load +document.addEventListener('DOMContentLoaded', () => { + updateCurrentDate(); + loadBillingData(); + setupEventListeners(); +}); + +// Update current date +function updateCurrentDate() { + const options = { weekday: 'long', year: 'numeric', month: 'long', day: 'numeric' }; + const today = new Date().toLocaleDateString('id-ID', options); + document.getElementById('currentDate').textContent = today; +} + +// Load billing data from API +async function loadBillingData() { + try { + const res = await fetch(`${API_BASE}/admin/billing`); + if (!res.ok) throw new Error(`HTTP ${res.status}`); + + const data = await res.json(); + billingData = data.data || []; + console.log('Billing data loaded:', billingData); + + renderBillingTable(); + renderRuanganSidebar(); + } catch (err) { + console.error('Error loading billing data:', err); + document.getElementById('billingTableBody').innerHTML = ` + + Gagal memuat data: ${err.message} + + `; + } +} + +// Render billing table +function renderBillingTable() { + const tbody = document.getElementById('billingTableBody'); + tbody.innerHTML = ''; + + if (billingData.length === 0) { + tbody.innerHTML = ` + + Tidak ada data billing + + `; + return; + } + + billingData.forEach(billing => { + const row = document.createElement('tr'); + const badgeClass = getBillingSignBadgeClass(billing.billing_sign); + const badgeColor = getBillingSignColor(billing.billing_sign); + + row.innerHTML = ` + ${billing.id_pasien || '-'} + + + ${billing.nama_pasien || '-'} + + + + + + + + + `; + tbody.appendChild(row); + }); +} + +// Get billing sign badge class and color +function getBillingSignColor(billingSign) { + switch (billingSign) { + case 'hijau': + return '#28a745'; + case 'kuning': + return '#ffc107'; + case 'merah': + case 'created': + return '#dc3545'; + default: + return '#6c757d'; + } +} + +function getBillingSignBadgeClass(billingSign) { + switch (billingSign) { + case 'hijau': + return 'hijau'; + case 'kuning': + return 'kuning'; + case 'merah': + return 'merah'; + case 'created': + return 'created'; + default: + return 'created'; + } +} + +// Render ruangan sidebar +function renderRuanganSidebar() { + const uniqueRuangans = [...new Set(billingData.map(b => b.ruangan))]; + const ruanganList = document.getElementById('ruanganList'); + ruanganList.innerHTML = ''; + + if (uniqueRuangans.length === 0) { + ruanganList.innerHTML = '

Tidak ada ruangan

'; + return; + } + + uniqueRuangans.forEach((ruangan, index) => { + const item = document.createElement('div'); + item.className = 'ruangan-item'; + item.textContent = ruangan || `Ruangan ${index + 1}`; + item.onclick = () => filterByRuangan(ruangan); + ruanganList.appendChild(item); + }); +} + +// Filter billing by ruangan +function filterByRuangan(ruangan) { + const filtered = billingData.filter(b => b.ruangan === ruangan); + const tbody = document.getElementById('billingTableBody'); + tbody.innerHTML = ''; + + if (filtered.length === 0) { + tbody.innerHTML = ` + + Tidak ada data untuk ruangan ini + + `; + return; + } + + filtered.forEach(billing => { + const row = document.createElement('tr'); + const badgeColor = getBillingSignColor(billing.billing_sign); + const badgeClass = getBillingSignBadgeClass(billing.billing_sign); + + row.innerHTML = ` + ${billing.id_pasien || '-'} + + + ${billing.nama_pasien || '-'} + + + + + + + + + `; + tbody.appendChild(row); + }); +} + +// Open edit modal +function openEditModal(billingId) { + currentEditingBilling = billingData.find(b => b.id_billing === billingId); + if (!currentEditingBilling) { + alert('Data billing tidak ditemukan'); + return; + } + + // Populate modal with billing data + document.getElementById('modalNamaPasien').value = currentEditingBilling.nama_pasien || ''; + document.getElementById('modalIdPasien').value = currentEditingBilling.id_pasien || ''; + document.getElementById('modalKelas').value = currentEditingBilling.Kelas || ''; + document.getElementById('modalTindakan').value = (currentEditingBilling.tindakan_rs || []).join(', ') || ''; + document.getElementById('modalTotalTarif').value = currentEditingBilling.total_tarif_rs || ''; + document.getElementById('modalICD9').value = (currentEditingBilling.icd9 || []).join(', ') || ''; + document.getElementById('modalICD10').value = (currentEditingBilling.icd10 || []).join(', ') || ''; + + // Reset INACBG form + inacbgCodes = []; + document.getElementById('inacbgCode').value = ''; + document.getElementById('inacbgCode').disabled = true; + document.getElementById('inacbgCode').innerHTML = ''; + document.getElementById('tipeInacbg').value = ''; + document.getElementById('totalKlaim').value = ''; + document.getElementById('codeList').innerHTML = ''; + document.getElementById('formAlert').classList.add('d-none'); + + // Show modal + const modal = new bootstrap.Modal(document.getElementById('editModal')); + modal.show(); +} + +// Setup event listeners +function setupEventListeners() { + // Tipe INACBG change + document.getElementById('tipeInacbg').addEventListener('change', loadInacbgCodes); + + // Add code button + document.getElementById('addCodeBtn').addEventListener('click', addInacbgCode); + + // INACBG form submit + document.getElementById('inacbgForm').addEventListener('submit', submitInacbgForm); + + // Search input + document.getElementById('searchInput').addEventListener('input', searchBilling); +} + +// Load INACBG codes based on tipe +async function loadInacbgCodes() { + const tipe = document.getElementById('tipeInacbg').value; + const codeSelect = document.getElementById('inacbgCode'); + + if (!tipe) { + codeSelect.disabled = true; + codeSelect.innerHTML = ''; + return; + } + + const endpoint = tipe === 'RI' ? '/tarifBPJSRawatInap' : '/tarifBPJSRawatJalan'; + + try { + codeSelect.disabled = true; + codeSelect.innerHTML = ''; + + // Check cache first + if (!tarifCache[tipe]) { + const res = await fetch(`${API_BASE}${endpoint}`); + if (!res.ok) throw new Error(`HTTP ${res.status}`); + tarifCache[tipe] = await res.json(); + } + + const data = tarifCache[tipe] || []; + const items = Array.isArray(data) ? data : []; + + codeSelect.innerHTML = ''; + codeSelect.disabled = false; + + items.forEach(item => { + const option = document.createElement('option'); + // Use KodeINA as value and Deskripsi as display text + option.value = item.KodeINA || item.kodeINA || item.KodeINA || ''; + option.textContent = item.Deskripsi || item.deskripsi || item.Deskripsi || ''; + + // If value is empty but we have other fields, try alternatives + if (!option.value) { + option.value = item.KodeINA_RJ || item.kodeINA_RJ || item.KodeINA_RI || item.kodeINA_RI || ''; + } + + codeSelect.appendChild(option); + }); + + console.log(`Loaded ${items.length} INACBG codes for type ${tipe}`); + } catch (err) { + console.error('Error loading INACBG codes:', err); + codeSelect.disabled = true; + codeSelect.innerHTML = ``; + } +} + +// Add INACBG code +async function addInacbgCode() { + const codeSelect = document.getElementById('inacbgCode'); + const selectedOption = codeSelect.options[codeSelect.selectedIndex]; + const code = codeSelect.value.trim(); + const codeText = selectedOption.textContent.trim(); + const tipe = document.getElementById('tipeInacbg').value; + + if (!code) { + alert('Pilih kode INACBG terlebih dahulu'); + return; + } + + if (inacbgCodes.some(c => c.value === code)) { + alert('Kode sudah ditambahkan'); + return; + } + + // Get tarif for this code + let tarif = 0; + const tarifData = tarifCache[tipe] || []; + const tarifItem = tarifData.find(item => (item.KodeINA || item.kodeINA) === code); + + if (tarifItem) { + if (tipe === 'RI') { + // Get tarif based on patient class + const kelas = currentEditingBilling.Kelas; + if (kelas === '1') { + tarif = tarifItem.Kelas1 || 0; + } else if (kelas === '2') { + tarif = tarifItem.Kelas2 || 0; + } else if (kelas === '3') { + tarif = tarifItem.Kelas3 || 0; + } + } else if (tipe === 'RJ') { + // Get tarif directly from TarifINACBG field + tarif = tarifItem.TarifINACBG || tarifItem.tarif_inacbg || 0; + } + } + + inacbgCodes.push({ value: code, text: codeText, tarif: tarif }); + codeSelect.value = ''; + renderCodeList(); + calculateTotalKlaim(); // Update total after adding code +} + +// Render code list +function renderCodeList() { + const codeList = document.getElementById('codeList'); + codeList.innerHTML = ''; + + if (inacbgCodes.length === 0) { + codeList.innerHTML = '

Belum ada kode

'; + return; + } + + inacbgCodes.forEach((codeObj, index) => { + const badge = document.createElement('span'); + badge.className = 'code-badge'; + const tarifDisplay = codeObj.tarif ? `(Rp${codeObj.tarif.toLocaleString('id-ID')})` : ''; + badge.innerHTML = ` + ${codeObj.text || codeObj.value} ${tarifDisplay} + ร— + `; + codeList.appendChild(badge); + }); +} + +// Calculate total klaim from selected codes +function calculateTotalKlaim() { + const total = inacbgCodes.reduce((sum, code) => sum + (code.tarif || 0), 0); + document.getElementById('totalKlaim').value = total.toFixed(0); +} + +// Remove INACBG code +function removeInacbgCode(index) { + inacbgCodes.splice(index, 1); + renderCodeList(); + calculateTotalKlaim(); // Update total after removing code +} + +// Submit INACBG form +async function submitInacbgForm(e) { + e.preventDefault(); + + const tipeInacbg = document.getElementById('tipeInacbg').value.trim(); + const totalKlaim = parseFloat(document.getElementById('totalKlaim').value) || 0; + + // Validation + if (!currentEditingBilling) { + showAlert('danger', 'Data billing tidak ditemukan'); + return; + } + + if (inacbgCodes.length === 0) { + showAlert('danger', 'Tambahkan minimal satu kode INACBG'); + return; + } + + if (!tipeInacbg) { + showAlert('danger', 'Pilih tipe INACBG'); + return; + } + + if (totalKlaim === 0) { + showAlert('danger', 'Total klaim tidak boleh 0'); + return; + } + + // Prepare payload + const payload = { + id_billing: currentEditingBilling.id_billing, + tipe_inacbg: tipeInacbg, + kode_inacbg: inacbgCodes.map(c => c.value), // Extract just the codes + total_klaim: totalKlaim, + billing_sign: 'created' // or any status you want + }; + + try { + const res = await fetch(`${API_BASE}/admin/inacbg`, { + method: 'POST', + headers: { 'Content-Type': 'application/json' }, + body: JSON.stringify(payload) + }); + + const result = await res.json(); + + if (!res.ok) { + throw new Error(result.error || result.message || 'Gagal menyimpan INACBG'); + } + + showAlert('success', 'INACBG berhasil disimpan'); + setTimeout(() => { + bootstrap.Modal.getInstance(document.getElementById('editModal')).hide(); + loadBillingData(); + }, 1500); + + } catch (err) { + console.error('Error:', err); + showAlert('danger', err.message); + } +} + +// Show alert in modal +function showAlert(type, message) { + const alert = document.getElementById('formAlert'); + alert.className = `alert alert-${type}`; + alert.textContent = message; + alert.classList.remove('d-none'); +} + +// Search billing +function searchBilling(e) { + const keyword = e.target.value.toLowerCase().trim(); + + if (keyword === '') { + renderBillingTable(); + return; + } + + const filtered = billingData.filter(b => + (b.nama_pasien && b.nama_pasien.toLowerCase().includes(keyword)) || + (b.id_pasien && b.id_pasien.toString().includes(keyword)) + ); + + const tbody = document.getElementById('billingTableBody'); + tbody.innerHTML = ''; + + if (filtered.length === 0) { + tbody.innerHTML = ` + + Tidak ada hasil pencarian + + `; + return; + } + + filtered.forEach(billing => { + const row = document.createElement('tr'); + const badgeColor = getBillingSignColor(billing.billing_sign); + const badgeClass = getBillingSignBadgeClass(billing.billing_sign); + + row.innerHTML = ` + ${billing.id_pasien || '-'} + + + ${billing.nama_pasien || '-'} + + + + + + + + + `; + tbody.appendChild(row); + }); +} diff --git a/backendcareit_v4/testingFE/adminRuanganFE/styles.css b/backendcareit_v4/testingFE/adminRuanganFE/styles.css new file mode 100644 index 0000000..8bc3876 --- /dev/null +++ b/backendcareit_v4/testingFE/adminRuanganFE/styles.css @@ -0,0 +1,310 @@ +/* General Styles */ +* { + margin: 0; + padding: 0; + box-sizing: border-box; +} + +body { + font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; + background-color: #f5f5f5; +} + +.container-fluid { + height: 100vh; +} + +.row { + height: 100%; +} + +/* Sidebar */ +.sidebar { + background-color: #f8f9fa; + border-right: 1px solid #dee2e6; + padding: 20px; + overflow-y: auto; + max-height: 100vh; +} + +.sidebar-header { + margin-bottom: 20px; + padding-bottom: 15px; + border-bottom: 2px solid #007bff; +} + +.sidebar-header h5 { + color: #333; + font-weight: 600; +} + +.ruangan-list { + display: flex; + flex-direction: column; + gap: 10px; +} + +.ruangan-item { + padding: 10px 15px; + background-color: white; + border: 1px solid #dee2e6; + border-radius: 4px; + cursor: pointer; + transition: all 0.3s; + color: #6c757d; + font-size: 0.95rem; +} + +.ruangan-item:hover { + background-color: #e7f3ff; + border-color: #007bff; + color: #007bff; +} + +.ruangan-item.active { + background-color: #007bff; + border-color: #007bff; + color: white; + font-weight: 600; +} + +/* Main Content */ +.main-content { + background-color: white; + padding: 30px; + overflow-y: auto; + max-height: 100vh; +} + +.header { + margin-bottom: 30px; +} + +.header h2 { + color: #333; + font-weight: 600; + margin-bottom: 10px; +} + +.header .text-muted { + color: #6c757d; +} + +.search-box input { + border: 1px solid #dee2e6; + border-radius: 20px; + padding: 10px 20px; + font-size: 0.95rem; +} + +.search-box input:focus { + border-color: #007bff; + box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); +} + +/* Billing Table */ +.billing-table-container { + overflow-x: auto; +} + +.table { + margin-bottom: 0; +} + +.table thead th { + background-color: #f8f9fa; + border-bottom: 2px solid #dee2e6; + font-weight: 600; + color: #333; + padding: 15px; +} + +.table tbody td { + padding: 15px; + vertical-align: middle; +} + +.table tbody tr:hover { + background-color: #f8f9fa; +} + +/* Billing Sign Badge */ +.billing-sign-badge { + width: 20px; + height: 20px; + border-radius: 50%; + display: inline-block; +} + +.billing-sign-badge.created { + background-color: #dc3545; +} + +.billing-sign-badge.kuning { + background-color: #ffc107; +} + +.billing-sign-badge.hijau { + background-color: #28a745; +} + +.billing-sign-badge.merah { + background-color: #dc3545; +} + +/* Modal Styles */ +.modal-content { + border-radius: 8px; + border: none; + box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); +} + +.modal-header { + border-bottom: 1px solid #dee2e6; + background-color: #f8f9fa; +} + +.modal-header .modal-title { + font-weight: 600; + color: #333; +} + +.modal-body h6 { + font-weight: 600; + color: #6c757d; + margin-bottom: 8px; + font-size: 0.9rem; +} + +.modal-body .form-control { + border: 1px solid #dee2e6; + border-radius: 4px; + padding: 10px 12px; +} + +.modal-body .form-control:focus { + border-color: #007bff; + box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); +} + +.modal-body .form-select { + border: 1px solid #dee2e6; + border-radius: 4px; +} + +.modal-body .form-select:focus { + border-color: #007bff; + box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); +} + +/* Code List */ +.code-badge { + display: inline-block; + background-color: #e7f3ff; + border: 1px solid #007bff; + border-radius: 20px; + padding: 6px 12px; + margin-right: 8px; + margin-bottom: 8px; + font-size: 0.9rem; + color: #007bff; +} + +.code-badge .remove-btn { + margin-left: 8px; + cursor: pointer; + font-weight: bold; +} + +/* Buttons */ +.btn-primary { + background-color: #007bff; + border-color: #007bff; + border-radius: 4px; +} + +.btn-primary:hover { + background-color: #0056b3; + border-color: #0056b3; +} + +.btn-success { + background-color: #28a745; + border-color: #28a745; + border-radius: 4px; +} + +.btn-success:hover { + background-color: #218838; + border-color: #218838; +} + +.btn-sm { + padding: 4px 8px; + font-size: 0.85rem; +} + +/* Alerts */ +.alert { + border-radius: 4px; + border: none; +} + +.alert-success { + background-color: #d4edda; + color: #155724; + border: 1px solid #c3e6cb; +} + +.alert-danger { + background-color: #f8d7da; + color: #721c24; + border: 1px solid #f5c6cb; +} + +.alert-info { + background-color: #d1ecf1; + color: #0c5460; + border: 1px solid #bee5eb; +} + +/* Responsive */ +@media (max-width: 768px) { + .sidebar { + display: none; + } + + .main-content { + padding: 15px; + } + + .header h2 { + font-size: 1.5rem; + } + + .table thead { + display: none; + } + + .table tbody tr { + display: block; + margin-bottom: 15px; + border: 1px solid #dee2e6; + border-radius: 4px; + } + + .table tbody td { + display: block; + text-align: right; + padding-left: 50%; + position: relative; + } + + .table tbody td:before { + content: attr(data-label); + position: absolute; + left: 15px; + font-weight: 600; + color: #6c757d; + } +} diff --git a/backendcareit_v4/testingFE/billingtestwithAPI/billingPasienTest.html b/backendcareit_v4/testingFE/billingtestwithAPI/billingPasienTest.html new file mode 100644 index 0000000..d848a59 --- /dev/null +++ b/backendcareit_v4/testingFE/billingtestwithAPI/billingPasienTest.html @@ -0,0 +1,199 @@ + + + + + + Form Billing Pasien BPJS + + + + + + +
+
+
+

Form Billing Pasien BPJS

+
+
+
+ + +
+ +
+ + โ–ผ + +
+ +
+ + +
+ + +
+ +
+ + +
+
+ + +
+ +
+ + +
+ +
+ +
+ + โ–ผ + +
+ +
+ +
+ + +
+
+ + +
+ +
+ + +
+ +
+
+ +
+ โ–ผ + +
+ +
+ + +
+ +
+
+ +
+ โ–ผ + +
+ +
+ +
+ +
+
+ +
+ โ–ผ + +
+ +
+ + +
+ +
+ Belum ada data yang dimuat. Pilih pasien untuk melihat riwayat. +
+
+
+
Tindakan RS
+
    +
    +
    +
    ICD 9
    +
      +
      +
      +
      ICD 10
      +
        +
        +
        +
        + + +
        + +
        + Rp + +
        + Total akan dihitung otomatis berdasarkan tindakan yang dipilih +
        + + + +
        +
        + + + +
        +
        +
        +
        +
        +
        +
        + + + + + + + diff --git a/backendcareit_v4/testingFE/billingtestwithAPI/script.js b/backendcareit_v4/testingFE/billingtestwithAPI/script.js new file mode 100644 index 0000000..2c7f9e0 --- /dev/null +++ b/backendcareit_v4/testingFE/billingtestwithAPI/script.js @@ -0,0 +1,1405 @@ +// ============= CONFIGURATION ============= +const API_BASE = "http://192.168.1.2:8081"; +const FETCH_TIMEOUT = 10000; + +// ============= UTILITY FUNCTIONS ============= +function fetchWithTimeout(url, options = {}, timeout = FETCH_TIMEOUT) { + return Promise.race([ + fetch(url, options), + new Promise((_, reject) => + setTimeout(() => reject(new Error('Request timeout')), timeout) + ) + ]); +} + +function debounce(func, wait) { + let timeout; + return function executedFunction(...args) { + const later = () => { + clearTimeout(timeout); + func(...args); + }; + clearTimeout(timeout); + timeout = setTimeout(later, wait); + }; +} + +// ============= SEARCHABLE DROPDOWN FUNCTIONS ============= +function initSearchableDropdown(selectId) { + const wrapper = document.getElementById(`wrapper_${selectId}`); + const input = document.getElementById(selectId); + const inputField = document.getElementById(`input_${selectId}`) || input; + const dropdown = document.getElementById(`dropdown_${selectId}`); + const searchInput = document.getElementById(`search_${selectId}`); + const optionsContainer = document.getElementById(`options_${selectId}`); + const hiddenSelect = document.getElementById(`select_${selectId}`); + + if (!wrapper || !input || !dropdown || !searchInput || !optionsContainer) return; + + const isMultiSelect = wrapper.classList.contains('multi-select'); + let allOptions = []; + let filteredOptions = []; + let selectedIndex = -1; + let selectedValues = new Set(); + + // Toggle dropdown + input.addEventListener('click', function(e) { + // Don't open if clicking on chip remove button + if (e.target.classList.contains('chip-remove')) return; + e.stopPropagation(); + const isOpen = wrapper.classList.contains('open'); + closeAllDropdowns(); + if (!isOpen) { + openDropdown(); + } + }); + + // For multi-select, also handle input field click and search + if (isMultiSelect && inputField) { + inputField.addEventListener('click', function(e) { + e.stopPropagation(); + const isOpen = wrapper.classList.contains('open'); + closeAllDropdowns(); + if (!isOpen) { + openDropdown(); + } + }); + + // Allow typing in input field for multi-select + inputField.addEventListener('input', function() { + const keyword = this.value.toLowerCase().trim(); + if (keyword) { + const isOpen = wrapper.classList.contains('open'); + if (!isOpen) { + openDropdown(); + } + searchInput.value = keyword; + filterOptions(keyword); + } + }); + } + + // Search functionality + searchInput.addEventListener('input', function() { + const keyword = this.value.toLowerCase().trim(); + filterOptions(keyword); + }); + + // Prevent dropdown close when clicking inside + dropdown.addEventListener('click', function(e) { + e.stopPropagation(); + }); + + // Close dropdown when clicking outside + document.addEventListener('click', function(e) { + if (!wrapper.contains(e.target)) { + closeDropdown(); + } + }); + + // Keyboard navigation + input.addEventListener('keydown', function(e) { + if (e.key === 'Enter' || e.key === ' ') { + e.preventDefault(); + if (!wrapper.classList.contains('open')) { + openDropdown(); + } + } + }); + + searchInput.addEventListener('keydown', function(e) { + if (e.key === 'ArrowDown') { + e.preventDefault(); + highlightNext(); + } else if (e.key === 'ArrowUp') { + e.preventDefault(); + highlightPrev(); + } else if (e.key === 'Enter') { + e.preventDefault(); + selectHighlighted(); + } else if (e.key === 'Escape') { + closeDropdown(); + } + }); + + function openDropdown() { + wrapper.classList.add('open'); + dropdown.classList.add('show'); + if (!isMultiSelect) { + input.classList.add('searching'); + } + searchInput.value = ''; + searchInput.focus(); + filterOptions(''); + } + + function closeDropdown() { + wrapper.classList.remove('open'); + dropdown.classList.remove('show'); + if (!isMultiSelect) { + input.classList.remove('searching'); + } + selectedIndex = -1; + } + + function closeAllDropdowns() { + document.querySelectorAll('.searchable-select-wrapper').forEach(w => { + w.classList.remove('open'); + w.querySelector('.searchable-select-dropdown').classList.remove('show'); + w.querySelector('.searchable-select-input').classList.remove('searching'); + }); + } + + function filterOptions(keyword) { + filteredOptions = keyword === '' + ? allOptions + : allOptions.filter(opt => opt.text.toLowerCase().includes(keyword)); + + renderOptions(); + } + + function renderOptions() { + optionsContainer.innerHTML = ''; + selectedIndex = -1; + + if (filteredOptions.length === 0) { + optionsContainer.innerHTML = '
        Tidak ada hasil
        '; + return; + } + + filteredOptions.forEach((option, index) => { + const div = document.createElement('div'); + div.className = 'searchable-select-option'; + div.textContent = option.text; + div.dataset.value = option.value; + div.dataset.index = index; + + // Check if selected (for multi-select) + if (isMultiSelect && selectedValues.has(option.value)) { + div.classList.add('selected'); + } else if (!isMultiSelect) { + const currentInput = document.getElementById(`input_${selectId}`) || input; + if (currentInput && currentInput.value === option.text) { + div.classList.add('selected'); + } + } + + div.addEventListener('click', function() { + selectOption(option.value, option.text); + }); + + div.addEventListener('mouseenter', function() { + highlightOption(index); + }); + + optionsContainer.appendChild(div); + }); + } + + function renderChips() { + if (!isMultiSelect) return; + + // Clear input container + input.innerHTML = ''; + + // Add chips for selected items + selectedValues.forEach(value => { + const option = allOptions.find(opt => opt.value === value); + if (option) { + const chip = document.createElement('span'); + chip.className = 'selected-chip'; + chip.innerHTML = ` + ${option.text} + ร— + `; + chip.querySelector('.chip-remove').addEventListener('click', function(e) { + e.stopPropagation(); + removeSelection(value); + }); + input.appendChild(chip); + } + }); + + // Add input field + const inputEl = document.createElement('input'); + inputEl.type = 'text'; + inputEl.id = `input_${selectId}`; + inputEl.placeholder = selectedValues.size === 0 ? input.getAttribute('placeholder') || '-- Pilih --' : ''; + inputEl.autocomplete = 'off'; + input.appendChild(inputEl); + + // Add event listeners to new input field + inputEl.addEventListener('click', function(e) { + e.stopPropagation(); + const isOpen = wrapper.classList.contains('open'); + closeAllDropdowns(); + if (!isOpen) { + openDropdown(); + } + }); + + inputEl.addEventListener('input', function() { + const keyword = this.value.toLowerCase().trim(); + if (keyword) { + const isOpen = wrapper.classList.contains('open'); + if (!isOpen) { + openDropdown(); + } + searchInput.value = keyword; + filterOptions(keyword); + } + }); + } + + function highlightOption(index) { + document.querySelectorAll(`#options_${selectId} .searchable-select-option`).forEach((opt, i) => { + opt.classList.remove('highlighted'); + if (i === index) { + opt.classList.add('highlighted'); + selectedIndex = index; + } + }); + } + + function highlightNext() { + if (selectedIndex < filteredOptions.length - 1) { + selectedIndex++; + highlightOption(selectedIndex); + scrollToHighlighted(); + } + } + + function highlightPrev() { + if (selectedIndex > 0) { + selectedIndex--; + highlightOption(selectedIndex); + scrollToHighlighted(); + } + } + + function scrollToHighlighted() { + const highlighted = document.querySelector(`#options_${selectId} .searchable-select-option.highlighted`); + if (highlighted) { + highlighted.scrollIntoView({ block: 'nearest', behavior: 'smooth' }); + } + } + + function selectHighlighted() { + if (selectedIndex >= 0 && selectedIndex < filteredOptions.length) { + const option = filteredOptions[selectedIndex]; + selectOption(option.value, option.text); + } + } + + function selectOption(value, text) { + if (isMultiSelect) { + // Toggle selection for multi-select + if (selectedValues.has(value)) { + removeSelection(value); + } else { + selectedValues.add(value); + if (hiddenSelect) { + const option = document.createElement('option'); + option.value = value; + option.textContent = text; + option.selected = true; + hiddenSelect.appendChild(option); + } + renderChips(); + renderOptions(); // Update checkmarks + } + // Keep dropdown open for multi-select + searchInput.focus(); + } else { + // Single select behavior + inputField.value = text; + input.classList.remove('searching'); + if (hiddenSelect) { + hiddenSelect.value = value; + } + closeDropdown(); + } + + // Trigger change event + const event = new Event('change', { bubbles: true }); + if (hiddenSelect) hiddenSelect.dispatchEvent(event); + + // Jika ini adalah tarif_rs, hitung ulang total + if (selectId === 'tarif_rs') { + calculateTotalTarifRS(); + } + } + + function removeSelection(value) { + selectedValues.delete(value); + if (hiddenSelect) { + const option = hiddenSelect.querySelector(`option[value="${value}"]`); + if (option) option.remove(); + } + renderChips(); + renderOptions(); // Update checkmarks + + // Jika ini adalah tarif_rs, hitung ulang total + if (selectId === 'tarif_rs') { + calculateTotalTarifRS(); + } + } + + // Public function to set options + return { + setOptions: function(options) { + allOptions = options; + filteredOptions = options; + if (isMultiSelect) { + renderChips(); + } + renderOptions(); + }, + getValue: function() { + if (isMultiSelect) { + return Array.from(selectedValues); + } + return hiddenSelect ? hiddenSelect.value : ''; + }, + setValue: function(value) { + if (isMultiSelect) { + // For multi-select, value should be an array + if (Array.isArray(value)) { + selectedValues = new Set(value); + if (hiddenSelect) { + hiddenSelect.innerHTML = ''; + value.forEach(val => { + const option = allOptions.find(opt => opt.value === val); + if (option) { + const optEl = document.createElement('option'); + optEl.value = option.value; + optEl.textContent = option.text; + optEl.selected = true; + hiddenSelect.appendChild(optEl); + } + }); + } + renderChips(); + renderOptions(); + } + + // Jika ini adalah tarif_rs, hitung ulang total setelah set value + if (selectId === 'tarif_rs') { + setTimeout(() => calculateTotalTarifRS(), 100); + } + } else { + // Untuk single-select, cari option berdasarkan value atau text + let option = allOptions.find(opt => opt.value === value || opt.value === value.toString()); + + // Jika tidak ditemukan berdasarkan value, coba cari berdasarkan text + if (!option) { + option = allOptions.find(opt => opt.text === value || opt.text === value.toString()); + } + + if (option) { + // Update input element langsung + input.value = option.text; + if (hiddenSelect) { + hiddenSelect.value = option.value; + } + console.log(`[${selectId}] setValue: Set to "${option.text}" (value: "${option.value}")`); + } else { + // Jika option tidak ditemukan, coba set langsung ke input sebagai fallback + console.warn(`[${selectId}] setValue: Option not found for value "${value}", setting directly to input`); + input.value = value; + if (hiddenSelect) { + // Coba cari di hidden select + const hiddenOption = Array.from(hiddenSelect.options).find(opt => + opt.text === value || opt.value === value || opt.text === value.toString() || opt.value === value.toString() + ); + if (hiddenOption) { + hiddenSelect.value = hiddenOption.value; + } + } + } + + // Jika ini adalah tarif_rs, hitung ulang total setelah set value + if (selectId === 'tarif_rs') { + setTimeout(() => calculateTotalTarifRS(), 100); + } + } + } + }; +} + +// Store dropdown instances +const dropdownInstances = {}; + +// ============= LOADER DROPDOWN ============= +async function loadSelect(url, selectId, labelField) { + const input = document.getElementById(selectId); + const hiddenSelect = document.getElementById(`select_${selectId}`); + if (!input && !hiddenSelect) return; + + // Initialize searchable dropdown if not already + if (!dropdownInstances[selectId]) { + dropdownInstances[selectId] = initSearchableDropdown(selectId); + } + + // Show loading + if (input) { + input.value = 'Memuat...'; + input.disabled = true; + } + + try { + const res = await fetchWithTimeout(url); + if (!res.ok) { + throw new Error(`HTTP error! status: ${res.status}`); + } + const data = await res.json(); + + // Debug: log struktur data untuk troubleshooting + if (data.length > 0) { + console.log(`[${selectId}] Data structure:`, Object.keys(data[0])); + console.log(`[${selectId}] Looking for field: "${labelField}"`); + console.log(`[${selectId}] First item:`, data[0]); + } + + // Helper function untuk mendapatkan field value (case-insensitive dan flexible) + function getFieldValue(item, fieldName) { + // KHUSUS untuk tarif_rs: HANYA gunakan "Deskripsi", JANGAN pakai "KodeRS" (ID) + if (selectId === 'tarif_rs') { + // Coba langsung "Deskripsi" + if (item['Deskripsi'] !== undefined && item['Deskripsi'] !== null && item['Deskripsi'] !== '') { + return item['Deskripsi']; + } + + // Coba case-insensitive untuk "Deskripsi" + const keys = Object.keys(item); + const deskripsiKey = keys.find(k => k.toLowerCase() === 'deskripsi'); + if (deskripsiKey && item[deskripsiKey] !== null && item[deskripsiKey] !== '') { + return item[deskripsiKey]; + } + + // JANGAN fallback ke field lain untuk tarif_rs (terutama KodeRS) + return null; + } + + // KHUSUS untuk ruangan: tampilkan hanya Nama_Ruangan + if (selectId === 'ruangan') { + const namaRuangan = item['Nama_Ruangan'] || ''; + return namaRuangan || null; + } + + // Untuk dropdown lain, gunakan logic normal + // Coba langsung + if (item[fieldName] !== undefined && item[fieldName] !== null && item[fieldName] !== '') { + return item[fieldName]; + } + + // Coba case-insensitive + const lowerField = fieldName.toLowerCase(); + const keys = Object.keys(item); + const foundKey = keys.find(k => k.toLowerCase() === lowerField); + if (foundKey && item[foundKey] !== null && item[foundKey] !== '') { + return item[foundKey]; + } + + // Coba partial match (jika fieldName adalah "Tindakan_RS", cari yang mengandung "tindakan") + const partialMatch = keys.find(k => { + const kLower = k.toLowerCase(); + const fieldLower = lowerField.replace(/_/g, ''); + return kLower.includes(fieldLower) || fieldLower.includes(kLower); + }); + if (partialMatch && item[partialMatch] !== null && item[partialMatch] !== '') { + console.log(`[${selectId}] Using partial match: "${partialMatch}" instead of "${fieldName}"`); + return item[partialMatch]; + } + + // Jika tidak ditemukan, coba ambil field pertama yang ada value + const firstValidKey = keys.find(k => item[k] !== null && item[k] !== '' && item[k] !== undefined); + if (firstValidKey) { + console.warn(`[${selectId}] Field "${fieldName}" not found, using "${firstValidKey}" instead`); + return item[firstValidKey]; + } + + return null; + } + + // Build options array untuk searchable dropdown + const options = []; + + // Clear ruanganDataList jika ini adalah load ruangan + if (selectId === 'ruangan') { + ruanganDataList = []; + } + + // Clear tarifRSDataList jika ini adalah load tarif_rs + if (selectId === 'tarif_rs') { + tarifRSDataList = []; + } + + data.forEach(item => { + const value = getFieldValue(item, labelField); + + // Skip jika value kosong/null + if (!value || value.toString().trim() === '') { + return; + } + + const valueStr = value.toString().trim(); + options.push({ + value: valueStr, + text: valueStr + }); + + // KHUSUS untuk ruangan: store data asli untuk lookup (dengan ID_Ruangan) + if (selectId === 'ruangan') { + ruanganDataList.push(item); + console.log(`[ruangan] Stored ruangan data:`, item); + } + + // KHUSUS untuk tarif_rs: store data asli untuk lookup harga + if (selectId === 'tarif_rs') { + tarifRSDataList.push(item); + console.log(`[tarif_rs] Stored tarif RS data:`, item); + } + }); + + if (options.length === 0) { + console.warn(`[${selectId}] No valid data found! Field "${labelField}" may not exist.`); + if (input) { + input.value = 'Data tidak tersedia'; + input.disabled = true; + } + } else { + // Set options ke searchable dropdown + if (dropdownInstances[selectId]) { + dropdownInstances[selectId].setOptions(options); + } + + // Set options ke hidden select juga + if (hiddenSelect) { + hiddenSelect.innerHTML = ''; + options.forEach(opt => { + const option = document.createElement('option'); + option.value = opt.value; + option.textContent = opt.text; + hiddenSelect.appendChild(option); + }); + } + + if (input) { + input.value = ''; + input.disabled = false; + input.placeholder = '-- Pilih --'; + } + + console.log(`[${selectId}] Loaded ${options.length} items`); + + // Jika ini adalah load ruangan dan ada pending ruangan ID, set sekarang + if (selectId === 'ruangan' && pendingRuanganId) { + console.log('Ruangan selesai di-load, setting pending ruangan ID:', pendingRuanganId); + setTimeout(() => { + setRuanganFromId(pendingRuanganId); + pendingRuanganId = null; // Clear pending + }, 100); + } + + // Jika ini adalah load tarif_rs, hitung total setelah load selesai + if (selectId === 'tarif_rs') { + setTimeout(() => { + calculateTotalTarifRS(); + }, 200); + } + } + } catch (error) { + console.error(`Error loading ${selectId}:`, error); + if (input) { + input.value = 'Error memuat data'; + input.disabled = true; + } + } +} + +// ============= LOAD SEMUA DROPDOWN ============= +async function loadAllSelects() { + // Load semua dropdown secara paralel untuk performa lebih baik + await Promise.all([ + loadSelect(`${API_BASE}/dokter`, 'nama_dokter', 'Nama_Dokter'), + // Untuk tarif_rs: gunakan field "Deskripsi" dari JSON response (bukan KodeRS/ID) + loadSelect(`${API_BASE}/tarifRS`, 'tarif_rs', 'Deskripsi'), + loadSelect(`${API_BASE}/icd9`, 'icd9', 'Prosedur'), + loadSelect(`${API_BASE}/icd10`, 'icd10', 'Diagnosa'), + loadSelect(`${API_BASE}/ruangan`, 'ruangan', 'Nama_Ruangan') + ]); +} + +// Initialize all searchable dropdowns +function initAllDropdowns() { + const dropdownIds = ['nama_dokter', 'tarif_rs', 'icd9', 'icd10', 'ruangan']; + dropdownIds.forEach(id => { + if (!dropdownInstances[id]) { + dropdownInstances[id] = initSearchableDropdown(id); + } + }); +} + +// ============= CALCULATE TOTAL TARIF RS ============= +function calculateTotalTarifRS() { + const totalInput = document.getElementById('total_tarif_rs'); + if (!totalInput) { + console.warn('total_tarif_rs input tidak ditemukan'); + return; + } + + // Ambil semua tindakan yang dipilih dari dropdown tarif_rs + const selectedTindakan = []; + if (dropdownInstances['tarif_rs']) { + const selectedValues = dropdownInstances['tarif_rs'].getValue(); + if (Array.isArray(selectedValues)) { + selectedTindakan.push(...selectedValues); + } + } + + // Jika tidak ada tindakan yang dipilih, set total ke 0 + if (selectedTindakan.length === 0) { + totalInput.value = '0'; + return; + } + + // Hitung total dari setiap tindakan + let total = 0; + selectedTindakan.forEach(tindakan => { + // Cari data tarif RS berdasarkan Deskripsi (tindakan) - case insensitive + const tarifData = tarifRSDataList.find(t => { + const deskripsi = t.Deskripsi || t.deskripsi || t.Tindakan_RS || t.tindakan_rs || ''; + return deskripsi.toString().trim().toLowerCase() === tindakan.toString().trim().toLowerCase(); + }); + + if (tarifData) { + // Ambil harga - coba berbagai kemungkinan field name + // Dari model: Harga int `gorm:"column:Tarif_RS"` + // Jadi di JSON response kemungkinan fieldnya adalah "Tarif_RS" atau "Harga" + const harga = tarifData.Tarif_RS || + tarifData.tarif_rs || + tarifData.TarifRS || + tarifData.tarifRS || + tarifData.Harga || + tarifData.harga || + 0; + + // Convert ke number + const hargaNum = parseInt(harga) || 0; + total += hargaNum; + + console.log(`Tindakan "${tindakan}": Rp ${hargaNum.toLocaleString('id-ID')}`); + } else { + console.warn(`Harga tidak ditemukan untuk tindakan: "${tindakan}"`); + console.log('Available tarif RS data (first 3):', tarifRSDataList.slice(0, 3).map(t => ({ + Deskripsi: t.Deskripsi, + Tarif_RS: t.Tarif_RS, + Harga: t.Harga, + allKeys: Object.keys(t) + }))); + } + }); + + // Format angka dengan pemisah ribuan (format Indonesia) + totalInput.value = total.toLocaleString('id-ID'); + + console.log(`Total Tarif RS: Rp ${total.toLocaleString('id-ID')}`); +} + +// ============= AUTOCOMPLETE PASIEN ============= +const inputPasien = document.getElementById('nama_pasien'); +const listPasien = document.getElementById('list_pasien'); +let searchTimeout; +let currentSearchAbortController = null; + +async function searchPasien(keyword) { + // Cancel previous request jika masih pending + if (currentSearchAbortController) { + currentSearchAbortController.abort(); + } + + if (keyword.length < 2) { + listPasien.innerHTML = ''; + listPasien.classList.remove('show'); + return; + } + + // Tampilkan loading + listPasien.innerHTML = '
        Mencari...
        '; + listPasien.classList.add('show'); + + try { + // Buat AbortController untuk cancel request + currentSearchAbortController = new AbortController(); + + const res = await fetchWithTimeout( + `${API_BASE}/pasien/search?nama=${encodeURIComponent(keyword)}`, + { signal: currentSearchAbortController.signal } + ); + + if (!res.ok) { + throw new Error(`HTTP error! status: ${res.status}`); + } + + const response = await res.json(); + + // Handle response format: bisa array langsung atau {data: [], status: "success"} + const data = Array.isArray(response) ? response : (response.data || []); + + // Optimasi: gunakan DocumentFragment untuk batch DOM updates + listPasien.innerHTML = ''; + if (data.length === 0) { + listPasien.innerHTML = '
        Tidak ada hasil
        '; + } else { + const fragment = document.createDocumentFragment(); + data.forEach(p => { + const div = document.createElement('div'); + div.classList.add('autocomplete-item'); + div.textContent = p.Nama_Pasien; + div.onclick = () => fillPasien(p); + fragment.appendChild(div); + }); + listPasien.appendChild(fragment); + } + } catch (error) { + if (error.name === 'AbortError') { + // Request dibatalkan, ignore + return; + } + console.error('Error searching pasien:', error); + listPasien.innerHTML = '
        Error: Gagal memload data
        '; + } +} + +// Debounce autocomplete dengan delay 300ms +const debouncedSearchPasien = debounce(searchPasien, 300); + +inputPasien.addEventListener('input', function () { + debouncedSearchPasien(this.value.trim()); +}); + +// Hide autocomplete saat klik di luar +document.addEventListener('click', function(e) { + if (!inputPasien.contains(e.target) && !listPasien.contains(e.target)) { + listPasien.classList.remove('show'); + } +}); + +let lastSelectedPasienName = null; +let ruanganDataList = []; // Store semua data ruangan untuk lookup +let pendingRuanganId = null; // Store ruangan ID yang perlu di-set setelah load selesai +let tarifRSDataList = []; // Store semua data tarif RS untuk lookup harga + +// ============= RIWAYAT BILLING AKTIF (TINDAKAN & ICD) ============= +function clearBillingHistory() { + const infoEl = document.getElementById('billing_history_info'); + const ulTindakan = document.getElementById('history_tindakan_rs'); + const ulICD9 = document.getElementById('history_icd9'); + const ulICD10 = document.getElementById('history_icd10'); + + if (infoEl) { + infoEl.textContent = 'Belum ada data yang dimuat. Pilih pasien untuk melihat riwayat.'; + infoEl.classList.remove('text-danger'); + infoEl.classList.add('text-muted'); + } + if (ulTindakan) ulTindakan.innerHTML = ''; + if (ulICD9) ulICD9.innerHTML = ''; + if (ulICD10) ulICD10.innerHTML = ''; +} + +async function loadBillingAktifHistory(namaPasien) { + const infoEl = document.getElementById('billing_history_info'); + const ulTindakan = document.getElementById('history_tindakan_rs'); + const ulICD9 = document.getElementById('history_icd9'); + const ulICD10 = document.getElementById('history_icd10'); + + if (!namaPasien || !infoEl || !ulTindakan || !ulICD9 || !ulICD10) { + return; + } + + ulTindakan.innerHTML = ''; + ulICD9.innerHTML = ''; + ulICD10.innerHTML = ''; + infoEl.textContent = 'Memuat riwayat billing aktif...'; + infoEl.classList.remove('text-muted', 'text-danger'); + + try { + const res = await fetchWithTimeout( + `${API_BASE}/billing/aktif?nama_pasien=${encodeURIComponent(namaPasien)}` + ); + + if (res.status === 404) { + infoEl.textContent = 'Tidak ada billing aktif untuk pasien ini.'; + infoEl.classList.remove('text-danger'); + infoEl.classList.add('text-muted'); + return; + } + + if (!res.ok) { + throw new Error(`HTTP error! status: ${res.status}`); + } + + const body = await res.json().catch(() => ({})); + const data = body.data || {}; + + const tindakan = Array.isArray(data.tindakan_rs) ? data.tindakan_rs : []; + const icd9 = Array.isArray(data.icd9) ? data.icd9 : []; + const icd10 = Array.isArray(data.icd10) ? data.icd10 : []; + + if (tindakan.length === 0 && icd9.length === 0 && icd10.length === 0) { + infoEl.textContent = 'Belum ada tindakan atau ICD yang tercatat pada billing aktif.'; + infoEl.classList.remove('text-danger'); + infoEl.classList.add('text-muted'); + return; + } + + infoEl.textContent = 'Menampilkan riwayat dari billing aktif pasien ini.'; + infoEl.classList.remove('text-danger', 'text-muted'); + + tindakan.forEach(t => { + const li = document.createElement('li'); + li.className = 'list-group-item py-1'; + li.textContent = t; + ulTindakan.appendChild(li); + }); + + icd9.forEach(i => { + const li = document.createElement('li'); + li.className = 'list-group-item py-1'; + li.textContent = i; + ulICD9.appendChild(li); + }); + + icd10.forEach(i => { + const li = document.createElement('li'); + li.className = 'list-group-item py-1'; + li.textContent = i; + ulICD10.appendChild(li); + }); + } catch (error) { + console.error('Error loading billing history:', error); + infoEl.textContent = 'Error memuat riwayat billing. Coba lagi.'; + infoEl.classList.remove('text-muted'); + infoEl.classList.add('text-danger'); + } +} + +// Helper function untuk set ruangan dari ID atau Nama +function setRuanganFromId(ruanganIdOrNama) { + console.log('setRuanganFromId called with:', ruanganIdOrNama); + console.log('ruanganDataList length:', ruanganDataList.length); + + if (!ruanganIdOrNama) { + console.warn('ruanganIdOrNama is empty'); + return; + } + + if (ruanganDataList.length === 0) { + console.warn('ruanganDataList masih kosong'); + return; + } + + const searchValue = ruanganIdOrNama.toString().trim(); + console.log('Mencari ruangan dengan value:', searchValue); + + // PRIORITAS 1: Cari berdasarkan NAMA RUANGAN dulu (karena p.Ruangan sekarang adalah nama, bukan ID) + // Coba exact match dulu (case-insensitive) + let ruanganFound = ruanganDataList.find(r => { + const namaRuangan = r.Nama_Ruangan || r.nama_ruangan || r.NamaRuangan || r.Nama || r.nama || ''; + const namaRuanganTrimmed = namaRuangan.toString().trim(); + return namaRuanganTrimmed.toLowerCase() === searchValue.toLowerCase(); + }); + + if (ruanganFound) { + console.log('โœ“ Found ruangan by NAMA (exact match):', ruanganFound); + } else { + // Coba partial match (nama ruangan mengandung searchValue atau sebaliknya) + console.log('Tidak ditemukan exact match, mencoba partial match...'); + ruanganFound = ruanganDataList.find(r => { + const namaRuangan = r.Nama_Ruangan || r.nama_ruangan || r.NamaRuangan || r.Nama || r.nama || ''; + const namaRuanganTrimmed = namaRuangan.toString().trim(); + const searchLower = searchValue.toLowerCase(); + const namaLower = namaRuanganTrimmed.toLowerCase(); + + // Cek apakah searchValue ada di nama ruangan atau sebaliknya + return namaLower.includes(searchLower) || searchLower.includes(namaLower); + }); + + if (ruanganFound) { + console.log('โœ“ Found ruangan by NAMA (partial match):', ruanganFound); + } else { + // PRIORITAS 2: Jika tidak ditemukan berdasarkan nama, cari berdasarkan ID + console.log('Tidak ditemukan berdasarkan nama, mencoba berdasarkan ID...'); + ruanganFound = ruanganDataList.find(r => { + // Coba ID_Ruangan (case-insensitive comparison) + if (r.ID_Ruangan && r.ID_Ruangan.toString().trim() === searchValue) { + return true; + } + // Coba ID (case-insensitive) + if (r.ID && r.ID.toString().trim() === searchValue) { + return true; + } + // Coba id (lowercase) + if (r.id && r.id.toString().trim() === searchValue) { + return true; + } + // Coba Ruangan_ID atau field lain yang mungkin + const keys = Object.keys(r); + const idKey = keys.find(k => { + const kLower = k.toLowerCase(); + return (kLower.includes('id') && kLower.includes('ruangan')) || + (kLower === 'id_ruangan'); + }); + if (idKey && r[idKey] && r[idKey].toString().trim() === searchValue) { + return true; + } + return false; + }); + + if (ruanganFound) { + console.log('โœ“ Found ruangan by ID:', ruanganFound); + } + } + } + + if (ruanganFound) { + console.log('Found ruangan:', ruanganFound); // Debug + + // Ambil nama ruangan - coba berbagai kemungkinan field name + const namaRuangan = ruanganFound.Nama_Ruangan || + ruanganFound.nama_ruangan || + ruanganFound.NamaRuangan || + ruanganFound.Nama || + ruanganFound.nama || + null; + + if (namaRuangan) { + console.log('Setting ruangan nama:', namaRuangan); + + // Set langsung ke input field sebagai fallback utama + const inputRuangan = document.getElementById('ruangan'); + if (inputRuangan) { + inputRuangan.value = namaRuangan; + console.log('Input ruangan langsung di-set ke:', namaRuangan); + } + + // Set ke hidden select juga + const selectEl = document.getElementById('select_ruangan'); + if (selectEl) { + // Cari option yang match dengan namaRuangan + const options = selectEl.options; + for (let i = 0; i < options.length; i++) { + if (options[i].text === namaRuangan || options[i].value === namaRuangan) { + selectEl.value = options[i].value; + console.log('Hidden select di-set ke:', options[i].value); + break; + } + } + } + + // Pastikan dropdown instance sudah ready dan set value + if (dropdownInstances['ruangan']) { + // Gunakan setTimeout untuk memastikan DOM sudah siap + setTimeout(() => { + try { + dropdownInstances['ruangan'].setValue(namaRuangan); + console.log('setValue called for ruangan:', namaRuangan); + + // Double check - jika setelah setValue input masih kosong, set lagi + setTimeout(() => { + const checkInput = document.getElementById('ruangan'); + if (checkInput && !checkInput.value) { + console.warn('Input masih kosong setelah setValue, setting lagi...'); + checkInput.value = namaRuangan; + } + }, 200); + } catch (error) { + console.error('Error calling setValue:', error); + // Fallback: set langsung ke input + if (inputRuangan) { + inputRuangan.value = namaRuangan; + } + } + }, 100); + } else { + console.warn('dropdownInstances[ruangan] belum ada, menggunakan fallback'); + } + } else { + console.warn('Nama ruangan tidak ditemukan di data:', ruanganFound); + console.log('Available fields:', Object.keys(ruanganFound)); + } + } else { + console.warn('Ruangan dengan ID/Nama', searchValue, 'tidak ditemukan di ruanganDataList'); + console.log('Mencari ruangan dengan nama yang mengandung:', searchValue); + + // Coba partial match sebagai fallback + const partialMatch = ruanganDataList.find(r => { + const namaRuangan = r.Nama_Ruangan || r.nama_ruangan || r.NamaRuangan || r.Nama || r.nama || ''; + return namaRuangan.toString().toLowerCase().includes(searchValue.toLowerCase()) || + searchValue.toLowerCase().includes(namaRuangan.toString().toLowerCase()); + }); + + if (partialMatch) { + console.log('Found ruangan dengan partial match:', partialMatch); + const namaRuangan = partialMatch.Nama_Ruangan || partialMatch.nama_ruangan || partialMatch.NamaRuangan || partialMatch.Nama || partialMatch.nama || ''; + if (namaRuangan) { + const inputRuangan = document.getElementById('ruangan'); + if (inputRuangan) { + inputRuangan.value = namaRuangan; + } + if (dropdownInstances['ruangan']) { + setTimeout(() => { + dropdownInstances['ruangan'].setValue(namaRuangan); + }, 100); + } + return; + } + } + + console.log('Available ruangan data (first 5):', ruanganDataList.slice(0, 5).map(r => ({ + ID_Ruangan: r.ID_Ruangan, + Nama_Ruangan: r.Nama_Ruangan + }))); + } +} + +function fillPasien(p) { + console.log('=== FILLING PASIEN ==='); + console.log('Full pasien data:', JSON.stringify(p, null, 2)); // Debug - log full structure + console.log('Pasien Ruangan field:', p.Ruangan, 'Type:', typeof p.Ruangan); // Debug + console.log('RuanganDataList length:', ruanganDataList.length); // Debug + if (ruanganDataList.length > 0) { + console.log('Sample ruangan data (first item):', ruanganDataList[0]); // Debug + console.log('Sample ruangan ID_Ruangan:', ruanganDataList[0].ID_Ruangan); // Debug + console.log('Sample ruangan Nama_Ruangan:', ruanganDataList[0].Nama_Ruangan); // Debug + } + + inputPasien.value = p.Nama_Pasien; + lastSelectedPasienName = p.Nama_Pasien; // Track nama yang dipilih + listPasien.innerHTML = ''; + listPasien.classList.remove('show'); + + document.getElementById('id_pasien').value = p.ID_Pasien; + document.getElementById('jenis_kelamin').value = p.Jenis_Kelamin || ''; + document.getElementById('usia').value = p.Usia || ''; + + // Set Kelas + if (p.Kelas) { + console.log('Setting kelas:', p.Kelas); // Debug + document.getElementById('kelas').value = p.Kelas; + } + + // Set Ruangan - setRuanganFromId sekarang bisa handle baik ID maupun Nama + if (p.Ruangan) { + console.log('=== SETTING RUANGAN ==='); + console.log('Pasien punya Ruangan:', p.Ruangan, 'Type:', typeof p.Ruangan); // Debug + + // Jika ruanganDataList masih kosong, simpan sebagai pending dan tunggu load selesai + if (ruanganDataList.length === 0) { + console.log('RuanganDataList masih kosong, menyimpan sebagai pending...'); + pendingRuanganId = p.Ruangan; + + // Juga coba retry beberapa kali sebagai fallback + let retryCount = 0; + const maxRetries = 10; + + const retrySetRuangan = () => { + retryCount++; + if (ruanganDataList.length > 0) { + console.log('RuanganDataList sudah terisi, setting ruangan...'); + setRuanganFromId(p.Ruangan); + pendingRuanganId = null; // Clear pending + } else if (retryCount < maxRetries) { + console.log(`Retry ${retryCount}/${maxRetries} untuk set ruangan...`); + setTimeout(retrySetRuangan, 200); + } else { + console.warn('RuanganDataList masih kosong setelah beberapa retry'); + } + }; + + setTimeout(retrySetRuangan, 200); + } else { + // Langsung set karena ruanganDataList sudah terisi + // setRuanganFromId akan otomatis cari berdasarkan nama dulu, lalu ID + setRuanganFromId(p.Ruangan); + } + } + + // Setelah pasien dipilih, muat riwayat billing aktif (tindakan & ICD sebelumnya) + loadBillingAktifHistory(p.Nama_Pasien); +} + +// Deteksi jika user mengubah nama pasien - clear ID jika berbeda +inputPasien.addEventListener('change', function() { + // Jika nama sekarang berbeda dengan yang dipilih, clear ID dan field terkait + if (lastSelectedPasienName && this.value.trim() !== lastSelectedPasienName) { + document.getElementById('id_pasien').value = ''; + // Clear juga field ruangan dan kelas + if (dropdownInstances['ruangan']) { + dropdownInstances['ruangan'].setValue(''); + } + document.getElementById('kelas').value = ''; + clearBillingHistory(); + } +}); + +// Load saat DOM ready +if (document.readyState === 'loading') { + document.addEventListener('DOMContentLoaded', function() { + initAllDropdowns(); + loadAllSelects(); + initBillingFormSubmission(); + }); +} else { + initAllDropdowns(); + loadAllSelects(); + initBillingFormSubmission(); +} + +// ============= FORM SUBMISSION ============= +function initBillingFormSubmission() { + const form = document.getElementById('bpjsForm'); + if (!form) return; + + const alertBox = document.getElementById('formAlert'); + const submitBtn = form.querySelector('button[type="submit"]'); + + function showFormAlert(type, message) { + if (!alertBox) return; + alertBox.className = `alert alert-${type}`; + alertBox.innerHTML = message; + alertBox.classList.remove('d-none'); + } + + function hideFormAlert() { + if (!alertBox) return; + alertBox.classList.add('d-none'); + alertBox.textContent = ''; + } + + function getDropdownValue(id) { + if (dropdownInstances[id]) { + const value = dropdownInstances[id].getValue(); + if (Array.isArray(value)) { + return value + .map(v => (v || '').toString().trim()) + .filter(Boolean); + } + return (value || '').toString().trim(); + } + const input = document.getElementById(id); + return input ? input.value.trim() : ''; + } + + function parseInteger(value) { + if (typeof value !== 'string') { + return Number.isFinite(value) ? value : 0; + } + const numeric = value.replace(/[^\d]/g, ''); + return numeric ? parseInt(numeric, 10) : 0; + } + + // Draft storage key + const DRAFT_KEY = 'billingDraft_v1'; + + function getFormDataForDraft() { + return { + nama_dokter: getDropdownValue('nama_dokter'), + nama_pasien: (document.getElementById('nama_pasien')?.value || '').trim(), + jenis_kelamin: (document.getElementById('jenis_kelamin')?.value || '').trim(), + usia: parseInteger(document.getElementById('usia')?.value || '0'), + ruangan: getDropdownValue('ruangan'), + kelas: (document.getElementById('kelas')?.value || '').trim(), + tindakan_rs: getDropdownValue('tarif_rs'), + // tanggal_keluar sekarang diisi Admin Billing, tidak perlu disimpan di draft FE dokter + tanggal_keluar: '', + icd9: getDropdownValue('icd9'), + icd10: getDropdownValue('icd10'), + cara_bayar: (document.getElementById('cara_bayar')?.value || '').trim(), + total_tarif_rs: parseInteger(document.getElementById('total_tarif_rs')?.value || '0'), + }; + } + + function saveDraftToStorage() { + try { + const data = getFormDataForDraft(); + localStorage.setItem(DRAFT_KEY, JSON.stringify(data)); + updateDraftStatus('Draft disimpan'); + return true; + } catch (e) { + console.error('Gagal menyimpan draft:', e); + updateDraftStatus('Gagal menyimpan draft'); + return false; + } + } + + function clearDraftStorage() { + localStorage.removeItem(DRAFT_KEY); + updateDraftStatus('Draft dihapus'); + } + + function loadDraftFromStorage() { + const raw = localStorage.getItem(DRAFT_KEY); + if (!raw) return null; + try { + return JSON.parse(raw); + } catch (e) { + console.error('Draft parsing error:', e); + return null; + } + } + + function updateDraftStatus(msg) { + const el = document.getElementById('draftStatus'); + if (el) el.textContent = msg; + } + + function applyDraftToForm(draft) { + if (!draft) return; + + // Simple fields + document.getElementById('nama_pasien').value = draft.nama_pasien || ''; + document.getElementById('jenis_kelamin').value = draft.jenis_kelamin || ''; + document.getElementById('usia').value = draft.usia || ''; + document.getElementById('kelas').value = draft.kelas || ''; + document.getElementById('cara_bayar').value = draft.cara_bayar || ''; + document.getElementById('total_tarif_rs').value = draft.total_tarif_rs ? draft.total_tarif_rs.toLocaleString('id-ID') : document.getElementById('total_tarif_rs').value; + + // Dropdowns / multi-selects - may require retries until dropdownInstances loaded + const attempts = { count: 0 }; + const tryApply = () => { + attempts.count++; + // nama_dokter + if (dropdownInstances['nama_dokter'] && draft.nama_dokter) { + try { dropdownInstances['nama_dokter'].setValue(draft.nama_dokter); } catch (e) { console.warn(e); } + } + // ruangan + if (dropdownInstances['ruangan'] && draft.ruangan) { + try { dropdownInstances['ruangan'].setValue(draft.ruangan); } catch (e) { console.warn(e); } + } + // tarif_rs (multi) + if (dropdownInstances['tarif_rs'] && Array.isArray(draft.tindakan_rs)) { + try { dropdownInstances['tarif_rs'].setValue(draft.tindakan_rs); } catch (e) { console.warn(e); } + } + // icd9, icd10 + if (dropdownInstances['icd9'] && Array.isArray(draft.icd9)) { + try { dropdownInstances['icd9'].setValue(draft.icd9); } catch (e) { console.warn(e); } + } + if (dropdownInstances['icd10'] && Array.isArray(draft.icd10)) { + try { dropdownInstances['icd10'].setValue(draft.icd10); } catch (e) { console.warn(e); } + } + + // If some dropdowns are not ready, retry a few times + const allReady = (!draft.nama_dokter || dropdownInstances['nama_dokter']) && (!draft.ruangan || dropdownInstances['ruangan']) && (!draft.tindakan_rs || dropdownInstances['tarif_rs']); + if (!allReady && attempts.count < 10) { + setTimeout(tryApply, 200); + } else { + updateDraftStatus('Draft dimuat'); + } + }; + tryApply(); + } + + form.addEventListener('submit', async function(event) { + event.preventDefault(); + hideFormAlert(); + + const payload = { + nama_dokter: getDropdownValue('nama_dokter'), + nama_pasien: (document.getElementById('nama_pasien')?.value || '').trim(), + jenis_kelamin: (document.getElementById('jenis_kelamin')?.value || '').trim(), + usia: parseInteger(document.getElementById('usia')?.value || '0'), + ruangan: getDropdownValue('ruangan'), + kelas: (document.getElementById('kelas')?.value || '').trim(), + tindakan_rs: getDropdownValue('tarif_rs'), + // tanggal_keluar tidak dikirim dari FE dokter + tanggal_keluar: '', + icd9: getDropdownValue('icd9'), + icd10: getDropdownValue('icd10'), + cara_bayar: (document.getElementById('cara_bayar')?.value || '').trim(), + total_tarif_rs: parseInteger(document.getElementById('total_tarif_rs')?.value || '0'), + }; + + const errors = []; + if (!payload.nama_dokter) errors.push('Nama Dokter wajib dipilih.'); + if (!payload.nama_pasien) errors.push('Nama Pasien wajib diisi.'); + if (!payload.jenis_kelamin) errors.push('Jenis Kelamin wajib diisi.'); + if (!payload.usia) errors.push('Usia wajib diisi.'); + if (!payload.ruangan) errors.push('Ruangan wajib dipilih.'); + if (!payload.kelas) errors.push('Kelas wajib dipilih.'); + if (!Array.isArray(payload.tindakan_rs) || payload.tindakan_rs.length === 0) errors.push('Pilih minimal satu Tindakan RS.'); + if (!Array.isArray(payload.icd9) || payload.icd9.length === 0) errors.push('Pilih minimal satu ICD 9.'); + if (!Array.isArray(payload.icd10) || payload.icd10.length === 0) errors.push('Pilih minimal satu ICD 10.'); + if (!payload.cara_bayar) errors.push('Cara Bayar wajib dipilih.'); + + if (errors.length > 0) { + showFormAlert('danger', `
        • ${errors.join('
        • ')}
        `); + return; + } + + let originalBtnHtml = ''; + if (submitBtn) { + originalBtnHtml = submitBtn.innerHTML; + submitBtn.disabled = true; + submitBtn.innerHTML = 'Menyimpan...'; + } + + try { + const response = await fetchWithTimeout(`${API_BASE}/billing`, { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + }, + body: JSON.stringify(payload), + }); + + const result = await response.json().catch(() => ({})); + if (!response.ok || result.status !== 'success') { + const message = result?.error || result?.message || 'Gagal menyimpan data billing.'; + throw new Error(message); + } + + showFormAlert('success', result.message || 'Billing berhasil dibuat.'); + } catch (error) { + console.error('Error submitting billing form:', error); + showFormAlert('danger', error.message || 'Terjadi kesalahan saat menyimpan data.'); + } finally { + if (submitBtn) { + submitBtn.disabled = false; + submitBtn.innerHTML = originalBtnHtml || '๐Ÿ’พ Simpan Data'; + } + } + }); + + // Setup draft buttons + const saveDraftBtn = document.getElementById('saveDraftBtn'); + const clearDraftBtn = document.getElementById('clearDraftBtn'); + + if (saveDraftBtn) { + saveDraftBtn.addEventListener('click', function() { + if (saveDraftToStorage()) { + showFormAlert('success', 'Draft berhasil disimpan.'); + } else { + showFormAlert('danger', 'Gagal menyimpan draft. Cek console.'); + } + }); + } + + if (clearDraftBtn) { + clearDraftBtn.addEventListener('click', function() { + clearDraftStorage(); + showFormAlert('info', 'Draft dihapus.'); + // optionally clear form fields as well + }); + } + + // Load draft on init + const existingDraft = loadDraftFromStorage(); + if (existingDraft) { + applyDraftToForm(existingDraft); + } else { + updateDraftStatus('Tidak ada draft'); + } +} + diff --git a/backendcareit_v4/testingFE/billingtestwithAPI/styles.css b/backendcareit_v4/testingFE/billingtestwithAPI/styles.css new file mode 100644 index 0000000..0a1fd42 --- /dev/null +++ b/backendcareit_v4/testingFE/billingtestwithAPI/styles.css @@ -0,0 +1,616 @@ +/* ============= GLOBAL STYLES ============= */ +:root { + --primary-color: #0d6efd; + --secondary-color: #6c757d; + --success-color: #198754; + --danger-color: #dc3545; + --warning-color: #ffc107; + --info-color: #0dcaf0; + --light-bg: #f8f9fa; + --border-color: #dee2e6; + --shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075); + --shadow-lg: 0 0.5rem 1rem rgba(0, 0, 0, 0.15); + --border-radius: 0.5rem; + --transition: all 0.3s ease; +} + +* { + box-sizing: border-box; +} + +body { + font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; + background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); + min-height: 100vh; + padding: 2rem 1rem; +} + +.container { + max-width: 1200px; + margin: 0 auto; +} + +/* ============= CARD STYLES ============= */ +.card { + border: none; + border-radius: var(--border-radius); + box-shadow: var(--shadow-lg); + background: white; + overflow: hidden; + transition: var(--transition); +} + +.card:hover { + box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2); +} + +.card-header { + background: linear-gradient(135deg, var(--primary-color) 0%, #0056b3 100%); + color: white; + padding: 1.5rem; + border: none; +} + +.card-body { + padding: 2rem; +} + +h2 { + color: #2c3e50; + font-weight: 600; + margin-bottom: 2rem; + text-align: center; +} + +/* ============= FORM STYLES ============= */ +.form-label { + font-weight: 600; + color: #495057; + margin-bottom: 0.5rem; + font-size: 0.95rem; +} + +.form-control, +.form-select { + border: 2px solid var(--border-color); + border-radius: 0.375rem; + padding: 0.625rem 0.75rem; + font-size: 1rem; + transition: var(--transition); +} + +.form-control:focus, +.form-select:focus { + border-color: var(--primary-color); + box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25); + outline: none; +} + +.form-control:disabled { + background-color: #e9ecef; + opacity: 0.6; +} + +/* ============= BUTTON STYLES ============= */ +.btn { + border-radius: 0.375rem; + padding: 0.625rem 1.5rem; + font-weight: 600; + transition: var(--transition); + border: none; + cursor: pointer; +} + +.btn-primary { + background: linear-gradient(135deg, var(--primary-color) 0%, #0056b3 100%); + color: white; + box-shadow: 0 4px 6px rgba(13, 110, 253, 0.3); +} + +.btn-primary:hover { + background: linear-gradient(135deg, #0056b3 0%, #004085 100%); + transform: translateY(-2px); + box-shadow: 0 6px 12px rgba(13, 110, 253, 0.4); +} + +.btn-primary:active { + transform: translateY(0); +} + +/* ============= AUTOCOMPLETE STYLES ============= */ +.autocomplete-list { + position: absolute; + z-index: 9999; + background: white; + border: 2px solid var(--border-color); + border-radius: var(--border-radius); + width: 100%; + max-height: 250px; + overflow-y: auto; + display: none; + box-shadow: var(--shadow-lg); + margin-top: 0.25rem; +} + +.autocomplete-list.show { + display: block; + animation: slideDown 0.3s ease; +} + +@keyframes slideDown { + from { + opacity: 0; + transform: translateY(-10px); + } + to { + opacity: 1; + transform: translateY(0); + } +} + +.autocomplete-item { + padding: 0.75rem 1rem; + cursor: pointer; + border-bottom: 1px solid #f0f0f0; + transition: var(--transition); +} + +.autocomplete-item:last-child { + border-bottom: none; +} + +.autocomplete-item:hover { + background: linear-gradient(90deg, #e3f2fd 0%, #f5f5f5 100%); + padding-left: 1.25rem; +} + +.autocomplete-item.text-muted { + color: var(--secondary-color); + font-style: italic; +} + +.autocomplete-item.text-danger { + color: var(--danger-color); + font-weight: 500; +} + +/* ============= SEARCHABLE DROPDOWN STYLES ============= */ +.searchable-select-wrapper { + position: relative; +} + +.searchable-select-input { + width: 100%; + padding: 0.625rem 2.5rem 0.625rem 0.75rem; + border: 2px solid var(--border-color); + border-radius: 0.375rem; + font-size: 1rem; + line-height: 1.5; + background-color: #fff; + cursor: pointer; + transition: var(--transition); +} + +.searchable-select-input:hover { + border-color: var(--primary-color); +} + +.searchable-select-input:focus { + border-color: var(--primary-color); + outline: none; + box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25); +} + +.searchable-select-input.searching { + cursor: text; + border-color: var(--primary-color); +} + +.searchable-select-dropdown { + position: absolute; + top: 100%; + left: 0; + right: 0; + z-index: 1050; + background: white; + border: 2px solid var(--border-color); + border-radius: var(--border-radius); + margin-top: 0.25rem; + max-height: 250px; + overflow: hidden; + display: none; + box-shadow: var(--shadow-lg); + animation: slideDown 0.3s ease; +} + +.searchable-select-dropdown.show { + display: block; +} + +.searchable-select-search { + padding: 0.5rem; + border-bottom: 1px solid var(--border-color); + background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); + position: sticky; + top: 0; + z-index: 10; +} + +.searchable-select-search input { + width: 100%; + padding: 0.5rem 0.75rem; + border: 2px solid var(--border-color); + border-radius: 0.375rem; + font-size: 0.9rem; + transition: var(--transition); +} + +.searchable-select-search input:focus { + border-color: var(--primary-color); + outline: none; + box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.15); +} + +.searchable-select-options { + max-height: 200px; + overflow-y: auto; +} + +.searchable-select-options::-webkit-scrollbar { + width: 8px; +} + +.searchable-select-options::-webkit-scrollbar-track { + background: #f1f1f1; +} + +.searchable-select-options::-webkit-scrollbar-thumb { + background: var(--primary-color); + border-radius: 4px; +} + +.searchable-select-options::-webkit-scrollbar-thumb:hover { + background: #0056b3; +} + +.searchable-select-option { + padding: 0.5rem 0.75rem; + cursor: pointer; + border-bottom: 1px solid #f0f0f0; + transition: var(--transition); + font-size: 0.9rem; + line-height: 1.4; +} + +.searchable-select-option:last-child { + border-bottom: none; +} + +.searchable-select-option:hover, +.searchable-select-option.highlighted { + background: linear-gradient(90deg, #e3f2fd 0%, #f5f5f5 100%); + padding-left: 1rem; +} + +.searchable-select-option.selected { + background: linear-gradient(135deg, var(--primary-color) 0%, #0056b3 100%); + color: white; + font-weight: 600; +} + +.searchable-select-option.selected::after { + content: " โœ“"; + float: right; + font-weight: bold; +} + +.searchable-select-arrow { + position: absolute; + right: 0.75rem; + top: 50%; + transform: translateY(-50%); + pointer-events: none; + transition: transform 0.3s ease; + color: var(--secondary-color); + font-size: 0.875rem; +} + +.searchable-select-wrapper.open .searchable-select-arrow { + transform: translateY(-50%) rotate(180deg); + color: var(--primary-color); +} + +.searchable-select-no-results { + padding: 1rem; + text-align: center; + color: var(--secondary-color); + font-size: 0.9rem; + font-style: italic; +} + +/* ============= MULTI-SELECT STYLES ============= */ +.searchable-select-wrapper.multi-select .searchable-select-input { + min-height: 38px; + max-height: 100px; + padding: 0.25rem 2.5rem 0.25rem 0.5rem; + display: flex; + flex-wrap: wrap; + align-items: center; + gap: 0.25rem; + overflow-y: auto; +} + +.searchable-select-wrapper.multi-select .searchable-select-input::-webkit-scrollbar { + width: 6px; +} + +.searchable-select-wrapper.multi-select .searchable-select-input::-webkit-scrollbar-track { + background: #f1f1f1; + border-radius: 3px; +} + +.searchable-select-wrapper.multi-select .searchable-select-input::-webkit-scrollbar-thumb { + background: var(--primary-color); + border-radius: 3px; +} + +.searchable-select-wrapper.multi-select .searchable-select-input::-webkit-scrollbar-thumb:hover { + background: #0056b3; +} + +.searchable-select-wrapper.multi-select .searchable-select-input:empty::before { + content: attr(placeholder); + color: var(--secondary-color); +} + +.selected-chip { + display: inline-flex; + align-items: center; + padding: 0.25rem 0.5rem; + background: linear-gradient(135deg, var(--primary-color) 0%, #0056b3 100%); + color: white; + border-radius: 0.25rem; + font-size: 0.8rem; + gap: 0.25rem; + font-weight: 500; + box-shadow: 0 1px 3px rgba(13, 110, 253, 0.3); + max-width: 100%; + word-break: break-word; + line-height: 1.3; +} + +.selected-chip .chip-remove { + cursor: pointer; + font-weight: bold; + padding: 0 0.25rem; + border-radius: 0.125rem; + transition: var(--transition); + font-size: 1.1rem; + line-height: 1; +} + +.selected-chip .chip-remove:hover { + background-color: rgba(255, 255, 255, 0.3); + transform: scale(1.2); +} + +.searchable-select-wrapper.multi-select .searchable-select-input input { + flex: 1; + min-width: 100px; + border: none; + outline: none; + padding: 0.375rem; + background: transparent; + cursor: text; + font-size: 1rem; +} + +.searchable-select-wrapper.multi-select .searchable-select-input input:focus { + outline: none; +} + +/* ============= LOADING STYLES ============= */ +.loading { + opacity: 0.6; + pointer-events: none; + position: relative; +} + +.loading::after { + content: ''; + position: absolute; + top: 50%; + left: 50%; + transform: translate(-50%, -50%); + width: 20px; + height: 20px; + border: 3px solid #f3f3f3; + border-top: 3px solid var(--primary-color); + border-radius: 50%; + animation: spin 1s linear infinite; +} + +.spinner-border-sm { + width: 1rem; + height: 1rem; + border-width: 0.15em; + display: inline-block; +} + +.select-loading { + position: relative; +} + +.select-loading::after { + content: ''; + position: absolute; + right: 30px; + top: 50%; + transform: translateY(-50%); + width: 16px; + height: 16px; + border: 2px solid #f3f3f3; + border-top: 2px solid var(--primary-color); + border-radius: 50%; + animation: spin 1s linear infinite; +} + +@keyframes spin { + 0% { transform: translateY(-50%) rotate(0deg); } + 100% { transform: translateY(-50%) rotate(360deg); } +} + +/* ============= RESPONSIVE STYLES ============= */ +@media (max-width: 768px) { + body { + padding: 1rem 0.5rem; + } + + .card-body { + padding: 1.5rem; + } + + h2 { + font-size: 1.5rem; + margin-bottom: 1.5rem; + } + + .form-label { + font-size: 0.9rem; + } + + .form-control, + .form-select, + .searchable-select-input { + font-size: 0.95rem; + padding: 0.5rem 0.625rem; + } + + .btn { + width: 100%; + padding: 0.75rem; + font-size: 1rem; + } + + .row { + margin: 0; + } + + .row > [class*="col-"] { + padding-left: 0.5rem; + padding-right: 0.5rem; + } + + .mb-3 { + margin-bottom: 1rem !important; + } +} + +@media (max-width: 576px) { + body { + padding: 0.5rem; + } + + .card-body { + padding: 1rem; + } + + h2 { + font-size: 1.25rem; + margin-bottom: 1rem; + } + + .searchable-select-dropdown { + max-height: 250px; + } + + .autocomplete-list { + max-height: 200px; + } +} + +/* ============= UTILITY CLASSES ============= */ +.position-relative { + position: relative; +} + +.text-center { + text-align: center; +} + +.text-muted { + color: var(--secondary-color); +} + +.text-danger { + color: var(--danger-color); +} + +.shadow-sm { + box-shadow: var(--shadow); +} + +.shadow-lg { + box-shadow: var(--shadow-lg); +} + +/* ============= ANIMATIONS ============= */ +@keyframes fadeIn { + from { + opacity: 0; + } + to { + opacity: 1; + } +} + +.card { + animation: fadeIn 0.5s ease; +} + +/* ============= TOTAL TARIF RS STYLES ============= */ +#total_tarif_rs { + font-weight: 700; + color: #198754; + font-size: 1.25rem; + text-align: right; + letter-spacing: 0.5px; +} + +.input-group-text { + background: linear-gradient(135deg, var(--success-color) 0%, #146c43 100%); + color: white; + font-weight: 600; + border: none; +} + +.input-group .form-control:focus { + border-color: var(--success-color); + box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25); +} + +/* ============= FOCUS VISIBLE ============= */ +*:focus-visible { + outline: 2px solid var(--primary-color); + outline-offset: 2px; +} + +/* ============= PRINT STYLES ============= */ +@media print { + body { + background: white; + padding: 0; + } + + .card { + box-shadow: none; + border: 1px solid #ddd; + } + + .btn, + .searchable-select-arrow, + .autocomplete-list { + display: none; + } +} + diff --git a/backendcareit_v4/testingFE/test.html b/backendcareit_v4/testingFE/test.html new file mode 100644 index 0000000..3d9b0fb --- /dev/null +++ b/backendcareit_v4/testingFE/test.html @@ -0,0 +1,789 @@ + + + + + + Backend Careit - Test Interface + + + +
        +
        +

        ๐Ÿฅ Backend Careit

        +

        Test Interface untuk API Backend

        +
        + +
        + +
        +

        Health Check

        + +
        +
        + + +
        +
        ๐Ÿ“‹ Tarif BPJS Rawat Inap
        +
        +
        +
        + +
        +
        + + + +
        +
        +
        +
        + + +
        +
        ๐Ÿšถ Tarif BPJS Rawat Jalan
        +
        +
        +
        + +
        +
        + + + +
        +
        +
        +
        + + +
        +
        ๐Ÿจ Tarif RS
        +
        +
        +
        + +
        +
        + + + +
        +
        + + + +
        +
        +
        +
        + + +
        +
        ๐Ÿงฌ Kode Tindakan ICD9
        +
        +
        +
        + +
        +
        + + +
        +
        +

        + Data diambil dari endpoint /icd9. Tabel di bawah akan otomatis menyesuaikan kolom dari field JSON (misal: kode, deskripsi, dll). +

        +
        +
        + + +
        +
        ๐Ÿฉบ Kode Diagnosis ICD10
        +
        +
        +
        + +
        +
        + + +
        +
        +

        + Data diambil dari endpoint /icd10. Tabel di bawah akan otomatis menyesuaikan kolom dari field JSON. +

        +
        +
        + + +
        +
        ๐Ÿ‘จโ€โš•๏ธ Data Dokter
        +
        +
        +
        + +
        +
        + + +
        +
        +

        + Data diambil dari endpoint /dokter. Tabel di bawah akan otomatis menyesuaikan kolom dari field JSON. +

        +
        +
        + + +
        +
        ๐Ÿฅ Data Ruangan
        +
        +
        +
        + +
        +
        + + +
        +
        +

        + Data diambil dari endpoint /ruangan. Tabel di bawah akan otomatis menyesuaikan kolom dari field JSON. +

        +
        +
        + + +
        +
        +

        Response:

        + +
        +
        + + +
        +
        +
        +
        +
        +
        + + + + + diff --git a/frontendcareit_v4/.gitignore b/frontendcareit_v4/.gitignore new file mode 100644 index 0000000..664683d --- /dev/null +++ b/frontendcareit_v4/.gitignore @@ -0,0 +1,45 @@ +# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. + +# dependencies +/node_modules +/.pnp +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions + +# testing +/coverage + +# next.js +/.next/ +/out/ + +# production +/build + +# misc +.DS_Store +*.pem + +# debug +npm-debug.log* +yarn-debug.log* +yarn-error.log* +.pnpm-debug.log* + +# env files (can opt-in for committing if needed) +.env* + +# vercel +.vercel + +# typescript +*.tsbuildinfo +next-env.d.ts + +# electron-builder +/dist/ +/release/ diff --git a/frontendcareit_v4/BACKEND_API.md b/frontendcareit_v4/BACKEND_API.md new file mode 100644 index 0000000..cf92a64 --- /dev/null +++ b/frontendcareit_v4/BACKEND_API.md @@ -0,0 +1,191 @@ +# Backend API Documentation + +## Server Configuration + +- **IP Address**: `10.10.11.34` +- **Port**: `8081` +- **Base URL**: `http://10.10.11.34:8081` + +## Required Endpoints + +### 1. Health Check + +``` +GET /tarifRS +``` + +**Response:** + +```json +{ + "status": "ok", + "timestamp": "2025-11-29T10:30:00Z" +} +``` + +### 2. Get Tarif Rumah Sakit + +``` +GET /tarifRS +``` + +**Query Parameters:** + +- `kategori` (optional): Filter by category + - Values: `"Operatif"`, `"Non Operatif"`, `"Transplantasi Ginjal"`, `"Komplementer"`, `"Med Check Up"` +- `search` (optional): Search by kode or tindakan +- `page` (optional): Page number for pagination +- `limit` (optional): Items per page + +**Example Request:** + +``` +GET /tarifRS?kategori=Operatif&search=ABDOMEN +``` + +**Response:** + +```json +[ + { + "id": 1, + "kode": "R.TO.0001", + "tindakan": "ABDOMEN, LAPAROTOMY, TRAUMA REOPERATION", + "tarif": "17.958.000", + "kategori": "Operatif", + "created_at": "2025-11-29T10:00:00Z", + "updated_at": "2025-11-29T10:00:00Z" + } +] +``` + +### 3. Create Tarif Rumah Sakit + +``` +POST /tarifRS +``` + +**Request Body:** + +```json +{ + "kode": "R.TO.0013", + "tindakan": "NEW PROCEDURE NAME", + "tarif": "5.000.000", + "kategori": "Operatif" +} +``` + +**Response:** + +```json +{ + "id": 13, + "kode": "R.TO.0013", + "tindakan": "NEW PROCEDURE NAME", + "tarif": "5.000.000", + "kategori": "Operatif", + "created_at": "2025-11-29T10:30:00Z", + "updated_at": "2025-11-29T10:30:00Z" +} +``` + +### 4. Update Tarif Rumah Sakit + +``` +PUT /tarifRS/{id} +``` + +**Request Body:** (partial update allowed) + +```json +{ + "tarif": "6.000.000" +} +``` + +### 5. Delete Tarif Rumah Sakit + +``` +DELETE /tarifRS/{id} +``` + +## Error Responses + +### 400 Bad Request + +```json +{ + "error": "Bad Request", + "message": "Validation error details" +} +``` + +### 404 Not Found + +```json +{ + "error": "Not Found", + "message": "Resource not found" +} +``` + +### 500 Internal Server Error + +```json +{ + "error": "Internal Server Error", + "message": "Error description" +} +``` + +## CORS Configuration + +Please ensure your backend allows CORS for: + +- **Origin**: `http://localhost:3000` (development) +- **Methods**: `GET, POST, PUT, DELETE, OPTIONS` +- **Headers**: `Content-Type, Accept, Authorization` + +## Database Schema (Suggested) + +### Table: `tarif_rumah_sakit` + +```sql +CREATE TABLE tarif_rumah_sakit ( + id SERIAL PRIMARY KEY, + kode VARCHAR(50) UNIQUE NOT NULL, + tindakan TEXT NOT NULL, + tarif VARCHAR(50) NOT NULL, + kategori VARCHAR(100) NOT NULL, + created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP, + updated_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP +); +``` + +### Sample Data + +```sql +INSERT INTO tarif_rumah_sakit (kode, tindakan, tarif, kategori) VALUES +('R.TO.0001', 'ABDOMEN, LAPAROTOMY, TRAUMA REOPERATION', '17.958.000', 'Operatif'), +('R.TO.0002', 'APPENDECTOMY, LAPAROSCOPIC', '12.500.000', 'Operatif'), +('R.NO.0001', 'KONSULTASI SPESIALIS BEDAH', '350.000', 'Non Operatif'), +('R.TG.0001', 'TRANSPLANTASI GINJAL DONOR HIDUP', '125.000.000', 'Transplantasi Ginjal'), +('R.KM.0001', 'AKUPUNKTUR MEDIK', '200.000', 'Komplementer'), +('R.MC.0001', 'MEDICAL CHECK UP BASIC', '750.000', 'Med Check Up'); +``` + +## Testing + +You can test the API endpoints using: + +- **Postman**: Import the endpoints above +- **curl**: `curl -X GET http://10.10.11.34:8081/tarifRS` +- **Browser**: Navigate to `http://10.10.11.34:8081/tarifRS` + +## Notes + +- All timestamps should be in ISO 8601 format +- Tarif values are stored as strings to preserve formatting +- Category values must match exactly (case-sensitive) +- Search should be case-insensitive for kode and tindakan fields diff --git a/frontendcareit_v4/ELECTRON_API_SETUP.md b/frontendcareit_v4/ELECTRON_API_SETUP.md new file mode 100644 index 0000000..69e515c --- /dev/null +++ b/frontendcareit_v4/ELECTRON_API_SETUP.md @@ -0,0 +1,87 @@ +# Konfigurasi API untuk Electron App + +## Cara Kerja API di Electron + +Di Electron app, API calls **langsung ke backend Go** (tidak melalui Next.js API routes), karena: +- Electron menggunakan static files (tidak ada Next.js server) +- API routes Next.js tidak bisa berjalan di static export +- Solusi: langsung call backend Go + +## Konfigurasi API URL + +Ada 3 cara untuk set API URL: + +### 1. Menggunakan `electron.config.js` (Recommended) + +Edit file `electron.config.js`: +```javascript +module.exports = { + apiUrl: 'http://31.97.109.192:8081', // Ganti dengan URL backend Anda +}; +``` + +### 2. Menggunakan Environment Variable + +Set sebelum build atau run: +```powershell +# PowerShell +$env:NEXT_PUBLIC_API_URL = "http://31.97.109.192:8081" +npm run electron:dev + +# Atau saat build +$env:NEXT_PUBLIC_API_URL = "http://31.97.109.192:8081" +.\build-electron.ps1 +``` + +### 3. Default (localhost) + +Jika tidak di-set, akan menggunakan: `http://localhost:8081` + +## Testing API Connection + +1. Pastikan backend Go berjalan +2. Test dengan Electron dev mode: + ```bash + npm run dev # Terminal 1: Next.js dev server + npm run electron:dev # Terminal 2: Electron app + ``` +3. Buka DevTools di Electron (F12) dan cek console untuk melihat API URL yang digunakan + +## Build untuk Production + +Saat build installer, API URL akan di-inject ke aplikasi: + +```powershell +# Set API URL untuk production +$env:NEXT_PUBLIC_API_URL = "http://31.97.109.192:8081" +.\build-electron.ps1 +``` + +Atau edit `electron.config.js` sebelum build. + +## CORS Configuration + +Pastikan backend Go mengizinkan request dari Electron app. Di backend Go, pastikan CORS config mengizinkan: +- Origin: `file://` (untuk Electron) +- Atau semua origin untuk development + +## Troubleshooting + +### API tidak connect +1. Cek console di Electron (F12) untuk melihat error +2. Pastikan backend Go berjalan dan bisa diakses +3. Cek API URL yang digunakan (akan di-log di console) +4. Pastikan CORS di backend sudah benar + +### API URL tidak ter-update +1. Restart Electron app setelah mengubah config +2. Rebuild aplikasi jika sudah di-build + +## Catatan Penting + +- API URL di-inject saat runtime, bukan saat build +- Setiap user bisa mengubah `electron.config.js` untuk mengubah API URL +- Untuk production, pertimbangkan hardcode API URL atau gunakan config file yang bisa diubah user + + + diff --git a/frontendcareit_v4/ELECTRON_README.md b/frontendcareit_v4/ELECTRON_README.md new file mode 100644 index 0000000..2869ca0 --- /dev/null +++ b/frontendcareit_v4/ELECTRON_README.md @@ -0,0 +1,82 @@ +# PANDUAN ELECTRON - CareIt Desktop App + +## Persiapan Backend API + +1. **Konfigurasi URL Backend** + + Buat file `.env.local` di root folder project (jika belum ada): + ```bash + NEXT_PUBLIC_API_URL=http://localhost:8081 + ``` + + Ganti `http://localhost:8081` dengan URL backend Golang yang sudah di-deploy. + Contoh: + - Development: `http://localhost:8081` + - Production: `https://api-careit.example.com` + +## Cara Menjalankan + +### 1. Install Dependencies +```bash +npm install +``` + +### 2. Development Mode (untuk testing) +```bash +# Terminal 1: Jalankan Next.js dev server +npm run dev + +# Terminal 2: Jalankan Electron +npm run electron:dev +``` + +### 3. Build dan Package untuk Windows EXE + +#### Build Aplikasi +```bash +npm run electron:build +``` + +File `.exe` akan ada di folder `dist/` setelah build selesai. + +#### Untuk 32-bit dan 64-bit +```bash +npm run electron:build:all +``` + +## Struktur File Electron + +- `electron.js` - Main process Electron +- `preload.js` - Bridge script untuk security +- `out/` - Next.js static export output +- `dist/` - Folder hasil build Electron (berisi installer .exe) + +## Troubleshooting + +### Error: "Cannot find module electron" +```bash +npm install +``` + +### Error: Backend tidak terhubung +- Pastikan file `.env.local` sudah dibuat +- Cek URL backend di `.env.local` sudah benar +- Pastikan backend Golang sudah running + +### Icon tidak muncul +- Pastikan ada file `icon.png` di folder `public/` +- Ukuran minimal 256x256 pixels +- Format: PNG dengan transparency + +## Distribusi + +Setelah build, file installer ada di: +- `dist/CareIt Setup 0.1.0.exe` - Installer untuk Windows + +File ini bisa langsung dibagikan ke user lain tanpa perlu install Node.js/npm. + +## Catatan Penting + +- Aplikasi Electron akan langsung connect ke backend Golang (tidak pakai Next.js API routes) +- Pastikan backend sudah running dan URL di `.env.local` benar +- CORS harus dikonfigurasi di backend agar menerima request dari Electron diff --git a/frontendcareit_v4/INTEGRATION_GUIDE.md b/frontendcareit_v4/INTEGRATION_GUIDE.md new file mode 100644 index 0000000..2580769 --- /dev/null +++ b/frontendcareit_v4/INTEGRATION_GUIDE.md @@ -0,0 +1,138 @@ +# Panduan Integrasi Frontend dengan Backend + +Dokumen ini menjelaskan bagaimana frontend Next.js terintegrasi dengan backend Go. + +## Konfigurasi + +### Backend URL +Backend berjalan di `http://localhost:8081` secara default. Untuk mengubah URL backend: + +1. Buat file `.env.local` di folder `Frontend_CareIt/` (jika belum ada) +2. Tambahkan: + ``` + NEXT_PUBLIC_API_URL=http://localhost:8081 + ``` + Atau ganti dengan IP address backend Anda jika berbeda. + +### CORS +Backend sudah dikonfigurasi dengan CORS default yang mengizinkan semua origin. Untuk production, sebaiknya dikonfigurasi lebih spesifik. + +## API Functions + +Semua fungsi API tersedia di `src/lib/api.ts`. Fungsi-fungsi utama: + +### Authentication +- `loginDokter(credentials)` - Login dokter dengan email dan password + +### Data Master +- `getDokter()` - Ambil daftar dokter +- `getRuangan()` - Ambil daftar ruangan +- `getICD9()` - Ambil daftar ICD9 +- `getICD10()` - Ambil daftar ICD10 +- `getTarifRumahSakit(params)` - Ambil tarif rumah sakit +- `getTarifBPJSRawatInap()` - Ambil tarif BPJS rawat inap +- `getTarifBPJSRawatJalan()` - Ambil tarif BPJS rawat jalan + +### Pasien +- `getPasienById(id)` - Ambil data pasien by ID +- `searchPasien(nama)` - Cari pasien by nama + +### Billing +- `createBilling(data)` - Buat billing baru +- `getBillingAktifByNama(namaPasien)` - Ambil billing aktif by nama pasien +- `getAllBilling()` - Ambil semua billing (untuk admin) + +### Admin +- `postINACBGAdmin(data)` - Post INACBG dari admin + +## Komponen yang Sudah Terintegrasi + +### 1. Login (`login.tsx`) +- Menggunakan API `loginDokter` untuk autentikasi +- Menyimpan token dan data dokter di localStorage +- Menampilkan error jika login gagal + +### 2. Billing Pasien (`billing-pasien.tsx`) +- Fetch data dropdown (dokter, ruangan, ICD9, ICD10, tarif RS) dari backend +- Search pasien menggunakan API +- Create billing dengan API `createBilling` +- Auto-calculate total tarif RS berdasarkan tindakan yang dipilih + +### 3. Riwayat Billing Pasien (`riwayat-billing-pasien.tsx`) +- Fetch semua billing dari API `getAllBilling` +- Search/filter billing berdasarkan nama atau ID +- Menampilkan status billing dengan color coding + +## Cara Menggunakan + +### 1. Menjalankan Backend +```bash +cd Backend_CareIt +go run main.go +``` +Backend akan berjalan di `http://localhost:8081` + +### 2. Menjalankan Frontend +```bash +cd Frontend_CareIt +npm run dev +``` +Frontend akan berjalan di `http://localhost:3000` + +### 3. Testing +1. Buka browser ke `http://localhost:3000` +2. Login menggunakan email dan password dokter yang ada di database +3. Test fitur billing pasien +4. Test dashboard admin untuk melihat riwayat billing + +## Troubleshooting + +### Error: "Tidak dapat terhubung ke server" +- Pastikan backend server berjalan di port 8081 +- Cek apakah URL di `.env.local` sudah benar +- Cek firewall atau network settings + +### Error: "CORS error" +- Backend sudah dikonfigurasi dengan CORS default +- Jika masih error, pastikan backend menggunakan `cors.Default()` atau konfigurasi CORS yang sesuai + +### Error: "Data tidak ditemukan" +- Pastikan database sudah terisi dengan data +- Cek endpoint API di backend apakah sudah benar + +## Catatan Penting + +1. **Token Management**: Token login disimpan di localStorage. Untuk production, pertimbangkan menggunakan httpOnly cookies atau session management yang lebih aman. + +2. **Error Handling**: Semua API calls sudah memiliki error handling. Error akan ditampilkan di UI. + +3. **Loading States**: Komponen yang fetch data akan menampilkan loading state saat mengambil data. + +4. **Data Validation**: Form validation dilakukan di frontend sebelum submit ke backend. + +## Endpoint Backend yang Tersedia + +- `GET /` - Health check +- `GET /dokter` - List dokter +- `GET /ruangan` - List ruangan +- `GET /icd9` - List ICD9 +- `GET /icd10` - List ICD10 +- `GET /tarifRS` - List tarif rumah sakit +- `GET /tarifBPJSRawatInap` - List tarif BPJS rawat inap +- `GET /tarifBPJSRawatJalan` - List tarif BPJS rawat jalan +- `GET /pasien/:id` - Get pasien by ID +- `GET /pasien/search?nama=...` - Search pasien +- `POST /login` - Login dokter +- `POST /billing` - Create billing +- `GET /billing/aktif?nama_pasien=...` - Get billing aktif +- `GET /admin/billing` - Get all billing (admin) +- `POST /admin/inacbg` - Post INACBG (admin) + +## Next Steps + +1. Update komponen tarif-bpjs untuk menggunakan API real +2. Implementasi authentication middleware untuk protected routes +3. Add refresh token mechanism +4. Improve error handling dan user feedback +5. Add loading skeletons untuk better UX + diff --git a/frontendcareit_v4/README.md b/frontendcareit_v4/README.md new file mode 100644 index 0000000..96eeea5 --- /dev/null +++ b/frontendcareit_v4/README.md @@ -0,0 +1,104 @@ +This is a [Next.js](https://nextjs.org) project bootstrapped with [`create-next-app`](https://nextjs.org/docs/app/api-reference/cli/create-next-app) and configured for mobile deployment with [Capacitor](https://capacitorjs.com/). + +## Getting Started + +### Web Development + +First, run the development server: + +```bash +npm run dev +# or +yarn dev +# or +pnpm dev +# or +bun dev +``` + +Open [http://localhost:3000](http://localhost:3000) with your browser to see the result. + +### Mobile Development (Capacitor) + +This project supports both web and mobile platforms: +- **Web**: Uses Next.js API routes as proxy to backend (no CORS issues) +- **Mobile**: Uses direct backend calls (static export, no API routes) + +**Prerequisites:** +- Backend server must be running (default: `http://localhost:8081`) +- For production mobile app, set `NEXT_PUBLIC_API_URL` environment variable to your backend server URL + +**Build for Mobile (with static export):** + +**Windows:** +```powershell +# PowerShell +.\build-mobile.ps1 + +# Or CMD +build-mobile.bat + +# Or manually set environment variable +$env:NEXT_EXPORT="true"; npm run build; npx cap sync +``` + +**Linux/Mac:** +```bash +# Set environment variable and build +NEXT_EXPORT=true npm run build && npx cap sync + +# Or use the npm script (requires cross-env) +npm run build:mobile:export +``` + +**Note:** Regular `npm run build` is for web development (with API routes). Use the mobile build scripts above for Capacitor. + +**Open Native Projects:** + +```bash +# Android +npm run cap:open:android + +# iOS (macOS only) +npm run cap:open:ios +``` + +**Run on Device/Emulator:** + +```bash +# Android +npm run cap:run:android + +# iOS +npm run cap:run:ios +``` + +**Other Capacitor Commands:** + +```bash +# Copy web assets only (without updating dependencies) +npm run cap:copy + +# Sync web assets and update native dependencies +npm run cap:sync +``` + +**How It Works:** +- **Web Development**: API calls go through `/api` routes (Next.js proxy) โ†’ Backend Go server +- **Mobile App**: API calls go directly to backend Go server (detected automatically via Capacitor) +- The app automatically detects the platform and uses the appropriate API endpoint + +## Learn More + +To learn more about Next.js, take a look at the following resources: + +- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API. +- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial. + +You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js) - your feedback and contributions are welcome! + +## Deploy on Vercel + +The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js. + +Check out our [Next.js deployment documentation](https://nextjs.org/docs/app/building-your-application/deploying) for more details. diff --git a/frontendcareit_v4/TANGGAL_KELUAR_AUTO_FILL_FLOW.md b/frontendcareit_v4/TANGGAL_KELUAR_AUTO_FILL_FLOW.md new file mode 100644 index 0000000..493111a --- /dev/null +++ b/frontendcareit_v4/TANGGAL_KELUAR_AUTO_FILL_FLOW.md @@ -0,0 +1,205 @@ +# Tanggal Keluar Auto-Fill Flow Documentation + +## Overview +Ketika admin/dokter memasukkan kode INACBG, `tanggal_keluar` **TIDAK** otomatis terisi dari field form, tetapi **OTOMATIS DIKIRIM** ke backend menggunakan nilai fallback. + +--- + +## Alur Lengkap + +### 1. **INACBG_Admin_Ruangan.tsx** - Ketika Submit (handleSave) +**Location:** [Line 705-715](../frontendcareitv2/src/app/component/INACBG_Admin_Ruangan.tsx#L705-L715) + +```typescript +const payload: PostINACBGRequest = { + id_billing: billingId, + tipe_inacbg: tipeInacbg, + kode_inacbg: selectedInacbgCodes, + total_klaim: deltaKlaim, + billing_sign: billingSignColor, + tanggal_keluar: tanggalKeluar || new Date().toISOString().split("T")[0], +}; +``` + +**Logika:** +- `tanggalKeluar` sudah di-load dari API saat page load (dari `billingId`) +- Jika `tanggalKeluar` kosong/undefined, gunakan **hari ini** (`new Date().toISOString().split("T")[0]`) +- Kirim ke `/admin/inacbg` endpoint dengan nilai tanggal (entah dari user edit atau default hari ini) + +**Flow yang terjadi:** +1. User memilih kode INACBG โ†’ `setSelectedInacbgCodes([...codes])` +2. User klik tombol "Simpan" โ†’ `handleSave()` dipanggil +3. Di dalam `handleSave()`: + - Cek `selectedInacbgCodes.length > 0` (minimal 1 kode harus dipilih) + - Buat payload dengan `tanggal_keluar: tanggalKeluar || new Date().toISOString().split("T")[0]` + - POST ke `/admin/inacbg` + +--- + +### 2. **billing-pasien.tsx** - Ketika Create Billing (handleSubmit) +**Location:** [Line 650-655](../frontendcareitv2/src/app/component/billing-pasien.tsx#L650-L655) + +```typescript +const billingData: BillingRequest = { + nama_pasien: namaPasien, + // ... other fields ... + tanggal_masuk: convertDateFormat(tanggalMasuk), + tanggal_keluar: convertDateFormat(tanggalKeluar) || '', + // ... other fields ... +}; +``` + +**Logika:** +- User opsional mengisi `tanggal_keluar` di billing form +- Jika kosong, kirim string kosong `''` +- Backend akan handle nullable field + +**Flow yang terjadi:** +1. User fill form + select tindakan/ICD10 +2. User klik "Buat Billing" โ†’ `handleSubmit()` +3. Format tanggal dengan `convertDateFormat()` (handle both YYYY-MM-DD dan DD/MM/YYYY) +4. POST ke `/billing` endpoint + +--- + +### 3. **Data Loading - Tanggal Keluar di-Fetch dari API** +**INACBG_Admin_Ruangan.tsx** - [Line 106-245](../frontendcareitv2/src/app/component/INACBG_Admin_Ruangan.tsx#L106-L245) + +Ada 3 priority untuk load tanggal_keluar: + +```typescript +// PRIORITY 1: From props (jika parent pass data) +if (pasienData) { + // Fetch dari API /admin/billing/{billingId} + const response = await apiFetch(`/admin/billing/${billingId}`); + const tanggalKeluarData = response.data.tanggal_keluar || response.data.Tanggal_keluar || ""; + setTanggalKeluar(tanggalKeluarData); +} + +// PRIORITY 2: From localStorage (jika data sudah disimpan sebelumnya) +const storedData = localStorage.getItem('currentBillingData'); +if (storedData) { + // Fetch dari API /admin/billing/{billingId} + const response = await apiFetch(`/admin/billing/${billingId}`); + const tanggalKeluarData = response.data.tanggal_keluar || response.data.Tanggal_keluar || ""; + setTanggalKeluar(tanggalKeluarData); +} + +// PRIORITY 3: From API direct fetch (jika billingId tersedia) +if (billingId) { + const response = await apiFetch(`/admin/billing/${billingId}`); + const tanggalKeluarData = data.tanggal_keluar || data.Tanggal_keluar || ""; + setTanggalKeluar(tanggalKeluarData); +} +``` + +--- + +## Form Input untuk Tanggal Keluar + +### INACBG_Admin_Ruangan.tsx +**Location:** [Line 1004-1012](../frontendcareitv2/src/app/component/INACBG_Admin_Ruangan.tsx#L1004-L1012) + +```typescript +
        + + setTanggalKeluar(e.target.value)} + className="w-full border text-sm border-blue-200 rounded-full py-2 sm:py-3 pl-3 sm:pl-4 pr-8 sm:pr-10 text-[#2591D0] bg-white focus:ring-2 focus:ring-blue-400 focus:border-blue-400 focus:outline-0" + /> +
        +``` + +**Status:** +- โœ… Input field ada +- โœ… Auto-filled dari API saat page load +- โœ… User bisa edit nilai +- โœ… Kirim ke backend saat submit + +--- + +## Riwayat Billing Aktif - Kolom Tanggal Ditampilkan + +### billing-pasien.tsx +**Location:** [Line 1215-1238](../frontendcareitv2/src/app/component/billing-pasien.tsx#L1215-L1238) (Desktop Table) + +```typescript + + + + + + + + + + + + + {/* Loop untuk show dates dan data */} + + + +
        Tanggal MasukTanggal KeluarTindakan RSICD 9ICD 10INACBG
        + {billingHistory.tanggal_masuk + ? new Date(billingHistory.tanggal_masuk).toLocaleDateString('id-ID', {...}) + : '-'} + + {billingHistory.tanggal_keluar + ? new Date(billingHistory.tanggal_keluar).toLocaleDateString('id-ID', {...}) + : '-'} +
        +``` + +### INACBG_Admin_Ruangan.tsx +**Location:** [Line 1047-1070](../frontendcareitv2/src/app/component/INACBG_Admin_Ruangan.tsx#L1047-L1070) (Desktop Table) + +```typescript + + + + + + + + + + +
        Tanggal MasukTanggal KeluarICD 9ICD 10INACBG
        +``` + +--- + +## Debugging Logs + +Cek browser console (F12) untuk melihat flow: + +**INACBG_Admin_Ruangan.tsx:** +``` +๐Ÿ“ฅ Tanggal keluar from API: [nilai tanggal atau empty] +๐Ÿ“… Extracted dates from billing history: { tanggalMasuk: ..., tanggalKeluar: ... } +๐Ÿ“ค Sending INACBG payload: { tanggal_keluar: ..., ... } +``` + +**billing-pasien.tsx:** +``` +๐Ÿ’พ Extracted dates: { tanggalMasuk, tanggalKeluar, billingObj } +๐Ÿ’พ Patient data saved to localStorage: { tanggal_masuk, tanggal_keluar } +``` + +--- + +## Summary + +| Aspek | INACBG Form | Billing Pasien Form | +|-------|-------------|-------------------| +| **Input Field** | โœ… Ada (type=date) | โœ… Ada (type=date) | +| **Auto-fill saat load** | โœ… Dari API | โœ… Dari API | +| **User bisa edit** | โœ… Ya | โœ… Ya | +| **Submit behavior** | Gunakan nilai yang ada atau hari ini | Kirim nilai atau kosong | +| **Riwayat ditampilkan** | โœ… Ya, di table | โœ… Ya, di table | +| **Format tanggal** | ISO format dari backend | YYYY-MM-DD atau DD/MM/YYYY | diff --git a/frontendcareit_v4/android/.gitignore b/frontendcareit_v4/android/.gitignore new file mode 100644 index 0000000..48354a3 --- /dev/null +++ b/frontendcareit_v4/android/.gitignore @@ -0,0 +1,101 @@ +# Using Android gitignore template: https://github.com/github/gitignore/blob/HEAD/Android.gitignore + +# Built application files +*.apk +*.aar +*.ap_ +*.aab + +# Files for the ART/Dalvik VM +*.dex + +# Java class files +*.class + +# Generated files +bin/ +gen/ +out/ +# Uncomment the following line in case you need and you don't have the release build type files in your app +# release/ + +# Gradle files +.gradle/ +build/ + +# Local configuration file (sdk path, etc) +local.properties + +# Proguard folder generated by Eclipse +proguard/ + +# Log Files +*.log + +# Android Studio Navigation editor temp files +.navigation/ + +# Android Studio captures folder +captures/ + +# IntelliJ +*.iml +.idea/workspace.xml +.idea/tasks.xml +.idea/gradle.xml +.idea/assetWizardSettings.xml +.idea/dictionaries +.idea/libraries +# Android Studio 3 in .gitignore file. +.idea/caches +.idea/modules.xml +# Comment next line if keeping position of elements in Navigation Editor is relevant for you +.idea/navEditor.xml + +# Keystore files +# Uncomment the following lines if you do not want to check your keystore files in. +#*.jks +#*.keystore + +# External native build folder generated in Android Studio 2.2 and later +.externalNativeBuild +.cxx/ + +# Google Services (e.g. APIs or Firebase) +# google-services.json + +# Freeline +freeline.py +freeline/ +freeline_project_description.json + +# fastlane +fastlane/report.xml +fastlane/Preview.html +fastlane/screenshots +fastlane/test_output +fastlane/readme.md + +# Version control +vcs.xml + +# lint +lint/intermediates/ +lint/generated/ +lint/outputs/ +lint/tmp/ +# lint/reports/ + +# Android Profiling +*.hprof + +# Cordova plugins for Capacitor +capacitor-cordova-android-plugins + +# Copied web assets +app/src/main/assets/public + +# Generated Config files +app/src/main/assets/capacitor.config.json +app/src/main/assets/capacitor.plugins.json +app/src/main/res/xml/config.xml diff --git a/frontendcareit_v4/android/.idea/AndroidProjectSystem.xml b/frontendcareit_v4/android/.idea/AndroidProjectSystem.xml new file mode 100644 index 0000000..4a53bee --- /dev/null +++ b/frontendcareit_v4/android/.idea/AndroidProjectSystem.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/frontendcareit_v4/android/.idea/compiler.xml b/frontendcareit_v4/android/.idea/compiler.xml new file mode 100644 index 0000000..b86273d --- /dev/null +++ b/frontendcareit_v4/android/.idea/compiler.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/frontendcareit_v4/android/.idea/deploymentTargetSelector.xml b/frontendcareit_v4/android/.idea/deploymentTargetSelector.xml new file mode 100644 index 0000000..b268ef3 --- /dev/null +++ b/frontendcareit_v4/android/.idea/deploymentTargetSelector.xml @@ -0,0 +1,10 @@ + + + + + + + + + \ No newline at end of file diff --git a/frontendcareit_v4/android/.idea/deviceManager.xml b/frontendcareit_v4/android/.idea/deviceManager.xml new file mode 100644 index 0000000..91f9558 --- /dev/null +++ b/frontendcareit_v4/android/.idea/deviceManager.xml @@ -0,0 +1,13 @@ + + + + + + \ No newline at end of file diff --git a/frontendcareit_v4/android/.idea/migrations.xml b/frontendcareit_v4/android/.idea/migrations.xml new file mode 100644 index 0000000..f8051a6 --- /dev/null +++ b/frontendcareit_v4/android/.idea/migrations.xml @@ -0,0 +1,10 @@ + + + + + + \ No newline at end of file diff --git a/frontendcareit_v4/android/.idea/misc.xml b/frontendcareit_v4/android/.idea/misc.xml new file mode 100644 index 0000000..f7608ed --- /dev/null +++ b/frontendcareit_v4/android/.idea/misc.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/frontendcareit_v4/android/.idea/runConfigurations.xml b/frontendcareit_v4/android/.idea/runConfigurations.xml new file mode 100644 index 0000000..16660f1 --- /dev/null +++ b/frontendcareit_v4/android/.idea/runConfigurations.xml @@ -0,0 +1,17 @@ + + + + + + \ No newline at end of file diff --git a/frontendcareit_v4/android/app/.gitignore b/frontendcareit_v4/android/app/.gitignore new file mode 100644 index 0000000..043df80 --- /dev/null +++ b/frontendcareit_v4/android/app/.gitignore @@ -0,0 +1,2 @@ +/build/* +!/build/.npmkeep diff --git a/frontendcareit_v4/android/app/build.gradle b/frontendcareit_v4/android/app/build.gradle new file mode 100644 index 0000000..07ff3fa --- /dev/null +++ b/frontendcareit_v4/android/app/build.gradle @@ -0,0 +1,54 @@ +apply plugin: 'com.android.application' + +android { + namespace = "com.CareIt.app" + compileSdk = rootProject.ext.compileSdkVersion + defaultConfig { + applicationId "com.CareIt.app" + minSdkVersion rootProject.ext.minSdkVersion + targetSdkVersion rootProject.ext.targetSdkVersion + versionCode 1 + versionName "1.0" + testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" + aaptOptions { + // Files and dirs to omit from the packaged assets dir, modified to accommodate modern web apps. + // Default: https://android.googlesource.com/platform/frameworks/base/+/282e181b58cf72b6ca770dc7ca5f91f135444502/tools/aapt/AaptAssets.cpp#61 + ignoreAssetsPattern = '!.svn:!.git:!.ds_store:!*.scc:.*:!CVS:!thumbs.db:!picasa.ini:!*~' + } + } + buildTypes { + release { + minifyEnabled false + proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' + } + } +} + +repositories { + flatDir{ + dirs '../capacitor-cordova-android-plugins/src/main/libs', 'libs' + } +} + +dependencies { + implementation fileTree(include: ['*.jar'], dir: 'libs') + implementation "androidx.appcompat:appcompat:$androidxAppCompatVersion" + implementation "androidx.coordinatorlayout:coordinatorlayout:$androidxCoordinatorLayoutVersion" + implementation "androidx.core:core-splashscreen:$coreSplashScreenVersion" + implementation project(':capacitor-android') + testImplementation "junit:junit:$junitVersion" + androidTestImplementation "androidx.test.ext:junit:$androidxJunitVersion" + androidTestImplementation "androidx.test.espresso:espresso-core:$androidxEspressoCoreVersion" + implementation project(':capacitor-cordova-android-plugins') +} + +apply from: 'capacitor.build.gradle' + +try { + def servicesJSON = file('google-services.json') + if (servicesJSON.text) { + apply plugin: 'com.google.gms.google-services' + } +} catch(Exception e) { + logger.info("google-services.json not found, google-services plugin not applied. Push Notifications won't work") +} diff --git a/frontendcareit_v4/android/app/capacitor.build.gradle b/frontendcareit_v4/android/app/capacitor.build.gradle new file mode 100644 index 0000000..bbfb44f --- /dev/null +++ b/frontendcareit_v4/android/app/capacitor.build.gradle @@ -0,0 +1,19 @@ +// DO NOT EDIT THIS FILE! IT IS GENERATED EACH TIME "capacitor update" IS RUN + +android { + compileOptions { + sourceCompatibility JavaVersion.VERSION_21 + targetCompatibility JavaVersion.VERSION_21 + } +} + +apply from: "../capacitor-cordova-android-plugins/cordova.variables.gradle" +dependencies { + + +} + + +if (hasProperty('postBuildExtras')) { + postBuildExtras() +} diff --git a/frontendcareit_v4/android/app/proguard-rules.pro b/frontendcareit_v4/android/app/proguard-rules.pro new file mode 100644 index 0000000..f1b4245 --- /dev/null +++ b/frontendcareit_v4/android/app/proguard-rules.pro @@ -0,0 +1,21 @@ +# Add project specific ProGuard rules here. +# You can control the set of applied configuration files using the +# proguardFiles setting in build.gradle. +# +# For more details, see +# http://developer.android.com/guide/developing/tools/proguard.html + +# If your project uses WebView with JS, uncomment the following +# and specify the fully qualified class name to the JavaScript interface +# class: +#-keepclassmembers class fqcn.of.javascript.interface.for.webview { +# public *; +#} + +# Uncomment this to preserve the line number information for +# debugging stack traces. +#-keepattributes SourceFile,LineNumberTable + +# If you keep the line number information, uncomment this to +# hide the original source file name. +#-renamesourcefileattribute SourceFile diff --git a/frontendcareit_v4/android/app/src/androidTest/java/com/getcapacitor/myapp/ExampleInstrumentedTest.java b/frontendcareit_v4/android/app/src/androidTest/java/com/getcapacitor/myapp/ExampleInstrumentedTest.java new file mode 100644 index 0000000..f2c2217 --- /dev/null +++ b/frontendcareit_v4/android/app/src/androidTest/java/com/getcapacitor/myapp/ExampleInstrumentedTest.java @@ -0,0 +1,26 @@ +package com.getcapacitor.myapp; + +import static org.junit.Assert.*; + +import android.content.Context; +import androidx.test.ext.junit.runners.AndroidJUnit4; +import androidx.test.platform.app.InstrumentationRegistry; +import org.junit.Test; +import org.junit.runner.RunWith; + +/** + * Instrumented test, which will execute on an Android device. + * + * @see Testing documentation + */ +@RunWith(AndroidJUnit4.class) +public class ExampleInstrumentedTest { + + @Test + public void useAppContext() throws Exception { + // Context of the app under test. + Context appContext = InstrumentationRegistry.getInstrumentation().getTargetContext(); + + assertEquals("com.getcapacitor.app", appContext.getPackageName()); + } +} diff --git a/frontendcareit_v4/android/app/src/main/AndroidManifest.xml b/frontendcareit_v4/android/app/src/main/AndroidManifest.xml new file mode 100644 index 0000000..b06ddbf --- /dev/null +++ b/frontendcareit_v4/android/app/src/main/AndroidManifest.xml @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/frontendcareit_v4/android/app/src/main/java/com/careit/app/MainActivity.java b/frontendcareit_v4/android/app/src/main/java/com/careit/app/MainActivity.java new file mode 100644 index 0000000..48bb83f --- /dev/null +++ b/frontendcareit_v4/android/app/src/main/java/com/careit/app/MainActivity.java @@ -0,0 +1,5 @@ +package com.CareIt.app; + +import com.getcapacitor.BridgeActivity; + +public class MainActivity extends BridgeActivity {} diff --git a/frontendcareit_v4/android/app/src/main/res/drawable-land-hdpi/splash.png b/frontendcareit_v4/android/app/src/main/res/drawable-land-hdpi/splash.png new file mode 100644 index 0000000000000000000000000000000000000000..e31573b4fc93e60d171f4046c0220e1463075d9e GIT binary patch literal 7705 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 wKmFJ0_JHhk1&0B>;%YXATM literal 0 HcmV?d00001 diff --git a/frontendcareit_v4/android/app/src/main/res/drawable-land-mdpi/splash.png b/frontendcareit_v4/android/app/src/main/res/drawable-land-mdpi/splash.png new file mode 100644 index 0000000000000000000000000000000000000000..f7a64923ea1a0565d25fa139c176d6bf42184e48 GIT binary patch literal 4040 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 XyOn+%7f`N3b2T^T3uj5+eShz7v)7qy literal 0 HcmV?d00001 diff --git a/frontendcareit_v4/android/app/src/main/res/drawable-land-xhdpi/splash.png b/frontendcareit_v4/android/app/src/main/res/drawable-land-xhdpi/splash.png new file mode 100644 index 0000000000000000000000000000000000000000..807725501bdd92e94e51e7b2b0006f69e0083a0b GIT binary patch literal 9251 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 literal 0 HcmV?d00001 diff --git a/frontendcareit_v4/android/app/src/main/res/drawable-land-xxhdpi/splash.png b/frontendcareit_v4/android/app/src/main/res/drawable-land-xxhdpi/splash.png new file mode 100644 index 0000000000000000000000000000000000000000..14c6c8fe39fcd51a0414866ad28cbe8ff3acb060 GIT binary patch literal 13984 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®q@N z14_H8ofW)l{|J8q+a)eH)I0r)>WXdzV%7J>PA~6_J)KLT90iYa^K=Wz7D!OybzqSru=f4?|KFl;Y)gP_H6V4x`~kZ6fE(xM1&;?72-TZNk+0 zr+Crr5yl%Iy@vfmt3eYFl!jIvPGFz^8Ek+2`48O1_pCX3xNWh-zBa{rIcc%+=|XVj zANYTg&s}TKb#OztQrCW(Xk?V^i{`q~%HtcveTxq(_HKeC9GzrtguMT4Nvs@KakPTA z9>*8bBZmLz`lK5=l)=b|=dT3a5ag^a1^znZyx5QKfUb1b9yacArRp%3@QWo(hrsCU z-K!-=jDmv!zb7XT>)r|-Z0Ry}lk2;dk-ECqMwr_nKN#x*X6~B5hVIN>6$1HwBz3Of z=Pk){AL5*=d90f17_qZEJLm;Q%WMdX=*N&!ki@E&cy7?>{1ssAH(tACtp*r@d^til z)x(1#6(kPD+joSF&J3sxJU@{-sWCS+pZq{Gsx=?z4wP;>?)1yHv0?X?VP{}cX4~aH zxeBPKw_rgW8rvewS1W2#^y+c>-183iMbJCqc38RN_o~__9-n|jcd&oA`m7*&Fqqpc z;Tev*0LS-ZK47Sq1unfvP1S43uA12P?PJmI8BeTYPr~R*tYUm^0;U%Hmu?bSZHEK6 zPjsW=E67Kq-&trmf;)UkmRABH2U)V)-eRT$j(%G12lLMsThSsU10iP#{)ZnvjzN$d z*K%P3`}oqyvpWP~venr>3viH8^`)Ma*=B31hw*Q+tqE>i2y7w!(o^lI^Yss^=tHW( z;cnCT(%B1gLz+TRGW9roFjI1EQTu-u`(f#RmZ8;FSN(bsC1J;+(i_R6mrW=yYx$cy z#%QKVrEx~kVMg~yo?^N28Wnk6x%L;J8i|*|ANEiNjq(Vhzuzl3ikpA*G!Z}kLAzAI z9qnySo%D|AuJj12%h;Otqjs(>LPj?rNdeU8so>P(C>XMzlho94ZD#w=cCOOU;=3&^ zsqAG!i{~lY271D|m>ztPV`)X@FO_;`wPjppYNQpM+ncvtz1lZjN>!Q^*I}T%uP78Z7tbV2$q3W_)14=kLFyJ z1GqL6T>ClgeZorL!}xP4f%OB_EsmJ`uw7dGWNV9OLlhb|UMpVhc{4@Bhh`tO!ZqzD zhusd<=K^ah!L@gQ?6dOpI-ge^e>S5W9eII57Zu16eU?GRbgKTeVk9yS{iK|O(zLR> zheb?;jwGCHS80NCn=jKxgJ>}qu4l%5NPihjzazGv#J?Jcyl;<#IW&x4mm>nrW8>}C z3U@aeD~)*F(0o^2{GnKVm$Jr#aZE ztl~TOkM^SdzJapQ((!-i8b!RkVQBKkL`2ZCBuy!qI1L{3Er526plVols~68U-^9Px zR(3{j;Z9RHX^muc0dUywJ|`yyZFf=k&-Gb#m4u73Lm5Ks%BfHj%2|gjn#i> zLC5pO$2Em9H;qoKQmMtl<@wgtPF1%2HariD5O~u>8=^*J&au~JH%Ih@&2Uging3U_ z0bzfKucW$ZHSx}!#buB?+-J)%RQbbXM-!BJTS&#dU_@lxU6>te2O+9 z@F{F{Nb!;{Cd`Gx+$G?11aB~S#wIH%D=*=7f7H@D@%B1)&bF$@t3JDq4l*%(wJTlh zo`?uMq{YilKUewPNaC)GuOr<8j9&ofqRU__BRUX^x8Cj3a;a$rXzgXqW>LR#CUn%~m)t zYC&ol(gAkbc^fd`xWU&bk5vT6KbFmsR=O78Bn%t7 znbw&=c+|T&#r+bls5rU6D#HMvqA<|;)BV%jOMonkm^p$7Vcel-Wwn$=uAJv&(8W>% z9))Fxpl*(%E#wFm_m!U~2HqgZs^2vaGeY(UfYKrSHV}w^D0N6!se5Ewy)Yy-!(2

        aKj2hWG7>znxs|SE zN4rHtiSPqLskWp(?(_YYwgq+1@8v+~8As|(bC>$D(atG3ZE8-ZM3SVcg|vHQz$I=!(A`k`5= zOqR>&%G)$)k*QLz7MTB9wleWpv&N9Sta64wy}3Ytd?x!Ja8z>(z~(3UNFu^eFmn#6 zw!!gUxOuZi$PQIs*ixfZR3iLyADJ z5&s%tPfk>V!x|A-;oq%1!yk9H$UBP0ToA*EDtz(^!_AnF1bBQ7joj|? z5b)gSI8c8O$PYFE!vXJ<4gebg*9G9P2wcB{#kv0FItc5T@PDNo)}Rh4Us}L{e}xzW zhwt`)j`M)mP=G6H0;^&q=I0{jU%bIRkF#uLF;{vVC&H|_uc literal 0 HcmV?d00001 diff --git a/frontendcareit_v4/android/app/src/main/res/drawable-land-xxxhdpi/splash.png b/frontendcareit_v4/android/app/src/main/res/drawable-land-xxxhdpi/splash.png new file mode 100644 index 0000000000000000000000000000000000000000..244ca2506dbe0fd8f6a05520ac7d1a629ea81438 GIT binary patch literal 17683 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 literal 0 HcmV?d00001 diff --git a/frontendcareit_v4/android/app/src/main/res/drawable-port-xxhdpi/splash.png b/frontendcareit_v4/android/app/src/main/res/drawable-port-xxhdpi/splash.png new file mode 100644 index 0000000000000000000000000000000000000000..bfabe6871a17a5e95b78fb30d49b7d2b4d2fe4c0 GIT binary patch literal 13346 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

        VwO4Hu8X}%XHUAz_J@50rzbkIsat>4oWtQt< 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 literal 0 HcmV?d00001 diff --git a/frontendcareit_v4/android/app/src/main/res/drawable-port-xxxhdpi/splash.png b/frontendcareit_v4/android/app/src/main/res/drawable-port-xxxhdpi/splash.png new file mode 100644 index 0000000000000000000000000000000000000000..6929071268eb03ee0f088142b6523566b78550e2 GIT binary patch literal 17489 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 KR&><$`~L^lv%S~= literal 0 HcmV?d00001 diff --git a/frontendcareit_v4/android/app/src/main/res/drawable-v24/ic_launcher_foreground.xml b/frontendcareit_v4/android/app/src/main/res/drawable-v24/ic_launcher_foreground.xml new file mode 100644 index 0000000..c7bd21d --- /dev/null +++ b/frontendcareit_v4/android/app/src/main/res/drawable-v24/ic_launcher_foreground.xml @@ -0,0 +1,34 @@ + + + + + + + + + + + diff --git a/frontendcareit_v4/android/app/src/main/res/drawable/ic_launcher_background.xml b/frontendcareit_v4/android/app/src/main/res/drawable/ic_launcher_background.xml new file mode 100644 index 0000000..d5fccc5 --- /dev/null +++ b/frontendcareit_v4/android/app/src/main/res/drawable/ic_launcher_background.xml @@ -0,0 +1,170 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/frontendcareit_v4/android/app/src/main/res/drawable/splash.png b/frontendcareit_v4/android/app/src/main/res/drawable/splash.png new file mode 100644 index 0000000000000000000000000000000000000000..f7a64923ea1a0565d25fa139c176d6bf42184e48 GIT binary patch literal 4040 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 XyOn+%7f`N3b2T^T3uj5+eShz7v)7qy literal 0 HcmV?d00001 diff --git a/frontendcareit_v4/android/app/src/main/res/layout/activity_main.xml b/frontendcareit_v4/android/app/src/main/res/layout/activity_main.xml new file mode 100644 index 0000000..b5ad138 --- /dev/null +++ b/frontendcareit_v4/android/app/src/main/res/layout/activity_main.xml @@ -0,0 +1,12 @@ + + + + + diff --git a/frontendcareit_v4/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml b/frontendcareit_v4/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml new file mode 100644 index 0000000..036d09b --- /dev/null +++ b/frontendcareit_v4/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/frontendcareit_v4/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml b/frontendcareit_v4/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml new file mode 100644 index 0000000..036d09b --- /dev/null +++ b/frontendcareit_v4/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/frontendcareit_v4/android/app/src/main/res/mipmap-hdpi/ic_launcher.png b/frontendcareit_v4/android/app/src/main/res/mipmap-hdpi/ic_launcher.png new file mode 100644 index 0000000000000000000000000000000000000000..c023e50595074292c7361183a64de08cf9686c9c GIT binary patch literal 2786 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 literal 0 HcmV?d00001 diff --git a/frontendcareit_v4/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png b/frontendcareit_v4/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png new file mode 100644 index 0000000000000000000000000000000000000000..2127973b2d318df7085734d236d0ec649a2b0292 GIT binary patch literal 3450 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 literal 0 HcmV?d00001 diff --git a/frontendcareit_v4/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png b/frontendcareit_v4/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png new file mode 100644 index 0000000000000000000000000000000000000000..4d1e077104cd61e6a4c3707e87363b523077245a GIT binary patch literal 3981 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 nm0GElTB(&OnKI&V600000NkvXXu0mjff+~0a literal 0 HcmV?d00001 diff --git a/frontendcareit_v4/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png b/frontendcareit_v4/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png new file mode 100644 index 0000000000000000000000000000000000000000..df0f15880bee46332dfc6622583215194f948b0f GIT binary patch literal 5036 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 literal 0 HcmV?d00001 diff --git a/frontendcareit_v4/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png b/frontendcareit_v4/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png new file mode 100644 index 0000000000000000000000000000000000000000..6cdf97c1196d48e9833487ff6de7c4cfc4e1232d GIT binary patch literal 6644 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 literal 0 HcmV?d00001 diff --git a/frontendcareit_v4/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png b/frontendcareit_v4/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png new file mode 100644 index 0000000000000000000000000000000000000000..2960cbb6104b915c84760f889deed9bff2b3e17a GIT binary patch literal 9793 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 y3vD~Wi9;mL_v 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 literal 0 HcmV?d00001 diff --git a/frontendcareit_v4/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png b/frontendcareit_v4/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png new file mode 100644 index 0000000000000000000000000000000000000000..a40d73e9c68ea638c28c7b13e4bcd1e179a3a102 GIT binary patch literal 15916 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 + + #FFFFFF + \ No newline at end of file diff --git a/frontendcareit_v4/android/app/src/main/res/values/strings.xml b/frontendcareit_v4/android/app/src/main/res/values/strings.xml new file mode 100644 index 0000000..99ba76a --- /dev/null +++ b/frontendcareit_v4/android/app/src/main/res/values/strings.xml @@ -0,0 +1,7 @@ + + + CareIt + CareIt + com.CareIt.app + com.CareIt.app + diff --git a/frontendcareit_v4/android/app/src/main/res/values/styles.xml b/frontendcareit_v4/android/app/src/main/res/values/styles.xml new file mode 100644 index 0000000..be874e5 --- /dev/null +++ b/frontendcareit_v4/android/app/src/main/res/values/styles.xml @@ -0,0 +1,22 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/frontendcareit_v4/android/app/src/main/res/xml/file_paths.xml b/frontendcareit_v4/android/app/src/main/res/xml/file_paths.xml new file mode 100644 index 0000000..bd0c4d8 --- /dev/null +++ b/frontendcareit_v4/android/app/src/main/res/xml/file_paths.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/frontendcareit_v4/android/app/src/test/java/com/getcapacitor/myapp/ExampleUnitTest.java b/frontendcareit_v4/android/app/src/test/java/com/getcapacitor/myapp/ExampleUnitTest.java new file mode 100644 index 0000000..0297327 --- /dev/null +++ b/frontendcareit_v4/android/app/src/test/java/com/getcapacitor/myapp/ExampleUnitTest.java @@ -0,0 +1,18 @@ +package com.getcapacitor.myapp; + +import static org.junit.Assert.*; + +import org.junit.Test; + +/** + * Example local unit test, which will execute on the development machine (host). + * + * @see Testing documentation + */ +public class ExampleUnitTest { + + @Test + public void addition_isCorrect() throws Exception { + assertEquals(4, 2 + 2); + } +} diff --git a/frontendcareit_v4/android/build.gradle b/frontendcareit_v4/android/build.gradle new file mode 100644 index 0000000..f8f0e43 --- /dev/null +++ b/frontendcareit_v4/android/build.gradle @@ -0,0 +1,29 @@ +// Top-level build file where you can add configuration options common to all sub-projects/modules. + +buildscript { + + repositories { + google() + mavenCentral() + } + dependencies { + classpath 'com.android.tools.build:gradle:8.13.0' + classpath 'com.google.gms:google-services:4.4.4' + + // NOTE: Do not place your application dependencies here; they belong + // in the individual module build.gradle files + } +} + +apply from: "variables.gradle" + +allprojects { + repositories { + google() + mavenCentral() + } +} + +task clean(type: Delete) { + delete rootProject.buildDir +} diff --git a/frontendcareit_v4/android/capacitor.settings.gradle b/frontendcareit_v4/android/capacitor.settings.gradle new file mode 100644 index 0000000..9a5fa87 --- /dev/null +++ b/frontendcareit_v4/android/capacitor.settings.gradle @@ -0,0 +1,3 @@ +// DO NOT EDIT THIS FILE! IT IS GENERATED EACH TIME "capacitor update" IS RUN +include ':capacitor-android' +project(':capacitor-android').projectDir = new File('../node_modules/@capacitor/android/capacitor') diff --git a/frontendcareit_v4/android/gradle.properties b/frontendcareit_v4/android/gradle.properties new file mode 100644 index 0000000..2e87c52 --- /dev/null +++ b/frontendcareit_v4/android/gradle.properties @@ -0,0 +1,22 @@ +# Project-wide Gradle settings. + +# IDE (e.g. Android Studio) users: +# Gradle settings configured through the IDE *will override* +# any settings specified in this file. + +# For more details on how to configure your build environment visit +# http://www.gradle.org/docs/current/userguide/build_environment.html + +# Specifies the JVM arguments used for the daemon process. +# The setting is particularly useful for tweaking memory settings. +org.gradle.jvmargs=-Xmx1536m + +# When configured, Gradle will run in incubating parallel mode. +# This option should only be used with decoupled projects. More details, visit +# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects +# org.gradle.parallel=true + +# AndroidX package structure to make it clearer which packages are bundled with the +# Android operating system, and which are packaged with your app's APK +# https://developer.android.com/topic/libraries/support-library/androidx-rn +android.useAndroidX=true diff --git a/frontendcareit_v4/android/gradle/wrapper/gradle-wrapper.jar b/frontendcareit_v4/android/gradle/wrapper/gradle-wrapper.jar new file mode 100644 index 0000000000000000000000000000000000000000..1b33c55baabb587c669f562ae36f953de2481846 GIT binary patch literal 43764 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 '} + case $link in #( + /*) app_path=$link ;; #( + *) app_path=$APP_HOME$link ;; + esac +done + +# This is normally unused +# shellcheck disable=SC2034 +APP_BASE_NAME=${0##*/} +# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036) +APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s\n' "$PWD" ) || exit + +# Use the maximum available, or set MAX_FD != -1 to use that value. +MAX_FD=maximum + +warn () { + echo "$*" +} >&2 + +die () { + echo + echo "$*" + echo + exit 1 +} >&2 + +# OS specific support (must be 'true' or 'false'). +cygwin=false +msys=false +darwin=false +nonstop=false +case "$( uname )" in #( + CYGWIN* ) cygwin=true ;; #( + Darwin* ) darwin=true ;; #( + MSYS* | MINGW* ) msys=true ;; #( + NONSTOP* ) nonstop=true ;; +esac + +CLASSPATH="\\\"\\\"" + + +# Determine the Java command to use to start the JVM. +if [ -n "$JAVA_HOME" ] ; then + if [ -x "$JAVA_HOME/jre/sh/java" ] ; then + # IBM's JDK on AIX uses strange locations for the executables + JAVACMD=$JAVA_HOME/jre/sh/java + else + JAVACMD=$JAVA_HOME/bin/java + fi + if [ ! -x "$JAVACMD" ] ; then + die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." + fi +else + JAVACMD=java + if ! command -v java >/dev/null 2>&1 + then + die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." + fi +fi + +# Increase the maximum file descriptors if we can. +if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then + case $MAX_FD in #( + max*) + # In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked. + # shellcheck disable=SC2039,SC3045 + MAX_FD=$( ulimit -H -n ) || + warn "Could not query maximum file descriptor limit" + esac + case $MAX_FD in #( + '' | soft) :;; #( + *) + # In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked. + # shellcheck disable=SC2039,SC3045 + ulimit -n "$MAX_FD" || + warn "Could not set maximum file descriptor limit to $MAX_FD" + esac +fi + +# Collect all arguments for the java command, stacking in reverse order: +# * args from the command line +# * the main class name +# * -classpath +# * -D...appname settings +# * --module-path (only if needed) +# * DEFAULT_JVM_OPTS, JAVA_OPTS, and GRADLE_OPTS environment variables. + +# For Cygwin or MSYS, switch paths to Windows format before running java +if "$cygwin" || "$msys" ; then + APP_HOME=$( cygpath --path --mixed "$APP_HOME" ) + CLASSPATH=$( cygpath --path --mixed "$CLASSPATH" ) + + JAVACMD=$( cygpath --unix "$JAVACMD" ) + + # Now convert the arguments - kludge to limit ourselves to /bin/sh + for arg do + if + case $arg in #( + -*) false ;; # don't mess with options #( + /?*) t=${arg#/} t=/${t%%/*} # looks like a POSIX filepath + [ -e "$t" ] ;; #( + *) false ;; + esac + then + arg=$( cygpath --path --ignore --mixed "$arg" ) + fi + # Roll the args list around exactly as many times as the number of + # args, so each arg winds up back in the position where it started, but + # possibly modified. + # + # NB: a `for` loop captures its iteration list before it begins, so + # changing the positional parameters here affects neither the number of + # iterations, nor the values presented in `arg`. + shift # remove old arg + set -- "$@" "$arg" # push replacement arg + done +fi + + +# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' + +# Collect all arguments for the java command: +# * DEFAULT_JVM_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments, +# and any embedded shellness will be escaped. +# * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be +# treated as '${Hostname}' itself on the command line. + +set -- \ + "-Dorg.gradle.appname=$APP_BASE_NAME" \ + -classpath "$CLASSPATH" \ + -jar "$APP_HOME/gradle/wrapper/gradle-wrapper.jar" \ + "$@" + +# Stop when "xargs" is not available. +if ! command -v xargs >/dev/null 2>&1 +then + die "xargs is not available" +fi + +# Use "xargs" to parse quoted args. +# +# With -n1 it outputs one arg per line, with the quotes and backslashes removed. +# +# In Bash we could simply go: +# +# readarray ARGS < <( xargs -n1 <<<"$var" ) && +# set -- "${ARGS[@]}" "$@" +# +# but POSIX shell has neither arrays nor command substitution, so instead we +# post-process each arg (as a line of input to sed) to backslash-escape any +# character that might be a shell metacharacter, then use eval to reverse +# that process (while maintaining the separation between arguments), and wrap +# the whole thing up as a single "set" statement. +# +# This will of course break if any of these variables contains a newline or +# an unmatched quote. +# + +eval "set -- $( + printf '%s\n' "$DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS" | + xargs -n1 | + sed ' s~[^-[:alnum:]+,./:=@_]~\\&~g; ' | + tr '\n' ' ' + )" '"$@"' + +exec "$JAVACMD" "$@" diff --git a/frontendcareit_v4/android/gradlew.bat b/frontendcareit_v4/android/gradlew.bat new file mode 100644 index 0000000..db3a6ac --- /dev/null +++ b/frontendcareit_v4/android/gradlew.bat @@ -0,0 +1,94 @@ +@rem +@rem Copyright 2015 the original author or authors. +@rem +@rem Licensed under the Apache License, Version 2.0 (the "License"); +@rem you may not use this file except in compliance with the License. +@rem You may obtain a copy of the License at +@rem +@rem https://www.apache.org/licenses/LICENSE-2.0 +@rem +@rem Unless required by applicable law or agreed to in writing, software +@rem distributed under the License is distributed on an "AS IS" BASIS, +@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +@rem See the License for the specific language governing permissions and +@rem limitations under the License. +@rem +@rem SPDX-License-Identifier: Apache-2.0 +@rem + +@if "%DEBUG%"=="" @echo off +@rem ########################################################################## +@rem +@rem Gradle startup script for Windows +@rem +@rem ########################################################################## + +@rem Set local scope for the variables with windows NT shell +if "%OS%"=="Windows_NT" setlocal + +set DIRNAME=%~dp0 +if "%DIRNAME%"=="" set DIRNAME=. +@rem This is normally unused +set APP_BASE_NAME=%~n0 +set APP_HOME=%DIRNAME% + +@rem Resolve any "." and ".." in APP_HOME to make it shorter. +for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi + +@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m" + +@rem Find java.exe +if defined JAVA_HOME goto findJavaFromJavaHome + +set JAVA_EXE=java.exe +%JAVA_EXE% -version >NUL 2>&1 +if %ERRORLEVEL% equ 0 goto execute + +echo. 1>&2 +echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 1>&2 +echo. 1>&2 +echo Please set the JAVA_HOME variable in your environment to match the 1>&2 +echo location of your Java installation. 1>&2 + +goto fail + +:findJavaFromJavaHome +set JAVA_HOME=%JAVA_HOME:"=% +set JAVA_EXE=%JAVA_HOME%/bin/java.exe + +if exist "%JAVA_EXE%" goto execute + +echo. 1>&2 +echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 1>&2 +echo. 1>&2 +echo Please set the JAVA_HOME variable in your environment to match the 1>&2 +echo location of your Java installation. 1>&2 + +goto fail + +:execute +@rem Setup the command line + +set CLASSPATH= + + +@rem Execute Gradle +"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" -jar "%APP_HOME%\gradle\wrapper\gradle-wrapper.jar" %* + +:end +@rem End local scope for the variables with windows NT shell +if %ERRORLEVEL% equ 0 goto mainEnd + +:fail +rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of +rem the _cmd.exe /c_ return code! +set EXIT_CODE=%ERRORLEVEL% +if %EXIT_CODE% equ 0 set EXIT_CODE=1 +if not ""=="%GRADLE_EXIT_CONSOLE%" exit %EXIT_CODE% +exit /b %EXIT_CODE% + +:mainEnd +if "%OS%"=="Windows_NT" endlocal + +:omega diff --git a/frontendcareit_v4/android/settings.gradle b/frontendcareit_v4/android/settings.gradle new file mode 100644 index 0000000..3b4431d --- /dev/null +++ b/frontendcareit_v4/android/settings.gradle @@ -0,0 +1,5 @@ +include ':app' +include ':capacitor-cordova-android-plugins' +project(':capacitor-cordova-android-plugins').projectDir = new File('./capacitor-cordova-android-plugins/') + +apply from: 'capacitor.settings.gradle' \ No newline at end of file diff --git a/frontendcareit_v4/android/variables.gradle b/frontendcareit_v4/android/variables.gradle new file mode 100644 index 0000000..ee4ba41 --- /dev/null +++ b/frontendcareit_v4/android/variables.gradle @@ -0,0 +1,16 @@ +ext { + minSdkVersion = 24 + compileSdkVersion = 36 + targetSdkVersion = 36 + androidxActivityVersion = '1.11.0' + androidxAppCompatVersion = '1.7.1' + androidxCoordinatorLayoutVersion = '1.3.0' + androidxCoreVersion = '1.17.0' + androidxFragmentVersion = '1.8.9' + coreSplashScreenVersion = '1.2.0' + androidxWebkitVersion = '1.14.0' + junitVersion = '4.13.2' + androidxJunitVersion = '1.3.0' + androidxEspressoCoreVersion = '3.7.0' + cordovaAndroidVersion = '14.0.1' +} \ No newline at end of file diff --git a/frontendcareit_v4/build-bypass.bat b/frontendcareit_v4/build-bypass.bat new file mode 100644 index 0000000..77f8b41 --- /dev/null +++ b/frontendcareit_v4/build-bypass.bat @@ -0,0 +1,13 @@ +@echo off +echo Building CareIt for Windows (Bypassing Signing)... + +:: Set environment variables to disable calling winCodeSign +set CSC_IDENTITY_AUTO_DISCOVERY=false +set WIN_CSC_LINK= +set WIN_CSC_KEY_PASSWORD= + +:: Clean previous build +if exist dist rmdir /s /q dist + +:: Run build +call npm run electron:build diff --git a/frontendcareit_v4/build-electron.bat b/frontendcareit_v4/build-electron.bat new file mode 100644 index 0000000..a62f3b7 --- /dev/null +++ b/frontendcareit_v4/build-electron.bat @@ -0,0 +1,63 @@ +@echo off +REM Build script for Electron (Windows CMD) +REM This enables static export for Electron +REM Temporarily moves API routes out of the way during build + +set API_PATH=src\app\api +set API_BACKUP_PATH=src\app\_api_backup + +REM Check if API folder exists and move it +if exist "%API_PATH%" ( + echo Temporarily moving API routes out of the way... + if exist "%API_BACKUP_PATH%" ( + rmdir /s /q "%API_BACKUP_PATH%" + ) + move "%API_PATH%" "%API_BACKUP_PATH%" + echo API routes moved to backup location +) + +REM Clear cache +if exist ".next" ( + echo Cleaning cache... + rmdir /s /q ".next" + echo Cache cleared +) + +set ELECTRON_BUILD=true +call npm run build +if %ERRORLEVEL% EQU 0 ( + echo Next.js build successful! + echo Building Electron installer... + call npx electron-forge make + if %ERRORLEVEL% EQU 0 ( + echo. + echo ======================================== + echo Build completed successfully! + echo ======================================== + echo Installer location: out\make\ + echo. + echo You can now distribute the installer file. + ) else ( + echo Electron build failed + ) +) else ( + echo Build failed, skipping Electron build + goto :restore +) + +:restore +REM Restore API routes after build +if exist "%API_BACKUP_PATH%" ( + echo. + echo Restoring API routes... + if exist "%API_PATH%" ( + rmdir /s /q "%API_PATH%" + ) + move "%API_BACKUP_PATH%" "%API_PATH%" + echo API routes restored +) + +if %ERRORLEVEL% NEQ 0 exit /b %ERRORLEVEL% + + + diff --git a/frontendcareit_v4/build-electron.ps1 b/frontendcareit_v4/build-electron.ps1 new file mode 100644 index 0000000..b73d522 --- /dev/null +++ b/frontendcareit_v4/build-electron.ps1 @@ -0,0 +1,76 @@ +# Build script for Electron (Windows PowerShell) +# This enables static export for Electron +# Temporarily moves API routes out of the way during build + +$apiPath = "src\app\api" +$apiBackupPath = "src\app\_api_backup" + +# Check if API folder exists +if (Test-Path $apiPath) { + Write-Host "Temporarily moving API routes out of the way..." -ForegroundColor Yellow + + # Remove backup if exists + if (Test-Path $apiBackupPath) { + Remove-Item -Recurse -Force $apiBackupPath + } + + # Move API folder to backup location + Move-Item -Path $apiPath -Destination $apiBackupPath + Write-Host "API routes moved to backup location" -ForegroundColor Green +} + +try { + Write-Host "Cleaning cache..." -ForegroundColor Yellow + # Remove .next folder to clear cache + if (Test-Path ".next") { + Remove-Item -Recurse -Force ".next" -ErrorAction SilentlyContinue + Write-Host "Cache cleared" -ForegroundColor Green + } + + Write-Host "Building Next.js for Electron..." -ForegroundColor Yellow + + # Set environment variables + $env:ELECTRON_BUILD = "true" + + # Set API URL if not already set (bisa diubah sesuai kebutuhan) + if (-not $env:NEXT_PUBLIC_API_URL) { + Write-Host "Using default API URL: http://localhost:8081" -ForegroundColor Yellow + Write-Host "To change API URL, set NEXT_PUBLIC_API_URL environment variable" -ForegroundColor Yellow + Write-Host "Example: `$env:NEXT_PUBLIC_API_URL='http://31.97.109.192:8081'" -ForegroundColor Cyan + } else { + Write-Host "Using API URL: $env:NEXT_PUBLIC_API_URL" -ForegroundColor Green + } + + npm run build + + if ($LASTEXITCODE -eq 0) { + Write-Host "Next.js build successful!" -ForegroundColor Green + Write-Host "Building Electron installer..." -ForegroundColor Yellow + npx electron-forge make + + if ($LASTEXITCODE -eq 0) { + Write-Host "`n========================================" -ForegroundColor Green + Write-Host "Build completed successfully!" -ForegroundColor Green + Write-Host "========================================" -ForegroundColor Green + Write-Host "Installer location: out\make\" -ForegroundColor Cyan + Write-Host "`nYou can now distribute the installer file." -ForegroundColor Yellow + } else { + Write-Host "Electron build failed" -ForegroundColor Red + } + } else { + Write-Host "Next.js build failed, skipping Electron build" -ForegroundColor Red + } +} finally { + # Restore API routes after build + if (Test-Path $apiBackupPath) { + Write-Host "`nRestoring API routes..." -ForegroundColor Yellow + if (Test-Path $apiPath) { + Remove-Item -Recurse -Force $apiPath + } + Move-Item -Path $apiBackupPath -Destination $apiPath + Write-Host "API routes restored" -ForegroundColor Green + } +} + + + diff --git a/frontendcareit_v4/build-mobile.bat b/frontendcareit_v4/build-mobile.bat new file mode 100644 index 0000000..a68e7b7 --- /dev/null +++ b/frontendcareit_v4/build-mobile.bat @@ -0,0 +1,40 @@ +@echo off +REM Build script for mobile (Windows CMD) +REM This enables static export for Capacitor +REM Temporarily moves API routes out of the way during build + +set API_PATH=src\app\api +set API_BACKUP_PATH=src\app\_api_backup + +REM Check if API folder exists and move it +if exist "%API_PATH%" ( + echo Temporarily moving API routes out of the way... + if exist "%API_BACKUP_PATH%" ( + rmdir /s /q "%API_BACKUP_PATH%" + ) + move "%API_PATH%" "%API_BACKUP_PATH%" + echo API routes moved to backup location +) + +set NEXT_EXPORT=true +call npm run build +if %ERRORLEVEL% EQU 0 ( + call npx cap sync +) else ( + echo Build failed, skipping Capacitor sync + goto :restore +) + +:restore +REM Restore API routes after build +if exist "%API_BACKUP_PATH%" ( + echo Restoring API routes... + if exist "%API_PATH%" ( + rmdir /s /q "%API_PATH%" + ) + move "%API_BACKUP_PATH%" "%API_PATH%" + echo API routes restored +) + +if %ERRORLEVEL% NEQ 0 exit /b %ERRORLEVEL% + diff --git a/frontendcareit_v4/build-mobile.ps1 b/frontendcareit_v4/build-mobile.ps1 new file mode 100644 index 0000000..7352042 --- /dev/null +++ b/frontendcareit_v4/build-mobile.ps1 @@ -0,0 +1,43 @@ +# Build script for mobile (Windows PowerShell) +# This enables static export for Capacitor +# Temporarily moves API routes out of the way during build + +$apiPath = "src\app\api" +$apiBackupPath = "src\app\_api_backup" + +# Check if API folder exists +if (Test-Path $apiPath) { + Write-Host "Temporarily moving API routes out of the way..." -ForegroundColor Yellow + + # Remove backup if exists + if (Test-Path $apiBackupPath) { + Remove-Item -Recurse -Force $apiBackupPath + } + + # Move API folder to backup location + Move-Item -Path $apiPath -Destination $apiBackupPath + Write-Host "API routes moved to backup location" -ForegroundColor Green +} + +try { + $env:NEXT_EXPORT = "true" + npm run build + + if ($LASTEXITCODE -eq 0) { + npx cap sync + } else { + Write-Host "Build failed, skipping Capacitor sync" -ForegroundColor Red + exit $LASTEXITCODE + } +} finally { + # Restore API routes after build + if (Test-Path $apiBackupPath) { + Write-Host "Restoring API routes..." -ForegroundColor Yellow + if (Test-Path $apiPath) { + Remove-Item -Recurse -Force $apiPath + } + Move-Item -Path $apiBackupPath -Destination $apiPath + Write-Host "API routes restored" -ForegroundColor Green + } +} + diff --git a/frontendcareit_v4/build.log b/frontendcareit_v4/build.log new file mode 100644 index 0000000000000000000000000000000000000000..a7474acf86319df1c3e3695f0a8a8c0a93b1e83f GIT binary patch literal 12800 zcmeI3+ip`w6oyCYU8TOmR#XXEH3kAyB@&_`hc+ruR71ImR2kbC6WcM{P6Dm^6n> z^s*1s`?mi#%geL(juTK1LP(=1&Yqby>+r9`%y>`!`m+c{_~nD&!yo$F4A6tvOug4)550_UsC6}b6h4d` zT-r#qoyfVT{%+*=One8DS!!gykbzYC(d~BF37g?S?S7oo5oKRvbM@^lw4R4uY1Rwd z;=$;C9DS2*t?)vcV^dR4Y@bQLQgWsht%m9?!dSgC{q!ZV(DOu}^YC2lLew42JJjbu z?IZz-W);-@>obeP4*52*r`CcvBo5DV|@* z6GV7RbKevb#hK`SE=geZRCD{$*La-x8!mMCQT^y~EIP&pdhY1=qWG@rWzj?Q7vggy zZpfSHiJq}|&Bg1vo;}L86h-@L6Qjf(G_6GxudDwe$!P7NN5q=VvjNvgry&1j1bq%Wd=Ad0a#y56%mquzQft-Xra z2(kW5`k;Rk`|4O7-?Vb^P3E&Ji^0U|^*FS}n~L96uS@h*=YdAXG26;BW8aIu z6dzlOY$mY|ZsRnM|YcC?`oSRf0^QOI7-K5zO2eRqB(YmgysrKY2>XqZulyNWW$}YsR{5-mUTI!pX~=64Z~ zl!wmS_g%yXyCZVfEM%wDq)P2kq@s>^zE}kz$3cqh@w#iPq@naIMhZ2`GBC|1qsh3L z<{B*(nC!8=V!xJMR2R>JJ;^H-;jAU~taE*bvI~2RFZy&vdmOcVs87#xtYVEMyB~}H zDj(wYiKu)%V6EsbIP>f>?U_72S&mY#Ooy@PhN?!ar@muZwSpMklZXNP$+Wgub`Ily z9q*=k3}PmQT?L-_O0{4b>Qr@#RhF_&jAOMMEUmJ>)ts=%ttWP9J&Br`EIjaFq0#;L zmwMV?deW$-;ilyJGuVQp`;N8S>&sL;SPwmud=8lQh9no#O$UE9y{ao3rac=oKa%1;-q!#tzl}==S zzJQ|8>5tv@x6+FYEyQoGpQ(6nhAa9xjXy1of*^jd^Jc3OrB|X4K=tg2ur6&QN^6S~ z`yaGVdt-K^=^P1G)E0J~&2t)v6ydT)I1#ZrqP?H!z|kyj%5fCHnY}Ci;tb5L-FN7C zfIY+~%YC`wWS^gklDKDoPnD#?P~(bVduz0(+FN0$usU1$9GMZvtwC{=K;69E*q&}>?b3z?ua|QdqNsa5B2>*s*@l@ zwy-~XBz;Z8+p7A0j!7%wuEvp2D#G)bw9u-M&!o0X-i4fX6gH_+u-&SPi zGbuSqP0wf2d?w9jQr75vCQa`Gwp1PRnKYkCtKaeEGig4P<}+zNlfJKK((3mD`8gwy z5y%K+1Tq2{fs8;#AR~|w$OvQvG6H82uoG{(V@ccIX#dk2)4WIJ9rF+IE(13v_-<*Y zo7P{(er`AL?PIB)>aBrwQS#oF`x6JEwD->kmHVHjo85=r3}5Jm_@?d*T+YM%5 z7IAxM^{oKjZ~ynU+B@s!P55)@p8er5o<(Y8GCXS8vF|n{R1h^{xB6^y2yU+>+PMvxi$2es9n2 qD{<3=n-$zu_&@APcyXI6Wn79!yUS$%oxqI>^9%o@L9X3c_~mZ|AvCrC literal 0 HcmV?d00001 diff --git a/frontendcareit_v4/capacitor.config.ts b/frontendcareit_v4/capacitor.config.ts new file mode 100644 index 0000000..8cabfbc --- /dev/null +++ b/frontendcareit_v4/capacitor.config.ts @@ -0,0 +1,20 @@ +import { CapacitorConfig } from '@capacitor/cli'; + +const config: CapacitorConfig = { + appId: 'com.careit.app', + appName: 'CareIt', + webDir: 'out', + server: { + url: process.env.NEXT_PUBLIC_API_URL || "http://10.0.2.2:3000", + cleartext: true + }, + // iOS and Android specific configuration + ios: { + contentInset: 'automatic', + }, + android: { + allowMixedContent: true, + } +}; + +export default config; diff --git a/frontendcareit_v4/electron-builder.json b/frontendcareit_v4/electron-builder.json new file mode 100644 index 0000000..fdf0b99 --- /dev/null +++ b/frontendcareit_v4/electron-builder.json @@ -0,0 +1,24 @@ +{ + "appId": "com.careit.app", + "productName": "CareIt", + "directories": { + "output": "dist", + "buildResources": "public" + }, + "files": [ + "out/**/*", + "electron.js", + "preload.js", + "package.json" + ], + "win": { + "target": "nsis", + "icon": "public/LOGO_CAREIT.ico" + }, + "nsis": { + "oneClick": false, + "allowToChangeInstallationDirectory": true + }, + "compression": "normal", + "electronVersion": "28.1.0" +} \ No newline at end of file diff --git a/frontendcareit_v4/electron.config.js b/frontendcareit_v4/electron.config.js new file mode 100644 index 0000000..acd6636 --- /dev/null +++ b/frontendcareit_v4/electron.config.js @@ -0,0 +1,17 @@ +// Electron Configuration +// API URL untuk backend Go +// Bisa diubah sesuai kebutuhan (local, production, dll) + +module.exports = { + // Production API URL - untuk distribusi aplikasi + apiUrl: 'http://31.97.109.192:8081', + + // Untuk local development, uncomment baris di bawah dan comment baris di atas: + // apiUrl: 'http://localhost:8081', + + // Atau gunakan environment variable (akan override config ini): + // apiUrl: process.env.NEXT_PUBLIC_API_URL || 'http://31.97.109.192:8081', +}; + + + diff --git a/frontendcareit_v4/electron.js b/frontendcareit_v4/electron.js new file mode 100644 index 0000000..40674af --- /dev/null +++ b/frontendcareit_v4/electron.js @@ -0,0 +1,72 @@ +const { app, BrowserWindow, ipcMain } = require('electron'); +const path = require('path'); +const isDev = process.env.NODE_ENV === 'development'; + +let mainWindow; + +function createWindow() { + mainWindow = new BrowserWindow({ + width: 1200, + height: 800, + minWidth: 800, + minHeight: 600, + icon: path.join(__dirname, 'public', 'icon.png'), + webPreferences: { + nodeIntegration: false, + contextIsolation: true, + preload: path.join(__dirname, 'preload.js'), + }, + autoHideMenuBar: true, + titleBarStyle: 'default', + backgroundColor: '#ffffff', + }); + + // Load the app + if (isDev) { + // Development: load from Next.js dev server + mainWindow.loadURL('http://localhost:3000'); + mainWindow.webContents.openDevTools(); + } else { + // Production: load from built files + // In packaged app, files are in resources/out or app.asar + const outPath = path.join(__dirname, '..', 'out', 'index.html'); + const appPath = path.join(__dirname, 'out', 'index.html'); + const filePath = require('fs').existsSync(outPath) ? outPath : appPath; + mainWindow.loadFile(filePath); + } + + mainWindow.on('closed', () => { + mainWindow = null; + }); + + // Handle external links + mainWindow.webContents.setWindowOpenHandler(({ url }) => { + require('electron').shell.openExternal(url); + return { action: 'deny' }; + }); +} + +app.whenReady().then(() => { + createWindow(); + + app.on('activate', () => { + if (BrowserWindow.getAllWindows().length === 0) { + createWindow(); + } + }); +}); + +app.on('window-all-closed', () => { + if (process.platform !== 'darwin') { + app.quit(); + } +}); + +// Handle app info requests +ipcMain.handle('get-app-info', () => { + return { + name: app.getName(), + version: app.getVersion(), + isElectron: true, + }; +}); diff --git a/frontendcareit_v4/electron/main.js b/frontendcareit_v4/electron/main.js new file mode 100644 index 0000000..ee17129 --- /dev/null +++ b/frontendcareit_v4/electron/main.js @@ -0,0 +1,198 @@ +const { app, BrowserWindow } = require('electron'); +const path = require('path'); +const { createServer } = require('http'); +const { readFileSync, existsSync } = require('fs'); +const { extname } = require('path'); + +// Get API URL from config file or environment variable +let API_URL = process.env.NEXT_PUBLIC_API_URL; +if (!API_URL) { + try { + const config = require('../electron.config.js'); + API_URL = config.apiUrl; + } catch (e) { + // Fallback to default - menggunakan IP server yang sudah di-deploy + API_URL = 'http://31.97.109.192:8081'; + console.warn('โš ๏ธ Failed to load electron.config.js, using default API URL:', API_URL); + } +} + +console.log('๐Ÿ”ง Electron API URL configured:', API_URL); + +// Local HTTP server untuk serve static files +let localServer = null; +const PORT = 3001; + +function startLocalServer(outPath) { + if (localServer) { + return `http://localhost:${PORT}`; + } + + const mimeTypes = { + '.html': 'text/html', + '.js': 'application/javascript', + '.css': 'text/css', + '.json': 'application/json', + '.png': 'image/png', + '.jpg': 'image/jpg', + '.gif': 'image/gif', + '.svg': 'image/svg+xml', + '.woff': 'application/font-woff', + '.woff2': 'font/woff2', + '.ttf': 'application/font-ttf', + '.eot': 'application/vnd.ms-fontobject', + '.otf': 'application/font-otf', + '.wasm': 'application/wasm', + '.ico': 'image/x-icon', + }; + + localServer = createServer((req, res) => { + let filePath = path.join(outPath, req.url === '/' ? 'index.html' : req.url); + + // Remove query strings + filePath = filePath.split('?')[0]; + + if (!existsSync(filePath)) { + res.writeHead(404); + res.end('File not found'); + return; + } + + try { + const content = readFileSync(filePath); + const ext = extname(filePath).toLowerCase(); + const contentType = mimeTypes[ext] || 'application/octet-stream'; + + res.writeHead(200, { 'Content-Type': contentType }); + res.end(content); + } catch (error) { + console.error('Error serving file:', error); + res.writeHead(500); + res.end('Internal server error'); + } + }); + + localServer.listen(PORT, () => { + console.log(`Local server started on http://localhost:${PORT}`); + }); + + return `http://localhost:${PORT}`; +} + +function stopLocalServer() { + if (localServer) { + localServer.close(); + localServer = null; + console.log('Local server stopped'); + } +} + +function createWindow() { + const win = new BrowserWindow({ + width: 1200, + height: 800, + webPreferences: { + nodeIntegration: false, // Security: set ke false + contextIsolation: true, // Security: set ke true + webSecurity: false, // Disable untuk allow local file access (Next.js static export) + allowRunningInsecureContent: true, // Allow insecure content for local files + }, + icon: path.join(__dirname, '..', 'public', 'LOGO_CAREIT.svg'), // Optional: set icon + }); + + // Inject API URL and Electron flag to window after page loads + win.webContents.on('did-finish-load', () => { + console.log('Page loaded, injecting Electron environment...'); + win.webContents.executeJavaScript(` + window.__ELECTRON__ = true; + window.__API_URL__ = '${API_URL}'; + console.log('Electron environment initialized. API URL:', '${API_URL}'); + `).catch(err => { + console.error('Error injecting Electron environment:', err); + }); + }); + + // Log console messages from renderer + win.webContents.on('console-message', (event, level, message, line, sourceId) => { + console.log(`[Renderer ${level}]:`, message); + }); + + if (process.env.NODE_ENV === 'development') { + // Development: jalankan Next.js dev server + win.loadURL('http://localhost:3000'); + + // Open DevTools in development + win.webContents.openDevTools(); + } else { + // Production: load static files dari folder out via local HTTP server + const fs = require('fs'); + let outPath; + + // Try multiple possible paths untuk folder out + const possibleOutPaths = [ + path.join(__dirname, '..', 'out'), // Development + path.join(process.resourcesPath, 'out'), // Packaged (extraResource) + path.join(process.resourcesPath, 'app.asar.unpacked', 'out'), // Packaged (unpacked from asar) + path.join(process.resourcesPath, 'app', 'out'), // Packaged (alternative) + path.join(__dirname, '..', '..', 'out'), // Alternative path + ]; + + // Find the first existing out directory + outPath = possibleOutPaths.find(p => fs.existsSync(p) && fs.existsSync(path.join(p, 'index.html'))); + + if (!outPath) { + // Log all attempted paths for debugging + console.error('ERROR: out directory not found. Attempted paths:'); + possibleOutPaths.forEach(p => { + const indexPath = path.join(p, 'index.html'); + console.error(' -', p, fs.existsSync(p) && fs.existsSync(indexPath) ? 'EXISTS' : 'NOT FOUND'); + }); + console.error('__dirname:', __dirname); + console.error('process.resourcesPath:', process.resourcesPath); + + win.loadURL('data:text/html,

        Error: out directory not found

        Checked paths:
        ' + + possibleOutPaths.map(p => p + '
        ').join('') + '

        '); + return; + } + + console.log('Found out directory at:', outPath); + + // Start local HTTP server dan load via HTTP + const serverUrl = startLocalServer(outPath); + win.loadURL(serverUrl); + console.log('Loading from local server:', serverUrl); + + // Open DevTools untuk debugging (hapus di production jika tidak diperlukan) + win.webContents.openDevTools(); + + // Log errors + win.webContents.on('did-fail-load', (event, errorCode, errorDescription, validatedURL) => { + console.error('Failed to load:', validatedURL); + console.error('Error code:', errorCode); + console.error('Error description:', errorDescription); + }); + } +} + +app.whenReady().then(() => { + createWindow(); + + app.on('activate', () => { + if (BrowserWindow.getAllWindows().length === 0) { + createWindow(); + } + }); +}); + +app.on('window-all-closed', () => { + // Quit app (kecuali di macOS) + if (process.platform !== 'darwin') { + stopLocalServer(); + app.quit(); + } +}); + +app.on('before-quit', () => { + stopLocalServer(); +}); + diff --git a/frontendcareit_v4/eslint.config.mjs b/frontendcareit_v4/eslint.config.mjs new file mode 100644 index 0000000..05e726d --- /dev/null +++ b/frontendcareit_v4/eslint.config.mjs @@ -0,0 +1,18 @@ +import { defineConfig, globalIgnores } from "eslint/config"; +import nextVitals from "eslint-config-next/core-web-vitals"; +import nextTs from "eslint-config-next/typescript"; + +const eslintConfig = defineConfig([ + ...nextVitals, + ...nextTs, + // Override default ignores of eslint-config-next. + globalIgnores([ + // Default ignores of eslint-config-next: + ".next/**", + "out/**", + "build/**", + "next-env.d.ts", + ]), +]); + +export default eslintConfig; diff --git a/frontendcareit_v4/fix_inacbg_plan.md b/frontendcareit_v4/fix_inacbg_plan.md new file mode 100644 index 0000000..faae552 --- /dev/null +++ b/frontendcareit_v4/fix_inacbg_plan.md @@ -0,0 +1,27 @@ +Feature: Fix INACBG Total Claim Calculation + +Problem: +When a user adds a new INACBG code, the total claim amount does not increase as expected. Instead, it seems to reset or absorb the new code's value into the base offset. This happens because the Base Offset calculation logic uses the *current* list of selected codes (which includes the new code) to calculate the offset from the *original* total. +Formula used: Offset = OriginalTotal - Sum(CurrentCodes) +If user adds code: Offset = Original - (Old + New) +Final Total = Offset + (Old + New) = Original. + +Solution: +We must distinguish between "Original Codes" (loaded from DB) and "Current Codes" (live state). +The Base Offset should strictly be: +BaseOffset = OriginalTotal - Sum(OriginalCodes) + +Steps: +1. Add `initialLoadedCodes` state to `INACBG_Admin_Ruangan.tsx`. +2. Populate checking `initialLoadedCodes` in `loadBillingAktifHistory` when data is loaded from DB. +3. Update `useEffect` calculation logic to validly calculate Base Offset using `initialLoadedCodes` instead of `selectedInacbgCodes` during initialization. +4. Ensure `baseKlaimOffset` is calculated only once. + +Refined Logic: +- If `!hasInitializedBaseRef.current`: + - Calculate `Sum(InitialCodes)`. + - `Offset = OriginalTotal - Sum(InitialCodes)`. + - Set `BaseOffset`. + - Mark initialized. +- Always: + - `FinalTotal = BaseOffset + Sum(CurrentCodes)`. diff --git a/frontendcareit_v4/forge.config.js b/frontendcareit_v4/forge.config.js new file mode 100644 index 0000000..ef75274 --- /dev/null +++ b/frontendcareit_v4/forge.config.js @@ -0,0 +1,74 @@ +const { FusesPlugin } = require('@electron-forge/plugin-fuses'); +const { FuseV1Options, FuseVersion } = require('@electron/fuses'); +const path = require('path'); +const fs = require('fs'); + +// Helper function untuk check file icon +const getIconPath = (iconName, extension = 'ico') => { + const iconPath = path.join(__dirname, 'public', 'assets', `${iconName}.${extension}`); + return fs.existsSync(iconPath) ? iconPath : null; +}; + +// Icon untuk aplikasi (Windows: .ico, macOS: .icns, Linux: .png) +const appIcon = getIconPath('LOGOCOBA', 'ico') || getIconPath('LOGO_CAREIT', 'ico'); + +module.exports = { + packagerConfig: { + asar: { + unpack: "out/**/*", // Unpack folder out dari asar agar static files bisa diakses + }, + // Copy folder out ke resources directory agar bisa diakses saat runtime + // Format: array of strings (relative path dari project root) + extraResource: [ + './out', + ], + name: 'CareIt', + executableName: 'CareIt', + ...(appIcon && { icon: appIcon }), // Hanya set icon jika file ada + }, + rebuildConfig: {}, + makers: [ + { + name: '@electron-forge/maker-squirrel', + config: { + name: 'CareIt', + authors: 'CareIt Development Team', + description: 'CareIt - Aplikasi Billing dan Manajemen Rumah Sakit', + // Setup icon untuk installer Windows (.ico file) + // Hanya set jika file .ico ada dan valid + ...(getIconPath('LOGOCOBA', 'ico') && { + setupIcon: getIconPath('LOGOCOBA', 'ico') + }), + }, + }, + { + name: '@electron-forge/maker-zip', + platforms: ['darwin'], + }, + { + name: '@electron-forge/maker-deb', + config: {}, + }, + { + name: '@electron-forge/maker-rpm', + config: {}, + }, + ], + plugins: [ + { + name: '@electron-forge/plugin-auto-unpack-natives', + config: {}, + }, + // Fuses are used to enable/disable various Electron functionality + // at package time, before code signing the application + new FusesPlugin({ + version: FuseVersion.V1, + [FuseV1Options.RunAsNode]: false, + [FuseV1Options.EnableCookieEncryption]: true, + [FuseV1Options.EnableNodeOptionsEnvironmentVariable]: false, + [FuseV1Options.EnableNodeCliInspectArguments]: false, + [FuseV1Options.EnableEmbeddedAsarIntegrityValidation]: true, + [FuseV1Options.OnlyLoadAppFromAsar]: true, + }), + ], +}; diff --git a/frontendcareit_v4/forge.config.no-icon.js b/frontendcareit_v4/forge.config.no-icon.js new file mode 100644 index 0000000..cb800c7 --- /dev/null +++ b/frontendcareit_v4/forge.config.no-icon.js @@ -0,0 +1,54 @@ +// Backup config tanpa icon - gunakan jika ada masalah dengan icon +const { FusesPlugin } = require('@electron-forge/plugin-fuses'); +const { FuseV1Options, FuseVersion } = require('@electron/fuses'); + +module.exports = { + packagerConfig: { + asar: true, + name: 'CareIt', + executableName: 'CareIt', + // Icon dihapus untuk menghindari error + }, + rebuildConfig: {}, + makers: [ + { + name: '@electron-forge/maker-squirrel', + config: { + name: 'CareIt', + authors: 'CareIt Development Team', + description: 'CareIt - Aplikasi Billing dan Manajemen Rumah Sakit', + // setupIcon dihapus untuk menghindari error + }, + }, + { + name: '@electron-forge/maker-zip', + platforms: ['darwin'], + }, + { + name: '@electron-forge/maker-deb', + config: {}, + }, + { + name: '@electron-forge/maker-rpm', + config: {}, + }, + ], + plugins: [ + { + name: '@electron-forge/plugin-auto-unpack-natives', + config: {}, + }, + new FusesPlugin({ + version: FuseVersion.V1, + [FuseV1Options.RunAsNode]: false, + [FuseV1Options.EnableCookieEncryption]: true, + [FuseV1Options.EnableNodeOptionsEnvironmentVariable]: false, + [FuseV1Options.EnableNodeCliInspectArguments]: false, + [FuseV1Options.EnableEmbeddedAsarIntegrityValidation]: true, + [FuseV1Options.OnlyLoadAppFromAsar]: true, + }), + ], +}; + + + diff --git a/frontendcareit_v4/next.config.mjs b/frontendcareit_v4/next.config.mjs new file mode 100644 index 0000000..8186bf4 --- /dev/null +++ b/frontendcareit_v4/next.config.mjs @@ -0,0 +1,12 @@ +/** @type {import('next').NextConfig} */ +const nextConfig = { + reactStrictMode: true, + images: { + unoptimized: true, + }, + output: 'export', + trailingSlash: false, + assetPrefix: process.env.NEXT_EXPORT === 'true' ? './' : undefined, +}; + +export default nextConfig; diff --git a/frontendcareit_v4/package-lock.json b/frontendcareit_v4/package-lock.json new file mode 100644 index 0000000..1305ffd --- /dev/null +++ b/frontendcareit_v4/package-lock.json @@ -0,0 +1,11501 @@ +{ + "name": "care_it", + "version": "0.1.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "care_it", + "version": "0.1.0", + "dependencies": { + "@capacitor/android": "^8.0.0", + "@capacitor/core": "^8.0.0", + "@capacitor/ios": "^8.0.0", + "baseline-browser-mapping": "^2.9.8", + "browserslist": "^4.28.1", + "lucide-react": "^0.555.0", + "next": "16.0.5", + "react": "19.2.0", + "react-dom": "19.2.0", + "react-icons": "^5.5.0" + }, + "devDependencies": { + "@capacitor/cli": "^8.0.0", + "@tailwindcss/postcss": "^4", + "@types/node": "^20", + "@types/react": "^19", + "@types/react-dom": "^19", + "@vercel/speed-insights": "^1.3.1", + "babel-plugin-react-compiler": "1.0.0", + "cross-env": "^7.0.3", + "electron": "^28.1.0", + "electron-builder": "^26.0.12", + "eslint": "^9", + "eslint-config-next": "16.0.5", + "tailwindcss": "^4", + "typescript": "^5" + } + }, + "node_modules/@alloc/quick-lru": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz", + "integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@babel/code-frame": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.27.1.tgz", + "integrity": "sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-validator-identifier": "^7.27.1", + "js-tokens": "^4.0.0", + "picocolors": "^1.1.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/compat-data": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.28.5.tgz", + "integrity": "sha512-6uFXyCayocRbqhZOB+6XcuZbkMNimwfVGFji8CTZnCzOHVGvDqzvitu1re2AU5LROliz7eQPhB8CpAMvnx9EjA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/core": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.28.5.tgz", + "integrity": "sha512-e7jT4DxYvIDLk1ZHmU/m/mB19rex9sv0c2ftBtjSBv+kVM/902eh0fINUzD7UwLLNR+jU585GxUJ8/EBfAM5fw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.27.1", + "@babel/generator": "^7.28.5", + "@babel/helper-compilation-targets": "^7.27.2", + "@babel/helper-module-transforms": "^7.28.3", + "@babel/helpers": "^7.28.4", + "@babel/parser": "^7.28.5", + "@babel/template": "^7.27.2", + "@babel/traverse": "^7.28.5", + "@babel/types": "^7.28.5", + "@jridgewell/remapping": "^2.3.5", + "convert-source-map": "^2.0.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.3", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/@babel/generator": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.28.5.tgz", + "integrity": "sha512-3EwLFhZ38J4VyIP6WNtt2kUdW9dokXA9Cr4IVIFHuCpZ3H8/YFOl5JjZHisrn1fATPBmKKqXzDFvh9fUwHz6CQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.28.5", + "@babel/types": "^7.28.5", + "@jridgewell/gen-mapping": "^0.3.12", + "@jridgewell/trace-mapping": "^0.3.28", + "jsesc": "^3.0.2" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-compilation-targets": { + "version": "7.27.2", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.27.2.tgz", + "integrity": "sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/compat-data": "^7.27.2", + "@babel/helper-validator-option": "^7.27.1", + "browserslist": "^4.24.0", + "lru-cache": "^5.1.1", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-globals": { + "version": "7.28.0", + "resolved": "https://registry.npmjs.org/@babel/helper-globals/-/helper-globals-7.28.0.tgz", + "integrity": "sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-imports": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.27.1.tgz", + "integrity": "sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/traverse": "^7.27.1", + "@babel/types": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-transforms": { + "version": "7.28.3", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.28.3.tgz", + "integrity": "sha512-gytXUbs8k2sXS9PnQptz5o0QnpLL51SwASIORY6XaBKF88nsOT0Zw9szLqlSGQDP/4TljBAD5y98p2U1fqkdsw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-module-imports": "^7.27.1", + "@babel/helper-validator-identifier": "^7.27.1", + "@babel/traverse": "^7.28.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-string-parser": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz", + "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==", + "devOptional": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz", + "integrity": "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==", + "devOptional": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-option": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz", + "integrity": "sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helpers": { + "version": "7.28.4", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.28.4.tgz", + "integrity": "sha512-HFN59MmQXGHVyYadKLVumYsA9dBFun/ldYxipEjzA4196jpLZd8UjEEBLkbEkvfYreDqJhZxYAWFPtrfhNpj4w==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/template": "^7.27.2", + "@babel/types": "^7.28.4" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/parser": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.28.5.tgz", + "integrity": "sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.28.5" + }, + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/template": { + "version": "7.27.2", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.27.2.tgz", + "integrity": "sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.27.1", + "@babel/parser": "^7.27.2", + "@babel/types": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.28.5.tgz", + "integrity": "sha512-TCCj4t55U90khlYkVV/0TfkJkAkUg3jZFA3Neb7unZT8CPok7iiRfaX0F+WnqWqt7OxhOn0uBKXCw4lbL8W0aQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.27.1", + "@babel/generator": "^7.28.5", + "@babel/helper-globals": "^7.28.0", + "@babel/parser": "^7.28.5", + "@babel/template": "^7.27.2", + "@babel/types": "^7.28.5", + "debug": "^4.3.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/types": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.28.5.tgz", + "integrity": "sha512-qQ5m48eI/MFLQ5PxQj4PFaprjyCTLI37ElWMmNs0K8Lk3dVeOdNpB3ks8jc7yM5CDmVC73eMVk/trk3fgmrUpA==", + "devOptional": true, + "license": "MIT", + "dependencies": { + "@babel/helper-string-parser": "^7.27.1", + "@babel/helper-validator-identifier": "^7.28.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@capacitor/android": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/@capacitor/android/-/android-8.0.0.tgz", + "integrity": "sha512-FrBSvVAC5JuLaYHNyDnwQny0/SYnP+xDQbc/KA4wInmRkMXLDv22fkx9aBJIDrxjuUVd+jsRih4SAt8FgMEzCw==", + "license": "MIT", + "peerDependencies": { + "@capacitor/core": "^8.0.0" + } + }, + "node_modules/@capacitor/cli": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/@capacitor/cli/-/cli-8.0.0.tgz", + "integrity": "sha512-v9hEBi69xGxuuZhg55N031bMEenKaPSv71Il8C22VOOH6surDyv/MPeImN0oVfFc7eiklaW3rDFYVz6cmXfJWQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@ionic/cli-framework-output": "^2.2.8", + "@ionic/utils-subprocess": "^3.0.1", + "@ionic/utils-terminal": "^2.3.5", + "commander": "^12.1.0", + "debug": "^4.4.0", + "env-paths": "^2.2.0", + "fs-extra": "^11.2.0", + "kleur": "^4.1.5", + "native-run": "^2.0.1", + "open": "^8.4.0", + "plist": "^3.1.0", + "prompts": "^2.4.2", + "rimraf": "^6.0.1", + "semver": "^7.6.3", + "tar": "^6.1.11", + "tslib": "^2.8.1", + "xml2js": "^0.6.2" + }, + "bin": { + "cap": "bin/capacitor", + "capacitor": "bin/capacitor" + }, + "engines": { + "node": ">=22.0.0" + } + }, + "node_modules/@capacitor/cli/node_modules/semver": { + "version": "7.7.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz", + "integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@capacitor/core": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/@capacitor/core/-/core-8.0.0.tgz", + "integrity": "sha512-250HTVd/W/KdMygoqaedisvNbHbpbQTN2Hy/8ZYGm1nAqE0Fx7sGss4l0nDg33STxEdDhtVRoL2fIaaiukKseA==", + "license": "MIT", + "dependencies": { + "tslib": "^2.1.0" + } + }, + "node_modules/@capacitor/ios": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/@capacitor/ios/-/ios-8.0.0.tgz", + "integrity": "sha512-gwSn6X4uHYNHlM8zZmVmM1zjEhexxbHpPSSnH1DZkp8o3zdK/RmH8tmDma+3zPZrhhTSrMC7sT24dKTOvV8www==", + "license": "MIT", + "peerDependencies": { + "@capacitor/core": "^8.0.0" + } + }, + "node_modules/@develar/schema-utils": { + "version": "2.6.5", + "resolved": "https://registry.npmjs.org/@develar/schema-utils/-/schema-utils-2.6.5.tgz", + "integrity": "sha512-0cp4PsWQ/9avqTVMCtZ+GirikIA36ikvjtHweU4/j8yLtgObI0+JUPhYFScgwlteveGB1rt3Cm8UhN04XayDig==", + "dev": true, + "license": "MIT", + "dependencies": { + "ajv": "^6.12.0", + "ajv-keywords": "^3.4.1" + }, + "engines": { + "node": ">= 8.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/@electron/asar": { + "version": "3.2.18", + "resolved": "https://registry.npmjs.org/@electron/asar/-/asar-3.2.18.tgz", + "integrity": "sha512-2XyvMe3N3Nrs8cV39IKELRHTYUWFKrmqqSY1U+GMlc0jvqjIVnoxhNd2H4JolWQncbJi1DCvb5TNxZuI2fEjWg==", + "dev": true, + "license": "MIT", + "dependencies": { + "commander": "^5.0.0", + "glob": "^7.1.6", + "minimatch": "^3.0.4" + }, + "bin": { + "asar": "bin/asar.js" + }, + "engines": { + "node": ">=10.12.0" + } + }, + "node_modules/@electron/asar/node_modules/commander": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-5.1.0.tgz", + "integrity": "sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 6" + } + }, + "node_modules/@electron/asar/node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "deprecated": "Glob versions prior to v9 are no longer supported", + "dev": true, + "license": "ISC", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@electron/fuses": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/@electron/fuses/-/fuses-1.8.0.tgz", + "integrity": "sha512-zx0EIq78WlY/lBb1uXlziZmDZI4ubcCXIMJ4uGjXzZW0nS19TjSPeXPAjzzTmKQlJUZm0SbmZhPKP7tuQ1SsEw==", + "dev": true, + "license": "MIT", + "dependencies": { + "chalk": "^4.1.1", + "fs-extra": "^9.0.1", + "minimist": "^1.2.5" + }, + "bin": { + "electron-fuses": "dist/bin.js" + } + }, + "node_modules/@electron/fuses/node_modules/fs-extra": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", + "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@electron/get": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@electron/get/-/get-2.0.3.tgz", + "integrity": "sha512-Qkzpg2s9GnVV2I2BjRksUi43U5e6+zaQMcjoJy0C+C5oxaKl+fmckGDQFtRpZpZV0NQekuZZ+tGz7EA9TVnQtQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "debug": "^4.1.1", + "env-paths": "^2.2.0", + "fs-extra": "^8.1.0", + "got": "^11.8.5", + "progress": "^2.0.3", + "semver": "^6.2.0", + "sumchecker": "^3.0.1" + }, + "engines": { + "node": ">=12" + }, + "optionalDependencies": { + "global-agent": "^3.0.0" + } + }, + "node_modules/@electron/get/node_modules/fs-extra": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", + "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", + "dev": true, + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + }, + "engines": { + "node": ">=6 <7 || >=8" + } + }, + "node_modules/@electron/get/node_modules/jsonfile": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", + "integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==", + "dev": true, + "license": "MIT", + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/@electron/get/node_modules/universalify": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/@electron/node-gyp": { + "version": "10.2.0-electron.1", + "resolved": "git+ssh://git@github.com/electron/node-gyp.git#06b29aafb7708acef8b3669835c8a7857ebc92d2", + "integrity": "sha512-4MSBTT8y07YUDqf69/vSh80Hh791epYqGtWHO3zSKhYFwQg+gx9wi1PqbqP6YqC4WMsNxZ5l9oDmnWdK5pfCKQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "env-paths": "^2.2.0", + "exponential-backoff": "^3.1.1", + "glob": "^8.1.0", + "graceful-fs": "^4.2.6", + "make-fetch-happen": "^10.2.1", + "nopt": "^6.0.0", + "proc-log": "^2.0.1", + "semver": "^7.3.5", + "tar": "^6.2.1", + "which": "^2.0.2" + }, + "bin": { + "node-gyp": "bin/node-gyp.js" + }, + "engines": { + "node": ">=12.13.0" + } + }, + "node_modules/@electron/node-gyp/node_modules/brace-expansion": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz", + "integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/@electron/node-gyp/node_modules/glob": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz", + "integrity": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==", + "deprecated": "Glob versions prior to v9 are no longer supported", + "dev": true, + "license": "ISC", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^5.0.1", + "once": "^1.3.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@electron/node-gyp/node_modules/minimatch": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", + "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@electron/node-gyp/node_modules/semver": { + "version": "7.7.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz", + "integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@electron/notarize": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@electron/notarize/-/notarize-2.5.0.tgz", + "integrity": "sha512-jNT8nwH1f9X5GEITXaQ8IF/KdskvIkOFfB2CvwumsveVidzpSc+mvhhTMdAGSYF3O+Nq49lJ7y+ssODRXu06+A==", + "dev": true, + "license": "MIT", + "dependencies": { + "debug": "^4.1.1", + "fs-extra": "^9.0.1", + "promise-retry": "^2.0.1" + }, + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/@electron/notarize/node_modules/fs-extra": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", + "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@electron/osx-sign": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/@electron/osx-sign/-/osx-sign-1.3.1.tgz", + "integrity": "sha512-BAfviURMHpmb1Yb50YbCxnOY0wfwaLXH5KJ4+80zS0gUkzDX3ec23naTlEqKsN+PwYn+a1cCzM7BJ4Wcd3sGzw==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "compare-version": "^0.1.2", + "debug": "^4.3.4", + "fs-extra": "^10.0.0", + "isbinaryfile": "^4.0.8", + "minimist": "^1.2.6", + "plist": "^3.0.5" + }, + "bin": { + "electron-osx-flat": "bin/electron-osx-flat.js", + "electron-osx-sign": "bin/electron-osx-sign.js" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/@electron/osx-sign/node_modules/fs-extra": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", + "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@electron/osx-sign/node_modules/isbinaryfile": { + "version": "4.0.10", + "resolved": "https://registry.npmjs.org/isbinaryfile/-/isbinaryfile-4.0.10.tgz", + "integrity": "sha512-iHrqe5shvBUcFbmZq9zOQHBoeOhZJu6RQGrDpBgenUm/Am+F3JM2MgQj+rK3Z601fzrL5gLZWtAPH2OBaSVcyw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 8.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/gjtorikian/" + } + }, + "node_modules/@electron/rebuild": { + "version": "3.7.0", + "resolved": "https://registry.npmjs.org/@electron/rebuild/-/rebuild-3.7.0.tgz", + "integrity": "sha512-VW++CNSlZwMYP7MyXEbrKjpzEwhB5kDNbzGtiPEjwYysqyTCF+YbNJ210Dj3AjWsGSV4iEEwNkmJN9yGZmVvmw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@electron/node-gyp": "git+https://github.com/electron/node-gyp.git#06b29aafb7708acef8b3669835c8a7857ebc92d2", + "@malept/cross-spawn-promise": "^2.0.0", + "chalk": "^4.0.0", + "debug": "^4.1.1", + "detect-libc": "^2.0.1", + "fs-extra": "^10.0.0", + "got": "^11.7.0", + "node-abi": "^3.45.0", + "node-api-version": "^0.2.0", + "ora": "^5.1.0", + "read-binary-file-arch": "^1.0.6", + "semver": "^7.3.5", + "tar": "^6.0.5", + "yargs": "^17.0.1" + }, + "bin": { + "electron-rebuild": "lib/cli.js" + }, + "engines": { + "node": ">=12.13.0" + } + }, + "node_modules/@electron/rebuild/node_modules/fs-extra": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", + "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@electron/rebuild/node_modules/semver": { + "version": "7.7.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz", + "integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@electron/universal": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@electron/universal/-/universal-2.0.1.tgz", + "integrity": "sha512-fKpv9kg4SPmt+hY7SVBnIYULE9QJl8L3sCfcBsnqbJwwBwAeTLokJ9TRt9y7bK0JAzIW2y78TVVjvnQEms/yyA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@electron/asar": "^3.2.7", + "@malept/cross-spawn-promise": "^2.0.0", + "debug": "^4.3.1", + "dir-compare": "^4.2.0", + "fs-extra": "^11.1.1", + "minimatch": "^9.0.3", + "plist": "^3.1.0" + }, + "engines": { + "node": ">=16.4" + } + }, + "node_modules/@electron/universal/node_modules/brace-expansion": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz", + "integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/@electron/universal/node_modules/minimatch": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@electron/windows-sign": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/@electron/windows-sign/-/windows-sign-1.2.2.tgz", + "integrity": "sha512-dfZeox66AvdPtb2lD8OsIIQh12Tp0GNCRUDfBHIKGpbmopZto2/A8nSpYYLoedPIHpqkeblZ/k8OV0Gy7PYuyQ==", + "dev": true, + "license": "BSD-2-Clause", + "optional": true, + "peer": true, + "dependencies": { + "cross-dirname": "^0.1.0", + "debug": "^4.3.4", + "fs-extra": "^11.1.1", + "minimist": "^1.2.8", + "postject": "^1.0.0-alpha.6" + }, + "bin": { + "electron-windows-sign": "bin/electron-windows-sign.js" + }, + "engines": { + "node": ">=14.14" + } + }, + "node_modules/@emnapi/core": { + "version": "1.7.1", + "resolved": "https://registry.npmjs.org/@emnapi/core/-/core-1.7.1.tgz", + "integrity": "sha512-o1uhUASyo921r2XtHYOHy7gdkGLge8ghBEQHMWmyJFoXlpU58kIrhhN3w26lpQb6dspetweapMn2CSNwQ8I4wg==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "@emnapi/wasi-threads": "1.1.0", + "tslib": "^2.4.0" + } + }, + "node_modules/@emnapi/runtime": { + "version": "1.7.1", + "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.7.1.tgz", + "integrity": "sha512-PVtJr5CmLwYAU9PZDMITZoR5iAOShYREoR45EyyLrbntV50mdePTgUn4AmOw90Ifcj+x2kRjdzr1HP3RrNiHGA==", + "license": "MIT", + "optional": true, + "dependencies": { + "tslib": "^2.4.0" + } + }, + "node_modules/@emnapi/wasi-threads": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@emnapi/wasi-threads/-/wasi-threads-1.1.0.tgz", + "integrity": "sha512-WI0DdZ8xFSbgMjR1sFsKABJ/C5OnRrjT06JXbZKexJGrDuPTzZdDYfFlsgcCXCyf+suG5QU2e/y1Wo2V/OapLQ==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "tslib": "^2.4.0" + } + }, + "node_modules/@eslint-community/eslint-utils": { + "version": "4.9.0", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.9.0.tgz", + "integrity": "sha512-ayVFHdtZ+hsq1t2Dy24wCmGXGe4q9Gu3smhLYALJrr473ZH27MsnSL+LKUlimp4BWJqMDMLmPpx/Q9R3OAlL4g==", + "dev": true, + "license": "MIT", + "dependencies": { + "eslint-visitor-keys": "^3.4.3" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" + } + }, + "node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@eslint-community/regexpp": { + "version": "4.12.2", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.2.tgz", + "integrity": "sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^12.0.0 || ^14.0.0 || >=16.0.0" + } + }, + "node_modules/@eslint/config-array": { + "version": "0.21.1", + "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.21.1.tgz", + "integrity": "sha512-aw1gNayWpdI/jSYVgzN5pL0cfzU02GT3NBpeT/DXbx1/1x7ZKxFPd9bwrzygx/qiwIQiJ1sw/zD8qY/kRvlGHA==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@eslint/object-schema": "^2.1.7", + "debug": "^4.3.1", + "minimatch": "^3.1.2" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/config-helpers": { + "version": "0.4.2", + "resolved": "https://registry.npmjs.org/@eslint/config-helpers/-/config-helpers-0.4.2.tgz", + "integrity": "sha512-gBrxN88gOIf3R7ja5K9slwNayVcZgK6SOUORm2uBzTeIEfeVaIhOpCtTox3P6R7o2jLFwLFTLnC7kU/RGcYEgw==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@eslint/core": "^0.17.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/core": { + "version": "0.17.0", + "resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.17.0.tgz", + "integrity": "sha512-yL/sLrpmtDaFEiUj1osRP4TI2MDz1AddJL+jZ7KSqvBuliN4xqYY54IfdN8qD8Toa6g1iloph1fxQNkjOxrrpQ==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@types/json-schema": "^7.0.15" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/eslintrc": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.3.3.tgz", + "integrity": "sha512-Kr+LPIUVKz2qkx1HAMH8q1q6azbqBAsXJUxBl/ODDuVPX45Z9DfwB8tPjTi6nNZ8BuM3nbJxC5zCAg5elnBUTQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ajv": "^6.12.4", + "debug": "^4.3.2", + "espree": "^10.0.1", + "globals": "^14.0.0", + "ignore": "^5.2.0", + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.1", + "minimatch": "^3.1.2", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@eslint/js": { + "version": "9.39.1", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.39.1.tgz", + "integrity": "sha512-S26Stp4zCy88tH94QbBv3XCuzRQiZ9yXofEILmglYTh/Ug/a9/umqvgFtYBAo3Lp0nsI/5/qH1CCrbdK3AP1Tw==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://eslint.org/donate" + } + }, + "node_modules/@eslint/object-schema": { + "version": "2.1.7", + "resolved": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-2.1.7.tgz", + "integrity": "sha512-VtAOaymWVfZcmZbp6E2mympDIHvyjXs/12LqWYjVw6qjrfF+VK+fyG33kChz3nnK+SU5/NeHOqrTEHS8sXO3OA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/plugin-kit": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.4.1.tgz", + "integrity": "sha512-43/qtrDUokr7LJqoF2c3+RInu/t4zfrpYdoSDfYyhg52rwLV6TnOvdG4fXm7IkSB3wErkcmJS9iEhjVtOSEjjA==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@eslint/core": "^0.17.0", + "levn": "^0.4.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@gar/promisify": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/@gar/promisify/-/promisify-1.1.3.tgz", + "integrity": "sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==", + "dev": true, + "license": "MIT" + }, + "node_modules/@humanfs/core": { + "version": "0.19.1", + "resolved": "https://registry.npmjs.org/@humanfs/core/-/core-0.19.1.tgz", + "integrity": "sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=18.18.0" + } + }, + "node_modules/@humanfs/node": { + "version": "0.16.7", + "resolved": "https://registry.npmjs.org/@humanfs/node/-/node-0.16.7.tgz", + "integrity": "sha512-/zUx+yOsIrG4Y43Eh2peDeKCxlRt/gET6aHfaKpuq267qXdYDFViVHfMaLyygZOnl0kGWxFIgsBy8QFuTLUXEQ==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@humanfs/core": "^0.19.1", + "@humanwhocodes/retry": "^0.4.0" + }, + "engines": { + "node": ">=18.18.0" + } + }, + "node_modules/@humanwhocodes/module-importer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=12.22" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@humanwhocodes/retry": { + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.4.3.tgz", + "integrity": "sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=18.18" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@img/colour": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@img/colour/-/colour-1.0.0.tgz", + "integrity": "sha512-A5P/LfWGFSl6nsckYtjw9da+19jB8hkJ6ACTGcDfEJ0aE+l2n2El7dsVM7UVHZQ9s2lmYMWlrS21YLy2IR1LUw==", + "license": "MIT", + "optional": true, + "engines": { + "node": ">=18" + } + }, + "node_modules/@img/sharp-darwin-arm64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-darwin-arm64/-/sharp-darwin-arm64-0.34.5.tgz", + "integrity": "sha512-imtQ3WMJXbMY4fxb/Ndp6HBTNVtWCUI0WdobyheGf5+ad6xX8VIDO8u2xE4qc/fr08CKG/7dDseFtn6M6g/r3w==", + "cpu": [ + "arm64" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-darwin-arm64": "1.2.4" + } + }, + "node_modules/@img/sharp-darwin-x64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-darwin-x64/-/sharp-darwin-x64-0.34.5.tgz", + "integrity": "sha512-YNEFAF/4KQ/PeW0N+r+aVVsoIY0/qxxikF2SWdp+NRkmMB7y9LBZAVqQ4yhGCm/H3H270OSykqmQMKLBhBJDEw==", + "cpu": [ + "x64" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-darwin-x64": "1.2.4" + } + }, + "node_modules/@img/sharp-libvips-darwin-arm64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-arm64/-/sharp-libvips-darwin-arm64-1.2.4.tgz", + "integrity": "sha512-zqjjo7RatFfFoP0MkQ51jfuFZBnVE2pRiaydKJ1G/rHZvnsrHAOcQALIi9sA5co5xenQdTugCvtb1cuf78Vf4g==", + "cpu": [ + "arm64" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "darwin" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-darwin-x64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-x64/-/sharp-libvips-darwin-x64-1.2.4.tgz", + "integrity": "sha512-1IOd5xfVhlGwX+zXv2N93k0yMONvUlANylbJw1eTah8K/Jtpi15KC+WSiaX/nBmbm2HxRM1gZ0nSdjSsrZbGKg==", + "cpu": [ + "x64" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "darwin" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linux-arm": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm/-/sharp-libvips-linux-arm-1.2.4.tgz", + "integrity": "sha512-bFI7xcKFELdiNCVov8e44Ia4u2byA+l3XtsAj+Q8tfCwO6BQ8iDojYdvoPMqsKDkuoOo+X6HZA0s0q11ANMQ8A==", + "cpu": [ + "arm" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linux-arm64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm64/-/sharp-libvips-linux-arm64-1.2.4.tgz", + "integrity": "sha512-excjX8DfsIcJ10x1Kzr4RcWe1edC9PquDRRPx3YVCvQv+U5p7Yin2s32ftzikXojb1PIFc/9Mt28/y+iRklkrw==", + "cpu": [ + "arm64" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linux-ppc64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-ppc64/-/sharp-libvips-linux-ppc64-1.2.4.tgz", + "integrity": "sha512-FMuvGijLDYG6lW+b/UvyilUWu5Ayu+3r2d1S8notiGCIyYU/76eig1UfMmkZ7vwgOrzKzlQbFSuQfgm7GYUPpA==", + "cpu": [ + "ppc64" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linux-riscv64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-riscv64/-/sharp-libvips-linux-riscv64-1.2.4.tgz", + "integrity": "sha512-oVDbcR4zUC0ce82teubSm+x6ETixtKZBh/qbREIOcI3cULzDyb18Sr/Wcyx7NRQeQzOiHTNbZFF1UwPS2scyGA==", + "cpu": [ + "riscv64" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linux-s390x": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-s390x/-/sharp-libvips-linux-s390x-1.2.4.tgz", + "integrity": "sha512-qmp9VrzgPgMoGZyPvrQHqk02uyjA0/QrTO26Tqk6l4ZV0MPWIW6LTkqOIov+J1yEu7MbFQaDpwdwJKhbJvuRxQ==", + "cpu": [ + "s390x" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linux-x64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-x64/-/sharp-libvips-linux-x64-1.2.4.tgz", + "integrity": "sha512-tJxiiLsmHc9Ax1bz3oaOYBURTXGIRDODBqhveVHonrHJ9/+k89qbLl0bcJns+e4t4rvaNBxaEZsFtSfAdquPrw==", + "cpu": [ + "x64" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linuxmusl-arm64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-arm64/-/sharp-libvips-linuxmusl-arm64-1.2.4.tgz", + "integrity": "sha512-FVQHuwx1IIuNow9QAbYUzJ+En8KcVm9Lk5+uGUQJHaZmMECZmOlix9HnH7n1TRkXMS0pGxIJokIVB9SuqZGGXw==", + "cpu": [ + "arm64" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linuxmusl-x64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-x64/-/sharp-libvips-linuxmusl-x64-1.2.4.tgz", + "integrity": "sha512-+LpyBk7L44ZIXwz/VYfglaX/okxezESc6UxDSoyo2Ks6Jxc4Y7sGjpgU9s4PMgqgjj1gZCylTieNamqA1MF7Dg==", + "cpu": [ + "x64" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-linux-arm": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm/-/sharp-linux-arm-0.34.5.tgz", + "integrity": "sha512-9dLqsvwtg1uuXBGZKsxem9595+ujv0sJ6Vi8wcTANSFpwV/GONat5eCkzQo/1O6zRIkh0m/8+5BjrRr7jDUSZw==", + "cpu": [ + "arm" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-arm": "1.2.4" + } + }, + "node_modules/@img/sharp-linux-arm64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm64/-/sharp-linux-arm64-0.34.5.tgz", + "integrity": "sha512-bKQzaJRY/bkPOXyKx5EVup7qkaojECG6NLYswgktOZjaXecSAeCWiZwwiFf3/Y+O1HrauiE3FVsGxFg8c24rZg==", + "cpu": [ + "arm64" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-arm64": "1.2.4" + } + }, + "node_modules/@img/sharp-linux-ppc64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-ppc64/-/sharp-linux-ppc64-0.34.5.tgz", + "integrity": "sha512-7zznwNaqW6YtsfrGGDA6BRkISKAAE1Jo0QdpNYXNMHu2+0dTrPflTLNkpc8l7MUP5M16ZJcUvysVWWrMefZquA==", + "cpu": [ + "ppc64" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-ppc64": "1.2.4" + } + }, + "node_modules/@img/sharp-linux-riscv64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-riscv64/-/sharp-linux-riscv64-0.34.5.tgz", + "integrity": "sha512-51gJuLPTKa7piYPaVs8GmByo7/U7/7TZOq+cnXJIHZKavIRHAP77e3N2HEl3dgiqdD/w0yUfiJnII77PuDDFdw==", + "cpu": [ + "riscv64" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-riscv64": "1.2.4" + } + }, + "node_modules/@img/sharp-linux-s390x": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-s390x/-/sharp-linux-s390x-0.34.5.tgz", + "integrity": "sha512-nQtCk0PdKfho3eC5MrbQoigJ2gd1CgddUMkabUj+rBevs8tZ2cULOx46E7oyX+04WGfABgIwmMC0VqieTiR4jg==", + "cpu": [ + "s390x" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-s390x": "1.2.4" + } + }, + "node_modules/@img/sharp-linux-x64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-x64/-/sharp-linux-x64-0.34.5.tgz", + "integrity": "sha512-MEzd8HPKxVxVenwAa+JRPwEC7QFjoPWuS5NZnBt6B3pu7EG2Ge0id1oLHZpPJdn3OQK+BQDiw9zStiHBTJQQQQ==", + "cpu": [ + "x64" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-x64": "1.2.4" + } + }, + "node_modules/@img/sharp-linuxmusl-arm64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-arm64/-/sharp-linuxmusl-arm64-0.34.5.tgz", + "integrity": "sha512-fprJR6GtRsMt6Kyfq44IsChVZeGN97gTD331weR1ex1c1rypDEABN6Tm2xa1wE6lYb5DdEnk03NZPqA7Id21yg==", + "cpu": [ + "arm64" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linuxmusl-arm64": "1.2.4" + } + }, + "node_modules/@img/sharp-linuxmusl-x64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-x64/-/sharp-linuxmusl-x64-0.34.5.tgz", + "integrity": "sha512-Jg8wNT1MUzIvhBFxViqrEhWDGzqymo3sV7z7ZsaWbZNDLXRJZoRGrjulp60YYtV4wfY8VIKcWidjojlLcWrd8Q==", + "cpu": [ + "x64" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linuxmusl-x64": "1.2.4" + } + }, + "node_modules/@img/sharp-wasm32": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-wasm32/-/sharp-wasm32-0.34.5.tgz", + "integrity": "sha512-OdWTEiVkY2PHwqkbBI8frFxQQFekHaSSkUIJkwzclWZe64O1X4UlUjqqqLaPbUpMOQk6FBu/HtlGXNblIs0huw==", + "cpu": [ + "wasm32" + ], + "license": "Apache-2.0 AND LGPL-3.0-or-later AND MIT", + "optional": true, + "dependencies": { + "@emnapi/runtime": "^1.7.0" + }, + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-win32-arm64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-win32-arm64/-/sharp-win32-arm64-0.34.5.tgz", + "integrity": "sha512-WQ3AgWCWYSb2yt+IG8mnC6Jdk9Whs7O0gxphblsLvdhSpSTtmu69ZG1Gkb6NuvxsNACwiPV6cNSZNzt0KPsw7g==", + "cpu": [ + "arm64" + ], + "license": "Apache-2.0 AND LGPL-3.0-or-later", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-win32-ia32": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-win32-ia32/-/sharp-win32-ia32-0.34.5.tgz", + "integrity": "sha512-FV9m/7NmeCmSHDD5j4+4pNI8Cp3aW+JvLoXcTUo0IqyjSfAZJ8dIUmijx1qaJsIiU+Hosw6xM5KijAWRJCSgNg==", + "cpu": [ + "ia32" + ], + "license": "Apache-2.0 AND LGPL-3.0-or-later", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-win32-x64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-win32-x64/-/sharp-win32-x64-0.34.5.tgz", + "integrity": "sha512-+29YMsqY2/9eFEiW93eqWnuLcWcufowXewwSNIT6UwZdUUCrM3oFjMWH/Z6/TMmb4hlFenmfAVbpWeup2jryCw==", + "cpu": [ + "x64" + ], + "license": "Apache-2.0 AND LGPL-3.0-or-later", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@ionic/cli-framework-output": { + "version": "2.2.8", + "resolved": "https://registry.npmjs.org/@ionic/cli-framework-output/-/cli-framework-output-2.2.8.tgz", + "integrity": "sha512-TshtaFQsovB4NWRBydbNFawql6yul7d5bMiW1WYYf17hd99V6xdDdk3vtF51bw6sLkxON3bDQpWsnUc9/hVo3g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@ionic/utils-terminal": "2.3.5", + "debug": "^4.0.0", + "tslib": "^2.0.1" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@ionic/utils-array": { + "version": "2.1.6", + "resolved": "https://registry.npmjs.org/@ionic/utils-array/-/utils-array-2.1.6.tgz", + "integrity": "sha512-0JZ1Zkp3wURnv8oq6Qt7fMPo5MpjbLoUoa9Bu2Q4PJuSDWM8H8gwF3dQO7VTeUj3/0o1IB1wGkFWZZYgUXZMUg==", + "dev": true, + "license": "MIT", + "dependencies": { + "debug": "^4.0.0", + "tslib": "^2.0.1" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@ionic/utils-fs": { + "version": "3.1.7", + "resolved": "https://registry.npmjs.org/@ionic/utils-fs/-/utils-fs-3.1.7.tgz", + "integrity": "sha512-2EknRvMVfhnyhL1VhFkSLa5gOcycK91VnjfrTB0kbqkTFCOXyXgVLI5whzq7SLrgD9t1aqos3lMMQyVzaQ5gVA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/fs-extra": "^8.0.0", + "debug": "^4.0.0", + "fs-extra": "^9.0.0", + "tslib": "^2.0.1" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@ionic/utils-fs/node_modules/fs-extra": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", + "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@ionic/utils-object": { + "version": "2.1.6", + "resolved": "https://registry.npmjs.org/@ionic/utils-object/-/utils-object-2.1.6.tgz", + "integrity": "sha512-vCl7sl6JjBHFw99CuAqHljYJpcE88YaH2ZW4ELiC/Zwxl5tiwn4kbdP/gxi2OT3MQb1vOtgAmSNRtusvgxI8ww==", + "dev": true, + "license": "MIT", + "dependencies": { + "debug": "^4.0.0", + "tslib": "^2.0.1" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@ionic/utils-process": { + "version": "2.1.12", + "resolved": "https://registry.npmjs.org/@ionic/utils-process/-/utils-process-2.1.12.tgz", + "integrity": "sha512-Jqkgyq7zBs/v/J3YvKtQQiIcxfJyplPgECMWgdO0E1fKrrH8EF0QGHNJ9mJCn6PYe2UtHNS8JJf5G21e09DfYg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@ionic/utils-object": "2.1.6", + "@ionic/utils-terminal": "2.3.5", + "debug": "^4.0.0", + "signal-exit": "^3.0.3", + "tree-kill": "^1.2.2", + "tslib": "^2.0.1" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@ionic/utils-stream": { + "version": "3.1.7", + "resolved": "https://registry.npmjs.org/@ionic/utils-stream/-/utils-stream-3.1.7.tgz", + "integrity": "sha512-eSELBE7NWNFIHTbTC2jiMvh1ABKGIpGdUIvARsNPMNQhxJB3wpwdiVnoBoTYp+5a6UUIww4Kpg7v6S7iTctH1w==", + "dev": true, + "license": "MIT", + "dependencies": { + "debug": "^4.0.0", + "tslib": "^2.0.1" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@ionic/utils-subprocess": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@ionic/utils-subprocess/-/utils-subprocess-3.0.1.tgz", + "integrity": "sha512-cT4te3AQQPeIM9WCwIg8ohroJ8TjsYaMb2G4ZEgv9YzeDqHZ4JpeIKqG2SoaA3GmVQ3sOfhPM6Ox9sxphV/d1A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@ionic/utils-array": "2.1.6", + "@ionic/utils-fs": "3.1.7", + "@ionic/utils-process": "2.1.12", + "@ionic/utils-stream": "3.1.7", + "@ionic/utils-terminal": "2.3.5", + "cross-spawn": "^7.0.3", + "debug": "^4.0.0", + "tslib": "^2.0.1" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@ionic/utils-terminal": { + "version": "2.3.5", + "resolved": "https://registry.npmjs.org/@ionic/utils-terminal/-/utils-terminal-2.3.5.tgz", + "integrity": "sha512-3cKScz9Jx2/Pr9ijj1OzGlBDfcmx7OMVBt4+P1uRR0SSW4cm1/y3Mo4OY3lfkuaYifMNBW8Wz6lQHbs1bihr7A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/slice-ansi": "^4.0.0", + "debug": "^4.0.0", + "signal-exit": "^3.0.3", + "slice-ansi": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0", + "tslib": "^2.0.1", + "untildify": "^4.0.0", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@isaacs/balanced-match": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/@isaacs/balanced-match/-/balanced-match-4.0.1.tgz", + "integrity": "sha512-yzMTt9lEb8Gv7zRioUilSglI0c0smZ9k5D65677DLWLtWJaXIS3CqcGyUFByYKlnUj6TkjLVs54fBl6+TiGQDQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": "20 || >=22" + } + }, + "node_modules/@isaacs/brace-expansion": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@isaacs/brace-expansion/-/brace-expansion-5.0.0.tgz", + "integrity": "sha512-ZT55BDLV0yv0RBm2czMiZ+SqCGO7AvmOM3G/w2xhVPH+te0aKgFjmBvGlL1dH+ql2tgGO3MVrbb3jCKyvpgnxA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@isaacs/balanced-match": "^4.0.1" + }, + "engines": { + "node": "20 || >=22" + } + }, + "node_modules/@isaacs/cliui": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", + "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", + "dev": true, + "license": "ISC", + "dependencies": { + "string-width": "^5.1.2", + "string-width-cjs": "npm:string-width@^4.2.0", + "strip-ansi": "^7.0.1", + "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", + "wrap-ansi": "^8.1.0", + "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@isaacs/cliui/node_modules/ansi-regex": { + "version": "6.2.2", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.2.2.tgz", + "integrity": "sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/@isaacs/cliui/node_modules/ansi-styles": { + "version": "6.2.3", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.3.tgz", + "integrity": "sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@isaacs/cliui/node_modules/string-width": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "dev": true, + "license": "MIT", + "dependencies": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@isaacs/cliui/node_modules/strip-ansi": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.2.tgz", + "integrity": "sha512-gmBGslpoQJtgnMAvOVqGZpEz9dyoKTCzy2nfz/n8aIFhN/jCE/rCmcxabB6jOOHV+0WNnylOxaxBQPSvcWklhA==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/@isaacs/cliui/node_modules/wrap-ansi": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", + "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^6.1.0", + "string-width": "^5.0.1", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.13", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz", + "integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.5.0", + "@jridgewell/trace-mapping": "^0.3.24" + } + }, + "node_modules/@jridgewell/remapping": { + "version": "2.3.5", + "resolved": "https://registry.npmjs.org/@jridgewell/remapping/-/remapping-2.3.5.tgz", + "integrity": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.24" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.5.5", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz", + "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==", + "dev": true, + "license": "MIT" + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.31", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz", + "integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "node_modules/@malept/cross-spawn-promise": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@malept/cross-spawn-promise/-/cross-spawn-promise-2.0.0.tgz", + "integrity": "sha512-1DpKU0Z5ThltBwjNySMC14g0CkbyhCaz9FkhxqNsZI6uAPJXFS8cMXlBKo26FJ8ZuW6S9GCMcR9IO5k2X5/9Fg==", + "dev": true, + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/malept" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/subscription/pkg/npm-.malept-cross-spawn-promise?utm_medium=referral&utm_source=npm_fund" + } + ], + "license": "Apache-2.0", + "dependencies": { + "cross-spawn": "^7.0.1" + }, + "engines": { + "node": ">= 12.13.0" + } + }, + "node_modules/@malept/flatpak-bundler": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/@malept/flatpak-bundler/-/flatpak-bundler-0.4.0.tgz", + "integrity": "sha512-9QOtNffcOF/c1seMCDnjckb3R9WHcG34tky+FHpNKKCW0wc/scYLwMtO+ptyGUfMW0/b/n4qRiALlaFHc9Oj7Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "debug": "^4.1.1", + "fs-extra": "^9.0.0", + "lodash": "^4.17.15", + "tmp-promise": "^3.0.2" + }, + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/@malept/flatpak-bundler/node_modules/fs-extra": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", + "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@napi-rs/wasm-runtime": { + "version": "0.2.12", + "resolved": "https://registry.npmjs.org/@napi-rs/wasm-runtime/-/wasm-runtime-0.2.12.tgz", + "integrity": "sha512-ZVWUcfwY4E/yPitQJl481FjFo3K22D6qF0DuFH6Y/nbnE11GY5uguDxZMGXPQ8WQ0128MXQD7TnfHyK4oWoIJQ==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "@emnapi/core": "^1.4.3", + "@emnapi/runtime": "^1.4.3", + "@tybys/wasm-util": "^0.10.0" + } + }, + "node_modules/@next/env": { + "version": "16.0.5", + "resolved": "https://registry.npmjs.org/@next/env/-/env-16.0.5.tgz", + "integrity": "sha512-jRLOw822AE6aaIm9oh0NrauZEM0Vtx5xhYPgqx89txUmv/UmcRwpcXmGeQOvYNT/1bakUwA+nG5CA74upYVVDw==", + "license": "MIT" + }, + "node_modules/@next/eslint-plugin-next": { + "version": "16.0.5", + "resolved": "https://registry.npmjs.org/@next/eslint-plugin-next/-/eslint-plugin-next-16.0.5.tgz", + "integrity": "sha512-m1zPz6hsBvQt1CMRz7rTga8OXpRE9rVW4JHCSjW+tswTxiEU+6ev+GTlgm7ZzcCiMEVQAHTNhpEGFzDtVha9qg==", + "dev": true, + "license": "MIT", + "dependencies": { + "fast-glob": "3.3.1" + } + }, + "node_modules/@next/swc-darwin-arm64": { + "version": "16.0.5", + "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-16.0.5.tgz", + "integrity": "sha512-65Mfo1rD+mVbJuBTlXbNelNOJ5ef+5pskifpFHsUt3cnOWjDNKctHBwwSz9tJlPp7qADZtiN/sdcG7mnc0El8Q==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-darwin-x64": { + "version": "16.0.5", + "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-16.0.5.tgz", + "integrity": "sha512-2fDzXD/JpEjY500VUF0uuGq3YZcpC6XxmGabePPLyHCKbw/YXRugv3MRHH7MxE2hVHtryXeSYYnxcESb/3OUIQ==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-linux-arm64-gnu": { + "version": "16.0.5", + "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-16.0.5.tgz", + "integrity": "sha512-meSLB52fw4tgDpPnyuhwA280EWLwwIntrxLYjzKU3e3730ur2WJAmmqoZ1LPIZ2l3eDfh9SBHnJGTczbgPeNeA==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-linux-arm64-musl": { + "version": "16.0.5", + "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-16.0.5.tgz", + "integrity": "sha512-aAJtQkvUzz5t0xVAmK931SIhWnSQAaEoTyG/sKPCYq2u835K/E4a14A+WRPd4dkhxIHNudE8dI+FpHekgdrA4g==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-linux-x64-gnu": { + "version": "16.0.5", + "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-16.0.5.tgz", + "integrity": "sha512-bYwbjBwooMWRhy6vRxenaYdguTM2hlxFt1QBnUF235zTnU2DhGpETm5WU93UvtAy0uhC5Kgqsl8RyNXlprFJ6Q==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-linux-x64-musl": { + "version": "16.0.5", + "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-16.0.5.tgz", + "integrity": "sha512-iGv2K/4gW3mkzh+VcZTf2gEGX5o9xdb5oPqHjgZvHdVzCw0iSAJ7n9vKzl3SIEIIHZmqRsgNasgoLd0cxaD+tg==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-win32-arm64-msvc": { + "version": "16.0.5", + "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-16.0.5.tgz", + "integrity": "sha512-6xf52Hp4SH9+4jbYmfUleqkuxvdB9JJRwwFlVG38UDuEGPqpIA+0KiJEU9lxvb0RGNo2i2ZUhc5LHajij9H9+A==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-win32-x64-msvc": { + "version": "16.0.5", + "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-16.0.5.tgz", + "integrity": "sha512-06kTaOh+Qy/kguN+MMK+/VtKmRkQJrPlGQMvCUbABk1UxI5SKTgJhbmMj9Hf0qWwrS6g9JM6/Zk+etqeMyvHAw==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nolyfill/is-core-module": { + "version": "1.0.39", + "resolved": "https://registry.npmjs.org/@nolyfill/is-core-module/-/is-core-module-1.0.39.tgz", + "integrity": "sha512-nn5ozdjYQpUCZlWGuxcJY/KpxkWQs4DcbMCmKojjyrYDEAGy4Ce19NN4v5MduafTwJlbKc99UA8YhSVqq9yPZA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12.4.0" + } + }, + "node_modules/@npmcli/fs": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/@npmcli/fs/-/fs-2.1.2.tgz", + "integrity": "sha512-yOJKRvohFOaLqipNtwYB9WugyZKhC/DZC4VYPmpaCzDBrA8YpK3qHZ8/HGscMnE4GqbkLNuVcCnxkeQEdGt6LQ==", + "dev": true, + "license": "ISC", + "dependencies": { + "@gar/promisify": "^1.1.3", + "semver": "^7.3.5" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "node_modules/@npmcli/fs/node_modules/semver": { + "version": "7.7.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz", + "integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@npmcli/move-file": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@npmcli/move-file/-/move-file-2.0.1.tgz", + "integrity": "sha512-mJd2Z5TjYWq/ttPLLGqArdtnC74J6bOzg4rMDnN+p1xTacZ2yPRCk2y0oSWQtygLR9YVQXgOcONrwtnk3JupxQ==", + "deprecated": "This functionality has been moved to @npmcli/fs", + "dev": true, + "license": "MIT", + "dependencies": { + "mkdirp": "^1.0.4", + "rimraf": "^3.0.2" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "node_modules/@npmcli/move-file/node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "deprecated": "Glob versions prior to v9 are no longer supported", + "dev": true, + "license": "ISC", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@npmcli/move-file/node_modules/rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "deprecated": "Rimraf versions prior to v4 are no longer supported", + "dev": true, + "license": "ISC", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@pkgjs/parseargs": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", + "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", + "dev": true, + "license": "MIT", + "optional": true, + "engines": { + "node": ">=14" + } + }, + "node_modules/@rtsao/scc": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@rtsao/scc/-/scc-1.1.0.tgz", + "integrity": "sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==", + "dev": true, + "license": "MIT" + }, + "node_modules/@sindresorhus/is": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-4.6.0.tgz", + "integrity": "sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/is?sponsor=1" + } + }, + "node_modules/@swc/helpers": { + "version": "0.5.15", + "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.15.tgz", + "integrity": "sha512-JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g==", + "license": "Apache-2.0", + "dependencies": { + "tslib": "^2.8.0" + } + }, + "node_modules/@szmarczak/http-timer": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-4.0.6.tgz", + "integrity": "sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w==", + "dev": true, + "license": "MIT", + "dependencies": { + "defer-to-connect": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@tailwindcss/node": { + "version": "4.1.17", + "resolved": "https://registry.npmjs.org/@tailwindcss/node/-/node-4.1.17.tgz", + "integrity": "sha512-csIkHIgLb3JisEFQ0vxr2Y57GUNYh447C8xzwj89U/8fdW8LhProdxvnVH6U8M2Y73QKiTIH+LWbK3V2BBZsAg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/remapping": "^2.3.4", + "enhanced-resolve": "^5.18.3", + "jiti": "^2.6.1", + "lightningcss": "1.30.2", + "magic-string": "^0.30.21", + "source-map-js": "^1.2.1", + "tailwindcss": "4.1.17" + } + }, + "node_modules/@tailwindcss/oxide": { + "version": "4.1.17", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide/-/oxide-4.1.17.tgz", + "integrity": "sha512-F0F7d01fmkQhsTjXezGBLdrl1KresJTcI3DB8EkScCldyKp3Msz4hub4uyYaVnk88BAS1g5DQjjF6F5qczheLA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 10" + }, + "optionalDependencies": { + "@tailwindcss/oxide-android-arm64": "4.1.17", + "@tailwindcss/oxide-darwin-arm64": "4.1.17", + "@tailwindcss/oxide-darwin-x64": "4.1.17", + "@tailwindcss/oxide-freebsd-x64": "4.1.17", + "@tailwindcss/oxide-linux-arm-gnueabihf": "4.1.17", + "@tailwindcss/oxide-linux-arm64-gnu": "4.1.17", + "@tailwindcss/oxide-linux-arm64-musl": "4.1.17", + "@tailwindcss/oxide-linux-x64-gnu": "4.1.17", + "@tailwindcss/oxide-linux-x64-musl": "4.1.17", + "@tailwindcss/oxide-wasm32-wasi": "4.1.17", + "@tailwindcss/oxide-win32-arm64-msvc": "4.1.17", + "@tailwindcss/oxide-win32-x64-msvc": "4.1.17" + } + }, + "node_modules/@tailwindcss/oxide-android-arm64": { + "version": "4.1.17", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-android-arm64/-/oxide-android-arm64-4.1.17.tgz", + "integrity": "sha512-BMqpkJHgOZ5z78qqiGE6ZIRExyaHyuxjgrJ6eBO5+hfrfGkuya0lYfw8fRHG77gdTjWkNWEEm+qeG2cDMxArLQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@tailwindcss/oxide-darwin-arm64": { + "version": "4.1.17", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-arm64/-/oxide-darwin-arm64-4.1.17.tgz", + "integrity": "sha512-EquyumkQweUBNk1zGEU/wfZo2qkp/nQKRZM8bUYO0J+Lums5+wl2CcG1f9BgAjn/u9pJzdYddHWBiFXJTcxmOg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@tailwindcss/oxide-darwin-x64": { + "version": "4.1.17", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-x64/-/oxide-darwin-x64-4.1.17.tgz", + "integrity": "sha512-gdhEPLzke2Pog8s12oADwYu0IAw04Y2tlmgVzIN0+046ytcgx8uZmCzEg4VcQh+AHKiS7xaL8kGo/QTiNEGRog==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@tailwindcss/oxide-freebsd-x64": { + "version": "4.1.17", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-freebsd-x64/-/oxide-freebsd-x64-4.1.17.tgz", + "integrity": "sha512-hxGS81KskMxML9DXsaXT1H0DyA+ZBIbyG/sSAjWNe2EDl7TkPOBI42GBV3u38itzGUOmFfCzk1iAjDXds8Oh0g==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@tailwindcss/oxide-linux-arm-gnueabihf": { + "version": "4.1.17", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm-gnueabihf/-/oxide-linux-arm-gnueabihf-4.1.17.tgz", + "integrity": "sha512-k7jWk5E3ldAdw0cNglhjSgv501u7yrMf8oeZ0cElhxU6Y2o7f8yqelOp3fhf7evjIS6ujTI3U8pKUXV2I4iXHQ==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@tailwindcss/oxide-linux-arm64-gnu": { + "version": "4.1.17", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-gnu/-/oxide-linux-arm64-gnu-4.1.17.tgz", + "integrity": "sha512-HVDOm/mxK6+TbARwdW17WrgDYEGzmoYayrCgmLEw7FxTPLcp/glBisuyWkFz/jb7ZfiAXAXUACfyItn+nTgsdQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@tailwindcss/oxide-linux-arm64-musl": { + "version": "4.1.17", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-musl/-/oxide-linux-arm64-musl-4.1.17.tgz", + "integrity": "sha512-HvZLfGr42i5anKtIeQzxdkw/wPqIbpeZqe7vd3V9vI3RQxe3xU1fLjss0TjyhxWcBaipk7NYwSrwTwK1hJARMg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@tailwindcss/oxide-linux-x64-gnu": { + "version": "4.1.17", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-gnu/-/oxide-linux-x64-gnu-4.1.17.tgz", + "integrity": "sha512-M3XZuORCGB7VPOEDH+nzpJ21XPvK5PyjlkSFkFziNHGLc5d6g3di2McAAblmaSUNl8IOmzYwLx9NsE7bplNkwQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@tailwindcss/oxide-linux-x64-musl": { + "version": "4.1.17", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-musl/-/oxide-linux-x64-musl-4.1.17.tgz", + "integrity": "sha512-k7f+pf9eXLEey4pBlw+8dgfJHY4PZ5qOUFDyNf7SI6lHjQ9Zt7+NcscjpwdCEbYi6FI5c2KDTDWyf2iHcCSyyQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@tailwindcss/oxide-wasm32-wasi": { + "version": "4.1.17", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-wasm32-wasi/-/oxide-wasm32-wasi-4.1.17.tgz", + "integrity": "sha512-cEytGqSSoy7zK4JRWiTCx43FsKP/zGr0CsuMawhH67ONlH+T79VteQeJQRO/X7L0juEUA8ZyuYikcRBf0vsxhg==", + "bundleDependencies": [ + "@napi-rs/wasm-runtime", + "@emnapi/core", + "@emnapi/runtime", + "@tybys/wasm-util", + "@emnapi/wasi-threads", + "tslib" + ], + "cpu": [ + "wasm32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "@emnapi/core": "^1.6.0", + "@emnapi/runtime": "^1.6.0", + "@emnapi/wasi-threads": "^1.1.0", + "@napi-rs/wasm-runtime": "^1.0.7", + "@tybys/wasm-util": "^0.10.1", + "tslib": "^2.4.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@tailwindcss/oxide-win32-arm64-msvc": { + "version": "4.1.17", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-arm64-msvc/-/oxide-win32-arm64-msvc-4.1.17.tgz", + "integrity": "sha512-JU5AHr7gKbZlOGvMdb4722/0aYbU+tN6lv1kONx0JK2cGsh7g148zVWLM0IKR3NeKLv+L90chBVYcJ8uJWbC9A==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@tailwindcss/oxide-win32-x64-msvc": { + "version": "4.1.17", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-x64-msvc/-/oxide-win32-x64-msvc-4.1.17.tgz", + "integrity": "sha512-SKWM4waLuqx0IH+FMDUw6R66Hu4OuTALFgnleKbqhgGU30DY20NORZMZUKgLRjQXNN2TLzKvh48QXTig4h4bGw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@tailwindcss/postcss": { + "version": "4.1.17", + "resolved": "https://registry.npmjs.org/@tailwindcss/postcss/-/postcss-4.1.17.tgz", + "integrity": "sha512-+nKl9N9mN5uJ+M7dBOOCzINw94MPstNR/GtIhz1fpZysxL/4a+No64jCBD6CPN+bIHWFx3KWuu8XJRrj/572Dw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@alloc/quick-lru": "^5.2.0", + "@tailwindcss/node": "4.1.17", + "@tailwindcss/oxide": "4.1.17", + "postcss": "^8.4.41", + "tailwindcss": "4.1.17" + } + }, + "node_modules/@tootallnate/once": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-2.0.0.tgz", + "integrity": "sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 10" + } + }, + "node_modules/@tybys/wasm-util": { + "version": "0.10.1", + "resolved": "https://registry.npmjs.org/@tybys/wasm-util/-/wasm-util-0.10.1.tgz", + "integrity": "sha512-9tTaPJLSiejZKx+Bmog4uSubteqTvFrVrURwkmHixBo0G4seD0zUxp98E1DzUBJxLQ3NPwXrGKDiVjwx/DpPsg==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "tslib": "^2.4.0" + } + }, + "node_modules/@types/cacheable-request": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/@types/cacheable-request/-/cacheable-request-6.0.3.tgz", + "integrity": "sha512-IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/http-cache-semantics": "*", + "@types/keyv": "^3.1.4", + "@types/node": "*", + "@types/responselike": "^1.0.0" + } + }, + "node_modules/@types/debug": { + "version": "4.1.12", + "resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.12.tgz", + "integrity": "sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/ms": "*" + } + }, + "node_modules/@types/estree": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz", + "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/fs-extra": { + "version": "8.1.5", + "resolved": "https://registry.npmjs.org/@types/fs-extra/-/fs-extra-8.1.5.tgz", + "integrity": "sha512-0dzKcwO+S8s2kuF5Z9oUWatQJj5Uq/iqphEtE3GQJVRRYm/tD1LglU2UnXi2A8jLq5umkGouOXOR9y0n613ZwQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/http-cache-semantics": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/@types/http-cache-semantics/-/http-cache-semantics-4.0.4.tgz", + "integrity": "sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/json-schema": { + "version": "7.0.15", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", + "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/json5": { + "version": "0.0.29", + "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", + "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/keyv": { + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/@types/keyv/-/keyv-3.1.4.tgz", + "integrity": "sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/ms": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@types/ms/-/ms-2.1.0.tgz", + "integrity": "sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/node": { + "version": "20.19.25", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.19.25.tgz", + "integrity": "sha512-ZsJzA5thDQMSQO788d7IocwwQbI8B5OPzmqNvpf3NY/+MHDAS759Wo0gd2WQeXYt5AAAQjzcrTVC6SKCuYgoCQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "undici-types": "~6.21.0" + } + }, + "node_modules/@types/plist": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@types/plist/-/plist-3.0.5.tgz", + "integrity": "sha512-E6OCaRmAe4WDmWNsL/9RMqdkkzDCY1etutkflWk4c+AcjDU07Pcz1fQwTX0TQz+Pxqn9i4L1TU3UFpjnrcDgxA==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "@types/node": "*", + "xmlbuilder": ">=11.0.1" + } + }, + "node_modules/@types/react": { + "version": "19.2.7", + "resolved": "https://registry.npmjs.org/@types/react/-/react-19.2.7.tgz", + "integrity": "sha512-MWtvHrGZLFttgeEj28VXHxpmwYbor/ATPYbBfSFZEIRK0ecCFLl2Qo55z52Hss+UV9CRN7trSeq1zbgx7YDWWg==", + "dev": true, + "license": "MIT", + "dependencies": { + "csstype": "^3.2.2" + } + }, + "node_modules/@types/react-dom": { + "version": "19.2.3", + "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-19.2.3.tgz", + "integrity": "sha512-jp2L/eY6fn+KgVVQAOqYItbF0VY/YApe5Mz2F0aykSO8gx31bYCZyvSeYxCHKvzHG5eZjc+zyaS5BrBWya2+kQ==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "@types/react": "^19.2.0" + } + }, + "node_modules/@types/responselike": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@types/responselike/-/responselike-1.0.3.tgz", + "integrity": "sha512-H/+L+UkTV33uf49PH5pCAUBVPNj2nDBXTN+qS1dOwyyg24l3CcicicCA7ca+HMvJBZcFgl5r8e+RR6elsb4Lyw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/slice-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@types/slice-ansi/-/slice-ansi-4.0.0.tgz", + "integrity": "sha512-+OpjSaq85gvlZAYINyzKpLeiFkSC4EsC6IIiT6v6TLSU5k5U83fHGj9Lel8oKEXM0HqgrMVCjXPDPVICtxF7EQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/verror": { + "version": "1.10.11", + "resolved": "https://registry.npmjs.org/@types/verror/-/verror-1.10.11.tgz", + "integrity": "sha512-RlDm9K7+o5stv0Co8i8ZRGxDbrTxhJtgjqjFyVh/tXQyl/rYtTKlnTvZ88oSTeYREWurwx20Js4kTuKCsFkUtg==", + "dev": true, + "license": "MIT", + "optional": true + }, + "node_modules/@types/yauzl": { + "version": "2.10.3", + "resolved": "https://registry.npmjs.org/@types/yauzl/-/yauzl-2.10.3.tgz", + "integrity": "sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@typescript-eslint/eslint-plugin": { + "version": "8.48.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.48.0.tgz", + "integrity": "sha512-XxXP5tL1txl13YFtrECECQYeZjBZad4fyd3cFV4a19LkAY/bIp9fev3US4S5fDVV2JaYFiKAZ/GRTOLer+mbyQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@eslint-community/regexpp": "^4.10.0", + "@typescript-eslint/scope-manager": "8.48.0", + "@typescript-eslint/type-utils": "8.48.0", + "@typescript-eslint/utils": "8.48.0", + "@typescript-eslint/visitor-keys": "8.48.0", + "graphemer": "^1.4.0", + "ignore": "^7.0.0", + "natural-compare": "^1.4.0", + "ts-api-utils": "^2.1.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "@typescript-eslint/parser": "^8.48.0", + "eslint": "^8.57.0 || ^9.0.0", + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/@typescript-eslint/eslint-plugin/node_modules/ignore": { + "version": "7.0.5", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-7.0.5.tgz", + "integrity": "sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "node_modules/@typescript-eslint/parser": { + "version": "8.48.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.48.0.tgz", + "integrity": "sha512-jCzKdm/QK0Kg4V4IK/oMlRZlY+QOcdjv89U2NgKHZk1CYTj82/RVSx1mV/0gqCVMJ/DA+Zf/S4NBWNF8GQ+eqQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/scope-manager": "8.48.0", + "@typescript-eslint/types": "8.48.0", + "@typescript-eslint/typescript-estree": "8.48.0", + "@typescript-eslint/visitor-keys": "8.48.0", + "debug": "^4.3.4" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0", + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/@typescript-eslint/project-service": { + "version": "8.48.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.48.0.tgz", + "integrity": "sha512-Ne4CTZyRh1BecBf84siv42wv5vQvVmgtk8AuiEffKTUo3DrBaGYZueJSxxBZ8fjk/N3DrgChH4TOdIOwOwiqqw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/tsconfig-utils": "^8.48.0", + "@typescript-eslint/types": "^8.48.0", + "debug": "^4.3.4" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/@typescript-eslint/scope-manager": { + "version": "8.48.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.48.0.tgz", + "integrity": "sha512-uGSSsbrtJrLduti0Q1Q9+BF1/iFKaxGoQwjWOIVNJv0o6omrdyR8ct37m4xIl5Zzpkp69Kkmvom7QFTtue89YQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "8.48.0", + "@typescript-eslint/visitor-keys": "8.48.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/tsconfig-utils": { + "version": "8.48.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.48.0.tgz", + "integrity": "sha512-WNebjBdFdyu10sR1M4OXTt2OkMd5KWIL+LLfeH9KhgP+jzfDV/LI3eXzwJ1s9+Yc0Kzo2fQCdY/OpdusCMmh6w==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/@typescript-eslint/type-utils": { + "version": "8.48.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.48.0.tgz", + "integrity": "sha512-zbeVaVqeXhhab6QNEKfK96Xyc7UQuoFWERhEnj3mLVnUWrQnv15cJNseUni7f3g557gm0e46LZ6IJ4NJVOgOpw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "8.48.0", + "@typescript-eslint/typescript-estree": "8.48.0", + "@typescript-eslint/utils": "8.48.0", + "debug": "^4.3.4", + "ts-api-utils": "^2.1.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0", + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/@typescript-eslint/types": { + "version": "8.48.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.48.0.tgz", + "integrity": "sha512-cQMcGQQH7kwKoVswD1xdOytxQR60MWKM1di26xSUtxehaDs/32Zpqsu5WJlXTtTTqyAVK8R7hvsUnIXRS+bjvA==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/typescript-estree": { + "version": "8.48.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.48.0.tgz", + "integrity": "sha512-ljHab1CSO4rGrQIAyizUS6UGHHCiAYhbfcIZ1zVJr5nMryxlXMVWS3duFPSKvSUbFPwkXMFk1k0EMIjub4sRRQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/project-service": "8.48.0", + "@typescript-eslint/tsconfig-utils": "8.48.0", + "@typescript-eslint/types": "8.48.0", + "@typescript-eslint/visitor-keys": "8.48.0", + "debug": "^4.3.4", + "minimatch": "^9.0.4", + "semver": "^7.6.0", + "tinyglobby": "^0.2.15", + "ts-api-utils": "^2.1.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz", + "integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/semver": { + "version": "7.7.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz", + "integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@typescript-eslint/utils": { + "version": "8.48.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.48.0.tgz", + "integrity": "sha512-yTJO1XuGxCsSfIVt1+1UrLHtue8xz16V8apzPYI06W0HbEbEWHxHXgZaAgavIkoh+GeV6hKKd5jm0sS6OYxWXQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@eslint-community/eslint-utils": "^4.7.0", + "@typescript-eslint/scope-manager": "8.48.0", + "@typescript-eslint/types": "8.48.0", + "@typescript-eslint/typescript-estree": "8.48.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0", + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/@typescript-eslint/visitor-keys": { + "version": "8.48.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.48.0.tgz", + "integrity": "sha512-T0XJMaRPOH3+LBbAfzR2jalckP1MSG/L9eUtY0DEzUyVaXJ/t6zN0nR7co5kz0Jko/nkSYCBRkz1djvjajVTTg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "8.48.0", + "eslint-visitor-keys": "^4.2.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@unrs/resolver-binding-android-arm-eabi": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-android-arm-eabi/-/resolver-binding-android-arm-eabi-1.11.1.tgz", + "integrity": "sha512-ppLRUgHVaGRWUx0R0Ut06Mjo9gBaBkg3v/8AxusGLhsIotbBLuRk51rAzqLC8gq6NyyAojEXglNjzf6R948DNw==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@unrs/resolver-binding-android-arm64": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-android-arm64/-/resolver-binding-android-arm64-1.11.1.tgz", + "integrity": "sha512-lCxkVtb4wp1v+EoN+HjIG9cIIzPkX5OtM03pQYkG+U5O/wL53LC4QbIeazgiKqluGeVEeBlZahHalCaBvU1a2g==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@unrs/resolver-binding-darwin-arm64": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-darwin-arm64/-/resolver-binding-darwin-arm64-1.11.1.tgz", + "integrity": "sha512-gPVA1UjRu1Y/IsB/dQEsp2V1pm44Of6+LWvbLc9SDk1c2KhhDRDBUkQCYVWe6f26uJb3fOK8saWMgtX8IrMk3g==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@unrs/resolver-binding-darwin-x64": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-darwin-x64/-/resolver-binding-darwin-x64-1.11.1.tgz", + "integrity": "sha512-cFzP7rWKd3lZaCsDze07QX1SC24lO8mPty9vdP+YVa3MGdVgPmFc59317b2ioXtgCMKGiCLxJ4HQs62oz6GfRQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@unrs/resolver-binding-freebsd-x64": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-freebsd-x64/-/resolver-binding-freebsd-x64-1.11.1.tgz", + "integrity": "sha512-fqtGgak3zX4DCB6PFpsH5+Kmt/8CIi4Bry4rb1ho6Av2QHTREM+47y282Uqiu3ZRF5IQioJQ5qWRV6jduA+iGw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@unrs/resolver-binding-linux-arm-gnueabihf": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm-gnueabihf/-/resolver-binding-linux-arm-gnueabihf-1.11.1.tgz", + "integrity": "sha512-u92mvlcYtp9MRKmP+ZvMmtPN34+/3lMHlyMj7wXJDeXxuM0Vgzz0+PPJNsro1m3IZPYChIkn944wW8TYgGKFHw==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-linux-arm-musleabihf": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm-musleabihf/-/resolver-binding-linux-arm-musleabihf-1.11.1.tgz", + "integrity": "sha512-cINaoY2z7LVCrfHkIcmvj7osTOtm6VVT16b5oQdS4beibX2SYBwgYLmqhBjA1t51CarSaBuX5YNsWLjsqfW5Cw==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-linux-arm64-gnu": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm64-gnu/-/resolver-binding-linux-arm64-gnu-1.11.1.tgz", + "integrity": "sha512-34gw7PjDGB9JgePJEmhEqBhWvCiiWCuXsL9hYphDF7crW7UgI05gyBAi6MF58uGcMOiOqSJ2ybEeCvHcq0BCmQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-linux-arm64-musl": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm64-musl/-/resolver-binding-linux-arm64-musl-1.11.1.tgz", + "integrity": "sha512-RyMIx6Uf53hhOtJDIamSbTskA99sPHS96wxVE/bJtePJJtpdKGXO1wY90oRdXuYOGOTuqjT8ACccMc4K6QmT3w==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-linux-ppc64-gnu": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-ppc64-gnu/-/resolver-binding-linux-ppc64-gnu-1.11.1.tgz", + "integrity": "sha512-D8Vae74A4/a+mZH0FbOkFJL9DSK2R6TFPC9M+jCWYia/q2einCubX10pecpDiTmkJVUH+y8K3BZClycD8nCShA==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-linux-riscv64-gnu": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-riscv64-gnu/-/resolver-binding-linux-riscv64-gnu-1.11.1.tgz", + "integrity": "sha512-frxL4OrzOWVVsOc96+V3aqTIQl1O2TjgExV4EKgRY09AJ9leZpEg8Ak9phadbuX0BA4k8U5qtvMSQQGGmaJqcQ==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-linux-riscv64-musl": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-riscv64-musl/-/resolver-binding-linux-riscv64-musl-1.11.1.tgz", + "integrity": "sha512-mJ5vuDaIZ+l/acv01sHoXfpnyrNKOk/3aDoEdLO/Xtn9HuZlDD6jKxHlkN8ZhWyLJsRBxfv9GYM2utQ1SChKew==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-linux-s390x-gnu": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-s390x-gnu/-/resolver-binding-linux-s390x-gnu-1.11.1.tgz", + "integrity": "sha512-kELo8ebBVtb9sA7rMe1Cph4QHreByhaZ2QEADd9NzIQsYNQpt9UkM9iqr2lhGr5afh885d/cB5QeTXSbZHTYPg==", + "cpu": [ + "s390x" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-linux-x64-gnu": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-x64-gnu/-/resolver-binding-linux-x64-gnu-1.11.1.tgz", + "integrity": "sha512-C3ZAHugKgovV5YvAMsxhq0gtXuwESUKc5MhEtjBpLoHPLYM+iuwSj3lflFwK3DPm68660rZ7G8BMcwSro7hD5w==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-linux-x64-musl": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-x64-musl/-/resolver-binding-linux-x64-musl-1.11.1.tgz", + "integrity": "sha512-rV0YSoyhK2nZ4vEswT/QwqzqQXw5I6CjoaYMOX0TqBlWhojUf8P94mvI7nuJTeaCkkds3QE4+zS8Ko+GdXuZtA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-wasm32-wasi": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-wasm32-wasi/-/resolver-binding-wasm32-wasi-1.11.1.tgz", + "integrity": "sha512-5u4RkfxJm+Ng7IWgkzi3qrFOvLvQYnPBmjmZQ8+szTK/b31fQCnleNl1GgEt7nIsZRIf5PLhPwT0WM+q45x/UQ==", + "cpu": [ + "wasm32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "@napi-rs/wasm-runtime": "^0.2.11" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@unrs/resolver-binding-win32-arm64-msvc": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-win32-arm64-msvc/-/resolver-binding-win32-arm64-msvc-1.11.1.tgz", + "integrity": "sha512-nRcz5Il4ln0kMhfL8S3hLkxI85BXs3o8EYoattsJNdsX4YUU89iOkVn7g0VHSRxFuVMdM4Q1jEpIId1Ihim/Uw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@unrs/resolver-binding-win32-ia32-msvc": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-win32-ia32-msvc/-/resolver-binding-win32-ia32-msvc-1.11.1.tgz", + "integrity": "sha512-DCEI6t5i1NmAZp6pFonpD5m7i6aFrpofcp4LA2i8IIq60Jyo28hamKBxNrZcyOwVOZkgsRp9O2sXWBWP8MnvIQ==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@unrs/resolver-binding-win32-x64-msvc": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-win32-x64-msvc/-/resolver-binding-win32-x64-msvc-1.11.1.tgz", + "integrity": "sha512-lrW200hZdbfRtztbygyaq/6jP6AKE8qQN2KvPcJ+x7wiD038YtnYtZ82IMNJ69GJibV7bwL3y9FgK+5w/pYt6g==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@vercel/speed-insights": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/@vercel/speed-insights/-/speed-insights-1.3.1.tgz", + "integrity": "sha512-PbEr7FrMkUrGYvlcLHGkXdCkxnylCWePx7lPxxq36DNdfo9mcUjLOmqOyPDHAOgnfqgGGdmE3XI9L/4+5fr+vQ==", + "dev": true, + "license": "Apache-2.0", + "peerDependencies": { + "@sveltejs/kit": "^1 || ^2", + "next": ">= 13", + "react": "^18 || ^19 || ^19.0.0-rc", + "svelte": ">= 4", + "vue": "^3", + "vue-router": "^4" + }, + "peerDependenciesMeta": { + "@sveltejs/kit": { + "optional": true + }, + "next": { + "optional": true + }, + "react": { + "optional": true + }, + "svelte": { + "optional": true + }, + "vue": { + "optional": true + }, + "vue-router": { + "optional": true + } + } + }, + "node_modules/@xmldom/xmldom": { + "version": "0.8.11", + "resolved": "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.8.11.tgz", + "integrity": "sha512-cQzWCtO6C8TQiYl1ruKNn2U6Ao4o4WBBcbL61yJl84x+j5sOWWFU9X7DpND8XZG3daDppSsigMdfAIl2upQBRw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/7zip-bin": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/7zip-bin/-/7zip-bin-5.2.0.tgz", + "integrity": "sha512-ukTPVhqG4jNzMro2qA9HSCSSVJN3aN7tlb+hfqYCt3ER0yWroeA2VR38MNrOHLQ/cVj+DaIMad0kFCtWWowh/A==", + "dev": true, + "license": "MIT" + }, + "node_modules/abbrev": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", + "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==", + "dev": true, + "license": "ISC" + }, + "node_modules/acorn": { + "version": "8.15.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.15.0.tgz", + "integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==", + "dev": true, + "license": "MIT", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/agent-base": { + "version": "7.1.4", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.4.tgz", + "integrity": "sha512-MnA+YT8fwfJPgBx3m60MNqakm30XOkyIoH1y6huTQvC0PwZG7ki8NacLBcrPbNoo8vEZy7Jpuk7+jMO+CUovTQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 14" + } + }, + "node_modules/agentkeepalive": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/agentkeepalive/-/agentkeepalive-4.6.0.tgz", + "integrity": "sha512-kja8j7PjmncONqaTsB8fQ+wE2mSU2DJ9D4XKoJ5PFWIdRMa6SLSN1ff4mOr4jCbfRSsxR4keIiySJU0N9T5hIQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "humanize-ms": "^1.2.1" + }, + "engines": { + "node": ">= 8.0.0" + } + }, + "node_modules/aggregate-error": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", + "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", + "dev": true, + "license": "MIT", + "dependencies": { + "clean-stack": "^2.0.0", + "indent-string": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "ajv": "^6.9.1" + } + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/app-builder-bin": { + "version": "5.0.0-alpha.12", + "resolved": "https://registry.npmjs.org/app-builder-bin/-/app-builder-bin-5.0.0-alpha.12.tgz", + "integrity": "sha512-j87o0j6LqPL3QRr8yid6c+Tt5gC7xNfYo6uQIQkorAC6MpeayVMZrEDzKmJJ/Hlv7EnOQpaRm53k6ktDYZyB6w==", + "dev": true, + "license": "MIT" + }, + "node_modules/app-builder-lib": { + "version": "26.0.12", + "resolved": "https://registry.npmjs.org/app-builder-lib/-/app-builder-lib-26.0.12.tgz", + "integrity": "sha512-+/CEPH1fVKf6HowBUs6LcAIoRcjeqgvAeoSE+cl7Y7LndyQ9ViGPYibNk7wmhMHzNgHIuIbw4nWADPO+4mjgWw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@develar/schema-utils": "~2.6.5", + "@electron/asar": "3.2.18", + "@electron/fuses": "^1.8.0", + "@electron/notarize": "2.5.0", + "@electron/osx-sign": "1.3.1", + "@electron/rebuild": "3.7.0", + "@electron/universal": "2.0.1", + "@malept/flatpak-bundler": "^0.4.0", + "@types/fs-extra": "9.0.13", + "async-exit-hook": "^2.0.1", + "builder-util": "26.0.11", + "builder-util-runtime": "9.3.1", + "chromium-pickle-js": "^0.2.0", + "config-file-ts": "0.2.8-rc1", + "debug": "^4.3.4", + "dotenv": "^16.4.5", + "dotenv-expand": "^11.0.6", + "ejs": "^3.1.8", + "electron-publish": "26.0.11", + "fs-extra": "^10.1.0", + "hosted-git-info": "^4.1.0", + "is-ci": "^3.0.0", + "isbinaryfile": "^5.0.0", + "js-yaml": "^4.1.0", + "json5": "^2.2.3", + "lazy-val": "^1.0.5", + "minimatch": "^10.0.0", + "plist": "3.1.0", + "resedit": "^1.7.0", + "semver": "^7.3.8", + "tar": "^6.1.12", + "temp-file": "^3.4.0", + "tiny-async-pool": "1.3.0" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "dmg-builder": "26.0.12", + "electron-builder-squirrel-windows": "26.0.12" + } + }, + "node_modules/app-builder-lib/node_modules/@types/fs-extra": { + "version": "9.0.13", + "resolved": "https://registry.npmjs.org/@types/fs-extra/-/fs-extra-9.0.13.tgz", + "integrity": "sha512-nEnwB++1u5lVDM2UI4c1+5R+FYaKfaAzS4OococimjVm3nQw3TuzH5UNsocrcTBbhnerblyHj4A49qXbIiZdpA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/app-builder-lib/node_modules/fs-extra": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", + "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/app-builder-lib/node_modules/minimatch": { + "version": "10.1.1", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.1.1.tgz", + "integrity": "sha512-enIvLvRAFZYXJzkCYG5RKmPfrFArdLv+R+lbQ53BmIMLIry74bjKzX6iHAm8WYamJkhSSEabrWN5D97XnKObjQ==", + "dev": true, + "license": "BlueOak-1.0.0", + "dependencies": { + "@isaacs/brace-expansion": "^5.0.0" + }, + "engines": { + "node": "20 || >=22" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/app-builder-lib/node_modules/semver": { + "version": "7.7.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz", + "integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true, + "license": "Python-2.0" + }, + "node_modules/aria-query": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.2.tgz", + "integrity": "sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/array-buffer-byte-length": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.2.tgz", + "integrity": "sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "is-array-buffer": "^3.0.5" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array-includes": { + "version": "3.1.9", + "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.9.tgz", + "integrity": "sha512-FmeCCAenzH0KH381SPT5FZmiA/TmpndpcaShhfgEN9eCVjnFBqq3l1xrI42y8+PPLI6hypzou4GXw00WHmPBLQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.4", + "define-properties": "^1.2.1", + "es-abstract": "^1.24.0", + "es-object-atoms": "^1.1.1", + "get-intrinsic": "^1.3.0", + "is-string": "^1.1.1", + "math-intrinsics": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.findlast": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/array.prototype.findlast/-/array.prototype.findlast-1.2.5.tgz", + "integrity": "sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0", + "es-shim-unscopables": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.findlastindex": { + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.6.tgz", + "integrity": "sha512-F/TKATkzseUExPlfvmwQKGITM3DGTK+vkAsCZoDc5daVygbJBnjEUCbgkAvVFsgfXfX4YIqZ/27G3k3tdXrTxQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.4", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.9", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.1.1", + "es-shim-unscopables": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.flat": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.3.tgz", + "integrity": "sha512-rwG/ja1neyLqCuGZ5YYrznA62D4mZXg0i1cIskIUKSiqF3Cje9/wXAls9B9s1Wa2fomMsIv8czB8jZcPmxCXFg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.5", + "es-shim-unscopables": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.flatmap": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.3.tgz", + "integrity": "sha512-Y7Wt51eKJSyi80hFrJCePGGNo5ktJCslFuboqJsbf57CCPcm5zztluPlc4/aD8sWsKvlwatezpV4U1efk8kpjg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.5", + "es-shim-unscopables": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.tosorted": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.4.tgz", + "integrity": "sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.3", + "es-errors": "^1.3.0", + "es-shim-unscopables": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/arraybuffer.prototype.slice": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.4.tgz", + "integrity": "sha512-BNoCY6SXXPQ7gF2opIP4GBE+Xw7U+pHMYKuzjgCN3GwiaIR09UUeKfheyIry77QtrCBlC0KK0q5/TER/tYh3PQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "array-buffer-byte-length": "^1.0.1", + "call-bind": "^1.0.8", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.5", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.6", + "is-array-buffer": "^3.0.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", + "integrity": "sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==", + "dev": true, + "license": "MIT", + "optional": true, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/ast-types-flow": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.8.tgz", + "integrity": "sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/astral-regex": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz", + "integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/async": { + "version": "3.2.6", + "resolved": "https://registry.npmjs.org/async/-/async-3.2.6.tgz", + "integrity": "sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==", + "dev": true, + "license": "MIT" + }, + "node_modules/async-exit-hook": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/async-exit-hook/-/async-exit-hook-2.0.1.tgz", + "integrity": "sha512-NW2cX8m1Q7KPA7a5M2ULQeZ2wR5qI5PAbw5L0UOMxdioVk9PMZ0h1TmyZEkPYrCvYjDlFICusOu1dlEKAAeXBw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/async-function": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/async-function/-/async-function-1.0.0.tgz", + "integrity": "sha512-hsU18Ae8CDTR6Kgu9DYf0EbCr/a5iGL0rytQDobUcdpYOKokk8LEjVphnXkDkgpi0wYVsqrXuP0bZxJaTqdgoA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", + "dev": true, + "license": "MIT" + }, + "node_modules/at-least-node": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz", + "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==", + "dev": true, + "license": "ISC", + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/available-typed-arrays": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz", + "integrity": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "possible-typed-array-names": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/axe-core": { + "version": "4.11.0", + "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.11.0.tgz", + "integrity": "sha512-ilYanEU8vxxBexpJd8cWM4ElSQq4QctCLKih0TSfjIfCQTeyH/6zVrmIJfLPrKTKJRbiG+cfnZbQIjAlJmF1jQ==", + "dev": true, + "license": "MPL-2.0", + "engines": { + "node": ">=4" + } + }, + "node_modules/axobject-query": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-4.1.0.tgz", + "integrity": "sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/babel-plugin-react-compiler": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/babel-plugin-react-compiler/-/babel-plugin-react-compiler-1.0.0.tgz", + "integrity": "sha512-Ixm8tFfoKKIPYdCCKYTsqv+Fd4IJ0DQqMyEimo+pxUOMUR9cVPlwTrFt9Avu+3cb6Zp3mAzl+t1MrG2fxxKsxw==", + "devOptional": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.26.0" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true, + "license": "MIT" + }, + "node_modules/base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "node_modules/baseline-browser-mapping": { + "version": "2.9.8", + "resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.9.8.tgz", + "integrity": "sha512-Y1fOuNDowLfgKOypdc9SPABfoWXuZHBOyCS4cD52IeZBhr4Md6CLLs6atcxVrzRmQ06E7hSlm5bHHApPKR/byA==", + "license": "Apache-2.0", + "bin": { + "baseline-browser-mapping": "dist/cli.js" + } + }, + "node_modules/big-integer": { + "version": "1.6.52", + "resolved": "https://registry.npmjs.org/big-integer/-/big-integer-1.6.52.tgz", + "integrity": "sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg==", + "dev": true, + "license": "Unlicense", + "engines": { + "node": ">=0.6" + } + }, + "node_modules/bl": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", + "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", + "dev": true, + "license": "MIT", + "dependencies": { + "buffer": "^5.5.0", + "inherits": "^2.0.4", + "readable-stream": "^3.4.0" + } + }, + "node_modules/boolean": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/boolean/-/boolean-3.2.0.tgz", + "integrity": "sha512-d0II/GO9uf9lfUHH2BQsjxzRJZBdsjgsBiW4BvhWk/3qoKwQFjIDVN19PfX8F2D/r9PCMTtLWjYVCFrpeYUzsw==", + "deprecated": "Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.", + "dev": true, + "license": "MIT", + "optional": true + }, + "node_modules/bplist-parser": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/bplist-parser/-/bplist-parser-0.3.2.tgz", + "integrity": "sha512-apC2+fspHGI3mMKj+dGevkGo/tCqVB8jMb6i+OX+E29p0Iposz07fABkRIfVUPNd5A5VbuOz1bZbnmkKLYF+wQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "big-integer": "1.6.x" + }, + "engines": { + "node": ">= 5.10.0" + } + }, + "node_modules/brace-expansion": { + "version": "1.1.12", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz", + "integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", + "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", + "dev": true, + "license": "MIT", + "dependencies": { + "fill-range": "^7.1.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/browserslist": { + "version": "4.28.1", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.28.1.tgz", + "integrity": "sha512-ZC5Bd0LgJXgwGqUknZY/vkUQ04r8NXnJZ3yYi4vDmSiZmC/pdSN0NbNRPxZpbtO4uAfDUAFffO8IZoM3Gj8IkA==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "baseline-browser-mapping": "^2.9.0", + "caniuse-lite": "^1.0.30001759", + "electron-to-chromium": "^1.5.263", + "node-releases": "^2.0.27", + "update-browserslist-db": "^1.2.0" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/buffer": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "node_modules/buffer-crc32": { + "version": "0.2.13", + "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz", + "integrity": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": "*" + } + }, + "node_modules/buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/builder-util": { + "version": "26.0.11", + "resolved": "https://registry.npmjs.org/builder-util/-/builder-util-26.0.11.tgz", + "integrity": "sha512-xNjXfsldUEe153h1DraD0XvDOpqGR0L5eKFkdReB7eFW5HqysDZFfly4rckda6y9dF39N3pkPlOblcfHKGw+uA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/debug": "^4.1.6", + "7zip-bin": "~5.2.0", + "app-builder-bin": "5.0.0-alpha.12", + "builder-util-runtime": "9.3.1", + "chalk": "^4.1.2", + "cross-spawn": "^7.0.6", + "debug": "^4.3.4", + "fs-extra": "^10.1.0", + "http-proxy-agent": "^7.0.0", + "https-proxy-agent": "^7.0.0", + "is-ci": "^3.0.0", + "js-yaml": "^4.1.0", + "sanitize-filename": "^1.6.3", + "source-map-support": "^0.5.19", + "stat-mode": "^1.0.0", + "temp-file": "^3.4.0", + "tiny-async-pool": "1.3.0" + } + }, + "node_modules/builder-util-runtime": { + "version": "9.3.1", + "resolved": "https://registry.npmjs.org/builder-util-runtime/-/builder-util-runtime-9.3.1.tgz", + "integrity": "sha512-2/egrNDDnRaxVwK3A+cJq6UOlqOdedGA7JPqCeJjN2Zjk1/QB/6QUi3b714ScIGS7HafFXTyzJEOr5b44I3kvQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "debug": "^4.3.4", + "sax": "^1.2.4" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/builder-util-runtime/node_modules/sax": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/sax/-/sax-1.4.3.tgz", + "integrity": "sha512-yqYn1JhPczigF94DMS+shiDMjDowYO6y9+wB/4WgO0Y19jWYk0lQ4tuG5KI7kj4FTp1wxPj5IFfcrz/s1c3jjQ==", + "dev": true, + "license": "BlueOak-1.0.0" + }, + "node_modules/builder-util/node_modules/fs-extra": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", + "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/cacache": { + "version": "16.1.3", + "resolved": "https://registry.npmjs.org/cacache/-/cacache-16.1.3.tgz", + "integrity": "sha512-/+Emcj9DAXxX4cwlLmRI9c166RuL3w30zp4R7Joiv2cQTtTtA+jeuCAjH3ZlGnYS3tKENSrKhAzVVP9GVyzeYQ==", + "dev": true, + "license": "ISC", + "dependencies": { + "@npmcli/fs": "^2.1.0", + "@npmcli/move-file": "^2.0.0", + "chownr": "^2.0.0", + "fs-minipass": "^2.1.0", + "glob": "^8.0.1", + "infer-owner": "^1.0.4", + "lru-cache": "^7.7.1", + "minipass": "^3.1.6", + "minipass-collect": "^1.0.2", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.4", + "mkdirp": "^1.0.4", + "p-map": "^4.0.0", + "promise-inflight": "^1.0.1", + "rimraf": "^3.0.2", + "ssri": "^9.0.0", + "tar": "^6.1.11", + "unique-filename": "^2.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "node_modules/cacache/node_modules/brace-expansion": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz", + "integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/cacache/node_modules/glob": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz", + "integrity": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==", + "deprecated": "Glob versions prior to v9 are no longer supported", + "dev": true, + "license": "ISC", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^5.0.1", + "once": "^1.3.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/cacache/node_modules/lru-cache": { + "version": "7.18.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", + "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/cacache/node_modules/minimatch": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", + "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/cacache/node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "dev": true, + "license": "ISC", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/cacache/node_modules/rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "deprecated": "Rimraf versions prior to v4 are no longer supported", + "dev": true, + "license": "ISC", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/cacache/node_modules/rimraf/node_modules/brace-expansion": { + "version": "1.1.12", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz", + "integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/cacache/node_modules/rimraf/node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "deprecated": "Glob versions prior to v9 are no longer supported", + "dev": true, + "license": "ISC", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/cacache/node_modules/rimraf/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/cacache/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true, + "license": "ISC" + }, + "node_modules/cacheable-lookup": { + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/cacheable-lookup/-/cacheable-lookup-5.0.4.tgz", + "integrity": "sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10.6.0" + } + }, + "node_modules/cacheable-request": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-7.0.4.tgz", + "integrity": "sha512-v+p6ongsrp0yTGbJXjgxPow2+DL93DASP4kXCDKb8/bwRtt9OEF3whggkkDkGNzgcWy2XaF4a8nZglC7uElscg==", + "dev": true, + "license": "MIT", + "dependencies": { + "clone-response": "^1.0.2", + "get-stream": "^5.1.0", + "http-cache-semantics": "^4.0.0", + "keyv": "^4.0.0", + "lowercase-keys": "^2.0.0", + "normalize-url": "^6.0.1", + "responselike": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/call-bind": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.8.tgz", + "integrity": "sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.0", + "es-define-property": "^1.0.0", + "get-intrinsic": "^1.2.4", + "set-function-length": "^1.2.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/call-bind-apply-helpers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz", + "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/call-bound": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz", + "integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.2", + "get-intrinsic": "^1.3.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001760", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001760.tgz", + "integrity": "sha512-7AAMPcueWELt1p3mi13HR/LHH0TJLT11cnwDJEs3xA4+CK/PLKeO9Kl1oru24htkyUKtkGCvAx4ohB0Ttry8Dw==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "CC-BY-4.0" + }, + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/chownr": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", + "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=10" + } + }, + "node_modules/chromium-pickle-js": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/chromium-pickle-js/-/chromium-pickle-js-0.2.0.tgz", + "integrity": "sha512-1R5Fho+jBq0DDydt+/vHWj5KJNJCKdARKOCwZUen84I5BreWoLqRLANH1U87eJy1tiASPtMnGqJJq0ZsLoRPOw==", + "dev": true, + "license": "MIT" + }, + "node_modules/ci-info": { + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz", + "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/sibiraj-s" + } + ], + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/clean-stack": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", + "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/cli-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", + "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", + "dev": true, + "license": "MIT", + "dependencies": { + "restore-cursor": "^3.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/cli-spinners": { + "version": "2.9.2", + "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.9.2.tgz", + "integrity": "sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/cli-truncate": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-2.1.0.tgz", + "integrity": "sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "slice-ansi": "^3.0.0", + "string-width": "^4.2.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/cli-truncate/node_modules/slice-ansi": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-3.0.0.tgz", + "integrity": "sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "astral-regex": "^2.0.0", + "is-fullwidth-code-point": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/client-only": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz", + "integrity": "sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==", + "license": "MIT" + }, + "node_modules/cliui": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", + "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", + "dev": true, + "license": "ISC", + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/clone": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", + "integrity": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.8" + } + }, + "node_modules/clone-response": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.3.tgz", + "integrity": "sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==", + "dev": true, + "license": "MIT", + "dependencies": { + "mimic-response": "^1.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true, + "license": "MIT" + }, + "node_modules/combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "dev": true, + "license": "MIT", + "dependencies": { + "delayed-stream": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/commander": { + "version": "12.1.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-12.1.0.tgz", + "integrity": "sha512-Vw8qHK3bZM9y/P10u3Vib8o/DdkvA2OtPtZvD871QKjy74Wj1WSKFILMPRPSdUSx5RFK1arlJzEtA4PkFgnbuA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + } + }, + "node_modules/compare-version": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/compare-version/-/compare-version-0.1.2.tgz", + "integrity": "sha512-pJDh5/4wrEnXX/VWRZvruAGHkzKdr46z11OlTPN+VrATlWWhSKewNCJ1futCO5C7eJB3nPMFZA1LeYtcFboZ2A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true, + "license": "MIT" + }, + "node_modules/config-file-ts": { + "version": "0.2.8-rc1", + "resolved": "https://registry.npmjs.org/config-file-ts/-/config-file-ts-0.2.8-rc1.tgz", + "integrity": "sha512-GtNECbVI82bT4RiDIzBSVuTKoSHufnU7Ce7/42bkWZJZFLjmDF2WBpVsvRkhKCfKBnTBb3qZrBwPpFBU/Myvhg==", + "dev": true, + "license": "MIT", + "dependencies": { + "glob": "^10.3.12", + "typescript": "^5.4.3" + } + }, + "node_modules/config-file-ts/node_modules/brace-expansion": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz", + "integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/config-file-ts/node_modules/glob": { + "version": "10.5.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.5.0.tgz", + "integrity": "sha512-DfXN8DfhJ7NH3Oe7cFmu3NCu1wKbkReJ8TorzSAFbSKrlNaQSKfIzqYqVY8zlbs2NLBbWpRiU52GX2PbaBVNkg==", + "dev": true, + "license": "ISC", + "dependencies": { + "foreground-child": "^3.1.0", + "jackspeak": "^3.1.2", + "minimatch": "^9.0.4", + "minipass": "^7.1.2", + "package-json-from-dist": "^1.0.0", + "path-scurry": "^1.11.1" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/config-file-ts/node_modules/lru-cache": { + "version": "10.4.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", + "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", + "dev": true, + "license": "ISC" + }, + "node_modules/config-file-ts/node_modules/minimatch": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/config-file-ts/node_modules/path-scurry": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz", + "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==", + "dev": true, + "license": "BlueOak-1.0.0", + "dependencies": { + "lru-cache": "^10.2.0", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" + }, + "engines": { + "node": ">=16 || 14 >=14.18" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/convert-source-map": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", + "dev": true, + "license": "MIT" + }, + "node_modules/core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==", + "dev": true, + "license": "MIT", + "optional": true + }, + "node_modules/crc": { + "version": "3.8.0", + "resolved": "https://registry.npmjs.org/crc/-/crc-3.8.0.tgz", + "integrity": "sha512-iX3mfgcTMIq3ZKLIsVFAbv7+Mc10kxabAGQb8HvjA1o3T1PIYprbakQ65d3I+2HGHt6nSKkM9PYjgoJO2KcFBQ==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "buffer": "^5.1.0" + } + }, + "node_modules/cross-dirname": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/cross-dirname/-/cross-dirname-0.1.0.tgz", + "integrity": "sha512-+R08/oI0nl3vfPcqftZRpytksBXDzOUveBq/NBVx0sUp1axwzPQrKinNx5yd5sxPu8j1wIy8AfnVQ+5eFdha6Q==", + "dev": true, + "license": "MIT", + "optional": true, + "peer": true + }, + "node_modules/cross-env": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-env/-/cross-env-7.0.3.tgz", + "integrity": "sha512-+/HKd6EgcQCJGh2PSjZuUitQBQynKor4wrFbRg4DtAgS1aWO+gU52xpH7M9ScGgXSYmAVS9bIJ8EzuaGw0oNAw==", + "dev": true, + "license": "MIT", + "dependencies": { + "cross-spawn": "^7.0.1" + }, + "bin": { + "cross-env": "src/bin/cross-env.js", + "cross-env-shell": "src/bin/cross-env-shell.js" + }, + "engines": { + "node": ">=10.14", + "npm": ">=6", + "yarn": ">=1" + } + }, + "node_modules/cross-spawn": { + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", + "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", + "dev": true, + "license": "MIT", + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/csstype": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.2.3.tgz", + "integrity": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/damerau-levenshtein": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz", + "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==", + "dev": true, + "license": "BSD-2-Clause" + }, + "node_modules/data-view-buffer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/data-view-buffer/-/data-view-buffer-1.0.2.tgz", + "integrity": "sha512-EmKO5V3OLXh1rtK2wgXRansaK1/mtVdTUEiEI0W8RkvgT05kfxaH29PliLnpLP73yYO6142Q72QNa8Wx/A5CqQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/data-view-byte-length": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/data-view-byte-length/-/data-view-byte-length-1.0.2.tgz", + "integrity": "sha512-tuhGbE6CfTM9+5ANGf+oQb72Ky/0+s3xKUpHvShfiz2RxMFgFPjsXuRLBVMtvMs15awe45SRb83D6wH4ew6wlQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/inspect-js" + } + }, + "node_modules/data-view-byte-offset": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/data-view-byte-offset/-/data-view-byte-offset-1.0.1.tgz", + "integrity": "sha512-BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/debug": { + "version": "4.4.3", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz", + "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==", + "dev": true, + "license": "MIT", + "dependencies": { + "ms": "^2.1.3" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/decompress-response": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz", + "integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "mimic-response": "^3.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/decompress-response/node_modules/mimic-response": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz", + "integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/defaults": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.4.tgz", + "integrity": "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==", + "dev": true, + "license": "MIT", + "dependencies": { + "clone": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/defer-to-connect": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-2.0.1.tgz", + "integrity": "sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + } + }, + "node_modules/define-data-property": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", + "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "gopd": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/define-lazy-prop": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz", + "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/define-properties": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", + "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", + "dev": true, + "license": "MIT", + "dependencies": { + "define-data-property": "^1.0.1", + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/detect-libc": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.2.tgz", + "integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==", + "devOptional": true, + "license": "Apache-2.0", + "engines": { + "node": ">=8" + } + }, + "node_modules/detect-node": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz", + "integrity": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==", + "dev": true, + "license": "MIT", + "optional": true + }, + "node_modules/dir-compare": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/dir-compare/-/dir-compare-4.2.0.tgz", + "integrity": "sha512-2xMCmOoMrdQIPHdsTawECdNPwlVFB9zGcz3kuhmBO6U3oU+UQjsue0i8ayLKpgBcm+hcXPMVSGUN9d+pvJ6+VQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "minimatch": "^3.0.5", + "p-limit": "^3.1.0 " + } + }, + "node_modules/dmg-builder": { + "version": "26.0.12", + "resolved": "https://registry.npmjs.org/dmg-builder/-/dmg-builder-26.0.12.tgz", + "integrity": "sha512-59CAAjAhTaIMCN8y9kD573vDkxbs1uhDcrFLHSgutYdPcGOU35Rf95725snvzEOy4BFB7+eLJ8djCNPmGwG67w==", + "dev": true, + "license": "MIT", + "dependencies": { + "app-builder-lib": "26.0.12", + "builder-util": "26.0.11", + "builder-util-runtime": "9.3.1", + "fs-extra": "^10.1.0", + "iconv-lite": "^0.6.2", + "js-yaml": "^4.1.0" + }, + "optionalDependencies": { + "dmg-license": "^1.0.11" + } + }, + "node_modules/dmg-builder/node_modules/fs-extra": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", + "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/dmg-license": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/dmg-license/-/dmg-license-1.0.11.tgz", + "integrity": "sha512-ZdzmqwKmECOWJpqefloC5OJy1+WZBBse5+MR88z9g9Zn4VY+WYUkAyojmhzJckH5YbbZGcYIuGAkY5/Ys5OM2Q==", + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "dependencies": { + "@types/plist": "^3.0.1", + "@types/verror": "^1.10.3", + "ajv": "^6.10.0", + "crc": "^3.8.0", + "iconv-corefoundation": "^1.1.7", + "plist": "^3.0.4", + "smart-buffer": "^4.0.2", + "verror": "^1.10.0" + }, + "bin": { + "dmg-license": "bin/dmg-license.js" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/dotenv": { + "version": "16.6.1", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.6.1.tgz", + "integrity": "sha512-uBq4egWHTcTt33a72vpSG0z3HnPuIl6NqYcTrKEg2azoEyl2hpW0zqlxysq2pK9HlDIHyHyakeYaYnSAwd8bow==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://dotenvx.com" + } + }, + "node_modules/dotenv-expand": { + "version": "11.0.7", + "resolved": "https://registry.npmjs.org/dotenv-expand/-/dotenv-expand-11.0.7.tgz", + "integrity": "sha512-zIHwmZPRshsCdpMDyVsqGmgyP0yT8GAgXUnkdAoJisxvf33k7yO6OuoKmcTGuXPWSsm8Oh88nZicRLA9Y0rUeA==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "dotenv": "^16.4.5" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://dotenvx.com" + } + }, + "node_modules/dunder-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz", + "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.1", + "es-errors": "^1.3.0", + "gopd": "^1.2.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/eastasianwidth": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", + "dev": true, + "license": "MIT" + }, + "node_modules/ejs": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/ejs/-/ejs-3.1.10.tgz", + "integrity": "sha512-UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "jake": "^10.8.5" + }, + "bin": { + "ejs": "bin/cli.js" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/electron": { + "version": "28.3.3", + "resolved": "https://registry.npmjs.org/electron/-/electron-28.3.3.tgz", + "integrity": "sha512-ObKMLSPNhomtCOBAxFS8P2DW/4umkh72ouZUlUKzXGtYuPzgr1SYhskhFWgzAsPtUzhL2CzyV2sfbHcEW4CXqw==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "dependencies": { + "@electron/get": "^2.0.0", + "@types/node": "^18.11.18", + "extract-zip": "^2.0.1" + }, + "bin": { + "electron": "cli.js" + }, + "engines": { + "node": ">= 12.20.55" + } + }, + "node_modules/electron-builder": { + "version": "26.0.12", + "resolved": "https://registry.npmjs.org/electron-builder/-/electron-builder-26.0.12.tgz", + "integrity": "sha512-cD1kz5g2sgPTMFHjLxfMjUK5JABq3//J4jPswi93tOPFz6btzXYtK5NrDt717NRbukCUDOrrvmYVOWERlqoiXA==", + "dev": true, + "license": "MIT", + "dependencies": { + "app-builder-lib": "26.0.12", + "builder-util": "26.0.11", + "builder-util-runtime": "9.3.1", + "chalk": "^4.1.2", + "dmg-builder": "26.0.12", + "fs-extra": "^10.1.0", + "is-ci": "^3.0.0", + "lazy-val": "^1.0.5", + "simple-update-notifier": "2.0.0", + "yargs": "^17.6.2" + }, + "bin": { + "electron-builder": "cli.js", + "install-app-deps": "install-app-deps.js" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/electron-builder-squirrel-windows": { + "version": "26.0.12", + "resolved": "https://registry.npmjs.org/electron-builder-squirrel-windows/-/electron-builder-squirrel-windows-26.0.12.tgz", + "integrity": "sha512-kpwXM7c/ayRUbYVErQbsZ0nQZX4aLHQrPEG9C4h9vuJCXylwFH8a7Jgi2VpKIObzCXO7LKHiCw4KdioFLFOgqA==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "app-builder-lib": "26.0.12", + "builder-util": "26.0.11", + "electron-winstaller": "5.4.0" + } + }, + "node_modules/electron-builder/node_modules/fs-extra": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", + "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/electron-publish": { + "version": "26.0.11", + "resolved": "https://registry.npmjs.org/electron-publish/-/electron-publish-26.0.11.tgz", + "integrity": "sha512-a8QRH0rAPIWH9WyyS5LbNvW9Ark6qe63/LqDB7vu2JXYpi0Gma5Q60Dh4tmTqhOBQt0xsrzD8qE7C+D7j+B24A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/fs-extra": "^9.0.11", + "builder-util": "26.0.11", + "builder-util-runtime": "9.3.1", + "chalk": "^4.1.2", + "form-data": "^4.0.0", + "fs-extra": "^10.1.0", + "lazy-val": "^1.0.5", + "mime": "^2.5.2" + } + }, + "node_modules/electron-publish/node_modules/@types/fs-extra": { + "version": "9.0.13", + "resolved": "https://registry.npmjs.org/@types/fs-extra/-/fs-extra-9.0.13.tgz", + "integrity": "sha512-nEnwB++1u5lVDM2UI4c1+5R+FYaKfaAzS4OococimjVm3nQw3TuzH5UNsocrcTBbhnerblyHj4A49qXbIiZdpA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/electron-publish/node_modules/fs-extra": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", + "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/electron-to-chromium": { + "version": "1.5.267", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.267.tgz", + "integrity": "sha512-0Drusm6MVRXSOJpGbaSVgcQsuB4hEkMpHXaVstcPmhu5LIedxs1xNK/nIxmQIU/RPC0+1/o0AVZfBTkTNJOdUw==", + "license": "ISC" + }, + "node_modules/electron-winstaller": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/electron-winstaller/-/electron-winstaller-5.4.0.tgz", + "integrity": "sha512-bO3y10YikuUwUuDUQRM4KfwNkKhnpVO7IPdbsrejwN9/AABJzzTQ4GeHwyzNSrVO+tEH3/Np255a3sVZpZDjvg==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "peer": true, + "dependencies": { + "@electron/asar": "^3.2.1", + "debug": "^4.1.1", + "fs-extra": "^7.0.1", + "lodash": "^4.17.21", + "temp": "^0.9.0" + }, + "engines": { + "node": ">=8.0.0" + }, + "optionalDependencies": { + "@electron/windows-sign": "^1.1.2" + } + }, + "node_modules/electron-winstaller/node_modules/fs-extra": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-7.0.1.tgz", + "integrity": "sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "graceful-fs": "^4.1.2", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + }, + "engines": { + "node": ">=6 <7 || >=8" + } + }, + "node_modules/electron-winstaller/node_modules/jsonfile": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", + "integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==", + "dev": true, + "license": "MIT", + "peer": true, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/electron-winstaller/node_modules/universalify": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "dev": true, + "license": "MIT", + "peer": true, + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/electron/node_modules/@types/node": { + "version": "18.19.130", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.19.130.tgz", + "integrity": "sha512-GRaXQx6jGfL8sKfaIDD6OupbIHBr9jv7Jnaml9tB7l4v068PAOXqfcujMMo5PhbIs6ggR1XODELqahT2R8v0fg==", + "dev": true, + "license": "MIT", + "dependencies": { + "undici-types": "~5.26.4" + } + }, + "node_modules/electron/node_modules/undici-types": { + "version": "5.26.5", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz", + "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==", + "dev": true, + "license": "MIT" + }, + "node_modules/elementtree": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/elementtree/-/elementtree-0.1.7.tgz", + "integrity": "sha512-wkgGT6kugeQk/P6VZ/f4T+4HB41BVgNBq5CDIZVbQ02nvTVqAiVTbskxxu3eA/X96lMlfYOwnLQpN2v5E1zDEg==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "sax": "1.1.4" + }, + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", + "dev": true, + "license": "MIT" + }, + "node_modules/encoding": { + "version": "0.1.13", + "resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.13.tgz", + "integrity": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "iconv-lite": "^0.6.2" + } + }, + "node_modules/end-of-stream": { + "version": "1.4.5", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.5.tgz", + "integrity": "sha512-ooEGc6HP26xXq/N+GCGOT0JKCLDGrq2bQUZrQ7gyrJiZANJ/8YDTxTpQBXGMn+WbIQXNVpyWymm7KYVICQnyOg==", + "dev": true, + "license": "MIT", + "dependencies": { + "once": "^1.4.0" + } + }, + "node_modules/enhanced-resolve": { + "version": "5.18.3", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.18.3.tgz", + "integrity": "sha512-d4lC8xfavMeBjzGr2vECC3fsGXziXZQyJxD868h2M/mBI3PwAuODxAkLkq5HYuvrPYcUtiLzsTo8U3PgX3Ocww==", + "dev": true, + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.2.4", + "tapable": "^2.2.0" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/env-paths": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz", + "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/err-code": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/err-code/-/err-code-2.0.3.tgz", + "integrity": "sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==", + "dev": true, + "license": "MIT" + }, + "node_modules/es-abstract": { + "version": "1.24.0", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.24.0.tgz", + "integrity": "sha512-WSzPgsdLtTcQwm4CROfS5ju2Wa1QQcVeT37jFjYzdFz1r9ahadC8B8/a4qxJxM+09F18iumCdRmlr96ZYkQvEg==", + "dev": true, + "license": "MIT", + "dependencies": { + "array-buffer-byte-length": "^1.0.2", + "arraybuffer.prototype.slice": "^1.0.4", + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.8", + "call-bound": "^1.0.4", + "data-view-buffer": "^1.0.2", + "data-view-byte-length": "^1.0.2", + "data-view-byte-offset": "^1.0.1", + "es-define-property": "^1.0.1", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.1.1", + "es-set-tostringtag": "^2.1.0", + "es-to-primitive": "^1.3.0", + "function.prototype.name": "^1.1.8", + "get-intrinsic": "^1.3.0", + "get-proto": "^1.0.1", + "get-symbol-description": "^1.1.0", + "globalthis": "^1.0.4", + "gopd": "^1.2.0", + "has-property-descriptors": "^1.0.2", + "has-proto": "^1.2.0", + "has-symbols": "^1.1.0", + "hasown": "^2.0.2", + "internal-slot": "^1.1.0", + "is-array-buffer": "^3.0.5", + "is-callable": "^1.2.7", + "is-data-view": "^1.0.2", + "is-negative-zero": "^2.0.3", + "is-regex": "^1.2.1", + "is-set": "^2.0.3", + "is-shared-array-buffer": "^1.0.4", + "is-string": "^1.1.1", + "is-typed-array": "^1.1.15", + "is-weakref": "^1.1.1", + "math-intrinsics": "^1.1.0", + "object-inspect": "^1.13.4", + "object-keys": "^1.1.1", + "object.assign": "^4.1.7", + "own-keys": "^1.0.1", + "regexp.prototype.flags": "^1.5.4", + "safe-array-concat": "^1.1.3", + "safe-push-apply": "^1.0.0", + "safe-regex-test": "^1.1.0", + "set-proto": "^1.0.0", + "stop-iteration-iterator": "^1.1.0", + "string.prototype.trim": "^1.2.10", + "string.prototype.trimend": "^1.0.9", + "string.prototype.trimstart": "^1.0.8", + "typed-array-buffer": "^1.0.3", + "typed-array-byte-length": "^1.0.3", + "typed-array-byte-offset": "^1.0.4", + "typed-array-length": "^1.0.7", + "unbox-primitive": "^1.1.0", + "which-typed-array": "^1.1.19" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/es-define-property": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz", + "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-errors": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-iterator-helpers": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-iterator-helpers/-/es-iterator-helpers-1.2.1.tgz", + "integrity": "sha512-uDn+FE1yrDzyC0pCo961B2IHbdM8y/ACZsKD4dG6WqrjV53BADjwa7D+1aom2rsNVfLyDgU/eigvlJGJ08OQ4w==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.3", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.6", + "es-errors": "^1.3.0", + "es-set-tostringtag": "^2.0.3", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.6", + "globalthis": "^1.0.4", + "gopd": "^1.2.0", + "has-property-descriptors": "^1.0.2", + "has-proto": "^1.2.0", + "has-symbols": "^1.1.0", + "internal-slot": "^1.1.0", + "iterator.prototype": "^1.1.4", + "safe-array-concat": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-object-atoms": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz", + "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-set-tostringtag": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz", + "integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.6", + "has-tostringtag": "^1.0.2", + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-shim-unscopables": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.1.0.tgz", + "integrity": "sha512-d9T8ucsEhh8Bi1woXCf+TIKDIROLG5WCkxg8geBCbvk22kzwC5G2OnXVMO6FUsvQlgUUXQ2itephWDLqDzbeCw==", + "dev": true, + "license": "MIT", + "dependencies": { + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-to-primitive": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.3.0.tgz", + "integrity": "sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-callable": "^1.2.7", + "is-date-object": "^1.0.5", + "is-symbol": "^1.0.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/es6-error": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/es6-error/-/es6-error-4.1.1.tgz", + "integrity": "sha512-Um/+FxMr9CISWh0bi5Zv0iOD+4cFh5qLeks1qhAopKVAJw3drgKbKySikp7wGhDL0HPeaja0P5ULZrxLkniUVg==", + "dev": true, + "license": "MIT", + "optional": true + }, + "node_modules/escalade": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint": { + "version": "9.39.1", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-9.39.1.tgz", + "integrity": "sha512-BhHmn2yNOFA9H9JmmIVKJmd288g9hrVRDkdoIgRCRuSySRUHH7r/DI6aAXW9T1WwUuY3DFgrcaqB+deURBLR5g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@eslint-community/eslint-utils": "^4.8.0", + "@eslint-community/regexpp": "^4.12.1", + "@eslint/config-array": "^0.21.1", + "@eslint/config-helpers": "^0.4.2", + "@eslint/core": "^0.17.0", + "@eslint/eslintrc": "^3.3.1", + "@eslint/js": "9.39.1", + "@eslint/plugin-kit": "^0.4.1", + "@humanfs/node": "^0.16.6", + "@humanwhocodes/module-importer": "^1.0.1", + "@humanwhocodes/retry": "^0.4.2", + "@types/estree": "^1.0.6", + "ajv": "^6.12.4", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.6", + "debug": "^4.3.2", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^8.4.0", + "eslint-visitor-keys": "^4.2.1", + "espree": "^10.4.0", + "esquery": "^1.5.0", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^8.0.0", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "ignore": "^5.2.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.2", + "natural-compare": "^1.4.0", + "optionator": "^0.9.3" + }, + "bin": { + "eslint": "bin/eslint.js" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://eslint.org/donate" + }, + "peerDependencies": { + "jiti": "*" + }, + "peerDependenciesMeta": { + "jiti": { + "optional": true + } + } + }, + "node_modules/eslint-config-next": { + "version": "16.0.5", + "resolved": "https://registry.npmjs.org/eslint-config-next/-/eslint-config-next-16.0.5.tgz", + "integrity": "sha512-9rBjZ/biSpolkIUiqvx/iwJJaz8sxJ6pKWSPptJenpj01HlWbCDeaA1v0yG3a71IIPMplxVCSXhmtP27SXqMdg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@next/eslint-plugin-next": "16.0.5", + "eslint-import-resolver-node": "^0.3.6", + "eslint-import-resolver-typescript": "^3.5.2", + "eslint-plugin-import": "^2.32.0", + "eslint-plugin-jsx-a11y": "^6.10.0", + "eslint-plugin-react": "^7.37.0", + "eslint-plugin-react-hooks": "^7.0.0", + "globals": "16.4.0", + "typescript-eslint": "^8.46.0" + }, + "peerDependencies": { + "eslint": ">=9.0.0", + "typescript": ">=3.3.1" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/eslint-config-next/node_modules/globals": { + "version": "16.4.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-16.4.0.tgz", + "integrity": "sha512-ob/2LcVVaVGCYN+r14cnwnoDPUufjiYgSqRhiFD0Q1iI4Odora5RE8Iv1D24hAz5oMophRGkGz+yuvQmmUMnMw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint-import-resolver-node": { + "version": "0.3.9", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz", + "integrity": "sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==", + "dev": true, + "license": "MIT", + "dependencies": { + "debug": "^3.2.7", + "is-core-module": "^2.13.0", + "resolve": "^1.22.4" + } + }, + "node_modules/eslint-import-resolver-node/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-import-resolver-typescript": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-3.10.1.tgz", + "integrity": "sha512-A1rHYb06zjMGAxdLSkN2fXPBwuSaQ0iO5M/hdyS0Ajj1VBaRp0sPD3dn1FhME3c/JluGFbwSxyCfqdSbtQLAHQ==", + "dev": true, + "license": "ISC", + "dependencies": { + "@nolyfill/is-core-module": "1.0.39", + "debug": "^4.4.0", + "get-tsconfig": "^4.10.0", + "is-bun-module": "^2.0.0", + "stable-hash": "^0.0.5", + "tinyglobby": "^0.2.13", + "unrs-resolver": "^1.6.2" + }, + "engines": { + "node": "^14.18.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint-import-resolver-typescript" + }, + "peerDependencies": { + "eslint": "*", + "eslint-plugin-import": "*", + "eslint-plugin-import-x": "*" + }, + "peerDependenciesMeta": { + "eslint-plugin-import": { + "optional": true + }, + "eslint-plugin-import-x": { + "optional": true + } + } + }, + "node_modules/eslint-module-utils": { + "version": "2.12.1", + "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.12.1.tgz", + "integrity": "sha512-L8jSWTze7K2mTg0vos/RuLRS5soomksDPoJLXIslC7c8Wmut3bx7CPpJijDcBZtxQ5lrbUdM+s0OlNbz0DCDNw==", + "dev": true, + "license": "MIT", + "dependencies": { + "debug": "^3.2.7" + }, + "engines": { + "node": ">=4" + }, + "peerDependenciesMeta": { + "eslint": { + "optional": true + } + } + }, + "node_modules/eslint-module-utils/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-plugin-import": { + "version": "2.32.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.32.0.tgz", + "integrity": "sha512-whOE1HFo/qJDyX4SnXzP4N6zOWn79WhnCUY/iDR0mPfQZO8wcYE4JClzI2oZrhBnnMUCBCHZhO6VQyoBU95mZA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@rtsao/scc": "^1.1.0", + "array-includes": "^3.1.9", + "array.prototype.findlastindex": "^1.2.6", + "array.prototype.flat": "^1.3.3", + "array.prototype.flatmap": "^1.3.3", + "debug": "^3.2.7", + "doctrine": "^2.1.0", + "eslint-import-resolver-node": "^0.3.9", + "eslint-module-utils": "^2.12.1", + "hasown": "^2.0.2", + "is-core-module": "^2.16.1", + "is-glob": "^4.0.3", + "minimatch": "^3.1.2", + "object.fromentries": "^2.0.8", + "object.groupby": "^1.0.3", + "object.values": "^1.2.1", + "semver": "^6.3.1", + "string.prototype.trimend": "^1.0.9", + "tsconfig-paths": "^3.15.0" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 || ^9" + } + }, + "node_modules/eslint-plugin-import/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-plugin-jsx-a11y": { + "version": "6.10.2", + "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.10.2.tgz", + "integrity": "sha512-scB3nz4WmG75pV8+3eRUQOHZlNSUhFNq37xnpgRkCCELU3XMvXAxLk1eqWWyE22Ki4Q01Fnsw9BA3cJHDPgn2Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "aria-query": "^5.3.2", + "array-includes": "^3.1.8", + "array.prototype.flatmap": "^1.3.2", + "ast-types-flow": "^0.0.8", + "axe-core": "^4.10.0", + "axobject-query": "^4.1.0", + "damerau-levenshtein": "^1.0.8", + "emoji-regex": "^9.2.2", + "hasown": "^2.0.2", + "jsx-ast-utils": "^3.3.5", + "language-tags": "^1.0.9", + "minimatch": "^3.1.2", + "object.fromentries": "^2.0.8", + "safe-regex-test": "^1.0.3", + "string.prototype.includes": "^2.0.1" + }, + "engines": { + "node": ">=4.0" + }, + "peerDependencies": { + "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9" + } + }, + "node_modules/eslint-plugin-react": { + "version": "7.37.5", + "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.37.5.tgz", + "integrity": "sha512-Qteup0SqU15kdocexFNAJMvCJEfa2xUKNV4CC1xsVMrIIqEy3SQ/rqyxCWNzfrd3/ldy6HMlD2e0JDVpDg2qIA==", + "dev": true, + "license": "MIT", + "dependencies": { + "array-includes": "^3.1.8", + "array.prototype.findlast": "^1.2.5", + "array.prototype.flatmap": "^1.3.3", + "array.prototype.tosorted": "^1.1.4", + "doctrine": "^2.1.0", + "es-iterator-helpers": "^1.2.1", + "estraverse": "^5.3.0", + "hasown": "^2.0.2", + "jsx-ast-utils": "^2.4.1 || ^3.0.0", + "minimatch": "^3.1.2", + "object.entries": "^1.1.9", + "object.fromentries": "^2.0.8", + "object.values": "^1.2.1", + "prop-types": "^15.8.1", + "resolve": "^2.0.0-next.5", + "semver": "^6.3.1", + "string.prototype.matchall": "^4.0.12", + "string.prototype.repeat": "^1.0.0" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7" + } + }, + "node_modules/eslint-plugin-react-hooks": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-7.0.1.tgz", + "integrity": "sha512-O0d0m04evaNzEPoSW+59Mezf8Qt0InfgGIBJnpC0h3NH/WjUAR7BIKUfysC6todmtiZ/A0oUVS8Gce0WhBrHsA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/core": "^7.24.4", + "@babel/parser": "^7.24.4", + "hermes-parser": "^0.25.1", + "zod": "^3.25.0 || ^4.0.0", + "zod-validation-error": "^3.5.0 || ^4.0.0" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0" + } + }, + "node_modules/eslint-plugin-react/node_modules/resolve": { + "version": "2.0.0-next.5", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.5.tgz", + "integrity": "sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/eslint-scope": { + "version": "8.4.0", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-8.4.0.tgz", + "integrity": "sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-visitor-keys": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.1.tgz", + "integrity": "sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/espree": { + "version": "10.4.0", + "resolved": "https://registry.npmjs.org/espree/-/espree-10.4.0.tgz", + "integrity": "sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "acorn": "^8.15.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^4.2.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/esquery": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.6.0.tgz", + "integrity": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "estraverse": "^5.1.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/exponential-backoff": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/exponential-backoff/-/exponential-backoff-3.1.3.tgz", + "integrity": "sha512-ZgEeZXj30q+I0EN+CbSSpIyPaJ5HVQD18Z1m+u1FXbAeT94mr1zw50q4q6jiiC447Nl/YTcIYSAftiGqetwXCA==", + "dev": true, + "license": "Apache-2.0" + }, + "node_modules/extract-zip": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-2.0.1.tgz", + "integrity": "sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "debug": "^4.1.1", + "get-stream": "^5.1.0", + "yauzl": "^2.10.0" + }, + "bin": { + "extract-zip": "cli.js" + }, + "engines": { + "node": ">= 10.17.0" + }, + "optionalDependencies": { + "@types/yauzl": "^2.9.1" + } + }, + "node_modules/extsprintf": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.4.1.tgz", + "integrity": "sha512-Wrk35e8ydCKDj/ArClo1VrPVmN8zph5V4AtHwIuHhvMXsKf73UT3BOD+azBIW+3wOJ4FhEH7zyaJCFvChjYvMA==", + "dev": true, + "engines": [ + "node >=0.6.0" + ], + "license": "MIT", + "optional": true + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true, + "license": "MIT" + }, + "node_modules/fast-glob": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.1.tgz", + "integrity": "sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "node_modules/fast-glob/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true, + "license": "MIT" + }, + "node_modules/fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", + "dev": true, + "license": "MIT" + }, + "node_modules/fastq": { + "version": "1.19.1", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.19.1.tgz", + "integrity": "sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==", + "dev": true, + "license": "ISC", + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/fd-slicer": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz", + "integrity": "sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==", + "dev": true, + "license": "MIT", + "dependencies": { + "pend": "~1.2.0" + } + }, + "node_modules/file-entry-cache": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-8.0.0.tgz", + "integrity": "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "flat-cache": "^4.0.0" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/filelist": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/filelist/-/filelist-1.0.4.tgz", + "integrity": "sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "minimatch": "^5.0.1" + } + }, + "node_modules/filelist/node_modules/brace-expansion": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz", + "integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/filelist/node_modules/minimatch": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", + "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/fill-range": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", + "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", + "dev": true, + "license": "MIT", + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dev": true, + "license": "MIT", + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/flat-cache": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-4.0.1.tgz", + "integrity": "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==", + "dev": true, + "license": "MIT", + "dependencies": { + "flatted": "^3.2.9", + "keyv": "^4.5.4" + }, + "engines": { + "node": ">=16" + } + }, + "node_modules/flatted": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.3.tgz", + "integrity": "sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==", + "dev": true, + "license": "ISC" + }, + "node_modules/for-each": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.5.tgz", + "integrity": "sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-callable": "^1.2.7" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/foreground-child": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.1.tgz", + "integrity": "sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==", + "dev": true, + "license": "ISC", + "dependencies": { + "cross-spawn": "^7.0.6", + "signal-exit": "^4.0.1" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/foreground-child/node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/form-data": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.5.tgz", + "integrity": "sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w==", + "dev": true, + "license": "MIT", + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "es-set-tostringtag": "^2.1.0", + "hasown": "^2.0.2", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/fs-extra": { + "version": "11.3.2", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.3.2.tgz", + "integrity": "sha512-Xr9F6z6up6Ws+NjzMCZc6WXg2YFRlrLP9NQDO3VQrWrfiojdhS56TzueT88ze0uBdCTwEIhQ3ptnmKeWGFAe0A==", + "dev": true, + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=14.14" + } + }, + "node_modules/fs-minipass": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", + "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", + "dev": true, + "license": "ISC", + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/fs-minipass/node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "dev": true, + "license": "ISC", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/fs-minipass/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true, + "license": "ISC" + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "dev": true, + "license": "ISC" + }, + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/function.prototype.name": { + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.8.tgz", + "integrity": "sha512-e5iwyodOHhbMr/yNrc7fDYG4qlbIvI5gajyzPnb5TCwyhjApznQh1BMFou9b30SevY43gCJKXycoCBjMbsuW0Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.3", + "define-properties": "^1.2.1", + "functions-have-names": "^1.2.3", + "hasown": "^2.0.2", + "is-callable": "^1.2.7" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/functions-have-names": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", + "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/generator-function": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/generator-function/-/generator-function-2.0.1.tgz", + "integrity": "sha512-SFdFmIJi+ybC0vjlHN0ZGVGHc3lgE0DxPAT0djjVg+kjOnSqclqmj0KQ7ykTOLP6YxoqOvuAODGdcHJn+43q3g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "dev": true, + "license": "ISC", + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/get-intrinsic": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz", + "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.2", + "es-define-property": "^1.0.1", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.1.1", + "function-bind": "^1.1.2", + "get-proto": "^1.0.1", + "gopd": "^1.2.0", + "has-symbols": "^1.1.0", + "hasown": "^2.0.2", + "math-intrinsics": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz", + "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==", + "dev": true, + "license": "MIT", + "dependencies": { + "dunder-proto": "^1.0.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/get-stream": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", + "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", + "dev": true, + "license": "MIT", + "dependencies": { + "pump": "^3.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/get-symbol-description": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.1.0.tgz", + "integrity": "sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.6" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-tsconfig": { + "version": "4.13.0", + "resolved": "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.13.0.tgz", + "integrity": "sha512-1VKTZJCwBrvbd+Wn3AOgQP/2Av+TfTCOlE4AcRJE72W1ksZXbAx8PPBR9RzgTeSPzlPMHrbANMH3LbltH73wxQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "resolve-pkg-maps": "^1.0.0" + }, + "funding": { + "url": "https://github.com/privatenumber/get-tsconfig?sponsor=1" + } + }, + "node_modules/glob": { + "version": "13.0.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-13.0.0.tgz", + "integrity": "sha512-tvZgpqk6fz4BaNZ66ZsRaZnbHvP/jG3uKJvAZOwEVUL4RTA5nJeeLYfyN9/VA8NX/V3IBG+hkeuGpKjvELkVhA==", + "dev": true, + "license": "BlueOak-1.0.0", + "dependencies": { + "minimatch": "^10.1.1", + "minipass": "^7.1.2", + "path-scurry": "^2.0.0" + }, + "engines": { + "node": "20 || >=22" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/glob/node_modules/minimatch": { + "version": "10.1.1", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.1.1.tgz", + "integrity": "sha512-enIvLvRAFZYXJzkCYG5RKmPfrFArdLv+R+lbQ53BmIMLIry74bjKzX6iHAm8WYamJkhSSEabrWN5D97XnKObjQ==", + "dev": true, + "license": "BlueOak-1.0.0", + "dependencies": { + "@isaacs/brace-expansion": "^5.0.0" + }, + "engines": { + "node": "20 || >=22" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/global-agent": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/global-agent/-/global-agent-3.0.0.tgz", + "integrity": "sha512-PT6XReJ+D07JvGoxQMkT6qji/jVNfX/h364XHZOWeRzy64sSFr+xJ5OX7LI3b4MPQzdL4H8Y8M0xzPpsVMwA8Q==", + "dev": true, + "license": "BSD-3-Clause", + "optional": true, + "dependencies": { + "boolean": "^3.0.1", + "es6-error": "^4.1.1", + "matcher": "^3.0.0", + "roarr": "^2.15.3", + "semver": "^7.3.2", + "serialize-error": "^7.0.1" + }, + "engines": { + "node": ">=10.0" + } + }, + "node_modules/global-agent/node_modules/semver": { + "version": "7.7.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz", + "integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==", + "dev": true, + "license": "ISC", + "optional": true, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/globals": { + "version": "14.0.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-14.0.0.tgz", + "integrity": "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/globalthis": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.4.tgz", + "integrity": "sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "define-properties": "^1.2.1", + "gopd": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/gopd": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz", + "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/got": { + "version": "11.8.6", + "resolved": "https://registry.npmjs.org/got/-/got-11.8.6.tgz", + "integrity": "sha512-6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@sindresorhus/is": "^4.0.0", + "@szmarczak/http-timer": "^4.0.5", + "@types/cacheable-request": "^6.0.1", + "@types/responselike": "^1.0.0", + "cacheable-lookup": "^5.0.3", + "cacheable-request": "^7.0.2", + "decompress-response": "^6.0.0", + "http2-wrapper": "^1.0.0-beta.5.2", + "lowercase-keys": "^2.0.0", + "p-cancelable": "^2.0.0", + "responselike": "^2.0.0" + }, + "engines": { + "node": ">=10.19.0" + }, + "funding": { + "url": "https://github.com/sindresorhus/got?sponsor=1" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "dev": true, + "license": "ISC" + }, + "node_modules/graphemer": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", + "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", + "dev": true, + "license": "MIT" + }, + "node_modules/has-bigints": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.1.0.tgz", + "integrity": "sha512-R3pbpkcIqv2Pm3dUwgjclDRVmWpTJW2DcMzcIhEXEx1oh/CEMObMm3KLmRJOdvhM7o4uQBnwr8pzRK2sJWIqfg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/has-property-descriptors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", + "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-define-property": "^1.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-proto": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.2.0.tgz", + "integrity": "sha512-KIL7eQPfHQRC8+XluaIw7BHUwwqL19bQn4hzNgdr+1wXoU0KKj6rufu47lhY7KbJR2C6T6+PfyN0Ea7wkSS+qQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "dunder-proto": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-symbols": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz", + "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-tostringtag": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", + "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-symbols": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/hermes-estree": { + "version": "0.25.1", + "resolved": "https://registry.npmjs.org/hermes-estree/-/hermes-estree-0.25.1.tgz", + "integrity": "sha512-0wUoCcLp+5Ev5pDW2OriHC2MJCbwLwuRx+gAqMTOkGKJJiBCLjtrvy4PWUGn6MIVefecRpzoOZ/UV6iGdOr+Cw==", + "dev": true, + "license": "MIT" + }, + "node_modules/hermes-parser": { + "version": "0.25.1", + "resolved": "https://registry.npmjs.org/hermes-parser/-/hermes-parser-0.25.1.tgz", + "integrity": "sha512-6pEjquH3rqaI6cYAXYPcz9MS4rY6R4ngRgrgfDshRptUZIc3lw0MCIJIGDj9++mfySOuPTHB4nrSW99BCvOPIA==", + "dev": true, + "license": "MIT", + "dependencies": { + "hermes-estree": "0.25.1" + } + }, + "node_modules/hosted-git-info": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-4.1.0.tgz", + "integrity": "sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==", + "dev": true, + "license": "ISC", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/hosted-git-info/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "license": "ISC", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/hosted-git-info/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true, + "license": "ISC" + }, + "node_modules/http-cache-semantics": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.2.0.tgz", + "integrity": "sha512-dTxcvPXqPvXBQpq5dUr6mEMJX4oIEFv6bwom3FDwKRDsuIjjJGANqhBuoAn9c1RQJIdAKav33ED65E2ys+87QQ==", + "dev": true, + "license": "BSD-2-Clause" + }, + "node_modules/http-proxy-agent": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-7.0.2.tgz", + "integrity": "sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==", + "dev": true, + "license": "MIT", + "dependencies": { + "agent-base": "^7.1.0", + "debug": "^4.3.4" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/http2-wrapper": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/http2-wrapper/-/http2-wrapper-1.0.3.tgz", + "integrity": "sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg==", + "dev": true, + "license": "MIT", + "dependencies": { + "quick-lru": "^5.1.1", + "resolve-alpn": "^1.0.0" + }, + "engines": { + "node": ">=10.19.0" + } + }, + "node_modules/https-proxy-agent": { + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.6.tgz", + "integrity": "sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==", + "dev": true, + "license": "MIT", + "dependencies": { + "agent-base": "^7.1.2", + "debug": "4" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/humanize-ms": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/humanize-ms/-/humanize-ms-1.2.1.tgz", + "integrity": "sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ms": "^2.0.0" + } + }, + "node_modules/iconv-corefoundation": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/iconv-corefoundation/-/iconv-corefoundation-1.1.7.tgz", + "integrity": "sha512-T10qvkw0zz4wnm560lOEg0PovVqUXuOFhhHAkixw8/sycy7TJt7v/RrkEKEQnAw2viPSJu6iAkErxnzR0g8PpQ==", + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "dependencies": { + "cli-truncate": "^2.1.0", + "node-addon-api": "^1.6.3" + }, + "engines": { + "node": "^8.11.2 || >=10" + } + }, + "node_modules/iconv-lite": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "dev": true, + "license": "MIT", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "BSD-3-Clause" + }, + "node_modules/ignore": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", + "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "node_modules/import-fresh": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.1.tgz", + "integrity": "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/indent-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", + "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/infer-owner": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/infer-owner/-/infer-owner-1.0.4.tgz", + "integrity": "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==", + "dev": true, + "license": "ISC" + }, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.", + "dev": true, + "license": "ISC", + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true, + "license": "ISC" + }, + "node_modules/ini": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/ini/-/ini-4.1.3.tgz", + "integrity": "sha512-X7rqawQBvfdjS10YU1y1YVreA3SsLrW9dX2CewP2EbBJM4ypVNLDkO5y04gejPwKIY9lR+7r9gn3rFPt/kmWFg==", + "dev": true, + "license": "ISC", + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/internal-slot": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.1.0.tgz", + "integrity": "sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "hasown": "^2.0.2", + "side-channel": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/ip-address": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/ip-address/-/ip-address-10.1.0.tgz", + "integrity": "sha512-XXADHxXmvT9+CRxhXg56LJovE+bmWnEWB78LB83VZTprKTmaC5QfruXocxzTZ2Kl0DNwKuBdlIhjL8LeY8Sf8Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 12" + } + }, + "node_modules/is-array-buffer": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.5.tgz", + "integrity": "sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.3", + "get-intrinsic": "^1.2.6" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-async-function": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-async-function/-/is-async-function-2.1.1.tgz", + "integrity": "sha512-9dgM/cZBnNvjzaMYHVoxxfPj2QXt22Ev7SuuPrs+xav0ukGB0S6d4ydZdEiM48kLx5kDV+QBPrpVnFyefL8kkQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "async-function": "^1.0.0", + "call-bound": "^1.0.3", + "get-proto": "^1.0.1", + "has-tostringtag": "^1.0.2", + "safe-regex-test": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-bigint": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.1.0.tgz", + "integrity": "sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-bigints": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-boolean-object": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.2.2.tgz", + "integrity": "sha512-wa56o2/ElJMYqjCjGkXri7it5FbebW5usLw/nPmCMs5DeZ7eziSYZhSmPRn0txqeW4LnAmQQU7FgqLpsEFKM4A==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "has-tostringtag": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-bun-module": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-bun-module/-/is-bun-module-2.0.0.tgz", + "integrity": "sha512-gNCGbnnnnFAUGKeZ9PdbyeGYJqewpmc2aKHUEMO5nQPWU9lOmv7jcmQIv+qHD8fXW6W7qfuCwX4rY9LNRjXrkQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "semver": "^7.7.1" + } + }, + "node_modules/is-bun-module/node_modules/semver": { + "version": "7.7.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz", + "integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/is-callable": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", + "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-ci": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-3.0.1.tgz", + "integrity": "sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ci-info": "^3.2.0" + }, + "bin": { + "is-ci": "bin.js" + } + }, + "node_modules/is-core-module": { + "version": "2.16.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz", + "integrity": "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==", + "dev": true, + "license": "MIT", + "dependencies": { + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-data-view": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-data-view/-/is-data-view-1.0.2.tgz", + "integrity": "sha512-RKtWF8pGmS87i2D6gqQu/l7EYRlVdfzemCJN/P3UOs//x1QE7mfhvzHIApBTRf7axvT6DMGwSwBXYCT0nfB9xw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "get-intrinsic": "^1.2.6", + "is-typed-array": "^1.1.13" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-date-object": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.1.0.tgz", + "integrity": "sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "has-tostringtag": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-docker": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", + "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", + "dev": true, + "license": "MIT", + "bin": { + "is-docker": "cli.js" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-finalizationregistry": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-finalizationregistry/-/is-finalizationregistry-1.1.1.tgz", + "integrity": "sha512-1pC6N8qWJbWoPtEjgcL2xyhQOP491EQjeUo3qTKcmV8YSDDJrOepfG8pcC7h/QgnQHYSv0mJ3Z/ZWxmatVrysg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-generator-function": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.1.2.tgz", + "integrity": "sha512-upqt1SkGkODW9tsGNG5mtXTXtECizwtS2kA161M+gJPc1xdb/Ax629af6YrTwcOeQHbewrPNlE5Dx7kzvXTizA==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.4", + "generator-function": "^2.0.0", + "get-proto": "^1.0.1", + "has-tostringtag": "^1.0.2", + "safe-regex-test": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-interactive": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz", + "integrity": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-lambda": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-lambda/-/is-lambda-1.0.1.tgz", + "integrity": "sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/is-map": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.3.tgz", + "integrity": "sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-negative-zero": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.3.tgz", + "integrity": "sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/is-number-object": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.1.1.tgz", + "integrity": "sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "has-tostringtag": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-regex": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.2.1.tgz", + "integrity": "sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "gopd": "^1.2.0", + "has-tostringtag": "^1.0.2", + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-set": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.3.tgz", + "integrity": "sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-shared-array-buffer": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.4.tgz", + "integrity": "sha512-ISWac8drv4ZGfwKl5slpHG9OwPNty4jOWPRIhBpxOoD+hqITiwuipOQ2bNthAzwA3B4fIjO4Nln74N0S9byq8A==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-string": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.1.1.tgz", + "integrity": "sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "has-tostringtag": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-symbol": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.1.1.tgz", + "integrity": "sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "has-symbols": "^1.1.0", + "safe-regex-test": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-typed-array": { + "version": "1.1.15", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.15.tgz", + "integrity": "sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "which-typed-array": "^1.1.16" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-unicode-supported": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", + "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-weakmap": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.2.tgz", + "integrity": "sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-weakref": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.1.1.tgz", + "integrity": "sha512-6i9mGWSlqzNMEqpCp93KwRS1uUOodk2OJ6b+sq7ZPDSy2WuI5NFIxp/254TytR8ftefexkWn5xNiHUNpPOfSew==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-weakset": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.4.tgz", + "integrity": "sha512-mfcwb6IzQyOKTs84CQMrOwW4gQcaTOAWJ0zzJCl2WSPDrWk/OzDaImWFH3djXhb24g4eudZfLRozAvPGw4d9hQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "get-intrinsic": "^1.2.6" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-wsl": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", + "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-docker": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/isarray": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", + "dev": true, + "license": "MIT" + }, + "node_modules/isbinaryfile": { + "version": "5.0.7", + "resolved": "https://registry.npmjs.org/isbinaryfile/-/isbinaryfile-5.0.7.tgz", + "integrity": "sha512-gnWD14Jh3FzS3CPhF0AxNOJ8CxqeblPTADzI38r0wt8ZyQl5edpy75myt08EG2oKvpyiqSqsx+Wkz9vtkbTqYQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 18.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/gjtorikian/" + } + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true, + "license": "ISC" + }, + "node_modules/iterator.prototype": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/iterator.prototype/-/iterator.prototype-1.1.5.tgz", + "integrity": "sha512-H0dkQoCa3b2VEeKQBOxFph+JAbcrQdE7KC0UkqwpLmv2EC4P41QXP+rqo9wYodACiG5/WM5s9oDApTU8utwj9g==", + "dev": true, + "license": "MIT", + "dependencies": { + "define-data-property": "^1.1.4", + "es-object-atoms": "^1.0.0", + "get-intrinsic": "^1.2.6", + "get-proto": "^1.0.0", + "has-symbols": "^1.1.0", + "set-function-name": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/jackspeak": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz", + "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==", + "dev": true, + "license": "BlueOak-1.0.0", + "dependencies": { + "@isaacs/cliui": "^8.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "optionalDependencies": { + "@pkgjs/parseargs": "^0.11.0" + } + }, + "node_modules/jake": { + "version": "10.9.4", + "resolved": "https://registry.npmjs.org/jake/-/jake-10.9.4.tgz", + "integrity": "sha512-wpHYzhxiVQL+IV05BLE2Xn34zW1S223hvjtqk0+gsPrwd/8JNLXJgZZM/iPFsYc1xyphF+6M6EvdE5E9MBGkDA==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "async": "^3.2.6", + "filelist": "^1.0.4", + "picocolors": "^1.1.1" + }, + "bin": { + "jake": "bin/cli.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jiti": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/jiti/-/jiti-2.6.1.tgz", + "integrity": "sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ==", + "dev": true, + "license": "MIT", + "bin": { + "jiti": "lib/jiti-cli.mjs" + } + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/js-yaml": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.1.tgz", + "integrity": "sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==", + "dev": true, + "license": "MIT", + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/jsesc": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz", + "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==", + "dev": true, + "license": "MIT", + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/json-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true, + "license": "MIT" + }, + "node_modules/json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", + "dev": true, + "license": "MIT" + }, + "node_modules/json-stringify-safe": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", + "integrity": "sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==", + "dev": true, + "license": "ISC", + "optional": true + }, + "node_modules/json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "dev": true, + "license": "MIT", + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/jsonfile": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.2.0.tgz", + "integrity": "sha512-FGuPw30AdOIUTRMC2OMRtQV+jkVj2cfPqSeWXv1NEAJ1qZ5zb1X6z1mFhbfOB/iy3ssJCD+3KuZ8r8C3uVFlAg==", + "dev": true, + "license": "MIT", + "dependencies": { + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/jsx-ast-utils": { + "version": "3.3.5", + "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.5.tgz", + "integrity": "sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "array-includes": "^3.1.6", + "array.prototype.flat": "^1.3.1", + "object.assign": "^4.1.4", + "object.values": "^1.1.6" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/keyv": { + "version": "4.5.4", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", + "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", + "dev": true, + "license": "MIT", + "dependencies": { + "json-buffer": "3.0.1" + } + }, + "node_modules/kleur": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-4.1.5.tgz", + "integrity": "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/language-subtag-registry": { + "version": "0.3.23", + "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.23.tgz", + "integrity": "sha512-0K65Lea881pHotoGEa5gDlMxt3pctLi2RplBb7Ezh4rRdLEOtgi7n4EwK9lamnUCkKBqaeKRVebTq6BAxSkpXQ==", + "dev": true, + "license": "CC0-1.0" + }, + "node_modules/language-tags": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.9.tgz", + "integrity": "sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==", + "dev": true, + "license": "MIT", + "dependencies": { + "language-subtag-registry": "^0.3.20" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/lazy-val": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/lazy-val/-/lazy-val-1.0.5.tgz", + "integrity": "sha512-0/BnGCCfyUMkBpeDgWihanIAF9JmZhHBgUhEqzvf+adhNGLoP6TaiI5oF8oyb3I45P+PcnrqihSf01M0l0G5+Q==", + "dev": true, + "license": "MIT" + }, + "node_modules/levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/lightningcss": { + "version": "1.30.2", + "resolved": "https://registry.npmjs.org/lightningcss/-/lightningcss-1.30.2.tgz", + "integrity": "sha512-utfs7Pr5uJyyvDETitgsaqSyjCb2qNRAtuqUeWIAKztsOYdcACf2KtARYXg2pSvhkt+9NfoaNY7fxjl6nuMjIQ==", + "dev": true, + "license": "MPL-2.0", + "dependencies": { + "detect-libc": "^2.0.3" + }, + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + }, + "optionalDependencies": { + "lightningcss-android-arm64": "1.30.2", + "lightningcss-darwin-arm64": "1.30.2", + "lightningcss-darwin-x64": "1.30.2", + "lightningcss-freebsd-x64": "1.30.2", + "lightningcss-linux-arm-gnueabihf": "1.30.2", + "lightningcss-linux-arm64-gnu": "1.30.2", + "lightningcss-linux-arm64-musl": "1.30.2", + "lightningcss-linux-x64-gnu": "1.30.2", + "lightningcss-linux-x64-musl": "1.30.2", + "lightningcss-win32-arm64-msvc": "1.30.2", + "lightningcss-win32-x64-msvc": "1.30.2" + } + }, + "node_modules/lightningcss-android-arm64": { + "version": "1.30.2", + "resolved": "https://registry.npmjs.org/lightningcss-android-arm64/-/lightningcss-android-arm64-1.30.2.tgz", + "integrity": "sha512-BH9sEdOCahSgmkVhBLeU7Hc9DWeZ1Eb6wNS6Da8igvUwAe0sqROHddIlvU06q3WyXVEOYDZ6ykBZQnjTbmo4+A==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-darwin-arm64": { + "version": "1.30.2", + "resolved": "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.30.2.tgz", + "integrity": "sha512-ylTcDJBN3Hp21TdhRT5zBOIi73P6/W0qwvlFEk22fkdXchtNTOU4Qc37SkzV+EKYxLouZ6M4LG9NfZ1qkhhBWA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-darwin-x64": { + "version": "1.30.2", + "resolved": "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.30.2.tgz", + "integrity": "sha512-oBZgKchomuDYxr7ilwLcyms6BCyLn0z8J0+ZZmfpjwg9fRVZIR5/GMXd7r9RH94iDhld3UmSjBM6nXWM2TfZTQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-freebsd-x64": { + "version": "1.30.2", + "resolved": "https://registry.npmjs.org/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.30.2.tgz", + "integrity": "sha512-c2bH6xTrf4BDpK8MoGG4Bd6zAMZDAXS569UxCAGcA7IKbHNMlhGQ89eRmvpIUGfKWNVdbhSbkQaWhEoMGmGslA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-linux-arm-gnueabihf": { + "version": "1.30.2", + "resolved": "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.30.2.tgz", + "integrity": "sha512-eVdpxh4wYcm0PofJIZVuYuLiqBIakQ9uFZmipf6LF/HRj5Bgm0eb3qL/mr1smyXIS1twwOxNWndd8z0E374hiA==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-linux-arm64-gnu": { + "version": "1.30.2", + "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.30.2.tgz", + "integrity": "sha512-UK65WJAbwIJbiBFXpxrbTNArtfuznvxAJw4Q2ZGlU8kPeDIWEX1dg3rn2veBVUylA2Ezg89ktszWbaQnxD/e3A==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-linux-arm64-musl": { + "version": "1.30.2", + "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.30.2.tgz", + "integrity": "sha512-5Vh9dGeblpTxWHpOx8iauV02popZDsCYMPIgiuw97OJ5uaDsL86cnqSFs5LZkG3ghHoX5isLgWzMs+eD1YzrnA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-linux-x64-gnu": { + "version": "1.30.2", + "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.30.2.tgz", + "integrity": "sha512-Cfd46gdmj1vQ+lR6VRTTadNHu6ALuw2pKR9lYq4FnhvgBc4zWY1EtZcAc6EffShbb1MFrIPfLDXD6Xprbnni4w==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-linux-x64-musl": { + "version": "1.30.2", + "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.30.2.tgz", + "integrity": "sha512-XJaLUUFXb6/QG2lGIW6aIk6jKdtjtcffUT0NKvIqhSBY3hh9Ch+1LCeH80dR9q9LBjG3ewbDjnumefsLsP6aiA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-win32-arm64-msvc": { + "version": "1.30.2", + "resolved": "https://registry.npmjs.org/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.30.2.tgz", + "integrity": "sha512-FZn+vaj7zLv//D/192WFFVA0RgHawIcHqLX9xuWiQt7P0PtdFEVaxgF9rjM/IRYHQXNnk61/H/gb2Ei+kUQ4xQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-win32-x64-msvc": { + "version": "1.30.2", + "resolved": "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.30.2.tgz", + "integrity": "sha512-5g1yc73p+iAkid5phb4oVFMB45417DkRevRbt/El/gKXJk4jid+vPFF/AXbxn05Aky8PapwzZrdJShv5C0avjw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", + "dev": true, + "license": "MIT" + }, + "node_modules/lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/log-symbols": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", + "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==", + "dev": true, + "license": "MIT", + "dependencies": { + "chalk": "^4.1.0", + "is-unicode-supported": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "js-tokens": "^3.0.0 || ^4.0.0" + }, + "bin": { + "loose-envify": "cli.js" + } + }, + "node_modules/lowercase-keys": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz", + "integrity": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dev": true, + "license": "ISC", + "dependencies": { + "yallist": "^3.0.2" + } + }, + "node_modules/lucide-react": { + "version": "0.555.0", + "resolved": "https://registry.npmjs.org/lucide-react/-/lucide-react-0.555.0.tgz", + "integrity": "sha512-D8FvHUGbxWBRQM90NZeIyhAvkFfsh3u9ekrMvJ30Z6gnpBHS6HC6ldLg7tL45hwiIz/u66eKDtdA23gwwGsAHA==", + "peerDependencies": { + "react": "^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0" + } + }, + "node_modules/magic-string": { + "version": "0.30.21", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.21.tgz", + "integrity": "sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.5.5" + } + }, + "node_modules/make-fetch-happen": { + "version": "10.2.1", + "resolved": "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-10.2.1.tgz", + "integrity": "sha512-NgOPbRiaQM10DYXvN3/hhGVI2M5MtITFryzBGxHM5p4wnFxsVCbxkrBrDsk+EZ5OB4jEOT7AjDxtdF+KVEFT7w==", + "dev": true, + "license": "ISC", + "dependencies": { + "agentkeepalive": "^4.2.1", + "cacache": "^16.1.0", + "http-cache-semantics": "^4.1.0", + "http-proxy-agent": "^5.0.0", + "https-proxy-agent": "^5.0.0", + "is-lambda": "^1.0.1", + "lru-cache": "^7.7.1", + "minipass": "^3.1.6", + "minipass-collect": "^1.0.2", + "minipass-fetch": "^2.0.3", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.4", + "negotiator": "^0.6.3", + "promise-retry": "^2.0.1", + "socks-proxy-agent": "^7.0.0", + "ssri": "^9.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "node_modules/make-fetch-happen/node_modules/agent-base": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", + "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "debug": "4" + }, + "engines": { + "node": ">= 6.0.0" + } + }, + "node_modules/make-fetch-happen/node_modules/http-proxy-agent": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz", + "integrity": "sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==", + "dev": true, + "license": "MIT", + "dependencies": { + "@tootallnate/once": "2", + "agent-base": "6", + "debug": "4" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/make-fetch-happen/node_modules/https-proxy-agent": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", + "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", + "dev": true, + "license": "MIT", + "dependencies": { + "agent-base": "6", + "debug": "4" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/make-fetch-happen/node_modules/lru-cache": { + "version": "7.18.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", + "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/make-fetch-happen/node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "dev": true, + "license": "ISC", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/make-fetch-happen/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true, + "license": "ISC" + }, + "node_modules/matcher": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/matcher/-/matcher-3.0.0.tgz", + "integrity": "sha512-OkeDaAZ/bQCxeFAozM55PKcKU0yJMPGifLwV4Qgjitu+5MoAfSQN4lsLJeXZ1b8w0x+/Emda6MZgXS1jvsapng==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "escape-string-regexp": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/math-intrinsics": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz", + "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "node_modules/micromatch": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", + "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", + "dev": true, + "license": "MIT", + "dependencies": { + "braces": "^3.0.3", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/mime": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-2.6.0.tgz", + "integrity": "sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==", + "dev": true, + "license": "MIT", + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "dev": true, + "license": "MIT", + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/mimic-response": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", + "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/minipass": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", + "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=16 || 14 >=14.17" + } + }, + "node_modules/minipass-collect": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/minipass-collect/-/minipass-collect-1.0.2.tgz", + "integrity": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==", + "dev": true, + "license": "ISC", + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/minipass-collect/node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "dev": true, + "license": "ISC", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/minipass-collect/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true, + "license": "ISC" + }, + "node_modules/minipass-fetch": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-2.1.2.tgz", + "integrity": "sha512-LT49Zi2/WMROHYoqGgdlQIZh8mLPZmOrN2NdJjMXxYe4nkN6FUyuPuOAOedNJDrx0IRGg9+4guZewtp8hE6TxA==", + "dev": true, + "license": "MIT", + "dependencies": { + "minipass": "^3.1.6", + "minipass-sized": "^1.0.3", + "minizlib": "^2.1.2" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + }, + "optionalDependencies": { + "encoding": "^0.1.13" + } + }, + "node_modules/minipass-fetch/node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "dev": true, + "license": "ISC", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/minipass-fetch/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true, + "license": "ISC" + }, + "node_modules/minipass-flush": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz", + "integrity": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==", + "dev": true, + "license": "ISC", + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/minipass-flush/node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "dev": true, + "license": "ISC", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/minipass-flush/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true, + "license": "ISC" + }, + "node_modules/minipass-pipeline": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz", + "integrity": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==", + "dev": true, + "license": "ISC", + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/minipass-pipeline/node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "dev": true, + "license": "ISC", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/minipass-pipeline/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true, + "license": "ISC" + }, + "node_modules/minipass-sized": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/minipass-sized/-/minipass-sized-1.0.3.tgz", + "integrity": "sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==", + "dev": true, + "license": "ISC", + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/minipass-sized/node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "dev": true, + "license": "ISC", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/minipass-sized/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true, + "license": "ISC" + }, + "node_modules/minizlib": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", + "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", + "dev": true, + "license": "MIT", + "dependencies": { + "minipass": "^3.0.0", + "yallist": "^4.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/minizlib/node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "dev": true, + "license": "ISC", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/minizlib/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true, + "license": "ISC" + }, + "node_modules/mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "dev": true, + "license": "MIT", + "bin": { + "mkdirp": "bin/cmd.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true, + "license": "MIT" + }, + "node_modules/nanoid": { + "version": "3.3.11", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz", + "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/napi-postinstall": { + "version": "0.3.4", + "resolved": "https://registry.npmjs.org/napi-postinstall/-/napi-postinstall-0.3.4.tgz", + "integrity": "sha512-PHI5f1O0EP5xJ9gQmFGMS6IZcrVvTjpXjz7Na41gTE7eE2hK11lg04CECCYEEjdc17EV4DO+fkGEtt7TpTaTiQ==", + "dev": true, + "license": "MIT", + "bin": { + "napi-postinstall": "lib/cli.js" + }, + "engines": { + "node": "^12.20.0 || ^14.18.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/napi-postinstall" + } + }, + "node_modules/native-run": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/native-run/-/native-run-2.0.1.tgz", + "integrity": "sha512-XfG1FBZLM50J10xH9361whJRC9SHZ0Bub4iNRhhI61C8Jv0e1ud19muex6sNKB51ibQNUJNuYn25MuYET/rE6w==", + "dev": true, + "license": "MIT", + "dependencies": { + "@ionic/utils-fs": "^3.1.7", + "@ionic/utils-terminal": "^2.3.4", + "bplist-parser": "^0.3.2", + "debug": "^4.3.4", + "elementtree": "^0.1.7", + "ini": "^4.1.1", + "plist": "^3.1.0", + "split2": "^4.2.0", + "through2": "^4.0.2", + "tslib": "^2.6.2", + "yauzl": "^2.10.0" + }, + "bin": { + "native-run": "bin/native-run" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", + "dev": true, + "license": "MIT" + }, + "node_modules/negotiator": { + "version": "0.6.4", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.4.tgz", + "integrity": "sha512-myRT3DiWPHqho5PrJaIRyaMv2kgYf0mUVgBNOYMuCH5Ki1yEiQaf/ZJuQ62nvpc44wL5WDbTX7yGJi1Neevw8w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/next": { + "version": "16.0.5", + "resolved": "https://registry.npmjs.org/next/-/next-16.0.5.tgz", + "integrity": "sha512-XUPsFqSqu/NDdPfn/cju9yfIedkDI7ytDoALD9todaSMxk1Z5e3WcbUjfI9xsanFTys7xz62lnRWNFqJordzkQ==", + "license": "MIT", + "dependencies": { + "@next/env": "16.0.5", + "@swc/helpers": "0.5.15", + "caniuse-lite": "^1.0.30001579", + "postcss": "8.4.31", + "styled-jsx": "5.1.6" + }, + "bin": { + "next": "dist/bin/next" + }, + "engines": { + "node": ">=20.9.0" + }, + "optionalDependencies": { + "@next/swc-darwin-arm64": "16.0.5", + "@next/swc-darwin-x64": "16.0.5", + "@next/swc-linux-arm64-gnu": "16.0.5", + "@next/swc-linux-arm64-musl": "16.0.5", + "@next/swc-linux-x64-gnu": "16.0.5", + "@next/swc-linux-x64-musl": "16.0.5", + "@next/swc-win32-arm64-msvc": "16.0.5", + "@next/swc-win32-x64-msvc": "16.0.5", + "sharp": "^0.34.4" + }, + "peerDependencies": { + "@opentelemetry/api": "^1.1.0", + "@playwright/test": "^1.51.1", + "babel-plugin-react-compiler": "*", + "react": "^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0", + "react-dom": "^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0", + "sass": "^1.3.0" + }, + "peerDependenciesMeta": { + "@opentelemetry/api": { + "optional": true + }, + "@playwright/test": { + "optional": true + }, + "babel-plugin-react-compiler": { + "optional": true + }, + "sass": { + "optional": true + } + } + }, + "node_modules/next/node_modules/postcss": { + "version": "8.4.31", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.31.tgz", + "integrity": "sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "nanoid": "^3.3.6", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/node-abi": { + "version": "3.85.0", + "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-3.85.0.tgz", + "integrity": "sha512-zsFhmbkAzwhTft6nd3VxcG0cvJsT70rL+BIGHWVq5fi6MwGrHwzqKaxXE+Hl2GmnGItnDKPPkO5/LQqjVkIdFg==", + "dev": true, + "license": "MIT", + "dependencies": { + "semver": "^7.3.5" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/node-abi/node_modules/semver": { + "version": "7.7.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz", + "integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/node-addon-api": { + "version": "1.7.2", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-1.7.2.tgz", + "integrity": "sha512-ibPK3iA+vaY1eEjESkQkM0BbCqFOaZMiXRTtdB0u7b4djtY6JnsjvPdUHVMg6xQt3B8fpTTWHI9A+ADjM9frzg==", + "dev": true, + "license": "MIT", + "optional": true + }, + "node_modules/node-api-version": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/node-api-version/-/node-api-version-0.2.1.tgz", + "integrity": "sha512-2xP/IGGMmmSQpI1+O/k72jF/ykvZ89JeuKX3TLJAYPDVLUalrshrLHkeVcCCZqG/eEa635cr8IBYzgnDvM2O8Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "semver": "^7.3.5" + } + }, + "node_modules/node-api-version/node_modules/semver": { + "version": "7.7.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz", + "integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/node-releases": { + "version": "2.0.27", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.27.tgz", + "integrity": "sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA==", + "license": "MIT" + }, + "node_modules/nopt": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/nopt/-/nopt-6.0.0.tgz", + "integrity": "sha512-ZwLpbTgdhuZUnZzjd7nb1ZV+4DoiC6/sfiVKok72ym/4Tlf+DFdlHYmT2JPmcNNWV6Pi3SDf1kT+A4r9RTuT9g==", + "dev": true, + "license": "ISC", + "dependencies": { + "abbrev": "^1.0.0" + }, + "bin": { + "nopt": "bin/nopt.js" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "node_modules/normalize-url": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-6.1.0.tgz", + "integrity": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-inspect": { + "version": "1.13.4", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz", + "integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object.assign": { + "version": "4.1.7", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.7.tgz", + "integrity": "sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.3", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0", + "has-symbols": "^1.1.0", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.entries": { + "version": "1.1.9", + "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.9.tgz", + "integrity": "sha512-8u/hfXFRBD1O0hPUjioLhoWFHRmt6tKA4/vZPyckBr18l1KE9uHrFaFaUi8MDRTpi4uak2goyPTSNJLXX2k2Hw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.4", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object.fromentries": { + "version": "2.0.8", + "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.8.tgz", + "integrity": "sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.groupby": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/object.groupby/-/object.groupby-1.0.3.tgz", + "integrity": "sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object.values": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.2.1.tgz", + "integrity": "sha512-gXah6aZrcUxjWg2zR2MwouP2eHlCBzdV4pygudehaKXSGW4v2AsRQUK+lwwXhii6KFZcunEnmSUoYp5CXibxtA==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.3", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dev": true, + "license": "ISC", + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "dev": true, + "license": "MIT", + "dependencies": { + "mimic-fn": "^2.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/open": { + "version": "8.4.2", + "resolved": "https://registry.npmjs.org/open/-/open-8.4.2.tgz", + "integrity": "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "define-lazy-prop": "^2.0.0", + "is-docker": "^2.1.1", + "is-wsl": "^2.2.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/optionator": { + "version": "0.9.4", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", + "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", + "dev": true, + "license": "MIT", + "dependencies": { + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0", + "word-wrap": "^1.2.5" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/ora": { + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/ora/-/ora-5.4.1.tgz", + "integrity": "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "bl": "^4.1.0", + "chalk": "^4.1.0", + "cli-cursor": "^3.1.0", + "cli-spinners": "^2.5.0", + "is-interactive": "^1.0.0", + "is-unicode-supported": "^0.1.0", + "log-symbols": "^4.1.0", + "strip-ansi": "^6.0.0", + "wcwidth": "^1.0.1" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/own-keys": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/own-keys/-/own-keys-1.0.1.tgz", + "integrity": "sha512-qFOyK5PjiWZd+QQIh+1jhdb9LpxTF0qs7Pm8o5QHYZ0M3vKqSqzsZaEB6oWlxZ+q2sJBMI/Ktgd2N5ZwQoRHfg==", + "dev": true, + "license": "MIT", + "dependencies": { + "get-intrinsic": "^1.2.6", + "object-keys": "^1.1.1", + "safe-push-apply": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/p-cancelable": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-2.1.1.tgz", + "integrity": "sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-map": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", + "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "aggregate-error": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/package-json-from-dist": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz", + "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==", + "dev": true, + "license": "BlueOak-1.0.0" + }, + "node_modules/parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dev": true, + "license": "MIT", + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true, + "license": "MIT" + }, + "node_modules/path-scurry": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-2.0.1.tgz", + "integrity": "sha512-oWyT4gICAu+kaA7QWk/jvCHWarMKNs6pXOGWKDTr7cw4IGcUbW+PeTfbaQiLGheFRpjo6O9J0PmyMfQPjH71oA==", + "dev": true, + "license": "BlueOak-1.0.0", + "dependencies": { + "lru-cache": "^11.0.0", + "minipass": "^7.1.2" + }, + "engines": { + "node": "20 || >=22" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/path-scurry/node_modules/lru-cache": { + "version": "11.2.4", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-11.2.4.tgz", + "integrity": "sha512-B5Y16Jr9LB9dHVkh6ZevG+vAbOsNOYCX+sXvFWFu7B3Iz5mijW3zdbMyhsh8ANd2mSWBYdJgnqi+mL7/LrOPYg==", + "dev": true, + "license": "BlueOak-1.0.0", + "engines": { + "node": "20 || >=22" + } + }, + "node_modules/pe-library": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/pe-library/-/pe-library-0.4.1.tgz", + "integrity": "sha512-eRWB5LBz7PpDu4PUlwT0PhnQfTQJlDDdPa35urV4Osrm0t0AqQFGn+UIkU3klZvwJ8KPO3VbBFsXquA6p6kqZw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12", + "npm": ">=6" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/jet2jet" + } + }, + "node_modules/pend": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz", + "integrity": "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==", + "dev": true, + "license": "MIT" + }, + "node_modules/picocolors": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", + "license": "ISC" + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/plist": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/plist/-/plist-3.1.0.tgz", + "integrity": "sha512-uysumyrvkUX0rX/dEVqt8gC3sTBzd4zoWfLeS29nb53imdaXVvLINYXTI2GNqzaMuvacNx4uJQ8+b3zXR0pkgQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@xmldom/xmldom": "^0.8.8", + "base64-js": "^1.5.1", + "xmlbuilder": "^15.1.1" + }, + "engines": { + "node": ">=10.4.0" + } + }, + "node_modules/possible-typed-array-names": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.1.0.tgz", + "integrity": "sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/postcss": { + "version": "8.5.6", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.6.tgz", + "integrity": "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "nanoid": "^3.3.11", + "picocolors": "^1.1.1", + "source-map-js": "^1.2.1" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/postject": { + "version": "1.0.0-alpha.6", + "resolved": "https://registry.npmjs.org/postject/-/postject-1.0.0-alpha.6.tgz", + "integrity": "sha512-b9Eb8h2eVqNE8edvKdwqkrY6O7kAwmI8kcnBv1NScolYJbo59XUF0noFq+lxbC1yN20bmC0WBEbDC5H/7ASb0A==", + "dev": true, + "license": "MIT", + "optional": true, + "peer": true, + "dependencies": { + "commander": "^9.4.0" + }, + "bin": { + "postject": "dist/cli.js" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/postject/node_modules/commander": { + "version": "9.5.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-9.5.0.tgz", + "integrity": "sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==", + "dev": true, + "license": "MIT", + "optional": true, + "peer": true, + "engines": { + "node": "^12.20.0 || >=14" + } + }, + "node_modules/prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/proc-log": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/proc-log/-/proc-log-2.0.1.tgz", + "integrity": "sha512-Kcmo2FhfDTXdcbfDH76N7uBYHINxc/8GW7UAVuVP9I+Va3uHSerrnKV6dLooga/gh7GlgzuCCr/eoldnL1muGw==", + "dev": true, + "license": "ISC", + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "node_modules/progress": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", + "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/promise-inflight": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz", + "integrity": "sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==", + "dev": true, + "license": "ISC" + }, + "node_modules/promise-retry": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/promise-retry/-/promise-retry-2.0.1.tgz", + "integrity": "sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==", + "dev": true, + "license": "MIT", + "dependencies": { + "err-code": "^2.0.2", + "retry": "^0.12.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/prompts": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", + "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "kleur": "^3.0.3", + "sisteransi": "^1.0.5" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/prompts/node_modules/kleur": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", + "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/prop-types": { + "version": "15.8.1", + "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", + "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", + "dev": true, + "license": "MIT", + "dependencies": { + "loose-envify": "^1.4.0", + "object-assign": "^4.1.1", + "react-is": "^16.13.1" + } + }, + "node_modules/pump": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.3.tgz", + "integrity": "sha512-todwxLMY7/heScKmntwQG8CXVkWUOdYxIvY2s0VWAAMh/nd8SoYiRaKjlr7+iCs984f2P8zvrfWcDDYVb73NfA==", + "dev": true, + "license": "MIT", + "dependencies": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "node_modules/punycode": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", + "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "node_modules/quick-lru": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz", + "integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/react": { + "version": "19.2.0", + "resolved": "https://registry.npmjs.org/react/-/react-19.2.0.tgz", + "integrity": "sha512-tmbWg6W31tQLeB5cdIBOicJDJRR2KzXsV7uSK9iNfLWQ5bIZfxuPEHp7M8wiHyHnn0DD1i7w3Zmin0FtkrwoCQ==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-dom": { + "version": "19.2.0", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-19.2.0.tgz", + "integrity": "sha512-UlbRu4cAiGaIewkPyiRGJk0imDN2T3JjieT6spoL2UeSf5od4n5LB/mQ4ejmxhCFT1tYe8IvaFulzynWovsEFQ==", + "license": "MIT", + "dependencies": { + "scheduler": "^0.27.0" + }, + "peerDependencies": { + "react": "^19.2.0" + } + }, + "node_modules/react-icons": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/react-icons/-/react-icons-5.5.0.tgz", + "integrity": "sha512-MEFcXdkP3dLo8uumGI5xN3lDFNsRtrjbOEKDLD7yv76v4wpnEq2Lt2qeHaQOr34I/wPN3s3+N08WkQ+CW37Xiw==", + "peerDependencies": { + "react": "*" + } + }, + "node_modules/react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/read-binary-file-arch": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/read-binary-file-arch/-/read-binary-file-arch-1.0.6.tgz", + "integrity": "sha512-BNg9EN3DD3GsDXX7Aa8O4p92sryjkmzYYgmgTAc6CA4uGLEDzFfxOxugu21akOxpcXHiEgsYkC6nPsQvLLLmEg==", + "dev": true, + "license": "MIT", + "dependencies": { + "debug": "^4.3.4" + }, + "bin": { + "read-binary-file-arch": "cli.js" + } + }, + "node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "dev": true, + "license": "MIT", + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/reflect.getprototypeof": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.10.tgz", + "integrity": "sha512-00o4I+DVrefhv+nX0ulyi3biSHCPDe+yLv5o/p6d/UVlirijB8E16FtfwSAi4g3tcqrQ4lRAqQSoFEZJehYEcw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.9", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0", + "get-intrinsic": "^1.2.7", + "get-proto": "^1.0.1", + "which-builtin-type": "^1.2.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/regexp.prototype.flags": { + "version": "1.5.4", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.4.tgz", + "integrity": "sha512-dYqgNSZbDwkaJ2ceRd9ojCGjBq+mOm9LmtXnAnEGyHhN/5R7iDW2TRw3h+o/jCFxus3P2LfWIIiwowAjANm7IA==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "define-properties": "^1.2.1", + "es-errors": "^1.3.0", + "get-proto": "^1.0.1", + "gopd": "^1.2.0", + "set-function-name": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/resedit": { + "version": "1.7.2", + "resolved": "https://registry.npmjs.org/resedit/-/resedit-1.7.2.tgz", + "integrity": "sha512-vHjcY2MlAITJhC0eRD/Vv8Vlgmu9Sd3LX9zZvtGzU5ZImdTN3+d6e/4mnTyV8vEbyf1sgNIrWxhWlrys52OkEA==", + "dev": true, + "license": "MIT", + "dependencies": { + "pe-library": "^0.4.1" + }, + "engines": { + "node": ">=12", + "npm": ">=6" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/jet2jet" + } + }, + "node_modules/resolve": { + "version": "1.22.11", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.11.tgz", + "integrity": "sha512-RfqAvLnMl313r7c9oclB1HhUEAezcpLjz95wFH4LVuhk9JF/r22qmVP9AMmOU4vMX7Q8pN8jwNg/CSpdFnMjTQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-core-module": "^2.16.1", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve-alpn": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/resolve-alpn/-/resolve-alpn-1.2.1.tgz", + "integrity": "sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==", + "dev": true, + "license": "MIT" + }, + "node_modules/resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/resolve-pkg-maps": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz", + "integrity": "sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/privatenumber/resolve-pkg-maps?sponsor=1" + } + }, + "node_modules/responselike": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/responselike/-/responselike-2.0.1.tgz", + "integrity": "sha512-4gl03wn3hj1HP3yzgdI7d3lCkF95F21Pz4BPGvKHinyQzALR5CapwC8yIi0Rh58DEMQ/SguC03wFj2k0M/mHhw==", + "dev": true, + "license": "MIT", + "dependencies": { + "lowercase-keys": "^2.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/restore-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", + "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", + "dev": true, + "license": "MIT", + "dependencies": { + "onetime": "^5.1.0", + "signal-exit": "^3.0.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/retry": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz", + "integrity": "sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "node_modules/reusify": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.1.0.tgz", + "integrity": "sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==", + "dev": true, + "license": "MIT", + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/rimraf": { + "version": "6.1.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-6.1.2.tgz", + "integrity": "sha512-cFCkPslJv7BAXJsYlK1dZsbP8/ZNLkCAQ0bi1hf5EKX2QHegmDFEFA6QhuYJlk7UDdc+02JjO80YSOrWPpw06g==", + "dev": true, + "license": "BlueOak-1.0.0", + "dependencies": { + "glob": "^13.0.0", + "package-json-from-dist": "^1.0.1" + }, + "bin": { + "rimraf": "dist/esm/bin.mjs" + }, + "engines": { + "node": "20 || >=22" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/roarr": { + "version": "2.15.4", + "resolved": "https://registry.npmjs.org/roarr/-/roarr-2.15.4.tgz", + "integrity": "sha512-CHhPh+UNHD2GTXNYhPWLnU8ONHdI+5DI+4EYIAOaiD63rHeYlZvyh8P+in5999TTSFgUYuKUAjzRI4mdh/p+2A==", + "dev": true, + "license": "BSD-3-Clause", + "optional": true, + "dependencies": { + "boolean": "^3.0.1", + "detect-node": "^2.0.4", + "globalthis": "^1.0.1", + "json-stringify-safe": "^5.0.1", + "semver-compare": "^1.0.0", + "sprintf-js": "^1.1.2" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/safe-array-concat": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.3.tgz", + "integrity": "sha512-AURm5f0jYEOydBj7VQlVvDrjeFgthDdEF5H1dP+6mNpoXOMo1quQqJ4wvJDyRZ9+pO3kGWoOdmV08cSv2aJV6Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.2", + "get-intrinsic": "^1.2.6", + "has-symbols": "^1.1.0", + "isarray": "^2.0.5" + }, + "engines": { + "node": ">=0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "node_modules/safe-push-apply": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/safe-push-apply/-/safe-push-apply-1.0.0.tgz", + "integrity": "sha512-iKE9w/Z7xCzUMIZqdBsp6pEQvwuEebH4vdpjcDWnyzaI6yl6O9FHvVpmGelvEHNsoY6wGblkxR6Zty/h00WiSA==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "isarray": "^2.0.5" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/safe-regex-test": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.1.0.tgz", + "integrity": "sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "es-errors": "^1.3.0", + "is-regex": "^1.2.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "dev": true, + "license": "MIT" + }, + "node_modules/sanitize-filename": { + "version": "1.6.3", + "resolved": "https://registry.npmjs.org/sanitize-filename/-/sanitize-filename-1.6.3.tgz", + "integrity": "sha512-y/52Mcy7aw3gRm7IrcGDFx/bCk4AhRh2eI9luHOQM86nZsqwiRkkq2GekHXBBD+SmPidc8i2PqtYZl+pWJ8Oeg==", + "dev": true, + "license": "WTFPL OR ISC", + "dependencies": { + "truncate-utf8-bytes": "^1.0.0" + } + }, + "node_modules/sax": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/sax/-/sax-1.1.4.tgz", + "integrity": "sha512-5f3k2PbGGp+YtKJjOItpg3P99IMD84E4HOvcfleTb5joCHNXYLsR9yWFPOYGgaeMPDubQILTCMdsFb2OMeOjtg==", + "dev": true, + "license": "ISC" + }, + "node_modules/scheduler": { + "version": "0.27.0", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.27.0.tgz", + "integrity": "sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==", + "license": "MIT" + }, + "node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/semver-compare": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/semver-compare/-/semver-compare-1.0.0.tgz", + "integrity": "sha512-YM3/ITh2MJ5MtzaM429anh+x2jiLVjqILF4m4oyQB18W7Ggea7BfqdH/wGMK7dDiMghv/6WG7znWMwUDzJiXow==", + "dev": true, + "license": "MIT", + "optional": true + }, + "node_modules/serialize-error": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/serialize-error/-/serialize-error-7.0.1.tgz", + "integrity": "sha512-8I8TjW5KMOKsZQTvoxjuSIa7foAwPWGOts+6o7sgjz41/qMD9VQHEDxi6PBvK2l0MXUmqZyNpUK+T2tQaaElvw==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "type-fest": "^0.13.1" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/set-function-length": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", + "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==", + "dev": true, + "license": "MIT", + "dependencies": { + "define-data-property": "^1.1.4", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/set-function-name": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.2.tgz", + "integrity": "sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "define-data-property": "^1.1.4", + "es-errors": "^1.3.0", + "functions-have-names": "^1.2.3", + "has-property-descriptors": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/set-proto": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/set-proto/-/set-proto-1.0.0.tgz", + "integrity": "sha512-RJRdvCo6IAnPdsvP/7m6bsQqNnn1FCBX5ZNtFL98MmFF/4xAIJTIg1YbHW5DC2W5SKZanrC6i4HsJqlajw/dZw==", + "dev": true, + "license": "MIT", + "dependencies": { + "dunder-proto": "^1.0.1", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/sharp": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.34.5.tgz", + "integrity": "sha512-Ou9I5Ft9WNcCbXrU9cMgPBcCK8LiwLqcbywW3t4oDV37n1pzpuNLsYiAV8eODnjbtQlSDwZ2cUEeQz4E54Hltg==", + "hasInstallScript": true, + "license": "Apache-2.0", + "optional": true, + "dependencies": { + "@img/colour": "^1.0.0", + "detect-libc": "^2.1.2", + "semver": "^7.7.3" + }, + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-darwin-arm64": "0.34.5", + "@img/sharp-darwin-x64": "0.34.5", + "@img/sharp-libvips-darwin-arm64": "1.2.4", + "@img/sharp-libvips-darwin-x64": "1.2.4", + "@img/sharp-libvips-linux-arm": "1.2.4", + "@img/sharp-libvips-linux-arm64": "1.2.4", + "@img/sharp-libvips-linux-ppc64": "1.2.4", + "@img/sharp-libvips-linux-riscv64": "1.2.4", + "@img/sharp-libvips-linux-s390x": "1.2.4", + "@img/sharp-libvips-linux-x64": "1.2.4", + "@img/sharp-libvips-linuxmusl-arm64": "1.2.4", + "@img/sharp-libvips-linuxmusl-x64": "1.2.4", + "@img/sharp-linux-arm": "0.34.5", + "@img/sharp-linux-arm64": "0.34.5", + "@img/sharp-linux-ppc64": "0.34.5", + "@img/sharp-linux-riscv64": "0.34.5", + "@img/sharp-linux-s390x": "0.34.5", + "@img/sharp-linux-x64": "0.34.5", + "@img/sharp-linuxmusl-arm64": "0.34.5", + "@img/sharp-linuxmusl-x64": "0.34.5", + "@img/sharp-wasm32": "0.34.5", + "@img/sharp-win32-arm64": "0.34.5", + "@img/sharp-win32-ia32": "0.34.5", + "@img/sharp-win32-x64": "0.34.5" + } + }, + "node_modules/sharp/node_modules/semver": { + "version": "7.7.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz", + "integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==", + "license": "ISC", + "optional": true, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "license": "MIT", + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/side-channel": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz", + "integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "object-inspect": "^1.13.3", + "side-channel-list": "^1.0.0", + "side-channel-map": "^1.0.1", + "side-channel-weakmap": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/side-channel-list": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.0.tgz", + "integrity": "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "object-inspect": "^1.13.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/side-channel-map": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz", + "integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.5", + "object-inspect": "^1.13.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/side-channel-weakmap": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz", + "integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.5", + "object-inspect": "^1.13.3", + "side-channel-map": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "dev": true, + "license": "ISC" + }, + "node_modules/simple-update-notifier": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/simple-update-notifier/-/simple-update-notifier-2.0.0.tgz", + "integrity": "sha512-a2B9Y0KlNXl9u/vsW6sTIu9vGEpfKu2wRV6l1H3XEas/0gUIzGzBoP/IouTcUQbm9JWZLH3COxyn03TYlFax6w==", + "dev": true, + "license": "MIT", + "dependencies": { + "semver": "^7.5.3" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/simple-update-notifier/node_modules/semver": { + "version": "7.7.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz", + "integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/sisteransi": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", + "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", + "dev": true, + "license": "MIT" + }, + "node_modules/slice-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz", + "integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "astral-regex": "^2.0.0", + "is-fullwidth-code-point": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/slice-ansi?sponsor=1" + } + }, + "node_modules/smart-buffer": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz", + "integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 6.0.0", + "npm": ">= 3.0.0" + } + }, + "node_modules/socks": { + "version": "2.8.7", + "resolved": "https://registry.npmjs.org/socks/-/socks-2.8.7.tgz", + "integrity": "sha512-HLpt+uLy/pxB+bum/9DzAgiKS8CX1EvbWxI4zlmgGCExImLdiad2iCwXT5Z4c9c3Eq8rP2318mPW2c+QbtjK8A==", + "dev": true, + "license": "MIT", + "dependencies": { + "ip-address": "^10.0.1", + "smart-buffer": "^4.2.0" + }, + "engines": { + "node": ">= 10.0.0", + "npm": ">= 3.0.0" + } + }, + "node_modules/socks-proxy-agent": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-7.0.0.tgz", + "integrity": "sha512-Fgl0YPZ902wEsAyiQ+idGd1A7rSFx/ayC1CQVMw5P+EQx2V0SgpGtf6OKFhVjPflPUl9YMmEOnmfjCdMUsygww==", + "dev": true, + "license": "MIT", + "dependencies": { + "agent-base": "^6.0.2", + "debug": "^4.3.3", + "socks": "^2.6.2" + }, + "engines": { + "node": ">= 10" + } + }, + "node_modules/socks-proxy-agent/node_modules/agent-base": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", + "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "debug": "4" + }, + "engines": { + "node": ">= 6.0.0" + } + }, + "node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-js": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", + "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-support": { + "version": "0.5.21", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", + "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", + "dev": true, + "license": "MIT", + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "node_modules/split2": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/split2/-/split2-4.2.0.tgz", + "integrity": "sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==", + "dev": true, + "license": "ISC", + "engines": { + "node": ">= 10.x" + } + }, + "node_modules/sprintf-js": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.1.3.tgz", + "integrity": "sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==", + "dev": true, + "license": "BSD-3-Clause", + "optional": true + }, + "node_modules/ssri": { + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/ssri/-/ssri-9.0.1.tgz", + "integrity": "sha512-o57Wcn66jMQvfHG1FlYbWeZWW/dHZhJXjpIcTfXldXEk5nz5lStPo3mK0OJQfGR3RbZUlbISexbljkJzuEj/8Q==", + "dev": true, + "license": "ISC", + "dependencies": { + "minipass": "^3.1.1" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "node_modules/ssri/node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "dev": true, + "license": "ISC", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/ssri/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true, + "license": "ISC" + }, + "node_modules/stable-hash": { + "version": "0.0.5", + "resolved": "https://registry.npmjs.org/stable-hash/-/stable-hash-0.0.5.tgz", + "integrity": "sha512-+L3ccpzibovGXFK+Ap/f8LOS0ahMrHTf3xu7mMLSpEGU0EO9ucaysSylKo9eRDFNhWve/y275iPmIZ4z39a9iA==", + "dev": true, + "license": "MIT" + }, + "node_modules/stat-mode": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/stat-mode/-/stat-mode-1.0.0.tgz", + "integrity": "sha512-jH9EhtKIjuXZ2cWxmXS8ZP80XyC3iasQxMDV8jzhNJpfDb7VbQLVW4Wvsxz9QZvzV+G4YoSfBUVKDOyxLzi/sg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 6" + } + }, + "node_modules/stop-iteration-iterator": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/stop-iteration-iterator/-/stop-iteration-iterator-1.1.0.tgz", + "integrity": "sha512-eLoXW/DHyl62zxY4SCaIgnRhuMr6ri4juEYARS8E6sCEqzKpOiE521Ucofdx+KnDZl5xmvGYaaKCk5FEOxJCoQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "internal-slot": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "dev": true, + "license": "MIT", + "dependencies": { + "safe-buffer": "~5.2.0" + } + }, + "node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width-cjs": { + "name": "string-width", + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width-cjs/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true, + "license": "MIT" + }, + "node_modules/string-width/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true, + "license": "MIT" + }, + "node_modules/string.prototype.includes": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/string.prototype.includes/-/string.prototype.includes-2.0.1.tgz", + "integrity": "sha512-o7+c9bW6zpAdJHTtujeePODAhkuicdAryFsfVKwA+wGw89wJ4GTY484WTucM9hLtDEOpOvI+aHnzqnC5lHp4Rg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.3" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/string.prototype.matchall": { + "version": "4.0.12", + "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.12.tgz", + "integrity": "sha512-6CC9uyBL+/48dYizRf7H7VAYCMCNTBeM78x/VTUe9bFEaxBepPJDa1Ow99LqI/1yF7kuy7Q3cQsYMrcjGUcskA==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.3", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.6", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0", + "get-intrinsic": "^1.2.6", + "gopd": "^1.2.0", + "has-symbols": "^1.1.0", + "internal-slot": "^1.1.0", + "regexp.prototype.flags": "^1.5.3", + "set-function-name": "^2.0.2", + "side-channel": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.repeat": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/string.prototype.repeat/-/string.prototype.repeat-1.0.0.tgz", + "integrity": "sha512-0u/TldDbKD8bFCQ/4f5+mNRrXwZ8hg2w7ZR8wa16e8z9XpePWl3eGEcUD0OXpEH/VJH/2G3gjUtR3ZOiBe2S/w==", + "dev": true, + "license": "MIT", + "dependencies": { + "define-properties": "^1.1.3", + "es-abstract": "^1.17.5" + } + }, + "node_modules/string.prototype.trim": { + "version": "1.2.10", + "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.10.tgz", + "integrity": "sha512-Rs66F0P/1kedk5lyYyH9uBzuiI/kNRmwJAR9quK6VOtIpZ2G+hMZd+HQbbv25MgCA6gEffoMZYxlTod4WcdrKA==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.2", + "define-data-property": "^1.1.4", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.5", + "es-object-atoms": "^1.0.0", + "has-property-descriptors": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimend": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.9.tgz", + "integrity": "sha512-G7Ok5C6E/j4SGfyLCloXTrngQIQU3PWtXGst3yM7Bea9FRURf1S42ZHlZZtsNque2FN2PoUhfZXYLNWwEr4dLQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.2", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimstart": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.8.tgz", + "integrity": "sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi-cjs": { + "name": "strip-ansi", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/styled-jsx": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.1.6.tgz", + "integrity": "sha512-qSVyDTeMotdvQYoHWLNGwRFJHC+i+ZvdBRYosOFgC+Wg1vx4frN2/RG/NA7SYqqvKNLf39P2LSRA2pu6n0XYZA==", + "license": "MIT", + "dependencies": { + "client-only": "0.0.1" + }, + "engines": { + "node": ">= 12.0.0" + }, + "peerDependencies": { + "react": ">= 16.8.0 || 17.x.x || ^18.0.0-0 || ^19.0.0-0" + }, + "peerDependenciesMeta": { + "@babel/core": { + "optional": true + }, + "babel-plugin-macros": { + "optional": true + } + } + }, + "node_modules/sumchecker": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/sumchecker/-/sumchecker-3.0.1.tgz", + "integrity": "sha512-MvjXzkz/BOfyVDkG0oFOtBxHX2u3gKbMHIF/dXblZsgD3BWOFLmHovIpZY7BykJdAjcqRCBi1WYBNdEC9yI7vg==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0" + }, + "engines": { + "node": ">= 8.0" + } + }, + "node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/tailwindcss": { + "version": "4.1.17", + "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.1.17.tgz", + "integrity": "sha512-j9Ee2YjuQqYT9bbRTfTZht9W/ytp5H+jJpZKiYdP/bpnXARAuELt9ofP0lPnmHjbga7SNQIxdTAXCmtKVYjN+Q==", + "dev": true, + "license": "MIT" + }, + "node_modules/tapable": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.3.0.tgz", + "integrity": "sha512-g9ljZiwki/LfxmQADO3dEY1CbpmXT5Hm2fJ+QaGKwSXUylMybePR7/67YW7jOrrvjEgL1Fmz5kzyAjWVWLlucg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/tar": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/tar/-/tar-6.2.1.tgz", + "integrity": "sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==", + "dev": true, + "license": "ISC", + "dependencies": { + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "minipass": "^5.0.0", + "minizlib": "^2.1.1", + "mkdirp": "^1.0.3", + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/tar/node_modules/minipass": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz", + "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=8" + } + }, + "node_modules/tar/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true, + "license": "ISC" + }, + "node_modules/temp": { + "version": "0.9.4", + "resolved": "https://registry.npmjs.org/temp/-/temp-0.9.4.tgz", + "integrity": "sha512-yYrrsWnrXMcdsnu/7YMYAofM1ktpL5By7vZhf15CrXijWWrEYZks5AXBudalfSWJLlnen/QUJUB5aoB0kqZUGA==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "mkdirp": "^0.5.1", + "rimraf": "~2.6.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/temp-file": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/temp-file/-/temp-file-3.4.0.tgz", + "integrity": "sha512-C5tjlC/HCtVUOi3KWVokd4vHVViOmGjtLwIh4MuzPo/nMYTV/p1urt3RnMz2IWXDdKEGJH3k5+KPxtqRsUYGtg==", + "dev": true, + "license": "MIT", + "dependencies": { + "async-exit-hook": "^2.0.1", + "fs-extra": "^10.0.0" + } + }, + "node_modules/temp-file/node_modules/fs-extra": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", + "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/temp/node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "deprecated": "Glob versions prior to v9 are no longer supported", + "dev": true, + "license": "ISC", + "peer": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/temp/node_modules/mkdirp": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", + "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "minimist": "^1.2.6" + }, + "bin": { + "mkdirp": "bin/cmd.js" + } + }, + "node_modules/temp/node_modules/rimraf": { + "version": "2.6.3", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz", + "integrity": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==", + "deprecated": "Rimraf versions prior to v4 are no longer supported", + "dev": true, + "license": "ISC", + "peer": true, + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + } + }, + "node_modules/through2": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/through2/-/through2-4.0.2.tgz", + "integrity": "sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw==", + "dev": true, + "license": "MIT", + "dependencies": { + "readable-stream": "3" + } + }, + "node_modules/tiny-async-pool": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/tiny-async-pool/-/tiny-async-pool-1.3.0.tgz", + "integrity": "sha512-01EAw5EDrcVrdgyCLgoSPvqznC0sVxDSVeiOz09FUpjh71G79VCqneOr+xvt7T1r76CF6ZZfPjHorN2+d+3mqA==", + "dev": true, + "license": "MIT", + "dependencies": { + "semver": "^5.5.0" + } + }, + "node_modules/tiny-async-pool/node_modules/semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/tinyglobby": { + "version": "0.2.15", + "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.15.tgz", + "integrity": "sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "fdir": "^6.5.0", + "picomatch": "^4.0.3" + }, + "engines": { + "node": ">=12.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/SuperchupuDev" + } + }, + "node_modules/tinyglobby/node_modules/fdir": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz", + "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12.0.0" + }, + "peerDependencies": { + "picomatch": "^3 || ^4" + }, + "peerDependenciesMeta": { + "picomatch": { + "optional": true + } + } + }, + "node_modules/tinyglobby/node_modules/picomatch": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.3.tgz", + "integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/tmp": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.2.5.tgz", + "integrity": "sha512-voyz6MApa1rQGUxT3E+BK7/ROe8itEx7vD8/HEvt4xwXucvQ5G5oeEiHkmHZJuBO21RpOf+YYm9MOivj709jow==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=14.14" + } + }, + "node_modules/tmp-promise": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/tmp-promise/-/tmp-promise-3.0.3.tgz", + "integrity": "sha512-RwM7MoPojPxsOBYnyd2hy0bxtIlVrihNs9pj5SUvY8Zz1sQcQG2tG1hSr8PDxfgEB8RNKDhqbIlroIarSNDNsQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "tmp": "^0.2.0" + } + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/tree-kill": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/tree-kill/-/tree-kill-1.2.2.tgz", + "integrity": "sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==", + "dev": true, + "license": "MIT", + "bin": { + "tree-kill": "cli.js" + } + }, + "node_modules/truncate-utf8-bytes": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/truncate-utf8-bytes/-/truncate-utf8-bytes-1.0.2.tgz", + "integrity": "sha512-95Pu1QXQvruGEhv62XCMO3Mm90GscOCClvrIUwCM0PYOXK3kaF3l3sIHxx71ThJfcbM2O5Au6SO3AWCSEfW4mQ==", + "dev": true, + "license": "WTFPL", + "dependencies": { + "utf8-byte-length": "^1.0.1" + } + }, + "node_modules/ts-api-utils": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-2.1.0.tgz", + "integrity": "sha512-CUgTZL1irw8u29bzrOD/nH85jqyc74D6SshFgujOIA7osm2Rz7dYH77agkx7H4FBNxDq7Cjf+IjaX/8zwFW+ZQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18.12" + }, + "peerDependencies": { + "typescript": ">=4.8.4" + } + }, + "node_modules/tsconfig-paths": { + "version": "3.15.0", + "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.15.0.tgz", + "integrity": "sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/json5": "^0.0.29", + "json5": "^1.0.2", + "minimist": "^1.2.6", + "strip-bom": "^3.0.0" + } + }, + "node_modules/tsconfig-paths/node_modules/json5": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "dev": true, + "license": "MIT", + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/tslib": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", + "license": "0BSD" + }, + "node_modules/type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "dev": true, + "license": "MIT", + "dependencies": { + "prelude-ls": "^1.2.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/type-fest": { + "version": "0.13.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.13.1.tgz", + "integrity": "sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==", + "dev": true, + "license": "(MIT OR CC0-1.0)", + "optional": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/typed-array-buffer": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.3.tgz", + "integrity": "sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "es-errors": "^1.3.0", + "is-typed-array": "^1.1.14" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/typed-array-byte-length": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.3.tgz", + "integrity": "sha512-BaXgOuIxz8n8pIq3e7Atg/7s+DpiYrxn4vdot3w9KbnBhcRQq6o3xemQdIfynqSeXeDrF32x+WvfzmOjPiY9lg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "for-each": "^0.3.3", + "gopd": "^1.2.0", + "has-proto": "^1.2.0", + "is-typed-array": "^1.1.14" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typed-array-byte-offset": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.4.tgz", + "integrity": "sha512-bTlAFB/FBYMcuX81gbL4OcpH5PmlFHqlCCpAl8AlEzMz5k53oNDvN8p1PNOWLEmI2x4orp3raOFB51tv9X+MFQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.8", + "for-each": "^0.3.3", + "gopd": "^1.2.0", + "has-proto": "^1.2.0", + "is-typed-array": "^1.1.15", + "reflect.getprototypeof": "^1.0.9" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typed-array-length": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.7.tgz", + "integrity": "sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "is-typed-array": "^1.1.13", + "possible-typed-array-names": "^1.0.0", + "reflect.getprototypeof": "^1.0.6" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typescript": { + "version": "5.9.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz", + "integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==", + "dev": true, + "license": "Apache-2.0", + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/typescript-eslint": { + "version": "8.48.0", + "resolved": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.48.0.tgz", + "integrity": "sha512-fcKOvQD9GUn3Xw63EgiDqhvWJ5jsyZUaekl3KVpGsDJnN46WJTe3jWxtQP9lMZm1LJNkFLlTaWAxK2vUQR+cqw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/eslint-plugin": "8.48.0", + "@typescript-eslint/parser": "8.48.0", + "@typescript-eslint/typescript-estree": "8.48.0", + "@typescript-eslint/utils": "8.48.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0", + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/unbox-primitive": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.1.0.tgz", + "integrity": "sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "has-bigints": "^1.0.2", + "has-symbols": "^1.1.0", + "which-boxed-primitive": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/undici-types": { + "version": "6.21.0", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.21.0.tgz", + "integrity": "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/unique-filename": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-2.0.1.tgz", + "integrity": "sha512-ODWHtkkdx3IAR+veKxFV+VBkUMcN+FaqzUUd7IZzt+0zhDZFPFxhlqwPF3YQvMHx1TD0tdgYl+kuPnJ8E6ql7A==", + "dev": true, + "license": "ISC", + "dependencies": { + "unique-slug": "^3.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "node_modules/unique-slug": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-3.0.0.tgz", + "integrity": "sha512-8EyMynh679x/0gqE9fT9oilG+qEt+ibFyqjuVTsZn1+CMxH+XLlpvr2UZx4nVcCwTpx81nICr2JQFkM+HPLq4w==", + "dev": true, + "license": "ISC", + "dependencies": { + "imurmurhash": "^0.1.4" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "node_modules/universalify": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", + "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/unrs-resolver": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/unrs-resolver/-/unrs-resolver-1.11.1.tgz", + "integrity": "sha512-bSjt9pjaEBnNiGgc9rUiHGKv5l4/TGzDmYw3RhnkJGtLhbnnA/5qJj7x3dNDCRx/PJxu774LlH8lCOlB4hEfKg==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "dependencies": { + "napi-postinstall": "^0.3.0" + }, + "funding": { + "url": "https://opencollective.com/unrs-resolver" + }, + "optionalDependencies": { + "@unrs/resolver-binding-android-arm-eabi": "1.11.1", + "@unrs/resolver-binding-android-arm64": "1.11.1", + "@unrs/resolver-binding-darwin-arm64": "1.11.1", + "@unrs/resolver-binding-darwin-x64": "1.11.1", + "@unrs/resolver-binding-freebsd-x64": "1.11.1", + "@unrs/resolver-binding-linux-arm-gnueabihf": "1.11.1", + "@unrs/resolver-binding-linux-arm-musleabihf": "1.11.1", + "@unrs/resolver-binding-linux-arm64-gnu": "1.11.1", + "@unrs/resolver-binding-linux-arm64-musl": "1.11.1", + "@unrs/resolver-binding-linux-ppc64-gnu": "1.11.1", + "@unrs/resolver-binding-linux-riscv64-gnu": "1.11.1", + "@unrs/resolver-binding-linux-riscv64-musl": "1.11.1", + "@unrs/resolver-binding-linux-s390x-gnu": "1.11.1", + "@unrs/resolver-binding-linux-x64-gnu": "1.11.1", + "@unrs/resolver-binding-linux-x64-musl": "1.11.1", + "@unrs/resolver-binding-wasm32-wasi": "1.11.1", + "@unrs/resolver-binding-win32-arm64-msvc": "1.11.1", + "@unrs/resolver-binding-win32-ia32-msvc": "1.11.1", + "@unrs/resolver-binding-win32-x64-msvc": "1.11.1" + } + }, + "node_modules/untildify": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/untildify/-/untildify-4.0.0.tgz", + "integrity": "sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/update-browserslist-db": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.2.3.tgz", + "integrity": "sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "escalade": "^3.2.0", + "picocolors": "^1.1.1" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/utf8-byte-length": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/utf8-byte-length/-/utf8-byte-length-1.0.5.tgz", + "integrity": "sha512-Xn0w3MtiQ6zoz2vFyUVruaCL53O/DwUvkEeOvj+uulMm0BkUGYWmBYVyElqZaSLhY6ZD0ulfU3aBra2aVT4xfA==", + "dev": true, + "license": "(WTFPL OR MIT)" + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "dev": true, + "license": "MIT" + }, + "node_modules/verror": { + "version": "1.10.1", + "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.1.tgz", + "integrity": "sha512-veufcmxri4e3XSrT0xwfUR7kguIkaxBeosDg00yDWhk49wdwkSUrvvsm7nc75e1PUyvIeZj6nS8VQRYz2/S4Xg==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "assert-plus": "^1.0.0", + "core-util-is": "1.0.2", + "extsprintf": "^1.2.0" + }, + "engines": { + "node": ">=0.6.0" + } + }, + "node_modules/wcwidth": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz", + "integrity": "sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==", + "dev": true, + "license": "MIT", + "dependencies": { + "defaults": "^1.0.3" + } + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "license": "ISC", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/which-boxed-primitive": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.1.1.tgz", + "integrity": "sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-bigint": "^1.1.0", + "is-boolean-object": "^1.2.1", + "is-number-object": "^1.1.1", + "is-string": "^1.1.1", + "is-symbol": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-builtin-type": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/which-builtin-type/-/which-builtin-type-1.2.1.tgz", + "integrity": "sha512-6iBczoX+kDQ7a3+YJBnh3T+KZRxM/iYNPXicqk66/Qfm1b93iu+yOImkg0zHbj5LNOcNv1TEADiZ0xa34B4q6Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "function.prototype.name": "^1.1.6", + "has-tostringtag": "^1.0.2", + "is-async-function": "^2.0.0", + "is-date-object": "^1.1.0", + "is-finalizationregistry": "^1.1.0", + "is-generator-function": "^1.0.10", + "is-regex": "^1.2.1", + "is-weakref": "^1.0.2", + "isarray": "^2.0.5", + "which-boxed-primitive": "^1.1.0", + "which-collection": "^1.0.2", + "which-typed-array": "^1.1.16" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-collection": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.2.tgz", + "integrity": "sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-map": "^2.0.3", + "is-set": "^2.0.3", + "is-weakmap": "^2.0.2", + "is-weakset": "^2.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-typed-array": { + "version": "1.1.19", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.19.tgz", + "integrity": "sha512-rEvr90Bck4WZt9HHFC4DJMsjvu7x+r6bImz0/BrbWb7A2djJ8hnZMrWnHo9F8ssv0OMErasDhftrfROTyqSDrw==", + "dev": true, + "license": "MIT", + "dependencies": { + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.8", + "call-bound": "^1.0.4", + "for-each": "^0.3.5", + "get-proto": "^1.0.1", + "gopd": "^1.2.0", + "has-tostringtag": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/word-wrap": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", + "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs": { + "name": "wrap-ansi", + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "dev": true, + "license": "ISC" + }, + "node_modules/xml2js": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/xml2js/-/xml2js-0.6.2.tgz", + "integrity": "sha512-T4rieHaC1EXcES0Kxxj4JWgaUQHDk+qwHcYOCFHfiwKz7tOVPLq7Hjq9dM1WCMhylqMEfP7hMcOIChvotiZegA==", + "dev": true, + "license": "MIT", + "dependencies": { + "sax": ">=0.6.0", + "xmlbuilder": "~11.0.0" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/xml2js/node_modules/xmlbuilder": { + "version": "11.0.1", + "resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-11.0.1.tgz", + "integrity": "sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/xmlbuilder": { + "version": "15.1.1", + "resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-15.1.1.tgz", + "integrity": "sha512-yMqGBqtXyeN1e3TGYvgNgDVZ3j84W4cwkOXQswghol6APgZWaff9lnbvN7MHYJOiXsvGPXtjTYJEiC9J2wv9Eg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8.0" + } + }, + "node_modules/y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=10" + } + }, + "node_modules/yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "dev": true, + "license": "ISC" + }, + "node_modules/yargs": { + "version": "17.7.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", + "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", + "dev": true, + "license": "MIT", + "dependencies": { + "cliui": "^8.0.1", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.3", + "y18n": "^5.0.5", + "yargs-parser": "^21.1.1" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/yargs-parser": { + "version": "21.1.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", + "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/yauzl": { + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz", + "integrity": "sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==", + "dev": true, + "license": "MIT", + "dependencies": { + "buffer-crc32": "~0.2.3", + "fd-slicer": "~1.1.0" + } + }, + "node_modules/yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/zod": { + "version": "4.1.13", + "resolved": "https://registry.npmjs.org/zod/-/zod-4.1.13.tgz", + "integrity": "sha512-AvvthqfqrAhNH9dnfmrfKzX5upOdjUVJYFqNSlkmGf64gRaTzlPwz99IHYnVs28qYAybvAlBV+H7pn0saFY4Ig==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/colinhacks" + } + }, + "node_modules/zod-validation-error": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/zod-validation-error/-/zod-validation-error-4.0.2.tgz", + "integrity": "sha512-Q6/nZLe6jxuU80qb/4uJ4t5v2VEZ44lzQjPDhYJNztRQ4wyWc6VF3D3Kb/fAuPetZQnhS3hnajCf9CsWesghLQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18.0.0" + }, + "peerDependencies": { + "zod": "^3.25.0 || ^4.0.0" + } + } + } +} diff --git a/frontendcareit_v4/package.json b/frontendcareit_v4/package.json new file mode 100644 index 0000000..10e09f4 --- /dev/null +++ b/frontendcareit_v4/package.json @@ -0,0 +1,55 @@ +{ + "name": "care_it", + "version": "0.1.0", + "description": "Aplikasi Manajemen Layanan Kesehatan Terpadu", + "author": "CareIt Team", + "private": true, + "main": "electron.js", + "scripts": { + "dev": "next dev", + "build": "next build", + "build:mobile": "next build && npx cap sync", + "build:mobile:export": "cross-env NEXT_EXPORT=true next build && npx cap sync", + "build:electron": "cross-env NEXT_EXPORT=true next build", + "electron:dev": "cross-env NODE_ENV=development electron .", + "electron:start": "electron .", + "electron:build": "npm run build:electron && electron-builder --config electron-builder.json", + "electron:build:installer": "npm run build:electron && electron-builder --win nsis --x64", + "start": "next start", + "lint": "eslint", + "cap:sync": "npx cap sync", + "cap:copy": "npx cap copy", + "cap:open:android": "npx cap open android", + "cap:open:ios": "npx cap open ios", + "cap:run:android": "npx cap run android", + "cap:run:ios": "npx cap run ios" + }, + "dependencies": { + "@capacitor/android": "^8.0.0", + "@capacitor/core": "^8.0.0", + "@capacitor/ios": "^8.0.0", + "baseline-browser-mapping": "^2.9.8", + "browserslist": "^4.28.1", + "lucide-react": "^0.555.0", + "next": "16.0.5", + "react": "19.2.0", + "react-dom": "19.2.0", + "react-icons": "^5.5.0" + }, + "devDependencies": { + "@capacitor/cli": "^8.0.0", + "@tailwindcss/postcss": "^4", + "@types/node": "^20", + "@types/react": "^19", + "@types/react-dom": "^19", + "@vercel/speed-insights": "^1.3.1", + "babel-plugin-react-compiler": "1.0.0", + "cross-env": "^7.0.3", + "electron": "^28.1.0", + "electron-builder": "^26.0.12", + "eslint": "^9", + "eslint-config-next": "16.0.5", + "tailwindcss": "^4", + "typescript": "^5" + } +} \ No newline at end of file diff --git a/frontendcareit_v4/postcss.config.mjs b/frontendcareit_v4/postcss.config.mjs new file mode 100644 index 0000000..61e3684 --- /dev/null +++ b/frontendcareit_v4/postcss.config.mjs @@ -0,0 +1,7 @@ +const config = { + plugins: { + "@tailwindcss/postcss": {}, + }, +}; + +export default config; diff --git a/frontendcareit_v4/preload.js b/frontendcareit_v4/preload.js new file mode 100644 index 0000000..303dff0 --- /dev/null +++ b/frontendcareit_v4/preload.js @@ -0,0 +1,8 @@ +const { contextBridge, ipcRenderer } = require('electron'); + +// Expose protected methods that allow the renderer process to use +// ipcRenderer without exposing the entire object +contextBridge.exposeInMainWorld('electron', { + isElectron: true, + getAppInfo: () => ipcRenderer.invoke('get-app-info'), +}); diff --git a/frontendcareit_v4/public/assets/LOGOCOBA.ico b/frontendcareit_v4/public/assets/LOGOCOBA.ico new file mode 100644 index 0000000000000000000000000000000000000000..ac2a5f1b6288370cb85d36446d9ed8d94960fd99 GIT binary patch literal 216796 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 OVyzx`t9%FlZ~r%oX*rPq literal 0 HcmV?d00001 diff --git a/frontendcareit_v4/public/assets/LOGO_CAREIT.svg b/frontendcareit_v4/public/assets/LOGO_CAREIT.svg new file mode 100644 index 0000000..3fd23da --- /dev/null +++ b/frontendcareit_v4/public/assets/LOGO_CAREIT.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/frontendcareit_v4/public/assets/LandingPage/dokterLucu.svg b/frontendcareit_v4/public/assets/LandingPage/dokterLucu.svg new file mode 100644 index 0000000..6d04721 --- /dev/null +++ b/frontendcareit_v4/public/assets/LandingPage/dokterLucu.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/frontendcareit_v4/public/assets/LandingPage/lingkaranLandingPage.svg b/frontendcareit_v4/public/assets/LandingPage/lingkaranLandingPage.svg new file mode 100644 index 0000000..2c5a9fe --- /dev/null +++ b/frontendcareit_v4/public/assets/LandingPage/lingkaranLandingPage.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/frontendcareit_v4/public/assets/LandingPage/stetoskop.svg b/frontendcareit_v4/public/assets/LandingPage/stetoskop.svg new file mode 100644 index 0000000..8b9458c --- /dev/null +++ b/frontendcareit_v4/public/assets/LandingPage/stetoskop.svg @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/frontendcareit_v4/public/assets/LandingPage/suntik.svg b/frontendcareit_v4/public/assets/LandingPage/suntik.svg new file mode 100644 index 0000000..54221b3 --- /dev/null +++ b/frontendcareit_v4/public/assets/LandingPage/suntik.svg @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/frontendcareit_v4/public/assets/Login/logindokterbanyak.svg b/frontendcareit_v4/public/assets/Login/logindokterbanyak.svg new file mode 100644 index 0000000..dea911f --- /dev/null +++ b/frontendcareit_v4/public/assets/Login/logindokterbanyak.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/frontendcareit_v4/public/assets/Login/siluetLogin.svg b/frontendcareit_v4/public/assets/Login/siluetLogin.svg new file mode 100644 index 0000000..daef8cf --- /dev/null +++ b/frontendcareit_v4/public/assets/Login/siluetLogin.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/frontendcareit_v4/public/assets/PDF/BUKU SAKU PENGISIAN RESUME MEDIS IKPK REVISI (1).pdf b/frontendcareit_v4/public/assets/PDF/BUKU SAKU PENGISIAN RESUME MEDIS IKPK REVISI (1).pdf new file mode 100644 index 0000000000000000000000000000000000000000..bf7f6102c72810476be7b86ed157ed842594debb GIT binary patch literal 3276727 zcmb@ubzGER*Eb3X(kUH+bPqE_cb6jF-O`=XpmaA#3yMfdcXy}KAT1@`@D4Ed^Zf4f z#CboTbNuI;aj&)ZTHm#<6?>1;D2Pk409m=vQD~|lf6!5Y6l@fBMwaL({QLkF4|`L9 zn4z|xtubVihqXsJ zf`aHMrnV-J`aBT-n_`a&0mSTFY@I29T%3T{7A8*G6pwrqK+Xp>C_o&K4>0@VgZ;ra zB?@-vH?GHT9BfaIr!|g8l_)r#q;Nb@ay&`lc#_G%^T@#Y#K8H)!1+YU`9#V2B$|`^ ziSmho>uDpdCqAwxKCY*YxSrU#p4hpbHsX3>=YHbjeq!K$BH?~o<9QOs^Tf{c#K-fr zACL_S1>4hK1KFNcl z6xI}=rx1obp>+R>N#K)SAkfo(AkdQ^Ku~-^An1Nzs5~%~4jRQED9#`#z948=gV>+! z13_^Hu|wrRaRzZb;Q)f-4T45D2pZQQXkde&c!QuZ4dQ&l3j_^k5EOS1G?GEk7zRP3 z7X-y01jQc&#UI2CwG)azh#QIn6n795cM#8$|G;cd`hwY>><2^f2D3rep?HI#c!Qz% zf}!|=q4Yj{;tPf*2`~?IAD*Xp1pfF;>`(-S5Dv)&YVwp>QekO89#{nFUc5EA|MIe z8CoNhOr7jp93kl(QUfI1ou!nW4V_IPpQV&JC>}L{eB!2f#28W+B<*aSA&Zhgibqrd zk|2sl7yy!BNI7_Tu^~hn@cMJRn^PNO`e!hS=mp z@u&kp%F)in9U0T5FLh?}}v7@I0di9)2S7#cZ2NS?~% z6FyE9Z2yGvLGZtzl(evRHgyC@T0@``H#N31F$KIawKaEs2PtrDzy~fTXGc>*8*~)+ zPgPoTwsYKA-dxMR%Xuo_Ee=`XB>X>HG%Q#XSY#NG&kE9)|9H zGd3TlTEdZ=pZ^n)<5x6!H4oSH`L(sZxfPjAIxe^E6fg2j)?+W8d!9zGTKQmtK5A`h zk7^w>sq`JvB0<(iMApDh@9X8m$Vech{{-#7~$-LJUbbIW`EGkWOe4;R{FGDiVq2nTjpmUfKg4|LF?` zw9df(1|**cYu*dUb!$)iz8Xck|NRRFQCw33fvy~0l1DTDc5%tBH+PAzY4`jiIZ^rA z5k7^#i8!GmFU{OP5#l{ zB`)q4FBY~NF?{Z$MX6LazCR=MGEHB+PSOu0pF^C3z_@h<&wopj!%c)%35&WvER_ID z;T0}NGu%l)k&JTE4zbs~q81+w>HHXXv8*sW4e*yl&eUtd2D0u>6@Gkr6_u6UqVRXm zjWq`yIOjX(LZuNa2;+$QQ4l!htFXxpzgc~i6u&+^ab!sK`lv^=+HVzF1`jwx#RB(F ztUGwrGx8=n6Arr0&ij}2mee1NW*e=f6R!Jgv%wk3(`j%@W!rygA5i}`8?K!gr>xM2 zWDCX~%|${i@gprnM`#g-?+4b9-6s=#xJCUHEut{-3kz+NLY~zvJHhGNpi@7s4@&8QkT6`l#MhDiSlIV+@OMxE?njZjOgm} zE7CH0zaLDxUy6uIOhGPF=}V$ywI8bhrE!hl`$Q@DJ2)J=NL$8Uqw_T_WgS!bPax&}w)Ac?UA;1led zRkB}oOuu#T^|l+AII6;C5gEAw9B{V^AT3EsrC(ndb5WvY?*w*A`sCK91>`aiR)2Gs zGj_6&k+}`?S=;~lgj5uVHZTWsnJ~B6} za{IX3WHyDOTE0QHEY_x$ZqnCAIF8lp4L=60KM8+f2>OV@j~rm0XTc*@2SB%~POb0N zU;1|JIpogA)G+sVi@VG&bH~Qn0qF1&)GUB7_$gnHKwvr_bD^sKz!J-P_=OEYc)PNP zGV{=o`Mqr09L5Xwu;`wZ9C}Oy94u~Bra zjaU=z`e0>@Pctoz_g<2@D_QP?$m3nhmblgK>B}z+^4@79|9xpcjbUGhsUv(wMFd2N z_=e!*iNbq;;Nd(Vi^0|)&SFdSJZxvn&r5l{C3)+G`V`c-a09^e( zVZD)x>)Pjnxr^Kn4XQivp7X$y-geFjWXCxcN4yS)Dc4H!s>=A6oh2*wV~X}BWOfCz z#9ru==w~Ia%FoRS_?_G8;tHSt5&}@5Yi#y0Ynrd|e-Jmt!*KsA{{!QdW+olA33Dw{ z*9)HCW0f5qZ&Ei#H-8e*s$;GQ!^<39ux`EcnpI**TeZ5f+$0h&Lk@7`kaUi!`^noB zxcfujds%{>Ab!h18n#6 zA3z&44hc_%n3w)Idjuw53TkH?cv~p*;*X1Z&KafrVlP@~EfI%eYnY-A?qPCYXy`u< zZ~v-T|C-|-YX86L-D4U3kLCa%DhGIL=V)VS4KRibi2p2-4^6?pF+KDP0A&{==Z6th z1u|Pcih65kV+!dZ0HTIYrjHb&V&W1K5=@ei3TQRn|fPe?Oh?)0#$3}gG6<1Bf^oKlEBW zKrTqX@${JmGRi>4b$e-33-fo*6kKc&Dp&JI{V3Q$K*%KS{`3V10&+g?t^P#G4x!Y5 za)CJ5Al-_ojT(gIkw)~fH-g9pQ9Nuw0c3+T)DYQ_=I8+_NXudhda(Yf-T$Zc553*L zS^wX8T1@2MJ^j%2{TtK&=4sG>dRoNM!q8ey<^S5PPt(Ky;8zGh|Mcr)yZTSd9-04( zmj9h&|E1Rdix=5A{?m()LGqto1abevi|qgKB4jY*_}{$v#?c|xUJ*FX1etKXa*NyD9~{;*uQfzH3&zJjHq0o#M}v(Tz5^&2DD!_6zWt6K|wU+vKc( zPCiRC+a}Hi?*~;=CwcZIUAh{d286dmwel%&fyYgrQ~f%Ys+lIbvA8{dy!wtvE$zq_ zzBmQd7wI3|n1_4*!M|Q!^)VMbeSs$o_g&Q1AH}zx^P8^;gRrVW<=b{khhK^vbCHoLzsQ3NrrsYDi_oTn630b zkMiF}Kf4iWiU-x*l!inMBM%tYGv+*sZ^&Bz>9yn|J?dPc;k}dMjIZqw+pR?wZq>H09Tt`O(*C?MV%7 z@#l5yJ0ygfDZ;^NdtG<`%PB1Mc97JY7if8pi5Nu?wXDt=56Gt53J`H zWbThPYfvue7V(dNlhm?hj%OLb4-6KvR>{~NT^QrxN{~+84AEAt#w1qB3G?nZeAclD&I$Ys(w zLBTk3g)>#xVB|e<*#(9;Okqy-%r7{bvsHNgv4ES@Q;;vP)Ys@R~56{o&SkO8BA|`#MKdeN(v?tMiaT{X;ZvQX%zRHX9hBfF&_(DX~90)Sm`f zuB}?1jEz@7FZ!G{XhSqQ+SrA2vs-j!17-ak^NnFZ0qf~@{1tkyeEft{iE=W(!R|CK z))JU(w)z!c0xI=T3$+unywhZAcl7#mZXV4SQ#c3yQ@z z7Dh{c!)6Y(Y9=VIlcR`rV*YI8dq^lw`c0PV=wvQ{1YD;OW1inBZ;lKm6w+q}c~h(F zjaiS?X%9I~&-oK6y}l$Zs^&R^Q~95p!5S{AOA&+*`7iZi%uf}T+ZDzH*4q{BEi?UP z<3x|`0wWtsC-Qh}htFo=zG;}dc8xsRvoyVsHtaSFOR`6z)kW?siP5ARKOKo=%o#H` zV3bHBzrWs?hu4D#8)_#yhLi*E*mB6^3qm*(2QWC$5p?@}d7TdhJm-5^3B5irmc(hb zHW`@h^2G7rhB4%J`b4;>>cJFhaf&>V=6C+d4k^ zpv}2~QaMq;2LkP6^LVLCt$@RixECzz6IyG!p8zY5;NK5agdcP?fiANAJEo>uv4UCUpvq3@kzE88pl~=5@ ze6fF$yYa69XmTh8lvrl8hm#)r4XP>vdrUGJ9Tn9IVenCJ ztx?0R+NE?WL)q(qJj~vN8yPSuyK2Hru{HK&BY4u)OA5k*%Pt$MIf$ol?f2weue+^^=yBumJf6C{6$*XIREYDD9Ib^6 z?baRJG4c!1W0AZ+>mZ^=-u753(5o!~?(5RCYlGYw5#V%xG3q#SFUp;Oi?%jPMYfRW zk%2bb3$%~H6yK59rIADZWqnH&;0hNM7$rsz$Z03B#-pPgl~Zq$J>q8ia?OuB>Czdh zx(Fz~qZ48;Z4KP?UKI2OZS>Z5|Lu%=hf$SKj=s#g8yDr^cgIG8tJeF%6BY(`q;(?K zaHVkfzBZpVk2ytwlCuM>BF$VTmQB^_UuHyWd8S`e~Lx~N?!5(FcVhsHwpUUO4BlE{#x zitL-A3GGC5|CEy#zUT3z`J1QEApn}-+h@t)XZeG~8Z3|u{+eMsvOzg^;|v_uZHh%2PSyhxIIL|*X^fAD~B~tf=%I;kb!Xn?wr);*dtK$A-3gfZYjD!&{ zO9|p&^(4$B^=(NoOub$VC!556_wWOYv)UA^e2$P#5gKHTBvZP0TYSW8DzcxmCE0>u z3a4k88>~FMds5eitbS)vL_8RnACRm2Voy;a>A9@codu{A->vC8#(SGwP6kXJx$lKjW<)1ONpAa<3t&h9oa08aIOR|TOGOCpW_brLm3PpsS`%X~wd?JVqB{W_TG zy8p^N%gT=`tiJQvV2Hcz8znmJIBTnFUj2XqGv7eVlUH|aZMs_`CT0YVXj+(*l##=y zG~+*+)&&!pPkCTFuT&cF&9EFqDssie8h7 z9{It}^SwR$7$8HatHFa&?cJSd?SFU3of+-*%URAk@R^ArW&D`881poqjP}jeFu7Ub zFSPN@bVf$nq23tD{5>o;BoIozuzq!(7HqtqMtH>Azbp}06fkx?rfoG;LMuWd)mfEa z9RP3IuTL2@P-_EhBaJ06xJ5qkv+-1L@&4TtlE-f=$=g~c;&s{gkP%qf+#%523mw8L zA2z(Ok>T~{Bod&qoViCf&b=&xLk`2>i+UmbN-b&>hFHoVAmnE2h+@NFBTW>!-bEj* zvGRT$&Q_{+CCY%`4_8x{uZtt(*y&{OYPv^ml^S+ za|E3=;yy#i*u&BSKL~xbnQym}h!gV5e8jSQCTVk#OX0lXv6zpVJc-%Hg3c_-6uby= z;8m>LN)03CQ!&VXU~`EYmitQ^tbqq%;7}@pwzA$$v>UgI!Y3m@yPz`UWhH9HYBC$7c28wn3AI3DL)_9+l3}+U12hAQ z)2JBOjK409b!1>>f?~l#-|4(y)l%t^sWGZ!bHhnsLf0!x%ujYjRc{E`Ee+~wNKy(-w zv}f6uTnnjN6Y%gcCpw35eI}sPH?;8&4{M4d&l4xS=KtQ<|8mdqzYRe^b|Cw|#-N9x z>i@$a^gkO2xqgJ)DE|BOv%7$-@xuJB^-!j)`hL%Kq57<3nnb)V+MXJ|eb1)o%yFT( zYI@dqXV%inX37$Cr3pZX2rKRQg{9=HAauol+BOuoHtLz5=h7iL&i~Hx}%4z4xwW1dVUK zM}m3yt%bv{g^0lA20@mema>CL z5AEeH4#!7XaUjC+Aj19VVIS8%a`$3mrfv^+ztW+mkU|s1qCtaIgnL{<(~O~tppd?s z{nPkL^I=izpNk?gQ;=ojn*vm^Qfc8R!nJ?sLZ}q?4fwhjThge$$RY#}xffduP8?ZG zIN?bhG59s4Jd$hOu^0x3Iv=tAq0V!GUhHVN3V~v=ya%C<{}kFuA;r(z?XA!G>%qWR zC=dgk6@Mo}V8x<&6x<4f!1Fs6#G}COsk*<+@*tZXBD*yd^-ZpQ7<_p8GtJK$ex z!}nr8`?)3@JJutQ2@x-lJr?0lKW6o?gBVda1=8wh%X>Gz>?JPT9!0cxrbN((TxHr9 zF0#CxzpJC7lB%moii_n~SRzPRScZxhEStvq8?!HKlB=q#D;G?BYIK>+s;OdS@*V5Y zB=88k8^hxqN~3=-@?F{!dI!P4yu^lt6mK48PNp9ztS1^Y>^?GU74Lh}>!&TXOt$!b znf8%a{4AP-6)KL7j*hoZfGVFM{U&6tMaX`l`;V zLV{UVgyAv5V!NXEG=R7cAdd`NRRr4`O4el^^w1BSsWcs8|;_@ z8&bD`x93g`64zA6{9^ZMnqYYFjX(4eup%BD>* zU8LtFdB?Bs$S=BCQ@Gv_eH(E*_!XBL>rnL#MVZlJ!2u{G85h)Cb28D1oEMD+b1`Fcd3%N0enLLXe#2?6 zmUTL+x}ap3Q-^>LvpK$XVWwwbVdSS%TFd!&A|LRV>x(PTD^FDZ1zmmtoq3(TRCUMQ zA>9mS4_38IFSG06!R}NpqnD{drq!icZaLmd+7--=2*b^KB@pw?-k$$GU#YK~{iP+B z!oKfe9(DRDRWN)pwZ`jG%HRL`Z6wqzQl*sg#Drszz*9L5-bcM_F70==T^sd zDI_m>KZm%tQc)CqrI*F>5T_Kz?yMAOqKO>1@A{1X<4Wv#qH6qNyEx!|* zYIFU;HxhL@Hj=)%lb?l0w=H9ai)W-824U{W76Ye(-N>q-rxLci^(q5_MNG9=fO;yniY_Xk1; zC7P#~8|2e_3k_U6426FOxBFkOqobb=4God)*(epNDkL<{QhJAFJz=rg8^@Xnl(-_WoglhM@JwR>tt4 zzuZ8N)9T~MI1Q@My)}^&Qtnx`U@C**2{s%I8%i&BVDuQ`R1>5e+&*;zes>CEdIa7a zfO=l}>tE!~+9mj0M7PpyFh&Nk@2qU}8qP=%NtC%tG6EM&qMGU;FaD{cDVzCzJrl*J z)1Ojobf^3TB#7D-GOPMte-3<)&rcUC9dvb0V#7B_IJp*LWb@%G!0g58y4lmC&dIEN zqx7;l^v7SPJJ=%M5=7m@9#cp41P3*PuV=vK!!Bbd3#DW8SGrY7h0`|5(U)DU0iy~D zceVtBf(q0O$$hi7i;bS!qPCv>`x$eKo=%GcfF^FU$%-h~jgr}P!`W?H`?fLiylO@F zx+@Q-)C0)tw`Vh$Lcl#Mr&sxR@7wF-ldj=Lk_0+(e)R7N= zpnC8A9fphA?TAxrMJd-XB z57H`5>RTgc)%|V2rzu3$KCuwGY1H9Ty>Yxty7%Sk(zE1d>5Gt^mfMy>?@TVGjCRpS z>Qk1y@B;Q)r5Og><{35BCHI2Q%#Oif$sVwwcpC+XS()hBkaij271wk z%|T!GNLN`#fPPqHdzu|<`kiyvyMN~iz4^`7Q=fU#8oQ;qxKHl;^Os3UYC1U-Y&v<P2*oZypVnQUno zn0-vg&SkR`*fS~mVm*VC7piQ|PzcmZ!qUb|vgBHPIE#JX)##|J{G73TjDv$Pc&9MA zxXG0=Ec2d1NacrJGMq*mxxIc?RK#ei#1Lhe@+M05GkdT&EI$t(;^P2_&I}@2XS;>2&P2`GOo(ZuZg6O=N ziOEZoj$*9w*s}Rbvob)E97qwaP{S{H=_O_7AK#F!?5dXJBcMQ!1LJ24NqQ&|f`hh@ zR1opdEkFjrjvPjvj||r&kk^5#i5{n(hGCMST^u%Rb$fVhp>3Rjl{IRdwJkJRO-;&# zpaf0Mb(V#cKp|;R=dYbAUsqRAD zi;1s1Fk`;&Z9G`x>hd{*?>8)8dYruTbv)g|rcE+x`fuR{RbPchmlqP8XM-tf;Iz1}ndg{q7*>`lhGxb~+?$$ZJJP=2+)#i{nr{!^zyMJXl)!;kj| z-_A5N7;s$EA~H%0zDUo6<{F0D+(*<}wlJ-~nUP4NU`svOByVXO@>v^oYVXa; z_M%+;V`q561R1V_#}G*%=`Q4HbZo`i3CFmrp6<@P%h7hA`fC(07LAKWA;5xjHSs5? zmXKrsxmj;Eku`&ih12FrPY#PXtRKLA8O>rrTSutu*Ix z$A^w?PF2RkRo?u%cb6mBEWhYhImnq z^E@x~!Kh=y=p*?MgdEc}2k8L<)%ASJUyHdN>(x_YJ5$5)_~e;iXN~vCCZ>^EdD2nK zg}Q!I4XVvEUePW^y}-!aCxw(P#@>Nx-;WQ8O%`HswBn<|y-z;~0|TteJc4ZhQjMayh6K_1_Pzf63d`Nu$9% z|Ld$5&{@sO<0?uU>-_!&@`en$j2Twp)>G(uB>+X%j_W*QhML5SMQi~S<%7K_l z`?Xr4A1(}W>VDL}D1YjUe3PW&neGjhke;QJ9v4y5eb#XHCj@t;eaA)B60YSZ2@sJe z_0z|opEs9kIKG)gQm z@p%XRhX6H3tDO>4YmF?^L)q1e-SE{nVKy;vtT@-4arI<EvEH2RUhGVzem;KK2vVdtVmN>fq0qlH>97FlO(o-oC#5(LvlD< zE=n%^76Zhu{FX1vq}k}kEUT{OXDXWYbTGO05|IWqtK;)rmKR~tawoYL$6jfb(QTBY z6}pOyywp4Rs~yXo7T*8aml1~;Ee{Wc~fN}DU{^^s=JZ0Mend7l2B??YzMvo!w_OI>4b&(L3~=ibra++90>_IIh)t06(hs} z+3SvbN@Q+$p`G)Kc%g5T6b6UYqBKe76?`*h3^`;r)=lJ7`MZ~bzv$CWwck|vEi`yK zhrfOp?uC~ENP#9q#*L6s6HA&oaX z7YC5;)KWAtEtTs`p8#((hYfoW#4OpHIkN+;e*TPY66J>!#G-rTy0Kr?$46z zx{P=gRdzppOl^7lmxAe*`G)_VmsNx0L!$HOQ6LkE7}i=y&TdXLB$y3apAz$b*QC9M6srL=J?{wwlRBiXm0fLcL>_bFgO5gU+27s*3AxNYW zQ@B$M@m=?oK+iwDF_*i?GQBfi)Lp2TGnhQ&fuDTv3txsNL>ik%igJ4K)>N0g6^qqn zcPY;`I*v#s!cUr6&FmvSm;JQ^mM0fb@?8(pVg0$asB*neJT#rHu;%Urz@*kRiIb0* zrDSeU7`9dxi;F}*J>Iyevwt`Sf#fpSC6VR*PYDUqachBt2~SlF50cX6JIEe_9p>5N z>1gY-Sv}(06Mu^lgb~6Sp%fPIoRChc?L*7j>m3$!CyO3NDW5Tz&ap5tGuGZSF*VT9 z7koMG(?3i$XEOfwp&Qx0*u9Cpe)~how23d=9GM2KM$Ci5<&;_`d~SBw|LXT_hn1x1dMUIqYMf0<{f;qc^T&C$0!G zwGW;W@FjM7`Fbhks{=q>FPC2dVJ%Wo+OgD3 z3aQIFCn&K%czn#<&5T@bnEPttT&9HeGRgQz&j-}M2=Y1Yj|(xbLuLpT!z9?)&@C;- ztE#d1`K&7;D6Dq~rP*tHn-!f;5SNGJC3dtFj#Sy7(pPdE(l^X&vl{SKpwKMKX&v1O z2`pXir~%WTJAZ~VSQ69EY6Gws2XsB0*!rdCZYiwn^9UsA)k9S ziRk(A;}e<3SrNu3R%H_-(RfKxT>{h!C+Wi=zj`tZt{rxT3@wne*IN^0lGhcb>fST1 z6{_Sk`yBf1k4K}B8xDj14yK1=dzj}>v88{tqQi~TYJ6@SySx(?G`b~)@;s&?ymN1z zq08v-PpR6BR;p(m-}b%3QqM%!^z3fMh+rOlm>OeMxSDg=jgV$IHF$Hmscr`@E|98@ z8fWh4sJr%qUPV;oMbD*g+FE)O7VklEidZmH*g!ZcN&wv1#^yS`V#2iQhb7w!KPF@} zzQk)en@AZ$1ST^|N>4m&IWzT0gA6|K_t!(;ctcInD8m?Nlcj{>@jZg5`{r5(b~z>D zets+6oiC@lb~kdF$&aXvcy_?@8bqRhH2z{H8dKk#!{ta_M4q%h!o)~gu$ZqhQxcgW zj=6jWYkGV#o0g#pCm+dZ^K9rvPt)fj-dW0(&7q1K4qY~1TMLUqpEU8Bc$&u%`gs5; z?8(c1_drtE=loAsGy8U8iu4e;PAhKLLnVcj*!;G_gPKLz%sb&lmbrcM3K>A4dB_QA z`!DsIM%_~;t1VWpGVP{6sEY3!&T^4yXp?29KXhS)f0gibYWjF48)@#Eky7_J9i4x_ zFqUdq&WFXf#P`=XyHyQW6b80%5UN(+;h;+A@9$o^@&mY4P zzP9-Op)q5Veww@O$*bZv=DWumyMNquShtAGnmr^iBpF4^1p+6^h}{0TIHwguM1q!@ z(J>#CkuFKMME^6vq>{HuI_5<-bJgz%ezvj^cYOXGwIDMC2-Y*m&ueO!2?#BlFuSZi zIeby!<%Qa;oq(D>G6j|P*vu#IhqJQ;o}cZ(@GeEb7o4Way~ zyWGJk{x`C`>0p+6OcLuG)L~gXog$xa%?s4dL`7>nYB^c&#cYQ5C>-%$~hZD;!4oGkJ z_LhHf;lqOHQg~J!o|=& z(=#ElykTI>u?^X6d_p-N2RSmAy@b*vj;tq65+MtWEvwN~I~3p(C7x#888xV{RxFs9 zP|v`=eVXk&;dk?si#)E1E524X($F`Pz`K}w`ts7k< zg%y=TRn?Q|dhP*CtN8`Iu4_BHlVgAc8aj(R4QgB6TYn3-y#@tY8b+MQuudjG3M<8r&XsbM68saqjmG7tDT@?bz_9lBedN3@Wh(6Y^8OoZ#X zCb8V@fPXfy-QJF1cQKN>-QiHS{7c^OZOm7&aHU8;6QIVICs1P0G|DraRRrTmUuk^) zY1C8w``STCC|^|4I@(^pEium`>RaUMYOKu`&S}6G^Obm>FV4reZjPdKZo|pKA}Ojn zL&s^Yvb`bU+#-UOr_z~n8C_Y&>z9wCYsZ0-)fncQ3 zv0H37l|0bEPRtRe#Lb#0s~jZLoXJ0d4A>E}@lO7G?&9R~qmqrBYhmd)vJMP)wrdnM zuoVaoGpYU6}Nz|>>Z1B|>M0b5YJ2!*v zn?NlBO4wzN$k%lfi!i}HYY|sZ!Y!)GS=N&XXjQyaAILd%Y1&(L3wfae)xL_NTFd&hUVRwK`j<4B6ip!)q_%^xxhrOC3 z9aAwuP1UYhL6D5-T*84Ecmiyylqz{{=vp|nXJhlK4e`c%-lK$bmPTY@7r{%)Ci(A* z$6qq*@3gGCN0~Z>>{k?!aTy76hgN(?^w4TiAU>AE=ZGpF^4!S{II9k=>3;+dOtVZ_ zP{a%9R8Sq*)?wA1icV%FRH?_~N}M3X6#xU+uJmEI)MFK6_jMNfGvUm+N}7sKJL@XE zgzo+>i6Fx5d@Evz`!oKo9trOQL#c}X0%1Cbp&dTcJ}r~3?Uu*Y0hor@#Z;_;!}TLv zsHG0+CweO@)g@z4AikWr+2{8fZ?X30U*U&yz~|I)IoN`$h8sq`ik9vXtp zYxU_Hvc2*J2K%X@(+JSM>pl(4O>a6EAHuZ1EWdUNTg z-aOC`O{L5#&gzGx8++t=FFP=CJ+CQX)X6c z$8aN=-`Zrxw|o(@^(Dk59W$6A2MifJ_^3;n1TV-u?rwPM#K-gX0|Q%4bEC$Oj;0V- zbpnolt*C~SRj4yr@wf8uQIUDG{&kj=RO3>&d58LJQ6g?uDy)A{dSJN!m2VaIQEO@vM2x*}}>KQCNq@G1L zzkCQ4EV!q+d*xy74wd?ZrammAxk_|j*J_}L%tRa15(#gAT_C;dnn`=}doFQoHS^AT z+==Px)Aljbn=I{E9R24KMx)^oVa_f;PELPoX}_KSyZ3Xj5Lg%kHoyH*J&l@giU>a1 zJP2{Oaa+8nsY#^{zqV{|Z8F0y`#nci-Hj9HnntnzsV}>!izdg?Vuw36^@A)Q2V){i zPvwrqod+xiBQ-TOm4I%8))sksAaTbey=?s2dR$yla_MMo*yW-8YrEx)--$h_AITdW ztkT4N$r!ZhiCA~t?}S6I&qZJliMsIA#fQ+Z3W+V_B6x9lucpi)ci{_lt^eynErO3jO3cHMLa6vm(a0~(xc~fz&!^<8y~fEZ@0GdB!lj}6y)g>ZprsoP(&qhv zl+Y0$!OO11+qT`VLgO$G9l>?Ovy_Hb9NWR@R#o>JrQ!~$yYafgnL2gRRR?fP zB<7pT(m%f550Bd6A@l5Ltda;JT1;AAMd@TWY0?x}TM!)Ro*meX@RKy!NPQ6%$y->! z4#+**ouPUY(a<3Mj!RVW@{7Dp3iqqQrB%qU2xe(G_iKyckKwfPXX9gT*K$x?3x4R& zg(oRk#}%4nWosDzl(c^1tbGZ76>pKUK+*R#q)f5&MvYo90PM9E);(|PmlA{7l>4gGgZg(yVTRe#Xk;R7B0AhT$7S zLEg(?8PrOI&Swr1BI?fA_PP@5F=AMU;tmq(T?;Ke^)G8*BJDGN{~aoP5HHIxDtd4& zJ;77aH$J;e~2?{P9c(j}k^);;X zBlb@W*2cEx2cZq`It?gdZF_E|yH~vtG@xdMqk@IeF@_<7O+lJqU-XNDxha8FYA5nb zsC9Ly^0J4SW-O+nD)*deySC%I_`7hg>pQ|VT(*IEF#-7pf&y3$oJPIUH}2M>($=Vh zL5^dZNRfmf9P0I4cf;uq$7k(Cf!kD_EbR%=OF1msg!kRrn%gsETPDI63td&M-)|m@c{~|Cu03LHnrrg&ZY!bUOv% zl4+!z;)iE}k_`6=j)stL`qw0;T}et-T4F+Em}O$PEu>cX)TqPf&hRiWpM#WP7+_N* zNr{moss=Et*j<_MZe=BwCbxDJZ8XmpX6G=UQ60Wtc6PsrD&8pt;T$by7Oz}ZEBMcZ zKz_%86TbSPZcI^3QuK=$Uf5T+vkAMiFpu-BH(C}(I$myWHJV>YG?~SiaZF7mNqE)Px$H0=io*z3*cAYc-YMb>& z`jbOEmVrf#f3pVqB<`f;k|ciq$T5*RjQQV zzOk!rUaV3SDM?jSSzA&)Ydx*SoWv+t`lGQkw+auY>9=g8S`kBUzuAOlbC0~*{BqLG zN%z$(aYgYJ#9>Usbfx_2&)2`LXlhgelVWSJAs#Z=f94Etpv2Af5N$9eFw)58gz~aC zJ?kv+Xt|@=H4@Eh_*d{ilZGAS#WR%cUM{>ZEoQ;qT_|;<34uM*^Pq8Q(p_si&h%u> zVp}yPeimwlYW`kaH<^2X%#CLMbaqR@{a_Y(?!Fx;lQ+3p-Fs2;Duvj_(W(Yn@t4+ z@gl*c}<|`=g#8%_s3-ieh?{^G`7Ku9%2L%va1zM8;u#*sr4~hSXfsg3PmK~XjP@9B}Z>2T$~ZQ zth4m-kuxzdOj}e5nX=)Fb74D<&2Zs_ym=l04`W{}jBQEIyLm;#x;$(2ZB@Miwiz6(bk=ZiO&h}R=th!OCu7I1LS5F$ zym}s{HMCKCQTy?uXSjr2)o-PClksYHF2$qc2+2GT@suEeFF|@=jDg`!NX%^uoPuUU@atRkpL8YLHW@EYkT@h4niqU_lE~pC;n;NHpCimfbZ$t! z)N(rNELAI-`mE+wRb!KOOBiZRBrZuHg}ivZRgrRi@cQy%Le@;eYt183mLn~ytO22D zEG03GF;Ui9hMJv_HeQn1c8JRSx1>>-bx(*%if2=l3`6!NzC@N_e3{8%EZ1WF|6%DW zqvGm%E-fyFGPo2Sv_L8D6dzoQyF+nzDef}3ySuwX(c)6v-QDFIp7;C1TKr&fPfoJ4 zvvZTn%!osoTl+Yd7$FSFj{WNS|4j1pQD+wCTV6BI+CM>Vh_Mg~;%Y{e{QrdzB}_D6 z3@Wd0SuB6Hh{Y^1x9&uma{6nlC&c=xkkb}?uqHmE%ABuy8XAqN@a`HIaP9(ume|t^ z{nH|nD5MLyW1{P7ix`RLSo@@VE`ajtU@zRRf2&JXVgafTdZ9VM2~`iB@4RO~wzKq-7=w3RZxf+Q!X z>EV!As!R|4-f3AYFN+s0V&Y6va&)$%WO~bKd%=#!{;TKTKtN-i@Z3NCnwowPxj_Ep zSUR_cvT{ruW@ct)YNA+ZSOg7&v347-bRlz@ajj7tBjPin8*hn%5@sUi&*GzAWW?l` z+7j|WJVbHxumxkF9n;jQy6w@G6Zu6HyAK45cM%}ZmS)KGKVO-e&l3(9c{8z%_?Xw1 z20Ll?szLZlL*KRI5h(DL0uwchgx<;?@D#zITTiaslNKC{2 z`!c9Xwe0>rX?K^hS+n0bvF7W7U2|J;@pl@U>b5czcEA>Agm$&fTJfN32p}o1Er%Bf z%Q8)h0eK*U1l4(qxkyF;iReeDBmzj*w#h(@VtYVJ~Ft;E0FyG4{rSm=7kpqp+#9P}9j zy+$z_8#MKR84H0g3{PtwpCB;bwewCYuqoO8^U<`AkgJ{8*YJr;GN)$QFK+_RqrzJ{ ze(zpd?xfFO@{BG=Wu*xJyO#uQ|OE!lT1J_qd`bLxwKsop*3?QD|YZaj<4) zm6`WN^lg8-xiKYluGpLYOir}bgyyF53uGSckq4Zzie5Z05Y>I!hFBVD!dRZ0aptKZ!*!GRv~p^Qg+rkh|$T=iOA)( zv_>}+6XGxv6XGJxfm}=ZrJa1ACZ*0n(`v;9TG~g3EGgxW9<|A2L*TB1CXi z{7@DvD;uL}fD^g=&!4?J%1p^D{qgl|6)h`Pz(=mU)K27}BFY}f0qLoX9q7d^d2D}~ zq?*c04G)WXw1-sl`V$_vD^7gS;Sc}~+B3yKA|i5cPPt}O)K9IF%E)BJaj$%wzt;0# zY z^z;1)A1f2jv$b^Ri=Q#mVJ^rV21BvgSv@g^D zHX;pxH9P*{L{W+t>^K=B=+5n^R%I6+H0SHjE{JKB6oluUH_6UCn<9)u2e^o5zUmAE z`pkgl?PVqJwyWmCMo4BOem^1d`w20^nf`ae&+jL+pvh)7Y-tPVgqKTi5LWLs-D(9O zMv?ALSyF%6?^w~Dh12EYbh{p8BuCd}2aw4h<>D-i;UijP$Ot0x6Ki~yx&BMyM$t_q z4zoFa?#mI3TZQ{tk2x$tD28J=w619gCeE+gv?D@HAIqC2 zC?H+$IoppwF3)2KyngJcU| zzvX=)T1XbQqNr}L9YQ7*+l4TTE2XcfUzVPFOGn6&vn*g*O6>OgB7`gOFSAkcL)tus z+e?-C8r{F%wzk#naY8Qew;CKIWKlLu|MTj<9PeB{Nnz8tJY(k)Tl$_~UoL?}P1qaHSZ2h%)#bypL2EE*uGvIQ92H zUWqC{mjE_B2xcTl?}>fBupcDHOCkQ$>iq<8$c7!3=Sa)js%H~awGEdjT?i&XZ2urX zxWyo1l$YQ4NAoX*QOdOt#1ks0^)T7kW~Pf^$-`lKGsHf&mc?}=Afi$ak`D}M#!2)k z=MEVIuXoyLD>H|zL;@#~!ajp8m&UdWrj;+6&+o)G!WH%9hiV+XHu?z5RRpIu!oKPJ zRlmwQv!zyp+mp&3un_HW9|Udh?Y;b(O?M)%-U~2!Pp!rnkkrN8-Cme7$HfSErvSC@ zT!t|)u1fWEZofrywdaT+08R`0Ax2{m!++hfHcDe3 zuy4Vv?bbV~@)=|&s6Vh#B_t(BaHXZC zQQ)+IW{_V>a1cr!2)XKmCFltm0dUZzc}eO&PESk?Fn7WNMwMe1a%NLl4{LwrJ%lLa z7_j?7n+&bjy?T4g*Zlg}x70~JIl|GxHy_xW{q`v{e?<)o|DgL8e`ka@=|G+jQ} zts%S0X9b95KV*EqW`*g5>gE@kh|)e+v6aiVs;h$GC?#f?Sb4cgULBJO>(-rw%(`<1 zq*0ia)Z!tQsIeOYB_trWJQ4M!!Cnd%PS0uy)sT~m&XlcA8Z}M@7f~B4AP@2?*y80D zl?s{tAu64v#R|po+*%j>lD5EJ@|}d{!j5!fR6yQY^{-qiOlZq?L3CHt)5}MS66aSZ zRWheq{1E-@f!Yr`pQoSJ|7t_xM*Fq>4hkZ9{AGi9o3Sr}&MjrdYEbohHCkZAJCB0G zfk+0-rZWx^vjjq#5NqP*i?-80#0G7xx^tYaESPvcyAynCQ&W|94EiT#{(8Q1 zsDWmu+B1ZU$X<$-0febtfaHz2=M6b0O4&@s5EyKd54e~f#4fNUB;kTEl1bg}SslPMg|&~9$?tf>!F z_H6E-2vb+&VJi_={knoLmiuzZt@7gE7HNLo(c0ko7FAXe=LTq_IOG2?3LjwC@it-x zq!O)N+sq$KJCT!OHk3uB*oDLJ1yJ3Kx{EF!W1)3t{={7My^K6GRp)Qdt;Za~eTSz8$Xc4VpVSOiT0fie8i(0s7Yd;uDSB$75KgVs8NqHEWJ1kLb(T z%lz<8eqkZv!Cx5mQ(mKg=uQm(abT##50JatM`_M=IF?rD{kJm;{g;qc$?_|XCld|% zqz^&J5`DtM&n}CU%72ZP-3CBZBa=%(VqQR zJO?v*bR(PDz!lK76X+6@d|~_j-~dnSWXf9%yh~9Zq29qNI1q!#2YYXa5_8%8 zBlF{;B^QOfb<&!8r;CzJPhv4~k&Lot>JRgjhAX`>XGg|k-OB{}N!A|KHu`87~gB~^$FkhOSvvN$7D*qAGLtlYZcb~2n zCKQAwn+xtjb~Ya7eg4&Fz3Ld1vghRk;`q=TC3N))JIW2^Dk_k%7vit;3Y{O-AiQa| zoA1cgcgJLH2&?wml> z+sBKv+N!2iI(-jIV>MaF^2{LJN;H#O*Ys~14|DLR-y>jZmU-LvCZn^G;`qrfU0)LE{^6JQ7Gp|x~%AaG;IWg!(7=SYGvQDeUS7)hBtWUDU{TbZmpl`k^tRSwoX^W8jG zffm)TtrZo7Gx(R7r1De{JNWR1_@ei(P(zmT%i7gWhAVLw5q~doq>%Rai5w}@Rd8W; zTm>Q@-dKXWf5Hm@@8?LRRB$^rdZaNB2|hyD%uHX>{wG%EPj%%$PsS+_=C-lDYJU75 zkw&7hfWbkIPlNlU1@O(B;r$)evJ9hWME6!CAyX2$0RI`;rXA>Q6UXEa=h zLIQ|ohe6BUO9E*|KYP5kEOjFFfEKZjBlaHdO}=MY3{}W5;XJePwy0abSFq%M!(fq+ z27qugLOw?5W`U)yHNWF4l|(WK8K|0S!r~7oQz;f<%yWpxa}34bLbLcp^s8i5)3G$5 zG%FUgs1}4W2;@jaBU6-s3Jy`A5erLuib^KPlx(tT2NRIUyBelobO`j_#oj*hkoNzg z_0{sIz-?9y&AXCQ=T)bdZ@kGaIkMNkUod&|GTWmJKhYqH;PFOf2jGw9MZky)NS!r* zE!fSjBqvj-DWjwhrH*T73hSPsjN|dXZ5F}n6H$vc0r2pfq95BM4LfP-_xgM$DdzFo z3N(}_FuM=2O$7Gz%ZCe3W`RNC(wOxPGjrz>l8}D*EPo{<0LWIFr`6T@0K^+snAf(y zW;48PH5%3ld#SIVWTrNI@S|!wlcLs&o|SIOTRZFQ%yN0~q!QA3GOASmB(AQ<2X8#d ztCBVrNDb$*$pmlSr6wT$Yv?zanpWNUjd%QXwZ?p)Kb^bb!#frD{2vvVbbtvQDb$66 z(&Zq5=qRQ)N~oAjlYm(w?6G!Wslkn4_%kaY2%GX(V5-TKjd-+FAoTFFs9#B$ni7rTrEn;u zR;Z9(oo6ry-_|=_hjP0E(^q1~DjLSdoWfCy>vFXgCn@747MK2~o&{N7$>qQ22{tq)T2R<^&ay)!3^YE|ouYv;^nQ~wqr$$Mfy zGzUc`4vd!~bUbCn^2y~G5+X9vx#-#=c ztQqBMRV=B2?*JfbXn|VriwF>rw?XrrGseFmGS9rOo-A znqle}!E+}FjBpyoL+aw&%!k*~JpPr(KP@{!CcgEJ#AHTF2b*fpyQEoA&ZyONj+8n= z<^O6#79V9Inq*gU`*v?=0~9J0Z-)zYnYnaKpNq#hdno(r|@*w1*qOD{jl93s1JPTK!u0x;s)@`G>UJ3HkIt5xfi zOULx(HOl6FAiV)xhm=|xL`iRs18j|tf5fvbusT3`%i?YcC}SeoHmBckHZ{zezUb=- zmFMDykdk-fhC;$Lx}lME=AYt)s|yigEMn)S1iAbW?ZGdc`Z<*WW5cyCY64xW4%c;P zjN%>V>`sJ6?F$IzGgS*PlH7aVj*q0i)*I6sRGe5u8lG>pKz~JvAbM=Fbf?~$Dott~ zS)L3Tl)V1}Qs95wj^}O*m+Rv@jj)1ftuqt*ZuE0YqPK;U*I)>3;LZBNB}bzuInE>7 zREA(2l0|Rj6V(dKb4t`?^cn(hKRge)vDMIEl-!PLs`E2WP$=yPH$^yNb(>p#B0pX|r5$qXt}h%GlYmTJ;NEM3Kbnu-Xf& z5QR+`A@XA|qAN9~CO9E}c4=Xb0*if4Il>AUy6+GuH}CtBqHk+2At7iIR3{_%wW!oc z?y4NF9hzKTdwGfU)B+s=oNM^B`~Bo$Pn9%y5#}9tCrKK z6X?H_bv3{Ir}>+FP|!Eqk9b9W`k8y=00}z1;{{|^b=DHmqdXA47#2tmX&CuWeB8pv zCx#UN-UIU@0S&Wg?2MY~6e>J5^R15j%+9uvpptfS~;p~z;)t5|B5r0p+;^1QTtBi4+D zIzxUj=f4dbcAvgf;JA)u1k%-g7-$!FWSQ(c#9t%?QQgz;Uic$`&|<{Kf)=AWh9X(SS;b+F$) zMPE6u5RQ^>4-O!*;xPjLIK4MhUfWJPOfq^5fd6GmsjvTK%8-48cP7*fA@VqH9HO((H3uf2o5rI|yNfDvH%_ai4nfV}!DBqEVPtA-$C zH(@tu%LOCCq${FNrc!bLcFhV|lJiCU+K2l&k^b3D06kN`K4sK6qD<`3RyfDKBrckH z0~e8-v&0n#CJN3_#AtU`#U5jefr|xj-6IGWyFiPnzcpAjK*Xb%$fvrWRA2e#cpP@z}#*MpUYobbfQ``gXBV zk@4W(v5>0Ka2V$QVntJ=VLbkXvw8*w+&#P?k4<(j7`Wl4f~j*Rk41gQbYFM6S;u*9 z?km0!uv>cw`@Ab3QfU8OBE`37CiE{G4X2+H$D5&`x^N+x5Eez07@qf++QDU@7W2F$ z7nvDPDQWwMhlohcil^UH)^)QnU6PCrBTD$6a?*M0;DjXT%ppn=ann_4d>9`M$v?U~ z++p&IL*^!MQpI)ryun-3_H@?I=3wP8PuAN4Ayd{O87j<>^El)Nm*3jSDC3Qc1)@o* z4SFp}>r2HmW;~CA#c@k@e+erI&Da6++s*?G5!KbzkZx<)Bnt~04`y#b4HZ85hSNTA z2F*kcaFc$6eGRwWR4-+zC3;pV!sA$vvQ~iBatSA4S2PBLQeJXKG$9a&k#lfS`P%&(VwPbZ?A7ZGSQ@5*NZ^nc1HOfEU&>1##L4h91h z6eHUY2`TJ|igA4{wi+tOK$gVDlf^8Rkf}p(5kN_fR9mn|dvVI7Xexi0UG^X~QBFLv zWGJG9f_pqb{qkWktvaM+bOTd!mHmkfBM!C61ioEpvhXAG*-mW?%M1|CMX zuh?ES`jb@i@y_%OCt`bSm1rK`!(&!75rF7im}aLOONWxj6Hmu>e7N6kN#Ob0d-Cs) zPIN@p?)cor={L@^XsrE=RXBQOsK$-s(>0X5`h!x*wVg;wIx#mEu!}h;bxjSaXXq z#LG>vBVfyaOwb;?ra!OveYZw45$fq|T9FRE#aDHPvI!(5uilX$x3$$5_09WTiyjpX zyxThW1@^>9W@snwx&no?ZLPHTczDRM>5wj(4%+Ka^`wGM@X&64Nra*+J%M zb!g%_D(Za<7@3mmQq1_Qfb$RwXDd=ebZRwken0iBn2~b0-a#Hfjnywt*1JMx92}hz zg0H{z^5RGgD$6KobtoRmNin#CnI0ILD{2U--^kWq}HLUVFzHF+?Expm-z>R`*?CA`6Go z^`Q6bZ!%kMXU{h+0*yHzvJX&Eh}#Id$8^u_Hur>j)sHVGvOgoNMLkPkAq{ZI5JQ;a zB-8e=kL zfj;f0b?h4x>tuRuL;5c{I&7ST?0-a`41zjQ!9!RI0f^g|47O+*ecqqN`rtV?&$2o} z$EydpSYK9DfM!zaqwmK~P7xD5pLKYjhBf%!E>Q-)AoCcX)$0lpT42DdiRng{ zUS-7&WWi9zSxh;7Lc>9v73)mftebIkoWOs~te1bb0n1Ta?HTUFOXb$f6;lL~p?_h( zyq!@@Kn!>eX8}Zw%oZ!E2jtw#XdB~KcY z#r4ntaKHJ-x-$|vst7eI{*zh`;QkaFmuSsZL{TLNHSkCGp0E_hb6j^5_B=Ns_! zULjWz8xz}dsb=Gk=lH?5;m7(B0Wj3>0mvp2#yM=lad*Q=)vN56h2dA{9KP|7P+h_# z5=kPt3%vJ)w2EFuXvdX3_gSLZs+w*pm=0p|oj?5%!>uu{S6eTV+$z8nW4{WuWXXuQ zKQE8z>DtP)VxX7<6F#YvPqv=)%3~a?dF;nR6>I8kh5$y4+BL*^U|vSx!`tC+!SjGG z7zT8J_*tb=zaVMz^ev)ou1W4>E|K8uIuBapP&twmr&C=PNOhvlE%8VPWIv1a^)*PWnp$Jx=MMy$Fci)ac_KVbD1H;n z-xHiT!sV2d3GuK6&3_eD(!Hz~PS<~m;0nOWSafaBZNUqBBf*W$OE(gyU1Busm;!5~E6Lf(sk@$$#Y z@lL`@o%Aj6?@xxRIHo2p+rowwR>f7S?##zGlEe}L(VB1+e@L&Dw-xUtu^ZL(dUF41 z-OuKkK;8<5%6$h8o>A@;J`ynw%`)P1q8SraC`cPY7!gB!=a_UXV~*&?CtH>hhuI}Z zxMYx3+OX&|wSRC>jz6*pp^owJppk@;l&ap@Sc2HzqSsIL`NvE@FR>0(&dXV7$j@h` zLFY`^*K^m2yG(dg!1arXPe&6<@<&X>b=l=_0QUw8An+P1B=mAtKtu=!k%w3an>1Tm ztnDLE>kDnYLTT)Q+pl_smr`}|lTF7j$YGftrT7xZOx6$Gy5i|`7vToqi)W2Q=EUt8;QAh+S3C__@$1DmWoTPyZPa7V*Niu7NE=!S+`9 znFq%Xvf6btuMn(2J0c0qTd^ow-!r6XFBTl_7Tq;wZRJ@cFO-9t$GCD>bVoE23u8`p zguLd=rFL$+ws+!vndi7jvtt8?ZrsqTqVJ>;#7f#*21YOgjSs(X^ASac>@2xYbx&GO zB%kwU;t(r?446S>{D2??D0hYL{#YCawXaL!x6C+M(W?8Z)6ZNECYi6Ky} zG_(0ic3}s?K9(m0U{pfd+8+gE)Ms6>T?mjF52X0V{q>)Pa5&ebmUde)&ea4%hKWO$YyFu-#W1)RD-SEP1 z04UkG4zg z%*&Q4I!dy5gHDte+^sc#O%efHx?pPD91sk<(RBrQf;K+i$f(uX3i{ns;UFk5!>L(R zzj{ghbTwPh=GrW_m-~uz6M_W=MGl?Qml^Zb06vpF{!wEFJ}{EOhk9Se8V2-&yc4|Y z3DmSn+=XlVzVw#ao3sacmpyMw96i6?*^=-(pS}U(%UVa%&9kG~vF4e|F3j@N#c%Ji zwg)#;E!szw4=#4NVSODd8rp7N@L&)lcF5*b%uaT`5Kf5VcgzXhn=L_Z9;cwxpRTY< zrApr3C#}sD_Rd->3l#ebB{1scX|9bIoOi%rAl|`YFp=t;g#7DM;|QS}K_X=Fka=z; z=>F&WwpG}C@80-YoPWcXpic=aB8 zsA4ZzlR7w%H4$BOBw|pxV;lPIJ1tQW8bWj(Gv^#Zf}Y9{_YU@<{?1eE`~5zznDtvW zU)2R=tT?V_wl(VEi{6j0&$kWe3-#Bv6@{PCs9+i~Ze4(MR(q#?)|-N1yRv+B=f&1I zJdUQOv1pv-{H`6;Ft)bBJWhDt5CX92^r*Zs*@@j1yX6IT=?)R5#0&M8f=ukz@U#)) z>r;vH31jy(s!qIV*U0>^=&7#Mak=S2dny;yOT{(hwSpGwk}vtgm99{#)Vj{|Np=Bu z13!dFip5|P>+;(BWq)gH)U1=c3bYOjvRRq=q;W#G5ykHTp(g)k3CCrF42|=g z938!GXT2>lQq1fRvE#@HRe`D}2M52n`JSydFEp^TBR2EhtvN&_v> zznjxC;xQ*?GDTZ4Sza?){u;C}Q<8b+LRz8mIqDVq)Yq2#1@gcD>KTI>k58Z|#Is_9 z%3sz)LU2bA25I3^k`R_e1uM1O>pRLT!qpWtl~tA0ZvDc(#qq?nvPENdSgLN3YW}eQ z#aCWY5~DsP(7ALk2L=TUDU{kHmKLb}^~8T#(n!PLlT_nMYw zv7LLjj)J7H!1!ygvQtZ9xiVVdAE1%A-xAA72#35uh+Un~k5@xIgUdw^7SK)Tven-! z;;XK`QMY2d#_;amDF3#CY&B@9|}2s1Q#V50_4i%wJpzTLJ9AF<}|>6+M=J@vod_)o9yfvkW}pOomO zKRLMB8yY74n23!RI5^zaY;kZskaFp6Xt$B;WjX7C4}(dZ9n-6`<&+XYtIP$uC)#tw zkoimNP)>3yazxf%3^&IubMk5e8L)fxb!~uD1Ab>0^9h^}P8T6gb=XIZNGimJbvsLFyqK2CKL8#HW^!`9MlI$y1}j79Dpg-iY6E zjvy^A-I^{_Ogn7U*vK}g2qAtSe%bI?XZyV*{J{>(=<#~lpfam(X(`F6Z}t(j4h=`Z z3i0P$I3Q$On*GvfL0RK6Bo#Jo3mpm*HELQ?K|Pq4XJW_&FZ|a=Hb`85e%U0R@+#Wp z7VwXxGjH}UrD}FpRV$Up^`DrjkLJa=U`O(5e^;9yPj)(;Wj%PbG&xE_nN6L@RF`l# zAx(XK9c1!q^&`KIR<*J~P`|~0Kw4lcjGQ^&BrG1r6&juF(ZU|3kRZFhKjid9$CXU` zjmK+>3wr8q2~c7%yLy)onBktyoDar1+|IDFVQ%l?U}9rqVzRKYAHdT^OZ3O7q7pTJ zNZJ?#pTXmV_-<|*>CK2O*OOKun)5iW@&&l-FNwlfPrzwjSnru`d(SEdl>WUy}7a?OK?N$Yrn48_5EL5B9Q9?X- zUG_h)$`+Roq2Jx*a(qL8NJCE zxx>$;&Mx_RPN4)4Klh;tW+q{BIT`pgfLDp(9(nXX1mN(IloJg(OdNTT_X8eWlh7%JC zDi=XGLxBgfj!_ty{lf*Tb=19&6=V*}*<~ri#$aqkMi2mD1E97(24qWNVlwr1N z!DQ&;YHs9D!{r?5GUW;(b?U{hD_rS5>R(IEi#paZIM+HcyX`m78-t(jZ3OoOE04!l ze9gZOpPrCUPAJMhPvvKsn2g$J!f-P*X!1bYKhNvsE2t?%OSUe}bc&Mku2hMVeaGwc z0_f8tvI9; z*$_l-b<;3Owb@*VbS^$3rW1zE;=dkFnxp0|e0mB$KJ`vEi zRuzx?$ag<;FHtBb23DeU?AIdphfhCzjnnNEvC0~2P$3706;hX4b&cbY%l zqa;SYle!BduM^bvczGKB7d}+j@Fa`k!*e|Q)J1auAmqmq0ol7j+10gl;^clAN+e(V zTjwds(Mti6FBnHjRY>wAGHfZ=LL-amXmlG`@32C4A9q`Z6W3l$7kDJa;LCFTb}knN zi!nNB<3l%n+fdz5u!mVkIIKopMMvv8T4$ z4)KplK?i)4)-Nqic=`UbV zdOlF@oTkOIv)s7)|5OCdO12rRJ^sv)e^8=`WkFIM4w6a#ju{eV;Ek^e)K3z~_7uq} zZr-W)Zfi0h5QSi?F6cj25KXS!X>AsHz8QJ^Q!bMW0`O%c`y4KnevNKIc$l$C1{lUn{s4XMo6LKd%Mox^Kj+_p>Fom;b z*Zc*uv@;5?XdSi*ue0aD88sI_!0Y76F#%LBB@)OF7NS(KUY(#BmG-;guu_xWR2&V9 zh5?3DSe-T-?QA*B)uDrJ#)Io!cM-Ds++6ZAnOEZ{yrVsW(7xfIcdoTMlsB1Tw$^eS zH3T3hZ?*L!`Q1+2Lp@?77%UUSA|ZSx7R8JEHuulZ`)pemA2+tJ!xJpmBwZ*HimYcx z)@P`@hQJ3$#ajgw@~+V5{&)t7o`ku7Xl-@o190yqW&96X-6E5k?h?`Wg5x3VpzBS` zY!tr8n?FY;8wJn97_$Uw2A*vfSJOeme}6TWweP|R1$)G$R@6udONRuPXEATLO;%yt zJH<&a+#|v10%Q0=iVN%I=pzqjAOpbF6%`E&kti-(u!CFAz55pGbau&T!LB&3H1?)^ zkCaoa)p98raDFA)~WHHDlqbjL;hoI7X)^%y2RO4*j127L!_-OU7A2; zEh<3e@mdFGd+^8(ry3?|>h~;=+(;Pv-^_NW)z2c3&_2}hY;Q-+uwC#c*Xva$&9MO< zaRKf#H&=JK+kK9wXKybxFURuO?>dNj1wDJ4eWxTvEvWx-L+^CN zYbz%){xbfqa!El$WZFZiar9X2d&@tcR<}H`4`V5zp!y><@d6(kfi0M{mDw_qED)zN z-=xG|ge2xqBAae-iT$*6jN8G7DfnPTu4~hQR{?@`HG<#Gfy)ba!DIs9p2Cmi(B+hY z`fN?*5kOI$&?csKV31v6=3p|{`^t6 z`Fe4fY>j)8uq>lW8Zh_=wZX(7dqOmrdOr;C&Lt5cT(aMHC(y588=*Dv)#Z6y(6b)~ zs%w7oa2JHdGSm50K2K4L$U}Ww0`Q-G@Znly7d~?lg!*%|X15d+WMySlbZAq9dF<*8 zGRfbI#v5HQNLIE}2MBj;QJl#w#-jdOJ;6Yffg6_Y>Ntl|`OE17x0M6;)_-|<#k=FC z)01dv&t)vr&W5P}>nHq$u>==Bsr`n(a&+OAq2q%GyN*mtDcq*?XeZ+7F|z)k7hN1MxE0UrTFRkcRu=38t*0p<`rtjy^JoLrY+<)uQv>V5U;<8A{|E^$M1 zqxEN4kj0)!VS}TcuCodU4Wa_ghUj9P5r6vah}~3Cc64}sX=l5_a*G^kzbWek+N<@# zE4GC#9aPR>mZ6n57y;?iml6=&yBhUg;20QB4gro!?q2D{(s1Md-)u<==BQb(jv-|6 zkFDK%!Ufb27H%M|xe$4YkC?~;9=Ak=?8C~`k(bv~{X*()i18Ujp&9a<3O({mg(^wh zr*=VTsK6N=AnNg&J2&@{Hn?f)^E6`?)(_$Db_eW7x`qlUJjnwbSgWiss-z=W_no)-7UECImOAQa*(vg-{ zO~3DG_7JSDmGi!mQwpI{tb7BoKSL8U00PtL8#yaJKrH$0eltC5$U#Hsv3HqxuC{&rn|&AN z+5UJxida)p^rZz#HX0%pFP6GrS()5nBPM5qg#V$Xd1Am+$wtoZ>|l^ZbK>l#AwrgO z;k}JUye+yeF0Sjf8X5`~Q9NI1?~Bs2ZL__V@axXj6o$>G_KVp4%u(Nmf8N4{qUNk-5fTg-VY2YA z-!C3v%)d!)Z>LuAW06IfdJo1~`BVGHwyL-i zsf@1O8_KIvhGk`yGh(bni(COk72waDg$>H=EUc^{#GbXHoydQ(8OMI1g!%7T!R&3T zd3q&8F=q;c?8uz#@jpdhWV zNo*-gdRkgwCoTt~C=9XCvFoneZRP5QM8Njy z6oOFjglXR6ztuHK7JR%rt7(Enj|~SbeJgO+)dub^PPZ^>dwy#e#ilK;bLx^t>U?hn z7!uf)VL01sLy(&47v}%5^i6@4c1^Pr+cqb*HL-2mwr$(CC$?>SV%s*(e!uhI=4$6z zy{fCLS62f@?^)5I`n!n>7AaS1b(p;q=KP?Gsw=81ddeDw`b?raIu#>84^2z ztUEnJCYJ~%cK+8J1Nxs@wJ!xHwUtrY0*23 z8AJVDj$rK_9-$(L;k+V_$;%!=#bgr@Y*6ml{yl9Z6a9<^luP5MO8Uwma2x$EhdRN% zM6hakdlpGDM0tTk{_lsHB!#9{)(d_w7h?i^S$ZpTvB6FR#|i{ca7!r{ThPjQ@!eW9 z9ocj`Nhl?<)rmo#mZhGmCSj5UrSbk3G0|y1IXN>XY>sTB#o)V1V<$_4EYBco(AQd1e= z!EH1_$~*H?uiR*oEW1x1*4()%K-#}soIvU*jnH10qeLE(e4GWS(xD&RT0J~NGpY8H z>|}}GEqc&llPVP@Bd_`M;w;!`oJr11y9lCQow9!!s*>k^(ghV4H`{jpAj4Y;g$p{R zNpQHExO;w-k`0TAh3-JZQ%!YF+Y&t2#0;Zb9cx(Y)i?E&3X-v+M&#oAYGnah|Kh?t zN#k=rPAy!vx@-?}*X!oxrJ>+&7ksJlh&U*ybytFr!R$tdh#H1S3z%4}Qmb%MUWg&6 zUS*b{gHIHH%`^Y*G-9Wi!1nLSw92igD>+L_d*LJ}LbkH=&+2gioA?7-{RjX9Fie+F z-1=*ygKNZ7QK+T=eUYMZMG>6yoyr5Dnjr*U5XLP;9GDg#ARaLNJ z#q#myl{h>Yl-+2Im^n=X)3qfVQL*(?S-dUJ&0#Mm^c%Vm=n& zn8ya&aoz3wf*Su3=uAj&H%&n%0ot?zuPK@PVVnC?-Z|^x=4*nl_Y1JdR`1FWe_s&K zA+2Y{fweXPWKiB#VkQD-blUYop~VLDGtSOUX*X)oVaQ)!E2Mnaof7*>Qwqv`pJEh*;m5gaR;Omhk?T=VApxlfNm<+sa{ z_%^fjkFYC#Ke(N}pUW2)bI|@iFm#ANCUBS1)H2;~TenwnGO)x(mma>JmImKqX<->D z;J}+e1bhqFoiu*A-AOZ>&EGMg<5}<(B;vXpo??!ti)^l0XA=3zggm^&L_}E9qzf9s zJ6aGSrWuzxxuYkoD~R3o{UIQC*-7p}+cLn*glWk7>2ja!48I5i{71#GUbW(*65IrU ziJr^DKU2)!oj>34rJ!yRh(A9(jLyo})w>NHA{%&-`(ns<3(zWCPo3%Q_bGD*-QYRi zIN`V}E77GDI;G}0xJQ`htWMxA#>vUbwTmj1VG&D7} zHIsi>UJN`Oe0@x6MF+&Qco#RTYI?w#kzcrCK+|y0&~(();&9F0J~Kim-o+UhNfcBx z)o%|KH1-x35(@{q!uUGD=D)1^>VTe_E;rx0O$oJ|=ANug*X1$HCI+qf$$%RO;?jMW zpEd^b#*6#D!Vdlsd{>pbCo2nfAHlFN^Lr7XENjIq)tUYxNX1@VH6W#uC#eT#MV10M z{oI$v4`x+h`Y#fi&bd2m9=Cjrmx#@+kO`{?3 zIs#5WQDl9)KsvK4>^Ms-+%G-ztIV$l7CR$*G>+>1H+$K+gszK&gOAN0m>1ZunyHXC zm#3<#DJHwPLlQ6BpRcGBJ-&{c*TIiVz`W*0#+aqd^d?Xy=;6Vtc6oU@-TwB$L)n1q zm&?H{!Dj2vrH8(n|LF4TV^iWpCD~`g$t(CdR#n*AkA8GSO|z6gT^c` z>yNkG%)a2pPy+pDZU@q3ZK4@(eC9x_=Pr{c`gq`H0Rx>F_U-fMNR$9{%a+@27KXnu}MxolwA6}nNIw3eK z5?UNsEg@PQA(>>Xq!;g=OMmIO}Jwhi+N+UV`ku@ryIt|E(DmPfkv))@d}{^M+Xv zkMDxI1s$NjiRTJD6k*!SYw~pgjeUN;?cc=Q>qmlu8Yg^M$FQZivWV!zV1nGiA>wD1 z&NbSEX+TWS(H2%i3YdAa58vk$ewZ1ypA`{$iGt#8;II3_pg*W@5p^%#fxx~e56xr) z$7VxMy6oCas%4i481S_U==S3$oUFXo#-DuHd}XcilsJND zWKReA@FE%o0>!nDTI{g+Xc;f&*WB|W$o=|5;?pE8JvoENIKA!L~ZA0RHh1bF!eXA4az#JFoyJI&cuLeay)Ru?Nsy{DLn+f6yBObzA`vAaLwmD+(Yr z=yyjP|4)h+D1lbyPQL(P0T_sP_jw5;S{!Y>T`Si^aZCeFWbkv<*HI!&t2J9qH>4z- zEg4`^L{YJ0*~RSuD2PpK^*v5xJQzbo;5SGd9~bJR`W7eH=c6N4xW`^C!p*kp!h}+9 za*p!Hxw<=N*-J_-@#F;q(v>RB#Ny&OP*Hnk%zvfbJ1^O@SiQkGXIPYq72-6<21fiL ztVhcU2qdJ`etYUGh`imtGo6n(Wr^j+ zZC$j|&}S67jle`B=2LH0c3z79cVw|m*Z~pLcZ@XSR)g-Hhd))Z48$>@P~$iebysYA zZX0RAb+n>q31HQ6P&+sY_6E6f?+>W9k5t5{eP~0Rm*a1k$uNxCqw3cs?&L|#NHM-&bJfda${Je(CT?bh! zoL{#Yizn2$rZQU_H6(Q~EH=@j>z-buZp_GIaVAG_PH@i$Bfn;28J3!I&Dwtcs+{<# z`@L<%;i*l%V@TQc$ppgXirtMvm;o}Xua_ht#_NvsFj!PUU;;nJe8ZOA#gDfRGV_+FS8NwQe*knw7sq}nK8 z2{ggmcgP8Grih?}Tf=T2_77T=g!5p8QR`RpZ&uElR$k=LgHxE3Su1n%p=e>mtgS$- zhzo5xaw@9Ani_b{*yU%NMdxHpC{rI73E%7SgVE!Rtjw4)Em28YM+ytu&rS#wfB zEr0!Qck-Wg!HMeCh{c@jZC;%ENh1*x&g!mYPyL+@MM`-cQ5hLLMIGt4yZu(pvYWLx z?=k)I2)+gK49;-VGKNET(r2jI5wUi(+>y?LYz44zt91?u|DHo~hUfhE!MKGk0BSGP(0z!8TLj_!;_Sky!1ju`L z##jtNf5`oT&kf(R@;`G!%mnhR4oBY3(#E>Z?y?XG2Aur?8fr5les_DEL5!+x#(lM7 z_>Bz{+{A95<6`oMQ!V{9w5yf!Q=s=8l9FXU|R z=_{*s$G{mRjQpt4Lxnxj!d=GWxlZ2Uzf+(}6oG0;xca(J+p6ui$< z#FUm@Xvr67$QR9IO5%L7QV~(ct7@-l#ekWSAJC#fI|~a}|GjXON@pnLs1jfu1T7Opl+QxC*m`#{26eCL-aNTZa{KXR;IN-7%72l@m za(oRQts||41Nn!<#WpW&lXyG!AF;em5I;fo9rVF!ijbxLQ=8A4bK8xCfUK&$NZt0DlcDKUT`$9`23vDNB;@(==jSRc*K+;yzaNjFq3m(t7*+d1XY% zj&ol^EJQ#}7sB&%7Bv}q^&4#rtk=#lrM6Ekop=J{kf%ml-}~1KRU7!*^`ew@O(GNG zaHF1+EW=8}@QXhU@9Zr>RD|n20jte1*7Z#(uefKC9|_Vxq3EqLPj0S5H=Rw82@{bm z5vgK;`X*TdA>TbCB@tp|KKa_qKip2qyK2uBpiF*>u>Dl_8U6QY3Dl_Z@&tx|B{aEa z3aZIFfTBxmd1T-XCK(G#S5Qz}2n2+4rl;F$%Gp8^@D@)+!^LC#_=a8fU&%~*p<#ts zR)Lt09S6TlI0*3@NOl`gXng>G&G7ZKA|u7VQn8_>0b9P;CS2Ph*Lk|0_k?){CaNII zM;{n=)+||RH%SsOG7trt0yMLK#TQmYd!zJPaRQ+SUd0jQi3bwFNMaZM>8db-ycpmb zlH2D6i;4bMoW?1aioE`L2^qAjjvp6&;i*!;XWaApKv38o>qMMv9u>8tz)6}fVIA@p z7RJ3XtkM>4>V(`baR-ImlO#@-=SYVT7IcJ1*nX@?GOQTr7%toEAv3>?in`cfMnB|4 z>ulY=oP!)o;^#Rl{IjEfoZKy)nrIIB21yph?R1atY&@b~)gBx=9gqW*bB68>gmLWG zb&9$j2dp)Bj(i{Ta;h28d$c?A%NWndy28T9CT;dJZGLV+D@y9{DG^!J>mTG}k<7^Y z$SBX3@p#7bGX}-m8|z_POu$@Jf_TQ|3u;^&rGfRWXT;Mo4l%wKl}!@4i1;g<3>^DF zchn?I@q%hbG=0kbuwjoh@l(e!=focv*f8*Q8DOZ-!PTV;u=AVR>>3bF+0p`2eWoqx zunybh#QXh$(9B5Q=%I!;7;KymCSAxsWfXiptQnOaj`1~DZ zV#rShI_%9)44zl4M4r+xj`=qwk_G8@Wr6r3T0gRp1$%`B8{tUtmY!FJzA2MF32=lT&U8Ru(7%@BO?w;NywU8oAbvW*dG^H#7?l-Q2C|NCr&6@+G+E`k&Ec|qjxFaguT?7eeTmTjEeh=8%(Iu(iPepGRC#kg&YUGLzH9PE5b1*4E|PSe?LbuRky=ml7I}(59|3 z22z9s2_<7ALpWggiLa_xTX%j{s{u&UwZMPi0vLbl$2%lQ!D|7yVV3je$}3)RX&}J< zFGF96=XWbH#LZ<*g@I9J=Y_8$(*5794O{G%PSnHsJ7*3+GDPgajA+XhEet^($h|_= zdw#7@CQA@s7e-bm4$)YqrKYdOJ{H6Akffzz6eLD3`P0$6x2bl((;T*r05PKrBIy2g zBA&m7gd1ts{yu;p$OwQ1OANTj?08*p3qKrpcU$v;YS1;OakVE>6Pp?k?9uJME( z36Ipj$u6aSdnbtkAeYEP$pWn%#rMQV0a9}@C0Bt8XB2}8YG>OIspl7!&8}{=(DYz? z0CjlVHY#YXjsU;fhJ$QiHj09FqPy+*?chW|BeM7uKF${?PTssN>4-WQgy~Zy{421i z(4-iQtn18iAATd#B1;W!7UpsgpJCwT@`dqw= z-7J>HwfZOWxcf*^OcX*8jmnJ%?eL!?$*@>qcoMiQrLdqo5^WB&QofOnBB;=(THXJ_ zXKMm~pb0}Z`)Befgc!#6@pGA6pA1=%0#yol@Fun=EUrfy(<8jOr4jD#iJ85;Upaz{ zb5-RzyiOl0PWWl7We`|si@f&)>oGm^KVX`&N>@f?rPC43CA;3&rjD*)1)c4vg#4^? zMc;2?I%VM6Ze09i&5(x&j>zZ(eYO(aCcs_HqSngFx6@o^I<+&28glSb;yBFguN>Zl#D zOBQLqnGQrCBRu{f6Sn=g&^4vJ3d-j_2%u==bzl&$HwN*Tn*6&z;Jpb>@!TY=D=kI) zW(xQ>LQsJZo_kOtt%&0`*z_*Mtxv<>6Goe(WIfu+Qc_uWW9UB6=*LV9`VqKAy_`+y z&DFEcuRljeZUiKe!XOSh@pdcfSqZTAlBDPN@Yo2_2`Z{A2UhABhfVMkMe9I1g`b-hQNmd&%(jT7QXs?pp00-P;B?i=o+7`Y=Met-J- zfs>~q5u^KWPyye z*z5F52w?(^q9=d7F&=>I)CLU|_6zescgF9XC4>!smLKG#7q^LS>gRY@ zl=QaFJG2yASv|bJ2QM8D)kIgpu7X(S0VdQ*%w#v5EkCkOFbLNPhjS=&Q#;*Pr3tCD z-w`=jc&nLu%e_|MJE6+Az{1|;MRjnP2HeKDYX<*yct2+StDW3TUC0(_ z?o2iSBJ`Ox?mHtw9KUFc0L2OSuTW!RJ)vX6t2N}z*wz8lr-VL6DZiOzqNH?R*ri>T^vM03 zG-!PAa+8s>Xi6%$j=xuOuFRwJgGrS2=+J?I36>cdBUYBfwWQJlw9)jG9K-J+mL(0+ zB96&_%szgy^zvD==6pvQ%4DL~;6K@oG5$9WDLsM+r2zZeF<%KuGysGJ?@Ni1wUB%t zzJ8D-dXzl5Dx9J9R{39_b>Xlz-Q61QP{Yjts*W3yj<9e;V0fQ4C^AN886iJDX#N<8TUmO8)`O{e2~BlnkKusI9amb|QT*@goU1{#6GQ$7BCD zWF2m|nmgG|Pz4}>XKndb)l>w(c12b?QorvMA0Q zc9|<$e_}uzdpc?=X=pgikCQ2nlgiPP$|cYM7a?tz{|iG=9r&yoz~CMpMd)G6bZ)r1V1h_)O1| zJ^cD=5(_e^9j2dfyb_zZE^%9OzT8H+8)?|>v~$q^Q61rZ+Tb1UAGvkmFfZ<$eA?XG zt8OO3dS=iEK__=Ll>A)i{YXPPVKuM-&2Ul=F5$93@jU}{U=>7)mpv=Td@BU~*^k?= z{WLdpx*@s9S$6YTh`@?3Tz4qw%F1j#c8>hp<4TJo(q?AoL59OE*-z1_vGe$2@G{MAhes+XKVdI< zX1_!W|0oT#0&iN%cET&#`VYR8iwuQIkya~G>XBKYL4!53qBXmqSwze;U(N)5yW}T2 z1JlGKgqd&Tz=_7REEPQ({;C^E}@dui7ADcU%Vex!GSJ#_}Oe0c6cGAm!(^ zYQMp}T3ga)Q0rk9_haiq3E$D9ux0Ofi&DhX22q8qL^T;s}mu-C7Jh*zU>CV`u&beDkp9nbKS z=@ck<4028o&9a^oR2q{|x+&re^J6Bv_VF_N&yd*Z4jkUc57bfS{A<5kwFl5i8BhUd zQ)%3i(ucwX0CC$v-u#UsA{*AwBJ16ONZGoWowL+Q9V5Qg$H~ieH!T=okW@A-%X!60 z{bt)0g_fq}%|tIn-FCxk&BUTpJr%%fZ)?O}2l(5KNO z1q9b$Gke>D3e@&@&mWUEew5WXREJ8E&|%e`Z6U~W<@@QN*KM$*;b`yT+W)o0tY(wI zf%X)L#{Y)*kQl9g+6bBb6!`VT-cIwd2ZxCOREl6iz#_(3<# z_bOGx>1?(qfI<5-%|aR`ZWbXsIjSEn&j~>C$o%`8sbX2?5!W2^hCg_dg{RT^L=X zg*uW1jfO?_&kR!Cx=KjVE@#I{p)=X<&w=fYPK}FJ6H!*wl9iK@(7A`3Fda^N*?;aO zkpNPHGrtkuyBJK^P2&bG4oX5gqTg4CnzXaAu&}zhxw*9SQg?j(*w|Qh_UN5bJ|mmAhgqm|%f`|klj7=y3;43RX%`h| zT2q9tQ36=ofnrdvz#>202vL#ti7*T|_`3>RKgQby+Qwti%Er;t@?f`N;N8eDQTNT& zRMV8cv2hq&1f@@$rtU;OzNe7L96naraM?RZ10dgJeBImy)q>*Y=CC|f@)lCG{+jp3imeQL}dI`rHhS;5{nVm(povd z9o!J%PtJ##2k!7&t~hlr@TX4Y$0HV`2_?8d}WZTBc`eUMa=MMUW%fUN}JtiHo8;x{pZmB*w{iqSH{D^$i_rfGcqqv&cAmj zLy6pyIx;Hv*jBsSd&=Ja;NQ|xae_la8S$WyP+*XjrX~|JGhpv8D6oL5sHc&Tkf zYpa^6>Al=eg&ZyfX56BC=0~`K4!+|_>JHrO?cDCKovg9dtMjo7mCB)UFS=bN;~gIzlM9UVUK){ZAQzLkXjWRa=RKQOybUS*4=7~ z@n5u-$wfu6zGoBgGmq#dmyFgJ3 z0r&=MYh!iQbst`W20kY)O5RWnJry;Db>%2ubLOJdW%*9~(2!yG30xl)XS;VHQ)iis zy161PX)Gokv+~d*!OEPUnF}j0@5pqBCa7|R29~Kf+*0mg^Dmc`9X**T2oq#U6{4dH z+QsdL2e6k>ALsMVj|w{&gG#r$>-a6VQ?r`@^1;5vy}p&n0`@NG#Ux3B(ol$ZdMy@& zHv)|oWBC76T;^{Xq7BVN9*}p8^RSt(#tmt?_GEiw#GY=mkpCk=>%yY|62wbwQ)twU zCq{)gYd1~q9aam0i%)+uo)o#@$Uz(zmH|;xO|*^{4B*9;n|zPTh`bbtv3B6m2YHk? zl=FHPgZ%u3Plbh^9^*n@dn3ya^IHu_@dPMEb(&N!uvj2c5%ifgRJnEkm`Sa zh9Jk*iI8yCtmcy_Df; z^FEl{%BC!EAwhl!;>L!#qS|6w7Lo`kb+Unp(0y2+X$Vcz{b2+LPNgx>QCAm(|8<4q z5j!-Hv3NX<^{_>^Rs9qDaZx@(5O&6Q3F5~E`|T_qFld=)?QnmK9Hn2y53-De9C6we zHt5oO0nB?&QOxA4g~RuU-D_=oxv808UiF*ldJC!4NM$bHcj0H18{xLJx*5nXF=x26 zB&5y_*dVEH08%4bcm2DYw$<+^w)3>xS$={d8P3EGI9Nt-jM$5d+d+_UX4`92W9B~f zYPG>{TvE_KK2(sgL~%zf&RRlDY(VbG+pgy!hdfMhDl4DeWJvx1iG(Z`Fc{2a*?trl zylQSMBB7(AVe>nq)&8w8C~C3#5aI==J!SZ9jrU~}kd7BPDbwg^Fe1kEdn;=As2|0p zq^RTmiC1ZHrPjot2jp|I{^n)BsCEU@=3rl%rEY8Qq2dZmNtITeq!}B(eR^&?v@d9` zPsJuuRMVKKu57B;27#lng6Imu}+g3HD2VN{qM5T5l0wd69mg(D9NwSKFwWReB|BSy6H6Pl#^AaBBZwKyZzCzdmIn=ZDr~X2H&5F6a%ebFgDC>1k09f z_U%RRWW6`pUDU(Lb>2x*#E$3Vb&$ZAs>+tyXmf@OmB}94ebGbh4}=}eF}_79QV|i65D}5jN5={|O*NN^Q70mf zKY$hBs7P{c;Y(t~`?^%eDWd$?Pd`SfKU~TK#&rs;`IGyrM_~&D>Hrz8_xbUGi85EuRb6 z8j?XX-t6;qIINap;UNsWY-ZAPvcpQcl`|j_rq8M53UUaI#GuQnKBhg}crKS<@QfHe z%Ql(_jdu)*A9CrW1r~FzHrO^a>05LRct=-6cNoFoEQElw;`7lVZ9{gCM=dn=hv+Ej zik*W+gDRHq*P*XplMX_4@LfrExyaBemLgZ1R@=o)aXN^;R;06eY}?*AMo^TzXR`Xz zxpNH|CG6gV_tIwaWR7@fre-K+CaGp-_f(TvmQ_;Fj*m@Bk4%fVTzW*T+5i0m{0-y8 z<=VtxshEoEn-a+B+u3oOsbkrWdAt-1w@ftya60sig z&OYyjkcfwlDm(KlNli;dN%!*Flb!ib$|=8rt*MWUhmT8p3-g-DTYE;u_{&=T; z025**MWyo#9OHTsU`hw4~Q_ z(l!#51mLb;?T;)PXCeXH0AzNyEZ=9)7v1vuxwXnAb9ELyHrtWpPQ)K)`hy^>tI*e~ zwat4BEBfd8!L>qy6CVtJNkP&u2D>5?2kY;Rss$Z77H9_TwJC>4*=t{)-LS4!^cL`O zO&X{=@{-fiE?@RJldunsVPJ8?)MJh^{_%I&;Esi2&aK2TaDUrW< zdflB@Vz;Hl;3+pRse%FA^F4MR?42UwB8ty>5IZHI8+bOaJ34%G(zu&+Ld#3?6$#td zgs!(aG11W{3`0bPgHfa~HC7YR(9!Xcu#iN3A)z2|A0Kk(=s>gs*jSjnyKFXf>`Y33 zyEJE~jI?_$GqN#F9n?r^7~tQ*)wV>QBh)L*R@doTuo@iZV5YVC72217y-#0f?;|+4{k>!pWY<7_=l?Vqh~|0lE8=ygQ}CXV&~ zRVS_U81YZHQ-|EuQOm1GNwNKeVxkurZOJDfW;-#GIl4ymPI_zp;kvo8PlhmG+0dq` zPhmbzJBTZj^wT0z{d!U4IDo+T+zZS@*WjfjeM>+q$AG;TgS8tt1!M4IF=T|w;KR>g$IswK&)|)$cRU+7z1?jnth!&= zyieRbewP%Gs?N`#Hm|XX?xWI-~>^u ziu&c)AkCT4Co}5$$a7-? zlmUszg9l>Pjm!%rpPsyNQq8k}s|jmTMkI{E-bqJ90q6;>b>7sykG%DlW|EqEhK_z_ zd{$!T{fpfwG~a2o@L`1L7$qLdXz!iX+yb1Nno10~{hE7VH_Yq9c8aLRW!Y=4&u2z2 z+f$EDV12k;6Uxg~K$k61OP|H;#`M_4kK+ag{@Z>8gGZ7`T6{(dIp&G`tk?aX`}vu= zDmCNhb3A^#2SJrPe}e#i2IMT|=fwO zV}vuW>?5S5i~n+|u(El_r!?v;y}{_cF}%2!yh(W7R96>kY3wYZr02 zJY!3*v?vE|QzO_}ayf>kOjnC?y^+vSvCvTq09REc92_jMz2p5JyBqq^xV-24N3+q* zIQY1;_2F2Fu7gW#RF-JSa|bAMV^GMEe{nId=PNR4_xBAesi|JM_`JNlw6wH__33EX z=X>Xxs+#LdOU@r7)xYv=T$aJHIXwy`V-HW@9NL{8dATbt&WD=Aujb;%q~O(B?RH$A z8kDR_J1@@X_l(0xG!&p1@6zyUq;t)gW|xfDPZ^!ax}L7JKw529lEV8&Vd%L0Md8$V z@_Q-mnG`B8c{hNBdV_zd$y4%22zW4BZ~j7N)P4ve>it#dQ+Fx>x)sKC#i2Tui|A~$L12opEt)BrGZ38;X^ z!tQ0PhCm+k3ZY>Vq-slxw22s`oHYR9{(Qt54-Y@#m5_$I!9Lcp@+~Zoo#P)v{$BXn z=;n4p<1#%Yon(UD;qu$3n>_oVExTdPYnzOwT4MNA=#sPUJI3f?Q3@w8m_;B)9&|J(4INfu-l`-rih<54N^M&-Y;|rfXfKD3B_>p{A}* ze&zxR?r@#rl#mQwKsrMHcP4=o|FJK|Oi4%Q&;AzC-^;W$x?Em^Ezes!k%16Is$d+6 zQ%0fEJbd^3-8CRjP?KxHr&&f=grcO`I6Wtq>7k2*_c!98FD#I+`F@~i0pC+X0^_+q zOW&BD57`N=|K$1d+=75b>jX!Jho;=qIq0AEcwCz(xknD6_6ubMfyIVL(|M%RQxLgn z={(Piy6eg2k;tGN23aK=T!U4`e%0%!axpON6UY5K-QV9oIMPtj&`?&MGOP~_3Tk9x z&cep|^6|OZZdV$u9-oOEo4_nv!G?kZr-B`q_M&E*V&QGkf-sccHV?HtFd^DogjA8y;hy=LvzVSo*wZVCb=2gkrPE3H^>P zzU;KoE9_bYMQuL0EP;8}#nT!B9=~SdVDU(>_fnY)TxLVlt}V-%0=i*=MH0aT^X<*G zmX#<~4SFV>F4US*fn$o7qIakr)_@9SEsWym|6<;B9CT#{&z! z<@f3ap`z)4-xz!pmXeJ7B!WG*5C#|;GK0<5PL~O)>NSjwx>rq)64Os9a()EO&2@=S zl>Q^}%s&5+K(3ypd)F%;;D5lK@v-LT=DIu&uY9@u-kxPUEk_%<}idK}*C98nj9LkE}pefad!ASkxm#8d1tocp5h`D!(AE za+;7dN1c&Cb?Aa3M-xHiL_sr}piq7dws-ef0q&I{B9y=~ychjoKC{2)FGsvbKjAqP zNJpG2KXaZ%O1OdFkW%G-PkYudN}bCqE7a)T9p8fkf}R~_ne5O%#L_1UMAKGdPG^ug zFVE~n|3AH?Fe4_hp91m=OjE4;G*Y-Qn1~4A-e+*GJ*j9*IC7$Al03~4P6{};Lso~x z^Rm$uNeRoJA!;Ot$Gb#AVjU3+Ix(o$(9o!%=f)lVlN4Fd!|N9qKJaV)!)-S(`!JF; zh1dEJg+O-~lBg@_Qki~OW`%bgvm=osqR;xVyXe5>Vhl?Ck#|w6G0n*`=>GADga?JZ z$nAs^PH%Jk({QFYlaZmKgGTSwMNwZ^g6|XL4SId9Q=`l@HfXdAIA8wK z^IGh)o_}Hp3Oyi?TgRXAP!)S@F*uZ86vbjTS@zC&eGs2=F#&3JkLBI-H7>u0XW(j* zZ$!idYb7Zu0B2_+=Oke+YR@H?t0uM*a8?iJrG%_f5*QP7GNGY0K=l~HhM65CzBh&% zUQk8ynAeNyw6fHyw94!>KfL>JB!T1ceQAVzEzB)LMKxk70JSndEVG}u-VEn!TQs}y zyRm(Xn+(YF&aQ1-RGf^UjwDsrD_tsHV93-GF*%A6@U<|D4gUNL8jZubzT7-?_{OB> zVfkCxQ6WQEN~P$^m++6~bX#Sgp`fjH5l-CL(e_15d293iQ^@FBx!j&77mwZSSeaXE za+xhkRI@wG-64SiNy8*Tr0VFy}Hk4t4 zfh2nxUNx=1(P@-3NScrX@6agld~&c{YK3$(`N?|xBq2*YZkm91g=$bM1n7JJpm4m= z+`_K_2YoN#N8ErjxLt5*v*da=5K?_aDxg$g10*Zn;3ne!YN4O@(Fx1?rwI}2H2T$6 zx3uJ3^PuDDKzE~Qmjxev@dr)D_tD#))A0Tqym=2bJ;WRcF@U^RoBppo929V#>X5$^ z?j}Vj$&G!^~a~5+g)SrHLFF z4L>dLhHdu}C^vwn02B2a;}I}wv|{n()i%dA{y&z!F)-4$X?BxLY}+AU-?sz$YEoNe)CcjZ~CaO!9%zTS$Tt1`6I>KYp}+xu-T zg(6i6^bbnd;hqf`Ye|cKobRfj;NeEJCW5eq|H^BbyZtrn)A4=Y+-wqEk`48iD^{gS zm3-OO_DniZQl|3O`Vj04fVjlMLFc3A@5#I74$vH*p!K?*N|wYrvw5V-!IS~qGAn37 z)$R6HK}19B?d8=2Sf$FUgUal7?ghz1*DcI;KwBWRgm)sPnLb$a7k^x#Xp6&XxXK)7d)Ye?;QjYV8W=^WWcRpu1}!7|Duk_aaWFE55A2fJ!$?I8 zO@X=#L1Wyd1rSZ>xln~=0cju=c>G2&kp#&-A@XlO#oEX^_BY!%)*6IjDRPu>cH1|T z{I>L}OP0)6)VI%P&IRVWZ=V$(-|e5{9?@g-Lm{5paZtqd<{3G(rzA*ffJd>BY`kOa z^XYxIowF+#P~|can&hJMLMduQDY)7-7K)#LZ1(`8L7~un%=k^ z$if0QHkNKLdf#sc?7{czD$u+Eq$9eED?ccaS$_5&vZsIhO%QWITS$%ileKZhJ^1}K z52wvUqy1rkNh+LFj^){Y}*{eR2U6_pURC|aoLjB z6#vLaHdF_TO-)QpOiD`1NKsW%8n3a6D^^J$5vnBOmJ&7#H8isnIp8fJB59`$6UPw3 z(58x9t~P`@1YD5R1HV@~L3tFx`(F#yDl`Xo3zV@8^-K-gZKGQzW0M*S$1->(ypBo# z>f0(WQyCjr3GZGJZv>)zT5zj>_QA(>K#~5Si^;@HL8DEcw~<6n)1;>?@WoTBP(f+J zSuk5~fVrEJXB33h@On=?P+OjG-G|aKa$vKm10Pxtc^`c z#@W3)W}p%zs0rC435yAMw`#qV@lnyY<0q()9?L+vu%nu!OeAMX)cdEy#0diypl1h# z1pwO&@h{aI<`?+3)N3ys-Hq+-S-v?whb@iP>{=e)8tx+}2%G)b3htj{vF>~c$< z+GFf~`P-fE|DQlh;6x3bVLDfsg!Q&do$Y#IoPYoFAA9^gU(Hi}?|QW`%e@EhhhwZT zby!kb>e%>-V!V`G5Tbe^NX>Oe!b3iTXsFv0iKnWF+i!f-#%-~q(HlXIYBtrA8JfDbGY6%MXsHu9ViPKkSzE@RjOO^F~DTt9c*<00 z{9Eg+F9-`a5bc);)EJ91x_e5|APk~tN@9knKUvLWeSG+0EOU~H@|W)}fHR1wHN-3z zx}9RA1yfr^gUTI?FiIjx7y>+*Sz7x?&hrvfL3aEIZqW)VfWE%Gq(BbXC|>|C2i6hT z0At@tAd@G*mp9lIL|=+wuN_2J=9`@XCIC9*)3W9ALXn+4Wl*@ePTQo#qPXjm<*DcIufL|?imQPEMD!xa{#kz7 zGG|aO%wwM@QD$+#aVg>ZcLD71`uh1;eof1c1XdJw)q`~x@;(yK4)miERdyq`@Ei7{ zD|8uaeCPuPgPp-mH)F8e?UMdtZLvM2UQs7Z?$_Z#>y{P{c6K`@PFq4kRx-4?4g`Mg zM`V~Mx7M-k z24$Y}U?yZT9dVL`l$5lxvND%s7ONJ_>nelEcbUK5bmW z*gG673U*aO?Lo-69@S>rZo_rW$LPBO0Sts1J|bVZj(7;*9I@S?@#~CoB9@WkPAmlA zzh%674Pt?=;pU$Ot&(4iKRS*g1+Ww)5Fw$yg`yB?+;;MBTp}R=A?0iP{OkzLHob0d zAK=Zx9~lY_6WDa(cYo&iC+lByW^1fA zvRVR00Z}$Grp>BS-IL|kKj_$e{(v&L z0K6D{ZkyYwtEN_Z$^W0cAV9NW)L?VU$5Z5Pjon0jaQTSoycL}qGc8PpgOi~)^dmi> z@V>>`)nf^{q%r2DkTibmMMz)L+*}Do=$Wi1~bB|U=&OnULPknj=ktZ*W*YwK4v<0zA7z2^!jYsbZC~~45@HnI@qV8 zH%Ev+CCe;k2q5qaoAW|OE>d#v1qXb`0Et6DgP|Yhh~8=Ix%jsE zu5Umf#bZ3nbxiAY`4(4>$?}?@Pu|^_3`=4XdVQ-l9&S;ZLg2RMI*r3ZT~gPeu&^`9%|;rY(s#tD>BqfaLk`ux9>l6XPuP(}~tF zsIj1LPf+f3VOs0WYkPeG!Nhb1p3`&dg>dBW@x_<^$5fuHHp&qmSNr!Os|#RJHIJ?; zveg?*Dsr?4styUqQjiGn9?j$ocJUS5h|1<%`-J4>4FG^DP&cCgR598LRsv}&uD#*J zY9*xtp43O$iqSfP%V{wC(7;pLTk@z&&~5GS`qcVFayrk^-#0QMiHwXiwZv zqj@7SRh||fB0gZgu*@e`}^y;AuN64L3lM) zY#$AXZN%bSwO9D=5Zr$VFBao{ydseVGQkNIBSi`3{qS<%842`Lg-S7Vl_Zi03%XNG z@x!K=hebXCZ#sQtKW#(9$qJk0N0#et&GCO>7h)nLM$ij?40wg}CAb$$`3h$O?Mg(B zvc%rm_|XR%L@qQC6s6#=LzO$0K-8ynMnn|nrEi(Lt&N3yVm~se!Wdb zj$^)PciG;(yJGshr9p$5Z@~rt3~ZF@&x4FkgX4upKKI^nc_$xW;DZ(4vIe-QaW?i$!J3de+Ed)H04bq7Z;3GI#5XzA-W7$_>CgyI+q z{rAcxA859BALd4uo6^8daxls8vul1-l?!)GzZar95s?1}ig6Au^SOOzTm;X<`0-h= zb;)SxX!ekhMOj{TO;jmr+C)`XC^~d$A{kRClSbSBgyo=%P?r-CB*pX4Df7^&0o6mw zWK=3n^oRoo4HtNdq?0cb^DU_MsGx$b&)Gg+lM=(_RmKJ#cHf5zMBrt2Y&LO;-eM@O zR%P2~s9|~m-m&qNGFt8%xt?nq-^8Sp6O3K^6z4O$7e>l~n4aqw%p+$kJYXv#@Qcrk zU%oLHbA5)8ji(>4({}Wx#yYy%m^hw=tO7qg2}~L;UkH>nh(BnEkbr>*OX>`i7)8h@ zwiX~!_5*qs6%wl+uulr^f+*s<8)i)yv0_h_a$AtUYhaQFP)C6x#zBUILzRg{UZ;q# zA_zOG7qtyWrVk^Mfg9uwG7}fTTgV+EM5R`bC#si6Lp~py>nGMfI1KATlENP#{Chds zh}9S5HWW57r$fA-gjJzPvPl!tmy>rW&VFdjQtV~4q=@B&BKPVC2gZPz;*01iEITe~#&uj7bZ`o?P0F>7T#77n8>gZEM<(Ijo>?A{gAawP*H;qm2zZ zjZVEI{_c-V&0k3&I5q|Um%xKP>Q3Gh{IJS$DL9kwrfOYMq!Y3wsW{GCm1?omh5swx zelXwa$F{2sKu}{^(pFWa{zo?eZ#;f*Y;3Bkd^e)P{cclJiPH%cxt`L2m>?W#UQ~f3 zAV~NOic8R;n5S4MM~9qtUmtW`dbX1)DSq}#kRUcXTBF`B<`D+=S7mS{#BtXf@T@6o4b?G^W$jX!Wn*Pce_~pEo!S+p>+@@QWu1^SYTh%)O}C zzTOWXj`t=y%(%YJjgS7x9Ktr>LoeQ*1ExFKpa(YCXWFqLkwisPVMDnX^qX-Muks~E z!X-xD^={^!W~zVfjDmWplH_56p#0sl?0CgLv`dVv3(WNY+Sx?uDgM2&#k&o08mo8P z-BeEywVFFFPxvm9JQ{|k-wVp6i2RNhyUNBIBg7D6H^3lG!>0Y%$$!~^8{=0R#IV}! z=iL1+4*O20NJl5l!Xd{(p5_S0n2bU7mUW^KzO%-7^8KFKa`zLpw}F3|oMe!-svA;w zkQFhcLr&HyI+tbTZDVc=Kcz?^qY#TOFHo;dRj&h?R}s*|M5-0{NGjWxd|^i(KL%)2 zi>^lq__@*>jiW%j8<~9LLlh>Gmmugvaj^|62|c?8fyvl^aP9Ak*7}G;>81`q?Eeuv zSiAF8OM^2_D@fJ%WFl+t2$RM&u(C0>F!gm3KXB0#CRZvf270UK*raXlJNO|;vS(w6 zsb#GHeP!$6vF=8fed8FqHuA(__#^=BFRtts1~4YX=s z;A7>)=8GXmI#Ho=+wBv*6dM)nW7A8Ef}ec>k)<(?EPxE>{mu9b8IIpvPz2?J2#z1B zld5(#5_Q5Yr6bH|OudKmuPvO3C#aRYP_Eggd+I{l~@Ap6u-DDV9~=)(@m6JXlKKaT4K^?usZbQqYjqo-36OiL9Q%8X2udR`1t4N4cmFxi|Ef6u7`{0ZFoZ* z`hFF@U9MQUl1Fs{Wo8bYD0o)siP^iG!OEhlY-B9SRlFHd5gNYochHW*pgYV#sl zb4LacnjcAldvbQ+LTfy zAR5MuD+#T?AD_txY=;sA_7I~DsZU;yR&5}b5V`VQ@P>3XBil|4B0T%0?vC>a zPrF;|dd;8rL=~D#$vA=kGMV&u*_Nb;B?p0ej+UAUv-20>85C;s7A?gEdZu@lFRn>! zG7{9F_K+SHrJCf_mrXJ$zW)n;319w2cXc;kPaY9%=0-hBLxi;S2KTQtjJk?4!Q_c_ z$Ye>8gER+X3)_gW_AQ2fG7?Tq#o6fgGC}RtJZc-2W(kFEz#f0`h(wwyOxco!udXdS z>(jI2vwa5B!_sqYtDFSN05-Z6RA4kD@dtNNx&D;Cj)E^wLT@2RxF?AwUZ|1|5-P$+h z4}lPtJSo7a2kkB$Zu}IFm;C6Cap>F3W?wuwKz*>Ip!sJEf-X3(UT`v=CH)+H1V=sw{^V9gh3P_|tG*b|xHtWTJ=Ul0Oa zdi^KyVxMzGZfs?4OG9dCp+Ma1A8{g5f43d;A{Bz&BSds$UoQD-`dxYVcXsZ65#1i! z+$~Dxce8JTNdg99q_B>$AI01Y7q-8-=8?nrg~yqyE-%T8i%Y!1FD@?n3kuFMaOV-i zE93^TA#6m&vT15k14e&RhqV*H<}(;EYeJ&hbc<_&cx z&opr-&D6=7=}e!Rd=))%lH(>1^w@>@G(q^(C;0ge^XZ23D8a%-l}-!K%%1&575mDX z`>Mu1pz~Nm=i$R}=`P7mmW-1jwU(RMJ*AU8u@(AtY`i9&{&2oF>De~f;Xdh@{(ySA zxPw+bSiC~MM$0w1!8I9~{@~a%sxxE4n6Eow9Gi~)PEyT|*kKoriH{%^A{|#&4LCp4 zLqbg#c(??t%U~pQk>RA+W4Uhixjat2e@5u;&cnH9JLSe zS0N{>yO%VOG$85zylty_bz6OZZFOs3XM8d9F%^e=uknil?B(wnbUEA+--}0v^&rWK z%lMqjI|HP9H25>T8+~z)5K{k3T#>4OHc!vxc&AW<__K+ObIWszI*NTwFjIRKG6x4o zs;X+vjjrRkq7`=-(>w<&<#*>x;Lc|OI;Tit$bD^L1(^&5X~B-j83|&}l8Gga8rtiF z?&0i8g0z!g&!U^}z}j5Wgu7DxyZdSUUWWjoo6ly8U?Ft+8z_YOm3V$T>Aj7}^)+WrX-=y+!y!J4f-r1w8J~c+c)%mo&y%8dCUT?OsxdlO+ zyC~Psv}t47VP&nfn#wvDC6X**NK+z4uJB^MI49M})^v_hJAWiMna^33n=_aMrH!0G zBq4}#$AO?$q+XZhQ3Pj2H}EjrsX~_}oKmVaDoo_5G66(uO2&fjy%^5ogX=V?VbeUe zNP%a+Nlzw%iCj;Hj}||b__2%3^C-*7D`Zhh;!a-KC9_$T^=YP42oDxSbNoi$78C}gKOqFhNbebzdZ<8dm0klLXm=oH4_KrCkpa{MehN}6h7x)+ zEu#ALH$r4L2sJB3+|F?mMrF*jUHZ}W{>Ay_#SsfV`_rPW6MzLJEEFJ^3@RB88A1sP zd#xb;;Oi2-CjRbf@D%nRs3O0L|H6?FC;IxCBqdf}WY!Lx1EJI<`Sq(bueP?kEuuZSW+1Ew<16!Y2<=f~gnWASW{zj1=wCuWo5v;83rKf!~h2xxg;Oz8&v zMqCY`Q7}GOTaKOl{encGTQ~@IpcC}V50dWZ-8CLY)*cpN=jY7Pavfp+9oIs3iU1!- z3oQs!VzHt)ucwfb3EKejghBJMJR=7$h*FkSUNzld+ zIif@%D;`taFvA;7Cf0vH0zsNDK`QmI>Irl{U}7%)XTgYgz>77AEJIV+Z?-3=p%L=2 z{zCN@45~X-{mWYU#Jix7@!Gtb&~~%>ImjA&?`xCttHo$wWWv0n%X@{;`hTeCi$Ev> z%>)q(`TLil&*Y)32kL1U|KNonDyV-eE*2arT7^qPk63(+zz3s*d3$w!KG0>YgEqA8 z&3Gv~BW4*vv_ajwYpRUMCIX59zaYG@5mSu|Q-71ga$H@L^^iUT2I0xUn6^A_Z0c)8 zWHa+)OQQCVyZh^f1|LW_L-*En4nYhlm=4y{`Urwc>|2{W{LS-?lUMsp$m3? z^a-ZC`ZcNBxf-X53vaIE)Ob`oG8oHFL)@hU2Dhmu9Hz)ngI zJm&^p=#liddxcriC8dTJ^F_FK5j1B|+g7Rp4@~*9)`xGlli8(LmuM*-@X3U?krq=- z`(DL!a$!V>v~zlWdBA5pd7{C{^S1ZPW`W}6z5VUIRR)j$EmfC+6!>6{3M%dSm`=vF zx$cpuLriMhKFxi7rt#Vc5h3|?Dv7YaY-}b-*PDYA+0u0Vz$-(B|>IO zMuc}mwP{haG)_7}zK0N4XBX6$H+%Y6%arQ|Zu<$z_bg}3u=#s{9pP;lIVCi# zucJFBb(`&+^mQw-tLg#A+!Ug1zF1fb{M zHzyFB#DFe>h>2crXu4PIj7)(V&}=*>sp_lZm|bq0EPhzw6$e><_l>``gaJgqrz2ax z4zgCfOu1_tMt0AS&TaS?cB%OZF?|U!O-IHe`Mq@u=YZ%(fQZ`u`!4pn;YvXq&dWY= zP23V=l7JfscX}`acO`?{=PzpH{tG32loB<`7_PH3a8pJ@LnA#seN98-6&!q}qGEl0 z9sRPXU2d>ybO%kOp}q5UMJsHZDr{W!vWXpI>QP6g(Nmz9#84QMRFaHlD5DMzP$OGAJwyGCR#Z*CS zt@`}g^CeODA(uXRO>%=zdE`&ITPt~#=F&V{JR5W|b=$A9ZF6#Ys$FttLvkWQX$o(?}c_AWV0NHXhKpJfqnq-1Z(U+KuCz`-VZt1&o_$(`fvqry;r?if{ zvRN*XKSPK&hmL?A$sURv3_!*>wtAH)I(i9hcpEViw0L5a;61xfP39?VgEgi!F*?2^ zUWyI(@;Z_BkKv?+06{EJ4Epl&MiPl`3yKU{lgrE~Z$-eIS?d)Xj=PKotcA_5;oc5z zpeGkzk!=;*q?hAeyHm@%jmzmQM=bY>`tix>=GI|sVv4ycRZtAnUjUeK2e-ddf$tp8 z-8g$g?6OuGug8B0M+`AQRop&$!6*xik}H_S9tm<7VJWc zl(L$pa@s#j$zsTgbEG8eG9*G9*2L>v73+<^FDY2rF4xZxoD0iHPO-Oh7RRRf8+-%p~EtUnc#*phMMqU zl)$tOc2y|}B$Xmi)LZWO_G3THaX9A?JR|glA-r7sOYnsqfdi*-op$CM)Scs&&s)mt@jf2AVe4d(K_*oPm)z|&+V(pps84U!j8&IThiSk^%de)A+Ux1j z!ND=d;P}FgMWuWxN`*wD%@({4 z@{L^YA9ny4aB;WR^?e}2th%r)?xTzL<*_hs&q>6~Gk5hUexycrHEpNo#i)B3UL>@1=`<4m_Yh0^#CUzY3LTVn9OFO;%68ppBKZl|1rq&hkg z<>DWp$9wbJ(l}wC1n;x0mpT zT;e|#XZBw}3>NF7_*al?u36qWfdfm1Q~=Q1)I5&OcWwic|AK)hR&HfuO;1ffH8nAD zmds*b*eyp#jE~1;vx1`?bmU4BurC(6O!XfXr`;<45Ej&JzbcCl(p;zK4XDj!+Im)9ZI?w_fgV$mU;*ma z)+|gqKO{an|cb7gZReAYP7WD z8aOyOXi{QQl4uU$Dfvc9lFEOiT@)21wC?&1slW0uL-8hqZfFd}5hJ`|D9Ac;C$82E ziK8#&M|v{99#lKKe<(A}YC+%1%YAR-J;J+C4kpAXmX@Rj%r4i5ah|o$Ek?3EUg#8A zBQ=<1kY%`(2MFry(>Q8$WRMK;0InEZ~`HbBA5V>kJle#q3a$vI$0XSHSpm~Pl?m@s5;9K*(_Hq zXVC6M!uI)F+~z*lFN(`yQ-qx^R>8W-p1V9s ziqpG2|4S@Yuy~~cE2M31Hcm&Wdw-IVZ^IBW=m4cOqfUf5W!#P$`(gpr7zuCU+aC0r ziQS%ZSp^h=SFL+K4=f!ZlD+9K2oFJShMh-EMHftn(A$XbcMTHOU;CT=Mpicx6^p=s zS268TAMVd9*I=T00@S?9AZ4Eo!_$|JT*K!-3VEQ|>v=y!GH3mN+$-yn%b`I$KJ1t2 zpsA#U_$EYyxDpg#&sU_7@K#ET;(gowN^&?#2^2`EyM9zDG`cvcsHh$tA3raqk4{Zh zb^3HQb!k(iRA^Gm28t+em=}nPm~kN!Um+vYwTnTECyH!P&9TR4Ae1XnsO1&oA;JSQ zkAiw`68wvB#wnA1VrFV)W9*-C#AQJ4P8I>muU!$^<}-NCfO|vtk34ZAJ4h>3O|PZU zk)i#d$I#_v;#o>)D{wteoc0NEtW#V_?_fPtm_ZIdd~h#lBwGKTDU_7%@K9C5V>We_ z{obxrFxBhW*y#9Ctc;Q+3$fA#e3&&gRn@z`_v;$nhW7gU{%M=Pp&gdu;-O-Nqtl&P zxtWJ2C$+9KTm1n%g7c^4%B41&Sc9|mzqjeOTlE8_ijA<&=8GH1$=h(Er79Jru_-th zZ3S<-_5Uc>-r%a&AF!J+!_#GlmP;T?(lf>S7?FVV?D)Yr z@kZNbm>k8yBDX;1a1J_KcwKq7Mz!|3#N+DF#W! z`S?0rT8aqYztvSQiW-%rt+TjlYB4R)64zpLm8f!0vsi*ee`dB(((_p8qk;&h13joY z{GYVbRMD~sY_TPAlXX&t2t5}8jEybXs-8ya0?^d8y^VX?DR=k!{OtH}hsnI?Fk(QR zCYoG%by`N9dus39S726_I)SnP;(4pUe(&lqIt!^97gP-ilK{FyC{uJ&lBjao+l8@KrAxyRM z@$vS{Voj~D4>uN{H_QDnqG3O(d`3o6hI1-LrBr!EMca^nI6KTBG&|kheQyxDuC7#s zWbTjcl;`J?+FD?)>-E9?EAW1ioQ%wBvo)@)GqK1z{Lay z4gvA(538NUpdtC*Z{!z$Ev?uZ$SohDC(t^)+DAS7@aOG$)A7AA+JSC9Lf?oIZX+cc z7MA)vqMD|r$Mc$=r~CW!3oGB#VoY!Eu2e?d6ePmT_?)++Oj{2(H#(ipSt>a+(csra zO4*9PR3`isWP`uBxKdJ+msHg1d|w6=<;BEBWz$*hKVIyyvCSvCKO9D4F3E?$3B4Z# z6%})2q{gx9S+B>B_62i(@q|`gejobmy*bNlLMuw{bb(tT_#Hy;h;Ea?xWxS3G=7i2FAt|ZLkfx9X*BV&Oa51?+?-Gt;|MHA!>FCNezm2T)p3TTrxv&(i z?D{+aa%F)uAaegQSoO>wRIWkLwd=niZ7XH+ln53e`ugRwtua8SBvkqSkU}cL4Qh`# zyYN#*M)43Goq{nwJ8?l9tRXM2yDeOmYEdb;c_<0CZ_b)nQ&z&+ItjVFS-WCC?v&eT z9U)yzgw|ZeV6X2$J{qV`302KqY;=qOB`Ws3r$_tSdmvN3wCs9HDu*F28V#$B@F(=L zt>eOGNkVeRf4@?;Duox>5kb>K{xRam37R6_+YjY}Rx44>3;9g`wC~}ym>}N6)%@YG zEUGEf($wVa1gzzaFYoVd9c^0ePWg3p`qK>!+n%;xu#7y{r&ruQS=mg)PakWG?)OJs zHy>IZb@CXPm{@Rc(y0uxX-tBfTSY1~pkQF8Gcb7)EF9#Yzyk-DukI}(LNrA(8jnlfBQ4OV_$)tfYlQSxA$CGR zko&48PL5u_1H=01`kB0nF@p~DO^rSV++(}%Kzx;HideMbCyl6mIxQ9*ZGj5$yZ!yq z!71No19@&EE62aFN&Yyof^encWhxHSF@6*lTgtETcTf}Ik}U6`?YO+(hGG0aB*Q)Z zM=*wCHXQclrt$8DW7fnyYxJMWVEhF>FgGjaOl_&>=(^4s1^-Ju%qS(vF{7!fD)i)J z;0iD=8`J&W-8c;m4o+rKk&5UTTQ&;=a(@{Srw26@YP%dphA89SYy@_bN_A49-md>1 z!oES54r8*E8r`?W@ZxRBbaJ=Ovz?SvWg1DgD;T`MhgkXy!-tGNhf^Ru3b%k&vt1(QO^rwcr#M7Fi0@V0`}- zgL}Q}Z!5ENL|oz%w1Q{*eCosZpPbk5vH8U{QCd(SCY(?DzDPs zT3QD!d0dRZW-PEujvm~#hlBw8Ia!&nC?(+d#^{Ha+1ae5YKdZOx8EXwe}6B3q85kf(D7b1sm7exIJQ zj?K*c+jbnb6LCuVu3Cr5CC+>K z%)z0FyQimoI!{}3iN*5YwGNldMGH2~Dw#@ELX;plZf+<c}x~b-QC-KHK*=Cexl@) z!#v-7-$A;qFuh4IOU(*>z$Bm?8H{ca^DYtp&EmuFDV)0yZog*owEC|`lG*^f=pXR^ z!;xS=3RUJ|g2Twpad9IfBRw%QsHmub=3Ztt*2xP|8LAFP`H9QnQCR3fa`V>2oD%LF zNm}C6jY`28U2JzK&s?rHWbIKC95fTOIv)BlnfFGv^5Xoqru??0V}>JGjz6^4!Zub$ zmNuq*g1+wuyR9Tjhy)>M)%qzwNureY5L0-NRuQZ|Z`oMV7iWuEq@aI0D(_d;bmC#P zmel26{c}C8(R`dLl0?Nfk+HS3CjY6 zQqIuUO3>B#t-9h=D7?v#s*DpI!7E$3aByq{w2?YIII*e-62h8R11Frnzkw>3Ct0fl*VPv&4yt@+MMYHNc;@{6b z_I4S=^iwwuM=T_rc%||8B^V7T0Gi`~AVNCFURePt#z06*QJR$5Uj20=53& zL-hqDzo9@t^8pEAVYJn>sw#s^GxcS9q9Q`Si$XA@h>D)KJg==Ox>nLBjVKm8CtSBX znIKS@h{nh+yx+f#32k+BuDTq9xxTYJuXaW@FMb|e$IbuM!sIL~3d3y})=gOrYG`2U z(xYbncvwP4GqmnWyXt5691z1aL9AiIn%u#Tipj%LqV{(N9LWWYXXIJvEibL4VmDC8 zxD)_GUR{?TIg=`7gi|L(n{*CfA$7=(8$2L+AOR0o&;MDFO4G!Wtd!qRjarzL$%3+| zI8EiOZfweHyF6~p9#d(Bucl;CfI0Fz()zDy^!FVTGHHk&vDY_2R&gK)NVfoBb~Mpv z?$eMV*4y_95~Jgv9#L_SR51(;j8^kxb(CVe`@Ohx(-QJ-{_#xi<;B5CBTjs6M`h$6 z-9O1G8Cdw}Ku`0pE}(gZv**~=M?!G*eXgs!%~m;=%dwSi=gG_UeocoKPXZPpE++06 z75%|&JK!HrvXaj4-}Yxo6Xgq~Fpdo=8}#nJ`@c4PKWt7DhQ6PDb5oMgESsd7Grp+Yn(Xy)oX6g|6`!{keXLDXNgr?S#=c`Pzxj z0&Yl&Gx9G7HzsnF6M1S&E5Fs$QhlFJOOI!=J*+<~f1}GJOHn6FRaDT7N8Aqx1q6V4 zjZa{AGT8i4KIcO`zC9k%@X(y=G^2o$&nQj>{}=uA)W@-2k-3(Qf8wtgpUzk6D{5p0N%l`51%okg@G_HUtugiUZa*Y^$TcW#9(wis-TVLBL zFsn`X!+9{Vw%tf{qX`5wBMfV9(33yzf7-yVr2JG?_f( z{tL^%)EQL71_OC*Oz-Ax8jP$2dW0N9OLKK~2tD{uP1&#F#8Lbd_pmd^|D+PDH;&xrmac=G}bc zQ;d-gARTMxz%Sq$+i?36+MpPTG~oWQQC8J(fZj~UDKe6E^@H1LOYHlR&+y6hBHpU+-s;@jn@6yaj;dw`66&eTu9l!q zidf0-`ksuNLV|l zn7G*qS!9XO3gWF=SB9~C?T?wZ4-id#c@}?bUXK6N@Hm|8c6ia9=m1`{=8(6XNYZN8 zf5pFiq3-qQ&dSG@zH4f}%vU`{`y2WrQ4{TvrSNNKFxxgK2I3c+saC0TdJZq-=M&Q; z!#t9ZlOOI4MOrj@+!)h~7slV{(S*Dy^H$UO=L1uxtgS94uXW=q^cW~mbd?u^HjHRs z!5uNSvEd8a;}!#!k<-4}JTRT8(EbVOTWjMRlQ}p#mj4Y82neV+v&a$1Qz&PpiIy`# zLoNzXz((uB2oNb}))K6l$5O$mk}6awpW6C08I29}a^U#!yK>GeEFuCWa!9FMC10T| zX*?_IFB@aER#3<|X#2VH za>=G9HXeeOs;;WAbXV%VesTUTTVJ=K0bd@84hcA|<31|#Fad)L|Bk=0e|ntt2jVAu z4-N-8*x2kivznJvCZi65f=>GTLCaMVlG3nnQOg&~0iZdlE9CJ4NXb~nzD`3gu&((S z1;>A0X3eTy7rGmQ19gzbgZ&`hTuPa90G9`V^=j9?mW(iDjTg3m-(%I7e~-Dj=!%_! z0zc>de)v|Y(k6}_IB?c7P2SuYt7emCp^70Jvk-PvyufaQP7QE`GbSQp@79f~RTT#@ zSSVk$JWXc!{CtH$nLp2RdTAZ2iZa!z9rDE6{1;o|U_)@5K2`J_f!R)#f48Rl|zMX$CvBbf)!c zY;tmRLT+Yk%-q^~dVE|;GRoH4nt575QcM#jQKLlMQLT!qoNnFjf%i?4HiL2MZU@ca zn8U6uAuL%)0&-AdN1f$ToN_(qx~~HV<#*$PhJ5GK6UsgjmbAt?kiyY$Qq7)_7%kc< zDuI5MqT%DyqrpI?Q|murv$%m)gh+}jTuk;VfeHr{4=UJgzwtwqljf}E7(Xq?06US^ z`b=rKH_y%hQC(_#*vA^1Jkp1dHg$2mFUVb3z!DoR3h`y z`&7-fd$yuR!9wK&1h`P4VsQxtIVEL-`rojyoAz}aib7Uaveq)9mi+4Kw))c^2HnjD zkp(4(^$dZ~&I^&44ETcj2`F+t9F*i=QsT9fUx*A4h75x&*r_9yRyGVjmorW}+|7PFJO2?6 zRj2t~zNA^DT0=}9v{gm~cTnMd#*~KOBxSv6_9UlIWn=YUfa2qKudizsPLsg!7w_QN zJMQmi_%xWVxk{I$%X++|%y!(CtL)xwc5CSS4zA;4P95nRTHRr8q_M!@3JB|0KUyljQ z!4rtv=>J#I(ggc4p~}GV!NI}Z)yDOJa=e;~YCZQa(Jl+2(vEeJhiE%lN}MWHe>KOn zOk6DJJ6@&AbQu#jw^kVnVfzQRp4(C|GCrnZL^DXgFL-r4P+E?=*c4O0FZ6U45J-KXU+F1urOQtf93L-i z)X&+o&w<|$GF{w1&mH-p#_YW_J98b!ty9j|mmd+)m7-x$0NC@)SYKEuoIOS3@!#p0 z?wQeG!gLP3SgC()xWv%Fo5AWC`Cc26zQCNaBXbU_D*W6FhBdL-dSHkgVqe2W51_Lw zS9rqab`q_eBO4y3pr9B(yu)2dVtR+ehPw`$n0z57G?mh$s!e)%-)wN10j31MOKJu% zB@h}ywXxtz_#p-oTeQU$Hj|Qixj_TlsLQ5=UxoB7|KJ9Wu_pJ4Py#0@PNW>ABNa## z%~>_Gr|ll+)TH8$d3inlQcR9VM~gT+J1YqZaRB`<&6Jq|iNSG+{&`YWs_CHCPOTlf zKCk4VhtkKts&s^guW2zE8nSt<4=Y5Qml>AagG+lQ*)!+Y@WVCS2WOKQ;WMr?))ip0=?`%c(CM%Tf+GIr}WMz*+ z_9lC8viJTSeZIf@c=*TTyw7^A=WCpEN=kWb*r8ow(pS;@*-hGF#uEQy@rI^mG9RkY z@b4*?oPP)_-j6YG-N$x#AWMaM;&{#aKox07<@vx^;n8~j zygl)$d9!gbi9RcV@&W>xScx#JRjQ0zUbHn?9)XMB%AxxJ;cdYpdI z*4kPTLmMvu(VV3FdY%zoYomn!xb(MBCZ{si~F#K zHkNK9@$5DFexJpUu74WvbQBGCoD)u%y`}k14NlNMD#hRI#qDjdBEl^gB6xFf&T#45XR|+XCzEzlUkc!`; zT-#LW@PyJ`8V_&SRY*+#8~`fum-k&Z?e!}S3;i#Dm2+_#gh{!c z%dBn~Cy!luduwlEpupQZjzU^46^r>)4I(?|UPPJfYw>tH7lU*JV%%FI-$Wnk^hi3A z521ZkaPQt(ElVemP>0kWK^s>jF7A`oG|pp&M)=ocVsK)5(P(-;ICvv*fqC#zLIwW- zGYRJj=cK*DyOsfbefIXE;SC&xiS)i7<-B8>z26P$8-IEi7b6y@=^e~O>-x+j1=5%W zKHv^{g~<+1O{J!!{N3CP`@Pc6oK|~%buNA}ds#9srsK>Ro{O0H9Kbj&T_LA8)w6It$vsCW(FU8JAhD^Z=zCo()17Ad2# zFu&#ZZVU6E?)RH#^;pKtiDXYW?=#6ZjdG{I34BsmH_XWHX;_P|Fnv$nS&Mr2`~5xV zZ$(_g045;u7G#F9W?T46pEDRWw0S3XOC`HCY&s|*72vmJpyKKE^6<=xY0tr)o`;H8 zhZ`dXm2c-ZD`u$0y)THAMYjI_O^Hb@K;>WS)@8gX(PYQR$FEZ0Uk`-`$(bH0pN#A@ zFhHNtCnA(K;-|Yv8qCG7^adV$7mhp(BwJ8bm)EHn`rA#-{~cXlGq`l$3Puw6^|`e2o3i5si-m z61jJ9Q1;`;)yYD{#P~SC2{{Uh^NWkbj~}zeBCjXkNoUXRpL|jJ^wvrAa8DaCA;b0U zdL`-XOvqo-E0qz;N#3C~ur!%so!!aGo%y32+j~(m!|Zzsf_EG%riCB@IFml)>RY}A zD|1r|+{Xg0T_nF#?u_5DuTi!S31TL=k~oPfXV?7}N^=Iq(6F=Te)Vl3I?G@Q?V~7AS)v8>35EcT@{IF-w zJN^U}b$hD@coz1zd*Tur{NO%Yt}Ib1KgV1%7Jrk@yVtI16L%XX*WGKneIrLhwlO$= z2=~QOj&#C6q-*?1&ke|R!95K{_z3aNY;6wr3KrDOn2DZ!oR7-BPPyDmA`{nk8}efM z=+Q8y<0|^z0HKobIl!NbW0ECR7U;fW>`T~pt!-{@{_*3-x3199)wb~PhiY2#fl{9$BX>?$ z(!`HOUm5sZI)MO`q~y=iUa|8w2K;U3>BCExnNLDa9mF;<`4E$m$-iAc{w#xx_pv}d z83iPBB(JEHU8-ee|5aA~{k`(guuQ%`e(DdfsbJ8)QB3dR?|TIA(ojq%7;|_Bo!q}~ zvvbDS+!A^Bp3^;w6EpQXB!0J=S<@A>n+n$@{V|(Krtp``Tb$mF->@?<94Yp2cB>*I zCGPEIc~nmnYf_CwLGIQmy;RpeTOu>~oSl6)a7s^aa%gDLhSwwPqk2bT*U^!BEK*Nb zSH$b=VCHDMAU|J*`TS^8`Zypk@D2`+TH)`qS||q}9}Ast=Nuyw6L(_Q6_m4EOxmU~ z*=TvvcmaDdN>z$o<7}y-NHEF8nlqED6CAhhd`;LvY_>h5;-B5ju`~MTvR2XR=mxeB9krQNsRLvfu`9EiIV- zA1mI10*?Cn`pw^$3<{?7n(XRMPUUipRu&enr%UmcyyJjf86nT%Ce1^6YHHC$?MPbI zSOq48Exo&kgM&S}DReGF5=KA+9zb@qCr+-Z-fC;7W`^{;Qp$w~-YZmjdH2l&+NgKP zJ4P%R!n1|kS@AnK_k74bZpFP0Qa)-lGe2=X#z@~tK5i7AFq-#%wG}|tCt~zXeA0sejFq0UFa1ZY z)i{`%!V|MAgeGE=^Q`Me@Uo)Srk_%md$b%J`yW~>&CryIt?@B%AFVA;w$?Fx612Dc z!z@gCcu3MYqnE02lsl%QWTgMk>kRiEzPyRBk$1hNS7Vid-~|Dn(~6ai?Ww8a;>t=q zI!^tiMum%GaQ46ksCjiT^?1lPEqJiq?=vjx;NYOI|FFE_y=+!qL4J+rDNj&S|C(b? zIo@h5NG^?)n7Yh(9Rqjg&Fk0G?i&Tc!EG)xZt@wC9+d`N-R+Y773%o~U%z(ADTBx7 zHs>8F?rYcSdn*#+`AZfKuMZ4PzGC?1cR|-oMq$wIKnRl%k_$+ z@?1Ef5{D@j>x@Oy2_t~A&q}g@so@BbMc43^_$}-GPa>GTpZv!>jCy>G7JM2I>yR5-hf6!BTn5oiN?vG2v%Jh9Ep6vS&$~ z$3S|qGS;MMX4^&8H2joE9q?)_0tJJwEP3GQuAQCN@xiyeyxqe?Q=UXfNWf&ND$}3^FJMuwx-zpt92(f- zU0bfA$`jWpmC<&ykw1UfwJo0dOp9=FDd)Xljd?EZ@2`~dtY^heF!i-qT9JDDeQX{r z%#4wkh!4uh-Fgw3(FfSKai0-TKYYF$8HL%3Fa1(*r?PJvGw_sv1n<+z?2gUoA=`!Z z1apG@W^`tCtHT#@$Cmr=_4`D^jzkuhO0&ya-rH5Ww6|GWS#!-RQHO#aLuV6 z*%T+G_z^yLSI*P3_CLwvNxm+tN$!<> zAHUq%O4`fIL{rnqh;Cgt)-7|`>fXJ(z~z#SiaKF&B8I!wl*-nj<#K1c9F%D8Qb|6s zHrIx)rCy)n$cN|{cC63=iPb;r{wJ~i(H)2!&TYl8lciCSJkNRBhT=T0fzGsV>GgI~ z%xv&zkFMdss4Rxuql5T=BxS(LlL9vr2~|xdjgL!ZC4pkV?%rNRv5uvdmZBb2e5)F{ z&!O0C(!-b}ZV!Yk;iUtkN`kJgE;=zWkN=Nw`e&?YDpTS4iIyxIJ zmp5XVmEOO9k9~5!S6!)^=hzv?p)7j1xHVNH@OpIi@855zeBrUbland)ziQEoiwOy< zeiyps6fGwduik$Y66X@;b#-^Y8x@VKfGyYjnP}D?M0xJ+Wqc!m%+qp`-gS^WRY6Ir z>fwcztGtvkQ%m1pWIS2GmwW#HD>7F~04;5acj7Log2COHUPbsdKfRFD>TBCd)_Er~ z<1_BvQaXCflEF3_UvCwJaH1Mrd{l&thB19eZf%?m4(LPm`ShSM0n&d8I2+?L}nKi#+1rb5cc_ z#WHF_octgYEorwT(WIlBKtnRW6MypMe(%IePpZSfQl%X11|Q%LNykYMzSGkfL$iH6WIkwT1VMe$S@=-Tk_me2{^ciwtuTM>Pala;)Y z{f;ainzYGOVD#w0iJPPiHlwWc>u1EK(&{{n%#l?DK@X+$9^hip#`x*uh>FsZN+>aX zZkB|@hF+x8AT`j{N^Qk>c zVS;^;Q&G5Fm-l>J+JdKjVctPAw|q!c9s^84_1900$v&?Y4d-8mvJ68d4~dUInDVHb zo6DG*dV70w3WZu_rl+S@e*Rosr4>9cT<+fJC6ud8giPVH^TOtZSWLEMqVKr*UQK(7 zrG2HMi*HxCudk=)wKmYwVV@(LB`L{U9d2V*I<|Thyz{+1hFLj@xBajyvFl(+tJDnW z*9>lPvMI~^t=YICa6inWlIVfIf4hENh;S*#mlpOqOnl?DO43JctkG3JQ;EE7xjVb{ zFn+3?g!B>1+c`?^4;ifzIm+opq7<_wv$M8+16WmK-+jnjt0kRT7jrJ3BiaADyssqB zEedSI-GgTZP>Wg$5`5!-D~Pq*9~qD5do}A$YAn_MEhJ91Z_Pr8N{_uvF0`(<_q=Y^ z;`*Yt_M$drAQ}?33uEJOTbQ~2Bx;=lI9t0w$o-)0WOre6bF;2iedeei5`D{_Q#)Tg-U=%h?3+W@7J>oD?SSwCi~ep8O~QZ5hl z^AM{a7F$Kqm72HZ@$Q?QR9*d}8)Pk+Dk@I=&{k|Sa)MngCqTk;d&kj;5rkTX{&3|s z(5RoaeMdJM%HE;RLwC>d^71|D?7VmPE=({gEzRJ!;gA4tdORF9J8ae79Fkv$b(V!~ zu6V!sova@PujA10i`Eu6$i!W0#i9zf=HLF3mWqyvaTB2~-++F|$&c%iiQ{wuDD%^&Y;5aBqK0hzwFjsix zqPaHw`H4!~yB7LR1n&ze4kDp(i7d=I;`{d8uylls&Df*IcwtVBMz_BZJ)^YGXyuC> z5%wK^7+BTUe^=CM6&0=A*V&kU%b9tIJL3nX_T!B5*h%ac`E+T611E2hes44zdt*(t z^zh_y{Ziv#O<*rRCeVZ`ITos%^CM=m>B@-ecdvq3`>{1ga;|VenE3%cI^S zflgQlnxHe5i>Bs5ji)io6IxBAVOPro^Bm1DGloaF#Qsn0KvX^OIkHQ?!i@ZLbK3}^ zyMMV<%X5prmkNQ|SlCasxrdw3ZA+W%r2g$)H6=bUC-f8YMKLO##9x&;Sw2;GC7c*X z5RJ-DQQW4;vWf}>9L}AnK&+^?^yqnFx;hyNi3|b(u1?Rgm~z$ol!9IaAtd8Xy&C5+ zPW=>e8fHjHXgLfG3BeNGtUI1g7IIoQPxFe4iGAL(yb66)82DkNg^fe0S8ggQu8dW{ zT2&xOh2{BXU)C-E@YVkQ`>aWlzO?QrNXkRGaOOcedxEva_0U?e#hjRtQZ+)j7G6fw zq4%qZ4}Y?99`Tk@A82x{4lVMhLvGc5Ze!&$MY)grl$Ky>>m+}M1inuZ6N-_L&?_v+ z)2?vdR8tlup@ft;ZTzYE9XeKPsU}75Mu1h^{KvVX)In16R=FDM`m=S0kKN(nAG&(F zX6>t9{J|Pt%E`$|Pp8H9&v>fTzfpIG;g8%4=P)sbCk_X4AyjlPn~E52SpR)eLsB9S z@D&&WGWrOKo0y=oAH&manp83UAJwTiOTnVvR#&$b2qkoRW~BmbA>&I|T3cJ6krC4w z+p%QDV=Fb{g2MSw?qRK%P(!x7gf07P5qjb&b~kM>I_9%#9?PU`6kkwNNN{j)NC+t| zmW6A-JR}dRuFT_j3#_O_XdJbwXsVt&WEJ&J+~=wmXf!He=PsKyRT>(agReuHU!;nd z8#J<2^TSj`}#GU_9u;L~HtWWh=& z)(ay*FUllI$!f6Sm8b^n*7Ok_uu8EoU`=7AA*^jFlVhHY&5W?H8Y>Gv{aRkG4kKWT zW#v^1{RHnYc2Xe$SJeByr+-2>Hy1>m#Q$bI`7!@%5GvVQYzLx|pI7KT7f7bkpvg{J zov48OWLYl#d2sdE_;@CFIQb!gBS;fTNl9sIYajUVoq(NB_u=fm8oT;KeyU2J^pih6 z9HeLcAE{zLd3pmC(lQ1KiJ9xn?w6y<^@RK|0m8p7bz$C7MB~x4x_FVz3@;rTYmD5( z8ab4bxFaKprEy0FttRr}F0Kr*EqsdP4vB{DoyEP+lWiO-^7t0=860)JWowdy{BH)B z-XxW-1=cF>N$?-ZF|{-HQeJ!4(=_WRCWV@mW`6HkXU1{2(SM)fPS~SU1c~7vY zZVy>3WhCxmfWPuUnksE(+Pk_;p~7;%{-r@(?OM_An!WD@%QXX94|w$H9U? zv+M)y3Y#_!gSrL}7X_!6uYwjZ8Namq*KmH!7+C{W$3W|Qy36+T%r^t&KmF^qd$+Yj zO4|=QE>0^RP$tC3Obre3nsp_Zr+Fj4Wf$@h7CJK{Qt};vkj%Ua+D(H9D z3Qh1TJe>fF@!6jeb7E7`%%M)-AVYO&d8tZiwXLnItFxDjjfty6`LXs-Pjr%FjUNb0NcHY*mak(~cB{C4D5awTk&*c0T|1owI z^eMjIM!0wMputU0gYkEmu=7EA-Ff|JgKckye=9w{DV4CQ3Tiyv_WR(o*_31>fn-G! z4t7#DE$ouqe2t<{gh#J!lzJ|Yr(A%99jy&A@AXNJZ1S{`UDeteG}L>Ucc;WABs}xJ zIBDuhwtmJrwN~r!zP?^;(`5Z?EE_ncyZW5Qks%UaJ%u$QR0I@946gm*HfD!l?T;M! z61+xhKGNwCLC_*Gu<%x*LSVOE2QVR2BtJkf+X<<@m>-k{h%VvYMPW)Hb>ow1?=z`^ z{Cb8II6SbB^eied(d~#clS%DM2obO1=#t$dg>aequBuMt(4Rll;-82~NM7ctMrFOG zfPN#DA1Dq82*^ShXU4=Rzfe~n7{ffsfe58;6;w>0HPKw{jFl+2eVKGPp0aJYH1qKA zSj>&hJ)q3R-96mJclCAMR~toC96bUn zE#z(ZUs_&Ua&i`Sbp(q+gari7@75gp2>o3lAx)tnyF3Y5AcS_@OCd@8lV z{;;Oo?8i8JPxcRR0TK^+o5zCjt2DRe#L>}FMMAnvSms!5b%IGIC0fmV6_Iscm z@!dOGc3Xl{Z8FBcsM+@8k9`RY(H3RA_<9}Qeps1U5|Jl7JcLl%A*n=x}y^_6D4nBnohp%+>&Wtf%vbev2~Ocoax(XsIx53pNh9#1hTMPAE!|G_$@m&}4A z5IBN;J-xjVAI_j_qfcVm;a_fnfF~%R1kj9xbg`wCCM+UiWaIF_{_c2nHI2{7-16gV zrH4D>mnLfu1SWTe)CSpDS*g8OGo*3wLHIP)=jznTseJ6U_g2+PVg1?HTmyRX3ya;* zM^Eo#H=Q|I^S?gnH!BC_vuUhcA|C^7#Mo)blV@!m3(nV7RTYL1jg5_go0<5)l}Hw4 z!nVVb%t{x>JPFasd~<41>9*ko{nIx5$;vr7;3*UrM|XdE@uJG_eTQ^`QpIm3et;tq zG5Ar(W##3dq?F^_qNk_P2k}FS##9+@w$4iqoIDk zM|h&*jobE=%x#?MBajVw9(C zmL9^7_{FbIUYVKYsOM+z(^!4Y52q3wK>kknNlTs_2>_@5V$+0%EqDh)hzcEq+URQ0W{M{$V3=#Z!96^Z^@}Eo7rrE{ z=6>zySZxY=)ALbvpcE1+o28mJS?y%)?k*&F#N4`P@;KUM{qPKAAQe)DvdhaAQJN>s z3q(EQ*B2i?+?6r9N*Xo@3hJd2*ov}k&`V2Bmal)QsY!lHa4NN@*dx4MTQTFwz`^0P z+9%xpg^%x%e&Y22h{qpRS3ff9?Mfh22WpT8JvFVXrpM zn)#CEEft5%9~Qg5*pJt9)+*Ak`%|c6&Y#Q#Tw9C2*$8p{q@<+k*JI{D5zX<9=njsK z5>QjuyKL+G|4dhbp6<4<25eZ!v;PD{T9E& z9=pulA@lt4SFJ=2T#9X5clZaCUwb#rT=Bo1mDsE756a@Kob{9EtUpOU+yGcE=pmJR z3yB6XDQQ=-umGDV@W)d>9rP=C|8W-9`V82s3)o5qyXUPC4yM7iL8?Ny^q0YJ+J}cA zun%5n=rVJl<&c_{@pCn-spNvr(FY_#@LCSLI&WtJ-H#R9z(9n;^pn9A^xG3g%JCso zf*}|@=0C=U%F9796^Jkw4hn$?ozlw}F2J@_!IZ`_rPnA zy^byzO5sZ&o&e5W0j1}7G5SRDO+mYf)tfhOtgM6_XIBKddU`rLKZc8Wwr*B1Lm6vN ze{TSVWKd;qDlgxu=Q5T3g7pD*6L8MCm#@wb-7l9FlR0btmb4QwD}lpx*ykdU4z1Em7ci$jIC+ z9UIzoUR_qd9xnQVnhMznYEj44KA(#Pn%mg- zD}UI|B&@D}e${$*SQF=&G&TL2CvkPJkMHZC)yKQ{h=?En8x5$%gvm09UN$%7?9@_u zdc6{p5`kGqwuL+! zH1oPTdUBlTMMd?rR8_wWKH>-`d;F$H$H_4znXkXg-M4N&U+%4&!^?YnX8ez`=ozxS zLqY-Xg@ok2c*!de(_)!7@+U4n?#GX3g^$Pj`=cV?E}m@^(Qv0L42UjkX`Nfp;~ zI2`sk{@Wv`oF?Ri1U|pkF332A)%y&c9d3Zzf_T@hKDH>3rVqPi&Z=rtO0b)oudxL~8-Yx}COEcjy zBUC7}0zB<+_6uWcwHdE;c-(^bj|FcF($vh1sSaXhWMt%|7}joVY4gTOF@@mdQd(Mz zaW#3P^3%oGz<{c*Zc1WetlJ*IZ6;C|QFrZk3{V;B`HHexbz|Vox=L`475MlTR@UFt zt+lkqzzoUiO8aaols)G|fJXb>(qd}z8Gm)gXDu4)ywWW;F)^{fXP@S7<*uaEQ}1=I z@3|}E|MTrmqpt@@$%KvQb9MCU)tp%m=cygV#bst1JG~@1C5+nsHf-^N^`)DorFKWi z=xD;i^Hz|Q0pUG%(vKUMgmgB92VtkUyX+cld6tl79$B(#lTQ?$^g%GX?3ic?+7t2{ zs{lKujEeSpu)nm{VT~q`4kzyc?%HG)JnA9f8}BCL(&3H6#b-h{7m~8E0mebSc%h~< zF*;;oY2&PWzqGEdAj|(#A6;3eVnDrIpTIF^e}BJGskSv=IUnD8ZA!{XK)@mqGtc0l zs+ua`dnA9JY?kGZm6)M}$?%Wqfo^`f~olM@lxUFg*hp;*gVgr5Vx+_1+L zk#~5y2plhJ5!Z{GdWZxn`&tr>@va9jh`d8-yVWosFM#NSyprL5Ao(X-n&??pmEE#c z8)c#6QS;VJ@jEMI%XTYbHHIeMWgEL4r4>L2ffPla$eBjE<u^{dwK+&2G5 z%rR{FtcpzF0Wo>t7+K4IY=87}~_Sy7)AZ`D}hlc20N7odaA>qR}n zWf9P{lGslw!SSUROjU(3pkyr)mO-fU*x`U5=tFgel}1n zth_;+(3@l->N0oF*TO}K$saIcWcNG`~vfO0)!K)Z)D;TKEs zb)Y`u`qX?cewDn{!&~g_yNhk0nw$E8+&8DnDRuPpdmW8RW59;@TK*Q zi-)eSp;&a)N%ptIQ+coHK>Hl{OMlo$EHfm=Nx;YrW$Fnv!qbIh@cvU~m03j0u&kC$ zP=4Rl0Sq~tI_u-)B;7P=W~H*Sa=dGv1PsyB3S#AI{4oW*{?u~d3(VrwBY+us3;j(g zStS#)tL=roZ-CPU@Q|MOk%6DAO*wi&Djs9@UjCE~ccNAK_@3IA53wBsB|J`V-o)&u zJp5&6`|!h|J?6=rI5X6Bh_oaTB5?WC*G+$C!W)i<@z9U^W`~7$mvK8tpxEI)b?PH+ zJ7m5=Uvyv&SW8JPPrNH$nj8I4#E=M`1ZMZ!AJ+0}l?<3VE4W<2EPwbi3nR0XNzLzz zZNT!@V|<^)4iR?4oB(qmpXsxqz>C>|{}r4M-5)1p6R>$J6S7_%Nqtg-%ZgADCNVc~ z><%yC8DqkreV|^G%AM4G_WL(QSWZcG(#2TcPyp{O`f^TrKNLOIQ>d9un-MiB0kl>M z{Z0bw%?&y~W{hI6$s7sSEZ!vug9wD_5S+p28Yv|?M2~gWR4kw7n_^&CuJYPR=@@|f z-$25EoP$*U=@B4bHdC{W)hUenTS71znT70ry)I4srtaTAx>_rWwV#bS`w;a@L+h*T^7C6LKL)T| z3(F;=2(VYLLExsL>hZL z7Ca1$cc9C+Xw@8ZeFy>66Br@NKxaUTwvUtcSR|n^I>4kNRWo)hA+(ncH_fp?bK-iz zc(>;g=p7Qk#)Nx7D(J}ex(JCIP`_SMs5WX5AZE<%}r~?Ho`5; z5QuRvVY9!u;0HLIy6`nv#w=B4fCjd;!|1VA*Hg^Q02%^lI0%YY$TgyWI{I#MD$ zmpi5I+`RU#%QY7G01Net4UV@9c-5wu8rZ47eHni@5le2t3P0Tw`bS0y<1% z;VmJU7{*NGg3EF%ZtcD>GLj4xkDr#92XpaZ&J1v+LrO4rwSFeb45-XDF&Ol~wGSZE z%?vQHhr4f%sqq^t&7lGLG1BOeDuv1MhgBP=L$#1&d^%(>SteHHD>2$$Ni+f5BJP$5 z0=sI@mH^rqcxvJ352F)nBdlL% zLCUcp`q<YQDEM4<+K4~+_su(FF=C&4C@Ft!>UG&rxal6wNc9G z;O9Mdy@aLH22FNE|Mn}O>j{mos05mTa}l@Rv&Mnv@{LE6bcFKLFW)w`**h@C)v;rVkt0jDs? z7v%`aaPZkXr9~pB`fHIz>l+vN=A$185u&{WP^>$Geq3AeC4Y&bDT2S+Jn^ceZ`$KN zI)&qfQ@icPo)&P+wG_Lw|NL(y?EQ9K4ttJxa)zK{D%Qt-c(8WTzAj+E^ zR}F@6zB1>6a;07Io>;>1+9lADbjw-cKw6d~8BPWU!^HGZ^Jh3K`Boc=T+C!LLg&F8 z;ZwNwfbAtZVJO{IfHHm7Ktlb;$~%rNDr+-LO$oJYW$2Q^S3{On5LIVkdjy;N(->_rYv%?H4qX0W`;wdXJi46VPx>W*~rm z#z9FjB}DKV&>;ivgH5Ph!9}*AFa-gFN~oBSK=oZ+%7Z9uAhz}XXTG)n*9(jhr{w$inQ#>_nU)4hNjwfD?G4#+ zNi*ThWK)EHSdgpTz&nhRLPzp1-|n&vhDiER{*0Hf$AYH7P%8h3Kx+{l3Sk>et|?@> z@yO-y_WMadRB9UZ3EcsG(jke5#)52}|8o9YVt_(4%2FE zVv`7lh(t?-KfBy8WLd)f@CFUsi1Q!x|0a~`nF&`u#@M8Qs@kKs41!^FLXSuuRB$Lc zep@Cp?Lsi@gr8#Eqs+wO`W($L)P=*?An0dI0-bb#Ti(7Q_B&i!q@(>>-wI&IPGBY) ze6)Ug@?th5L_E=_MPh;I0oTtq!WXMqfZIT8xprnyxi{|fOg7|K3F|Qz98D0YB#4QU zicY|PT2G5Sc>q43wg(zA=yp5d5PnTW0Q-Mi7o6moi4~s+S#+rOrppXyB*{&#UIyE- zW+XP?8UUNa0nFvvNq8ZGw8;E#EUY$Wq(VYPmvlHS&88)gQCxN3>a}p_b82Wq+SC7LG5$BWJ(Y0f1GR?>3}8|_F#!u41m$Wgkm;}Us_UXfWa^m@T&}g?PGni zslAA+A0UQMDTLWgCAfM1PX?Yxo1V+wsNBw zFo*2U=03%7=L-7G3;ee!atWT9&7))T?fF?apLG6iFiD{a{1`q6iQlYnC?TSH)^bC$ z>!MNX9bn&I{0No*AFusqVPG@YPDh2;$1$lwX#1*iT3BnUI#I*V(9-Kz+@A z1g3vU@IMm1`v^#QT(cmug1cUH+|%*$>tq7~ihfiqg7v|G6+JT8uQ8&)Pm&4fCmHlVs8E&Xi2^*N4_5FL+XHMNR$MPM#(T5VnxZrgz*0u=+BfIEA!!oOxx21O{Y;(#p+aNx%!BI7z3qqM`rnM|ML-|4 zntLG-HB$B!2=r|7Pz0z_(I2cFCO6$EP<=^TJ#Dk5+^;jnm19E6(IQf=oZc1}x}TV} zwwaJYL%)bF1&4GYzA38?9|_a5kJJ)w9>%4EUNHcJ+MtXlKg4uB_2bQKE}&t2Z-27| zZObPsv%8`+K1MkK&*T^oebxw|T=h`&h{y9VBM~om1!VvQ#t3;4lk2t4&15T z*}YSE$Xbz4I}}-4dvLB~kZV~&kHjkc`jhhPMuaJZ$N`3}cyEzE32 zqTk}_cG0({8V8iXNREmuUi&hx`)07M%kP1iueYyuRh?2lokD;)dS?jqrE4mSq*%rT z&?$tKF<&SWz5xzQul#*GGe9mY;Ola)#^in_uNk89o*O#SH9TFHteR5Djcz~ih7@$t zXj-N&on<4S{;*&fm7j)hcq8aMa)%Te+T{}Zlc^eJRIKMXIEq+(xUYFu-WA`9Pi=GX z=ogIcBc-HQiMIe1_n`iz-)ZK}bRwVgATJ_2`H-QhbwfAW1{ceX`27u02vTJOgJ6;m z#|WSSX6;Eo9fMB0!;=%aLTP|5Wo1N3sS48Pt-lT@ubUbN;33U(Q`~VBp4Mhm-w38j zYXYbZAjAH@FthhWYKB?O4a4<083N1#MUpFk3a?s|d2d;)9f|;JXX-$b-&sF}(5s#Hy2xPCD@I^!a zoXJJ)&X(2kJ$%sLFXl8@hAofX7_I!s*199Y365uwt-;G}APL}=NGJguj}8&yxn!`` zU`M04+39KIm&yRsK$HJ?vIC<#rj)F`JZ0kX=A;peIo-Pr$N~eF&h>BrF%vz48VO4b zf)NG_WyPM3(;>N6+#+d_xco@Z5*vcC2l|fZjLY(nBudF$VyMVU@bfN2s`5oAA^aeO zlA=7Choox+kQoCGoF`{agbL{E%ZuSkA7a!m<_hn~HqT80=;)phFiHRhnX%W#|GiC< z>><7n-Gw6V<1->uZUGAse4W|w+-KA);PeCN>YZkr2(ruD=gpVo0DWOAfb3?dbz*;e z4uhWNd6WQhC5KYG8{HqfRbRWvxhy{~9d41gu+&N@0Tks)*cE;)T(;kQX3Mmm6ZA$) zUlInOve+M32p55Z$+e+tCW^52oxNPI&aO9p=7Jio0xmBW0Nk`LH=)IyAx)!eDdx z+Wv>tE~7=nnOM?d56FQ@hlhY8CU4l!=9Rz#p@@`vVRAt~*4)yF(RuRUP5j!b!_*JE z9xGo9K?F1NAGg*^$@VuiOtgAtgT5s~0p$PW?GQLZ?+cqtW3hgkP(%oNu73!6_JxO- z&rnD@yBpcgbb3A)Q5kyZX{r-lCDLQbRp%p@;zb!psqkImM0kj!RVT`^A(qH-C25O-^v+VrNkZzlq;!9F5F zy8QB2sg+UQclJ+a0gwm<<|}}irtm5xG%X)d-{v`dv(Ud_p}-FahyC8C zHFrHmT|Yv?ZdBE85u~o*yj@9+&QUk*^5sv5a6@8XfosWm=N|BQFMEIgbUF@vmz!t< z0FoT#x--g=BNcEouCIh__!rpjh8#S^Q0Jf})x^N1MKnSunafz84wzjHv_*+~Lx1TE z2pX$T>9#KhkE&g)1W)y|9JnkM-@mg@azkTF3G^xe6eLSGAh|!ryuRDGp8gZis?Xms zAeK?TtZc_pixY;68>Zh{ZqvoI)o;Z(NhLDPf#oWD#XR~7%jnH}41!8A$-g;h8CK@B zLZ(*hk}( zWtVZzXAECrtn!9{WWW-s0Ska2cLb5VpRC-i7XN(JskxyMah)Gl6gmX&CMweS6u5z$ zPjA>rW`qlEg_dLOzr$lsy2WZzPpUsvnfc+=0!^;(EX)%MDWsGv{s6%qgbIip+KWR2h`j~46bdrCTPuU7-+qeLbV0w=r0VAz|n z2mm*6ny!6-z^j)t!UvUkX!ynORKw-kU+N1T2=ZuerCw3*JKazP57@Wu<65BJtC6rm zvb|J^UMch}Nkk1*B0R(f1d3RZDP46*`YOhK0mWgzRS8#$4eY0s3C@Gj(-B}kB-5>r(@0c4bpFB8R4f@swVM0%mT50qwenSmaI|2{?-`pXC zh1nhr6V#8%Iuaq?E8u1wSpPzp*vsFN3_q;aRLJDfxM0@ZY*mXrk4yq|g{{I>Up9I2 z0Vb7rxcCVAY#A3hXhKydl6XnSUxXP7DY7|sY=ja6cWutAf?*Ce2h5>VFvPtn`({@f zQJJljcE9a5gPHYQW-4FaN6p8Vm{sTggKD%7>_0;AMJh%|6kiM*%A((zmyCV!iE00D z*3#V0!oZoN1cA(-R|4Lb%Wq zKp?Nm?L9y_uW7Qy0rv5=40`qRv`O-g6UF|^orfrTL&@>YNPkHd8N4)mti#{R*XXzC z*(V4UZ+OTusVL|ZPaGLQi$K4`ag4D*jmDt%`{MI%QB=$?#%w$_M=aLvs{Q<0xd%7( z@*g8@Q&rT7pF1Utmx(*M>}D=nnoIU^Ods7BNW4yvkDaIOUsP3w2-bi|mzy z@uK|Hwe?vq2Yj^lD_UvCfuw`P$CL{W?UGBsiDG5S6>GUNaQg3P7syah+6IJ%kF+5 z;OCpzN_sCnF}MT5c$h@BQ{g5cWGLttZH1l{{g>J_2dOHsSAY%mq2FM>!2PF*e)01} zX3(dU zpR1FroIKt(DQUToH`jf!+I30h*1$6H&Ltw6Y*<9BaD=(v!-Lq@)8{8Co=e2HXKwEz zRvEKbhI$?&Gms^@^V3(rDkB5TFG$_iR{g@ z+~9d;Q?bZ1z2(-ubSnJT&e*N4eLE=9IqLg!UgYbZ6=LWw(!#%vF)Bb`!-=4z)RO3( z;qDF5%T8hg5Q4RT*Y4Rm%ApU!L}4&OKT1ir;D4)lhWZuDKs^a~D58%TZ~p!9eAc~6 z8yz=NysT~|{TPp_=ou=tJ6BIhI{Rbfzkh@qtmMgd;>Tm#PmYtE+PL`Grz~KGYC8M1 zs>xMSuEnhQ&5*$eP*Le^8OWTD-uSoCZb~G>{D&Sv8>AjiHPlqK59 z@RD`2;1wW<9O&dJ%G=6tX}KYy2OYlMPl9)LFoxD$YwbWT3m*3S z8mIAVq(-G}=-B&Qc~ie!pOJ3MkQ-ejgXT0`nJV8PK&y2hH3~wg(5cT+k4W_gR-H+o zi~nQqEgzzK-v41m(gIc~kz5v78U*RCW$6Wj5CoJE0qF(_g{8qo5R_ON3F#7$R-{uJ z>5}gJ&FcH}{TuEF_j!8e%v>|q><A&glAitf%5`6_fD%vE{Lv@%R|Chag0P{&z*-`y2M*@h^Uh z5uT7F{_#$y(8Kh!**z+xw*L?(8-{Pe0{>kz%V(s#dHv&;?Ca_Hlu;0#07d0^T|vl4 zjr2e{F@KAW_g7#yCTNi8Br_u_4%q#q}O0 z(7CLRq#KWC)>@uD`stuimMl4vk{KA-&;k^DnMdBcj=yY={sf) z!lhvZV=Gbm)fd9ccle#TK7GCV^KFp<@dImiuy53Kc1v-WUMM1Z`Z^TG@q+d^(ij1U zJ6aZXpAeb!1j5NXxx9eP`s|4Gvngt*U7;X9COm&iiXe%u@Q4G>s%3 zyUE6hEKc5a1>u1?B@-OpgExnR;k#~(rdZUq=h?}uf2uwCf&=PV*n6?DU`dVILa z<@7+4qF!>=!EpR66L_kB#1}r{=K88L6>e3us;klZhG&R7Pnv|u)b~jNJB2& zhe-BxsA=IOAzg#KSKs;!jrW}XhkMK@)ru!vhuesu=1+Ka3wS&b2OhA-73{204$igK z&ou96zhohE3|v$gO4(4xEQB78Qw_8I6fl#!cjlhjXhhvx6D^Y`@k!PF3lEu2)q~C_ z+1C2{B}yQF-?otr;}oOd}lb5(WKiJ{~~>9#fkG6N!}nWU^-_d-(da%|ah z&kIjjkD<2YX*v-p&-@-=V)#VdUQWytB{?Ght~XCI(e?ac><#S?v2A_rq%4%Y;z^QH zjInjSmzb9e4t-LnigOjFeppR*GBGpvU+g1E&JJ^F(C2kqv*j71I|unW&|%n~frhPS z025|C>Iq}!!{i?n!iu$VEraE+Akt3)qnFAA@0XNDpF^)(vWP@MBGMHeoI&GmAV_F? z9Pz7t1*Gu>7-2q*sS$kq0+5fb>4C>$jg8}E7YXmPgqUIH2fi0)-^>A9Ui;5T)s-B#JqYYS zjy+eumRa!hVj`765NP+B~* zs}}1&Wvudgv1tHkv4 z>0mO0Q9$k-I1;ULk79*qiZ7+npzCcIrMW)U$!b) zJR;$@?_dj+ZnfmzXU0xdW9_`m9zz>wl#m1W?+0MM5T*zIoUNfeTS1D*U1~`w7MF2M%B6*SPcIij&sUA_#n#Ycq9D;DDbN9V7pNa~ z+49vbY$v_pcLi&1BYpRwOesi7XIb8T&(61}iWqqPM8l zJ0pLWomb5O35A(^ZWNDDrU%|&gb7BRtcwZTjUPaF#%{{P{pis`SZLk{?^jO-^7%Os zXfylnQ-^OgOG*bj4J8-bq9@GnC9ZgBnmRS-(9Uvk%Th4cl+U(&VQ5mW#$2LH6+lvx zU}VV(4ZNUNmo;4NU2IM_dc83r!> z(3=TE--p;H^)A{)+r{YLhZru-UJbd^F3(!WnzkCxk!{5^RLWu$Wy}C`wP|H+L8OSg zXmeKuMl^)~)dEv}$EUh>Un8jRkCaq5G~6Qu0waU8q{K$>S$#viB291R+RMN{_F`vFZ;LM56Q=EE`UJf2r z%G$z1H4;Wa?gT0+$CsM0hzw=~wmJt2v8yCAEKq%rN-cljb-Ba$?7$9nHTem{-g2eQ z$+!fsUSuI1Ts8;lhItQhU1cc1JpRCbSd|f7Q!jGdW`}ZrqF^e!gw0D07g_LZSeA2jre7YFS*AEH5q2eeXo<-A z{6l3u7hNZ?Id9=?!lHHOL`pH3X`gkxDJ*R&UXIjm$taM)OaAtqNj0vk9_)Hv-m1$J zp28P0OWxO&{M$rOGxHyQz5!}13UdE7rspF?^8VI;lWNuvtYq@trSUi}HzpE_LH?wU8SDid4bhLNFy$JD5!%J`qf6+ zU5<`<0+C{eo%0$untriE_-kYgjJFT+i)AV|VxKq-EG0mxlFq^{}(@!1No zq6sHVVF{=76#|aVhl@z-ubx4w{0ToARX&+0Vn6;p75doF@3IsAjbd6f>CGtLXo)24 z2!`hQaD0!KDIc=Co<`c;rY57|7sQ>5EOd?5adHL$tPfYq)2BI&i4W z!5hKNimt?FD|(i`0IPw;ueE;2YX=>(#aITelZmn2y8YGaPw2o<4>Iw-a^b z$HP~Dg)~#A(~{^cj==^yHR$N5NvyxlhB3pGe3vYG$@jSDJfM^^$X}OG{-XX)fhuN7 z{!j!u6@oKi*YnZ?E$JH4N-@)7pLO)xk&LYjLWLSLHz!|8e;B4W9=DgM@SY0ar--ZS z4eESf?=IBnB|CJUngV5y?nPjP%iZZanT@^$oI&&ve+Zs@L!@Ym`hIS297zPG{3kHw zg(4sBy?|Cxq2CNzI6RmB$I{yZkbs9|1*N@-;BSR)=z;HhKcS?Y_&i~Zx`yt~I~2Y5 zl&&)iqsru)zdNgxaYrZ?MTFst;U_$Yup>T&r}W2jIFkDt@B$QV{$64@Dr9<8R&7MilIZ(w@$zMke_^FK8I!qL>h(HOI z*&IA#?en3v)tFBZ5tXKM!j}|O!jrr%4$UeSy`ROpi$r&$UnW@i+_Hj;L|&sN(F4{_ zRp*(}5|C8^&&IUCXiLG0Tb^W(ePlD4nBq=39gz)9v5P9M)@a{I=E_zTSKH*40z^lUC@`r;9pTcJ-*w` zdVEX4(gEERc?oI~X`im(eQ%IzzWs@^YA*ecA=$rNC1D0!eFx?x1Ll=7M-DHV4#XzI zLL;WNWs!`z1{=w|md2l&J4I}K{$#r=ECp10{vIRx%sMG;W|Z9cgljF^`rVPdtTM6x zf{KAs@cg#hH=s8^et)?1@de-C>52G$4iU*r*^Wt$KAwyiwX9k2JLFp<=h;TF5%%_N zl<=BA=s)G7`<)$wt_y1xRte0d3w}dh@yVv3E&j!7tsD9wePX~%o8WQm@gxolln;Z#g1zcIq&)V;*bEv=L4|$R{QS<6id6FRAn;Y|OxLn(ADC z7gb@NoA7<&s*4iU=*u!_^`&}}_IkdJF0&MV$Wr&ik1PjmP6z0pIi-?W#{!TM3ialu zk5%1P_NtPtx5Ho6JbY%rhOdt2^RB|h=$3sLW-F9liY>~chq2XGy=a5shEgL9Bdjvn z37-@}!psQMl`jSM@fYHifC@bFeq)v2lbN|D8c}VaS|Y*7T9e@LE#+}zhm!$B=Y_>wPkoASn_VU8 zSbQH1MhW|7HN}1VE<;pE(v7^f;kdsbjNB@-$?3X3Y^FwTtZV-mN=8e zDfz$Sg2^ZcD~ZDWhRNIdrlJHYeFf)!Z;#HG2%N*38-vI8rL9aZL5uz{SB<{K zIOdkEp@Y9F&A90GKb77#lL5%SZzb|pJCT?`Rr~GID|yoe_R=eG(u`=CXR*S2tj=eA zBQPhh^u(sAv}(o_6D_xqg~1!f_$^{fbN)PTGcU)p6SOe*dO0YmXY z+^%!N?$e1_r9s^YH6A~M!n81cf89tdVt|~rla@roA9zqq;3!=n7DQJBI9Inf+l)o2 zKvm3F^&9Uwp)h1gDsNYGPCMBYu6xd)QXahP11g6hq zjc}3TbZ;4sb^@VQM9OK`@nuLrLwI22gJb`$oXldjJK#hz=3&~kj<++_Lm%7CF}=#^ z?>*={v3hq*n2t4s=GVQ?>6rZP6mJ)o%v0LX9R%gG?tXpj^vkMO(SjKKSH6mAPW2Am zn~d9G>tPDM#&XkXX^!Rjb*Am(_7`u;0`pd8$+F7-xX@HBC^bJIYSG{)7J`&<-z}oZ z$tj_T$j}v_Cb@GR1}hIrYFQ$Vf(Q!QA4rP~jytt=E}A{h zhKZi)n9!-bs?K!9tj{6N#urkAxq6P|42|}xx$c0342gn>FKO%R~aml6})!! z@<^bNAOD-?24K{Q1?0@i$&&h6QG#k-7Or=E$kf<~gM#@W#7@)AKbC*fCHfQ^87s{^ z))(EX@xKH& z;f3X{FckGDy@%Wv!%Gh&1UA}E$-hYzeL+(_E#A2L`L$)U3fkf{f@)~r6blf<1dA|6 z63{VSYi9dXV8oA+PYwD-7k8B~%4q1mv;NK9*C8|^l^!6MIIPGZu=Qw~H}V-d5z`%X zos_-h{g=Nebg1tdm!9IMzPj6uC2q*L;%4bHrN#*{ghyM*4?LNf#th2gr)EZzmEy5w zq(q2Jr#{=>ejBXo;CortLj7a3rOgIo!7t@g8~JVEn;+KqVxl*R*&ZPce@nCsX{*`P z>%L~VI^knAM^b$;-9}T&>{k~Mv(#RySe7q11>b2BXh0AXfGAO()tdn2?}&whfJ$9C z-U%co@-W{&yD&_9#+lEv8gMZ$hKCA{Mx#yckwGfuuvk^j^7~L z=6CRk(&^>sG(KPi#q(n<)+?nw?j4EKb)JUD5R$jK9V-#oZ~nR)?KkVloG9WJ8l_Q) z$u?){nTV{LWmAr>+{@&=+-qseRxo*V%svvUM`po7b~MP{EXnW8T7D?q6A>-L=Cs7I z9mz|cqw!g2g+0^AFgc82#ilxOG1ja2MW`BQ+Bhe?)}g2VRz*e?V*}#XYz&Hd<|cv! zj~edROU?*uUJd?sX9O@d8MvM*BpBk7dN;${9`ICh;Ckx8FN?_;Jrf48sjvut+H#rT z5UO-4DaW&KD^a@szRLI(_HMG<7E$YMNL#ci3z>y&46PJ%CQ(1-qf*vr?5*dIk?2Yi zmICl&awGJ$2Lw<*fjjj&z|%$ATpLa-t(<^XpZhwYhB8IFTZq;TalKex!3x6 z-=dDVlE3+zE7iRZ1jV?kKgY#~`~WH^eX3hKv0yqV0Ww#*{q_c==D^39MfI3~M5&Rf zH5ww>)grBSkR=}q57x*C!vrWHEs@Hb zmRi6ui=qP&pJ}Jw_SjPVx&01%uAr{)J5QHiJ5R2<+jv#(BqO;If{?q4LY_&g12@>Y zdjvNOT*j^LhXnn4@M=yhx|le!PYG|ng{t_~1kqgw#-ezU?Gy?UOAX7EWwnqP>vr#V zrYs`W!*@3=n-PMJbb^u!ljDA42DQxtU$wSBfrx{7o?v-h-Yo=}&#s(wj#o^*2*J{_ z$WcTORN)&!q=^xQ&Hf59FhciH{wU=oHKZ5agyZa!x5FkIf1cYK1wJ&yn)s|n;UP#K zPGhI~xjqQ6Xk)kSpgof4yBW`Q1yF z6@5|6yWB6Ik+kRsStOqxxZl5sDm;kKwG=$qe7Mp(Ov9z}p^mkp5OQPZBQsbTkU`F>N(TacV(0>S8S`ojjr z|2q2H6;z{M|BY(}957SI7a({C(Bt_TGk(Qdw`TKr-D+(iu3%S|zuqdiwQuPbtcnp9 zzo~`1{_%$@NjS*yE#S<60|-B3;JH}!iP>GcX9+@mAf&wdCsJjnop2t{N)PbB-%>yG z=7HwR+tjZG3v0=4p=k9hBS0STcIUm`+8t)RgfK#wvLz|qwuj6L(0=R{dr~fJ>;>#; zm9k6iw>+P@S3JR2jhILskz7{tPqQ37{B>&4TEuyT!t|0`cyak#Mm*fT$qD3%jU7E203ySmr3^PVgI6G@J_WAfB z3lT(}%;-M>`5(%XkuP6JWG)10Pw>U2gjxu;_iom(#YM|}tbd@mk&p*?iIz=oo`^wO z!+RY&PO%Q7L26Nu>h}=VN!6DeOBIC=3a;fHl*jP=95BjgJvCyw9VF&Yl#b8o;kkCQ zH(k*yx%q?KZd4V$IiS*U(8I)`3SuaZl)&g;aWY1XCd_B+3?G!nd|#O~+o(aco6E2s z?N_S`0q3Fxc`!UXrNSN2jz|f}j2H)$hIV+R$I zpA1S4O)M8(+md`f8)$c>vq4$qNL?kU zw(c16ojQmUq1m=ZkC7zahMME<-0bD-C8b3Ld$K=C9NW&?S$F2abyCY7CyhDaw1q|} zg2m8LVg|xH6Rs<^^z64QN(tJ~TUK8r%LDaWzhX@P!{NKdlsUFAz1~j!PlaIz$IV;i zvyl;|NYfw6%cstR&p~PtP@_9dY$wqO9wM`tHQoT3yY}PR+tjf{BL{T3L_r2^U;RJc4mZ2uye!S6mtgxid^I z!GQqG&y_V}0b6l=AX02u911jo>p6=Z6y9!Oa7!|HhZwI2xXo)jHoHK>y}l@i*ZjVDPS?OK?uCs8U&$63#5OWX5AJ#joJPV+g$A7DkkR%vp4A zN!_IFP9!7DPzfm#9|R+L;uTYKZ1iWwv86MylY>~I!;T!I^*779@)Z06Ss(dQH0KKN zc(QTQ%PI(CkA1rL!EmNd$dPV0L|*J#U5%o&-S!=Hh?1jmwE!CJ`op<`YYnZl5vMb0 z2zN~d`zgR)_n$H|+%?90G-ivKD4M$;am8zPOV|XEIHRO;WqzBDKAaZ)NZ2^X>UUt0 z_l;KFz6t#qEy=HDX2qWsjiatL+LB9~F4SE|Z*hJHv208r+?o%B4;j~byp!`F6$6tC)xbQ+`C&%~h^SWdVI|~TrvajEQ@;{rO zUopSex&Eozh^Zj>gBIZljM!sV#t7>7>r`H<(?{c%Z0!72=_|V2SaHTW1P}QiYLbME zlV-&=x1MrAZ{?TMa2$IlrPre=gf=5GNw?Zc$52OhpXB~EHCWhw6OCJ+N<4uUG|Gbg(a z$0phle3ox!Xr=}vmu=|Ujj~7iAt1hluA`+}AdC`%yxVFw)tbV9Zj$L3_5HM++mjbf zT_Xg`ipiyWD=$c)GuUaK5J$yh{y_CBqcJHX6;Z2`6zV%dSLj2KPQCIKB{@M5_4xf> z1Q{5Rr2y`5{1nY*@DNT%U@jFx4@b#;6KHK;0SDQiWQCSQHe;@`%X3t`Cg+Z82 zy(Xq&S`r1a3IEOL)fjz|%k}kX&(cFza}rv(h^VHQi+t2rVg}`e?p-%LPd0g=vL! zo^mY_c+fSNsliS1p~%nnbWE2=v^x>IMwC={dATCXGvBN}_7YK@e6q4k7ut8#{siQC zr?bbd-83ZE)C+EsbMTpniWP_>`E)n_;bit95OlDk;1owYty*A(=G~CdT%y=+;j>hf zD|tt750DhGo&f={ciPz!P4X_(SQskpFyp{Qn2dE_0~jg2lzAR+HTbRGtavbhNXeQa z5&zyI`3->p+cl=fbFi-w(;ozV13KUSU3|hFT7UUx1LP7Q!a}_S$rs{5a*5+uh}W=l z>g$N7p<+riwbQ%f9677Ms=8q9-uNzFj;$b>zT|GSn*_YTQL*(%to2;Qwo^e*!!>Jz zIsF&@eRns^T+?sc-43A)Q&4yTw`Vwhr~kA^XR5tQ$LXp4!&pUaXm6u)*q9PKR|)~N zcbKi~Lao4IGR#JeJET(mu1l+t;kE0sEOSFWci+hGq-96Tq-;=`)-dxyiZ`E!G2y&| z_JTq$uvKc5ylPhitV0we_uHxMG#NukM!MW(I1_{zDZJV_ zwa^kZKpq%` z=v{oS&2LNF05$>q+l{d8nd4_OY_{i2Q$F$;K*4Sf3Y;E3WtqcE#}CIud0(b*1hM;# zg$g`Rf793(Q8!R>cTrCG-B6V2q{)J^!Vkj5jPgI1=~4-RU3ntGa4II@@T70`a*ktN zRS{<6MyNDjJWklwfWzBcba(gM=vB27RYTgxXc;YY;cJcf;xgC3$p}Yz z+na{6K12<8NTsjL8&8pNj;oGPzndS;-wTA$K0DP)cz)D%)r!N0g)H?)645qyA4 z>Zmq{kt)e4fn5{6V|nRB8@o6mKb(GI@7TC<-;gtRqdYLT>x+mCl31}iV!8-{PTor{ zpo07LHT}AqTa9^t-jxEq1lJWzh|Gxfb!M?{oeUekf>O>?St;SV`6LKftls|f=1;>? z60f`mm&fDRUd-(mK)ok7k zt`%}IAv>Sv-6`lU8PW#BzcB)zBi`s3gb)N#kWs%Q^=}El7CpCdfxpJ2DDwb=s|@FN zdoE`s`8(rD5AISJc#eS)XU@tFLm|IPI97F*qpNj=xV=LOBv6EsNHphB#DgnK zxO=YP8UDtIn$eJ5_C2@Z3CBGCx=x#D^F#;9g(iYGP%aeNnRvW<+un8))kxD0_Dn%o zMc8wM$)*se!sSpy|_i(CM1fw9R(T6 z2Kn<{7z`Y6c+B(Ye`{0_(vZ;{rDAO2)Eqg6Gf+$n9rEh$x5KB52XA>8C|4-W=~`_#yB^6tf{890c@$ z5q5c?qrCZ81$`jM1G~vWN%S_E=zp`{u1v=qO11f6+#H&fPj~)&BMD`9{vSC+9RYOw zyt}MB?tC-`$S-~55+2bIdFe4yG2Dd~a0H&wt+hG@BNA=R3A3HMEh#z!Js6f~w_bUp z@t2rB6Z++ah!YUm-Ag8-|B8{Z65o;3#VZF&=ma&hl_M^TyDkeJ>Z@@eJ*Yoq;uude z@&@*xOz@Ti)6v_``q#KsAzv`@fz?MGu{;ilhOpbXO2ShK0P3E@O?t^QA4&a>lTYs& z+GR8c_mpFm4B)a&sqgHU+z<1+hsI9DaVvv*Nfl$(Ih1UD5 z(OP|e^A8S}hFkX@BGp7qD8)$LudM&a%1Z~LNu6GhHGY3w7JIrk0rO>uT+`Qn2zpAn z6ZPMhx(n8E2Jj+iXL$-fq4htL_?0hm{ougZLW<<3y$w7SobcKS#>C%heWm%*3I8}w zrKW(N6nCi#JTl&Zd<7To!5Z3qkf;TF7c?gHqjoRr+r1zkf9Im)ev0`orecX-O&?b%-|1KRf8!hSMXnYZ2zvV)Y9cL-l{de{LT)@^x>ZF%NHE;^W%&qM zdSESPsaS2*ikCB9xwLf{vHA2Nvef0&-eLOYf+yn2sAg$J*G(1?AJ!eoQe|&kR+IHH z^uKi-cl{I#X(BB%xmi+Py@jTq7HgS49q z2j8!resK=2d7DqbA=7~KKe2*u1xGw~>-s$3krtCyTOa?_wgp7399 zJ;XeWFjfXO*Kv@q2Wk#5zU3cO8HbWiuD_dhJ>79tjqvXDVsrP>h(~I>DD9M;IOdi}X%n=`S{a>dk z@ZCC~X>Sx@0^e*Wc>G&Bf`zTIA^Z9)SFRm*vi31Qaf8w1Z&|08& zTwKRb4(Y6ClDw>kc@`YmZ@Om$GSc<7+^a4|f6e`GN%`(n8^O2aWyR-B-VY9tdN}g; zB2GOv!)Qen?~hILSl^kZ?UqQ4q7vTt>3tvwn1;7Atq1}HGbvJLH+M5jqcU;+gDIco zG(S#_+%M7rXLVDzr2D-tNDrU17p!HKnNrCe^^X(Roe<8T4@iUQ7b|WJon=Gcc0*T) zn}2b`I|2y);|A;T6S%!#;t=B1ZBCevxYI*ZrSc}5{*aX?nn8PQJsyt~=Sg9RO?H;;sU9c!Nv zXT(jbbTJeiHI4&%k_>Li9>IC@PHbBzJH@dU#x=rfJr)_aB~G@L-pAgjm|1?a=(E=s zM;g0EYkj_bWYsYxz4zm{aqa0ByXce_3SJw8IX&xt#O&jY?(OZNw*=rUQL|%7|Hf@C z+f@%#qm7E!)HG`pg!w7`7YXU{0#hl9K0PlttAHc8Y{54^JpJxTMa8K{Ubop53%&CND)~j?{1BS=s7493|2X*M%Vtbcx`J*UHMGGQ zcYb?eM{LG?T~cfa^38R zX?uQ<@1)?Y-uOF+R@wBOpDb=~3qr1kBn}R3DYG(T(Vh;#_b)R4Z2l#( z_8CiW1c|fxY|oF%Wn6k~lcBNF=-R#kz zVRP*o*v$zjU==YVCb~xWp8LYLV8au^hk7@W5 zFi+{zhsHT<)>bH*yfmIIcGAgu-ZIw}bk^2TSPMCuE_+?u5jg-;;m)(5$5oL5&ufj| zO3dST9dOAjlyoNe@LmfG3IvHPU!)doBMKScjdoBQr>Q*d@Xt0d%S}*+a4YDU4eJQE z=8OHg%q*wvZyFj;^q($Bu`WG5Zp~meQDi|0>^N-1_Fs5EJ#;@AwdLW0rPo)Q2*MjA zB>rp>*SC1->puOplIB>aS0lC3zj1H!I~Q&9+3+m&MbGF~+bT>xBE5Fm*X5ju=>By> z`425+DD3w!BkiT7Qf{ELl{}M`9 z7^WDW6B7r=>N?E&lZN&qz$Jta-C@VOMjp0Hx!>dN2S!ZMpW6294`1=`^(EDF&l~Pz zUpO(BF<=(A#tzu;0;xYyV<= z>4!hF^_xMY^ePfT;>u8qL>nbudoHa9_!Qp;1qYp8C%nepsKhFdPf12d=)} zQy(7u+WI4UQqRj#xP086C5SRj+MrLw>3dJ^{tV1g72FuDvyhAOcjtp#hF{M9zraIA zh#H9&X6{t~81L;fQ#C^Ud0GoO&Yg3c8&*I$=z1`e3_ji}kYnqD0m(S!mcM-h&C#R}UF;T$(gQZA{|l&S12?-likffOH%zQQf_B?6Gw ziK6;nv~kJteamMiP{;x%d0>R7leJ>`sDl2873fz@o)-36c_Vt!Hu*_ORhvGT;e7hX zhq>?Z@!m9StgUE!C%&iSLj3&q%wza9u(D*AWoIbEXqi(KTIeWbb;B6_L#VG~8U69v zIf|i1vNHE&U7pp%L|)uE`RI9QyuR(?`rwiCfn(Q>%5p(P?&s>&vx)WGmY>6SPk#x7 zK-z9j>iIt^F~usZC>z%)kj&s}@I;YcS@2F6U)#fwduA1Kp0?c)y^`!M^c5lKlKL|< zt(n}yIbW}=uIMsG5p!tUZ3X*I9(x;xlHR?_h}4n*6>DCreJJy}_|V-dZC863>%A(4 zHgTge>gO$Fj@}T4MTmS}-4>!vpqJlIYd)|u)+%P!rqO2Jn=RnO;1l&z*~>lUDXFxdeiv)sOA0OTgNvIFOSpe( z&n)?Hs_L&UP<9 zzaLg)k*k9jIn7sBv)j*&JjyeyhkNmjfZBcPqWfr+p#nArEKraQzXHiN47WgmJhk+l zorN`1(h~343=e)t6Y`#xcK-7IeXoB=bE9@)Z?uS^*|*wr-Z+W95+O(jix6AP{pz65 zWi2!ov9@Kt@-Eb)&Ufr<-(s*sBqWESN)ZABC2DXzchwROcGjio?PvZGH}l#S5cYg7NZC#e=MZak zWvA!)*5vy$JKs{@`F&HnWb*9pZ`z6r!K`&~@|i08{ztekj+Q3s7f=6tvlG9&sk! zaN2?Ho!hx!n@LX!)oT$LGYrC;G%}Q3)(ls+DCX7Eh~UgW8((Xf_n2DNBP*onA4RZF zCqjr8g1MB@8+#w#d4#g}vqvA((?hlW1AgEp^ZQ%QvGm2^jMdHy6a#9_oY#onF5)}Q zVaI1CRbTh^aYBZq26p=nXd;S~{5dEtHT7c_hJ3|{gKMB#;-mhVK$l+pqn`IR#>r(O zdt1%6Ck2wq7uzc=AqwAxVXSJ#znYuwQNSYBD+KoNwd(+2&m>&1_@X#~p%YH`V|Xvp zn+~mZbQn}1JWE5osdszV{(k3X`LkSI`gB_=U{#VMmVN7Nj4GX;p1DF*P0qdu$c5`sFxx@85&hp!KeH)- zlQOu$N4C~O%BCdp9R&l{g`Hlm1d!OzdN-*?K^^XVJ!u_qeP3=l!ZY_9?xQpFeezzU z_sqM2M0rq_Zs1^lE*LVX0u(BvIOW%i-@_W~y21fnKA7NzL)cGpbuS&$6>-%o8)6=> zFmB!>5gP|dNlWRop1vPE*Nk1WjA(IUR@cOa#AM(9M@Ux<=gsrWa^`8xt@+|U?#q8* zUF7NtXqs!2q+yVW2rIbFoPW!E10OU~?|)ipVuj(87Dyr8wVlDn!j*aX&=M z9u%sBzOw^eIR`<6LWeuyBcXA=Mb10YQ-^W)YJ5tcd)BrsU=?ho&cOsD zs#hmACMEJm^jf1UI*uD^fBNh$y&s^Jdk)wbIfR11I3jW4N7!jpD#3@mPA>#6c%zX} zmVL2lUm+nOAh1+LQmA3TXTN~$y=6g4&0jYx-|e!-zgb^BPJZ}2z)5Id9Ssz05n7qf z{^9Vv^?kw0=QqP3qHWhlckM{?C6CW3q$^!V`~dp5gU*J}mbU)nxCU^bf$qwMu_ARL zI5Fzru*X#Xp3KtWB~ejE9|?WF6ADpI@>VnxWnP?S*Pa)E03)HHs)@-4HSR85qIuNL z-n)N%o?{VMifxXzFfMX9%QP2`W{++Fk}aEXRU12wlWfeJkf83@3zpZ^>$cXhR^OafLq=(P>>( z91_X^^dCY1;Yn}^tUVgHY$I@W%&$7n?q#YyWGxeh3;EGWHd2VT;`WzR1@xK%SmI76 zG-MuE^eaV;KneZZY>LZ4cG1|`Zsi7(OJsys{`3ujmmL^Y&zrdi42tM5@Cj+h0Qf`> z_eq}mKlOrM2nMAayBudT7wIRL7nE1dc(s|Y0Y#D~a1D&}4p_eIOYf$P`W|Dbg-p!D zu0deTX>46mo4>INgaAxI&y<28daS@qXz||(gKRAXga6e)_JCQL_a+=ZvA`-+QqB*-v|$-GMS^x^U><|J1^j zor_f{ec+g*jA0K2>@bO!#VSzZtPI(Q8mIX<-@erEW3O~IG4aP;eU#jZ)v0Lq=p4{+ zD^?xQjSc4olzbb{;H>v>$Qr+{j|rAUI@SBS)wYE|U=e^@rXOI)blB)xZ>y#^5eQS9 zxb@4cd6a`8M@r}>{W4PbLvGT@yo1NuSPX7Oxqd33`*16ovR`s{D_lpMK_Y+>hL_eH zMzBGogszJWFTk~Z2HIZXo>f4ja0|v*3|s(0M^Gvcsrwj%ID7n4N*gPPQv=y&T*_W2 zVLa;HDT?S#_N|PexIl@oQ$0m{^qfcx&fBPrCD3NJ!r@w>+`ITh+`^DjAi!s3LnlN} zYfk|UAk5%n8Wa^Iz16si`-p`O2*XUfqM-5m{&-DJ_c&(^uFj=1VHh=o$mIid^f&gc z{TR}Ov&?4gMZ+@l+4lhq;45Ibq{rL8*PUIE!Ax-;gN!8LvGxonn{$US4%z_b1CeFh z%*bX{fW6m*Xh_jNSqy`yF9Q5Ar-DWId+4HouEcSt2UJGG*JftHeX4>(da(lw68Az2 z?{B}WS%wKGL~S3(xcP8RKwkr-MFOz@YqF+oy0tBY6GgMGKjl6<wAc+Y3+^pL_j3>R!FV1fQ!yuH`PU zZ;e+j-;grIVK3cB29z_wiSKL3(#fx-bVmgZXC-v2Lm+#!0{GrCm*v0jqe3Cxgb_#& z*+EKJLKit!VGUqPKBo~>>I7iGd~0ycc-eE@IkqsI$6+ozcngNLp*Y+G-spg59=kRU zW+J%~|N7GV0@w`Jaeq&ThXM!IC3J}*8l?o-5*_l7El~xrtHN~7T@R|3cOGf190G`h zxZl^7!yuRe&GEXqFCzYqn{GXStPYfKi(mgDZ&}^5R{w)gcMZ_)@7&ULzpRA)*X}6c z22O>Tvpzw*cCoL5&p+8E_dXw4iM%t8#47ZIRiDl9(0%b28;m-QY0cRr_i&w(AGPLuiYqW2Zhi=X zff{aLN)Ix&|4oU81&LurdhN|=guc(Wb>T!q0A>avF)wsf{xQGfY9yqotxm7QKNplN z1MM8+3a;bE3jpIarC)uZ^l!XbFkV!z;#pbs)wJf{Y%avz3)jaMGSuC2L3gc#(QV#k%@m7yUCgIrMx<8{EH<-Sd! zZ(28@dVJkxi%QArnX4kSH=k z+d2OYn+c|EKaZ1s0pL*)0f=j{2z&-*mvQp>JRkVQKbxRt##*t;Xb(|2+)JL5fAhbp z#fx-W6=z8$cwmE}-f8{VO3#C2hkS^g|3_;JHJ_Wy9Pl9r|(d^bE z=)VxvElDn`7ZMIg;`27)@78&sJ@e(^AJ7dp?>W=I>6MjlOzOlznS;t-aw74S(7^tK z>0`$;X#WB&TYt=TLo{E#+oRtCfL4nox6_7~m(x3g0w8>?H~{vG=6CwZJy z*-{gCjgGN87(uZ+Jds}DB*J{8*RUp@01ep-Q3$Aboc|UmM=8z9BkOWk`f~P3%HH!I z1ik&4buR!^D1&jGwV+fGdjmmK@j44q=7U^o?EdHg4nnt%89^;FIr}CO8*iO9@TV zPc;+@VFFC{2VO{xnBwu%{(?9v+pl(wA*#vxPRA2B@I(67lW5KgmlzZ-ULLVB0X1%! z#2#&l!O1}^F52owPvmmfEP7Q+7Pq%>T)y;L?u{~zQNTQwDWZWNr=bY+oT~!>M6uQP zr5{Ws8^Ej^m%eo7zm}WC&JS?wCu#~@jlFZ#c_5<)uRu!y&bdSg&JWwdwIRo?aNV!! zv%`vo;gbytN-%6KZYISIX{a>U9V_p@9=&3ZQ|eif~Qp0@4&t)=AllQhHp1~?jgCoXih*&Yh`)eYWaqK7TG zZys4Bx_Sv%|1LJA)RojW1ra=m${oKqCHp!n)waEN2B5S68(t}mFUPBA+v;n7tLF25 zD4ISqP0I4XDpb_T<1t9RXzcKaiMR@|0UN1wZnLkiyD#i5mG{6?o0$)}OCypy z3Q`#-9AIDyv$F*oXHhH>!2@K;^oVg-&RCt2Hd0JrRABVFWq z{&&Uko#v@TBLz|YdiSvg>*Mx;DyGOk_g)PQeX3cJEH__04_X|0|7O5dA5i!IKmXre zf!A*NXKt&N!izV&76w;0XoeQ5iG0u6YP#yuyH%)m5A{wAy6aaaHH4)dCM28I-FEGo zTGia`{vUf^`4!do#%m!00)m8qfP^C5(jYa0NSCy9mvoLIACb7FRaofqlAUx|{@F^!@^IDt68vY6eaBetx ztv3El8cHomRgs;a7lv{-Is?^Ak2Fs^q!itg(&P~I?V&&uJNZ% zvyq&q}CigPB@v;fqSn2VxET@96d1avww*Y}H(M z;;M8N>a8eBYbR5`vQ6i=ew!Bch>*nRyqwXtdLgk$IL56_^!5EU*4j- zWt~-=P6HzO4@I?3TVRv-XPcWpOg3`XpO5P!<9}8sVFos(Yz-)tTlth5-?rceobUw- z$q5n9P#NcW_{^i_%*3;B1a7nSQD~%?*m1z5nS3JLPQrtA!7zw|%kwjgE**Xlveh9{ zu6GF984gsDf2E*k7|Zq+O`wDu!3NUgKW`-HD62`s7o|8%qb|c2KH2l9cWrh6BGu&H z3qHGff>kDSr)qnRF4=kiZ5&l^#w^7mu|?jBZ32jpM?-#!e-wP`8KMGU-Bb5Z?Y7_a zzefa+GW7dy&J%-br&6ZL>Mfl{!Pj`vv48Chb)K21o&5Q9p#CQPrcwSv2nA}_`AFKg zz$ShH!B7Q9hM+M10`;o~GuX0rnwt*~CYk7YzdE&Th-t2y*fGLCaHb;1Ac=hP$KII| zRl06}9rCOBJxxPEPh|ImW6W6VF8&4Kio_S*P;&o8WIV_ zB!PNrk&f<>r3{@T??i9RY&m&@hGSZBAWtFS3t8gGWYm$U7ayqb;O&oCcIwpU2Th5S z?X)1&9!m>xc(Zr1rXjo-t`x@p9I9N=!*@n;JhCRhnP&Y`WbdC8Ls0;(I|xM}7wn&g zdJ+qKAz_`>8}WJjiNanxAKl1l5`0_oS=gtW(TMcbdAQ{HR|^#mUPQMRoK&C1`k!}P*F|qJ<3WIUQkz%=<=``@zQoS8ZGVo`*pBE z8$?KEvGzsCocrRD5y@%GOgLaGf|v1{q_w6^E}rpQtDgac9+?@W!HH%jbjeiQTy(2% zzToy}X^z3P>)!gXT}f7ofvyN?Z@Rupr{KG;cq3xGI5r%Nke(FbIc!uvK3IF15LdiV z@@xO>dUc-M;6^q`2UED&+CX_Rzgq@&F>dM>SnQr@5c5b_6FHfF!}*V0T|)=PKU6)q zMY#X3)TZwwDJk3?Sx7gqLw+bTU@_};zOvq7(`NOW5Jr8ylT;|=7PqAI#~dD^crS+` zM9TI^R?k^O=`z0Tyj+aad-)1m%M~qTsBpfz(UON5rDP62c z9yHZA?Fe(2l==GA`5_dA3?9bvme5&U!}03VtK&-ErOGuMzl;(ipRn{;IKv9hev|GL zXEEAw22ZqNBNP~(T?MiX>GaDUQ>!XqSD>Aww;bb(C3UJAeTEjXZ|;7IBMR;UB4GT6 zh2YRH5ljp`MObeCX13kM6rUVQP^%OO?)kmWHNWWE@JG^#An>JF*d8$@eOdqu5V54TQ+j z1-EyAuFQg?PQRn!fU0PP;;E9TmIJ-=-JzZ={x%2*v5)noUu-{$NYkF2#Mb^2`1u*4 zm_jM~MmqCNdQ6>t+Jr#SBKl$7`9aRT&fhXb+n~0Mfn0w{T@b!oDOVwbII_=Ju$-6p!?-3HDc_^se4GSF6L3U}tYp2v;P18QCv0at6*_0%Hy;l+7T6nJ@4Ut8 z??L$1iCsQpo&H?|?UI|;LO9f0TW4)UnwTkko-=SJ%m^#iX;;|r0kXA1`bTCAIaf-0 z?*2*2uvxn2X3PfY&BJ4PJXs+d;uyMRHGe{GwMc?hxBaABJ)^-lJ4`2nOTCKn6|vTVhw%+@m*CXutxE{`ML69>%{`ZoeV+=ChH$ zWdDhfN0ScMWhd}7GP@>=Or%$CMP%r9nx8Z^0w=zZ%?t$=!hXnI)1JI?ya^XFiPk|l zus6KP|H2!N7qud%_U%MuTkwW&k_7$DSvoV#mG6{&iIkHpJ*mG~D{ij1ntbfiZ5}T2 z;m;qLweyOR=c=|vJ{-kg83`+q>0`K_MMQ4O(`Ck!_~>25JO4Mc)4F6Qitth8Pd*O{NYMv zS8ilR_H&c#=bZRggN*LP(Ft+Q!lriH)soI#VIFkN`%#{-N7QdcZY_;=cWnOcojGeI z7ziS~iPf(J>s)(Ld0Ng37o(x}tk+YS0UKv-6;{lIFaq}GxYN7Dsq||?Odx#FF?E0^ zA1(B_$VM`0A2&dL$+Yh#=eP_YgmadNvDgXo`D~DvjPXBwt>?zr5Aol>R%Ij!?jqHx zj$9DD7nHQ_cG6m90*hZ@5{J3l&7BgtMc(%T6+=H!dnwY-I6cmOv2ioOss2|P<;}hr zI(BlOXq1((chctd1!;WYKr`q0@feBci29n#I8pG!^()dr7RCNd7g=j=(Gwf06C$-I>b4gkLhW6(RE$Zl zOg}UK1l~V(&*!G*O^5F6^B$QxkUOc|Y&gO?T_9FkbWV_(=0vEOmwNOYw>FslyXRX# z<4aK;Qq(g_k6RR6LK0QC8BmeMt<-J4Tr)e6cXv7%nF>;ylAQ!T&go5105nbwW}y`N zWB+94Phx74?NnJ~d-Ei}63;4Lv$g~=NwB17y}iQcccaB zN(Zjh9v}$&bzXtjZj(Yd7gS5&{0y4RB$;;8;z6k*Z`AK-nCn36u6)8scTSxya%-v9 zRih^#1!!-Y+O=G@yfZyL;n2zVU<&6pP%XG9M34Y(+?IpJE3wI6lUZUn`?we=HRO&^ z+T*#vaV>gU(1%%rCG(aJ|Gg%x3`iTRw3sfs=yl-DEouJ7OxW!Kq+4uvN@I4y;Z3zB zx=6DJ31!56&Ixa;H6W%a^G%@>&w-<6%IuHyH#e8F(oGY< zGV2DG@hYV{CxhN?oRtJH5rzkwEiSupV^N=rU3;Za-|fF?U=#e;rila@)C4~smj585 z=~J;iad&X@>{sa4D8tc3;S4RT{pBMojl#&Zs*+<6s_z?SNsE`Zk&3?1Q3fwWhfspK zexk-ePC zQ;ejsX?YMC8UdBP{Nz7|F_5K`3SIp|uu3roy{HkQx}L>Fi0V09ho*qD#D+7uQuU#n%k{HP;V!Q|m}^mS#W! z&x7St#<~vu0XfR(^k6tax>w_!eHAdyj@GvLit4V5SqJNzz7$^0GABdfgKkp+^Gwwo z)V9-9sYjT2dw{wWE;g{PS!R)0>t}EsVSZ89p{F%B7-9G)_e4tZ?Dq7jJ`hT0#@73= zgdkhrw)oVD-P-cb{s*qG&liSN4vE^_@0{{vN6{ z3AkBauIO;?1S@eM*Pz}ra!+M#$>m}CAt#|G&YP(Lt4XH6Tw`F_=Bn0dcE$x0?{r4o$5d|f&fDy6_f z-Hiy{s>Zk4z+cqzWx!vI4o9}I7Y`r?POylB(<=wBs9cAWtxoNZT|VnQC^oi#ChQxF|xB7}OFsBs3hea(ED{0vhAmHzd_ zhr6KgH?8v3bb!V|w^Jr3&}H0%^m_89=>`M!WtV`VeByHgP7v4I3k9TU$(uKt>(ZGW zSo=n`4%et8b?KW&%CKD4%S`Oy1>)XL4d-)}HIC?y>nx=Y2QVc<=i&~z?;rOH| zw~(N~#^{NVibm0`9om5FuG6@@3ckziM@Tdc5FO!UurLk{o?ikEB(m=rpBjE8d<-FwGb1*=4$m zsY>74SZ`$Oyrc5B!z&A(c?9os*Q7tnZvc>{q{No+Lb`_fW-|SKgV@{PmzwmnK;Fd? zMhmQ!%cbyM2gZPgbi_Jc(Fsv_Y+ytvy^=$^iNFXBE%JKp85g?fDTLT-Y#3Z>Aff!c z4@-GwzRo=1^ZY{1n4wv9>i73ImR)f4Wu#l2`+OU*gB;@3ZHfMCe-`xpmrMmeO>=0Y zrXlRR*<#L3hWV086FQW6mGU;s_3S-ZOk{El#_~%x4UTStzFJ>{5rib4H=s}MW@NI7 zE3L_gI{|c%U?+SlW@6yK@Jwd9p?l*pK!S=Aexu7C6_O^cPk~T;a^U zx*fb)LuQpn5FX+y83hAqBNwyj-@MG@1I_$jhX3{{b-CI?aXSQ;k_Iz6E%aMgkUH;b zP8nR2S0F~OJ@m?M;GLCN!g-;N8v1|@E~#Sp5?p_}4vNI_xB--@v3-~705N}nueH*g zLUwu;FKN{1WS~oWD7f6PTYZRa>!|*b-U{9@{k|)`uv~z5cgpxvSCn=TWeF~J!^Q$m zalh4h9uWW&S9_20_;7DY^ilpbk2owhJWs|OO{(eJQ21AeON8TeeFgKU4ACb*H(S}e zd&_q|Du=H+Ed(pWnVEQvc#ZXad*=@l6}x!B{Xh-7LyxH5rRWo^P=XE;$CLp zcSlL_V2aGlnr}EE^_eSvA=pf`kG{Wn5vqyyNuRu;(#LZ+^!ZcoS$iU~3GZYX(Nou} zzRb(1&u59|B4pb$)w7n7AB-lfqM^(9pl`@|{Wu^gX}WD)!yj3e-iAMD>v6QjSzdwK zjJq=+6BO1y_2fV!`rIkZjH(;S+RbUUV35My(=QXNq1H6}FVy4hpFIy)^#n3{KyOv- ztJRn-%jQem+VamE^t)~6q5>H2U9FjzSnHj+M`<=1Wzk_$M?L!~qm46D*RHNNN&7*G z9dZi&Q7Xc<6e+f{pKNPCig6Q?oRikDHHgoqsB+(=;oR*tj!RuJ+qgfF@OK*HAz3if z4ctHe#ZqzI;S(-G5)U#g(sL!s&sT2&jNn)j2$J{xhz^s3Fi4?xg7=j*u481zA5}^g;1!I6D~7gFZ-J^xEpWqH6I;K#U>Yq z*-RyUf8};yYx}f~+Cf1InQ;u8zPR+S5t6q`kj=0M^E!z-Hae3nKVxnR*PjeDBU0$z5fWNlmff|5_|?7+!Lgqwc2eknvnTqGMg7~WgOsm&s^GP0k6+4*{xSFD zp3tYstC!HGvv$dR%r>JJwK5LRpMuM8u%LKPmY?8DdZn6mRM0g_V|#UzeWsXzbH8c6NA*3{x*5H$z72fGVR69qJB`1Ku5dfl1&i@tO8+QJ>2*55w=`ULaoLt6M7aE zZbCL%L#vbVut`14E!-t*2rI)Ubw$hp9W8lvS0S--ik2T)C-jdw3MXxuc|Dn91-h6;3*BreC>nKeCd zaqIFy84c7f*l+6bG76=&Qc}|zKOK)(@`U*HX;qEi+-`qnJoGhO>bR5rJxkSqYI)Vc zoSt++(}iQ-ZRG7@bO(e<;Y$8y+f0c^r^I5BVTJC6`Qsc?iC0tkRiCwT%qX1OC=+!sZe4b&#RNb7=(@X|t9NcPPJZln6F76q-YfeAn`nno46>@p3_B_<5@bAdbiG$&TWW0GULZWk?oi{(6GBtdx z*y80?H8*;Rv43+1yTz}nn%SBY zqL&0njCcDoAAHqLq(bEkpj?DB1db?8XJ0r@r3)ldRxSZ^dru&~`FRWp8J5*3$CaaK#}hYdn=$rPRYt;t}ERu zOTDh{mgibi$~OJeilh9gKP*UhoPDzWZV}J?Mw>CW-03x_E19gdo)m7Qk`e^Usphc> zu!K_nK#yGBS$z2H+R`>NPu6f!TRcT&LR@EidhG19C~{%a8gg-v4PPfoL@?g&M?05d z1&?6Hc{+lE^dEB8ZPuMQK5yoZ+$piepyixDlUD8er&NZ*AhKY;l@X}(QUogXA!ZkA z6$>hlEFhlMQy%8NGnsUrL&hebzb;x*Bu0jHdHp+k-gaxJ1%+@~n0d3m8Ug1qXmVk9 z>uYFEKvRKyUSfEhU*)h^_3Kl?zK*QI-{CHqDOwRa@g$URn#Xy^?)i=Z zjKa-n!ET-LxNd0J6Bz{g_sS~P`=NuNwmH53LPuG1VsYZT&ls%Ti==}ckP>=Mx)x~U z%j1H-fxRkaJ$Uk$KHsj5EO?kT&yQ;)sokE7^Jae3?!nis4r~7sT)+^Fo9r=$bh(d~ z+t00`v+7|?g1u&8Tou#s%0m7WG;qtaCktkXQ-q!-b{@j}=KbYGd9wsI%=J*&@yl@# zpL$Qs;#m*1o|*D9COSg`ED8(1C`Ym4%i6LNY@~tV$4NCQh{X4;Ol;KbG~cz^nES*2 zMa&R86;gYX6DUiUj7*EcLytLBbq6_5A|fDUfgMn=ewWjih^EUw}Dl%-_(rP z>#_W>2lBiAu1<8W8okOIHd<0SW;`P&_8yrx6Q8>(O15-od*d9&s=>#mSST?E3~z#G zhyLzR&m&Itx=?LYStQ!%2V_{l;|T7X^Fz$w8Q;jBu|~a~TY*|2uafj6#7Io&v!9VY z=@zaZEKrB2n>e8uGsd?AhQdCr|M+&1bbp6+pNr7>(BcvY!OB89s~X1y@J(E$$w;j= zZju9L^@LB3NS?R$br`7SD9j{$Dv^!qU{Nxx#oGLRQptKPfq-I=jhRA{SRe-{Z$$AR zT!@W3J8MEq%>@JZVyzt46N&8xGe+ z%5I3c2qlPYgj)<|gARIg*cZWX(5yp;K@ZeK{y-qDB&=M7*}nahN> zQJDL2#m0L>q+$^nvqeLD_m|c|(e!KW-D+fznxx912)}Mi@}Sq8ic&u>MDU!qsGM%gITZm!?Z zu7ByM@R?AoDShsgUW4DoB=dpN=d&0=dr0PDP03Q+?0y2$Jj}pBjUBDT)KJzWj|tPa z(TbJtf8WE5WPZ*BAFgggP|7JQRe2`BUi4-@O@K-xj+wW$$Pn<0#V}A@3Iqwj`eSVa zwnYs&;l;XMA6VFmzl%5oA`cg>IM)D99Hz$MB2;0S{(IeCpK~Z-%q$_cFp%cN+h}Eb zDc|hNpp%|X^FGq8(|d0#ryOlXv5konoaGx zuszIwR_Q=zLi*P|xDkl(r<6YaMQsJb#U%+L#}FqCYNg-G)ura`e6J@n4uZ{VDUAE| z>!ja{c^B`O%osp87?X!T>OY`CG0>f|=MVCy@X=*d;?G_ksoD45p)Sqe&ma@J58WIJ4^%+-!z)pw!Zwjn_})5}_80X-|AX9V#>x9k;q z)uP@EGtdzb9W0UM+vN+HZIE0HhK?BR)8zxC*G|Pxr$$e?BWls3GH`5pPyPB>HFe@p zu!n{9TF&&BdJ62tEPm>`0Sh@rzWyU|Nb8T1N<0mDzN#rEkop9_srM$E6()-OQ$;qh z_eE7fTU>K>6-A5oo^~Uecqg_&i~n90_Fx*8z|uJ3T }yI|~_Kf01R#T>HIA-&8N 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

        iq3T$9lD0& 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

        iSF36$F*c8*gCrBE!$|M~<~UdV?S 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 aWmO6U7>?dTJkHp+A)QeM*By>SDJ)4&%jdG|h= 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 VBf(@(4=~XLOsZzx%NLl%Jbirza>+5oBl-jE(P) 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�>rC zDkuH#RSpI78KEqqc%@9*!93PNr(mm&=>Q&zhUW=2U~@N90OIqzO;=aD!@(uewx>~v z#PUG&Tz@qnAl4J(_IE}5|JRBJQW|3ZWf(>9ryof*n!D^;8qFDXO!3r!vyujS6D)$0 zl<3rt#p=g^e!|oY*iw?k{Ah<=4RKWI+B+}E1T|qkt4Tgq} zS_g<6t_TU@pU-b#)u)J2>5pE?2xpU7J+ZLipm#U8Bt9TiR;~Zp*?(`ahy;fD zKQ;Eh4D|nsLWZ^LzTpKjH2#zN!&ui#T59ed{>Qh-ooceF)H%a3>h)-1SW`Z&V-C>i zzwT;(YfM!I`>X4`ouK|r!&dqE2c*^TY#LCZ=LabYe8BQgW9C(n^eaH{EsQ0-Yh4hC z_H*VjlQtjf7l%JJVD0?xy9iDCweS~*s!0F;mOJ_9QR5$mq3VCv=K5z8`~T0+e^yWs zEgZ~U-CQh8?Emr7(bN_Nk%NurJ3_vUYpV&CC8l-0_p6i@KAEnZ*YQ3lAGJ3pHu64`McMt|}HT z;*R!Cjt&+MZtr;%4#Q&Bfi~gMx*F70^C6 z8w(GIkPr&uKkxI;@}F%Gx}21(6bJ$W0%Q#Qfc~t3#6j?|uyC+2@NjT&2ng_q$k-^z zNJz*8m{@4oB!r~zNC=6E-%~QvyeDU*ASR~erekDb<>25TrQsFiVH03x=V1HW2m}HG z0x}XZJ_-sx8yPVf+yCpwpB@kfJQM+BDij1c2oeJV3IpQLPY@{x1OWrw?cW>z&j$n~ z6f_Jh96SOd67YpabPyy26ci*h6buYBH1KUd;5rBz0|t|fRTLIW)dY^*8JjIA;Tt@K zSZyzk+RQa2yQxbs0wOLRJ^>*WH4QBtJqITjHxDnLxP+vXw2Z8rx`w8fwvMiznYo3f zm9>qntDC!rr3y1Bi(fB60Q^!&G95Fn`k=+=Mr?BDu@0rU$J z8X5{3?r*;!AU%O!C=6&AGFDhjQB^n-XDo8IAb4!Cgm1OI2o&sU*EpswGl;m996MCM z{&wvjJ^O#wvEcuup8Z$H{<~kRAY>>AVDg|aK*FF7?M!Pm`cJAx#Fjpn6uT+A$98h7 z$HH(Sx`EDWbQHyQ1O#%_yG^#5oHAjwWpo8;PWL!6 z;K8tJ*hk#*eUnD->E(l+J z6Ztxz)Trn{KJ^SF40H|X$QBCU%m}k;1U95lY0IkIxxb#OoSo9ghu_M|cKFP+s6+G+ z(y>cfL(Df!tOKSCscfXRt-&>@g-)*P16)3}(ak+kS)YO^XJ>)q%XkxJOa zoW=NQTqsE@CI}N+^5j_+NXroUNKiiX0DkFSr1)$Q2F3(6y&T;-BPV(EeuHtIfvOs6 zvUw z7Y=Tdx$zG~Y9TYwq^z&)sS-w^32%(RBt6&Xy%|^R2^D)kMKDQ!@J`pIb68DHTUyuN zs&xIk`MiTe`1dXvAjO5eDu%FU&qZPDYF#EE;|Fm^l6?IfnZN!7J${007kgKR;eKtz|EfT{^RXQua4fWB(Q`-koJDAD&T5%zEEto z`t;VMA>B0-acRB^wpfK&8W;lVohyz@?MeT2gKV!I51mf1}kf+&dGtcsH1!`5!> z<21g3!>E0ZnE^+aSw%`UXg4Aj_(Nix-!FR8KvuXgp#Ql zT;Duhf9S6Dokm;UVjr{_6Gjw_ow6&TzK~IIgZ@Q6`b}w2#B{bj? zUdfDzdJ%(5`A~vsDXj}2oBLdL^-C4fpu;%Ag?A_TLxha5+C3xEz$-OrPQ|d zxihdo%SeeG*}G7PEPR`0GCJN=E+IPdonVppHuHH`Gc9KMQj)MboU6>;(~+}yXyx*= zH~}Mi+{TmFhKRv=wZprS61;b`I?-eb!SY^Ul`T&}zPV5La9z46X_4nvH*>xT4l#|= zu3?qk@V#ZE7vyCqG!D^j%t%3Gvfzs5uHt4s+|t?bx}-H z*V!pnrg0^h%RoEqy~jAV`xc3!Dnx0swW^JKn@~DcTeZs?*TJ`+3EH&FF{0z*TudaI z4p)CY6&I@O_I+XJnG_h(+i%R_vsWJaJuPWw1^5auhi{m_Lb&Xk8*8~wMtNKOI9c^> z4AIVCr zcPQY!RiW#9Q6+KvDvT6y_N8^na;c%yO1GgUk>5^{MIu+X=QiEJ^&Z>Mt}QibS5fZd zFj0|KzZdx|@pGD2T^$-wSjaPP6|eKoH}BS}0fsAL#qOKjk^J?-#76R_;ZH|=IM5z5oVX5{?w8+W!Y=%` zMr-hpWfXH^LQ?HIE!4VuK5C#>k|L>(?9$td4IFq(?Za0N03DhBMf@zmV6b@iLTm9% zXRb;DYpeJtsR^{xui@4s66eU=wZSo`qzwU;x7am>*h{mJJl^_HY}6yAw!`H97`Ztx z_B<6A=sLj-78J-UqGT(mq*JFV6$SdalgX>qA@ zII;<+!>Z~)W&bd;M#^DZ@7waQo|@?`gO2cF`5`zjpjx;*L@|*sC1%T})6~=5!=_iQ zT;b(G;`3V;JT{)18g{ZD7y2IL5%-x8^5_%3YUV-nv9a}2V@^P08jGnm{uB51P6gkT z!S(%dv$>+_D#KT3)yXT`=vJP=^8^ut%NsfdTI-5GAjW$XQU5dou<^8;&Ctf8JI1}& z)U6zxt6ub?@`L8}Nwtwb>tMix-pBI|AZ>*kU`hukBQH!)+p(YP)!i-hKCk|`!m*EIY@KC0t=-ehM(luL@!iS8rgCIJBBPfPzZ3E)$0a&0((inBw%HEMagF%EOxmPKE=yu(?a58>Nf)d;o0 z+hR)G^@}!{tJm+eIKjn3W?9qpsTzV~`iIU&^O}#BHV=CMoD83R+91ImCZiskV|`j7bZ*ClT7Df*MX9f4dp>Fm31%+|}i{LX@?4Id!%b znk>D-Gj%o6)MHw5Hk@pkmrG+E`>0I(8>cx@<#SIw1~SXTu!p6Ppt(oO4n zqf;y*t(qM9i53Xzdwx{kpq>dc>WcCc*5kJ5#ErJKWdh6Q5&r(+Q8vN4#;Z3NG{9lcM^)^ef_A5oqfqUuEP>#W}FNHd3!iZEp}0~?mKuM zt{aw^h)+B}-FSPuAtLZrpNr!sdBu3T-kRn5%pzIis_f$b3`}ZyKdG$#xSKOzmORIa z^wfdo>L)nc>p|#Ow@xxffGV~h+gHyhAn9JLXPdXGtX0Z+T*3>*ZVnlnBPtl< zIc5*pH(kjZ5$h5JQqOIDcdsOfCKn_UuGAO}hY3o6xJ3<%iX1|~i@N8$o*1-ZKh^S_ z9yFu?O%SzEfZlX%@BAqitmZB*!P8`!etP`8OvvIa%rf+@^SO=7Q^h)l3YNLEyp;Sd zKV3Ysf9%`QUq9NoheaNk=|7}UQJ4i!=DD|Q?+IGBREieKR{#}Vr52CWb*n0KS>x)< z(@?Y8V$(}b2`@GpyCe3MKk&H@z8?nP(DA;W-d9)TBUE2rTyA5^KutdJkioJ~6>Iqk z_h&Aww*{ulY0%}3wHU`Vr!ePl?*_8`c(wDjD?8I-vi~#z5840zb>GaVdCvXgT!%VP zMrvzg%+Z0eadx*u4B}-ndcZ$JZ#qrn`u=U8D}RkL(dM0wIp+2GN!ZXfeKMHj`bCnE zxtOXUzzR2(ybX~$h6i!8B_H{AFXP)hGp@bRJC6HQJh(&eNH~nej9*wkLehRZn!vZi zL&OQPy?9)fF@NU#rszjJJC2iT?LeW-0YbKG1ikyB*(xAx25{eSV7Tm3yov!@D6%5T<{q zqP4-J64HI%MO!pbJ!4_S8FEh2O7acjs5 zTP<8YmIiQ7p#Ii+x?*SNxCKdui>$E|pJwO+2X6zDnM%u?5es}{XR|Q7j0TJ*K98W+ zfNoY_$(dZq{LQ`c8H6_vBeAv#o zupi{tuc}l(KiUKqC)bS5)JQ50=!9rhG6@LVBib(3P9W>?T&)D8IIx zG0SUJ?_?&sprjgEQ$=%a8RfHd#B$whkNi4b(q&-j;neu+` zmnfZx@J{?~Cuy}z-`eLg4dx_wffBqhSE37^YK_Zj%#eqKMVMSQc0AF;2@Bulz5L{k zedCa?k-4cK$2u00Y%F`nS;m}w>y5jWbJhj#3#yo#FAD9zime7mXTh9#^-)q`{uG2~CO09(1*Sa7rdr>GhXLOVCRhAao=Z>} z+KsUtWOsG;q|iUUT-45weyWxaHM{GZhWno1%Sq*3_t>s7caOq_)ZSy(90@%Sl|R;z zqvZRk0_!nNN6}+T&6q-~;X=`;s5?En+;EPi?+ z_NllCLWtD5S|qIkG7tI zw0kx~v4E4D{y!jcMecLF+JLeJD~eeiAP|txS)n)p0OXdmF(L6+U`EP&q#{73Qb0W&mcB09l3a z8q4crb%Y(I8B-kFFHC*rdP2i-<7RYGA{mNJDKevl42Fh`xQiPjaSR6NM5vsM;j`iD z*t=7!0lccBlj+S7Vq@+sbf-XCVyo5@gF1HdCf4C$kTK$O2V-lMf5g-3s?mmSDLVS2 zx*D0&EM|LqOAr1lyK<|hB9RP!TztO=%M*mxv*v}KFVv3TJ3&6|HJ2O8m=*$@H0TOr z19@nU6zd%{r^&+3qpml#p@r!RGcZn``6Hn0 zcl?VExibtL-Zqrlw8W%oR;rP+Nxt6^$cMuWhU1TM{1*qNFH%1Bp>DrbLg~ z4VRm3XRP`wKq^1U;6c6ARbMz>v%1h!wu>TZxilZO)(`WWP*V~oQM3$>~Imy9Pin3Y(^i(grV&T+W z1eR;yht*@o`*x(YlBQrOcJfOL)|#GT!bp9nDE(~Ck~nv}GI7Q>i`6wG2Cu%(Is^2P zc9%pS%@&T4$s&OqKCd5P<#R;c9}tZNMg6xUPxgN?r;=sNx>87?s!&)tf#2oW35zVu zE>6n($sIF}9`wsNx9aB#g*z4I7>#4=YqM2xz(@O&re5}r(aSJ<@%E@`5Ni;+o}n9V zO?f&7AoCS>R91fBl~$3nS8*w|@MI|0A#!iQi}$8#`YO130Sua8-=3(>c zHD4+1;(OaK`!$I^V4aPX$aBmMQyMZFnjTP$u?`Xnc4{wiE{lIJ0#oM6TNiQ-hm3BU zjT;&GE9xcMq+$&bPFOjNMyNtWn`m5X_#k2_5c0}!PB_@xp5kjBG>84#HMSodh-P-} zo+pev8u z=Sq(sam5mM#-~9_y8V7fK=Qo}iJjJKPF>!&%(Py9#*q@fn8G@WKQEK5>Q$_PXmEH{ z@!+BeiC4dwA?Xj#kVEE2J(^#P;fRE_k}X`8cXW4ns7-hH%3dw>L;;=o13=)d*jqMnJ;vHd zOoYF`!iNYtg&(k+k%8|s&5@U)g=kRQO$>yPv6)ZjXhTM!f{irAf=tYjT@7T*2ey?g zRbX4u4|qeAo2wiPcp`BBU}qO_L}k4Xk}YAte?Dw|i=Tl)l0AgJg)>@JJ2ZxcR>T&!KUhsi%#)@n zJ8*7PkLFnSpj)kA!(oj}SHw6z5y-OqLm@<)Z8XB|?D)nxE!x;mhPq?*lnhx#zkGs1 zlo506_t#!?*FaeTD8sI-3O&Koz#EG?5Npebu&Sz&OLReE=U6{w!aSn8O60Ta@4K^z zKOk(!Gp$**{!6wO4AFUcSrOiR6_6wqT|p3mPrz${9qIj}@STEtq3&wH>leitX>aCPwGh&*ySw(iv)Yi!$4A%BdVG6W2{y`(7o6<^uXi924> zui6gM-t|Rj!kpSbNWSJ1HM;wN@#+a*Y)wmp^*6u^mpdyv7Mp>zSTtiiGuW78WD&Uv zX&8oZs}J_x*Zx@ORnjMm5>uR-UlZ+@OGXeMiZnc2eY#wJxARi$;cbiVaKm+SIg*1K|4f=Cf6mvj$5_E#5Q{hnWhSZ`m|sq!Jj$^3x3}`;5#TgkeFKAt%Zi)H7fCvufQ}oc+MCEyGJ_^4J@LgTW3! zpt=2ShG?E>QxMDVt`@4=19$MA_TKigRIfhL-Jc>?HRf$@RftIbA%|48brAYFds3LH zdbf27#s;O}QC+#t{b$9y6X7ifMK{xW`)1by`q4p$7U>mx>EA!>hrmJ%igpb82X4R4 z{P2!l^(sWg%WP;514)$SqBWuvA$SPNG&JPZnDnqnC8@A~GGQk-^w8PBV8iQ)D`b!C zkL=sudgNq1TQ%9`5-#TVZcBt*sCKkRM-0PDs?YI4Uw(s_Mb!J*zT`iKn&-NY+tg}! zllzN${qi?dCl`tB;a#PcirDO~6tyh8VdMdvh|g|LsH;b0fA~*eRWMGc_w|`W@s4QI zp4}tUGdN;K#YpLkqjb1P)1;36mZKb2@lsGVZk@KQzwiIl#(L!A5{Kl$x;db})I?DX3(huaAz%M-f}67MCo+>cz^S}k;ZPdTV-jqV8MFrZ^p zQpV@d-PEPZzCxCQ-}bmQTM4e3zh>ZbGlTO=p=-tOqQhPEOidDRLTxC!ENiHFF@!#E?lyqK(5Phwq7* ze3;nc)!_g&Jp3rPxv;`sBE2E@(IldW7IRmg4d>T7U+al7!!E7fW}H5QHl0)M)DZ?* zY)qKwh?_@5Br6gTnkvsG&!(kX_BA<5#N|)!aMkdfB)Mr;#^%;!kh0kwvEG)H`}+%; zr58BCSO>g@P|`IEG^wYDv{ZK9QUfyc%!t8N3BT(z7k}YKIdWjyvL@h+W2Ev^8)3Dm{yy>VPfJ!sCv19shr7>*-qc0`pAWDElQFIH`Uy22#Fq6V zdL~yWUbb^fIRliM5+?_dyi0D2LLnUoksx{~edbk*cG`(c$6fe3s}8>O&F}m|8K7GVRHBpgj1> zX(+(K$Qh--!Kcg&!${dI2wAgVb}{2Z$LIQxy)<3SIc8=%$!i+Sk?G1FH2wu<-Oq`B zf>Rp5l<>F}a#n4c7J|;2Lk)tqxF9Ns09*Z+B6(Ecs)BkMEyO=ys>uy1P>R?sK(LjG z__3kWEC>6;Uv?pDrn ze@%s3bRz*~v3V-T&+mM7sA1v0Bwlo4oN2s=wS9An#IzY!#^r*t)rG3pKlR=>tRv6y zImAElUyB~I^tHYTnOKyqZeaX$g%uX@{$ZJZGl zTzs{4lz}M<0`e-F=uem^qSY6d_LQ|483ie@0M*o&L4-*=Z&z7^>yzGo*CJJ=V>{Rn zxF=f{9ht|tc$Pj@dKr$nB;G4X}&5?`%fo#T{V zF&o+O@`4T51Qzw4VLN-O(Xf5BL$}qbj###Q0}pv6$BVAgR<=tuby6i)#d)2nZDPM$0u9v&DV;JuZgy)p(KAMOvRG;3V>p=lz!#X#k}4u6MG_t8+7J{HqI`yM&#vOx7|kz( zM7KGn=U<tpw!C4M}du^ zybfU7fhG<{k=I>)m&y@Cy*V__<}LC%w0;D&td+u$NuW3K_K+;-n06<{`Moi%0(r}N z51fbaTIjQ2l#HyZ1e-~B2U1VWNKjG_$uwnz(qwe!=*ZPc<$`5FpxHrC6to|CraqfN z<|}#(6vg{}6Olk`xuchI)pTTJEKXwIGC@{<@E9ios4& zN(&33z%QW?b=Rj!q}2aDrofIr#U!%8)V0Bs@L3+&REj2a?fzl(u%6=jt=RVnLRYnbS1A|zek^Kyj@ zvoSq9^iv2Zcd*9(j;Ps&I`@Pk)rwjYV;^TUAsQp(X2x~rckqJHPfRVuirQ&=9#n4P zguHI09y?%@a26qN8&8-FKalv4LZVDk{^7ie%Nh?+##G-crI~9RV$6z$yu2%cW7Q}R zQXYZp8h*sdClt!1rWe|@!pJ)95Jr^IHPmUD7iPqK(yyhUj~hJUprBaeeg1{S4klD8u7A-)jQC;=F*2e`s`uyjiIHFmX{;+fzEZ1-?S&+5k$4dXj!EKP}9gPu`A8_Xus=RLrxJ63&LfijpSV&zmqcWno&sCal_Px zf%XK;nHUti8{1<_hEmJLNm*))MOIrbBJ(*=Zf`qCj!r^>fwi ze3@iPpq*qvM0dR>(;zG+4GCW3`1mQDd}BwPq(-c_y$fMW8`5Z?$Uu@QIgQ5K+BBh` zq!l0fDBHdKcN1Q~3ZY74tSeL1P`1WvRUhx#9pyG6v{EkV2WTgyR57X+U1xhNDI!ob zagtUQ$H?6T-|6be-iU{tE432)3J^Q&@fCFcnIKLatd+f)IH>`NZ7bBG#N?Z!>?JooaUb?ocw8%%vgj>sYx zY-9wKbT3B&7$QV`ekrrdMt&vK`eUK|>oTx=%}_QZpbO2){Dp5b)m5V`EtF5FAG7UA zym=_+?wRCHw~S(OT$*+$dhnmdSm8pJaEwUg)#MRmb0{+jOmFdbmdtAK)j;2ZJSD>H ze4{QNezOiaJH2CPU3a2T9T~Z#4=Z-~O;|j&a(-!?$`M~wK>hZTJhXL;`(wkFFQ)C3 zlBxAYU?%jekBj}Dv-ta%Gi;u~;vp-gwT^d$3=hE&vrVWJ(}^aztKIg)I<;LF|9L5*Bh zls%d1vB(=|qm5}ljZm_`PeqkVC<((7S!NO4_6(*b>f6yJ(Y$wxCOApRv|slj7e%>Sl$&XTB$kXvcVWMq0BO`Oa1ux^0M(<@ z2(sz3Ob%W{gI~8_G*)rzz5U$xC$&T$+*9J>XRyttjg#VSMxV*Y_>0*6c8SKM=@06N zK<*VbLWy-lY@@+47cQkV`z0l8g*nAuh$eA!)$~cTEs4{x-gj5oj3T}*?n_Gp6o|E`1Za4&UhjkbzdtF zq-O1jo0#N7yfeToI*0;AXv1PNAC{U=MOI85Y0MR=2OO#ju~k@EC7Gxo*_ed)EfxaK zV!FXodgTnv<5oXco8MfT!OHp|6*!VzVQA6sxUF*!{Vv|-U?4~drAvrg@4M3;cfO%T z2h-%Q5UYN2+IRwuSmkYE?}wJ+ia6SJcQJn&OV@Ivu|V9_S=jxxF$X50*+zwcI#s85 zRs5pQ3@61df9qtG`J26S5s7S3$BN61jGla!b7FL9L)pYOz_S+g^u~(CU)fN3>HFqZ944OuNZ4oX*}qAQ>Ij+jqP? zf-vHCLhX(vrz)#@n=(tNscoNrJ6&X8hjg?KZIFEZA!VT6wBW0~K;V*%7F_v(<0FQiX+OTH{nTS=O>&XXh`^8xOhp|5G`*R+*OBf+~01# z*gdu46xwiA(LT97ngS&omV{qrI6G9MBWE9}NiQ6mRyR8vMA;IId8CIaerP^$hP!XS z87&-nB^x4aeGX#^r)-j4eXO3AuHyc+Ed9v;2c)X>f?N3q_w*08C-x{iB;Uxttv*Lh?AXo=f(6RW~ytU*o^yV5y z1)Q-Jp~PK(-^ZwSUzGp2Q5B06tCd!|Zg3hP)~^nF*1Y&2`WjIhhq|2Cu~c>6l?GrjD#U8PqwsU43h)DiJjEaP zij@2ZbUq)@$6tJRLkZy6GK3$?i*Qk7jNC8D* z_8!_NatsKJ`6>b~6IU>vTHIS^cGtVPAyH3&OS?Ycms@XCiS?C*9Z73~2L1Of$5!2l z`w@=eSDu=K{1jZnK-im?FUHDyZIx(fD;}wjejkAUw_7fG{Yvt~o%OCWu?llWX{q0} zZw9YT4R>2H`rUvscuXJ9BgWav9WfNvqKB74z>_?mkPtO9wM6)0KkpEQbUD#u(Ond% zj|gPeaF$~vg5Pz&@M!wF96++0hXm@xE?;Tw%zQAd%aL5xEr}72XYc%C;+k8Spf#A_ z#%GrqzDq9rLiORnD4)+RO*opB^er`~XUd)$jC5i&f4Ck>|IREIo?m(iWwF#wQDf!1 z$MCIu2Syj=s!n`?LXcKK{k_uam_OHu9OJ#o9}uey+RH=t_PhbI%w3h~n!HM!>k*lz zPNGRnkWgW#e7%vMgo7;Zddntv1w^=!^iEqNc&ak)$**4c;e6}WkStDr3hU$uyut%+ zKpez&vRz!2$aD(ZZ%&nKg1~3JTj#$jOFc74Q}I$+m&W2D+Qhg)P6$dFumjjX&OPSV zemTn#=}&Pzd;bA7O$tBgX(JJkuC|@Ci^W-+qhdQ?+%fgg9E)2fZW%6Ew(Cf!#7_#D zVLWNuC8DBzOl?Ab?z^A6$a)(~deh2!xX>Vdf=mJ*j0Y@XPZOWoaa&&E;z^Ht3X{>q zvp6@Gpn6rXJr?ZZYhvQqAaai@ll9dS+!Je-ejOiJ>-)`1Lo?PA=iukuftZOjV~;7( zMKZ6cV(fp({pOho`IBy!D33FNDb=u=ZPOBNd>MbQn8zzWf->VAtTRZ8iF}2q1iIU+ z(j^?IyPtK({{y-h&O6Ag{=gyXOnGJFL=|t+F-E{=M!KHQD7Q($@^f~|ihQsrjI1AB z>{7swe!Oj>ZLR1GX&gzYC!I3%w4d|ii@eC~>kZ^sOndH1?;z`jZPnf}x0a0~%3EjM z_Z|`!)@bBC0L9d>P{oN*h=6s25VOI<^Rmnd%~ut&p}#5)>p#6OMA63p%``G(fEc#^ z=nq+i^9l;>5w<>=qeR}uinZ0TZ;)({Jw*D69PXs*#Fe@#wJYf4EHZ&~V%*$pQxd`9 za9l_1!3d%`$t;BJws6O)95wxz&65_?U<~OOVKHFXhU@vDuGevFmVt;_haCMIM=St! zc^!dkSkyem7afr}B+ma1L^pl;fs!C(9KQ6;5{h~g{s=Be)(kbJ6n=r3ZI%a#CSAr< z9=#yF3ty55*ZII0vrFZr2jj_gwm=An3ANwD*LXW8-{B-FZ#Q4^grh=!k0E0!^{RtI zIT*pPvh|KU`xz#=`Q4`r%JOn8p7qz-kdR({!Ll}`=x2+fnk!kPc<&KnWY6#SIha=} z?O3ZD5&oj_uD=IGgny55vM}k}u;<9O`-o*qVMjt zY-v9b&vvPrddclxa`_ATlg^NfE5wsai~1z%5_KSl>CC>a{ZY!^ZQ`#>eUcC|!~FTB zHn+?#nZES`Lb8_eQjf;EtbulU*6wTR7q9nutfMkiusSFQu75zW3tt;aR5oRuvAH2X z(30bQiN-V=c^^CE4w7{(KBG}Oh|>b?eB!CvKC%ei<~yGbFB1Tf3lkq{#l^S%7~jydNa`6j9-PhKFY9KrIo+PCocG zXHAxX=C<;7*SBnMbTASsA>mb|M4O-pHm1l`U)BVH-D)zMJKaT&I9}1x7IJ@6_QBbi zq}KT;i8vgeX8HzU?YHg7FOojFL4DfSnye5w-d<)naFFslDkmbYau4PsI%+9+H5O;^ z76(KgbXwna#>8;MphEgqD|&tpD0Zk*oCI7 z=+iU?L#t>=3coC}=p9sM#A6Wh34DEg27aY5-|M3(svn;U>t}vfZ)cR1E=&Z;IS?g& zUpy)-KjKPd>7t2@y_L>-)lcA<7R9Rqcer3C*J&@V6nn6DGsa)`QL$S3F5hAus8Iw0 z;`|K&W+#h9c!zSK`z)pV#%HmzUHJ+B-tqYe?#6Z=+W@ABqqB@v%$S<)2c}%RArzVz zyBfeit~D+u8Z>V9lA~1$FeyZ!_2o%IBJu%=3lI}zrD}wxYz=U|5jknH1!IGh6@vf@x%aXNz@$Spe zUsS2#cq}hovnF`k%Eic(?rV#&n1%9Xb*LZ+mXDB1(Loe?@J*B56%;Uc6~qY&cXg+i z#2X|N>U~juC%i~=NGI{@56CZo&$N{Z2O$01W_dk%8DIq{84ISc4>+cyWM_+TFbPv^ z<1rESMCCOY;OT6v^Pvk;BRwGi7zAWgpeaC2A}Ug98VO5<-BOT_AjyOcN)AQ8S5+!V z>4{hq*)WNIQ_-+5)fL{XZ+5Jdvz=hVGp&_uuxDyJX|g(VNWt<7kac_t*N^*+z{eCzc}MxM17=NHtIK2jubm5lr6%!^9sHD8v_xXNOK?j6?Rsz1^lmVge z0kaS1&(kLXw*E~+z_F<4rm_3!saE)5UI8L};OueS*=&f(@Kr?IjnDc3v85=IzR8@^CzhzC4;xN0H2g6`!gXO78w8Ou}3MkhGl^Mba| zs*$2*kn$6#nutBd%+msC2B-$AzQf3wSr!)iA7;Hl@XH&2Mjd@wOgt#TVVctL(L( zK0m|3AbNH)>n)!}sQVaeDC*INB`~I-##;$7{&w#zT%lG=Yv5g`@XNV|l|qf+C;Nb_ z(K*z(;@md-JTO!-F62^n_~X)TDI}V+hEg~%ztdcE;MXdaV?qEalJ3{NoemTVX4kdq zZ~JJc)_o~=_8J4#{{VFvRs3u?D*RvzZEG1hPRNM#+o2KS56IDl^w4H&MZ#}G>@i?X zB_KUtD%N_!>JP|jJvOs=X_rFyg$Z)<)opF?JNl;kW1f?q9xR5&v3ZwJ4>S{-=0!epSoXW9F3MtZ zuz*PYuR_gOfbY!6{rlO&vqzz$^>sY~YiI8+ixRBu!e)v6Jp%(4>Ykg9<0O|o!HHJQ zHQCa4Pg3jaJTH>2F0%l3#oJeM_8exc`zF|y2zOk2e|z>(d>M%@OTS;ynlc>{=D!f; zqJd&Mg|hVv^X8G=6>~Ienu5rNUNUa8?*XGhqxi+@3y`^k0;CEBel_y*t~AQgZP;L2 zrL&A>xydM66$-)OKlQ}0&9qPI3EUW*pb_|{nvLk+2mNAO>iw{V=$!Lz>kkNmqWDEQ zRQMR}Z!-x?S*M%iNlFWtE5^EHM4z8fU9#eEX5uoW&_p$Arp-GfC8{Tr4IUNt1Iz)i z`Zm1^^>xBYaX;{~k=(==zAsBL@FGt|?U%olgZcyA;t_|&uTu+5(k zUPzjhl#}zGQOxPqwgH`UHmdvvy*Lp+P(&Os#tGK!MLd+3~HR)5{!I=zuGUGs(bX8+ILry#VB9MccVwpEW9WuTYy69hHG;3oYoeSJf@sCBgaC ztX1n+JgS*I|LNnUk$&^6CI^INWQ7xf!}L9vKBmM*X%y^uq#9m1xe6MaGky;Mni>os<98!zTVP?BX$vwd{zE51|I@js?*r#P^K-3fn>heH< z7NS*^maqNXSYkSJ4gZS*kWSXpLW>PH1HuDe)VseYZ4 zTjPj1R~$=5kWt#NG5laSJ1wjKtix3-<=oh~}g zQyGev(g^p>ZbpPj%g>WH^}Vt5#4&G?n{D&PgeN|xYuEJ}W@O3Z80}%9r!(j>yF?(Y z)V*Lf2xd9|hae_ul|VupxY9|7O_m4O`tx~;JMHG|8b!?3kGAC_M_ZC8c-?WEJeYS_d@TLg{CTTR-QMY}r%{ZSSZ43xg($u|@S zb(c&)x99HLZs)`EolgNM32oF{Mem6hqCDA$=P$2Nv|RdIt9WK^{rvYO+N@cLE*0$M zY0$WcKXj9*X={H4wYZWvihK=Cilqf@@@&Uq+UUon+CQC)>=imVLWY ziN-VOj>!^r>VR)rGReA~My99es2;3elUXZUh|ZMJHvMTUX`i;-O?YeQWvubK>oO&E6e~h z{o<+XA=unHUnI(%JbAyamSOnbxXaOWTX$xe>O`4jpWE;I1711nvFaL8Fs~t(vLnRw z7n!F<|MapWLKv^6YOk)`4m=PVh2^HcNSoeqNX0&6((+Z}PC2*&lJJs;j9jgzja zjDhdP^BgQ6^n6Blta2vuh(aHy7yw-wjEGjzUx#IjoWFqm*nn7obO>TU zf`Cy7WbAhH%c^aZe{cSs$W;5g7?M8R=ic29DvvF?OTxn{u{YD9e7Mg!Vq$_wUsFCk zc{?pSBKEY}h}3srojPAygZjAWA-_K?iC+DsJW2u(E_VUXL~W=d5F40R&Q@$&!bM0k z-7+pk{XtYJXB_Vq={CAy!R2@zd$!v{^wW2_f7Z4{jNeQ@tqs}4E!ETw^uwPBcB_qU zQj8%xYWF`QPaBv)=1(E6H|(PNfK?%tDE7>By`gA(IoStl}TaSg`i)e zm6FCrt05)*yR`$03TR#`?i&>}N#XdXc^THaEKzh7Sjc!VWzr)1EZmkRz?YV;M5ANT7Bt0R0r98rF^!LSs=A3^hr2Ta-|3LS?966ob}_u+#=?m z!87ysU0hlg`dEKhze?*$KY!4SEY*|WMLE^YMEp8VDzz{7xs+sH2hgyq4y)pRpekIS4$jWS>XAV(fytI5Z}cdE|_zHZT&Rlj(x+k;^I= zG(OoQqp5zpw7_*ueMAhfNaKp_A?>hfuaT`fH+>nqfF^04=~PwZb6UKStvNUYI)~Zx zd_f9cK&zuA0TzWO?7|Qo=F*7#Tvx@ROjvKhLK3XdE$U+kWHSL0ui;i!@Sz-jfumy3 z)eKy1skCTN9Y2-Z+ zJn%3c3V@?ZdS9}XJ~NSk{`V66-w8^ZKMH6LEIe$=ECW`x_AL;t-q7 zX|5`Zg;<3@SJ}+Yr4vS3Lq#7_&4Ube)UC4Q+n*zX@EqIp#Z(y<`ugKsG%!QC(o;=S zBM{5b<)btP)nD%_hyezXKou2%0245mNtk-{uT2w?lEFy5QUm}Qi@~Z8fx+rT)(T;e zg+LY2AU5>*I;8vl=AT*2Za+QfWCNJ!S;H{jP0*jEB9_$s8)}|#{z|UA?krnQMdVNY zLIsUK4QeS>ZJlbZyFG|&J|9<^z28=B4JQ`MMP*8JEj2xg z64?k!$PZlQS5@dV^FFgqg)X;$T0|{_=w)wNI`;`e?w!X*RF;W(MAE)FIeI_7{eZ)b zJo(}HF?1#V30a?x+k^XaUmu7sX>gU5q)*tUwC#{m)oLlKV5h9F z;z)^uyfu}`SDhQMlMs-yh~2oWTgVJ5O6=2=v)hVMx~xi5l^_!Yr=QK=qx;VIo;PEf zd9E*CJ_6dc@?6s1nqC>gZ?7P*>6^ldHWG}-DbVJ{(+o(Hs=QBe#b3V+Hw@Ge&o#6M(3VO@D1Byq^GCPqBWe<_lbZGGV7{9{+Z zZ5mX>PE&*e4jJR*jC~w)h50AtyP0P4P7L71JrsX*ITJ5M`Ew-n_BJ>M&!MqQ$g!3w z=&J{AC-`+_vpK98@8yqZmYv&8WzGYR3XF6y(wxf=2+j@PJui(+Luu<{U&4Sayuhe~ z9l{k(cticewWyGS!8Z5sZ4*H*v{997>;s{@h)oiO&7CO_-nDVMl_lrtr2+j0oLUvl zFvj%7asQwe*&(Sq6@po1!g3C?P{4QVhUN!KabPLP$us-}#$rU~p|TJc6(fQftd3G~ z_0num%a%$dgEATNGa2J)g20M%^MJA{Lx4sZDj?dbu0De(ryzy!iG_s#qZZKQ5hGAj z5c?m%@oUu6jPm;D255P386ItOR*?XV76PY;-roXMi~_x4V=Qui8jH`inZep^w`(K^ zsM*(*=q4mlvYIsuI?|gqneB#=mGa*xJCY_+X2uV@SG-^>=J zJv5)h%F5Y80?|KY zs=bed|9S{dCBg2K!5?mtd!yY948A63!=d&qJG546>ASMk$uv?EU$^G}nY}SE80F z9h(7F2&{;mfFnD2Ur2)q&^J_a8b%biR4C8*p8cM4F~YZsjP4M7j#3Q?GDmU)6Q{+` z#0)^xRlNKJ4o2eN;+NA^#ipsZ0+7=gTx7U=Foe|B2@rtg@=A(a{SIZ$j1Pdf8clY< z5@J~5g~tTm=?Df+ay>qBPu}$)Q<2cxLa+`U!m#$ z5KKmZ7}a)3DGWCcc)7}af9O&40VfjBl;uc@|@u_2~DZLTWD9g{%M3nJn=nDXJ zRX7IO-*N-(Ojx0S2}g2L7$i{phDxBm7w{%aPKuoIct7r?c#`lFSL>exZ5CO%Ki3tkov4Dd#tIxXviCDJ zw8fo2CO;5{EpEBgAAjV@_|fAF>Zy|ob*a+G7Rz<3ma~X)3%*cYAGCciwckt7mQ@TK zaq!QOEzHr(9JY0F#OaBdqe+*FWo~ustn^EW#632g)^pVO+O9O3ZYZwUapT@A&QJBZ zn&U!iDF5Mwn#2GO8rX_(C-@&IDYB zigKe2pAy!waf(${r(X;oFrJa60=bHXoau!tcx76Xom?BZ!^h(opL;OS$1p|+3uP#* ztgO(Dk_cr`ID_z1z0i^~s0%q7Ms_vb=mHqUjDpvjq_2k#Bck=4FYIC}{@6&2oXN-| zL|2)ZJV)T}Ae*}(=jK)AeWU%8bTxG4>sp4s6kCNLxm4Q>8^Jxo_8U17Zw`%olV!kv z0NdRv`jE~pUYx4?Q-8>-7tp6UaufAVIsfzd?>18kCI6|7;(fuH@;URDI7YjE(Gg|N zgJY4#Pp#s_x8{O~$gIjPXBr;4PGY(t{Y^S=#`_4)mW8LgkdVx%r+m-X0h#YBKN~w> z)x1v4yc(F`rAID7@gU%K=1qefkqq%svWgBB55DiR!g_t~Jmotd)Dwd^BoI54VxGBY zyg$VO75T;XO>Sd`2_F@dbVZCS_bgEJP3+B)PsB%qP$A86dUr1qm$1!esy$1P#D&3TP_3MB!fm z#o4PW8yP^TyK5U3YyxmH6Lc)dEdICSs#uVVSX{}2bzSq5ZUzYmyc7wY*%=E7o&Uv( z8<7}m#lWU>yD-G(KWzKB*x_AXkluoD)GTe+%+MF74qheUSZGXYk__k02kV&-G^)E7 zhwuTFgE<;^zWl&+!5Ks`f<_HQ8NFYORO+A9@!3l>qy*Awe*EtTqBVg10H}wP6jCaX zWU3Nj^5uh307s*U6qBSTi}bH&OCSMEk7yfzT}ycl-UKZ#{-4WN$a&9kldx!@)U#46v^zgG0juFG2aWQn7 zvBQHlI6}_nRl+M}A=RQguD@$IU>4{!YPzq*M24axZ+#1Lx`vGw7jtmGK3I1Pe7oLk zv9_T6S#<9eZEE6dZEcrGGPgyTLcB$dSa)BVqE!Em_V_&Rd9cNCg)7Hk*}#_z&o+V~ zxSuHs3y4{L)y^$+mKZWun*%23IBL>yB|N5H!KDiX{Hn>lu);Sxww=cPE!tgni!WS7 zufVpRHb%=#|2xfcMWjxpZJL=rQI4~kq-RUU7aKF789)Sp+;C0E4~G|yKc4p=0*hJU ziAtS(m&g%6GFqC*e+V=eKjobsF?x8KfPC|Q`!OGSf*a@q?}geJGCbhftF$FxI4lw* z2!tcOS=VsRj7cusD!sL? zSHPEJYvLghyB9wu-9NyhyB+@fG4|YN7oeBp9nl}8e1qsdavB+S{DU`Ke%$&% z;MK}3RL1wCOW?SBu5l{SFX!pe#`3}N(yKXEeFrhyJ9YDo;YWGDXsCOx zkAL9X3Jp_@K{r^usxydbo(FBy#;q%h9!BLn_7?nlz;)XwdPtq{X>n?p_~U=U&>n&| z9@vBu4x8VqO8vAxp)88T$o2Mz{Chrhv`CKIkH}81@X|ExRP|ThCvjg_L&plfA=Z0a z7Ab2iP>yAU@{bgix&YK_)bP|cZA@uzjz9FAL+nC>5QqSvQChN8XfCnxUR+d7@vlbp zAY{EAuM6#nv=EtL~sRDbzm+H3NR9!V^p~IsR>hAy( z_m&CtIA|jQZ1`$mZ5RQXz%S&#R>N0z27P6>2pWS@2xnYygi#5K0Uv8X!Fb?V{zGfz z?AXM|nfa4qllr}Tl6!m;K}EpjAcn&cOw+74tK)X2eRfN zH@R?tuEPOcSnROpAKqH1DST{CgHW7T-dO=`i%8vvdR9ULzDG#AY} z4)?@^TyzhmMvBds=R6puK(7Jn(>l~z`j@%POEA!8O$N2jBf1^37AMrSb`OSs1!^~- zn*s>uG9(r_ngg}|+0>quUII(Ag{^|FKLXz)3zp>=h3o_*ker|!&7Q_r+--y^5FSAT z!*xN~TWm9&xD;@Y61Kh?6>C#4uCj*uvYOj9nj}Krf2lbs4JaW^J8);A+p=_ci z>5q>MOKVWqZV5Q7`w3s=@BIhQ)+TD8HyEHZoyJ8YSg#Uhzf*_9fM*f_FjTJHUW*(8 zfO%jmJZa{$Q2~#_#DeH?C{Sn;-4z2IOIN1l3GWlww9SXRNz!1;Rlo~MtEbYmi5y%! z{Uk>Mw-+<$mK#*#or~=%*^JGVh67n}DtU(BHWZ!iSpzF&kT3^U=eR{SdtaaO!a~1f zH+`cly4@TPN}pT6dMYZX)~TJsnPY=I8y~BKY;-}>_y4M0%&6^*E$bJ8hCn%Bd$ELN zv%$4B1V%%ki*aH@B_vY_d|^MZM`~6YNWeq{jEDx-MyQPFWXau-z4{z)NzF0N@zXp} z?@mh>`|VB*4rqpG{#ssqCkNMkZr}KkBGhqKRvHgVmHq+Je9H!D;bi-3Bf5(-*B#n~ z`eHl@phDU(lKgXAA2>c1{v(^4){C*|J#D%#O-^ssneAQ2^etMuJck(h>UGlyB%5{_ zeMuM4>v4oq>y<*XnHNQg_kew+p*nh50$0wkLiC@M84tMSl1@PcJj2!SsTQi^H! zrbkXA^@vO+=uE!0(ImJh)iTSw7)U&t_@f{^>dNigfZ>3nf@uqK&`tv28?h7Na_133q1MH zz zd)>PRgk?kdgpUVU5halizezTCqgDN|EuV#5&D8>Y)N;vpZfJnJwcBL^S|1X zaof=VlN&&@tk4X60ldiFtNgP9`0kuKfF_jy6tuAVZo|*U*VQ=$_C@BTncYy@cJ?!( z{BA=LV>ob&opyI058I3%&n*B_8B_VXTys{OVP*}K7Eb8Uvi-PO82nts_|)A8z&;#g z-|i#AZwVLT71@V2)l?SLtx;E}@ZLPh{fBTwSK?2D8E0!m0D1_*1SC) ztWG|#lP#~s@Z&g8Bo&cb;XmB))fVs`s~@1o=0}m!ym;kEW~0kL_^TTp`bpN8YIh%y z#q$yEV`tpT%Cmk^OyCJE{6SLJS?o2e+&HITs_*C`L(r(Eh}J~Ft4B|A_~Wjk4qSw4 z6y;iz6L_I$zOktn`;Y+$0#>13XnrE;Y<|GeS=HxH^3*9!d_pj|qdf+~Zkgt0D&7pOKu}-B5le+|bT>k= zjjW>V=0Ak6D?k&Z6U)-&VEv8SuIF#l9(N1EP`VJdd4o9~?%GA_9(@)T z4a?fiZK7U)Iyn`3+U)Cs_k_h%etfJ)V=q8O{$8h-O}XecsnYLlQS}=m{cvWQGBNt6 zKDG{eZS@yQ%(d|y%5$uWNB!1I(mjU3q+U)R@*<1k_%aMvNrgK==TB0uCqayEAdL@E z#!=6p)@FotDo6b(98}`@3>9T|XR@MEbtv5UTqd?Ew5+z<<$P=uqu=Nw$Ba@LFQnhn zyu~SgVq{$NXM1h?HSJ=t?N{#6Omqo$yhiD_e0&u~=sB9#feTefG5i;_>N5oGkykNj z;@_g?fAR61w9-yBKkm`j-wfy>uYw9>PlNt+y9|llO%vu-drpnZ-%u2T_c&Pk9IP$; z>WaOQjewD!0)E;!l&bRvN?w@u30yQbvpWZGBwQwKJj43>fue^L z@L_=o*K8T%4|h8c%iL(Sw~D_zy6SX8^F$fHL3`eP2#&eW+7%@@@n>&n&z@JtS8(Xz zR!12f8R41sl)IVHvAEKPo+B*;%gLPS96q#LWDn~l@hd7U#LxPtvQi`D+-`RuKi zC%QA~FJ*ynE`dqjVI#@~x8Yg9US*T@eAW6M!%ngMBwn4Nq>rOLeL=bEFUG86H(Tm} z%hk(sWW;ejf0|BF0_HZ)7KAv^NqzyQ5Puf9Bs>wpPd?i3Yj=G#iA)LMP9sy^bM`Dt zqPER#i=+cXnbQZ>B=nToayNf-IDkUT|1w^tR6glw&sDoIF~!;2C#8*YQbi$VOL^6` zBpmMx??iVNrOT&O;!Y z^tk`!zF^Z@$3+QKWa*m|r^)@n8wTp`nd-L_!CGy9q0`Jj)=EE}X~HqWbC`|Lt%Rj{ zgB$FB#5cidnH`me7A=4S>U~dBKSwe5D6>Fo7(g-lVS0;VG4%bQQSZdGM!4#1N#|!( z&xpwx(_%zt?0}d8Ymz*+yP>o>HbP1cxs4pFkoZ_t?auN3Oz6KM8a0vSWqGhlsP6Lb zzSkR$9X%kWI{|wBSR{%=GD1I5=%aXKLBtQ%l%CC3-1b&$9zKDRw8psSe2+`U2z$!t1Xxj{t`(GaNs-G;i z>VmA8zqJHUx3UuI+rHT+867Dhl^ag0Z96xE$dId8_{Rf*JfRqAjeCRWH9FyeKQ`=f z@Ir6Pppp85I4Tn;1H-AAtl;lvl|pXCCYd|3`H8ty|3H?ovg`FV&y&M%oD{k>fN+hd z`|&;;KCXGku-|gs6;%ymA<`Zl6{V-SHFEs6r=%nI)byYLQ`XNQn-2(69LhEs3lPA5 zizU83zY$X?d1p+!^yh~@@V9o!HBQw~gBh=+;Q@Z8)VM|28SP?*UtuqtOJGLAc# zvw{aKGXbHylI^EcTVr%X+ZX$Vzj9tq~fA$-*ueL9aVaPrx!qovXItl$kP?g+@hh77`8^@S~i^cq3dtk~&01oIQ# z?o1$cwk(9t`@h%&F=w+4D3Nrg@MGKO!a9*292!k$6bh4AHC3I~pRY03$$ zb9K{HaL$@L`~^SIOjhE(dPdU9 z4#%uJWP3!V3Zh=(frcVTv)OYDE>J#Rt37m>%^gufo*1?*g5jRPMfhS`H#9pmU*|w9 z=n?xoRpd0_5Q4mgf1<~4OV&Wsm6VSc)?|ux!gf`$OP_MFG)-Q#xQc+tFuDcyq99zdz=5mo5&C=7oG*ZZM23`bWYR4D<&&zET6nHnwVDT_f8Q z>Bi@eMjC2e#!sXzw;IZOZ0e?Ex9jZ1q;{Z03R2z0X zpkjl zW0vI}glW7=U}4>;*U6uTy=XxE)hkYyNnpe*&T@nh4{es!P2nVs9d==0C_j(>fHzSU zYgNIS0AF+RmGaluy*~~K7njjdG}=DX8k1YG5j%cXB-^gN#s3dMUoWM-I_;a6rM2rB z`Eral>fg}~DX()l^78IXRXY7e$wGHiOab#3!_wbi;-#j`j6Ee=-D}wW)-Tku`nI@< z{2f^&!X6u>p^K6TA+EAhjBlueoh`TnA2`VQjdI_x+bC&2_LB88Xn zMa~NG?2+LSd>u#2ejpnEapB%=^+uobeHafvRkW?=SihZ)QeE`@Oa6`WpryvqIhvsfPQpcrmT{f-2}+ST5KC8dyQvl*}KtWK=nf9N9wd zH$_#hPm=qt9(mt!$tKqo#v<_>7NCO{mt1jV3<0?X$pw~lWM}_bp7x=e?lIL`Wi;9R zb7l{${3o;VUrS_Ky2O=HpBP`q37II${ek6$-Vc#30ON+va=Tk>gt6SLBEBI?%*-(~-6Xv0DwaZ*-uncOFE62wnW&FR?Pe>(yC)yp^$- zc269oiEiLG$tykf8#J3WyS971iB)PTd+Dr_&YXvrcuAn;e*LK|>-dd+gt6epSLw>t zvjl`1!4$0}y4j2DwTB0Bk39@^O4gHoPMP3PycMl+VIQ5yzIa20azmNJry#z=udF16 zLGQ)o$oD_y2x3v3zsL9aT2l-sL-2aYfZQ`YqYmEigXP0bT zpV|6Ib{27i9&yh>7kSBjp(kN)!y<`CkS1vXd8$6{9WBEVky*%5<7|jxIU5>45D3bO zCZAxIsPWW08%T~{w*i8QzUWr^Fv;WP2*#nbBAa%R9Kz7TX4)iw=k|j zI2B-YZKJ>JtW8!l6{MNQj;?kfic@|*T`;EH00?43MADbr5Sk5Gh}6(E#1m9}%D-7j z#NEA%(cN-GzIGo83@BHAl`6-DhseQG*D#Fq-2Xuh^;804l=_#>% z%eG%K!rrXSPwryLOZDd*$Ba*1HDo}ba*Z|v=cQbZ)Ic%?A*OV)G5!*xV2!6#ci{6{ z(|}$SX>zpiX4Bt**@$msKR9|fbw9&#^g*u-J^lCP7mH)$qWctuqG!9s=j87R`!(vm zl+QS43x3<_=qsS*QR;pPoDdeNiDnkGvkvrw>F4$x*6Q zs3>Yu?DVTZ2=lM5ZwNp?QlE^?idxetKI=F#}+4KS2Y`=qbz%~;Ortm`e1v|oP$#xW*Y*MX*OyP=qgP@7GH z0Zmdn(CyY0&?jaNfLTB06X8Ca0JT!#KZIxl0u9B4y!mPZV~Yv#VoOj4E1h zcpNR>O`MQ&zPwqJc+)ZspJ3eNQ~g*kQ3eE0l*uJ$c7R8geWyh^Y`%SsZhUGpmY%{r zN`I`44pWK%Vwvi02t$e2S}wq!V$!&4cRc;&!hNF|Q1*}kB%JKm{wY{6C*^k@e8WHvDswdSSfbwyKe>k zWpSSE(^!5Zr=QiwUp>X`MZvK3GmX168#NC*Z-YMn1WX_OzW)%siKiD4iz!4#!zZmB z{OcHsQ7S(2%Antr+?Rt^UM&3t{t>IWt=cU-Yg;H~dvdkeOlH9)u-I?^A&88Lgn-c! ztpsR-Pq=gTrFvSLWH^I|cvk{gZQM+GtdJkj3XYNb>F6z&6y2Lu#c z{;dc&_azaHfLo#rCQnwIE-|;fse!bN(}~*e*kZnRo!X{v9>Cp47-&s_UFo5v2NzAQ z0QY)Q-WAT*(LwpJ6d4L0-Oa+`KHoF9ZC~kH0 zPr;kY?Jk{$N}QgC0cOryC8Cu5;!>5RP0?at3WT}T4htF%5JeKx#T-xFM!drbdY=B6 zffvAy_xf*dv&5L`S_0xm0j7DoReJtnx z#Rs(B8417&=^C&~0W1I&@&mJ?E)Wx!Xd%*83aovlEEs%uv5K%hdaYw93yuta74l>YwI$*)Y147xF`47&b2NW*PB|tVK zi&YFRcz8xP6gj(I0X^7wtWQIq4ME$~Q0qVka1ksYU0<*lfTbFsWuV4HxF3LaTvMF5 zB3*pafG`h1fj*rLFQkf;K$%^NP9(|YL>6II+G_HZ6q)D~Yyot3 z0Q!@9daqvpA42S;0{piO92`?U--_+cKv_kAcz6wNqtFV_8X5Ft7fy>`4{{SMh~0?- z{gHWDyx1Wvv7XBF_M?zF2mr>_@7kN_+Zw*rYWC`GWNo4*51zDmBW)OrRJe~Q<@SY_ z|6p2PopFFJ{qHkW9Avh8W>zAH%~`JELZh~RMJ8E^_$d})v10m-&6fSa^(nhvq<)4c z(ZoQdIbLIf`R!Jds)c=aA+c%7k4diu@1drLT{l=k#<%L`Y!=_b-k5@Us7(2^NS5zf zrL!EMuBv{r{?6`I-fzb%>~Ai5G#1mc306B1Md^|;-0EL5cMt>OYDEA4=aHA1Ud1l)V2naV7t*>QN>|)0fqny(Z1jgB>&$HcovT{EkFR@xi zH_25hI-~SU=K-;$f)j8i(~qJ_FNdr>7P@~5WRb=^if5@3!mE31GAh{jt@a&c5#OAL-0&YSm(Cx zGAnD9Llx@U_*+lE%TLJYkKs{EC4oE&FmZ>ss*@f1g>n?h=p&(sc-bY~Jr_a)Z|pXB z&G@Fd!!*&!hWwi%igKDfBXv4XOHXXVVZF&Pz0PI5pMDhsDV%?1CrK94sY*$}8R|}9 zA6x>(s;4cn8RQ822dj-woVQMjJsqTT3X1xsT+(Q;q7t*kD_4c|J+NCyQ=3|Nneqlb zpgsy*unmV3MIB+Lk10GoPdNiAU$(X8XC-}Hojhs3NK_;bF&bhG&To6VpQ(b$oN#h= z<2DSu?4}S#o&En5zY{ztvz`9%1c=M`A`a31@y|Cq0hS zAO9hIFV1sf=8!nVpm>CWUrjkX4H99cOcIXsM%xv)b||0)9WnW6w%+>B;A2=aH6}jV zes`eTK|d_=)k5G&BpFgu`Lr202;G=%N+g zt@>tBUCnvXy1VTc^fl0SQpFJ1L=`?X-=Vu6TWA8 zb1oWRMEbq+NF-{SGPn_-{(L8s z@+o#h`Ka+UEDPQaec9xN2j$n0B1FH;O5EoM2#sNOP-p~I%NUX4nVP$s!5HserbH$6 z!d0%fqKggvisyQ%Gcx((H=^!`_MFnw$KQWn?gajgI8qJxPo%Y#$;9#XWi;o|r+NEA z{5(nAw7$dyCXut=?lscmwZl%81`=uz)A{HTLMoMHmivK@G^3R#Pky4b{hQ((b9AEG zz@z8w)8UutD^QnmtV%=JsX}QL%hE0!8bOS`t)Wr2m(3(Ov8v6&+J{dcHnzqg`X(eo z`ags!p_2zkArBmD#B_EfSu?UEJPD2YQ1#bK5#)KU+Vty5@mVDc>R1ZjT43)*e~s6S z@tG}#cgZsJrGo3MlZpP4e5-Gcj-Ydv%ssd-YMy6i9theR+rp>Y#vgd+u~el|9{=f8 zqc9_ZTclD`lmLNAJpI`F+=ZJ}eF@R*Gz{SfgxaKcNA#>|@JKn*>ZReam2 zv~d1&X?t*Oq}47*Bj(v4pO#^0442|H*NH&w!iB?(!KBd9!OouSW_`hFllFYiOTN*% zfuW(E3Jr%6*(hBaRcdPwGsci`s7GHG(3UxE@B6mA*SdVYa7NtG&2;I+CQ&HrD3^;&gy?-$Xo=}#p8ea_cE{9>4jdjO5QW4-Xu`$@$!uCC~!#+2kA{p3zc zIcb!1bVxO9VfU}-Zg@7d-RBH9D@`ZHn}SW*3rR0-CW#3Q@Yox#i<@U{m3T5|$Av5L z?2kH)&kF4J@pmvSB6gMhSu7^D`}`-J=pM3;WP4gk2HZ|{i}H8PM!7HEX|~>=RxXpi zT^pL+lyZ%5Y!<4A=KhxReMvuqqT1MX652cR{2DBr&HFkh3+DGfXR1WXk}%O|PUo&~ zp}s)XWvodJ=@#aaP0woBM^nq{GIe^4LAPnOwnEBz$SN`BzC%xP2yKqpYP`C@QtgO3 zMdM1$xw415SrVAMU+4+Gcxa`&zz^Wc_9LU5N-|oD8@|B*<}A0t*V_w?R;p9cBJh%% z9_hT_i+hkXz1%o{yt&DQ?njZ6I<^jwV=Hx+d_OyFl8 zi_#y{(WXWSEgU!+ab?R87v2)MIVsvQSupEuakaAB^66klMOAsv4Ubo0ylz(jD2~vlu9`mps@5 z)F1nBY_d1(kWC+mIu7fKSL$up^(qVijb9_|XA7vJt}(_wnDfU)IG|nk>{;ypK-mAg zmvqvT^6~WC0h=%BCJvoa(Mjx`GkrNuNgXG?pL<6zVgx!_-N?vA48!zyE)vY`4ceU* zNUPz>5FhZ8E>@!!KTEZ49nj20RR?M0qazj;G);e4E)>}m52R{7BH)|)4A(qIJ(Vw> z+1jmhZ=ety^(OzdzlJ;}7cS_@#ATjWf6@>O!o$#A@!CJ|-zIv1FY zgo*$i7R|m5BkHTbDEq3uYZL9{#Sz5Yqvt;C7+dt21>m{p7=(tHFB$Ea-u!g$@ji@`PGvI6%b=tb3>mwea7kFVKt}Ia`n#Kd(Sc!K{iT@!) zlu<7r2}*dqcNySnR2_6g1}!52$PX22wL{Ma83(5auEY zP|o;bcT;SX(O1Mo@Idae-Ww?s*W!Kk#>AR-S!9S|AR9?0Pr8ehmNZ; z;JuAFd>TmM48XU^xL)K>r!F^6-|FFqUK!-cB5 zuSr$lwAJb}A5$JO-zUaaHRb>Vao4o_p9%q|&ju%S2b-wF7aOmrD0Npr0KY$-SpmpWE z(J$c`9`qKp-3Wjtir?$4$}Q%ungP5fN>1Uyc51mF4h6q{hsvV%*AXx`u_MzkAoV<3 z^zf5%BfgND{QaIb(J2HdlBvaZ!52wiE#;S?ECc{=jMM-UU*I-?bE9>Hgwy`VNGi@i zx+j!@)8=df5AgQ}NZtXa2^wz#^6D0#pNgt5U^c(hs~zaGOJR}#up&6GSldF!N!gP@ zFmyq+@9>2&eC=u&+Bf=Q@JX`0syAy#KxsL(oTQFM(&U)Jz*{w7p{R1dbR+gT#Ms}7 z5|*80qwIasQgJUSIvUOKuD58=GD|k5nYa7#Omt*^sECB}ly!J%_2i$`dRs1ri|rwC zW>5E|9<9DU2ZHO5>FmT-GhttVmj%mmy`EhFYTux0FIbP+RB&=7=-t>@LSLy=^D&G(#&ca zQcL-SG=5U*R4L0vA_XcP>cBpY$p>?2hX^Dgi{)xa)>&IOHqPJ{j#SpXHJtvo>!*CV z3hnsGk~P~!jCokFz*F_+vH!}goZ`!}mJ>k)4P!J}y#orqW`yAR+<{K^*QXja5F*R- zFMZASc3TCzz@Wns$~ZzH5sq#Zw5s`jGFzkrU4i$nm5m*gI1DatmC;(y$Y7?^13yk) z!kUVVDu4Qp%)GLQxQP!L-C)8}dWrzK>}Hf5#Sq`inkxkiha}M2=LO`-lsL&5grskE zmD|2sO2^h_!U=wLm~iF9DJ$(BrKM0qVSw|#&+}VTb6Z=sf|t?7iWF9fs%$a3CyxBD zegMY*TB?7N?)#|y+N(t%=<5-K$H3_@lH|t(Jo4?0(-d|+Yqd#7duRItahJ##T&$lr za{+BzU_EpDI2@65BynYeUKN6waP@iXg-b!8i{@twbMU^u~!Flb8q!-es`w4TW&tHwRbSJ^+}1MGI|c|1z+;8pUY=%hDi&ASpoVg zZ3<}~84O=vx@}Ckm2bO5Bs}Tx#n5qnuB`!SOxMBT8c4~t=V7a zX6><)<`=B+-|zL->R0SB5U1YoD>EXICq7sY(xBiJnAhle5ewooe>;Ub(-AjGd&?bQ zLc+D6fgIIzW05a}UbFtYoYhTgkZRAJwcgF8dy<;kN&%UlAtMD9lt*G@kitT{^ zG^t?o!0UPR{q+9!?VsjV3Y6pern~Uc^CJh}7qcoP}bH<)%dwXP6BGWoVFIo%H)a!Cq_4QnSS1hB? z)(D_JTblR$v5Kv--3<;bdkg}%^)e&|EkA6!aw2&Qjpn5r>%vBCJZ9vaxDy%v?n(J| zp{v_|F-BaQe0Va?1SFv8S*VGh_c)N7ZUF@3EvUqLO~HCC3ak8NmRrQG?k)Mq@F!hM z?sKN38X+AQ%i>cfBkN{5t@%r8u;nX7Dw;zJ;TyFad?9~|wgtL*Zv7g@Bl?8Bbv%Od zbHx4f+A7b^PvyP#e(vdwp!JqS8Rq(D-OwQHSK#~AuXxuGjn=w_sCw%-L!)WrR2KX> zRQzVpRe@B{KBaz`@f*XHbx&K#WI_FShljs*`fcbQnoL1VL=vZ z2jz#WeStmIK8Dx+9hJs%*i}W-h?#OY(4X3;o6fk4gKp{BIl}i_31~P?UBg+QRcOlN za*R`tilT;=YFzEHwC7n^ne$?{&gIQpISKGllvW2VCaYzLV$q5y!%O~NUJ zl=s9PL)r#yJPZ1Q2fU9WSOyqA=h%GbrB}ungEmErhPXv$y_py9h!M;nV^Mm~fZfVw zgN#k-l>V9s&^T%i+E#_QXO!t}uKZk609}v}6UNuRGFgC3x>fPq6ym(oPq4(DY4i^K zD5(+D&!+k5+8z*-K1GTT6#)ytMi&>mAw$@R9dQ@1LV_xgEDvfRT_KHcwMD;ihwotF@rCIrtD|MvYQEST#5#ir`R-rv8{csV2 zTf0MrV}+c1vOw>z%0mtnND-N?mLTZuNlVJ?ns^N|bBsEt{m}5YmCp#YZ4|tc%Xfk! z7vCELzb#bKGtt@kd+ZP_$6ot;LFaaVYNE zV#VFv3D8m~?(S}Z;_mM5?(Qzh|J%Md^S)sQ*i4eyZ1%T%?z!ijyJ~Q{;HV(wE{jF! zox$zZ&{}ZfuH)ZcvfR%k=~ps|xJM}BDxZ+>?R!gNNC*Hf-d8q%ICxRHV*k~Y#T?*e zBdWLAxv)L6^V??KL-{wufHAARztaiZ{g)G#ahytU@dqv`OTd~lL4>S@Ja)u15eJ)Z zl}0tkYR~0!SK}6SVEHvBfi)H_YFu3>)|D%|?)VZH7*9mAs#Ek%yvq#sICdr+cEjpr z#JWZ%&A+xtp98&S@B@wr1LFm^(u_7B`PqF*+w!IGz`hpBY_DG`j9*^whO3mrpvxKK39pH0w6Y~{0{cRKN2m4+y+^$AyI9! zP*3a!t?H>vI3N&>CTzcbJGm+&ws`vq;9Tb_RKOY3QxpysXOw|L0E{wwG274150`~# z9kEIZfTMcLSSv{&{$wdHE-4LLS!*_4Yx?5uFs84Oop3ZT4wkS&01GL_p`y}_?8mO^ zE7qI$z;%Tc(EzWZ8~5C_#vi_LPzZhyv+&BxedQUL_}i;Ua;;CRg%jmNY3H`Va^8v7 z!y+?c44p&Fn%7HMrK{A`Ib18@SI@T)#r8X`fvlKuUHP~&xBFt7l)m}h} z>jy*bMrqq+E-MNSY~R;V+4U=WV=xN@N6Fd2>(17PpRU6lOpbII-io-3xV4c7LqHfXp@s3twJwSCuA=p$PeEed)j_oI}wj#iNe)@ZIHq1e<9T_TU1XCA~3ZGNyigW>1LJs5XWnx-TuwOE69e z2?M0Vjzs}}EcCeQe*vh%rw;ga>0t_iah*)UN^VbnV1s)%FgkJ0<_(#F4S<7l!(cj9 z!&4L#c1+nzsnR{WXet$De<)i29cM{L%58jQ(Kmmbz#)~IAUwkm7Z=jDh|Jg4`f52T zjfo;6p^VJEzwz;B@98!~ZdS^u@l|e4Z{Qs}4L*fOy}eaZgN||^yh%QzG!S)e+8p+2 zgz0w=sXMLuU$RcF)JnSkq(z!OC`mK#tQWG%S6$VBpZm1c_uPR_Zq9C}kusC?9pQZp zX2j1SuY_o(9r?@HDPK*86^a zKX%OfbvB{VN>Q~A*9<6=pDru~MatG}I3>N@jH}nMZNH`L9p#hFEy}uWr&PI-iRxoK z5d0?6hu=!2IrGzqtS8Uk(#KMF`OZs2CWZ?`7d}^+Q&qGs?PLsS zB|OA#nnoJVwot1mqAQ9T>(e#{F5H`BQ)qn%OG3AAT*4Ylo_Lk#>@O;_Yzor$w__3+ z#p^_Wbx}sW9pu+uX-58u=y!8o#o0zq(Ewl|Wuxd9;{Y0R;aUG-?y;oBSZT5r{mQ2S z)5vs7BQ4}e*KNG+B$B40Aj|Dnf&SM)FC-QE%QUdtmaafKyS)Pop5!lg{+>f)KF2xh z4y1;8^N!4m6nQ6FoFWr+8qZ|QArVjVoq*54?ZBoG@2By)JlBTd4b87q+}z%vj=XHA z9UC8k)oRx*-JZXM^TsYf-cT@g4a*x0-3;@Y8uYzNv%3#2qju*XjrS^H^&VTjf&`Y0 zBOAW>*I0Euw8$fb&oy4-Fs|+dS10)8PB1Yna*0VC5hzq12RSIv3Au-i^7obKZr;3|Bp; z{gf}!skdtFe&c^{eEPG!cts_q&y z-KSFD>b+h;vetA(6f7CZOgM)32-K$JXQ*k=`8m(X77;KC#`5wzlwyk273{8Cnj6s1 z9f3`R4K+MslVYD*Q0)Barfcy2L?^>Og0+(6n-%C@b*Pgz{Al@9^0!Cq#>zNpG~O5o zt-{w}Qv@n9u|YYR9okSuiuq-LE-t`nPz+QNJSkUj-(S6^?Ay zmv{#R!tXlLCbmuMZ2rW{M4^34(zN)1L`Sq6tG;ohGrkxGzF1YJQacd3DVofpPVud_ zg~F)BkUF@oUCbda(7rKfJ&r>FS2w zD?8GX_KNvD?A27iQsIz3m-nS~1Myq;(u`$eo-jBz!a^SM8B3uTiIF!B4Jz+A zSoLWIQ zQ9&+>!618FeT9X{_3K0g0_{`B3;X9ZnwmTO=^$KS96zAA(P7fu^xaNb?q&i-;E!rQgJz@2<=h5 zalUNLV$4^i?xmNsjqeC`7*5=95Rf+=;vKlZRCaK^hKCn7h3#2A6lo(Ev}tn0oX=h& z6wV&9mMYk>(l!0|v&Yj-C1BC$p2MMspMxtUB%?<`^nBAf-$>jVmG`kzyAY_4I)0`{ zPKoTn(TD>rgHI_w7U|oUA6j26mx?XYqSJd@f`JXxJg-le-D&wGWM$9XKv171 z9VK4jNQfR0w*2XyD%0OuW|BLO>aW#!bC!7udJ1&?)0S}h(XXSkG5mePoR6KedRv&y z&#mgRsSU0rYZ|%bI7>&1Xms&{&d(yJJo=orFK=tAq%F7$HToaNFzhn~^NtcI)LZJM zY}YX4o3s$(kIgq0e7?$;RI(sY?Y4FiP0}z=uuo~GkVs}7pBrTnu@DI4%g22;nL{cQ z=YdC6>1lrbQ$cx+Q55}P7178h*!_0cg(^CzGYN=NeoBN6KZG8H*yq?1@Uq_W4d`Av zw#}m+8nsK(8`{u~&H!4YSFu;IW5V`$kNuWl{m%{49-kbQ5brVpwgB(l2Nx5^d^a;l z*5L35wBnMmseS0SaD)Oet znqC5$EHHS&{tsqp7Vex`_4cy!uv>X%3#2N?;s81#2VLH%!=00Avey3qO?{ELOA@&* zc(vQ~W7)lm6M-@YupT6p__a7KDz?4}0`R-^51>+M8VYk?2oTi8@F%@qOOd6=Mwa=<$T~PPT+p1ou6i#+ zLqe|G`#|*!{@#b|>Z8Iy+w3 zZ~DRm8*}`lUaG<46e|y)&G_rzVsHHvtN8HXE(#4Jxh-WkBOA{t?mi|O-Jy@6+1pNQ zn*4%7g|cOpB@687U1A?x9s{~;UB{KUZQy}Sr5J#mcFouP3k+*o1p#uvKwET8KIJzB zpijCM{W1$U3qN-rUSPdGF=l)T20CSnFM1Ttg8o-NGoqR^^=RqQI5rKn@+~A5zr>p; zSoVfXK3%&y*+|PKE%nnphm-utcS+RS%b^YY`a+&9T-h*U0hgG zPhg0{hUV6sad)&=+;o7XKX%H4`nQm9SC=y3j8F07TBe)(yh#)JpL4H+ddhxyN}S93 zBQ6`%OE?g`bhhsExIE4C`64yE^fjs~V=ZrZv52?97GQ4eISAo?5XBkZZ6yf~QsjG% z9VR_b&2wcji3W|v0@Jz$EsFFkkNuq3A_}l&9kKNnKE=Sjf6s64t*O4%_{BfcmSqw8 zaiMlKzVbzabr#1}5jW!p8DkGbv)uYz=z^?925Z`6zY`d^uT z0(N1@=p63Ac37Ojhoirv)^XPETkDK$GJ43lDM2a`YR&1S*p$*R(k9}}~Xym-zX z;R2R7+~?6cVQn~%9lt|b)^~od5XNxI@L zV%>hnD_KU} zACegXE_7=M0kFbF0RpW8t3FF6p8C#1mFhIkzln(8YPmac#PWWutZ*mpuPw@){jni* z2_CS)>RmDW59TMBcs=*k)PvytjymNn2k?Q&#CNGHpTc`1VmX4BXsBgzQ%8{E>Y5qMutu*as|Mq_&tA6wLi%QSd# z-PK#dy`$MANgnncK0V6N(38sy3-|9jbr6Xf>pE!gYb+Fk0T zXB5N174@J4dc156d=2gAJ|s0qCc1A8bM;U6WRhI1Lo}uh4Zj&o`l1^QFIJ@-5k2r_ z8zvC%BBhVDs&xk3zjC`wU?!JM?!-I0KGtd^o%;5C{C+k4S86kJJgvA`S02QqeX%b5^;jCdlBy>8@hABpbl=pYm_A{-EnTegP!DWiE#`=A~b=mvr@eNO{``wPP zfoWr`qSXNyDtu|_(bAF&UlCBr%1N@t*Q9BS_b3&4Xb!YdkL_cu1-%rHMt_jyU?AIzr zosu{;w9~4ES;cv|J;a0co{|=v@?}v%G^4aU?WU+gv2O_`ZmcM;A_mAl7SHI8e;JE* zR`7lP7{v>!v6(xzDxw+DmF=vp=84X0OA66!HXW~(->0IW`hJ6i;pPul-%<-0P7J!a zobyM}oj)zEwrv@=RLhGJrQxiyMB9G`)73R}FC#2tcCw$w*~kGowt#Qikf^W#m}ILe zR}`0kY5Cz3?u%jZtT-vdP71@kj70yJGzRMcAjb@l-dO@srF#G3$TWc7%7@KYcL1@U zKvaNe$z#BeX#~_bQ;0A0c_~PW%(!Z>R>8RUFtbNFC~tMp9jK-pA+?>-B|DIq@PwQT zCe8<-3Ki4ls|7HoeJZFwx<=Qd@t=0hsJhO+;V;FjIl~WzrQwFX${im6GqRM^`*Eg0 zVbfJUBExTwhUf4lkK+W!e>cxoDW30s0xxrT&<{Md0N&HTUvAjZ!!A`y4{yw?Co2E? zzQDBk&~`dv2nE=7N<5u=nZl=r4$XoNdscxLDxU$7#J+|=-xX1@;q(A<209g^XceS$ zJ6+sJwp)C=3n91n-+s-?^uK3g0-0Drz#4w@2?QBWp;<(?1>JXI3I$9k4Rn8aOCs%FB?=-hJ9r-c+E(ig^uP>K($ylubZ#0 zQ0g?U<-lFdj<;Qrag6Vr`hfPY_^q0`FaPpC7?0vpv8+QIiW+umvMsOhQIHGpm5O5f z{XT^TEoMLV8N5kSRRg&jy7Bi>tVcmbaR;8giFI)bQlv)72ew-!!zc7{Cz>3_6Ix3I z_NZ^qr%^ttj#NC2n|C;%*ISAwHAoU5#V>sBspr(INtIqUry|pMk350NPkKjm@YB_~ z_iXl>QsJER=bJ=!t7KQm&>ZOSMdS?$prJ~AGo_&*O5lirpd&>D+I+8qyN^Y}-)5g$ zAS;MdpF5jV%%zmni#Ts79+ddF^iTxB@=$-fXh^llo2G=Dk&6#jyvqYa-jIN4z~7-G zM@4=4J{Q89B9f(&F;f%rj?{DUA2gw%vdAfgzfEWePq1?Hc9=r%DMc1_07O^>;BF~J z$$V26^O3F~bh{ud`+CzKUo}YO$IO*X?6Z>%tTFaP*#(}$ffNm`O^=(?^M&xhXylN* z#y@cwBJzLqd;iMFAe4?AlK-v)?U;W-Q-1R=_8IyxHi}&>(Kxb>C8yOA>^oKsSyox2 z*g2Nl66;jEBrAqI0F8Fp18b4nkwqYi1z2!e80$^6MEp1?(a4uT^qBr?9C8YOOy3vC z^#nZ}{HH=dzrl20yE|p!yf$Dh5GA0qjoBw(4IclyyxF@-lM3+4I87;RBH;Y(0UbuUNROlS*Jfn_dkTSSXvHqyxO|$gAE1HB zVya`eU!_~efP!m(^Wo90%(}0~S-7yiG(fTA)ubO8Re^{*(Z*1q|L};{9NEGv=h&j( z?fAT*enD!A4%HOGvy7{Hh!AIfN+;Kjhp1cFJI#{$m8rT1i5Cb<1OumpccWZ}`fsby zipJP#82r81M=Z@#McymKHNC+7Kf>Fu1-sn#Nolkd4u)Ek9Vm{OSQ|z$^u)onh}34i z`0$$!8*gPppOVuIwFn+s<-Lvrg2Y|kkaLSknqVnMQZe5HVioK?)RgI9p@R}07>|SNLRd3}H?z^Po|6tg>Si6@ArP8SmKZb%A006ScwO&B zvpbX6bFMuUzl*tZTb5p&>V1bxv`ZBex>gs~Djw z+!hl(>77YZDMoO$xL{>j`P|(Ptu$=w493Q#?OXVBejKlCU&s!-ERYYh|BKuZj+3wt zobe&8fcl8*?4TU&>)LpSQCu;((cq|(t|mHGD(?m}^zS3UM$dKq#lnTxRE)U^Lko|+ zL6}T&>7KX*i<}LPF&|Ejh74Tr5w6}9A>6fTI$8Hp9Di_XZ8{X$UWq@eu`^^jB+`Vr zj*TiVR^JF*_`@WK{~Pn1adEW>JW6H#nlBH)Hwq-c>p<)sh-tBAfL4moUPBP_8?ZKxN%k z_v8_*TL<=CcQ*`x8fSB4-3u&Sz%q!9R@dJEfRw_#Kom>h*PnmjG63ga`YsF`AVzni$`K2cty7zsg69e2 zVg3?^#MT$Wui_GMy-3C>o>yv&^p0QnAX`>6jM(92bo1pIbo{L>Df96XXltDu=b#jv zN;3VEh96)ijLWCvh_ut%JU8J!eNlI4{{8X3Dg4gSW-#z%sJ)*L)v%PH&^lr%ACKCt zq^tBpN!i!rykm9L-zl$>VEJ|SY4-DzhbLqi_3CsYe$N&FcD$@#WK|3Zs z&>PSZF05Hz#36g>Fv1l-^-l*h3wEkeB!1OV%#agCIeIu6JJ<=M=wwWP)zPTPd%~i0 zdG(BLqOlLF*~DX23Mn9ATCtJgN=$lGD!Kze`1MmXxmr&R-N*k zknwZvrLkQ*FM!D}1~w3oRh_g|-G>xEc5Xc8p7SC@-gaGo7+}ppa-oa=p2aw9Z7@b* zndw3QgQQ3x+C|C7!hw^3qw=Pyn}S7%?{cF;RW$6}zCR;8Rq9X+#sn2fSanb$%JNlU zKYGRdKortMv3~q$4M^V&hT=u8uUT=DkJ_ppyVXl{P*$-^XiaZaimW0uIzkUvXE+MR{_bhSwVBcAY z#8g9wmWa@UYyNo~i2YhDuK)MpWXYy)d6a%K!kK?Qx8J*+uykz|wvx>!V%k68a1VS8 zJj{3~=TbowZ%pM&`s~#exSxIRw^+6DSg7iWvUU}Fh~pRnG2nyGZa=YJpwB@qedsc| zMMw1DO|4@a0j^a1r>9>*c70;d$w%FBO5P19sgL)389iJaAT*;lv-6##eYExJd{bnq zhb{}&HB2T5w$-}OIeNa=oucMxnK_Ak_atEf3|AMQ z*tNHZPCB=o7eH^7pFa8W?A@+Wx6zn=fBzBSi_xa#={A5Rw*lY(acOcnK*;{X-9f0g zsuQ$f5!xCJL0F80pO5ttEe^Au?YE6c$tzGe02bYS`PZ5|eMS{V!e~4;uxdJfQjCh? z_Yfe<75Bs#KS5oRg&tUO^tgS@fLld;X4WzXSygu7rzo1dVzCN*AReXl?+gs~5AaGQ zVx_P}R67agX&5Y)qCgJp&q5aKUos3`bFOEzuy^W`L^;U+))^)<$BTdhe9>#SllCe>M0ENW4BJnR;hE-lRKruSc zyH4@STd$iJh=-YP5C7rN2{{Yo`oG9C@gB_-Q+vraRAIB#p>^r*bWpBd5=JvwrQw&H z{?JXLHdKobV>YMI=hX6T{bqOA?Az9rE(u6*J_wO8#}w&hULKw!G7cquIa*AP65We)MGuf%<0Y9L{u9#+dZpY2Lq0g_Suaui{9)`YX}N=p2@lx~+lO zB3B^6YyQtP1gT`L36pnDB&o1V@L1^%dfq$1tqrab;64R1`CJ@0B55@t(NY9Ul%6Qg zs4wO*l7w9-ZE(o&0p4LSmd%Zn*n+0Gx3C++hmRducSPGnW784zF1MHj)i3I8q1Dk0 zPK^#?kAA`lkq&5Z#I*eSA(YM?*>W)IToUf4Vs&t9QJk|}L@M~BB`c!#-XCVU78-&Z zFa9US7E|;%O{yWV@qkufh`DR8O58sIu$X!crlbxN4xM}n(?4Dgv4^%Zvi@DQU*D6? z99v%DOd>RSdMtRw_^aRX)w3tUj*Q>}s$T+Ue0n1AcvrY4B>Bxwc)B*-^LaBn0YtI+ z_BsOzTOtir=U1O?xdKkTcQ-}z6P&dM)Y5p~X`c)0aVq`7PD9Amoq$d2g&tSPfbJb?(F9SvH<_l~UF-cb4 z??|mpsMiK)3mw4x0=lr<0jgJNLWCJF~qpj|5uDDNaX1=+zHJ&m6=d(A z^_toK2V*2-Ze{k{#D!gE$8!Sp66U@fXim9huMB-z*#vFTW^XG&=fk0%fO-qqcvEz) zeae!YKVwngrTe1LXlIAf(`H(FJRm_Kp_7GwE%6jwghb+o64)!@OndtFQHhYPtoGAE z<3k-hRQm^L3%B!4lFxbpupv(X6*SDhqsR37Iv84IS2bbQGH>VF_eZgPAd}E@7qr6> z*6Fi*R5x^<^XHptf;M>W_Ky}Gy-$gd>}i<0p_{=fekOEExB>7MUjuj6b06hP*{5Dg zXk!1G=jmAolV!rV8{T?mb9F7D+QmWRg`iGSjZG;NC5S1b<9b$S(h2vAr}K0yEt{dQqB1WRYfaZ zcU9_u-6#QeBgX(pOZu0w^o_mHGxlaNw^ zI2x`Mb|rJz=g>~CK%h9XgEXu{{i*)#Ll(<9V5n~cJuX#x&-Q!cov-0vmH%$~W~q== zQBGYlY$$WAW(B3cdMFoa!=FG~qwyP7Ef3{yUm6&;EOb8J* za$xoX6{F+`vL8_T*@5^b2t2XXpgEN+8YC0yhcTYM`**ud} zxULsDf02$^NLGQLTiS3cugQd)nbcmFuFaF~k*juQo+5?9EF> zUBEv;izp%)iRp#i4y7x=d4J9R6Nkg_1c%2x!-8u33kD;5nf}hn>#ykSdSOslpx)*< z+`smt3OqCwxXc71EOG)C3+|uC4Fp=3;I(nz;GDYPpE8o;o;~)LH9sFF5M#{Iz}2(Ow+Yiri~wW z!Uh$)JVKUUaD}dMW3I0q`0n>xfK)CC9G{3e#dHb0cvz89C$IpPKvw|UUsLp~lWj8! zdP4%(Ef|Aw7VGGLBbX+~8zIlYBc>8NHca8&7WnN&+!H%Ng6};rH@ySC=;#cG9b9-F z{3bbNplvj)DT%E46%pWXoq-__5XsQx#-|xL2%a)=^dng0G6bN!tiBXGRA;}QsZihJ z$-5UrMnztMHPe$%zzgOS749+DL?1rn*}@W+T7j9)D|MI`kN}umkO9!LEy-`0)82z4 zL85njYOyUH@Pe$vSgC4v+O?t95Y|B|r50Xo3=gNCT_2n0RLsE4FcbW(G|z*g#JGu~ z>((YvqrcgOi%%u_=ibqNY@jWQc1O-x{J=EcO{_BA(5wZiWLuoJ4E359XSA- zR0o?cX@Q|;|00|tayboEBStEv^W*pr2Kp@VmK6Y4zbRHMI?#N z&0HuKEReItEh%KjDh+8(^LQvA6HK3cLx=}HdZ8i9w8rmZJAjG%muZ0t|uD^kHy|pgL{m9SmBQPt8Vg)Gb(xGqv8sD?9Ef(^fFE8=W^DC3n1+qCU zuESa_@k9t9f_6({m@uU}fNJ-g7M)S6oOps)wV{QVDlXBbD?^GYykjH81hwtYqQvN6Tmq-l>8a*wz znGtEyB&ARMTh;Ef{r%^w>xHAOYoP^NsuB4ncox0F?``;)E4guYE(Dex@C3)7SXv#& z*LGUwi&=H*`E4a+29*()ys$&m^i zM4?tLNi2l#Wh;YN64}5X%xw>;uC!7e9*htg+0lGH)hM$lysvQ9rFp7Vx7@&QoN*&^ zgLe^{UyDWY9TtzEyHxCvBqrp~>QCqFiN@VpeBhpcLRoO4WMqJ$^w?k-Z^ z(&eOOHS!SpDQ(*jVS>89`y*4V*Jn{(jxpYtA6T7m$19QZ<9##Zhq4Z&?42Ze>>1_o zrwa3e*pPgloL$YP0BbhdZ$>l{2Y7_YbcJrN#8#n)Bt2~Lr4;piuWoVLS;AYI1CrmG zuhgrP&%P8SYTV+}lLvWPVYIok86*Wn3%Y^nplDM!Hxg=%1`S&N(gOzQ% z)|Mc@hS}Aj>3pwRWWu%Y+3ou0ggIC&Q{Z~Ebq~pU6B^wmU1g$MW^x)rhI)?=-6C>F zU|$k0wkK!0<`Da2^y=|ie&?fa)GaSMh$i8+SNrh3mrAbxAYyFB)o$^0>e1_Tw#wy1FVaGL?2}_%d00l9QZ0K@-2> zKHHlAHb!|pk1(#znY|aH`95VQm5#T+M*KDOib%tRbt&y0Rk1vCRqD)yOYgIz78HBl z&WrmejadOlhzTM#Xfu$Uj_SnSS3?p9^F zK{e;b@L-h^S!tL`&dMMr$*8pZIEtFKD6zoot5d6ceAaO8J3F#St{0178#mp#iEc9` zR;;cV90lt3c3Vi!6(p!8EVL;tSn(qo#;ZjVsk;;b%zDH%jNs0xoFov`w`9cKjFFu5Ws23Cz8|o1fjb0e zSnbYXA_g5T5@}BQMM)xEh%pmODy#Fp%bPf1&s^FcHaEHTnHdP6Hu@g43#v^!eHYVY z_G)c^NB|wdRT38icLEBJ&HE+5S1bDc_OyJH8jHY6YT(AE^|TbR2~on!uK{j zJ~lQk@_v&|MI0*(+Kz%jE_5<}=-KV&ZDBOFGrK1eOi|-7#W>vK_I@HPKxr2bu!JA0 zXEwhW(YJr+z>+_akJuvU9NGi_o|b^}OsBBeGh97wP!SMhX=iQp*Q2F;>WF;gd2i0m zBI!LV6&a(cUPw93I$hMLbYlF8s%myEUiL!=t+G zD3olPUnwt~700@fCrtjvG6SbKJt{q-_nwiUn@Z3=S(}2Y-Z7;t$ zzxialt`CW};mwZ)q;UQv6Se01?i?)Ewrh(}q|{4ct=HEdI`Z^dT?wCmq8GU1 zIbZe>3_Pkf%^oy{Y0cVw4Ab6`S-Uie`TjG=2fp7M_r)!7W}uNL=@w-|MHZ)Fv&dU* z*vN`KX4D4Fs{}`Jx^yl7Ny$5m1zBVZZ11NtaBjb!d0|(yOqWrDy6+M&d{h5@iePM- zmDOisoV!~%Cxi8l%VkyacEtsBh00u2%aI-XW;cI+mTIAmL&us36Bb ziLOB!dzE((qR+5w)#ZssKIgX{K7}6ZsGSmnFGC9E91a??D9+6q!r<-M;3gZLxHpCi ztY%gutRL_PHjprI%|EUZk)e=<76N@;==g&}wb%oQcl_q9y3yaImApA`%d3E#avqS_ z2Cb8%R@Oh(V(f>o!w6p?JPyEszY8kvFr7vccayJd_%vVS#c5MxBu2o2>v)k`-}wsV zPd-!$DAt4O|61J=LUu8K&4TZQSQgJZEvg&C&(hnXS=a>I*LZ~M^rQ*MJ6+5hr&a{t z>&up}4d5}aNGHl~vpEkr+zy=?aAg4MRQ1pZWfV%@*u;9zn;?bTsk!D|AXd`Kqz z069qFckpKIS?4EA#&FjJHqj-}Qimbb2Lq!75et@djyyWBv*kTx>rtwGP*O8wikSPu z;+%e}cJI7q^7at>ws_V@CJkR?Esn;0TOkCn3e$z62eCnLog%)AaCT8QLZSO5JRNyJ z+HVKMC;uHnlVpX6L3DFkBBPrRnLt8_DCzoR6t}uVnf_9@1?d;NI-H?ol17;s7SBN= z<@W0$u)`;?po(_7B9D!k<7;D60;^IlQK_KV7JT^+|LqEs1~yulVR)`;>X-M98_ShZ z%4o-G-CiG7%^c9pK`C$NR>?w zACb_HvsILh^$~5Qq|V6Nr1X4dzIe6^a~s&x_S{CL!{!(h*Hq6-G<-+>oIyRIZB+Ta zC4TjkAU1(7REc3Ue|tG{`4Fa%>Fjn%)&(SHigW_43B`lsV0nVTXDyZBzx?krQy z{?L-hn4zQalfDoi?q4Z|GqK|MfT0M^`OitB}c|F42U~fe&C{ zBdhaPv%@`MfLYJSHB>KU2uPPCkz~fD+M@YApaEruwwYXx+B{X8El zb^=K~T%yNM4asTigf(KyKkB+;S2BvgIHT1XJvpIs_jw#9rB=;_NEHe?46t{F8)X$3KGH0oLtR0$Z8(>T&C*p>r`c9Wsp@B$C=silX2H}5{O0lT=UZuW)4c=x$@!? zh!L3K(#QE!;7cVrx$--?V6Nq5=*QtmG5Cn1xwfoAx zO@I!wp+6PbxFo;iBW0&q1=Q66VTppoutn-6u*+rc(hwE^Ljza2=PaXIu#VEz{sWd4T^%HU$IVb4&`A9+GaJ)ANwW z27t^)*TS$OuxdP&kIcspNYTQMa7r>mWb{7YKXMW%q{h(PNQst~lzpJ$0hEIMNf1Z?3lK(0}1k{G^!32jwSXHIvxGKNI zlcq}}B7sqjY6PE^4GeUwwflafb7eQLH*&B~cwgL?UIX(9E0di1s$p*Z&%@D&lw|Mk zahc0X#5yGEM{f>G&-|K?wJeJeC@c(;5932vA17%agy+yS2_a`|GN!XMC6HY7aRm zI>^FC1em;Rl!m?m?i4!Y??}e_M8w1=;DuwF= zIoZ?ghV`G8Z{Tam{F_SwITATq(8p!BM)&{I74T?}f?R~SVvfCq|iTqsKqIhE-Kg=b2>~3*)M-R>U zi6+&ojH9k~M0h-xMeVkvq+~@{_;=xoaf<>m$JOik=2$1oi=hFG^BVP&s}7x~c|eZ? zO+oVKL+ydBr|{Eq0v+0>;C(UgD#)uE41HRTS)=p4T_`9VhmqQ}g&g!cJPwTge$DRB z2FbnafE)-V-1GJD+`0ph0bJU9M_ z&Y+c2v0`|oEk5FM3uwn9v=tE7lxw+YepbG$0-XZv+!2!oVl>O%U9<9iYv()&`O*9S zv2fWf78;X%$^r6tqgV%2QNYejAsDgLG^cS0_9z2&?$4V0(@VKhSDu6K$`kU&931Td zhhPN^W?(S0yI}i`sN>*R5Bayu9GC6_Rd2y6_H*d1SBe&q!S!i-BjBSJVe)E~@Vnd|02*XLmgBI-EhLxgm-zp|I6kMWKfao*q=7-N z?Z*z;^q1WZ_n85}EMu^F#1zM0pELA9B;SmyLx@GOa;t>U<#;G?4Ac`L+Xu=LgX`s7 zrYeXQaaUgHhQD^$)H$$|F0e>ZwLiANNswY!qoTsI@RDy`IfYfH$-z|7Hp-bT+eg3} zuyX9W`#*T@;zn{WnD*DaCq;l<@KO!v79)6ThH(NX!Xp39veO|VfC}FzHjWop0=c_I zxSJ^2nV_{#0=&vI#p6UdDEK}>ChK+)%~}wE*|xyAOry!#ZUZl@df;QdcDb7rFLLt$ zF-#~IETobxbERg+|G~5&8<8P*SQ7A(e-|;cO$m=}a@>8g_MH}ePm&s7tHa+%)rHyC z_$b_QSLMR^4t1r~PGvNxlU+!|^q~~+6^TD`u%?H9vkP|Ls+!Dd8a|iM8$#PzQN!yA zLVfGn{mg&FXsrX+hvvp2W%rRNWiX>^9SU3rfB$NZP35#!c?m+`8lDvCPq; zj@sWG8Lt~{<8f)+8&ueOJeO&-7mv5$TgQ%x;-h&|7V(@9<0~{|;@%BS?HG1+LP@rS z2UvGf$hQ2)Wo2FnvHMb))D-6VddO`1_q>$Qv`ZTq;Yt2w>LT$&cc)t{qb%!wPPoit zQC!#Tr`vdFN2SP}jpmMZ5YD3qXAL>Ky zy%?s_qBiNYTlsf~fBEyf{P?V_BLS`tW#Rr{S;|M}K1?nswXZ~i+`*)+=)AzWu2`nG zu6MjRVxlGQb~7jSK`_Q8Zd{)ubCJy$+{&oqn11gl;in$g+iizJ?*D%UqN<<~>`p zvnWuCaBx__=RjH7v8?Bbl8(x#@5hWf23iMg%<@ZgW z<$k`_zUi|=EU|64>NS2)+2xu}++?4umJkWGs3YaW{xSGq*k=Z~sFqhSznE0j!?B?1 zfFFhe4L$a?HK6A$jdH49*oMuv$@IcfCts!z!+?~n;J?xS4}-}Efb`0tc~*#F;O4#D zB|qke3yQY2Fqry&JZ+Y3yHNLyhPrv>XhR-&w@4D9 zlLj49PU0u{{Sxnz5sA9HkBZSP;pXv>SDCx$#!2la-_QzKSGG88Z@;qSyH~ty`g+}ZI&=n%5fghUKM0_*fkw%3-b}|aD z+9D}j@9sm{-}G1yfs`#k1k@53s>)&ErRM;pTRXkv#m41iOtcuJG$qrfS8CUS>Z{=0NJ`!0O)1>j9aN8nn#G57lJeoFCf5bf(f=1{6JuSO=C7Om@(e5w@iI|u{FtaP&;pV0t>5h?n7;NG zUYA4S*v~_UHmhg)mZ|uWJbiC_YPx+-JJHNzb<*3-?J)Ka^)tvV$rB3b@7Z(mVNF#p!i# zU$A@V6_C%Uk(7WAYy8Fm4CXg^=|>Ousn&$Zpnff)hk9Z=HhSmyv6QwZ_HFHlUggs- z6ZB3hiax&Afg;}bZ+#;flqN&l%HHaN67FVV^;^8RiH_4? zs+bEVW)eHH*e)V+?4IFv89Ba?-*H#;b+DR~6ym@JKWmsU@*P>bFrptwZUuN9DT_&` z0cTRL-Rb5`023r>kKzfM4i!dkC%7Y1w*Yzk z{xqr`LXX2RKu8+*h&Pr(1DXZ=azFS z1C#w+3%+!K&}BBOsSq=y>9Cj!R*R1%;Vbc7!_r9S#hio5bklLPoM3n-6NQ~XTTpsi z;VUGYVg`()zUDekl04@+4x?pRIcAT4iO_?mJA#b)rLn`0VW!`G!y(bRJW(Yzl&rY< zas2zp3veTSFX$mX&gA&hg&~^#&^p2%Im<;x?JTM9_$NKnYe(ppsvpG*6>0|oOut&! zQk%pP#=d*`sT`s$mfROc+6PAa4vCs?hF&L%xMF(tE6a=G?do>#U8eE${Ef$sZSMRP zWyVaZ@hNQi|FXU<~6@MBt3b0cu82@Ou#?VWw)No0a0C$%cQG2 z16KC<=u3+%mz4@284c;x+`vX6n%&(@`Q5;l*Xzb_FuWpCQUHUM$n`!Q#CH-H0Gm}s zoLc}I1eWFh+_LyjAaGQm4$C~{c1d`_2^xiZk!$w$hnqpDK$?uzXP_H#^OXI3lz$^x zh4cBoz^Ys$%({h*n`2>UJg_mt1E<+hwfelJ;`bqNJiAFr(XCS-&7&L+ks31sp_do=c?uH>9A|eeEDlnwG2247)(KR;j zli&ZopW}F5@M7$|ddGQv&rf}&^sFcYIaEMD72!*B;r2XYU=<|#SY3IoaFCASf`>J) zsHzposEMAds&(KNwXtBq9Wb7q(Vy2zo;R(?A|fyYh&2j%okR!S``C(e|FSW2P%Uq& zB_n1ynt;}-AonlH6*v72EzOmnYi4ZBEJ)3{M2i$LW3ukZ%oE$pRVfZN)*@;}(9Y!> zc1*W@#TI>f49g9#N-r@x`U*0f=38TPR9g99Co2eF4=06f+(F)-h>Ao696kf}#iI>9 zHVh#qbsyk8EJRRv)GL6dJ1y0hyeNff;O9f&U`VVE(30?%2hrRJyV(=`&8gi4QBn{- z$0Bi}jpV#?V=~ZG&9OisD;=UeX7t3a0|=ns03K(};tScc>ID2Ja1tAi1ey^=8;Izj z?q473;uKxs7>NV{AlRu}Cd=dWx$fqvNqlW@`D#n4ADwu4mFjb0YJ>?7k~EMxCeeAg zv|vOsDZ_fg`^GBtj%>E?VL>zo0m`7wR(Zt}=gnYrjW*N!3iit~&QF(%Sagt@eAS-s z&MNk8L+0|c&KD=%8@_t+Ti?`C#b+gH!tQ;3+9t9u**!~{A(d7$|eJ^A|61VE_EQW3D_-s9`@9qM*>Ks2DtGV z3V-pfv!~Bg_sA4fkf#-*oNtJ-#G@Ln*CBMN4hk>Y5gU8w(eW5xZSv4LvU--hn+c{T zRD7~fn{yEiWvFPwgIaC&;x)SB;-%&n?H_(iPX_gK-Id;w*SI#9|KRQ0%o7v(?;@U- zBcnhSn^G#VQG_>QO zFk_VFZ$A2duHb?F=+UW9y22D^z!rKF2o5!ln&GoY>x!3|JlaZ_w%@aN(Itb}-Ik*9 zI6F*&17)6^rntXKB0kZb>+@eOAqQr){zPqBleKYq^0rQN9%k_6p-A zCms^r{wbPwrjaavct1dS9qLa<%qputKD;(3ex>Bmw!)f2j=%NWmQcM5Z$yt!wJUd^ zo?l(0@}I8VzG~J>*kENA7W(VnuSPXF2&t9m;<`i%iAzm1%jGOn8o@le(U$r9(3QA) z6p+Zj&(C7=hLVeifbt(Yc0b%yp8Hip$_8K>ITOFX{>hxt@Nu_0?1au>U6E`OB^_I> zEF#mCnf=l^`1oz`JBODsDSr~xyCsa48!gl+nL4a50p zlNtP)GL(3+t!t1JU@?!9miJ#b`&RpDo+nk9nRl;_qUFfv+Ue{eMFOrN%1iG10mJQs z>K21PuB#4HKUW>+3Y@OV%Zzg|wR8PZz8V$edWQC>C-8ipcQTHV!K0Nn~@=Jmk?(1P_Qu6 zPh2p-_e6TGBQ=v8%Ggj&FV)N9ZhVY698f6(-M=1z#2hLB4uLsg-*r61a_t{vm(KC@ zxE=%m4Ln~XWx{uc8-PE^?%Joqsc(C@DiCYfc9!?V?r!j7bJyE*zB5n)iHeuA{HI$j zao%pz&0|@;e{M!I#4d;gz5K+c8nC-F-bf+->0SOGN6GBz4+&2z%?#XFuZI57+t6|~ z{GQi+g}YEriaYSKqFjYSP4k2@Q<}ZTqw?Tqi3!9+HJ*UK zYoKd+xyW^in+{3lS8VUh&A}5S?VS3xx}<3b0~js0MoyFhCQ(0fGJaGZg&CCR_NEJ3 zq=-NJ&1-S%Z{VvJw80@9&vyzQSF(qImMq7t=I39@)}p^kw<#0G4*(4MZoAFvuL`uO|elHdXwHU zBh!vZ<3HEzI+u49?fpdVSgtSf;%>hrqS0rcW9_Q1SXya_pop^=%P+Gd%VInMe^^A( zut#YgBUfdG z_X4EXHK2|IMvee=oZCEuhLuBJ_pz3mVScP`olK{K+ZwaIUqn}pW&07;)bFI}VHVRF z$Zrv7^HCBXfT_jt9N9Sn<(M_T!teL45oV84!8I%Oq?LU?=ThMCN=eyk6Ng8lq5bR! z1Ak7UtC^cuul^ho-pgKH#h_{+ug>qL{A&8=yg;?)pqu?3bdAoS0yQio+ta^KC#g0* zztO3oKeBiJ5?s(CP^U8QsoH%1uy7>8B?>C;SPs`k4s_?(+k=2ay3 z;H@zMoAk$Se$9h9J+a3L*y8>Ri?`roUo-y9+LSeIPVUC*0xUx;F{xHyQCJPJ;7Eq^y|I3imzV{=VA`-Mswe#2A^5wEBi5LjTrL_&Z%=49Zv?0f;*}? zxRE$5?EuYL{2)aywL0||?jHj}%29vL9RUb#N==V({9J_mT^)Tr7Dw~gwYq|mH3a_(%?~#IqLQm41s^8Be#eUpC zq#o18)>n;>RBtoAf8*%iH_Pggt}(QJDs8o@p9R>_4@XmkkQ-U>@kqd!JM#46GFT3k zzs{czn^%me?~}<5nO(e{x7)uUoVk6OyBn&K4n=+35oc33w!3j;&#{bNXi1oD=oB~{|=8R<%#Fsj25GQ z!uLV$`o+SP$U(9y6^Rrvkc}#;BE%H#U~NSL5@sz@fxNx|DD5@!#9}W4is!nA^+!X{ zeo+i^3VM$@iM7ilr}N~KMM+(^uy$3avM7DQ-XTfwdkh$k^vd*-Ld47y`1%4cG!0U0 zTU)b?j84=j$qliF;=QNo5N~nihp-*M=G20O?9Q^BFGN57f+-QY<_ms>BSEDP1|d`k7)jW9n}#qOJqx7ToZ1?sn#=VP8xWDcd5g2j{<6vGVl&R{z} zY4WGCQ8It{PGxLh<`P0QTXuf~9IRVZzopv~i+>1EfLh6&u1*;@#;f1VSYt3L@Qq)V zy{vy%J+(kSFwv?{AAj$nq<`Te!PL)jF)pfEhT62!_3}XNEC05PI+|_QrXoE>W>>{q zrR8~_JPD_CehvZ4truf$ouEBFMGOeSdorfl_JdHlAhC8g%ke< zW0Oex^+ET1JllzH0LnEhNHnQmsUMrA0Wr=k^G`Z!`vd<7l^0%i=*mz!z2PCsLTu5@ zcUcwQ=RQi1o@|(HDhfy|sl8{W3MJsIGtEeaxO& zKcRj`;ZQW@D{lmi6l%Fp0@F#QSzkgfZ0VVpHrpfx^=0WZyq%oW6l~=P9GZezi`Zz< z{jxbflUQ?YB}im+QBJA0(eFCP_|&N?7O3aQ`tygvO9|JPVjs6{$Xp*2WrZ|+h$SCd zidQ(^XomACOi)UC4{c4g%63Ye5_p)lm!P*rM3mZy0HY4p9UAN@p8vf`oxXuEUCo%RsS)WYQz8joTGe&@8P2h+|e@h zqhl8+db!P?q)xTsVwyJh3-Aw>rIRRyvjKi}G7`|^80md63LL?I088MJs9p6ijl|wS z#JW7k5}&ojYOzXP8!E}!iEuv<($X1p(zsC@C}c`a%HHC9ruIIdddS)i zLVBT%TAMZ)n-H%M8gz{{*0tG(Y}9jIEj6w4pdV8|5Kv#pX5`T&^qCyu1uPgbzf!ga zakI;JJWtY)JBw^B)oq@csZ>6Hmku}@hgOQt_Fo4cZ23HczpechQ-usHQ0tPBoP$PD z_D=?2IdUUug>+BQk!!z!tfu!&r#e_EnDaPIE!fEeCE}O`^rmEP)~N{ zF7-3#K}ntCLGsXtoAn;@{?>jS{bZNxH|IY4%39J~pA)$NS#qa#p_+esXypI%M`Hip z9p^K1le+Q1JJ%|X!qgA)dO7pz;D#SwqUZOm*R;AKsH7tHbH=XER zz2UsU`!FIB%OR>A@zmYq7kQV<-^Jq?y#ujet*WbAcrjnURzVgb&8j`*C5^nbB-vb^ z#9;FMx5g=#HDMoV$TaXAbu2-YWF*L=mZMcgdI!$xggleJ_!R6sp5od39M4#nwCsIvd24rvh%6AC#PnvI70mv4j5rKz6YF@} ziSseu(N?i`ymXIS>B)PN{TUaysGct5Pgm)wheFrf9>BgqaYwUKY8{nv!~b0((M4QH zkdncH@fH6~t$TJR-rR|sKjp2SKGN$!v2ecj@U<+5yrhgA<+UX}F*PIW>F?KK-Bg!g z>XgrZ-n0C%GU12>c-yKyPweAS!nP3Ym1!jsEneZuCl%a(=@Z6NnJ9FJ zS>Wcsd`%E%USl)6e4!EjQMTFZicI5&D3X?u%d?;NRsQc+tw(j)O``_ltF`hk&O;zwCaWFts3mC8GLwRL0&4T@$br!lzBwSJjT* z6Lv=Tp?W$IR>CoN)&!1&(YW)^}ESmFOcSTGa2Mc&&- zX|iw@+{hmIEkgG?WP!m1H?dd5W+i=x8*@fhr`4T)Wykrl)14T(ogW^XC)#%-Soic; zsBqC?MXT!g+qJGs$ZYRPSVYCD+7$n`T6}67%OotUXj%QD`p^=cuxPx(_J+)eO1soR z7N-y$nuAXH@!<>6glm@E`y5(t`qK{Y8JlhG{C8)VV`0>gL=8^ol{+q~A~N9$LzhKY z3jf;(GNST@m3FDnlc}FdS4cy0i>b+jkS=F`DJmEn9IFsGNdD{DU6KiDE>;dTZe8!8 zMZ#M*s^T@D>sHluwDpP^bzr+WF7lCp-}X_!ST#w{Mm0-y!=D23gj+M?zs*!AA8s}~ z2fD@$?iaTp?VCJf(`Jlh)#gm!2NcFs8rh=`y$&(@okNj=eBdlIdes-b2DmB;?xub) zmpPPI^NE~7d1st`m~F_AV(p=!KOUh(*lIYK81BJEBsN);ZRuh}uN_;1NK~aWtKdQg)(X8}!Fb z|JmYij$r7Fyar~7Bxmdu%hQ4P9p31uE*~&LDrdZ{o9#_)D#MPKC@BwQ|Yr%fk~=Pu=so&t;B%! zn<};UA;MM1FP383M-lJBJaD|OKVVu5WUPhcO(~;#-{oySkJ$CTQyAbJ&VDU?Cf(1c zWDQC1`Xpj5VhQb36;))Sq?LLm)E@gF?%`)Moj~y8AH4GnB)TnKN8rFh;B(Cz%rmi= z6Urj|FnrDaxobGY^saMmdcXk#$R z-uBn~28^h_&ATsIoTs*UEd?VpO06!M;uDsE?F7RzL++6(5s%xH`HU<@WQMm`U8w8% zG8yeP>>|zO^g@K#^)`lR13@ND*~5r*US6dfirjGCk39K({16r~(CgvS<8%GcZ-)BZ zdA%em3~yrt-5IqWQQ<`dU66Y&Hh<+}%JqgX z5dVO6m+R>W>2^W>fLJvcuA@%DP@R@n1L65XxUn^8&qlrgnIz-h$>t+E(drGumS|1S zeczz+zZJ-Bw6narRcE$jfJ_?bLv6^8_IS_)`9%b!QJW)?WU?(u{PNZxOT|@oBM9+( zAKNqh60+-20FBiYBuQ|Lb0${x3?w^`$hOWNm4wJ?Q|J^605Zz50R%;uBNJT%onuP2 zcz+T6`dU;5(9Z@Eo%d)~*JQ`ifmeFH_@?m*^BeaJO8T?A&@_y0#u61JTXZRG3<@mj zmk*?hsPk{7j?zo*I{1LH?HN4m%oo_3POl>P7LQ@eaYVsw+`2(=hY%m3S(0Q~YYcgs zcLrNTjisl{ugQ?9@0A0!fYL&x4kC_ zdS=U;sNI9Y!aRE94>c(^Gdq@4D53~DFkC+9tjHL(uefM8YYZ=QoZr;Ao=A0k7ntPX zyB)1DMUG&|U!5RD#uoHt(NB%%_hXj6!m$T%&D)kN8Ms^jASD46BXz6m2H$uf+7zb6 zibGgV4~ZstiIYmhfCrTOMg3?>~t3^vB48{7J5B@Dg~Vro7B*%@e_!B6bv2D?r3KRyRj>w@%%& zq&8e49C9=1ZpdwQjB{M95^``f5hM_hcc-hJ1p}Rkj~0Qp6r(%by2J+kuX#y&Q#vG) zu&8nq7{24l^xNrN^IkoOLvqKg1jZ9OWn-u&N4NE=(Z>hCNYzRVwfz;Hp4}VX$Y0R+ zrK;zUp*nm;JD@+hK9bMOlifUh(lg0iG0uUUJ?r=<8P}dznQn2p0IEsErk&G$4z@T# z1a)|i4jLEm>>zoQ=uf8xo<#6*0B+U50QA=TW6Ch0ELDB?<3Gr9&PKrY8Q(&W>q>}3 zn8V?#ITL)26FN$Q`o}%S~K2eT#-!7KsnOb{L_GOsDtQITFqq?Wk|M>1zI)XNkDu#f6RO{Q5RI=taJR z!&xoN)b7Lv<=3$sqkqPycb{mgW9P(8&E~cIsDGnUMd;rBk@&P4lgnpWi;@0l@RrR$ z@YGEjBX|_h!T~!{_YN3cBDLGTSY|#^tac&)EZQ6}&&t2gz~AxnVul(kI_`&aG$QL| zhX8NTvjOL7#CHXcduBd_#j$|g%n|k5)BMIULU%BW*tmGK((o6Za7baDq!jsN{cZNe z-q#o8=sL3<1cbCE(Yer;W~1UWzA*+8V-3O7ysd%Yo4Ql%Jgl?(;?U`@e&uM>1kc1b z76<)*18}2b-NxFtDi9J|{z*H{&!ss)>;yIW-j#+L=d6>Z^Aj=zaSt`U3nD6+AGQqI z+&46-i43^vrz;eA?$kYMhi*_sU^fS|`8xQ8ZiIT@=DR+%*zIt;>+dR?CSTu;g8Z9Q zI?vqnvY2{L+i72O*o1zBEhrZO?z9oUCe~KPuv;1C{v{6gpfA4lCI`db=x~Qz%(6pm zy!_hB?`mCY+nJm|5-D^e+MBIs*8bM{IE4qW4}TBD%H*P!SEe7%ghW3&c|@ciFicMl zyvLUIP^IOMu)=FX&R18$T(gZ;zGb|MuuRAeN~z!GmRyXtNdsAV+qH=6r9O^ngb?dx ziamuM&RK%!H}?*s`h_{IBf8z<>iH;4h8$s3Q^6y6x$B40Y_z*YmFTt395Z zT5iE@6BTNBN|@R8NWW)2?Qx7B>7A@UL9^}cd8|h#2}!n?bfYkPbO7#Mtefl86xL+8 z@P$o#w`I8^Z5ebxs%(XU?m}en6=*W5XHK@(!z_E&b-1X2pa>`ssS~^#@=2WvM2`;MlnOxZ zgkzMf+6-p&r~nPGBD|{gK%QwtA#sOmvidE&l#sR@>ZXdbfddbe=i@W`Ou7bC3GP8N z5uGh-;tW-@Gba#doAetEA%%wjAX$|tc#r0HNl*g^>{E@3_8Ls~!gq(Ng3p0VgS8y$ zkOSIG75glJT}tX40Vq@zPe5;!*W#2A!c}!p>Ge_0B!_TFF@QvSR_^(uz$E(x+{P{$ zH?DG7cP#F}1MgXJR&9qt_MwX9`T7`09-EK)wV2k-E++)tGYbgNIr1?pDY-OzQh)X5 z@=2hjcYm*okNbd<0Z98$a41-|+&XNrOv&^vk2+ZgLz^{PHv8Jbp@O}ge!sIaeD*i9 z$K?4TI(s!YFF~t}PO`Occq7^Nx>p^+EdMa&wF&1lS-D@LE9_gBey&f*m-gL;C_5af zKOYDc=X`P3JmlNSk{i44*k|=3YLX;3#0e#m2jYw2c46?yfP)MdlT51KDI`P$Vp3|Dk=Okv2riBU%KX}2Q$MqXum6MaLA0u*?-K67e-srH zIcH@!4{lAjo}CShH34A|fWy2@H)KYGf{?dTuasx}jj5d>jIwquTK|!k$v)tzb!sCN znuYO4MzWv7de4GV@V~NIe8S1QSGtusDKK5Kq~=#MgR^F3(&OwAy|afUJFNjTk!CEY zkpgvAe-)m013Ker+z*D%npwAU=Ltr|=S(s06{ehzs8_j4q-RHpFWpCALmfp@mxpM$Zl1{5tCqZ%8@bin2}bW)JLiP^U=-L>Jfzb(aX(!5aq+? ze+h*FlAh2GB1cIfSRSlm7fU^%zmGj}26F94^y?1?pzCHj0{uG2o#RxS!r5w(___!N zFM)O(dtj8R{md|W`>|qczTGH-Osr|kry2>CcTW0SvZsR zD8S!agxVl-X_nx0$44dYm0%L|J^ByFIhv@0zfL51vlSB`FabNO#=;_s0QP7wGzv$~ z0=Mt;(U|#7RI5*7AM|LV)frW>ta&bYx_*e;1QMwXH9oazEEU}hoOvEqLprX$ig^z8 zzAPfVd$^8nej!q*aC(H5bS}3?i>`d zTLVp=)0X)8%D6}pfFW}h7VPP<&ei{v?povZ1KU;@yJM|Lzg5Mm)nQVomUuHGm%y_h z)$40Y^YqWPbEJ#>zt6tJZ*2!5>>RnuRlsRu$(ACGd`$p#a0`+r!V%@*T4mwV&<`+a z!-Ot?G9x4;aj3XRz`MGY_)T_oxp#_YMrT($YG#BPyWJ68mt;5XzX zlU_NO`nBjYRpjs>g*^}8&1wb9{+o=(Xt{_=asEdCAj;xCK{R5z*Lldg%K!AK*xEB< z!;?oy&D>V0$W4~6_^Uj&e_Fu4UW*)~@N#aHPotljRI`9QzH`^vQbgftW!s+vIsHF3 z=*>@}8y>XYM85t9(a|tWv%$_4+S4)x_tM-&;6gihqA7((3V6QDdH@jKFT;i1XVp`) zhHq)K%h=t?VH(EC0~z=AJpn) zR&M~ppjnSi_eI^bC2QOpNF)uM4s5CQG(7(ndCk2lNl7YO;iYI#4>>oElGe8h+FCWn zU|qF)A|W7w4-nw>ve#nd5(D+U+$FZY`4E-PuPGL3jz)8qle)P<4NZRlS`= z88avrBrV;lm`t&HBeRH=`H$g&7h{yZze)A3+Pwn*0{aavZ46wR5zjjX^Gsv4V`BywB2O?qHFlb^nKc0~gr^aoI5Qk@FfVFSu%93}!wKXg?Y#WyzxgPmV(;;;sq)EdMG4@D^{vEU z-5wbu!?c3gnk)2`m!NIb5Cx>2`F)cZXQ!pb<1olbNJx=ZmD*64X5Ue(j3vtSTH?tr z_f>eAodcJ=^T=GHjmIx}WPc|Te!xGZNoQkqF-5DIwd051)&O({k4TbwX+-muoP~QI zi}oUlU*C{e{zz&U1}L;=gg4m3GXn1>oP=5}t^X_l(;8Mz%CJ5j;*nw1HCYk~r_L-s zCDScW`ewgC-oJZ-+=+W1kpGOf1ohSB&fl90%tX;3)Lzlo&ll};G~%&{jf~RB>{)qQ zvByH+s;Tw1b}*ClEW|6W;a=Zs`CGd*P-nf1$2(DIV}0imrDbN6f?Umc@FtCutos4u z-NO$Gj!Ct4C!w$djmV(v`gPnhvQC5r7Z3m9w05EJ8TTp!&}09M_sjoteq#dL#4n89 z5O%!i9CHrl-orN=s1nuzAo!-++LUh!=;M@N=!AX9j5{9b z$g1_cpeGw_2_(XlWmyL3?rU51Kcn)`ck(OK4f#e%H)8Uvujx+zHn=2KE?7!Q4h5d# ztMJktiSLVKc`m+(q5AT$rXx6?RcnlcU&Bsi20_nFFZein zt~yLR(((wr?Wj%*i2{fe_!Ed%Wep_Ak%h(dh)Px3u|Mlj_U+?cz0z#NEWS1AfjH0h zh0s+j0Hk!$ZBB57x#~r~ppUy>rOeqMqB}-*aX@;9r>Ho?BadDJbrJ}%;@r>epRv4B zq#f{gqt$b_7+$>y))mZeJXFv3@yq%2@Sup$a8W9B@f>w2g|&;GoL|MFnf*Cy^hG#m z2+$O2ljYy(;y68d@p+|$kzfLVt zbol}aGZTD6KX2#wHBZ1rE$_uFaIqF^7G}T3RlNef3K6p{OeR?*ycwehWa1RNMFVM7 z3NJgIGgt8~`;ebS(;)yF->C*fEJ+ts(RyJR;&Mythfxl`S4cydP{0!7T?ZUs2HeOg z6lh3}tf+Z>STh^L2XE0M=xpRkpK^8vLK&-tuDt!keBsI!;oa!qH9k}Q`G%L>LF_%L z?FhMds&r%nnxx=FwKXv`;%b_AN6?120N`mDd zyRw8s%Ap+zvYlP>Hf-7|(+$4}mPg$BG?;9mEjpHhqx%(9Y?ylVX|N*s zT|YdK-QiUGR#$FW4d%OJZ?}Z~ET#!dbj#f(MLo>BqYOQxp#k2O+%kdBHj200f2ukY zH@1=6pKC5@f9-ttE4Rsg-Uyri_WqEz|5sX+-%o^SHxmD%pOu78~<}FK@9Vn zA0}{huQh$op-;Tw+O;&=P)MPn#r3p_tC|jk2c=h1V?xFE6=65^Ys{iJkBH5{u&g9* z;~hVDHz}A=XNbh?m_#vbI6N5hc!lxzYVR(9Wi!nqiLduZ{5c0bG>%wX$0SuY6`8DU z@?IlD*(^5l6!hF366d`Tf`24$hn-fP$-@;!Nh}ieC0e4)_`mzvJx359V_e^hEuO*g=Fq=qMZ&k6cY-O))aPM zOD_uk$W<5e&bWw7b#8_6tdDS5FJtSR8Du?!vOsP>7^r4Lx*SO@tS^cFyKv8M>n+R+ z?fbuh_^(w*H#>LE)Ub;y0Ix5AXazm(&=Z8$eJrory31*H4ib$N%8VSnIzhP5HX&vE zJr)y2zWQiWWaXvas8hY6dh$aR*?3~$Wr7rDnrb8-&o>1t| zde>o%R!xZ#|GQcNd^y^M#u3^H6s?C~Ox5EceP#5CG17j;j)(_`%o5g|bzSlA@@od! z5C7e_l_2_sNb1t-c*oNwe-zbDt>o(Z2*bjJY|9qQ96WN>LP}m{C9uKFD!;8X2zQv- zVcTQ_P%+ict+Uxivx3KstN2(mUpSlpj9+u(YB?lLiZnUr!%V#2@(0>r!pplWxY5h< ze1=pmg|YAjJ*q*l@>8ua2mpA@jR?mhtv&I8AeuYj*5{MI$b&k3Vg4}S7wIkkADLG6 z{^2#mLs<8h_21XsbM`}E`&VCIH{|S%A{Xb;mse3NA1_p0D8B-dp9n*`0Uq{m;Cn`Xl+7h_8B{Ph@3q)s(d+?84ph%V}0cGkV;n7H9Kqlq4WM^v+$tXe$I6r zgUCrcW5Q5o@JM|Th0bKa>uPGgxLaEfg!G*w-7rrpMKs6ymDXo;(v8PHYJ8O8!J)R%A3dvKjaK4WmA57Yt>_E9i*s*|37T5ATCP0?-j4#XnX>%dfNIFblk*KX z9IRaxFXzUGLkh|)@gj?aUj6yul8uLO%bsKS+Jo{Z-$fSgUag(~qcKC)m2;8zSLul- zTh(Dm=dLrriZ23m+|mr1wY4u62}az`1o| zR*XmP6s0=22)n8EBiX2whv3v!D&2hPsF{!3jx1S$mOZcY$^yi1gaR>LXy@)^8$REJ zU+BKhGh(0XauVKkwFeZ##@K$(XYVh5Xo?z%`%yb1INK>fkUjU9R!m{#a$D_EJo=hy zzq+1dWr<1(3jyQDb8IX?WhSw|J{R~doWcMvM>H7myeUhK{k6&sP=V@2@SHQ3^{DE(UajQkQm^yDu)KmNCMnJ^D?jg`N~9t{LzER?WQP~pJNSKX zwa@tf_LiH!dwUj9{WuC=iBtzNy{t9Xx8Ws+kI%lh+JRB4%K!tyW~oRSb>HScED>(? zK&P;v00!ilBk(e}l#u*}r($}gzptsj-xWZE!-RA#QP1f@JpOPe(jLeNWe4viTa~_f zm(hbd{ImD%4pubt{1W!aLtmk-Q)!oLcmBh7fZW%r^zF1MC%RS>$OBu9m)HS*G#bi# z$pQZm;a4k#6=E(@QVGmXE{S+qyNF33jIo~hvL}p`;Iwwl7YVmCzxaBt$#`H?0xMON z7_{iGjr>SctoL(=cC>BS*xaY!XN$UpBK$tE-g82Lscre_!q**UU% z+3))ib)sKJUpqYGquSbC@)T%pC7}m@T9ZIS`$~x&5?>pq9Cq~I8bT79x-DxX}bzA|pdN?b2z z*;Shr|DvA%G~Li@mN24u{=cgU?7S*s4*OzQe_D`)l7LWFr7O^-XBMj-N;iC4zhKoT z))@VTYIH-L2r(AuUBWv_Pj17M19 zio2*U=ZGhoNCYw^py@|U8$kC6w&1Je*o{UfR>?!e(TSC!F=cojp|SwL?oS4Y{~!fW zl;Lv%`PM%O?o>@ zF8J~ziDZxe`?hy@Otkm`>^yk3-0j~|K{1j|o_<2)$ zXY1%KiLj&RFXpoB^P!#cDu%=%u=aqP zN+hcx6&w!#OejX|tpjE{a3uz#0ydIG<9Dq;4i<&?T~7rcLI0rxE#fe2ZyAgUD9I6{ zkf{P~{+$0o1fIi>w%}1xHdI7EfMMY#0hVlaX;hyM1M(*jYy|!?OONdUH?I%;XBXHzYA(jh4+LEtRT+xq0{uBGvn%>7U;&< z5CB?Do`9Dvhx17h=v}FX0*@fa9Z5KXf=@syJ@icD0BJ9?NW_Czad;l44z_<8K_sey z_LABZ!`8HV_;){HyZ`TBx@p>*>*NCGCq{~4Err`QfRnli$1TAZA0PI_oKp4t z->=^ag!83LV?p;MNBqh8;S`(d&xgWr3-Bn2alW|vEI>8~KA?|wK@UkuPuMrMuk#FPZ%}c%(bRAjB>Kf5i zO}Jf*{w!8I{@BcBs8nkyvf*97aO9GH=$IInchQMNx?ioQwP+18nc+s1i%Pz+vlEL7)E=Oq6I`A@KAop{p4w}QZE)or=EOjFC#5s zs?Qba;CYui_dCXsiNkRCx8e3!b6oSl)Kaw0EiBn>qo80TPQD?mc-F;o42Qvnv{^PV zL%4ls547ccs^Mxpwk1ycTth=*Lj9ULJ?0YE)0@UL_G`JN5;qI2U%Wn6)@gcb^jK`Y z$bF_bl{-kYrfEBA=}5>Z}89#?41?|OT0x>F`cWuy1O zgjQ(;t*l14`^bI670YOzk!}`&Eeh8|1-j9B8LjlVfW?>ThmLb(9~_%rY33CUz`w5R z#ws8!a89f8=BOG<*k5%kk4r4sBI9D9f-6J_4`J>^FSxR|HnQrI-44;ZT%ONirW3Ta zzx=JbI(!xL+He;t?$|EF(AZM*xn~)9yWmTFM&Ro4OCh0qNj1mL#naQawNE|SehUY0 zQK}B~uq9s@9s8mYojmboyPz*=Y?R-2+3<#Um19j3o$6244y}R>BF8v(siqPy_dWL_ zb%x(NI*?zWVqz0OKVE~z*y2+$_6}G(ibRQ>?pMzB*Lo+*n_zS^M#mlEx@LG0Yg>yP zPS3Eu>lESX*`M#(Vm_}KT4ddx(f(AFydtM|Jt0s?ntN1&^WKPQUGpo4e$dCgbKWFV zg>(OQ%c3Cb&oa+b&N9md?-~rlboYezeNmKgeDLzx&k$F`)ll3QJNuRN7b{~m8a5Yi zn=3DWrn=CI4Y&DeRvOX4$&uW>f%8%0DEpAc{UI+D=4Q`zSH7fT0Zpe;#CE7)Z0p3I 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�ia@zUA=QwaTGIe5;RFHSZMIl1f?7z(9jC#$=W{<9;8|< zsO}mKFfCvGj5mnT>2`$kA%(f1ESWR8WqSe&HmQ_m`=>4Mk|o`56)7O!UlpQ!o9bv)8~6#H4@W~?AtxsQT9kz1N9R=h-*$)q|B0O6n}dZPP}`habPGT#9DdJw zP$ca9_8N^cKP`Gi`&w20aDO)VLlUXhz>NkGbe)vL7hbhhSgrM4x(hQ~C)4{->VDt7 zXmC-pWsPn&v z7^S%xW8(8kD4|TgJZr^IPaO1_M(oZ_a2<@bC}h6vKb|peQy? z*B{rdArH=DfWeaO=rYw3n)sf$qohqkuVD>KJ{kkX{7p4J;`@7WxH|t^nJ;9BNAjGg zyVk{DH0}O=AqQo#dap|l(_D^6+M(y`Z~m}TD3{C&C7*C*N53)cBVNTb3A|?5chK6A zQ=Yd{egcyMBc2YHWJnBIifgYCa>a%Gp{=PUy zsZbF0R#IvxFmy7z_-Y&O;)S1{7qi%yz)$rtf>G$Nd-!Cy5rTAET8PX=pW4{we8HV$5M=bhr(&xM8>_MMRQZ(6dvFZs29H!k zqz@@sGo+l)Wk2aU-e@O%C0`T-w~s@x8xLVB(ZmItc>vmcqz+aFgACH&Uc|%?c*e<} z=|C)NS6PEzU4Li~5D#nR&BQs7GJqY5QVYq>>tZkPZd(o8VlpZ225UI|OGg1-|~F1AA4BbTDSStJOxUSF?;~ z^v)G5v_LnaHY(etN1?YH(|&o%`+Y-!~H({aH}YC$k>4kk0UyyQ-RGh9$5?vZ!Zfvqrj@5Xew(@4bR#e=U9WjN}YjCyw- zuZs7{($aii+Qb$8;u=rh7bbuWW1;CZFoC#_5vJ}`lCxEB)2JbRTiLmn=)h&H?fepx z9A2MorZ!E%iT-n4l*O)pkzrfb^@>uSlFnQE*h4L-QtivEiLp~5{QPyw#w#+-*cj=9 z{x=eUL`r3jVWcfz;qY@eEEb+(ag2Tynr(zKS6PA!>^kDGAYseuIvxBF%=%^3G-~~~ zXXJN+&oU`kKiC@s+!U5agwbr+A5vmNzuq^RQD+9(KXMApQpqsgYhv&^8yI;>nUAMb zUoR;5FtY1JZxMCC>%0|#AvJL4X@~%S-8QJN%I8S8EO^?z-3QoDpQ6MK6O_zQ>L=M> zY$fcoo0}nlAA#}*kf^DLQ{Z5(v!tPT4YLR9?Yz&XhiK;6Woa=`of9dx`gl~2o2Nfp zzVfFcP(hK!==7%hlnQe5gmFhQ9~{f4DsPBlEc5!_kjWNw)Dh;tvrDug^@7&YrpeFX ztxy_PVz7x77K$b_h_!A3wWMxGTGHBM+$)G`L$e{b3d@l-W`(cSj!l#g9#o?2Yamvje)bTp`VmFO)u33{HG zZDF3~xcOqTh*y`e*p^F=zKG76k#&HYr^lw@HV8_E3?_&b$A3W>Psz!OyAzH+0M~YEg*veT#6BlSn z&hfG9uR9k%61$9{H-Io@&QjVoc*96Q8^5ZmX5XFBAG{*-z-A$R2qjj}3w@$|RalTK z-HVeN{|84eePpEq;G%3tDTz*!rWX=jBFxe4Fm!ZWE%qbw8wY?7XT9hT|B%&zo?fY} zUSgXIbNegrk|e~t8WR(y!kV<_)_DZ+`S2BH@#weZ3p3zFZldMMP0)3sj`_aha_jUT zR9_$D`uGXpA2{Vb`KDUf*jCGA33VV{ucZ}HN8O@ppiXjBp@b<&K@9O}@GKT)))*Q@%a7SLb*AucRw0cRKc3N+aex319 z;k0Vfd`}0sC0~mVi|2Bj2zLN!7?=^Dv{DPCWOjuEphwBjds${=YuW=2@U2glfIa=H zocDqDzM}Dd2g*Pn2XHEMS1=f|20U>OFby1meBU2O6#AhU;LB2)?yf$bC_P?eC6~-_j7^i zxI7Tw&m)XQsFdwZM-B6}-1p@Lsa?$Wx5K}Ew1J9FXC&CKG&;n5FMZl@q0Nl9to9R1#*^XR+ zh6u&uhzWqUvJZCHbL8zKnN(|*7ab~t;z72xfRU4s-Ox=P&(+DNg?U6%@8|(jGh>fkdZ1%Ha7p!(H0$-4&*!! zW zW;T`K%|wASxrn#AVPsIyahbQl-~QL`zzH}T_%{M zuG|b9%O)#EFYusKpd?F{(V?-}0Af+>@4IF6tHEH_6~5#=hLXH;4K4&UFY0#Ci#h1m z<$uE@SpMLdx#X`*fKh0G#8PrR7_!w%G~tdW4J5J9z{d0q5Zx;ePGY_pM=rMAnf9+U z+5x202m&qlg-{aN`{m060DS!jq)XF|c3QLk0Ny|5gX8wNa$P71AaX(8Le7Amr-Ia2 z9w)(2maFUfKmlE-I!bA=`ORJ5>bl}XsfFa#k}~?j>UMfb%Q=@ImI`P_)KkbZrMih9 z@_2kcQM*SbsQFm~$1{X=E*I-abp%o?j4w6D3PTtxm6DsWExm2?V7V?Z(9{(KWXcbZ zFW%;4mg-mQ!+y8E6HilZbu5^zW zQc`9h8e<1Xp4K7l&nor3DLH?Ktt>dyJ@jzlPE>NVNPBv^TjUxmaY^30CAHD-FP8>y z&zF~Ne^$1A$DZjmq7~8oSSngz3^bO= zajd(E?ja4@iGD^+Nwm@;LFUUPMNWqM;f@gzq7#4@p$R?Lmc{wgfEIfi*e+HUA zUg~r&9;`Z+v7wCRClkgzkmoz5DXo-IpI*4`(I-0-5lUD*!N_OxwOhq0>8)6%RiaKy zfK)SQ<;r#pZRCUdnkZWsyxl$h-56S8%fCOXo4X@&9m?PirO!|&>sCn>XL+OxBkB)M zF&S=X)VE^LpK?Wbt8+QnRR5Y28Y6k7I}5PoFj z>8GsO_>@}tCx;e`z7#nDFH9*7P5fkHf5H#pl27)lhWBR$1q0UQ!3fQ8L#Dn}+O%ME zPje%D$Qs3z^hzm$GCt|Ts-1L3n$5(xpN%G;g-zZ~R=@uAZKtjCstIxZZ9{Nr)V*o^F#~h^ObjWQ(}>Du|EeYfeIw95KU)YC z1H6YJpPGvYrh6z?PMxj-H4?SpeC*XsEa+CXzo@jit)#e6!MojN~#ZY*EnMGGw<;Bn`fEV zJ@mV{q&r_M1CQiv_T?~?y;{TQpmb8F*7X`-YE)O=Jm`S-Z)dL>+ksIMo~w=xxLeuk zsNHEl?-L&0sN0MWZHm+|qD0=?sGYl^L+>EXYf(fS9r%1!6>^FTo(WmF0bu?B2S6ZG z0aEBO?)Pb6Kl0;dW!Je||J*P2gdR~tFEf-Ul>n9CL|0}1KsO5Ie!n$?tp4e00w=gV zerwGF8dK^wieBn>cni?gaUdt?vhcF*=q6MiITGz%?~2;gM*cc}30yI7Mi{p&s4N4F zyR>_U4dV%zs?sd5Kyu$qzxcV=xDCJw^az1f`;+Ukc%a0FG=D*+p*2>m@7r|E#svDm zsv7{~p>mu008?%tnveyy2T*dKg0DV-ZwPCaSHM;yz!pLKx;k)OASF_$ce>dtoBz^X z>xq>FqxR){6XYr(FR++VyWZo1*X0w|^8qC!veoM~=x3VKV{RMCe))ubmU7p_6)N!g zj_ZG#NwO6YkS~w*_Y&mA10$+)tO^Q7Jlm~K|AAc7_84FXYACYEd%lJ{6Ufc@*vr32 zk3%m3>wp=exti?Rq>71S=?90^c_g^A#1vMz0oB(1-JCSY)wgYbV30EpNQIO;;ssc! z#NJO$ax5Ir_NZG4Ue5A7#Hh46mdlW{-_!a0Y+}}JY?XZ!g#+%?)G0om`go^-n<}Hv zK&th!)`Qnv?8S0|C|=z0ilNc`I&rlO*E#K1+^zS!L7rL&wY>V!aF*7XSuRF6^{X`t zGOhdI6pvZeZ$Xo`Im#b^5kJj0eGr_|V*Q&jfugGU$e-#TsM!V5m&s89*=6Ehry|zhi z2?j^Kw~Rnq9Qpr;W|hdnmn%->|GTk%iNkk;-#K!|Kdi%y5Bj2H+4fESaZeFEEQLj6 zFT>&Abl7K#jVxdCYZ0bU6h{@%ccq5P^56lwym;6ohuRo5cs?w>kA8hC=oKSL#tw^O zwFedSa*}{BlmWwO39!mOY6Rn7tW!o5_RgZ?0uD+OPXQk~N@)Y#=F)!Yq?P*H{U!mv zL^C5b{$eETT~->R3w>Olzm0d+-avKn*S{0i zVbsc2qP4B1IO=KJbY56H;6j6@8m9*O*d!N`DA#to?PvP@3R>{2h zpH|M3L8G!Vr=fL={uggwoAZ$_zuGy5X)Dtn)r8^=wTpD^Ffdc1-xkrFb4LOrfQe6H-bQlTGASET{>y$BC?y#;y#Bg_IWlI8nkm`ZLCYU6I0GKc0T$i&(zykca@JA`*M=l$wQhHnE7lT^Etj7{}TF{q{-& z2j8tZ_-s!;83GJXU)L20NMAf5t*EDx=Ya|@4i%ED24NIQkdeJ zC)|>W(Yx^Vcf4DbHuuc4*@+b0PL0vWn7CVg>Ifb#!<@@q$U)vekm%gOh9cyUD(6nH zl&l{OIqH89FyAr8AB)|73Acvc2_94sRlngie=aPqWF$S2+C-@N_|~BjaC+B^fcV8O zrE{jdk1bQsL-ckodoyyTNGTRurM5-QN1@hZHTS1w`Qps(kZh$I$+$W~Gl?uUUTZoL z@Fa{Z@ib+*NqT_Z0@kl4S`&C~d;ig)Mp>{;9cbWXVQWNUztLvxf-@!o!h>o*L3vRo zo>IVHv#AaxBQ^V6fK1T{q-4Z0^5}ol&Pd4{#6(i_B?ND?1z5pe6%JfBHUUWmgsHcO z86Yy3V0MCTI|k;K&amy9dxc?_TKFC3cY8x4*+f>A@8KSbjB6JJ$S=GY6gTYmH5zG|5YxFY~oserK|UAY7kxid;(>!t>=>YEE0dmgcYl@H%+G;sX1 z9y7u`L*a6>uM9YC{EV;5$A`nHhuE(p`!ytf%Fi%7t$H&&nD%A~gjevWC!2TRes{_U zH1Ud@-E&)cCo-n6o`&XBPBJXptHFATsWI9A^E60rS13{Xenc2$CeEV6O%EHfC~uG* z1f`COfrko$^j6604WGOW=8>oO>=-;s>ZO9cZ874PapNM}TCg13#s!r|(45^6UMB24 zXYX&?Anxb7im}5#C#AFAX>)pu|E-*$^T}^MiVTLE5I_V_)X}sHdA{V*cLLQ)$8eXrAWp zdemz3dpk@=82Bexm_@FbT$Ewx%pXJOW-!guf!#ntETC z9e5Yy(8CR35!p_1O!UYv56}j!WGx3HS6Uw=Yno?a>HcqMt|XJO%=TM-y-p4kE5%-& zD$@80Tw=(uQW6jbc+Moz9d*)NO4fuiYVkw~?YQ8oOmOf%{cfdMPw%$}2l;At((=Qf zysY^`(t$zp-X~6!NJ*L?P$=2NdGRJd1GBOBWx=EhZ`Qnd3(wLO35CYV(2fuPNfap9 zffw$YoX!brkru!6${$k6CRzau3J)z@%fF-OaRhGW7Y-2#2P{Xt%=!UEO2(@qMJ7(U zO6&!`9mkZdSP=$L#qUk*z9&H2+H9_DDTwg9EBXdu4GjC0okf-Ce;~P5o4pP6YhWUr zL`}ia@`3Fr9Ki9-XDt6M^n1Pcqrxg?6pLAM?H`Y)5-f!-=|#4o*~UbI9=s>IbfpPV z|IO^^CksVJpB=rAOo>Id8edH}2mEXpF%I!GW)LzaSyy0{b&UD8Z!!VQZt!Q8ywq>l zoJ`z~_HUzD^5Bdn?#fbk<162=F$I7k&$wDP9n0(#g?C+9swDgN3IF?7!22Js=`&4P zK>SxzSr)@0|12*Gi$qgd~ZiU|8X48(9i@wA^J;_z8==$u^qgEDYm9CCV}0>;*jXAR7ZKnQJo#* zu4u^EgDCi{0A-dnU1NM2bhywciQw9CoyniuN>Z;i{MhqZx1PL%f|3Cj=B`-wUEcv0Ze)xfEe*~)2Bj?0;2vR7p>}Tzr zFu9*dw5Pm(0iO9jx5MdmRRcFlQtrJL9!M>R3lMDdXB)wwU7zEM?hEwyCS0I$s|c&Cd#Ub*OqKc^|J`s5A_Q zR&IMhwsKbP*>kA`BlmvL-|+zz>|!Xq`6jcH`&jPxlHGSBlG~u2A_o|q#=Ja}zAt9Q zuj}#%H1V#wa_`A z$>$_zMfS$-o)yK41lLD+65Hr6hIy>|(jgBNs`5Y3H+XZrk-#-t`tQ_TD2@CD5E9Ac znj-DnPku@yqi}&sUW~>Rt#woT0^OZK_WV5&q)b(lU@DxC3Vz(#zREls3q_! z9+3o!Ac>p_x6RWj23Fcx@#F&UG_0lXoe~!Vt}hWn7d$c`LeYJy09snReg)eIsO2ax`l}qdEB@j{yn`=`48A@V7qCth>T@*XiU-C`HckQg&sEaW zXSjW{#gl3w&`m|Q*w2MMMxQuN6@F4D>P+v7oRxov-JaD0s%R;*5qk1uOvOxAep-K6 z-HkK5iIh~dGYa`}LbFY=P2)9D*4Sc_W-_aXf{zON_cfr0 z(*#S)Mlc^pp*^?bZe%#!#WBjTeglvrk2S7KylDN&Jp%}iJVHntDJ`OoHD>=HfH zg4flRqsx)1H%hgZ*~x#trv42^YM}|*H`Gx&A#3wv0Q>_a$aUWo>%LY5HM`y-bI`Zo z4R!Kxn(j9M5Mf&cL@fjr$SD9c@Pw`w0bf#bndm_fY>;u!9(IE$-#2>NmcfSTVlH~WwOtnB7_#8A=E z^3Em11lc2>lk@K8EReNd%;Qe|O+&pMYn_sUwy}?$py}1^)|qEH@s=ZxKSq0}O5{P3 zUo_LI`TeaCfRYY+<~iu=!&7r;x8~&o{q=1%+9s>B8}{TYQ_5-jEd;5#X5FBxooeK% zh>5=pmu^lYwK-qY;E=e&aohSDA>O9rZ|_Fvv?+o^E=-v})!wvdV_myPYh!sN6W)oqv zJmv3hx+=2CEtvC*Oloh2QL-&(bw zHh^ZvF6`d0_@>ciLm9iKrM~mraBztT+Hs~lKOmB@G~Vmq<%jN~^>YwSO<{_beCMes ze7yK)2UR@N%qgga{;kg0EM*W+qGlZ8p802Q(1l#C-iSRcsqfCiFA?BX#y)Eb58gIJ zYu9@Cj~I@BwEKP#AaR`U`j8iG%g>?K?>?~MLJgNlMg-#Wi7BxspPoc|xjvsWSus=( zqA~`rlubMv65Rp8RfT)**s6bl1;w*8NSChAZ*$AF`~{; z+qJzSF+x%1tgjm_6KXf*t*{okXkiz@Ael*pAd0Fvh%OB@s4azvuFJfOrNr*siwm68 z{J`ZUE4|OJ!qXGbSA1Hg3?())HB+>4Ej1kUe(Bp&S+^e7VwFi*%DI1aCwzaCd&di&f!)XnJmX!-t{%#xMUk z0OGdm!wF1&H1YVN-hYR|r+`HGrvT|mBVex{yl#~9LH%}1_yHwA-9u}YgMNU6exo}Y zj>;W#t{0$Z0;`AAZ42lE$O!-r&$H{8$-^2U4|f98a}lS%AwVMQGdXeELu4>y`~4Kr zG(7+yvrq{Yi28+HoJBDJIqsR9#rG10VB|=97p$&J^fnwl4|LAq*dg_PLbk<(H(bFt z+Fvrt2;r+c_7Qh8X^R%<3t)i+ek45g`i1Lcq93n9_}e-Waqu4bhXdXRDp=(~Bf#~a zk{|Q|F!SU_xSCb8E>>V|#fM_x6+`M)ude_FbrQ+3a@g(1Ul3z`;F0zOj)ai3mM0pm zaLSi{`H^}gY@oOOjgS?=f_kKiTfNWD-hV5iQvI{`WjO!kdllSqDY}@j$H;sVP=Aqa zL2wEo3+1*3UMs~zxGY{i+ zzp?##uSfUZ=oO`xSFyJA#`j{o17n8QqNy2UggwV1C-MD0bACH9JPEK$38%bX&%55wzgJ%WIU!a_{pDZs z3by8h>GWTe>~Tyci?Qy^*Dvo(rC6rbJD7BM-oJEB`Ei;AsPR{1N)Fqn3?2g2;JTl8 z)t#j6?BE_4nTeh@-=xXdJ98e5+<47%EE)5FVl$vbB7WGrCK*?cYjBYxQc3**RESpd?yi+565bFASSf#XN6yslks{_as@bXHdj3Ov(OBlEy_Ma3yYwXw&4zIWh)xpVdi&m7ST~{wQ5+ z=p?t&t9ZkL8st@6 z2gj})mmIXA^r=JT` z?T?=m->7}>5X?237tyT`Z*DSN66{(Xu;`n>|1gT9Ukh=j+hUk#VgG6HQ6{6Os$&GJ z>Ni>|-v#3zh(K3N9e3Yng=fk;^2j*jUKxOgURnloDBK-tg>9^|r zY~!F@!newNDeULS#Te8KBPw3xQisyc#*vS`i2$Xlijx+zOi|GG) zi66)*w6MNq*c0JJm`}mbaQ)MW=#$qcD!KeJ>h>e{#|cPELAL^X&QbRS>2^?PQO~FlMvD_YV99_o-Re^$N0B zTU9-=N-RFZ6^R!6iVFo20vf8m@V~U1sXn3wsbs73v%c-t1{0QcG7aTQ8!vB)k4%rr zI2Qa60uNLxBlN@FmZj|h|3HW}3xdlN_}?ph#Y^+ALIKF=ttDwXy#@ml-}Q^6sjKo- zpyS6AAS<$a%Egqt|J3$%%Ga+LlK>(W#9le;{rJ*U#I>L{&Opz8BWGGS!)5&-%z-UZ zBCP+(-;oz8XD0RaslKevKaHzuUhsc@9wKTd*?REWdiKgSLSG4GIZd?}{HHmEu_2Ni z3=^NN#5V>)-c;gX7FKGtD%VyAjJrP8pEJ8O#VLMvdJWZ8r^ktR#2Ld2=gZG@I<^Kx zHZt+9dg#j6JRT49>Y@MZhuaxiML%%g=oZS#;zf~4b%4Cec9@vIE8<5f87YN+rpSwu zAtzbV8kc&~OHr6l@>nHsJXBd0^cu))Q-NG0c6&tut|R+=XVG{KOn0?DmRE@(1c7jo zV+Z?Q5dW|oYM^+ZUsIy6IcWD4M2A#@q+@h)L!rW(H1=)90{LeO@P1+quTI%b>s0%} z8g%#D{uK{HKwM!!T!{D(u|C7k_^3wOkM~5j@18yyDSg)4H$Z;eXtI?txu-WXM02qX zE<>ON3BW=n9zhJT^4mLi(`!E$q2Ei0nRmWN3Ru}=gXMpXTS7`!|Ee+{tl-(dl)!MzOqNXM=lta!o+q)8nuLvab z82PL@9EfrSPO8)w&`{JC}Kk6T?MburGGgQi~>sHV_A&HPNacipPaK&ff@`Q{6EmG z(EF$0z5KkzoSPR!dwQxQk4rNSp`~>YG39nvnUkgfPpFHC#LbWaPp`DtD|ywbOGp^j!l*rrB*j%s&ILVrAlG6Bzp zJr2BlV3<0HQVS9joXG?9hk6wLi56#LU$EDZ)fxF$p1=Y(fl3Q&LZ z|NVTu4QVNkPH~CRbgO))>acZ)62oF<`WOxyCS_jCHDCV*T_gv5N}yES9-q=uf{E$k zbAi)q&-TL}n!6oWqxV$o#t)g@uA9fpTQv}_AosXhgfdVNPCoxpAPwSxk_a26_DdSp zSZwu-dOq1ryz)@XFiCbG*78T&C&=@_xF*?zfce+yZ{#`P$RG%+ZbviH0M~ovV5V@Y z>~dLag4(crgY0Z5kzz)+`)CvMD3fZIH{V+-I1lc;F7Y2+g+XG1Q}Acwk-^ybXUK2$ zlZqV`6luwUGcZC~i`AWg}R|Ifmpb)HI2L5E3m@oDXUuFlW2Ukn6eO+0*AMMVI}3s4n{#)0+dLJv{F zLmPVx&{(iV#Ed%X9_Y7~B6DDCpQF3VI0Xt-`;rcMp}`wK?7|2*(6Z)-BoXGJ?HeE?vU+}K$(@ZJ8}KU&>Uyq(sx1JIW= z6s#90TR5xlRzK zV)foVeDv{UzQ(Me0k=z@aCNUon$Wlm2|a<0vC9$A7UlFumQl|K;l*XN@B(;wsh@F9 z#t@E0&CkY1`*9;Br;$0LC$aDIpFL|cpORc@N!KqQ^3`ZVv zk&kYrKE+r(T?&VlubW=4tATV)X7*Ad)e+V*b~n;)6)}l6J&Z-e2*%E^bm6JAIP&^TrNlQDiB_9^e)qrF zRE5AKh@uke2gH`s>vN{`x&)y&7;0`ooxQ$uFOzdICQ6>W39l|L#MVyXI|tA^Q;vU% zjJsbWF z?ThxmisjT=r|4=oG<|c_kO-!^i0bZ&Z(8Rv@c@lag?3)3!P;o)&%F^2Vy4Twd?meV zf6nx*ZA`E*ZBVR6kgEx~KA-$cZ<0TGId*AdaN~sfJN?3G`x=yTU`csieJt1O{&YI? z^vZpQ&vE32XE?<{u0I#&%U1178Ac7s$n-AiEkc4*m~tYolqJZ{Rn_>Ny+0&;%{y1g zp~oaNX7Fuipgm|mP*#!8>fLBHaA-=-)~z0K^2Xxj)s9dU&8CQxi1mhZRX{z<9pR?? zT}ETWtQ<;G76+LYNfUJ;gPnV5S~eS9tauP}$yL#}GON8btu)9s`DkWE>r#An z7OixKH=Dj!<>Qwq5z9mo&i7sk^-akXR{KG_Fy&vdx>}>yx=~NZEuJb(;@dOH2b5^&AJ0QouY8rt zTgW*5OXHg8Pc*#y0AU3|@XPVPZsU71`%-MY6l*W@cO61QapMyAyR|&+k<|-EwH=BS zWF54#;SUlAM$l(6@7EiyqB|A|6c#o8EpIw7C5y_KBfP%N*cd-{7cf&k%PhVQikLvC z78@=ZP*Wl{0=2#qs7RU+hJ}bIuTq)<9ifVxNk)ZPnc9CfDC@;i&}5wyKn(c)Ot+@~ zIyKta>&O~6hb?!GFC#*%aYP*eY09Ik)}KZtxJA?i~<1I!jL4lY28Tk66_JmkkuGBfP)LzlINPbRM6zlp!3 z(cx0O--l97k6#)HsB%e2&KNFGd|}|@v6bE>WW@*;d2TFw}y<{WzV zn94rmmo2_UoGrsK%R_UE)B2TzM=K$Xwo!;p6X@9DCAg!lQKI!tF-6g0sQV~yR`@Jr zILbm@8D6oqWEI)x-^n_e36#*VzVoGUU45;-EGFvN4^?Buj@cMtTf^VP3*%mP5zK`;ITCaRXnZf z&J^M!s)Ll+W{|Y4y;G;E&z7prf9MY#jdn znGjA*-H*e+>+i(nG3wB#7ajes2pp$e;|EeTjQ*2=H3FZL5s+aorw;$}qnnxmj7n7J zAVtT$f3aZCzA>50+|wA*`?)@dr2Q{4`=3Yduacq_4L}N=X6`Y*CnJL81sXj@D(=nS z|F^&J4LE0eFNFDU((MTaW~S9@n_uoSar47VXqvAq&Bn`z-ABEoCd(GQ=gb?vr{10Y zV6&;9viI$t!o$rF`W;*vE#Nrr!tD0L)G7-j`tTw=j#Y9d{r%R+`3~Ap*eVKCDXWjN z_Ghqeu>ym1@p zg7bjo_lM-NQ>Oo3W*q;%5^M%mzYxzW{xJcTQLcu&qk>P8LbQmGG{5}T_Q7h0W~cZ( z*Uab)ok0Gke^g{lee6d8R$o-~kxvgM^6Rg;&J~e?fd?FW)H`a=9eJ4P#w27YgsGs& z|IA9#5hJ@fV)jgBJ zZ?Bp@082f){)pye$Av2lF$vve*N+9sGRfCWRe2RT3t(*jieuaK)+0>u;5DNmGP4m= zL}tL2l~&t=b@_?J9?l_sd6WIe6n6taed$XF%pc2xZ1EjkfNu{J4=@9Ae?vjqtNO#ESlyhgc(*~(8$|7fwi|zHh3#*>*UGNKg#6zR~v*bzw4TR+S<2@AlsHf`ao^uau zxNrOxuBsquFLLzcy$r-+-A}{sXrBz$pAbeD6#%*QmZP+}`RvOFTdPyDISR!FUJC=tZ9t zUxXsW7hGdw%5%<3aKz`IzSCELa@65}6fuLXdHk-fsE{|x2%lV_>Pzi9%Tov8sW5bF zQ@QwR%3w+&(+*rQkdK5LKGt3aJ$@&-W!?=>n@<{^?Cw#1XK@PRKKWGe6Ds62Lyv?o zh4PjHf{W^E0D}0d<`cdA29Zmgfc{Z{KQfP7!L?w?1pw#q!F4Fsd+cho}el86R z1RErwx`HqtW_ZW?EK{D9C?t00j(jOZFqw>)zPsF6?Y=fi}N2iRODb zbnF+*fC$TzHHx&U2NOnjLf96W`2~lcV`ZE zySts{2DGO2oA2RGK7T#`hJ*G6-3p3K#H#v5pdv9uCj~~L8QVXZUf>GuHF;i_ez-6! zYOgC;Ti*PzNc*$UTz*UhcIJ6&2h|OU=`-tW}j^Duy~E=@F{uhASA4Bf8TGzGA%>rlNA!?*(D5eJRY*J9TQq$OCH&@8=> zn~N?0brA#g3kM$ZM(JrvWx>X?`x;Qjz5z8z%kjjBX+ACSQ%Vj<+a_YqLM{jV5Vw}k z{FuL&ZY{+yLs}t>K_@>22LEGnd}=wL%KZ@6Rsp;Tl%R!7m#t;0k=X9n>^oJERm#*S zO{!(uCtwBIpC()Q2WnwOKG>hR{Mxlrq~dBs^@8$xl=RGz!o4KGPTbPtLny zaaE%K1F1w2Z8rrJJzvEF7a6mLam$lclDg8{e#X&kZ?JLdE--ETA$G`A+EEvzQjMG@)1$Fx7N^qjxLb+5e3jb;|Iw(sq-qZ{BqJ1{D@Bt8sz0W{Arf7>NQ2 zF<*R?{jv8c{o+_bTeUR=YB87^x%{bYke0j6euIppk)Cz8xuY$69Vy$KS);Tbv!%Ir zjvMA!xOi|HA6)NqAy;`7?QWdu#JS{O`}X49>RgehMUhqDv2Js;6eQc?n2 zIg5~;E4B+-xvcX#{O0GVZkWsdT!+zoeb$67!;b~2Y^1FkoHnGgO5b3TwEF_Ry~^5dKJ?zF9#m*-kXQydkk#q{59S~_2qUN{2X|t zYAYhcVrw@C;gWRlf32`Z9VnLn+eU3p7%+!kuL^23z$}u+XJ-QW{=Ce51^bX&n$w?d z;FYqVr^}1gUz;*2qLUaI%zOl_-Qy||PvUpdPiYd6YsR+BS-!4q2G^%;KLqzPj#D8) z7uSpvxlyh7Y5Ae8XqB3Zt*;JZ!f;2es9$7>sY0A>Wpf_k2Z9p8pEUBN~UL z=CMbu4t9f}X4ne;Wo2I`uxzl3bxIq; z!ypQo&7B--II4bmq{VsYb|p&3b17OgNl|ZWLM>Rw`N(&aUTv`%^U|>28m*9R?UNtX8=~XipE>}eV<~rA@$l}W*LCZ{Khdd9TngEc(AhD~lO7Eg+hFv0-PT%c zG7Wuvnwo2x!*=LdqhAan@Dyx~DSC?y38>ng+3n=rV5Mz`1p{c?s|VP+*muM=S@_PH5AIWIO^)>_+ns8?(ioqRnHbG z|I;mF@Y>4@w7Ixa{aVRaEBeDP)K;(zpYiB(oRCiDRq7l4WMEw5TKdko(M<+Zlr%zQRvSrn!u0OXgop;*f3VH$yxfa7%wo1(%-#Ist)8^)i;EGX zkIMs|MAAwZea=S$*;&q51bPNaZBxdW1)#m0_O+f^?9EABqoefGFy>#E`eOEbo_F|c zcqHb(2YhTO?O#}5dAKY8>Fg&|{!&)ZI41Ud{N)Rw)snJp^Edm<-i}tTW{xgR#J?p8 z#>#0|%(eJP2K`hOMMS1UirSaoTd`35p;0Rg3}Q~m#1-}|&(iBi}D_g)d2cmLs`={q899LNV6Hju-pdDo0C&cLLuo zrMVIElppg`Impd+KhWgQdVi=el--mswWTrRUNo2b=~*Y)VBQCZE5C1z@T1WA2Quz0 zU(;8%i%%0#cqaO3_(SVUuRhXbjJ>r*Uf*LuM zPD^-E8y7E{4s5;=BgvIrCJ++3$L-$tr_zK~=t@O4Ij?OdJ&O;C@#SC8jQ@=qTA|&u z`W(uIct7tlntFO>dumq_Dk1qr@*}0sBP&(^p-q9&>;1_W31p!%)9B4FE;vG?yy~{S ze_J%t+_y<`q>f$EGSTqdlcTXlrENv-g`4s-lL{#p7>*M4H}+=9Vc7E*UTF#DVqwHI zmlO+^GwHI}&P%Z^SUXvlUqo!4add9o4G+<)wFPV%QtVx79b0@KATzVIP?4wqW*ip; zn=a*z;wo@08N|!rA}*sX9DQYmiSpO%L+ODi`R9rc;U8UAeRU*P`x{pu|CGOgCod%I z03D@q_-b1kdRv8`{dlQF-tQWOpiITi33=57w#8g4=A&kj;Ly6Iay=auUn-9nE}+EU z6Vg!ifGTHi>cr74Q!Fi|*r)88ug2mD^X1}-Z*J)b*hMb^w6p?q>M(haOuW=;H!IcK zi-ij<+Z!A$=b|R0IL?FcuxDu9- zgYe<8*F@U8g~sSp-qcu-L0misx|ap{ra#{q=K89i{U_^rPQ!uQG4r^0?xMX^J_cV% z9>C$(jH2bZq7=?bh3LMSA~ur`aKCLvq$;fQW)JBDxvrRb5%vIMxTLgZ0hZ;7%1|O; zoOAA&@oZNs)1cg7>FN;Iil2o(fEA6hS?_a?tpSXL*}X37-HL)5-|tApdcmKRnVPzd z&>CJx>(`gvj?bj&jhZ-VD>^62IdFX{zPuh=T>M%X)oH!EtUax+hCr=b`L)i5wv(iB zg4%@p9b^@IA0$PWaNGE7u__3X4wmT9ah_Dw$RGN468D2qRMP3s(F1Rapd5?IC5>)O zy1ClW;B#rA?dj1?iZ^RyVJv2?0Vh44aWV!XRHvC1c{k&haTx-+k}T4dPUF88go~p3 z@SF838k?TUQV9imbkjD<7ag^VRC>%cMF`e>#D49-ce6)(@vIEtCV7gB+`pyWFOxv965Zg0e9rOWc(8XP&%4^`Q6ufCC| zY8-U*8hU3bSDmhF=oQ!@y`|l7aNH)yOQx&pE=Qi;)kPB`9g@&@2!Isv*8?N{%UQ3*s7@HYB0`*O9E zcYVot@_R>hP6SYOXdOW7lhX94>erL{x?b&Vxv%7)O~L&D!vW5OXDij+u{vEl!;OL@ zK%YY70j#3y;rfDN4zjhw`440OJVCL1<2B35c-7b^{j}(Jb0|i!{&*Ylgv_}p7iW2{ zS5bG>F!jHL(6rT(z%UEE+V^Mg^Ic=aIdCanaG}_rmt#;ZR~+2} zTk>Xp*i6E&0gS@7>tR-Uvh`^hbunuFs}Pp--9Fg5#r52rjgCYA^C-m%vARLO$Zt^& z^18Sct^MZKGjjkfvP5VCr!9pPa<&OTI_xCcPlPQq*Tc3|H(^D|@;~=*|3t+l@;@(I z@Ve6ec1@b1|1{s#PRuKh1^r1U&L#2TLu9t>T_sfm0K6sw(!T#-A?u7MZ-AxiOnJ0y zCgS#aY3(lXZPSFbwpBmUcH;4cX>HND5>ifDf9hk=40`@K+z*n9p}2_X3UOJtN(4Ok zSAfp}p&u~*>mMi{_xf7k+%{f%hC!F>8` z4V7`c@t4+k0(_IOyl+xOjsb(d4gO=$i`C$HHu1R>)xtZeX?`pzc&}L!PV`x-`2y6ts*DG7E-tvsdH zkEkcCk$uJh<&QF|!d=N3@aGu}YlpnmcvDmcPZDJj$j-^q6(~-echbpN)@lLo{cL6) z1j2D4jJ>T>E^USFIL-n-<@7Z6D>;c0PV9qT)x;s!KV3hx$qz2UWF2TN>l;_dWBV+~ zuXAx^UDxs8$r>msMpmFXxBSWK8zZCy7YFtEJ1tZ(Y>0WdP z6Uf6|`n8u~>mizC@GJ3>uYgGTm=3X-SASj=V^KI>++CIjO`=(=0|DL(-kV90tWt0Z zu^ydP{?=rTycOX99d3Y*yTSD%qxge{6HUU`YA#bQQWZl%ltZROdmP;i5@tVWVxg1F zj=?kBb99kgkCSnY=5xc!*{F`{+s7}|f%InY&^7WVHhxg}?1Rf%rd{-h-oavfF|s=i z%D#<~wMLgaPB4<)og*WbtWvaWXzBO^-!*Y;vJaA=mjV3E{%Jvrp%fm!E3LN?*b&w2 ztFu-k4z0p0H^NqK_Yy;fc?tjZqj@~86As97i6!Z_;3Lm4;n8yjXMFLO*W@wN1+5X1 zjgEBZ;<)CmtUG&|-Y0P@(Tx$mJU%b0H+LktlDX>6f#PZ*Z)1deaa+nSJe0&taN5&n z+kXgtPjw07fM9r*!@PJ$NWlvwyR=A^&=GndzC7bVwj5mK_My>O$#8q&_dnezANN|ka?u`++ zjl021@^E=c5-VcJ3U8#p&KxJ`$}e*^&70K&2%e?6(fis4O(*7HWBf_TC*1k%jj=Uv zunSKZErQ@!d_&ZYWc@DmbLezfJAdx7&KlOqmb|V>H2)|+Xpm|Zb+7TOSiX&;k$#0i z&s?pMqLVp6)15RDnp>OW(J)U#AbuqiDi) zMv0ogHHbNkNGl-uN_sbtPSYd2@&{;xi!5sHSGrGb|3F$Jc#ijKVAaPDdCSW~@u52A zKbPs_-QMEgGo}fd|8>-|I3LIoRQk+2c7iQJerZZwvJ<}b7C>GbW(&T{&-_s2e;Y+n z=)IB*VOvAN$h)qVX~J##^Ra{j6(y!@kPGE!C+@V`))*E`H||ds0vR8_9t69wT&blkdx!2m?0Wr6$V!}#xxDogGRSNDxB}fBEJzclnIPH zzDkd$!dx75ybWz`O}B5XT=XO-FxOlXz)h_R40i`7r2H0eX~JJbx5brt5JaQTPxtju!*=GpPpzIk-vtD!C58RLs*aaIJEKDwr<8kCNUvGh%E-m=PFz@uip}_yP}{bvt_~5p zBx7%}%w8V1w*0xev{23xv9AmB*Ey>23)UFF@9=Mh`)Fh%X>d7c<#Wi*ONqp-@pt1Nc6lZXWKw(dbK@;%zJpv$z0I6 z!D7my$g-cG{q(YMAD8DL=Ro-?`q)#=m6q?C!Wzc;^$Rrkx)i1EwpXoO-6;3|?N4^uUX-kMXCxYj0>-&W%DacpTq%;%2X=|Xs95O2 z_0a-fOJaK7d{fmOh!Rzmbcoi>txlKyvl%1Gk)w4H}a*8pS?BnI* zQyv>hDuh?U2e)HM;8k16Nt5}A6hk!*hfQ4z+Ja>b1*T;cw4^lb zVfYVpxSV$at8QdyR*_+RWHV~^>n-U3DN2g76l|S2$xtzz%w^mz@NCzDjeRw)g&6`& zlXDRo`r&6}LB|7v*)tWcSX3Xwo!h8F^^BF}IMb_dM;)-P5>VXZ^`Vt~hRbKmd(v%g zV|G;EVMiyT5rH|H$%iYYA}$`(vF_19)jMiF#pKQ(eNYg+c|h2U_y@v=pothap}vWe z<`n_J5G`@>5-&ZKshOg;qfV~I$Q)!nY1ov7?lJCx)-r~u6@8q_EA+raTw+>}?0^>c8hzw>-_1B%L^ zNiv#kw>Z%c4Ag6kt0J}q=hTyEGAlCe>XNxilBqrV61rD|1};w;*=l}{p8N;vbN-CT z6lGzWCd9Ju;m!2}LJb+;OZ##;vsU%8T6OulLPW!JGP&!!yV6sap7MJLe7BuqRqz4n znZL;t!32){gfb!86D@Njf6MeLW~I-GgO5BsV<=4SBn%yv)N`Gy-_z#S7i9d_K>$4G z|MqFJez_0-dQxd7XYn>GPc>Rm@z#<(hJnv8$Nk<%B#}%AKT@LfBsv z9KZAft`tAAM{9LkEV@Ke*7l3X&ka85)M5*KK3m8$Jy7WJOUg?;gf$@DlfNbD>fl8_ z`CXKSw99FP05G;s*pW~9O|JkP)`2%tWETVonkJe&Vn2LEK zD%qboe9wx|r)e;$|K@%g-WPZdia2Hf#B@~{$fo~34M1ZGS3%B>G{$Yn;At3l8SW-A zd z4yI#{WR-GJ`$XJ4vTS`9N-P$Vt8GW7psJIgUlAue`%RXH1hC}65 z3S~V7SU@?7$S8_or^0u)lYzCh#4d|aw=-tWHaExhxojMIE)YP-p)_}G@3LBWRI5qlJq>gp;$QcfxTM2q93yyf7N&X1NJb3?eGqx%ig^g64&u630$KxrK3PJk-|cU-wzOZs4Od4(F$#XljU;B~cD+)wBqV)1n`mCkTPnQv?1YA%3Z z(9fA3m?r^_F*{Sg&G&zMbw3=giU0rr_kSRY2ZV|p&na@I#M*wt3jy3Gt?8d(G%vQ@ zsb!VpVQ22u+!fh`7{X|^9imfXX(YUj^lKN0 zsZ?z6Qf=^3L6vs~Ct@?kZ-;arN~?;mif%j~3mrpC$Z5wg&}fs+EwH3$b;-p<+o@ID z^tgrl+PUMkAkT`J43|qyVFS-Tq^`4V_$W8Z*E&WOko1!gBMRbzPJz*)Jk23syJYry zvbx^L>v4WMS!`5S)2PN8FUn@5mE7A24f2~wuV;*VVA7*AQ9_rq4$uEq2kr9gjJd0) z&cccTf9m)&HQBlRTs&d_3t876Jfkqq>U~ZLjnQE>2Ie=?nnr>ZK*nw9N*3rJFG zwd8qB57hjb1eoO}Ne~J~cMD}dO8(z|jZ)uQ$S@7Ss{~l_{I;e%0 zAdAc)JEwSvdxl=sIzYMJ4EZlr{!QNNee??KBc=KOj@JFe1$fT&{U!l*a;<2UPCiiK zP+cuS5Xb7l7k-lx000xh_AWndx8yG6s_2S%#@D4!Bog)sPgQCoy8-mT5D>z0JOwTT zQipQGjrpjoW4R@Byf{U}deyHqgTiC^icxzKeXOZBvzk?cKah+{`TBZ5+@V`)7xMieQIS81!!cyhkKjAc0pSO=0TzdhJ|j=)-|S34 z_{M0h2dXOGyZb)J;_jIt`^YZ$CA{ujD3J55nmaD>Jls(- zBp%;J(j74G=1w3z8l6_CTWBtByYfYrI_@%V;cBgU0{E*e7x#FT+Og%TUe;`L%TTrCg?qrE@*&8=CK;030%!m$x*RS|6TFZfg z4Vq56EK<(cCeZozguUK~Ou6k1B|4Pko;^_GgXJBW4+E(43WdrGggIhJ^^w7BQ;H!M#Dr(_MMvM5-93`T_Ve> ztrR?AlD~z1IQ9|`P`4vt62c6?k7`JK%Az6k8vHOH1)hxysW7bfD3|A*BU6G#DC_cF*%8F$rT$x&qj#(}GW+*3d+BwI+hzy~>CIrJ{JW6M3p%x>o{N%IsmPaIVoQ}= zU;p&y5KS^8L;A!%^K+%yjhQOe)-(J@jNonBDEErIOVRC2pWekZNqYMVO=WR#lTEsr zd)g;{of?ks(1tN2a#jLcieDO-hPf|RZic$AT~4w1F;-&nL0%oU77DDMLpzr(tO#nO z*JP$;Vw^^{_8xJRd86OO9G@>P`s8)?q&Ug*T|$EvK)87G;m4;gqu9f!DOzq<&HK|* zBu`(nL^90W>rZ$b6l+X`hPs!pOI$E8e6|E5s0f4}jhsB(TfndbkQE#Jk{4#+-*{-cL#}jS7Zj0?%O6#2qPjtap%FB_0u^4&ZzMkfp zO7rN3OWP&RhL|O{T__B5UoIcKo_?2<=pJ7`M7(2?iI;dK>$hoov09u{tp6HXs}GHL z(_HRwY9AHGE1fI(E&;aie0mhg-SY)>9)$yE|Q)d7*jKF2tZ z7SpX8nuJ+lML%m zmmEKUCMa1Junh~0@w6r?cML&BxnVdTl%FkN^93&3U5Xl@u3+*#>{fJdbkNMsp8PTk z`$LK!@WIk97d#+bN*ZIkX(+O}*~2q!5oW*TY3z$t3cm7gx~(@xEXwSUN; zv?Xdtj@s^j8DjQ|j|@Z9!LtI|Dw&*D%#-B^vXMgZZhR+&&JHwvI(sfzz7%FE?Q8=z zR=194Nqg?P`jMyD*~BZe%l0o1c+uCl+rwBi)7NBq(Guy02St*K9Ps`$P`2ebb*8mU67p@X~v4M`}R& zKsU5oYt+w-xnt(`_BPq}TiC1EJ?6|)pjuFG{>A+$Y4L8%$lM}+Nm0b+50lasr7jrN z*Jb8{JMd7}%9XCvyfM(Sy=B{sc1U@oV&=M%`@A?luF$b(zs&O18k|k*oc!o>Q0E~i zoi^IQx(jFj9d8dW(79?TJN7(M+Sf8&J#5v=aeCX5{XnCu(qhGfZWjcJ5?R-tK5cwm z7kGLptM=&?kp&}(E9p}s+InEa=ur#H`{eC3I$2%!NMZxy>q)z`enmiL_9NRhcqUzT zNh4!Y^CNp(_Fp^N?BG8x9JT}=HyP+Hx_c`1LPqa;c~|*P89hEamapNvy7oD~fCGdb zF|rNV_xWV>L*a!Gb4b^?x8j#jXb;;Fls$6Fxi_n}z-a>j>1R+FO zayY`@Xxft>ZdX3w%Wm-XKTlPA|9kLs2Q{vXw1@`F}8Z52oN|;1%JWn>K z%ld^$9hoENj!kstI@-qc9sI5;7wVn@`6BPkWwtxuL}rDiTxm3Y^I?Xy>eu_^+qv5r zCRyy%R9m~?m+i3k=b7sIx+S+!f14Xyc;y|&D8_>ESIo$-`#(=#)4MFURm?Z1AKvcM zCwtb$6X$|Jpa)f#*9@I?Wt;Lo_!eCpBUNiQ5&`IcGA-;OAsRIo3cO2^uZJDI;|%5L zc<%5B_1}3sos*lp{EgFx9lTsQa?>ji#Ihxj(4@dUNBLEOhqk0+{Thnx$`!jf`f;x5 z7=2+)xnolOB;5<8mH8C1cdLxJ1;Un3a+?u`XAfq6zo>q9tx(REO_%FAyZihD8A?9| zc5TVvy4e$^n$NJMCv=yLm^C-cdn{^$>5#{9G1h->EjC`z{*dA_ z3kP+w_FOX3n_evrkAc-ZtHnKe&D0({y(zd!!16E-Oh~IM)P=7dQlNiu!O;>X!x8-4 zDBj6WpvMU9v!A(gL1!h^?YBD|&T@T|A=WOtlR>x&`qH6!$B@mD$J}h7%;o#pVN&wb zCs(%4e;{f7pfX(&oxidJ(>|PSL_wZ^TZ)q5CpSc4cBfm-^d^%drNnm5*^Zf!TA%J& zuB4;8E5kZ1SwCdh$CExA;zuLx<~tU9qz5-6bTP@-7en}a-T00s4z-$7CF+oMV^XW+ z(Rf>}&Fi@LjDIDIl*{NCZuK+DvKI?5oJQ}Ya|cVfg}VY+n5k>9Ty6LpuKWWxX{M6g zhJH_?y5vgh!Ibjk4VL`ZU1B{SoW~_t-`lh>dk^)+<+_=@0IyEof)<-xavia!ph0Aj8568z`q*Rim9L|MR{Z@5@yKNrrgEi~RRIFU(N? z+C7$^CY8v3DL|%cX*DN&9~zx%BalT}KKtcM6R26ozPc=9FSSpEKgxFVdmGQI&H20V zFJJR&JHi?zF#9kch44}GA8&lu4Op?^g7T|1X{tEyx;COT$RgiJ+%mcP*16$~9_{aV zan`~a-)Y#Xof*Lyc6OJ0qzZ;CZXWk=s{W`MYy2)h&(J!p7bT+~$D@-LEG`ZK6xz=> zcF$P~%X}yb=Pu~d^Ey?2NoSD)Mo-)B0SHx*Uc>p9v#bK2CXM8!CH=4u{v%^-TRW=1 zhe&d9^RbUIayUoywJr5<}9VQD2fw1)O_~)h>mTKns%{4N98potBE#IgfLk&)%gDR9AbA4LL^ewN0e|r>j z2n~K6b0MKX%xO-B2+2KAWc~E`tn+J$lXr=PV??&s3xBfM65M{(NCm%c1fu_v0nE~+ z)2#q-uOxTf6RbZiva`aO zMrJ^kRm+mKb6P_Tla?KBc#rDK)#UZzC-nu{3ePUo^Bv3d%4@iecb<~Nx%^r#NF>I+T)JWj+Nat~ONh_p&`Uz|`t zdtLhFb`L+3mBP#6@>u%j*aF1+V28j^--hRYX63dl^cp;paB2_q1M7OGAMz_Iy9H6g#ai5* z1in*wIgRP$UKWxiLTOJCR9>hG^rgw-a(FCa&98!h?}UvEKv1W@fZva7TTLmD$!hx{Rd(IZQywsE2g7~TS&6tp2hn6s?SVkq{7CA z?PLAd8UFh;L}2ANo*AhztYn?)>m_qZRi>Zb@6wJAoZ^ulh`wf!)Uqi}7+bl&yl4v= z@KVbteK|z>dqLE${S|P~=dRlN&DgdCFHRZm1LEn4lXrOG!wtocd-uQ;uOY6#*40b7 zc+hdf^E~X;|J#pqoKGQ)avJrg31tf#BJl*^^YsxJDx_Lhccf3z*>i z9A#ix}O=` zN`U&QXx(of_+jKS>y4||Lk@_$Zr1;S%=JK1MMOp?4tQ|uF2B*E$IppfRzXi*)vWc^ z7XZL{-EoNTiZ$>~$;f!`zJs2at%;qHV!Xk7Rk`RtCKAflG+r;|9$)c;JZ{D}vBDW; zF>Fh47(0}TokBEMqCrF65&LABh629)gNjFBGo%IT)Al|J8mRq3#8@CslwkV0G&|g+w!ohjC4Tbj-BcY{W=^kjCtOcLdyl?QTG$RDlB<8Lvoi;s z>zILsD@^pDGW`k6GPxQykB6F-_%EPD$|_Qhku!@xa1+PtaD^B>4q@wHX6EoiVlSlmD(fHdbTj-~9XsNA$JzoM z_~CArD9b8)+n<%Za621L;&T3eZaG+=KT^O*SD7)ua@PD7{T1LHs{R{?IqPp-oCPGw zS%Zse#9+ z&t=v~6tR)*m`aa%rGqjouPL1P3al?ez!ZF?$(XROyxxUzSJ~It9f+KX!`UmXXtT0jI^N}WJ9Xw{NG`b4B$%v z`=NbEdO1L=8qnZ4<>kZp_FIr0rBO2Eqwo3kjmXorPZByt8Y@0PEzVJ9cX%OgaD$O!&vFMou8~+rXROH>wqR5Btr+EeI&HyNtY~8?~<>K5Xlh6LhrT z880d?Q3aC_=vO+y6swVF=^|ROSLirzUj9ZOi55Lb53AJdeY!Q-r8i0zXOG^RLQKnA z(-8!5jqai$>dfpQZ3o%czmsx9?(D*FAMHk>9bsH#9=OMSq0Z>vO1Gnf5i`o)C<;Zq zk2;cSs-v0*!Bdo*LALShovC(?AMju#aA{~GNOt=ZU>Hp}gJ(e^=8r@J@u#_|M4oc` zk8VmkM}vUa;)auqikYo+tG+MMzCOrd!@f# zBV25HM~1}|aOXTv^hQ6C{pm?-sV{c?u72TSh@w>9O_>!*^YyaV!jVeEuVc_|28Bld zcLq;i0YEg1>0j~Jj{4pQ|Vs1~(RNBZQuErbBHSN)@Obbd^|$at4khKP1b zX5=1XRpbUFduvJZ(o{Y5v3~IU!G}R_iTK4EZowHQ#~Iut{D6@fVuHwlSJaU~$kQxE z{=e>5?2a^cnqU%uMROFzv+*$U-JgM{t^&+@5zkcCVkE&BX-pXfj?^DP&tL;N-X!1_ z?-&^{==FkwVEusL#SjTDANU>^GK>-7fie^(MaSXtM7tK!6!JVNN^0(7XWtE1_p4Ji zJ349^gP>@!$x&Dlqa;n@*y*xv7%(7$GN{B_R3>?ol@s2!%xQs|GZCBBY%GW97Ys0 zGA;EW?%unH;0*6kFcdR1)eyhHim?=w#zCIul*nm?o9)^*e_26aPxNj+TFyjFy&YJ3 z&mzO`j=Rpj9cc#FjFJ0gnws3V{p|3!EjdbL_14kcFR&GuH70lG2a&s-?jJ`cA1PZy=^f}mFr^^vgjW78D=)ov&-dk4S zQzZoAWxVZ8?zZEn5J`-%^#`Tfy|P$C`Zn@dq6grUImyy^{*cRj#y+^Q-of}=v)6Mv zlamLFWZUIn%B{><$|?Xac42Vo-9%5z(Bp$^5nC;D*fuG3bf#Ig-OYO|v0ThP*0%Sa zm@E3^E`v&04Eb2%Xb6oKOl>z}{>in2x#DrcKF(q9Or@=NG9=_?r3Y(?5*q_HEgJb9rP~E_0Ur9Xi^)90SQpo#?)+p9huz<>mKh zH$h|p18WNh%BzyZ&x8}qke2&?p_h-Piz0lP;LEFeSoNOTZi)ynxt&n~k0X%xRa92( z?*elK`)<`qu7!o4p0Aa=ssmY*Eu5fgwKuALi)2tQ@r@-HaCd_UX$rDfbU?1xsqXhH z_{) zxCX{aVEzBcnRp#6mM_N)%)iRqo_>o8O&X+lnC{ewgmzb6zi0OOw-Keo&(26Ytdba0E&bH`_->-~BV&`tN4C0(*17eT+67SJu& zsZ{WwVe_$MbQQ%Qo@^JxPJqfAp^_ly-7!Tp;qLwWPqvaV_}$BtaD|un@EwM-VL|3Dhf9nTeCT8K zY%*l5+#wahss+?$YFLGDoxyksK;eY}J35<=m1iMFQiKk-ow4E|*Q+}~EX&al@0`PP zU*)ZvBiK@G(ct5a@{I=~XYgpgr15RK3S?{bA87V;UoPsynvfE*wtqA#FPb_OY^sc(zZwW;Nkt(1dReBK+DFGry5h5*AX(1E?gpTx{`wsW{eb;*b zVUcyt$;>%tX0m60%0^sBdYTxMGM)k#+{p6J_n)(ty1tG-j}KD{+Qlk1E!}WtL2@Uo zxzn6KtRCK7Qoh*zQrq>NxUA@OQtlZxJILgLdBeA$tloXXl^M|QnBX=GB_RRN5pw z*Ki3;B3@>z;)Eo3=&{mE2NOU0G%xBIpB#q;nD^Vg1Qw6CO4hw0$o&_AhUAnudh6vc za&Xj%APc<#l-Dp>ER5EAeRoA`=!;QM8pCBJ2qy{y=xOwb=HTW>lkAd=QybYX&^5Uv z$CNA?MBfP=d@!-%;>KxDq|57B_1>(ukB{od7m&*;HN`WIK7gtP`HXmZ{LtFp$5BxZ z7kt#O+d&NFx`&g8dvcJaUlW~e=QVu3SYt*Nv0w7~NT-(BCq{!(blRdk!s4h0+{n_D21|F9@=E?#p!od>&f|I3K&{9}zGqEtb_6Ab`W~&oL0%#u5H;G41=YJ+l%uRSj3tAG)s8#z`f91} z{ow!et~Wk2KpiAW_C8*WyNWfxqu=X=S^}{3;%zGqvsF#zoshrFNnKwoZ&kP5p!TwP zm>wnHDKCfZeR8#Xp8A#v2v%_Fiv5(>p9|inzY;#ddKb$>(#++_>)Z|x*SHP z&fn^j;AZ=zf8XU+O38I_y>9c37Qy%7UE4YoV6j}kZLAo@P${DKs`zC%X7-MbO$=_- zTzY=}Y5(gPn%iIXI0P;RWG`u@=nc2zB=HA_EHuJeEYwb{N~p&{Wc~E|IY@ zBLwFmi>BOSUZ+y+x{lv=M19!Tw{$%DXww|o&G>%8Fe3<%f+h;`q}O?+{4d|UGESj+ zsK4p8rX^~Bhxz)XWf4J9xmOAJDMlg38G4W72(NY4;9kbf;|vz0 z9W^l?xrtM=51*EsP{P)A->Z>8SLB$M0mZBs87e<^#=Md+BJzYWt*a^LAA2{WM&e>n z)GI~~G5tJYdsJs`l@$7?yMq~`xgs@kH>-34Sj#jhwgyh=G;4(c&Q+IDibXwfLr(n{BJg;xX^P|_7!Aa1FAORFV z7*E)^Da!g%?IrEJ286YhgCp8!0815~sC@A(C-9YLO2azUGhV+d5s~AX?htc!a?sdH zG>cOQgjmE(t=e(C@0e!hbWz$axY9k{FV5WXo2I6uI5s3S)$+1Eop z9xyZf+8@m+s>+KJQDWy#<{}RDU6k7ZAyE9w8*lc*z{e+t_^m90v(Y-s)?e&?`0cHa z?k<+m5RLU&_f%9f=0o^k3S!o^-VU&BXSRequ_GBbz(A~L5I;5U;Q+5r9nakn^gUjz z2ggX*Eg}s9HsRg*#@GDHGDWF=i_JB${)o_SEt>YJskV^NK+dQ49gRy0cf|Sr&3ow(PlA(Xj#zMHii&T2l0lj_?JhE~gl)Dd00=!l) z-?bHGrnhA;-TC9?4fi8Ay-t=c&3}2);n&*6u?}t9ZxK#+Il8DD6;Qmcfb^n(POR;( zURAHZX6eS(ODJc*YLzPMVwCEgE-0f&bk_QVjy^W1peJdx7!8v4BS|0l`Q{%X;ctvwB z3QnpyBeb{Z<34o7SF|td>znKIa>0EvAWDmCLt8lyOS_2Nui5y*vs9Jxl$mXnspN?x zS%Q>VF{nR4yyyn@t&5{&b0f&ue<9oh0FDER3?LT?EJp!R(tudWX0m#dsW+vr;gWVmG|-=5AF(j->Ubca(!)lU8Caejygf6{MD7_lQ5?@`qU{L^Ty!uumjXy*90>TBKl zZM@HY%-04zH7;Y%d6+%<(g@-&&{NlTGXmnm+YjZCN(~Za298cBeI=n!ush2C; zCRZtW9Jhwnc&)d@3dZSFINW?X=gJY@Z+gD!qm=0@DQfHlLr_!0n8Lr1KoHp9k4B}l zoO@a^o!}AIk|};?;A4oo%x2markm+Y@X$n}U4|e{Q0C_gV?e?NkD$Ec5EC7mn;Ld* zY*rbjsF2<9;VEW&A-36J)fMUs1@zKNoeN)`ew9v{9GmzPc^+S_ZU9|PC1J0|H|7Lo zVvP^_sbdB{zPbsnqIbi|09&Y{e<4;0H^8mFBi~t-LYOm31gF zE*AtoW|in$X_bs|oc{S1?I(xFO}}mt2CyR+6<}FctvTCrLs`IFr|L{XVv-`jSmN+&#Fm~61V*1xAoKG_zk{}llbJ* zvwjrBI#35;)mmY76_TD3i^tdk183_LdBz7CMyrkxL|-(mF=MIKA}Qe<5DB8Cu|U^7djC| zB`X?ta_}`g9sTu_0Sw9hkJwv?#Q5~s@D}~9c;VoD|I=hgn`H&ES1W4Vj(~B-{TZJO z$hxGyNB6Qoh7&_+@4qO|xkR>{uO`_%i<4oAABkH;4;zEIsQgpd8&y*0z^JKlW)n;@g4 z5x&uen6!rV8HooT8Scs5`--t(e-OOg@42EJ=RPh)iAh}>$8%iN7bdZ8clZ>a?aMn) zoFK4p<03S{?n@LrT=+P_Z`G_d93W)Dif_=mV&AlEiBWG>AMOlQlvPGZ?%OzqO@URPl6D6Oc2z_T$xMXMa4aZ zNtfc2rsGaA{YFG`K!s$>cl_Cmh4fW*(8zWVw9J>GSOl7c>Wq*lc`5J}cC;3yWrTd1 zW}E%oMiy+3)4AP|K(6vgJW;Ib1+o$8?_5t$%EYe9ZoUj8n`|Ov5z_)wjQf3t*h(!Y z?ee1irOYBIW@Bu3N&hFlWkgh#ads^(GhiW=DgCZs=R)7>2WeO8{N-_;qf`0UiO3B} z%Z=%Hablsw&R!vNn8;P6@*m8On}rnoA^$mgnC z?Mp6pov**KkUI{YWjy~%G9mEVRjp{kM2U7i6VdZRfdO|Ms z81yaW6r^3NCn11r0;+{!Wc`=o#d>k5@R85&Mu2VT-Xx-@OXlk*62=P}D@2iL%(TVmDVCHOuc>HId)=1I6PdeBk=4Lf7Uz=( zz5lVOpb`6NTpo9QMABUnxtK%8Yf%o2g?vh|>C^Q~69r}hcPJtrYAJRmA-W0@pzZ0l z(OTG=hiBVgli;?KCop5kHbRzh$2JDN88_{V4p6z0nWTD-&d994AD<5o|Gz zg=`*2$|AG?E=Vp;3He!Rmdw>u(t-#_p!^5)kLt*xnZ*=;ocC?;9`8whiwZs)M~0+H z*S>M2YpKTqL;e<=aU|hMhXoY=57Zq*iop5zD`!D-aL#SVZbXbb%m5;g?W5G?(a^9> zt1JhPU(({wc0l&xe#3&k5AQ-FftjzZ2wE%?*RqT+-Cfh(`{hFt+c$0bjaFO2gN&v! zZMxEGaCXcW+-ASm3Fx`%$C*O&(dV`d)8btEQztFvO5+S`ElMxjPAyQ3R@3B0>Q&JO z>LZ@BC)vIao<}i7hjVp%1DR(Zi^$HD*7uki{ue^K83$tPty5>+Ih7I=aWVG4N4LoG zB`K!G1iFkrXx;$hz!bve1&l)CJu_rC8K%9E@B%Kcaq!tbrudlHVtjzCVIO-y5{r>P zjy-_~g2`VIU)P2~Si@3~L~q-~i4bOe3CnZ`+UFc@ocCLyQTdYH7^tJ2EJbG9CywkN zp@A24$6vTQ9!KV8a1FOSf9o?@=PL{bd`#RhWZ)iNYVRLfXIBi?z@7Gw(3Dqt)D}Bp zreRWn>D_dsjxqHPwd}LaFD*xPiwuk|{*7;uJ#}j!Q?{(;LJY+r{P4SM zaANnlNtS@!CG^ok7Ju;A)??8vsl=g*4Q!zhSn8+Dl003R-YCr;=M#ahs8$t&&|6!$ z=L+|u?>|>n<(K@G*?~=1&%?;%GC@^>Qbs_KY-a?dLE9Iw&yI)O%3NFRH-ROFxRx|=E)N)oZS@# zb3^DEwP2)aX+xa{HUSr(BAerlPLDd>u@V45(qL5P|Md*^+K*o%td>(U6hz{d@ zHCi2p=^`z2*bs%dBCX}%DpzupI2zB7Le3$= zq5Tvc3dSXZIS}vC8{B*k0G6^sfTviwrLZ2+|JH?)l|TCZ3n_B?7qUa4qdIBN%G%nx zSJ2AZy41Rt5Al_5$f2T&Q=n&b5to~B7gsEC%As=V5SNGndAS_=1W2ECfRG@?2M&v0 z!C)sK{8o>`3v<8!&ILdvh_&pwO(+GM$JD{9a!f0x?FDt`xA?walt6#oIVrvGO0yc( zf4Myr`ye2@oRWXCId8OFj%isDl=4_h^GW6F=m)Z7br-+7aO8%NEP{}MVkwunP9-Xp z9bg%6Xh5eOT)$<^?sE!6tH8eZfrZB#S;VExCM*Oj0H3Zt4TzRhR4-83({`7bE0js; zn8Fqp1!vL!3n|t6)V$%*-+wO6+E7isxVX6!;kRY{3F=$5ayWSUk)G70SBl&yQaLa< z*YLkH$h|aD^8!c!ktnD*gDHQ{7}&!y?gt=ELeg&ob-k>ZWjyZF^#q288cO@B>4&?|z{c?xWhAK!Ip@fxn8$2@N`vzm%hLPSEYS8%bi(HJL ziNH#d`Z#yrQ9jOu8!T4LqeJvh+r^O2(lk#yx1pn}bUE%CmsEfZaSkMOBqO zm<{HkAkAPZeryjs%qz!x{JwzPHno)9mB9FGm#gL*N-JdC;@tQg2m*Rs$xtm+;`KGM z`8uIRjx*Rfl>gDNk;ln0(=%7JV}kHq5x9EZc;N-A)Sql7-i+ld zExDLKW2@%JVY+9gr}H9wUT#vV&+W&@jN$G_KI54oH;-R)Nn%MwvZPSy07z+^USp6HYgIzKBK2ph$ zQY!VHDB+Rx`Yrnh4zBF>gCnDe`d^2+9Sh{ELkB3Rd4loELx--hrZJyy>?c(*B^@WH z0mxcWQCSY@K;H^UM#8#Mt%w-VlHan3|KO?m8*QtvH=K^Bqi7Z(TR$mc2m8S6a(!)+ zbJU2Jc=J2YeCGA_P8aDszdZwhiHv*Ex_#(qS!-0jTHE?)%84~^sH@%yvhn3nb|3f&eO}^UPz*hb+4D$>CS`C$^g>P4RlWAYo0Romq6H zgWU+#ky{!q*Ag10uzuFj<6nZYWgGLrC~m0`hm3)`uoNPajKNxeerG z^ke5vJ(TI@m9~)mGYDE%D_W1CCOH)W{hH2!mWaTewTbjbqW@1#G?HTaL~d?pC2RQ8 z`VUlbROV-og{+3dKx1W%FWP-aCXwrVRuZEiuFc|2w%=d(2W*@Zm@yRrAs@yqD@fa; z$T+ozN0%#Fk*M|!!?zttOQ%!A=kKM}5!Z~UYSkW88u%;1c1o_Z$s&$b62E2G1b8hS z46AA5JkF^{bUanmJjD1EMK%(`>20pR$QD1H3@R!@X*oR%WAjOom2^Z*&IXVwwURm$ z>X7{h(->AxiJ>AraxKkqQ{=t`VyuYE_IMo7J2v#Ey<50UEMybUzQcQIRI&7x+F>0aS&5_m^)Mmz7*YE`ot@dq{9>Vq{_AwY9NICzp+Wv_T4++o>8F8aKBsKJ|{pfSD@u|wO4Cs*8A zL&$;`q^^%ksGXLJ<0?CGEZX!rDW*{U76RQ#)4$Zm*~f`7I%Lpn|C!o#nucEvnIYqgJHx#4VKjeGn~_G zfjcL$Clh1b)L|Zd zh#F95tLv)UM1g<il>S-TVgaz#bv{?WSQSK-qlaSHZDS~0bIeY-x#bx68XF;W<;kvIysL_a&uyE8r%Pf%h0dg zJRxAgNW2R%9YoEsF`m!?di`DBY^}Wf?1PjaDDWQpW1sMc(hGc)HM*e_4cXF=li#^! z%4zer$GE2Q3iicUDeiM2v@eDS>X-nnt!SyVJl~wJ*v2O2vfBMaRX-2Kw5!e!X7A)$ zbjn&XHPlnFtziqCXbs#opd=_R*YwG8S8S`j+(N#1yV!KBMa;|F+LO4S-Mpduk;q-a zM2}%4vPrle9Vx$+l#!JM;wnFMIN4v|@7~VRKX0Bb-ZJt?1a3?#kA9DGs*}usP#WX= zF72@8mG8>o@7=l(dViq-bpmH2(zH}E(MB?B2Q$hxso+@Y5@qp&-TjR(&GcEY$X#9A zF|#%mlbE^`~f*lRa7vA3*jUmQc zwPZr1*2L|B8P-MC%(kL(SZ}=CR2r?@6u5XRuVY%o15jVxw0zoeJ~8Wrp%%dOWhb@O zK<|p*hx>VPI=47Qk^_oZ$vo2q@NOM@yBSIdw$l7wO@~Y+Vk%RRBKOao(1k+ZYaO$r zL%=U7)n|P>uY)i?sSt1~G-Xbe@HT@ax1n7n5mFXo&$_03{wtrn>9afH8npb`?W~Y@ zkj@pXxlr`HqDg4JRT9_&K>vl@zv~?1uKvL$D*U|wWvR=_5=)4;QyNO*Q7Tn}GGBi` z)xAZuE6Cl|+4EHv2u#>eDZTU(*kB;I=$2*7c=ze;q(AES;w!Qr3E`792tfs;u@c=k z08zn~xL<-(pW0bDG_DidSGOM;DuA6~%19FmCQOJZQQB{U9Tut5e=0QX9Etocj1Z}2 zZ+SbIT?Ew7twqN7 z)p2AA8#F=?^VVUuh25-~=*1am{GF@juX^zbkeXZ#ye!A7Gp~MBw@iQ;N6a~LXm;9? z%UdEVUDEjqRr%+4q2y9uirg&`OclR)(W!+OBC|ww&LZrO&iiK|&pfZXAOePG=!m~1%i9_0)iqGYTsoLv2| z{sA=Y8AIGIU=g-(()6qso0P*zWfy2SNo20XILfc7?ciiZJ!3$M7T^l`V~_LeC#+A+ z7UAVk=O@QLn)_k@LdxXk9Jfkj3#A%7Vn~WjPE(m+Tj;$(mZrFjF-kvasH$ncSDir> z-?LZ59&su5UGPkcJMkt;*k`B1S5zW{gw`3{F#K+tL1bGGG`O7@T<)%)B74ySw88+F z(mPhh-D^-fu&xh`AuYm&zWv(FTpCgg3>e(dOaD+Y)pYbHG$Fl~E?XGYXu)NMqrff% z8aMaLu5Ha9fA{=CEJO*T(zv9WBw|Q>MWCUxixl>E010LU<2l#6uWh5|`MpD_s8-H0 zYz$m8dv=ZIPLY42J#2`TkP(+v(`D!r+ z|GQ>0k=LFL=tT;hefd2aJTsdDcY!;J7;{BX8hKG}3+FF~9X9^9dD^M833cCN>+2u- zUppblzl#CJXzc0ya^R774vo5Os{57uTjATH3VTPxX@zBFSFVN5a4{l=mnr8(050&e zaC#ED;IeBla4;y+GTFE6vIY_VsOQ9=q_jgpoC|#}h5CZsDKke>$CmE=)PUb7U(>Qa z*aUpk&XyFBx;!V5SsDZJXhzzhB`aP%Y&G9A&32vq=NO82$+)7x5qo69N2dNK zN%BR%aon!pT~)W$KJ8-Q&{IP5$??nz2sPaf*w_PC#!D#J%Bk;0x)qy&aBLFvZpifP zK)eB{ySh(%W++t7`;2$b+0&GIw-8hu1%^K@L_L;~?Co8~(-Ux%DP1I7&82u)1WsE1 z@1XYSCouWoAltjYi|QzTH|5l8N*(}iCfVJnHx$`4xJfsZq9%N-x3}3&oNlC~Exml5`Zg`k+lV|^4X~0GY*pT|UNv}N(s{8)OI&a=Pszfxj?$3f7Y(X)C$ z29g9(mu!5_PSStXf!;2nmMZ_NK}6?e>V{TX`me-L-dg{W_J0=&ML86E7UC3@p=ne{ zzgM@-Zp7}u?QH9eKj7;(eZt9Rz5i1@(M|!e7JB6%s-v;$)6Y?Ea$q=;A?5Cgd2L6pIB_nkb%Hw1fJk4bv@h_}|neZ<} zZxp`2amE|Rw=9j2$N-t&U5d)EP^P(;-vQ}>F=VH}SN|sUXbxv(_8FT-ES;5Q&OV+& z#lqGOR{kp<7r$Bf>hbk2)Dt|);wn9b&d)iv2h*R!w>5_kYP z7eI!Qkb9Gg-2;s-5DF8)$GGUJoLvO11*1_3#2dsG;{9)~cx1QCsv}g?<8Z*{=JmQ6 zn+IpXmb$){Z_;(o`3heI4t6w5vpLFEoBVXjQ5Pz;JO)qOCq)& zj|Y34_Ka0a(wWO&j_k|$L(gpBCA9PVJbqM;CBCgrWVN zGuCl1B3m(XRP2A}4D2I6pnAS#w-!R>JS1NjJe zq~%-*&f>7|QWmF?iOWjf5WYvUBi%f69^5TP4#=JyX#xo{s5uy%Ykj!$-xWCzbEm)s zdLh9B_@a63dG*uw4g6>&$>6lm?Y~p>H*+kz!Q*|0nm&7T3LQ}|qsltuIGcpVOFRC6 zbCS*)&X>K4>dR=^9|WH9RBZX1`R1T}v&17QlbsAuwqZPrY_xe`+GrzD+|E;w+v+zz zdc$=9Cqb8e;x%-)9#3XEe)H#}(^E9snJM=L$Ez8ri&*t(N?_l~7u4ywk;dGVv961W zVdrOJ?7qpt%(8k?a29K51=XgE!i7Kc*?J$>etvbl!*m|1vylIxU3Sj^CtChV^0T-$ zn>tK6fw&-0c)Mha$M*FbR#%~}aA4K9)ULhf2Spy(yDl?*4PP+qhuT_{CN9TVLRI45 z{@mXiRVeMfRrB@MPx1RV8YJc_^ag2kRRm()Bnqv{t5-c<@}uJy=nZT*5?g7@ee!g^ zj2W0&yt*l2E##5dPrP==N5;c-YmHm?QwW}w_0s5e`85q6p6~neO~&op&K6o07EfM; z3Z(L(DH?5vtULTQwa{ymkF`r{0$xbsoeRb8eth!zdk4}mt|it*G`>(vJ*{Y>d3a3r zK@r{3P{DI{I(egK??$ehZ7zg`ldw8RzlGFudD_#EBEy9PJ1mX0k4IF5AKvtutfG+< zMW&>Q>`o>9xy0Y=tvdXtNt9nL`d*GH?ym_wW4X^2b&dgPqug&V#Jk$K;|omc2E6ch z6U@f&7ShosH4?(_80$-85*Y-<3J+%2U2E{&u`<-P&7!3|=|RONSKrkywTq?`(<%*% zg880Rn|FJ%hrRqnqx>R7ey`WdT{9Peek=uCRUP)=dFIN zig0q$3oTiyVJ-#Jx;Iq-Kl@=;EShNVFA|aAX+2y1X*=`HlZKliO~@1@IIGLYqyrc2 z+kuZ+46~d_n%40I5;uoC!|l2x-7i^!b{}z58esaG#Io|hJeD+1Q;PgO)LyvOJ!mId z3)-^o@(q4;(&Y+yrB4x&Wo-KMgcQ>g{SZEUcGyM)v`xJUxI+6nz{3*$3(<8*T5ptl56edpSQ-x z-`2h#F&g0VsEW7mby`v&fAaWaoNsO38u9s`T`LxQv;eza;K)uuaI(QYrt#J#>`sd!f;yV6K5I0F;+sU1^k018FogRNfKcBE{W4bR;=DAmNyMX)V~%o@w&oo16L>u&U?Hp zF@g0szqRIQ_D6MAMNCh@ej@V+mdBS^w!%Ejv?j8iUswP7{JO|ks(z}}JJk3_xVAvd zuAyDJtBBR?F6%1M{ZO4jVdl#HYm;;qUax+9d053&e3=>^A&j@k6~4n%T81#a2%#Nj zvI7b+OIEzW-?qW1)+p{?8j33XxI2EBLPOH3n#(qY^%R zhBG;e-ryRUQWv|)gh`C;$;mJn>6iN8l;?1}rpiDM?BUn1%k_%vYH!@g)%E*>8`TeU z6Yvb`X=~^cSov7XUkNIV&@78QI9?rrk9XN#X&!bYbh2$kuTXN^eOI=F++@(;6yjnn zz^2`3RzR?|v(Rxpw=G)<8*2NiiL{G8HpuRI{_5t}r>nGz6r8t>upPd>NS>-%eSU52 zlDW4OGBvhp_m9W>hA*!5ICYi&$`|SiQwSD1XBb}3OM~;Q@docIa_F08<#a{#^kQPH ze(yPdk<>5-*6mJdD64fQZ-=_XcYm=g3yGl5d@ty)+t576Tr5Lhq?tOYN(fxV+%KP%3Sz^Mx~7+N=ayh@G-bPpHd(RX z{xiUq7wwAu;@C^9~WHD+a( zc9*7iJj5Df?Z)C}&Ns&xt7y=8YZA&kZL@CQk_LGhCIY`RDQu{~i$p}h7d zrM4NLgaphO(Qc)vIf-Jj3V{?9QY$`0<%X_Es{r-ywSbc8e<39?0evjw*TVfdw01Fu zT0#)x2vAS(CiARew4XF&Q(KpL`JC9bF26qlS&D2(tcN$^W0>L(m8%*-Uy6#YJd&O~ zVeaRkZd?v<8rks5R3K0NP<`WCev%7CYB-wMXh0(*MbtYO^QK-O8|iXRoVT2iaEPkV z=aCw1p4ibc5Q>_;HT+GVKfI`N-241`{yWvgAC$^aUv7T)KzCtW+?3!jq9%EmA5$B@ zs=6Niv#e4105a!+E$|5kmdfh4h^H*a#%*6uvwm4xZA9^ybVqE{cpRAAD3937EY^_L z784b$Dfw2-%y;T<8@gLD^mj=W;=%YY#M-X!3_V+w_~S|moWKIjYet7lCd$+t70#SYA{6Z_W5s*0zL-$ZcpLu^^+&R zx*8499D0ITB~67SL%+D{h&PK@W}W{|FgG!v^iUsspU_XC%4|Rp4X6ZPQuBE;RVi%i znQege=wpPUV7tgA<|-?!g0g`*!_^%sc+t-6D=j)udwE*;Zd4w}Bb zp4|k(?9npKcin%vo@**xY(o!=JidJ=?Vo?#eX<*ybe%?jFgr79aY; zUi-$lqQ9TKZ$FT|@WCyGcD5zZ|DKfwp%0x#wym11XD^_K(y<`#K_tVrHyqMUhex^;`q$4CR1&y4NmTv#k!fqhY#(~_kT z;0~(aB{fmb{-Ryo+U7dB3^WPA^Yz^0g3^WA5Id21Ia9=B628*Vcw6Tpn&7Hl{sU!v zddUJOoU(L!ny_0B&6NkRdCD70c>@Lwtd)WR)i&@i<4cO^(qm290+L-pO`6G`|Mx#c z`=hV~bDHJ}-kO>JOSO=8G&((T9 z>*(7Fp4;IydnW*TQc>*tkm$VaZ?Sin2X>^MU{k7my~L&D^ikNsVn({Be^4 zNJ;*c-Zc4WkyBwb&VI4LQ&duO&TCCil0eIC@yU=IlBQ50uLy+8=Pbbtc=k;+2mh0~ znzSDYQzt0G$jP}Df1;7S*NIFw{fpR-88Q`@LSJSGr@h<16vc!4&9`4vx#_bAGj1aw zYXC2x_nPUAW0%7>ZkS7$=Ufek z9$1pv%JiLC?&*2@AS{<7k|0R=`Xj)5GV)RSu{>^F1EpmnZrY1p@__+%o|AFlP!@jnX_0~AeKb6lC*8^DB!nzPz8 za$-NsTm&kAh$mBT=7;&Z^SrUqiz%WV85`jPr6Okc-4EqyB%BvDO|`oNy~ z=Tv)ef!i;N)8`LDu19N`Lj((YZ$a3=A5lTd2r_cKu(Et~D|UG)(KJ~KVv!?IZrCJ0 z>;)n=eFoGP_~nhYlE{;+=6!GVDo%Yc6`)eYE1xFm=*8y(hCZ4oYb!)h`Dm`K=veqY za(bLVZInaJK{agLWB4`Y=|4s?GjS42$`?pKF3^~;+7vBt>fhHUwPpC1Wa1_2y#XF~ zXy|#IKNp5H?Bu+}Wn%l4&%hV)i}Tcp;`#y&zRn3GHR$EB0RO7RuK}uaZ2C4R0$^Pr zr^*VfW z-^`?8q{-hm8Ec?a3JidL*Z0PwDE&HNRoe_cyC)^8r-g)Rr?)`hn|WryB=kr6T+mx= z?LA(vi8I#Tk}|#Q`>w~*n_(EwZ7;&mb`f1!aI1gkJMv@T9wl_lA~4U9fiHaQ{BWmue*hECtM5hRJXx6ikGy}v)uQ#mWoH5|Y$>X=xD=Q2fbaRS>75&1 z)Mlm)ix%tg9T{S-+OMt_5_w_(iSF{UQY}A)A~lR^F!XZyZdvJ9+$%{IT169Y>GI$g zrDlc7rJsbv6_;RM6b=oOt z?S+`$h$xBgxq7KkO4J>>xa{QmV89oVd zOncr>WH7!~rC!v6Uxk%jf9jfy{E?A|@-;w`{i0;;td@XWYZS8@W?!UP-8l4d+;;`6 zY|}U?%}}5;{%4&($wmy*BXQam+xm15&{N_}KQi$;Ixp2T=@C!JCNU^;n}7cQ5nZlJ zA%LW~)Af(eroIuSOyN3L4RItLJ!wpZU5EeXhPU5A9o-mdoXhU0st5of{*yd_=|{Y% zto6HXj}J^L*QmWRocmGgX}I*Jj(GwQbZE1f55yNZVE4-&h+)iszPV~#5|;T-OnV-G zwD7>4VCJy*X}oho5i-&F^xh)3*a|grGj$6Jc|29Qb5rR+aLQefUywtYBwd&kbL3c3 zNL76H5lnaL+-NNu!Q42(UWjAYh0#@P!MC%VX8eh+Q*@ua!ioBE-B-rmq?1cd{oG*P z04sxLuLwlsmZ(z>{qd*FNBU5LGvKaqV0X)6-qjS_CksP-g)G;J(Is$&-|t~JivZ9H z5|jPRt)F=s$7m;BZwQvS3BCk4<;s!q$JoiRBzo(!Yi#^O zL&lUgyiXMdqZa7%C!f;TseS*YNIQEpTvJ1Fv0aWz_T22_t6%7o`pL|%*~9Yb-krJb z&|V^da+fxsP=&PdyPuX{=aWOfaOQXeRZ6?kU*ur>!-%RcFYAw6?yroTam*eU{a9Fg zbFuX#{GC2+k&ADl`~zy>Nq3&z?r+;cbJ11_^U(Jk6&<7MDwaFUUlabP0(FlzXibmg z^M3&pcl!Ze%$s_J=Xfu;gGvJ&H0Rc=G#3MWa_~5l;%~`US(P7D(!v9ajF$$B0O2_D zS1N|dmp5#=mD&ojtl$ODlv5FO*X?;lV|Skp+?-xmL9eLuy9Zyizfk!K@k*u%e|v}A z*UK9!kpGnYy1nOZiotoh@0|L2yW*hp;+@~Jm6T;)chEu@F+-nDmd=S*d`3LAVFNBl z>1SW|+2LL4HPz2qR(-WSDBo(|Zm@U<7FiFbloQakuVMpNjwbzA{vP34vSf@PAEu z)QY5`)h{Y8gPIFcex0~H8?&7uRYx}$G}YXOE)W>oysQtZfR=9UvoRon^;WGalq%s)h~uiPs0)(4?tf^PPyhyMRZ(^&^J`TcKyv?8I>5>r441u1D5h;)Mp z0tyIH(kVF*3F+=q8U;kU1f;vW84Uwz#@PHFKHum0L)^XXUfw(RIq&y%y{`3F+kTz9 zib^2p0tZn;+b<5<24>g4!4Hp}^`>t83eik@kS8U-%2`^rxji=LlSmLNk{ikJY&=A! zyk*N%_sflA%P4ER*$ge70hL_c2h;`jw$Ivik5oyb8y$UjR$ue&@kb`Oqb*b-XE~-c zYv(xLOCM7|RHKi`4fmQrKQdc$S&q_oV41A*^6_l_QNnHajIJbghnG2L<>$?oo?BfA zZT(&9ibX?xiIZ|wlEvpiGw4oGdJU~oQ^+)P8Ochm{I)$=C+4HoX_Xtv_5Ss$)}Vjf zeX@cA>v7<7d`5G$cN(Aa=io6t3uB}6*t|~RFV=w(h|`s_{pX`-TfA9Rudw2eaKY|3~-r1TnI*4K=IFWgMOUmvH zLUHdVjUG;aTS;T^KN-;ZY-67Etli+_l3Ly9)6*Mec1qLfs&^t}5W?Mzt847Yk1q9=xsnEQs9 z^xfSJR1mY!Q*z9x+wwiPJ0s?yEuxc&HGev)s?myZy))5Z?!CWh$B#@Oqc9p-^ZKm% z&O&gm5n1ezrhrdTQ^pbsc3KTxd+Plw-4?Gn@Q19i07*{-)_aDJ1so8(tiJ* zYA<(DA#w7Hvp;{Z*d;FS5k^%EXJ*7OKJ{yG>#vWWK61xQQap`0>ycNRxep!9@F?4w zHB*>6T54CZVh!$3ndE6}zzcmsq$}&Bwd<+#<1)F?BaxotTbPS;|DH-fB>&ZS8Rh!X z(+^<{AE~!3Dj#pk@+Q>yueguSY5tKcY=|B9rW1Ch;tgq zp%Jtpy$a^`#vJ|&sFCv+qN^KP9wVTG_X0d>prd}(RlQo;cSY*&CLRLRzMk@D@5v&j z(;2AF1kkEVA8hqIX=;PDf>tLsQr^|P`J15eac)XH{2soWuMPZo1a|OMIunZ8g!9fu|vj`K4Ct(uPm2xSJ~yR_}B8Pn7^&+)mFNCiIIGR%S0xwRK0RPR9B$N=dE~WUrZ5Kw<=erwK#}I z>U=yeS;8~ip_xn#nOIXa585=w%=+b63NL#O^V^n|G*=^!#SIO5og3jEoLfy*NM|C< z6%?W4og7&m+^3#6gC^Ung7-$DzkpAD82{bT6xP=SG-W@*6%}l~`oh)UP*9g)n_m~^EKcmJ)gFx_c{OHsI9Y*7%AZg8M4h^@7ViNUT%KO$ zg&a;ZptbQvU{zeOW;P58{x=UhQF)q%y@COXtRZzBB0{d8`d3S=m}NdspUulUyCwrz z^lH5Xxz@xpRj-$?GlhTHKGZ{m%N{Gn4=oN!S%qoaSSKzfK`%%_mzzQvlSg!J2mgBy z1c%oiP;3qNt(M$={1(TCeA-5}|veNi7OPBHc57!eax$b*N%1PHA zS%vJ&f!(?Pw|n|CVOSj~Irxpj51+L!T*STkMKdfprR*d3*sY0r^W5RrTAk(;QE1MG zvZa{_eG^ylFv;BV4hP%Fg-pFo{1rK`VWMwvD``w$))iqKpq=JnM}n~)Z{W)USu1Z% z1e;d9riRP7Y)NWjnvQ7C;^lPkKJYACFcMgQkmMdW{^egeQ_7k=)|KupYPC29}dIOU2;VoTTc zz!Qk>+{dlB&+2)Xom9bh0eW>*2M#E5Eak1W>&JthuQ&fG@uf7@ATX+7yE?iS7654k z{q>DBu=Dle31}eXCE9Z6GAs*76=at|*WW7&eP%uJ5Vza_nRRji!yGD}HD9`CVK2T5 zI7;ai+x>%VFT&Aaf?B3{24>8X#~|{G<;r@H;|AqEfvMZlF;Zv^)|q;4r|}Q+ZD8#8 z(&2ZP9@s?9sNdu5tfQM1z`n0I&B`5_1u*1Gb>|R*`>;oqjR=Y^AFHt_As^qxGiWP_uXbBNGSmYt6mSf7rA2 zp8pCsS96lMdGN~QuM2>5rv9LbeKCVU4=BLf5ELfmrfqpZM(#XrW`C!U$ zu>r!vXFaYyoM-IjwSgv?BCFitG+$}&2k6ygk~fFG;h9sUnrIz2Yih`}1f{>)e93+1 z(EaUkgrJ3)L##I}BbF{sGYVrV$O-y5&`qjzdQY~^U zv-)b@*E@2jN-tzY<1z{|tLDzStRVxs{C9#^4#+cZsnyrqZ9f`vW?lJXOu9g`#kmoa z_Yd-Z`_3#KUeB@kFVlnW_C)*s)R9)uiq|_v`O?a82Y;}v*?8Rj`g2@o^6MN6uJT}S ziVmx#kK6`DRWCv>A6ONOR<0@tDJ0{4wn5Z5zOfhB({bjrafnT{g|z)$Ir=P2w~acLVJ?S0d^CWE@aJ{im7;pe)fkG_6jtQ-`Kq!5o3O`noi z;+Q8v>M8`h8p$8su+V!SBBumRqlzfHAXl9*tK*+v_+0x!SE^TPZp`X_!qwyAE|5y1 zKyuUjVSzeVf8^MHZGF)8-?jt!b1#?gXQ{F!i3RXNndYJ2GaLIhQPH<~w2gja1a+& zr5p+=rkgrTN9VgMiYvdVy_!VX5?GS$Gq)U3W6V$} zf>*Gv^~Cb?p3a*tHp@igy^VN=)0d(_(vSzbUQQ}s{f9L(grURI}SL| z#1ODVAK)PdO{D++DFLSR!-s_7pv451DV2X(Q_Y%p(zewLH-_SuWTZk|4p4;GVir(o zH2)4xyGNu|+t@sKf_^q3Qv#zndfa=MzxTb-l0MMlO9UT16ZrK;{>Mxwqi-L(gRY%k zblsrU^>_$k5lY)o_a<-T7Tv#F*LpJW@q^5C97C?DNVjCd{SF>!y5Qbvz(H|4>kxk3 z@;bSbum6XdXTtVNV84ZssfrW7oBcz}qje*$AKi7JRTBT9f*vc?;=S3dKf?T4^z{3P z%a1MOZ36mSTGfC}30T)+X_s|_!tq1;I193m=a=Y-Z*-QLp{53euZhw)4>amtb@I+@ zRn@}z@Aftvo*U3RZg1JYER_%lu{UcvezFEoqbEw6{|473Hb^E4=*pJ$S{WV@rT{ z`iHgSDHUxM9nnA%#wZDtMgbl-!S?wtD4%wfpwniS^N!EXj|V57=$BU3MeE*2LWwu% zoSaWjzjECXZxjgb8{}Ktl>A-!XDvCelk~+CgfuOa#s2iK4Vm#xkyC(=F`3OFKkC_t zO2_Q`U@kS7?RZBMzoIFHO{#udiMJg?o3LKm5$UYL92xtJb>cDM0F;qb#o+tKr&zGU z|7u_)VB@yYd}Mry6&|YLoAw667aqpQ5#lRfh?tCMv0x=3NtLU-z8}Xi&4)Fg6{X2& zLF90!`=id@NZnCC(w^8`Px06?7n_ydY-3Kh8_MjB@}ADDvc}yrEB)g*H|mdX=!+D7 zlM}g^rDQDB9|iUCc+&Em5C9C5m-xeT7Lv69K&!$= zAOS$Cw$FcEv5%_fEuk2O6vyd0e<7q1rRzTW?}3uiJKP3ab< z3Qn`%w~X)Pat{tHS!C_ob&g~Vxa-69bpyJMFVH!75MWXGt6W;URY z8E%U)n3ideUn|$=v8&pja-+Wm=m}giSar+ zkP3U9?X2?|+03Mpp=S}fK>qf`Cto!elW0``17~hLQ~vFOmA`fPIIcPH6(-NiecTg0 z&E@Z_aHxvU_*%X0xmjS;8Ai~vZH*(4c81B65=!WKJjUpGd8oLlSOK$$bDKv#X>uM7 zBj}?{xEZUu?7>yzKwm?aJO~%H$dK&EBm~$DE+9%h;rh7i>0@fvEUbXSpmq&#$Ony3 zC6iQy3Cx^sT7gh{N}Mb!(ki4}LG}5=G}w;r0nRzvG;XYlr^mU1nf=_>jwA!^mP-&C zX@9DEBCxDR=$N^z&9?FA@}9A5LDogm^=SPNt7Gv@zY8mUwshJ9PtZGE^`jk6A6*;c zmtrz<#MY1d1L{XG^e=@j;&(OLxRO6R{Y2$>7lqdGh&w-PKAnbdaj6LE4*kge#VR)d z^)`W$7|_nQF~m&khEYbnsc@84Adu3RtvMF|W@P96vrXh=KwRTl(&WOf$DE~7lH z7kmyJE7nvAUo=c&+^HENlTRxM`_ zK#{8-e*fSUbFk2`hUebv^$#KnpbN%Yt2t;D0y}I=?2dM!cl5Wq`1R3CCyDBd#vtJs02oOFdx*U3pCE7mC z6N-ip>8u*DVTmwHB|2YNJA_}tY-&&yoDsh~OTIlkOEO+s}UyFF=|uhO-rWvHsq+A9FPgFAv%xh1H}i1q8`&_=n+9`kHzN?;j5-Nls8JpnkC&`>vpyleQ<50jB4%Gd&+Wd6GKM z`x}TWpCYXl!>+)%^N=@ApB=l5lyKK78$Dk>b|_glVP&!ubNXz$yZwAV_>S+6$;Mqm zjcfF7_KWeV8@2dP_w!Kc`NS@}J!j_yH>0i&;|`G9m%w$S8F^B5BOwfDP4QEQVoMhz zHvZG9Rtk0OX5Z6Kx@G5{r}_9NRW~!=wBORbPqpcEM6NwmC1MtnjE95gp*0tb#{g|V zl)5_-8los-h)E+dVYO#q_zQ#Td(tUKA0jnyh}@jK0E>x+l4mtbp)HdAj=CC@tLL;1 zK8&~o;~y70{9E@7dWr&i6*6J@eCg@Iy0FiJJYb+JLE>=3iKDvhU_MXD3<|G)$KP`H z6W{*m^B=U3@lpdn{-u%m&{b6u#yIXEt8W`AKSSeoAZUM@X>r*Wj-b8t(!j6H4vl=Q z^CkYvBipZj3lAjJtltTPIbq|{BJ_CxkS%{t&>BnYJFvQKfrV5()_<{RF5~<6(~`)J zs1N(CSS;nN>Ff*iIfqy`*D;gAw!&oeZ%j`X&!_oJg>9+3+8hz!ESDB1X+m;+g~FMG zBxWR_DL{xV7RV4fiF`9GyH5)xz{| z2NZ6>i6L>I2lCPVV0$v^8E`4hHJ2%c8?*sun(4t6UNb;YR2akr;D2m^I=BId8?GZK z+`}_wGF}e5ks3h$&dh$niWwO{&6Xxx_^tABmWEzldRQB`JAwb&=~Lz@zIC?Q zuVN~4ZIa`BKw?nip$YWzNI-J%4iQ8i<+Qx1ofh@E`w zfxpj9#xd+iV{XW>Sa%?0w-OI=jN;(Ifdc2EEH62QESOVL6hc3`N^p2zNcAK@HZvA8 z;GD*h;+T#day3NW(*!2o^?VVi3-El7;rv+zO~=xx|8{^$jvq)uQ9J3I7r}OwBb4y@ zw~ljTdED)^D4KAD|56Dr4_XB;PQci~xz>GKe%5$UeCs&2`J*eN{EBiptiGwi(I;?gWXvxDg>T6c7X?LBR=2xC9Vq?AKyyDdhsuewP;{bDRiEE%H3KZZ0m6ckn4QwR z=xzsCs8l__O{~wJ|Cthq&-{pa<*fcB-<0LH%zwbn$YJ?k!w-*gPut2_h2Xj$2>yU( z9=Ajx_z#zcGAMj_9`LuJ8QhPsz}P*V+WdN!n=sH=5k1TTZO6k{uNt;s-_B^D{Nh{D zZL`UDM>I;t$=CN13-b)_c+Voc`ECW{DYESF;S z?#Bl!bB$}ZB6E>MZ|e#x7hfTp?6OW;un9c%T2e>(bWcRW&p=0LvGPW^yiWz8r4Z^P ztDIvqfG%`dI~ruHePNlaWw_p5{%u|Mn@?$hjX(@1Dc<~c$;cX>1tv6kXtZ;rsOzOR zdstsRg0E|&;t0MZfp*WQE&U6JGda{^mf))gO8}rW+79n(Tmr#tVs4ki7C_F|)!6jX z0`KdNCz!^N+?lsWNDpSNho=6Iv_NdW#`*FGfhw5rR51f-Tw319nmf3o&aorj3B1fyu-JG?pes?J9;v5PFXfCm=rn#D3m76bA7=$t&v{6J}Lo5>LYMdH;Cj{MWhx(>K z%U9na)@Nx)mp)_=JH32zpu)Fc+g+_XhXd)mdcEd?vGQmCQnP=&hDMjigqs$qWo%I+ zYpm*$_H75{0F7%hT72$s{n5hoAgIW85fzlt=A)7f_|HC`+YE{?tq!RHVOU5~H>$?t z2=n&>umUnfwS2P9y?jRm1rr9b9umHl3+MD9M>%s1bjPq@hRh7-PIhwF3Q0qQYKn+W z`id5C>ZHZ7?NszVsuntI***~%vur+|w6AZ&nCx3A)-L^#kLa6-QgNP5C0%*@0lyEC{sNMqLGfbMI~}5Y+zU z9eDK%bas7eFiuA6uV}tzKfmWD%QI@R=%4A%@eiVKUE}~t1S#vE0)27~XvK)n1?j=} zapi{*i_SNX-A+$bLy+%{P-5NS;C`}Y#l@Lk%p=KI(`A>eg%rJioL)z-Ia3eicUuy zVmS3R^>dgXqSgCqUr0KqQ=EHrA(TkFdSY%9MD9`iIsPQEqfa0}5~12NQ^!naz7!-* zHjPMqDJ0*!7(gt1jQ$~+W!;&8S z-3;8sckDSU>SSL{#U-86Gwh=F{zKmHyD2Ooiq?v%a#v`cG`{NEcaxAjuToXZXRZ@^ z4SNFH(sO?-k%hVr6+H|uAHLj2MiB`1OoH|d6&^`Xe*G>e#M z`Gf`uv3>BJy~J!=h4^E~&O($< zg{O-f+aT6qUQ=aCg6g&AI-UJKL#x;LXuu(Q@S?WgEB`sJNoT*Eoycy>*;nRt+L}Rn zOG$H<&g1FR)oYoDLY^kmcAqVbcb4$rZ=T*7y|Y-x4@Hzb%g-XqeEjEZIL=~MC2?ah zLyV#>IX&K{$h+_#OPQi@_X4HVP<)v)Cq+r``EJ%uc|4%-d^y6Fn5W#Z7MCb~1kdBP zvZSpdZL_V3X|Df_P2kcQPcBV!X)6pI!iuTLRCXMlq_JP_)r9*haSm(n`Ux+4y>uu@ z!neXq;2lx1OOE^TNQi3sZ_9G=)B<7N4ShLurN#pL&(M4Ff@8ec$3@_PpoJ?nbyaDO zbX_U?1KCgss=Kp*S}-T-f$*!h8EIvkDmRZL3VSyT2OTHBp&$MRv^28$aJYLOd-Z3* z^)GmYTp1uPSvE+lU&X=`L0^%%SQ$75*eiqczzxs8=ho^L!qWOC%f-~bU^MH@(%qt0 zWld;-QI;ATMH;@4yY(qqy*JTM*(y{}JS^F=hP`bGa(~ zX=tBD?YNPz$N~Tfa89e*U_0;WGbAa1Aa404u*E>%giXQRfqPHEIEwaYiuTsImm5f5 z8Vqw=;uW%+ivY{i%W?CaCA$O3C$?M}i0tL8JoWXmH{SsQA7<2>w*H8>-1APj+dl}& z=ueX4l|k|8<7mmhJD%E-6GTRml0cRy=6cmIK1YMj$yBFIqhVkN0X3f2K2wrlB-rhE zQ8Lu`@4@gWCLedsd-}Mx>@A|O$PMrr?3NN94U4oa#|j@vg{V%{s%}`GAs5mQqx7|1 z?Vu(JLUuFZ=ewb4x596Wno@oyIRP~m@;R>R#N#-6ce8X`H!>QxCe_RZG|?J)`X3NrXkXO4_#2ozYR$KK4b$ezXj<)&r1aiV%BN%K9>1-s`FmeE60s&mlfmT zmoDe|VO!m#)pj~*7)`*HL~LtqL@XkXvk5VI&VIifT77|5Sjd`2(y%K?{J|c)L^UR} zGA(J`Ny&Tu0S-3#&t;MoVNLQg1|Zz{Gi7`t700@lRJj_7K1qm)@aA`?-g|LzW} z#S;>n8jP zMi)l`*t)W#qSobMT!vM!0v#RZAAAI;OAXSy54tdat$#RJ-}xA5x1r8AEzd*1kP#Nx zG8fro-T%XP#sWy`fE-QgSqW6_Lwi{Hu7YEVCe_^iyF@bctC=;t)Wi&C<(j8>kK(mE zEWg~bdw2g1bF{95$ew6wv?`P2ym0j9!!9LZ`t0QS7<$7NI^V4TJ99{0(A^cN;B3okG zzqQlKPuV_so|oK7;VF1|)0Wcr?QmP);7ILxp0Xw4sQLgi{6N}y(8tF*=1FSOGhF@7 z%(r6?j>ZcKdWNPlt$J)iZWF>|+(_!S4|aUEV?iOYy6_wCZ<%tXqqWUlaFy1AcHe__ zG0HM-HJ_oP;^&X@2BZ>ugPw>7_u`WdsyXlODl!(!J!p^3V!th1sW+}e(VaGvF0kmH@LZa|)r(-aFOgi4&WGdGR{++vK+%0aAG-KOJ_rEw+Kckl$ z31lEwg5ZzDCdZH+CbW^sSKV^FWi!Vth}9;Mv~leae&NSGu32f~AWBR{X-Z5e>Nx68 zVo*qL{!pe_%)t{;q7eCuxzUDB@4cRjfUV{*&V|-6UU6da%`xuaA1biCH^rg_0|jbL ze7vZ1ZQQlMNoGyFpHR-kPW8#O--svp3Q|#=?x*%(lD4BM%fqtd+~*L1t|oa z5dFO zNWBkuAG$o4UNlP1FPl!m07f{=PB!-+#5IyfG;+Z+)tEg9f$x)>6;HCqz_gLhlH}`s zB<0f%)R1Gx8!2Zgd`nxumTgZqB|vFc{cg7&IkWWfZ8dq?gGs-8CTZqNmA~B*21mv- zD{0>^#5i2c7tk^iX^u5Ls7*8X?Ry~k7TJ(g>U;3^_ld{oLDx(ceL1MZN}e0N9fx?_ zg%7m{(>IVggZaALr{}dacgZL%@M^Tjn%Gl)vN0(Ewx$tnr5~XYEXq8CTs`PoRF`ja z0z{}gT2kd8qNChDoQZcVJKrZ!HCf1+qQY*UKeKLoGHYX?mb@a}&LjijM?`d(?@{xR z|ICI*%E1ikB@W7F3?@!9V5Z($-YJZLDuvJ18Tu3(yZs!L_r-|4Y}ixh>eCBp6ggU|;O)qq@&|Yc` zIT79dDr|(Zid5XJ0ec>_hDtOfTl8<*feBlx6x&SXK(l4qzRlqNwdB%$2J5uw(pYO_ zhwu;g;b_=*qga=3Fn8PlSrs4_v11?akikpHKVwr2;O?dbAZ->$fyev8uMAPaY~q`{ zS{`_gk~WPA!i!!nO%8~|JM0@wEj9rSP0Xdhe674!HoR2QbgbFhSX_#aJWYro>ay+1 zXk|9)7a80K_CWq}>`DT5c}go}=p7B5jEB$*a{Hl^9G`v3^=4V@qus2un)SJ6FschNKL+9n?5KiMuPx5z*$#bd*Lx;v)M?h>%z!_yq0K;a|2J*L`)OgM3F zySRQ=vzysa$_D(0U2RvHy0zu6U}F_YT(CCRTY$kPlQ56rdTt)U<%9iz?HQl7?Ik|| z@kt&Wiajvs1m%lOj%7^eA^DG#x+# zCzlSl$uZ8*-U7y*rkX3yHtaH1$Hem)glBa0p06d|z{A!3F$^e{43nz9|NgKuhby*} z=@F-*W2_WW;Gi{~NK=K;SsD;*7bPh{t!Qv}42vux^laOD(L?*vhM6*M z9hM>QzrHf*u((-3JJ8@ z-Z-er$ZpNmwh5z@jXMFIZ?aNOwsAz`R>IQ?Gk|RuBR7O|+RuHPtNoE}1J3=g7Kq+1 zg-gIL7e=Ms#Hd?M@yRL3HU|D^8ZJt<+sm7TYT6l#n__{rtg#3w0 z6S|taYP5xU(dB=B{jC`DdpiG+tyiPxTz!G^*!_mnk0qY>+N}qp$rPg#@aon^Zmcq& zf53!isQp=BO;WSR+&Zdm+V`ML=^Yob>npSkPH&=E0Oy^`Qwc!Qnpf$?F|A9H@AZrX zEjnEA=;TjegVIq0&<6VklH~vOu zXeqa0A59SXtvdX#m)9T-Ca6bS-)T zu2%V^g0XoE+5OH55e^a^AnLNZe1^8H2J6+hgoiytEPqeGRxyk`Hw72skUJ2EE{hkZlJMtxIM^2pB}Sq~r^m+ZmO5`4I3t0U}b7tELHS%3>Rqrf7OIw&08y^Bpj(R-9rXwyR4#=K zz2*2c3z_?@xldvwCg;vnuzR42W-L_wG|Si^NHxt{Gq#PCx{Laf$>>BTdM?3%A9HwI zCbBQ)ngc@Bk4$@vXJ$oMzFv;rctG3E8(I4&5(5{7Xp77IC>n+~ik;*PeonVnop~J5 zR+xMApi{i?&`)w}OH?c5+d{2e%Am9V_%NRD2%(TiPmSH)K5bXoX#Bu!+x!wU(ncH9b5-Lyb^qBNJi$V?e>Tl6vthV zQg?jvNw34o2xlS|Fr2WeIopNJt{N-veMTbfS4t!&bc3GmxuDh#LV>O<8dYaqgP1qk#XlH;cA@a9% z&{72xHbGLNsR;H|U+NXjB;0TEbdNoIkPzQYT$6#MXJ=pwtj7*gHc+!Bi)89pEOqd zBuM2y!iT}!qtq5Cc@0dl5#;Cq)XU|+)>S~5DHn!my(%^t^N%q7P}JA-sjShP>Csca|d+i(oj0RImLj&x&REw zsW+e4M9&g@nP8p9tswF9jps9@7EX}@Y0si$h{FOgl*axnvXbn!S=OIaiw9>YzN|%? z?zf^A?qiF7x879J5bcfmObWMvUK%L6 zWAX+aZJ*Nnhzud-njm6*X>Q(Fq5aO0bH{V|C14o%)CzHB{NVrTDnY)YP9b6}{zc?n zUH3Bi>hAEEYI_6!nWB(~SM|DcI%cuS5@Kl~@(-fy*o(N)_+RR^47&|5G(B!$i-vQNuWEJrz)^XhwhMz(F5Rkh%RE13 zHMT9=+hYZuG6Hjo)W~!WJcoS`XdshKM~mPdjUz!#Wb$s5^Q_-(gPt0wRnmUK5Thcn z5Iv}YqYl_Kyxev`J47ngCq*z9&nVMC-GFQ~=~Hghjks-G)u!o|-o$G<6_FSiKpvq)O}MFfmZ=I|Nr4b8+? z_ag?dPfoVMcXg+v*`s+V-MjTCG?I`vN@g)yKOA0~{xy2nR`VVlr&b`CAJTam7zt_avpB^$GE*e}< zvLX7iU3`uWSbd>GS74go$xmaaQvxmc;^tlYZ|RXIh_h1R;2evxD$*ljj^%C#lL-DlP-!Dd)G;Rb3h<0 zWBH5eOf#TGx*-bQR)!`S@Yrd)^_$6Fy#^WC`S{ou;#piydLqL6Vq?Ao_Te792rEMy zMsiKn$K0zg=I!uFGs?R`NqWpXr5Axz&B(Q|+)*d`3wAU#USp1wUUp~XcwUHrIELeB zqMQiX25kU<9jtW^^D9ZT?PnjN^PFxls{hP>u^@7_bE^#-2*WtruWK>eJekV~V^~f{ zY-=o0oPi(QZW?Hhs}fNkf;t$d;h{zcHXn8_E1t=YgDT>LSle-g9}9vOMqoaCyWohb z>|PO(Q$S2WmwtEZ%}hNr|B<&6^TMpReS=D0oc9LsJjd>GK>Kw=qV!cpXTx9q3aDH& za}mfg^Fy2~A0cRwkqJ6>-0}uOSB&bXMY6k5O%_g)q2x!;zRB5S?KvQ4g(7*|VwNO- zSFz1Vy?gQNlQPBe<%AKEJ?Ws$rP;t89M;j+i55Rv;fn*Yl2eep&X}mh`F*cx3V0pGXnNF~*-h^WtTn-N4imnK<7(qgEb=VykclYeV`K? zgIwBiu7M8b62{*%mQL%puo0`S_BB1P=(3BitMBuUM%;=@2JaDAOeN?jac&5S1-+7J z`0D|4h7P8xZj1y5xOK9zVz5iWC3*u4+IMh-y!URC(a?cFaL^J{4jbZeCR^ek2DpO^ zb!924md2L(zZRwz#J*=A55^|bWhcp4Lm0nD#h+riF%lA-*8Ea;Z0eS>1jRl45Eg$; z3qVa|gmF^WwcVR=kaJxPcL~et>MH1#$QSGLn|C0M1dFq&%#b18u1Te#DFL{baXIOJ25&32}vgS*%ZV3;b~NZskx%lTD1 ze}VTv-urTx#ZWUf-<}nEwCVT{0tELFxcf$^qjVo7a1mm7IeMrgIROZXeSo4kat0PT zo1I4JZFr|2*SqKm6KB{JN&&VEfP?gDQK%z08hL#SF=xT7U6e94aJYmipM_1fvp9070N-{0Sqol;C(l@U9sOvVsANk*?wMtH5`V|*<-7oW_SQQOAN5H z9ALo%Y5*e1c~veO7JL!+)WNub^)UuV9$0I&YtTFy(Fs_BqFh1Eycu*r+cn;zu|D9! z0UCZtNzl`sKjCy4b@dnYJevo=&DyuD*@T0}$uD=7u2doV9gjGFyFyW$*05z;EalQg zGTd$I_!?%)s!jR|c#4uRV6Z}rw_yrBpMi>vUo&7ya*f_Aq|t^Qje-{oUd%n>9i!vf zF~C#(2ceQOtdZ5^D1r|SfGK%3=|4z^28G6fGttV;e~{He+zpT1LFPHGW>!dhd@S*j< z55U+$EIGs>A{2*J1n+6$MpI0vN@&5^bKlc}o_`R31PVvNh8gCuX5|u42z<=@l0GkwepM2uj;>d!0?V<)38C38(6AeLA0mxB!3Jf45qzXuvv!bb+Dbi z@!z!|U(VL4*UweduzDqvOM59szN;kgU1ifIXIl)s34^?Ra7#5J$B-QD5qHhs#0~&T z`T{xH^Lp#Mi+P4$5hjJk3ba)Ja;hH|kY0z&aqTz%eee&`Su#4zTyW+MKVIC#f=~2f z1e2L{JbQh)=3=6rSA{rhW*dmOO5q1!xfnsD7KQa%fG-1obcEqIKaPJ8^LEbxa31j2 zf=38jmBWXWv#yB$_q3HbD%*)&MOh$i2DETi3-75GxHz9CfafgLF80g8#J%&J3%JNS zETT~yYXNN=VfaDJt3#wZt{-OvcZF6rileeF`}xQyFl>-M6?hkW4K6Xf2Vq|g zWryVE#H-5eSKF^;tQ{dRj3=BwHXtxebIJxg*DoI$M@I@xX zKxOo)PdAP-8uvzCbGmxw!-5K;ii#C)_9P}8Yn5`=pHi^{ql2;NSNX0N;v|$$f}Pl1%mS+l(Phc z{x_^hIdZd2Nd?AIQ>1RF3XIn1TX;f9pGA$vkC7_i2&A0n3ViaTkvy?jOq0%k962E5 zaQZC=%c7$Da6#@e{N!75X^+s@J{>6J!d$adXRo>fK zxLDrj=MfT+lq4no|NDPTA257vKQDLJmnQq)a5n{=9@m+y8AG}_TP9#;hclP?Ue1HECyz34qO2(K5|bMx?w{VSmJ zWaZV(D_aJG`OM7Zc#9{l^VU6&CUUChMF%tstJD6rXv zSlI3vn5s>x=Gcq9H?Pc5HFIk!)~!jmGs5xPta4H1$S}jA;j9%=SUtXwLO7ZCjfWoJ zc4mIoEAZ)+N!KTcs~VbOkQ|7g;^-Ad<1@%#-3nA&;lFhB%DvO(7yzJtorXi$FWd&e zJb2$?xsJx-{&^4N7qHRj7O-u?h&QGuNTcytC>|x__>INSu&$@RQFY+`%D1empx8{x zOL{Q*>cFiAeV(PJF8SgKHtr3^$rDuekLI>};)*Vj6jI{KxLFZ_x5Y>1J}LzKVurS^ z^5C;GVy_i<%=RQgferi>cWPU#G zQOC9?TQ2W=?&3{;wWAHjA-;FFPt_7aEZt?M1ryS}LD-ec!5u3y+!p@o8L^^>tqRQsyH*s5L&2ErhvivstLo>F0V`IT4AAa}QcgxCQ z@uGRXd(=5~I_`-gnF931hiMZH6&`7_+{TLfG?X18A8)1N-2H1{k?psvMAbMHktlBa za`=PBuQvg#!=}0YmW#cQ-gH`s_L?$sAu0s)TZzbFvQH=rF)3ey9Jez64B1YEWfeJp zc0SUpEo|@dWRUpbMl|$2f!cAaJ@NtRCzJ{54Zkx9x7PdH;gy~1KMdXpgp__zBoV`N z{w`%Rl2?*118X|f_8XTwKTJ_z{+M4N{hJmscfw-*wkdQhL^N^5W2LV?F9hcZcZpac z@!~NQQPG@}X!1nm1zzD$Tj@lw!4e0b{&Vjl{pNhDuJ-6AOJ$YT)hAnbw%eci9woG+ z^+`1dKu90~^1+){oC>9f3a5o1mXL17Y?U@$b3Owqwm0-1GURJnr;Ps~3MvXquKTLa zau?bj7-ajTKO9oWGU75qpvWVL!p)jG+a6B+Q0Q&jBG`w$9nc?jthq;KEKVG1EI3D6 z)2~xy&)aQsf6#F550baghg2K*S4o>YaRO%z?V7MrnubUvF=L~}5|Xg^TO*ee?jO!8 ze{Q+W-F5bd7?rj@H->ed2+qq*@87=IwtdoZ?=ZrKT82DME<35oGEQlhSMCpAS>T7p zdokO#o_)V&_zaKNtHsX5k4i(hrv!skMp>zykRe^HB>~o*zb11U>?DjhMSd<&voG@U z-sTURY-f1zyy52Shp^kbY*Be=^<385rm^_^L^nCvp7GOJXF8E;J*T(}8JNo{^Z$HY zL-Bv?y#-Vq%eE-Ga0nI%?g<14?yd>$?h@RCyF-BB79cpmCAhm=aCdiiSZIDHd!HP+ z=iK-1`}d7;#{U;av*=z`v!-?Ttg0#A$^J(!%m$A8J;U@n&n*SC9**y8t<~(F=)>4D zJ>0IZr5EWI*pd8gJW2R-2=bsfP~_?EaHFem^MB~Lotn43L z)bgWZGA(;rB0}qR+JIJ5E-;Cw-8a6=W9rX;Fkg)V4(VQtl5j=SupMYnhIo-oj9G$b{ zPv*fQPkr`*yK4^tPoHZv>fN_Vyi8W?xgEXNM^m!qi4N@u)8KFu#pl>Z z_Hh~|F|;*&dC?rEO63akxTD0G)Z@o6ZilX8{?XN14q`_ypckD;5OJYaqK*sA{UFmQ zNsew~PPxRH?vE&foe7`QqdvEGrCNBg;*Y~!k7yF4kK|e^mgP>&Wa=QkgvbUxQ*apZ z#J(8=ck2hakLG69s(a59Z~g|;S>2rz3>zIc)>@D&=OmkE%cFSIzffvLC@o*;vOcfK zf)8dQlLnFS{Y!bsKD8-ntpgx z64lHt=-aoevkue#Yrf>)&}(w);fAnqdo5(G-ZY$r28*5=8}PWay|pSg%#IZN{1T3; z6JZgnf&Ht#-z)VnoV%j&QXCl)#%}#u;x+?D6bh0k%Uh#zU2G6mue#0a`4--k>>cJ^Zf>1UVt9@m zaq)Z!(sSLa&hM1nct_DszZUgbBy@hg3`v*C&QjrWn)JQ3vMwva@Vp@L{RNCNdsxe{IHvPrnXtaT2+O_NJ zYlpRb_Mqu*+a6Ms;@4NaTvf=zgkHidO-eqH2hTx;4*8CpGc0K}faQhVr|+nOGcx-^Rxf3RV+q0_YLIOfNwPgJ zZ0^?(%L>r-{n=z_aBBTtx+@Fu55sjYQM1Iodk)`atzPzQlDmmn>GtU*d5v(LG+Vd3 z>y~+iGWzbantoDR{`8=e6?G$rug9#4L{n+%wFz)S=r*fTlheYlIhV1^p?RD3*_%}$ z_2px`TIRE}6!;||T@+Q0qYj)LtVKkze2-RJ!!CA%<8CL^E?5_X0a<>poZx7`P{4og zJwx=Eu$Sc89@z>*8Dr+M9SWy`iEyI(-x?BOR^@ckr&xo(BLn}CF1a?(D6ENW( z8DhE|#E1(u*HX%LO9osnQn2RQzmyotBq6l%63JC^z0}*RY=`);wESxxzqdo5U-9+{n4>V$5l8@Bem3)OP2d>m8&w+{O{0^~R-4AZ-EG zPE`s|zLz)wnbCDz|Dd!Yc?lZbS`aY>Wz04CRO_U_zZ^OTfjyH~5Ign7=e30Vg%?#n zSi?ONhYD{B-g>3r3MX$sQji3K{XTE@K+K{1*g#ekpV|^s=aH9LOOf!?#%n=~3_2JR z&nJn1*6AdM*!#F1Jc*=_mB9BZ_!>goV_ZL|6(OrV48AuEI*dD?l~6_A2W3-2@^TH8 znj%brgjfV01MhSEWo*M9k-+8~3tk!*@D+(cq9C#r)b|#1B5_o~{s{5%)8(larlS2Z&PW)*Cl z%=BVLW+tW%By1e)^zW=Kt?d+T^bCyXg^Zlc42%>+-_pM|bFh~)vU_K3Wn=xp=z{|Z z$6ux?LhqFRoTP|<0H!TA)<35$Bo20tzh^BhOdJfHe>-jYG5cc`^jtzjTm%FG0RdVB zenCGLK<_~Cu&{8jFz|42a0m$S&yX;Xkq{A)aM53&Vi4jH6A|JO5Rj13QINc%AtfN7 zWPd}$z{tYFLQKKQ%fZA$$IQa?69@zX0s;~u5)Lvl4%175mrVcVpC4@?GV zOOgq!z5E*;kZzQj`E9?j%?yDRSn(JWJP;Ny1Tt~>28c2kAO_seu4iY)s;b~Q8542# zpmxB>D54$ z5RS8Opw9D!Hf(~!O@k#nIubXE4cF=hi}s$A^Egcc+6Nsi~g&{j0`Glpa^%-f2|HO?6ETTf=d*kK|In?dZP=&c?U>9_cpG zHf+Ou5Tc=#ov$8%Aum;y`A=RxIiPruGe>rw=uTlEsAyt()~=?kA6bA%!6*$dlOpRG|ESqr7j%fPH(}n*g>{ z;=4&8TZ0^I+n!c>1dn%)3%0ao=+T7McUx-<+}kbQk+PeTGF5+_jx?&r+?erOj{|Ks z5(T!sbMm#``=KO5yrMJ3-c}R5V6d}|!#F$SxBKh6#}!%g%Sd=|+Ds1-LG85Ft9Xph zai%%MOiU?gCnIhPz2=)d-s@j@AXe|gWe{DOuD$7&N$OPMD(q~*u>yqQnClweflo9R z4NMlY8)zoBw#2E(QBrghebBzXz0(cEAD_4;Jru1A%-r@15AZY(!9e%s`#a<9Nqi-=3*+DlQ(I{NIku~&mQ zp|{o#r1YTK z+6;33jCVQ&JFxB@>Cm|ju^yeJxoA{On-%F-zk0T?xH&!3DT{A0?vf{esvDYWIAsN4 znkNVM1(peggXg*6-6+foB)C+4+UvDTr+7=lg=N*P(}HNZNPAO6hT$pqOfE{?g>eE< zSjeciyA{`L`GrgIc0+@$tvkuc+y;s((GJJ1MP|ixlgTQ7FrJM6I}gkLeLE7lq_RzmMlF9C8c;UWkDHJ>GS z-PH#0;KDqG+h4mUG>e5EBA>_Ui@@{wRXymf6F=WwMys6U;m=N0cv8f1`DnSIR3fS8 zdf*G5d42zO=Lxerkyqv`G5;xCF>y%4ao*ZWK#lXf@Me61jv?A@LD&(M9p{}K+*dPa zY<3Ol)b6d;x#JvPA~o-wg@gDSE?~QOesFLi_g{FqXaWhZ8DqE zH`qh2RuHvZ%&H`VRO{-Z#36lzz;hpYZ-+UqzM-P2Kd6m8@Y9EW@DRrnM|dHfE0kp@ zo|ejByXaK~aeOu4GNC);fRArhMUUEFEJ+q%6ijR#UpMTASH2pF#vbxOn0ufgQa)f$ zWGK8#fL)MGu+O6WSdrQ?IS>-_=Bl6JQO+48}iQG~D#iK+&5;UP@CuZg1l zmW=Ds9>aaLiXvL*jRmjvf~58s$Y1P5fDuW&iq8$VWB3ewqy2XUc!)mA!Bva_s|t#M)0E1J zgeQ~kmDObiTI75Px4hUtHR1l5S@+Mb{b}RPJ9r-`KCTJiW3KX1rGVi!9!rDi0UxZ2 zE9g#%tbp&9)?Lq0c&S&!NpozMUxmzcsl@ELl?IVDMUc}{rLm!m;5(8<*l-@abHaGP zRbCIgQbhb8)98mQ^{(GGe(YIu+PEks2agnLxHPWCl~iVazhPr*h$nM=3jt!yvHFVVD2KRNqMczblx?aUC)HzUYJ?}G~|=5{M=$^jAAS>C6k4WqL9 zWJ~F}V7rw8;#4Ntk7>9uo40OQMfeiV!j^O+p9f}WX1^PZrsrBTkL6XKUMCRd#%9P` z6z;g?>SIA$;OywTRXFmBw0krb>D-PMjIeMnu5N%OF z1;)3xmR};YyMZ<`+-kLE+JoQW2Fuks2G{A!=N};3@}ObnNNbJQjyt2skC(xhOUxq8 zG1IpLz1InJCi-ltx5OlECkrbfKWU16pgY4#%=h3N_b94E`*swMJC*{4PY*{r(P9yL z+CAw-^_b~MYa#gvD6plz#mD;yr;j+i=k}3uRGK3JEiW1x@pAOY66xq&nEass?BJFcu6Msa*oPT# z+WG;y&QkQE_wE-xMSTR)s~riIB#Tr`T=IG=&m2~H3h@CExO;ZoSg)jF1Ed`Kd)9h9 z^Jl8+c!Z1goEsv7T;|gfDN;W~kJK>KBgf3Pb3$!hU2jJi67`s5%mjOlmXjT`Iq4VX?YZ4>Clsxr@s@2G#t zVa#$^R0m>bQGjBk68;~$!`atV{i=$x>uW}>2K(%a-!Q$uTMNeg?ltO!KC()!`RVhQ zVr#T)#5pl4enst_2Qt8GtoW(F0c+r#`RMlM4rX7(Wkl-U9?1NUP)+@&YGDbY1gX&D z-kGFljQG0T&)s0=B4;qp+<1*)g^P&btVu@Fs)N8Ra!^ zL>KRlr&kxtf(+3)aXacVrymWdK{Gv~B*c3QSp} zu?N~|!DeP_OE6Wu%$+yS7cvZ-{NBzYF-Vl(Z$`?>EKzO?9vZ)Y8XOPjpd1oc|a~ecfQ*^ATRmL~C z1b~mH7~qE;>GqWD>X@;IH6uUdYVEu|7+rHhLjVzbaHQ=V>cN}~9#_LxIXxP=_M^Y! zDH|yJa<{gKgycrF6LA$u+?fvFo7ao|Ksui=w~=UM(R{R1l@(ssBXJQH!F)URQ}Yt8 z1Ac&FtWAJIzGvRMsG_~7x1`hFSIY}OGbfC?6!y^L?7hj_za!kZRVeQ1%bf**e4IC+ zSEGO4%{-ze2J6L;ywvjJ^ea-!fwMi`WX^H|NL={`fG6g&pLbP6<9HMEIzP-V7xpKk zT68USq3gc!j|s0>VWQGDSa**D^c%9ZH;DkwHbZcO=5tACA+d%ZzmSW0w>L84IFcy&Km}Tf{t#EXI zzOhT-S77`!QV%>l3Ho@$23xVr8)icI=u7?9XG}&fcl8!WpsZYnM;D2hT-%6x>b-GX zyroZfx~$>nfLMX~oS6j!i_cAU7gGF9(#xEV?*Lz1{`8s%Kgn`Qpb% zi`l`uAgCK3w@4kT@Py7%RCRHqO|acPunoMby)f{)f3U8d$Y28shnT*#J}VKfJQ1#! z{uTv{oqqc%{qY&qi5DpL+Bs`^w-$P_r=Q1+9PYEIvWJ1QrQ5yzuO}z{YWhP=D(M0JQ<(WB z-ns`j84=DH?d1}+Sj*GUTjBDkSkijVm%g}i;;ZShIZpE2Ri=h=C8C26eXvQ+?O>Aq?D@l8AqFmD3R&H@U zYysT?+>zhKq~7yAj$i`Lymvo9hgZAH_@^q7Ym!4E2a@9P+9I+{-b`;hIVmD#o6J0@ zSDOJRF0dIj(_@W1&9Y^3i(XnY|Fpc^hl9if?-Tz+zl_k#lOC5Z)nrz==bF!#MMzzAz| zmswj{OTw6~=@I%c;(a&k4Ho=4M!J!?W6ONT`N)pbWV@%LNy`_cDF6D(BYc0rpu{bdVa6-DoF$v9y_L! zyp{)eh>$M;4AfyyA3D$(S@rg}GBl1s9LS;SiypC2H|Xn8a*LRnGHZE0UR4TT8%P^t zeK->#_Q?#vgU{JxB{%~$nFSe6Vbp^(+e2&&E|oUCE7Tb(Ec|O3{+_@8-gI-TCO8y$ zmLPm+(#$w=6*7n9=MxI>i|Tw#dE!x(T?4+^xh4#wnI@|@-Lbl_b%f(BVtxm< zT5Cm}H+NErA8(G&X0)~7$=M*CB}xTylI;l)S$_p<@Y=VHxfFF1@lE+8ky3vuWh2uT zS-#~h<37`9ttVq~$-=k1M4SSokI1oSgo)rU1Jiki(W_vHYyK=Pw7-ix* zk!!keW_-vs4YlJ6MiJZAT(WG^J5G$jmi6N8Bz=*?KSMYN72~Pe}y` z;d6lH=r=%;up;XmzC?N;d7~VB?~yQJezqF0Xbt*5JruKm(5Cd0XI2DPus&>Nj7RET z9<3K+tz5Evy0^P4iFtOe(%LN@;Vn}MI|G25HU34`NCHsiWJk=&xa1Av2++IY;nsU6 z%ge#_9B_jcdDul{RwcN^_;UTN^%sa#qCWsa4o>w}lk*nQ|IuGGo&Mp{df2Cum2pIZ z?OsLqkMqbs`alAgXCXvTtBr2|gnF?Bl-mfuoghpsh+qt1@TC5GIKFmCdeU_B1AjIf z`xDs=njz^btABz?Sr*i&it68u`Eo9)?i%CE@5TVd(@=9b{({S&aLg99 zzRhM<@ccbzQB*ACyAA(=Bct5Rnjso}|46vjx0(OYpD?ks8#DUvD*$n?|7V|&X z{;hV9|DATT|G*`p`OTA3`UMaKL72h_O-EOiTXR{p2Pd7BMzC%6|fi$e+y7-s9TiBJ=VcOUY-9mO3fSC zb2tg%Un41d0%F2eFxaBlnsg}=ZD>{{fYn@yl1 zAmvV^O#^HGxAeb^0N}?)yb}8a&iW@q{Xw`tz>0veVqwD{pbkO3#~lC+@-Kpc<(QKY zt+Qi-J^;nm+Cx-P01k_{_3RIj+fQEnB+GnEUH2z*eq8|YfC;(*R%}|{T=dpy<5j81 z{vQ4}Hx&LQih2K%Pk)2qpG@HYi)aYWjKUbl59?o!ZHJphNZ*R{qOo=|uHAV4(NTbs^dsTi@vD_{L~6dkP8eunr=q zN)b_Z{Z6`OD}1+~iQwld&|7aDIQl?~e*{5p_0}-Pnnuq+ zw-ILpKZ5H{<=Yd�RSnLSNV`rHnL({M`uWJc@yZ42m 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 zÐ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

        7_E7X<%|TZ=&|Pj_yBK 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

        o`A;zo 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 z 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

        ltP`O4H&h`kW& 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

        a>S}4PBj05CPW(@7{s}ZT zL2E1FrID6sKhBXttU|b8mrK)+b!4<>fjxKw;$mo6&9CVks5^=3%s9J<;9JVv{YNSO z$C(b2R6F!_uT6J?n-2hOcXRk?C^A?J1p9`PI{fwr-w)h8kixW!7d+ikFb!bZz1d(< zu~<1=ee%ckgjWd)cxGJz!ZclJ2)@jx%PUge; zDAZf{lEr=>85RzcFqJHk427VL#WdwSrPE|8Sn0l`wVK^0qjoOUX72*Hlg7}kc7dz- z$=40173Lwe>#@(%Xm)xyS-lhejX1@ZqR?w>(rL z6a+*XjwC{#A~QneNwOm_@(}{nKetuX2MUwkChwIMc;&%uZhP`%FE!b317c$&WibX& zK?1gso2DO|+f531{y3ev)W*>HisGA~qGj;I^*+z(56DytbZ-}>kI+Gd2~=vbztJ>2 zAs!+#^2h6ozjV?EgydTg7a)56Ga$C_iFRDfm44*X}$Gp6Nn>H_>k%^397r}{pbn2UPukfKj3~z<{&B9yDROmv+HA$-=#y>*A1zgK|&wQ zw+j2CqbpLEJ+^eDXY*yBFML9W{b;Yx~S~rfz<}ll0Gs744Ad8O-CiT7QWG-xK!D+t`6@BTsg+i#p1l;r@B@>?3YIEzB1E|7lzxJEO0{&u(4vA@ulfd5{0jX(&03(dyBwwT#SV;u17f)Mn!+C)Lz%GC`RqD&) zEUQl1cN!z?*giN66zf4VH1Ru;<5IClS2Mh#7G`{)TQZ8|gSZ*<4Nf8!THDS}>-f>4;ebFwBR_QdZO-qZR^i^TT z=Z3hepu84#tzuI7m7&rZkdk(wXD779m95Mb<4wHNm66TF`cK~!lL$X*tKUQ36`F_j zZ6YhHkXD7}n|V6!iaVNn?jFEuVZW5Cj+UmpQ zyBIH{ftZ)32nn0OD~==}t%$*zBK`M45Mpmk4ru9>pobMIZS%sWY@m`~mUPIR{-OwApLYMSYSm}q; z{<_-G5KlwRU<+aDu$lob92#|-0Xh}7;og>?W6<~eImqdYZ0P|));>G+E!>7*vFViL zMZV>lVlj-cJ`CiK%pno=uWyIgl&|~Lm!mBV+wPfgpLCZaoF~WAjmSR`Z!U?Ro?8cK zjWU<_Tb!cKxzDlE@ZG5flu`V_Ap}`mk(rH6K8P)elkMKi9LTF2t7FFkn2HCt6VF}2 zfD?{+5Q}S11JDLVi1%?aTN51SjVn~3DG-@j>k4N#_vZ#zj4QsMAZY|~w4j|G6=Eyj0d0{t#)U_Y8E0l@gogWC_8`8~h8Ksm{xM%XFhO$C#%_58mh7ov5=|M@t(io2UJI zy?v(_oWl8I`c;8-)Ykm@!TGj69c`N_;uEL5H>plxj|@kq3>@B`^qIokQPX1;?%3!U z{EgP4{zR^BRePs)0@c7!Z7fbD7m9k3nmkC zP5_+{uwZ5*(NPv%J;AUTm_f9+%7*hrKCm@Q-5oiB)NTd;p__EIQa;Ap2DKc?Zw15k zH*fdQ`~=V}rrm@sq?C5`z&5;uQc zvYXvdX8FN8cQi19W|~X~fO$i;RJyC5yl;^69o*eNR#sUd{u8g5=EG6VnVRr~v2uFY zZDN>%5XYDZ5}s4;GdQIj#<=pzNCZwumoBHHx8OnsyCD3hMy~0p1!fA7+veyM*;%}GXQ&Yh{ikfoKQT zS^`>#ZwMi&7Xj!sllmEKq0$=GP5n*t-n@@ViL)EN%3{)PMQ+po8it`}f_4%R0FaK( zYp-@1L6p2f?DMZ_2ts4E_cOvSz3<4*HH5Od@!+dihYs#7%Sh!rUwEPnL`_Lw6wR(p zco_=JJJa8&L1MQE8Y&~BU(@}_6AkUwvoMQZofN^r;6d1r4d-L(7aJ)>jDL)Z7Uxfgi(bIu=B)|1A=M8rFetIbr=5SP7Vpo_0-{h z!*WGW z^O6>rkn5m-Mqqekb-B~Xun5N35`@Vn1ZgH{B&8l$vEft6AU!dv$R0_KHg|t*8;}M? z$jn)82}I@Q{Un#i*V3CTNlgA_n<=WaRkzg=_?s!WTH2PfsopT~i&3_4u{m#&eT%NF z6uu?XawW*B)-vlw6w`*g)z+~`Z?0#Byh=v7CaP9zSUuj(t!MG!hzrS%&QI7L`S~;? z^Hg!6gso+N7wp_8Rf4%B7%MBGwIHERGW%q+Mn4CpTDR4JQ^WxO;JF$E*NFH&@a~ML z#xQk_uUpRK#Y-@8Cz&G4D*6&VqhI_kuJUk@?3}2&u$e?7ugtrdEhRcSF}fVL@`;`! zi#RRab=58H08wu3H^;9`coNNPJ}!yxb*pwpmZcha-8BSVP;7tat}2~ZMJr&Q5FAR$ zW-LqL!iST9^olaaC&GvYYp*f9E;`B$|HO^*>nl5-_ZiUMYVVM@(BsW&h7{LTGPpEOKPZ;iGH#Ueza7K4CIK-V1M zM$GWvgCUq?bC+E8Vs%z62mJo4Nx{VtDM9Lwg6PzzjrEj0-9rF`7DPXR z-HsWtP&G?K0c(f?LXv=*P$(1Mwzted6Yi4b6o&1!P~c`E^EGFzcvTzSa8+%a`j)xr zFB%YM5tW(pmY=jE31)m)L@ZJS+J8QeN*%KUnAM?*nEqc3NoGQ9=CHOXY0CzqGBBtw zzsolvxMWzDlw@th?GtV|2va+>^#({#eGoOial&pU6(^z;aCnHKBD4^I37KQr^rRu# z`aBtS7T!f8GgLf|SJ(IF&D+?}%MD2%-DEe7+2P*GztTZz{yDQ1kFO>9gO^Wk zrjvjio%d`fD}0C^HY^X5i6=mXJ7gv)f9)JWJ(Dd zg9%8n!r+pGL?q_f+|XLrXOF%An0utkfOg8TyW{NIwU8!2w}&>ec)Hvd^SILO_n&Th zE>vu&86zJ-K&N4x6AM9YIpbVhosFvLKI=&o1NtrKbP8Zde$J=cExz9mZ z)BFVq5__wkMNt4s!h-E6rUZ;*YQp#D@B8y#$&NmEpPoMV7Z!5tjxUIW0#g~P!~%m7 z37jg4pOHSAm?y|*Nz7@Vk~_{QTZ{4g!_#5-XU|^Bc*&9BHD%s|4|Ujh6I)9_ zlHfiV7nH~$&&VWc(v)nYO&+tzVm*XGNsWTXP)zDm4AnJ~YQ2bA#oqa{M3(tSKs{cxx$7I|!c!Xdj>d(m)ObSxuJ z?P|x&K0V4-m1?z>kw@5Ks7Yn`t?el#F-9I?TR*kDIA*nBIUy3Y=sBd)27c!ESpj_{ zz>pydlZHHNdW&_bx7H4gWg#L=MpPuC2P2Z|L!eAph$Fj>9t9AvF9}26MiQLupMiKW zVMlKNpR-}Lz1&UaZGu@aOdtK$DMNHwEMax=>-(lhkNsc%;xwC=Ay1&mur>pv z;Q$ol&NM0$8ML!!R_y)c+W&mQ(YWnl5Q z@^8TNsG)5}WrWhTBf^w-P$`z1?*Lv=P@USO(1;)Q*~0khs9X3?kWP3^Eo*Phu;Owvo{HofeD`RVSoQ&1`)I1 z+`cA!R7VKV?w#3r9njv*179CLsC##QqUkAw5q0qe-hrtk8ONT2h*W<*g+@rVY4T7N za{A^R2{pMn-dsu~H2S&Nv0WU(YA&KIhR zOL{rkGACcbx>|t%G7dz1v6f(<&5!1hdO5{Sq3sHQ)aeHr+}Kdmq}><2@Z_$0(8m}9 z9p10OFI+eY@sbNaZo+gB%xUG4G6!3TJFy2$IQ$a6E$sdAja+fh*<}N+F$_p*%y-HH z1ctYPQ8fIi(GG&Lfd)icylIure>6_{s7#kOZ3)F+wS$3b7yy0rW@KE{lZn38WTcvVI=I@ zIP#aUY6igA11nIE=V}EEmQ1fT1{|g9rtF8}uWD)@h=>!TT1Qk&F+%JF`EDB#C?6es zKvlIxe-nVS1pr1YgZ#KGnFCBPJ6L5|rgc&SfW7nf@@HHN)nktfI6qkDzD49K$1OAY zkz!KzE%j0Y#eb|_N45k`Q}+EL?zc2d=c@jFL7=e+eiIOoIgo$bEh0R)$MXA=9lV1; zaw5XHR`8b#cA!?4ldiCdQv^UN6-;9t>zEUcoWN&JGky<<2UHLl2X*6^=c7twz~s`Q z7dc{cCCgFMbGAGbg}at^HOrN6qB5v#&?}C#I~T#O+>>vtSgjnDa45AOlc0NnN(!ZK zaXJ_gN2?T?Gos}5OHA90S^c_1bniNJ85rrLiLaq3_i;1EIzc&_yvv{t*3dw{n@cT~{?6 zH8Pub!E^Vw*l|U}>DW@VJ`q;lY0kyc#PQN<{c&*Uo>@#WL)zDLF9{~J1+z3gAogFg zFGxBKWlbj;rzQHf(i8X@v^dP8KKtrGAMbh>m)Lq`4m-6WWNEc$owyg$m|`R z!kmjRSWHa`w|fDjjTy`+;ki{(c#88x-7L8+)*W#T$dwT0nq)LhDna%L6A$8ojkxpsOQ5t9FROzJT3Xz!P*FY43+;71}cOr=NgHL9B zna)N*#2d6AC`72f+i)SPOnmvYIm0YvM!yuDESH2K0$lpWS^9|z3XO;T^_K^ zIQuAWX2`z_u)IYdal0SbgwwD}7+z}%xaf9E<`jj~Wpjr%e*7xIK2p7Kvll!JV}14q zR!PqXh-6MW!EXMK#eAnEg9isgL}HRre=tW zwHc($_|PM#rOu8vY)&L*w$rz+TGS=mD~82zXOCB#lREZR;na*mNpNoA$W zT!>H^|MHq0BD($+jaUdtmKj2u2e?c*iAp3w^S~g}3wa4L5ijCOn@2Pk0M=Y+v^z7a zgtM|ct!h6S<@915mj*!oVS$ZkHz{~HI=Xo{`UL{-SJUym{635kk9jM)L?zlZLkTMP zyc}f!{W3Mc{Phq7RZEq6aIr(V%|HezFU<0)4-C9b{|7LR?bqIE6TgyYoXDKBaetL0 zK0k!LLhkQ`-H}sbd-Yp6fyHi@I2H-``T{Jxn&8Q%Sz6}Q^$Nzjch@qEwkNQ#CF~WO zH2>@2ww&&$2agWCKq+Ks3;PaE1QnNSy3)0^zu zQr=-3R~%oR_N58(bouu_7(&}%0?W=BuI3!#$fwh|$yUhteW-IV$81MZ;>flMbZh7+ zVY{R&Xh+QoA^^U%%niJ&Mhgyz8(9$0JFtBTdjrr>;;xkhb}dcvz}A(7@#v%L~*i;D{L@Gemq@nE@C_XX1b?b+s(hPD#ED z(Gp7%usIGKZp>vsQ(rK_TQbn%E>&K-l*Z)^aaE9~TB^JTDX8&ThCRL41!A%VdXwq` zy3wgwwzKfX>?8@bZpW))-Wl9Z8BsxloPzUZ1NCqRdIqJ!sD;#3F;m2;yT)UF_6pZd zOP z%>TwY;f4BaBeGeb%_Dy)ivFFlZGnFoo(Q7hmh;c&U>4BzSuO=M^)%c|JM|RmoS4na zN5*guy)Z^e%L6wG3A?Q;EH)DRN}O+VLz!3J1&SMf?cuI%+|O-)6SuJXgb*2aT|KDJi&&_FL}R@g+_&um&%WocWH5 z&+Dzr=G!vm@^c6EEpB@UGgdCC#dJTeKQ;4vzO3w6RgPeOc#4p#R5nVg?lQ<*1$Lj< zY|5ZR64~na>(n~7$JIjl+w4<<)!UySkCcv{p<2Y%6E1V$s|?{wasY2KgjD+dtEo@2b{KTk!l+Vod*+tDk@DV!HZ(qR_DueN-`%e0l=zX%iSZT_|${uv#!eh*Cd1kvLYvle+dG84u z@ie9E^~L5nepfsh_3>f$STR_bA5|zd6%Fh3cqi`k^(K}Set0Um8%|6aNaz^V$4qfJ zbQ%fgD>}Fy|Kry1SQGIY=am9k-5hV;x2Rj`>c3Z;tEC~qu z)14sS4-wft_U)J$c2d^;0h$4X^wH&AsC;wEmReVSM+$&`V2Z+62$%qTXC=r23S&}E zPbd8QNMBDURxVE`UgcAU51t5!1ZM&iNCNu}B?^fiz&m`0XQ|W~^(QmFQoR=Yx5|$$ z@5iq7^YeT%kggG(-s_f<)fp$dmXiOJ|G_63R+rpWUkXyrC=@08rM4ZHLVKebF>Vq<0WqD)Mh|!*j}$1g zmd22%N01#DRM}NP66s|H4?uE>0iW^hf;4t8!7`$xf#6l?RG%1dK|zl!UF!_fLM$T5 zcUNK5wb@__#Q+#_pqCat0zyVL;>AH;ma^=$ z`cJDz2^w;3xA{5I}dlZN%msRQ}NhZ zUSh90PR&2dlbYihhE&#t-ps!Gp*0dv9>7i0K{kw#+osAV ze-KXu7B3t`yNd-wZ=ZL`TXqQ8Q8?>%d+mjyei~R_O%+>7G5-)9h}9o#L-|iZu9GwA zGrd&gT);m8fr{tR;ltFXV4&Ygh-S)HSTU`b!UHD5%3|@&a@%{VO42@y<-nEwAbGS! zyjtq@LW)%(YP_Eo?i;QKlwi1QZ45IeIKl!}dkHN{O$C{qne~3fl+JZ^M_N7!^qrfd zgJ@YqEOc472U60E806T0>MoVl^R1Q0V}Z9^-X}pb^^2Vut_ptg(}T9**ms!KAKN#| z&}fXNTIjZGgE!ZhO#`qPKaQ|zSdW~dKM5)Icq<8j^GobZGs5^vf?qFIub^@E8oAM? z(NSK^WC3Is;_}X-6K8C)1d2FM4yiVWgAGxa2Je=k){K6wmA3V0 zsa+ zU=)v-zYnNRBfNPG_TBT7|A`ua1Bt=ID*q3$ewl}$tssL0><5drTmuchJ{sR81YLS) zCQ!JL9<$5u+63r-9F3i)lW}~b_rywO<$wC^b58pFCwA-+o@B{_<`g2gWa zi-;H#R)jMPo@Is1&)n9v#sik=@y|~Sz(d?v5qorw$FE%42M+?M640S9zWT9yfQ0~4 zFc-qb?RF^Doo?Wt*=`W7-!Z}c90#umh6m90Cddl@>-h0%3>G_>ps2$5_h# z`e~dy^H#YIzRU^#nn61FxC~3_E+rTi9_S=Sq8BOe66QG$v0b}r(ZeoSa#ev(|8m_C9%)m)@}~^zqaGi>;|3jpB*L` zeFc7dw(A3F)owpdwE{i#8x}PQk_3&qZxXWzR-(ube;0U_b&OG}hNVXr(?|uW+b?ly*{R83?ojO9b|x}|ke+D=Aq9&e~4Z}!k?o4jgr zkt+3SYp>lFwZRO5X0nUGQ#jfOJ3=AdM)LOw?F0Vud0^G;ta&Fo!BPWT#($DKb1Sv8 z9az8hQE*Jo`8t+3;RS3&Hz&$}kfJYBGF^dLv2mMLMPP?T&Ppug*R+N_-r9tUxr%+Y zcUWMcb22aA*s20^PgD!o)k@8r$e|avz;GR)hI8a`Vj7bd zSzZUz=G7c)gCS9 z^RLXoaTeG+qGj`KYfx@3!N$(GhB`Sd7M zV&X!KOtPsGiiT+!^lF}&2x0ykZRVa9tTg2*(I@h5C`vi>XZc@GoWU$Zj;vzlB#-S= zPO8iM*8_83tnNvPJOi6d0Ca+QotlF`hMbd&1j;$dFE}j3_PXlvw*+f{lwB&PQ0x0; zh!MCBy`lhe#NEi2)6{8obmFE9=-Oz`NsG6L)5+nQ6i4V=%M~6NcEn827H4QBfmD>j9)bPqd24OxlqY}6+KF+xk5ywWjjdj zi*w9IgtN?@eS4i@4#r`f36?A7MVNZ+O$1kk_Ew36e2}zG7sOSb!yU&WX%HLU1Qd4& zBk(9IbNj_mR<0WU98vc^6d9-UZ25*ClqWt$5A&LDNWOmxjyehf|G{X+p+aNJ{~M~{ z0)i_^)j76^95_o?U5Umed<}c4p+=b>eFqDHxNA;F>myYH9ds+sKT&2HNNW`JN@@7! z{e3supiK-m=Jg4+Iw4l|eJ#)nawKk5?!$T0UURnsZA12YMsWVtz{W|d^9_?c;#J+o zJy|FjZYu4fRz@Yfdp@@W>C$rtRsxvN@1LX@AncNkNSk1uNT>3Wf5R{7mP*Ssc1%Y4 zf~cna{OKmdA3wmpn06Js2r{g4G+1)VC*;(s2fWz?f$I_`aXNh1;?SrB+#pk%FO*dBsap%F zcO7S(OLA}AH%~P|1Aoi#Z+5ecI{V$!Hj+_;)nU98>Dc!)E6E#?6$VxF& zUjkTH*#J-Rb_{|UYL?>joxt85MbF~US7}!2v&fBR;uKN&%$1cYrcE5%oURiZD&>3B z!)=ML^1kvcS$z$M zg?o5PlRUKz)=UOP%0}@QCR%1cdyq$>UlTW;suaDe0e0(1JF$v%M%{X_3ePhQ&=86 z;8p*uH0W}*phIUwk-3(fP!Hxp!X2&-&OfUVV>?^A3WH#w_O2H^!rH=LWou*ITErdh zeb3I@f8vp=?Et<|2SkgF$P)AP`$St{Zzjc5nSq=vgfG7Z3PrXq!&7G^+Dp{2cH8U# z^KSg0PTLwja~fO89|R)c>e#u|d1ju4@b7qV9)+l(cCsQfgcMymxH6oR6vQ1NpF9*^Y1UXTB4$IwS7aY2e`iiU?{rY4$P4K!=5YAX(_R`_Ux<_a>xCgDcBoh(A46} z*sy-@SI?%7eW#|eb?5I3q16@>TqvF-pV)@ajJ0^{Z9CcT@3Bdm+hE_-2AU7F zjJO=Jd0`A#9@8fu8D9=v!n$$7BMY(^>TyZczFE+u{L`Wf)y$JRyHv?Ma@a9yu}@uc z*kL}dQ=&toqU@;EzqS^EN@l(tuZ8?ghitz_Gj2$&a6S8_WgpKwXUr$T(lq5^B(>j) z<@LSe2OE&$xj8*5PSH`mF;Kzk{^%DDF4wVF9QiKE;d`y|!MhIwz}mm*XD!d5E&Afs1 zgf}C`l&lAtOr-v(NZw~J=oykEq)Io?B809?k1jGZo4RDi%(E{)q}`gx>-1vhTDLBa z?AXZjM~}}h-F&~FJ?8`F;NwEy-hpQW+7=vpfK!#DQIt{uQ!H+=D_QQ~GlL<-L zl+T8*b?xm=xt~a5f$OD+=;z!oVs09h-jtwH)4}(0sHcXV-BeoA06V)hk zkVyj+#n_tmcIU3gtvERH;UM?(sTxe~z=;ONQ+}|qK}m$9D#`c(L9Ak}VNVLvGwn_x zaVy2JTi^SB_TH|t$iKdcgY>;!lx`m^1Ua$CJt*Y4$$oQZLCd5lUA~NA9YZ>uW#s^B zA!20;_I#2e?#6|nsj&*sdd!idl8q7+@`yr?!|Z=o743^5)FKq{QgGv$sF-G`l5oo| z3XLj3TnF&d`~kwkRw$>qK*Y;f()Z7m;0zo})U1Vc%fH>!$RSV3HY2vJuztg`Z<2MJ z1+X_18RMW&GwQ%Bm1=}KU?V5A5Ly5lMs}H|Hj}5~nk?I~r6iI=Y^B{y?CdVqw#m(# zNTcbi?@Qf_$*YPiTf1YmOL~BhzIDEZ_=j?jT~)1Z@P%Xzk4!n)gt zQsnNgwz;Mml%h;Jo%^NdhA5q}BLBZ8TivDvpoh*eQQkZM=4>LbH*&2rM^(h^0?w!U ztv%XjyiCOyIrQ&l4YeNOMo&f68J$tA^~Gx`>~5%GvGWg21IX(`{4T4;R$ve`!jl|I zjyng}xGvlu8aK~R!}!wStTdtLer)($c5M|kOU-iR3NG%6Ua#m94{WpQ)6 z;6_Vr;;uvaRyF|TlTN_2GkT*5_fs1rt-tUXe2B*vcU;74gZ{oAW5W$+hGJaB4V+a; zU=u;WT^r8{(Wi6oebYt-s~-cun|&TJszR6K?r+y!L0dU&UBVpULHE*+3mJV!>9X2n z+PF)6oUxfT8+1?4ys`#M!j?~cmt=Wt+8WYp65JhV@zLcxsJTzswwP*FPhGj;U5vj| zziC*+Bp1JDG#ZiWb=rL5neiOCx~yH#mT7=YT}i1dvS4wrEX^9|B?!G^HYV^ptjcfI zzEhIi8kl7Ln+X)0U=l1Io!oB)8DS>|viO7V3yL(V{=9Js*Sv2edsl^vtuUdBLpWmnna$BF2gV2PNZ$!jultK8q#CBJq*MwBr56lQiU z=5lq-B-DinMGeIX;9rSE4{?ejkoG}i`q^EZi*3AJfdg~c+DMA8d2zQ-<1@*GC3$MvoG~PD{ zKMnTWUG;n$A&U9pj1lkgz{d8q_bG_d1H>8X-Jqy?!Z34!C_5oSEN>Zz^3X(#yE%$~ z6a)oaJW1woUG`;c1;RpZ<*Q9H9wx$pP!K6&dRr82#$)JvFn|bo;1*u0SvQ}D>OOQs zn>jXZ2&}{=+Ut5?c%e$*U9>}KtUxqKKGYKzM3J?6a?bpwj=6G@4^$X=5D;t(yy_&A zprnNHO3^jYcV%`i-hEho-A54C%}qdI7|)MAzqe3GkjB`*2<<@Q6LbA6T#9(Nm%RE}#|!<}E|)nZn+C+<#Zsiy}@n7x?!2#Q;GtxJxqgZT@>JYvyWc=M}7!G52N%sUHu3- zE~{3uY~5VZk>`M>cgot~m1=3{&aM-HiEs~$)K zrd4{E$Ctk|X&b!72K)sQ6io z3LAdDO!}YQ@+AjD@QtKc)rjn;MN!N|lw=#KV5vz60<&mAkjVlJ6l#fU98A{d?QP{& zhmV-?#)%`^wFSU<+6vHEvhP$)lq;C)S3l}MVG4iAa-5= zvS}?4ujQ4B^R(6_Lv#P{(fhy#^47d*Yp42~2LLI(`b}IA^)-T(0J@iyEEa8%s7QAe zwln*8Zn$}ilkeQ^&0c`a(JeBez66B`59OjKVp5uR)@~dtBj6sq=Dutyd9)?=annxi z`?YoJbscrY-0?}e?H)(`b^ekEdnMc+=~kEEWk&}{!gTF*KF&wfKQ#IhEg>4nYjR^` zOfSZ}@fKZYh3gXdqM(IyxvTp@&7**xAI)8QprrUIWLi{;DPz{jX+e?;nW^+#rWDUC zTy&t=%Aj6A^t2L0B!a1QEhXY@ z+6AueIm|z}+B4mmVk7sF-X`o8?Z)DJR(0#9voG1z!ikyzDb=Zrx|qXWS63*>N;AP7 zKhvI`oHk~s7>XucxRewJ^lAZ$nHn6r~TPK%a~ zCf-AXPgl{Tf4%z|$iHG>8L^(kYuTwPp*&a~e0XzMEG>I0Uum-Y*F{XEufe6+PY zX)C2Fu@1!6`SJLx1hhg=lo#1GM^V|y4z zkjn}9j?3=%c0$yex@Sia`O$mRX|Jk|yPSHdurVcGGt|iWXHSheejne_q{G2D^lTHY zrE*w(nyR!;#;mmWv3fHsHJdVW>R-T`0iqN}6yqXc-_%wK^yvo!gbacne@Erv(JmXP zg^M8c=saq;X^*3-U9-0_L{9)v0?TuURs?HSjLudQgt?z~4ShJamic@buLKch!dAR~J=zuU>p2;46-q zF>Bj?pI8?&i^O30(b8aGoI2UQ@;^p-E%Sh^z;8Vo-k=ymnb+Ng_sxTsiYF!$cg+!hSWtzo4D7EG4?P^V^{x*TdJhFs-(WLt9Br6Hy~ zOCF=dqqd+= zSB=p5_Z~#D>C=Xu$pGs?N8c|%)a+5{6$?nq?bEldLm}!UQ6Hr#w8RL=#y*27Qh>chL2za(V z=q^)>(+KH}El9Vl4KTD%7mz)Qwg|{yw*Dnk3``roUym-P{UKTM#J-PDp^$9(BAsX@ zM?pJDVv`4L#PNZ(9Ucj7#mU?WOW8cNpgPh@9iW`LM2wEL+DcRS<27j$OvLt*jP68h zib6(0vt^kG)vP-8udGYdyT)C=Gq2^ILM}sM&)qd=rBXv$)~lpws9xPcZlL9Nz6)Ii z>qW(0-*2~q<6h#$*g2|ULZL*UQbq^yiLgck2AidWO<$mo753J6`w0|$oscJS@~=Ko>ro`Pfxn{`powr$(CZQHhO+qP}ncK2*|&$eyb zr~kF~J{K!uMeMr~HKOXGqN<|u%Qv5V_`cnJ2D_9hW_U!Dx{Pw_J%_Sra9&eGl&mN} zi+XUs8uWZ{S&$^huOz(urM5BuLv6c%G0T@J06s4N=ES3kT15RG5+p=&vwZ+_S?Iql z-&d!e^d79658rpdnFskSGXKDZD>EKO7Xz~Y9jE5wew~FY=H_Pa;pArj4nY*DwFN+I zjs_<|M8_T@j@g%wuL2|f&50lU=EUVHz+jxRGCO{U@9)3%2JnCoKSgT4UEJ+Kdp=#= z=P;J+XrkRyfO|91l0y?#55bbisip>_wy60L3h*h^*!-XskH%r3YAtiI{jXTqJ|xw! zM+1kE@!o3Nc_`G78_^RckY%9LnQXMvAxR_zeizY45vzy24;EYY?+GS{Hg^627Z_7l z{?RRy$H2xI6DL;44~rv9KGKjWPBPuDcl=pM*>TFz?4B_T!?&tp1J`(s8}RaTXt zys6{xpLR5D$M7S)np2Z!cZwCoN=*eg(ZT3`WV-M2rYs_g=mnbe2a1aytDVRpvbbeu zKDp!oH8^0lzg&VpU?9~IeI6Cf*>dHAm3(6wXhh*ycm#4mk_;xOm|;Aa;Vm-uNDzqk z#I7BJJglW3F<4Q4r_SIGmlImwMV65_DO@?`)ScOu?2mf4^`|-cbl^GZHu{<9t+&W` zNyb_jT{IbdH2cHR_-_gRJO4WnPek8_J&dZeUWjdSq@xNbwK(8pFI)uhx!hO#um)_# zgmp0)#U{W#$Cg{U(`2oyM**ns5ztiVH*-gnw|jG`tA_#d-%0Tx-RZQhDJnDIpw~n$ zIi)j<--h(Bvw}#Rf@_h}K46!T@LH`3q#OXTDMxuV-x&x~DoWCPe)juscO@tXe#*vr z_DSDTh(Fq1yyzcwWtc9E`p!a7$I{N|Z$p}{bM5b-G>g!6i+SZhMXG*xGRmu$MV{-t zb|YmK%xdJN#vew$iLrq7fdhvUaL1)B^C9gF->3_0%>5)Ot@bt07Q5+W0K@)Uj`DW- ztjU^ZBT(dq`xjE#mTB>v<<6HX)YU9hifLxds#8xk3Zx1y3 z&cjzp)+hx~xEKLCuX$434j5^uNh2EVq!IP3Z5KNZy*@_GSSg$B)%$Tekw*&)qh<+D zaB?lq{fN|MtA}Bw8nG8&9=$0+^j4}O!C8HL)6yCJXZV6NC`KYa_zSVtBVRFM6m$%c zc1QhuM``$s{9}g}(2~yoPKsms+k1bM@)ejcA?(IpPy$K{@W#@y4eck2p{ffrZ3nkMcUBsX( zVU*5b>)#-C4zr#E7H$!plXiv4P5negJ@OV4)*U9eF_K}Ry33wRCAe}`GLwCUiftH^*sRgmT-Mz<)2 zN9d=EM4~dfn5tZw%I(w2TZ5&?Y&MMuHiES)TZca+o4@R8=ibPj%C!p1q8y>l2ewS1Z>xd2Vqd2*uo+boOR!U0mm|8uVcQZ z1A%Ui1b1bY$>;46hU8G|GyVYzw-1~wiv6&+9nUJg{1*^2c@(%+Mnc%9j<2Cr{-zYii0)GUeY zIQWSvXj>`VH%aag$;eks@nki#iHa@@sznAWJ!?YRK=s#J+ymFVBLZmzU$b2q+zLLY zNQ9Q2(<^!DYl^g;176tXN%<+<;=}_|`#K@}U<@RKyU;yEx-UG#mvn3vhOwgev>9*+ z9o-LB`M`tFcd%kc$}0TO?@W;IMG%=OD9K235*Q!AwRPga7`7NAL^3q)L)Jd3NcVVE{Gb;$!J_;-mJAw&T#tCi zI>lZB_@c27wlt~oWAok}VFS5?*wo>we7KSnqsZDrB&*_bbD{L2yn>#VGUo^v_W=E2 zVs{l=bzqC}O46V9z={$y% zS82nbv2th3+P~fgBQn((`n7e{KOdnWwHAn_pHD)c6p@LKC(nYwt$fa{R!*U$Gjndp z``v)k&)?A%$gUy}6m$fYdeV_(>e0~wZcfx`BnJ`-gCu$4^GytX-Wwb{-C_zdLDO+&beqL8dH&1h!;Mh`1WA2o(Ctg z9PuBM0z@Yz!(pD3((VX8BAl@-3}8?m)_3$WRCln&m-A?9Ej4R&o*jaBoL$@l>=*mq zS~Qyhir~pbt9T1LF7oEAd3!@-szb`7x7h)8l~s#>IHI1OPVi*wmtUIXt_6*b5FEXb zwE~#ub)#0>{t0SWtQD!7)1<7BFM~*-jC2}W#2Hdaw@_FcxNcCcNKWbIHJ5hRVeQk8 zP2CYvjg!;e*z0u@qoLu&((&r$qxzXU>(c6Tq`9{aVpInq!9$GEQl*4k(;Puh^#Zmj zG-^^6AaZM*7u23Wmlem`GGB-Oa|OA$!RD*E|r z$!^-35~OkP?2klWkCNO4WVH!t4^;FF zc;NQ8-~9&2R0kgK>5dhC^b$rKrzFU#yA54!eh`gPfwoO9^C}=0$U2<%yTD_M*_JzG zSJWd*Rch{jA^yoNTw=Je4I2IC201DIz21wjJ_|CMyC3y^)%f?4(w@8j7_ds{gPqBg zGaqnE^5d;OG<4%c%)Q$|u-dow0D)n<8S~nI5Lb{XGR(d2gMtBV_&7bCZM=?y%=Ffk zoqT!DF-*8POKb$V8i8=>sT|!-6VWxm0A}N^2PYxQktOWv_bae@9eu=7HUiyEJ2sM; zdCd-wX@iTtcq6sD1s5HW8Y9A$m}-u}9L`4lu`)viWZU7)E4 zE61Db2W#BZY8Pp)jqgZ*)yyOu)(kavZlzMUT_mq@Z&*k%bH@MI)|E&H@H+=qxnr04 zq@o+ZW?CIR-qdD?kuIhTmvgQWtB<_)XeQ~-X;2Y^PmQ`p0xGCN*Q%MmtE6{Jwt58d z4Y7_6g3|vo-sBWm&DIX_97$>W7WS@2TxqImv;W>jTGW#Z)!wKuOWN$vl`}({A>m%8 z4;W0W%ua@pd3a@UB-%K=g<6a!T9rOx194lFYmhCT;mfwM?mdR3$!yl&VCmGsm9yGb zc=9dKRDOCH_tO^ikE~}8=?skL6 zG^F94n#O6VG0T$30X9zD3MW_b|};Az%YB-89Tt^@nheCb5@EwQl*=~gq3ofc+A+#^(WN$K!cUQ zbF!TL2GV#Oi!le;4ZhF#D;i3#{x`4EvN@j`Zje! zPcKn7iGUq8Pk@@B;Kv$v$7>U7J>ht14EXOh#Gr%Y#QQup6i|rm<1ZHOpXvVpe*JRq*v7K=z%9Kcd>JFURtvJr?@CY$#IQ!X z)h`v81@>z>l8-9PV)eu=w9C@d1t4pJ52cCH_7NcKTlJm_Vul(y-iPG4gw>8>-KR|)G@^b%6HP8J2R?V}r zF#L~PxsHa@hA5)1TFUnjHzEbpV0OAhi6Y5ZtdSie1=ZDcPzsoMFnKjO|8YZvpT_sL zD;#Vf7^@tBxGIWn0-Imd{c#kjSj zH?ayjl8NB2?o{myiDOAL{`e}sIEOB)j*Thf&<~y-f>;3qA{<}9zOcJ`I6G+_NRG2)W|F?S{t4uz=L?kQf0sW{rdRf*i9Axc6vN1jM z^J(w>=ph`qGqF^5Q1oJ-wi6rYS@eE|A=)htq&M}Sy;;={K@$H^TEoz~H2f(A1(a%S z`QoIV@!6htDUY20)C)9XRO(PF|IU1;byM1kjiQA7&U{zQkN9&n&4gsgBf_xicr=O! zx|M^K9zkG(65{-I`~x2t(@_4sm0RHa+d|JKX4MaC$Wd{$&mmqe%x&Q$vb9CJh`(Vk z$o^H^M@|Qrg%s7Ru_%K_)VJbB32JI>18lc!q2#?npRZi+e%t7*v-*sSrWu+Cavzs2 zdU2SAz%#QNEwz7U)Kk^cl9T_dl#kM6)iz9>O0iZ===LYSMohaWt|0mtyHM6{Xb*h z|6$vqf7y1JVRPK<@_EEw;#)c>ad}+ z7NT}Fpa=4adpDzeSD8%)DvDgcZux9Fcp?w zyDzM!-ek&us(CAU#{$5{J=Q6~ zQC%=qOw$tUm+@C`MEZ4m?~<%F_JAnde%c;&q&QfjDauKu8tuiSAeWx2CC7PO3^wPC zCm=1V`_jl6EIcEf1tWfqCV07;)@^0ADJ!l{x2}5%RKT?`MoMSs|8m>Y0Vta@;#J;( z8ho4Swr(Pdfr*O1nZQ6v$AA+UG;!Hz$dBLw{r8@l>;MMO#>R{j18>~b;yGQ2%F^WE zt@*V-C*kmR5>6k@qFF^PeDCWf`xTCcj!PY|;ZBBV$N%9OkL%-K+y-X83DMLXdk9Q_ z6`;n`bPD$5Rtn%oEs4-rS1{8)7z0#P5kfwQ)hkX(L?jX{qS_|0`+6J?C(=54&fAMC zO9#L&@()Uqm@YFjs=xeW;mUktTczS!-2f6&nlrqZqA{?K4{n_b8Dg3`16hpxyi+vo zgOXi6J7ZdCu#s0qR@^09q>ry(jz}5~w4Yo0{i+wg}L$7#MT2p*amIidtkrj@7jw zD}!K6Rp-?`w6I5vOO1mcLG?(D$5F)l6DkqYpeaY+g;s{rX3;!gThA1%-0-1MRHS1t zjE_i!D#}lo9^@G-ytxd&p6Y+h3VNeI6S zz26J&${A&IWq7e(f={=*53;_5!rn1g3r_XflM>~jSPL5Bw{o$QSn=Lr@pvk8^>>*50;+ zB+?c*u(QRbVj>>f726p(USitru?nlVj3RwCE%q$i!iJ{+`N1D5=J~_!7Z&(xz8DXO zBQZ`u?~uoUIAebuBd#{!6!LF$X7=xK2DQPBc1}S1v}$r>mv(j*@gBYPI!UV;iK3=s zL^I=|nMmQw$H7<972KN6{1*j0Q6y{8T@ZhG-|+e!5wubGPbhMeL?BjJdj+{Zwi|q! zhX!wLtGnI&dSe$gj@$cQkoZw(DCaZPe$GYt9XZ>?CUMKnPj?ROSbRJNRl1#oV-Vu- zP1`F;4p?I{0>$fpu^N``VxpRmP z*xPs|0Vs%TmCgehJBg;+`&KB4htf;V=*&CojxBNqVEiJ7@^UW!4X*H@xq-n;L>*Hv zg8RFB)K8^Ux`j1tWcP#ufaJUh|xF!zG?td;LlLxlK{cHtL_e5-Ec?d&K|%4*!JVK>!wjE#J_|G zvrA}84^(HvlGYd=0$MIq=>bjR_|%#{{cpV)6g2^r<0F?Lb89XINz^{4{qO9(P3}cx z?6;yv={t)sC1Pp*LWHufh(NZU?W1?b{{d67DCfX1{e%td z4+@ET#Ci5!xEY@sRtnYNdsIb}<}tstbcbd@u5}czs2P)%MTQAE6IMk*dcDc3c3)&R z^YavYQFUK7cj_E*jCPHfho=6YG%~1hk~*=&zye}PJhN^Ph)}J9cEX}QdG6&g;BSW} z!f7b|-w;!|{{mxz+&x2vsovZqP19YsbpcC}N<$UOMn?-?<(&n**>H!<6-SZmJjXN7 zRO>CLpc=2H5-+tU4!h{zqB(Y^*{5dYl_ealZ4KJI%mw4 z)$lxJ=nj3kNn*%S(KF%~bmVcrQhR&Vf28&rdF$W3=9D_Kky$i>&xT=e4zKW7Mz7e_ zOoAU#(?%!~;pkggNyyYqQaLn4F$~ae$m7q6$2LEq6k6hrqLO|C?$pEv16myp-jkjm z&JfQ^HUi@^U78#NFj<91Lh`)T5cHfxO?`9R%jv)=1r7-k*R@e}jc-_ty8D2ls2~k2 z<$UuZrA^qv>FOA=iXY;S+5cs=kJ`4e5=IpCF%{z6pznP^U>9obct13%4BIS?W9)yE z?lp{(5eA=hs}xhRc8`qdM14N@nlI-rSjxYt=@3t1UqR^Pvrxy;5OGJxaAkf-%^7XQ zS?yWr;Dpk`vbcoVRuvtArVLZ2=@3O(WY8NsMf0efsn`^Rc#f}vz?3+MWgkTAfR~+W zqwN@lopzgED(+t3ao;yg>bO_)IhAY)J7dB2N#ps_R%?(l-6tPZL8q#R*m8Jkf#n2w zc)C7j8gWH3X?{q}7>Q&`9n&gXO3ZLd+%K+_0fIF3!vcvT*l>g@Q?Xt%HDmEFr&-6z z!M;G zN|iN>KBZCJYe0<*aU{DK4po;CyKyOl;MA>U8J(I5zo4UxTat&ZxVxZ*9yCgbA3!cG za)6zO{D4#~l9XH))Ag$UXiyK%2MSYCXx*7bjhNPSbksULsJ1;H z8pLZqwpMH*A&Y`O9j_)L+g-6S6Xl%zTXRTS7Md`a>P%O7#g+|wzsNaCW)F&V)$VLe zNLEe@J<9%9tw+2OTq_D}=(6qwSE_8aXtE2JnOpdVY4e~<%5KuUNnLYEuF}?f&Iv+7 zm~j>rJzR3bH7=y6c+IU*uD+S|bT)H6&j_hMZFFJpvFp0cjDTfG!60CU*^A#7^OB?2 z$cujATXnZV^Y1R@(p@^g9~C+7#UC%tQVj^(hyM2I=(_-FZdNG<&b<7LW~|$7c&;%Y zR-BF0zt*Ze)gf0@PlyVvAq5V~lR`@NF4WrAjEX~R3wrIiP!-V>D*%x}fam(kHQVdp zEF(2u!tTj%VrTCZ3eP zr1sxrIFX#S&o5UtaUF<^gnXG46b0b<7||W9>B)=A8N8{N%pPAK51p0c4@}92GUS%i}97*EfUWRbyXYR8R+Mb#&su zgEC1C77jiohkT7}(1_?&B`1m`d3eNMwG(E@M1#S zU$c7Z9=@&*PoJ0fJZ2Oh?|;Y##^W7I{rerJ66s-yKi-3r910A2xFb)M<_it%l1%N| z?EK#BeV@ntVSXlhza4#_Ve>y-eV4JSc69NF-i-?A^BxBY{|dp34tsWm@Jl+T^)1T+;Z1_^ z;4J?y*gfiMV0K!1X>NNM%jg$&-#BYqnqqK{2nIDf)bG@O6%hrzCD*lXwhJ-Mn!zyi2prsX4oJ??9GNI>MeeaWP4}`_`k9{-2ai?7e#($_btuki@xZz z3rRM+OZ7t=)EqjOU)jBkATBl3U2@ZNhnvCf=ybmBD5~gBst=c~nF*xcv z?0?Jdn`qZB!^4C{gYZOQ;KHlH`XO&?E{o_Em3JFe;7JzWJVd)A7o^A!9 zMOVxzdoK}>!HpNm#RX))485dIeg7;zV$l8Y7FyN0J9#e?ZF_aVkO&DCHx9ClRL@Cu zlV~e0o6)Xxwg_HT3a}bcnGg`!@K?QF%uvP#rCbKIRF${=vjl2VAfiK%x>l2*lWr9w z8;M2HXH_9Z_PD3f+ALvA0sAbp`7DHYF1?o6%L68L^LOx1C4hwsz&9v=P4Slk z(L3^b^#a;CpaS8WaJwaQ5EdUgl5yJF^fk)s*OJuxwcfAbQ3n3oeINcW_dU1ur)`$t z5jDDdw6E&9%=O(W9aP{RG|4yy|7k$l^!ud|(;mn2OLQ)Fx6NCA#^ zrR?yY_A~bA9>=g*dmH9bNfmZPpJDn0J{!6Iwv0e@IbE3Yfh^jzj9QRtaoOZm1@YQf-mM_CU$4F^b>NH!S7C9$67mP_?i z8$lOrlC)>t5 zc4OyAfPA0~T;hE?Vb-yE@&R)bu$mikxm3|2>)1Wd0m+BxLY5b4TzB+r9xz;=@dv>v zXKW9{N_U$g7SMpsNlI!8c(x2N{&M;h3QPTBj~q1Uh)|6G>=_$}19%SZ@m6cXfcZ>)Y9CH$*<3iBE%{dT(itEXML z!vVbHu*x-bFf(Hm?nPC|m<;JL!uPpl46WDv8hC)6f%AdCXE_*I*XGyaFnFB;N}6yl z0PVf}lQ#ayaLd+jwF@c$e|QkM%p-8k-@?Bu`A=#POW( z;p64}f%;;WG+l+B$8GKL1RTJaD)0|~xy#@T#XZ1hE(>1pJ^_bwfeZq(0)~u~4g{dY-`yS^+a$F^{3KrdJ?eXw{H&3CB#I7b74OomeW%yz{?ipS z(lgiBysf@NTV|i3EA#$_^<7;1n{u*JF7T#;l-O7Omy_nsS7_O>fH}{b6Ga9UJoVST zpI>-w#pC_4-+^Jz$aB*bNKM5nSk836diWUWR5|RbtId3?=8$Qkkx5^$$ zP0N_$XLp}p>OJu`roiGds#WX$%|ys)n9?x(IfYJ0;?-BsO6Ye0<*Jb>41a2%?B6&1 zwS_6Bw1iIIxRqgF#v0d(FB8!KaIu9SlM{NmF5GU1GtwBV$T>H>N|1 z($=hJw_8CZoE@GR3_g&p@c8=`Kny$91T9(M{irYHZDyewTa6{o+JcRHvhAl5_{jT;zCb;H|Z4HIRDWrvBk>bGafCD@Ffh)z@dK1?9#%WcPf(g`^W zum(louN{Qmv7M1*;}(Lj7D9F^Hsfv8CnIs!uQAr42YkLki-LV9ApX zW94@Xr`Z~~{tHdDK@OvAc#n0ZFH7fYxEdD5EzE`EtW>@nT-e5ONxoeTye2l$J4?9$ zz~ZHwtAa0BP%C5@!^By{9~PfdGcH34^$(8Zx#I$$0*__<#6`4o?BRLQ0-0cZ&MjxI zUvpRLsBegW>`;({pR39bY*6yKKQfKXAiY5>{dRR48>;xl)G&NWqpC(CW5riPJFuUM z%+p7GQ)sjM!kevoAPIKh;=SZ<4MOE2f0{ZMg}l$43X(v zhApmcwTUM-DaCpCA1-unS?zkj#A(yb1<%Np9Hh(P|4?Z>ME|DB1%I!JRI?tOf` z!&w3O*}27OMObmzWv~>S3y~`(&!NAFC;56pj!md2?#%5IXI*&A(Rnd*?%Z@Gr=MWl z5N^J;tmZqcY^KZU3~V$=kB)@`|0!^8X$4OcTeOhqdFWP9Pf3_^Vp5O5v$2|xDc$pP zyqQCz8<}A*jP4LBEn)cTb55&F@#<9u>(9gMxghIw@u$rqf8~1WQYp-1&XuXnyHrI8 zN|v_J205k8M}>FOnyaOjLRLnqP5EAY4>{ncvg^phvci)dMOV@wNWuO)&WZ|C-# zHd| z&+!`$5Y~MhnG7G0Wg*=miu#=JoN-*2Awn-=8{wtg9yR?;+zG1+RHrOqEK=63u+S4+ z7}%q6W=6yo{iPwO*wpYNlbjYG(zl?M5b|8m+Ud&?LtIAwS|ABxkA$W$l}U7$ z?>{Xk(5UnyJ>%C-lu=3&+A!Q?s3zlgA&s!bAN8GK)lo^wx5{ElBq5Qps+}+#FzMnl1)SU_d!X8I^1%qb2Q}`lc6-rl_nEp zW>ETeg!HcdPgWv&PebcZNy({Loa+mhEYS~`^93gN|8lm%`u}vc!otY@Ka%@BI=_Zo zd!nyf$`26UNE3sM|E>*HN~N(QM&8=QtMJ1YR@`}6cs4oe^6@>Pp)9r+DqIe`p*sO8e~5;;M(kjrr>e;p{# zzU=NO%X?XzHL=IVR$YG+?5N*1kBigS3A09u_757M%bgx_NI%eIoX^;SDzSgj=6YEg z+Rqc4m6yle@x#%`lb7kp@=4tv2+2;=CU1Rvc=ZG<_QChh@ZoecK`)Gx$1|m(0z0Cm zwv#qKpZ4xoAA_}@X5OE#`+b~$_i>X^1LfcIL*Zr;yG(~Ay)45Gl0kl zpo#ZylQ&W6afhLxX_sXP{iILR%4d+-{OSNhV!q_ILVu4qx%rKK|0Bv_V4&f0^`ZpG zQb`@Z>*GX1VQKUSLD?R@-UH$T;~d!Db;$}~V)KE=i=zkOh6*pe^gC-B5JOg03ahIk ziN>xd@+Y!47!hdJhZ`xmqo>rs2P-U%35HdaS>;&5B_+$p!F?Iv+yRZQ|lhS zHj#_*#h!%ZA(!;f*zL!lpahyT`G7(-FVpzd5z9nP-LsVbFgym!d^JzAygxQD3c8tpvC!F*QjCfi)`nSgYPbq8>DG zqyCK;?wb53!H>uKB&rRu0mSI*W#^>o*qu0SozgF4H8-izJmECP5*>V00be`qAXD1L zt9krHRn@3-cNQ}m?oC@5wlEqm;n|Eq2euC*agpP>FMm28w3a}(3(M?9U4%WP-*0AG zG$0LM@Zc{!0r&b|OS_2|E*yBLgGK}fOF0&D6jtt`s~tp0NARcJTk{=?zrEK(`dXh>&pIzG}BqY0yv(sBsC!n-; z}<6qaTEgw;wEZc&cIP;l4oRx)@HO;kW ztJaD6ys&REhqVG3IarNcY-w4Zu@xuzHnT&Y!{2p7q?iYs4?9SZw)8<0mE{<;A6cW zHCrQ|?pQ+c+I}9^>&^BHJ~*R^Ygff*IfIRV~J+F4C!>$Cit_i^k_y^Q?z<3w~ zcdP(p?&osD>hx8gNQKKvAObF6T&QXUtQ8Jiz z^b72Di&46VDMJU$Cu}RS1CG6jnQ!;8h56sf6W+s#8DT89FvyHjdE-X^;+U74xs5bi z7bsg;W9(0HUz0+U58P9xg;1DJkM?C%T;NhCp@?Ru%@pQ4AyUn(1>8a$M)hOTEj(&+vU@xMM>)1NzHe7FnJZX~HF%uR z7wpATA{NYGEk%8jQTg(ys0C$qfHeh+iwhW>e36iQOh%`o0tunE%&0I`CBBsMCBDz} zU6WWiqB1QC%n#87m^gg*VlDS1>`8l7-_0&*zh&ZWH-?6jHaaV+msa)c@JI>=F%`XtMcO@PV7_4hd~%|hWidAPks^V8Q*-wAn-0uV-2 z9M=>l_VgRx2*Kzb7*@VbZk@qYxhhQg8cdd;H;@F;=A+`5P8OmdW7VehrKbM6`n6yw zhG~4O>4yxP@a!hOz4D$XR;jhsLb-FAOx>}PG?tP$$(%N-F#}f49UZ1H zszx)WDn@u{U(;oyIShFaEVvOqv@Er|=_*FGDhEU}@z{S;>dG|lfnR1&im{*U6JjlB zBI=ip)fu#--vw_{IQ5m?6vx>Bvs8QQz z43yrZHhzX&lBY)!k#hLq$Pi*!eA{)Mk07Q_L6Af~d7^ZkK^I6L4T+yS9t#7FROy0M z=@M-cuie}#_8j_y!VXroi$W(qs?Yu)fHnR7$UgILST#$0!NhL5zlMYIbLmi&EJWg^B)KU4Yq_sploipd{RMi{Ks2}6-oM>W~hZ+kS9 z;0W!_P(C@7;EWn(NnTN~n*#CJKo`-Pv%*v(*^*#go5j^aL-@cM92u7f_Xhc_LU-tWeN zOvi+Stl57imbEi;e+2dcB!?e>nED}ED<tbiDe*H+{jufi)EguNUEu&pU$+|~@5``axg!J-3JkF?y| z7u$iEY6=$b{8LEVbXU1*6Td&$_6!M>W}-%h?2DIZMcHgQ7-4&bYYmtokYHm(WiLEe zhnQI`0__eS_s4~c1Ur+CvU5~};5}c#V_DP8cDfs}pK*QcJe??#Mic|!9aMKf<`H-& zcCZFvO=53d5rM_Jk|oXZoT}+7x&nN`uG=ayz8A3}D%T(i4GU?YHTPR{MDpqI!@TU7 zUmpl@$eV}I0bED|&mit-kC?@x>fk|mCZ4eQeX+yVl_%f4+PKre2^uqZ>B#2t=8`9> zT7APqv3x&Jy@}C##l(%`C~gYo>=2z16704KId}gcI=dcf8WuXXzqyyOHYr#_(SOXc z+}sV?n!Og4y4WU+*3GQ2N&27aD}C5i{6S$;6l@?3Iay0^4(x5tC#t3ANnuOA=GXr* zE%J$Etp`jO$>6w1v>EpmlE@%O(61c9;NjGc?dG0{c_0o0eUa{b2te#6MO)PWTiL=y zp<5HTqzwf;(+q)LgOXpxNC^o;u$|$yD|75TJo8Goh9T;3L+P7nCmIu7yfbn)Nl`>D zl@yKwXgx|t0Lh91pREi!J#VKK zQi4F^tV|ynaSSj7LA%?RW6s$jFYHueAk{6kq|aBHu)xT@UODfOM=g!Ke?FbWCK3+k zBAvw$D7XjRvIPG#0pv@6*{TnY?xvy#0Ua61uRwqxv5a2JXDTr{a|)pk938tm;_Q!M z>*lo#7&BPfn(7e8p+LV<+OrsJd3YcJD*`(o#UQbi!HTG3QAE((451QB z@tDcFwWa>^rHPv_hSe)hwxLvk6yL;74m>doyUWJ9FSg|9l#Vh+_9Q`=#X{}Zi^UYzXB8svXM#)ES!G+IJfHc$_sWq$LbvC<`%q@ zGJIC{kJfAxhQ4QFAH3{oG^hP?K422h4JI@W6hsm4)kxqh7;gw5jY8PKU;mwbJ0%B` zzp}`MH*by;iUSvEEUmBCuF;#BGMqMOJ~01?O*|2FEH(myy?&3<_-#4mPZqWxDYRdg_|6>+FNRHgjl-j^+iN2^2&dnfm+;#C}yq;Qq0AmCMDR5CJt@tG(%=Vd%?4!88s2tMbdDXc$_%;rKE967+Lc<_M( zim@%ZmIQ#sUpf+fjs25_5^IL z9)PvLr*B^3gWambYw++}^7y$6JHpq$a8JTsF+bstUgtH|w0<}b59P%sj@}xx?-7d8uQ!Pt(PHnzH@QXM5ykayGrwB_4IC1i0 zkGSSHv;!_`!m$sId?-I<m z&TMV;M5jb{&Ip^Ebf4@><6NhNT;DvI2@zBE9Uaj;p zz99~8HI%RT=HMP%GGkki2+Fv5I;~z~!rDUU9FbLvY;>$SPkez!08ngLi)+U&((MX$ zer9L|zcLN^0MA-=_(b)Xa%PlQy{oZk>pcyt!_}Fql=&aGX=KUGx-;n&XkN@u6h8wj zd(b#vUe=vk77+QVJMM+~R*&&Nt0{QQ{bPTDc@K;`Gm&PW7?LOpqcWP6E4`s^A~GzE znSUQBiOZl=>`brt)uuB%#ZjV@am1<1JL_hOt^q5bQ~<2MEHVl;OfUxRHB0-esGLv{ z30w)fmV@d7MghTiB2;iFe8dkKuA(fvnrl1ojJOd|5MqQEu;3+x6`#G{Hj`wR78bbd ziL%^;nEdRzvfCK^fs4Y2xcf>X;^UJ;PEFk9C{^U7Z@Ocw@txMuIAsNffiY$i!kL90 z`Z7i;*vAOHr4}FlKgRwk#+Ej0+eX{AZQHhO+qP|6vu)e9-96jx*|zQO)z7z9R`S33 zzvSH*No8z|QMFN3InVpLk0a18-*t48O2aE9pWF99kw7%$1{xE#ag|*y|FC_Dx}O)* zf|s$!o>5Jw)zdAU-g(`S3~Og?{IAaZrAHdi?gD>)iK!N z3R29lFyw23t<7?03$7|5ryb)VQIs^9p)%93I&P5PK?D=Biarc{8}*Gf?AYE4Smqh3W?{7U|j zwxM^ijpfV&YBE#>w07IXR4HqU8RVcQHn5z^>1H8{y}?E3EK z*QGJr7QKA`c<``{M(^9FWn1;swj*{@*BdRT?|(Rdb^J;p8iITEQPG9tNb%%&9 zi5JO4se#6Oo>wgql_Uy3CJrh&nIxu}n*urjO$tm$QYbpeF$R70v3Ih4H-A!BPp<}X zD(Y|O3CUD?4ESoUkBPV zj+B^6`@OA=hw^c{PkTCD_&T+mtb4()@{px<@gtN^`K^w^c}lQPD*p>EhhfPSz4+bU zgs(3;bx`#1`&qn^R1r(d14L3NMU3R2(1<9P5FIR>5;qaEfV)qkNzT)Of^DU3w*8pF z*TcvEVvFA2DVoBMkEhE|(~pZ6D|$B-K%~F#N52S4ATibTHNo*Ebv`xfgPIeC@R&S$ zvTsWAvKk7MUY`J7BiWRBqDzE8gA8i>ly?Nj(y>f}6d8qvVMLfUahRA45eJR2#GO!r zn;+2ePyj)pD;6DG1{HuXrjeexVFO2XXh#?)p*O@iPNFVD;411i2&*a`zp%R}D)5Ft ziI&5eVhlpXj7mBZr3FpKaP=pVkLc|J?Ofi5%V!IBbN_Gw(~#6Q@2|G0l5u%lEWIA} zdPEpV;GcQy2I6q8y;e)2xMJHlktsZGNoArmGtN4G7OX*4Q9@2F_QFDr%IH>SKk>{c zzJku|-NU0hW|f%@EIEV*E}Q_HI+h`*RBh7zYS`F1Ko) zcnk`u`Y|CvSf1@lt_yGGksXCH@ zx*~!5Ec576$BRKPlm6BnH}CnbT9uU@u-ecYG59aP%8O%%_}GgT!EI?*mR$S77hNqC z!7%rQ##+h1{3_Ic5{>TYKWH-Tm+3!?G%G!mc=a_<7egW>As(BYHe1HU{g$if)0|YV z#x*o5mt`7SMK;-2aHxIVvCK-=-FGu1GdOmg;f|gO^CHUp1I0}|m?vHyy=et)yxMk~ z>ULHglXgS1Fe7D5%|OR3hNGjq)4ElMHF>7Oqh-sQJ%3x@hLPES4hDABf2M60S?~>j=mZKw{9&_ zvokOoW`srp#aTnzegF;{3<0C@W=!k5I5~bkK{X)A$IY96-BAmRd5p9fs#D4O{G+m( z1~^S$Tt$?@EdV4>*GQ4F=5z9s*i|bEDkvl)F)|&_lpt2HsflstX zm8}=cN}vrGWpV)D_@5fQAtO*{a7Eu5?!NOLaKN-C&0?Unqv5>a8a(E|zfRQHEYpAF z%Xg?#kVqMKaP3Y^>;Ov%qgLLwGh+?~tchtxelSXtvsS2#7$rn0OcyASLO2Lir?e0KNNLrWca4sBaB zwT2j-nzrgDz~Z!Z*U#JO@eZz1EJKFwv} zF5&`93=L$g-;1;Oy|@rDW=9ehI5I8mjZ8BA`Bs~XA;J7%Tg20lQqiIkOADFCg~EA* z9G0(;Fca5pi2x>?C&!DGNdj_nK4Ou?L%!N>@6iQp$UsQS7jdR+O-hl;Merq?&2Wr? z$qWro>6g)z2*22u9N4?D5sF;d`_UF}BLg6mIPg~?&VXjWo!S+kYn3i1J$cYXPAzeB zbN(MF%;E4R_rTavZc~Q#Mz^vXdcN*plcUQo&1se(cfc-Mg{K_5U~G$gu&X+1o-I^> z$6VCdpkngAz;-5uAh&xbI*V@c*y0j?WO%$t#sMP4(B@F+o&b zP;|FGF#x>Ys%^n=_<|&8`Yo}Htu09`>uW04!*Vgw{Hp9`qF5?T362cs@s2TO;Z_>o znIq!cJ__vEvCE4<_aXU#kx&(i|L5PTP-Ryss_A>k%H<3?hcoAGTL#vOp(v1vmH8j1 zgj@b;gkQK}C2NIuJ!DL`;@}QV>ApjD!)$4553q7ME~&Y6wX_=b^-=aCtJ{{0^s8yl zlf-RE4Gn8)Gs;}HprRue(VEJvgOnC`wV-kbqO}nUICim!WoC*2oh@M0(`D+}h62-C z2y7(ulkVS|T~zv~|LN)kQj<6%w8Fwly00g^14HYR)4Lw|Q|EI~iN)9NqB(?~-cr36 zD!R-H#5o{B(}6SDtKp>@8_*BM1-TY6Oo&}h`})C857-TVo<~>D6ap*|2U5M=4OgK8 zm<;w5&aUw>m;QLjg5nPrg>PqeJw3B(>xOnVubeZb>C_6z;F&?j3F)*eckN(nBm}13 zr{~cj5Pvtyoo<4qKt+h@lpSd7ZfEv^{z^6@1IqV+X%zTF#L$zCe!WL>2*U^oGZYN? z&p@w2e5s!@@9>08>2Fuys#-!Yzuv@^u|)#$^)uh`vAF;t$JS)@kQ{j{&^pRCb=@P} z8p5buiCW$=ULRi+f?gkt{t7eTDaO}^l@j11^hDTgAZ^k0`JEJ>3)NpVn_mWN)&qie zb@{lPtIZ+T`+}3(TMF5zy{nK3rrWO7-aQJwNVWr!y4v~@BwA8N6Usvi*6Pt^EvK@f z72d8pfmwkC`lg2dHwp)nCE&ozz@o3r`+o1o9g=R&W!E#X`39Az>0B5z7 z6aHb=c_mPt;NQe!&lGac-s!#-dPfGes7SQKQ4q~5AJb^5KgDQS!4eXVir1ce6_^z7 z21(CND+9%4=ZL6;@Wd7SKW6{B9sq}+FpkE+ug5oW2QU{9z-$2x+98kC2$ay(Ado&uNO^%sdGpXa8QeCQ2@zJ~|Krj9tn|b|kiFb8$y@&YBBHQ1nn!G3{Bp1j#-npYLA> zxHp7~PcA;B>=nGOtK^Xjl6xTe`l08QLqb%_8WbN6Ud1Dq6g{MF7(&5cmXdEV()TfFx+ar9(o@L`Qyh2cq~0xkv*=SyLzNh zefLCFnOR(0?j|9FIzKRigOf-itJ@-MY!%Cjt*mvWjLKT3=Gr2wl12hs)ycL|vM^#d zQd!Z^8hJihlKe-lxV4$8n9c240pW9uLXycFP*V4A3dtyzE|MuMcuMBre7t6sWYUJ7 zE|zJXns_7I*2NUUvae;)bv@PjHCB;ZM6+Vnw+d{>roODnJM-~*!ve7Kle%`Va53%8 zbsd@0Gke@54T}WjPhn7Lsf=-nNA`B_Ts^KO*4PXP;TdcW`mkH}y@2DmMC~^Z1m2sW z0os-%(k-=P55=q-fjLOkdwi7%Zlq|~&0vXW6kQ~c@B@}fAq}<2rgh$jrJ@dUXZh5pUn9Ux77=n5&}=^VeD{$39bVQ39`eMRV!{i z=Fk*TUYvH|VO9vKH1jDbMrseL&nDcd3+%56iQ_9Fv5!95w&}st-;*l%V!JZ~PElp| zdS7t5-$q*{FkcvL5@^kc-enU{0pk>5;*K;nJkYMH4?KvDKm`w?qlO0uf)f?on<{G^ zX;xq^GCL0rcsrFPEKsh0c_i?k)PN17B*E$K`MyHY659lLklbCo8y;APtrKhrj!q8* ztJDwl6mv-M|D|l;_+OO`%#8mNM&6^XZNE8+*4} zHX=Cx7zl@%ktoxF6iW2-Jv~iFIY~sRS*S%o)sePte{w&gcX~HcINe8*C;dDGe-Pa$ z!^dw%`QiL&rkDCq);IdHliPG>%QO*PJbg0qYWJjIH2?R(GlSOeGqI=RGctB(o03g4 zH}6dkL+aSO;qbMJMO$X}uga+?&5|At#IuQh@LIHMzuAd7<4bd@j7V-AC)z1Mu>+Yg zy#f?;=GWfS-RI?$JBJ!VID=HV0}bVo7flN3zE}0QvXnD-YKmb|{(3j17C2Uj6+ZZ_ zs=@I<$*qs(6WG~Synr6C7ftuvD(qX9u9+B*_XnQKO2O;Ln{(TW|3p&r$}bpoY3yg8 z0|=L)1_OqMma)>dE5ueOyh!D=Go>yyB^b9a0sLwU!QUC;@7|1>^dntyH-;F_`B3SzjL={p% zu8kCMR28kFD)7i7xi*#tBENv25EwM*?5K!+FEl{I=7YQOgI0H77vpwX0a?hIy^Y_7 z!Bg3sK!#lv&F-{p-7EQGUU(4TNZRlLYWG)MYHMcH+_lmR1<_L3LSm6=y;!gPkRU(LDGRhp%sh@1eO`FLl6WIqCz#0dqJ^Y z_b1XCqA@LGn9(>y2K1j`w#!Kz5VT5MiTai}#_15t_C+)jkQB=gv*=r{x#G5Cck3r#wJj`}ZHIyS(L zw4JuJSv8StgoIL{q~T!(*KsG%-OGC%jk(#3sbqio#qLyLWTBfrsgY_zSHUw*tzZ?& zzY(*SJYFTKQ-^aY;2a5KnNKE3kQEt1Lw_=OMg;~Y>~&v(fzz27SsVp9?~bwoFHglV zfRG{heOv^71d1(vGa-MjsPd|r8$cdpzrMq_icA?1uxYlyMgh7nvonK1b>5_RZZTyG z{7GnL1%{bClqbpB>IByFSI)`VyZX6A)}*GYgt(@4sg3UAmny5fU3gFd3DSZ`x1CST zZTFoZD152uyk~|T(+l<=JH_Dui&n*@!|+=^&RV<#v7QclCEWAW(XT!y{HP~jEZq$r z^Z^XjN1YlP^<#q6`n08qw{Sl?lG>x@uEqY?5-6t>A&oqe>oAf0TqcAzxee!$IysYN36{QFy$@!&w@;VOsu#;2f1%=X=V`Yot1MHwcrHEPgj0@ z55o%x`WQqv3}bwhC&t{h`e0BX@5XTqph|R)Bt!^>RsK5G=@M?F+2v5~q*-pCUy|_7 zHC=1t2x0=Kx*kntdc3SIerI=t`0j}zta4Fu8@G`El&yF~^^-^O953-&!BqPE9fAz~ z`Acy75d1UXe2GfFEl=_w1fNL7&$`mNqQRr0fu8Z6M$ta46lQsdR+%+wOMJB--7(JDl?Pq#_Z8BNyC|F2>Oem@;8E{z(c?hE^XNsU z6jgPYl-pXFbwhi6wVamHxH#hJB)-u`PPQjTyN7}U_ixHr7pf8R3|H)28SsYO9Iz0U z%^nOjJ`{O9IHN=3hNuZ>;rgfXMQwI&%#BE`!?)fK?~^IgcGUR{=nZ*s)Wv{i(HFRq zo6=y=1G#=m+*PesIPXQsl|;+MZH9)!9lclDK#r+q5J~KoDgV@D*jJCom15DC&sAY@ zxFcuB?NHwCT^^^>2dBba47-%mdA?zKMP8F!f^yA2q~XQ&FLO}0HKb$_D*jEJXHG5? z6qH=extf4^_r~^e&7SZ;_F6w!yBEAeiZf4meBKygxjBgko#z}!KmO=(( zondS;jm23k&^z%tkR73*_F4W;`Fm<+_h(LhrK1ZG0mq~zRV*1B?kWTzG5T~qEf95*BLZt|KQt!r3n$MA<=eX;WdbrBK1D*C|KfPdI%(G1@YI1Du*rA zWGSoo0`z$U7qG2D<`)l(&w%@strdl=lq&AR57)O63zf@u;WZwb>6qRbpLIIB>FAGv zk*icrTW}-LBPcR_op`bMoa`pB8ikm1j2|_dQac1z+;2pCZqB)sYiLa&Y|#L|=IA`4?d4u24S?27Ub58c*PL<@{LuQ1|rHU|h++ zMn@zK?%O+i1-N?7xIlRT7*AYY`7jQB{{q0OIH#=Km=!)SIkuJOKJ)>2i6Q9Mar|(b zr3Ewy?Z`J5>EnNH|I;HDJfNJsg5?|VMi<8q5E_1l2huMX z;)`m^TfQ7~EWBW{!`J*GA>23Q)9LVw=CW7HF>N2G`Df>*yv?|Xan2P%CJ?Ygyf?o{ zkIwGfh6g?n<~UKY+Ac5TfZE!FA@|IzQ&)|P!k&`m+PH7HyDvC!<#}LTa4lIb$Y1ab zy*W@`mi6j*N<@D=RIvF?9b!BO`3dJF;8NG)|6TtUnWA8whVXjUZY1=f7xAX#33VLd z@7j_3hq9zXVa6=)DQy$*at$lb?g!t3lIi>Zl0i8CcNv70k@TuDvs{r~Y;Sp4DTQwyS*!llAeLVp?%Z$^lt+sOv4EJeGpmUpf$(Qf zfoBI3$LY~l-Yfg5C))Sn_Ec7WUKd~_|1M-cRA%yj^L4&`s>IaZe>kP8ANjC#>TRoe zoPWG^Q=#qniqF#PCC_hKOJ1jykvpc4WDhHj{-T0a(H#{x<8}#NgYS>kRrO%%zl_@s;5t_$@?Rw zL}isb;@RkG)b-}JDn)UsGV&Ur5#@!G(nN7QvpvTht9)t??KN6RqNe?I^N*>fi`@QS z@H7{QKePXN>ibTVPj~8j9t6v%zh-I>%&(wfKgI-zWOBTagZJ%3-Neny$+|=N z!E)~(&L#|0_+KFQMbTc3G!?K$jMVXD3TqgmX*NUy$b<%z?5_QwQ(RKQK-Fu=!41IA zjukGX3Pln^_G$G|+Q?6$h*JreG6+Wiax9$;sgg*5^Vnq2qz%H4hnwyC_e8Qq8~Fes z2F5hDaO__ckmF>KE=g2(!z->;o$}?9%nHwzny7wV8tDRM;kxa^J7p^-Mik5JvWYb29%%5gAio zcitqePV6)30>!D8lytmfG4`xY?~+u-I-=1S$WwL{}ch=}8;LCL!?vasdtY=^_dJNki@idR9}rfamJB@Pr*FQa22r5z~0m$<(agPttu0c z;3radwZ&;>jG13OgA`I}3%+Gu`;dJ{!)v!AuuCANj=c5Fd~Xo!@hEBY#hLWSVl8;? ze|mjLuu}dXIDw=Y??sM}o<+^GOW)=Hatqltd_`|fYt&DBpDPGro z$4|BPu{UYPIJZ~;`*@<*@78P$HZ*dv4l--WGQHZ&r>s7vJ$UI_ybbNe{Ok&+SjQ}+ zykID`<%gARYub+EOb^82{mgqqL>X+<1x0fQ`ZF`Qf;sy`a=}eT{S0dGHwV80C9D{j z;uxI_cK@?86rMP?fR^xu0_;B8U2q35boxx+K<~yyb6N_qGj;j}jeu20@AUO{6WpDO z>)3*fTwdO+7Faj`-St^O$}5cwaX2ur;TfpR!1U<`ZKm))`fHZv;19M%AWf3bK7=92bh zCIEX|5ki=e2UW6|3Bv?sh+G`KAtUgVA()VYOJZy{0Va4i?PHzYyOR$9nk+MvJJqlf zl&H{J`!Gm6$?a_ApNoFSf`%_y{@RD5fO6{e{lqCu8?P?c1dU@njo&u$PSNaMlc`PRxm@nYf+!C7b z5`lHtsiO3Xuup64nPK#~>jA;F&G!vcK3n4tf?DBHg z{Ia~d#obM3`6MJ%cm+%q)kXmaL%a-1DMQv8V$fi^=I~U_(&A#qAMYd*#%JgBlkaqX zBR5!N`y-$iyA91zSgKG1V!3X^D^twi1rTrF$+JkKs~k;FGD(-le&TtKz>17fOd0xR z3DKEjcIBNIhYa3Gxm_ z?C;OFzF{(1Urw*K=f53z;jn@{_n1z55<|=_Z`WXU<9%YRnbHTOKKc9dX3`iIoFvuS zk<%z_SNeu!?9ojyT_7 zF^)PLuId^-%D&2c#D1urYXru>FnXHhgE4}|WnP^_$*9h;Pr&i7BpDCnL>;eG(29cu z5+dx9A+aB)P<4G^t36-)tT4f7FQdX35!WDnD6))s;D_k3k`|w+2}Qd1YYBm8tR^l3 zn@Hgtu#L3mzI$@Fy#+_fB=No^VtYOvyj~XYSs>%-0;-@^zgUC&qN@ktfl+zd2+9MjC8a_*Hjdt(mRY+2-jIfFRn8KX;&$2Sigr`e=Lw5utnCrrDAT|(J=VBiU)LOUwJZN7)fM=x-#;(w|AXl8O zYyT>W2He$*oFMKd;LT}-&Q3$NA)39uN5|M8^R-=`H)k1Ln5)S-cCNxBUgrQz%sG}i zm9LgDA=9Eoexud*@!zahdsta|s_z>@8?sGtwyO;|cabznDh+oL_KCcw=;#rPxK;Kp zJdav(Cev8wInWMG{rJz|_EpqpVC=mm-$$lQRF^6rtz;Z@gri**Ij72f%>IQej-M|- zwlO9oOd&~fI4WB7DLhgxWltt;u0t7Kd3y8fFknCDK{>4XZZNxCyX}}8!TSoVb~ZTb z){%h{Ep}_ooUJz>a6#MkCDa*Ak1_w;x}T?01VM0>5u?GrMY~RWgMvTT*@hvX!Z9ZJ1X*5V?L&xE%J8V>VT9K@saF(4cg+H zF%hvQ(u=rzQb#OQUDnYpBURh8n2{Cg~>Y?uwQ$8i%*6>DXoUbxQ+ z{RO~XoOBP6riHn|E{u0e-53TV4e}r8zE!=B@v6EBB;AjSQ8;LFCG;b@D$zjeD$}oj zh^W)|@|<|PQi$}2#yv{IukhfNtEtr0tUA@tFFEj-l>wYG3@-(6cXr-#2Mnl!uOm7! z_r?J{m9h`pAMO(M8p3kF^L8~Xdq%z(6?jC0a}WovV!3;nug0hDf`E>Y+y*Sd&2t?U z-$+{@BkbiN8eSP#Vdy&%wIYFe``D=?8qVH0ye^{Kx%tv(NAB}Ab6xx7@^hXzxYmL5 zsC=G6ad5kPydu9}0|D~SG4h(}k?!Gk^4LYQXDo&kZb%B*KWf)kyFP zf@{Bw(Eor^pFK4Fzo$SJhW}j(WM^XeA1UxZP2X<{{QqhC#`kq;qJT2Y+%j{tH;OfA zxP0e^@x)_|%i@BKzQ1yXr5bIblZY0B(J;nRDeezCd=3fWm+#)Ja{MRkRu9ARM^7$X z-Mraz5_ZPwQZJtF_u}tnR>#g>sj`luZF1<*4=zsrT6aI*969moe!UWVy51pU_I0G1 zJiB-$4NEyD4O5oAQo?G^$jKK+u_}_uffB=y$S00gAe#7jB`vIB$fd{0O5Ft^DnOI+ z#D=DL6nyi1c60N--Q%{BDuLEeMA|yevfCQ!($s7$G^B)~**ex*p`VXjsA3!DDanH(d2&fL$_KjoFJ7bm^zL$D0| zET{y-M6fU&|4RCPGoY21*Zt1T`2OSJ^32)9>rM)W(*r1h;6#W5kzl`6B8y@J0Xw_~ z<`LGrG-gxYf*Y1g7Fy?a&(}rPV)BkS$$RkD=gH$CYxDionWVi+pUeM01CkqQ|Ca&l z(KK120c1mhO18GX`IxNoS+pEDd0_$E671kw=uoKzQAWgjDX#@){|x_v{WFMuGoYrE zAz3O3XdYcUO=3UXQD_JCucI$%bU_y&WY?I6(tp+3A%ytPpj0y;|5B^kL?BnBoT%n+ zSEfF5%5n?~s)MS{Q<^xS6sBv)RpUiSGg`=7X{^Pg3#@Bx2d~f*=H)EQ1YF%r$6P+W zBwE^fs7&88^BVxA48F2a51@9J7I?3`_KUj`dr{C@s*8th*x5VRdHzwhq--vz3`;V` zP^xG6wzk)_L?*w77JimKJ7l+29HOdNUVw@-f;AIBNC5GLf`Nw=qy+P^>n+r!JpATA zU7 z=FvP;&W{7nwp(MxMJgxuyU}5^pcCDvE*9qq9gI~5OiY@zrg{UA^jb`aux!9>CkAbt zgthn!X;-#Q0l zE^&QL+}@^0ikyw0mpw3Aw7t`f`ALW{$7w$GnP`Cn8od}$WaNo%ekQ*AXnm%kBjzR8 z`OwpQy>9=EeLJ5EAwA@NbfRr%8X|gj(O;>fpuV^Z5P-wr6O)A`)3ncjSfZlTY@t2uu~xz=q9}2zPwKnL zEux056&UIi`d9zdE7a!^RlznfwsNC<8lf?2N%|OPy^#cmUk}j7@5}OFt}t5D#FseE z*xkuoK;6o+^(prY7MLO;!ea*ws8a-wi9DiMtz$^NkptJ}U^0 z1P=6PXTbfMav`t4OhUi5RqY=c= z<2SCOv>zBrPR_-~)ZrU80zUk=GNqSb@(E{-U39j8*>+)J@tXlVts>-Gk`U~0Xkv3X zdF93k)do;WY;Of2W6`6P*C-N@LC8{!%7NeKyFS6P{QD?>z}I|7c#v&I}8 zD=WTnA(`Vtyba3HXxCD0q%kZi)!H4rLmjgWDv131RMyzt3_{*^eOvk8u;P-0(jgpz z2DV-jz?$;0%)C(bB6t>;jDfC5Uu*-=Gm9t#22WIMb|G((Uk^`lZN&(9#OA<5!|kDP zk_FOk+iz@{Yp*BhL$pSi4)cofXdVJ0qFU`JuuZ_Y`AiG z|1YR^xle(E*J{Hda7aTzFkETDEy}v4GH1V?LOekLg&iWgsJ%c#OXRA1!H_DaQFx^^ z$6@2*oFH4E_34^gjyjitrZEsAkOLFw?c>PAYPATD!A!HCRNL-7#5zI~P8p#wYWC5B zYbtGdJ4PVk)UZj=_oyP$(8!yF-wKP!!b#+hB4!rCHo?c;oZzj48w#8rTSwN0tGu ze8{)8kHHo3EI3KwwLL`25J?kIWOmw3~P{e}xE}6HjTiMs-`q?cJ`RXKl`$zJg z&O3@NyJ(t6A4#xJ!mnV)hHC`iK5=e*)gA6HeET4u8ASryvD}cr49W+xEAA9< z&2^+HdxLlK?Ufu?1VJQ-pR3aA)|&R(#hD zNWdPD!Amg$=W7IE!jxng;1mzSa+An%pO)0rx;a&7u1s-REasNJ(0Qlt9xos}DD-Cg zj~q(1IZF1LaXf0d5hY(TY9~wDwJ|hBMk6?>^@|(qgAald#mZ;`$5@z2!BkxaZ^$V zW8Nvq`6QI|Q{o3h;mS1*7z_@@TLJ=E1P{z;2mLtljB7xKP-86PY<&4+mBZ8)7n%X9`e$1~<0p zZ`Q(X_KIXaR7?h4bVp&CzICX3`q@6m8r{JurPadFpdxb1k}5HWC4U2aMA49DysqcO zKavzF1fyh7HwjLup>B-aMf3+R@p)j6@d_w1h4G-^zFc>9hb+?{yX1N*oVSbzfb%%_ zq8aXMu3_RLQ^i_GpVkm-7bae`InAaXLbXJNS%)1dX|#gOk_O_BM{dzF-X}E3HieJU z2=U0S-mWQ8h#^>dB!>IkTtV2gL&INl5L{F2X@VM3{W35wixb`KMGXv@ z-c;NZ>d%P;-~8rj6B-QvEiG+6j}I)}Pv6AQ#|zHRpJmdwnH+e5^`hOX;axq&0rj)z@s=X2Yv_7!mF3y>>1zobUS)3% zIUh$sqCr4g*Hx@06b0HQ7m6|LWOwzWBMR|D0t&psML!_iAX%`Hm5PMHXxxQ`Xl|AL zto!H6>fi|>*RA}awfOYCvPYyff@U0}{qF+FI4^I(CsAA*s0Kz+dGD@ zqByVZ&E??@Ml~0eRvdhAWbg+Q(;(Yp6)~L2hii}(6AeI4&^zp>I^}h*vVr^;5X5n| zidW@qqbcnfqZdqvqand%^{|Vvw|1dDfI_d(Za>r&@2*aq@sZ(#WGI6d1`u9M29cPP6KwtkDrz|9HT9`y5%}V>Y`?P7yHq<^b2v%uIXRpJTQ+_Tto_6r3#(#8 z>B-!fsZsTdACffFZ#CVrR=#8i7M{vmu4+5h>?LTYRLhm(Q98+Q-?+hnadDd?ZV{ww z5~r{g^3b5*G4!b31TGmA$rM+5Agq?AW09FHsV%_bmXoS(7R@JP6(q3`4XW-4NgWHjkcr3p0K1v{KJ} z*Ef5>pXtQG+~SwbVSdZfdI3{aapbr~JQ8hUIYX@-tZpzcNDP#fSkTV9DvuMZb)R)j6MC_Y0u6%mk6JYk4fosfp^W;t6BqK^a-sY%n^lZ?iep&NMg7q9ke~0@Ls(%7o=jy z=O7(c(ol)#sGH2+aLV&20lSgNqhWYzZE?=CUp1X!Y;43y-{sPznRo1=ZQ=5q_eKEVET>7vc^ zdVU~sbcMg(oxl67{LtJ>&b-TmOy2(GgvLR*V*L}u0U86L$QOigwzrj}#d1bDmEEamt$3qcRPY!g=-i&uMqtiBWkl6g<^@2bPCRy$ z^xo_O>|tHNtbvp&g8O+)gFUhJzyLNP)=N+};uyUkqBam3hmqMy>z@aO=}Ub$p#=_MIT=*4>)=u%?=or zGgI~23{b@v+ChZE5^YE((b^kVPD%7-Z%7ob!TRe7O@JxFXVn_?4y+HJ<-K3T%)xUG z$Ws?S%FEMC`95J)NKx3IRA?Hr^ujYF2VMv;LfUXesql;4%4R764<$A|GE;E_AwKhH z(=jG&qlyuc&OVdUBPXgD1`ss)+oPwD4MAX4Oe8|5p`~4$cHo{uk#5c(skLDcz_@8bDLxJ;sIe;FkW)?`+*@_UWEDuO>jxX~ z41JX6F}wp$d|-atkgVH+D(CfOHNfvg<;kG#??j~-74UGt-VIHoLdjIl(GTDFq~Z|7 znwm?Mp&i9Z&1%PHcUk+8Z5wSmG0AH)8Fb`VZs_u@c7ra_-IOJn$IPo*R+A)L&M`uo zWT9lE8#1&}N9}M+drtV$<`ymcOr|6+ecz^ox%j`dQ`sD2A*s&E_Hy=pQH2Z5^@Gx= zqA5FfK4J=)E?UKAV+IGa@V^DwoD1Jhv4^{q1>M3^~xLla7G$J6hs)`!1+mbMW)pZ||Yc zJPAuWD2rRQ@$f42WjF9U43nxmxl{_Z!=Pm2;f!A0A{Gcr!#j`(4)Vb*ImY`qatm#1CpK>A}6u9x)ScVKkt- z*o>%1jTzyp%kel5>^5O9BO5Hq=BX<_`6lUbN*m8&x2?HI_uI)B4IbPQdg4jyM2AJ@7A#FwqXJ9>XLnQbo znt4pTGqV6P#^6Jr2K?HuuHWp}Qb|1iIb9dp@AnvL=sq4ej0-S5oXb>%rbpj`kcpSb z5PxSQde7G@Ut1rPktCECnJ#yigc;Fxj9Q`oQTcZwrRsRyx4fmt-S_6m z`s5Hy>z*2$y-hxcu%q)faK&cfi(T{I09AX`g3vu(d-137#H45e;+3X;((wA%Y$n&d z(@*{mA$_aGfKIXhE44wPo*y?W)3f!Ceo=)_H8ef?1Y;Dh|86iHh`ehCKVKXlGvc{*!LGZFA z%852OFe9@SY%x%%6H;>oKjNvo!ljoG30TY<&kPPoMvkHsxQPeTR)Db;0bq06?h626 z#yf=BDBNj#JGBe+&+_sIrfG=M`pDeem#n^wE z6+v?F(K$lgHwSpGO^7oj1kysAYZVj;>32OfVZ}k=Bu5Ah??IIiGC~s6EvI)_VPkDB zKR2YLiIibht6IILqX}N9&i%!Q8$^a-8LB2|jilQ#VF))VNR9>$FwJtLLij#T6ioFw z%?sU~_j1O!!9TsC@%2B@z16nx7*DWLn*rM^!{54NFnA#PUJfbx;ZqgzE4KK6RoLut ztjliEx^|0*Rbfb=MMwc%AOX)2Q!J5_-ADqQ+F^k{JIc1;=6ovW;4)t$(%^zI!v)#Ni~ybx|4NCbcv;fBL5Vz8%92KE$)5w>;rO=zOyQsGhd2YPF~f>5n(dzZ|9E+KfV*Cd%pZ zr%GqyOR`hVUkYCDFRoDk`-Y`8#Fs*=3l?;eH)>wRnvg1MdG5iKd+bS7Rze$Ga#23- zw+wwCJUn0vq1Dxa8!4&YulNIEoC{`ZmYcdrFi~1iQ)E@!NO)@qlmzR*0v?H96QB2? z#2#Aqax1wLYvS#*gRn!*HFic4nDPmFXE<-f_NVM&nZw;sN`9|J!8#+9hf=0w0_dv- z1ftMKl^22Y+uX6IeFt)eJ7?$2Bw@cd`k&4;X6mNxKnTRYgDb;rBI5P~bG3stVKUE% zkG$%{t8{`5;lN>d+t#8awI0xm#H`OrevN+Z!_uh*NUb;H`+yDowVVxPV0OtaI3t!; zTUU~eXToIbiw)3(T2uLM5gFaVScG(08+n)>IqgLC+zTo_GSzppp_Ai0E&r zn8LE=OP0Zpmmr5KfJHzWKR|z9{^%Y()fwo*QM1(3DLMFPt|Av1>Lmsbk9E2|2b~`l zHq>Up2t!>OvU}4`qp!o3P=`@TrmV1K!e(NcR@V$zLD!yDk4#02p3*1$@qjTLp?H!# z*fZf8<=sQci&=Huf%Nv@f0@0+bZ;Zu6%QBYvP6nE>N2{yJ{=SO33T%%zueD#o+_Qa zO;}H-qunwIidfi5x0EzDO(TA;yfRD`2h_N$lXa6WESh3az-rzL#NOqu>+9h~U4TTt zUIs=nJ<1dYh~f<(aw^KlFi2cED}}{Ou{sdHfu2v~3m_!my!Q|(0Mvmo;+hB6PlB}F z${GWLF`3C9=k?X4p(R%H0MlVpk>9IIRdb-3lM04TL2W{kwNO>wI2EZB3K%U^9XHTV zGIz)viZ@9kstxN)fAti_GE#rf>5Co5Ng7PqQjUQ(@hS-h&;R3*5OeCXGr-nQq@W_q ziz=rtYg&li`#A5L3NH#+Y5P?*8R2h3CgUzW=} zAH#)YmZ2F&iU`ydvz#nVF*(Jx5k>?3@OMoxsUS;JMC09HgeeLTZ-zM>j5&$14`r9; z_>Aw+Lgo@n4*fbKHtE=r-;A3>-x(jNGszC~<-nvp6q6;t4?0}g!kIRRJ^&jPnHQtf z$LYx`PId){w`V^x0cJ0ByYM+3Cf5ZJ530TDKO~ep=lP8j;^I}sGLK{$sa7;YB@G3I zGSeKYljG)B+pAB&+PhWfub&Z|)kG`#D_>M?B^DHTqR}1=qQgZ2o~79F>FARC|?NV6>=hr)VP)df;S9Ni&fr3-ArmQsgN)dm_5o5B(KQ&X(& z`(9Yudj8a;5CV*BGENIXqb;9(*4D@t^FWJv*%5D+z2r>;4^wYTf-R+4?&B!q27)Dj z=QiP7!b8R#1%MZeI~?rmEza$pw>FCxBDIsW20W}3?U5vtt~nesPnFswK=Q+q9Ve@G z#}ayaj@tX>QgI%5B|t6t*OnO;RW65%tnpJ-W{ztx^*v*X3dn=S3>Dr?uKNk|D=wVQ zEa7UVlsW3AOrmNYg){Zrg$6hot0^Dbs=&eN)3`yLQhm}+Grx*cXg!wq_brX&?)Uc) zF(+x-L=n@M4tXEHgfXJRiQNqxdcaV)_Tmi3+|x~cjXVNa!zWP9h>ta+SNwit3J4-+ zVOdl;eYX@alP*+3>{YZ5tdfHyk4BJoRB|^OIb1%G{&zi4YRmFY0DrOHMk+f#o_XCs{^Sz26C^yy^plTP*tlwr-rP+2 zOIhe>j67`kHT#>Ki{EJ9R;M(LUT$7~t+P z5*AbC-^>|z)~>b!%wMVsJ~l57CenVYU?vmTAb8c}r4~1o1$A5;QQ3**bw!jSE-=|> za4+9m{X!^IXl71GZ5}-6WyyW?1IMUFII}Bc8PmFb2@Y&Z!cj~*PO*1v2 zxMXjSuKZrdz#`DCXE)r%Zqgq+=O$YgX#~@merW4_Pfab$ zNlyh_4fn!9Lwlk4uXkelb|NN;Ep_o7?iG zZb;UNrhWjVjON?_mu`~z|Eim0;^biapWURb{e~FQw_V?lA%B!;_kNEvyeJ^I9I`&$ zU+m5{cuW2{G~x#mX)4++!k=%muwoI-;voqW=n%5>$u;wnqcu#cwLQ}onck6j>E}iH z!O0^gKOZTv%gI}-9-W!IADnG}ZIZzakDQr(Q?5MN8#Q=on|D(_eX_M#{>I7+cAMAh znYz2lH_fqXRhq*@BoCHc(}M?Q<96fa2MOtC9i8(CalOW~H%*eZmng|mUy{0h>ja{V zs5Uk*?26gJqs6zi6?_L8T+LsxCXO^^GbXg@xCL+8!H9=qOi4;Li%O@usP~m%IlN=Q z+^G+qkR)Eky=4NO5coaS9PzmADfN9Te&+H1+D3eSBiQiHEc&#Tf8J10^YX9t9N{;* zD4a`Q47-jbn&n)%iRNz}=?(tsFB^XT{b}T+4n)*To0~pS4JH0$0S?1d(x>g6ZLg$C#th(7plD}VoF4U zQNUb;ZozqwDB>(=TnPA5flcNC4hm}^BD)LlcZ4}!*Ht4m205w`EtC_^;X<-RkuP^l zq$@@1)%L_dw_i~zOlK55io>Kq;z+e1dZB4Cpbyi55~qJN#AQL~!*#w7;&fI7jIfJ0-;6RHsMV^;)l__=%vwG0#M1%Q@OMc z2{R2}yhdt?1u_7i3%nR%G;?5%{;?919;08HH_LMUj|rP|cB6POviDJHS3Xt9ovSO_Na|u&TLE7`Su#O-#72{O5T?x9=FxOf z4@%)7U53b4blSGSi)w}b^PBU5a-vOfX*d1m2NPtZiVb*4vh&r@pc|TZyH0y)if~xt zMVmsUdbRt{a1I|(bI?BL3KEqc8(gW1wdZcy1!YheIbu?;P%?B>HYUeZk!!_;mGHc} zCT-Gc(&BfJ>1%8*>UUL0ZyiS{2F%&W zfi(q5_t-%|{R!^$<)GibgCq$z5<;j3ha@CtWrib`dyh)ti3}8Qe6<}9VCeCH6OX(b zcfm<5&Cb@PEzkhyc{j?=zCwfZ4c!WQu8hv7g=-$-hPeR4ze8Kwa|Ws&iU&3572p;u=R@woIl=%f9yB= zu7B2-zpqFy5Zb|cr+;59eDft5XLD1WmsaG9u3#YKHK-E*^oy=AAT&BxNae9J3TmvR zL+Sn5TO^4pkI*zS&;>BJELm>^nzhoN!+iw5X|(kB}FO^>np z>0-7Q?rAFAU~nUrPqjd3?0RrIxZtqGEn?-^Ld#%dSL26`xRpkcK+&K-$7RJi`SZG07VUD#=!I-MF6hE{b#_SyLp8$OYMh^A?x2c&8R*O$`|Jr@ppaEadO|A zT)%HTya)gbm7*~qz>+~Q^5u=z0cg!5P%*WKk|kY07s_iO`10<^^-Hjnl#{dWQ!txE zmW!@Y{cD-p3XJNcL~`EFwo=57kJ-)H%~h@Ys*w|3Tl=PKFmj#bO`D=^{Z-l*>+{yJ z3-oS|9&?g-Qq{Vh_Lr=uDz@f_CueaUv%LEwe6L=zYDDG^>)frPfN1$`>%vUJHS9R7 zcZ!Dd^Qt}mS_)4~;?kH1r+zrx$~B(lJ%@v0*)H5V3H%X|73KtZ%t8uUE0SA4V@Fn7 ze}3d`A1j_Lax`wJn$)E59ebuF{f6cy#avFm9d^xM3JYTE-`^(+>1EVL$zI#KMndnI zTf`5RZF^BEk4$s1XQztF2nyO78(TQ*_XdH@go~RkI*XOVYz@y3`Jf||+lOjs+h$7K zR>kF>#bKm9NcnFOvE!>Pg;`M5Y6H*C%Dms5hoCr4sAZSW&%j)#2z2)Rdzd=xi8G80 zCL$ZWz0$ECZAImElLq~=I)1+;^LA4UQcE5$%bPfO`+~L#w`zkuzdlhaie@r(rAAu? z?5y2!0SO%`?$Un9>w&65PIs>jQTG7>G=!ncc@0CWNjH+s41T!J44bOBZ3ylz@6{w! zG3p&Ir&^PFRq#Lc7|n$tLfiJQ=0iYB@UdDyDD3A>PhnT62N$1*MB0WoXb?RnEz`@h z4IsLETE{zzVTPDB=X?MvoRI_6wCu*+0oZ-WDGMfi(kYQu4KsU+rbt=&Yz&plf~`yp zIqL7(>*dmN(nSzKftm7Q$r~9s7MnChXvLfLU7}>}sRUU62#V>+Xnj z#&ruUc?su646iT7fJJwUOI0cF%Op!KV9TbzpqFple2LR#502}}w!#GL^~}Wki<&%V z9txDG4#tc5wpAD2O*Mg+f|mnWf`>C=51TZWQzT%z5l~1TbtoQ197P$X>}~v(LM>?q z?>o>3wvriB=0%U7m)SzA=^q9sr>I3NHTnVEnR&>Y|EA#GL7())$TA`rLsX351iNE-U4pIs|#nR|$qc*<8LXRYKt0pcqCdHt9 z64x32uxX+BT4@TOH$p>y>DqsGcdQq52+DU^o4c^>JnBZ5#b%l0StVid&wIc|FKp1n z>aT+MfG>kM(LJZo?K+7&!?62euRq4Z{KhZm#4ecL$4oAe=qEUMYR-xEZwh0FJ`M63 z4i#;AqG^=24R>i*3NP4+F4oyr)x6hrpdc+`U!kVg8VXh;oJY7lLT>}*UjyWC>J|Xz z*Me)P_vcs?*C}G_gPnFscIhOZ)HZuxk=j}GWIk#=3us-Fdtv5u~_*B|VdSriVdpiNHq;L0^WyXOp4i|!bpN40{w zd~r}qcM5U@Ni&MJiF-pVxt?vm_a66WX^Y#c4n6JehiEIwQ6Gh~zV$DgWAVt=o%KaC z(!%(RtaIB6CyL(u!Q6>IYW~%k&w(2S$_W$k0TrG)5EuhUuF|HzKINgtJXXL+B83?QD`i0+UIH3vfJ%Tm4! zAieRC#$hXVe@d+9(wrc;C(-1%$=D1K7hV0?XXFR%ul@n{4VG8=U&?-#|Esc}g^BHd zsPMc0W3gM1{tt^i94Ctm(l1?>j9K<9`Deq?*!@1?5s=L?vV@LKG&kpQC2tEFuc{VdswW|h8IM+Ys`D~E*f!|BdT5hZ#p5B+5)FF9J9Rqmuh z0{tPn^S+=@`bUc*`|w!*U@GNeX3r#|4vzq20t%XVh1h*f34u8 zLGx(|`ikLx_3@G9&;Bh-H=(`KpOMTijMGeIrRD9s(_e2NRSwu+@ZMaY-RggGA~c(HvkVa!?)j^&GEZ^WE6JIPpkm$Cp`@CE?{zEQ|P1+JjZzh4=3;2CvtXP zZdVUKZ~H5{Ibx?jki>2AAV+ea!H#*s!3JJu-kyODhycC2?t6*|OO>rg_0{A?-gZu| z4<_SuE6A`v!R@F7EvJhU zo>j-jtl(*3MK{Zw?qaupdU#3RP}G%8UD|mXKM}Vy&TrbO&Z+-`(#Siio>~XukE8Tf zLh44+(uqF;Y$-EXKaFa@PGHW4LMUH$%RB`BhV8AQ%S==WT>OUZ5r3CZMXEPriE{FPh*S)?U8j{KgG_zl~8 zT%8!8i6BHqnzne%BEg{li_**f{MULaOtpf|pwh6GHsQ@ONmCI#p1B&riB-4Dtfssp{lG7kg|wUGcfkfWYk7 zJD5`-M32lQ^;4kg#zy+pn`qvk_`u+JH)x_AFB#A(H$qF{krV_VeI?Hi1OlC%nN_aO zO@~(FPe*-pr#S>00p0iQ#Wboj-L`QPqtx+<|EA{0@dusG3-|qEUwVQa&QvTqBX8J2 zLZtyLWyGy0WU~4ZWsZu2hVTgC&8@DEqy|FBrU|(Jjh7PgD4iWP+g%hh!N<%wFL@A2 zsdX5-j2o=Xb#Ni2PMh^-b$~}8uBBt}2IsL|F82H7Mm*CeUiICy_{Ao!?%rsLE1lR) zmBP=Rqp&QTzzm@=a0KmX`1$1x8R4E_z^he8{yLcB>icdfON139ry5Bj3cM5M zu3b9lECDnxK?X)tCc}h~$pfLu-U%!ie$X^N%0@hmp9okx5G~1)9n56!*SsuX!cs>& zTjc#REQMn8j&b}_3MxHjy~b3qHX9z<{v;Nja=Z|z*4 z)#S&Bf!WKzIBsC*KtX_=YFBDxc|l?1YCYSYn{b;gNm2d$F~;jqye0Tc5LtLgi!*Bz zn7RNp>~=j~q9yNpO!FWGtcY7k2hx5x?OpN#c;~l$Vx>5Y0UD>7P&ALCa?8+=`CWv( z$qs}5k9@;;v#NLL%=Zt;u>;Os$EZ(U71#{2E)kUB~p3>dJy!i8AW zV$hvvayIdiEwIhJWcQ{4SLi9Wt^4-I5sfP{PLncW68E`zB-xpKs6OGb*QY*Z@4D z@cV@Qnvp8sJTx}5gHgGVZt9k|B`#ye65yvmOpCTvqfn?Bprg>P;YnM-dHx)H?!fpY zr;2m2wUcVNL(qsAo`K#x+Y+dx*kupB0;&@*-oQ@zc}1T#Y!0|VA|8O_QtV07)wRLL zNi%8fI!%CZq$JGw=s#3s=HqYr=utF=1=rs#X!7EmI};m`pg5pTR*(>?%G6ZPC1SPQn4O z^4JcKir2VL*}^H>=QZ3#PSJQ1SJz|7@QT-RKH^GtgF0M1K4RUp8Zk;jQdPtiG@^(T zO~-{vMbG<1&QK((RkyZ((%rpg)LnXyjN*hc>2FKYQ&`i&p%mLfm~Fx{_gYW5EdISH zm0~ZUJrJp@vgFiMp;jcqxmG5;QmA+|k$)#eftbgmoAzYTjhta($_a)s%Nes$mYG%r zzhlykA@$`-clbUn7k(4lW=5On!CWqrmc{7-U*l!nT$lUc6u%7&=K>WSd;7BNsKj9i zJ#^mUNnMf+JR-X}CtI@B7ExV4QR1YDk~b()pKmq~kVTp14(}v5^91QB}-<+<)MT zmsMMAVGcMr`d+AZ(D8epL-5tAwICW!WN9yhgssc1h>5%O4|3+zU&BJ}3C+G?8OjsQ zL+!#h{5)+A!rV{RDcQ9AnhNcl12v{ltzCk8l3A`|cY6{t}q=p`A51puziX4KNY~F=W%%zGWa>agBC?NzMJiALxOdWOK|;4X6K1( zbj-A?uriVRnxPxGr>K?;CDxK+%=!za6gi`{1gsM& z8xdC+&YRrw`rex*cP>6Aa?0o3f*XhK^rS@^1oR>|3w#1dxIie3dPWwav@#-O>fpW^Z^=Mg<^zA!(X7`xg#Lfl2A zlRkCmFb-{chCn^>W-VgnIuuduYE#vC>|8$a)qb<$#tbrKH`kA6H&s#L36vw7hnqH= zs6bE8f6a0oTYI=sTsccU%slU+>-IDx@#6|j67IwVo|dF?;vSl z7yYeXvryBM)BLA9kMk#Fl^b(5#!p6h9y86vmO`uIkM57xH}vldgM+}{Q9X>@JSvae zinzj$o#a58Z_?AJJQNAh*zl@|sn3|@f`;ZprpJXg=`cw*7TsE_09#BT+0U?T4Q39LJ@N+rHPou=J z_*QnGN+&|zFJ?531|5PECB`g#C;t`>MW&*#8DZn8jorO43@BzE)SR2B^5f^AusdBS z*V0Nw1W>a1AOu_XFF@7+dfdsc>ZjA1Jsto?aMrv-*xRp7lh&Y<`muAxjqI9>#M@+J;)GChW02{+C3%4F;Q53A$)`DfCMSf*rOx(D+mD$YiCBN>2 z?3>J2X_`m`;vnm|m2@w|50S!;Akl$c%g(GEBmmY!nF9-t#@Ki*VKhcUGS*f`^g`Pp$XT&-KyE(`d^AQ!HqLFH8vRSRp`xp+SO^1H%{FDIr$o)XkF>WQ~@<3Dr#c2u2G* ztGJHSR06NPD|l8=%#TtX??bj8>2%Y+bpL6$u}0o0yCk{n6Oc%+5BhO`WdDL6QQ$84 zUxps6|5rl~CMLH3x$D%@v_BC0RnF%B%+W(91j^Ra;|aJ0c*L1BjQ3%3XM{`Qt)qz> zNhm^z8twfjolTLz&2=<+#$phCR{T|J9RhAil^GGtvbUN*l`xPg160Dw26HlaVB~an z#H}MuidcnYsUt15RvX$N(x6QZ*CglJnwB!3Z^+?8!KF$GAuFsy@NeS0zXU?4{SWMd zCq{4=;G+nLVg}sdjXY(w$Mds#-5PROuXc4_%e#DL=2g` z?EH8Kht$sSSv>f+%;#4qrp{jnYVY~$u7ACS1WGjf97jJ<-o>|2z=(uQe+b3_3J|*^ zSmtN~%dgvL{`J9cge|}&%ps5kw!j7;6v~8boD_gab8HgnYR2HCL8yohjmtrcVst)v;N03h13VhE6AK7K4j##^!PMOsObcjm zv1m4#=k1;Pwur+=qD-V0PSON0FT1rY4QaKu_Nawu-BgiCO#9itpY1eh5m~aR3$Btj zj6oH(>$>BV33Aw+j=U_48h7iBvHrg{*p^V8`4}2NHB?~$AtqFY{2vsa+Z5Qp+(!7X z4Ys+6Oyw?(T*p&wO8VQx#;bbb%0O)3&*llzz_*k)^NySPE&q+zT`m`NPVyVi6PC|r zTv7P5!)-^h%0~+_w;2n>vG!d!%L7s;1g0>jQ;TlR2xw8C>mqZ19d*7oq+K*;b+uV( zRyLGOmPhTU(Le~-Ty<& zK)j3k=Td>_AaHUgz?QvTQ$Q66^uDrkvs35r4xL7-r>5KOfAB&NmP>Bq{)zUnfqqXQ zSx})Kcv>|wCvlk~3-Jv|b&Zr7<~+lhAA+pF04E6ePzs)Z3L8mFX5QbrH;%X)N$lal z6fZx(jcP{E42lDi%P?$yL*598G$Y;eOj-_sUcO$O4r~fl%VrQRUV+dDBz>7rNZW9s zZ)u&cCnklcmpXF*^J}DCk*GgiQe0|k z3Tv}-Y-0Hz%mIZrLFaOq?ecA#&}ao#ADk-vKZhH>2LI%2QV-a>d;0Q|V)VL1M`~I6 z!Q8$t7$r40NzSNS=~Q90o^wl1Z!lVG^`@yK%YYh>x5#0?QsXQ`**H6;X&AAWjScx% zki?wS5&16BS!Iz8Fio79*r;tAl+vlS7^5B*>0&FG+$zTCW!1V$5{Y=~v>UId*a*e$5`<9Zq5-;$0^j=b`*%*B+B9yp|8zXiB=`!mFI~u zUXV5L6NnOHT$fzp=5z4-FwiG5nwzx3uS~mXo!^ z6`Hh={G^f6&)h(t9v8prj7T8Qn8=vL<9v0sn_Z^V zQ-PYc6my#ThBLM9iC`caB!h?2GQXJjq9U35|?k?I#=-9MJu=dRawn* zZwtI;OOI;v4`k(XX&qMys1+yn(RM=W*s!6>H~z3Pv^gEHWg8Y+ORR)$9Zw0a93}QC zb47Z`7+1*&pi_FUM*!E47l&9xjQM-3?tf&xlgxV zXfrK-Lh%Gu6Bay9`GyoR&1%ZokTk&ApL0r_YC2eN+nILMa} zseJ~-9N^@OaY&eYJy{NAo{o*eCk+2N54hCqe9-a5v_fIT3ID8Z^M;}q3l%h3H%tl) zL0gEvRY3+<)IDY@CFECut+XI02;{6V1||rhK(6w#^Nyet#}1aO3YTc=uS`qeiFB>F z*V0<`!n!EuF+$M2G-ZnBoPyMes;kipg~FJ8Yb)u(*#g?ix<<@z34eAO&yS4-zzP1(VQcGUh7+pm8OZn8<0CG&-HDQ#@=t5ot7Eq zN|6D=yHiH12d7`kphjf9yoPH0BkfW7D6*Dfevm_XFW4GdmF zwK)UjFcFAfwP@Sra{_tFX-kX!l2L_-fRy7YQ#oj58Xh`M$AD4IV5?~Y{5{fC7EB{# z$R>#8`@EzA1KSa_PtC(3V;-xjXKEi-t3C7FXN88@H^k^921G}uT}yh+geQ7BD8~L6 z7y9*v!DF-1e@49iW{IIxy4SWpCyHt_SY~}ah5E40!kjlGq|cVgMmnsC8s{|9BYgZ@QXD~FoBG{XLE)TDK~O;+ip@7#E( zB*K$=>7QgIB-t_3oeOnAS#{HhZ>l@GEZQG22MsiIB8hr~0h^m`V@@%XxOfm!KLMNj zJ{Lj%{MxfKWHEMeLO^g9M6_UdF0|$kk%0hAe=Ms57&`f7&q9ykmSNw&o`;obaomTm z@W_RtOS5fLa=e0?K*2rE1PaI1dhYYq@frEkPK&TK_D|hS(Crf^M{{$m^$~s!Wi3o6W zK7_N64WriNUxg2dZtB~EnDU-`|IN>)b%IOjWEoRcIvin+Ng)|?)jA|_He4WJ|HWBn zKBVZt`)q$Fh|ZZ50=i0vSSB?#SciPHP6_RDDKnhX(6}x&u0*HRSRLx`{-9hr5}ST+ z;JYx_Byx&3#126ml5gg~9AJCcX^jt!59VKMyYoXzl2n&>k$EHH>%S=SQBG^`yvCW*P0=FVCtRYPk+Y`ya-Nm{mqQ z57bnHj2kVoj`Vwp>pzZ__5bBqv!f-nW!s^D2ou1()~zN4FCvj*B(!BXCALbV7Mg}r z{tw1VTbl2(qn_{$el7QE_`jSo|9A1%OsxMi{`xnO>i<(9eE%Oecy%Cirp$V4c30md zvU=_l!ZTo7Mkeuw!}BEOx0fwY`a+VVB+9zXNExKQ{f*)4Rt*I#JsP#M)>lW-?Ji8c zDz&=CU2oDPhOXjx|*96P~SF$OEW#3zVK|84SwUOq#Kv~rS}yrpL!83B7U0U z`oKi6Fdf920HT>1B*4snJ|d^U%+p_j8~18|9RPn|2?S>o6o~r!q!4i{1QI^XQN%n! z-jzl!%bKJH*Ux=y-Lv_7v2%RyB7V@@e|#O>U>kj~a&TkM7XgL;3!}1ymI_v|*$B=G zfJUlEGyb;$;2RQDxykQ$XEDaTUIePyqJ*39r-`fVJsm2AAZkCsAGNjUw+}Bx$owb4 zBw&%ImjOvKkFdm<9*Xo@;K4A><=}yEE?@=^Kq!I<9sN-e65~{?L_xxY5Sf@t#hE}J z*+fx%%v~=5Dokb+Jx+AUFs*=!cBTYv$awrPPm%w23UxZ+;vG-~W5WLPyY_ZB_NAn;($tF7WM#K*#Ppl9%G%gg z0Wr)SQz4s*o6as812KFO-1aBl!o9E!(Fu~E{#71hXn+d#A>C3EK?q2c;w(EOla4-3 z>|+Jlq$f}u!-y6`a5*mg@u%w=Lf>BCSKr2>GkVQ?PZ3_tleRxJpJsmLpV7WsXOnY~ z*;hWOzHK=*w_oo3qwgdM&2K#vmUsnnz>{}-i;5pTe~uts-c*AL;KyNC$G3EpwE z+mf-k+^EQdJ<81R_u23DgynH}dz+UenzF`>r#^m#|6`&NcJk5>u{MhQFFe_=+~D#G zia&{RdsO~;e5`Dt5!Xf=rtuj4VD+ylNH8whO_vPwr~!?>3urPD|HS^-$PlsKaQo<} z=&yl-Oabpi;phmITgC~Yq3|r*Rhce051|J8mLJLliim*INrI%o*RBl57d8=RJZ-JRSI)Q%lH0IpFV2bz%8V9z8Mt(3o{p&X)hp4 z8E&0H?IOTCsUt#zeot3c8L^GL1$*YkdGibV*gG=fj4)XOI?qV5JeQ>zu4(B5?WGry zCEHdlI;wdwQr%N-gL-1yuJfkjzs7&Lz7rE7Jk8th3Go_ej*o|I50q#D>$pa|IE9ss$hG8#pUU^aBp*93nDo&)l~24yH&?2ug(& zk9`0k6sIZzRU-d}k09IY03$}0ja6ZvL)~A9a%lV4+1yxpfYAUM-5~E!V1}sCYfdXT z7dg*h;HH;NcYxGd?4mVKw7R??TKMLZOO%EjyQe^l17LP_RD2FFvE)o>lIPRP;r-G1TrqPxv)4G6TkP-zSvkV2Nxfz=)Ee;!M2K#DT^ z3nwJycZc?q<}J&*t;d0Giq(+thtC4-Gj_+PYdb+KbTnik~TkN%rxJl z#@;meMN}T29GUS+e5n9xD<4t}ItYRIfTQwO^jlsbY93_s0QqW1>thDIVO0sDU}p#o zvLzYO3Duy>%45s3PmFpsN)Ad)f8>o~=2A=$TP3yzc9B{hN+HF7E&*yZOTtS^KwHG2 z?Y7h{B2ACxspk(#_g&~M*9)lego3`^p$o2PD~H_sOMge2W;>-pPZWk%ooeMNziCJ| zaWvO-bwRH(*N(u{`GgbkOmsf;9x?N>piqGje7jQN#I22>%d(K$9c~rA!rlVwfw;7& z9_RJgCb7R!6Umur<5*BFvc<>AYEdI<-lA8I{=c{M)v6o*R4+vS_cs?xo6|2+B-+-(gY2jecQI}?%TF)+qQArwr$(CZQHipecPUX z-*0AjcITU!opZMSd+MBgvMMSv^Oq4B5!$$3T0Y%;$D@{8rEHg0Yq{Cg!SgRNJ9A-G zARk}zGd12FW`(UZp}$)ZADls7)xsz0Ot|bu_oN2o*X8@yA!PbZ1jbe2wOZPwCbU9c zsWTYK!hnViz#z|@^{+0Mb9=8m1Md>yshX{*+ayehDht4o1Iyd+xj+!XN?502FRPI$ zmrxR2@2nDeDog0qiyM$9dX@-Db-Om;p#%+~s5G6u9{K%pw)Ux{N}!{+hF)Ry1-jC` zWmV4*>3;1)CpXrbfvBvllq|mE%7$%$aU+M5szK%gca!KBq-u5nH`pp-J#g$N5f@y6 z9d60(bzB+BHyI6US4tOEXFQk0FW@tLcD@=*57iQ#=21{zVY@2^9fP*l_B@?JxGVA> zfwxEAmSBJK*_M-G^PfCf72uspYkG*z4uJ14J_2=_D_((etU#+b{@k`z!sZ9lEs^J) zb?ebR-P^tBB&)dh?wKFBJ2CQ7@7l2%?_FsNsL5IsxM9s;xOLjwt#E6aeV;0Z_8}>7 z_usZ9MvxaH@->YfvqjOiUi)=V&KjmuAzn$u5|T11WyX^Cl1>|O|#@G$MC zj!+XSalQ&&Cxs~Lfw!!=MX2+lgiQ8dQS&mVc&T^piBbpuKZ04ttGmQv`a)_HN&Ug+ zuCAV!&$!-v+Vd8(`6%az0+o(=R5p^@!4yYo)so=a=B3Ux;m-4Za%g$}Vq;dgQhzYR z44A}B<9_{+VzMGmTlmK#!GaVQdk zp2mi$88QT5o3P6SVQEeaxJS0}n2=A1s`9BWTK_7SC@tSGX6zj=X93c$wqWQo$+5U` z`f=9GAs#_xoBkLklvp@2#7(x69+MtQmCZ@6OWHItmTtRL8v372;zisD7t-i>S$wP` z3*?&!ZhGRkaW1L?GyTPAe<+b%4Me;b@lO&cAbfn8@1vIRn0{A%YcT!>F>x@vAQFi= zrA#{n7=xGqMrR-pPG`R~G_Uz6aNs8&NCBM(cR-Ha7wXOD1VpsBz_C9G59;T~z=g@l ziPk*fq|Sas+|56fn8D-_sohE^7v0!Ak*i6EsI}4rEC|Zi0=S9luzq2MJTrU;EoBjK zv*#=Pi|f6l!-#%pDUz)F^-(tu_9G(Y(hY$&BAE#|p`?}K%PuU%D17Fwz!oD&3Zy&0 z2Q6Uv!vx#K0%I(%AGs>Ue3>472F<#!keEpw`!%(7q=W7Gr4{_gH1WHWRsG>btq=B| zi`et@RdvI>1t>eVb8E93E#Y^l@8QqEXOoks z3)5oXEXwp@g>A2*;dzvCMjp)n6Q1T0MvBmsk?N9s@`H&rNU~i^R&ABdk>hS{k7$}0 zZVSS?647^w56BEUr2A#h%N?GBk_e(PTP8eHzoj~=^2|nlyf!9Peb{>f8Cdn3KDo;= z=`0^$gk!y>6cuGKeEH#`)SOEeYsoa$wV7xQIcq|-uc)lS~D_~dPk3a zy9-TAw#NsYk~d|;V?)1yFp6On|H}a6t&ZunZCX5)sTFTVe?Jee<}Tzod*dtjudvZL zo(_7kSz#D&xUc2_))xOt>i_}%d1N`TGQa@JopUDVN2~EcLG2k$U6=7^)6+>OhM7Ka zQ}Oh#^bQ*j-``xlMp^)EsJ@WYemn?R+HegGL^k{;jx{9X>!@1YqOF`&D8d< zUd}ETM4@f)-cC}Eu1YE*u9kQKQBqLb-uRR@ibkTHv`y`-*_t|y2s*O!SuU?J%Uacy zh)^t{==C{oZzg0-TTwAEd`k7VRru72Z(Exg3!~y%_am__r!l4`2F@jV1&x;e#+;a4 zeds@O#v5|}DOddCu|gbih;4x|=7CyN-N`Mc#;C4Ls#EkUngIV+07FL`hootKiby8w zH6(IdNE;gdmLam}NU1H@sg!aV4sm%>hoc|n;I3FrIfj)iRl57KQJOWiNC@uD2c_pK z_hiY|bQSJ!7u!li+T&A-DdA5;EjLvq!DY)qSF)n!xdKePg+wGu$svb>%$j9Y`_`8J z{L}2g^=~V@0^Bkw7V-|QLUfb~qqt$O*_@EiZe}sl!q@BXaI0A3MA*) znheW7B~xvRBv{Ng@`8CpfiPayC0O!EnI|UoscI%dJ7FR@-GYH(SBi=T>~G}iF|Ycu zY(ZGe$Xo-+ZH!6Yf=X(WFp8ztEFdd#ssR1wiJ2Gwh!3Zz@qP#d)gv#k)@5te8)? z*v2s$!WQh>10T;h5h5rc)~ySE1^P(i-Ke>Q(t3^bg6Qtv-aG1=N_(>Vaw>Bl^zDGE ztGi=JN=$T0Cvk9Rb&XT2n2Q+iujs_r)h*6O*H`gv=w~!nWb+}TRpFj;(0_x|v{`(z zxHPck8EdR1x4h&sC4K6|?7%vkRV3vS?D@zZm?7c1PXmRRTa*q?UQj7RH8-w2Dp!j{p1?x7If` zrd2gJax}wdW~HYUGd4FhbHrz1W1tnZwX(HW{G)GZOeHf(@GiJnErIZ zMo-7i_WyJ`U3R%>A*rK%^NPjkScm313i16EIYW+X_aF3kx+*0%2tt8MZrWR~t@c8Z zQ(0MR+HpM$LAy;nd*_9-LZ5i4T7baO*CGW4k;faZdos&N0sZ@)R*5G3$+ z0gHcRM=HkJdt&t-af2CK~-JWufO=^@VFiUT1;$R7@ERG zAU*m9vNK8lWZ~{|avS{8Xn&Us#Ak7+()o!rd;$auUueNWgTFYV0OJ2J5+rl)Kxgz# ze}aHeBk%E5w!}z!%0FD8qcDgaqGRuLusQZ~=xnoRES0l&@WaE@h31i2nN>4G@MuGb zQd0fe!T_n3$@$8Y)}bOc;2RM^{y?5LTjM?82mpM(Ip^@;;EK7=ys$euZRhR5K0OuH zB}3=yMc#$dy^jV9+@4K|ioZCPQ0H$T6T!R9Zq6s}Mt73o;-+9k0L~)80*q~G{&O-& zfB)^)0@lHMlj{+j`yQ@ogd1!5YC|76j~Sdf5^nrz3E5$b2RF6Jwl%_h{cq#^^gxK# zqvjkAn?8eO?hen7ltD41(ZC+Prjx5$Rh+j2UFl3lV)wf`2+RRgZVLqUdbP=LBtwFx zUS7?%Z^A0|jJ5fOa1Y84Otm;5_ylj{Qyc1MN)R!ppuPp#0PpT#EKIaPlKS#w=G!ep zp0kNTt$Zq@wd%1fx2jDSx^%=`C{uu5rA%TB(@BAbLOY3nA31bg*V>pof6z`UU|CI0 zQEtUw!$f#B6{WpVbP?TiF$@`PDm9-HKi{6+u@BvA5ML3&o5DKxx^)1B0Y&>{ut7>E z+i#5s6*-*Ru(JSCy_k3B9)P>Yx8R@_D&OUMtLJO^S(8mN>*Vgu)&(m*4 z*22^T-iAwCwWNmFFNc?XXTWm8SOk{ug+j|7dMUbzU7&W0Mny9j9BKWlnI*xLMji9a zlzY%*xXgbVq+h1Dyq!m0GGMqZ`Wcg_jPl)y7wl80^C`(per~smBbT;p_tqJ5hnV8z;Mb&Mlm~_!aM|* zyH!}kFJOM4O;~OYW*7e=Qebn94(Zh0hD#H5aSN&10)#@&&tGvvrEgx^u>k~ySgyCb zgm73`9+pHXS$CQ@yj;jS6!`iD+EA}KCPY}w0%SK z{q}*Vg;s5JRpAv@g^x#HauWzP3qF}>Z0@aIqgJ{T{3;XK@kN)>XzuFg!DrPX5^s56 z&)=u|rmVx`eBy3GFLhiDgi^@huTx)ql$<@IuL#>TG_XWm(a8*Ik@nfKd!>Si8@0!0 zVs@Ox($+OB9p-hMQ5eGIxQaDic<*cJE&>_T-sqkWz# zUZdk)u#t{_ZNm!yZ6TePNJd~kI8AXEzj?SxWuY)Bl{M&%=}p^t^g#kmXOpC;$~s^H z^NU1$nG13fcdfE-jA+34YsskU6ML3b4NK9bo)2US-eo|Aws?ev-YRb%;^*Uy*+&}q z$=8zCxk|W5QBqg*U%m@m9nrLnv%n* z_SL7TJD-;F5*zUtDX@5AhgEQy5=EKMsV76S4rMBonVXGrS&3b&cZ@ce&+@;n-UC7n}}N4ifKqmZQQy8T39bvC@JM1=ugPb>#ilo zgYzg8JjVJe0!I+OzfoiYrJfY}79q#;zGJ-O_y#$K!-(b}u7@$q*0{40!2AxK4Z4K; zBU64B#2X_&581U8SZ&*SEa7{R+@iEcaq=^TzU?pgmyY$PArtsr^J`9vNFMPwDD?c9 zXJO_w_qRCVrb?S^t7Urt4~XTCd!sy1=18C&ne{Q0Qlf`SZd5rSMz?x|z@(LT@VoTN{wBNsT67JChB_Q@zW z5o=m67PBfZh(!Da&=}*PrG(Gj;ufY_PeJ~$Ug=Sj!J#N3`eS3K4YLNkCmuX&KA{YT zsTH3r$uqs!u*MhT#&5#ar?2pad0>A?Bj~J~^&di91k48O5AKC=jLE~DS`4Uk@xIgo zkIV;p%1Qw?W;_vaKSKaTaN|#6eQoa9G78qNEo{V;73g0aG3;cTdaQ*?Cf6O3f$e`s z;2j}HRZ9WJXi6Jd5qfcVdj}DrQWL3FQg|GqRI^r>1Z$8D+D_KRh2ux^w(LdcPxl{k z6C2UvktGrlpGOySSmz$2g>a6P53$@^p;E)SGsxk9gs`7+()60Ha@gv3Y9S24dLiwy zF_|sLtHi6a?zkf%6PtG;n;g{1csqY>wMb>yZ)(E z5(^R5McfQAodBO<<_3`rG`X6V72mb(2Ze=&hwxooEPaxvWX-M zd4_Zib7zVy;&dzef2&;@Dsw@-x9aH+M^I6X_Cu-+>~xp}QLDjU-&|aw)v>&?KW7jM zoJjTi7nRL8+{AtuRr45il+=Q_0Eisn^=N&Ca)dUja`(V9@p?iB zdj&cyDm$(I?dYL};*pzuIUM0HuMWZe;9~y!EFxrNxQ0xXC%6mJJ|f(a%-MGyEB!pe z1tQ7fKvRkKMF&0uRfePtgJ$GRZNKSHQnkc}*sp@8-0Nzdet=4~*B!1~8~6kSiOTZO z&)pn5+}P7@0$TmGq%FRbp@iC+O@n&`B$T$aHd9^|5;m0m+fR^z~~y?eb?BC_akc(5R{18Gyqu zq<1QDRXgFrGEl~6ah|hZdHE-$zkU>Eq_vU2Y|S7+3*1M8p2Gn>8q72UibT=Yls zUO&$!llThZ1(=Wh8rY44QW$R?K^+WfhzzFj9Di-#G21cnC*CxFa9&d8rEc0& z`DHquR{6w=B}!qQ5u={Wk4$O6ZIXlMO}*=e?+KpC_v}dpXx`2#iHF&JsKeckS9N}! ze0Lrz9yxkF6jd>+^U}{(h0KCm?tWA!E}VIyQg-z03>xE$Ut)N~ol^RsVkj9JR@TkZ z$DY{8zJq;F)UR5X5OC`~crD_}kx094?~I`JNC2+Dl7r}!7s_e*$8cDL_3GDK@-$8K zw4#cxtGh#4P_**sz7yHD;u^&2ipln#bzm5hXR&(>Jto_t?TO-bx}iL;w$?tE>nOSp zAi{?EzfwgCO2v|3r?T9#LQ`_Q89DlBoDlh1Np;BC;lJd-% z8#l@B1OC+f$cwtwOwdrdC#MNr$OwC8n7(zr>xcO}H)4(@cnMnHfqva|`ZD4?zTwrt zhIRQ$n?BS5SNPolwu|r!_fUfC+>Hp}(C_90=N) zQF_rPvLkTw422|oQSge2N&_3Mvv-dc+>ypf-LBJ@oAR}c!{E42Z!lBYM$~Mrc2BHS zO7&3u*@XeRuBga1!u25gj-$jGoh{6Aobefbtdk4ki<5|!;leD>X^gnMy+o4`Ur z5dS$1MfHVsc4aAh>KPw$x}xURT?ghi(_zEd@(3POmFDqtsC~Mk?#5jQl(6s9U*@(p zh>t^vT!SsK+e&X`TDuvF^L`k#^8CZ6#b4f$s{jigGyHfcxc#hR9!rmQ$guw@I&R)6NLoLy{*MJ@3C z_cxTcGieTBfH&CTlg}p&q?+Y>s*0ygwu`(5#=uR2#L#61U)A$7EO43NYtG08IASrLH6!q^9h5d&-cq0~%=OnA!jvO!0f11g` zn?2%vbvs@CEuviU@p&m13Qk$kQ;>g3fQFT=j}YI*6x96%2=jlqMdwrD`=^B*K(|v< z+%MfVs8?{zTwNd`a5=t1!KYlkU&t`{0=|HRc=cc)P`PFR2!P1&ud!X=w5gA2qAfOS z^&~dWk29wce`AwX$y(~ZcjEu-3pdmT&%-=(1F&-Q#?=N%YI*igdySdXTAJl=h(lEo zljvucM9tJ0Jd{|9uW_1CNzouP;}+1o+wY$TIUI{xzdzgRA-YQ;P+rahI@|cB%*;AkeF6veaT5j z*@f^H&{pd)nT~9141O#O#vVI4e-fC17d%eMU?m~Qo6qPPn{vx+p;%NNd?>QWlhWD_ zqDL=lWn!`{>f@1hCUzdoWhjob)qwl;Xz6;q1nmAbNz?^zc#7=!+>^8(tGKxP5+s=F z-I-hQxo;W;IDpqFIk_Lv z=6Cs4$h^PdaiiGeUijo8dTGlZJOb=6>K1yy34DWNYB_96Z<)9dsBVc}9feV(^KKID zUqwGSHznjuVoW!rwtf-}Ub>=ET1%4KJQe>SFLV24Lar&sHC4)J$mI`Q{rcTxZ0hCovwW6^ zxIv+Iad~Yaw}|)c^<__QS13pb<90sB`P&#tIRZcNa*B3i{rlL-rtNjtL0 zJ##M%?5n01R%H=lJ2RK&(v2FfbD*CKrx5{Lhrw+)0E$v^wXbgYRcM05W@)o{2dAWS zPtJZJ`rEvN_WS7RCwr*lCu0UAR7NUS)m&OzbN`GfCIQ##&I;qD5rkl_Aiu3d%~0?< zT%EQZzReRd9GL@BiSWq{X$|<@qdf-uCi9yP_av);3uG>eZq!`^Q{9tJ>`QJlUZ-EJ zPiSooyyE6}LR>Qm3ad7!#>~D|eIVTkAmEgYFR2>-mO5s@!T-1{NswTbw{3nswX}St?w$J%;j*E>p=TE-b zKe69+{mUQPGQr!X;bTe^MI79oqp5?Qm{6o$p}2WA4TlQeSp5R&HX(5J;S<)T1Tbfc zNubl-{@o9mS%`qe+GT!ota!44MVvYE*Wbg2)b5TyB_8KV><*eGgyjQ zcAQ`4M)k47O1dzgyNAz4fkTySdzCjX6+t`QG8Gui&n>}0HtpJTAiV;_Ky+$dtOJ4Qi6~USq)*mLb*foY#X-Fkg;dYHz-!!jwwNk3#2&&}6b;F`>OtoO^K1*xs&`Fr8-;Minq zxyA0r%zAgo$sK}jR#X+N?LV+?Vb24goFsW8lb6_!8^Bv(*f6)NAsW^{i4F35%I=?9 z61y|uFcx@!W`Iyyn=~^`1v^6&s!XW>YQEMs{FYKCTB55-zZdr9*uMCaL|hYc^1lQg z;*hBCW}jygijQ&Es0nN!7Y9#q6450Utu76zMIqKnmCs(NU+6MFQ^U7163v6ZwhDz| zbmAlV=tsnx(@MU{$U(|nto3||X`Q0Wq1{SRBqS=cX~2m;XVexe!iLUps>NGz%Wb2G z*;Ev=#Z`r62bxDld3p5OLuTNubLdT!5Xgj>;bpl4n(8{t-_7^nP0{BoW7&T{YImz~ z{*?|I)p`lzMRN_)z$jBHU?Ex#(W;tE6nlL7-P1r8h)4im-#H(T5$!sZ$!pk{VhyYP zw;$GbrXetYb*7}h)f~(U+;;&43gpL8zY+Dlw5{;w+zlRoK!uNS&6)Pc3hVD0gGr{% z7<&dbC>yVYuU!AGtT&4(@&*)Iju?Rz^+>I?y8gIhP5$!pXd8ahan8R0?1s&G;*PK- z*t6rdG`NuL+51!i3d2?h^d7u+%MT4CKgz%Du>3Hwbi9m?AdI=-$qelubK;Z;-ugt^ zH|UL(&fcz(z?i}wl>Ii@hCcsfRTg$syy@HxYu82J67Drct>z<*b?6$J;6IB!uU^}J zMZ}$Le0j^bVd1_ORGTL#Fpd0}VCnxU80Z!BvY#B*OoGh%hCW(krwx)MpHesE^-vy3 zrj`aO>D%a%5t+oLFzXl;yN!cgli$M@F+TteBK#w+a}PDA7{mclii)-A_3!+k1iUoe z>R@QB5wBA~o9RuCwQ+8HFM-QR2t%Ui!=^Bf@oO;t0IZxZF4IWNLL>3jJF**9et7%q zIdIMi@i@w4;a~&HaY-Wm(&my#sJ7z>ly_!?n z`~*FbE^|1SnAoV7c=blA`7v(*l>ONuGc#4$m2mt-B_x}Zo$wdDzzPgG-JdcjK-JPj zk?4CZMvvt$I}$I|rzckrP%-M~CoFd%ZV|`8Z5kca9J*q{H_k3Cq+cD|+nZA{wM-^c z*s`YmXM`LYYpxt0Ik~LHWmqM!LAm<;5YH35+EGul!HHF-*B(ztpJ72VKm<-FLGKE( zRTt=cBEw@z+3vFd5ut-%Nk=WL?iPZv)f@hWD~B~K@(K%Z|BkQg?{R?**$STQ6tT@e zipzd(uom!4o}E6vIU}e1mu(E{8GvWZifdGhStUatY7#1EYK5_EF2``C!o8M`F<`KDC zfN)TF0={2yaBBhnAaYE;;J+Y4Jx6hoseJQ){cpgIn_LY*7$_7z*Y~F85@p~4C%DvGx(-vF)upOTcf7q5zDH*=+ zh>a|TkF3rbK=Uzi9jt2u))Rs|%?!X(Zgj#+g{|Ztq_){q(?4*iRBPsK zml)rsH`KQ$*v^Nq!$^7ZKRgX+Bix1}#@ri_wA9KGq!brVJ^6iS^cckJg-rxPt=2fx zQw@%8Sy_qU*`h2mK)(SA%lR8iWV>3#hYZtZTFu;$`&~%owdEzw_+{d;DTMc75jsIB zscA}u_g40|R&p5u0ERD#K%n@fbfY|r`m0O9s4fs1Gqae7qP)ebTv`uJY`hDXyMqLV zP6;8)K`%KE*EY|!_Dv9}r|VhdJ0yPNvB7WB3fhme1N7f!eFAj_cTqYT0q_k6+Smv5I)UTlpF?AON__%@-pc-^+;=c>?qYmotAvBD z%$%eK($YCyJ1T>ol2l+C*QAUI%r%^u{JYy@;xD&e1xwq{6j%R9fXi#V{YMLov}?EH z#%X9%J5M#(V;s$nSPlF={lNp_YajvzYsA5!%sqSv?KfKi1O}0x!vcc{rlTWpzd|0K z%nD0XPoV{N**IH%JPK!vo7!I{pdu^_NO)a6P4mW~U$=GP@$=4R+S^vYN2|H?q`pW3)sQy!X(xZ zO-p``q@p$dfq}qYL6lXe9F;h8AjE?6E4I%)>MDgXkOt-BE{dYWU~fn3pqv>d0oU4|8q-zr=23HDw2lz8)yWoRj#^ZlFG%>%8FYb< zV6jV-G0j>!Q^mj*1%gId?2%QZINy^1Js*Exf07M<<7PIy>(XEAU#1i71=15cM@FY! z#i>$73grs}A(7&f-?nx?`H~7FPO0c8VmK{jJLO;olEz@ipF}0*0{J}A^DOJ>Q-%!^ zu`w!4T;RKyq&>0AYH++;Kyc2kxxPPx94Aq&$k*fxtoB<)XC7q1HXm?YI{9@ApjWm- zXIFll0hz^%tXLxE95$Y6l0->|-lY9iE+0+SaE?0Yw%zpdTW3rs%v0P?AF>!GE}g-< zk>CkBLNRhJ>h`~LtO@2FIXz>QwQg*M$pQA!sGvXR2Gi23u}4eWdYGvk7p@@37_fi@ z55c7-wX7^!qOypEt&#yGp6r2|V&5}08xBW+t(jv6eK1$28_`JHC@-eG#R|Q|u&dag z@K1&zKkxJEG+;fTLfbN^L8n?bCRK3mhL$0^ODIyQviCMXSS3xd;a2U2HGc}M=-2&G zHB#;C#|9a|QL+6*SR%WgAHMrl!TXD^FW$UQAt=%`bAk(}kagBt7B}ggzTngsr|^Q= z<&1%5VkK*w%xm4Ug7L@%NJF^X2dCu7xgF7@ZwjPMxX2B|+!S_jrY;ydnX4pM__#bK zd1=~{qu^!rP=B_!%>41sK$RQtbi@gr=Is*1({2G62M+Ct40pj{t>Fj>|7GzdgOPC^ zOUU{e;+;-ywsuOR#ypw%Ei%>^XI**rEG*F{Yf6PY+$=6M*j53r2ymOd_;OFaM!q-!h6_@WsF0S{=&@+nY zqtP;jL%INK4+1&}J7#L>MEmSZTE0Thk!;NmUVYbe;eIeKz(eiN){O&bh1xKewJ`1O zJe0F~StPr{uuChz%1*Yv6&Hd1Q8@TBJptHGJOXOh3wGbIy~SkQVq^>6H5DD^VjPRc zH3GC0Yo}`yr~S;85a(3b$+k{L&narTVJ9lrSm={}$P!+&*Ce^{3i`ITDU`F+ z)!yh@-B40?nk+sc-rhqlGfxxw$+p7eaddI~#1kA_44gn%vY z1&L61n_rSE7d^g(T&C8gcDVMkDr7e-Dx2S3W1VG9SI`+sHE+c`(uoh!+$rQOH5=0~ zp?CIBF}8M+hKkAnGrM8IpmZx_%C8c?fsIz3)6E>pvXEG|H}o>a>tAEgSYn5hJ`m@b zlNIaNkkhGVY1w{APKaF3re<8edrfk1o~rEVSQH}Lm7%mzR8l^kt7(S>{g;55TBzp! z8vs{(baUUeAJ7A@sGV0Z7fh;jo^nBJn$p`FvylI!+x@N9lrmiAf=VT#J&gK1SHbXw zI*X@WSw`?L*xr*l!%}s?vp9;4VvJqWC;$sj3xKo@F4}B(q?b;`LqAZA%YBA`5kJ^I z#OFE>=17}`{Mm{!Zx`V;iC)tOS0~!%Sd#J;dijq!zWC1N?B+sh z)S3;gG}mO>6hNED$bT$mVbeh^}ONURGjopalpPxVMpYAt8__;sjOdOdwFx_@KNO0)itFu{g7w<<|0 zEOs$TKb{598MY}Ny`Zwkocj5vDJJHRJsGHXwvc})nr&Raad|213lU8R3bd@bx#@m_ z4ZP}1(uvXoO3K{E!n%MSL0{SfK=EQ+!g5rqF(dg6lrYIpd)u!4fLX}?8NgMHLV)Mf z?(Cqf52?*HgT(L2W};MHlTCNvyfs8PV8ep4`iHN#A)*^&`DAh9Y=F~B8;SuR685r!BGn3x0ll?^7e#PH@)@UIRrd(m>dhvA7 zoGo?S(<3Bo4ojzXT&WoEWOp(CHj3jVo#*Vfi9Yr4F&cQL^{_j20f7QICE*JM01@Ib zf`dfmn*;dYQ2zh4Cj?`2ct=oe}kkb-G>5x^L2g*aD zXa9e;KHcHqaZknhi?w;1tZU)^|AFjjk-E?eOOy={qe3l0zrAI&o{DdMkq82pwWyqT z=|uH@=*qT>D?;ik)%oS56(v)aBptR+`&4yQ^cv(J8@L#`0PygaxuVb_ZMJidyLP2M zd?l|3R12la7(eF$32pb)1~+|Ye^{)M9};>VwPl+531yz!a8k2s->)~azi}S_$|99e zNX#}y#N9n;8Xq{i!9mjz#S4z~YT@;iPm;PpxWll-qb&;8#tgOgT^&h^wyWDaeL$|G zw2(TlnIqO_)^_RY=f&?#b~jtco`g=_pw!ANXB5AKOEEAo%67N_IB< z*+1r7VC$bg>IwSAWi9t#Ezrp#J&SMsaR^LY%n@c(w-MHPNogOk@+vKuo$kIiO58?< zuq%&w(Sbt4O}>SA>}mhqeo6-ZF|H4&|BO>0eYf2o0M|~4YTKlGPR*@4j(d>>@(}dU zkMF48z6=pUjd(K|AeSDAg0nO)jNhDjbPFqB9>G1_+{yLfVN#jUr`5pXU?eU${#ve` zm2RP&y}J6ZbQxI-zaLSBtFnWTFC?Iszldny{FqQBU z-n~Z7g$n27p^e0&x^oiJ^$ifcsME*WkeIZ()7rG zm`(L%mJRFBh2JZatP&(rGoj7@FH@v;%0cN(LNU64Ml-+s`@H>l>rIGpiCROnk=T#X zRKIBtro?prv$ju0{F~R~1Q%{;`TI`0Jyvp@Bw;jbGYGLP)^Zd-^IRy1oW1mbyhx@* z@oerl8BWPVVg8F#4;%Z8ywG8Mj!kupM~@wMs+-9$BV$e4=iiL35#wNP^fIHHXI(4H zsvC`+N9~J-XN?V=+W@##XQ!gU@?UX(R#+B{sW9$1-smO684c|eFoGVVY z%T13jYg&ahZaC~?OBhHM)%GB8Dz%TzQDqdHSnk0lSJvxhdrfp?DxHqd;n)k#VAdX) z;*re=2vpE@K1cy~WkMZ6CoeHA3zNHx4$Z>CHW11;>2D1U(Q^udwyvPA0pJVihj|Ql zh^Wkhu{7oqX46u<8a+P7!o<+N>cK)jYV&(TVPaPx;6kTn#nQkJOHr>C^2zKfq`OS= zR6T-ae;!r0R>VD2vUYf9`3_}ry{2N|9(nvf%OXTP3VTiCmyqn!=*8l24XJqb(#+{P`*r~9BXg_f9mJ>`N%xR7VY=axZo|j9m9d9Z5Bk1-J}fbQ zF$yjtLYiWIb5qNovZsp>XqlPPvvG?Q9GbPn$LFhT9kySnw&4j3VWU>2bC!xk%d~(1 z>KU~cOSizo=ab>}N{n}J*LeH27An%q%@+0Al*Q->|f3 zo~Kjp90v6~^ATc15NSuSG_Wku-l7J}kTXgH-!F|UczO1!3^ex2#p&Ae0jmw8qcGYk&XpG6}o3rXuKFhnGYou&0`KKNsZ7yagkK=dp?uT#3Ht(tp|v#0I2*P@jqS%{(Nk*=|tsd<2=16r6wb z+#SJ3k9QER1ee9`Rirli>!p>Cf`8WU)=jW{=Xekh>fqi_q|bm!>wS6s+3I+sz5L@) zyWIfNJ7yh3Awho9&-(j-lvPmd#MSNF+)dBc!)+c@e#-$yk*}6d!&JF^f^eF>)GKkm zq3>P6VlTWtz50fo`>v+IzY8Zx5X8sAHG|%!bt3{eVKvo3PI3NPhqVX!plUPAS`r!P zFS#Mv7kI2cywOwQpc(iW*w@nZecNN5#`MI<2uM6PKUn_>OqqAa0d!>yHZ?jDSdhOk zWt1J{4AJwq$n@H8vifV0_rp{}W-<@gL0m>8MP52bF^y+0P6(a@WaLB5Y$8Oc#EzW2 zfR46s0FS?fQ4fT=UXv-cAt)bVX{Akb+QX%e?ELhM68(HfM*!1AIw20XN5?Nx)aU3I0*0JEiH zm5)i3yAj*VP!z2c-88W@|M_FAtJ^?X6uc~2)Ap6sa7|d{yZR}UzV938r66Npn$TQX z{2g|~s-AI1IdNgz;mW(cW4C2dP!y2@#%pHG9}#x${h9drHVHI(u)nlDVyWlP*XO_e&)3DQMJr*pp9d-oYwK7!R1b)iD$GqvFWL$wC*AL`-a)6hxY?D}GC}#JDms|sWt6Vw2h()i*j3dn{>v=%-bXAVXcs{`H(8e$nS z=cN^(1I3-9ULk!urJPK6KMP0I@g+*z@!$b4pfvJ!G(L(dtyP7qLqyT-`i>r6Z zGC!h!&+EAW{XAaiOfjsMD_7g9-^BajTnEk5<)n}de1=l@qC&|sMG7?c)a`L^RD8T!c&r$xJHDHo{Dyv8tjijfVX=4S$t z!3aIa^%%j8Tg;~`a&zCq0LH9qFU$`CIZ}aV<$kElS_5k?sYZ%(45cOV^O}5f2#!~2 zX@66Lxoa0#w_~2w(U1+!2=sJ?;PQc%0mQE$n^5Jyz~`!x`wN)J)P1taNO*Edy;eea zHEo0a4$8=CanyeQINY}bKHfmX)c6?(*2Ztyrr6`v~}pzg9PXSGCf zI&$5?VvtVuQ)7q2wiaK3Il8)PvMYkF?WGK8XdY}p z?6>$(29sk~8Qaxn%kTaHiSfi8EhVE+16|b;WeIgZ?lvTPHog9fwuK6<^{LD^;P? z)R)7;Igripk9$SpDf*`DfC zJsIJcWPGp}Zo724mVc&CC0gJy=xZW-nzgQQ0_EKd*0eqwoIaT=d8$@=h(}A*wrzF~ z470PZsJBb4#1SS3et0Nv-{39<6JHNv-o^BxhMHyUN1<$PMA+~k4=-&MtP^3y) zFbj}~wWpOm7?m&8@!$Tm&O{jns6v%6uIt}QO9^%6dmk_@>v{cqcJ9sIdYQwPK#z0z_o=4abeg(2oZw(0w2gI!U1`a@u%^De3ATZ`Y{5&+MR3?PX$@ z*JSb#|JL9zkg{K_w&7uO_7;my%d}SB3(AqSP_h><}(TF1c^uglL|j zoZgt^AGp?|)978g3Hz=SN*6S)ge)FolCd~gur-GKt1rDXBc1-re@Q?hRJ;ke>h^EO z;45Pu9PxJi=rqV;z<+nkoB$$Ko3+%dlWbAFXD)rb9Dj|nKs_!KN zL9DASjBKc5b?w()|Bd$yjTrlK zei*JE-_8EV#NZz)q<_H?v2V`tU*>-~f*+5-H+GtCN6E?jZPl4Y}P z<*b4%Skksp#XEHZT#f!5!Mg!5cuma2p#Ys@hY37}({AMdO>AtVL5??x0Is2(enZH2 z!$su-GzDMykLLJib^(!fKe@R2C9K)|bab{}ZP|Fs>|TL(^AsO~QT_%!gyqr~E~NyK z`NBf?1djN#ru36y1f4qVT{`({oW!BYGqQEB_0aGDaBjg94Dee<BBmh0RHXs-vWqX`Y)`#b9iLk+U=c=I<`8tI=1bkqmC=K zZFj7WI=0iXZQHhOJ3002XZzjzeBX7QxBjnHwN}lV^Ebx0?>QGjRe7ahxud z1WQ^^ZAjrjVownG&JJ5U6fg<4TkLko>BV`EL{GduB|(pz%r>~IONd(dPTg6H$jMeQ zK7(+)gv4R1n5e|%r-UxJd=}zW!EWq}j}>&cGVgsBJ?&*X?Y(rCw=(B&6dZr=%x%8j z)n#TBkXYMsb^gB8RQBxfNw24@%IE#-vWTWk&-D1bvG8UQDjf%BY8J_dXA+Vj6*P!+ zI%1xY7EE0XgfXQ}MElC1F0%DzB2Cpb>@vFBo$`5h4CnWfW*zUsGE2+A4gBhrl~trn z`JuMs+5bx04}8Kfwt}SsdzjQM^jV_%-Q{_2m%qFk{3}m`3n4aV>G* zB6~~GGm3&f70B;-t%OUqRk$OkW zj-9eA6n1O=R7E!Q(cC@}xt4q#xiu8un=-&dQRZ`J^H(~PqJ8+CWN zIK1d7a&Z;C-D9oM((>lMbCdc@5IQ~pc2j@NttjZQ+k;s+iq#t%KJEJTAe=*=0!-^u zhaIeOALP{1`{2_6S4iW-FVnmi&!6+XO09(u{Fr zR8V!FSUdsT!IlbC2+3~^;sEhH_;G8thrFKu@UFopGJsx$A|d7_#4UKWp}&K`TV@V3 z*rv_(UBK0%!6i%;a&X7bmk1AHWQ$HHMpIhsu02NA38)plD z{tt(P33I7Qhy;A^uaksgEaDX*tjIAd_ojz2VRP;yD}y$r%uJmV9tGnZV|HZ1gMwZj z^Rhi}dK0D)wWNUI?PH!OqYgq_#ffu=);#5Y(bnka+C93tH8M zA@21b=aObdFMA@ZAGlVPa#I4&%>uc)@Sjk^<lERWYO!gAy;rDn1_no>v z6vVIF97QBPnNzs5rWYk#)$d|+z5F;8Yb^OB>v6Hi{0U({$hDr61=`<~| zsEBrbY}pXqyCgSzy*{ENSZAh7Jjjh!hrz~8lNF3>`%x+>_1$wy88cPgFJMuHI%Qpe&G{Ki>p&#C#(-si^1MI&?_S%FZIX@I5RSL(#RWd_jn~|A2H&} zkgW4RalK8k$d+BMPI;$j-!QZ)sGzCnINN@6^%-y~`I$hcjsKbzFIV&22p+BykE@?g zUD0kVJ!$|7Ms!9=he>&-Bp~0Fqf8F5Vm5S$>;5elsP5~(qbsjEvpDXU?-+$+QZM6= z1=-Y^I;%b}wPx{uvmq&Z=lLG+%xOrw1!J*{|e*-z=1(=cf*@gL)I zNYu&R#ECiUc;ywZz)47N(Z2AxW7Gs0ovOUKh2{V#aXkjFvtO;0B|wd-04_Y59WN`D z#Y7`kM}H=3Vs}}-F!#?1c=WlOm|#{2WU{U|aCh?YeF{r*23daT)rxetKYsss?E_fd z)0jrUM`>!f+!IB`Gj;N$-{I@IV5fR7Ktz<+c8f+p*=zLmosq+m;Z3gyirt(M`n&lK zzw4jgriJ=ybm_Bgz^v)!)C$ZKA0zttt`JD!QREV7 zt4eT}L%Nrq4B7sQMx@t6)WKk6cMYu!+SqF_jHX5ZL&~(9OaM3kP~&9`CzWtZax#JM zQ_(UvCek`NIcc{bDR9%*eJHrur`CH5AjhaxBKB?ClGi!cAUwW-(;zeQYOK}INDCF7 zB`A}5ZowMs17rv#n&m5uu#jvbi+gyis%et&w7_B)&A#eFxP9=LwgtW4Uow$x0MDgY zC2$?8?|Gq6qx(|e^F15tQPW>SOoZ@O&p@D zK?_Vzd3!rxU5awhkFW`oH0ZE^7w`F0+GIvp?`}|aUiEeujn7+mY}2T%i?}sOCRV2y z5A9K`$SECEz=IaNQFV~hN;NSceHF13T26=LRwyOdF_BGcc?dAz<-{NRLl5lx(U&n5;Sqa+A(nI@of z*hB0HzK4(TPn&a`5}JS3@0SB~TeqGR_ylsVd4GlCbKe!T` zN+wS`z=6W3V&Wc>!%s3nf2mD?tLEB>SDKGAUT?G|o(ABlZ9d?_IGA_g8}<3}jEC{u z8T~GvF2{`H6MJI(W_MD{Mmd`5!;a1>YpP46Wq{-LhwhQDY@VhS;qaTI2x-z|D2e(y zuIT~0?oPsYh4k6cJK&+1YsM;1MT@)>z0s8J;{Nw%>^U>%9Hy1(5L;O>r_zjFcMb}V zymE|zGH2V#=z1B;-O_eHE3@{BMIHDu4vYd3?U zV*D8GUY}RW%j4AIr@I=|qjk+Lp*`7{Q3rxti_p6Q410}$G75QyV&&bx}vRCIjeM!2FJ4~KcZiT37V5~|7pMmZMI%f zEkY{K@|B03nA@hU5hDBmkpwvDJg4ujTG2yhHmHq#)S@M906MD%G5Ygkt)p6Ez|a_J zV+LY&O*ZI265gOZLgaRZO4d0BTB0qoAp{jFXs#&*$MIRe?uR7f)1?t#-NgF|b>*=0 zwBP61*@`r1u|n<&!9q0Ih%pU3+xAJhmK*7VEdcD+T&(&MyO|lp5+##M@k`FmDXvlvIEi#kuR zPBW<{T&PV&dK^A8_Go$cL6~X*k&YvUZ|Vjw-Lill0TiL&a{es6I#v zjuq*+1MWPK__1I)3epX?`*Nq<>E$H9zCv}&uGoLlhfw!$9krgGglflBU8GPdx2f-j zcts@vyZ8GT1PZD7sH)tjZL->3pl0c3Xw*a>%L*H;Ff}G8B0M%e!EryM4#bQpWMzOA z6N36VKQwz1lD61<6h5T+bQgp#o_wclev0gZh{}xIObYw>C<)JA!+dHVq_CG%PX$UE zp^7fQfQ>uj6m1&vb*!XN*OL}0K?ZyyWInWYsQcm~&&->(|zFg{ewb4o;z>XV*w)nDd{-BxxW zzBN%2MV3DQK`;_(8bp!*mp~;KfaJi+V?}84LYI_padGI((Q<_-$Eg)*ddql%x*%1g z*5Y>Fu_2G&fze>;&;FiDkjaWh03gdX+^aLoJ!p@M!0HKf$7yT8f6t{E((ETkZzt28 z)vWxbTG#IZsqG1PV34=Sh>N*l-*9bo1J4-RdnaH8s_(~VQ4m5CpG^fVH~Y$DEW*5V zJD!%J(^ZwXCf~}f`Nh`)znC#DS0>}aCr{miFu>?eQ1i;xzCH+{UMm^fR|~^s5}kCuiokZlkPu?3J3F%7?FZ; z=@jG_%kN?5oIOZApo!S^YDm;XG9oS8+N>FxbNHx;S%ys~xUED@AcinCw!#CPv_H%1`ooI!0_8*RLmM^qVjE@q}jLps`;+Mm^DTt)wJlh!TweLpNTf#Q=RxS&OL?vTcCH+vUWksZ5}RXy*&qWh$?w6)?a^~ zdU^iC#DQB3V24V2HaHrv!ku7&Rq?=?vJ^&p;^hqdl;?d01~I??hhXnt%m5IuKVA@? zW_8Kne89?|;2DN?^Z%F!{`1>jpzA?TsakCx4?IA9(t|oUqZQvCHS<1PPEe_ zGQdz!S!V+?H0TFXfUZl|lm82mH^*Hi^s|P?+gT>b7VK20(XQO_*4AY4cLYxZzRe@a z>Q_!2Uq&*)D%~k+6wSGPuxf652;QxbC{Fjay0K!#e!;|><7JKFYM+%NZq?B(=fX|a z7k%K^E#_WHfCIK*hU%fYbme~4MCmk+IS z$)Wf_LG*Ui=DG|se@KDQ0}Y7>QQd#B1$}qTASb7o<+Fd~$5ki0U8hJ_^X#gE1axVK2M%g$V64X&qJNZrVAMsf%bJTbNuzG-U7Ag124vpwEQ1 zWnfqO6|Zz7Q5taV|L-Z7`wG)LzW2A!1Yh>+JiA)=>?W@YYKOn-SwG*1s%izu9U>3n zB1Y@dUWG=%RsymMiNEF_c@?EF?@S(B2Q60A4ea2lR`h04lfF0XYy5vCe1UgtaB*w5?ur-Yy?0^n`@h;L= zWw$$4fIdEId;5hoEVY`ZcGiEB*+DK$68|1UzRme8Xx=nvoJ6=dRjQkuUw=jOgjxe- z+&m&0@xjE?@K2>Euim=+r6Oe%+p(l?2KKS?&4A$Xu)pJj8?8W&WC zJcUB#p90sxtMBg#TF=Eb zfNAlw^Qv>aia)|96Q#c6P<2wl;hs`%3(ERqMP}F|4IP~aEgZ%%RInGubaqwf6AFO= zx=L`y0a!p~!l?3w_Z~d5lmjMx2@HXntcQn)&sGYoGAVWZblN#}Nl$|DZypG{8R3cL zWG`KhV=iRL;72Bu#eq_O6G}6uaIf!j9(XmD8C{aDGe5NLh6R)!7F#~zG8qzPxs`g$ zg$crKXTB+-{X?7TL@6q~k72iAuNooB=0+e!sf3}xYv*| z8+Xa6wQ9TiVWt{j+?4)28(Dv-A{V-0H@YQsV&Wza>yFz$3N%47?LCf#5!&KIH+y(V zKaD*4n{I6aG+M(q(lD3o+!|B%b^1w-zRnxU;eX-uuo;5l=7H}Npa4SEa*2eMQHhP` z+oGkDVk$Hxr{z_Y8|fe~TWnLt0FJ0hiY6|{k2v0+D#jE~LtrKE%`Xnw4*ob$pauOuBjgBTC(xqX)zBKI9FPgBg34FZ?`W+d0uX~8jDt#%UV z`@6ua^9l!|?y{(BaIL$Il*90gr5u1?l`XF_(Tjc802R=+xl%%MX3Gu&mYyY7DIg^* zY0VZqx^X!j8+j#XufwVUp@uE~PwFr6(rKd(T?b|&@3vT^HR$*`x^Z@Nd%>kaLXw0^ zVhh+RZQgbk*;954bL+x9Wyhl~0~%9tg-!!h9-Uv+$lm-!eOyGW5@a=L9bA{EApTZ4 zhKp=6pEjSC?Y%qxsjjI%^sRfmEx1p$67uVChq@nh!atXi^&U9W4PRsbbr*2JHy0B`<(s0zz$rhaU#w@eR71Y)~%xFe{t^e%;X>bwZ>b4`Uv^e z4-W}gC<9bt?7tdG7Z=2-LK#!O>Y)RKusH_#*e#FXAWX^g+rm1>7^KaDE84l5^b_)I z5P0VHFH{t7C-7Wj7fY&HqIspi+dKcp5;NG_bhkE=$ve8{*MNtPZ?TZ<46dCVmTKjcmt3Db2AJ-I_DQ z?ZUnWttF-0caEB2re#kj%WEGaCUR!-?8(AS+aRF)Yp!UTc3nSGBG$S&L+jN$`i&#q zV9!x|WK!q~QTo6XxIguqXn?oyIN!9aB)ttImMJ)DsU#|msTB$R{C9wc?8N-cfPsHm z`oTE}?2gxD8Gq4bbZBEzP=0#ZSWxG83Qb#kHo+;A?QXoiPXf+fi+ARV-=rF85kPG3 zk*VU(n2n1;ItwzDmgNlsEe3g!oB`QvSwV5JK-$EQwP3bTX&mQ5MgK`8B7}mxnM+KwIzb z6F5F$6X_9Y$7t*I2x%4#YAiBl66ZySAFDg_>>L#f^MuJfgz9Z` ztw4o%jd25BK>q5+T5iagH}i5v0v&nUT`0guAnDvy!1$c zR-3E8J9bu?yzE}{nlSaI3JGy2Xny}A6fsi^&SBw)QUr#$PFrR@CjTUPs~%a}Vm4t! zM~3F1<%`t*k?sKFB$C0$;zkK|c`$deaCE`i@s1o?>o6xs*9)G?h`)h_rMO_vXrjo6 z-&?bMXY+MkM<`4lqsNSkmhq!loxHwU3Q5^2CPb-*w9DjNebk_3++fjyEC!U?5%S{g zaig?z&@82El#2%TQqvTBfHmOUR9cP>eKVB%yyHE-bxs}DuYfM>ne$|TjyJrjuu`%< zdOgF0X{W0!LwkO?hCueH?|ck|5~>dVB-b(67Kb`n`DbfJ2Ns51Y6>?y4B+HsWtU9r zCD*1EES3ydTvd@x%1z=O`rcSEeQ~?)EbP7c>b*v>fK#n^ z2ofD9=JAE$0fSH9yG1~UG$e?pn6DoE>p6(;I&g0oN+?c4L^xOhR$$LDS^#eK=OBoz zKdSy=gbSqY*9>^K$>93=A4RRbvowkT&2 z?nd*1|IvL6bJ?`E4|W+UE*L2Z250^sE{lo>QE_;>z|9Q>tAXrV`soE>$m<-nsxR-6!tcGgJ7AH>TD8_18x-UgN1Ese$u`5!Bt&u_uRD z(2o;DR^ATjVQ(bVO7bJJN2xV&Nb!Kf)D59T8-$IU$V)=8%ejTPXGfalYf7`04Y=j& z6|2R}bo)4ZHP1N7V();N3N|}H0aP3dO&+Dwayb(X=VTE?xD+ThRXJpxrK87S>6@EUTSYK z^hOA{8{SZV;VU{g7Zk@kt{K%H&5xHYVDHvuyK>2kJbfYIX}V}*M^id&j&w@g_JYE| z%tsLmWgLVKhO#fdwS0Qp#!&)(sm)ifnl-k-KyaJ2FJ9N~g3ME>@=rmm^jy5FB3AQD z)TKlB9z^BbA5Uiy4M7m9n$UOlS2;6Y`{OwT9^LP$Zd8`p`H_A5Bp!)lnY?QfHqXrt z?7!Gv8pqQaovuftH?WajH4hNE+V1+p&f*I-DLRLoas0 z(6u#=_&j6PaUSHsPIrv)H`1`qj)_cIt{*RMoCKVWl_eb~9v7DA4_T%Yo_7h#uT$cwWBJi)bZI)wP zc`mTH-Q=tzgKx5Fx2cWF_AOR@opED)Xhn`V(hV@3R0$#;(+1-NFJIL5<6gyBXF5Rr z3jpui=$Y0k&#S8YNn}^#j@B+^Kl(<+IKTmVYETW&axrxLBgXtKZzNalg^8a_tKRH1^aS_zt?M6FKAp^ zgu2POe2J__=+OFHGjgL-N2DbO39xA_0pK3B-mH5XjsHFxV%55ldwibf+XzHn_*z9O zRvcRZUnirhAGGYeqVt`eN2mG=ti>?pO($&M+3#J_x8@DknYJh1MCO>?j^g$DmNB&z z+aZNiy+J?kbHi`saNwrlc4jW& zx3yCBTd6nofJ0~H={Z3ZabEDqI6QT%pkpe}rq5Pt+a`xHivxQ3Dn6`!zGUlbI~D3d zOGix-jx~K{vy7`U8%Wk~PkJzIsX8hzoL>25)!<1XlZa~% zy-sXp1e_oKpwtz9a59#)+he`d=e6@n!nwjS!X4p!Av=$INPpR$SWMW8%g0x{=#)TJ zdCz_ll?w=?y-2|+$Ge(yT_LwW9%SeSoivRDb}i8yeoEz@wssn$p`9Pqu_@QOOy9O^ z)9)5y2zonMr=JRTz~|SSSYQ~U6Ora!y`z_2`5NGKkX}t^A4jsthboq!bS-q09F$Ip zDqDdY&2F~l9y3!N8w`yiAlie%y8ouUxat;-hIYn|#ddJ8|L#J;O!G zcCjI*N)xZG2S`zzcW6X-y=wHlje@ z&a#z*H521Zg~#63%(r}Grq%{gvRJtrL_C2M2UX~Tz=E+Yr_rFjTU)xT=Lar7SveUb z?GS8A(=tcQs~@gbh+At+Ru#fC5No2w4wkk}s=6)VmGVMq+FMFG>) z&njOh7l$VnJzuEmQ-K!Z*0d5K(~~iHeXkSV4A0co3X4r0vi##If*pRACN_KE1~e>!qJX7hN0qUVv*> zzp?VWWb4}hcD?%d`#vNud=w5-uq%Z)r(b*~1D+%qe_V#yBSzoW=B@zhd!EyUsO-ov z9=QYv1U&4^Ptjwp)FS7RZeo`*y9NjNm;9hb8`?|n;5o;OOX`&=;X>C7S(C1B9gjGp z+^Qs|k2eCoPx7WoebfHHWmAmvDfFEMm7;(DC!CJ^V*Kz&<#Z3GOhA^Twn787l%lY4 ziLmfkLhnWi6;GY*vdvKlSkgI3}QW7myN#>#Oigy45f(Y4(hhm?FFC%-7Doup%lF91KNovC z|A&(JSoQ z3}S1(W|(^8a$|>bE>lu?Yv0^h8C9kf;8%yF%^UudLefoL&(dnPbNBR>0lA?ldBHAN zX;DLGLu{}eSz8#Qq+IJ9RqLsW@U>t#Y#p(3-2#rF{9N}(B~<9wik&YQ5w#1-^Ny+z z-DL)h78>AQYz0c$?S#K&{(|@D`grW@b@e^OtC3gWC29;8F{Hx*Gu)r!l3CnnJ2twE zP`wr8qhP)fXqEE5(h|+2R?HzagOR#eQ3-D zKV@KoOzI5UokILSVE7-G2DSssBiRq)V`2E3|BdoL0qNWq)YH1*3B+?-A=+RX#2@?r zPWLYlUm%8!-d|q3(oG@|8Ew`$rV9t@bg9tnjc_^b)r<_G%v6#(F&-rS#J-F25`Hrub6k zd#8#KDDo^oU{eW1G*W`!=R~?i=|D1JHIc(OM6VKrDazicxK)K@_xIkcHFD1o(4=Gs z8zCr!oeQhn%X#j*1kLGe_@_=_FDN^TSk_$h2Z|RnvCypPPFxPcu!)$u5mAsnT|P)= zdQvwb0moY3(2_Be(cD=7L)*H-ES_Te>2Zc@zfEbuOO*2Bbk@&AUd@U5+a)}hQ8)o` zPGZZZ<5KfmC&7d3_Se_7@4;B&Lm0mA;Kaf!_#)$#k)Hh*Z#p)rX&<yp7DXl;#l}s4a-l-N(xo&~ zlQ@&hz{b}8qD*!m%wvXHsvoAS?VZ-rrDk>0SLK7I4V#gj%etiZcC<-fe3(22z6QTUNgM`4j68f)-U1ea0WL7q6fCo_xq0D#M3v#|@fD(5Rt)e+BnH;dSu~ zlTKaJ#F%<(UDLwzl1qg3xIiVN?#j2>nlW3w#<_9I-Go(O&vYQ*)=ed;C-fEN2Vw+=-A#PSc{Pa!0}F z(Hf+y>yG}!)Bw3)kXfO2J$M3HKx3NV!^4Blt}%Z&zDuDtsaQ;X>D_bf+aj`rT81vO zpEH_=_q20xcK*3b4Md5nL;lNF;%jl9nJ_JCk{Va-+Wo>T>_pFZv!XYwr_XL?V2m5kzjf7Er~2ktsvrLG z-Fa1G?Z~ri_f=NOZd%1_JgUx~3zb^yI-P&;$tU0bGM#8^pYa_E9by(;ziVq$%i`U7 z=js!CDp}vM{r#9d?{})>D!I6lS!FsfSQu=KhpqXc$pCmCJ42sth?j_906rDj<>Pnt zp4i(vmTAwpr*i;5O(&f6CDS-oHAh!ma&9HdpHwI@>QTEkNO<^3wK@5LW3<8@V{Lxi&3kf{K~1Y)Dj^RJ(Eet>G5p6XQxzIm+; zHm(Zc_3mjB772&*FnAmz%VoQQBrW?vA%ph`8~IbvtIwZVTXw0zJD9Vl$yy%$TR&09 z_^1CI95HA`9zH?(fC-ndb#)jxK*!JIM^LP}gbAB)?KR(&A`o_5qL5NOCQkeW0Rb=F zE0xAKy)7>ptU`LuWbin<<_1n@7ROFA#5uC2`=;>y>}NVdk30UK=y=Z{-OHnwt&i~` zwJ01V=d1S#E%z{iP|?RL{+zO;jnk@{0(mV`fVN|5;P_&Ah_{o&l{bOST~=y6U-_h5 zGV=9*V66)-6PfwjJ?!AN>r`7M1miSLq`lO=nc8wO8$faV^GrWCzWZ=jH%e;=GoEpL z=drU7m{}u!Rta}Fa_iE@`tX4%zPPp8aH8i4;x*)N8H9FL8cw$ecA>yePJ!~k`w#9O z`>Cm|b)FA)a&Ux5V2y54f*HTt}X@*EhE=wD4luAUa zVNN{Kkd#&2Ly%9#J+&0k#^3oVuOOhcLV<-lzRGH3mDYYa`t?ZGx}!mGf|R&pfKQJeE~6M+@Fe<7?QY?Vyh69S zE8yoe>F0>_Yp+tGg0v4wj=rL#QTzwO)O1f)3Tqu8TJGVgU>zwHl$G?>g7g|jYv?Qk z5c^R36zaZ*U-;t<2na{K8TeEbH{zfFMi5MKE{Wnd+xa(78bV@c&1Tl7h6h55&ykAyPc#bt1f2SGMT?hTwQNi~S2LLxt(R+&v{s@kq zips_(WfwP$AKZo4{x2;HtCIIqveG2n?9V}yRwH;;M??9GAkpP7BFR!|)8V|kOuAVG zdXmU>>`F`}sSpIuE^07>fAMHXJRIRb9IvmKRC}$=_np$Zp#N}xxe(M}U%k%t*66r* zdN>3Fr=DHEjk1alaW7p)794{$jT!Dy=>|?dzZ{ zvR>dt@7e^oh3}~xpv0o&{`mcC>6u2hLkd&^j5D(B52tnKS16KMBl^CnrRiDSOaDof zwW^vAE#fb~Hy+>_QA}77`6K>2Hr2bWNco(0S6fIIoc87apS<;srDJ=kb?w7a9>FF^lh~wHWX7XJGfH zBe{8J-pr;WHVssBVicDpH(R$~Aj|n@DW4_2Xl7v4O;Mr_Fu__0AanJ_^J!8r|qcO*?? z!>XX46*8^UB8DC>@+Y#LHW%YBHx+M)y=9D?K_>?n{&rp0e=rvte06?aMCehR6l2%0 zaW|*dQ`27!{e|-rg)%Lv3-0e%m4}C=lZJOKUH4v(tiP$x zW6a0oX=CpuI}qaeHVZe82L<3+I1eA%f#X3~wdh88u3?MVI~ zp6GGHznYwuyafLOV(Fe5wtT(6*t)0-p!WIYmN(gq4sB;3PUO%ox%@HP!_rv{?Tin^ zEA&+QRm4#pJTTc2KjPP$4H$a-r1xrnRC~D4vzAVw9s%Yb-J6%b;n^H|Jt}++W5!0C zsB{L=iqRid^=c~$ga4ms?&CP`EYlk{wJeVf~lf_OQS$qQA)3g_IA}+G-|ak ziPQOZ6x=eKyYY6L?&HW{c0a8|w6el)=jYXoaO5Zi2$Ueg5~6$$N_%_Vgo|G9oz$s3 zG-jVSCaq(EP8 z;qlQ5zOr4mTsTW374ca?d?9du$F*VMg)i}7iG`9vP&Xa@c!D?1tmEhSy+kIh(RUFC zG(BSkC;i8j`+8*H8hCcM8+=!a8_(D;7;77V^|o`8%I0d<1&_b}@!RwCOsmu_#oF^F zv8`WCen)Tyley$^FAj6EuRE=z)z7GuXAGxz530F}mp4|Mn&3uQ{dVLKB)c5*3)6&a zl={bR_K>tb5)i3HS)I>>Vyt67CxcDc&hIM>aISo6Q3Q_m$cg`r1K&w_AH6C!}W zuetU|niJnD0Q2Rby#zf;^76a_n~|=%@dN-q_@Di%mXH-ORPP6Pc1*e4 z;BuW-*DpN-?yn*X{!vxZN!qz)9&XkpH5lOEw9uS#H9`o!{b%?&V&P&WS{0XLVuU3{ z?a?a;^f(lXE>{)7{uMRjhh&m!*!-V;LM;`#cQhZg>^q3RFEG(?B{oRbc;V_Z!~!p? zi&t>4V#_Dg7R$|Vkr;nMOyw$jz36IzvG%~%-R}A4=ka49XDzLgtP0Gwl^W0>x#xns zg^P5B#-f6H<&eIm)!Ai)@Mm)o?T6Uq)*u)aEsutVl@}~{ZI-jB_A3O51kDPmW$K~v z5S<+U^Aa3dFQ?@aO9}5FucE>_1Q$ z=kK*5H^NYSIMeRk-~KjNNfn$7w)=wXI(2E^aEKGMW-@XLZ*)N5#01Ff>ne*v)P^mQ zg}kqsn*jaW4a-pjm!*F;&kAc0y|+Fgx)*mNQhE_z<_iALSbXTCjfu{c_O@eg;?qA} z2NWa@C~)*kkG z1dRs#A<$~SZm(}j9bmC2|M3hbDtmM8F)0cV@dg^TVWm~S48gIn1DvT_KtDz{Y$feC ziw!37!kO)0WrI#-4ZNNqXhFcB?G5Qb1fc8(y+N=smKU&b6*bCRig0|iIukYd+az+h zty>k>9ulov>VG#n<#;|~d?G;q`&$UVBxDhjtWJn6*bfBu655CZzT?r(kWuAxuwNPm z-9?N&SImu{&?&dJ==*&w4{&dCojT%kFqw+t)$1vh?z*|nQn;0g#G>OR*p^JyMgKk< zOK@P#pt9m=cS;br;Ae7Z`psF*r@682@mAx73bK6a!QvX_OQZuP8}kWnR{bKn+|)5C?j zO-1?UcH_~`emd>WrR(Z)i8q%@)uK>j6QC}LJ^?EMOLVz<{$%DJvrAvk&2J29d5TGL zuAUo?)~O?PvDlxMUA39Od#FMxg>9DUM`)SV#$RL1Z9%AamA!2UILg1T%s-6O^w)FG z#2^I`8>{*M%-{ykl%@35dWhD1<4O%H7)j0$FeC`%Lj&{0O{4c$(Q(*@7i)K971()+S}dD)Zq(dH{4Wn*yGwT(tJ}1=R_T&?Ef4=N2qP*-hhGrc&_~H`qUz;y{zc&jRu{^wo_=fAsHeNVP`7m&KAmcor6cmG?$iHM;@66mTHV*=>LAQ$ zWRAtxC@;Bw0)zRNp}Bp~#^;WdSEIYIXOF;4yDE(7=h#L(ous8LBEBTouEqWx-LK&B zw5c2AQirsn0iVcBWy0zNu@C-Vk{$F=oi=8g##{ZQ7KA+gT8`(S+cKfXOABGv1!<=c zEUVW2+-%He33rQ_8`6Gl;kDJJnVz?jO#^XHCyFMUpVAW(M{TUYDIJ%8J&GsX*IV%K z0885Q%#da4z*uFw3lyM6{8!x@Fj$sV<9@p3yFYnqfb_NlrtMlnzT`x-Mppc*b#vZ(G@US4A zpZ|9!w!a)OAn!YI#zx>P#{*+8gRLtMJbLOcaINrejXl|UKjkB?mb#zBI84$aeo7x znqvy5Lwxypu|&{8Ij=Fom@id@Z6`um+UE3XQS^SF>9)G8YIJ@RHx{m0_$|YbZ{e)NFirA<#;*7f8 zlgPYJ_nB-jRagTqm)V)zQWJ_j6a9tD47Qa^7SanSVZ)~3;5kb|mP;8TjG}|vODJ(P z7XgYMU@x;J!coPT>L%Ya?qmOnlOkSHp)bJMFWQNSWvi(cX8QJWbx7xHJn&e0A*IXx z@d8QV(GIue`30BQz&&W46szHVTbS>NnH;Y53m*Ie`+a2 zV2nIgGgFAj33w(%SiUE;52~{imFNV7jB(2z^}{7r$tGgkrgTxkVV)=FVP8@N3nT)2 z5Hj{ZeH<(0Re#zEmj|Zpnsbb~O%wggHSEW!7xB=6HwV{4VF=pC~)?DwUXJO8nnT{h@Xm&y$()!jx%L@b3dpR=m z)p9_HWRy3t9EwX_q>8?Ugcebb=EMFOSi0G|lOplV-~RhI8lzNbrx~LceFrm1s)Mzg(_S3`|dZ{zM#PCEJDzyDNb|m=w0X`GB=}#cpbJ+ zd6vGvA8->#U+AG~m^YH&Mm?FBM}SRUEiEPjgHj$F4s{Hr3y)n|lEFXoP2f)zx13guYMIHST0i1+3u>+R9Y z=&LQN={{%4W$kW6;O)QF56NxA>>5~G>KcC$fk+)WJ%W5|#@WBi+|f@k3E)01KB8Bv zIvJJwfJtGMbXGxe$7QcMeO2NAKeWANP+Z-%Hkt$p1PBtmad&qO?hxD|1b24}?i!$R zg1fuByL;o_xcepVe)rzz>^fiFy7is=Z&h`*)S9cud}KajREOBr9b8v1oLBSr7Dpa( z6#%%$?=s&??f7I~VHs^0Zigz9h@{SY@h1yi59-VZXH$VZHLZmYz7V{M#j^OWh z#jErxL&(whAy+Li?vG+@x?>aAF0@dD&n_=7?P{vXz@9Tb07B%%Cl0l46AZZ-aA;1F ze#GbO;r(qf0S?!U<>UQ;dLSqM!+@{3f>Ah|EK!yp)xA%KuZ9xeudo_}M)3%^ZExcs za|H~yH0z&?UoHaYfJe1W?Hp35Bb$B+U*NOs?wn)O0eP9|zD*x7tT>p(RAz^GZ}gah zlu@iX9DBbcpUsF1J>aN6;goB)*LJiV*w!T1tmdNoKOg*j!88mLc}$P_ZuG)tS$j=? zu)hR2|7efaCG<&yXUfAC&uVNDTE}Z92(&eG<6!_t?SI2IXOk)qre^A@PG~UIPqT7j zfYZ+hi0+-AVn2@tO4vzdOfh`9DZYwkrb)aYlJ;!rJhbm+@eiw6J(HhWjv1#9ys;SV zz(TJpn2=^68;NvZ8rmQ#1>zdmoKT7=`41QJSw-5nfW~^;B4gTR#0Fp4#to4#!qm)z ze$A$WR)4b#_N?GyG;ipX)Ei$#lqpX|ri@(#!mciV%PFqg8dW&@w%milUreGR&qa}M z%&01!e&wuLYao-2$HGL3cAqhDb$dQ-XpFaeDp|>gn?%XJ^%Yi1P5-6{RVD5H8a6B& z&Ecp<=&bC-xaW8y|7*RB%ceC7Ej?J$nTqH+ z^D?`kVm!sW_DX6L8C$yfd-ET0VqxT8$sX^SO%xKUvyK}@4WefdVXLA=vcC5QYu~hj zOv0|9WruScqvK>GNdc=*BNg4FTS=Iwr?~Yi@w++Mc)irGO)0)(bTz0B0^jKN8D+!? zZ9E?=#3^Z12{;>CYYHMeA4gQXX!H)oX#p=NQ(~Ze9J7Jo-JeV)#@xN_1F~X&AK7vC=uZ=N_uO*E(Ahpgi4p!;4-?MfIJBn|MacG+6&^Gu*w=Y~7< z0#wt837LMR&)0dT55BqFPWO!V;_3WQqS$gNk;$Hg%4&phL0(KuUcRR4>~SAo%|s-B&2EIGL{Ss98*gn^_v zS~^;xOw8;#X$Y(eRorKhOS8X(8EA|^qOOe-^{sr!vBvz}4;Ajoai(Ua9abDY*?|fV zANeaknoA4hG92m&!+vK;41^^mSMg)W~#m7tQFj z#zH?NqfSmKR!4 zl|TENS&AuZz7eI{YPJos#)~{Y#DV-AKYJFOZT+@P35Oi{phtS%?esSQhErUJ^2@LY*Op|k4P{DbmYu5^I-D#cSa_*mS z+Vu2v#XMW)MlQF>^M2Q`nl(+Dn0ht|U~~=T@_gzTziW##&WSf}d6V)}skU_cj_Q8R zc0ulTl{BIAKr!(S-X^@?G~OBvTBf z<-BMNaI3S+-zo0>C6A-;+HHQUIodzGj~dd^v40l8-lJ6z{kz}dAmF1#d@YXO2TzDP zL%v}442#2NgPnAXO}}@uSiT$a!-cZdsx!71a0_0K-fMb!Wer>00w6p2iKXDPotr-N z_Y$Wr_8)R6yU~r;uH}?VQRzuf71x10tCI26_W=}JTjX84A`)C-5lbOfFq zv7MLGviAAQ=K|KbSG`%#%0VfVz!aGjB0ptIUAGW|uaZ`sPSI}^=4|v$LYPzZG%`Mf>iA_S7rUT`PwN_+HRBTRR&^&AM+L_eV_;gT1GqyPtdHyxTm$+liaw zt3Ty06e&d0gUT{OM2ibHN6g86nmcp)D=)80eCxpBS{A(1^o7wk#_T z=#900oE1{PdiO6r=Rb+Va3B4)DM^Vg#( zK<2{SVpKgs!tjKmA&`g-MTDcJZ#&UQ`Y@KcSIdP9XRs6&HiHrfG@IwKK?Sm#dX_ zm?1wA{Tak(+44WA9H8#SNH);d@e)Me@aji|$BXd}3HChtd4QFM zE=B8kS;aEmFe>OWw&^{Fvl8z@N%7<*(-~g}s{~hccX{lt>i*HFdB!nQPovkOo{@G3 z!d}`;30s=C${oqrHx1+EZr?qiJ}%3j^Bi1o-tfx_>YOFrgn{8udNuLdH|aziGq;-m z{!$n=8oK)H(C3^+jJJ7F2!-N`eID@vzWPv)on&|lK)Y5kEG|TFY=8$(OGVqpkq)xj z)yP7RzR|C?v5F;ptHmoR;_&oIXS0NG*jF6woMTWz#QeQ;kt#w^0eGU)gD=3#1-{&| zH+%2HJ0e27Dty8~sQQ<-W%Eu!U2pz;bvL6Iv9+wD|A|29g7lSjqwK2H*LThI4b~r? z&6!?3rt9{CAodcMxt26BxqA3W3AGNlcFdT+3{z&%^_S^@4G8$X`eZu=Dz$F%U1sIm z7H0%Ly~=e~ekT_q^~3C}ECz>eMXJQmb7PU_3-U_mV~ede)ugSP=oj#e@(bBG4F0_M z2swE7Kk~e<`uVC_Vd~&bQJAX~{#BB7iya2^j>Oypy|N~|BKN z25($e&H=0ReEv?yx|p3Jcp~o-V-=l6lYH~djO3r?rk6 zKU5B+^ZmwmKgENCz+!=Vwne{;DNrDrv94|*li!J`x>j+dL<6PA%E?(kv~jb=!(omb-v@sX|iN<_?TL7Q2i)l&)Vv;9WYk zWfE#7YG^K!VM3~tR)$UqaMpBw$|t7TMBJtF4??{X%DLaUGKwrIigyQh z8+|S&0ofdelDC9E08d>u=6wY0Vgj!?tL`{;n!U_@CiM|#bB^h1EBKzjmm8qI6hJwq zN^q9+bZGo?YjZ??4(b3h)N0s;Ewe2N#80v?7~Zv9y6}8iOy*Nb zKnvUzRA8gr4~H-vdLs_aGrl%dzl^^&edL4f6JNTV}#HAj-xQ06xhvkOlx?kYrwOBTNkM24#_Pn8T-&q9>Zcy9TnoxtFkx)`O6m{CC; zne0T{t(SwVGRS+yPNSopQ96l=i4J^mtFGI9D9cViuqJY>Wotp!en!$^ZCPR_{f2WT+-YneM_G626PnS5g;JsE1{84EKzi>o=vD$xQ5}|d?75{lt7-({? zlY{b}5eH`6V^19+vUly9qmO&L-KaTt21Z%;+O9BuRzDMaO~> zbSGY(KW55V%o^^5c8);p{42p|AnXKI&VQ_C0!Y*^=!*I?ejFRCT@i&U!66=U15WHI%va4EPO? zYeTT)bB*fA_Ycy4e>`qF^xCP`fQFW6JpE5dPO;A?d%60JSX~6J+;ABEk@mBU*Cg9Y z_n>QFF2h*Q;;{FBgkbPNlNWE7HfGoB@i(c-)wKdtd?HpY5~6@h{k}BO3KLk(t1Sh^j2#&}cMHS2J?~I7E{zA0Qmt&k z+3B&P2J6*cLfi-Q8u?!fK!Ta@&VN!vTSZ5z3y*PeMun-^-1(zkjM*Ecq{$hdrB#lP zP%3#v+3mWz`An9ac(b6Z;V4Jhr|$v*C#GiUh+x15Jf~Bzr@Cpkw>2S=9EbS$Jba2l z@?W7a23eOyDcM|XVis>Us5YqA-!x*@aa%`u)1fYAU%RgV#Ka8c2|=%JcGmgK%b#1q z5|@SSBXasp`RM;{B86{2UiZO9i>8D)I$9Dpa1m?a_1kBV5y@b%*f`WXVL={)*CvPrV%4=!gZZW8wdnrIZTA6a^d1SK=byOl&qqc@E|-1M)mPK%Ogidjq%qjP zUHwc9`(60oU{m~$gx!lI=1%V$)m-hDb_?5i-#k)OykT`?1?k(*W8M{0zi%4E(;b^8 zxKJ^*JUeNZ9Gmc%IgdNg5m)+}Qp;>IN3y6cVIn$Gb*cG0LN>IRcPR&X!c_9A1S{1| zq!WI{qQVF-v4Fg9pr2Q2R7dsfBpDpk%@by-XdJL=8tA&A6LOIh!XC*1Yyqu~X~{w5 z*K?GHht%x#&?*7AH3qHpMWOs+-J`$f6l|beu1DRpY!fuQroTYWFN!7`%#^yJn)9VfN4Up``EnKkK@Yc%}hl^7z&j z4_b^77!Jz__;0gW@8Ll?#iYX`W?JjkN-Q!mhl1so2n_#3OT5)FPaSdsv{d-1de^uA zUJe)r8oE}BNmC{gbqtc&_$mC&Io-QYP3BN26SBnroAjQG>TF@uMjB_Ix=zzO}xVMgY}lVNLsI zsZPe8zXegpPhKDfiJ=!s=B|f|ao1IARF-cF5?)x9439&F{)way6FIZvm9q5EPq+WA z+;@@GI!yuW=}+KveiPDKqCBT|Q7sm;_mLD-H z(%zulQvj337&hzbzK4~uRYP95a@BWkxDywkV|#J{_MFR(Bj>&^0H_^fL0Q^J8|9M} zn~ck$P77vTvrkl>_s##BM{X|9oMrHFQ|5DARv;-003Rfy# z_t0uiF4jesdmvgSGi}XqYXi(dQ_7W#qEx-2azO|aT-Lb)TTpqK|^6D#2q{%w|ax%Kzx zpu#ECpl9m>7$?d9gD7&wW4Yyl11WR4o z^y73C=~qpT@asz{mmayljsG8ammkiKU8rwoT*zV5iE`Q^s*?$<8P*&#FS90yVL>j+ zdlByRKtFQ&7ruWL5`5S|(sxER%Bq2Y+iI^A*(3c34Jq!gmDlf0Tq0Yp4|u`YBnl;Tg;2QRwfg#904+@&6B* z0r5|?@9T%V=G9%mnQmEt3k&u-KEnT?c+lI?uHUpsJ+hT*w0X!}or5*x5yyL}B9mXI zPmU=VgRGRQ*KbrQxhL10z{527w#JtVI(_%$()Sz=S|f7C*)ZtIpYxB_38y3B6L&E5 zeJ$X@-V~>=W}r-J+NY&*{e@9l6igzpytbAb^6_PV$)PS{?-}3fy}m59itJhwXe4wb zZ5S*(dRlHu`ZJL*CQxJ$mc2f-MO`B3V78vv_>ktgRwU;=RyD`x((Qu9{Xqft!^!&6 z?i}zpi06*2@gmW6sZs8~C5fvI0+{UDEAWTLbcooX4`t0Y_xq3S_9FtAmWIIAdw)t!{rsiY7^gaIlSuA$f@*fr;-Ped%gB*m(POSopm!OP9U)LizdY+_h+8 zj@{(tqqznwfsuIDTia?&)~q9apo0*n0AHJSAtF^yA{_ofl?!W{LrGE$E<2h!^~Z{jifPTvD zrT@ub*8eI6+nVW_?A|eoB;nMJLO5Q54sOHAr8f2q_2z=7B_Ginrtha|LV(*ELudyv z1PUW*OrHNFY8HC}eUaJOOE29!@Ke0bZfrTmy6PW?4$dv=6rm&$e)p3)DX^D< zcfsXkr5FMWkMt8X zxznP6CuMifr_cYeWVMYSrq+ZH%`9C4UIghS9g^V(v6@Qx-}dp`^|K!rxVIsqyn(an ztg52l-_{ed&*QbcQ)Dr{2Q-sWN&bZXQKMs=`*kvA3*M&8{hD28jK0u49*usQa> z!x4T-UJM5ZEUL>!MP`VvkM;3_p=f>uGd zX~5`5U83&7Z=FbD=$(tD=ee-ga>D)z`?C@1{&&-sXN#8V!26SyaWS&nqO0}509#t? z^||TAr(`}8DcFc7`$0AKEh(Q4Yz!D<79Eq<0&^#hOJi8{;rYFV}F8E*QjE!*Ai zyJ2PLH6}clAEv8!XcW!euo4)K5ve4>Nbld331g#Q-x?k!Q1a?pE%q3MNsO^CwYN2- z^U^dN07-}R9lA4q7aMEM1+7l!NGqB{Wq%2BnfWI9x=!x2c7AMmdl$$cQJQwuw-WZ~ zi(w)zl_Jca?-8M=XAtxqfbJCc;lDsKJB|N@U4e#b&HN6f$2Hn@xTVif%7_Ut+}p2LtucTrEWLM zl!74fDJ9mWkq4z8Hac7xuO&IVrA%u15hG|mY&?)uBjuWzW+e1=(W4tbs{ZpQg!5{q zbB@&h_PYKG270~ERFZ^${^}ttG@=`_Us@6523H{#k1YH8mM?`Ddr^$k=5e=cpxp0a zD7lq{BstHh+$`v=JyJt2?`sigk;=H4b!EAeRdL?%-Cr^W{q`S^bFwq?Zy@QxoVimX zKOHf)=b88iB1$vZFcg4=V+|GPI4?DL1+z9Ay?bd785j_Q>v!92 zhLEi-;)$VAku8j1-g41|<3JfXTqa%@H@A{7FOL)ftQr)~h!OoKGTZ{p6-O*ROsdI* z(7_HpuA&%#9A>2i&YSyZ##U@(u!;>jWk0W+(;a!SN~u-b+()>r%DA-@<}Mdf&1@$M zX8r!#QtdTVPCrl2+O#byDZb&2N5{*LHvflnic^#8FA7p*+8w=9@W-07d~I|OOKMRW zbHGE4sFmHQMbonH(&__?f#itl)YshfRa%Z0HPVurGiF)l*lU>G!N6GDV0O-qVZ`cE zXtdmlzn?;kOmrMwGxjJXbU?jlT7B*4)K-8}OxwW^)Sz!5JWW<9Xx|y$I^9wOMo9%f znf{BZLQX55XJj(o$h2}}v>HR>?H@-;UJ?N{{KaL*XW#q?(14{ts)C-8f&dqou4WNq z6!j~1&G1@UTv+oicG^m2@|=XsX_UiaOgN|=^%Ky^7+&#h-*OawuGqrs{%S78|CpqLarXgKEfdz<`y1i;+ZD`M%@dj;rd%CGgQ%S5v$ zo;FRm%J0WOTDKHk_O$|su_9Dq4i6)X*{y;bzfBtFry8q$+LBIfeFA!mB}S;$gpOGS zOafvuz{WY;>=Xu;(d>j5X4l^S>~Q>mhZKfh#oVBQTj@w!_or>Accv zaMiCM0;plMkL9^HMJ(aCz3!`Kr zNK1K9{3!l?eszTK=|kG;3g6dTTq&xZ;u$YD!x!hMBY#^T&bb@UdeWED|jTuX{$ZGm-VzKE;9jJ<1^9 zQ2}l1w4)bpb6L-f5PmgGw0f|)njd*8{8!KY%&hw6dT+{Ir99C<-3M_>uA?o_wk$;J zxj_^NA^-3a87?P^?Z+nWuaZva>bI-PYO%Rk7h9Qn zrPY&%gi{K9E5UBRyAZQ ze^=#DSy@t+Rqefkk-Dd){6je)KSIf_b(TVTY7O^JG3zy1-v!OLBSK{GWNV_=pj|J0 zq1Uz=ft@dZk}rpZ#2d2s{v6qUUfA7zN=ny#qYmys#4#?pe!hMT=dI_5>oma)4c-0D z{jYZ5?S=VkDR@e%(-wc-OC0vC2SmD_ZM#-g{JfQ}X#72!U1+GHWEx8;7BkL~eaUsf z`O%3pd|`v5DK+i0yN3Du`?}{~l8qj`>ADA3T|aSon}w|qFvcbSp+FqykOk4s~^n=*Fk zhCgcQ3jKQl(YgMv((_EKPLzBTvrd6Nd7+&b)lXK?neC6g&T};6vGYVnjXC%$Mv3L_ zch2*cMmYm-6Vr-5y|oNy-QDP-&eTEIN8L*=-<1TEK{y@E{tj4*<~d+QU`B}h+ zWDC^~Gx!u;0n*D_vGMEm>c8AiblpU-gunqO#PDe09$T);p?&#L%a1cUo&FFN&m4u^ znrY%%X$wAU+&jTLtDKZ)S$KTEDj{1LFjH@E=`c>whSlg%31|A2aw#<8!;pH_wsHEE za_`dpbC_HO8y=qwNsU`O%BVYIyu4mT(N@Ot>%we3o1E&;E9Y&7#%&BS)sb|@`OdMa z1+RH#hnRgU<2pOQOQ=TO#NhO@`J^-i-04<%N{rQVmDEcp(I_^3e)SP=HK$M&io+27 z^Qe66AdE@P4$3J$v79iB;%10U>_R!Ecl(`dX{%52{l@qcOUg-k)tNNf%4#U=r#myG z@rnsDURf`d)bFl#chme9fkITpFR@0WoFz7KEI}LHxYq2o&$}!wjn0?Ql84VNqD~@R zES%E~C=RUoyFofbOL~naDVatVNfg%G-jo@UHALH*c-YX~_DQASEH(RFR}A^RjkvVb zOqN?gRt$4M`SXgc5>uq9d-{xvep!pi4>Sx%J<6_-j$C6)6|9p%W*RUH7naJY-#V^8 zM(m46>v#VE&v(r1g1X(0bmelw$;?ipmHgVW{vy>Cta9FUvX%o^x=l0hj?X_CaxNbs zfV=#lsrWvW64wGP`{=!;Up%^GyGickc`;TU3?pMltsP;eY*uAWORlT5+xIZg;wHI7 z8EHzgUFWM0pLj+^_V8a?*jRS-zl1GIdbbX{MgzG_D%n$}jwd zcM-%FerroI-^vLuduv%5u9~8RrplXLpXDbqC^=DhW&RwVL>jx~ceT&TKsGT>j3CF1J0FUGXx^~z>aRp#avGv4=GIIl&ZA+R=Pg8C-{KDQP>rvg zS@`j?dE}Akn!Pg8N`%$b>joxQ{ZXeL#(UJ4rOp5r&)<$R1Ed_MpAPFCT#3u7H0)$K zvjeQ{`o3Ck8;W@JxmIe6A3mW568DTrzxdd(z0q7Uw%1DJ&?_b12)NQw-ko%@LqP0LBbMU!^9;cQF^BgsDjX+3>dzO%7^%lCzV6ew`IEl{*Upw` zi}z^;O@=nt8@Bs7Pftsf=Q|Epbn9=I9qU_aYj*FTp`e|on5z00l;Kn5lIl`m>0-P71jJ0R??J&a8 za&~o4;T`Xu^NG6VwZn3H2BVJUbOvhAQIBT2^+X2VbxT&>0~{1O8(oRzQz0JfG40|L zw|WCOZ;fN%iKX0B5<@nQt-DJqJO05XAYn06uA~jJlMjZSgm=|DYjRABZ0vmvIe;c1 z^@S#pS6a86m$YRWCkNj57XGML?pM5}Tn#U~aB|gW+HYxJn-s>Zc2J)!3N}ZZF$9vU z5$UdZUecXEo-t~87pRw<5u#~1y{;THp>q{r>U-7|X=Zouyd}Hk_U1lnxumTw`%2r`JM?9z>FA0f9YrW$g*KV#}pNBoS z{a5k#BW7hP{7LuYjPIWD6tkn};hm0~pQ;|a;;6!6NyB7}FocBcY~iwt_4WrenhHhlZcdo@*2Es^$!Z|w z?4WqHR%{%!1q?-}u1suDeWAsfdm7JWM`i0{)A9c5j%8ZNfM?L&V{~FWa>hlRwMx*Xg)+>)ifUDM6WpOku@#BtOK+DCMU}7;k zi$T?1*~~2#=0_3?*48B}uEimr8a|gJ$z`mZ9zh}pyoO|BbTZ3SbFSrXZ~Jv@_LL+z zZ=Rc+1bSO5$Ji|sWdO>c7lUg1MK0g{vB}_5rG{hdB zrl<0VCSs)$-`9ezv>UtT%A&&ReCM81v>kR8IfXxT_4Dy~LmC6PR^h`WPYmqg!gcBfEXt<*iR#z64#EyU! z04oVgRg#iGDv|ZTi`XGiwJKMo$!ugJMf?5`3+#Zo1dgr}dg{_l+p{qX{*ug=ih`;b zQX{|z_BqAHR=W2=8j2$5;G@)7gUZR<=(adzMW~(c@|4HN8ck*pSBU;BB|f;3F|`t6 z^f||z@PebfT;n#Q60cUvPi_xEK!*u?Igzx%Og4U^2*wav(k^!=Kft2N+p#jGfk3d~ zP=!Wg91vCjPu5C@udS_(kJ|6^8m-|E%cHe|84T{y**@tyJ2mIsYzO?8cOHla**hQJ zDG&mxfVABo-nl`)r5L{&{B_)q8Y|J!S%KcoVt4>k?qtjWK<3-~-#H@|&g-==wg8Uu`4g)!JFKziXN{ls2m)Kz5NGB3B zQoPf_yO-Yjcxe=9K;2|BRDM?uvw}A#V6dV{iQyL`&mcTN+J0wv`}sXLvGXZ+YV^eg zoLWg?yH8m8sg9+&fpb>Dc!t}FCthfo=);o78jlACjDgzOp8b2->Dp~nt84xZfFL5wikgG_YR}CMV((7|0H3y20mm`$6Ku1K)og7>WIM)uZzUjI3|r_^ z8N2yXXm4(NL^>bqUFCP!FqNE_44ti@fh63QnHY1Yw?64Y%W3r>)mc7*1axG6Wy_bZP7tcRsEu&mE!3O=}w)N+7_Q zj)m8-M0rrZ6gRCL4m*81EXHSr^R5ot#7P~CvtPO)qt(T89}pe1xoxg{@zcC6j-LWc zv06g;gvmB1T1)4Lk-%ZBiAxWkGIbfY@!LO%XcDMwnBq?r68W-z)3Oo1+i8h!ne_Rv z@o>Tl-21Gk=2niiHQ)ucAqft_bUU$k2=QOes9XlFo&bNg4kzTe?rX;RKvyCZ-=`mm zLzM?9ZHy;i9L4HE%_Ay_HD3nG0E|&EoApD^O~hSoM=E8;$n-~V zoSN<51jo%H|Aw!7i@OiWhkexasF#Mzv=VK4l;Omd51nr*L9^Jv^rILs8Kiaw2{~xq z=>^3)_LAmHv7^NPMW{_@p)#{lCbH-lU-1XIw*Cxj;Q{9sr9K)N^L6%jcb->*rvS&U zz79$$2i@!Or9+a(Nv`FkJsQob`XdDSD$re&rga;`Br)f@kC4M`AH#oRS-6`ywO z7iVvYRxQB1sxEX4^;&pQbmA{svAEH6O|KC zb{VyY9hP(NzN#)`K_^o|509fep?wjJSdY^&L4T!_T0Q1gRMs=Xaih_4A)Oii5x%){ zIlEF8fmL0BVkG5(=YsYv4i(HGvTU=lwEt1}r7w7jmVVaHSs`uWErF|*_+AEP)U=s- z3!(DrcOm((y9T^us$PsM!v4UB{1V_bYX(+KP2BTvlaN^TDTGe9_ed}`LHoWd;PO_p zfR;y5Sf4?oNRgLiH0#op%diD@R*?bGT@6Ap%${FyVN~wPLHg!9)?80a;8D59x;n}@ zpLnujm#bli^jmA|?3#K$%k5i&j7V90HlID>l~8|EyF6P`6V4QTx3?LZI~PJV2GECC z$KZR>_#2CE7m?=S0x;I19voXuRGnIezV;l*QaJhnKsU5C&u^|<0aw<5(dx0gK-iM3 z$m+P7d{%?~*oRc+^&r*ZVYvfa_ujY)z@3cNygei6xyDbyWczD@e;qJqQ_7k@?bZIv z>AFX*&I~(}{L{YLd`c1^vwUN;S*_*0WM3KQP5v-viEnp;Bzn*{(u<`o0mZjCYwc_A zq$IgXl(;0ZMOMbF{X|e|<(!?q3XesfQg%VxD_yT-vNjI8r~jb*)uQwzu`U{ERP#Pp zZd`LQZWL;TP294214oceA(kfD5a3>SC_g)5Hz6pnb4*Jd`9<9I zrRW*}X|dwOl`%LU@AD$Jc$^J*xV&y!2%Kdk9T*8=NNzbWgma1|QuJLJQZ$Nw$rNO( zKi9X?lK^eSF*C+cBM>UTVm#H5u+r#Eg9`bF4h<+%9_B@xagT{9@3i9rKs>RhL-B3t z_I-jyZHQ24qh>^KebP4Cpl4m@@``W1N<3xC`XCG&%0^XZF1ep^7=7FI#{M@mx|;Qh zt?zoU6OzphEVQ0N6!&8BcN8Zy`dUEY|BZe+(rP(v=s^tJxkxO7>3)Tlm4#);%bvkY zDSKPD*`Qa^4Ps+AAGqQrU^njrxJ|8OV$-rZ+dR;l_j`QLCkA>c9akP|W^*q0dAM&V ziMo0RE5x()T0SLZ^_#O~K^>?NH-tDcmF&8g=}RvmgvD}MD+TFYYpF?8k&+?ianp%% zAC3f@d0#|g{@J>I& zLeJmES0vn8xIG{YyWM4+e4KxV?jG4}q605ecMqXqqC3TUbaSbLjMQNBqV=SaTmO@R zM$c7fEM`P$geNz>_Kvd3GD2DUk%~GsXs;`76cpWWd}7^bAtdIWaXL;5j9lh=82*k6 z^{5nTa?QF+cC2MqP+|eDB)`rc=%yJu9gZW1Y>o5Tor@A@BBk&TaBM|xsLTwI|K)i7 zb4@U9qkFVVm&JqUH)2vx7!}N=mi%2H+O+^?Y$}hc)l*$K4h?JQA%NX>un={g^duz)X3Z3{_GRnAg%9+QZimsgky(EX)<53b7-L^ws z>J@j%6Hg5Y?d3{AzmqKA8fHeA(sl2QmTHZ~oiE!+sZ^X$9J##s`Keej8|;;TS@OV!!&b%%o?nOWv7>I zN(tHKCsT=L>cxx^70=!27)pRCP;vd^@dhi-%8(0*BLG#MjSU@{G?7Ko56)OV+We(QrN|mD9RCxE)h&GF6+!NLd6ne(PEi?_Ipga1m ziO+r3Jj|0C%$Mn5em$3|H6h@j5p6`3FvUNPSULx%yZw zNCOq?S;g`K>7sVgQ{Y)bTdb}+B|Uc@$X-$}W`C{(Up z#*GXt@2w-ZfI7`ire=>+nnqY^G@RSMZZ`AI1$jP9pic5({=DZe3C!m&X92uNND^Fn zbXN{Cs3^aEb*)@=sEUU$^*o!4uVWSu326Cb6p2+#X>rk<+2eUqj%cae$g& ztTseEiUV{lzmH*&l3L|@V&qCbAv^PSo@6hB*PI;Od7V_OY1i-r9p^Mg%zZ}x{MklU z&k5yZ89rPn_T_d-wkFMlZnrltUJKEFv-T~Xa&|((rMrMT5k z)ylpEhQ+lX=}tO=FN|YNbfB5vz_texdTv!tERk*0Lb1)rigqMn(kdAtl@!&04S$=| z&omOCysCEu6pE67W1fJv1*Z6cG?BpuTfYZm(i2h~0J-VT~AWBHtz7?e#qS?<)bHR`y zwpg{fq`D?JH63wH4@S^8-t_Jnw5DTV#f^_V9TjbM9I}RH26wqpaaq-Tpgn3gw^y5Y zon_*nhpiZz#nkwhtwSM1wAR(NL+j>ug3LAsYZ%ZKdba@~y zL{Nhk9}eJ8L%c~gW;LHI;x$EMa->JZ42DNqyp4Hpq4usr_5J?>!+q-<`!A;a|CQ|? z)WNWh8JTu5@})*C5lU{yXznEHMh1laVT_oIX%yHzYgL*5ptkSwLziwoSHw!B7Z`g5HzX~n7v~6EtNz~G*TviV(|)W z(ykb=AmN}a+x*!uA-}Tf%MTzJRSFCb0qe5C{~9$hSZQ$ zNxM+tMU)_xo1C4iOfr|`RO zlxp=M8{ELz*vi$d0-Gc||Ku;H=G@*P?1TRgac>nIN0)AG%3`*_VrE&47L&zHmQ-S9 ziDz$NiKrw8t=W=-7$IR|lO}W*EA&bni;Ih+*z_iMwu8RM} zy2ahbqbj@QW%jYHWW%&{*@4tk(LwY!kB5JUr2d~x7h8#U?a34#3cZIqi8c_<&Ke{C z6Bu*7(5lo_vBj5e{6FgU=g5)xKxB)u?_d9gH7)iG|Hd_1O&dQ3>z@W+*KLt4F|gbyx8Tw(aN{0oN`}H2x+d?hqP+1&$oOTiO zu0`cGV+6d54fVx$v=7Tjq-EG6Aq<==0Y-+*>dOYJkF9W@tnaSrsbrIzcXbGKb+A?Z z^^&sF_-Vgl3sKNenK)lg_We|xoYenXi;-u1n}2NW@k}ZuSoJB0!lX8S(=~|QKA@zi zv$Lu_s%I7gymw2LTqce+l2#}Q)7<-@pqwCax%m>l_gJlmE3>56ctQYcAokB26*OH7Lk9HfeiXTzrCzqW>QwPc zc^uD()roD&ix+)P10s1{%{mS$4s#Zs4vTL`HeX?ez7%m~R3#+$e*7A{{LLp?BG<~0 znDZF6qKk8Lpi_6je;av(UZcXjdZr9_*vQfW|Fi-dkCSIE_SVMns7vmzkEEFsLV{*- z_$<$Bq2*|&V}1%q^|NmhAeryRzq1JUlSK9~;;YVWP;36+^x1|v%}M7R-p&jy;gK;m zC{t{!WWJLs6A|Vc^XCO z*2i}OIVW<^aj@S^JOf9Oi(p1HgIh?o+uQ2{3PQ8>fe4@RKBBPb_p%B6{z9DBH>2d-OX6YccL>n+M=Y>FK%9yJcm17Rrg{D(S z{@T$ttj4Q&oP3|+nAIiENv8X%Ij zrT1n0-Dc46fyqf}_gCLyTj1y4`RPiTp)uNjw-etbjvJNltsrWE$LI;s$3dna8M43)?{u4lyONqoR zU;d>IQEu37nK1y) zeWwasZaFxS05VFm&%5z=GU=Fs#(-ptfc_&~<=bC2pSuymmF+AFQ?JjpGvG`=9xiHg z&&0jt~L;-C{)F+E0lRi{+dquzFS6b$aRr&Yrp5tZ8Ds4EV12NI-`a&U2JJjhoQqM ziUfN7B9H5f0`^&W?zZ9)i|EpW)EdwC6g&1-X;hsxYW$qU)dvwWg>BQ;^7#edy}OPR zcK?Ef&de@`s7BmMJm0<8JJ-O}J4_)M#H7_5JeZWMy?dvRr>d#9rs3ca+N3TL*n@QI z=h{x6$$=nyf9vY-kvo z1bp$^d$mmO3--EmYzu8I4~}YMsd*2rkm+U!0!>G{Qr5@K!A*O82~S@u+(yPUN38=& z_V~0;2#$lP<;YGmG$Vnml-kZs&fxDCvPx&wl-L&crV9UI0pZ6^Ke7Xsj@#$+5+X1; zdAJymxG}dY+1Ko@GxMhKtp2x>tFAI%N&Pb27mECr#v%HqI`-4E#?sff{`_v0WOQHV zK5R6P?BB)tCCJ0(W4N0xq(bs2KfEB**^H4rwPjf zn4ED4tV(Mh;C%M4g3RDQHO?=%T1crptBkUKd(J!E3C4{<=BIEFt;9fh28wfi{SPqM zlkEF?qXCB_jHP&Kr+@G%HQa4Zj<%U_ua8G%l;Xu5Zs3~#qtpeD)zC|ZeISkJv0S5L zc6ia$a)Y-Fb`1<(I`ld2O$J`L>c%x`^?sC}!m3))ZwE1nNUqBLe)KaY8ObA#K%WUa zS+a_Mg3gbXOB7Tu1DMx!OP=b{#S(m_47WpX@cBS~Pu6Pf6raq+HbE#qO8RB5qALM_ zg;B^9d(aWgh$RrxUohzQwZ~3lC=zj#$#3x|6V- z3IW2+)o!2j2t=`u^@bmc8k90#mY?`8HJN*10Y_8m^OEORr zcv%wl$Dj~0%f2m`|GD9cVPe)+Gm{0=V5Yp-}NG5DtC zY8PHR45)2C7v1aKkl%0QlvkY9b|LO_=$M;@vuKfnnI6_k|Itb{x;#+XfputNc;4LO z;M=@=^`M38=VfgQFfLifR3CS^wXM&nww<{}!xkW0JvtYl05veCeVZU>avnt6o{Fg% zwV8WAmBtvtu9>p`1XdD*wD=k9BS!sy%@FI$*`+_Cv>$-iX%_ImO+6LKa5s|br>2{0 z!38&#Jmw_TI0G1b^yi~cRc8pqDYlav2Gt`u_C_?xRWG?6$5>OEQJ-+vT<~I5^SKN` z_|G%D_yNl=ee!?J-mInGh2*pKP(G>iF+!OLmDjH%V|-4lzV?r$E874T{O-?rd7oTM z31*Ki_iDvZj1~Q+C=!!F4Ng-WLJD33FM)#U^hE>{=Mz-IC;cuve2mW#{#$kgcAtzL zXK|eRT(lIwd=d~9NlaQzdJQ0t+jX?3@Y+3=1E3wy{X(GhdWUjUn^TtOQ|YWMEkqbj zP<-n>k!yzzLFy_OnN7WAW_QT zCT|oq3pM?bRi}j*K|(^H|Gof~Q%r}ng5P5(eN)}&h&*d&+z(k%Ov*j$#`lNo zln3ZY>=NSAQWmU!gKFsU!qZRmrPqt4QXUBFCjG_LFEI1>9rw5-fdZQY z!gAJgTcQgl&F-ZMpJTTYtIQeKDwf4)!>2-#FVlZcapLJ~?K_$EoRiBiLg*dQBI)xP zyqMMsaPNwI9hh(o6II8*v+rEevb}fv8UJiL<*MKqjBOE2jfu((_hlx}Cp+nE(_eVKNQ$Hqp1NjDphvM?u9 z@bL^R;MK{f>8$ad!NH+@1xOn6jXGy=h3^)MVxcOY;-p)NKk5jBC6OoykT@N7>Lju` zM2M=AoeSEjj_cPlQ$FiYiLvHqV~_hlKw9=O#8Bqv?HlMJ!X3gsGcp43E%f6v{bZqC z8iRY!yi;6SGkHk;Z93Ap2=~vLZf(%6G|kiRu$QF?@QtpEZ#H`DN`<0hg)-wi#g;vF zp?>?NcZz9K{pOJHcT)2!1jiiQU?$?Dc=Qe_*ss1{@lClhtBq3Bf+Kh%0bn)mvoHP5 z{(T-Px1$Z|d~D2!5gB>U^XF7(_)ehTj&*mRuzceUDYuO)$?aZ;&O-aa^NQ_fOX=i! z8(Ny&GA(W&#>^BFN#0Ym>K8*J6!nF;;~{NgSqbsU{w{2^Y1F$sK_DkeGkGtTX&pH+ z8+jKVkwbHbDRg(~Xgb2d3C%82=1#5=o-u{8hZ@#?!e%hCtEIfdTFd^%XZ^cUFs2#W zOLsEfPi~k3^2Q^cf2UV%%zgN>0woua}{aqIY((+vrW^?b{F}tK|)YHfj?B!*Yu*pVy zo=uN;@c{HmQVcyXe_U(Rb6J%Kax}m#WMbF4$0pc3(ZZ9D#dN@0katb?mb95G_Sdoo#1NzR54QMb(r9U++t;S(k5Qby^ z%**97lf-^qyqS37UOS7lb#I6g{8muV5!xw}bB8#A3C?q5nbwl>F$1a+w4|gtBcgZn zC{j%F`@u%!f7~#NWPm)JX#ygZ*FHsH6{`i}W9cKeKMI7Qh=llpp&tb@aO+3>IodIl zoUcdaH_u_?8b!k)(1aRx05&$6D0dGbIvt`q1j2Vj9FhOy2VH+{F`qi>mOLT(9q99W z&9Qaa0VoDT#2@!YvY!4B?tdMif&5mro!My{f4{RjkInndNN(cITZcTnf%XX?CTnq( z?8@go4&ho+I(Qt*;GWN700%ZobU#kz*bw*Q>LZp$CGj%G=}Do}%~?n#dgf{fN3fRXO#sJcFxwI=je>?9~>-E z@sfnSys?f+!2iY$x!`q3o8(gOr{iG68wQVCo{b%=NLw{Z#~;tRxtVNP|>N}y`Z@Rm0TI|gE3Tnq2lDvMjs zewHR8){s7AMEHUEx^#ugC+p=zZoglk5%j>*$yqEkMB2G1plQ7{a2<`H4}ZmYX7?k* zsQsQ@_UD{Cqwvkd2>y8qUr{JBl!?>R_c;3K;hmb5v2^=tc~nw(0}kyK=ZB9)%qgN4 zo^69NbGKrR4<5lLP>{|lNRx`#WP(AE2)?Vy#uZbHfQ_;*lM6-hnd{WijWWuB%w=Z3 ztz`E1njcPMrw2H~B+P~-O~*afC~4Nkh?5F%W7yV66uwX7B7@|Qr(Kue2GL_Y26Rsc z9YmDh{bFKFtMo2bY27EQZhmL54&qYY;TwNdpL>YvB!rJ2BxxyZmG+QM>{2{{66!0u zyr$cFW<~RbjP!MsWS{a2ObjPiMV$HT`Wm3ZRa0X>x*ys!O~ZH2DLRfF;|kejbT${K z5EUEwVZ0-|G^U%h>D!!W*kD-_Ky=34Pl#0AIVQ7vy+w(ONUS&&KMzOaCE}H75{r-Y zI&gaBWe`!8gPPGo zhCFhmI;Tr@UN3L$F5KtV>~5D()&L!6qZxa2rP6vw z3(xU_tNX0J_hxFLFE2RjVk&$}Z-uX=wQ^yZQDj#Bnl^pz_3;Sjm&N9;6}B^%C2CBj zR#xuU+$&P0LBxi!f}bS1KW%DbZIp8ugKUGb#a06q#9kuyab*GpnRatV6axs2*vxEg%$dR_Y%qHu)v zr7@%UB5a6}QEzw2pdpvnBK1O&cKH*hrDO7$L!s#6HqXWb>?>q?6CciY+i5nu`+&|R zfbI9%Lp(wSPL$1adTxs~tW@FvjRnK3!QhDCZhtkP7c-o;QMccN^a?v%x?e__TQoT9! zF@i&&;KCD$%1niRZoLv~uMoN}K(7~Slrr+@h!##2kGt_}?0vP-*QUS_nMgLn^}M5p zlACiI7oTx;2_;AOmG`yn{+%@FR*BU0{Pg6`wM5rbv=;cIeohpeLS#+h>M@|b z&9LZaqhumm!#%VLVb~^MRKRJf+q@wm>(x`zUeNQd=kF{fUIMeGY2*Lv!z{i2#mEG@vy zil$BSu|h9T422S)3nl|>5}f70u?|9Td0qWF{MHHFN=|^;E3OKiNPT{!I6~%Hxs`OkMAlY$(Iww8onD3iul$| zva#;s8wG?tP!02mE>Flhu9(R`n*B;i&JCvjnB$YXJy*X~jU;Q?!(Zd%^#G-OFh=?#xa;iHJ;Zje z^rP9l3y9guj?xlW3GZE5gy1delD*xR!`(1X%DiOQsYbHsJos1^2!mtSuf4BuRt3tu zRiCM1)p;5=(-SO?rnCuSy zG{sB{-U;4z=Pv0yzdX&U1B`MtN95MqCHK?Ny;cPGHPEpdc`Wp-3CWV!dd zjdG6ch)rM&yq@3fV=QyG0Xu$1)kG)6=#i_V?e-A?mYad7*V}6%!gw!z)Rpbb4URt4 z3RL&}NdfL?GX!hxQB1)^OK0pRex}0#;N^!T1)CFlSchD;>Kmu!6UWEv&cx6@* zY1E_VrjJExu#DB(9a%u_s)g_Rm0!66>GPZNN9(`&^hW!TpL{Faj~)cgKPSiFkdt^& z>^w3y4cVZ9eCtx@W;qw~VX+iK6zg~yEA(yiqdGLWc<=7`MSKHyXrzuPCI8^Cp|p#g zXOhIs!8M2an7=^_zq~kJyt}1|uSy8Ho=Hl+o6_GDto7M=?bIFGB}rMAu`c`Gj(5q{ zy#mp z$>94>ENp7|sxSa1{k<-MKyIFFy3eA$SzUZ_mwRPbaruW?+?6^>Ie7jH`_kSs4O911 z#88Z$uL{=h9<`K_Pf`e={(LMHVq}pA%Q)n8Rd3ShOT$kY5^#hmieY)3JQ&+nq%aYz z+71U?sD4@Pb@Z;$ff;J)MO>F_c=`O1Ovx>5dR`Jw>zyzmZEt>mY$rs82bpanqkXn) z8eLLKChxTglCQGwqTcJcf?cE2%Ae4Yaf9SK-de4{y{}imO7krvO=-SjsyBJQgQ+hV zvFqw^I7}n*d@YIdu|n)jY}?0 zu413ksq(Id?49T}JAbK^HQ*0V-c6^U9dtS$tNY#)>UAsqCu^o@#sADJH?lZC+G=BY z`SZ!<)O!Ma@zr7?b$+@;;WE$FgS%8HCL?h_$3rXfbK-^ezv zD!9aQfe@`|b`2NFg|`jNFNdx$hwT3wak5CxCfP%HQgsA8sdQZv2K$ z6183;aH6_3$+jldSUGo0FRyWlEoBmtG7kTl^|JW${$* zvI7Ttb#qy58hDL6C^Ps^;fpF_H8^$_vhL`{P z2|($G0wIiY2H!d(P9FJ^v6$ zV)=i2AgzVq?6NpluH_5ybs->Waaa@l!ty)Xj3K&wb}25@ViX8-(=$ zCuS$Cm*=xr(2=727zv;3-81F&s_CQL@je~GcI_{;0EPQ&Ll5WMY911|^;l`B@itW~ zbny11?ox!yPYs11Z+xUf!-!s)JG%$Sz!|B#7M?R2V(E0fA9qZfQ8)>EQhtbVm=AA8 z#o-AJE97tJ!6kv0qgpPRt-4zFj1CnOfK@Abiia^;4Lg*)SGkKXU2OI7vkozz(p0@x zgh1Dxd`sQL5>r)CB4=$sp4Fp#p3{x>JuwvwGex~?eHvEkBKL`~dcN%Fu51@`54)dR zrY@iyv?EUO&^ojgA>R_O>Qg>*diwQrhm~*K21`+JS{4T@F7^iS1g&d1&-7abcP2t0 z8%Y3B79!Q>aXtN@5(yTaN_;sg3^X&Vf*UTIP3v>`#^1*5;A1>T7-MU=fWRD z1YuqLO;8Gj@;>&3tcSS`jd*M3!431Wz%iaj1oy^R3=s#b+?!bGlH}QZ zzND)E+lnn@xS|Wm>{R#1s@}7oI~|68&}wJ&9K=bkdQ>uMQQv_`geZ5x~xeGnGSf1lqScmkMDM)9Yi?pbqy0Mc`= zx1l3dJ8sfJu@bQr@t=&JhiqQ=%VbltqSCcLt7a~5T5_q| zU6z=93(NWb4DY@<*3H364(noa8hByM-6i75Uqc?EwDpUoxSZ3LI(N{A^eULT$_EYr z?1DN!Hmb#bj~vtrmvwn#_G1(W_3a8Yr)u zQk&8EeW4akUbZ2ON%z17QkXe6!GaW+{6bEr;a#2yRULZo?`Y?-LE^U>!zFI*?2g1T zMYeXSG8IaX!-l=mPaD}N>$ZTrF6@(JLdM}XPC)wC@cY^*)6XRlRFTe@&F=9M(O<_m z5~uw@;WErMzgTSi!l}5={#S2M3bcc714$xHdc&jJyddZeFE6ild@IaN<@1IbPEQhI z%I{BuoO{8VaBG=%prhtVuK&WqTfKi_;UE7@M2a;|{H0NXr#L!;^SWR8N5AhyobR1X zDQY3w@#wXau;lB;EDZ8+Xv(XyF{8X|$u}nozgVjz=mx?j#-Kr!3F_TF%LCrVO4$$! zC`?gEOy&qu%IY2*Sv?*wb047RK*dq0X4XeDOkOjqZ68@c_sC{Ulr6pr9&2ID=<_RN z4h|#sm)!S45=gi`=~ zKQ*{E%~iL*jCj+Nc?Dn49>P2w?Mi7uf^PWbqwSfBR4M;ne(9NAsgH7jz)GJ8nM*`k z`>{+|?b%BHRwk$3f5DgPWJ_BpX3PM|MKq4aFTFm9-g6;Bk2Lb68(OI0Gm!Ig6 zW^NY-9h-3A4Mts0;3}PD(@c2dEo>rC2KtBZdi%j6EA3s%R~~I4LbJtjDlBRZQ+A-Z z-X`&S_A~A(^UK~9!e3)nUcm%m&PX~tz`4^P6j9SYp?MY?u+OPwqzS}EYGhooIys&> z-LLR9XBO?Hi&A%RZFnj7_hj60eBHAe^~w$Cszj!#D7ffZ%QkMgy4tgo-&l0l9b+n$ z+mMY^6)D)?!Rl=85E51n`HPSMODVMgYYj(KRQ8Oa8tmPYf$gywODNr-FNmF_GQbY# zK6PW8{TfVGgRN@G7<~*mNY9*=INpT zf`|Q{c=0r+h^-Acwp~RgURoa{zXH1@!=H>!#O4wOFj!H_NbV7&04b>s4sKN8#fqf% zA8g;&&IRSEYUut8Gg`OC^<6s0TD2!P{(MZLf)MBrymZ38rQ^JPK`&Q~V(M^ zK#F!8t~ER^A?nOZ3yMxTg-RLr!up@-*>Xn3%X?o`@4s+E zh33Y{>~er$3z76$SDbXeN)Z&g6B(?xnvh-ctDhNw2ZQ${1JD(s)dCFuCSQ4mls2P; zDDB!8AbC_K3dYu;;IlR}e-i|AYheaQP{gf99|sjzkm@nqE~-MH>lnflgh9`%Hu)-m zR5%_(G3TuZj{&*%_zWL&?;lh5`4=jM_P?fkoR|-xR(ui->enP~Gi%M99F?|I8EFll zGa5B19^~nA`lo1Xdohn>dKX(g=&}S%75@xhWe()DFYqsSEunUD9WB>8J6x(K?2I@t zPiS;u`>RNT*7;={6jfR3U7YN6aJ&zGHQur9SCnw6yzoE*^-5%zT<)$kJ5fIp3VJCS zIw8&`MT-wxL=)y=pDl9f@OZQ=0v1VbK z|HHBCEWBC|;GqChs9uXvon3Vj=w4f()blVHI}%mxIIN<6u?d|TeUHqH;AC3Ej#x@> z!cgA)X)56VLg$@1694#j+*5bSS7h`-+-)D%KaZ1w!Z^ju@5fmw#ewUc0uOun z5jTJvTdalH<1GE0gyeW{&Y(_sz0UWmOf9tOj01wt9lC|!L&K2?Y8m>6O>eEWjBu-F zDbgmJ*lgXRdZS16Pp5~vzJZjHBy1Qcw--HNxpq4OC z+*+tj(iR=~&jQ!mVo18tkmLRURObG`Nj+s29&Bw4yDMuO!i@OnR)0hYJGIgK`vQwI zwA;TXuU1rubSDY8-vR$&mc6I`aU>ntN?ic32EZFe@QbZDh>C>(*=7@$QYpa=Lww03 z+p7N-;X`yg)_;lcfs=NR>>PuqFk<1BW+D;b!1HQe1U0%4^<<~Z{iq)m=T8mI{_U05 zGN(B;9jXYX>+VR-@{V!x`Z~w^x+4i%X+}xgDAZ&W?=Sbazu@K%7?Fb<2gOwcE-fGT z`6DKOIo_-&!W8V7Oikau1#mj4EHUU6*Gx;odA z08hK1V_g~S?*$1E6Ln+ z0sm6|@ems%22+>kJ}o4RNzu?)gFibm?p7I+&yiOxNISSv0$$o^A04?edM({bU;PPlJ%^ z7bl&!cTXqSn219zH%%_s1Z|#`Nv}c;LZ&>Y`u{v@At9YYjG(mFvJ86A*oWO_^QJLa z^SmT@USO6F!Rz=G-)wt(ojQQ|YO8#I5okdrxc=$By0~lKwG~%ST?8!=#d%H)@>yrg zJE!Z+5&WkasBews;6_a9&Jpy5MA$EoX`@enZGFkw>$vIgroO^`CYTXmyKdFFRm!`I zw|1Xo&X{W|1LRkoe1#{!9i9(NyOR7~D=b${$V)Ex55G-1_`z2ug#NM_{12==7EZFa z>tp0>SnPh#*?V-%C6%bwm@;9xvP$=Uc-D1TNebsVEIvQakG^=m2Nr-A*YS}inmbF~ zS|o|~P@A5jF2T*!OG$tfZ5VEfo?Ui>wA{#y+n_DlTNf>ay|ZcRqD1sshwHYk$PTiS zo!GBcC3%6iWAOCb!jnw&#it-hAPvvRl*FLXVo?0?=P1a3>EPGn`NzIrj}~!zMPx;x zehK@|4;pf+TAroq8=E-goEV1|`NfUqHe;m)^R~kZnL!3K8D~O= zmJHVSsjL`Si4CJOGB^r$lFwX@DacH*JiNJTXuDO2o2obN@fXyKqNZ)>g{$)?7ThJa z0)$05t)y=g@2JpNB)lB6G?zS;J`!TJ8Hx@h0}c&|>Ic57mgzs~ksRqbGFnn_j;cKm z+frus#owj|FxP6b&?KQgTr?_jSMt)29*h@|mSTD)?#ajB5rpZHYU_*2U{t(q(SLGY zO8>*atMMb=V-YAXwB$)Nk5;RPe>t4bra+JZ<`XSq(y7kuj>~B_^EvGJ_3JmL>sIFD z-TDn2cGM4h*Ux;R7!0>UY2V>_Mrw>jTSQ86*fA*r5zjDe5$IxMETCDtoDiTT|I@lD z+jmm>hfZ#1Ek8S+kTQXBZ$xWhV9Yd2nPao95B9{WVq5#RtIwka`Kp~7xw6CV60))U zL;BWuuxyA8x1MWKe3W;Weu(nF9i%P643H;Vq)Sp41#{UnU3{XgQ=*ECQRVd3%=pi` zoBtI4lm)i5=K-oWQt*#uD6|j1mabJJQh?UdFnPBuDc5*_dgIA@HIG_2 zaF33YR5h5J4+Q7;-&yk*SV(Ir+3%s=a7`AnhJU%5(dKJC@UPsmXKL5h) z^!OwI*LJMEOOe1{b>$FE6ryVhUJNC$c|^uSKDOpW*{|+mtz_3}0RK;qq=Pv)rcvaR zHZaCN)J?ugL9+pgiDK)r4C3ESn*s!eoj*E#*oWf0{yzGuC#=fOEz`&XEj4NK3<`A< z77sQQ7Eeh$5lD@E=gYN60!sMpzYlyc3Lg%gd%Cq?wRIfP2CC$px#1UiF)Pq&=Gh?kU?WtVaKiaOikEmq0*F4xnaw`c&A#}PM$^$iW<|L@vBbwp0_GuB({xMT|o#qV_ zOiI9XbOan`+2(<#69|u*?3&2X>dSj?rr%KkoCJ; zNTRt@PG#=>8)MTU#rk->uB{&y>34r|t#R^;4^UCkWh~Ej3BoYV6(~lUO8a$1{dY|o z^;wM`L6!)kLpYb_Y+wUCY1_vq8sUFSf5`6c<84^XV3j0uzA5Th&}4{D#hk)r+tQ*k zS~K;cnELSS+FZYz@k0*8+R{vVW8vGAsY%nSkzRR@&B$p`i)FR56j-)FJ4r>z*uM)_ z_J7OQB$phap2jXn3;Xi5QS0|v)HHc>ob;5?7j7l0sBPjR{vCTX{#*otsNNj^Yax;1 zhXe`s^)voe0ofVTR4$J_)>@+LG(OfjnNw|L5tFKY-FnlC_IdYn&{9?Vd5{{Y7>!yBtgee@7v~d55ek^E&eb(HFK5fIpsb@WQ@5D@=HE)qW z?b}0>GDKDUTjS0VAqPC9InS94wM8KXG*>K1$O&4ygdvFU#XA!^Kc7t@g>8P?d)Ebv z1@AHA8jA{wCkk`V1!WH_OL0jIkQ^y9B6r@#PRC6H+lrZCy;Q3MX@+FqLHW)5gmmj& zs>@ngh(auG$z|LdtI?PN&ToJozCHH-i{;?`w*Q}jqo#m0hT-VX$y|s^xScx+8ln@S zbBQ#6V!oDK? z{j@;sc-hn+3+|po?b;Hbg6264n{JMd3M)Oxk`z@$_v@Vb`O8|8?{ZRtJKm=O%FBIQ z&IgIVJpfEu>M9x}t(K71)I|w%hSAJRdi?KebH{bI0fVMFmI|V^waKrs2n(08-#*fcGS~R|`PW8YKCjZ9?e!ZE#PNMg?L{g- z1!cNDmvlOGS2YuuSr*%D)*KH6>uBmvrrkLG5fBZL{5XT+-)9IjT8H{qvHF*P%P{)? zxc|>pok`AV@?ECZfd-IB7b*}Uu*Ae+fA{&x{b*+SzxJCoyNf!Tow=I@kB))mE3E6M zF(?O(EB6MH_qr9m)X1-d8VA-Sn|54dcjM{P>)!CF)<}Grs#Lm29-p-0v0HlP`_700 zA9PUy5Ez3W#!k4$2fJNy&+57NGI)vBL~*kQf8GLFG!vHs;&RW+p6C3l-0}+!CPHIm zX_G3h);+G~XL!`IKrSzi9`e7|vp(l)9F7Yto45a|f^~a>g|-jF6|bxb9I0h=<3Uxz zv6R(tEyJSqaXRqO#$0F=Iwts7J^b*xC@U8?EG1k3BHvZ(n@HQ~_$t^lk@wlM^*j;K zPr_@`J&aR|lHYLwYMBqjTUcCAu@sCsYp4raquV2c(pCd1SFf>mqwiCGUx1d5GRBX3Hqgl-R{JWOdTRonH?Y&W_ z;>XwJ`xZK&jsHB)N9GcB2IkZrCjK?7`+VC-?YXOZN$ix_O{94Pf zl>1S{T&?$8zM2kYT$vTYHA4)QtbA!88y`}24Xhi*t+7=J-RjQXw08sk)b18AtED9? zb5b{#EtzzuExJx|PTix`OQOH3xnXRiv2~8S#T@>%u=XRlU%F#xC>DNm6vq&e**U++ z&tkb=OQmbkBY6DEG3IP^d)gb9r|a=sUXjz!QHGDp9$EPqe<%?SI!=#sndeB~Pj8ye z0R)|IxDLBkZsF*-^KHOV?8`ao0drOT$nLJu8;=u+@M0=0P^{;8sR@_QMWG zeTu)q0n=SEqbNnaDzeBf0PApAh%jy#y-_#h&Y?cTpj?(k2Tk+O<`Rati~VCf>K{FH z)AL>LK~~+Y&$i$2j0rOlTw?JU?5WNJn` zTn4t@TEA*zQ`eRte8cwv^4NJL`;Np&xBBI(Lt)HG6m%rU&)~<4m4rR3lgsH6!uRw} zXZ=sj*Ri@79=R&B3s14otuB`u9KBGhE+{2z+KGc+L^-S|+N*e0lKXMp?@Z6=s_SuI zQCO+H@auF09edFT1BIXSCUoRlunA7SVd7f&1sC|%k;b5p6S{5Grs;bsn(!T=B*nKq{8GU;}cZ#(s;<@&IBuwPOXx%j~q4^gKV2d zSC+T~;Z{4q0aAEwgEb%vRJ$W`Pwr(s&9$d&I1yPtsz{DkY>nqpMrSalgZf`>J*u92 zHjWF5w;qg{+e-*1tUOdybaN}Y!<)kXcbjTF>q zi@=n{b5g7LAVyiMp1ANj?9G)BIAJOx)K$^VHUVyRtLg4W{IAm8PdLXz(xJG*0t7VS zbFKMu5B82IzMi{wYiDyxcaoN^%4?fOUH$MVa_ez4C_EZ$G(h9 zep_`WGRFDZf+%FcIQ}O&0T7);>rhm^Ilq6(nxYgm=Q!%rq@JeFUO1+jz)~LCIw{V1 zAO|;Up=q7De(|mK*WHuORZ1_(=zuVpXI8cVT$yq9K9zcW<}K+T37>1$LyRL)i7c{! z?cu@W+rC#+o<<-A`VYEj=}hxYOoG}N8EHKbSZfQX`ED@-EtS15WxmPLmJ9Wxo1H8I z5o^uLi+|w}Lgjq!Ys=LM8~gE$vCpUjr0vmMl3pnAaKfP8_uJN|`eKa;zq;#=FPlz) zonC{zcUyl@0VEVbA>`vO)i_D7Ka>{!;SdIn8zd!LIcm_R+ZKXEKIIzp2Y>qq)(U@R zwqHBt2#|@MBA24&Wb^)IZlt)Z2lH&|yiYcngy}@}>R3)^a{l`)dDRKUSFrMG1H>ai zV_9%!;K+-k2MODFUXKxi&MLGHU4ezN0(5m!kG99v*d7{QE#fenpR+z!a4`qqdq1jc z*4rKTV)4Awoy=MV^}DsMyT-Wv2v*r?<OIV#XMFOgfr_gGv1nSa_nW->*`TEvuS zVX)IgPjjfFdKRgoK~{};yep2ANY0UtXI*YUK+BcVFqyYK3s&3WYTjDK0M0R64=iP2 zAOdj6tEn&YK1il+B~714Dboq0 z@aEHib`W%ON#SLqc?7HkOmBZYte2ayp7$rjb%-gBCZ6<%)(W~$w6AdHr4f63=s!;^ zvB-?S7tET~^$vs4Zn=8Nj{t%GqzB8{x8Qy_m{lh`KgRE#BPGUnxgh3})~vtu$EtZ6 z;F^oc*fnme^7ghIvU~Ut(ru_waU=RdPlllCOkIr1$thy!F4r0ToKdb1#gyNN)*f zK4i!(LXws?$4B8S#Wc=#C5PK|bPrqlmcvbHHg&r}4YpuBPS`bG)G=XH(G`@V2A0 zhP0v~xg0Sdf=d!%jpf)3i$zUN-GbUZo$X9#S-j-Dq}zZAu&6TCuLaX04Kr zJJWF|EP@wYxCk=X?M)}TAwbv5I5ucL6~@VxCmu8JPuoBYuQ$4BIVXqOIM{1WMYP^q zgwsxeNMsJtB92V?8b!=u@~Sh6+lZm*PldUKH!1fX^*f_q1a>DKRNBPOV^5rB?Y{(r zps;k1uXTUsLL#MgkTTI||5UP7d|4XaE>D6EI?+1S;}f`Ogy*tGG-wZ2$-0{v`6`?+ z&~he46LjozJ)4H5)?L!<(w~{<*ZVEr-;m^t8T}Pdqq< zlE01S-byaOueZk}VgB-4*c^k4N>#H|P`I!>YRqg)e+OR7!JOwrhWdMd*S{f{B10Rs zJElPavqkAg(yf2m$2Yo_1R}CTAfKQA)P@Hi*X#htuBd#+J?4}Nb{eRI@wg$>6#2vy z*E}JIy#7GMcOo}$w}6I8fUzTnin&2emz|P`y(1DtTqA8uS|OZP_PfMzaOv545#Ro7 zvPlre%IsJ77BHSF)C1^HYpD!TWT9x{N>|`sd2yX9Xz{IMYVqBBu^IaL{ZSlI)#-Ek z`YM;zi!K}|l+=2pQTqb(RM%2wi}!Nl=+7brc`RFQqR&ykbnh>o-Ed=mPYW7P1Eil5 z*0qOz?idnqERy|+mB2 zaYvRLqkC3GMdMj~W!9lF;NV^00WA!eikofx#);$0(_z)je;!)T@D>9`dCs+lSLAjm zuFa|ooC4S1{3t*~adLH-?zi2|);vSY9IJ_g?lty66A2xU#q=npJ~#z$D6w^qJE>B^ zh-~09n^~6Xoh}y9BD}Y>(?^L3z2@5G(cl*G)}W`V?A!K^u(Tt4XY1#S+BN# zbXh(VHATOQOo`V>edih`O>;2Rb&5&>#&pX6#oJp(MYbi|!cb5};qF!x?(XhTxVyW% zyA)8kySux4A&I-YyG!EoIH&t`_r2YBj5o&n?#HkALGD~Ta<7;%Bi4?2=}bl`;w_;> zUy+L_laA{R;Js!@;W#R?Ig-V@@k^>5zkgf(+6FFuL0K5sEu;TkXBJnH0 zEP?fY@rs%M0 zbFj_k&yl?$^CyKr#nwaV$f$g2R@56c5}mHhfm8LybU%k z*dBL5_*|LE+T`RRS4^uGPNQuT*GlzoFw+lQ#$~|?OSQ9wQA@B**LP9aI3(&2UC}$b zKp%H>RL!y83tHjRm_s@urft(xo0Pc&nS<#r~ODYw-P+avue!m({>-E1u#z<8MzV65Aokos{4W;8D>HXcqLxn1z?OQ<9<~ z!-5g${T;^zmwz?MSx=uo(2}ByU8~)bvx~xR%k>z@p*>U9S0_$iY2{P&@+M({ z<;J(zV6$xuKM6S|SZ5nXYZ>M~!_K&V#}l-oc&D3`vmfj6ddk`8t1a-YSKz35yE>cw zRU@y4(qh^F+ZF;ogCmVEwuq)nPA3Z9OZZO&{s~sd;F zAo8E4JwsP)U~%6Qr2{?#Y;4D^ah0l`1!Q#ha9vogp7LhI5N+CCjBY*a0)uqWqm4C- zpEO1BC!0RKAx)CO1cha>yVE`=UFb8O@V(jj zlpZmAJCFBOlWV}e2SbXx2+Sv9Oif`DZI-Jk`qk|%W5CJ#UrPL zBY(@jBvvWCy?=hN4=}zy&6jU(29D- z=pa;RrRGj87H5|}h0E^wrzx+>3OQhzXot84*W~9jiwH)8K->s6s^ldz{6SEPY0HMW z3-9>KE6Fg4$97NgjAOjx{eI6^Zfeh=aJflYhXG>F?W%K&=jSZ(oC>qat;IM(i6WU4 zBO4PV4xbA!_2sCteQXQ$Y|0|&oDFU37PbNrQ*g1lCGqIF{?z?ZLdCk@(XDd=RSgh~ z%fU>NOK0iR7W_1f2Q6$9OpJDKS8j3j3Dp~!S1xrJjP!^1foqD-DTR3exBjFngeTig%0QuLP`9`7%A#L#CX;VG?*QtbxwGZ83x**ZQ;ryL%&G{4$6 zi!A#w5|B~#vC*FA@VvylLM?PXm4&5#pH(mAPt68GY14kxClYIGmwJqN6lG*4gzs1w zi=Qu)^TNok)9}h?m{&--AZ^2PN#I#H{VVy`9T$R`Mt4YBSJigLP~mtxb}mQsNyw$b zb944s3*60R{cH6=<5#!ZAGlte~EbQYplBflm zFd#bO9fy*NOF5bY%zj#~lhAzVXlM+ShU@rT!Ge8oT-M@ckzCY{n)@M>e28#d{cR6| zs9%Mh=k(LA69csK)IQ;K7X3pP;))yrWo~c5H+4Z8S+T7U{p0I-Ra{3VSSS7ah~^{s z^ix*0+I>R3)Z0Jj3f`?HdOcef6#FeN7`NQAZdg25H$St!^$tTaV%E_}wG(+giG*%h zPpO}c`LveFcKVRcGQGH8fGZ4f0H^D1M6uo*Vi=4mcDVx0Ae2T$EEN~ z4R%`ZC$R7itOAdcmEeB@g>6Gc%#qLHAyTbcm4{GCSb}B`UgMX-nKpp)HQ`hOV-cd9 z<{Yv!!#e{ejzZm@?bd;{y%ABVkzYL3LabD&CmO^3L@IoUTCh;=C016ycs29)01Kxns2=%^e&tJ>8?r@CT)9O4|P zf=}bea!9P&_-4Fwr{HEe>-fL!(8y2Z1M$%=QN|}Mqn{XTd zjng9O*YAB3>gxjIj;~D9=tXZ_^uxM(v!%guM=+K9m@Y}?*gx97B%yui&DH|l9Ht05 z{G1nv;(V_hhOA@z;|t#Q#iuVRcMACl!5I32{Wg-b6n=}C(~Qm6OCWKp{~lj1k;r`; zLI@!RpYz0{lYz3-zfP%L%;$N`@5PP3E_H1O<0LsC2F+K%heoxhepUE748@bu#ka~H2Jve11YAMWyBQkZX zm0KW^oVBP9LxX$$J}Tl7hF57RzL9Uzj*ZJo*Z}FAcN%9d+$Od`_rsyU5K+_mEs7*y zGzt}%hUx*z9jqJFPsz!yq;S07Xq(PxF*}O9tyJ`gPs0w6->^MlT?BIpb8?(M@1ZKD z@I=G77c)Dum&?sK^9Rus$Llh6Ymbpk)fas&z@UlBV2|foq2Xh)^w;?u2QexsSXxzZMtArI=I;{x5p#>o^TXxG#5ci0MM z_*4ys#-oyDp|FWhp6Pm%r4ut}V&epZ}BBRz#15t;~mmcyV{# z&Lb*cx_bHK;BTEX?r3;*NF7xWmY)UfygVO*3YKHc>CKm#eC&uAsqj;I^w_x!7sz9=KH_qD{r!>Wp9u)+-FXY!(3 z%H64`hojPIRp?7dOsCT+U9ivaXg8tKfw3t~vwGCq7;+>>L&wF`QGWsK1zp%%8;5t~ zyk`uv9dwksyz&dQ6UkO_nEsUlzl4FXfy9)a!gMaL5N@glP8*-rz`Zr0>&v!9(7&_e z@0!wfJ%#LyXg=7DHY2QP#^Z?ad#<_&C*0+Lq8N+9Qi166+{q2f$vV~-8uLgBCilvX zBVL*>9HxR`FlfPR2#@ILHyNGFFC$8xpz>U4C$ucnAUkbqlT4ralNc>qVR2T zPB@LHG895p^J=u8>c6n-Sn##}7_9tJ7>R3f(Prc@Sdh!(8mR5cFfU8*qPp8)59@@b zHbU}%heess&bd4@YT7ta2+MOm+f7;UPAv`Pj04NR49AHa+6OPYQ20f9E_d`&^#@RM z>p<9V*3vVt?mc2Ew7S^9uhy+*84C@!p*IDFAEhb#;nNptvn1@#{)5t-$fm%>l7LC@ z<;Wf{mKmgg^gy*Cn%}?bW$?eBV(8&ly+FC;eMj`8!uY=D7EOhh%)Mqw=N>sR3@b{$!^6Pd3XzpQNp|MwHp5YjWZAH69aXlW3QrwDj=0 zF)vu`e4^XaSjkK{ZnO{T6KnhjHP(CaM{MrQjinjwvoR|!V${Q%7N+F*rc=6J@Yc5p z_}Zq7kC>nxBI_D&j(OObieJf+PKwDR{!X1C^3A=sG{3pD#p`RIi8on^VaWRd9Tu^Z z(4v)^Yj`OX73!d+D4RfyBGYh=JYHQ+1I?oFPD9-<8lZGRHD&?v+^BU{!6(npAic*E z{a3>Z0{*n^R#f4@J0$MJD`CBS_vl-}XJFWnPWl9T-g*dv9@=WxeI&onF7F&;&Y{-I zhPV>9J3J!DgZ$sFU||ihjCHKheA;@o1-*j$U$`t-Qw9BFIsI|OS2v{vR!Qa>XHD-- zZCEPceNrdNCy-rm4CQxPIFLga1Oi`QvY=BxJ zC-s6Bdxntnuu_OUXTxzmy0;qqdO4;!)ZvRNgBLDCTd_mJqCt4C(+npVo1#94xEIL)@XjYoyO9*H!` zW@dafn%FLk#&I8$+mv?zlCaH6y#pnjZS>TuzZg`_^3M_U0B1hRZ+LnHFNF{%j$?N@$bp_B?%j(7B%SEj$sr&mU4NwNGL3Yo|L8|4 z{i7e%MP(d2-A9Jix+|zqTJ(jO44XMkxp&*Uxnsdg?-D5QNGPq|j#Tim{~2(Ooa*== zJQSYRF>hoNt~c9X6H{--QCR9!sT0WYmiH0est2nT$v1c``GQq#-(rRW0G2*eAu00a zfx=x|bfdSnCuikBlyyO>nIbj;IjA#AS!i#?k)(XbvHNAQng;f%h@e%seJHW74I(eC zgbn18V2X+BHfRk`^)tC)_z!Fqr2oA23zr~b1Umex1!U|*U!Z51UuKqJhwgkBAK~lR zggW@DfA1g7ourV3@7sTNcOb8^*NxF9wKpVq9M}w(TulQnkeNu$A&_0NqHHHKkP_z_ zZ|R)X(~*pH_k?IB17{_*Uf_s%X)DdPpid0Gn2oA+dIuy&tjO%ua7sd6kI1A71|hn@ z=@-N^lox7L_Kq#Xl+hbCmM&ILhGKp+vp%Xt&1)6l#Dcas;x6CYir#u<62ptBOp>lQC(C=WeimZ zBs5?tjlVO!ZQ^gKl0WxV=O2&fy>fvvM2t#7JHq&ko#z7k_~_kfKqd)4YICo>)tOfG z82IUP=Bj3$t;WyxLO}^v6`kvaxAXM9&b@YThmXlAjeh0UE{!PM7dNFgl|{vzYuV77 zD!+F@8Ie!G568+?L<`}+S9pZ)8?FLLWS;1=2scr(9Plg7oC`q!Qei5&C}Z#}sx(|c zJTw(2?tU`1HXeht%u=cPL4NSRGQ8@b@a5zn>3+yyzp43Q_qN(<1%`8K;xznG(GR7e zb$O{D-3~Fdzll{AB7&%-6K?uZ8R_6W$yv(()@-q7{%E$`eu(>3a8BEf3A=^-Y#70u zszz!0FE`s${h%~7TVrtM)np0Bes7|g9l*lWt!t+`9M{Kfjq-Kcc{N3LR#F1S{<|Q; z5;0p0VCz38AFm9nB3{WunkJ;dHZM_l&ZH-7mP;-~`gv!zrr9|reHpc}C;W}Q-^6;| zm39LlGG@-B-YG$=gi4lcwNH~xb**Hyy3SUN8WoC*pxHkCTLzT7BFBm@lWVQfiwTO4Xb04U+q5*Pvd!V8 z6dXkm@J58TUc$s$Y{Q#POtUj7bTaWt3-TM?v0UQg1u816PFF0}GSklff0VpS%wpV4 zas9A|&5VGy!7P_*AHsD?l1D`=cJhq}#eb`)L;hJ&Uybrn&dB)V?3Qu)gIvXX=|6F) zi=K*4r<+m+60-BMv4(Dbg|aey!RyO+kbfLOf`aYZch0WJ>HIlTiH+~8CH|+vTK~VO zt^I#!ga4uK_UW=YL zh|G2t$i7ac6#3La2piH`h`CQkgr3hKartNT^^XmtP1r7H&LaaBfUKY1mG0+dk@vJCuVF1jT z80{X|gZ>g4STSI~R|o%r=92dK)M|D$NuGtypmc{KH(Vl*J6?rEj#9EEg0JF{93Yqd z-#*6FUyjIVSTtaxao&&CkV?h+uzfCSFCpDilZGs62E@0Ne%a_SZaV*%NYm{1-qpbg zZ?V0455f~lHuwQ-F$IIhP`PBA{$$_N$iC)aO;K!q5(rbQnJz_{RZl`I&Be0-w&rPa zHP_=^;ZdXXeZEAL8@{gog^tinFyuEWj%S>?D)|Y8E(Uz1^x}ob=dmy4J|pF2|CJ#{ zTsy2Hs_j#t=gktccGT`ZK&m0?B=g!;x1;c@@@ziR%1hD(dbCA%>bn8b36Bl1`+@`H zg3292nf77E>)gSaTkiN;sHFS*@wn^B;X^))b9`pVwQ*!k80|I+k$dtH_98gZ%ZZ(P z-)xQhPKKaDs79EAGJ8t$*h=Qg@Q93YTQd!ez8fbauAsEa%lJ^}Jp*2)@gb61YkNRa zQ(8Y09WcD@sw>?a8mj-HE?yVH%d$D*K6djGOxS-NTjb70g+(2R)p}VPHpOGjLzP%{ z0yEzU(Y`@B?zPW46oT3Le)ALAiB2nvv7vncVrhI_yS)2Rx=xkS3-^?l$GO^~Ym@MI z6Q4KYc0x%EO(Ki5^|`j+2s)hzzbMDo$Hg#DX)#KyQpCgOq-Q9e= zE=8E-eQB_>;6dQ`&c);oX@4~J0ENa7X}c6?zqUY!_Mf$E?XzfTcl5|tKi~_Z zYp1ih-LB>tdHQ8{&{$omwgu{IQn@xydFHttpT_3cdNKq1c5 zc;^v2?x0`Jc2RSx4Wsfhy99VlH>zTZgFO{`HDjeNs|x*@TYGU3-Yeo-$bv*WlT?>~gM>sa1O0;% z&!`Y@4Y_F)YX<%~p*4e~xl7w8M8lkr+_SdV;EXy`b;>{Vlf>_BZo#BtM|k8JCs^$c z5#zI<-hNy~T{X2^9Avqn%3mBev>o{(J+1iZ4LDJ=2p#v(FKfFfIlB=rwtc%`O1130 zLVFv_y`ugg)Cj6b>6G5BJA~&HX)0jeL}E;u+P^2OS7Lk5TJ=x3s~sw9ZlzfFch7V$ z+S9vn*iTg7mQV?f6p_A;MAleRap%R+81ADRd0Of&qEcm`Zg_=At?I<1?qJfscFX<# zW3h5=Yl2CaX1Q~8ZTZ8U4up5GRP>>&5~unUKv_iIGh zaw(H~45Oawf!=6pq^{p(X>D73>LO`U}2ntRWq?D zh=Ol2`kBJeOz86j(9j9@U_cp^7&RM}qK>bd7E z)k2^RB|73e!Fq^hMc*q3Dj)zhwlXzw^xditkf;2N-kw;Dd^n$2i$wwE}L|9Z~V|kY&5FSJ8XWHl~NKn z>7APcaA;#r*PgqTJ-;CP-or+Gf~MtcOcBpVOIf0~K zia#$iz*%#`?Davo$j`H499S7Kkn8K@ehat5i}{6~A4LsyE{X|rBW**V)1)ivMKRLX z$4zDLwVHCR?Lp{r_1@}DWFLtaFP#koa%QK-Y=o%H_{sr zPETD_y}KGb(6(_L))e`6RoVM7KZ279s{B5;ZTxN@jeh|>Nw@+QR&%L%TJEwyRMPsn z8#>e#2(0K)$-{QNP4`RbSKHJ8)CS`8w&3q* z9*B~5_Wx$me;_{7 zW#i1g%q8o^XDkTV_J!=Pps+b|cL=J!)_*sDTzsB-B6<}wH@kSG`zrm`f}0gsu3E!! zr)yjx&uG+M$f@_*QK#e6=qzk2rucGIz6`e%b+OfzvDlYt&T>HRF&Nm~KKoX|sNb8sZo**0{j7zM%qxQt$b%K!b*ep6Cz zGNbxQ^Q%Mqh)Iz>C05!=Xyxf;Lp3bB3N=#LP-I~&vO@z2ZaJo=ZUZj|Lc?RbC6vMT zV~b4JPj+N8_`m!%tfL1^vs1ma%^M5W;faNPf7r3YSND!(z3l6?Z$nNz%_!7sKXrPhJUR1--T}K_RWXRFC3P^L?Qw&bG!)#yFepCnWu&e?+ z#BCq^zJm_^H%u0*`mJro-(mo^PWdm(6t743I;muhch{7k;NIGYHWG1hTeF+qhr>Kh zoOh8HtlbJEEZlO5poFE8+L1Z0mrYW29a<;v1=uuCkV~g?xt~uld>nPqPHJ>5*Ak## zm#bdtp*u8(CT~d|ezXU)_s(Sy{qDduACBM8Z02TNT{R9ng$gTXXA&P{De+Hr3-lnA zU2s(Zm6p1D_yIkPi*w1tzcc!okJvQ+H5;rfkBGQiZ!2>Zt-a-P`%bv9cc5y}6z9@_ z^J9@!&lYegc27oGM_R&r&sH^41YPyOXR+vFshVCYB=7b9K1Zzpm8uxEwk=z`VAV_4 z_m`>Ud7-S!wUT=Z?3EJcDI9p9re6p}Y|*iYCZ6s7ho=yoNY|KvNo$8*S0Y@z=cSbmhh1rdmE9b& zYq+Yxmh>lD3p*7-OTTFwGH+{In!mew z0lm;4x~S}+(@U*%x~7-osLQV#4jYccof~60U_B5{ zGvgp0v1UN5fS>WMM7y@BN@>5mw3&8Vu2sg?0HDdfe`PeX_Mn0-Z;L@LHz-&MK?g7d zjdE=e6_QlYu5x-MYnwI_RqrbGNvvBsnXi6Tqen0Msb91CX3~g^v!+&-$E&u#-OV9COv{bBLyv~dK%na(QV~)t zW0aEI94uTJ#i@{t{GU*1SpB)_o8p$N|2;UC2@MDZf8ObaEiK0*Fu^DR=xKy6?ds)X zC^~X8JbZwoseO&;4=5deYFuwh5Nj`J%q?uW*cK9Xa7xHsk@>Fe&GD;_(bd_Q(82{}06d2Rfve^n*u%#@IxT*iE)8)5G!yiINN4nt25Jz@1;$NKqS zqWT=39n&Es)pox)I_%Cz*7Q3+k8WIkg0jJ``i}tjk<)C;-3RvLeoo`XFs}jHsrW|! z&}#1hjZMR5o#Uyr?S_nlus*6XqE+Ci%9d6E#Cv7&(W1fs-n~s-9juJk)2oez&Tu?ai>#@1%z?vXXLyVc)v#BCXt> zbY;sdm^3)Ehuhx1MpfunVzL_XzIUr3O9sd)0Ove3=(TE30uRO~JNC#BYvkq`bauYe z|2*!J+OK|eqKj|8^Zw*Q!Vc9_Ix7`cL}$sGE(xczxvk5rJaL?7Fbyxe*Espk%&EL8 za>w)07oFyd#?Cb~b2U zc>SrW72|AYzgPdUbzJw%qx)IQ+acdSVDZ~wmv{eC^3O&C(#n-OqobFUI8qE5ICgK~ zB*%tZr2;PoFZHo{9#cM%AM$tHjY4-AC>giJ8+6arIK|1E=#5cYs*3Fq2%$c1r^zGKq|zL8U0x1@{_ zoyMT<6ByX*YKCz&k`0Tayb8qXN>1UZm2k7FVkVOjn}bb?q2|v2NcOf3{*CN;nx9xi zx;|#O^ABptQdv*HvNkP!KY)@@Y~0ZHxPvr*IW6bd%;r8B;1IS#Xiq0YhE1!E>$l2J zw(M+QoHUo<4_-yv?I6LNVC1SNJtsd&y>H&zrivI6%|zCpYds0}i7VjtH146LCAM(k zTDiz)F+YN(`A-~D&fyv^Hy0@7l)mF*c8n4yg}!fgOwD$iEECFE2G4QWQlxN!imI9l z$XYdv5i$N7cxPM7k}ukr>86BNYkM6-MlI*V%&U$pzC^Ne;#E-!fXD`kEWxu>_X$ZT z`v+qhgxc8BSs;2C5IF=o30#cAoGUJt`hEMT8`v@cMXHJ;8HPj@3B1B=$`%R4F1 zLWeuE7~!zDQkKQqC3VI>j?Rf&jm`K^hl-|@h~D>6*8y&Oy$g86kXCi7c>AauVo-RN zwrcLsWXetX`~8$^Epo?SK8Bhcw_ZS)P!A9?2l}%-dHWML;~SWDzFD_@c&?FRUt5DN zbcxZ{VcOVY_=|Ny>xn3m>J!>kf9;MqOQv%VpnSr+KKR#B>z68R!aC>Pt!=peu?~9# z;R2}nrt0MfS$D7D*CC(L-Pc*>IHJq((a8*_&J_2S2~mF`t596ynliqn;v{%UjK#1Vqb~siYK-LrdijL z2**4Paq^RP?)11JMu!dMIN{XiImDyitN(V-EDY8Zx&|cvc!yG^ z^$os7%jUJR!p?QE^rCJ%G%!RM)HE(+QuGi!N?$e|gE85<@jq>!*{5 z$Y7MeATVJ)Y&jLvh=>HMhHUci9U*Yl~eEx@M zbz?c5!hU1r0PS+!0>drNs_J`jpGDLd&QS6h8gYkZ53~WMpmC;6uJQruc?ORpEt3X| zat!qm&oS0rB#&qrhfbaD^V%Tfe2x95CT@?2{`j*cW}p)-TQij)sx!&pbKk0^mh^qr z12z>;NHk2Ay?XR>Dv>5bQY1@cD=F^vRjEXdNb>8Jx})X=Iso# zs#Ds=-v~4nEDHV96W!T?`PND5i3>u1=zNwg>J1;7>cT6`*}XVnh$R0x4%{n)o{)rfXx`J9l)f$Dy^VTEAk9IPKPWKoII52*W+E?dDZEk%cIfkBe*^!?B@_5=MN!dtd~( z36W@%<K_VDS9Y^Xf6H>v@Qk3hEI$A^?7f8Eq_tyU04{%V>rfPZj!9o2B4m2EUR7M9pFw+| zy}X2#khGn_Fz;V>D`JpIIH!2R(-hY|imbl5gjTN!-5aH|4IQ)0#oO8ZH_Cn->%VUZ zk$1r#U+2B|Qz}yggJs<0L`I3YD9_m3z#| z*SEk@$3rmBjq_rpvz^qX%VxjG`YzG(XU#?7OhJ1nbXv)ofvXkQJ(+014#5F5;y;+o zi*~gCQ|R@wvEQ@|d6$|C*s-OJ_0c-UpZOSC4(?|i_rBXl1&!bSe5vA!rwipuSqED$@m7{T+Rd_;k^B01(GfD|SE1`{r-SejJANVBy*8)X>MJXH> zGu!$yJbUrD8c0N5R0gu(ZYNS>2Htx^A~LZm)h>-rhgNUcjn&(Hi`b2&OzRQ-?)w@L z&k={b2j4m!CfOW7Wg)SQqRe#>BY69pRg+hqEyrE2z7SIXZt)<~uSv4mL}E$nFjVV1 zFH4~CZd28UwplNgzl`0P@~gwmIDoK`sFFLv${)#cMA%^d$HJJaL1e*05hf9^jNtt~ zAAb2?FyHUMplNx#oLa&nR_=|e9_hcdpIYL0?1MmqX2blIKy|%#e=ww4=r@r#=Xa8W z;06!0V^bPjTLO^yzv=?dP57!vFB&5N_+;T9)ZpE|fBEE{=JUKy>2zal(NR=-qR<#@ zNK)o92Af;_eEE)(P}R>s{q|GG`nG}^;A#}IcP0AOb=(q7C3Jx5`ncpk^vv}>@270m ze=J18PuNJxA}IK-FY|F)gJyjCFqO8$gkUNxtMgU|!=oiNl`-Hi2Kz*9_xIEwApHl} za^ta&M5LaH7O%`TEXmzUYMsJdh<{i1 zVm1YO81xt6yr-y!VJa%;b^h*ec369oW9jVlZ$y!xx|{DG4v+>%`&;D@5>@qOv>-1c z?;Nr?=^r7|O!vx~Mo;ody*9e~TGS`6rc+eHj{fh($++ay=BB?_ClORPf&aMZ9a!1U z($yflJI0;g#(cPXOtKHFb?JGs8T1Rf>q8JRNwXPDgZ^2&g2rvs*Ce?`*|6@wEQ?Ya z8~Z5$oz_6q{YEG5e`H^qL(th6|8SMJZbvA>-*%e(#?&@b=Ps1c?g`q(#|}nBsPzd` z$Hr>DT+_eg`0JVVK?j5O?LtB!$R_wGmwkesg#BMO!9YOxz-&0J{%C~#FaE8wzr+9H z2_S=oGO{*waI`nlv-;Dt(Km;MVrHiMM)&PclZ%U1#LUvs$evcjQqR#y$jHFP(1=#j z$lAow^cy`hGdm9tEYx40cTMk5m$1QRMd*Z{^x3pyEhg*4=R@d@jAPLO5C;G-x)|DFxfjAs#MiBO8V^fXzwnMvb5*KLz-1o zw355H?wK*(xv@XfRoibLhdOd*?C$L&r@OFn);Q==r5!UT4EGZI(Z4^28h?}x?d;dt;q(A5$6 z$%@>hJ9Nra;>XgmfL0H4Bh}pU&2VCT;mj23Md{sefc(TH$V{mwM3O&)+QgT$bhXI^ zzjJWrQJ32b8MUP2p|q&(CBnXm#-^ycH;>FQ?D;MN*&v^BwM}2ssuGkwa$Ut}Egrnr zXMamT-prCKlh?>E(mG0C@YrzMTt8id5Q88JhBkg9O?6dT^zWW0)uxLYDraX~mm3#= zya`D0uGppEt3z1TM6GPz01pb(nr#R}oC6TAz<{z*8eY=$ zqfE~i5VaNs?r3fcm&_BLAS_{+0rGdsbHAQ2IX#3F=VZfgIX`c|bItYfE2^}Fn+?J{ z4YZ;}PyWW4GlKXQNQV4z9)UTYTogOtM|rSVJ%3qZG}kYu(s_09ML@WdA|4`{(y0+c z82c!sW@vS#+D|A9N{>}}?Xh#;^JEW@;<6lza|{#T1Q&KNqfUvGrJW+mj;ymO!Ek|B zc|}s_&HC1Kt;&4ECL^6PUv*ZhU)7_|Hp@r6Mq@+Y#!!vs_>F%U=~**dRuq-5$PG0u z2amW{#45;Q-U?*9ekc-sr32j<769qdqtN4BA#+Pr#9Tly42Jx*lcE=*T(2U{Awx!*$fE>5lEBGbLXqY(gRfzPa9%sGVL@r|60Yh^uookPWyjpGKC*U>b(yG8LDKUVJ z4qkw+OVKCUII}k_8m*GB!z~2{TEy?sh{!8n{k3A%n~fVb=QMqi^|X0 zRBN}5`P{e>YVE$OfCLiE#mFNG)oFs^^Keo#WscgWN+-bC8P|QEd_f%Hs{y8J1s>W` z_9z)BtK^bL8Vgteg~0bfZ47tU zQ@Ci-_`{~g3!wh75Ff?Cq>?POGHr*ZEe2Fr3zSURCeNS*f(7F!3xYka<_u}k?|>Rg z4gIzunE^)@MI)zA7IU5AzYi83DS)DE+6jKy8V)xdj!H{f+PmLE7}GSHX#=Jf#EpD0 z=w4D1sb-JtZJxV`%#4^-yK6jE@%Mx5*FCa=$2>wgxtyQ<*@gWluxq0iY0Va4H#k<9 zk-F6K{aM4CI$P3B=*&LbVG^ejoitT%QZ+R=R9vVK0G(wXym_f3I#S0IbY`gr*9tIXJCcdV< z`Jv;4><&HG)qC|{G8r*H%b#<8QiRg(F_iGzFuB1;dpH7h)aIXHjq@3w>9i3AzfB{Y zYiGtX#sBgQYKw@@rWy1IqU{6I5+0TgwnqbJkBZuICF=_leG^HrU>6gR28|5S@+%DI zMH2vOz4HlzH7VxPtgvw9@3A>q$XAe-s4$#WP0=3*FExyg-wrnqY?lZ8#&-lDWEOak z91&4luOF0IksLA6IUZVnp%k<`MBW9#p_XyFrW}^^+N0Ggo(mw5LRRx+j!I_&1!urK zyz0H#tr0@`pO?z7>Y|0-y%FQ^M zYk=#dW?~xGR(uMvcQEw4d#(QgW9a{{FouzVk>$T(jHZ^u3JaRoefT>V-jKBvViplc z%IIQETJuuA^=U>%Mj?EC|DxtlY+2O#?#4yOH*z^7{%MrO(LgkD1h!_jdri%+vxlBF z!=1$Nl-K)Xhn@{T@G__AAH5vubt?8Je8SH=yYlnWcInfI%Pe`Y*D5bmT#pVOJriiw zJBiVgE(Q-@D~O^-X5#2%L*wW|*!%Nl4X<3?zbhdi76ho$U2CR?vV}B!o0*AA{-W;C zlgl@NLTd`zAltLUC-w`ybfWiY=4hx1znU76(o|U7GR&dV3i?FdL7Z}_|CNi%Vjrh82@apT3_ z7W92(7!T$evRHxo3wVkUn$aQ57a zc{i3Yq36eU*i4KRbz+DsA~~vI^)RHV!W1$%S1G^tP+a0L*Ef485#_-%#XAhM1#oufDXz+Xx*4YFGua9Ely4I zNj=$#*p&1$V`qz&_%;pdqf%xR{?%U%DXK=fG*% zg(bp|Pz{bF3=a48cYLp_bw|EN$!gW_p}Wt&^hafdLbH=d)}BmyB)qn$Um5o*wgf-D zGiKS_J~JLgyuRGQyz!#BT-CL(|2C1&GPn6zWW?@JyH5KeKU;r!ljdq*3HAHN4fxFP zQM|>7(&d<5p)s-k{WZJt95N`~Z`D4V8c+|kOdrLI!%Swn>wGq0y4_q&Un>eDk2GeW zPg>x88fIioe0=<_mY~9bFPXVjoIHbyH%*>NDziVlSTxP}d9(vuotlS>M4FlqW0cPA zLNAs5i^1&&0);=wor?lU@h%nQ>3GQ3K(utB?(JvUv@RNn6 z3nP;s1m8Zh8*a@~QMF~dEUq$SJR0*z!FWy56fP?3?E}8a1f?#w(ZK*D#Dfm7y-Ld* z3`+A+s;wGScx=5>r9HI_cEr!W+OMp-idKd?*FB>^ZO36#uTlrBtHdzy!C>$_x1j!L zS;c&-%G9YhSMT;H(STDxm0k8oUpvmsrVm={)TNp1Zo)Rm(d&9LX1YzZlreo+%9}U@ zY-?B>?||c_`s%=KOL3hp&Q@j1k%fsN1E^&?c2c8b5s@ZZx+Pz?t0I?$BqE$wWD{&{ z4$cqFzYUKw!pTw+?uhTQG*0cz$G$WCeqa^fA$psW!gcXL#nEWI`+LfFh3hp{dX@c5 zqvhn#wrW#Ez7uRqDc_h#{BE}}bgZLCqCEXXgKdo;;F^1KyirHjq}mJ?G-eLHLT?Q! z*fYz1ugpe6w}nEbyz5iNd{^KDXg_gy5BIpZ+A-mJarf}voP9-9pdgT`5a3bP^{zt< z5codUM8+SSTwR@Aa7X|zMDNZtKX@WW_JRySr$V~eYy4dd8j<67HKuZKiynEU5YEKU zEI1f19FB98HA>TNfk+9w&z9px-Niq@Pz%GGWrx-n=;4^U%68-Tq(J7N_-n3;1(-?% zoQy!heq05kRp?WYa_Rac_}PzeOy10$_5(PRNWe)~x(^rKshp`SnW+j>FhQF!+kGHs zAR7ugQlHtkxpA?xWKQeEjl$H_y`(8$0G!zC)q(_0pao&ug;nkf7->I2_!_9yZD*)F zimXF{DJJe(?ym@^r6;XoMgvfnDVsKuJAtAU1xKqqc@F!?2HV|4xtzu$%c5a*reUQ4 zUf=QTKwPX%RI+~1AC>;e9DF^}7`uzqe1pOXZC4d8 zUCTlviDoUAO!=n2#qClS1iooCV%XpC30bxk3v*zHHr$ll{YXM zrnp*b)tXj24v}F0GCr^_E?KIhp0t@Mplx@GjY&(35*t8FU-tyau+F!PgWsaXV$>z?Lf-L1ZX~rm=YUHuVSDp1(t!@N_9kj;W z`9B|b1|)=1*1IbKp=!de$!89n=Qwk*k-8MND-Bmb-U7Exc)Zw}hO}w>P&C;>*Z9xL zJc;M^V;UpuTGbxa%`IYhNn_iID2)moR+jM6c zCmEVP%~B<*+wBi--?01ZjNthfd$1I^MxWmB-(Uf7f%N#LUXQ%L)YUTtL#Cbx)x3~ujyqphHW6+E>u32+e;Ue%5 zDd|W1uPY)7$`_z5$tsrEoDy2gqiENPk$@`^;hOx~8vUNeW(?`bv5(8C#ffGwmPl3y zQBEphnc|O}IQtztlo%MHq{iT#9y9c^q++Zxi?V}Y{c+eL3r{Eqf@s3CF_kwaYw)QG zrP7E}F~jna(2c1LW#MrL^6|LsEHEFZ2xg5+nKPPNZPX40nF9eLr=GHZn}A$7%#tj0 zj#ar}(Swk0h^_zCb(*Slf44{NQJSfq5k=X$c35Z`zPdvaa{+ao{rt>gQ3Y z3NX8eY(^6bu(dR{fbn#T7+B%-CxCUG8pjY)?5Oh5_cU6OZX_57htY=1SRauRR-Nc3 zkpwb41FpbF6<)q7yH>Hcw3~_a1L73+w_gLy=Va0VXivg^yN9rEN+-sE z!sC%Pf}$hWkWy}wZawusZ=7gb7}VbrDGvZs5N_Nmi!A&c{&>R?x17P1Uw)43-#|2#@!lgr{Fx3Yj%_@yHQiJMbeYvH{vx$Rq^`c)x!DG}!dEE*Ry(d?|dIROr!W8^F*g|P~ML?0cAe@ype(-SY24<(KFRVLdqBg^kYo;%pOe7oJ9aam0I zKa9O&j3{B(wb{1aecHBt+O}=mwrv}yZQHhO+qR~kXJ&qUlX;W(U!{_|Q>moxU2E61 z))q57B}rLDKk?c?ZyuVL))gl&%5SEdJ{S)_zgj9zmYXe&s0|c@VuBl2$GE#UH_H}* zY*h8nsi%)oD*DUqD4_wHTzZB{Wb``YY2Qg6v;Q_0 z&s~1*H_%JSZbXP*`E0)3J?^nR-o73SnaX!GLGFm5z3QpSVTtOf;L8PQ#rm;=&51ki{W(+S4_^2|N-DU*mn zYnrvt#CJpQ2NySc_k@x{=Cl5*c_?EmXfVd(?W3ZJp|}|4swChJ#S@g0s@DG|NVAD! z-DmufLjEh2f*)E06WX8P!~~Vcu>Ng^r10Sc>QvML%(sMAzO^(4Q#)Ti`Hw*vRlSoa z_k63vDi#e1+A5dnZv()zP)5m=Sd>%Ce5yb}${z{_?#U{f=GYbqnxl6c%KlLqqdIdb zUQ0T%aHxWFNY9_jZqTjvJFsCd8kHw2r(cYVIVk&L<(^4U(K_jJ^UZd0~x-b zg@{ZcKqu1y%7};Q;0|(Pw2Zqd7CY zc1fG*FSan3x*H`z#J((w_b`OglrH^v_VmKfHIJTh>=s`&&Lj*#NGC`2ZWoOAh7#N0 z>1~27$1%@#YKi%1(X(kBC?P_xrte_OG6e=!@Yatm#UC*E8vh)w`I({~IU~Wwho08| zH0T!ljM}Mhqb<;p)9u851=oul@D_a~$&r=-5yk>%o}D3lG&|+@M8cgW`@SKR2|q5p z(`=m9hBn&8D$UZqh!#~+4;0JxskCw|qNFaaw_%bCuJ^Fug;a`#DH}yJYVCS}(_a6D zhUeIdn7e7Wcg=n3jYDAD!w`@|qK_8Tvt zkC8yVx)9Nzp1uDy`A;*4#6-OV{F;|~?cm}roDy7)H2^;i_mk){u22M2$7zN>ut$;#tgaYh6+v>0d?0=gGy`%-d zc4H+oJ{6g+!PBn;yx3pi?eY@If6%pWVi-3y{b`5uI`9TNImmcr4krov(^XX0Qap0R zK1i7+D1pL5p68gE(=WpTii0$cG|5A;2u`>S0-mdB!z@U2qWXtGo(jG8)9eFdw!Ylb zSGIqWU=I$1RUEpRNE2F+IFGRyEEOH21u|v$aHa(611$aZD04R|I%jW0*lt*~CScLa z-Eo)jyO#pQ(yun4v!>(wx*i@%pJFE;q{gIQABLs{Hv_muqOc4KSt*EbCR7h6r+`r^ z^NOGSG7lLhRSz{}!A~gI2_o@z#Q)z%-a%l#X8>kxm?2PK|FKp`6zAl>qh&#+I2BiF z2|-YJs9R_e_5~)SU=AYd#y~eqaJpRO%YVplp@nR6N}~%N;>ak}a}J+u9-ejmGr~TR zKUK%@x^O`o&+024k> z8%&2`A7?Weyr`gDYO!$A++m@iL6Y9l7`j(nh7TH+TqyYnA~#|tix zfJFsQNc{~r;;foSkp|uPYX?NbmJgR`s(hjH3N?UG)%}aUeoYybnIff@puAxog!1># z$a}Uwuv97`1Y+=dJ=_L9CTM<5)O~WKx{Z644u(Jt`%H{C@AUo)(99#*2AzGl`*+@9`vD zrEd)_fV?z)B8?8hCCL=yS`G3Mw;Mz%R~eJb~RW_y>7-Q}(n9u9X-u9OU_KAhKX zk60pAyr5RRwpvNTQ*!FEPn|q;^r_n;25BX;WoAbQKY3LVH7k_jM#fb~TfMpB zrabw|Dm4W|gLo+OMe5H6<82~vwPD>cr`?3m^}r87M8f09fJTzHRz4f8iyyS*V=}O6 zG^Wcb71~Z}YZ<)eAy{BE(OemoDIw>d^Bmov@$OF4@3_NHO{Rhu$$Rr9p@>7xA2roLrJ zF~_P>07?`=j9{j;TcHtf;g?4ZdFT$ws?v*PEJ1{hp?t!A-98sOv?H2{Y!hM{MJ(p{ z+vWYq9}6hA`BE^;yGC8tj|tKi<_k z3nELL!n#LIINU>dfxZgak_c3m;a3X>fPhRmG`#KV3t~|~sBt_X@*dy_Z7E)^iUiVA z7Pn=C9SZtSe7DfZJ+iSGp|F)Mx%yR6-iSoCc$Sltq9JqCz0JyKFN@G2TFYimea3O; z9G4fcQ-IrN^UF&6;SC~ge(pk7*KUO;WHjgi2R{FbfgE=^P9tek8KD6I0V&MInW9g{ zn>lJuRp4Rm-S~e$cRAJ&tWG`j4bR%^D;cm<1gmVdjT?3}E!Q*WqxiaRxbu!RFm=qA z-Bdb@j=5OiG%4%Q2v^cnHNAR&Ayn7b9lJ2jWn#U%Qh==PR1zJgyaOAnC#SVI15Dd9 zOp#uQ7w>@AF4LW;%Z627Y)_KE0iiPtc`t19*Vr?lhR*G^J`#6wd1XuW&=Poo9J@NX zzq&;FWZN&#rsLqXWz#)=OMj!QT%L2_C9a^HBz3w)lVhI9X zbCziox|mqhv8)v9lniH-D4AHab;y?Kc&B47&8dDwS-ex9bR(15*_ z4B?#~Gw+Ol+@007U*(%M#1hfrJ-r0jLJffd$sP&pQZvJI$3#Fm&~CZ>Y1bKd zd1gtI>h1ZMwres(82JNitpA=YLJ-Rq0U_{4v?lAtyhtAjf7?I^`~I_|#47kdh(f0S zl_+FjWnun5MPZkQx-FJCf{*Av?;{a1jr2|^ig3h%R>hP>gGm#-IPNf*AqW`w0r<~H z)j0=7Z8rPBq6TBeb#?Xo`vqq^xJV7##+$KEoiUwmjE-%~+t89ze|MD3^2XKs`-Yj9 zFB8sJ^2~9C*I(Tl5mVO_%}b9K9ov#j)tc3@vp=jJz9wsz%{$1O98)0h8v7;DR!kQ! zl?OR(qk;05?N%ARg3MNHH=tvNi&E~mfrBw-e33?+c7`-A%qM~m@T$dPC}s zMNQjl0@{>|&0H<4NF@UhvfyrRbopKEo>l-?W7=W1K>Ha7Q!gTL@b&mxkXeW8_7#*zBRC)0a?BQlbiCf2C_b2!wW)ouZ@TpwN zLF)@#PSk!JHZhNhW!`k{T~Txbs6t1rdWnG{X^PNM+l&G8+b50t1$;_5Q-b|M;1FAB zH~|QR(vg%q%JRfGmN}I6iG=cHHL5}m$Gqs1mlgU~OuTmA5&Z>*bVwi41_Jtv$nnmV z(}L<6$+%OGF2PPi+Q9uXuriKu4`6D?NlpJzvr;&Eeli!mG;n)_F_r38)Yk*Z*ha1m zNkF-{UTP-FZDf!nr?hQkZawDKqd6s{ghbZIwF#(aXu^5owVAmj-T%GXGVaPwK$c7Y zWi19FI`lB;0dt210R$M9YI8ft-E))>|I1p48%)_vVr^5BWg81JrJ0!6Wx{Ul!r?l+ z=9(%9uEJmGC7=#az2+ttyk>!+vzum&v9B65BuGYg2<~MnERa%x+3O_)>G|Y+(@$X! zM9$;J5LLNjxqVbVRU7fB`m?2Jdi36EegHxFZRo|vy66u3fY}qbW z9??_iHiI^qX4D;&j|hkM8kdZnsi5ygQ0s4{%O@Lxf~uT|6U$2t!A;qMyAP7TT6WQ; zDV6}Kbb`|aYeHI@j|45rYfPJXY!tf=>?E$!4pAo)s7|mP?i0V)yBt4Rt$tWA|!`pL{2MO3p&%7+En7{t?f(l@7m=6A6#PE(*0t*8i$W`wXNTz*h z{<*-Xsv?DEXT4euEjmzW-afH;$cYD>u+gL^6T4NHMnn2wk?cTpopuQxtT9PXU^)1^ zlO^kr*67zt98OBJPD9NxA$_DZ(IG6+HD%Fe{Va9vJoM!cj`}t$Y-VEj#1dXFJD)Hmr(EU0W{F5#QMXv(U$w3am zVVw4a;m*nW4@DaSp#7zY4xs<^z?mmg;F?{#Ayk!(YpFk;x9b>^v`g)NC|h8CG|vnQ zn9O;WtZwgaKRD$=@cBhy7A1jEygf}Q)2nW74HnyWm-zc^YDAG##CP`%49NZUj(MX? z-z}v&!n5jSbfwk_+7#{)*q!Uc+&vc$KUEf=_Z#=7>jvTp&`1~@)5ghvNdR$wdnx&&8=U`N$ulsYH;5Mx7aqbFn``*pOK8N)Jw% zS%M$@uUfrbQUY8vo6#LPDvlM|U&v9zK9HnysL29s3r@HyVoCV<**-A+`cFR9>g*J! zH~(s#za+Qoe88F2dVe9=&?r}(P&fL7C0(5dID@2B>#b2AuyBa5Qlnb6=Ud(yp@r)$plSz_G5y|v@JjC(HA3I= ze-9?*`--XB!DLKApjfxK)kXQy5;CeK&hbYD6c&`lqsf@^Yp|HLlNVX{XL`-_eot8w zt|-->l@~6@Oa88nt2*CXT#s|=xDOMqYlUg17X}PHom-nVck>lP2HA8yKRMbxum0NI-Ah*WoV=0!>?zbx$YXbk zB~~09ybJbbYFQ!SNSA%zO5$mS5mVDMNVvsiM*TtN{dWT8d{Cy0kjcw#dEZ>0pI$!C zXMYxp5-=JEv7E&zT-)VR#G2csN}b26XekcXgFPPFPnC-BnWN?S3zf~mQwgJto|wf> z;sM=RPQxJ%$g9S7e2r8hOzC#~X0T&=G`ZTlz72DtTXcSq{Y74N6EJQ87s}v@^umE+ zp_(UWX1N>zthKm3_+Ylbh#>`GP z2A{7MHg0rtbH7*(`fe_-OCB0h{~fJ7Fxe{gxUlc5BfeVc+Tn^=?BH?178!^%vKOp@ zV-R5r991Rq3Achw?ejgw}Z78UjxW#3utR6&Hzx=e82=1Ij0VJ zewVdun|emYspWZ5TuuV9N7Lrg(ol4DJanrBY1noVk4|duT;kq5Y7myOsOlS$)wiOE z%&cz=7wRkZ=>7Ve;72_E60G1S9QN~xE1rT5^&;Pv!NBmPNs&CB*d)C+QI4>{)RzPe z+E0h2tLXpsHDPHN$>A5xP_+gNV1N6XKZLtTAz#6`(Si5R*x$LU9k1CoGI!}*yJu$6 zycI5wh7XN*1<8#t6 z;{z+6vE$u&qeqg~-8l%Kg_;j9j)CpTVkh?pYlPU-;quR}$>pVFLV#5CRjNnFXuLNV zU(?*ParRvgA=pzLFpaBJan@4PBtO*R%Pr{#|2_oWM^MGu-lT)D;X%>Ql(n##a(zER zJ+K#P4iB?Ry})1`B<9D{<-Nwg0J7wBGtG3#45*0of3Vl#ED)88Q^6K!7>|*?GZkL{ z>6Wg==%XFR&7fqQon{bX&>4e%Z{I5>PF7XaNA$WF=z<|UGQwAuB*#&lyP0~+++vXXbn%^m5y_+o&nP?`67zSS~J9>hItfBp6~DROoj zH_#_pIA2{ZsGTlD{XB@aKsQXCKE042x}RQYStISi;HCAoa*UYAN^|v5sAHAwrdSp8 zx8JSWs&z4KuOwbj8 zrY1cDIS7MtNR3#1^s4ZhNIrAKB)Qp#K<7)pj4<(X6&+9j?C@&2S{Za9sg%z@XTYd8Z}=qRkLL{N2Oeiyb2CyNZqW7G8S5 z!uc-OEX2pSDc@W^P0 z{0dpE33+&V9OkfQ4I)eaW8x;B4C)FN%X23cj_OLCzqRd~M;hRskd6)^FijH?1KwQ+ zN<%ivgCfGL>2xaoxTsXkP?O}j^XW6}y7lNol&$myvTKE-tD$qAzn!s0vCmfokXlYm z)7Z6)=*Tkzt=*+Jkecm+U9WJ32JqInI{O$?0{#UL69}TYT>A)Aa&VDu%>ZYIq*yjd zmzK1H7lRbp6=)C@KXtQwzDr1-AOlnE>mK8SC^h|dzQ+RtWqM|+o*7b1buCOyznw#~ zDXjf3hy|s5`=_hgs=4%Nrd%op4=`3o`ZYe2f4w&$F&4RcAG8rt_uenXvJPDI_7GB` zW%dA;cIyl{#BTd8{ioW^ln(3rMMIxlnQ#?ceI5+Hg4)?}%{7rR5pZePLOZ7jb9cR2 zb8`@rmJ>7SVlW7zQ>E9ZcGi$qkyh;{iTgdEnKmgxWymSg&;|sZz@wy@Q3lt5Gw`*- zJOz$sz@JZiu|}gBcHWS(S$=U;hPC*|vuQ{cV-*knq6HzuejO;tf^>Bk!^^r4_JBRC zPUZP}ltv&H+19I5nSVK*ci!z9HfQbOH^E^ifdaN%zvLob* zm(Er68O$fj#af?ZyMmgkFAde;GxDC5!kp~!grm1R_Pqc`V-Y0?5Eh(I^v9odpe|lgC7QpS!rFt{_{+ zo|O1|c|>-3PTkC7P%lb$`ZAbcCbYJCc5I~z?JQ)9A8aou^Ffc7Z!pU3b;#F8d1Zy& zjlw0v03z5R)XZ=wVZ#MLRc}OoW^Rq$x7P(>15X@>tUXwjK2OR-3?LEv^dxYAIq5Re zMoPhY|7I&1{#O3_i-%Kxi>aH=;JTn<+seW0;Y4N8HWq(V86tyXy zBmQ0{Dm#k?Cj8FL>BgM%FHEjTp6|8tl@Au>-EAH&2>D!O!9_Dw&z{9bzM}afAaJ$f zz6w4e03RE6%6?!qG{++egN8WmUWDH2V1Nm;`B1@4eO|87hX{sa{RfC(yXI9+BBZQR z+3U2B2qlXm4n5_0On|~8x~^h!AGM0@CtMI$L4U+(4j#gRgX;*gP_!#liNdB-6NwRk z%0}I>74E^ys0o=N)?Vc^;|aHGcHJWuYcr8LjfQnUteVIE$PhQ5vo!9Hm*{|J-==8d zQIm;ujwgUh4URg_wE_-V%vFCS=D0oDZ%)mE9a=`(b%Wee-M<(9WjnO;+pP@~Jspy_ z>KDA61GL@yC zic@gK@_LgkaU#hhX;vu&8`5P6q1!YeK^B`yX-h>p(|X}c)ZJh!4FkJ`IMM>Kc9*5M zm*CrGMvk(#+sfz?*>M)c-$%KDpL3}ek7uRDm}%%sPD%SXsA)Q-F-s(Fk=41U&L>d> z#z&HsO8>IqH$~b;fVj%>`mtj4`T1cE{tB_kS@(4f_t5cGkQ&8{e~YsI{iFgO>6P!_ zja1Vu;!TRuaEfj)=1-{xs@Bs`vy~B#(qNHx-q5ahfXYO(6ndmVE#fnR!Ok%c_*4m; z$AUb}vS-~&@tc=wz(9A*k|edtrZXpsE5^yt;Q2ss6YXBEDIm~3ESnhXvNR#4*RbH4 z5mpklS){CBVN00bjoi@fGCIZ>?G1V_{IH10s)jexq*om9%E+o7Ja&Z0Z+B=%ldn2r zO!)TNWm5R1M@qGZ^G4YUsFvPwg3MMbZgu)KDvYsJ*x{W$%OkeRJ#x>WMk|YK+j3n{ zJKskwNPyy@3Lkn}wT>}>rJ_p6b-T2R(Ty}|6$iMa+N5~tjoT*u^svmE29K3PO0%EZ ze|L_SaUsfqLrhI$Z{}o8V>s!YL5=gLO2I{(HkXdt=WORtOc|4_GRc{cBx!DCF5 ze+TmdMgl>28U9aE+4Ub-rWxt~fn{bs!? zWd3;e5j_ftPX}-5Fy6ufSE2#&C!Y#JK82v_S-HZCD;dbeUO4idd7x1Okg;9_B-^FW zp%cIQjBW>?1~HhABuVVo98eN$SXWwD+w zH*%Yv6BZ>()gPCE7sko>bAUF|%FW>c&CNvrbKrbv`bjszO~v8M76fb8SH92>T*%_g zQG^f>+t?^OEBEW>PdyiJhX*@v=C@EdDZK8loP>cOLBhZeA%+srjSDr!j&cBfD2htg zH7A9wk9JtY<^8^Wcw56m-v1KE_2K620HnN`naPsxveh4~V7^`I{I>`{NWfeA+=d^) zLSK*rUP^?bbhP(?hb$2o^J&JHB3=$$uQPvEp__*Xg`{wKU$c)p+6j~!93~}lYSf#D z`O@D=Ck~>L{ZY>s;7e{pT@QwB0}@Zy@W&6KG75Ca**R$PXq0}CKM71y$wXuY_Aqz@To&#E+{`j%<-h8_Qs9oS1M9w*gvW+tbP(|Yi z6Q;O=8XEpp(c1g;N?uUF|KN8x2(_Q$Sfwj#VpNCcwWPk>M1tg`lp|fH_lruk@MdFi zKm2_#^&}XR_rr*UIdAFq=*EpG-t@&4cv}F$RI47jMj#3ZpiFO#oSt88nnT>lw#24} zu?wt-%VivSH6}rP|IK0Ibr&>)I2Xg38~UCRxbNUC-4i)@Lr+{{dMdY0f6vG##kV!? zbe-(JJonnZ@!Yi5Wz3(RL!zp#O9Gy>bdg!!Ki{iUk9*JuQ2p`KUTqj?Q2JbuE`71yd<*-o+;h8wXhnxL;sbO9jW$tcB$a|KkRo7kk|9g_Sno+L zDG#+iva=AWTh)5iaeXf&4RLjN+(fWls?B6ZpZ9Zyjfbx~Yzyiz*~faR1!~Cf?b4Iv z6Owsakz1Rs+vgT-Rom&w5A&h$GAf6Ls9Q-q!>xs;vGooFIvCbpNiVA?E|1KYq`tFyNc~wywoWkK9T*p2~2+o!PN0z_wk9 zRVwcI0ySa>&&;@HOPA)@OP}0I`77SUO3&Ob2m>KFG0fxh4yvN55qy}@F7MDp%gg9Q zHL%azDu{+)9@T0`)Nok>Mc5!X}3lrWAg)0Q9<0^4km{WcXo=S28VVZIB zaG@sU-@hp(+o6s7G302YKd{4>pvwhvRcA3#YT*~zyBGE4Ylk7y9afi6HJPO#p%&^Y z(LcAA8HxCdT|L{%wUTOa;KpNm+vqoVa1+^8pf@b80}7~3>Vd@%#r`!-Yk_m=7;=l! z-){Z@L_$CXV0829eIGr$-ULWj-<`~N>?X45Bz@g|ghxE~3YV#KQudbf$u!+{Nh6bA z&X|Q00MXP#G}P%wQ#()lVu}14j7VRjU*Asjfz_kd`l=Ne>z6^iI+<13Oo=b-|$J_aPN z6*XCRDY!@~v)##`IYE6tuyw?}esEQ$=DDknZ569}$1GN_6A~K32tq5UmHangbWyeZ zp2Mh)M$Q4VVr{K&zd-Zt<9O?r`h0NV)zs1?Lt)-+b#w@vGovrsLSv8GYGzPbb!zc0 zHQ7P#UEis0W!+f_w>$RSglMT}Y)HlywV|?}Y#d6J32b5y@I!5j8mFFA=(rO~>CH`S z8zHMuhr;M~6eACr@~J@9LIdL|Kx=K1stGP0_5=GfE0=(P;j!P(Ck=#XEIQ}~zAXH8 zSBLC{a73;XJ3}LAC7JxVk7cM*-Pg~w<2PQEnbhgFN1QWsia$p78I7md+boUtFNQ(= za-Zdmy{`a&jMGQ_--=DJ5fIBf#) zagyI0nqA)y|43#TLaRdO2Wkyu`^xGg@LC}`9Fa1ktjS-Ztr|Bv7lb(s#6Ukc#1GE9 zJygx%fh(}$LLeR7dB1-jX1s3f@|xZw=C#AHqG6%->jw+o5=Y-i!LR;YyVrufz{w>V zwA@@j3K!__y@g1Ma@Fix&BUNc$kQ#1J1J`pm=o=65cT3^gd?Z5kY{4y8x-o#W1i6C z;>T!<<7Fv+HO7s{IHF%LGVp;iU7R(Oewpe8<2X9jt z_ZuA>@TtvS=41#-5{>|yu)zh8Cw$axvx37KMAOfCSTO9p6!w?rR(;vzcVH4%Xj$>U zi^F3sA-%K0FI)AbK(4~J{-N38o7nQ(i!U-6NE(hVfk6?mlkzjPr(TDc`VwnHv9_X- zbsP%7L$SV(nHK(|Uy;?mYxc~JQcQPY{iS@=Xk(l$Gx|_31M0EEXe7B;!dLcn+%D_g zfn^;BZj84mUoL)V$lV&|T~)3}bW{uYLWWJB0;(p^d#U;F4RS$=T?!fct`2bQ2}u zc|}NC-IAdTpGkyzAb};FD<<@`9U9suA?$`c|9{q5(Q8;%f9{q#l*~Li4?vC8xA>+D zFP$5(KNAJl9IVx!Ag~rC$p*80wy%8@k3{xGrOHawMY~xshf~^z9NZ(_JN&*AoZ05D$rB9J!*-e z*$9fYmZ-4cYg6!Oa&sk(=9x`UOPmS~=te+2`TOUf9kXLudfeHpWN8Z%ID&s-FTu^$ zM=VCE&P#E>sb*$IkGpE1I};;#m&V~6iCjPI1NKaVOQRP%(7ghEacosB@3Rg^H0Omm zWy3kr+#mL$%MQCeC66JiK~12)6X3$-K!6G`*i05B#9~YM{D)t9JhL$&uTHEzsN`@u z<55a;7Ht_wO{6$YqUQz`ttdaC9bChYzA3c+J@`h>4Q`=iY?B;=EOBNV0w86|_MKiz z{ezUE$9Svwq@N^|Ni_--Wv_jL<1J_STx_L9zYa7c8JhZJh>{+ZHo-_3nJL%}1&GbvXKQ|e37eD`tDSs(Y!LDelZ-CepdQqA%8V`905X_4 z;1&~Z368YcmQ2xKWoasA5m12k(W>rPNt2p;6+@~l)u=GE-Za2j6r=;Y*$l?flu+^+(AzWS6t0#&Wn7GYJn{eW=nWpOl;Slo_9xUOK|>#KNW9}y0c?iORJGi zuR(|ygPVaFsOM&aF5*zKTK+)jp>Lhg0q#ZB#i@L4S!pq{l&RvmI^RJ#<)tfT!KLNM zNi8D=c@>X@ohpdvDtN=GhFG7{V4=T}+?hGz)7Mev^-=CiDA- zFU>n%{vVVi>;FngGO)1ye+e6PP1_At6d$(TpI*_5H1lmbKKXy<>(yJFm60vnjoxww zLkyRzWd~fpCUb0s1Y=QaMPV&J3_^Fe>5>ISqr^Cx@uTX7U)=cd>@4JAktZu@@7SoJL+fZPU==dOc zGLCNx+2)5mzCRY>cZ(GK)f2@Ii|)cI1O5k#p5j48+xC~YP>ptkILaD^qK-VwH6ei$ zre=~Hz$#H9nhN7xG>ar!))NX<+;rCB=2$q=cf}SpT;xwMu=G{?oUJHHV-~DtCzAo) zU`}ME`rUaycH@-gWHr11raSmP?QL(Y7d>cil_pgTenn|)A?Ngow2)6Z z=gNG)Ah_ew7#u%@e5u;|+pGVKvnn0nn%-ZW{_ZQ#L-fNp66}#aZT+VNAUv>1n=nTLlxiS91wG6VFG40=XU( zV`IQ9m60`jlK3s|4-L@8b`$X+$P= zf(}L@k_%sffkf39^j`Xt?6RfqR--ue#X;S1d?5U ze0rnt8dGW%UAvE3%)}5oIIXp}r1SB$6ABo{A2n(NgPTA_PERpJ2%?MrvG(%$KVc@# z%^wyF%7pkuj;D;JpcN^&=-46s2DAeUjIHqZNQ2LqCdd$NP}OImWd8{>(bemimbLzW z@S3IW>E097A;t$9Y&t{y)2_BP{&vbM+G%Kn!E|R@uB5(G%fkOS$-hSlp_SXYR=;No zDjTt=ch%-<;2i}yZaQbaj=6_$QhtS^Ox$im1~u`sBbv*=P4*R3xb6&7pXKmNcU#&K zy*Z?PI`MCqN%L=*30tyb)pZKN6Klm$^%_&f$`L#`uF|0)dRLXBl$iJmCb~0$4yY|R zo$02Ez0;EI5mP{aeFu`TCm67)$u{OBvexOVfXX|3*3;Sx?PshIQlHuI?J++7VG!ZE z!J+t$A5sSbfD@j?Zw$g%$Ay;;-!=PI-2Y40bROGNcB<9i$@CqdQJIrJLV%yRHNvsc zF>B}6_oO6{ie-?Wxgj{0113sM+wA%Qo8H0KY-b~}zTwESBa9!omaKi_3>+jWKT5jy z_81}Em_a%9YUFeR>igs2@tu%78gPGqP+y!W%eRheT6zk2gQynpCc2r){`kWJEX?3 zDoG3`l2yfuRvz1re^JCGu^gzHe`CEV;cGrP&N>&W{V0p8s%;7`$d?W3$i-TV(H#4Z zsT^tjC`-6%Re!}u1amEr!QDjk0b|<)+nkfsB#+M_r@0N50FXf-3%?;P?)iEstcirb z6sNg^o@Tq`4hivrvb}f~x4o-S%(%KJd2BvlO=uU=r+qK$x@rwB;gL^^^og*gvH?s~ zcncR(^A6q{lYu4Fe?sk7xIo&IQS)gFZN1zh(W1HzI!d*awT7>`)UYR`?g0o|SNh(X zVQE5bIaz!>+WrAVB!cPsA4(3}|ElCLv9kRC5HTAfNZ&TSKl;28!qSdAqelefdMh^j z#pYS7uAzii;Oj<4D)omFi>Ti(Yz@RD68p3(DA^rA&O#2lIqBK%CeOiK+?ptFD~H|q zw%b`bsKO3EaYcs{XK$V4$FaUy+dRC+B`ag>xg^3ox!K#5*HE2L3tl=#k$67%C+NHh z3oUF3QK=)M{&*o-Al>^YKjUfC!y}@Mk3>kr-AGYfDyaf*lxRjCUWKK2BU!bhv8Y3T z>i%Q&8%I~zk2djc^+wJ%WbTyvr} zFk^*F`uL_KM)`v3O%dHxs+QCyV4L)SYLdf@*xbAoHCnS}?1q)>S)ZUuL! z=`|%FOoS2#gOFZ;j`S8sadRFr_6PAPwUwFx`fXp1ryjxbLFfzzytl6jh;uN))Wws7 z$woOGXEdr1B? zKEm|stHnLE^S%diVT2nk3aYbw^f+YEa;vyB-%o|NAE<;L@NWFj!R#2OgAt35b5@m_ zsNV-czt#F{^aJ{j(T}0H%EX-U4;hnO85XxE88b#-Q+N9Wnj-d;QNC?W_e+1gPc3x~ zy14w#7`L2zOhG;!^k<^<9jE)Ot3vE}Jng?+l3B|q!z`F`%s%{q!>&+sR(gynbnm{y z!AJ?-c^>=No`muJ#C6zN(BfMz$}Z6lD6}+H+B|Jp-gWp6;M*X*FC)+D;IeQ(rC|c9 z5)*zJ4~kl!!r-@ZU+KoTe>zTeumh7#0=SLl!v&7keQs1^cOFx+*4EX^$%`P(=FjuM znYkv&bT)H$g-#%CXS7@S73Djhw1EL?j#I%K#q>Q<+MM*Zk05hdEj*Z`*VVSUEXw)8U0bkE=`f_y!y za6^WFhx|4Am9bWzS^OIPFli!>vz=&EJHPbk2yZe@9i|vE5^%Z4m;K$!tDdUM>ngua z^;buKo0q@Ao#eiH^l?lJ+j?;Hd0UX`#=LPC;LVV~@g_)7FhE%x^mZJiVNtUWZkv7z z+X4V~o*j?eeC%BwQp1>bBSTq>ifj%Z44f zd(VpXD2aW0l-AIj7**z^oggz~F;fL*>Hj1N^KmTm#M? z{+rcdyrtJxU@?(tTl=^oc>(9G1joxK3iQZ&heF1V0RdPNG{*TcWBOJ_pSpAP(^qhe z7FzslFEI(wAUP5kw#C~)zBL^+XiVKP7#8Ev(e>f!=)0)+y1RjoKA0V;o_#KGo*1=h za499!YOR12vlcDH*`lI)ThFX-u*LVH1gpJ$!J~V`FkAMv+}+gSqrf0n!h$JVLT4+K zH(aXJ$ID)wj%rSc`c%AUV(tx%TN8`!stxC_bB+-`8$_L7kGvuhkT$PWG{mtoM(pH= z%*aN02VuEW;6*_~J&V`}^*7DTF@n)SU#W&duR}uf&b+rR8Losu6`3~$1M_kBDFp@} zMqqfCqCK}_IF~^CfaD_?*=0xriJ4Rm6wbZIW;Z#ZwbXREhaw7VUs`O@j~AglUrDZY zG7cO6176u)iCwFxT1*kAY3ZWE5N7vKi7rP*ES$&t8;t)4cmpCSSgp90@k=bPE(gPY2AbEt<3*65Ez|V@;gL1Rj67;mV_rix{ndD&tS&4rN|Wvw+&uadyW<=28X@tG7DSf(Di72W{XfTcm%=4D? z8kwj9gYNZ0qPxRl37P&`nWv4?^J(*Te?A;tGwbr+;1$rO5r&zHxJ-4;j^Qas@Wh4g z9lBO#!W9oYJ8;ASol;@6R8Yiin#U21e9+5ec~i~T`bK?XxKV2+cklYmkq1Y2eo};Z zzC)L=ZoDRh>ia#gLd5se^`sDa*I+&Z?x~#t$Gtc#s&<1Vbu@*ct0In9K!g4DG+CDi zQc4czTj6<~Ll>OzU2jgs>Yt0M zzC8PfK%n9+Y;g@P0|PaEcgP3YbbmZ8&yaI$XHkX1%}D*XfP?bwp88N4LFhbmdWd z-Y7W3Zr)@)8DZ*>`CJ{OT^gXRAD#*31rrcFhmHNrZ|Io^*&X@7m%o?5BN%~%zvsO{ z(iVy9`;<(aBhM5)g$MqSfGu++Zda|ft`}cTu!a{z-hvmSEK`CB)8^~o3W=?J0K`K$ z#?Pz3k2A($jCZ`x{r&&N+&e{C7If{JY1_7qN>|#hv~AlvZQH7}ZQH1{ZQJbp{?k4B z?=#Nn(U*O-_qtgl_F6k4=6q+&_o3Wt)O>l zCzPSI!p93OEuU@mS0y(2+J(A&-#((~O4=t$pHy&eCycC8Pd?zlV49A|?_n=o|fG;1nG7M14b-Tk6B1l&J-+j4ZKN-WyG z=(Du3xCNt2)*2BNIk>KFDnmL=xU@PNUH#X9Hz#$T)L(T{^JPkQvvJPjukw+%` z4B=u`k7AIIShmwk%zE;jzjrx`O`n3QF-3G(L$uC&Bpm(C^NM181#u2-{7vPjsi&=9 zqyr?XXeoLgcz$m=e<3$g2gxF9>RSzS`RF-Z7$};sZ){Wvn`kAA;C|(oe2nn$tmgU; zzp-0%j62_x(S-IRELT!BG`#wPbIoT4YA1CIf-7jq{lsn>j4F41>9){<;9xF=_X5m1 zjcb!OEAxb0)x*}1sSb}+9$Y0?-~>l{U*qPgn43ht*CBbD>+a!9Qr+_`>bFVkqhu(9 zsEhUeD(?A>5t6_R0j$k+POd$PpPk{3#o~wV@$P6P;=R|eW9XoK5|6dc{e-I99~BT4KiSnqDk z1MyoXFoUKN?!5y&r{9Z+4ny2FIC6JkkMHGu#xX1D2n*u?l&sI`uxWO6*7cR|vnk>L{raK(uK-R)hVdA-@W2p3uovEdFOPl( z)%nIx^6emls$2~dnO$*;o=rE^b$;eSkk8k&ycu)yFU;-)&xHR?LdyC7DIsOy`k(!r zhqN^8)>|=r5aWI{P>Vkkdvdxz9U2rm#q)COh4Z1V1W9YMfXfwpMyGgR-+y^j8ZnjR z^>Y}dM&Sp$BMksD#M9j|N8Z;QfL3COd?@9)%iX2vZxX$blE_C-hxg~3yQ>lR7rwTf z$;3xvWZO;nA;UTX##~;~60?6}H;2Jw%N6?toQe^NoGe*;C5^@&-T*R{!tnZd zRnW8Ft9>4QTT(3h5LWAM4A6-20G(d#i{w(suvn+#r3Qk zr$kU5+XakSisSK8c}O0$`1KXx;X zW8%bkV%vm^$d6U9e_=P1fzZj(I@U{Ad!-_|K@FNqS(*xR4KHzQ++M1@CJqniK+?vY54Ef{Bl+&!vBb%BPv;n*4c16!4o?65u zL~~=o0(BUbL{R1+e8C|~+?W;jn==9qqNU=GpHRSbF4+{wktw1cTy0-dyBV4^Log zvZl8$XHw?DX!p^0>r$LwOp$>l%g@kUIYblgWAjmRTuo6Gve=_*Yk+jUF)mBiWFW(- zrgb)?AMpk{0A|rAgMzrDNik8kZ?yJ!`NsNx44xqlxuXd%Y1IvOh5LhZXldj-cz+Vm z&0*J6cnVUGy=>vPzoriC56->Sqwq%^@9ZvDfu0VF&2SC&Fl`Ri7J*8~eJ?cWJ5JN` z@5V>vQY;|r5xj_f$7cH$=FcbY84v**t{iK5wA5GCey(kE=+GQ|CNAtFf9s+ zrScqo;{V-xf z;cUMh87B!8P!Ap!h@i%Hz)x~b#7?%EW|kFf?OC@mbYmax*LQ#yVZU}qRy)QxBst?M zrpOPn9#^S#579&xWcrx#4Uu5Es)>s72KuwHUcwy#VYc@W-+%oW&9vGMY@94L=zAm4`A!m+4HSRLvece*baf)97WO#sg3^?PB?LzlnQjf1zAbWkR{dF790 zGC6Ra8U-o1gar;G#X#nD-~2MSP`kM!WffOcRisrA1KG2%h&zDu+umDWOz3_vgUJ)*HXsLK#nl)hJNaP zK2)qerH&{_NULz<;9r$DA?=f&oGz7uA!@;rfF>s=lw7f%S&|Yx@OIxFNsXeob@60@H7cKHu1_$ zM;u!BJ$$qoJ>U^E^j<`GnO7<-g4rk~{r|AmFwL;$jB$?`&c?jd`@F{qbM^YqCV72+ zQ~Guj`C3Qnrsx#%01ybst+hT5i$)3duN6D{e`k+TkCRwo$aWYJYE8^P=AU`s00PSh z0(Pcyr#)+E=^TLm;5bdkKCP2l%B@&GY7Xm47B|1q}9mnL|)UK(717yy>wC7JDqQPIuVQ2(E?DNNZH- zLF`+z@%%`W6nL#^as21ExU`QY5u#LR-K2Q%Y{AY_Ar3&6WJWFuv zY%%}jrTVau3-kJkeYvIDB3*fonZ4U`hH3j_0nNKbKK6EQNr)Kv=~|UpV6A8VD(v^A zd&)+D(jIWHF&8+MTIQ*z(A*0nG~iJ?M(Zb8@Wx?sSXvd$;3WL%Au}uHdEI(LBc_OYR}V)p1G%yN!+gLVc<7 z71)7V)e1N9Gi@`-gSecxXVP>$FKt-}+qbGaGW4m&==9I%W`*#_o#+o~&)U z2i7`owEwb2B^4Fa($x&+i#D>!VauJ#9B`;(VF-Rsd;OH0V8QXG`g_ZC(~r2^HskL7=NH^nUTID{{LX4@@TLtRQ_5zw4pT7#KZv zbMwIXhg&S!BY_>L5%Uy^=C(F5G`=~GYm;)o&=;1W7y6s1K(ZY-*LDZ`pS(2_Xp60O_rLeb9W+bKn3->^?u`i5QHU@Z(2 zGwW1Zs5m7}6OSoDrq4I&z596xYBy_l*gSZgw7{6HX%`Wlvd!UY1gQ^5q*@!H!%!gs zuuo$NWcRnGT#~*|#B*W9dZ4!PHYC{Py|UYS!f?q00fx&sc)r0D&ruPQvO@#nk9>l~ zIKl4J9y?bL4ZV7aAtQ?rFsfJM_hWjeCO#plgC6#%XZnG%$1in0LN|!IjyYr%5A{8= zkyi;1`H$|edg9S5i$P=_^S2N~^qc-qXY7R}mt2m{YmhE$UAlR2iW3Frj6tt`Wz;Hr z#(WNJj+YlPU)^)Xd6I{%Fuk)kF6*+hBp7geKI$o2LHf(O>PcTU~Lbw|&!?`!9i!;m;Yx12c9+`nr8PlD$US|AUgl(DqLMzNR9>T$DQ7tG~%j>KJpfpVXg~O za<=zs7G*98lkdC}rA`6%!r3OAJ7f|DBI-2B{r+b@?p>$P)wy{L7HsCTFfP!s1WG$&Pf(POZ$`%d3ZDj?b-Bzo6~WlUSc?xJJO) zb57LRJgLY>0^}D9X4I_2(yM+9j3nGQH1<1}0HMJSO+f`Cuu(lRA-`Zswlb)(c=mMN zS5aAt2}WsPLgpp5+#g8II>^4x~&Bf>S1TUQ$=C!gqfNCVL)Mp(W$Hg{jgg0 z6>fEt$GSKN7BxX zLh1o-;Lf6(paLq;DlYGwpp}*5*icR?iRM`(gs>|I{1Mo1h(o?DM!|wU z1;F>2GIe{u$#RGO`8bAnCB(H64J{jH`~KKKc2AI3^;@G*4*MWq{2RP3PB(Jj?eBFd zWM&L>?US(ASw@1x7HCJ`X;z>A=^pM(8-)G40P(!*Ckov8-ZEj#HZmV&=Hq^^RSL>q zH@&6ipcy42{1*^WvZtp6Aaer5+I@_28q?gserUsK-XkWqs+f|6;uf0&WFk}gUI4Rb zlSx4ok)(vEYA@8&ynGD*iRBUQDIy67X`d3a4P@e>B(Csi z5G@JNi_IY3sqH44zJJ~S*oVBBn1pC}3fXpAweKu=F(C{o0k)4yyjfb5heSbWhjM~< z?(dB;+IjK*)eHP7YImU5IrJ<^g{B+KUe{LF3!GK^FIWozjuj)qS%c@RMlj9l5yzgv zVmUOuIEsz$*!4cg7-Pa#iK#^5W+>(7e1p}A{6O+gC_l(ZL2RZqEWMo-W3=)su=Rp0 zLu6r+>6*?h*lCL6N4Kk3WT}dYYH@9Q8w`x-JkLM3iMgddWj6+Bg&l8cG2Y{!lf>Ar zRRJ=Tm^!Ex8cmq&%}k^F@OFhd;5Dv(SS_(WOE>(;k`Q8|$gT)@Ki2U1aAG<3=v1pn zAbz`VXS9Ay05@EDlu`VeltS~(?)Ms#UQSbdlNl2xyV`(E_Ri$|v70>v26B7fubaC~ zS`_&2K`qHRItX8#pu=Yn`Gh8$ZjWddd$JvvccN5$g5PQ@z7n=sT|%Bk{iCjXgT4C$4_x7=ugof*I>_xH~S3>w0R?;N+X zun?O`QGmJ-2GHdf^AB7?<7jY;{Y)uGLZin3DMXIWTW9p|FeMQBSA6T+#jC#bM*Wm} zW!_rLEO#V7=jM#!F-x387ZA{`6n7BJWoch49a%G6EIBPvirN}<$hgb6ootg4XpvAk zpy%JqV2Kw%i5L+$CvKJ3jJSS^o5;Z&;5He4bNB&@5$$3OCfs1;x5tGPf2}e3z+1=> zPP5TnZlK#d|2+rrNNoB~%rWb|@E}|mbj4CBpA;~rz3Vp!r*^X2TM4VcV(xdfYJ|2X z4{ler_f7E(!dDbvXy$jdiiWnfWQ}(boVN{nlv@|htW>j)9bpFq^q>X`@ z38R{Y@qa*OOw4SI5+)XA=FUWH>}-s}cGh-|O7;duCX6B`t`Fw}(2a#@aRi^Owu@ z?`?onNk_>KgZUI5IGMh_#y}4=oak?u&>sOLk)dq!`3Tz5%ej22*1uF?Yf$bc$lwYK z$g2i^wHrt&&}7*~i86}vwkjqS<#c|3L6)w^3i76(x{nt;{#|>Y7skkhfI=eRaoX?n z`v3p`ixF|}54-+*hwvlN_XhE+kN*YoKNkhZ_jO$Fjm%ms|1dX?BeQaG_~IQj^eq{f zTquS>X54^F{}RIL3X<_roA6^DDc4L>8`w{d?Dk521%URR*%G2mCtDVW$?Izql`bAU z_LNmrRaI4ZEzNBFOCe%~7Hh}R<9Mti2TGj+N5i%{*PZ3si(fLkS=L3k`3gdFQB!e= z_;De-t;YO|<-*uLj7;xKQc&Fg>*1##<>9_KfnDKiKS$^&N;I>aj?iuNCD4W!_4;-x z+1nbN{|Be?{}__H9+@8ZLw#d$BCPkJ>%#AI^zxeJMsw!-Jxp;9<8G9H5p?tMs6hvp zt1br%Jd0SB62hPdK;qymcXXw=LYM7d3KW;mGM`36-T14TO)WrdOeooJqZ6^X{ zZm~7Au_#Td2Y9dmmk=_&0d4)Yoh;MMR_fnLiygSlk?5{viN9G~-ZF#i^BAX&(XM}E z$L(e)m!$YpZN6Lkh9PPLl-3gmkcXF9hciE;1!P$tUs&&^EJhN^edJAFDHQ!uoEES$ zIww*~XTUkPwZsPc25a>&9te`^R%U?cCA9QiXX#Z~2DOLed0*Mt1}f=M(a95&Q;FVD z!!QbpZ7WU+L_W;(vh0hJF_o1;Bxw{Qdv6S<5$zjab5l`u?KuXG_h z8Vj2Cio1OLI01gFR;(a@PV>O$r>r!WCZ?YC0H$pAn`5U3PSG+rP%SX}qv1U{8wL(j zmkJL!30pLw+i|>i^Z^` z5ICjvXbRnN^O1RMN!nbVTNp^#&QbTGFn#>hbxD9~Fy~j-i5}ynNBjHE!E=O2KEBN* zt^`XIx}&DbDvdG4FHwqnc^RZ+_fzM5Uv%HIjbbU`9y>Zmwfx0c%4ldXc~ zDC%~ZxoTME4yo5fGi9N>Baun}HMg*4kf=@0EuGr>ZLTG!?nv9r?N+CkRY zdH6)n+W<#%x5BXi=~s~0FBd2cTthqShNdj?pmXAPCBPIMAfYAXEnYI{8Xr-x7%vg^ z&$4@)G)=WEvzCXjUpvIam`~P`Eg@Da)|EcK3KNw1D0CFB1Q`~pTAX&4Y!7oVeR<<| zh*U3yOvMeAg@t+pj?BPJt3f+h($Mhm<~AeU?Pz>-IRyDhfRIUXVHSpeCwCHN}63K~n%2PT%r?25?*7av?kNbnTW4+XBKGy=D(h~FS z=>fAjj>^|MN4z*m$O$>T3HojsX_+5V!o4!Z6?IRNH!-V;&P94E6whQ8ugk%gzyJeC z!~y64dE=iJ@?2k20XV8LFYPnxCRAJ-$7kGdV5YiZBgd{Rl9aZu_UDl&!>qUFZ zp`90_x3e*ke5|YLD{44asp{1I%@j1TO%7zQ@l@5r(niu00<4kd^88~htB5!n`Y!?7 z%kggDY2j0hF~1_H_5voJv7h<9av`xJb_Am=4zi(*o2zw$;uRjF6Ap|lmF+p`A;4@V zP0gYP<=NLO+s5>tes|zCWW_1cb3o_MRu?xD^ZAj#CNzUG^r>+=s)_bm+g)L+p>hK^ zL{_Ue7urB(@yg8<0d-V3N$}wcgjUF2+U1RdWcjBo0W&PDK_$YQVIsJ7+87CdP?7(k zC}Wk^(vS^>N0$(Ml?SpbEvT{+0&9=9pFMronuGR~=22pk%Mc_IWfEuAFI-Jyp`{V^ zDY$VD#HV52%GD|bKA5k*^_mq+(HajGVCB7iQk{jR+w`MUSi3hc^)iU68$-CX&0P}M zdkBtiF4n?TG#8&o<%OefRz7tP3j;APOo2SAE!oN{rHQY7x_W3im0D*FBO4VP6^Rz_ z#3yZt7?-xgTrAtbc?yKbnAWOE*;u)>L~+1<+>l>Uh`Z>zsNj#U8M~%(2H!h^b9||@ z;_(({@M|o&R8|*p4f18ma{XIUiZ1 z3{LVzXMvXD94Z8BBkQa7FnRjK$@@d*3Z~i@rmL>^Hxrjm@qA zQ#xA?=Q&=z%7myDjkR9eex9TQf+4GE-CZI0vvbPy`4Y2OgwGSPSGZw}AYZhgEzPeY zIr%PT?V>y1shr=xHTN}xl!qIgWuGlMY(+DTc<;Q?*}RW2s~3~J<`3^}%!Ld~;mmS% zX*7x46ApS_+hBEyP<%n@fI&>ZpddC%nOv+}ZJ4(Yd|!iNCD`4z_~llcUdKX5_S|I9 zc6J=y_f)>C80dL)B|}nCs4hgxq8c*olPKNSd?UM8i_X6Vv{dT}ENR6QzIzOWz0gmM zzr&#d4a2mMZ5m4rJ4%G?L@<_bw9-`qbwcW0*E#dAKIe9`8W5khL`K%wIB1J>7s7os z5a#|?WrvZ_HI(Sa>s6P{7-&hNC4F(l=RzXW`=Q^N!*0g1NY3+Fr55li#;I$C6f1@w z%ukgQCqCug*iT$2CEDsApsZpuK%{fT<_f|P6`8dmBf3Bh?d@78&|kWo6YoX*j*qF#t8jW~l7tDcL<>7Mb0(S(Umrym6v9i@G?NGm6Mu z%(oM(2h04nWp@<7(Yh6-fAz3 z9|HI(NHo=xh{jb-QDb(rAr1LV0OC$WxHs==XceTtJ4gH728x>dGLf83>ubJFk;Ok`KSZAWMyP}q0aBh8oJAd!fwet>in~N z7&VB8yykN@U^A(QM*t|8Z0HGg z_3CAJSE6z$CKA2i4eP!dg~$Or;yGZ|&zj^-MARrM$As820r%Lm)LG(EDT>)MT$X^c z<>Yma7g1yk=wu{OK(g?J*Sr7H?Q82n7h(dxt4%O4^Q*h+(UspdG?G(Fc#ic?P|ZZc zu{x4eDqNY6gXj8mPIZ}g?Q$>>u7N(*foda10f*|l zaic7MBMYkec6Gr^hX?n`C$o{Lt_?e0YG=hqiJmzGfnLa%%6`ozxl z(XNKezElF@7DhA&OYCPt%lf>zaGS(jk}cxfI*P-m>qzZ~f}mv7=MiPvp~RZc=z7!% zA=1uu{Y$K#W*lpddC;gxawfpFOCTxpKjHd}=$+_dxOBk%F0N)Ap<#+5EN{BDrI@R7y(4|N#o$M}2pP(Ktf=h*XTR#ut8E`Tm7BECi{!Qx}w+aFGB`~}8wIPNG^}S{` zR^EjWX9QRLUh5tMt#?@s%?GAwOW|~=#VzA?mz*a)eqoJ0*L>k}<~sjb?RrT=3x%lX z9H;Q5c<|)1l!FaspiEiBu@Pex8Neoli0!25!#rIT8DS&plWxhko>oZYGWAS5u<$X! z#^RBK6mPjGj#qI!@3Y{q193H2aGWcFBjqt%lg<{ zh5TYHXux`f%yMeINpG(tVrXv0`X3YWsne^23%(V!0s>s1k3FirtJH|dp1yAw;}_HJw^*)xr`r>xuAdNR0Mr+*;N>|RZ-)@9W^hRz5C%C-tt+5yk! z!f4?#!7X#)0kg(yo@#jV&TssVZpYW+kscND4}B~(h|Tg!E7~ZvZ5;5I=#fp#*W+4$ zhhZeb2pZ$}OuGuq$OSHw49Q4nEkU8)wvHvHM!#6Ol)ka`g)ynwAadn`FrJyxXA|!4 z#f?}YiZ*U{>-MURZweb;{gz+Ft!`1bM;{S(zyIlTF!*CA3*ObCe}q1o`=YrR$;_2a z@QmFKeNN_VDZHcrFH7ShhRug<9egHj2P6Wr)4UT9nHUo)OEIs%Ve<7e3&1BU1Y8Xc zF&ow__DL(}r@XxU%oCqNN=R<+81uy)f==E+X54e`*#zSOub4BbkHqEBvpl2JfvdW4 z8V`@lc7nfDuUwdlkyXjDAP#AcnOZ#OS*{xf0zUMG-5F_T-1-+e z>u_jB=<{$O4_Tb!0nu4Tr8vP7UlpwolH;8FCiSn>hOvxda!i3G3PR+@3VK%*X=M`K zLITmMi`jmbX`xkOQ8rlYfD?wF(Wu1g!$fQ+9|*t43~%c~=@7W2u6v9I!^Qg7nn&|C zia_VuG^i6RnWA@Zor`eKlcMp;xk@U>0m5drLW|7&Ia79ofTHQ$9X^g|MqU<@{jcv{ zoW**@?%)$F7hs`!Td}{Y46Mrn{`ir7=Drf2BAA58eCcgK=}}n4B6TJqd&9jH~xsWZ0m%; zJ+UsLC#r}3P z#CrT##zZp9*gFfPjio@Q7clzU+k_2|oo!6qt?KWu;Zd3+3DpQ(;xh#40fS6ys)f^p zVsBLhY|ni83O;lKsjt3h;*tt^b$EK+$7F2!5d5m~Znd_Q_?o~a|va>*w4y3-S zu}IC|N;rqFX`(!-ppC==T4*wcrLR?^6Ju<44eE@YBdNeg6Oz^uyejh>qv4ic(wPsc zCJ4GtK5K7_75Rz#zcE7(8gk64DZt}KwQS-0%YJkY1^*2Ux!-G2TZ(saVhG!bQcv5< zK;pFFPmp}}Nw&HS9u0DLeMPjr2Dy8?&`e2}cJUy*P05{dtl!%ZnenrNw~+-Es@1W2 zht@rH#vjj)?k&{DKIrRm*CO<6kI+SbM&%GPtp-VC+GQSoCF>tydRIyIG1gcPteQVHXtS-(dk|8a-3N}1I@9KGXm zQ6(}5n7P8Gb=>g4W_lx9otp{46RT&rophhZq&)|QPOiFcLk5a?Y~{f}TbK+lSI~`# zZikTO(5)MojcTKL6%)M!A8-z_j1MMx zZ9bjB`1N#oa~)7~9?oYmm>s04!?!}1CK5HmNQsR4(T{(DpHsxaM|u?YG9;HcbS{19 zrCDS&slZ%Jjy?uCHVxiWqlOMWbE*jvKA)(#?usuuzbSrTRPC419!M=Wu^S3;0jV75 zm*v|dsdeR8sYbKE3CAXw2neqx3mbaRHp@>mNi#+t!%VK?fa`*$C*Q!O#jNRo++s>d zA+*Uta2pHSr_1pa3(G`A>XI`DTV5d3D*!3A62Gz`yRJHf%OR;^K(coV9OJqpiu}j5 zlDJ#Da{WCNh^Yc@E zZDgw~!kG$T*2ypE8zWa0{MQQff$YhsbUP;j?Nw_ArE6TIeYBGn0tIB3*7sIgGc+F= zYfM6s^Wj(>z_&8Lwej+?++~qkto>)r>2um4@e>jAMf(9eDda}<`niXo+}~7s)Q$P7W!VGLGq z(fF%V`aS=OJoa#mlO$K#>OUIRXDEQ^S76xuk;_R?ood6RiZ|XFCN(Z zNMFB4!}U!zZQfbRsn$f-RK#)a^mPsvN$$~F`3~Qf-Q9}~g;I%~!9-^_P|{=c3bnTt z)RyErbo#QncX<^4cgVi!=@fm_7K#qZuoMw3qPjhuA4QAM`Hpk7=BsFHCYzHd^Dn$4 z^tn(A29u9(mNB}wUN>)a4sPcliMbLL@BWhy=2)tlh{67suPX+o{8;9yL2bsPni`WT~-nf zYd+YAKWUwN`Na3RQvH4zNG-l9{8Ryv0skw_mnIL-_X1Y~h@ z)8IU2uik`5WxzC)))aP~^a~Fg%O{Xk^#rZ0dq9A>qkOt0P46t0($KvSXUYijH54?d zd09g_%dNc`sEKmUEzae!_LHTb*j?iVDCMbtbaNCu#0Vz$1k=IZgmCkOx{o>}I$}K- zR7HtMAB{0x&Km3GrP=v&>_SQ9`$Dz#s}$R87(xvX?$UvCJLNOBl=d` zt<{tkFk>)WCncRKg0RqDe+y7^Kos9r^%YHNl{E+R-JB6*G?9xzu+gUQ4Q0$vMyMki zrTtw)ZU}7eWB{edEwc>~ujc#?39&{DJE+*HvBeZUHQj|o->R>fyQ^@yKL4p^{-0G; zLRCTQtZz`GwQ(sPM-n`n%?}WOPI#aA8E0aufbfLeL>rKaPDX; z9TOX78h4^0@JR=d@=Ppv4G~IiQavG@Q@Pr45)bfG%X z8v_vfgHa!C*dS%m1>`{1*&-J?T+Ayc9_QEyGv?0=p8!#E@-Jhh#_;Qg6#)NKzkwmS zm85>}V=D1TB+U z*uSko7C)aU>+Jj#c+aaPeb0FGyJZro4gcHC)4Bt=C&wz~eJ;}!SR2?g2t_mu>}30* zBjhf4ytb<@pQ&!MGDw}Iu<-63IJY3jFrSt%FflODQ#s&z?={wxGQ4X(3qCoagHO+B z`G`ZZ_l@N-)g z)bE6jg1D=$)D9z;lH2ixh*G%oDvzb`6F!uXj=#3+U<%Qc#<E@UTt)6ikr78Gwf1pR|5t;~Wf$X;_J4M|YbB$I^Q zWpo_OrsZK<#ty*V$(U7BV6FYfRR&LRiy&G`S1>|EQvDi1>Y{V)p&91Gf3KBwey5uK zEAujna7X-6J~M1>B=Ye2lcY2)>+6!}6P+<~+c)p>#4vbZkB^kh#WE!`0zlS943PrHU)1(4$>An&60ZyNbt(iZ=Y0iWw#+dVi%r)3?0{ zXK$9ns#~DP+5hFppw+W2RtR?v*qWP0D+S-bh2U{kF3-blcfEZ-$ba_Z8ZMzivES{S=+mijs`2R4gNR4rxZO% zZsPW{%`Heb@#ydG1WX&)nIkaXqNX$m?0mzX`+}@BoftVUOZ3n}eLAExtE{auIvV|E zs}%qjS|}D`_N~LTIi@6VQ5@AoK&4b@JqvX?OcU@Tn#}K|bSWB4 z&!Pq7Nq{B1^3tDFMN6k}G<>WcEc2coNwOLOW(4(w*isCY#FSmZ8sN25xUSCQcTB8K6x;d}X}w3DhrYfuDv2lEr^VdS zOm8R@&VoV5NhxM}B zunSvv>Kd8GNNNvpO1HB#rRQO^TLOvhGi`Q@V`50BIAZCHX$pc0%%2aN5_~E6d)InO z!s>lLgl$qys&FCbn}?esQw~@yr+sQ*e;-?dS*|KWZ1!h5;If*RQw&^OH{YJx!Yqy^ zY(YMQy4ziLX^CU6!rqlYkpN}~@UfxQ2VA8;;0`ts*v^fkPRi_ytGjo~x{t1up)<1K zR*8&mWz$8ePN(tpQ%|m1v=l3`^Bb3-`zQnWl?5!hL_ykp&@RmCLi7aw z@@&kt_s`_#q5Z6pQtFcqz51e`z$y>>xE5G1G51 zZF|7|{@eNtDtedtQy&wwbtYZ-brlaKunq$66p-=GQfVOo#AkJ{&#;)|m0c&QQm^>Nrh;w>s>xLtSYHDUJH>C3Fep!+x*07JxB#MkFN95q`D=1}Zf*~L(LQzt1PmZo+vjjq+d`8l) zI?_at!C;|Rv}UyGSwJ3=z<(Jhre5Q+?tn-|m2(#^l%;*a#vs)ndsJQdW&Y$?@UTJI zhJFrx&w+8SKcN&Xbcfv#EHV}d|4Ej~U*s?bQ>sCviY2FysFm=$!qD}8^4H2{J$2&! zA5+IiqI(gMkJ@6rjE|wBUa-6R21`^0Iud&QM}wc?k~w-^2FO@IYW0+#Sh0zNR@ zL^VIq#k^^R<2lywpo5Y9Qa|9NgASXTRHYA{5H!R4AR8Azo%%|`)sBylhbul)mN3iK z9|j;X2FP?um1hG-e-|t+Q|B;~xh*3Gj1E1?TEo$AoZpvq#`8w6%&tJqWxl+U>^~AN z#G27o*MBtJQHmAWDhT^Vd zzvh#u7UotO+5r8ok?`jCj2$JxXN?ZL%QNmh>r@279$=vFy#HQ1tBO~{F~V~W2VScQ z$;POrd;>3HmL6>r_KWgjjf&GI6=PeWjAJB=aE*HeDUDK6_#-?O{6EbJ*&fZKGgGsh z;Mw7Nhba0NGmhabDk^;Q3j^ZlRhC>bWCZ33T9W^x zf=lv9K-}i=>V1$^GqGz6pSfHzAYefQ%aAorqYR;3qW^cw4MLVpoT6Hi1-^^gPompl z=8(8Z=i*Wf{kL|!|BQeEJhD_?UPPUdh?x$Q{qGqBsUm~K<^QXQC`4VZX@l#5_L(n} z_&qXPXZ&CR#hlDzZaals$W#gYrFv6W&&0D_3Qy)j?2it)R|>aV*h`?)$pMVILqW#RiMyFL&;^hD%XgSo-M~NXv<84D{d( zW$GXrJt__3_f@Vih@XZllSKYPrdGREs6i~r2dCgd5^^Bzj#|l#u8v2Xzy(~{p&;G$ zFTjY#g7-+8C;`ChO^T?(0_^v{5WHJ$B=3E2W0eB^qPFc%N3*Y138Ar^&bHD>wh+f! z>cS>EyjkXk!=IuUl@b9%^TcCX8BM-VSnsZ22BJ%!d(L_jFQFjVy_KV3x`GUaEzI2>^7+WM{ot7q`0~!(Mnk(nGlq-=}Gw%5dxN@9&SCW81c8uL-;7tIbWX z7RLO)AbF@#U<%xM5%A1@Bq>d5Gfnz^-OW06mEM;+J*sFId^8fDbFZ^KakbPOV^fof z+cIa9Wa-c}29Bn>i2p#z%%)#E{~aGpddU_4)*HsI(=h6DIX*a#*ozFm6;m(9;9Vt$ z!WrK^-nBI<={$UM0M&ZF%vtg<@d#c=a8EcMRutv% zbQSB6qfuH!`o2iL* z;;A?W3J)K@?=|&1Bm&Y&XAdFozQ-1_jQ-_4`&15EoGp4ZhN6A4+vbDtv;GJ&l<~LG zudXpk40@&c`g5m&$gpQjcn*xz}+f)@%i2ieZm1lF`Fqw)2FA+lIDT}h15kT* zyV#>ZY!t9aVF(jv5B7zZGXe8lT$`)GtVu21V7$RlTJ+Ng`|rW#cT?9ama+jS`$+k~ z7&3fY_}KqC6)>h;V`ydoCjM#e;>JO^TZwuSPGbTc0ZM& zaXR1Mnw5Lcm2^!96`xIhYDT?MFSky(*Gbce>*;0tT{i~W_{~` zAsOVQz~{72#F57nV|hmMd|BKp*F9*4tP&qc#lc*!h4j#N34)&h1XoG&>-0Ds&UCj#OwR$qn}X5+?$p|zkDSo#ncaMzv!h@UPH zNu1Gv6K=!RSkUDzJfLeF9MOP_(CeX8=4-enF05ub{L8aP346ZH(J=p^T&v>_VE)W| zI$)7I(Ja+c4VEcUj#g{7k}ntlMmcEbOZ95VgAv|K24!Y_K9-vXA762In2RZ5>Itb) z?7qY}tn`$GhRwk8xC@CI*%NN)$T`ipC?t|BIo*$J27{cK!^>hQ4;yv&I5FL8hMtVrG*?eqy^MQK z(o8d$*TQo!8fuk(nFXDtHs` zbj?PyZ$>ed%^7>V`vAsFf0|i0j_%aVToQMJr8jfrsKq=sN(9Z^L6F>PRJM={1lfJg ze>Twl7|lM7M2}djS%0X?0IOsTPZ<*Q*W@lq|^s??* z30o;yTQEyyPg({DK<<*;J>H1fG91oWhOB)d z`()aS0Q8Tb2tTlwQepoY8kmw(U0iPVc0fK<5t9K6H4DA{2LY)FB6HX`?G#seDo|!6 z__m{&I-44r8PR7}I@oIGH?qUxE1Br?12XpAL8TWo5xNTrSf|@RB zdRoAkxIcQNPf~d~2(!Nyj7&W}o4qV)kcSAq6Nvc6)g9DMOxO-5@vR|b)MiZwM!tY{ z+Y{jdX$e*A>HDsg4o<4$jYHn!_dc+FRl#&zR5paxn>uo8koJQ!t(ar#GtTEAZ~qV8 zcg|-t7fdq2I|ryQ!!H7#-ubJi_RP&65m)0Ud|n|g%B|+$LYSSFja`HV0n1*`8)=XU zm3r8{;=%l4x;(pPh^R1$@JCEEz!lJ`bAb6<;`!%p>Qa4uP*i}W#JVFx40Dr4>AR_* z{r+1Xk6h z%$}z}UW_;q7p*rZY?Q|)Z#4xCb@lCn56m6#?Wh>tn;W4PEvz%vj)TasR zmwF3UppvvHtnwBqYE#iIJazsI)trDvW>}?r$acmH3zwTCVRPxOsHtw`;!9B(2rr+e z!(&!-MvBN=smg{Hw!v&+lK{d?Q|fcU&m1BMfEhS{0p+3tLGQ)E_KksC&K~c{^38CC zF(bmei_4k_$J)|`lG3uu7F7y#MDMp^XKCU?=+YFyP=ogRgQvwPx6tz7s{{kl(ER}!q2gXG0fQ(xKI7-+dJLuy%8VO=*NMd*2U!q%G=3Z*^L zc2aiIX5S{oOfPu9Dh652j0vRhJ`r>zYhq`2MBrfM?5gd;%&Am z4B>lOSP|CW|L&ZDs}&7LjmeRSFrSr*iGr5#D-$uJ?oLRVKS!!?5YO?B?x^?oi=Tde z`_{!G0}v3~+rQ7FE0EeLp^ClXV_4O@X5oi6f3%LWP_=FiAvf>m9hAx-Vz%S*@}^Up zdp8nMhmSYVBUDO-_jT;**Gsu{mw0#(P_r9I2+#0D3kDK;zhN*Lcv7GvZ~+j`F4(>v zidwcnwGOFreT_3l+=^kdJkW2$u=-5E|E6rf85vhQUM1elYA3ufsc!f+vNLn6j;|qm3pn#N~eeWGBZkEroa$&L?`VKx?r*6b{-(pm%B>Shz#yP5bc185#y*K5V3 zDX|E3Y4pim8YmGu6-Nqa3f2$oXB5cx!z}C}j@4Wm=Jc1lgs`B|-Wk|ZT(0$61)e)# z#7rb4EG|AEuY2d{(AH9PegDwkX3m%*yPgPDSsnEA&}8kM;(~TtmT$#k4doaQZFv!k z5@YKfw~~)|i5yWibHiuij!rD07n*O0TjQjL$MpKXME4*D!&RsN?Sn0u`Pzw_#JhED zl=v`sn`|oWmN!kh`PB#$VljtB>sKn(;QT z^$`>(o9M$ZHHY^()`ocTwqy5 z>cxhdHNPMI8$NKDJ?jOIoB2$8B`ZZ_=7)t(wcq+XMXNSf0ausjSQ^TEbdf&?@Y)@UY`bw#K(ZS*$SD7(@-BCZ!g>{ z)hQ~IDIVlFC-WifmaY8=94al@hfQy&_j!zel+MAJ}ySip>9cgG{&Ug zZJdNYjLOBu_8l{FETdoVKfs4aVKD#MYG}9i{54o|XW=0H`OvbMU}fkfsqyKyB<@~o zU{qvW=*BI2SsFYA;YDQFyZfZO*+Ng7T&nt{)q34OPqxo05ItDb=KD}w?cFo$!dtu) zFy)s@MX=&G9(nfitGaU(K&#%{6S}JO4*0y=oeYhd=vbz0V_M|*=ygnbTi6j`m(yQ> zK3@^Itjtu1p?2L+g>D2IG&{RsO2R6mPQ_@)NK@X*hFqNi!R7xv%AdpyobmM`R2;RH zd4BPHcYKEsAOiv-3q=OH10nFosSq$mzeH*WcYfZPMOiD}Og0+tLFs$e8$O7U$VlUK z7mhy=tYY^Vb?JL4cwe9*PKC_E9JI6Dp@1^Sk1A)C<`qZ5CCg0e(NQ;jZH9=&ML+35 z%Cz*~A5c^FUCGXSq%&;3ouSd4TC(n@u=|*R88Vbkt)^|IlRx~n-7gLa4*%)F@zU&& zSh`umoQSm1%5D`GXlKl^d8P~8_9}SUcNV~h6+e}lzLfeZdanUay|<@_S5{v}F3V48nJ zeQT@f&4GTdoq5a=`X@`V=P!me2Z9N^Zs9bnvT+3XWtC7q8qFGS;+zzRIwYl}sx7e# zi_m$7pL;>v^}lj*zI1IXi1)Xu+d1s?;F~fYUtPe*8h*(^*RPV2A^i!&>Zsj&L>0iw zDav5H5fjr6hurlm_ID+NCYSSU1qDSPr>{mAur9conEV%CE)d;^%e5%E7U|Eu@$eOD zmGX4Fb*f`BDQVXoeDmPE*0-*1O?J=uk)E{P#8_-~ee9;FZyR&DCrhY!_3-a%ay|xi zhf&-xAn_#s7VNfmInP%&7zSXuX@j=fRu${H5+Q8-LO=N(zhc4yKdk2 zVjO3$^$D7*vIj0BK-^m70d2-;I6D$=6q*$KS{l9POzk1AxmRg#zWc*HNvhBC0J4SF zy{K>TH_3N(lu>L`#%00}{R-TM`u;?$KX4k~O7z-V<@IlVH>cgt7o$v$&UK{BcDhX( z2zB?C-EeoFHBV9SA>MbRYc_p9x|{^OztCrwj}Wk~sUhAYKn~LLV>A@QDsR1adf)l- z$80QCP-tE}EcT%=O$XQeehfRm45v8HKQ@W@eq>u+z$We8HOu3et~c$Q2t3>{)*}By zkOZQXcmT#6_Zr0{e$tI=8$r~Yj|X6t=??Bz(oI*$5YzP%y94|NKTB0?CwTN1pPe%@ zIAB0D5@SDb>nih1i6_n6!(ke5Mmqx7=A>#Xdmt`B=I!7QDl30cC!O<)zwQBkX;=;u zpxJJs#4HgRBanDD&aKb8wZ=G{u%C_1k=bc3ogXn?_&8l;Ev2SmW%VA?Vxz`6SM_7m z7iBrCQq8q;Hq-hL3F9}PcCXF}EMd*&?zl8M-atEbmT}V$MMb$He5Gqs8GtR#2z{~D z$5fiv{`+!_o@3%b6lNk0E0KeC+MZPF?N&FuK^sftQQ3--vO8XPK&7Y-gDs0R!XUys z@G|tsWHDD!wm3H$ZiYcym|npbGihx*1SqLgZ4-f_3&k$`*vD)*de6G?<>WNKmBlG2 zFh{7MYNHIkzv)jtJtc`d<|n$acc-t2Uz!uo$;FYaVUO#m!k4PjC%a!Egw2oCb(9i= zh>MHcf9!YWJ@Au|fT~aadbv zQ%ZDNg8Rn)%w-nyjYr;g<1{of#ODBcU@@-#NCtGEWwfdQ;Xy{P)7^!E{9LB#1{z>o zUPYxk9#2UKoHxzL6B?V35Ec!0_je}Pw+Mm~Q7$`jO3W(bp`smj1&26_61iG`D#>^N zUbZ>(KILh{TF{(y-|x9$6@5rx$nzE|rwRL;|EKPoif$X_)oe*7XD0uS>_<+!8O_%F zea4t{e@n?Q`bOqU^`qNrI;%2lo#V${#}=;5C#By0N8X31_9z(0zdvs1B_8p+xUC&G z?S9tdp(#V+Ij(6V6X?kot*RGFB*x}&DoqB+Y*O= z2a%rNm#0NimPI>_v{}==`uI7$wlVXUJ4nVjRA?LK5(H^}vh-rswjgDVI34b3XTHcj z5TUtpdxVjFx*8gpS~@vBY<-jEj_gR7o`T;w=Vj$XuwCK_Xlo5&Qm`I z3Ljp4&tra8*vInS81R77_Bgpt1c_D5ka89lzp-SUqVnW}F`-nGq2iNJVk&*G`@ratEG<1jihbMOB(sYG>(}($xUMb%! z@iyFqM(!l@B=c!t${&@bLmR+>%*Z{uQ0Y5l2<=#+Q6mQQBjX-&d$q zmaX(*^UOyLtN)P1XFKM3NJYH&@Ue=EHsR%6fut*!Qh)Klq8F;+!gT@dl?CKaN;z$d zIWg_81`+dqt)t;yw*erx03RX211sCT6WGIv4T@uhyv0Ae(kJBn#%^EOFy`le(;r+T zSu=S|02*o@NBA&*`c~MPB}G&7E8?P`q`N1>^U$HkQYaz!s=;&cT<52M)BI6)E!n2~ z^m+bpj#o;9QT%H0usD8|6M4EmjHK&sNv|YsQ4>oyow$q#+UVhNq zP6(HR-x3Vi#W;U=6E3h?(Z4~R@4U*|fp2^-{u^K<)%!bOOgB-lsl;lBRcRv(Yiq?h zTpW_+s}qO8&Gd%V`Qh6dv|IO7y0$YX-=Z$y!o73Q>XOeqbLsPq`nhjlY{Bi{@Mwr` zt?`X?xF@So;L-7R{#3%wjyoNl4Eu8k%3_1O%_2XbqnLnPyZ0}Y+_{&AABwbQ^_No-+BpwlA7<0IPpf;%B_E7y5G4$G2<$EA6+BnZm2so-6L zEw_xP>M^!@#H9#KGzJs}MC^{f~qQRo+MU!bk*Po)la=EzGp^OS~GY>9HWW zPJR&i+SdInjs1&PSHxgmc+~Jx8xMYph`p_U z`k^qfC56EBK|a&n;tfGJywL-i(=|5qZ&VAdygDEDzDVOkbS%BMc{k$ngKUhreY@R6q|S9 z_(*)*^u6pvmJhSKX}SCi^vxA44B@Vpb8xdeN+_l(F>DwN1ztg=%=qU(C;Yv{qapKl zJGZ4j-IIK43}okdu}@Ss73cCa(YsXE3c*-j4a{x4lb+cM?<0B>XP2TrB+Nd!xy(5D zm3-6l`PsegwZF1?BVvr%{yzXn)MhnNkINa@rhh??raL+^{XI6tGno+J1GnP0z3p!) zyy}{nFY}fW9RbL;@05G1W2a(-FYB>BzQWdHLeciGn*LV$*&jc}gt^ORQ2Dlxo(aOh zVWBm&MZePQmh|!ZbJeDsND$;;i2HNi;hvH49rl-uyracPDk-h214!GN=8&D1RN5k^ zXJ^8wR>6j^%>RB*X!}!CQKanX2FZRQw__*XDIV&PK`m9jQZT@kwC-$@REcaz{1i}A zQYvYT9D1c8)iq;A)v$L`AOGj_Zu_Ek=AqRz{<<;ei%hMQHyTJv%O(!(a5^f8;?Y~W zmOmtuj;o?J;HK|;mUu}2c)MV4K8N^g1*3t^e3Lf;6ApjK@mt-zU6dCz_V}3V_eE<2 zM4o|%n4O%m)`q|nLzqvrV^+SVW{OVwoA(Z5X@9~^)r*I;YZaq1tfm9b%)-b`k#6%O zoW^F4Ux0S?(AVAyiXxYNc8|m*{Nad|+;EWT3hLd};4ZY7v@h_1#|J##V_~ZG*)AxDL4*%nN zRI&U5+MwZVEy&j^X?_uVw}U#30O%ipqXcYcJfJXk69mpJ^ zYJJ!^9W6!&?9O5koJqA+eRdzRTW#G#I@g(sJkx#RIqFuj_b_2gtb?3Z+iN#qCUl^p z%h;;-1723qM*K57NZwB^C;kHg;)191Y>=9$r#ykYm|msh_H^EO5gpnkPY+u~kL!8p zPAvT$XwA!fq(Zrm`&L?4w{3RGHB$bo`7Wv20L|qE+UP`Ks|@(ao^~e{kSbc#<0EuT z7z}>5w1(cAbcg8YJX0Lp9rjYY1RXTMKGj+Nk+->^qpCIUG)v|tt{}gv2q4@vL(rM^ zzOJ6OXzdY6_^?U8*jocxeFDEq(C!T&cv7t)V6+nw%(#?=+q{?GUgh#nC( zzi;K6);(2afI;n`lZNN^dANljpD^F^uGxf7xc1n(!Juyas&uAIAfY?34B0<$2(T^z znpk)PX8nn(HG}=+skA5i;iuD$CVIj9=X{#ZbH;;ixtLvT-ih1ShC;>4hZxqKQ2xv2 zW$U z{%Rc&9hYkzvdlhfkE`9H?bX7rECM6wCZ<))wezyNYf~^OqAXp zY{w@@yYQ)K;}qtA15|`Q)op>l`9%K}{FKXmTBhr!@YTb&-P@5q_x^Jb;VJEw80&(} zHp3ew`B*e8X1^F5teBUVXTZ37aN#XzXK{bwF4MzHoa zJ0ut&EyPMwN?$&ofhVEy+4_52KcCP+SyQs%1MfVdDm`IQ*6_|4O4L<4R7LrBQ|XzB z=AQ%64oLR)@O7cn&UQztS@-b0*?zJ1}gj;bWQk=b=SZVOeT3Zk)bquL!!13GIBDk(92fxw5oK zl$#eGe#+&eYOb@xIGmL3Bin`WIsg#4!;|GV@{mzkr$7vkOtP^?$y^Rz!V^DjQVD?c|Q|Ca5A#JeedPqoNwZN{wy zWXl^LUvu)ZUHVqqlGw{U>69OfpnHK^TWsam0}1yR<2R7ygT>XC(EVqodnLbS&e24$ z*XG+oRtZ?B5KBq|7@2k#3~y__^EwUfncb)f%G*&Wf@#FAxc#f!3zuFl{OU4JCQ=dt z7Os%PD~CH^#*Mx5`L92hn&c&VI?kEd{ndh1{z{gG_pcg~79`qoZt_hp(4p6kSEEcb z^m|pB(N*DcT~-Lt`3p>JL`FVurREH)kq<1Wvh|$36I6D}=}l$}yCfJ+8X5`QHeB!a z{Hqf$pP!~9ORD`$tZM*nCVgj4mRzDP|GyNSM&hIpBt`;ymodmcF|^VW^*>5g9!aO$ z*{@12cFFmZBTAe*bsie1JX%4!`oRM+%TvOSPF2S#f21$Hb zQC?z+hDn#N>NKxD?`jo_zP36uWA(Gr^)a5Y{fDC~ubDfFIV)R55bHCIli$CF$!;hW zz8~GYS5K7C?FO0Qp{Fc|ZN8@iun|!=SbKj86e>bIZRze@x1-0$aPTu~9yS6S-fF&g z2kB3gys1-}Oj|D&7%}~m5LJF748Kr)uP$DqjYHcWsBDkz+p(U?Ty~U4-)`z0o}DAV6+`lEz-o@Y^qFslL=#ay&+Pbr8ChJP*-BX z_TOAQY*69({Jv_X;kZn ztlB#=h+SmuBZo{s_i`s?kc9EB{6q68SI*X}S2IdwfKmSnZL$ z`}u5^%}KAYO3IhQMRB2Cc^`Pv1mN0!^no0aHMMbGSiCGewbWCnn#_*?gRT@&E% zZ`+-5T4SoTqNO@pI`si}&z96dV}*9QsqQrYtKC-UBe);(IcB-3AkKv@ps*6PT9^GE z>(sx0TosOJ&$qd$c1$71LQ*(-C}*7(SE|qAw3+?kuMLhsGJI>^4vH$~M9!RpLC>!*&p*Xu^qd>OLslng(p_;-X{biz^<1XCaxeGHm6bC2>0Ab;J;t7F zxLL`GoJfSsjVGKPW9IS9+M9rj(aX45Jo}w%pA(FCksfs)^F%I?tzwH%7fm52$ualU z`T}tMbh#6RDOyAn|@LW5upBUNS`WBPTE-MK}lr}Q!j^6!e@@(g+5Zx8@el91Siy_sBvKBZixo9mit1EI!{| z_sAq8__7aD?`zZ@Kynbfu0^mmyqpxR`SelZJUZS+BcbnN@Z!?2;_}Vb(ZfA9tnFOt zK)$7~&#h#n!OC#9^p6m`|KGAa~~J3*)Szy;lg zkPg?%ckOZ)OJY#Mk_hH&{)jPq$wS-p(Fe7D`v~p`6#uTct(tMwU525i+*)NJUdo9s z1XqJ8P`;IvRBZ%#4#~yZz467Toq;!2O>U;14jsghT0nwvhWv+#2%HQ*_tVVB4Rs24 zzn**je0W_493xD7$H>Ms{ZtD0lCMpoyE@RuB>Ww;UN+*k{s<2kjSWg92@VB6;1=WXFZAP(vv^ z{DpO~C8+NDER|7u{g%4`+5c$p*aVHC=G1$Y&&;LcZZYI$fhrntu8Gq zRh^^9b{v>ChH-A75Mu0VTADP}wpl@KnoGW?DK`*|J$p5Ul5^TPw&z)^VbSMh-{4Zl zk#6bDEo(X&QpiF2>!`7m*i=?}$DOE_d$?}nEm2XLtP6ocU%%|GmUhZ$>bq5pYu#Y` zj|hB|gg5wTs!w{%OB>s>oe?z&q9Mo@ooKkMd?F!i77v=RI>iqNDW-+l4SrHH+vA)B zVvuV$JF7uNd^`aODjeLsh`EO0rvZ;_I11aD-}1BHaCYjG2Qz3T1UOj=F4Lh##VE*f z!J={Q7&YCoNovY!GRSzJ()&jfMg*^SWvoW~xgXAkjAv%?F=k#A65rVfsq5KOHQaW&MNC4mo9o|tJ!H%Z{_u5-sm=WYkKcT2rPAvq7Sk=9?ZuR0_U zW?QI5psFJI3Qxr=&N)kJvpQ6tsVf1~4I6YM_M6bcnHD{rqjQd;A_!p+fFb=rn)kEp z_qSsVhzq0;T%~JocVF_6lx1=?Sc5+ljU^-;%^1pctAeEko=q9|5a2uhVDsT*6^4KU z@=z(MO5DV8#cqc#juy3`f?CLSS@j>{Jp1bXm~IDohCXg&$pP%j-zpXtVYgKHMw8QL zsmXrskd7Fxl3ZZ@&UPG%{pFK_5YTf_Y5cNrD8k&GCkz;XUfeDg0eVbI@@k85dEJWA zPTZmVjS*LZ(H1lM3I<^BpR)AsKrB}pH_VHWG)jWtrduQa_+?{15lrW!j&DcE3=cPa z0L5~Zk8XpYWsRmA)hJzsMESu;s7;YqD`lG^@9tnajGNi|#pLVv0zbWG=Q`V(+ z&4{U`-9(k)DKpgBN6Y`URkOcBKkfaL`4vtz@oO^u>a%J20B~D9dd7zlIuuLBHeT;!tSqAgR(S^L+}!%raiddaRq?)FT-AoCG3{Pb#$Rqfg} z%2F+nIkGaX3ju={MopH);8FV9tvS?udG;Z3GXfT;zRO6`!*EhKpJ(LVp*qQ@($Re1 zt!SF<0BS}w>51zaYuxoE!+?PA1UUqXA4gUcC|g!&)n-u)h>+GF8^c5$@V^4G%w|B$ zS<1>EZ+?GmE3yjOb$#r!;drdUP!>MoNE$H&0sfGFSi?>UKzOWPZe|==WtU!vPFT3a ztz>)~t^)35RzO50aI#AC~b%k%k zno~A*EMVq$sBbrvP;A|9CGwoN+Yh#J5|^VgfuLDkSYa_6QeN*z`S;cmqiVhp$YqBL zDn(1I=_KQwA%HOnE$CtS#bKG7s%7Sw-B?UiSBlnVSE*EAQQ!-cy@7>kM<8o_0Q+3v zO@q@a(U6DP02f*&sjX!Z04B<`*z-1ixGv&K2r6k{nqilJTmTK&4sj!c;rBij)m1Qv<7T^=~y8>CIZ_}|SPD)c%&%qtz%aiDSHi=&dpC5YpEFn16=#}xj zFFdySI%yPa=rD=yWrWdI-S#4eR4s>|j~iYOh6l27iZHPtrsAQ;3{tR64Qg-X#2&TVSi%~Dl%Ha z<;mCN>g4@xCR>;id~$W3s_@J&WOZClP!xQfgZx6>NMisV`seIG(S;H`1`QHZLHP@? zSzmpo2Tfp1S0<4x(1XqoPcWu5oM-x=1chqQkx9d6^LtVx86No-V0+aJ^l-kWiBPq+ z;9lKd-$xF40};vSVR|vsw+BU{22M_?fYOqSet_Q}H0Q7P^P`$JUHB_Vk3ihN;|Og& z33Ltj26~z2k|Z5Z-VtV`DJ-g6tWe(lZT8v_=*@J5o;0^0U2r+j(1+y8LSwjZ}LV+4=b3U$13;-I`I3!5!Q*-PYSak?*BrFV+roX-m)AGynN zW$Fv^4(3e}Z~3v5DCRVk?I#!pr>R>V^9Ov8 zp%AdZr>WA!h58}C{~RE7OQA~hzgPQdKZ&s~ZSoo=a@^t4RZ z)KKLKC-&!KV9}Tsvn(?OATF_sD_&6$FNJlnlD$no|PqubWR_=WfJ1v@RKRl`g|03!M?OCt1eGM)|&IF%G-hX8aw|<3XH)%GEfFB2h;ya{&9-ms7oG*g^giId}rJs zM3pO`88!1Mnd@GP8sMFvVV0D5#k9(CgTr*t!CCcbvp)!u%2Fr()1taAbG2^V!a&CT z@u(|NSn!tj7V0%wgjMoqoc#AI?8lX4iie2QU+=-EenB^fnN=4^PCa26jT~+SsbY6~ zOONCkW=o~?@^-rkk1v9JI0V2-#v8%X3|X7dU5a)XLW6zrV=+JBsIbTe=nM`8izr`5 zz|eY$BguJg(DI76B*!{x&aiz!hQu-4z-2PVFsq=J*d2uVA+^ME+}40*XHTMycMGrx zfq57C){J*s|G*Apup>u zj2;S4q3ELvxUoVEXuN43Q{Nb9eEZoc)fDA1OPt@;UmppZWJ+<;Z{rFGqU|MdGJr@oHomjw0J0Aeglb>JOd73;`lW? zCkEJaKn1;Dc}ig75FBEd&X>gLzs?LJ$uf*q)9z|zb@5@0)KUBKs>ANHLx{EyYxy>C z>4H9gM?mef>LPCR9Xe;{y>_*B5tv^90X4S?|8Z?O_GSwHF$}sBO(B+`0 zCGq!!gP<%WHV=4JU+OelCcx=fBq3U`&%dq1QceDc23t<+Ws98a2J{TX&9;IGmKSoC zWI!TevW2UFf#{f!bONTc8F7Mf6ON9Q&|pYdA;!gZxs^v4?3O%dW+^1O9KbnOQ`_ZXt<3sk zqx4)60*ew@D!J;femAoN@@0C;(uo@It))D+(fU9ykn*?bMP0JE;6LgwF9D`;^sU+Y zJzRWB8Q-XdYN0EJt><-&Q=_8cylxaZeuF)4owMXW?@e7@T`~A-4Sgh2%68WHxkVSx z4C%e@l_#)q$TqIu)j;_EK~ye8v@8?-x?K`c248v9(x?>V`KhWu6s)0kj{SR?3rBZ7 zvDs*8jtZS3z-czZYis|arz=XA zvyIScr{H4Um}S^YImzso@g=J{iK^Hs2YI#xF?PMJs)SI}0i=VA7@Gn`jo+KQhzI`} zPqXv&5cR-LXohrnbb!;@@7cS)|rjO&}1 zmoGD_($5Ti|8ZpS-Pij@EYDOu8@`J?;JuQ2 z*vd6fW37JO0)UI?dqm0clXQMz2pGz2CC$@x^Dq#GQNngN1L2UB;jEzT%#F-HER!R= z?sdRnQQ>r;s=81^3BA8x6awP11XM5}ji8Sc+r;t+3(O6a@8MT;tYVJJ15yK#ceP-x zABC8VN>teX_Nz!46GXmJTR(>n+%AZCe*h4BeSuEHmnuAYs1nVqg^v7@rTzmiP^5`j zBH3rU%}ye3+EEdf)~iQ@rYpGp=76L}`~7q(t*~+KXfDWPLyeE~CLWh(Pkw{uRQ!oQ z6m!9XBEhG9_=FyU+U^~|zcJmcBQCcSQu&}4n(Y=dK)W4Ws5dOgH%8)>d}%hq@e~y| zMKvQJYAHI_xrHHbYTf1rc+=Xg(GaepNKtZSaa`9*Rq_IS{KCmVs7_6MUl&dVS?zl+ zg!O`lJ9awEBB)GyYdoKDF}K0>YVKY*E%y07PWnqv$3}ibWw3md030o*n^B)Ws|@7% zs?S)dX*gMsR8E8eRI|aw-*rZ(_feOo)2TYN+870~0s4x-7rEFDYt@-#(xo-EOPYhx zTikVBQ(?W7+G>#6P*SCg_I3!dAbFoU5}GPtyDrpSEX%Kp%GaQzL*^<(0AQSZrw#kr z>#aYF2B}^z;a5R;;prJ)70$0S(s(~&Ayh}_4ktJR$P!x5e}QXVnJf{E9~09x@KXfI zq)ZL|-YbabRkN@{U0sdp%Pe(6)&HwV3k+}1X!#zkX0GXUXizB^d=K`DP*A*IjPrXy zUN-Rls$4)mIEx}Vzj3vAX4JI_}1OyBIlu?LQtt{ved0&M(;TSUrpN5$& zhBl$685QP!lpmO^R2)Jzt@s;2LxrrX$%={;kjXf5&h@iDi`(He6sEP8mX7U+I`Ep> z8uT;3;W|;4&9<$Lbf$FH;D948){fB6i=!E7MGx_`0%kp_R?MI{9*WhSYR-Nc+^sb% zqtns;IZv1fXIIW3LAAyLd)|uvx)_=&u9^(!xMv%d+ArFb?B$UeJq3y^GQb}M56j#8 zW?IHHfcv9}f28Dhlf&?-tcxu*u^itZYeImjf3VaZe8h z{tG0BHf?SWul|Xe?uP{cv?f^Uk(JE_PTBy9%vPWDoCn-4WhlSW3ln=T zb}?kb8x;6?5hV+y>Vr!uWI7a;Zk`F0P|m=wyXo)+>X^GOkvjHcQ9fB`Pnvub&G$}y z(rfP(vyVnkRVMEFrCg)JCi=2c|iqw1y9 zPg!df929re=@BYq&$h!X<}XB8r|IL*Iv>6LwIi{4`=B7^B~hi)xWJu_pyI`}uO{0? zbj*X76npJ4)4i#21};h`5H0kDLwS~Za6kRm`Q)P_|69V|-kwCA)60W>KB8Utz+VZD z*kbi!r&j*{4~O~HkM=}i{U1_0bv5&(pq*5fxkJVjFl-I*8d&f(Yh!*r4(0_>vP8Za z>EGd&I4gcdsC0 z%E`fdm1`)>bf%2n1HIkOnhLc%XT|RQBRe5E!fsXH18}%E9I;6cKeXK&XwkAZr| zPU8F`lB|z_wTt9Nf64K#DE_&1{+L%RYrX88SA=x_BBF!)Miy6iSOUr>g18$U=GIrf zQNafoAFdUaql{$O)>&6v>r_J!!&P(jj2rEabW%CxN$I!^PUsk3yUQ&ZiwjN}I6&=NwDF>?xI(mMxR zSMBPury}AaL}{^=q+@1bGj1}|4hW@FRr`wK!WJV91~}R3MP%6leMu(Hr;19euxh^e zCt=?AB~}rR74BSj+35|Y4wt!@?Dvfk^N_K3GxK}d8ApQDwAp|Snw^Jw{?l3VFam)H zp7=me9@bB?kz|fS!s_kfDl$(po%!q0qeYp&#u{(0vv^tHa;W(YU@Nr(OGFuS;qw7t zvAmjSn|+IzQt_6wn7z}b{A(l&7LTf%E6;}JfxQd097ekt%*f?^edVc)Y=T4V1SV1s z-s0Xr;3F&-nV2`97-O(31||SMBoyKYI+8zq(gnxTA&yT}z0-B8Nj;*{MElxW-Mxni z2nDXOsqF6BXC{vt;*KsZqKNji(-RKa%dvb0CwDt&d;Rkt2|jtpAw0wfOk!F%2iK;h z9lJI;w*qX_Z{ZD(vwl9f=4;NE{~1YrykmnO^o;w=HU;e<-enqG%QU(;D&*X{#IYA- zA9shWy_4g7ZJVw*nb$NK^Yp+D-Q^wfmH*?v5$}*@WIMs=dN+e}T*dFn+qzjW{KpbzoXTip zc9jFi4rot!Eu^gOkJ)5)o60Ir)CW$sdPZXNhttT(KM+LLuGf zLyv}fLk``Q4R$dPxZYPb=Ixtac~kq#u>sK;2NF|na6PKyG7hi2b5!4DVxKy8(~O7B zal-M{?SsXyKAYc=xXfc(@>34{Ivu;f*Ml75Hr;R6mj9TbSMg8lH~?Lm&~I)ExYc(< zw(b1HD-8}FeptPKKZ;-FeYDipE%XAV*2sQ+ng@v((Nr9awyN~X8q<EXornus!ZL+_NJ=uriWyzFUV7 z_?Uc%X9rT)lg?T(j^Gn2Y-c*ZmP*zE97oTA``XGl~nnAdSc*! zZ>)HFuD0H|uDY-`@QRV4p+N`~-Sauw}6&2nWy2rcL1_KRFX>vmbm4W@!IzZy4^NajdKd2YH$AxLZA@-n8#q?PfkC zAC64sB441`uk2BW+dIWk_vjHl73%v*@+{n11HEfevbeBxxl89ukm2vSd?6NMILq}4 z!NeZ>r=k$KWiu&M$gon4UwB5#P-0{C>Smy&QQN4sKN^1*>m6&>6^Sz=|F*hMtpCe7 z;4p_2e(w}X^?eAhKEZxrfL@hW>KNyHM_1s9J_K*i$oS>lT;N7+1lS(Q5Zc=^7C&5C zZ)s_Hg|UMd+9|RoFm%1<+KeN9M_g*<=ee;b|6lCARdAfqlC5crnVA_ZW=4ydnVFf< zVrFKGnVBtSwk+n7#mqcqpVO!N-03@WALeBuT5pP|DuwpHYiI7YGQZ4pR;T0|((xOk zb%$WB{5{NiB>U}ES;+s1<)lcETNULxPQU|z_%%rt7t|PLm6C=fpb38slPi(87=AJNuw47F^ zR+)|>K*Oueskm|B_@wJaR=M{*(fM3@Ygf4D)W0(;oG&ux|G z8T`57(@U)_^94+i2n)cdOipl6fV&<>*H^xE)N1r?Ms zl;OK9)h0*Rr9K<3;2~T6>n3(=R2!4O>_0@`qxX^muvGtVd7a`eLa=y-BL7ta2D!#X zBs;4CCGW=k)wpiSs{Rn3(;9E0|5Gn}uxP>Zb~f8f!@ynBt4;uE6iU+{I@h)CQFd)! z*jFd#jh#rJJUA!^JSGR_Ske)~uZ@Qoy>&bJi%^dYrdku!2=~Gf2jst5dH8U%k>_;8y-+}QO69v4y%aw%vK37(=IT4i^qI9|Q&X(0$3g$U_0iq3? z1}Z3VIp2*~LI5cFO^OAd{Py+U^Ua)cuUg=JbTX*9Su2|58yy|sKy89-w`WXZwaepp_SM1LLa$)mRl=@S5I9V(@Gk6XC}4& z3;quG?Fb(0DZBaKW-a?dQsA77Zb;x;Cr!1WHncg z40GvK?&l(nsXyDrs@yw*} z-2od8&jpbYS#^f*$2hYMCw>I_gloH(cidPN>?*7sC46Un?Zpxx6<@O}5-WE?-T`mX zckA31`@&LL!_SlME1W=ZGeJ^~nsCId>h7_IJp~!x1(B)hY@B%;D){a{NeT(hIsGw6 zQqzPOD2CwmK1Otg@p^#h&#Kk+Fvy-4_aU)zQ{`6N*HtFn6-$Ws@w=-z0BHOq(7N zd(w{PVewZBtE8jw4{!N_!+9ti+ z6f(&P7DgcfLcN7K`jKA-KzuzE{kp^fW&TaD(9d>Sc;KnWPGHn3^D>4&z)gC4wCArU z!6#+g*u7Rm?frBE19t6_YT~C#ndm#7iQ5-l4tNFA+Qe0xk%}$NFb--OlU}lZ?AIzNItJO4F@UZ=V*TolL=H zA6~Y2BV*g!F~W~S=VWOEzvs+Yl^;Pq` z=0lCLy8(5A-2dUOHS0(e4_M^WjnP*4K*i+$%RMXQ%}%uoI#1$vvqHY+fYKjQ z;Ehr$wyt}5e0Y6c`{lP6RK8{@b~BdmKm>JD8glCI#WR5N2)?pS{B)qy}0^uRjGs z!p!n%__r6eQdJSRy|u6Mww_R-P-< zFA9gvSmh~-RLFh;;cLiU%r(+wMsuFE6yim@3R!4 zp2sl?+|~^Tb^%xJN#3i_BInX5cy83;+B*1GbfVrW;eMR&yr5EtttL#sH>sVnm3$w+*YAqjzqW2Q^|xX5v3?|H(5I$k>v8Vc~CT}~du z^Y$ZIk4*TGiB3k;btlHf*zxCTzc^d;SW+2auNWwSRJ|%Xi~`|22fSn&3-VLWK+aKu zpEyEXvK=oSpB@rJMCLQSCjM2mMG5|?Y6qyr6B>`x9)=Yacps_hdHT`?zbJsu{tyyS z65D`{X1kUq8ax3K7vTMv+T)+A>o z0zNoSVOY`edg?%yJv7gsN##a_@5-8k+QL}JWxkY3;uQAXhi;a71t;i z{NmX%vd{2=t;Wpn_4DC^!uovTgbpd(8qIJSBpqF&G2+9@3xki5M~26 zQ{3Qujb)JGhe(!5Od76CU~ae#_URlj1isO`6C$%A#inB*>uUVChRbc&#zp-njmi4N z@ao@;_3eV~3T|3(B=B_=t<%B;lI~R}tzHsfubfoynI|lz*?~YA&BhA9jup?KJ>zr8 zo|9UiAa$0>Sz|K3h+8=CuZS+>ck=c1aeGU$0n%;|y@8n_9xkw9V6o>kXh#Iu#=}96 zFN?Fexw*UB#q{)AMyq#P4mLCAC>IH(LyO7YC%8WLWr_@o216){5n^~xD1sm9*}0Mw zxO+ofeC7g_F18a?M0ctWb0?`L<(=fsCO@1iJN(5Dh>DIYF7&sSRP|e>7oE*zV>CTl z_UXI~ujxiO$YL*eNgNPYw^r}#Jh^Y6ULDaB==7Lj8^}Teua5FT(MV|(EG7X z(jDso@v%vKYd;X*i23KITz@sw$I!ouJE(?+O~e&vQp>ke=x?OHPSZXluQ{16C0sHs zlcTfClXp4@GF zr69+hTLQ9dIWZ5a9k9*?TQQDsz|?VDmUK|MVm8O#LA_+yR^im}qr`avzhE zChwqAbaF`KLPCcBbidyckpRt7`phj(Sh=Kf6MC63Oj~4n!D+s(t0C&xLF0uVz2Uab zKI|q*P;}bSK(;({M40!nILu%(#dqxU$zovpd+%05NBs>dto9{Jx zt=j4zaIPgqu(Z*#~EJ+iG=kxhm9DP8*MmfvfJ$B)^K z*IFfbtSYlu3q!0z7wkVFH>)gFvNs%6e)gz$kT>>>*<6l-Uqz=QS-@2%+D#qLL^#8N z-F0k;%^VM8xWgRlWlw%@!tlOZVy9#dJZE zyQ^o)eV3p}HQk2S`&m2VitYPX)@SdUVlW2pdHc1~*)QyqCZ7mH$^GiR6Gsjc*jw%i zm~hYCG=2vt{yHo~6e6^%K!i%YfxUH6y?n)kJuS0_`q7X0ueAYoJ`-?qx}?((8fNad+TiN% zmj6kNTW_Q5sRC4}W8&Pze9L2H^~IUNacV#sv!=)5j4od!c;B5t&vW(rYItMksh(Uy z$AgKi{Pg)&hvmt8qkLu^Ut2D1^T$oz`)Hu@-@9Nc{^L)?}m z$!V>=(9{f{iBMRUmmwPjMA%AbZqCw$q1EY0Zj?bhu%@7=vh6(xB{iuXwXl;e8hz)i z2bPu1L2u4#x|3I!OJ;Ek&&Z%c%z^fc8RCn7?ZN7}q%HzZ@N|FP-D41cg7EVDSOU%$ zEM1J#OnS$;dlDz~y=~u;uQ)jQa-A0QdPYg;f7(zlRpf`1g+g;>|8ajcNlHJhK zC-PE$@95}KT+Wxhz6Z2YoSwqJW`GP=51#wJ^O!Y~mJg8venygrHx$h)7km?-SW;|G2I^7#9P9-A>Tvwl$ax zD@?xbz(lt`F|B7|Ol?OAw%$ypoWwA)bzSufj`dws$|H@2XjFGFb;q5Euppjy2l zg^b*FzBp_){#(#+OdK|ghe-brf(W%w-S`Y2ucupf*iBR8RD(FIj?Sxapz#3#bxO(^ zv@2c~XOh6N{1zueFF8r7h!-K^3oj`NBRe(uw5iB)pB9$&4>nGc@EPa#X~QAZawVav z;v@~7a&nVaos${Jb_m%ueS=*nB~TJ&h&hNZ{h~C#$7}g|O_ZYjAImcW&RZIx zId9jg!z~<{=G4+Gr2Ze6HF+Bc=UJ7iaT{;v7khzceka+A<+9f-q#u`gcrUf@hrO+G z6>`_bF#=CM_oCZEi>?8HtH6B1H*{~Syj#{d+3PLze|>|+XzC7j0m!H`u&NjP?d5py z47D*7Pb%^$Y$?8|$@ccH+|Ktb+%$LKn0&>Bya+o$>jH9H-=CF-x zX2W(TXH!Li@8weXQK%&dR2g#^?53Y{%hQgQECXf-$LGl)_AK}&T~t@RAFsYtY1f2t zue?Od7!4isUWfUT6XdF#N`1Yt%!>)9smKd0WMu~D$gw0in*`$!Uy^`<;djj*>}Nk>Xw ze{h@5#MSifRZ*Y!@b3Hj3)~#ym^&p3c%0|Egw4FO?Cg@OCT=;C?wrWuEz0|eS8`*% zy~ww9W+JnX`6GTxGX4iM5+_G+>@Ik&zSjsl@kiV|vPLjs>cMi$h?2BYR-c&3>r%+Ay<7$NIKG5H z_Re97!fv+5O~lVV^{j}tsx<$=vZYS|mUXLe%v*3iWr?JnyYT#-eBO7z@%MN^1IF&c zmc%}QtC93qic5BQ%&NOTi~oE*ge=x5z3l#E2aUR0uI#P;U7P!_MLzPCAr@9L-hSJ% zk=v&vVUNE1uO8yK22Vk^+wo)6(4PzWesy_h`&)%>sQVL4!^`)Qx20~gGhiz5O)pvA z^ECyUaK!!CzLd$sH4@oU5`@vwz&LUY6;*)pObFHb;#(v729Pj z9h~C%{o+(&>MqO>POi<8kyUj@XC}s=Q69)~B|3 zRcPiXvak^-;2N-tapom;De3pb9VTzP0E>Q|UDWH#ODpSMEi7@pSDS3-_+jJWq_v#( z6_fwV)U5pVfxvMa^O=3GGXVT!&p%(1Ukz8Sx}qW%)v))C^-zM+oASf=lT57SUmUWP z14uC!b<3W-`of~L1*D80m!tZQp=4oBRPIO z$ZF#?gFI91aR{xM9GPT!4lYr*V*LU(m;xwA*x#hDQ)U-J3PB%I2zFK|^?YN9a?#M z6Ze_LOF}ZBmzcxs`*1!fK38Fh?%)UZ*ENL9HJ+HYwa|N?0R+OhJ9L0%4D;B<5@BzG zR|Hgu6&OyGy%pH22-|b%P>{ z6Eta(>P&cWB{Ofk_6h6O0NY5C@YkklMMhMwz+gkOpf>VdVkSbUB5fDKFOGi^46hMY3}yb&e7c7!J?Qvb{pSb zbT&%X{+6TxvJ1dgd)eQ9>K=T?gE~)qs^O4)}zFr^nC$z%J zUx#(n&agL77(|cMHgY;Tl@av9p zXUK#8Kscj7(96gSZ;MKwP2vatCyEiWzW{VLkAUm28_rjKt@CL|`L58n&xCe8^=8Zh zUs5k_-Dl{UBUdL)Y6|W9YeqnhVg?fiLg5kCYdiKV$i^rM=$Jb2K+*sc7e#Ofgx&0r z_^ztf;d6%WKLaW4p{gyDd=BSc^MiN`jDbJGzQY&vs9AdCMV(1o4IBo`Rh`RIcdz?+ z+Aboj+_zcT=(F_-KXsOBIx$yy-YhNvNw_Q;dl3bo#H3#lR4hLj4QR(0h-a)iAnH5E zjq4K&D5Gp_SIG2Jpsfpp-S`ym#F79f;)wL44*9W2Nj_ucqlz~KLKY1IriaNB=`-j< zl{ugf?(vffXeB(HMIV(eK_lsO%YlA}b6p9B;@r8md4qdb!?istvQ+9tZXE?iOOFu( z0(_j*PG=dnb%&s`P-^YtcVMIQ9f)C`RWxBKk?J(~o)(-b__@1#eDt*GHypQvg)-MK z4K?RE-&JkWBQn_2QkMw$-6$NNPfaJ(F)>oRocTZzsK*GetNGkzB+71(miF68$mdi@z{$bM(PWNi&sA>(IkALp)5|k00;Q4H zZZK9YasuU0d<)1NbnaO}DYFvYhbV0gS=y3WZe$|7T~M~i7$l(*;Z=p^w+|+_Khx6iq6w~_?D?Mo zTLRB{{y;*Hob2th_>o5;PQm!nv&60&M#0iwdiQ4@VE)zg|d9OuZN944L!ZG`=6 zXtefrtH-0!$gS6X+}RDnj&BS`ZbKWB@z+e36m+Ras9{9~|l9q_vi(Dh>o zxtOFsmTEJd(y<*D<(W_sevRkS?K8|I@#>qYnea+QHnNNyVV>}AZe zgjE(&!TDLz+SF4SasB{e(%w*zcrfnNZv1=iU^Z&S2c@sBw&Efgun(7$#8+2cQIT?X zy#!^EPmk|63vfe-|7XTkASl}RrE?2D_d$W}6Uo^@38&MZvT{jmBka0fN~@{x?QJsj z<~d7k^M(Q)3iEA5MJOYW@gU4j&54ojue zP@Q(2r9e-k;xjha$NXHQ!_rLj_|!rsza!6J87;oIZGoe&#%AB$o7{So$GNSnc%I#n z`JuIPNVSYzV3!sZ=Uz%qBp%bFzhF%Tz>CIx8BHY|n+^3^(iYYrhUf7av8fOXYP$Lf zhPzg;*oSaGH)3Vj_GMsTe?+OxN`E~)ei<71yl_LgwuxA3XJbfiVBHhBrqG82aOC9E z?IhJ^=C8B<`P8rT@_u(VoLZ5|nov6a{!J)%IfG;h?*qT(BBZCuyUet|5P1`K78YDo zvBMfL#!<^K=*+uoCKGYfDlX4!gRGPJ7SA+iZGZ2gD~ZSSlV{o9CO&K}+xvGm6X7Jj zT5tyY*IECEF64)<1QSzT%@&hIo+XxTq(q;a3z#1%;uM}8&k$h{PY#9b0!K`~BL8Fp z7L~WVd?csaKE367(!jV6IduD?#NsYzRO#2HE)2^2=d(uzDaMDdUgaY%#&2Gf-3SfE z7Fk!@BALfUhZ27PQNI9)6EHFb3+l$CEZQ0k;06*Eq#i%ZrQpLDDw~>i3z}`3@x1NI zUPUz?NYiGjF2Dg--|L`5-&e%k6DS5F=?TmHagDA6AycrU4eL+W2 zX^~>?7qsiI6xEjF5ax0`5*sU�eMkVb5xha)n6y>DxU2UPSF}iPe+LkTzQZZ=8w6 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

        O=SqLF}wDGFZ@Y}YXfMtrN|b|@bILvJ)Izi?Q{ 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�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

        m<8p)zh=I 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 literal 0 HcmV?d00001 diff --git a/frontendcareit_v4/public/assets/PDF/FORNAS_2023.pdf b/frontendcareit_v4/public/assets/PDF/FORNAS_2023.pdf new file mode 100644 index 0000000000000000000000000000000000000000..35494c9011c4cdd144f1fc018776953ede9f693e GIT binary patch literal 1799757 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

        q^>LBxQu>o^7RQGexY;8O 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�oHz;r;~!D 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

        i*&B;cto4>tK{@4wD+Grw*#dlzi5tEbwik%Gd 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

        EXQTQ)-_%p3R{-s^1m`%sQ=o85;0Y}tZU$= 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 z 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Μ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

        ?jVGvF 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

        nT=8q(v_NjsFja5 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‹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

        hW^iKef@Kk6F-rtA8`AYM*>reqK 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

        W00ndLIsnPWa89r+O#f@LY_2@!KH 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%0D(1w7?ElK`7{I)a*?V5{R8S20V?%^ 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 P)1tzvsszjJqQd_N7Dr1| literal 0 HcmV?d00001 diff --git a/frontendcareit_v4/public/assets/dashboard_dokter/header1.svg b/frontendcareit_v4/public/assets/dashboard_dokter/header1.svg new file mode 100644 index 0000000..ab6fd87 --- /dev/null +++ b/frontendcareit_v4/public/assets/dashboard_dokter/header1.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/frontendcareit_v4/public/assets/dashboard_dokter/header2.svg b/frontendcareit_v4/public/assets/dashboard_dokter/header2.svg new file mode 100644 index 0000000..bc951af --- /dev/null +++ b/frontendcareit_v4/public/assets/dashboard_dokter/header2.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/frontendcareit_v4/public/assets/dashboard_dokter/warning-green.svg b/frontendcareit_v4/public/assets/dashboard_dokter/warning-green.svg new file mode 100644 index 0000000..a40ae6d --- /dev/null +++ b/frontendcareit_v4/public/assets/dashboard_dokter/warning-green.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/frontendcareit_v4/public/assets/dashboard_dokter/warning-red.svg b/frontendcareit_v4/public/assets/dashboard_dokter/warning-red.svg new file mode 100644 index 0000000..a3a5aff --- /dev/null +++ b/frontendcareit_v4/public/assets/dashboard_dokter/warning-red.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/frontendcareit_v4/public/assets/dashboard_dokter/warning-yellow.svg b/frontendcareit_v4/public/assets/dashboard_dokter/warning-yellow.svg new file mode 100644 index 0000000..8cdd689 --- /dev/null +++ b/frontendcareit_v4/public/assets/dashboard_dokter/warning-yellow.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/frontendcareit_v4/public/file.svg b/frontendcareit_v4/public/file.svg new file mode 100644 index 0000000..004145c --- /dev/null +++ b/frontendcareit_v4/public/file.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/frontendcareit_v4/public/globe.svg b/frontendcareit_v4/public/globe.svg new file mode 100644 index 0000000..567f17b --- /dev/null +++ b/frontendcareit_v4/public/globe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/frontendcareit_v4/public/icon.png b/frontendcareit_v4/public/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..356a2b45d515ff7002ad118798e1a12c599f773c GIT binary patch literal 478160 zcmdS9d00|g+dsY$lLphu1}zm!%gQvIaYUQc2C1ymWDcR3IU;o^#&kdB5N1dcW8E$8TTPzF_UW_FC&+_wc#z z&)%9gO&2g{^CrJd00cbNK-K_&Mzkn=^L79N08{6p14ol$4uSto!QU{9U3@4o7nqX? z0KWprD_H1{3t%tDpS^s3?-ld+UP%eDu2Vf-?d-xGk+v>}t(}}4oUD<^Lr&I*9S_@E zJ0M-04?8(HyEukoz_|>ve-5|u_u(+Of0@(<7a0*7nwXRjKGlCG=1^S1hhzJ6O0Pp! z7%t7;2YrdihSq@RhO1C5h?bTCsrGfybFJna{SsBn=7+i)spTsWGj*n~KH=N!p$&y1 zcG%8B%+P`E*48o5+8tnPfS5bgn5jF{CoV1`I^1mQ*7dg52&<`!P+g0k7uVZu_cq%W z9u^sD77(709El0Xnb~eP^IPw2=3|dAT{PRy(H3Eku(PvwaB$uaHl1t{c8))qPWus2 z|9(n?zfNh4SUff5ECYj|QwF5r62oK6oDc|mJKI$V%O49eF#CD;_qA+Khyz!Gi;Ru< zb6JRe2m>A14{5a^KgEVZV9<4dc9aeyVUg$f7Su6W?yCo{=a;;_@MOJRZGiOUU6gjC z*WHknwmMr|a#m4=o0*Xh-`bYwo-bW<>bKg_zVYvc)%^=@WJ7p}Y)A(}4_u3hJ_MrC z)`n{7)FR+h?d95rh=n@St#lyMroo`vIy1q4+K`;SAT0<&cdCQI)B{=w0AVuK($ik3 zJ>R77`?@vS2G^_-3_XQG*yA}`0ZG4)W^C{{wYqLbb8*@fP z|1k>$q8)+=Lag|sjewk3d?Yb3-gWKTDI>Iw!{Fj=;-eyMB0$xyML7J~PwT|WpZ)&4 zJN3ZYm?;fg+s0c*VnVGW>}@a!iHJp0t2NV}gU|!T_){nd1d)|JbqB7Ujz~kKTur)) zJAwUU(1gh3(8O?X3`|^XVt8z#wG$E<8tUY1Z;b#CYr9aSlXWQ4In){fdIkpRZ13od z2(`f_#wCPCg#TD=ba-fdB+dpC7qj+|!{I|t2nVE{V>kxmh_T0nI~`h!Nr(nl7mYB| zneoRyL$&|1KIlw@{XcJMYp>9?K-jvtU@&2h)?uOHVb;zrq0ZLGL Lx@A+VHiZ{ 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%0AlKMlx3nqhzkj& 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 #O%J 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 z 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 z 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

        IjOMX?;}70!Se^{*#gf&-nbMMcX@^8p!egri;Z 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 ?-ajH{w$~ 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%0AeBN zf>TavfL-QsLNz4?>{6A9P46PQi-$qUf!A=0dg|!l^R$@VedPx&C>Orl zBwVaHs#o;EA<0*Rc<}?0&U+A7qZ}09c z;7nY$6~4O>5aa)o+v(7!UQtUen@GRmRbvivq~o}sl(Sn}y*-sX&jSBv*iY`P{%`vP z)un0PjD*BN9Hxtz65T)E&ow%K9TS}wYbib2X4SkM`?sZCJrtV*UA}q+1Hky8S#?mR zE`Ag7f8x{2A9$yKpxOsJGmagjp|E1eLVlc1Q9Z4jTR!w&+*;>Gp`)R?Ksl%XmcHmk(Ph#rszwq_q_dcHVwkP}#q_X)J_1MW* zAAE+-7My>ixU2ii==ZI=VY?Uj$;i)0xM{sK(Yi~wXc?Tg3hmW?SCB=hNpWaD$7Q=-M2 zmwkH-?-(lG0P(oYeFaMhscZj}aaZHu2rK?=yH5M4n5*7%Hlh&y^Ch{XlJ{qZDjiDA z7QH?MLB}re>I8p)(r|seleALw;-yG*C*09RC@c{9UL$iwWdZ`YE~g&Gxu(VJ;mQAJ zR-FzQd_$H=Atk*jzIDCA%++VrWHjdVgD)W?H{tHne!^t!mC?^fcG(UO*p6>~7xlN` z{AfViJJr#}1@zDUZBlplC+LY>y}eI_{YNdQIb?lKpi@feL6s-*I0#{OLLv5n3P$|u zi5PQJW5c;f%IixXUV;HD@Ie8krq6lMSH<@u(AB~_;kvzjTjCd<%VQbqKWhz+xNtK4 z=NU}FzOn8cauah%#K_9Jns0wrM>hfPxd)7@V|Cs-@O)0y7xbSzUoYIGH?*AHy z!#}VPGPbRsatdULt{7EZe^bT%h|E^=Oj&1OU*$;PaMp&v5Fx($OQW|kVT>|qzFgE^Xw%JF2eR4k*wx zFGnI0Q7&5p$;AB*uc@@AT!cK!n<$ZrA?od5#^ax4%)s96n)ta5vpluDxA#O^dBun5 zp0#n~zt%sajsJd_Ve`L&cXxKE>lX#s1Vb0*(yo&&M=H#JtUUs)dHzf~3Br3FP@{X& z!n2pf=VMkgxcz+z@;a|9c;=*y!1rsDf}fZ!XE1IX)mrE0&o59?1xC$0&4jK`V7xuV zRh2*YC7e zj`khM6|OE!w^AGAO8o`%LC_!%KH+fOn-gdI&x@{CYbX?1=G22T(_$;>)i-^+I@kl} zXnjj=+_|+26><5{ma*jGV-rR9;HQdWV*?HcCQU(>+kj=Zt{r@=(L0+_Ukx+mL&O7Vi2t?dQN_8noBsAX9?>kTr@{}9k5dOS)xLu5BOv* zi|t>+N0(VbL{&ZSzF9c%=Ac+ViS4`l*UFfR1>4`9-+pS>;;R)B=PMpRpp8dGd}I1&GQwIh zM#H9W0%g;>R^|W=f zZ^-k_N*a$T>XFmXQV@eG*^!dwr1a&Kd$z2cm3LN#Z<#YUptJno2G<*w8+H1J^;Y0+ z36JLt7UE5_FdQ?kj*ZgYxROcvdc(c?t~JEL{d?_z3(wgjBq3}I#OpJe`z9k=kv-Pt zs??J?<_7x?QoMfcW)nUGTvghKG|$B~U=Dt_IHKqpU_uo0C>{`gVo?9kmAN*Ok2 z*1N5kJ@>>o$(%=QjsA zH6373?7gU3W0GI2myseE(i&0K{X=yyKG_k4Hg^#KgeO4;Ig7&f~@eVP9g$58-fWdbEcx5k*lspj6N@cPX#t$5p5gh%mF zgxSer#*~rTx;-#gRGZdHrV}p!?%k0U0kRD3xoJ^S=$wo!GX0WM^W9%-in8j)`av2m z@R5ls;u;#s6P=$Xm2vrDz$DA9O4Vq4yf3-5Wk}KAlMLFiFemj0n8q{+&Cjx2s=U-& z%7P?AWD|rX!{Tq-Gg~%3D z6IXsv2p?)iC&omEZKKRmHamsX^dDrhQEM#0p_&J_f>dv|4xGK*8M6qf)c`jJvz}RkE2P_|z2g8~@jB#D$mT z>>-+N28&v%UB-JGuiLKO*66B;kBdfC4R$L6iCdNIpoue~gJBA5x@Vdb1x3$KIXzQzo35f;Fg$hvZw z@(p|6Oink}D;ad4nLA%m>o=OlcS&|3Fg%2=GRF2y4{0KvYCJaiq@R86nBKwSYMyj_ z>ch(@YLYTAeC_$BzEmRDCk51xs)WK0v&Fyn-KHJ*`$U-kASI&iYpQ_-wpOz#f&&B6 z@|m%&km5v#aVd*!Wp-+8%wHYAlRPTMZX-8>Es~Fx{3JS|UsviP?gL@Gt9^WxoQf~v z;h9qR9Kgn26ux!`H|~|IyWKz}Oo{_y+F6Q;N?1LfOM3;HG=Y`H<$9)vH^Ah|9 zIefv{tf3&JX%#GjAgc6UkfsbzT3GA}cS5;Fr3%>6E6#UDjW-9Y%%-2iJ^H>P@_Tt! z1zkM)ph+Ksl7~O8?iT@0;zcu|D=db?$@`patc7tD5@;@ooqW?1_^0 zN@H~gcVe}IGn8y(KUyZcKK=P@+@0ssJNw7Vzv7&x3+9ag{K~w@ne_m+y8+vo29kOK znP4%=MY-DBf}CxN#Q^mY($hk)O`NlGZr}_E)x{7DWGq2IOoU$VtM6DJD<^~ysEjf-qqlX{ z@h?}}Db2=O_KWWCH#-kyJG*|$o`Z+Y?o?J+WU=~Nrjm6B|BWmq3ANE9hM=OEkf{v;Mq@>4u?BtgX82Zg=RlI z8%P5ZPm)R$@2$iQ-E9!e9ey9~~r4Q@|l_UJ4W6=zf0E3q(j zWoX*RwvRm=uc{I@gif%u=W`~;IXAb*w>+3!=jqppD+gequfFr#$zq#M8`tRSL{EYc zR`lH`BjDhJ;iC~#S!olBW~GSRhEtWgg;J?$mzAv0ji?sFvxNhR|hFmK(luEN+aYHJ>u!Ttw!% zST)R@JvkB>CNX0Rju+aa6f`)HxBRapmzinly}&z3%)n!7x=TUvqW63jchU(jpTHZ; z4R%q?Q8C5{A~DODyZ8MxcGvkA);6a90EQVc(G65LP5`Fhj7G^VkZbD)}Af9Zp003gZ`?bvNit2vKoyj?(6Vv0h zjiywNab89$FAG=uLV{|&9RoN-TrAGHEM@xpcG6}kQe2?aYjLt8?_De-ld59)G10T@ z{w;pTD~ubkOBTe(Z6|qg;`gSzI|0p_mjFWsG7ENxVYaz%X7G`Mbt0Ui4EHDx-jD{X zMa#?EKx}*@(|_lY>=H(!_Y9OK?hre&mZBlK%&qX<&SHV68oNZ65MZC)hAVW>@nz<( zSER3Nmg~-%!Yk!%V#FbQ{>fGg^BW<}R#Pm$&)-u~?&J^p@sLu6ZA6-q9+jjJ3ym?N zCKP~AE_QG3dqX*;=zZU|26wDybPSZe=+nbb=#4#h8$ z{osP8Uli;E2?L5*t-Q{h(iG&tQ|KaDNQRA^OEyZG>a+d8dA@~}r+qv{b@{HO!A^bV zJGNu&zbEuq*WSArVoDjbMgQ1*B<| z?f1JjFB^{VbMn_97-)0)SV_n0nr7EoX1oXzncFL6+}bk9VU=hnKZy(bKlLkE@5DF6 zHwpQZELC!?ZaQx&BovjMbCucesC()NacL<~gzbL!c`%oT=7;$Z zm|c=7jh2}c0q}&F%@%^`pYB?FwRs)2lV&q)jej-2_W@zJDYZ1v#Tv@IS!oVODi?Dc zBvg>bEJZtE(*zGHH4y~bD+XQeC}&sWhww;;*BXo}7^@aUkg)0BuF2%CMYJ?*+O$Si zq(y;RsM(4B>Mz@Xs$=RuhzDK1rlluR4DR-FK``;izZ7T7(p0}zfA8Pr>_f}$TJ%z7 zrXZ|GuEyMoUHT`~-J(w5bQw#UDmbpsmA-o-dOqh+QvS~pY5extq=W=}uPoo(FIQt5 zPN+Cqy=A{hr3YoeVJ;;?MV7UFASDx=%-8e~ErKW)m;DDpX~y2oITf(xz$QLs=IwSsqkk zB=ri^VA`TLcHZOfw#&}tIq8v9sX5@zm_vC(XR08 zFH4$n>tN(p_D#16A0dX1)+W(GNlzqe2%Lc9MnGY?V%JM1Z>Ya8sm5CGrl6T8*R(Ji z2{npc{oQ$k=LSNqPBT`};s8Kn2R%%p!l@Vv@oGryi$gp|K&sg8kV7^nG(u!55}Es( zSDSQzm`Ebf{0&KcS0|coW}GwmC?~`3d{Cz7VmRS9tNTU*FI!nqiIQjpR3B}iUm83#TdacWKt&xPkgFCZe zkNgtful6`gWcFQ4F@?}t)Oyp2x#fWfAMB2MHfQ}^(9^n`?Ln~?v*4?GBq$; z@W7WzTg9R!f&c)$wCBK|$Z9Fgj~{lI20x%P(^uJhBUfVNXWRNm2)#^2*QwI6Dsu+W zZg%-l*au0d-O!UcW>C#5LlP!By;>6qg%IA-k+e05Hc}*mp6dMB0QA3XAKl^Q<^|{H zxk^o_;?K=4eMca}etMEW>O0zPp~B(rEV>#(K<4SIo!@Lcl@cD@9eCiWq21?W7DbtzZ6tzaNX9UZPQc>gWi? z?K6{n08^etzOd@RY87f7JUA$+({FTx4`N1kaCAxWPAPUasTCLOp(nhtnfrd#iYLdO z?pXcdZ{(BjK{7k)L8;q`HDRCv3&LQ9qeB}wq|_Pk!hah5ZEIc2 zf&g#RxDQpslRt1C*vF~1aGdT;Ye%Y#UcKEf$s`>3+P53OuLe(JxG20Z*SA-y&p@O| zjTyT2{4VRihe~L;=UTh0r0!NvlI?7x&NM$`=rHWe;bxcDa7O{g{x%=$iE_WAaw&Ls zWVh<|P`kOi=T=tZTl!I~Cps<-k*uw}ev_rWA1~ZvP8G%tlEb3kHwvs=hJ`e8DQ@xj zcVk7Nzgz*f?EfH$XmnY8>sMB7fUSdOwh=9hAfZ@G;&uces0m5tG>sH_=Z6nIk}}L; zYbn3{()iLvRAbaRrL(KZbLHj*MZoCK65sESDFR6=DU)XpJG|S1fnQTA#spvS(mMve z=A)FzqGk0;(jaM&TE9Udux+UyfwG^XEHZJ-w&- zP;8z#oH?>~4D3eXqBg~=`TYFMmDo*VI0i*tXT*UiBb3xiEEpbu=6K|e!Z0R3c3$S( zORvrjZ7si&pMmGYn3}8&X*`4(!$57CSz(8sn`j|Diyj-nmxFJ)?F1`&s(+Vea@KGT z_+iAJ3s5kWRZ(ugxS&N?o5or>umdAi;b=Z8nETYd-_j%C+j?`*N?}cB5Z~#{-p^}(_(0mXwW3PlMORFa{xGrq3w#VKv1y3oyH z5w>PRGNRmxJtmW&Za?LG^Da*lqOynpQN`|MVUr2r7QH2_fw0#_cs~B!}n~Q{5}!=X>_^=XA!th>qI0GKi=ws z9bVgZ8ffw4VHMZ}@Qw`p@z2qLh1W8r$l=)k7bgJN|NHTRc){fQej@Bh+mr=!hfkC# XCn1NnI`Qf0-l=rAm96+&^aKCd3}kJN literal 0 HcmV?d00001 diff --git a/frontendcareit_v4/public/next.svg b/frontendcareit_v4/public/next.svg new file mode 100644 index 0000000..5174b28 --- /dev/null +++ b/frontendcareit_v4/public/next.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/frontendcareit_v4/public/vercel.svg b/frontendcareit_v4/public/vercel.svg new file mode 100644 index 0000000..7705396 --- /dev/null +++ b/frontendcareit_v4/public/vercel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/frontendcareit_v4/public/window.svg b/frontendcareit_v4/public/window.svg new file mode 100644 index 0000000..b2b2a44 --- /dev/null +++ b/frontendcareit_v4/public/window.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/frontendcareit_v4/src/app/component/INACBG_Admin_Ruangan.tsx b/frontendcareit_v4/src/app/component/INACBG_Admin_Ruangan.tsx new file mode 100644 index 0000000..4da1c81 --- /dev/null +++ b/frontendcareit_v4/src/app/component/INACBG_Admin_Ruangan.tsx @@ -0,0 +1,1702 @@ +"use client"; +import { useState, useEffect, useRef } from "react"; +import Image from "next/image"; +import { FaPlus, FaChevronDown, FaSignOutAlt, FaTrash, FaArrowLeft } from "react-icons/fa"; +import { apiFetch } from '@/lib/api-helper'; +import { useRouter } from "next/navigation"; +import EditINACBGModal from "./edit-INACBG"; + +// Static logo import +import logoImage from "../../../public/assets/LOGO_CAREIT.svg"; + +interface INACBGAdminRuanganProps { + onLogout?: () => void; + onBack?: () => void; + billingId?: number; + pasienData?: { + nama: string; + idPasien: string; + kelas: string; + tindakan: string; + totalTarifRS: number; + icd9: string[]; + icd10: string[]; + }; +} + +interface TarifBPJSRawatInap { + KodeINA: string; + Deskripsi: string; + Kelas1: number; + Kelas2: number; + Kelas3: number; +} + +interface TarifBPJSRawatJalan { + KodeINA: string; + Deskripsi: string; + TarifINACBG: number; + tarif_inacbg?: number; +} + +interface PostINACBGRequest { + id_billing: number; + tipe_inacbg: string; + kode_inacbg: string[]; + total_klaim: number; + billing_sign: string; + tanggal_keluar: string; +} + +interface EditINACBGRequest { + id_billing: number; + tipe_inacbg: string; + kode_inacbg: string[]; + kode_delete: string[]; + total_klaim: number; + billing_sign: string; +} + +const INACBG_Admin_Ruangan = ({ + onLogout, + onBack, + billingId, + pasienData, +}: INACBGAdminRuanganProps) => { + const router = useRouter(); + const [activeRuangan, setActiveRuangan] = useState("Ruangan 1"); + const [isSidebarOpen, setIsSidebarOpen] = useState(false); + + // Form state + const [namaLengkap, setNamaLengkap] = useState(""); + const [idPasien, setIdPasien] = useState(""); + const [kelas, setKelas] = useState(""); + const [tindakan, setTindakan] = useState(""); + const [totalTarifRS, setTotalTarifRS] = useState(0); + const [icd9, setIcd9] = useState(""); + const [icd10, setIcd10] = useState(""); + const [tanggalKeluar, setTanggalKeluar] = useState(""); + const [selectedInacbgCodes, setSelectedInacbgCodes] = useState([]); + // Kode yang sudah tersimpan sebelumnya di DB (baseline), dipakai agar total klaim tidak double-count + const [existingInacbgCodes, setExistingInacbgCodes] = useState([]); + // Original baseline codes dari DB (tidak berubah, untuk di-pass ke edit modal) + const [originalInacbgCodes, setOriginalInacbgCodes] = useState([]); + // Track kode yang dihapus dari selectedInacbgCodes (untuk mendeteksi delete vs add) + const [deletedInacbgCodes, setDeletedInacbgCodes] = useState([]); + const [totalKlaimBPJS, setTotalKlaimBPJS] = useState(0); + const [totalKlaimOriginal, setTotalKlaimOriginal] = useState(0); // Original from database + const [tipeInacbg, setTipeInacbg] = useState<"RI" | "RJ">("RI"); + // Live indicator should not default to Hijau/Merah before we have enough data to compute it. + const [liveBillingSign, setLiveBillingSign] = useState(""); + + // Dropdown state + const [inacbgRIData, setInacbgRIData] = useState([]); + const [inacbgRJData, setInacbgRJData] = useState([]); + const [inacbgDropdownOpen, setInacbgDropdownOpen] = useState(false); + const [inacbgJustClosed, setInacbgJustClosed] = useState(false); + const [selectedInacbgCode, setSelectedInacbgCode] = useState(""); + const [inacbgSearch, setInacbgSearch] = useState(""); + + // Billing history state (untuk menampilkan riwayat ICD9, ICD10, dan INACBG) + const [billingHistory, setBillingHistory] = useState<{ + icd9: string[]; + icd10: string[]; + inacbg: string[]; + tanggal_masuk?: string | null; + tanggal_keluar?: string | null; + } | null>(null); + const [billingHistoryInfo, setBillingHistoryInfo] = useState('Belum ada data yang dimuat.'); + + // UI state + const [loading, setLoading] = useState(false); + const [error, setError] = useState(""); + const [success, setSuccess] = useState(""); + const [ruanganItems, setRuanganItems] = useState([]); + // Edit INACBG Modal state + const [isEditINACBGModalOpen, setIsEditINACBGModalOpen] = useState(false); + + // Close Billing Confirmation Modal state + const [isCloseBillingConfirmOpen, setIsCloseBillingConfirmOpen] = useState(false); + + const inacbgDropdownRef = useRef(null); + const inacbgInputRef = useRef(null); + + // Load data pasien dari props pertama kali, atau localStorage, atau API + useEffect(() => { + const loadPatientData = async () => { + try { + // PRIORITY 1: Use pasienData dari props (dikirim oleh parent) + if (pasienData) { + console.log('๐Ÿ“ฆ Patient data from props:', pasienData); + setNamaLengkap(pasienData.nama || ""); + setIdPasien(pasienData.idPasien || ""); + setKelas(pasienData.kelas || ""); + setTotalTarifRS(pasienData.totalTarifRS || 0); + setTindakan(Array.isArray(pasienData.tindakan) ? pasienData.tindakan.join(', ') : (pasienData.tindakan || "")); + setIcd9(Array.isArray(pasienData.icd9) ? pasienData.icd9.join(', ') : (pasienData.icd9 || "")); + setIcd10(Array.isArray(pasienData.icd10) ? pasienData.icd10.join(', ') : (pasienData.icd10 || "")); + + // Save to localStorage for future reference + const billingData = { + nama_pasien: pasienData.nama, + id_pasien: pasienData.idPasien, + kelas: pasienData.kelas, + tindakan: Array.isArray(pasienData.tindakan) ? pasienData.tindakan : (pasienData.tindakan ? [pasienData.tindakan] : []), + total_tarif_rs: pasienData.totalTarifRS, + icd9: Array.isArray(pasienData.icd9) ? pasienData.icd9 : (pasienData.icd9 ? [pasienData.icd9] : []), + icd10: Array.isArray(pasienData.icd10) ? pasienData.icd10 : (pasienData.icd10 ? [pasienData.icd10] : []), + }; + localStorage.setItem('currentBillingData', JSON.stringify(billingData)); + console.log('๐Ÿ’พ Patient data saved to localStorage from props'); + + // Fetch billing data dari API untuk get tanggal_keluar dan verify total_tarif_rs (yang mungkin sudah terupdate) + if (billingId) { + try { + const response = await apiFetch(`/admin/billing/${billingId}`); + if (!response.error && response.data) { + const tanggalKeluarData = response.data.tanggal_keluar || response.data.Tanggal_keluar || ""; + setTanggalKeluar(tanggalKeluarData); + console.log('๐Ÿ“ฅ Tanggal keluar from API:', tanggalKeluarData); + + // IMPORTANT: Update totalTarifRS dari API (bisa sudah terupdate jika ada tindakan baru) + const apiTarifRS = response.data.total_tarif_rs || 0; + if (apiTarifRS > 0) { + setTotalTarifRS(apiTarifRS); + console.log(`๐Ÿ“Š Updated Total_Tarif_RS from API: ${apiTarifRS} (was ${pasienData?.totalTarifRS})`); + } + } + } catch (err) { + console.error('Failed to fetch tanggal_keluar:', err); + } + } + return; + } + + // PRIORITY 2: Try to load from localStorage + const storedData = localStorage.getItem('currentBillingData'); + if (storedData) { + const billingData = JSON.parse(storedData); + console.log('๐Ÿ“ฆ Patient data loaded from localStorage:', billingData); + + setNamaLengkap(billingData.nama_pasien || ""); + setIdPasien(billingData.id_pasien || ""); + setKelas(billingData.kelas || ""); + setTotalTarifRS(billingData.total_tarif_rs || 0); + + if (billingData.tindakan && Array.isArray(billingData.tindakan) && billingData.tindakan.length > 0) { + setTindakan(billingData.tindakan.join(', ')); + } + + if (billingData.icd9 && Array.isArray(billingData.icd9) && billingData.icd9.length > 0) { + setIcd9(billingData.icd9.join(', ')); + } + + if (billingData.icd10 && Array.isArray(billingData.icd10) && billingData.icd10.length > 0) { + setIcd10(billingData.icd10.join(', ')); + } + + // Fetch billing data dari API untuk get tanggal_keluar dan verify total_tarif_rs (yang mungkin sudah terupdate) + if (billingId) { + try { + const response = await apiFetch(`/admin/billing/${billingId}`); + if (!response.error && response.data) { + const tanggalKeluarData = response.data.tanggal_keluar || response.data.Tanggal_keluar || ""; + setTanggalKeluar(tanggalKeluarData); + console.log('๐Ÿ“ฅ Tanggal keluar from API:', tanggalKeluarData); + + // IMPORTANT: Update totalTarifRS dari API (bisa sudah terupdate jika ada tindakan baru) + const apiTarifRS = response.data.total_tarif_rs || 0; + if (apiTarifRS > 0) { + setTotalTarifRS(apiTarifRS); + console.log(`๐Ÿ“Š Updated Total_Tarif_RS from API: ${apiTarifRS} (was ${billingData.total_tarif_rs})`); + } + } + } catch (err) { + console.error('Failed to fetch tanggal_keluar:', err); + } + } + return; + } + + // PRIORITY 3: If no localStorage data, fetch from API using billingId + if (billingId) { + console.log('๐Ÿ“ก Fetching patient data from API with billingId:', billingId); + try { + const response = await apiFetch(`/admin/billing/${billingId}`); + if (!response.error && response.data) { + const data = response.data; + console.log('๐Ÿ“ฅ Billing data from API:', data); + + setNamaLengkap(data.nama_pasien || data.patient_name || ""); + setIdPasien(data.id_pasien || data.patient_id || ""); + setKelas(data.kelas || ""); + setTotalTarifRS(data.total_tarif_rs || 0); + + if (data.tindakan) { + if (Array.isArray(data.tindakan)) { + setTindakan(data.tindakan.join(', ')); + } else { + setTindakan(data.tindakan); + } + } + + if (data.icd9) { + if (Array.isArray(data.icd9)) { + setIcd9(data.icd9.join(', ')); + } else { + setIcd9(data.icd9); + } + } + + if (data.icd10) { + if (Array.isArray(data.icd10)) { + setIcd10(data.icd10.join(', ')); + } else { + setIcd10(data.icd10); + } + } + + // Extract tanggal_keluar dari response + const tanggalKeluarData = data.tanggal_keluar || data.Tanggal_keluar || ""; + setTanggalKeluar(tanggalKeluarData); + console.log('๐Ÿ“ฅ Tanggal keluar from API:', tanggalKeluarData); + + // Store to localStorage + localStorage.setItem('currentBillingData', JSON.stringify(data)); + console.log('๐Ÿ’พ Patient data saved to localStorage from API'); + } else { + console.error('Failed to fetch billing data'); + } + } catch (err) { + console.error('โŒ Error fetching patient data from API:', err); + } + } + } catch (err) { + console.error('โŒ Error loading patient data:', err); + } + }; + + loadPatientData(); + }, [billingId, pasienData]); + + // Re-calculate totalKlaimBPJS saat selected codes atau INACBG data berubah + // Calculate total from ALL selected codes (same logic as handleSave) + useEffect(() => { + // Pastikan data INACBG sudah dimuat + if (inacbgRIData.length === 0 && inacbgRJData.length === 0) { + console.log('โธ๏ธ useEffect calculate SKIP: waiting for inacbgRIData/RJData to load...'); + return; + } + + console.log('๐Ÿš€ useEffect calculate triggered'); + + // Calculate total from ALL selected codes (same logic as handleSave) + let totalKlaim = 0; + + const kelasMatch = kelas.match(/(\d+)/); + const kelasNumber = kelasMatch ? parseInt(kelasMatch[1]) : 1; + + selectedInacbgCodes.forEach((code) => { + let tarif = 0; + if (tipeInacbg === 'RI') { + const riItem = inacbgRIData.find((item) => item.KodeINA === code); + if (riItem) { + if (kelasNumber === 1) tarif = riItem.Kelas1 || 0; + else if (kelasNumber === 2) tarif = riItem.Kelas2 || 0; + else if (kelasNumber === 3) tarif = riItem.Kelas3 || 0; + } + } else { + const rjItem = inacbgRJData.find((item) => item.KodeINA === code); + tarif = rjItem?.TarifINACBG || rjItem?.tarif_inacbg || 0; + } + // Potong 25% per item (klaim efektif) + totalKlaim += tarif * 0.75; + }); + + setTotalKlaimBPJS(totalKlaim); + + console.log( + `๐Ÿ’ฐ Total Klaim (ALL codes with 25% discount): total = ${totalKlaim} (selected = ${selectedInacbgCodes.length} codes)` + ); + }, [ + selectedInacbgCodes, + inacbgRIData, + inacbgRJData, + tipeInacbg, + kelas, + ]); + + // Auto-calculate totalKlaimOriginal if it's 0 but we have existing codes with tariff data + // DISABLED: Not needed anymore since we calculate ALL codes, not base + new + useEffect(() => { + // DISABLED - we now calculate ALL selected codes, not base + new + return; + }, []); + + // LIVE Billing Sign Calculation + // Dipisah dari useEffect di atas agar tetap berjalan meskipun selectedInacbgCodes kosong (misal saat load dari DB) + useEffect(() => { + // Guard: only compute when we actually have numbers to compare + if (!totalTarifRS || totalTarifRS <= 0 || !totalKlaimBPJS || totalKlaimBPJS <= 0) { + if (liveBillingSign !== "") setLiveBillingSign(""); + return; + } + + const sign = calculateBillingSign(totalTarifRS, totalKlaimBPJS); + if (sign !== liveBillingSign) { + setLiveBillingSign(sign); + console.log(`๐ŸŽจ Live Billing Sign updated to: ${sign} (Tarif: ${totalTarifRS}, Klaim: ${totalKlaimBPJS})`); + } + }, [totalTarifRS, totalKlaimBPJS, liveBillingSign]); + + // Listen untuk event billingDataUpdated dari edit modal dan refresh data + useEffect(() => { + const handleBillingDataUpdated = (event: any) => { + console.log('๐Ÿ“ข Billing data updated event received in Admin INACBG:', event.detail); + // Reload dari localStorage atau API untuk get updated tarif dan billing sign + if (billingId) { + setTimeout(() => { + const storedData = localStorage.getItem('currentBillingData'); + if (storedData) { + const billingData = JSON.parse(storedData); + setTotalTarifRS(billingData.total_tarif_rs || 0); + console.log('๐Ÿ“Š Updated totalTarifRS from localStorage:', billingData.total_tarif_rs); + } + // Also try to fetch fresh data from API + apiFetch(`/admin/billing/${billingId}`).then(response => { + if (!response.error && response.data) { + const apiTarifRS = response.data.total_tarif_rs || 0; + if (apiTarifRS > 0) { + setTotalTarifRS(apiTarifRS); + console.log('๐Ÿ“Š Updated totalTarifRS from API:', apiTarifRS); + } + } + }); + }, 300); + } + }; + + if (typeof window !== 'undefined') { + window.addEventListener('billingDataUpdated', handleBillingDataUpdated); + return () => { + window.removeEventListener('billingDataUpdated', handleBillingDataUpdated); + }; + } + }, [billingId]); + + // Debug log when modal opens + useEffect(() => { + if (isEditINACBGModalOpen) { + console.log('๐Ÿ”“ Edit INACBG Modal is now OPEN'); + console.log('๐Ÿ“‹ originalInacbgCodes:', originalInacbgCodes); + console.log('๐Ÿ“‹ totalKlaimOriginal:', totalKlaimOriginal); + console.log('๐Ÿ“‹ tipeInacbg:', tipeInacbg); + console.log('๐Ÿ“‹ kelas:', kelas); + } + }, [isEditINACBGModalOpen, originalInacbgCodes, totalKlaimOriginal, tipeInacbg, kelas]); + + // Load ruangan dengan pasien dan INACBG data, juga billing original data + useEffect(() => { + const loadData = async () => { + try { + // Fetch ruangan yang punya pasien + const ruanganRes = await apiFetch("/admin/ruangan-dengan-pasien"); + const ruanganData = ruanganRes.data || []; + + if (ruanganData && Array.isArray(ruanganData)) { + const namaRuangan = ruanganData.map((r: any) => r.Nama_Ruangan || r.nama_ruangan); + setRuanganItems(namaRuangan.length > 0 ? namaRuangan : ["Tidak ada ruangan"]); + if (namaRuangan.length > 0) { + setActiveRuangan(namaRuangan[0]); + } + } + + // Fetch INACBG data + const [riResponse, rjResponse] = await Promise.all([ + apiFetch("/tarifBPJSRawatInap"), + apiFetch("/tarifBPJSRawatJalan"), + ]); + + if (riResponse.data) { + setInacbgRIData(riResponse.data); + } + if (rjResponse.data) { + setInacbgRJData(rjResponse.data); + } + + // Fetch billing detail buat ambil Total_Klaim original sama billing aktif + if (billingId) { + try { + // Fetch billing detail + const res = await apiFetch(`/admin/billing/${billingId}`); + if (!res.error && res.data) { + const data = res.data; + console.log("๐Ÿ“Š Billing data from API:", data); + console.log("๐Ÿ“Š data.kode_inacbg:", data.kode_inacbg); + console.log("๐Ÿ“Š data.kode_inacbg type:", typeof data.kode_inacbg); + console.log("๐Ÿ“Š data.kode_inacbg is Array?:", Array.isArray(data.kode_inacbg)); + + // Set totalKlaimOriginal REGARDLESS dari nilainya (0, null, atau number) + // Karena ini diperlukan untuk useEffect calculate yang akan menghitung totalKlaimBPJS dengan benar + const totalKlaim = data.total_klaim || 0; + setTotalKlaimOriginal(totalKlaim); + console.log(`๐Ÿ’ฐ Set totalKlaimOriginal: ${totalKlaim}`); + // DONT set totalKlaimBPJS here - biarkan useEffect calculate yang set nilai dengan benar + // Jadi jangan: setTotalKlaimBPJS(totalKlaim); + + // Load Tipe INACBG + if (data.tipe_inacbg) { + setTipeInacbg(data.tipe_inacbg as "RI" | "RJ"); + console.log(`๐Ÿฅ Set tipeInacbg: ${data.tipe_inacbg} `); + } + + // Load Saved INACBG Codes + let loadedCodes: string[] = []; + if (data.kode_inacbg) { + if (Array.isArray(data.kode_inacbg)) { + loadedCodes = data.kode_inacbg; + } else if (typeof data.kode_inacbg === 'string') { + // Handle stored as string/JSON + try { + // Try parsing as JSON array + const parsed = JSON.parse(data.kode_inacbg); + if (Array.isArray(parsed)) loadedCodes = parsed; + else loadedCodes = [data.kode_inacbg]; + } catch (e) { + // Split by comma if not JSON + loadedCodes = data.kode_inacbg.split(',').map((s: string) => s.trim()).filter((s: string) => s !== ''); + } + } + } + + // SET EXISTING CODES DULU (PENTING BANGET buat perhitungan base + new) + // Ini adalah baseline codes dari DB yang TIDAK boleh di-recalculate + if (loadedCodes.length > 0) { + setExistingInacbgCodes(loadedCodes); + setOriginalInacbgCodes(loadedCodes); + } else { + // Jika kosong, set ke empty array untuk hindari undefined + setExistingInacbgCodes([]); + setOriginalInacbgCodes([]); + } + + // RESET deleted codes saat load (untuk hindari duplikat dari session sebelumnya) + setDeletedInacbgCodes([]); + console.log('๐Ÿงน Reset deletedInacbgCodes to empty array'); + + // SET SELECTED CODES ABIS EXISTING (pake loaded codes) + // Ini adalah current codes yang bisa di-add/delete oleh user + if (loadedCodes.length > 0) { + setSelectedInacbgCodes(loadedCodes); + console.log(`๐Ÿ“ Loaded INACBG codes from DB (kode_inacbg field): `, loadedCodes); + console.log(`๐Ÿ“ Set existingInacbgCodes & originalInacbgCodes: `, loadedCodes); + console.log(`๐Ÿ“ Set selectedInacbgCodes: `, loadedCodes); + console.log(`โœ… Total codes loaded: ${loadedCodes.length}`); + console.log(`๐ŸŽฏ FINAL: Will pass to modal:`, { + kode_inacbg: loadedCodes, + tipe_inacbg: data.tipe_inacbg, + kelas: data.kelas, + total_klaim: data.total_klaim + }); + } else { + console.log('๐Ÿ“ loadedCodes is empty array from kode_inacbg'); + console.log('๐Ÿ“ data.kode_inacbg value:', data.kode_inacbg); + setSelectedInacbgCodes([]); + console.log('โš ๏ธ No codes in DB, keeping empty'); + } + } + + } catch (err) { + console.error("Error fetching billing data:", err); + // Fallback: use totalKlaimBPJS yang terakumulasi + } + } + } catch (err) { + console.error("Error loading data:", err); + setRuanganItems(["Gagal memuat ruangan"]); + } + }; + + loadData(); + }, [billingId]); + + // Load billing aktif history pas namaLengkap udah tersedia + useEffect(() => { + if (namaLengkap && namaLengkap.trim() !== '') { + loadBillingAktifHistory(namaLengkap); + } + }, [namaLengkap]); + + // Sync INACBG codes dari billingHistory ke originalInacbgCodes jika masih kosong + // (Fallback untuk saat kode_inacbg field di API null/kosong) + useEffect(() => { + if ( + originalInacbgCodes.length === 0 && + billingHistory && + billingHistory.inacbg && + billingHistory.inacbg.length > 0 + ) { + console.log('๐Ÿ“ Syncing INACBG codes from billingHistory (was empty)'); + console.log('๐Ÿ“ billingHistory.inacbg:', billingHistory.inacbg); + setOriginalInacbgCodes(billingHistory.inacbg); + setExistingInacbgCodes(billingHistory.inacbg); + setSelectedInacbgCodes(billingHistory.inacbg); + console.log('โœ… INACBG codes synced from billingHistory'); + } + }, [billingHistory, originalInacbgCodes.length]); + + // Close dropdown when clicking outside + useEffect(() => { + const handleClickOutside = (event: MouseEvent) => { + const target = event.target as Node; + if (inacbgDropdownOpen) { + const isClickInsideInput = inacbgInputRef.current?.contains(target); + const isClickInsideDropdown = inacbgDropdownRef.current?.contains(target); + if (!isClickInsideInput && !isClickInsideDropdown) { + setInacbgDropdownOpen(false); + } + } + }; + + document.addEventListener("mousedown", handleClickOutside); + return () => document.removeEventListener("mousedown", handleClickOutside); + }, [inacbgDropdownOpen]); + + // Ambil tanggal hari ini + const getCurrentDate = () => { + const days = [ + "Minggu", + "Senin", + "Selasa", + "Rabu", + "Kamis", + "Jumat", + "Sabtu", + ]; + const months = [ + "Januari", + "Februari", + "Maret", + "April", + "Mei", + "Juni", + "Juli", + "Agustus", + "September", + "Oktober", + "November", + "Desember", + ]; + const today = new Date(); + return `${days[today.getDay()]}, ${today.getDate()} ${months[today.getMonth()] + } ${today.getFullYear()} `; + }; + + // Load billing aktif history buat ditampilkan (ICD9, ICD10, INACBG) + // Menggunakan endpoint yang sama dengan billing pasien untuk konsistensi + const loadBillingAktifHistory = async (namaPasienParam: string) => { + try { + if (!namaPasienParam || namaPasienParam.trim() === '') { + setBillingHistory({ icd9: [], icd10: [], inacbg: [] }); + setBillingHistoryInfo('Nama pasien tidak tersedia.'); + return; + } + + const res = await apiFetch<{ data: any }>( + `/billing/aktif?nama_pasien=${encodeURIComponent(namaPasienParam)}` + ); + + if (res.status === 404) { + console.log('Tidak ada billing aktif untuk pasien ini'); + setBillingHistory({ icd9: [], icd10: [], inacbg: [] }); + setBillingHistoryInfo('Tidak ada riwayat billing aktif untuk pasien ini.'); + return; + } + + if (res.error) { + throw new Error(res.error); + } + + const billingData = (res.data?.data || {}) as any; + + // NOTE: Jangan overwrite totalKlaimOriginal dari /billing/aktif + // Karena totalKlaimOriginal sudah di-set dari /admin/billing/{billingId} sebelumnya + // /billing/aktif hanya gunakan untuk load ICD9, ICD10, INACBG codes (jangan total_klaim) + + // Ambil ICD9, ICD10, dan INACBG + const icd9 = Array.isArray(billingData.icd9) ? billingData.icd9 : []; + const icd10 = Array.isArray(billingData.icd10) ? billingData.icd10 : []; + + // Gabungkan INACBG RI dan RJ + const inacbgRI = Array.isArray(billingData.inacbg_ri) ? billingData.inacbg_ri : []; + const inacbgRJ = Array.isArray(billingData.inacbg_rj) ? billingData.inacbg_rj : []; + const inacbg = [...inacbgRI, ...inacbgRJ]; + + // Extract tanggal masuk dan tanggal keluar + const tanggalMasuk = billingData.billing?.Tanggal_masuk || billingData.billing?.tanggal_masuk || null; + const tanggalKeluar = billingData.billing?.Tanggal_keluar || billingData.billing?.tanggal_keluar || null; + + console.log('๐Ÿ“… Extracted dates from billing history:', { tanggalMasuk, tanggalKeluar, billingObj: billingData.billing }); + + // Selalu set billing history, meskipun semua array kosong (untuk menampilkan tabel kosong) + setBillingHistory({ icd9, icd10, inacbg, tanggal_masuk: tanggalMasuk, tanggal_keluar: tanggalKeluar }); + + if (icd9.length > 0 || icd10.length > 0 || inacbg.length > 0) { + setBillingHistoryInfo('Riwayat billing aktif berhasil dimuat.'); + } else { + setBillingHistoryInfo('Riwayat billing aktif ditemukan, tetapi belum ada data ICD9, ICD10, atau INACBG.'); + } + + console.log('Billing aktif history loaded:', { icd9, icd10, inacbg }); + } catch (err) { + console.error('Error loading billing history:', err); + setBillingHistory({ icd9: [], icd10: [], inacbg: [] }); + setBillingHistoryInfo('Error: Gagal memuat riwayat billing.'); + } + }; + + // Filter INACBG codes based on search + const filteredInacbgCodes = () => { + // Extract class number from kelas string (\"Kelas 1\" -> 1, \"Kelas 3\" -> 3) + const kelasMatch = kelas.match(/(\d+)/); + const kelasNumber = kelasMatch ? parseInt(kelasMatch[1]) : 1; + + const data = + tipeInacbg === "RI" + ? inacbgRIData.map((item) => { + // Select tarif based on kelas + let tarifValue = item.Kelas1; + if (kelasNumber === 1) tarifValue = item.Kelas1; + else if (kelasNumber === 2) tarifValue = item.Kelas2; + else if (kelasNumber === 3) tarifValue = item.Kelas3; + + return { + code: item.KodeINA, + description: item.Deskripsi, + tarif: tarifValue, + }; + }) + : inacbgRJData.map((item) => ({ + code: item.KodeINA, + description: item.Deskripsi, + tarif: item.TarifINACBG || item.tarif_inacbg || 0, + })); + + if (!inacbgSearch) return data; + + return data.filter( + (item) => + item.code.toLowerCase().includes(inacbgSearch.toLowerCase()) || + item.description.toLowerCase().includes(inacbgSearch.toLowerCase()) + ); + }; + + // Lookup tarif INACBG "mentah" (belum dipotong 25%) untuk ditampilkan di tabel riwayat. + // RI: gunakan kelas (1/2/3), RJ: gunakan TarifINACBG. + const getInacbgTarifRaw = (code: string): number | null => { + if (!code) return null; + + const kelasMatch = kelas.match(/(\d+)/); + const kelasNumber = kelasMatch ? parseInt(kelasMatch[1]) : 1; + + const riItem = inacbgRIData.find((item) => item.KodeINA === code); + if (riItem) { + if (kelasNumber === 1) return riItem.Kelas1 || 0; + if (kelasNumber === 2) return riItem.Kelas2 || 0; + if (kelasNumber === 3) return riItem.Kelas3 || 0; + return riItem.Kelas1 || 0; + } + + const rjItem = inacbgRJData.find((item) => item.KodeINA === code); + if (rjItem) return rjItem.TarifINACBG || rjItem.tarif_inacbg || 0; + + return null; + }; + + // Add INACBG code - mirip dengan handleAddICD9/ICD10 + // Total klaim akan dihitung ulang otomatis oleh useEffect (single source of truth) + // PENTING: existingInacbgCodes adalah baseline dari DB (tidak boleh berubah saat add/delete) + // newCodes = selectedInacbgCodes - existingInacbgCodes (untuk perhitungan delta) + const handleAddInacbg = (code?: string) => { + const codeToAdd = code || selectedInacbgCode; + + if (!codeToAdd) { + // Jika ada filtered codes, ambil yang pertama + const filtered = filteredInacbgCodes(); + if (filtered.length > 0) { + const firstCode = filtered[0].code; + if (!selectedInacbgCodes.includes(firstCode)) { + setSelectedInacbgCodes([...selectedInacbgCodes, firstCode]); + setInacbgSearch(""); + setInacbgDropdownOpen(false); + setError(""); + } + } else { + setError("Pilih kode INA CBG terlebih dahulu"); + } + return; + } + + if (selectedInacbgCodes.includes(codeToAdd)) { + setError("Kode INA CBG sudah ditambahkan"); + return; + } + + // Hanya update selectedInacbgCodes, totalKlaimBPJS akan dihitung ulang otomatis oleh useEffect + setSelectedInacbgCodes([...selectedInacbgCodes, codeToAdd]); + setInacbgSearch(""); + setInacbgDropdownOpen(false); + setError(""); // Clear error on successful add + }; + + // Remove INACBG code - Delete by index (bukan by code) agar duplikat tidak semua terhapus + const handleRemoveInacbg = (idx: number) => { + const codeToDelete = selectedInacbgCodes[idx]; + const newCodes = selectedInacbgCodes.filter((_, i) => i !== idx); + setSelectedInacbgCodes(newCodes); + + if (existingInacbgCodes.includes(codeToDelete) && !deletedInacbgCodes.includes(codeToDelete)) { + setDeletedInacbgCodes([...deletedInacbgCodes, codeToDelete]); + console.log(`โœ… INACBG code deleted (tracked for backend): ${codeToDelete}`); + } + }; + + // Hitung billing sign berdasarkan persentase + // Mapping to database ENUM('Hijau','Kuning','Merah') + // Rumus (klaim efektif per item): tarif INACBG sudah dipotong 25% per item saat dihitung ke totalKlaimBPJS. + // Jadi di sini kita membandingkan Tarif RS vs totalKlaimBPJS (yang sudah efektif), TANPA potong 25% lagi. + const calculateBillingSign = (totalTarifRS: number, totalKlaimBPJS: number): string => { + console.log(`๐Ÿ” calculateBillingSign called: totalTarifRS = ${totalTarifRS}, totalKlaimBPJS = ${totalKlaimBPJS} `); + + if (!totalKlaimBPJS || totalKlaimBPJS === 0) { + console.warn("โš ๏ธ totalKlaimBPJS is 0 or empty, returning ' '"); + return " "; + } + + // Hitung persentase: (Total_Tarif_RS / Total_Klaim_BPJS_Efektif) ร— 100% + const percentage = (totalTarifRS / totalKlaimBPJS) * 100; + console.log(`๐Ÿ“Š Percentage: ${percentage.toFixed(2)}% `); + + if (percentage <= 25) { + console.log("โœ… Returning: Hijau (<=25%)"); + return "Hijau"; // Tarif RS <=25% dari Klaim BPJS Efektif = AMAN + } else if (percentage <= 50) { + console.log("โœ… Returning: Kuning (26-50%)"); + return "Kuning"; // 26%-50% = PERLU PERHATIAN + } else { + console.log("โœ… Returning: Merah (>50%)"); + return "Merah"; // >50% = WASPADA + } + }; + + // Helper function to calculate total klaim with 25% discount per item + // Hitung SEMUA selected codes (bukan base + new) buat hindari double counting + const calculateTotalKlaim = (selectedCodes: string[]): number => { + let totalKlaim = 0; + + // Extract class number from kelas string ("Kelas 1" -> 1, "Kelas 3" -> 3) + const kelasMatch = kelas.match(/(\d+)/); + const kelasNumber = kelasMatch ? parseInt(kelasMatch[1]) : 1; + + // Calculate total from ALL selected codes + selectedCodes.forEach((code) => { + let tarif = 0; + + if (tipeInacbg === 'RI') { + const riItem = inacbgRIData.find((item) => item.KodeINA === code); + if (riItem) { + if (kelasNumber === 1) tarif = riItem.Kelas1 || 0; + else if (kelasNumber === 2) tarif = riItem.Kelas2 || 0; + else if (kelasNumber === 3) tarif = riItem.Kelas3 || 0; + } + } else { + const rjItem = inacbgRJData.find((item) => item.KodeINA === code); + tarif = rjItem?.TarifINACBG || rjItem?.tarif_inacbg || 0; + } + + // Apply 25% discount (klaim efektif = 75% dari tarif) + totalKlaim += tarif * 0.75; + + console.log(` ๐Ÿ“Œ Code: ${code}, Tarif: ${tarif}, Efektif (75%): ${tarif * 0.75}`); + }); + + console.log( + `๐Ÿ’ฐ calculateTotalKlaim (ALL codes): total = ${totalKlaim} (selected = ${selectedCodes.length} codes)` + ); + + return totalKlaim; + }; + + // Handle save + const handleSave = async () => { + if (!billingId) { + setError("ID Billing tidak ditemukan"); + return; + } + + // Cek apakah ini input INACBG pertama kali atau update harian + // Jika sudah pernah input INACBG sebelumnya (existingInacbgCodes ada atau totalKlaimOriginal > 0), + // maka INACBG menjadi OPTIONAL untuk update harian + const isFirstTimeInacbg = existingInacbgCodes.length === 0 && (!totalKlaimOriginal || totalKlaimOriginal === 0); + + if (isFirstTimeInacbg && selectedInacbgCodes.length === 0) { + setError("Minimal pilih satu kode INA CBG (wajib untuk input pertama kali)"); + return; + } + + // Buat update harian, INACBG OPTIONAL, tapi kalo dipilih harus ada minimal 1 + // Jika tidak ada kode yang dipilih untuk update, tetap bisa lanjut (akan compare dengan INACBG sebelumnya) + + setLoading(true); + setError(""); + setSuccess(""); + + try { + // Gunakan totalKlaimBPJS dari state (sudah dihitung di card via useEffect) + const totalTarifRSValue = totalTarifRS || 0; + const totalKlaimFinal = totalKlaimBPJS || 0; + + console.log(`๐Ÿ’ฐ Data untuk send payload: `); + console.log(` - totalTarifRS: ${totalTarifRSValue} `); + console.log(` - totalKlaimBPJS (dari card): ${totalKlaimBPJS} `); + console.log(` - Selected INACBG codes: ${selectedInacbgCodes.length} codes`); + + const billingSignColor = calculateBillingSign(totalTarifRSValue, totalKlaimFinal); + + console.log(`๐Ÿ“‹ Final billing_sign value: ${billingSignColor} `); + + // De-duplicate selectedInacbgCodes sebelum kirim + const uniqueSelectedCodes = Array.from(new Set(selectedInacbgCodes)); + const uniqueDeletedCodes = Array.from(new Set(deletedInacbgCodes)); + + const payload: EditINACBGRequest = { + id_billing: billingId, + tipe_inacbg: tipeInacbg, + kode_inacbg: uniqueSelectedCodes, // FINAL codes yang seharusnya ada (de-duplicated) + kode_delete: uniqueDeletedCodes, // Kode yang dihapus (de-duplicated) + total_klaim: totalKlaimBPJS, // โœ… Gunakan totalKlaimBPJS dari state + billing_sign: billingSignColor, + }; + + console.log("๐Ÿ“ค Sending EDIT INACBG payload:", payload); + + // Simpan selected codes ke localStorage SEBELUM submit + const currentBillingData = localStorage.getItem('currentBillingData'); + if (currentBillingData) { + try { + const billingData = JSON.parse(currentBillingData); + billingData.selected_inacbg_codes = selectedInacbgCodes; + billingData.total_klaim_bpjs = totalKlaimBPJS; + billingData.tipe_inacbg = tipeInacbg; + billingData.deleted_inacbg_codes = deletedInacbgCodes; + localStorage.setItem('currentBillingData', JSON.stringify(billingData)); + console.log('๐Ÿ’พ Selected & deleted INACBG codes saved to localStorage'); + } catch (err) { + console.error('โŒ Error saving to localStorage:', err); + } + } + + const response = await apiFetch<{ status: string; message: string }>("/admin/inacbg", { + method: "POST", + body: JSON.stringify(payload), + }); + + console.log("๐Ÿ“ฅ Response from backend:", response); + + if (response.error) { + setError(response.error); + return; + } + + setSuccess("Data INA CBG berhasil disimpan"); + setTimeout(() => { + // Navigate back to dashboard using router to avoid white screen + window.location.reload(); + }, 2000); + } catch (err) { + setError( + err instanceof Error + ? err.message + : "Terjadi kesalahan saat menyimpan data" + ); + } finally { + setLoading(false); + } + }; + + // Handle close billing + const handleCloseBilling = async () => { + if (!billingId) { + setError("ID Billing tidak ditemukan"); + return; + } + + if (!tanggalKeluar || tanggalKeluar.trim() === "") { + setError("Tanggal keluar harus diisi untuk menutup billing"); + return; + } + + // Tampilin confirmation modal daripada window.confirm + setIsCloseBillingConfirmOpen(true); + }; + + // Confirm close billing after modal confirmation + const confirmCloseBilling = async () => { + setIsCloseBillingConfirmOpen(false); + setLoading(true); + setError(""); + setSuccess(""); + + try { + const payload = { + id_billing: billingId, + tanggal_keluar: tanggalKeluar, + }; + + console.log("๐Ÿ“ค Sending CLOSE BILLING payload:", payload); + + const response = await apiFetch<{ status: string; message: string }>("/billing/close", { + method: "POST", + body: JSON.stringify(payload), + }); + + console.log("๐Ÿ“ฅ Response from backend:", response); + + if (response.error) { + setError(response.error); + return; + } + + setSuccess("Billing berhasil ditutup. Pasien tidak lagi bisa diedit."); + setTimeout(() => { + window.location.reload(); + }, 2000); + } catch (err) { + setError( + err instanceof Error + ? err.message + : "Terjadi kesalahan saat menutup billing" + ); + } finally { + setLoading(false); + } + }; + + const handleLogout = () => { + localStorage.removeItem("isAuthenticated"); + localStorage.removeItem("userRole"); + localStorage.removeItem("token"); + localStorage.removeItem("dokter"); + if (onLogout) { + onLogout(); + } + }; + + return ( +

        + {/* Hamburger Menu Button - Mobile Only */} + + + {/* Mobile Overlay */} + {isSidebarOpen && ( +
        setIsSidebarOpen(false)} + /> + )} + + {/* Left Sidebar */} +
        + {/* Logo */} +
        + CARE-IT Logo +
        + + {/* Navigation Menu */} + +
        + + {/* Main Content */} +
        + {/* Top Bar */} +
        + +
        +
        + {getCurrentDate()} +
        + +
        +
        + + {/* Form Content */} +
        + {/* Error/Success Messages */} + {error && ( +
        + {error} +
        + )} + {success && ( +
        + {success} +
        + )} + + {/* Title */} +
        Data Pasien
        + +
        + {/* Nama Lengkap */} +
        + + setNamaLengkap(e.target.value)} + className="w-full border text-sm border-blue-200 rounded-full py-2 sm:py-3 pl-3 sm:pl-4 pr-8 sm:pr-10 text-[#2591D0] bg-white focus:ring-2 focus:ring-blue-400 focus:border-blue-400 focus:outline-0" + readOnly + /> +
        + + {/* ID Pasien dan Kelas - Two Columns */} +
        +
        + + setIdPasien(e.target.value)} + className="w-full border text-sm border-blue-200 rounded-full py-2 sm:py-3 pl-3 sm:pl-4 pr-8 sm:pr-10 text-[#2591D0] bg-white focus:ring-2 focus:ring-blue-400 focus:border-blue-400 focus:outline-0" + readOnly + /> +
        +
        + + setKelas(e.target.value)} + className="w-full border text-sm border-blue-200 rounded-full py-2 sm:py-3 pl-3 sm:pl-4 pr-8 sm:pr-10 text-[#2591D0] bg-white focus:ring-2 focus:ring-blue-400 focus:border-blue-400 focus:outline-0" + readOnly + /> +
        +
        + + {/* Tindakan dan Pemeriksaan Penunjang & Total Tarif RS - Two Columns */} +
        + {/* Tindakan dan Pemeriksaan Penunjang */} +
        + + setTindakan(e.target.value)} + className="w-full border text-sm border-blue-200 rounded-full py-2 sm:py-3 pl-3 sm:pl-4 pr-8 sm:pr-10 text-[#2591D0] bg-white focus:ring-2 focus:ring-blue-400 focus:border-blue-400 focus:outline-0" + readOnly + /> +
        + {/* Total Tarif RS */} +
        + + +
        +
        + + {/* ICD 9 dan ICD 10 - Two Columns */} +
        +
        + + setIcd9(e.target.value)} + className="w-full border text-sm border-blue-200 rounded-full py-2 sm:py-3 pl-3 sm:pl-4 pr-8 sm:pr-10 text-[#2591D0] bg-white focus:ring-2 focus:ring-blue-400 focus:border-blue-400 focus:outline-0" + readOnly + /> +
        +
        + + setIcd10(e.target.value)} + className="w-full border text-sm border-blue-200 rounded-full py-2 sm:py-3 pl-3 sm:pl-4 pr-8 sm:pr-10 text-[#2591D0] bg-white focus:ring-2 focus:ring-blue-400 focus:border-blue-400 focus:outline-0" + readOnly + /> +
        +
        + + {/* Tanggal Keluar */} +
        + + setTanggalKeluar(e.target.value)} + className="w-full border text-sm border-blue-200 rounded-full py-2 sm:py-3 pl-3 sm:pl-4 pr-8 sm:pr-10 text-[#2591D0] bg-white focus:ring-2 focus:ring-blue-400 focus:border-blue-400 focus:outline-0" + /> +
        + + {/* Riwayat Billing Aktif (ICD9, ICD10, INACBG) */} +
        + +
        {billingHistoryInfo}
        + + {/* Desktop Table View */} + {billingHistory && ( +
        + + + + + + + + + + + + {Math.max(billingHistory.icd9.length, billingHistory.icd10.length, billingHistory.inacbg.length) > 0 ? ( + Array.from({ + length: Math.max(billingHistory.icd9.length, billingHistory.icd10.length, billingHistory.inacbg.length) + }).map((_, idx) => ( + + + + + + + + )) + ) : ( + + + + )} + +
        Tanggal MasukTanggal KeluarICD 9ICD 10INACBG
        + {billingHistory.tanggal_masuk + ? new Date(billingHistory.tanggal_masuk).toLocaleDateString('id-ID', { year: 'numeric', month: 'long', day: 'numeric' }) + : '-'} + + {billingHistory.tanggal_keluar + ? new Date(billingHistory.tanggal_keluar).toLocaleDateString('id-ID', { year: 'numeric', month: 'long', day: 'numeric' }) + : '-'} + + {billingHistory.icd9[idx] || '-'} + + {billingHistory.icd10[idx] || '-'} + + {(() => { + const code = billingHistory.inacbg[idx] || ''; + if (!code) return '-'; + const tarif = getInacbgTarifRaw(code); + return tarif === null + ? code + : `${code} โ€” Rp ${Number(tarif).toLocaleString('id-ID')}`; + })()} +
        + Belum ada data +
        +
        + )} + + {/* Mobile/Tablet Card View */} + {billingHistory && ( +
        + {Math.max(billingHistory.icd9.length, billingHistory.icd10.length, billingHistory.inacbg.length) > 0 ? ( + Array.from({ + length: Math.max(billingHistory.icd9.length, billingHistory.icd10.length, billingHistory.inacbg.length) + }).map((_, idx) => ( +
        +
        +
        + + Tanggal Masuk + + + {billingHistory.tanggal_masuk + ? new Date(billingHistory.tanggal_masuk).toLocaleDateString('id-ID', { year: 'numeric', month: 'long', day: 'numeric' }) + : '-'} + +
        +
        + + Tanggal Keluar + + + {billingHistory.tanggal_keluar + ? new Date(billingHistory.tanggal_keluar).toLocaleDateString('id-ID', { year: 'numeric', month: 'long', day: 'numeric' }) + : '-'} + +
        +
        + + ICD 9 + + + {billingHistory.icd9[idx] || '-'} + +
        +
        + + ICD 10 + + + {billingHistory.icd10[idx] || '-'} + +
        +
        + + INACBG + + + {(() => { + const code = billingHistory.inacbg[idx] || ''; + if (!code) return '-'; + const tarif = getInacbgTarifRaw(code); + return tarif === null + ? code + : `${code} โ€” Rp ${Number(tarif).toLocaleString('id-ID')}`; + })()} + +
        +
        +
        + )) + ) : ( +
        + Belum ada data +
        + )} +
        + )} +
        + + {/* Warning Billing Sign - Real-time Display */} + {totalTarifRS > 0 && totalKlaimBPJS > 0 && ( +
        +
        +
        +
        + ! +
        +
        +
        +

        + {liveBillingSign === 'Merah' ? 'โš ๏ธ Perhatian: Tarif RS Melebihi INACBG' : + liveBillingSign === 'Kuning' ? 'โš ๏ธ Perhatian: Tarif RS Mendekati INACBG' : + 'โœ… Tarif RS Dalam Batas Aman'} +

        +

        + Tarif RS: Rp {totalTarifRS.toLocaleString('id-ID')} | + INACBG: Rp {totalKlaimBPJS.toLocaleString('id-ID')} +

        + {liveBillingSign === 'Merah' && ( +

        + Selisih: Rp {(totalTarifRS - totalKlaimBPJS).toLocaleString('id-ID')} +

        + )} +
        +
        +
        + )} + + {/* Tipe INA CBG */} +
        + +
        + + +
        +
        + + {/* INA CBG */} +
        + +
        +
        + { + setInacbgSearch(e.target.value); + setInacbgDropdownOpen(true); + }} + onFocus={() => { + if (!inacbgJustClosed) { + setInacbgDropdownOpen(true); + } + setInacbgJustClosed(false); + }} + onKeyDown={(e) => { + if (e.key === 'Enter' && filteredInacbgCodes().length > 0) { + handleAddInacbg(filteredInacbgCodes()[0].code); + e.preventDefault(); + } + }} + className="w-full border text-sm border-blue-200 rounded-full py-2 sm:py-3 pl-3 sm:pl-4 pr-10 sm:pr-12 text-[#2591D0] placeholder-blue-400 focus:ring-2 focus:ring-blue-400 focus:border-blue-400 focus:outline-0" + /> + { + e.stopPropagation(); + if (inacbgDropdownOpen) { + setInacbgJustClosed(true); + setInacbgDropdownOpen(false); + } else { + setInacbgJustClosed(false); + setInacbgDropdownOpen(true); + } + }} + className="absolute right-3 sm:right-4 top-1/2 -translate-y-1/2 text-blue-400 cursor-pointer hover:text-blue-600 text-sm sm:text-base pointer-events-auto z-10" + /> + {inacbgDropdownOpen && ( +
        e.stopPropagation()} + > + {filteredInacbgCodes().map((item) => ( +
        handleAddInacbg(item.code)} + className="px-4 py-2 hover:bg-blue-50 cursor-pointer text-sm text-[#2591D0]" + > +
        {item.code}
        +
        {item.description}
        +
        + ))} + {inacbgSearch && filteredInacbgCodes().length === 0 && ( +
        + Tidak ada hasil ditemukan +
        + )} +
        + )} +
        + +
        + + {/* Display NEW INACBG codes (not in originalInacbgCodes) as chips with price */} + {Array.from(new Set(selectedInacbgCodes)).filter(code => !originalInacbgCodes.includes(code)).length > 0 && ( +
        + +
        + {Array.from(new Set(selectedInacbgCodes)) + .filter(code => !originalInacbgCodes.includes(code)) + .map((code, idx) => { + const tarif = getInacbgTarifRaw(code) || 0; + return ( +
        + {code} + Rp {Number(tarif).toLocaleString('id-ID')} + +
        + ); + })} +
        +
        + )} +
        + + {/* Total Klaim BPJS */} +
        + + +
        + + {/* Billing Sign Indicator */} +
        + +
        + {liveBillingSign === "" && "Belum bisa dihitung (isi data klaim & tarif dulu)"} + {liveBillingSign === "Hijau" && "Hijau - AMAN (<= 25%)"} + {liveBillingSign === "Kuning" && "Kuning - PERHATIAN (26% - 50%)"} + {liveBillingSign === "Merah" && "Merah - WASPADA (> 50%)"} +
        +
        + + {/* Save & Edit Buttons */} +
        + + + +
        +
        + + {/* Edit INACBG Modal */} + 0 ? selectedInacbgCodes : (originalInacbgCodes.length > 0 ? originalInacbgCodes : (billingHistory?.inacbg || [])))), // De-dup sebelum pass + tipe_inacbg: tipeInacbg, + kelas: kelas, + total_klaim: totalKlaimBPJS, // Pass CURRENT total (sudah include yang baru ditambah di parent) + }} + onClose={() => setIsEditINACBGModalOpen(false)} + onSuccess={() => { + setIsEditINACBGModalOpen(false); + window.location.reload(); + }} + /> + + {/* Close Billing Confirmation Modal */} + {isCloseBillingConfirmOpen && ( +
        +
        +
        + + + +
        + +

        + Tutup Billing Pasien? +

        + +

        + Anda akan menutup billing untuk pasien: +

        + +
        +
        + Nama Pasien: + {namaLengkap || "-"} +
        +
        + ID Billing: + {billingId || "-"} +
        +
        + Tanggal Keluar: + {tanggalKeluar || "-"} +
        +
        + +
        +

        + โš ๏ธ Perhatian: Setelah billing ditutup, pasien tidak akan bisa diedit lagi. Pastikan semua data sudah benar sebelum melanjutkan. +

        +
        + +
        + + +
        +
        +
        + )} +
        +
        +
        + ); +}; + +export default INACBG_Admin_Ruangan; \ No newline at end of file diff --git a/frontendcareit_v4/src/app/component/admin-ruangan.tsx b/frontendcareit_v4/src/app/component/admin-ruangan.tsx new file mode 100644 index 0000000..272ff8a --- /dev/null +++ b/frontendcareit_v4/src/app/component/admin-ruangan.tsx @@ -0,0 +1,151 @@ +"use client"; +import { useState, useEffect } from "react"; +import { FaSearch, FaEdit, FaTrash, FaPlus } from 'react-icons/fa'; +import { getRuangan } from "@/lib/api-helper"; + +interface Ruangan { + id?: number; + ID_Ruangan?: number; + nama?: string; + Nama_Ruangan?: string; + [key: string]: any; +} + +interface AdminRuanganProps { + onLogout?: () => void; +} + +const AdminRuangan = ({ onLogout }: AdminRuanganProps) => { + const [ruanganList, setRuanganList] = useState([]); + const [loading, setLoading] = useState(true); + const [error, setError] = useState(""); + const [searchTerm, setSearchTerm] = useState(""); + + // Buat fetch ruangan list yak + useEffect(() => { + const fetchRuangan = async () => { + try { + setLoading(true); + setError(""); + + const response = await getRuangan(); + + if (response.error) { + setError(response.error); + setRuanganList([]); + return; + } + + // Extract ruangan data dari response + const ruanganArray = (response.data as any)?.data || response.data; + + if (ruanganArray && Array.isArray(ruanganArray)) { + setRuanganList(ruanganArray); + } else { + setRuanganList([]); + } + } catch (err) { + setError(err instanceof Error ? err.message : "Error loading ruangan"); + setRuanganList([]); + } finally { + setLoading(false); + } + }; + + fetchRuangan(); + }, []); + + // Filter ruangan by search term + const filteredRuangan = ruanganList.filter((ruangan) => { + const nama = (ruangan.nama || ruangan.Nama_Ruangan || "").toString().toLowerCase(); + return nama.includes(searchTerm.toLowerCase()); + }); + + return ( +
        + {/* Header */} +
        +

        Manajemen Ruangan

        +

        Kelola data ruangan rumah sakit

        +
        + + {/* Search dan Add Button */} +
        +
        + + setSearchTerm(e.target.value)} + className="w-full pl-10 pr-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:border-blue-500" + /> +
        + +
        + + {/* Loading State */} + {loading && ( +
        +
        +
        + )} + + {/* Error State */} + {error && !loading && ( +
        +

        Error

        +

        {error}

        +
        + )} + + {/* Ruangan Table */} + {!loading && !error && ( +
        + {filteredRuangan.length > 0 ? ( +
        + + + + + + + + + + {filteredRuangan.map((ruangan, idx) => ( + + + + + + ))} + +
        NoNama RuanganAksi
        {idx + 1} + {ruangan.nama || ruangan.Nama_Ruangan || "-"} + + + +
        +
        + ) : ( +
        +

        Tidak ada ruangan ditemukan

        +
        + )} +
        + )} +
        + ); +}; + +export default AdminRuangan; diff --git a/frontendcareit_v4/src/app/component/backend-status.tsx b/frontendcareit_v4/src/app/component/backend-status.tsx new file mode 100644 index 0000000..c9f2511 --- /dev/null +++ b/frontendcareit_v4/src/app/component/backend-status.tsx @@ -0,0 +1,80 @@ +"use client"; + +import React, { useState, useEffect } from "react"; +import { checkBackendHealth } from "@/lib/api"; + +interface BackendStatusProps { + className?: string; +} + +const BackendStatus: React.FC = ({ className = "" }) => { + const [isOnline, setIsOnline] = useState(null); + const [isChecking, setIsChecking] = useState(false); + const [lastChecked, setLastChecked] = useState(null); + + const checkStatus = async () => { + setIsChecking(true); + try { + const response = await checkBackendHealth(); + setIsOnline(response.status === 200 && !response.error); + setLastChecked(new Date()); + } catch (error) { + setIsOnline(false); + setLastChecked(new Date()); + } finally { + setIsChecking(false); + } + }; + + useEffect(() => { + // Cek status di awal abis delay singkat buat hindari conflict + const initialTimeout = setTimeout(() => { + checkStatus(); + }, 1000); + + // Cek status setiap 60 detik (frekuensi dikurangin) + const interval = setInterval(checkStatus, 60000); + + return () => { + clearTimeout(initialTimeout); + clearInterval(interval); + }; + }, []); + + const getStatusColor = () => { + if (isChecking) return "bg-yellow-500"; + if (isOnline === null) return "bg-gray-500"; + return isOnline ? "bg-green-500" : "bg-red-500"; + }; + + const getStatusText = () => { + if (isChecking) return "Checking..."; + if (isOnline === null) return "Unknown"; + return isOnline ? "Online" : "Offline"; + }; + + return ( +
        +
        + Backend: {getStatusText()} + {lastChecked && ( + + ({lastChecked.toLocaleTimeString()}) + + )} + +
        + ); +}; + +export default BackendStatus; diff --git a/frontendcareit_v4/src/app/component/billing-pasien.tsx b/frontendcareit_v4/src/app/component/billing-pasien.tsx new file mode 100644 index 0000000..68c0632 --- /dev/null +++ b/frontendcareit_v4/src/app/component/billing-pasien.tsx @@ -0,0 +1,1852 @@ +"use client"; +import { useState, useRef, useEffect } from 'react'; +import { FaCalendarAlt, FaPlus, FaTrash, FaSearch, FaChevronDown } from 'react-icons/fa'; +import EditPasienModal from './edit-pasien-modal'; +import { + getDokter, + getRuangan, + getICD9, + getICD10, + getTarifRumahSakit, + searchPasien, + createBilling, + type Dokter, + type Ruangan, + type ICD9, + type ICD10, + type TarifData, + type BillingRequest, + getBillingAktifByNama, +} from '@/lib/api-helper'; + +interface BillingPasienProps { + onEditBilling?: (billingId: number, pasienName: string) => void; +} + +const BillingPasien = ({ onEditBilling }: BillingPasienProps) => { + // State form + const [namaPasien, setNamaPasien] = useState(''); + const [idPasien, setIdPasien] = useState(''); + const [usia, setUsia] = useState(''); + const [gender, setGender] = useState('Laki-Laki'); + const [ruangan, setRuangan] = useState(''); + const [kelas, setKelas] = useState(''); + const [tanggalMasuk, setTanggalMasuk] = useState(''); + const [tanggalKeluar, setTanggalKeluar] = useState(''); + const [dpjp, setDpjp] = useState(''); + const [caraBayar, setCaraBayar] = useState('BPJS'); + const [totalTarifRS, setTotalTarifRS] = useState(0); + const [userRole, setUserRole] = useState(''); + + // Data dropdown + const [dokterList, setDokterList] = useState([]); + const [ruanganList, setRuanganList] = useState([]); + const [icd9List, setIcd9List] = useState([]); + const [icd10List, setIcd10List] = useState([]); + const [tarifRSList, setTarifRSList] = useState([]); + + // Items yang dipilih + const [selectedTindakan, setSelectedTindakan] = useState([]); + const [selectedICD9, setSelectedICD9] = useState([]); + const [selectedICD10, setSelectedICD10] = useState([]); + + // Billing history state (untuk menampilkan riwayat tindakan & ICD dari pasien) + const [billingHistory, setBillingHistory] = useState<{ + tindakan_rs: string[]; + icd9: string[]; + icd10: string[]; + inacbg?: string[]; + total_tarif_rs: number; + total_klaim?: number; // โ† Added: Total_Tarif_BPJS dari DB (baseline untuk calculation) + billingId?: number; + tanggal_masuk?: string | null; + tanggal_keluar?: string | null; + } | null>(null); + const [billingHistoryInfo, setBillingHistoryInfo] = useState('Belum ada data yang dimuat. Pilih pasien untuk melihat riwayat.'); + + // State edit identitas modal + const [showEditModal, setShowEditModal] = useState(false); + const [editModalData, setEditModalData] = useState<{ + nama_pasien: string; + usia: number; + jenis_kelamin: string; + ruangan: string; + kelas: string; + tindakan_rs: string[]; + icd9: string[]; + icd10: string[]; + } | null>(null); + + // State UI + const [loading, setLoading] = useState(false); + const [error, setError] = useState(''); + const [success, setSuccess] = useState(''); + const [searchingPasien, setSearchingPasien] = useState(false); + const [searchResults, setSearchResults] = useState([]); + const [nameDropdownOpen, setNameDropdownOpen] = useState(false); + const [isSubmitting, setIsSubmitting] = useState(false); + + // Helper buat hitung billing_sign - bandingkan Tarif RS vs Total Klaim BPJS + const computeBillingSign = (tarif: number, totalKlaim: number): string => { + const totalTarif = tarif || 0; + const klaim = totalKlaim || 0; + + if (!klaim || klaim === 0) return ''; + const percentage = (totalTarif / klaim) * 100; + + if (percentage <= 25) { + return "Hijau"; // Tarif RS <=25% dari Klaim BPJS Efektif = AMAN + } else if (percentage <= 50) { + return "Kuning"; // 26%-50% = PERLU PERHATIAN + } else { + return "Merah"; // >50% = WASPADA + } + }; + + // Nilai display live (dipake di card) + const totalKlaimBPJSLive = (billingHistory && billingHistory.total_klaim) ? billingHistory.total_klaim : 0; + const liveBillingSign = computeBillingSign(totalTarifRS, totalKlaimBPJSLive); + + // Debug logging buat billing sign changes + useEffect(() => { + console.log('๐ŸŽจ Billing Sign Calculation:', { + totalTarifRS, + totalKlaimBPJSLive, + liveBillingSign, + percentage: totalKlaimBPJSLive ? (totalTarifRS / totalKlaimBPJSLive * 100).toFixed(2) : 'N/A' + }); + }, [totalTarifRS, totalKlaimBPJSLive, liveBillingSign]); + + // State dropdown searchable + const [tindakanSearch, setTindakanSearch] = useState(''); + const [tindakanDropdownOpen, setTindakanDropdownOpen] = useState(false); + const [tindakanJustClosed, setTindakanJustClosed] = useState(false); + const [icd9Search, setIcd9Search] = useState(''); + const [icd9DropdownOpen, setIcd9DropdownOpen] = useState(false); + const [icd9JustClosed, setIcd9JustClosed] = useState(false); + const [icd10Search, setIcd10Search] = useState(''); + const [icd10DropdownOpen, setIcd10DropdownOpen] = useState(false); + const [icd10JustClosed, setIcd10JustClosed] = useState(false); + const [ruanganSearch, setRuanganSearch] = useState(''); + const [ruanganDropdownOpen, setRuanganDropdownOpen] = useState(false); + const [ruanganJustClosed, setRuanganJustClosed] = useState(false); + const [dpjpSearch, setDpjpSearch] = useState(''); + const [dpjpDropdownOpen, setDpjpDropdownOpen] = useState(false); + const [dpjpJustClosed, setDpjpJustClosed] = useState(false); + + const dateMasukRef = useRef(null); + const tindakanInputRef = useRef(null); + const tindakanDropdownRef = useRef(null); + const icd9InputRef = useRef(null); + const icd9DropdownRef = useRef(null); + const icd10InputRef = useRef(null); + const icd10DropdownRef = useRef(null); + const ruanganInputRef = useRef(null); + const ruanganDropdownRef = useRef(null); + const dpjpInputRef = useRef(null); + const dpjpDropdownRef = useRef(null); + const nameInputRef = useRef(null); + const nameDropdownRef = useRef(null); + const searchTimeoutRef = useRef(null); + + // Set tanggal masuk otomatis pake tanggal hari ini + useEffect(() => { + const today = new Date(); + const year = today.getFullYear(); + const month = String(today.getMonth() + 1).padStart(2, '0'); + const day = String(today.getDate()).padStart(2, '0'); + const todayString = `${year}-${month}-${day}`; + setTanggalMasuk(todayString); + }, []); + + // Set DPJP otomatis pake dokter yang login abis dokterList ter-load + useEffect(() => { + const dokterData = localStorage.getItem("dokter"); + if (dokterData && dokterList.length > 0) { + try { + const dokter = JSON.parse(dokterData); + if (dokter.id && dokter.nama) { + // Cari dokter di dokterList berdasarkan ID + const foundDokter = dokterList.find(d => (d as any).ID_Dokter === dokter.id); + if (foundDokter) { + // Set DPJP pake ID dokter + setDpjp((foundDokter as any).ID_Dokter.toString()); + // Set search value pake nama dokter + setDpjpSearch((foundDokter as any).Nama_Dokter); + } else { + // Kalo gak ketemu di list, tetep set pake data dari localStorage + setDpjp(dokter.id.toString()); + setDpjpSearch(dokter.nama); + } + } + } catch (err) { + console.error('Error parsing dokter data:', err); + } + } + }, [dokterList]); + + // Fetch dropdown data di awal - GADA AUTO SAVE + // CUMA FETCH DATA DROPDOWN, GADA CALLING createBilling ATAU handleSubmit + useEffect(() => { + // Ambil user role + const role = localStorage.getItem("userRole") || ""; + setUserRole(role); + + const fetchDropdownData = async () => { + try { + // Cuma fetch data dropdown, GADA save apapun + const [dokterRes, ruanganRes, icd9Res, icd10Res, tarifRes] = await Promise.all([ + getDokter(), + getRuangan(), + getICD9(), + getICD10(), + getTarifRumahSakit(), + ]); + + if (dokterRes.data) setDokterList(dokterRes.data); + if (ruanganRes.data) setRuanganList(ruanganRes.data); + if (icd9Res.data) setIcd9List(icd9Res.data); + if (icd10Res.data) setIcd10List(icd10Res.data); + if (tarifRes.data) setTarifRSList(tarifRes.data); + } catch (err) { + console.error('Error fetching dropdown data:', err); + setError('Gagal memuat data dropdown'); + } + }; + + fetchDropdownData(); + // GADA createBilling atau handleSubmit di sini + }, []); + + // Tutup dropdowns pas diklik di luar + useEffect(() => { + const handleClickOutside = (event: MouseEvent) => { + const target = event.target as Node; + + // Cek dropdown tindakan ada atau nggak + if (tindakanDropdownOpen) { + const isClickInsideInput = tindakanInputRef.current?.contains(target); + const isClickInsideDropdown = tindakanDropdownRef.current?.contains(target); + if (!isClickInsideInput && !isClickInsideDropdown) { + setTindakanDropdownOpen(false); + } + } + + // Cek dropdown ICD9 ada atau nggak + if (icd9DropdownOpen) { + const isClickInsideInput = icd9InputRef.current?.contains(target); + const isClickInsideDropdown = icd9DropdownRef.current?.contains(target); + if (!isClickInsideInput && !isClickInsideDropdown) { + setIcd9DropdownOpen(false); + } + } + + // Cek dropdown ICD10 ada atau nggak + if (icd10DropdownOpen) { + const isClickInsideInput = icd10InputRef.current?.contains(target); + const isClickInsideDropdown = icd10DropdownRef.current?.contains(target); + if (!isClickInsideInput && !isClickInsideDropdown) { + setIcd10DropdownOpen(false); + } + } + + // Cek dropdown Ruangan ada atau nggak + if (ruanganDropdownOpen) { + const isClickInsideInput = ruanganInputRef.current?.contains(target); + const isClickInsideDropdown = ruanganDropdownRef.current?.contains(target); + if (!isClickInsideInput && !isClickInsideDropdown) { + setRuanganDropdownOpen(false); + } + } + + // Cek dropdown DPJP ada atau nggak + if (dpjpDropdownOpen) { + const isClickInsideInput = dpjpInputRef.current?.contains(target); + const isClickInsideDropdown = dpjpDropdownRef.current?.contains(target); + if (!isClickInsideInput && !isClickInsideDropdown) { + setDpjpDropdownOpen(false); + } + } + + // Cek dropdown nama (pasien) ada atau nggak + if (nameDropdownOpen) { + const isClickInsideInput = nameInputRef.current?.contains(target); + const isClickInsideDropdown = nameDropdownRef.current?.contains(target); + if (!isClickInsideInput && !isClickInsideDropdown) { + setNameDropdownOpen(false); + } + } + }; + + document.addEventListener('mousedown', handleClickOutside); + return () => { + document.removeEventListener('mousedown', handleClickOutside); + }; + }, [tindakanDropdownOpen, icd9DropdownOpen, icd10DropdownOpen, ruanganDropdownOpen, dpjpDropdownOpen, nameDropdownOpen]); + + // Track changes di totalTarifRS sama billingHistory buat debug + useEffect(() => { + const totalKlaimBPJSLive = (billingHistory && billingHistory.total_klaim) ? billingHistory.total_klaim : 0; + const liveBillingSign = computeBillingSign(totalTarifRS, totalKlaimBPJSLive); + console.log('๐Ÿ“ˆ Live Values Changed:', { + totalTarifRS, + totalKlaimBPJSLive, + liveBillingSign, + billingHistoryExists: !!billingHistory + }); + }, [totalTarifRS, billingHistory]); + + // Dengerin event billingDataUpdated dari edit modal sama refresh data + useEffect(() => { + const handleBillingDataUpdated = (event: any) => { + console.log('๐Ÿ“ข EVENT RECEIVED in billing-pasien!'); + console.log('๐Ÿ“ข Full event:', event); + console.log('๐Ÿ“ข event.detail:', event.detail); + console.log('๐Ÿ“ข event.detail.totalTarifRS:', event.detail?.totalTarifRS); + console.log('๐Ÿ“ข Type of totalTarifRS:', typeof event.detail?.totalTarifRS); + + // Update state langsung pake data dari event + if (event.detail) { + console.log('โœ… Got event.detail, processing...'); + + // Update total tarif + if (event.detail.totalTarifRS !== undefined && event.detail.totalTarifRS !== null) { + console.log('๐Ÿ’ฐ Setting totalTarifRS from event:', event.detail.totalTarifRS); + setTotalTarifRS(event.detail.totalTarifRS); + } + + // Update billing history pake data baru + if (billingHistory) { + console.log('๐Ÿ”„ Updating billingHistory'); + const updatedHistory = { + ...billingHistory, + total_tarif_rs: event.detail.totalTarifRS || billingHistory.total_tarif_rs, + tindakan_rs: event.detail.tindakan || billingHistory.tindakan_rs, + icd9: event.detail.icd9 || billingHistory.icd9, + icd10: event.detail.icd10 || billingHistory.icd10 + }; + console.log('๐Ÿ”„ New billingHistory:', updatedHistory); + setBillingHistory(updatedHistory); + } else { + console.warn('โš ๏ธ billingHistory is null, cannot update'); + } + } else { + console.warn('โš ๏ธ event.detail is missing'); + } + }; + + if (typeof window !== 'undefined') { + console.log('๐Ÿ“Œ Setting up event listener for billingDataUpdated'); + window.addEventListener('billingDataUpdated', handleBillingDataUpdated); + return () => { + console.log('๐Ÿ“Œ Removing event listener for billingDataUpdated'); + window.removeEventListener('billingDataUpdated', handleBillingDataUpdated); + }; + } + }, [billingHistory]); + + // Helper function buat set ruangan display text berdasarkan ID/name + const setRuanganDisplay = (ruanganValue: string | number | undefined) => { + if (!ruanganValue) { + setRuangan(''); + setRuanganSearch(''); + return; + } + + const ruanganStr = ruanganValue.toString().trim(); + if (!ruanganStr) { + setRuangan(''); + setRuanganSearch(''); + return; + } + + // Coba cari dari ID dulu + const ruanganDataById = ruanganList.find(r => (r as any).ID_Ruangan?.toString() === ruanganStr); + if (ruanganDataById) { + setRuangan((ruanganDataById as any).Nama_Ruangan); // โ† FIX: Store NAMA, not ID + setRuanganSearch((ruanganDataById as any).Nama_Ruangan); + console.log(`โœ… Ruangan matched by ID: ${ruanganStr} โ†’ ${(ruanganDataById as any).Nama_Ruangan}`); + return; + } + + // Coba cari dari name kalo gak ketemu dari ID + const ruanganDataByName = ruanganList.find(r => + (r as any).Nama_Ruangan?.toLowerCase() === ruanganStr.toLowerCase() + ); + if (ruanganDataByName) { + setRuangan((ruanganDataByName as any).Nama_Ruangan); // โ† FIX: Store NAMA, not ID + setRuanganSearch((ruanganDataByName as any).Nama_Ruangan); + console.log(`โœ… Ruangan matched by name: ${ruanganStr} โ†’ ${(ruanganDataByName as any).Nama_Ruangan}`); + return; + } + + // Kalo gak ketemu di list, assume udah display name + setRuangan(ruanganStr); + setRuanganSearch(ruanganStr); + console.log(`โš ๏ธ Ruangan not found in list, using as-is: ${ruanganStr}`); + }; + + // Helper function buat set gender dengan benar + + // Search pasien - CUMA NGISI FORM, GADA SAVE + const handleSearchPasien = async () => { + if (!namaPasien.trim()) { + setError('Masukkan nama pasien terlebih dahulu'); + return; + } + + try { + setSearchingPasien(true); + setError(''); + const response = await searchPasien(namaPasien); + + if (response.error) { + setError(response.error); + setSearchResults([]); + return; + } + + if ((response.data as any)?.data) { + setSearchResults((response.data as any).data); + setNameDropdownOpen((response.data as any).data.length > 0); + if ((response.data as any).data.length > 0) { + // Cuma ngisi form pake hasil pertama (pas tombol search diklik) + const pasien = (response.data as any).data[0]; + setIdPasien(pasien.ID_Pasien.toString()); + setUsia(pasien.Usia.toString()); + setGender(pasien.Jenis_Kelamin); + setKelas(pasien.Kelas); + + // Set ruangan pake helper function + setRuanganDisplay(pasien.Ruangan); + + // Load riwayat billing aktif (tindakan & ICD sebelumnya) + await loadBillingAktifHistory(pasien.Nama_Pasien); + } + } + } catch (err) { + setError('Gagal mencari pasien'); + console.error(err); + } finally { + setSearchingPasien(false); + } + }; + + // Load riwayat billing aktif buat pasien + const loadBillingAktifHistory = async (namaPasien: string) => { + try { + if (!namaPasien || !namaPasien.trim()) { + setBillingHistory(null); + setBillingHistoryInfo('Nama pasien tidak boleh kosong'); + setTotalTarifRS(0); + return; + } + + const res = await getBillingAktifByNama(namaPasien); + + console.log('Response dari getBillingAktifByNama:', res); + console.log('๐Ÿ“ก Full API Response:', JSON.stringify(res, null, 2)); + + if (res.status === 404 || !res.data) { + console.log('Tidak ada billing aktif untuk pasien ini'); + setBillingHistory(null); + setBillingHistoryInfo('Tidak ada riwayat billing aktif untuk pasien ini.'); + setTotalTarifRS(0); + return; + } + + if (res.error) { + throw new Error(res.error); + } + + // Handle berbagai struktur response + // Backend returns: { status: "success", data: { billing, tindakan_rs, icd9, icd10, dokter, inacbg_ri, inacbg_rj } } + let billingData = res.data; + + // Kalo data asli nested di bawah .data property + if ((res.data as any)?.data && typeof (res.data as any).data === 'object') { + // Cek kalo struktur nested dari backend + if ((res.data as any).data.billing !== undefined) { + // Ini struktur nested yang benar dari backend + billingData = (res.data as any).data; + } else { + // Kalo gak, pake aja res.data + billingData = res.data; + } + } + + console.log('Billing data extracted:', billingData); + + // Ambil array dengan aman + // Cek dua struktur: top-level sama nested dari backend + const tindakan = Array.isArray((billingData as any)?.tindakan_rs) ? (billingData as any).tindakan_rs : + Array.isArray((billingData as any)?.tindakan) ? (billingData as any).tindakan : []; + const icd9 = Array.isArray((billingData as any)?.icd9) ? (billingData as any).icd9 : []; + const icd10 = Array.isArray((billingData as any)?.icd10) ? (billingData as any).icd10 : []; + const inacbgRI = Array.isArray((billingData as any)?.inacbg_ri) ? (billingData as any).inacbg_ri : []; + const inacbgRJ = Array.isArray((billingData as any)?.inacbg_rj) ? (billingData as any).inacbg_rj : []; + const inacbg = [...inacbgRI, ...inacbgRJ]; + + console.log('Extracted arrays:', { tindakan: tindakan.length, icd9: icd9.length, icd10: icd10.length, inacbg: inacbg.length }); + console.log('Raw arrays:', { tindakan, icd9, icd10, inacbg }); + + // Hitung total_tarif_rs dari tindakan_rs pake lookup di tarifRSList + let calculatedTotalTarif = 0; + tindakan.forEach((deskripsi: string) => { + const tarif = tarifRSList.find(t => (t as any).Deskripsi === deskripsi); + if (tarif && (tarif as any).Harga) { + calculatedTotalTarif += (tarif as any).Harga; + } + }); + + // Pilih stored total_tarif_rs dari backend billing object kalo ada + const billingObj = (billingData as any)?.billing || billingData; + const storedTotalTarif = (billingObj as any)?.Total_Tarif_RS || (billingObj as any)?.total_tarif_rs || (billingObj as any)?.Total_Tarif || 0; + const finalTotalTarif = storedTotalTarif && storedTotalTarif > 0 ? storedTotalTarif : calculatedTotalTarif; + + console.log('๐Ÿ” Tarif Extraction Debug:', { + billingObjKeys: Object.keys(billingObj), + billingObj_Total_Tarif_RS: (billingObj as any)?.Total_Tarif_RS, + billingObj_total_tarif_rs: (billingObj as any)?.total_tarif_rs, + billingObj_Total_Tarif: (billingObj as any)?.Total_Tarif, + storedTotalTarif, + calculatedTotalTarif, + finalTotalTarif, + fulBillingObj: JSON.stringify(billingObj) // Log full object buat verify structure + }); + + // Ambil billing dates sama total_klaim - cek di billing object dulu, terus top-level + let tanggalMasuk = (billingObj as any)?.Tanggal_masuk || (billingObj as any)?.tanggal_masuk; + let tanggalKeluar = (billingObj as any)?.Tanggal_keluar || (billingObj as any)?.tanggal_keluar; + let totalKlaim = (billingObj as any)?.Total_Tarif_BPJS || (billingObj as any)?.total_klaim_bpjs || (billingObj as any)?.total_klaim || (billingData as any)?.total_klaim || (billingData as any)?.Total_Klaim || 0; + + console.log('๐Ÿ’พ Extracted dates & total_klaim:', { tanggalMasuk, tanggalKeluar, totalKlaim, billingObj, storageField: 'Checked multiple possible field names' }); + + // Set billing history buat ditampilkan di tabel aja + if (tindakan.length > 0 || icd9.length > 0 || icd10.length > 0 || inacbg.length > 0) { + const billingId = (billingData as any)?.ID_Billing || (billingData as any)?.id_billing || (billingObj as any)?.ID_Billing || (billingObj as any)?.id_billing; + console.log('๐Ÿ’พ Setting BillingHistory with:', { finalTotalTarif, totalKlaim, billingId }); + setBillingHistory({ tindakan_rs: tindakan, icd9, icd10, inacbg, total_tarif_rs: finalTotalTarif, total_klaim: totalKlaim, billingId, tanggal_masuk: tanggalMasuk, tanggal_keluar: tanggalKeluar }); + setBillingHistoryInfo('Riwayat billing aktif berhasil dimuat.'); + } else { + setBillingHistory(null); + setBillingHistoryInfo('Tidak ada riwayat billing aktif untuk pasien ini.'); + } + + // Auto-fill total_tarif_rs ke form dari stored total atau calculated total + console.log('๐Ÿ’พ Setting TotalTarifRS:', finalTotalTarif); + setTotalTarifRS(finalTotalTarif); + + console.log('Billing aktif history loaded:', { tindakan, icd9, icd10, inacbg, calculatedTotalTarif, storedTotalTarif, finalTotalTarif }); + } catch (err) { + console.error('Error loading billing history:', err); + setBillingHistory(null); + setBillingHistoryInfo('Error: Gagal memload riwayat billing. ' + (err instanceof Error ? err.message : 'Silakan cek console untuk detail.')); + setTotalTarifRS(0); + } + }; + + // Debounced live search pas ngetik nama pasien + const onNameChange = (value: string) => { + setNamaPasien(value); + // bersihkan timeout yang sebelumnya + if (searchTimeoutRef.current) { + clearTimeout(searchTimeoutRef.current); + } + + // cuma search pas 2+ chars + if (value.trim().length < 2) { + setSearchResults([]); + setNameDropdownOpen(false); + return; + } + + // jadwalin search + searchTimeoutRef.current = window.setTimeout(async () => { + try { + setSearchingPasien(true); + const res = await searchPasien(value); + if (res.error) { + setError(res.error); + setSearchResults([]); + setNameDropdownOpen(false); + } else if ((res.data as any)?.data) { + setSearchResults((res.data as any).data); + setNameDropdownOpen((res.data as any).data.length > 0); + } + } catch (err) { + console.error(err); + } finally { + setSearchingPasien(false); + } + }, 300); + }; + + // pilih pasien dari suggestions sama ngisi form, mapping gender + const selectPasien = (pasien: any) => { + if (!pasien) return; + setNamaPasien(pasien.Nama_Pasien || ''); + setIdPasien(pasien.ID_Pasien?.toString() || ''); + setUsia(pasien.Usia?.toString() || ''); + + // Map gender values dari backend ke labels form + const jk = (pasien.Jenis_Kelamin || '').toString().toLowerCase(); + if (jk.includes('laki') || jk.includes('pria')) { + setGender('Laki-Laki'); + } else if (jk.includes('wanita') || jk.includes('perempuan')) { + setGender('Perempuan'); + } else { + setGender(pasien.Jenis_Kelamin || 'Laki-Laki'); + } + + setKelas(pasien.Kelas || ''); + + // Set ruangan dengan helper function + setRuanganDisplay(pasien.Ruangan); + + setSearchResults([]); + setNameDropdownOpen(false); + + // Bersihkan field form (tindakan, ICD9, ICD10) pas select pasien baru + // User harus input data fresh, jangan carry-over dari pasien sebelumnya + setSelectedTindakan([]); + setSelectedICD9([]); + setSelectedICD10([]); + + // Load riwayat billing aktif (buat display di tabel + auto-fill total_tarif_rs) + loadBillingAktifHistory(pasien.Nama_Pasien); + }; + + // Tambah tindakan - nyimpen Deskripsi (bukan KodeRS) karena backend nyari pake Tindakan_RS (Deskripsi) + const handleAddTindakan = (kode: string) => { + const tarif = tarifRSList.find(t => (t as any).KodeRS === kode); + if (tarif && (tarif as any).Deskripsi && !selectedTindakan.includes((tarif as any).Deskripsi)) { + setSelectedTindakan([...selectedTindakan, (tarif as any).Deskripsi]); + setTindakanSearch(''); + setTindakanDropdownOpen(false); + } + }; + + // Hitung total tarif RS pas tindakan berubah + // Real-time calculation: DB tarif + newly selected tindakan + useEffect(() => { + // Hitung total dari selectedTindakan (tindakan BARU yang ditambahin) + const selectedTotal = selectedTindakan.reduce((sum, deskripsi) => { + const tarif = tarifRSList.find(t => (t as any).Deskripsi === deskripsi); + const harga = (tarif as any)?.Harga || 0; + console.log(`๐Ÿ“Š Tindakan selected: ${deskripsi} โ†’ Harga: ${harga}`); + return sum + harga; + }, 0); + + // Ngambil baseline dari billing history (total tarif dari DB) + const billingHistoryTarif = (billingHistory && billingHistory.total_tarif_rs) ? billingHistory.total_tarif_rs : 0; + + // Total = data DB + tindakan baru yang dipilih (REAL-TIME!) + const total = billingHistoryTarif + selectedTotal; + + console.log(`๐Ÿ’ฐ Real-time Total Tarif RS: ${total} (DB: ${billingHistoryTarif} + Selected: ${selectedTotal})`); + setTotalTarifRS(total); + }, [selectedTindakan, tarifRSList, billingHistory]); + + // Filter tindakan berdasarkan search + const filteredTindakan = tarifRSList.filter((t) => + (t as any).Deskripsi?.toLowerCase().includes(tindakanSearch.toLowerCase()) || + (t as any).KodeRS?.toLowerCase().includes(tindakanSearch.toLowerCase()) + ); + + // Hapus tindakan - sekarang pake Deskripsi + const handleRemoveTindakan = (deskripsi: string) => { + setSelectedTindakan(selectedTindakan.filter(t => t !== deskripsi)); + }; + + // Tambah ICD9 - nyimpen Prosedur (bukan Kode_ICD9) karena backend nyari pake Prosedur + const handleAddICD9 = (kode: string) => { + const icd = icd9List.find(i => (i as any).Kode_ICD9 === kode); + if (icd && (icd as any).Prosedur && !selectedICD9.includes((icd as any).Prosedur)) { + setSelectedICD9([...selectedICD9, (icd as any).Prosedur]); + setIcd9Search(''); + setIcd9DropdownOpen(false); + } + }; + + // Filter ICD9 berdasarkan search + const filteredICD9 = icd9List.filter((icd) => + (icd as any).Prosedur?.toLowerCase().includes(icd9Search.toLowerCase()) || + (icd as any).Kode_ICD9?.toLowerCase().includes(icd9Search.toLowerCase()) + ); + + // Hapus ICD9 - sekarang pake Prosedur + const handleRemoveICD9 = (prosedur: string) => { + setSelectedICD9(selectedICD9.filter(i => i !== prosedur)); + }; + + // Tambah ICD10 - nyimpen Diagnosa (bukan Kode_ICD10) karena backend nyari pake Diagnosa + const handleAddICD10 = (kode: string) => { + const icd = icd10List.find(i => (i as any).Kode_ICD10 === kode); + if (icd && (icd as any).Diagnosa && !selectedICD10.includes((icd as any).Diagnosa)) { + setSelectedICD10([...selectedICD10, (icd as any).Diagnosa]); + setIcd10Search(''); + setIcd10DropdownOpen(false); + } + }; + + // Filter ICD10 berdasarkan search + const filteredICD10 = icd10List.filter((icd) => + (icd as any).Diagnosa?.toLowerCase().includes(icd10Search.toLowerCase()) || + (icd as any).Kode_ICD10?.toLowerCase().includes(icd10Search.toLowerCase()) + ); + + // Handle pilih Ruangan + const handleSelectRuangan = (idRuangan: string, namaRuangan: string) => { + setRuangan(namaRuangan); + setRuanganSearch(namaRuangan); + setRuanganDropdownOpen(false); + }; + + // Filter Ruangan berdasarkan search + const filteredRuangan = ruanganList.filter((r) => + (r as any).Nama_Ruangan?.toLowerCase().includes(ruanganSearch.toLowerCase()) || + (r as any).ID_Ruangan?.toString().toLowerCase().includes(ruanganSearch.toLowerCase()) + ); + + // Handle pilih DPJP + const handleSelectDPJP = (idDokter: string, namaDokter: string) => { + setDpjp(idDokter); + setDpjpSearch(namaDokter); + setDpjpDropdownOpen(false); + }; + + // Filter DPJP berdasarkan search + const filteredDPJP = dokterList.filter((d) => + (d as any).Nama_Dokter?.toLowerCase().includes(dpjpSearch.toLowerCase()) || + (d as any).ID_Dokter?.toString().toLowerCase().includes(dpjpSearch.toLowerCase()) + ); + + // Hapus duplicates berdasarkan Nama_Dokter (keep first occurrence) + const uniqueDPJP = filteredDPJP.filter((d, index, self) => + index === self.findIndex((t) => (t as any).Nama_Dokter === (d as any).Nama_Dokter) + ); + + // Hapus duplicates dari full dokterList juga + const uniqueDokterList = dokterList.filter((d, index, self) => + index === self.findIndex((t) => (t as any).Nama_Dokter === (d as any).Nama_Dokter) + ); + + // Hapus ICD10 - sekarang pake Diagnosa + const handleRemoveICD10 = (diagnosa: string) => { + setSelectedICD10(selectedICD10.filter(i => i !== diagnosa)); + }; + + // Submit billing - CUMA INI YANG SAVE KE DATABASE + // CUMA DIPANGGIL PAS TOMBOL SAVE DIKLIK - GADA AUTO SAVE + const handleSubmit = async (e: React.FormEvent) => { + e.preventDefault(); + e.stopPropagation(); + + // Debug: Log buat pastiin cuma dipanggil pas tombol Save diklik + console.log('handleSubmit called - User clicked Save button'); + + // Hindari multiple submissions + if (isSubmitting || loading) { + console.log('Submit blocked - already submitting'); + return; + } + + setError(''); + setSuccess(''); + + // Validation - Pastiin semua field wajib terisi + if (!namaPasien || !usia || !ruangan || !kelas || !dpjp || !tanggalMasuk || !gender) { + setError('Mohon lengkapi semua field yang wajib diisi'); + return; + } + + // Cek apakah pasien baru atau udah ada (existing) + const isPasienBaru = !billingHistory; // Kalo billingHistory null, pasien baru + + if (selectedTindakan.length === 0) { + setError('Mohon pilih minimal satu tindakan'); + return; + } + + // Conditional validation buat ICD10 + // Pasien baru: ICD10 WAJIB + // Pasien existing: ICD10 OPTIONAL + if (isPasienBaru && selectedICD10.length === 0) { + setError('Mohon pilih minimal satu ICD10 (wajib untuk pasien baru)'); + return; + } + + try { + setIsSubmitting(true); + setLoading(true); + + // Ambil nama dokter dari ID + const selectedDokter = dokterList.find(d => (d as any).ID_Dokter.toString() === dpjp); + if (!selectedDokter) { + setError('Dokter tidak ditemukan'); + setLoading(false); + return; + } + + // JANGAN merge di frontend - kirim cuma selectedTindakan (tindakan BARU) + // Backend bakal handle merge sama DB tindakan + let tindakanToSend = selectedTindakan; + + console.log('๐Ÿ“Š Sending tindakan - isPasienBaru:', isPasienBaru, 'Selected:', selectedTindakan); + + // Hitung tarif - CUMA kirim harga tindakan BARU aja ke backend, jangan total! + // Backend sudah punya tarif lama, kita cuma kirim harga yang baru ditambahkan + let calculatedTarif = 0; + + // Hitung HANYA harga dari selectedTindakan (yang baru) + calculatedTarif = selectedTindakan.reduce((sum, deskripsi) => { + const tarif = tarifRSList.find(t => (t as any).Deskripsi === deskripsi); + const harga = (tarif as any)?.Harga || 0; + return sum + harga; + }, 0); + + console.log('๐Ÿ’ฐ Kirim ke backend - selectedTindakan:', selectedTindakan, 'Tarif baru saja:', calculatedTarif); + + // Helper function untuk convert YYYY-MM-DD (dari date input) atau DD/MM/YYYY ke YYYY-MM-DD + const convertDateFormat = (dateStr: string): string => { + if (!dateStr) return ''; + // Cek kalo format udah YYYY-MM-DD (dari HTML5 date input) + if (dateStr.includes('-') && dateStr.length === 10) { + const parts = dateStr.split('-'); + if (parts.length === 3 && parts[0].length === 4) { + // Already in YYYY-MM-DD format + return dateStr; + } + } + // If format is DD/MM/YYYY, convert to YYYY-MM-DD + const parts = dateStr.split('/'); + if (parts.length === 3) { + const [day, month, year] = parts; + return `${year}-${month}-${day}`; + } + // If cannot parse, return empty + return ''; + }; + + + + const totalKlaimBPJS = (billingHistory && billingHistory.total_klaim) ? billingHistory.total_klaim : 0; + + const billingData: BillingRequest = { + nama_pasien: namaPasien, + id_pasien: idPasien ? parseInt(idPasien) : undefined, + jenis_kelamin: gender, + usia: parseInt(usia), + id_dpjp: dpjp ? parseInt(dpjp) : undefined, // โ† Added: Send DPJP (logged-in dokter ID) + ruangan: ruangan, + kelas: kelas, + nama_dokter: [(selectedDokter as any).Nama_Dokter], + tindakan_rs: tindakanToSend, // Use merged array for existing patients + billing_sign: liveBillingSign, + tanggal_masuk: convertDateFormat(tanggalMasuk), + tanggal_keluar: convertDateFormat(tanggalKeluar) || '', + icd9: selectedICD9, + icd10: selectedICD10, + cara_bayar: caraBayar, + total_tarif_rs: calculatedTarif, // Use tarif from merged array for existing patients + total_klaim_bpjs: totalKlaimBPJS, // โ† Added: Send baseline BPJS claim to backend + }; + + console.log('๐Ÿ“ค Sending billing data to backend:', { + ...billingData, + billing_sign: billingData.billing_sign, + total_tarif_rs: billingData.total_tarif_rs, + total_klaim_bpjs: billingData.total_klaim_bpjs, + billingHistoryTotalKlaim: billingHistory?.total_klaim, + mergeInfo: { + isPasienBaru, + dbTindakan: billingHistory?.tindakan_rs || [], + selectedTindakan, + tindakanToSend, + calculatedTarif, + }, + }); + + const response = await createBilling(billingData); + + if (response.error) { + setError(response.error); + setLoading(false); + return; + } + + if (response.data) { + setSuccess('Billing berhasil dibuat!'); + + // Simpan data ke localStorage untuk INACBG admin page + const billingResponse = (response.data as any).data?.billing || {}; + const billingDataForINACBG = { + id_billing: billingResponse.ID_Billing, + nama_pasien: namaPasien, + id_pasien: idPasien, + usia: parseInt(usia), + gender: gender, + ruangan: ruangan, + kelas: kelas, + tindakan: selectedTindakan, + icd9: selectedICD9, + icd10: selectedICD10, + total_tarif_rs: totalTarifRS, + cara_bayar: caraBayar, + tanggal_masuk: tanggalMasuk, + tanggal_keluar: tanggalKeluar || null, + }; + localStorage.setItem('currentBillingData', JSON.stringify(billingDataForINACBG)); + console.log('๐Ÿ’พ Billing data saved to localStorage:', billingDataForINACBG); + + // Reset form setelah berhasil save + setTimeout(() => { + setNamaPasien(''); + setIdPasien(''); + setUsia(''); + setIdPasien(''); + setUsia(''); + setGender('Laki-Laki'); + setRuangan(''); + setRuanganSearch(''); + setKelas(''); + setTanggalMasuk(''); + setTanggalKeluar(''); + setDpjp(''); + setDpjpSearch(''); + setSelectedTindakan([]); + setSelectedICD9([]); + setSelectedICD10([]); + setTotalTarifRS(0); + setSearchResults([]); + setSuccess(''); + }, 2000); + } + } catch (err) { + setError('Gagal membuat billing. Pastikan backend server berjalan.'); + console.error(err); + } finally { + setLoading(false); + setIsSubmitting(false); + } + }; + + return ( +
        + {/* Header dengan Tanggal */} +
        +
        + {new Date().toLocaleDateString('id-ID', { weekday: 'long', year: 'numeric', month: 'long', day: 'numeric' })} +
        +
        + + {/* Title */} +
        Data Pasien
        + + {/* Error/Success Messages */} + {error && ( +
        + {error} +
        + )} + {success && ( +
        + {success} +
        + )} + +
        { + // Prevent form submission on Enter key unless it's the submit button + if (e.key === 'Enter' && (e.target as HTMLElement).tagName !== 'BUTTON') { + e.preventDefault(); + } + }} + > + {/* Data Pasien */} +
        + {/* Nama Lengkap */} +
        +

        Nama Lengkap

        +
        + onNameChange(e.target.value)} + onKeyDown={(e) => { + // Prevent form submission on Enter in input field + if (e.key === 'Enter') { + e.preventDefault(); + } + }} + className="flex-1 border text-sm focus:outline-0 border-blue-200 rounded-full py-2 sm:py-3 pl-3 sm:pl-4 pr-8 sm:pr-10 text-[#2591D0] focus:ring-2 focus:ring-blue-400" + /> + + {nameDropdownOpen && searchResults.length > 0 && ( +
        e.stopPropagation()} + > + {searchResults.map((p) => ( +
        selectPasien(p)} + className="px-4 py-2 hover:bg-blue-50 cursor-pointer text-sm text-[#2591D0]" + > +
        {p.Nama_Pasien}
        +
        {p.Usia} tahun โ€” {p.Ruangan}
        +
        + ))} +
        + )} +
        + + {/* Live Billing Sign Card (mirip INACBG) */} + {totalTarifRS > 0 && totalKlaimBPJSLive > 0 && ( +
        +
        +
        +
        + ! +
        +
        +
        +

        + {liveBillingSign === 'Merah' ? 'โš ๏ธ Perhatian: Tarif RS Melebihi INACBG' : + liveBillingSign === 'Kuning' ? 'โš ๏ธ Perhatian: Tarif RS Mendekati INACBG' : + 'โœ… Tarif RS Dalam Batas Aman'} +

        +

        + Tarif RS: Rp {totalTarifRS.toLocaleString('id-ID')} | + INACBG: Rp {totalKlaimBPJSLive.toLocaleString('id-ID')} +

        + {liveBillingSign === 'Merah' && ( +

        + Selisih: Rp {(totalTarifRS - totalKlaimBPJSLive).toLocaleString('id-ID')} +

        + )} +
        +
        +
        + )} + {searchResults.length > 0 && ( +
        + Ditemukan {searchResults.length} pasien. Data otomatis terisi. +
        + )} +
        + + {/* Usia, Jenis kelamin */} +
        + {/* Usia */} +
        + + setUsia(e.target.value)} + onKeyDown={(e) => { + // Prevent form submission on Enter + if (e.key === 'Enter') { + e.preventDefault(); + } + }} + className="w-full border text-sm border-blue-200 rounded-full py-2 sm:py-3 pl-3 sm:pl-4 pr-8 sm:pr-10 text-[#2591D0] placeholder-blue-400 focus:ring-2 focus:ring-blue-400 focus:border-blue-400 focus:outline-0" + required + /> +
        + + {/* Jenis Kelamin */} +
        + +
        +
        + setGender(e.target.value)} + className="w-5 h-5 text-care-blue bg-gray-100 border-gray-300 accent-[#2591D0]" + /> + +
        + +
        + setGender(e.target.value)} + className="w-5 h-5 text-care-blue bg-gray-100 border-gray-300 accent-[#2591D0]" + /> + +
        +
        +
        +
        + + {/* Ruang, Kelas */} +
        + {/* Ruang */} +
        + +
        + { + setRuanganSearch(e.target.value); + setRuanganDropdownOpen(true); + }} + onFocus={() => { + if (!ruanganJustClosed) { + setRuanganDropdownOpen(true); + } + setRuanganJustClosed(false); + }} + onKeyDown={(e) => { + if (e.key === 'Enter' && filteredRuangan.length > 0) { + handleSelectRuangan((filteredRuangan[0] as any).ID_Ruangan.toString(), (filteredRuangan[0] as any).Nama_Ruangan); + e.preventDefault(); + } + }} + className="w-full border text-sm border-blue-200 rounded-full py-2 sm:py-3 pl-3 sm:pl-4 pr-10 sm:pr-12 text-[#2591D0] placeholder-blue-400 focus:ring-2 focus:ring-blue-400 focus:border-blue-400 focus:outline-0" + required + /> + { + e.stopPropagation(); + if (ruanganDropdownOpen) { + setRuanganJustClosed(true); + setRuanganDropdownOpen(false); + } else { + setRuanganJustClosed(false); + setRuanganDropdownOpen(true); + } + }} + className="absolute right-3 sm:right-4 top-1/2 -translate-y-1/2 text-blue-400 cursor-pointer hover:text-blue-600 text-sm sm:text-base pointer-events-auto z-10" + /> + {ruanganDropdownOpen && ( +
        e.stopPropagation()} + > + {(ruanganSearch ? filteredRuangan : ruanganList).map((r) => ( +
        handleSelectRuangan((r as any).ID_Ruangan.toString(), (r as any).Nama_Ruangan)} + className="px-4 py-2 hover:bg-blue-50 cursor-pointer text-sm text-[#2591D0]" + > +
        {(r as any).Nama_Ruangan}
        +
        + ))} + {ruanganSearch && filteredRuangan.length === 0 && ( +
        + Tidak ada hasil ditemukan +
        + )} +
        + )} +
        +
        + + {/* Kelas */} +
        + +
        + +
        +
        +
        + + {/* Tanggal Masuk & DPJP */} +
        + {/* Tanggal Masuk */} +
        + +
        + setTanggalMasuk(e.target.value)} + value={tanggalMasuk} + className="relative w-full border text-sm border-blue-200 rounded-full py-2 sm:py-3 pl-3 sm:pl-4 pr-8 sm:pr-10 text-[#2591D0] placeholder-blue-400 focus:ring-2 focus:ring-blue-400 focus:border-blue-400 focus:outline-0 [&::-webkit-calendar-picker-indicator]:opacity-0 [&::-webkit-calendar-picker-indicator]:hidden" + required + /> + { + e.stopPropagation(); + if (dateMasukRef.current) { + dateMasukRef.current.type = "date"; + dateMasukRef.current.showPicker?.(); + } + }} + className="absolute right-3 sm:right-4 top-1/2 -translate-y-1/2 text-blue-400 cursor-pointer hover:text-blue-600 text-sm sm:text-base pointer-events-auto z-10" + /> +
        +
        + + {/* DPJP */} +
        + +
        + { + setDpjpSearch(e.target.value); + setDpjpDropdownOpen(true); + }} + onFocus={() => { + if (!dpjpJustClosed) { + setDpjpDropdownOpen(true); + } + setDpjpJustClosed(false); + }} + onKeyDown={(e) => { + if (e.key === 'Enter' && uniqueDPJP.length > 0) { + handleSelectDPJP((uniqueDPJP[0] as any).ID_Dokter.toString(), (uniqueDPJP[0] as any).Nama_Dokter); + e.preventDefault(); + } + }} + className="w-full border text-sm border-blue-200 rounded-full py-2 sm:py-3 pl-3 sm:pl-4 pr-10 sm:pr-12 text-[#2591D0] placeholder-blue-400 focus:ring-2 focus:ring-blue-400 focus:border-blue-400 focus:outline-0" + required + /> + { + e.stopPropagation(); + if (dpjpDropdownOpen) { + setDpjpJustClosed(true); + setDpjpDropdownOpen(false); + } else { + setDpjpJustClosed(false); + setDpjpDropdownOpen(true); + } + }} + className="absolute right-3 sm:right-4 top-1/2 -translate-y-1/2 text-blue-400 cursor-pointer hover:text-blue-600 text-sm sm:text-base pointer-events-auto z-10" + /> + {dpjpDropdownOpen && ( +
        e.stopPropagation()} + > + {(dpjpSearch ? uniqueDPJP : uniqueDokterList).map((d) => ( +
        handleSelectDPJP((d as any).ID_Dokter.toString(), (d as any).Nama_Dokter)} + className="px-4 py-2 hover:bg-blue-50 cursor-pointer text-sm text-[#2591D0]" + > +
        {(d as any).Nama_Dokter}
        +
        + ))} + {dpjpSearch && uniqueDPJP.length === 0 && ( +
        + Tidak ada hasil ditemukan +
        + )} +
        + )} +
        +
        +
        + + {/* Baris 1: Tindakan dan Total Tarif RS - TERPISAH, TIDAK MENYATU */} +
        + {/* Tindakan dan Pemeriksaan Penunjang */} +
        + +
        +
        + { + setTindakanSearch(e.target.value); + setTindakanDropdownOpen(true); + }} + onFocus={() => { + if (!tindakanJustClosed) { + setTindakanDropdownOpen(true); + } + setTindakanJustClosed(false); + }} + onKeyDown={(e) => { + if (e.key === 'Enter' && filteredTindakan.length > 0) { + handleAddTindakan((filteredTindakan[0] as any).KodeRS); + e.preventDefault(); + } + }} + className="w-full border text-sm border-blue-200 rounded-full py-2 sm:py-3 pl-3 sm:pl-4 pr-10 sm:pr-12 text-[#2591D0] placeholder-blue-400 focus:ring-2 focus:ring-blue-400 focus:border-blue-400 focus:outline-0" + /> + { + e.stopPropagation(); + if (tindakanDropdownOpen) { + setTindakanJustClosed(true); + setTindakanDropdownOpen(false); + } else { + setTindakanJustClosed(false); + setTindakanDropdownOpen(true); + } + }} + className="absolute right-3 sm:right-4 top-1/2 -translate-y-1/2 text-blue-400 cursor-pointer hover:text-blue-600 text-sm sm:text-base pointer-events-auto z-10" + /> + {tindakanDropdownOpen && ( +
        e.stopPropagation()} + > + {(tindakanSearch ? filteredTindakan : tarifRSList).map((t) => ( +
        handleAddTindakan((t as any).KodeRS)} + className="px-4 py-2 hover:bg-blue-50 cursor-pointer text-sm text-[#2591D0] border-b border-blue-100 last:border-b-0" + > +
        {(t as any).Deskripsi}
        +
        {(t as any).KodeRS}
        +
        + ))} + {tindakanSearch && filteredTindakan.length === 0 && ( +
        + Tidak ada hasil ditemukan +
        + )} +
        + )} +
        + +
        + {/* Selected tindakan chips */} + {selectedTindakan.length > 0 && ( +
        + {selectedTindakan.map((t) => { + const tarif = tarifRSList.find(tar => (tar as any).Deskripsi === t); + const harga = (tarif as any)?.Harga || 0; + return ( +
        + {t} + Rp {harga.toLocaleString('id-ID')} + +
        + ); + })} +
        + )} +
        + + {/* Total Tarif RS */} +
        + + +
        +
        + + {/* Riwayat Billing Aktif (Tindakan & ICD Sebelumnya) */} +
        +
        + +
        +
        {billingHistoryInfo}
        + {billingHistory && (billingHistory.tindakan_rs.length > 0 || billingHistory.icd9.length > 0 || billingHistory.icd10.length > 0 || (billingHistory.inacbg && billingHistory.inacbg.length > 0)) && ( + <> + {/* Desktop Table View */} +
        + + + + + + + + + + + + + {Math.max(billingHistory.tindakan_rs.length, billingHistory.icd9.length, billingHistory.icd10.length, billingHistory.inacbg?.length || 0) > 0 ? ( + Array.from({ + length: Math.max(billingHistory.tindakan_rs.length, billingHistory.icd9.length, billingHistory.icd10.length, billingHistory.inacbg?.length || 0) + }).map((_, idx) => ( + + + + + + + + + )) + ) : ( + + + + )} + +
        Tanggal MasukTanggal KeluarTindakan RSICD 9ICD 10INACBG
        + {idx === 0 ? (billingHistory.tanggal_masuk + ? new Date(billingHistory.tanggal_masuk).toLocaleDateString('id-ID', { year: 'numeric', month: 'long', day: 'numeric' }) + : '-') : '-'} + + {idx === 0 ? (billingHistory.tanggal_keluar + ? new Date(billingHistory.tanggal_keluar).toLocaleDateString('id-ID', { year: 'numeric', month: 'long', day: 'numeric' }) + : '-') : '-'} + + {billingHistory.tindakan_rs[idx] || '-'} + + {billingHistory.icd9[idx] || '-'} + + {billingHistory.icd10[idx] || '-'} + + {billingHistory.inacbg?.[idx] || '-'} +
        + Tidak ada riwayat +
        +
        + + {/* Mobile/Tablet Card View */} +
        + {/* Tanggal Section Mobile */} +
        +
        +
        + Tanggal Masuk +

        + {billingHistory.tanggal_masuk + ? new Date(billingHistory.tanggal_masuk).toLocaleDateString('id-ID', { year: 'numeric', month: 'long', day: 'numeric' }) + : '-'} +

        +
        +
        + Tanggal Keluar +

        + {billingHistory.tanggal_keluar + ? new Date(billingHistory.tanggal_keluar).toLocaleDateString('id-ID', { year: 'numeric', month: 'long', day: 'numeric' }) + : '-'} +

        +
        +
        +
        + + {/* Items Cards Mobile */} +
        + {Math.max(billingHistory.tindakan_rs.length, billingHistory.icd9.length, billingHistory.icd10.length, billingHistory.inacbg?.length || 0) > 0 ? ( + Array.from({ + length: Math.max(billingHistory.tindakan_rs.length, billingHistory.icd9.length, billingHistory.icd10.length, billingHistory.inacbg?.length || 0) + }).map((_, idx) => ( +
        +
        +
        + + Tindakan RS + + + {billingHistory.tindakan_rs[idx] || '-'} + +
        +
        +
        + + ICD 9 + + + {billingHistory.icd9[idx] || '-'} + +
        +
        + + ICD 10 + + + {billingHistory.icd10[idx] || '-'} + +
        +
        +
        + + INACBG + + + {billingHistory.inacbg?.[idx] || '-'} + +
        +
        +
        + )) + ) : ( +
        + Tidak ada riwayat +
        + )} +
        +
        + + )} +
        + + {/* Baris 2: ICD 10 dan ICD 9 - BERSEBELAHAN, TERPISAH KIRI KANAN */} +
        + {/* ICD 10 */} +
        + +
        +
        + { + setIcd10Search(e.target.value); + setIcd10DropdownOpen(true); + }} + onFocus={() => { + if (!icd10JustClosed) { + setIcd10DropdownOpen(true); + } + setIcd10JustClosed(false); + }} + onKeyDown={(e) => { + if (e.key === 'Enter' && filteredICD10.length > 0) { + handleAddICD10((filteredICD10[0] as any).Kode_ICD10); + e.preventDefault(); + } + }} + className="w-full border text-sm border-blue-200 rounded-full py-2 sm:py-3 pl-3 sm:pl-4 pr-10 sm:pr-12 text-[#2591D0] placeholder-blue-400 focus:ring-2 focus:ring-blue-400 focus:border-blue-400 focus:outline-0" + /> + { + e.stopPropagation(); + if (icd10DropdownOpen) { + setIcd10JustClosed(true); + setIcd10DropdownOpen(false); + } else { + setIcd10JustClosed(false); + setIcd10DropdownOpen(true); + } + }} + className="absolute right-3 sm:right-4 top-1/2 -translate-y-1/2 text-blue-400 cursor-pointer hover:text-blue-600 text-sm sm:text-base pointer-events-auto z-10" + /> + {icd10DropdownOpen && ( +
        e.stopPropagation()} + > + {(icd10Search ? filteredICD10 : icd10List).map((icd) => ( +
        handleAddICD10((icd as any).Kode_ICD10)} + className="px-4 py-2 hover:bg-blue-50 cursor-pointer text-sm text-[#2591D0] border-b border-blue-100 last:border-b-0" + > +
        {(icd as any).Diagnosa}
        +
        {(icd as any).Kode_ICD10}
        +
        + ))} + {icd10Search && filteredICD10.length === 0 && ( +
        + Tidak ada hasil ditemukan +
        + )} +
        + )} +
        + +
        + {/* Selected ICD10 chips */} + {selectedICD10.length > 0 && ( +
        + {selectedICD10.map((p) => ( +
        + {p} + +
        + ))} +
        + )} +
        + + {/* ICD 9 */} +
        + +
        +
        + { + setIcd9Search(e.target.value); + setIcd9DropdownOpen(true); + }} + onFocus={() => { + if (!icd9JustClosed) { + setIcd9DropdownOpen(true); + } + setIcd9JustClosed(false); + }} + onKeyDown={(e) => { + if (e.key === 'Enter' && filteredICD9.length > 0) { + handleAddICD9((filteredICD9[0] as any).Kode_ICD9); + e.preventDefault(); + } + }} + className="w-full border text-sm border-blue-200 rounded-full py-2 sm:py-3 pl-3 sm:pl-4 pr-10 sm:pr-12 text-[#2591D0] placeholder-blue-400 focus:ring-2 focus:ring-blue-400 focus:border-blue-400 focus:outline-0" + /> + { + e.stopPropagation(); + if (icd9DropdownOpen) { + setIcd9JustClosed(true); + setIcd9DropdownOpen(false); + } else { + setIcd9JustClosed(false); + setIcd9DropdownOpen(true); + } + }} + className="absolute right-3 sm:right-4 top-1/2 -translate-y-1/2 text-blue-400 cursor-pointer hover:text-blue-600 text-sm sm:text-base pointer-events-auto z-10" + /> + {icd9DropdownOpen && ( +
        e.stopPropagation()} + > + {(icd9Search ? filteredICD9 : icd9List).map((icd) => ( +
        handleAddICD9((icd as any).Kode_ICD9)} + className="px-4 py-2 hover:bg-blue-50 cursor-pointer text-sm text-[#2591D0] border-b border-blue-100 last:border-b-0" + > +
        {(icd as any).Prosedur}
        +
        {(icd as any).Kode_ICD9}
        +
        + ))} + {icd9Search && filteredICD9.length === 0 && ( +
        + Tidak ada hasil ditemukan +
        + )} +
        + )} +
        + +
        + {/* Selected ICD9 chips */} + {selectedICD9.length > 0 && ( +
        + {selectedICD9.map((p) => ( +
        + {p} + +
        + ))} +
        + )} +
        + + {/* Cara Bayar - di bawah ICD 9 */} +
        + +
        + +
        +
        + + {/* Save Button */} +
        + + {billingHistory && billingHistory.billingId && ( + + )} +
        +
        +
        +
        + + {/* Edit Identitas Modal */} + { + setShowEditModal(false); + setEditModalData(null); + }} + onSuccess={() => { + console.log('๐ŸŽ‰ EditPasienModal onSuccess called'); + console.log('๐ŸŽ‰ namaPasien value:', namaPasien); + setShowEditModal(false); + setEditModalData(null); + // Reload billing history dan force re-render + if (namaPasien) { + console.log('๐ŸŽ‰ Reloading billing history for:', namaPasien); + setTimeout(() => { + console.log('๐ŸŽ‰ setTimeout callback executing, calling loadBillingAktifHistory'); + loadBillingAktifHistory(namaPasien); + }, 500); + } else { + console.warn('โš ๏ธ namaPasien is empty, cannot reload'); + } + }} + /> +
        + ); +}; + +export default BillingPasien; diff --git a/frontendcareit_v4/src/app/component/billing_aktif.tsx b/frontendcareit_v4/src/app/component/billing_aktif.tsx new file mode 100644 index 0000000..bf425a2 --- /dev/null +++ b/frontendcareit_v4/src/app/component/billing_aktif.tsx @@ -0,0 +1,524 @@ +"use client"; +import { useState, useEffect } from 'react'; +import { FaSearch, FaEdit } from 'react-icons/fa'; +import { getallbilingaktif} from '@/lib/api-helper'; + +interface RiwayatBillingPasienProps { + onLogout?: () => void; + userRole?: "dokter" | "admin"; + onEdit?: (billingId: number, pasienName?: string) => void; + selectedRuangan?: string | null; +} + +interface BillingData { + ID_Billing?: number; + ID_Pasien?: number; + Nama_Pasien?: string; + Billing_Sign?: string; + // Backend sends lowercase field names + id_billing?: number; + id_pasien?: number; + nama_pasien?: string; + billing_sign?: string; + // Additional fields from backend + Kelas?: string; + ruangan?: string; + total_tarif_rs?: number; + total_klaim?: number; + // Doctor fields + ID_Dokter?: number; + id_dokter?: number; + nama_dokter?: string; + Nama_Dokter?: string; + [key: string]: any; +} + +const RiwayatBillingPasien = ({ onLogout, userRole, onEdit, selectedRuangan }: RiwayatBillingPasienProps) => { + const [billingData, setBillingData] = useState([]); + const [filteredData, setFilteredData] = useState([]); + const [searchTerm, setSearchTerm] = useState(''); + const [loading, setLoading] = useState(true); + const [error, setError] = useState(''); + const [loggedInDokterId, setLoggedInDokterId] = useState(null); + const [loggedInDokterName, setLoggedInDokterName] = useState(''); + const [ruangan, setRuangan] = useState(''); + const [ruanganSearch, setRuanganSearch] = useState(''); + const [ruanganDropdownOpen, setRuanganDropdownOpen] = useState(false); + + // Ambil info dokter yang login + useEffect(() => { + const dokterData = localStorage.getItem("dokter"); + if (dokterData) { + try { + const dokter = JSON.parse(dokterData); + if (dokter.id) { + setLoggedInDokterId(dokter.id); + } + if (dokter.nama) { + setLoggedInDokterName(dokter.nama); + } + } catch (err) { + console.error('Error parsing dokter data:', err); + } + } + }, []); + + // Fetch billing data + useEffect(() => { + const fetchBillingData = async () => { + try { + setLoading(true); + setError(''); + const response = await getallbilingaktif(); + + if (response.error) { + setError(response.error); + return; + } + + // Handle berbagai struktur response + if (response.data) { + let dataArray: BillingData[] = []; + + // Cek kalo response.data udah array langsung + if (Array.isArray(response.data)) { + dataArray = response.data; + } + // Cek kalo response.data punya property data + else if ((response.data as any).data && Array.isArray((response.data as any).data)) { + dataArray = (response.data as any).data; + } + // Cek kalo response.data punya status sama property data + else if ((response.data as any).status && (response.data as any).data && Array.isArray((response.data as any).data)) { + dataArray = (response.data as any).data; + } else { + console.error('Unexpected response structure:', response.data); + setError('Format data tidak dikenali'); + return; + } + + // Log untuk debugging + console.log('Billing data loaded:', dataArray.length, 'items'); + if (dataArray.length > 0) { + console.log('Sample item:', dataArray[0]); + } + + // Tidak filter berdasarkan dokter - ambil semua data dari database + setBillingData(dataArray); + setFilteredData(dataArray); + } else { + console.error('No data in response:', response); + setError('Tidak ada data yang diterima dari server'); + } + } catch (err) { + setError('Gagal memuat data billing. Pastikan backend server berjalan.'); + console.error(err); + } finally { + setLoading(false); + } + }; + + // Always fetch data regardless of login status + fetchBillingData(); + }, []); + + // Filter data based on search term and ruangan + useEffect(() => { + let filtered = billingData; + + // Filter 1: By ruangan (if selectedRuangan provided) + if (selectedRuangan) { + console.log(`[DEBUG] Filtering for ruangan: "${selectedRuangan}"`); + console.log(`[DEBUG] Total items before filter: ${billingData.length}`); + console.log(`[DEBUG] Available ruangan in data:`, [...new Set(billingData.map(item => item.ruangan || item.Ruangan))]); + + filtered = filtered.filter((item) => { + const itemRuangan = item.ruangan || item.Ruangan || ''; + const matches = itemRuangan.trim() === selectedRuangan.trim(); + if (!matches && item.nama_pasien) { + console.log(`[DEBUG] Item "${item.nama_pasien}" ruangan="${itemRuangan}" doesn't match "${selectedRuangan}"`); + } + return matches; + }); + console.log(`[DEBUG] Items after filter: ${filtered.length}`); + } + + // Filter 2: By search term + if (searchTerm.trim()) { + filtered = filtered.filter( + (item) => { + const namaPasien = item.Nama_Pasien || item.nama_pasien || ''; + const idPasien = item.ID_Pasien || item.id_pasien || 0; + const idBilling = item.ID_Billing || item.id_billing || 0; + return ( + namaPasien.toString().toLowerCase().includes(searchTerm.toLowerCase()) || + idPasien.toString().includes(searchTerm) || + idBilling.toString().includes(searchTerm) + ); + } + ); + } + + setFilteredData(filtered); + }, [searchTerm, billingData, selectedRuangan]); + + const getStatusColor = (billingSign: string) => { + // Map billing sign to color + if (!billingSign) return "bg-gray-400"; + + const sign = billingSign.toLowerCase(); + + // Map Indonesian enum values from database + if (sign === "hijau" || sign === "green") { + return "bg-green-500"; // Tarif RS <=25% dari BPJS + } else if (sign === "kuning" || sign === "yellow") { + return "bg-yellow-500"; // 26%-50% + } else if (sign === "merah" || sign === "red" || sign === "orange") { + return "bg-red-500"; // >50% + } + + // Legacy mappings (for backward compatibility) + if (sign === "selesai" || sign === "completed" || sign === "1") { + return "bg-green-500"; + } else if (sign === "pending" || sign === "proses" || sign === "0") { + return "bg-yellow-500"; + } else { + return "bg-gray-400"; + } + }; + + // Hitung warning sign secara dinamis berdasarkan current tarif RS vs existing klaim + // This ensures warning updates even if INACBG hasn't been input yet + const calculateDynamicWarningSign = (totalTarifRS: number | undefined, totalKlaim: number | undefined): string => { + if (!totalTarifRS || !totalKlaim || totalTarifRS <= 0 || totalKlaim <= 0) { + return ""; // No data to calculate + } + + const percentage = (totalTarifRS / totalKlaim) * 100; + + if (percentage <= 25) { + return "Hijau"; // Safe + } else if (percentage <= 50) { + return "Kuning"; // Warning + } else { + return "Merah"; // Alert + } + }; + + const handleSelectRuangan = (idRuangan: string, namaRuangan: string) => { + setRuangan(namaRuangan); // โœ… SIMPAN NAMA RUANGAN! + setRuanganSearch(namaRuangan); + setRuanganDropdownOpen(false); +}; + + return ( +
        + {/* Fixed Header */} +
        + {/* Tanggal */} +
        +
        + {new Date().toLocaleDateString('id-ID', { weekday: 'long', year: 'numeric', month: 'long', day: 'numeric' })} +
        +
        + + {/* Search Bar */} +
        +
        + setSearchTerm(e.target.value)} + className="w-full border text-sm border-blue-200 rounded-full py-2 sm:py-3 pl-3 sm:pl-4 pr-10 sm:pr-12 text-[#2591D0] placeholder-blue-400 focus:ring-2 focus:ring-blue-400 focus:border-blue-400 focus:outline-0" + /> + +
        +
        + + {/* Table Header - Desktop Only */} +
        +
        + + + + + + + + + +
        + ID Pasien + + Nama + + Dokter + + Billing Sign +
        +
        +
        +
        + + {/* Fixed Logout Button - Top Right */} + {onLogout && ( + + )} + + {/* Error Message */} + {error && ( +
        + {error} +
        + )} + + {/* Scrollable Content Container */} +
        + + {/* Table - Desktop View */} +
        + + + + + + + + + + + {loading ? ( + + + + ) : filteredData.length === 0 ? ( + + + + ) : ( + filteredData.map((item, index) => { + // Support both PascalCase and lowercase field names from backend + const idBilling = item.ID_Billing || item.id_billing || 0; + const idPasien = item.ID_Pasien || item.id_pasien || 0; + const namaPasien = item.Nama_Pasien || item.nama_pasien || 'N/A'; + const billingSign = item.Billing_Sign || item.billing_sign || ''; + // Ambil nama dokter dari backend response - bisa kosong kalo belum ada di database + const namaDokter = item.Nama_Dokter || item.nama_dokter || ''; + + return ( + + + + + + + ); + }) + )} + +
        ID PasienNamaDokterBilling Sign
        + Memuat data... +
        + {searchTerm ? 'Tidak ada data yang sesuai dengan pencarian' : 'Tidak ada data billing'} +
        + P.{idPasien.toString().padStart(4, '0')} + + {namaPasien} + + {namaDokter || '-'} + +
        + {(() => { + // Hitung dynamic warning sign kalo data tarif ada + const dynamicSign = calculateDynamicWarningSign(item.total_tarif_rs, item.total_klaim); + const displaySign = dynamicSign || billingSign; // Use dynamic if available, fallback to DB sign + + return ( + <> + + + {/* Hover Tooltip */} + {item.total_tarif_rs && item.total_klaim && ( +
        + Tarif RS: Rp {item.total_tarif_rs?.toLocaleString('id-ID')} | BPJS: Rp {item.total_klaim?.toLocaleString('id-ID')} +
        + )} + + ); + })()} + + {userRole === "admin" && ( + { + console.log("๐Ÿ–ฑ๏ธ FaEdit clicked! onEdit exists?", !!onEdit, "idBilling:", idBilling, "namaPasien:", namaPasien); + if (onEdit && idBilling) { + console.log("โœ… Calling onEdit with:", idBilling, namaPasien); + onEdit(idBilling, namaPasien); + } else { + console.error("โŒ Cannot call onEdit - onEdit exists?", !!onEdit, "idBilling exists?", !!idBilling); + } + }} + className="text-[#2591D0] cursor-pointer hover:text-[#1e7ba8] text-base md:text-lg flex-shrink-0 ml-auto" + /> + )} +
        +
        +
        + + {/* Mobile/Tablet Card View */} +
        + {loading ? ( +
        + Memuat data... +
        + ) : filteredData.length === 0 ? ( +
        + {searchTerm ? 'Tidak ada data yang sesuai dengan pencarian' : 'Tidak ada data billing'} +
        + ) : ( + filteredData.map((item, index) => { + const idBilling = item.ID_Billing || item.id_billing || 0; + const idPasien = item.ID_Pasien || item.id_pasien || 0; + const namaPasien = item.Nama_Pasien || item.nama_pasien || 'N/A'; + const billingSign = item.Billing_Sign || item.billing_sign || ''; + const namaDokter = item.Nama_Dokter || item.nama_dokter || ''; + + return ( +
        +
        + {/* ID Pasien */} +
        + + ID Pasien + + + P.{idPasien.toString().padStart(4, '0')} + +
        + + {/* Nama */} +
        + + Nama + + + {namaPasien} + +
        + + {/* Dokter */} +
        + + Dokter + + + {namaDokter || '-'} + +
        + + {/* Billing Sign */} +
        + + Billing Sign + +
        + {(() => { + // Calculate dynamic warning sign if tarif data exists + const dynamicSign = calculateDynamicWarningSign(item.total_tarif_rs, item.total_klaim); + const displaySign = dynamicSign || billingSign; // Use dynamic if available, fallback to DB sign + + return ( + + ); + })()} + {userRole === "admin" && ( + { + console.log("๐Ÿ–ฑ๏ธ FaEdit (mobile) clicked! onEdit exists?", !!onEdit, "idBilling:", idBilling, "namaPasien:", namaPasien); + if (onEdit && idBilling) { + console.log("โœ… Calling onEdit (mobile) with:", idBilling, namaPasien); + onEdit(idBilling, namaPasien); + } else { + console.error("โŒ Cannot call onEdit (mobile) - onEdit exists?", !!onEdit, "idBilling exists?", !!idBilling); + } + }} + className="text-[#2591D0] cursor-pointer hover:text-[#1e7ba8] text-lg flex-shrink-0" + /> + )} +
        +
        + + {/* Warning Info */} + {item.total_tarif_rs && item.total_klaim && (() => { + // Calculate dynamic warning sign + const dynamicSign = calculateDynamicWarningSign(item.total_tarif_rs, item.total_klaim); + const displaySign = dynamicSign || billingSign; + + return ( +
        +

        + {displaySign === 'Merah' ? 'โš ๏ธ Tarif RS Melebihi' : displaySign === 'Kuning' ? 'โš ๏ธ Mendekati Batas' : 'โœ… Aman'} +

        +

        + RS: Rp {item.total_tarif_rs?.toLocaleString('id-ID')} | BPJS: Rp {item.total_klaim?.toLocaleString('id-ID')} +

        +
        + ); + })()} +
        +
        + ); + }) + )} +
        +
        +
        + ); +}; + +export default RiwayatBillingPasien; diff --git a/frontendcareit_v4/src/app/component/buku-saku.tsx b/frontendcareit_v4/src/app/component/buku-saku.tsx new file mode 100644 index 0000000..c3c9e4c --- /dev/null +++ b/frontendcareit_v4/src/app/component/buku-saku.tsx @@ -0,0 +1,21 @@ +"use client"; + +const BukuSaku = () => { + return ( +
        +

        + Buku Saku +

        + +
        +

        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%0Ddp{JXoxwlM>f`ZRR@2ck^)}&d;dGoF2Wc~F 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�~xo^6@Ly@}{7DQiLlh2RO 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

        +swz6eMDsEhP1{zU%;{qPrwn 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 z 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